diff options
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | iconvdata/EUC-TW.irreversible | 3 | ||||
-rw-r--r-- | iconvdata/Makefile | 1 | ||||
-rw-r--r-- | iconvdata/cns11643.c | 47311 | ||||
-rw-r--r-- | iconvdata/cns11643.h | 75 | ||||
-rw-r--r-- | iconvdata/cns11643l1.c | 3010 | ||||
-rw-r--r-- | iconvdata/cns11643l2.h | 6 | ||||
-rw-r--r-- | iconvdata/iso-2022-cn-ext.c | 61 | ||||
-rwxr-xr-x | iconvdata/tst-table.sh | 4 | ||||
-rw-r--r-- | localedata/charmaps/EUC-TW | 45552 | ||||
-rw-r--r-- | timezone/africa | 8 | ||||
-rw-r--r-- | timezone/antarctica | 21 | ||||
-rw-r--r-- | timezone/asia | 93 | ||||
-rw-r--r-- | timezone/europe | 163 | ||||
-rw-r--r-- | timezone/northamerica | 27 | ||||
-rw-r--r-- | timezone/private.h | 16 | ||||
-rw-r--r-- | timezone/southamerica | 43 | ||||
-rw-r--r-- | timezone/zic.c | 16 | ||||
-rw-r--r-- | timezone/zone.tab | 14 |
19 files changed, 80965 insertions, 15470 deletions
@@ -1,3 +1,14 @@ +2001-06-06 Ulrich Drepper <drepper@redhat.com> + + * timezone/zic.c: Update from tzcode2001c. + * timezone/private.h: Likewise. + * timezone/africa: Update from tzdata2001c. + * timezone/asia: Likewise. + * timezone/europe: Likewise. + * timezone/northamerica: Likewise. + * timezone/southamerica: Likewise. + * timezone/zone.tab: Likewise. + 2001-06-04 Bruno Haible <haible@clisp.cons.org> * iconv/loop.c (UNICODE_TAG_HANDLER): New macro. diff --git a/iconvdata/EUC-TW.irreversible b/iconvdata/EUC-TW.irreversible new file mode 100644 index 0000000000..f722717730 --- /dev/null +++ b/iconvdata/EUC-TW.irreversible @@ -0,0 +1,3 @@ +0x8EA3A1B8 0x5344 +0x8EA5A1C8 0x233B3 +0x8EA5EFBA 0x2A0CC diff --git a/iconvdata/Makefile b/iconvdata/Makefile index 3db17d647e..ce1a87930c 100644 --- a/iconvdata/Makefile +++ b/iconvdata/Makefile @@ -100,6 +100,7 @@ distribute := gconv-modules extra-module.mk gap.awk gaptab.awk \ tst-table-charmap.sh tst-table-from.c tst-table-to.c \ EUC-JP.irreversible ISIRI-3342.irreversible SJIS.irreversible \ EUC-KR.irreversible BIG5HKSCS.irreversible BIG5.irreversible \ + CP1255.irreversible CP1258.irreversible EUC-TW.irreversible \ 8bit-generic.c 8bit-gap.c \ ansi_x3.110.c asmo_449.c big5.c cp737.c cp737.h \ cp775.c cp775.h ibm874.c cns11643.c cns11643.h \ diff --git a/iconvdata/cns11643.c b/iconvdata/cns11643.c index bd1994f1d9..c5a8695156 100644 --- a/iconvdata/cns11643.c +++ b/iconvdata/cns11643.c @@ -1,5 +1,5 @@ -/* Mapping tables for CNS 11643, plane 2 handling. - Copyright (C) 1998 Free Software Foundation, Inc. +/* Mapping tables for CNS 11643, planes 2 to 7 handling. + Copyright (C) 1998, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. @@ -20,12 +20,29 @@ #include <stdint.h> -/* The following table contains no whole and is therefore compact. Nice +/* To generate a Unicode 3.1 CNS11643.TXT, take from + http://www.unicode.org/Public/Mappings/EASTASIA/OTHER/CNS11643.TXT + the planes 1+2 + + grep -v '^#' CNS11643.TXT | grep '^0x[12]' | sed -e 's/[ ]*#.*$//' + + and merge with the extracted table + + grep '^U.*kIRG_TSource ' UNIHAN.TXT | sed -e 's,^U+\([0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F]*\) kIRG_TSource \(.\)-\(....\)$,0x\2\3 0x\1,' | sort + + using a "cat ... ... | sort | uniq" command. + The following duplicates must be treated by hand: + U+5344 = plane 1, 0x243F = plane 3, 0x2138 + U+6729 = plane 5, 0x2148 U+233B3 = plane 5, 0x2148 + U+9D8D = plane 5, 0x6F3A U+2A0CC = plane 5, 0x6F3A + */ + +/* The following table contains no hole and is therefore compact. Nice work compared with the chaos of other character sets (or plane 1). The table can be generated using - egrep '^0x2' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x2' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -1961,12 +1978,12 @@ const uint16_t __cns11643l2_to_ucs4_tab[] = [0x1de0] = 0x9f49, [0x1de1] = 0x9f98, }; -/* The following table contains lots of small holes. It does not pay off - to use an extra index table. +/* The following table contains no hole and is therefore compact. Nice + work compared with the chaos of other character sets (or plane 1). The table can be generated using - egrep '^0xE' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x3' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -1976,7 +1993,7 @@ const uint16_t __cns11643l2_to_ucs4_tab[] = while (<>) { local($cns, $ucs4, %rest) = split; local($u)=hex($ucs4); - local($c)=hex($cns)-0xE2121; + local($c)=hex($cns)-0x32121; printf ("\n ") if ($n % 4 eq 0); ++$n; printf (" [0x%04x] = 0x%04x,", @@ -1985,1067 +2002,22642 @@ const uint16_t __cns11643l2_to_ucs4_tab[] = printf ("\n"); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -const uint16_t __cns11643l14_to_ucs4_tab[] = +const uint32_t __cns11643l3_to_ucs4_tab[] = { [0x0000] = 0x4e28, [0x0001] = 0x4e36, [0x0002] = 0x4e3f, [0x0003] = 0x4e85, [0x0004] = 0x4e05, [0x0005] = 0x4e04, [0x0006] = 0x5182, [0x0007] = 0x5196, [0x0008] = 0x5338, [0x0009] = 0x5369, [0x000a] = 0x53b6, [0x000b] = 0x4e2a, [0x000c] = 0x4e87, [0x000d] = 0x4e49, [0x000e] = 0x51e2, [0x000f] = 0x4e46, [0x0010] = 0x4e8f, [0x0011] = 0x4ebc, [0x0012] = 0x4ebe, [0x0013] = 0x5166, - [0x0014] = 0x51e3, [0x0015] = 0x5204, [0x0016] = 0x529c, [0x0018] = 0x5902, - [0x0019] = 0x590a, [0x001a] = 0x5b80, [0x001b] = 0x5ddb, [0x001c] = 0x5e7a, - [0x001d] = 0x5e7f, [0x001e] = 0x5ef4, [0x001f] = 0x5f50, [0x0020] = 0x5f51, - [0x0021] = 0x5f61, [0x0022] = 0x961d, [0x0024] = 0x4e63, [0x0025] = 0x4e62, - [0x0026] = 0x4ea3, [0x0027] = 0x5185, [0x0028] = 0x4ec5, [0x0029] = 0x4ecf, - [0x002a] = 0x4ece, [0x002b] = 0x4ecc, [0x002c] = 0x5184, [0x002d] = 0x5186, - [0x0030] = 0x51e4, [0x0031] = 0x5205, [0x0032] = 0x529e, [0x0033] = 0x529d, - [0x0034] = 0x52fd, [0x0035] = 0x5300, [0x0036] = 0x533a, [0x0038] = 0x5346, - [0x0039] = 0x535d, [0x003a] = 0x5386, [0x003b] = 0x53b7, [0x003d] = 0x53cc, - [0x003f] = 0x53ce, [0x0040] = 0x5721, [0x0042] = 0x5e00, [0x0043] = 0x5f0c, - [0x0044] = 0x6237, [0x0045] = 0x6238, [0x0046] = 0x6534, [0x0047] = 0x6535, - [0x0048] = 0x65e0, [0x004a] = 0x738d, [0x004b] = 0x4e97, [0x004c] = 0x4ee0, - [0x004f] = 0x4ee7, [0x0051] = 0x4ee6, [0x0056] = 0x56d8, [0x0057] = 0x518b, - [0x0058] = 0x518c, [0x0059] = 0x5199, [0x005a] = 0x51e5, [0x005c] = 0x520b, - [0x005f] = 0x5304, [0x0060] = 0x5303, [0x0061] = 0x5307, [0x0063] = 0x531e, - [0x0064] = 0x535f, [0x0065] = 0x536d, [0x0066] = 0x5389, [0x0067] = 0x53ba, - [0x0068] = 0x53d0, [0x006a] = 0x53f6, [0x006b] = 0x53f7, [0x006c] = 0x53f9, - [0x006e] = 0x53f4, [0x0071] = 0x5724, [0x0072] = 0x5904, [0x0073] = 0x5918, - [0x0074] = 0x5932, [0x0075] = 0x5930, [0x0076] = 0x5934, [0x0078] = 0x5975, - [0x007a] = 0x5b82, [0x007b] = 0x5bf9, [0x007c] = 0x5c14, [0x0084] = 0x5e81, - [0x0085] = 0x5e83, [0x0086] = 0x5f0d, [0x0087] = 0x5f52, [0x0089] = 0x5fca, - [0x008a] = 0x5fc7, [0x008b] = 0x6239, [0x008d] = 0x624f, [0x008e] = 0x65e7, - [0x008f] = 0x672f, [0x0090] = 0x6b7a, [0x0091] = 0x6c39, [0x0094] = 0x6c37, - [0x0095] = 0x6c44, [0x0096] = 0x6c45, [0x0097] = 0x738c, [0x0098] = 0x7592, - [0x0099] = 0x7676, [0x009a] = 0x9093, [0x009b] = 0x9092, [0x009e] = 0x4e21, + [0x0014] = 0x51e3, [0x0015] = 0x5204, [0x0016] = 0x529c, [0x0017] = 0x5344, + [0x0018] = 0x5902, [0x0019] = 0x590a, [0x001a] = 0x5b80, [0x001b] = 0x5ddb, + [0x001c] = 0x5e7a, [0x001d] = 0x5e7f, [0x001e] = 0x5ef4, [0x001f] = 0x5f50, + [0x0020] = 0x5f51, [0x0021] = 0x5f61, [0x0022] = 0x961d, [0x0023] = 0x2000b, + [0x0024] = 0x4e63, [0x0025] = 0x4e62, [0x0026] = 0x4ea3, [0x0027] = 0x5185, + [0x0028] = 0x4ec5, [0x0029] = 0x4ecf, [0x002a] = 0x4ece, [0x002b] = 0x4ecc, + [0x002c] = 0x5184, [0x002d] = 0x5186, [0x002f] = 0x34c5, [0x0030] = 0x51e4, + [0x0031] = 0x5205, [0x0032] = 0x529e, [0x0033] = 0x529d, [0x0034] = 0x52fd, + [0x0035] = 0x5300, [0x0036] = 0x533a, [0x0037] = 0x3539, [0x0038] = 0x5346, + [0x0039] = 0x535d, [0x003a] = 0x5386, [0x003b] = 0x53b7, [0x003c] = 0x3555, + [0x003d] = 0x53cc, [0x003e] = 0x355b, [0x003f] = 0x53ce, [0x0040] = 0x5721, + [0x0041] = 0x37a2, [0x0042] = 0x5e00, [0x0043] = 0x5f0c, [0x0044] = 0x6237, + [0x0045] = 0x6238, [0x0046] = 0x6534, [0x0047] = 0x6535, [0x0048] = 0x65e0, + [0x0049] = 0x3e26, [0x004a] = 0x738d, [0x004b] = 0x4e97, [0x004c] = 0x4ee0, + [0x004d] = 0x3432, [0x004e] = 0x201a9, [0x004f] = 0x4ee7, [0x0050] = 0x3433, + [0x0051] = 0x4ee6, [0x0052] = 0x3434, [0x0053] = 0x36a2, [0x0054] = 0x3431, + [0x0055] = 0x34b0, [0x0056] = 0x56d8, [0x0057] = 0x518b, [0x0058] = 0x518c, + [0x0059] = 0x5199, [0x005a] = 0x51e5, [0x005c] = 0x520b, [0x005d] = 0x34dc, + [0x005e] = 0x361e, [0x005f] = 0x5304, [0x0060] = 0x5303, [0x0061] = 0x5307, + [0x0063] = 0x531e, [0x0064] = 0x535f, [0x0065] = 0x536d, [0x0066] = 0x5389, + [0x0067] = 0x53ba, [0x0068] = 0x53d0, [0x0069] = 0x3565, [0x006a] = 0x53f6, + [0x006b] = 0x53f7, [0x006c] = 0x53f9, [0x006d] = 0x3564, [0x006e] = 0x53f4, + [0x006f] = 0x361d, [0x0070] = 0x3626, [0x0071] = 0x5724, [0x0072] = 0x5904, + [0x0073] = 0x5918, [0x0074] = 0x5932, [0x0075] = 0x5930, [0x0076] = 0x5934, + [0x0077] = 0x368e, [0x0078] = 0x5975, [0x0079] = 0x374a, [0x007a] = 0x5b82, + [0x007b] = 0x5bf9, [0x007c] = 0x5c14, [0x007d] = 0x378b, [0x007e] = 0x37a6, + [0x007f] = 0x37a4, [0x0080] = 0x37a5, [0x0081] = 0x37a7, [0x0082] = 0x382f, + [0x0083] = 0x3832, [0x0084] = 0x5e81, [0x0085] = 0x5e83, [0x0086] = 0x5f0d, + [0x0087] = 0x5f52, [0x0088] = 0x38d4, [0x0089] = 0x5fca, [0x008a] = 0x5fc7, + [0x008b] = 0x6239, [0x008c] = 0x39c5, [0x008d] = 0x624f, [0x008e] = 0x65e7, + [0x008f] = 0x672f, [0x0090] = 0x6b7a, [0x0091] = 0x6c39, [0x0092] = 0x3cba, + [0x0093] = 0x3cb9, [0x0094] = 0x6c37, [0x0095] = 0x6c44, [0x0096] = 0x6c45, + [0x0097] = 0x738c, [0x0098] = 0x7592, [0x0099] = 0x7676, [0x009a] = 0x9093, + [0x009b] = 0x9092, [0x009c] = 0x48b3, [0x009d] = 0x49ba, [0x009e] = 0x4e21, [0x009f] = 0x4e20, [0x00a0] = 0x4e22, [0x00a1] = 0x4e68, [0x00a2] = 0x4e89, - [0x00a3] = 0x4e98, [0x00a4] = 0x4ef9, [0x00a5] = 0x4eef, [0x00a8] = 0x4ef8, - [0x00a9] = 0x4f06, [0x00aa] = 0x4f03, [0x00ab] = 0x4efc, [0x00ac] = 0x4eee, - [0x00ad] = 0x4f16, [0x00af] = 0x4f28, [0x00b0] = 0x4f1c, [0x00b1] = 0x4f07, - [0x00b2] = 0x4f1a, [0x00b3] = 0x4efa, [0x00b4] = 0x4f17, [0x00b5] = 0x514a, + [0x00a3] = 0x4e98, [0x00a4] = 0x4ef9, [0x00a5] = 0x4eef, [0x00a6] = 0x343b, + [0x00a7] = 0x343c, [0x00a8] = 0x4ef8, [0x00a9] = 0x4f06, [0x00aa] = 0x4f03, + [0x00ab] = 0x4efc, [0x00ac] = 0x4eee, [0x00ad] = 0x4f16, [0x00ae] = 0x3439, + [0x00af] = 0x4f28, [0x00b0] = 0x4f1c, [0x00b1] = 0x4f07, [0x00b2] = 0x4f1a, + [0x00b3] = 0x4efa, [0x00b4] = 0x4f17, [0x00b5] = 0x514a, [0x00b6] = 0x34b2, [0x00b7] = 0x5172, [0x00b9] = 0x51b4, [0x00ba] = 0x51b3, [0x00bb] = 0x51b2, - [0x00bd] = 0x51e8, [0x00bf] = 0x5214, [0x00c0] = 0x520f, [0x00c1] = 0x5215, - [0x00c2] = 0x5218, [0x00c3] = 0x52a8, [0x00c5] = 0x534b, [0x00c6] = 0x534f, - [0x00c8] = 0x5350, [0x00ca] = 0x538b, [0x00cc] = 0x53be, [0x00ce] = 0x53d2, - [0x00cf] = 0x5416, [0x00d0] = 0x53ff, [0x00d2] = 0x5400, [0x00d4] = 0x5405, - [0x00d5] = 0x5413, [0x00d6] = 0x5415, [0x00d9] = 0x56e3, [0x00da] = 0x5735, - [0x00db] = 0x5736, [0x00dc] = 0x5731, [0x00dd] = 0x5732, [0x00de] = 0x58ee, - [0x00df] = 0x5905, [0x00e0] = 0x4e54, [0x00e2] = 0x5936, [0x00e6] = 0x597a, - [0x00e8] = 0x5986, [0x00eb] = 0x5b86, [0x00ec] = 0x5f53, [0x00ed] = 0x5c18, - [0x00ef] = 0x5c3d, [0x00f0] = 0x5c78, [0x00f5] = 0x5c80, [0x00f7] = 0x5e08, - [0x00fc] = 0x5ef5, [0x00fd] = 0x5f0e, [0x0101] = 0x5fd3, [0x0102] = 0x5fda, - [0x0104] = 0x5fdb, [0x0106] = 0x620f, [0x0107] = 0x625d, [0x0108] = 0x625f, - [0x0109] = 0x6267, [0x010a] = 0x6257, [0x010b] = 0x9f50, [0x010d] = 0x65eb, - [0x010e] = 0x65ea, [0x0110] = 0x6737, [0x0112] = 0x6732, [0x0113] = 0x6736, - [0x0114] = 0x6b22, [0x0115] = 0x6bce, [0x0117] = 0x6c58, [0x0118] = 0x6c51, - [0x0119] = 0x6c77, [0x011a] = 0x6c3c, [0x011c] = 0x6c5a, [0x011e] = 0x6c53, - [0x011f] = 0x706f, [0x0120] = 0x7072, [0x0121] = 0x706e, [0x0124] = 0x7073, - [0x0125] = 0x72b1, [0x0126] = 0x72b2, [0x0128] = 0x738f, [0x012c] = 0x793c, - [0x012e] = 0x808d, [0x012f] = 0x808e, [0x0131] = 0x827b, [0x0133] = 0x8d71, - [0x0134] = 0x8fb9, [0x0135] = 0x9096, [0x0136] = 0x909a, [0x0138] = 0x4e24, - [0x0139] = 0x4e71, [0x013b] = 0x4e9c, [0x013c] = 0x4f45, [0x013d] = 0x4f4a, - [0x013e] = 0x4f39, [0x013f] = 0x4f37, [0x0141] = 0x4f32, [0x0142] = 0x4f42, - [0x0144] = 0x4f44, [0x0145] = 0x4f4b, [0x0147] = 0x4f40, [0x0148] = 0x4f35, - [0x0149] = 0x4f31, [0x014a] = 0x5151, [0x014c] = 0x5150, [0x014d] = 0x514e, - [0x0150] = 0x519d, [0x0152] = 0x51b5, [0x0153] = 0x51b8, [0x0154] = 0x51ec, + [0x00bc] = 0x34c7, [0x00bd] = 0x51e8, [0x00be] = 0x342b, [0x00bf] = 0x5214, + [0x00c0] = 0x520f, [0x00c1] = 0x5215, [0x00c2] = 0x5218, [0x00c3] = 0x52a8, + [0x00c5] = 0x534b, [0x00c6] = 0x534f, [0x00c7] = 0x353b, [0x00c8] = 0x5350, + [0x00c9] = 0x3544, [0x00ca] = 0x538b, [0x00cb] = 0x3542, [0x00cc] = 0x53be, + [0x00cd] = 0x355c, [0x00ce] = 0x53d2, [0x00cf] = 0x5416, [0x00d0] = 0x53ff, + [0x00d1] = 0x3567, [0x00d2] = 0x5400, [0x00d3] = 0x3566, [0x00d4] = 0x5405, + [0x00d5] = 0x5413, [0x00d6] = 0x5415, [0x00d8] = 0x361f, [0x00d9] = 0x56e3, + [0x00da] = 0x5735, [0x00db] = 0x5736, [0x00dc] = 0x5731, [0x00dd] = 0x5732, + [0x00de] = 0x58ee, [0x00df] = 0x5905, [0x00e0] = 0x4e54, [0x00e1] = 0x368f, + [0x00e2] = 0x5936, [0x00e3] = 0x3690, [0x00e4] = 0x36a8, [0x00e5] = 0x36a4, + [0x00e6] = 0x597a, [0x00e7] = 0x36a3, [0x00e8] = 0x5986, [0x00e9] = 0x373d, + [0x00ea] = 0x374c, [0x00eb] = 0x5b86, [0x00ec] = 0x5f53, [0x00ed] = 0x5c18, + [0x00ee] = 0x378c, [0x00ef] = 0x5c3d, [0x00f0] = 0x5c78, [0x00f1] = 0x37a8, + [0x00f2] = 0x37ad, [0x00f3] = 0x37af, [0x00f4] = 0x21d46, [0x00f5] = 0x5c80, + [0x00f6] = 0x3829, [0x00f7] = 0x5e08, [0x00f8] = 0x3836, [0x00f9] = 0x3871, + [0x00fa] = 0x3870, [0x00fb] = 0x386f, [0x00fc] = 0x5ef5, [0x00fd] = 0x5f0e, + [0x00fe] = 0x38a9, [0x00ff] = 0x38aa, [0x0100] = 0x38fb, [0x0101] = 0x5fd3, + [0x0102] = 0x5fda, [0x0103] = 0x38fc, [0x0104] = 0x5fdb, [0x0105] = 0x39ae, + [0x0106] = 0x620f, [0x0107] = 0x625d, [0x0108] = 0x625f, [0x0109] = 0x6267, + [0x010a] = 0x6257, [0x010b] = 0x9f50, [0x010c] = 0x3ac3, [0x010d] = 0x65eb, + [0x010e] = 0x65ea, [0x010f] = 0x3b30, [0x0110] = 0x6737, [0x0111] = 0x3b41, + [0x0112] = 0x6732, [0x0113] = 0x6736, [0x0114] = 0x6b22, [0x0115] = 0x6bce, + [0x0116] = 0x3c8c, [0x0117] = 0x6c58, [0x0118] = 0x6c51, [0x0119] = 0x6c77, + [0x011a] = 0x6c3c, [0x011b] = 0x3cbb, [0x011c] = 0x6c5a, [0x011d] = 0x23c86, + [0x011e] = 0x6c53, [0x011f] = 0x706f, [0x0120] = 0x7072, [0x0121] = 0x706e, + [0x0123] = 0x3da1, [0x0124] = 0x7073, [0x0125] = 0x72b1, [0x0126] = 0x72b2, + [0x0127] = 0x3ea8, [0x0128] = 0x738f, [0x0129] = 0x3eaa, [0x012a] = 0x3eab, + [0x012b] = 0x4096, [0x012c] = 0x793c, [0x012d] = 0x41c2, [0x012e] = 0x808d, + [0x012f] = 0x808e, [0x0130] = 0x4493, [0x0131] = 0x827b, [0x0132] = 0x4494, + [0x0133] = 0x8d71, [0x0134] = 0x8fb9, [0x0135] = 0x9096, [0x0136] = 0x909a, + [0x0137] = 0x49bb, [0x0138] = 0x4e24, [0x0139] = 0x4e71, [0x013b] = 0x4e9c, + [0x013c] = 0x4f45, [0x013d] = 0x4f4a, [0x013e] = 0x4f39, [0x013f] = 0x4f37, + [0x0140] = 0x3443, [0x0141] = 0x4f32, [0x0142] = 0x4f42, [0x0143] = 0x3442, + [0x0144] = 0x4f44, [0x0145] = 0x4f4b, [0x0146] = 0x3444, [0x0147] = 0x4f40, + [0x0148] = 0x4f35, [0x0149] = 0x4f31, [0x014a] = 0x5151, [0x014c] = 0x5150, + [0x014d] = 0x514e, [0x014e] = 0x34b3, [0x014f] = 0x34b7, [0x0150] = 0x519d, + [0x0151] = 0x34c8, [0x0152] = 0x51b5, [0x0153] = 0x51b8, [0x0154] = 0x51ec, [0x0155] = 0x5223, [0x0156] = 0x5227, [0x0157] = 0x5226, [0x0158] = 0x521f, [0x0159] = 0x522b, [0x015a] = 0x5220, [0x015b] = 0x52b4, [0x015c] = 0x52b3, - [0x015e] = 0x5325, [0x015f] = 0x533b, [0x0160] = 0x5374, [0x0166] = 0x544d, - [0x0169] = 0x543a, [0x016c] = 0x5444, [0x016d] = 0x544c, [0x016e] = 0x5423, - [0x016f] = 0x541a, [0x0170] = 0x5432, [0x0171] = 0x544b, [0x0172] = 0x5421, - [0x0174] = 0x5434, [0x0175] = 0x5449, [0x0176] = 0x5450, [0x0177] = 0x5422, - [0x0178] = 0x543f, [0x0179] = 0x5451, [0x017a] = 0x545a, [0x017b] = 0x542f, + [0x015d] = 0x3518, [0x015e] = 0x5325, [0x015f] = 0x533b, [0x0160] = 0x5374, + [0x0161] = 0x3547, [0x0162] = 0x3546, [0x0163] = 0x3545, [0x0164] = 0x356b, + [0x0165] = 0x3569, [0x0166] = 0x544d, [0x0167] = 0x3572, [0x0168] = 0x3571, + [0x0169] = 0x543a, [0x016a] = 0x356c, [0x016b] = 0x356f, [0x016c] = 0x5444, + [0x016d] = 0x544c, [0x016e] = 0x5423, [0x016f] = 0x541a, [0x0170] = 0x5432, + [0x0171] = 0x544b, [0x0172] = 0x5421, [0x0173] = 0x3573, [0x0174] = 0x5434, + [0x0175] = 0x5449, [0x0176] = 0x5450, [0x0177] = 0x5422, [0x0178] = 0x543f, + [0x0179] = 0x5451, [0x017a] = 0x545a, [0x017b] = 0x542f, [0x017c] = 0x3576, [0x017d] = 0x56e9, [0x017e] = 0x56f2, [0x017f] = 0x56f3, [0x0180] = 0x56ef, [0x0181] = 0x56ed, [0x0182] = 0x56ec, [0x0183] = 0x56e6, [0x0184] = 0x5748, - [0x0186] = 0x5744, [0x0187] = 0x573f, [0x0188] = 0x573c, [0x0189] = 0x5753, - [0x018a] = 0x5756, [0x018c] = 0x575f, [0x018d] = 0x5743, [0x018e] = 0x5758, - [0x018f] = 0x5757, [0x0193] = 0x5746, [0x0195] = 0x573d, [0x0197] = 0x5742, - [0x0198] = 0x5754, [0x0199] = 0x5755, [0x019a] = 0x58f1, [0x019b] = 0x58f2, - [0x019c] = 0x58f0, [0x019d] = 0x590b, [0x019e] = 0x9ea6, [0x019f] = 0x56f1, - [0x01a0] = 0x593d, [0x01a2] = 0x5994, [0x01a3] = 0x598c, [0x01a5] = 0x599c, - [0x01a8] = 0x599f, [0x01aa] = 0x599b, [0x01ac] = 0x5989, [0x01ad] = 0x599a, - [0x01af] = 0x6588, [0x01b1] = 0x5b8d, [0x01b3] = 0x5bfe, [0x01b4] = 0x5bff, - [0x01b5] = 0x5bfd, [0x01b6] = 0x5c2b, [0x01b8] = 0x5c84, [0x01b9] = 0x5c8e, - [0x01ba] = 0x5c9c, [0x01bd] = 0x5c85, [0x01be] = 0x5df5, [0x01bf] = 0x5e09, - [0x01c2] = 0x5e0b, [0x01c4] = 0x5e92, [0x01c5] = 0x5e90, [0x01c6] = 0x5f03, - [0x01c8] = 0x5f1e, [0x01c9] = 0x5f63, [0x01cb] = 0x5fe7, [0x01cc] = 0x5ffe, - [0x01cd] = 0x5fe6, [0x01ce] = 0x5fdc, [0x01cf] = 0x5fce, [0x01d1] = 0x5ffc, - [0x01d2] = 0x5fdf, [0x01d3] = 0x5fec, [0x01d4] = 0x5ff6, [0x01d6] = 0x5ff2, - [0x01d7] = 0x5ff0, [0x01d8] = 0x5ff9, [0x01da] = 0x6213, [0x01dd] = 0x623b, - [0x01de] = 0x623c, [0x01df] = 0x6282, [0x01e3] = 0x6278, [0x01e4] = 0x628b, + [0x0185] = 0x3627, [0x0186] = 0x5744, [0x0187] = 0x573f, [0x0188] = 0x573c, + [0x0189] = 0x5753, [0x018a] = 0x5756, [0x018b] = 0x3630, [0x018c] = 0x575f, + [0x018d] = 0x5743, [0x018e] = 0x5758, [0x018f] = 0x5757, [0x0190] = 0x3629, + [0x0191] = 0x362a, [0x0192] = 0x362f, [0x0193] = 0x5746, [0x0194] = 0x362c, + [0x0195] = 0x573d, [0x0196] = 0x362d, [0x0197] = 0x5742, [0x0198] = 0x5754, + [0x0199] = 0x5755, [0x019a] = 0x58f1, [0x019b] = 0x58f2, [0x019c] = 0x58f0, + [0x019d] = 0x590b, [0x019e] = 0x9ea6, [0x019f] = 0x56f1, [0x01a0] = 0x593d, + [0x01a1] = 0x3693, [0x01a2] = 0x5994, [0x01a3] = 0x598c, [0x01a4] = 0x36ad, + [0x01a5] = 0x599c, [0x01a6] = 0x36ac, [0x01a7] = 0x36ab, [0x01a8] = 0x599f, + [0x01a9] = 0x36a9, [0x01aa] = 0x599b, [0x01ab] = 0x36ae, [0x01ac] = 0x5989, + [0x01ad] = 0x599a, [0x01ae] = 0x36aa, [0x01af] = 0x6588, [0x01b0] = 0x374e, + [0x01b1] = 0x5b8d, [0x01b2] = 0x3750, [0x01b3] = 0x5bfe, [0x01b4] = 0x5bff, + [0x01b5] = 0x5bfd, [0x01b6] = 0x5c2b, [0x01b7] = 0x37b2, [0x01b8] = 0x5c84, + [0x01b9] = 0x5c8e, [0x01ba] = 0x5c9c, [0x01bb] = 0x37b5, [0x01bc] = 0x37b6, + [0x01bd] = 0x5c85, [0x01be] = 0x5df5, [0x01bf] = 0x5e09, [0x01c0] = 0x3839, + [0x01c1] = 0x383b, [0x01c2] = 0x5e0b, [0x01c3] = 0x3872, [0x01c4] = 0x5e92, + [0x01c5] = 0x5e90, [0x01c6] = 0x5f03, [0x01c7] = 0x38ac, [0x01c8] = 0x5f1e, + [0x01c9] = 0x5f63, [0x01ca] = 0x3908, [0x01cb] = 0x5fe7, [0x01cc] = 0x5ffe, + [0x01cd] = 0x5fe6, [0x01ce] = 0x5fdc, [0x01cf] = 0x5fce, [0x01d0] = 0x3903, + [0x01d1] = 0x5ffc, [0x01d2] = 0x5fdf, [0x01d3] = 0x5fec, [0x01d4] = 0x5ff6, + [0x01d5] = 0x225d7, [0x01d6] = 0x5ff2, [0x01d7] = 0x5ff0, [0x01d8] = 0x5ff9, + [0x01d9] = 0x390b, [0x01da] = 0x6213, [0x01db] = 0x39af, [0x01dd] = 0x623b, + [0x01de] = 0x623c, [0x01df] = 0x6282, [0x01e0] = 0x39ce, [0x01e1] = 0x39cb, + [0x01e2] = 0x39cc, [0x01e3] = 0x6278, [0x01e4] = 0x628b, [0x01e5] = 0x39cd, [0x01e6] = 0x629e, [0x01e7] = 0x62a5, [0x01e8] = 0x629b, [0x01e9] = 0x629c, [0x01ea] = 0x6299, [0x01eb] = 0x628d, [0x01ec] = 0x6285, [0x01ed] = 0x629d, - [0x01ee] = 0x6275, [0x01f2] = 0x65f6, [0x01f6] = 0x66f5, [0x01f7] = 0x675b, - [0x01f9] = 0x6754, [0x01fa] = 0x6752, [0x01fc] = 0x6758, [0x01fd] = 0x6744, - [0x01fe] = 0x674a, [0x01ff] = 0x6761, [0x0201] = 0x6c7f, [0x0202] = 0x6c91, - [0x0203] = 0x6c9e, [0x0205] = 0x6c6e, [0x0206] = 0x6c7c, [0x0207] = 0x6c9f, - [0x0208] = 0x6c75, [0x020a] = 0x6c56, [0x020b] = 0x6ca2, [0x020c] = 0x6c79, - [0x020e] = 0x6ca1, [0x0210] = 0x6caa, [0x0211] = 0x6ca0, [0x0213] = 0x7079, - [0x0214] = 0x7077, [0x0215] = 0x707e, [0x0217] = 0x7075, [0x0218] = 0x707b, - [0x0219] = 0x7264, [0x021b] = 0x72bb, [0x021c] = 0x72bc, [0x021d] = 0x72c7, - [0x021e] = 0x72b9, [0x021f] = 0x72be, [0x0220] = 0x72b6, [0x0223] = 0x7398, - [0x0228] = 0x7593, [0x0229] = 0x7680, [0x022b] = 0x7683, [0x022c] = 0x76c0, - [0x022d] = 0x76c1, [0x0230] = 0x77f4, [0x0231] = 0x77f5, [0x0233] = 0x7acc, - [0x0234] = 0x7acd, [0x0235] = 0x7cfa, [0x0236] = 0x809f, [0x0237] = 0x8091, - [0x0238] = 0x8097, [0x0239] = 0x8094, [0x023b] = 0x8286, [0x023c] = 0x828c, - [0x023e] = 0x8295, [0x0240] = 0x866c, [0x0242] = 0x8fb5, [0x0243] = 0x8fbe, - [0x0244] = 0x8fc7, [0x0246] = 0x8fc1, [0x0247] = 0x90a9, [0x0248] = 0x90a4, - [0x024c] = 0x90a8, [0x024d] = 0x9627, [0x024e] = 0x9626, [0x024f] = 0x962b, - [0x0250] = 0x9633, [0x0251] = 0x9634, [0x0252] = 0x9629, [0x0253] = 0x4e3d, - [0x0255] = 0x4e9d, [0x0256] = 0x4f93, [0x0257] = 0x4f8a, [0x025a] = 0x4f6d, + [0x01ee] = 0x6275, [0x01ef] = 0x3a80, [0x01f0] = 0x3aaf, [0x01f1] = 0x3ad3, + [0x01f2] = 0x65f6, [0x01f3] = 0x3ad5, [0x01f4] = 0x3ad4, [0x01f5] = 0x3ad7, + [0x01f6] = 0x66f5, [0x01f7] = 0x675b, [0x01f8] = 0x3b42, [0x01f9] = 0x6754, + [0x01fa] = 0x6752, [0x01fb] = 0x3b44, [0x01fc] = 0x6758, [0x01fd] = 0x6744, + [0x01fe] = 0x674a, [0x01ff] = 0x6761, [0x0200] = 0x3cc6, [0x0201] = 0x6c7f, + [0x0202] = 0x6c91, [0x0203] = 0x6c9e, [0x0204] = 0x3cc0, [0x0205] = 0x6c6e, + [0x0206] = 0x6c7c, [0x0207] = 0x6c9f, [0x0208] = 0x6c75, [0x0209] = 0x3cbe, + [0x020a] = 0x6c56, [0x020b] = 0x6ca2, [0x020c] = 0x6c79, [0x020d] = 0x3cca, + [0x020e] = 0x6ca1, [0x020f] = 0x3cc4, [0x0210] = 0x6caa, [0x0211] = 0x6ca0, + [0x0212] = 0x3cc2, [0x0213] = 0x7079, [0x0214] = 0x7077, [0x0215] = 0x707e, + [0x0216] = 0x3da4, [0x0217] = 0x7075, [0x0218] = 0x707b, [0x0219] = 0x7264, + [0x021a] = 0x3e29, [0x021b] = 0x72bb, [0x021c] = 0x72bc, [0x021d] = 0x72c7, + [0x021e] = 0x72b9, [0x021f] = 0x72be, [0x0220] = 0x72b6, [0x0221] = 0x3e60, + [0x0222] = 0x3e5e, [0x0223] = 0x7398, [0x0224] = 0x3ead, [0x0225] = 0x3eae, + [0x0226] = 0x3eac, [0x0227] = 0x3f57, [0x0228] = 0x7593, [0x0229] = 0x7680, + [0x022a] = 0x3fdd, [0x022b] = 0x7683, [0x022c] = 0x76c0, [0x022d] = 0x76c1, + [0x022e] = 0x400e, [0x022f] = 0x4097, [0x0230] = 0x77f4, [0x0231] = 0x77f5, + [0x0232] = 0x4127, [0x0233] = 0x7acc, [0x0234] = 0x7acd, [0x0235] = 0x7cfa, + [0x0236] = 0x809f, [0x0237] = 0x8091, [0x0238] = 0x8097, [0x0239] = 0x8094, + [0x023a] = 0x4495, [0x023b] = 0x8286, [0x023c] = 0x828c, [0x023e] = 0x8295, + [0x023f] = 0x4498, [0x0240] = 0x866c, [0x0241] = 0x459d, [0x0242] = 0x8fb5, + [0x0243] = 0x8fbe, [0x0244] = 0x8fc7, [0x0245] = 0x488a, [0x0246] = 0x8fc1, + [0x0247] = 0x90a9, [0x0248] = 0x90a4, [0x0249] = 0x48b5, [0x024a] = 0x48b6, + [0x024b] = 0x48b7, [0x024c] = 0x90a8, [0x024d] = 0x9627, [0x024e] = 0x9626, + [0x024f] = 0x962b, [0x0250] = 0x9633, [0x0251] = 0x9634, [0x0252] = 0x9629, + [0x0253] = 0x4e3d, [0x0254] = 0x3428, [0x0255] = 0x4e9d, [0x0256] = 0x4f93, + [0x0257] = 0x4f8a, [0x0258] = 0x344d, [0x0259] = 0x3449, [0x025a] = 0x4f6d, [0x025b] = 0x4f8e, [0x025c] = 0x4fa0, [0x025d] = 0x4fa2, [0x025e] = 0x4fa1, - [0x025f] = 0x4f9f, [0x0260] = 0x4fa3, [0x0262] = 0x4f72, [0x0264] = 0x4f8c, - [0x0265] = 0x5156, [0x0268] = 0x5190, [0x026c] = 0x51ed, [0x026d] = 0x51fe, - [0x026e] = 0x522f, [0x0270] = 0x523c, [0x0271] = 0x5234, [0x0272] = 0x5239, - [0x0273] = 0x52b9, [0x0274] = 0x52b5, [0x0275] = 0x52bf, [0x0276] = 0x5355, - [0x0278] = 0x5376, [0x0279] = 0x537a, [0x027a] = 0x5393, [0x027c] = 0x53c1, - [0x027d] = 0x53c2, [0x027e] = 0x53d5, [0x027f] = 0x5485, [0x0281] = 0x545f, - [0x0282] = 0x5493, [0x0283] = 0x5489, [0x0284] = 0x5479, [0x0285] = 0x9efe, - [0x0286] = 0x548f, [0x0287] = 0x5469, [0x0288] = 0x546d, [0x028a] = 0x5494, - [0x028b] = 0x546a, [0x028c] = 0x548a, [0x028e] = 0x56fd, [0x028f] = 0x56fb, - [0x0290] = 0x56f8, [0x0292] = 0x56fc, [0x0293] = 0x56f6, [0x0294] = 0x5765, - [0x0295] = 0x5781, [0x0296] = 0x5763, [0x0297] = 0x5767, [0x0299] = 0x576e, - [0x029a] = 0x5778, [0x029b] = 0x577f, [0x029e] = 0x58f3, [0x029f] = 0x594b, - [0x02a0] = 0x594c, [0x02a4] = 0x59ad, [0x02a6] = 0x59c4, [0x02a8] = 0x59c2, - [0x02a9] = 0x59b0, [0x02ae] = 0x59bf, [0x02b0] = 0x59c9, [0x02b1] = 0x59b8, - [0x02b2] = 0x59ac, [0x02b6] = 0x59b7, [0x02b7] = 0x59d7, [0x02b9] = 0x5b60, - [0x02bb] = 0x5b96, [0x02bc] = 0x5b9e, [0x02bd] = 0x5b94, [0x02be] = 0x5b9f, - [0x02bf] = 0x5b9d, [0x02c1] = 0x5c00, [0x02c2] = 0x5c19, [0x02c5] = 0x5c49, - [0x02c6] = 0x5c4a, [0x02c8] = 0x5cbb, [0x02c9] = 0x5cc1, [0x02cd] = 0x5cb9, - [0x02ce] = 0x5c9e, [0x02cf] = 0x5cb4, [0x02d0] = 0x5cba, [0x02d1] = 0x5df6, - [0x02d2] = 0x5e13, [0x02d3] = 0x5e12, [0x02d4] = 0x5e77, [0x02d6] = 0x5e98, - [0x02d8] = 0x5e99, [0x02d9] = 0x5e9d, [0x02da] = 0x5ef8, [0x02dc] = 0x5ef9, - [0x02de] = 0x5f06, [0x02df] = 0x5f21, [0x02e1] = 0x5f25, [0x02e2] = 0x5f55, - [0x02e6] = 0x5f84, [0x02e7] = 0x5f83, [0x02e8] = 0x6030, [0x02e9] = 0x6007, - [0x02eb] = 0x6036, [0x02ef] = 0x5fe9, [0x02f0] = 0x603d, [0x02f1] = 0x6008, - [0x02f4] = 0x62ba, [0x02f5] = 0x62b2, [0x02f7] = 0x62b7, [0x02f8] = 0x62e4, - [0x02f9] = 0x62a7, [0x02fd] = 0x62d5, [0x02fe] = 0x62e1, [0x02ff] = 0x62dd, - [0x0300] = 0x62a6, [0x0301] = 0x62c1, [0x0302] = 0x62c5, [0x0303] = 0x62c0, - [0x0304] = 0x62df, [0x0305] = 0x62e0, [0x0306] = 0x62de, [0x0308] = 0x6589, - [0x030a] = 0x65a6, [0x030b] = 0x65ba, [0x030d] = 0x65ff, [0x030f] = 0x6617, - [0x0310] = 0x6618, [0x0311] = 0x6601, [0x0312] = 0x65fe, [0x0314] = 0x670c, - [0x0316] = 0x676b, [0x0317] = 0x6796, [0x0318] = 0x6782, [0x0319] = 0x678a, - [0x031b] = 0x67a3, [0x031d] = 0x67a2, [0x031e] = 0x678f, [0x0320] = 0x67f9, + [0x025f] = 0x4f9f, [0x0260] = 0x4fa3, [0x0261] = 0x20209, [0x0262] = 0x4f72, + [0x0263] = 0x3451, [0x0264] = 0x4f8c, [0x0265] = 0x5156, [0x0268] = 0x5190, + [0x0269] = 0x34cb, [0x026a] = 0x34ca, [0x026b] = 0x34cc, [0x026c] = 0x51ed, + [0x026d] = 0x51fe, [0x026e] = 0x522f, [0x026f] = 0x206ec, [0x0270] = 0x523c, + [0x0271] = 0x5234, [0x0272] = 0x5239, [0x0273] = 0x52b9, [0x0274] = 0x52b5, + [0x0275] = 0x52bf, [0x0276] = 0x5355, [0x0277] = 0x353d, [0x0278] = 0x5376, + [0x0279] = 0x537a, [0x027a] = 0x5393, [0x027b] = 0x3548, [0x027c] = 0x53c1, + [0x027d] = 0x53c2, [0x027e] = 0x53d5, [0x027f] = 0x5485, [0x0280] = 0x3578, + [0x0281] = 0x545f, [0x0282] = 0x5493, [0x0283] = 0x5489, [0x0284] = 0x5479, + [0x0285] = 0x9efe, [0x0286] = 0x548f, [0x0287] = 0x5469, [0x0288] = 0x546d, + [0x0289] = 0x357a, [0x028a] = 0x5494, [0x028b] = 0x546a, [0x028c] = 0x548a, + [0x028d] = 0x3577, [0x028e] = 0x56fd, [0x028f] = 0x56fb, [0x0290] = 0x56f8, + [0x0291] = 0x3621, [0x0292] = 0x56fc, [0x0293] = 0x56f6, [0x0294] = 0x5765, + [0x0295] = 0x5781, [0x0296] = 0x5763, [0x0297] = 0x5767, [0x0298] = 0x3631, + [0x0299] = 0x576e, [0x029a] = 0x5778, [0x029b] = 0x577f, [0x029c] = 0x3633, + [0x029d] = 0x3634, [0x029e] = 0x58f3, [0x029f] = 0x594b, [0x02a0] = 0x594c, + [0x02a1] = 0x36c1, [0x02a2] = 0x36b0, [0x02a3] = 0x36b4, [0x02a4] = 0x59ad, + [0x02a5] = 0x36b8, [0x02a6] = 0x59c4, [0x02a7] = 0x36bc, [0x02a8] = 0x59c2, + [0x02a9] = 0x59b0, [0x02aa] = 0x36bf, [0x02ab] = 0x36b5, [0x02ac] = 0x36b1, + [0x02ad] = 0x36bd, [0x02ae] = 0x59bf, [0x02af] = 0x36bb, [0x02b0] = 0x59c9, + [0x02b1] = 0x59b8, [0x02b2] = 0x59ac, [0x02b3] = 0x36b3, [0x02b4] = 0x36b6, + [0x02b5] = 0x36ba, [0x02b6] = 0x59b7, [0x02b7] = 0x59d7, [0x02b8] = 0x36b7, + [0x02b9] = 0x5b60, [0x02ba] = 0x3740, [0x02bb] = 0x5b96, [0x02bc] = 0x5b9e, + [0x02bd] = 0x5b94, [0x02be] = 0x5b9f, [0x02bf] = 0x5b9d, [0x02c0] = 0x3752, + [0x02c1] = 0x5c00, [0x02c2] = 0x5c19, [0x02c3] = 0x3790, [0x02c4] = 0x3791, + [0x02c5] = 0x5c49, [0x02c6] = 0x5c4a, [0x02c7] = 0x37be, [0x02c8] = 0x5cbb, + [0x02c9] = 0x5cc1, [0x02ca] = 0x37c0, [0x02cb] = 0x37c1, [0x02cc] = 0x37b9, + [0x02cd] = 0x5cb9, [0x02ce] = 0x5c9e, [0x02cf] = 0x5cb4, [0x02d0] = 0x5cba, + [0x02d1] = 0x5df6, [0x02d2] = 0x5e13, [0x02d3] = 0x5e12, [0x02d4] = 0x5e77, + [0x02d5] = 0x3879, [0x02d6] = 0x5e98, [0x02d7] = 0x387b, [0x02d8] = 0x5e99, + [0x02d9] = 0x5e9d, [0x02da] = 0x5ef8, [0x02db] = 0x38a0, [0x02dc] = 0x5ef9, + [0x02dd] = 0x3429, [0x02de] = 0x5f06, [0x02df] = 0x5f21, [0x02e0] = 0x38ae, + [0x02e1] = 0x5f25, [0x02e2] = 0x5f55, [0x02e3] = 0x38cd, [0x02e4] = 0x38cb, + [0x02e5] = 0x38d9, [0x02e6] = 0x5f84, [0x02e7] = 0x5f83, [0x02e8] = 0x6030, + [0x02e9] = 0x6007, [0x02ea] = 0x390c, [0x02eb] = 0x6036, [0x02ec] = 0x3901, + [0x02ed] = 0x3905, [0x02ee] = 0x3902, [0x02ef] = 0x5fe9, [0x02f0] = 0x603d, + [0x02f1] = 0x6008, [0x02f2] = 0x3913, [0x02f3] = 0x3911, [0x02f4] = 0x62ba, + [0x02f5] = 0x62b2, [0x02f6] = 0x39e4, [0x02f7] = 0x62b7, [0x02f8] = 0x62e4, + [0x02f9] = 0x62a7, [0x02fa] = 0x39da, [0x02fb] = 0x39d5, [0x02fc] = 0x39d3, + [0x02fd] = 0x62d5, [0x02fe] = 0x62e1, [0x02ff] = 0x62dd, [0x0300] = 0x62a6, + [0x0301] = 0x62c1, [0x0302] = 0x62c5, [0x0303] = 0x62c0, [0x0304] = 0x62df, + [0x0305] = 0x62e0, [0x0306] = 0x62de, [0x0307] = 0x39d6, [0x0308] = 0x6589, + [0x0309] = 0x3ab4, [0x030a] = 0x65a6, [0x030b] = 0x65ba, [0x030c] = 0x3ad9, + [0x030d] = 0x65ff, [0x030e] = 0x3ad8, [0x030f] = 0x6617, [0x0310] = 0x6618, + [0x0311] = 0x6601, [0x0312] = 0x65fe, [0x0313] = 0x3b33, [0x0314] = 0x670c, + [0x0315] = 0x3b48, [0x0316] = 0x676b, [0x0317] = 0x6796, [0x0318] = 0x6782, + [0x0319] = 0x678a, [0x031a] = 0x3b47, [0x031b] = 0x67a3, [0x031c] = 0x3b4b, + [0x031d] = 0x67a2, [0x031e] = 0x678f, [0x031f] = 0x3b4a, [0x0320] = 0x67f9, [0x0321] = 0x6780, [0x0322] = 0x6b26, [0x0323] = 0x6b27, [0x0324] = 0x6b68, - [0x0325] = 0x6b69, [0x0327] = 0x6b81, [0x0328] = 0x6bb4, [0x0329] = 0x6bd1, - [0x032c] = 0x6c1c, [0x0332] = 0x6c97, [0x0333] = 0x6c6c, [0x0334] = 0x6cdf, - [0x0336] = 0x6cea, [0x0338] = 0x6ce4, [0x0339] = 0x6cd8, [0x033a] = 0x6cb2, - [0x033b] = 0x6cce, [0x033c] = 0x6cc8, [0x033e] = 0x708b, [0x033f] = 0x7088, - [0x0340] = 0x7090, [0x0341] = 0x708f, [0x0343] = 0x7087, [0x0344] = 0x7089, - [0x0345] = 0x708d, [0x0346] = 0x7081, [0x0348] = 0x708c, [0x034b] = 0x7240, - [0x034e] = 0x7265, [0x034f] = 0x7266, [0x0350] = 0x7268, [0x0353] = 0x72cd, - [0x0354] = 0x72d3, [0x0355] = 0x72db, [0x0357] = 0x72cf, [0x0358] = 0x73a7, - [0x0359] = 0x73a3, [0x035a] = 0x739e, [0x035c] = 0x73af, [0x035f] = 0x73aa, - [0x0360] = 0x739c, [0x0362] = 0x7542, [0x0363] = 0x7544, [0x0364] = 0x753b, - [0x0365] = 0x7541, [0x0367] = 0x759b, [0x0368] = 0x759e, [0x036a] = 0x79c4, - [0x036b] = 0x79c3, [0x036c] = 0x79c6, [0x036f] = 0x79c7, [0x0371] = 0x79ca, - [0x0374] = 0x7acf, [0x0375] = 0x7c76, [0x0376] = 0x7c74, [0x0377] = 0x7cff, - [0x0378] = 0x7cfc, [0x037b] = 0x7f59, [0x037c] = 0x80a8, [0x037f] = 0x80b0, - [0x0381] = 0x80b3, [0x0383] = 0x80a4, [0x0384] = 0x80b6, [0x0385] = 0x80a7, - [0x0386] = 0x80ac, [0x0388] = 0x80a6, [0x0389] = 0x5367, [0x038a] = 0x820e, - [0x038b] = 0x82c4, [0x038c] = 0x833e, [0x038d] = 0x829c, [0x0393] = 0x82aa, - [0x0395] = 0x82c9, [0x0398] = 0x82a6, [0x0399] = 0x82b2, [0x039d] = 0x8fcc, - [0x039e] = 0x8fd9, [0x039f] = 0x8fca, [0x03a0] = 0x8fd8, [0x03a1] = 0x8fcf, - [0x03a2] = 0x90b7, [0x03a4] = 0x90ad, [0x03a5] = 0x90b9, [0x03a6] = 0x9637, - [0x03a8] = 0x9641, [0x03a9] = 0x963e, [0x03aa] = 0x96b6, [0x03ab] = 0x9751, - [0x03ac] = 0x9763, [0x03ad] = 0x4e57, [0x03ae] = 0x4e79, [0x03af] = 0x4eb2, - [0x03b0] = 0x4eb0, [0x03b1] = 0x4eaf, [0x03b2] = 0x4eb1, [0x03b3] = 0x4fd2, - [0x03b4] = 0x4fd5, [0x03b6] = 0x4fbe, [0x03b7] = 0x4fb8, [0x03b8] = 0x4fb0, - [0x03b9] = 0x4fb1, [0x03ba] = 0x4fc8, [0x03bd] = 0x4fc6, [0x03be] = 0x4fcc, - [0x03bf] = 0x4fe5, [0x03c0] = 0x4fe3, [0x03c1] = 0x4fb4, [0x03c2] = 0x516a, - [0x03c4] = 0x519f, [0x03c6] = 0x51c1, [0x03c8] = 0x51c2, [0x03c9] = 0x51c3, - [0x03ca] = 0x5245, [0x03cb] = 0x5248, [0x03ce] = 0x524f, [0x03d1] = 0x52c5, - [0x03d2] = 0x52ca, [0x03d3] = 0x52c4, [0x03d4] = 0x5327, [0x03d5] = 0x5358, - [0x03d6] = 0x537d, [0x03d8] = 0x53dd, [0x03d9] = 0x53dc, [0x03da] = 0x53da, - [0x03db] = 0x53d9, [0x03dc] = 0x54b9, [0x03de] = 0x54d0, [0x03df] = 0x54b4, - [0x03e0] = 0x54ca, [0x03e2] = 0x54a3, [0x03e3] = 0x54da, [0x03e4] = 0x54a4, - [0x03e6] = 0x54b2, [0x03e7] = 0x549e, [0x03e8] = 0x549f, [0x03e9] = 0x54b5, - [0x03ec] = 0x54cd, [0x03ee] = 0x54cc, [0x03f0] = 0x5700, [0x03f1] = 0x57ac, - [0x03f2] = 0x5791, [0x03f3] = 0x578e, [0x03f4] = 0x578d, [0x03f5] = 0x5792, - [0x03f6] = 0x57a1, [0x03f7] = 0x5790, [0x03f8] = 0x57a6, [0x03f9] = 0x57a8, - [0x03fb] = 0x579c, [0x03fc] = 0x5796, [0x03fd] = 0x57a7, [0x0402] = 0x58f5, - [0x0404] = 0x5909, [0x0405] = 0x5908, [0x0407] = 0x5952, [0x040a] = 0x59df, - [0x040c] = 0x59eb, [0x040d] = 0x59ef, [0x040e] = 0x59f0, [0x040f] = 0x59d5, - [0x0410] = 0x5a0d, [0x0411] = 0x5a04, [0x0412] = 0x59f9, [0x0413] = 0x5a02, - [0x0414] = 0x59f8, [0x0415] = 0x59e2, [0x0416] = 0x59d9, [0x0417] = 0x59e7, - [0x0418] = 0x5b6a, [0x041b] = 0x5bab, [0x041d] = 0x5c1b, [0x041e] = 0x5c2f, - [0x0420] = 0x663c, [0x0424] = 0x5cd1, [0x0425] = 0x5cdc, [0x0426] = 0x5ce6, - [0x0427] = 0x5ce1, [0x0428] = 0x5ccd, [0x042a] = 0x5ce2, [0x042b] = 0x5cdd, - [0x042c] = 0x5ce5, [0x042d] = 0x5dfb, [0x042e] = 0x5dfa, [0x042f] = 0x5e1e, - [0x0431] = 0x5ea1, [0x0434] = 0x5efc, [0x0435] = 0x5efb, [0x0436] = 0x5f2f, - [0x0439] = 0x5f66, [0x043d] = 0x605c, [0x043f] = 0x604e, [0x0440] = 0x6051, + [0x0325] = 0x6b69, [0x0326] = 0x3c5a, [0x0327] = 0x6b81, [0x0328] = 0x6bb4, + [0x0329] = 0x6bd1, [0x032a] = 0x3c8e, [0x032b] = 0x3cb4, [0x032c] = 0x6c1c, + [0x032d] = 0x3ccd, [0x032e] = 0x3ccc, [0x032f] = 0x3ccf, [0x0330] = 0x3ccb, + [0x0331] = 0x3cce, [0x0332] = 0x6c97, [0x0333] = 0x6c6c, [0x0334] = 0x6cdf, + [0x0335] = 0x3cd2, [0x0336] = 0x6cea, [0x0337] = 0x3cd1, [0x0338] = 0x6ce4, + [0x0339] = 0x6cd8, [0x033a] = 0x6cb2, [0x033b] = 0x6cce, [0x033c] = 0x6cc8, + [0x033d] = 0x3da6, [0x033e] = 0x708b, [0x033f] = 0x7088, [0x0340] = 0x7090, + [0x0341] = 0x708f, [0x0342] = 0x3daa, [0x0343] = 0x7087, [0x0344] = 0x7089, + [0x0345] = 0x708d, [0x0346] = 0x7081, [0x0347] = 0x3da8, [0x0348] = 0x708c, + [0x0349] = 0x3e13, [0x034a] = 0x3e1a, [0x034b] = 0x7240, [0x034c] = 0x3e1d, + [0x034d] = 0x3e1e, [0x034e] = 0x7265, [0x034f] = 0x7266, [0x0350] = 0x7268, + [0x0351] = 0x3e65, [0x0352] = 0x3e66, [0x0353] = 0x72cd, [0x0354] = 0x72d3, + [0x0355] = 0x72db, [0x0356] = 0x3e64, [0x0357] = 0x72cf, [0x0358] = 0x73a7, + [0x0359] = 0x73a3, [0x035a] = 0x739e, [0x035b] = 0x3eb0, [0x035c] = 0x73af, + [0x035d] = 0x3eb3, [0x035e] = 0x3eb5, [0x035f] = 0x73aa, [0x0360] = 0x739c, + [0x0361] = 0x3f19, [0x0362] = 0x7542, [0x0363] = 0x7544, [0x0364] = 0x753b, + [0x0365] = 0x7541, [0x0366] = 0x2233f, [0x0367] = 0x759b, [0x0368] = 0x759e, + [0x0369] = 0x3f75, [0x036a] = 0x79c4, [0x036b] = 0x79c3, [0x036c] = 0x79c6, + [0x036d] = 0x412b, [0x036e] = 0x412c, [0x036f] = 0x79c7, [0x0370] = 0x412d, + [0x0371] = 0x79ca, [0x0372] = 0x2592e, [0x0373] = 0x41c3, [0x0374] = 0x7acf, + [0x0375] = 0x7c76, [0x0376] = 0x7c74, [0x0377] = 0x7cff, [0x0378] = 0x7cfc, + [0x0379] = 0x34ba, [0x037a] = 0x4350, [0x037b] = 0x7f59, [0x037c] = 0x80a8, + [0x037d] = 0x43d3, [0x037e] = 0x43d0, [0x037f] = 0x80b0, [0x0380] = 0x43dc, + [0x0381] = 0x80b3, [0x0382] = 0x43d2, [0x0383] = 0x80a4, [0x0384] = 0x80b6, + [0x0385] = 0x80a7, [0x0386] = 0x80ac, [0x0387] = 0x43db, [0x0388] = 0x80a6, + [0x0389] = 0x5367, [0x038a] = 0x820e, [0x038b] = 0x82c4, [0x038c] = 0x833e, + [0x038d] = 0x829c, [0x038e] = 0x44a5, [0x038f] = 0x449f, [0x0390] = 0x449a, + [0x0391] = 0x449c, [0x0392] = 0x44a2, [0x0393] = 0x82aa, [0x0394] = 0x449b, + [0x0395] = 0x82c9, [0x0396] = 0x44a3, [0x0397] = 0x449d, [0x0398] = 0x82a6, + [0x0399] = 0x82b2, [0x039a] = 0x4588, [0x039b] = 0x461a, [0x039c] = 0x488d, + [0x039d] = 0x8fcc, [0x039e] = 0x8fd9, [0x039f] = 0x8fca, [0x03a0] = 0x8fd8, + [0x03a1] = 0x8fcf, [0x03a2] = 0x90b7, [0x03a3] = 0x48b8, [0x03a4] = 0x90ad, + [0x03a5] = 0x90b9, [0x03a6] = 0x9637, [0x03a7] = 0x49c3, [0x03a8] = 0x9641, + [0x03a9] = 0x963e, [0x03aa] = 0x96b6, [0x03ab] = 0x9751, [0x03ac] = 0x9763, + [0x03ad] = 0x4e57, [0x03ae] = 0x4e79, [0x03af] = 0x4eb2, [0x03b0] = 0x4eb0, + [0x03b1] = 0x4eaf, [0x03b2] = 0x4eb1, [0x03b3] = 0x4fd2, [0x03b4] = 0x4fd5, + [0x03b5] = 0x345d, [0x03b6] = 0x4fbe, [0x03b7] = 0x4fb8, [0x03b8] = 0x4fb0, + [0x03b9] = 0x4fb1, [0x03ba] = 0x4fc8, [0x03bb] = 0x345a, [0x03bc] = 0x3457, + [0x03bd] = 0x4fc6, [0x03be] = 0x4fcc, [0x03bf] = 0x4fe5, [0x03c0] = 0x4fe3, + [0x03c1] = 0x4fb4, [0x03c2] = 0x516a, [0x03c3] = 0x34b8, [0x03c4] = 0x519f, + [0x03c5] = 0x34c2, [0x03c6] = 0x51c1, [0x03c7] = 0x34cf, [0x03c8] = 0x51c2, + [0x03c9] = 0x51c3, [0x03ca] = 0x5245, [0x03cb] = 0x5248, [0x03cc] = 0x34e7, + [0x03cd] = 0x34e9, [0x03ce] = 0x524f, [0x03cf] = 0x4452, [0x03d0] = 0x34e8, + [0x03d1] = 0x52c5, [0x03d2] = 0x52ca, [0x03d3] = 0x52c4, [0x03d4] = 0x5327, + [0x03d5] = 0x5358, [0x03d6] = 0x537d, [0x03d7] = 0x354a, [0x03d8] = 0x53dd, + [0x03d9] = 0x53dc, [0x03da] = 0x53da, [0x03db] = 0x53d9, [0x03dc] = 0x54b9, + [0x03dd] = 0x3580, [0x03de] = 0x54d0, [0x03df] = 0x54b4, [0x03e0] = 0x54ca, + [0x03e1] = 0x3587, [0x03e2] = 0x54a3, [0x03e3] = 0x54da, [0x03e4] = 0x54a4, + [0x03e5] = 0x3584, [0x03e6] = 0x54b2, [0x03e7] = 0x549e, [0x03e8] = 0x549f, + [0x03e9] = 0x54b5, [0x03ea] = 0x3582, [0x03eb] = 0x3581, [0x03ec] = 0x54cd, + [0x03ed] = 0x3583, [0x03ee] = 0x54cc, [0x03ef] = 0x3622, [0x03f0] = 0x5700, + [0x03f1] = 0x57ac, [0x03f2] = 0x5791, [0x03f3] = 0x578e, [0x03f4] = 0x578d, + [0x03f5] = 0x5792, [0x03f6] = 0x57a1, [0x03f7] = 0x5790, [0x03f8] = 0x57a6, + [0x03f9] = 0x57a8, [0x03fa] = 0x363b, [0x03fb] = 0x579c, [0x03fc] = 0x5796, + [0x03fd] = 0x57a7, [0x03fe] = 0x363a, [0x03ff] = 0x3638, [0x0400] = 0x3639, + [0x0401] = 0x3636, [0x0402] = 0x58f5, [0x0403] = 0x3685, [0x0404] = 0x5909, + [0x0405] = 0x5908, [0x0406] = 0x3c54, [0x0407] = 0x5952, [0x0408] = 0x369a, + [0x0409] = 0x36c4, [0x040a] = 0x59df, [0x040b] = 0x36c5, [0x040c] = 0x59eb, + [0x040d] = 0x59ef, [0x040e] = 0x59f0, [0x040f] = 0x59d5, [0x0410] = 0x5a0d, + [0x0411] = 0x5a04, [0x0412] = 0x59f9, [0x0413] = 0x5a02, [0x0414] = 0x59f8, + [0x0415] = 0x59e2, [0x0416] = 0x59d9, [0x0417] = 0x59e7, [0x0418] = 0x5b6a, + [0x0419] = 0x3754, [0x041a] = 0x3755, [0x041b] = 0x5bab, [0x041c] = 0x3756, + [0x041d] = 0x5c1b, [0x041e] = 0x5c2f, [0x041f] = 0x3796, [0x0420] = 0x663c, + [0x0421] = 0x3795, [0x0422] = 0x3794, [0x0423] = 0x37c4, [0x0424] = 0x5cd1, + [0x0425] = 0x5cdc, [0x0426] = 0x5ce6, [0x0427] = 0x5ce1, [0x0428] = 0x5ccd, + [0x042a] = 0x5ce2, [0x042b] = 0x5cdd, [0x042c] = 0x5ce5, [0x042d] = 0x5dfb, + [0x042e] = 0x5dfa, [0x042f] = 0x5e1e, [0x0430] = 0x3844, [0x0431] = 0x5ea1, + [0x0432] = 0x387d, [0x0433] = 0x387e, [0x0434] = 0x5efc, [0x0435] = 0x5efb, + [0x0436] = 0x5f2f, [0x0437] = 0x38b2, [0x0438] = 0x38b6, [0x0439] = 0x5f66, + [0x043b] = 0x38dc, [0x043c] = 0x38df, [0x043d] = 0x605c, [0x043e] = 0x3928, + [0x043f] = 0x604e, [0x0440] = 0x6051, [0x0441] = 0x3919, [0x0442] = 0x3910, [0x0443] = 0x6023, [0x0444] = 0x6031, [0x0445] = 0x607c, [0x0446] = 0x6052, - [0x0448] = 0x6060, [0x0449] = 0x604a, [0x044a] = 0x6061, [0x044c] = 0x6218, - [0x0454] = 0x631f, [0x0455] = 0x6317, [0x0456] = 0x62ea, [0x0457] = 0x6321, - [0x0458] = 0x6304, [0x0459] = 0x6305, [0x045b] = 0x6531, [0x045c] = 0x6544, - [0x045d] = 0x6540, [0x045f] = 0x6542, [0x0460] = 0x65be, [0x0462] = 0x6629, - [0x0463] = 0x661b, [0x0465] = 0x6623, [0x0466] = 0x662c, [0x0467] = 0x661a, - [0x0468] = 0x6630, [0x0469] = 0x663b, [0x046a] = 0x661e, [0x046b] = 0x6637, - [0x046c] = 0x6638, [0x046e] = 0x670e, [0x0471] = 0x67e8, [0x0472] = 0x67d6, - [0x0474] = 0x67c7, [0x0475] = 0x67bc, [0x0476] = 0x6852, [0x0477] = 0x67bf, - [0x0478] = 0x67d5, [0x0479] = 0x67fe, [0x047a] = 0x8363, [0x047b] = 0x67fb, - [0x047d] = 0x67b1, [0x047e] = 0x6801, [0x047f] = 0x6805, [0x0480] = 0x6800, - [0x0481] = 0x67d7, [0x0483] = 0x6b2a, [0x0484] = 0x6b6b, [0x0489] = 0x6be1, + [0x0447] = 0x392c, [0x0448] = 0x6060, [0x0449] = 0x604a, [0x044a] = 0x6061, + [0x044b] = 0x391b, [0x044c] = 0x6218, [0x044d] = 0x39c2, [0x044e] = 0x39ef, + [0x044f] = 0x39e3, [0x0450] = 0x39e5, [0x0451] = 0x39ea, [0x0452] = 0x39e6, + [0x0453] = 0x39ee, [0x0454] = 0x631f, [0x0455] = 0x6317, [0x0456] = 0x62ea, + [0x0457] = 0x6321, [0x0458] = 0x6304, [0x0459] = 0x6305, [0x045a] = 0x39e8, + [0x045b] = 0x6531, [0x045c] = 0x6544, [0x045d] = 0x6540, [0x045e] = 0x3a85, + [0x045f] = 0x6542, [0x0460] = 0x65be, [0x0461] = 0x3ae0, [0x0462] = 0x6629, + [0x0463] = 0x661b, [0x0464] = 0x3add, [0x0465] = 0x6623, [0x0466] = 0x662c, + [0x0467] = 0x661a, [0x0468] = 0x6630, [0x0469] = 0x663b, [0x046a] = 0x661e, + [0x046b] = 0x6637, [0x046c] = 0x6638, [0x046d] = 0x3ae1, [0x046e] = 0x670e, + [0x046f] = 0x3b51, [0x0470] = 0x3b55, [0x0471] = 0x67e8, [0x0472] = 0x67d6, + [0x0473] = 0x3b52, [0x0474] = 0x67c7, [0x0475] = 0x67bc, [0x0476] = 0x6852, + [0x0477] = 0x67bf, [0x0478] = 0x67d5, [0x0479] = 0x67fe, [0x047a] = 0x8363, + [0x047b] = 0x67fb, [0x047d] = 0x67b1, [0x047e] = 0x6801, [0x047f] = 0x6805, + [0x0480] = 0x6800, [0x0481] = 0x67d7, [0x0482] = 0x409e, [0x0483] = 0x6b2a, + [0x0484] = 0x6b6b, [0x0485] = 0x3c52, [0x0486] = 0x3c5e, [0x0487] = 0x3c60, + [0x0488] = 0x3c5f, [0x0489] = 0x6be1, [0x048a] = 0x3c92, [0x048b] = 0x3cd6, [0x048c] = 0x6d23, [0x048d] = 0x6cff, [0x048e] = 0x6d14, [0x048f] = 0x6d05, - [0x0490] = 0x6d13, [0x0491] = 0x6d06, [0x0492] = 0x6d21, [0x0494] = 0x6d15, - [0x0495] = 0x6caf, [0x0496] = 0x6cf4, [0x0497] = 0x6d02, [0x0498] = 0x6d45, - [0x049a] = 0x6d26, [0x049c] = 0x6d44, [0x049e] = 0x6d24, [0x049f] = 0x70a5, - [0x04a1] = 0x70a3, [0x04a3] = 0x70a2, [0x04a4] = 0x70bb, [0x04a5] = 0x70a0, - [0x04a6] = 0x70aa, [0x04a9] = 0x70a8, [0x04aa] = 0x70b6, [0x04ab] = 0x70b2, - [0x04ac] = 0x70a7, [0x04af] = 0x70b9, [0x04b0] = 0x722e, [0x04b2] = 0x723c, - [0x04b4] = 0x726d, [0x04b7] = 0x72e7, [0x04b8] = 0x72ed, [0x04ba] = 0x72ec, - [0x04bb] = 0x72e5, [0x04bc] = 0x72e2, [0x04be] = 0x73c4, [0x04bf] = 0x73bd, - [0x04c0] = 0x73cf, [0x04c1] = 0x73c9, [0x04c2] = 0x73c1, [0x04c3] = 0x73d0, - [0x04c5] = 0x73ce, [0x04c6] = 0x74ed, [0x04c7] = 0x74eb, [0x04c9] = 0x74ef, - [0x04ca] = 0x7549, [0x04cb] = 0x7550, [0x04cc] = 0x7546, [0x04cd] = 0x754a, - [0x04cf] = 0x754d, [0x04d0] = 0x75a6, [0x04d4] = 0x75a8, [0x04d7] = 0x76c7, - [0x04d8] = 0x76ff, [0x04da] = 0x76fd, [0x04db] = 0x77e6, [0x04dc] = 0x780a, - [0x04de] = 0x7804, [0x04df] = 0x780b, [0x04e0] = 0x7807, [0x04e2] = 0x7815, - [0x04e3] = 0x7808, [0x04e5] = 0x79d3, [0x04e6] = 0x79d4, [0x04e7] = 0x79d0, - [0x04e8] = 0x79d7, [0x04e9] = 0x7a7c, [0x04ec] = 0x7a7d, [0x04ed] = 0x7a83, - [0x04ee] = 0x7a82, [0x04f0] = 0x7ad4, [0x04f1] = 0x7ad5, [0x04f2] = 0x7ad3, - [0x04f3] = 0x7ad0, [0x04f4] = 0x7ad2, [0x04f5] = 0x7afe, [0x04f6] = 0x7afc, - [0x04f7] = 0x7c77, [0x04f8] = 0x7c7c, [0x04f9] = 0x7c7b, [0x0502] = 0x7f8f, - [0x0503] = 0x80d3, [0x0505] = 0x80cb, [0x0506] = 0x80d2, [0x0508] = 0x8109, - [0x0509] = 0x80e2, [0x050a] = 0x80df, [0x050b] = 0x80c6, [0x050d] = 0x8224, - [0x050e] = 0x82f7, [0x050f] = 0x82d8, [0x0510] = 0x82dd, [0x0513] = 0x82f8, - [0x0514] = 0x82fc, [0x0517] = 0x82e9, [0x0519] = 0x82ee, [0x051b] = 0x82d0, - [0x051c] = 0x830e, [0x051d] = 0x82e2, [0x051e] = 0x830b, [0x051f] = 0x82fd, - [0x0520] = 0x5179, [0x0521] = 0x8676, [0x0523] = 0x8678, [0x0526] = 0x8675, - [0x0527] = 0x867d, [0x0529] = 0x8842, [0x052a] = 0x8866, [0x052c] = 0x898c, - [0x052d] = 0x8a05, [0x052f] = 0x8a06, [0x0531] = 0x8c9f, [0x0533] = 0x8ff1, - [0x0534] = 0x8fe7, [0x0535] = 0x8fe9, [0x0536] = 0x8fef, [0x0537] = 0x90c2, - [0x0538] = 0x90bc, [0x053a] = 0x90c6, [0x053b] = 0x90c0, [0x053e] = 0x90cd, - [0x053f] = 0x90c9, [0x0541] = 0x90c4, [0x0543] = 0x9581, [0x0545] = 0x9cec, + [0x0490] = 0x6d13, [0x0491] = 0x6d06, [0x0492] = 0x6d21, [0x0493] = 0x3cde, + [0x0494] = 0x6d15, [0x0495] = 0x6caf, [0x0496] = 0x6cf4, [0x0497] = 0x6d02, + [0x0498] = 0x6d45, [0x049a] = 0x6d26, [0x049b] = 0x3cd9, [0x049c] = 0x6d44, + [0x049d] = 0x3cdd, [0x049e] = 0x6d24, [0x049f] = 0x70a5, [0x04a0] = 0x3dac, + [0x04a1] = 0x70a3, [0x04a2] = 0x3db0, [0x04a3] = 0x70a2, [0x04a4] = 0x70bb, + [0x04a5] = 0x70a0, [0x04a6] = 0x70aa, [0x04a7] = 0x3daf, [0x04a8] = 0x3dae, + [0x04a9] = 0x70a8, [0x04aa] = 0x70b6, [0x04ab] = 0x70b2, [0x04ac] = 0x70a7, + [0x04ad] = 0x3dad, [0x04ae] = 0x3dab, [0x04af] = 0x70b9, [0x04b0] = 0x722e, + [0x04b1] = 0x3e16, [0x04b2] = 0x723c, [0x04b3] = 0x3e30, [0x04b4] = 0x726d, + [0x04b5] = 0x3e33, [0x04b6] = 0x3e31, [0x04b7] = 0x72e7, [0x04b8] = 0x72ed, + [0x04b9] = 0x3e6e, [0x04ba] = 0x72ec, [0x04bb] = 0x72e5, [0x04bc] = 0x72e2, + [0x04bd] = 0x3eb1, [0x04be] = 0x73c4, [0x04bf] = 0x73bd, [0x04c0] = 0x73cf, + [0x04c1] = 0x73c9, [0x04c2] = 0x73c1, [0x04c3] = 0x73d0, [0x04c4] = 0x3eb7, + [0x04c5] = 0x73ce, [0x04c6] = 0x74ed, [0x04c7] = 0x74eb, [0x04c8] = 0x3f1a, + [0x04c9] = 0x74ef, [0x04ca] = 0x7549, [0x04cb] = 0x7550, [0x04cc] = 0x7546, + [0x04cd] = 0x754a, [0x04ce] = 0x3f59, [0x04cf] = 0x754d, [0x04d0] = 0x75a6, + [0x04d1] = 0x3f7a, [0x04d2] = 0x3f78, [0x04d3] = 0x3f7b, [0x04d4] = 0x75a8, + [0x04d5] = 0x3fde, [0x04d6] = 0x3fec, [0x04d7] = 0x76c7, [0x04d8] = 0x76ff, + [0x04d9] = 0x401e, [0x04da] = 0x76fd, [0x04db] = 0x77e6, [0x04dc] = 0x780a, + [0x04dd] = 0x409b, [0x04de] = 0x7804, [0x04df] = 0x780b, [0x04e0] = 0x7807, + [0x04e1] = 0x409d, [0x04e2] = 0x7815, [0x04e3] = 0x7808, [0x04e4] = 0x40fd, + [0x04e5] = 0x79d3, [0x04e6] = 0x79d4, [0x04e7] = 0x79d0, [0x04e8] = 0x79d7, + [0x04e9] = 0x7a7c, [0x04ea] = 0x4194, [0x04eb] = 0x4193, [0x04ec] = 0x7a7d, + [0x04ed] = 0x7a83, [0x04ee] = 0x7a82, [0x04ef] = 0x41c6, [0x04f0] = 0x7ad4, + [0x04f1] = 0x7ad5, [0x04f2] = 0x7ad3, [0x04f3] = 0x7ad0, [0x04f4] = 0x7ad2, + [0x04f5] = 0x7afe, [0x04f6] = 0x7afc, [0x04f7] = 0x7c77, [0x04f8] = 0x7c7c, + [0x04f9] = 0x7c7b, [0x04fa] = 0x42b8, [0x04fc] = 0x42b7, [0x04fd] = 0x42b9, + [0x04fe] = 0x4353, [0x04ff] = 0x25133, [0x0500] = 0x4352, [0x0501] = 0x4351, + [0x0502] = 0x7f8f, [0x0503] = 0x80d3, [0x0504] = 0x43e3, [0x0505] = 0x80cb, + [0x0506] = 0x80d2, [0x0507] = 0x43e2, [0x0508] = 0x8109, [0x0509] = 0x80e2, + [0x050a] = 0x80df, [0x050b] = 0x80c6, [0x050c] = 0x4463, [0x050d] = 0x8224, + [0x050e] = 0x82f7, [0x050f] = 0x82d8, [0x0510] = 0x82dd, [0x0511] = 0x44aa, + [0x0512] = 0x44a6, [0x0513] = 0x82f8, [0x0514] = 0x82fc, [0x0515] = 0x44a8, + [0x0516] = 0x44a9, [0x0517] = 0x82e9, [0x0518] = 0x44ab, [0x0519] = 0x82ee, + [0x051a] = 0x44ac, [0x051b] = 0x82d0, [0x051c] = 0x830e, [0x051d] = 0x82e2, + [0x051e] = 0x830b, [0x051f] = 0x82fd, [0x0520] = 0x5179, [0x0521] = 0x8676, + [0x0522] = 0x459e, [0x0523] = 0x8678, [0x0524] = 0x459f, [0x0525] = 0x45a0, + [0x0526] = 0x8675, [0x0527] = 0x867d, [0x0528] = 0x460f, [0x0529] = 0x8842, + [0x052a] = 0x8866, [0x052b] = 0x461c, [0x052c] = 0x898c, [0x052d] = 0x8a05, + [0x052e] = 0x46ae, [0x052f] = 0x8a06, [0x0530] = 0x46b0, [0x0531] = 0x8c9f, + [0x0532] = 0x47d4, [0x0533] = 0x8ff1, [0x0534] = 0x8fe7, [0x0535] = 0x8fe9, + [0x0536] = 0x8fef, [0x0537] = 0x90c2, [0x0538] = 0x90bc, [0x0539] = 0x48bb, + [0x053a] = 0x90c6, [0x053b] = 0x90c0, [0x053c] = 0x48c1, [0x053d] = 0x48c2, + [0x053e] = 0x90cd, [0x053f] = 0x90c9, [0x0540] = 0x48be, [0x0541] = 0x90c4, + [0x0542] = 0x48e5, [0x0543] = 0x9581, [0x0544] = 0x49c6, [0x0545] = 0x9cec, [0x0546] = 0x5032, [0x0547] = 0x4ff9, [0x0548] = 0x501d, [0x0549] = 0x4fff, - [0x054a] = 0x5004, [0x054b] = 0x4ff0, [0x054c] = 0x5003, [0x054e] = 0x5002, - [0x054f] = 0x4ffc, [0x0550] = 0x4ff2, [0x0551] = 0x5024, [0x0552] = 0x5008, - [0x0553] = 0x5036, [0x0554] = 0x502e, [0x0556] = 0x5010, [0x0557] = 0x5038, - [0x0558] = 0x5039, [0x0559] = 0x4ffd, [0x055a] = 0x5056, [0x055b] = 0x4ffb, - [0x055c] = 0x51a3, [0x055d] = 0x51a6, [0x055e] = 0x51a1, [0x0561] = 0x51c7, + [0x054a] = 0x5004, [0x054b] = 0x4ff0, [0x054c] = 0x5003, [0x054d] = 0x462e, + [0x054e] = 0x5002, [0x054f] = 0x4ffc, [0x0550] = 0x4ff2, [0x0551] = 0x5024, + [0x0552] = 0x5008, [0x0553] = 0x5036, [0x0554] = 0x502e, [0x0555] = 0x3465, + [0x0556] = 0x5010, [0x0557] = 0x5038, [0x0558] = 0x5039, [0x0559] = 0x4ffd, + [0x055a] = 0x5056, [0x055b] = 0x4ffb, [0x055c] = 0x51a3, [0x055d] = 0x51a6, + [0x055e] = 0x51a1, [0x055f] = 0x34d1, [0x0560] = 0x34d0, [0x0561] = 0x51c7, [0x0562] = 0x51c9, [0x0563] = 0x5260, [0x0564] = 0x5264, [0x0565] = 0x5259, [0x0566] = 0x5265, [0x0567] = 0x5267, [0x0568] = 0x5257, [0x0569] = 0x5263, - [0x056b] = 0x5253, [0x056d] = 0x52cf, [0x056f] = 0x52ce, [0x0570] = 0x52d0, - [0x0571] = 0x52d1, [0x0572] = 0x52cc, [0x0576] = 0x550d, [0x0577] = 0x54f4, - [0x0579] = 0x5513, [0x057a] = 0x54ef, [0x057b] = 0x54f5, [0x057c] = 0x54f9, - [0x057d] = 0x5502, [0x057e] = 0x5500, [0x0581] = 0x5518, [0x0582] = 0x54f0, - [0x0583] = 0x54f6, [0x0586] = 0x5519, [0x0588] = 0x5705, [0x0589] = 0x57c9, - [0x058b] = 0x57b7, [0x058c] = 0x57cd, [0x0590] = 0x57be, [0x0591] = 0x57bb, + [0x056a] = 0x34ee, [0x056b] = 0x5253, [0x056c] = 0x34ef, [0x056d] = 0x52cf, + [0x056e] = 0x351e, [0x056f] = 0x52ce, [0x0570] = 0x52d0, [0x0571] = 0x52d1, + [0x0572] = 0x52cc, [0x0573] = 0x354b, [0x0574] = 0x354d, [0x0575] = 0x3556, + [0x0576] = 0x550d, [0x0577] = 0x54f4, [0x0578] = 0x3592, [0x0579] = 0x5513, + [0x057a] = 0x54ef, [0x057b] = 0x54f5, [0x057c] = 0x54f9, [0x057d] = 0x5502, + [0x057e] = 0x5500, [0x057f] = 0x3593, [0x0580] = 0x3590, [0x0581] = 0x5518, + [0x0582] = 0x54f0, [0x0583] = 0x54f6, [0x0585] = 0x3597, [0x0586] = 0x5519, + [0x0587] = 0x3623, [0x0588] = 0x5705, [0x0589] = 0x57c9, [0x058a] = 0x363f, + [0x058b] = 0x57b7, [0x058c] = 0x57cd, [0x058d] = 0x3643, [0x058e] = 0x3642, + [0x058f] = 0x3644, [0x0590] = 0x57be, [0x0591] = 0x57bb, [0x0592] = 0x3645, [0x0593] = 0x57db, [0x0594] = 0x57c8, [0x0595] = 0x57c4, [0x0596] = 0x57c5, - [0x0597] = 0x57d1, [0x0598] = 0x57ca, [0x0599] = 0x57c0, [0x059c] = 0x5a21, - [0x059d] = 0x5a2a, [0x059f] = 0x5a1d, [0x05a1] = 0x5a0b, [0x05a6] = 0x5a22, - [0x05a9] = 0x5a24, [0x05ab] = 0x5a14, [0x05ac] = 0x5a31, [0x05ae] = 0x5a2f, - [0x05af] = 0x5a1a, [0x05b0] = 0x5a12, [0x05b3] = 0x5a26, [0x05b6] = 0x5bbc, + [0x0597] = 0x57d1, [0x0598] = 0x57ca, [0x0599] = 0x57c0, [0x059a] = 0x36d9, + [0x059b] = 0x36de, [0x059c] = 0x5a21, [0x059d] = 0x5a2a, [0x059e] = 0x36cf, + [0x059f] = 0x5a1d, [0x05a0] = 0x36cd, [0x05a1] = 0x5a0b, [0x05a2] = 0x36dd, + [0x05a3] = 0x36ce, [0x05a4] = 0x36d3, [0x05a5] = 0x36d6, [0x05a6] = 0x5a22, + [0x05a7] = 0x36dc, [0x05a8] = 0x36d1, [0x05a9] = 0x5a24, [0x05aa] = 0x36d0, + [0x05ab] = 0x5a14, [0x05ac] = 0x5a31, [0x05ad] = 0x36d5, [0x05ae] = 0x5a2f, + [0x05af] = 0x5a1a, [0x05b0] = 0x5a12, [0x05b1] = 0x36d4, [0x05b2] = 0x36db, + [0x05b3] = 0x5a26, [0x05b4] = 0x2172e, [0x05b5] = 0x3743, [0x05b6] = 0x5bbc, [0x05b7] = 0x5bbb, [0x05b8] = 0x5bb7, [0x05b9] = 0x5c05, [0x05ba] = 0x5c06, - [0x05bb] = 0x5c52, [0x05bc] = 0x5c53, [0x05bf] = 0x5cfa, [0x05c0] = 0x5ceb, - [0x05c2] = 0x5cf3, [0x05c3] = 0x5cf5, [0x05c4] = 0x5ce9, [0x05c5] = 0x5cef, + [0x05bb] = 0x5c52, [0x05bc] = 0x5c53, [0x05bd] = 0x37cd, [0x05be] = 0x37d1, + [0x05bf] = 0x5cfa, [0x05c0] = 0x5ceb, [0x05c1] = 0x37ca, [0x05c2] = 0x5cf3, + [0x05c3] = 0x5cf5, [0x05c4] = 0x5ce9, [0x05c5] = 0x5cef, [0x05c6] = 0x37d4, [0x05c7] = 0x5e2a, [0x05c8] = 0x5e30, [0x05c9] = 0x5e2e, [0x05ca] = 0x5e2c, - [0x05cb] = 0x5e2f, [0x05cc] = 0x5eaf, [0x05cd] = 0x5ea9, [0x05cf] = 0x5efd, - [0x05d0] = 0x5f32, [0x05d1] = 0x5f8e, [0x05d2] = 0x5f93, [0x05d3] = 0x5f8f, - [0x05d4] = 0x604f, [0x05d5] = 0x6099, [0x05d7] = 0x607e, [0x05d9] = 0x6074, - [0x05da] = 0x604b, [0x05db] = 0x6073, [0x05dc] = 0x6075, [0x05df] = 0x6056, - [0x05e0] = 0x60a9, [0x05e1] = 0x608b, [0x05e2] = 0x60a6, [0x05e4] = 0x6093, - [0x05e5] = 0x60ae, [0x05e6] = 0x609e, [0x05e7] = 0x60a7, [0x05e8] = 0x6245, - [0x05eb] = 0x632e, [0x05ed] = 0x6352, [0x05ee] = 0x6330, [0x05ef] = 0x635b, - [0x05f1] = 0x6319, [0x05f2] = 0x631b, [0x05f4] = 0x6331, [0x05f5] = 0x635d, - [0x05f6] = 0x6337, [0x05f7] = 0x6335, [0x05f8] = 0x6353, [0x05fa] = 0x635c, - [0x05fb] = 0x633f, [0x05fc] = 0x654b, [0x05ff] = 0x658b, [0x0601] = 0x659a, - [0x0602] = 0x6650, [0x0603] = 0x6646, [0x0604] = 0x664e, [0x0605] = 0x6640, - [0x0607] = 0x664b, [0x0608] = 0x6648, [0x060a] = 0x6660, [0x060b] = 0x6644, - [0x060c] = 0x664d, [0x060e] = 0x6837, [0x060f] = 0x6824, [0x0612] = 0x681b, - [0x0613] = 0x6836, [0x0615] = 0x682c, [0x0616] = 0x6819, [0x0617] = 0x6856, - [0x0618] = 0x6847, [0x0619] = 0x683e, [0x061a] = 0x681e, [0x061c] = 0x6815, - [0x061d] = 0x6822, [0x061e] = 0x6827, [0x061f] = 0x6859, [0x0620] = 0x6858, - [0x0621] = 0x6855, [0x0622] = 0x6830, [0x0623] = 0x6823, [0x0624] = 0x6b2e, - [0x0625] = 0x6b2b, [0x0626] = 0x6b30, [0x0627] = 0x6b6c, [0x0629] = 0x6b8b, - [0x062b] = 0x6be9, [0x062c] = 0x6bea, [0x062d] = 0x6be5, [0x062e] = 0x6d6b, - [0x0631] = 0x6d73, [0x0632] = 0x6d57, [0x0635] = 0x6d5d, [0x0636] = 0x6d56, - [0x0637] = 0x6d8f, [0x0638] = 0x6d5b, [0x0639] = 0x6d1c, [0x063a] = 0x6d9a, - [0x063b] = 0x6d9b, [0x063c] = 0x6d99, [0x063e] = 0x6d81, [0x063f] = 0x6d71, - [0x0642] = 0x6d72, [0x0643] = 0x6d5c, [0x0644] = 0x6d96, [0x0645] = 0x70c4, - [0x0646] = 0x70db, [0x0647] = 0x70cc, [0x0648] = 0x70d0, [0x0649] = 0x70e3, - [0x064a] = 0x70df, [0x064c] = 0x70d6, [0x064d] = 0x70ee, [0x064e] = 0x70d5, - [0x0653] = 0x727a, [0x0655] = 0x72f5, [0x0656] = 0x7302, [0x0659] = 0x73e2, - [0x065a] = 0x73ec, [0x065b] = 0x73d5, [0x065c] = 0x73f9, [0x065d] = 0x73df, - [0x065e] = 0x73e6, [0x0663] = 0x73e4, [0x0664] = 0x73e1, [0x0665] = 0x74f3, - [0x066a] = 0x7556, [0x066b] = 0x7555, [0x066c] = 0x7558, [0x066d] = 0x7557, - [0x066e] = 0x755e, [0x066f] = 0x75c3, [0x0672] = 0x75b4, [0x0674] = 0x75b1, - [0x0677] = 0x76cb, [0x0678] = 0x76cc, [0x0679] = 0x772a, [0x067b] = 0x7716, - [0x067c] = 0x770f, [0x067f] = 0x773f, [0x0680] = 0x772b, [0x0681] = 0x770e, - [0x0682] = 0x7724, [0x0684] = 0x7721, [0x0685] = 0x7718, [0x0686] = 0x77dd, - [0x0689] = 0x7824, [0x068a] = 0x7836, [0x068c] = 0x7958, [0x068d] = 0x7959, - [0x068f] = 0x7962, [0x0690] = 0x79da, [0x0691] = 0x79d9, [0x0693] = 0x79e1, - [0x0694] = 0x79e5, [0x0695] = 0x79e8, [0x0696] = 0x79db, [0x0698] = 0x79e2, - [0x0699] = 0x79f0, [0x069e] = 0x7ada, [0x069f] = 0x7add, [0x06a1] = 0x7adb, - [0x06a2] = 0x7adc, [0x06a5] = 0x7b0d, [0x06a6] = 0x7b0b, [0x06a7] = 0x7b14, - [0x06a8] = 0x7c8e, [0x06a9] = 0x7c86, [0x06ab] = 0x7c87, [0x06ac] = 0x7c83, - [0x06ad] = 0x7c8b, [0x06b2] = 0x7d24, [0x06b6] = 0x7d25, [0x06b7] = 0x7f62, - [0x06b8] = 0x7f93, [0x06b9] = 0x7f99, [0x06ba] = 0x7f97, [0x06bd] = 0x7fc4, - [0x06be] = 0x7fc6, [0x06bf] = 0x800a, [0x06c2] = 0x8040, [0x06c3] = 0x803c, + [0x05cb] = 0x5e2f, [0x05cc] = 0x5eaf, [0x05cd] = 0x5ea9, [0x05ce] = 0x3886, + [0x05cf] = 0x5efd, [0x05d0] = 0x5f32, [0x05d1] = 0x5f8e, [0x05d2] = 0x5f93, + [0x05d3] = 0x5f8f, [0x05d4] = 0x604f, [0x05d5] = 0x6099, [0x05d6] = 0x3933, + [0x05d7] = 0x607e, [0x05d8] = 0x3937, [0x05d9] = 0x6074, [0x05da] = 0x604b, + [0x05db] = 0x6073, [0x05dc] = 0x6075, [0x05dd] = 0x392a, [0x05de] = 0x391f, + [0x05df] = 0x6056, [0x05e0] = 0x60a9, [0x05e1] = 0x608b, [0x05e2] = 0x60a6, + [0x05e3] = 0x3939, [0x05e4] = 0x6093, [0x05e5] = 0x60ae, [0x05e6] = 0x609e, + [0x05e7] = 0x60a7, [0x05e8] = 0x6245, [0x05e9] = 0x39f2, [0x05ea] = 0x39f8, + [0x05eb] = 0x632e, [0x05ec] = 0x39f7, [0x05ed] = 0x6352, [0x05ee] = 0x6330, + [0x05ef] = 0x635b, [0x05f0] = 0x39f4, [0x05f1] = 0x6319, [0x05f2] = 0x631b, + [0x05f3] = 0x39f1, [0x05f4] = 0x6331, [0x05f5] = 0x635d, [0x05f6] = 0x6337, + [0x05f7] = 0x6335, [0x05f8] = 0x6353, [0x05f9] = 0x39f5, [0x05fa] = 0x635c, + [0x05fb] = 0x633f, [0x05fc] = 0x654b, [0x05fd] = 0x3a87, [0x05fe] = 0x4369, + [0x05ff] = 0x658b, [0x0600] = 0x3ab6, [0x0601] = 0x659a, [0x0602] = 0x6650, + [0x0603] = 0x6646, [0x0604] = 0x664e, [0x0605] = 0x6640, [0x0606] = 0x3ae9, + [0x0607] = 0x664b, [0x0608] = 0x6648, [0x0609] = 0x3aeb, [0x060a] = 0x6660, + [0x060b] = 0x6644, [0x060c] = 0x664d, [0x060d] = 0x3b34, [0x060e] = 0x6837, + [0x060f] = 0x6824, [0x0610] = 0x3b62, [0x0611] = 0x3b5c, [0x0612] = 0x681b, + [0x0613] = 0x6836, [0x0614] = 0x3b60, [0x0615] = 0x682c, [0x0616] = 0x6819, + [0x0617] = 0x6856, [0x0618] = 0x6847, [0x0619] = 0x683e, [0x061a] = 0x681e, + [0x061c] = 0x6815, [0x061d] = 0x6822, [0x061e] = 0x6827, [0x061f] = 0x6859, + [0x0620] = 0x6858, [0x0621] = 0x6855, [0x0622] = 0x6830, [0x0623] = 0x6823, + [0x0624] = 0x6b2e, [0x0625] = 0x6b2b, [0x0626] = 0x6b30, [0x0627] = 0x6b6c, + [0x0628] = 0x3c61, [0x0629] = 0x6b8b, [0x062a] = 0x3c7f, [0x062b] = 0x6be9, + [0x062c] = 0x6bea, [0x062d] = 0x6be5, [0x062e] = 0x6d6b, [0x062f] = 0x3ce5, + [0x0630] = 0x3ce6, [0x0631] = 0x6d73, [0x0632] = 0x6d57, [0x0633] = 0x3ce9, + [0x0634] = 0x3cf3, [0x0635] = 0x6d5d, [0x0636] = 0x6d56, [0x0637] = 0x6d8f, + [0x0638] = 0x6d5b, [0x0639] = 0x6d1c, [0x063a] = 0x6d9a, [0x063b] = 0x6d9b, + [0x063c] = 0x6d99, [0x063d] = 0x3cee, [0x063e] = 0x6d81, [0x063f] = 0x6d71, + [0x0640] = 0x3ced, [0x0641] = 0x3cec, [0x0642] = 0x6d72, [0x0643] = 0x6d5c, + [0x0644] = 0x6d96, [0x0645] = 0x70c4, [0x0646] = 0x70db, [0x0647] = 0x70cc, + [0x0648] = 0x70d0, [0x0649] = 0x70e3, [0x064a] = 0x70df, [0x064b] = 0x3db3, + [0x064c] = 0x70d6, [0x064d] = 0x70ee, [0x064e] = 0x70d5, [0x064f] = 0x3db5, + [0x0650] = 0x3e27, [0x0651] = 0x3e35, [0x0652] = 0x3e36, [0x0653] = 0x727a, + [0x0654] = 0x3e71, [0x0655] = 0x72f5, [0x0656] = 0x7302, [0x0657] = 0x3eb8, + [0x0658] = 0x3ec2, [0x0659] = 0x73e2, [0x065a] = 0x73ec, [0x065b] = 0x73d5, + [0x065c] = 0x73f9, [0x065d] = 0x73df, [0x065e] = 0x73e6, [0x065f] = 0x3ec8, + [0x0660] = 0x3ec0, [0x0661] = 0x3ec1, [0x0662] = 0x3ec4, [0x0663] = 0x73e4, + [0x0664] = 0x73e1, [0x0665] = 0x74f3, [0x0666] = 0x3f1f, [0x0667] = 0x3f1c, + [0x0668] = 0x3f1d, [0x0669] = 0x3f4d, [0x066a] = 0x7556, [0x066b] = 0x7555, + [0x066c] = 0x7558, [0x066d] = 0x7557, [0x066e] = 0x755e, [0x066f] = 0x75c3, + [0x0670] = 0x3f87, [0x0671] = 0x3f82, [0x0672] = 0x75b4, [0x0673] = 0x3f7d, + [0x0674] = 0x75b1, [0x0675] = 0x3fdf, [0x0676] = 0x4000, [0x0677] = 0x76cb, + [0x0678] = 0x76cc, [0x0679] = 0x772a, [0x067a] = 0x4020, [0x067b] = 0x7716, + [0x067c] = 0x770f, [0x067d] = 0x4022, [0x067e] = 0x4024, [0x067f] = 0x773f, + [0x0680] = 0x772b, [0x0681] = 0x770e, [0x0682] = 0x7724, [0x0683] = 0x4021, + [0x0684] = 0x7721, [0x0685] = 0x7718, [0x0686] = 0x77dd, [0x0687] = 0x40a4, + [0x0688] = 0x40a5, [0x0689] = 0x7824, [0x068a] = 0x7836, [0x068b] = 0x4101, + [0x068c] = 0x7958, [0x068d] = 0x7959, [0x068e] = 0x4103, [0x068f] = 0x7962, + [0x0690] = 0x79da, [0x0691] = 0x79d9, [0x0692] = 0x4137, [0x0693] = 0x79e1, + [0x0694] = 0x79e5, [0x0695] = 0x79e8, [0x0696] = 0x79db, [0x0697] = 0x4138, + [0x0698] = 0x79e2, [0x0699] = 0x79f0, [0x069a] = 0x4199, [0x069b] = 0x4198, + [0x069c] = 0x4197, [0x069d] = 0x41c9, [0x069e] = 0x7ada, [0x069f] = 0x7add, + [0x06a0] = 0x41c7, [0x06a1] = 0x7adb, [0x06a2] = 0x7adc, [0x06a3] = 0x41d9, + [0x06a4] = 0x41db, [0x06a5] = 0x7b0d, [0x06a6] = 0x7b0b, [0x06a7] = 0x7b14, + [0x06a8] = 0x7c8e, [0x06a9] = 0x7c86, [0x06aa] = 0x427b, [0x06ab] = 0x7c87, + [0x06ac] = 0x7c83, [0x06ad] = 0x7c8b, [0x06ae] = 0x427c, [0x06af] = 0x42bd, + [0x06b0] = 0x42bc, [0x06b1] = 0x42c3, [0x06b2] = 0x7d24, [0x06b3] = 0x42c1, + [0x06b4] = 0x42bf, [0x06b5] = 0x42c4, [0x06b6] = 0x7d25, [0x06b7] = 0x7f62, + [0x06b8] = 0x7f93, [0x06b9] = 0x7f99, [0x06ba] = 0x7f97, [0x06bb] = 0x437e, + [0x06bc] = 0x437f, [0x06bd] = 0x7fc4, [0x06be] = 0x7fc6, [0x06bf] = 0x800a, + [0x06c0] = 0x43b4, [0x06c1] = 0x43b3, [0x06c2] = 0x8040, [0x06c3] = 0x803c, [0x06c4] = 0x803b, [0x06c5] = 0x80f6, [0x06c6] = 0x80ff, [0x06c7] = 0x80ee, - [0x06c8] = 0x8104, [0x06c9] = 0x8103, [0x06ca] = 0x8107, [0x06cd] = 0x80f7, - [0x06d0] = 0x822d, [0x06d2] = 0x8227, [0x06d3] = 0x8229, [0x06d4] = 0x831f, - [0x06d5] = 0x8357, [0x06da] = 0x8321, [0x06dd] = 0x8318, [0x06de] = 0x8358, - [0x06e4] = 0x8684, [0x06e5] = 0x869f, [0x06e6] = 0x869b, [0x06e7] = 0x8689, - [0x06e8] = 0x86a6, [0x06e9] = 0x8692, [0x06ea] = 0x868f, [0x06eb] = 0x86a0, - [0x06ec] = 0x884f, [0x06ed] = 0x8878, [0x06ee] = 0x887a, [0x06ef] = 0x886e, - [0x06f0] = 0x887b, [0x06f1] = 0x8884, [0x06f2] = 0x8873, [0x06f5] = 0x8a0d, - [0x06f6] = 0x8a0b, [0x06f7] = 0x8a19, [0x06fe] = 0x8ff9, [0x06ff] = 0x9009, - [0x0700] = 0x9008, [0x0702] = 0x90de, [0x0703] = 0x9151, [0x0706] = 0x91db, - [0x0707] = 0x91df, [0x0708] = 0x91de, [0x0709] = 0x91d6, [0x070a] = 0x91e0, - [0x070b] = 0x9585, [0x070c] = 0x9660, [0x070d] = 0x9659, [0x070f] = 0x9656, - [0x0712] = 0x96bd, [0x0715] = 0x5042, [0x0716] = 0x5059, [0x0718] = 0x5044, + [0x06c8] = 0x8104, [0x06c9] = 0x8103, [0x06ca] = 0x8107, [0x06cc] = 0x43e6, + [0x06cd] = 0x80f7, [0x06ce] = 0x4459, [0x06cf] = 0x445a, [0x06d0] = 0x822d, + [0x06d1] = 0x4464, [0x06d2] = 0x8227, [0x06d3] = 0x8229, [0x06d4] = 0x831f, + [0x06d5] = 0x8357, [0x06d6] = 0x44b4, [0x06d7] = 0x44b9, [0x06d8] = 0x44b7, + [0x06d9] = 0x44b5, [0x06da] = 0x8321, [0x06db] = 0x44c1, [0x06dc] = 0x44b1, + [0x06dd] = 0x8318, [0x06de] = 0x8358, [0x06df] = 0x44b3, [0x06e0] = 0x44ba, + [0x06e1] = 0x458c, [0x06e2] = 0x458b, [0x06e3] = 0x458d, [0x06e4] = 0x8684, + [0x06e5] = 0x869f, [0x06e6] = 0x869b, [0x06e7] = 0x8689, [0x06e8] = 0x86a6, + [0x06e9] = 0x8692, [0x06ea] = 0x868f, [0x06eb] = 0x86a0, [0x06ec] = 0x884f, + [0x06ed] = 0x8878, [0x06ee] = 0x887a, [0x06ef] = 0x886e, [0x06f0] = 0x887b, + [0x06f1] = 0x8884, [0x06f2] = 0x8873, [0x06f3] = 0x4678, [0x06f4] = 0x4677, + [0x06f5] = 0x8a0d, [0x06f6] = 0x8a0b, [0x06f7] = 0x8a19, [0x06f8] = 0x46b2, + [0x06f9] = 0x47d6, [0x06fa] = 0x8ed0, [0x06fb] = 0x4845, [0x06fc] = 0x4892, + [0x06fd] = 0x4895, [0x06fe] = 0x8ff9, [0x06ff] = 0x9009, [0x0700] = 0x9008, + [0x0701] = 0x48c6, [0x0702] = 0x90de, [0x0703] = 0x9151, [0x0704] = 0x48e7, + [0x0705] = 0x48e8, [0x0706] = 0x91db, [0x0707] = 0x91df, [0x0708] = 0x91de, + [0x0709] = 0x91d6, [0x070a] = 0x91e0, [0x070b] = 0x9585, [0x070c] = 0x9660, + [0x070d] = 0x9659, [0x070e] = 0x49cb, [0x070f] = 0x9656, [0x0710] = 0x49cd, + [0x0711] = 0x49f1, [0x0712] = 0x96bd, [0x0713] = 0x4b22, [0x0714] = 0x3421, + [0x0715] = 0x5042, [0x0716] = 0x5059, [0x0717] = 0x346f, [0x0718] = 0x5044, [0x0719] = 0x5066, [0x071a] = 0x5052, [0x071b] = 0x5054, [0x071c] = 0x5071, [0x071d] = 0x5050, [0x071e] = 0x507b, [0x071f] = 0x507c, [0x0720] = 0x5058, - [0x0723] = 0x5079, [0x0724] = 0x506c, [0x0725] = 0x5078, [0x0726] = 0x51a8, - [0x0727] = 0x51d1, [0x0728] = 0x51cf, [0x0729] = 0x5268, [0x072a] = 0x5276, - [0x072b] = 0x52d4, [0x072d] = 0x53a0, [0x072e] = 0x53c4, [0x0730] = 0x5558, - [0x0731] = 0x554c, [0x0732] = 0x5568, [0x0734] = 0x5549, [0x0737] = 0x555d, - [0x0738] = 0x5529, [0x073a] = 0x5554, [0x073b] = 0x5553, [0x073d] = 0x555a, - [0x073f] = 0x553a, [0x0740] = 0x553f, [0x0741] = 0x552b, [0x0742] = 0x57ea, - [0x0744] = 0x57ef, [0x0747] = 0x57dd, [0x0748] = 0x57fe, [0x074a] = 0x57de, - [0x074b] = 0x57e6, [0x074d] = 0x57e8, [0x074e] = 0x57ff, [0x074f] = 0x5803, - [0x0750] = 0x58f7, [0x0751] = 0x68a6, [0x0752] = 0x591f, [0x0754] = 0x595b, - [0x0755] = 0x595d, [0x0756] = 0x595e, [0x0759] = 0x5a2b, [0x075b] = 0x5a3b, + [0x0721] = 0x3470, [0x0722] = 0x3464, [0x0723] = 0x5079, [0x0724] = 0x506c, + [0x0725] = 0x5078, [0x0726] = 0x51a8, [0x0727] = 0x51d1, [0x0728] = 0x51cf, + [0x0729] = 0x5268, [0x072a] = 0x5276, [0x072b] = 0x52d4, [0x072c] = 0x352d, + [0x072d] = 0x53a0, [0x072e] = 0x53c4, [0x072f] = 0x3558, [0x0730] = 0x5558, + [0x0731] = 0x554c, [0x0732] = 0x5568, [0x0733] = 0x35a6, [0x0734] = 0x5549, + [0x0735] = 0x35a4, [0x0736] = 0x359f, [0x0737] = 0x555d, [0x0738] = 0x5529, + [0x0739] = 0x20dae, [0x073a] = 0x5554, [0x073b] = 0x5553, [0x073c] = 0x35a3, + [0x073d] = 0x555a, [0x073e] = 0x35a0, [0x073f] = 0x553a, [0x0740] = 0x553f, + [0x0741] = 0x552b, [0x0742] = 0x57ea, [0x0743] = 0x364a, [0x0744] = 0x57ef, + [0x0745] = 0x3647, [0x0746] = 0x3648, [0x0747] = 0x57dd, [0x0748] = 0x57fe, + [0x074a] = 0x57de, [0x074b] = 0x57e6, [0x074c] = 0x3649, [0x074d] = 0x57e8, + [0x074e] = 0x57ff, [0x074f] = 0x5803, [0x0750] = 0x58f7, [0x0751] = 0x68a6, + [0x0752] = 0x591f, [0x0753] = 0x369e, [0x0754] = 0x595b, [0x0755] = 0x595d, + [0x0756] = 0x595e, [0x0757] = 0x21637, [0x0758] = 0x36e8, [0x0759] = 0x5a2b, + [0x075a] = 0x36ec, [0x075b] = 0x5a3b, [0x075c] = 0x36ed, [0x075d] = 0x36e6, [0x075e] = 0x5a61, [0x075f] = 0x5a3a, [0x0760] = 0x5a6e, [0x0761] = 0x5a4b, - [0x0762] = 0x5a6b, [0x0765] = 0x5a45, [0x0766] = 0x5a4e, [0x0767] = 0x5a68, - [0x0768] = 0x5a3d, [0x0769] = 0x5a71, [0x076a] = 0x5a3f, [0x076b] = 0x5a6f, - [0x076c] = 0x5a75, [0x076e] = 0x5a73, [0x076f] = 0x5a2c, [0x0770] = 0x5a59, - [0x0771] = 0x5a54, [0x0772] = 0x5a4f, [0x0773] = 0x5a63, [0x0776] = 0x5bc8, - [0x0778] = 0x5bc3, [0x077a] = 0x5c5b, [0x077b] = 0x5c61, [0x077d] = 0x5d21, - [0x077e] = 0x5d0a, [0x077f] = 0x5d09, [0x0781] = 0x5d2c, [0x0782] = 0x5d08, - [0x0785] = 0x5d2a, [0x0786] = 0x5d15, [0x0788] = 0x5d10, [0x0789] = 0x5d13, - [0x078b] = 0x5d2f, [0x078c] = 0x5d18, [0x078e] = 0x5de3, [0x078f] = 0x5e39, - [0x0790] = 0x5e35, [0x0791] = 0x5e3a, [0x0792] = 0x5e32, [0x0797] = 0x5ebb, - [0x0798] = 0x5eba, [0x0799] = 0x5f34, [0x079a] = 0x5f39, [0x079f] = 0x6098, - [0x07a1] = 0x60d0, [0x07a5] = 0x60d7, [0x07a6] = 0x60aa, [0x07a8] = 0x60a1, - [0x07a9] = 0x60a4, [0x07ab] = 0x60ee, [0x07ad] = 0x60e7, [0x07b0] = 0x60de, - [0x07b3] = 0x637e, [0x07b4] = 0x638b, [0x07b7] = 0x6379, [0x07b8] = 0x6386, - [0x07b9] = 0x6393, [0x07bb] = 0x6373, [0x07bc] = 0x636a, [0x07be] = 0x636c, - [0x07c0] = 0x637f, [0x07c2] = 0x63b2, [0x07c3] = 0x63ba, [0x07c6] = 0x6366, - [0x07c7] = 0x6374, [0x07c9] = 0x655a, [0x07cb] = 0x654e, [0x07cc] = 0x654d, - [0x07cd] = 0x658d, [0x07ce] = 0x658e, [0x07cf] = 0x65ad, [0x07d1] = 0x65c7, - [0x07d2] = 0x65ca, [0x07d4] = 0x65c9, [0x07d6] = 0x65e3, [0x07d7] = 0x6657, - [0x07d9] = 0x6663, [0x07da] = 0x6667, [0x07db] = 0x671a, [0x07dc] = 0x6719, - [0x07dd] = 0x6716, [0x07e0] = 0x689e, [0x07e1] = 0x68b6, [0x07e2] = 0x6898, - [0x07e3] = 0x6873, [0x07e5] = 0x689a, [0x07e6] = 0x688e, [0x07e7] = 0x68b7, - [0x07e8] = 0x68db, [0x07e9] = 0x68a5, [0x07ea] = 0x686c, [0x07eb] = 0x68c1, - [0x07ec] = 0x6884, [0x07ef] = 0x6895, [0x07f0] = 0x687a, [0x07f1] = 0x6899, - [0x07f3] = 0x68b8, [0x07f4] = 0x68b9, [0x07f5] = 0x6870, [0x07f7] = 0x6b35, - [0x07f9] = 0x6b90, [0x07fa] = 0x6bbb, [0x07fb] = 0x6bed, [0x07ff] = 0x6dc1, - [0x0800] = 0x6dc3, [0x0801] = 0x6dce, [0x0804] = 0x6dad, [0x0805] = 0x6e04, - [0x0807] = 0x6db9, [0x0809] = 0x6de7, [0x080b] = 0x6e08, [0x080c] = 0x6e06, - [0x080e] = 0x6e0a, [0x080f] = 0x6db0, [0x0811] = 0x6df8, [0x0812] = 0x6e0c, - [0x0814] = 0x6db1, [0x0816] = 0x6e02, [0x0817] = 0x6e07, [0x0818] = 0x6e09, - [0x0819] = 0x6e01, [0x081a] = 0x6e17, [0x081b] = 0x6dff, [0x081c] = 0x6e12, + [0x0762] = 0x5a6b, [0x0763] = 0x36eb, [0x0764] = 0x36e7, [0x0765] = 0x5a45, + [0x0766] = 0x5a4e, [0x0767] = 0x5a68, [0x0768] = 0x5a3d, [0x0769] = 0x5a71, + [0x076a] = 0x5a3f, [0x076b] = 0x5a6f, [0x076c] = 0x5a75, [0x076d] = 0x36e9, + [0x076e] = 0x5a73, [0x076f] = 0x5a2c, [0x0770] = 0x5a59, [0x0771] = 0x5a54, + [0x0772] = 0x5a4f, [0x0773] = 0x5a63, [0x0774] = 0x375c, [0x0775] = 0x375d, + [0x0776] = 0x5bc8, [0x0777] = 0x3760, [0x0778] = 0x5bc3, [0x0779] = 0x375b, + [0x077a] = 0x5c5b, [0x077b] = 0x5c61, [0x077c] = 0x3799, [0x077d] = 0x5d21, + [0x077e] = 0x5d0a, [0x077f] = 0x5d09, [0x0780] = 0x37d8, [0x0781] = 0x5d2c, + [0x0782] = 0x5d08, [0x0783] = 0x37da, [0x0784] = 0x37dd, [0x0785] = 0x5d2a, + [0x0786] = 0x5d15, [0x0787] = 0x37e0, [0x0788] = 0x5d10, [0x0789] = 0x5d13, + [0x078a] = 0x37e5, [0x078b] = 0x5d2f, [0x078c] = 0x5d18, [0x078d] = 0x37d7, + [0x078e] = 0x5de3, [0x078f] = 0x5e39, [0x0790] = 0x5e35, [0x0791] = 0x5e3a, + [0x0792] = 0x5e32, [0x0793] = 0x384e, [0x0794] = 0x388c, [0x0795] = 0x3888, + [0x0797] = 0x5ebb, [0x0798] = 0x5eba, [0x0799] = 0x5f34, [0x079a] = 0x5f39, + [0x079b] = 0x38ce, [0x079d] = 0x38e5, [0x079e] = 0x38e6, [0x079f] = 0x6098, + [0x07a0] = 0x3932, [0x07a1] = 0x60d0, [0x07a2] = 0x3940, [0x07a3] = 0x3947, + [0x07a4] = 0x394c, [0x07a5] = 0x60d7, [0x07a6] = 0x60aa, [0x07a7] = 0x3935, + [0x07a8] = 0x60a1, [0x07a9] = 0x60a4, [0x07aa] = 0x3930, [0x07ab] = 0x60ee, + [0x07ac] = 0x3943, [0x07ad] = 0x60e7, [0x07ae] = 0x394d, [0x07af] = 0x60e8, + [0x07b0] = 0x60de, [0x07b1] = 0x39b7, [0x07b2] = 0x39f3, [0x07b3] = 0x637e, + [0x07b4] = 0x638b, [0x07b5] = 0x3a02, [0x07b6] = 0x3a0b, [0x07b7] = 0x6379, + [0x07b8] = 0x6386, [0x07b9] = 0x6393, [0x07ba] = 0x3a04, [0x07bb] = 0x6373, + [0x07bc] = 0x636a, [0x07be] = 0x636c, [0x07bf] = 0x3a08, [0x07c0] = 0x637f, + [0x07c1] = 0x39fc, [0x07c2] = 0x63b2, [0x07c3] = 0x63ba, [0x07c4] = 0x39ff, + [0x07c5] = 0x3a00, [0x07c6] = 0x6366, [0x07c7] = 0x6374, [0x07c8] = 0x3a8b, + [0x07c9] = 0x655a, [0x07ca] = 0x3a8d, [0x07cb] = 0x654e, [0x07cc] = 0x654d, + [0x07cd] = 0x658d, [0x07ce] = 0x658e, [0x07cf] = 0x65ad, [0x07d0] = 0x3aca, + [0x07d1] = 0x65c7, [0x07d2] = 0x65ca, [0x07d3] = 0x3acb, [0x07d4] = 0x65c9, + [0x07d6] = 0x65e3, [0x07d7] = 0x6657, [0x07d8] = 0x3af3, [0x07d9] = 0x6663, + [0x07da] = 0x6667, [0x07db] = 0x671a, [0x07dc] = 0x6719, [0x07dd] = 0x6716, + [0x07de] = 0x3b36, [0x07df] = 0x3b6a, [0x07e0] = 0x689e, [0x07e1] = 0x68b6, + [0x07e2] = 0x6898, [0x07e3] = 0x6873, [0x07e4] = 0x3b6b, [0x07e5] = 0x689a, + [0x07e6] = 0x688e, [0x07e7] = 0x68b7, [0x07e8] = 0x68db, [0x07e9] = 0x68a5, + [0x07ea] = 0x686c, [0x07eb] = 0x68c1, [0x07ec] = 0x6884, [0x07ed] = 0x3b71, + [0x07ee] = 0x3b68, [0x07ef] = 0x6895, [0x07f0] = 0x687a, [0x07f1] = 0x6899, + [0x07f2] = 0x3b72, [0x07f3] = 0x68b8, [0x07f4] = 0x68b9, [0x07f5] = 0x6870, + [0x07f6] = 0x3c2e, [0x07f7] = 0x6b35, [0x07f8] = 0x3c62, [0x07f9] = 0x6b90, + [0x07fa] = 0x6bbb, [0x07fb] = 0x6bed, [0x07fc] = 0x3c98, [0x07fd] = 0x3cb5, + [0x07fe] = 0x3ceb, [0x07ff] = 0x6dc1, [0x0800] = 0x6dc3, [0x0801] = 0x6dce, + [0x0802] = 0x3cfb, [0x0803] = 0x3cf8, [0x0804] = 0x6dad, [0x0805] = 0x6e04, + [0x0806] = 0x3cf5, [0x0807] = 0x6db9, [0x0808] = 0x3d08, [0x0809] = 0x6de7, + [0x080b] = 0x6e08, [0x080c] = 0x6e06, [0x080d] = 0x3d0a, [0x080e] = 0x6e0a, + [0x080f] = 0x6db0, [0x0810] = 0x3d06, [0x0811] = 0x6df8, [0x0812] = 0x6e0c, + [0x0813] = 0x3cfd, [0x0814] = 0x6db1, [0x0815] = 0x3cfa, [0x0816] = 0x6e02, + [0x0817] = 0x6e07, [0x0818] = 0x6e09, [0x0819] = 0x6e01, [0x081a] = 0x6e17, + [0x081b] = 0x6dff, [0x081c] = 0x6e12, [0x081d] = 0x3dba, [0x081e] = 0x3db9, [0x081f] = 0x7103, [0x0820] = 0x7107, [0x0821] = 0x7101, [0x0822] = 0x70f5, [0x0823] = 0x70f1, [0x0824] = 0x7108, [0x0825] = 0x70f2, [0x0826] = 0x710f, - [0x0828] = 0x70fe, [0x082c] = 0x731a, [0x082d] = 0x7310, [0x082e] = 0x730e, - [0x082f] = 0x7402, [0x0830] = 0x73f3, [0x0833] = 0x73fb, [0x0837] = 0x751b, - [0x0838] = 0x7523, [0x0839] = 0x7561, [0x083a] = 0x7568, [0x083c] = 0x7567, - [0x083d] = 0x75d3, [0x0840] = 0x7690, [0x0843] = 0x76d5, [0x0844] = 0x76d7, - [0x0845] = 0x76d6, [0x0846] = 0x7730, [0x0848] = 0x7726, [0x084a] = 0x7740, - [0x084c] = 0x771e, [0x0850] = 0x7847, [0x0852] = 0x784b, [0x0853] = 0x7851, - [0x0854] = 0x784f, [0x0855] = 0x7842, [0x0856] = 0x7846, [0x0858] = 0x796e, - [0x0859] = 0x796c, [0x085a] = 0x79f2, [0x085c] = 0x79f1, [0x085d] = 0x79f5, - [0x085e] = 0x79f3, [0x085f] = 0x79f9, [0x0863] = 0x7a9a, [0x0864] = 0x7a93, - [0x0865] = 0x7a91, [0x0866] = 0x7ae1, [0x0869] = 0x7b21, [0x086a] = 0x7b1c, + [0x0827] = 0x3dbb, [0x0828] = 0x70fe, [0x0829] = 0x3e18, [0x082a] = 0x3e40, + [0x082b] = 0x3e3d, [0x082c] = 0x731a, [0x082d] = 0x7310, [0x082e] = 0x730e, + [0x082f] = 0x7402, [0x0830] = 0x73f3, [0x0831] = 0x3ecd, [0x0832] = 0x3ec9, + [0x0833] = 0x73fb, [0x0834] = 0x3ecb, [0x0835] = 0x3eca, [0x0836] = 0x3ece, + [0x0837] = 0x751b, [0x0838] = 0x7523, [0x0839] = 0x7561, [0x083a] = 0x7568, + [0x083b] = 0x3f5e, [0x083c] = 0x7567, [0x083d] = 0x75d3, [0x083e] = 0x3f91, + [0x083f] = 0x3f8c, [0x0840] = 0x7690, [0x0841] = 0x3fe1, [0x0842] = 0x4002, + [0x0843] = 0x76d5, [0x0844] = 0x76d7, [0x0845] = 0x76d6, [0x0846] = 0x7730, + [0x0847] = 0x402b, [0x0848] = 0x7726, [0x0849] = 0x402a, [0x084a] = 0x7740, + [0x084b] = 0x3e14, [0x084c] = 0x771e, [0x084d] = 0x40ad, [0x084e] = 0x40a3, + [0x084f] = 0x40ab, [0x0850] = 0x7847, [0x0851] = 0x40af, [0x0852] = 0x784b, + [0x0853] = 0x7851, [0x0854] = 0x784f, [0x0855] = 0x7842, [0x0856] = 0x7846, + [0x0857] = 0x4104, [0x0858] = 0x796e, [0x0859] = 0x796c, [0x085a] = 0x79f2, + [0x085b] = 0x4144, [0x085c] = 0x79f1, [0x085d] = 0x79f5, [0x085e] = 0x79f3, + [0x085f] = 0x79f9, [0x0860] = 0x413d, [0x0861] = 0x4147, [0x0862] = 0x419c, + [0x0863] = 0x7a9a, [0x0864] = 0x7a93, [0x0865] = 0x7a91, [0x0866] = 0x7ae1, + [0x0867] = 0x41e0, [0x0868] = 0x41e4, [0x0869] = 0x7b21, [0x086a] = 0x7b1c, [0x086b] = 0x7b16, [0x086c] = 0x7b17, [0x086d] = 0x7b36, [0x086e] = 0x7b1f, - [0x0870] = 0x7c93, [0x0871] = 0x7c99, [0x0872] = 0x7c9a, [0x0873] = 0x7c9c, - [0x0875] = 0x7d49, [0x0877] = 0x7d34, [0x0878] = 0x7d37, [0x087a] = 0x7d2d, - [0x087c] = 0x7d4c, [0x087f] = 0x7d48, [0x0882] = 0x7f3b, [0x0887] = 0x8008, - [0x0888] = 0x801a, [0x088a] = 0x801d, [0x088c] = 0x8049, [0x088d] = 0x8045, - [0x088e] = 0x8044, [0x088f] = 0x7c9b, [0x0892] = 0x812a, [0x0893] = 0x812e, - [0x0896] = 0x8131, [0x0898] = 0x811a, [0x0899] = 0x8134, [0x089a] = 0x8117, - [0x089e] = 0x831d, [0x089f] = 0x8371, [0x08a0] = 0x8384, [0x08a1] = 0x8380, - [0x08a2] = 0x8372, [0x08a3] = 0x83a1, [0x08a5] = 0x8379, [0x08a6] = 0x8391, - [0x08a8] = 0x839f, [0x08a9] = 0x83ad, [0x08ac] = 0x8323, [0x08ae] = 0x8385, + [0x086f] = 0x4280, [0x0870] = 0x7c93, [0x0871] = 0x7c99, [0x0872] = 0x7c9a, + [0x0873] = 0x7c9c, [0x0874] = 0x42ca, [0x0875] = 0x7d49, [0x0876] = 0x42d4, + [0x0877] = 0x7d34, [0x0878] = 0x7d37, [0x0879] = 0x42d2, [0x087a] = 0x7d2d, + [0x087b] = 0x42cb, [0x087c] = 0x7d4c, [0x087d] = 0x42ce, [0x087e] = 0x42d3, + [0x087f] = 0x7d48, [0x0880] = 0x4344, [0x0881] = 0x4348, [0x0882] = 0x7f3b, + [0x0883] = 0x4345, [0x0884] = 0x4381, [0x0885] = 0x4386, [0x0886] = 0x4385, + [0x0887] = 0x8008, [0x0888] = 0x801a, [0x0889] = 0x43a3, [0x088a] = 0x801d, + [0x088b] = 0x43b5, [0x088c] = 0x8049, [0x088d] = 0x8045, [0x088e] = 0x8044, + [0x088f] = 0x7c9b, [0x0890] = 0x43fa, [0x0891] = 0x43f9, [0x0892] = 0x812a, + [0x0893] = 0x812e, [0x0894] = 0x43fb, [0x0895] = 0x43f2, [0x0896] = 0x8131, + [0x0897] = 0x43ef, [0x0898] = 0x811a, [0x0899] = 0x8134, [0x089a] = 0x8117, + [0x089b] = 0x445b, [0x089c] = 0x4466, [0x089d] = 0x44ce, [0x089e] = 0x831d, + [0x089f] = 0x8371, [0x08a0] = 0x8384, [0x08a1] = 0x8380, [0x08a2] = 0x8372, + [0x08a3] = 0x83a1, [0x08a4] = 0x35b4, [0x08a5] = 0x8379, [0x08a6] = 0x8391, + [0x08a7] = 0x44c8, [0x08a8] = 0x839f, [0x08a9] = 0x83ad, [0x08aa] = 0x44d1, + [0x08ab] = 0x44c5, [0x08ac] = 0x8323, [0x08ad] = 0x44d2, [0x08ae] = 0x8385, [0x08af] = 0x839c, [0x08b0] = 0x83b7, [0x08b1] = 0x8658, [0x08b2] = 0x865a, - [0x08b4] = 0x8657, [0x08b5] = 0x86b2, [0x08b7] = 0x86ae, [0x08bb] = 0x8845, - [0x08bc] = 0x889c, [0x08bd] = 0x8894, [0x08be] = 0x88a3, [0x08bf] = 0x888f, - [0x08c0] = 0x88a5, [0x08c1] = 0x88a9, [0x08c2] = 0x88a6, [0x08c3] = 0x888a, - [0x08c4] = 0x88a0, [0x08c5] = 0x8890, [0x08c6] = 0x8992, [0x08c7] = 0x8991, - [0x08c8] = 0x8994, [0x08ca] = 0x8a26, [0x08cb] = 0x8a32, [0x08cc] = 0x8a28, - [0x08cf] = 0x8a1c, [0x08d1] = 0x8a2b, [0x08d2] = 0x8a20, [0x08d4] = 0x8a29, - [0x08d8] = 0x8a21, [0x08d9] = 0x8c3a, [0x08db] = 0x8c5b, [0x08dc] = 0x8c58, - [0x08dd] = 0x8c7c, [0x08df] = 0x8ca6, [0x08e0] = 0x8cae, [0x08e1] = 0x8cad, - [0x08e2] = 0x8d65, [0x08e4] = 0x8d7e, [0x08e6] = 0x8d7c, [0x08e7] = 0x8d7f, - [0x08e8] = 0x8d7a, [0x08e9] = 0x8dbd, [0x08ec] = 0x8dc0, [0x08ed] = 0x8dbb, - [0x08ee] = 0x8ead, [0x08ef] = 0x8eaf, [0x08f0] = 0x8ed6, [0x08f6] = 0x8ed9, - [0x08f9] = 0x9012, [0x08fa] = 0x900e, [0x08fb] = 0x9025, [0x08fd] = 0x9013, - [0x08fe] = 0x90ee, [0x0900] = 0x90ab, [0x0901] = 0x90f7, [0x0903] = 0x9159, - [0x0904] = 0x9154, [0x0905] = 0x91f2, [0x0906] = 0x91f0, [0x0907] = 0x91e5, - [0x0908] = 0x91f6, [0x090b] = 0x9587, [0x090d] = 0x965a, [0x0910] = 0x966e, - [0x0914] = 0x9679, [0x0916] = 0x98e1, [0x0917] = 0x98e6, [0x0919] = 0x9ec4, - [0x091a] = 0x9ed2, [0x091b] = 0x4e80, [0x091d] = 0x4e81, [0x091e] = 0x508f, - [0x091f] = 0x5097, [0x0920] = 0x5088, [0x0921] = 0x5089, [0x0924] = 0x5081, - [0x0925] = 0x5160, [0x0928] = 0x5e42, [0x0929] = 0x51d3, [0x092c] = 0x51d2, - [0x092d] = 0x51d6, [0x092e] = 0x5273, [0x0930] = 0x5270, [0x0934] = 0x53a8, - [0x0935] = 0x53a6, [0x0936] = 0x53c5, [0x0937] = 0x5597, [0x0938] = 0x55de, - [0x093b] = 0x5596, [0x093c] = 0x55b4, [0x093e] = 0x5585, [0x0940] = 0x559b, - [0x0941] = 0x55a0, [0x0943] = 0x5559, [0x0945] = 0x5586, [0x0948] = 0x55af, - [0x0949] = 0x557a, [0x094d] = 0x559e, [0x094f] = 0x55a9, [0x0950] = 0x570f, - [0x0951] = 0x570e, [0x0952] = 0x581a, [0x0954] = 0x581f, [0x0956] = 0x583c, - [0x0957] = 0x5818, [0x0958] = 0x583e, [0x0959] = 0x5826, [0x095b] = 0x583a, - [0x095d] = 0x5822, [0x095f] = 0x58fb, [0x0960] = 0x5963, [0x0961] = 0x5964, - [0x0963] = 0x5aa8, [0x0964] = 0x5aa3, [0x0965] = 0x5a82, [0x0966] = 0x5a88, - [0x0967] = 0x5aa1, [0x0968] = 0x5a85, [0x0969] = 0x5a98, [0x096b] = 0x5a99, - [0x096d] = 0x5a89, [0x096e] = 0x5a81, [0x096f] = 0x5a96, [0x0970] = 0x5a80, - [0x0973] = 0x5a91, [0x0978] = 0x5acf, [0x097f] = 0x5a87, [0x0980] = 0x5aa0, - [0x0982] = 0x5a79, [0x0984] = 0x5a86, [0x0985] = 0x5aab, [0x0986] = 0x5aaa, - [0x0987] = 0x5aa4, [0x0988] = 0x5a8d, [0x0989] = 0x5a7e, [0x098b] = 0x5bd5, - [0x098f] = 0x5c1e, [0x0990] = 0x5c5f, [0x0991] = 0x5c5e, [0x0992] = 0x5d44, - [0x0993] = 0x5d3e, [0x0995] = 0x5d48, [0x0996] = 0x5d1c, [0x0998] = 0x5d5b, - [0x0999] = 0x5d4d, [0x099c] = 0x5d57, [0x099e] = 0x5d53, [0x099f] = 0x5d4f, - [0x09a1] = 0x5d3b, [0x09a2] = 0x5d46, [0x09a5] = 0x5e46, [0x09a6] = 0x5e47, + [0x08b3] = 0x458f, [0x08b4] = 0x8657, [0x08b5] = 0x86b2, [0x08b6] = 0x45a7, + [0x08b7] = 0x86ae, [0x08b8] = 0x45a5, [0x08b9] = 0x45a4, [0x08ba] = 0x4611, + [0x08bb] = 0x8845, [0x08bc] = 0x889c, [0x08bd] = 0x8894, [0x08be] = 0x88a3, + [0x08bf] = 0x888f, [0x08c0] = 0x88a5, [0x08c1] = 0x88a9, [0x08c2] = 0x88a6, + [0x08c3] = 0x888a, [0x08c4] = 0x88a0, [0x08c5] = 0x8890, [0x08c6] = 0x8992, + [0x08c7] = 0x8991, [0x08c8] = 0x8994, [0x08c9] = 0x46b5, [0x08ca] = 0x8a26, + [0x08cb] = 0x8a32, [0x08cc] = 0x8a28, [0x08cd] = 0x46b4, [0x08ce] = 0x46bd, + [0x08cf] = 0x8a1c, [0x08d0] = 0x46bb, [0x08d1] = 0x8a2b, [0x08d2] = 0x8a20, + [0x08d3] = 0x46b9, [0x08d4] = 0x8a29, [0x08d5] = 0x46c2, [0x08d6] = 0x46be, + [0x08d7] = 0x46ba, [0x08d8] = 0x8a21, [0x08d9] = 0x8c3a, [0x08da] = 0x3ab7, + [0x08db] = 0x8c5b, [0x08dc] = 0x8c58, [0x08dd] = 0x8c7c, [0x08de] = 0x4758, + [0x08df] = 0x8ca6, [0x08e0] = 0x8cae, [0x08e1] = 0x8cad, [0x08e2] = 0x8d65, + [0x08e3] = 0x479b, [0x08e4] = 0x8d7e, [0x08e5] = 0x479c, [0x08e6] = 0x8d7c, + [0x08e7] = 0x8d7f, [0x08e8] = 0x8d7a, [0x08e9] = 0x8dbd, [0x08ea] = 0x47da, + [0x08eb] = 0x47de, [0x08ec] = 0x8dc0, [0x08ed] = 0x8dbb, [0x08ee] = 0x8ead, + [0x08ef] = 0x8eaf, [0x08f0] = 0x8ed6, [0x08f1] = 0x484d, [0x08f2] = 0x4846, + [0x08f3] = 0x4847, [0x08f4] = 0x484b, [0x08f5] = 0x484c, [0x08f6] = 0x8ed9, + [0x08f7] = 0x4848, [0x08f8] = 0x4899, [0x08f9] = 0x9012, [0x08fa] = 0x900e, + [0x08fb] = 0x9025, [0x08fc] = 0x489b, [0x08fd] = 0x9013, [0x08fe] = 0x90ee, + [0x08ff] = 0x48ce, [0x0900] = 0x90ab, [0x0901] = 0x90f7, [0x0902] = 0x48eb, + [0x0903] = 0x9159, [0x0904] = 0x9154, [0x0905] = 0x91f2, [0x0906] = 0x91f0, + [0x0907] = 0x91e5, [0x0908] = 0x91f6, [0x0909] = 0x491c, [0x090a] = 0x498c, + [0x090b] = 0x9587, [0x090c] = 0x49d1, [0x090d] = 0x965a, [0x090e] = 0x49d6, + [0x090f] = 0x49d3, [0x0910] = 0x966e, [0x0911] = 0x49d4, [0x0912] = 0x49d0, + [0x0913] = 0x49d5, [0x0914] = 0x9679, [0x0915] = 0x4a0b, [0x0916] = 0x98e1, + [0x0917] = 0x98e6, [0x0918] = 0x4bc6, [0x0919] = 0x9ec4, [0x091a] = 0x9ed2, + [0x091b] = 0x4e80, [0x091c] = 0x3424, [0x091d] = 0x4e81, [0x091e] = 0x508f, + [0x091f] = 0x5097, [0x0920] = 0x5088, [0x0921] = 0x5089, [0x0922] = 0x3474, + [0x0923] = 0x347a, [0x0924] = 0x5081, [0x0925] = 0x5160, [0x0926] = 0x20564, + [0x0927] = 0x34c3, [0x0928] = 0x5e42, [0x0929] = 0x51d3, [0x092a] = 0x34d4, + [0x092b] = 0x34d5, [0x092c] = 0x51d2, [0x092d] = 0x51d6, [0x092e] = 0x5273, + [0x092f] = 0x34fb, [0x0930] = 0x5270, [0x0931] = 0x34f7, [0x0932] = 0x3532, + [0x0934] = 0x53a8, [0x0935] = 0x53a6, [0x0936] = 0x53c5, [0x0937] = 0x5597, + [0x0938] = 0x55de, [0x0939] = 0x35ba, [0x093a] = 0x35bf, [0x093b] = 0x5596, + [0x093c] = 0x55b4, [0x093d] = 0x35c7, [0x093e] = 0x5585, [0x093f] = 0x35b7, + [0x0940] = 0x559b, [0x0941] = 0x55a0, [0x0942] = 0x35b9, [0x0943] = 0x5559, + [0x0944] = 0x35c3, [0x0945] = 0x5586, [0x0946] = 0x35bd, [0x0947] = 0x35d0, + [0x0948] = 0x55af, [0x0949] = 0x557a, [0x094a] = 0x35c1, [0x094b] = 0x35be, + [0x094c] = 0x35cd, [0x094d] = 0x559e, [0x094e] = 0x35cb, [0x094f] = 0x55a9, + [0x0950] = 0x570f, [0x0951] = 0x570e, [0x0952] = 0x581a, [0x0953] = 0x364f, + [0x0954] = 0x581f, [0x0955] = 0x3653, [0x0956] = 0x583c, [0x0957] = 0x5818, + [0x0958] = 0x583e, [0x0959] = 0x5826, [0x095a] = 0x3655, [0x095b] = 0x583a, + [0x095c] = 0x21364, [0x095d] = 0x5822, [0x095e] = 0x3651, [0x095f] = 0x58fb, + [0x0960] = 0x5963, [0x0961] = 0x5964, [0x0962] = 0x369f, [0x0963] = 0x5aa8, + [0x0964] = 0x5aa3, [0x0965] = 0x5a82, [0x0966] = 0x5a88, [0x0967] = 0x5aa1, + [0x0968] = 0x5a85, [0x0969] = 0x5a98, [0x096a] = 0x36fe, [0x096b] = 0x5a99, + [0x096c] = 0x36fb, [0x096d] = 0x5a89, [0x096e] = 0x5a81, [0x096f] = 0x5a96, + [0x0970] = 0x5a80, [0x0971] = 0x36f1, [0x0972] = 0x36f5, [0x0973] = 0x5a91, + [0x0974] = 0x36ef, [0x0975] = 0x3704, [0x0976] = 0x3703, [0x0977] = 0x36f4, + [0x0978] = 0x5acf, [0x0979] = 0x36f3, [0x097a] = 0x3702, [0x097b] = 0x36f7, + [0x097c] = 0x36fa, [0x097d] = 0x36fd, [0x097e] = 0x36ee, [0x097f] = 0x5a87, + [0x0980] = 0x5aa0, [0x0981] = 0x36f0, [0x0982] = 0x5a79, [0x0983] = 0x36f2, + [0x0984] = 0x5a86, [0x0985] = 0x5aab, [0x0986] = 0x5aaa, [0x0987] = 0x5aa4, + [0x0988] = 0x5a8d, [0x0989] = 0x5a7e, [0x098a] = 0x3744, [0x098b] = 0x5bd5, + [0x098c] = 0x3762, [0x098d] = 0x3777, [0x098e] = 0x3dc9, [0x098f] = 0x5c1e, + [0x0990] = 0x5c5f, [0x0991] = 0x5c5e, [0x0992] = 0x5d44, [0x0993] = 0x5d3e, + [0x0994] = 0x37e8, [0x0995] = 0x5d48, [0x0996] = 0x5d1c, [0x0997] = 0x37ef, + [0x0998] = 0x5d5b, [0x0999] = 0x5d4d, [0x099a] = 0x37e6, [0x099b] = 0x37ed, + [0x099c] = 0x5d57, [0x099d] = 0x37e7, [0x099e] = 0x5d53, [0x099f] = 0x5d4f, + [0x09a0] = 0x37eb, [0x09a1] = 0x5d3b, [0x09a2] = 0x5d46, [0x09a3] = 0x382d, + [0x09a4] = 0x3855, [0x09a5] = 0x5e46, [0x09a6] = 0x5e47, [0x09a7] = 0x3853, [0x09a8] = 0x5e48, [0x09a9] = 0x5ec0, [0x09aa] = 0x5ebd, [0x09ab] = 0x5ebf, - [0x09ad] = 0x5f11, [0x09af] = 0x5f3e, [0x09b0] = 0x5f3b, [0x09b2] = 0x5f3a, - [0x09b6] = 0x5fa7, [0x09b8] = 0x60ea, [0x09ba] = 0x6107, [0x09bb] = 0x6122, - [0x09bc] = 0x610c, [0x09bf] = 0x60b3, [0x09c0] = 0x60d6, [0x09c1] = 0x60d2, - [0x09c3] = 0x60e3, [0x09c4] = 0x60e5, [0x09c5] = 0x60e9, [0x09c8] = 0x6111, - [0x09c9] = 0x60fd, [0x09cc] = 0x611e, [0x09cd] = 0x6120, [0x09ce] = 0x6121, - [0x09cf] = 0x621e, [0x09d1] = 0x63e2, [0x09d2] = 0x63de, [0x09d3] = 0x63e6, - [0x09d8] = 0x63f8, [0x09da] = 0x63fe, [0x09db] = 0x63c1, [0x09dc] = 0x63bf, - [0x09dd] = 0x63f7, [0x09de] = 0x63d1, [0x09df] = 0x655f, [0x09e0] = 0x6560, - [0x09e1] = 0x6561, [0x09e4] = 0x65d1, [0x09e7] = 0x667d, [0x09e8] = 0x666b, - [0x09e9] = 0x667f, [0x09ec] = 0x6673, [0x09ed] = 0x6681, [0x09ee] = 0x666d, - [0x09ef] = 0x6669, [0x09f2] = 0x671e, [0x09f3] = 0x68ed, [0x09f8] = 0x6903, - [0x09fa] = 0x68fe, [0x09fb] = 0x68e5, [0x09fc] = 0x691e, [0x09fd] = 0x6902, + [0x09ac] = 0x3890, [0x09ad] = 0x5f11, [0x09ae] = 0x38be, [0x09af] = 0x5f3e, + [0x09b0] = 0x5f3b, [0x09b1] = 0x38bd, [0x09b2] = 0x5f3a, [0x09b3] = 0x38cf, + [0x09b4] = 0x38d0, [0x09b5] = 0x38ec, [0x09b6] = 0x5fa7, [0x09b7] = 0x394b, + [0x09b8] = 0x60ea, [0x09b9] = 0x3948, [0x09ba] = 0x6107, [0x09bb] = 0x6122, + [0x09bc] = 0x610c, [0x09bd] = 0x3955, [0x09be] = 0x3951, [0x09bf] = 0x60b3, + [0x09c0] = 0x60d6, [0x09c1] = 0x60d2, [0x09c2] = 0x394e, [0x09c3] = 0x60e3, + [0x09c4] = 0x60e5, [0x09c5] = 0x60e9, [0x09c6] = 0x396b, [0x09c7] = 0x395e, + [0x09c8] = 0x6111, [0x09c9] = 0x60fd, [0x09ca] = 0x3960, [0x09cb] = 0x3967, + [0x09cc] = 0x611e, [0x09cd] = 0x6120, [0x09ce] = 0x6121, [0x09cf] = 0x621e, + [0x09d0] = 0x39b8, [0x09d1] = 0x63e2, [0x09d2] = 0x63de, [0x09d3] = 0x63e6, + [0x09d4] = 0x3a14, [0x09d5] = 0x3a0f, [0x09d6] = 0x3a07, [0x09d7] = 0x3a13, + [0x09d8] = 0x63f8, [0x09d9] = 0x3a17, [0x09da] = 0x63fe, [0x09db] = 0x63c1, + [0x09dc] = 0x63bf, [0x09dd] = 0x63f7, [0x09de] = 0x63d1, [0x09df] = 0x655f, + [0x09e0] = 0x6560, [0x09e1] = 0x6561, [0x09e2] = 0x3a9a, [0x09e3] = 0x3ab8, + [0x09e4] = 0x65d1, [0x09e5] = 0x3af7, [0x09e6] = 0x3af8, [0x09e7] = 0x667d, + [0x09e8] = 0x666b, [0x09e9] = 0x667f, [0x09ea] = 0x3afd, [0x09eb] = 0x3af5, + [0x09ec] = 0x6673, [0x09ed] = 0x6681, [0x09ee] = 0x666d, [0x09ef] = 0x6669, + [0x09f0] = 0x3afa, [0x09f1] = 0x3b38, [0x09f2] = 0x671e, [0x09f3] = 0x68ed, + [0x09f4] = 0x3b87, [0x09f5] = 0x3b80, [0x09f6] = 0x3b88, [0x09f7] = 0x3b79, + [0x09f8] = 0x6903, [0x09f9] = 0x3b7c, [0x09fa] = 0x68fe, [0x09fb] = 0x68e5, + [0x09fc] = 0x691e, [0x09fd] = 0x6902, [0x09fe] = 0x3b83, [0x09ff] = 0x3b85, [0x0a00] = 0x6909, [0x0a01] = 0x68ca, [0x0a02] = 0x6900, [0x0a04] = 0x6901, - [0x0a05] = 0x6918, [0x0a06] = 0x68e2, [0x0a07] = 0x68cf, [0x0a09] = 0x692e, - [0x0a0a] = 0x68c5, [0x0a0b] = 0x68ff, [0x0a0d] = 0x691c, [0x0a0e] = 0x68c3, - [0x0a10] = 0x6b6f, [0x0a12] = 0x6b6e, [0x0a14] = 0x6bbe, [0x0a16] = 0x6bf4, - [0x0a17] = 0x6c2d, [0x0a19] = 0x6db6, [0x0a1a] = 0x6e75, [0x0a1b] = 0x6e1e, - [0x0a1d] = 0x6e18, [0x0a1f] = 0x6e48, [0x0a21] = 0x6e4f, [0x0a23] = 0x6e42, - [0x0a24] = 0x6e6a, [0x0a25] = 0x6e70, [0x0a26] = 0x6dfe, [0x0a29] = 0x6e6d, - [0x0a2b] = 0x6e7b, [0x0a2c] = 0x6e7e, [0x0a2d] = 0x6e59, [0x0a2f] = 0x6e57, - [0x0a31] = 0x6e80, [0x0a32] = 0x6e50, [0x0a34] = 0x6e29, [0x0a35] = 0x6e76, - [0x0a36] = 0x6e2a, [0x0a37] = 0x6e4c, [0x0a38] = 0x712a, [0x0a3a] = 0x7135, - [0x0a3b] = 0x712c, [0x0a3c] = 0x7137, [0x0a3d] = 0x711d, [0x0a40] = 0x7138, - [0x0a42] = 0x7134, [0x0a43] = 0x712b, [0x0a44] = 0x7133, [0x0a45] = 0x7127, - [0x0a46] = 0x7124, [0x0a48] = 0x712d, [0x0a49] = 0x7232, [0x0a4a] = 0x7283, - [0x0a4b] = 0x7282, [0x0a4c] = 0x7287, [0x0a4d] = 0x7306, [0x0a4e] = 0x7324, - [0x0a4f] = 0x7338, [0x0a50] = 0x732a, [0x0a51] = 0x732c, [0x0a52] = 0x732b, - [0x0a54] = 0x732f, [0x0a55] = 0x7328, [0x0a56] = 0x7417, [0x0a59] = 0x7419, - [0x0a5a] = 0x7438, [0x0a5c] = 0x741f, [0x0a5d] = 0x7414, [0x0a5e] = 0x743c, - [0x0a5f] = 0x73f7, [0x0a60] = 0x741c, [0x0a61] = 0x7415, [0x0a62] = 0x7418, - [0x0a63] = 0x7439, [0x0a64] = 0x74f9, [0x0a65] = 0x7524, [0x0a69] = 0x756e, - [0x0a6a] = 0x756d, [0x0a6b] = 0x7571, [0x0a6c] = 0x758e, [0x0a6e] = 0x75e5, - [0x0a73] = 0x7694, [0x0a74] = 0x76b3, [0x0a76] = 0x76d9, [0x0a78] = 0x7748, - [0x0a79] = 0x7749, [0x0a7a] = 0x7743, [0x0a7d] = 0x7742, [0x0a7e] = 0x77df, - [0x0a80] = 0x7863, [0x0a81] = 0x7876, [0x0a83] = 0x785f, [0x0a84] = 0x7866, - [0x0a85] = 0x7966, [0x0a86] = 0x7971, [0x0a89] = 0x7976, [0x0a8a] = 0x7984, - [0x0a8b] = 0x7975, [0x0a8c] = 0x79ff, [0x0a8d] = 0x7a07, [0x0a8f] = 0x7a0e, - [0x0a90] = 0x7a09, [0x0a97] = 0x7ae7, [0x0a98] = 0x7ae2, [0x0a99] = 0x7b55, - [0x0a9c] = 0x7b43, [0x0a9d] = 0x7b57, [0x0a9e] = 0x7b6c, [0x0a9f] = 0x7b42, - [0x0aa0] = 0x7b53, [0x0aa2] = 0x7b41, [0x0aa5] = 0x7ca7, [0x0aa6] = 0x7ca0, - [0x0aa7] = 0x7ca6, [0x0aa8] = 0x7ca4, [0x0aa9] = 0x7d74, [0x0aab] = 0x7d59, - [0x0aad] = 0x7d60, [0x0aae] = 0x7d57, [0x0aaf] = 0x7d6c, [0x0ab0] = 0x7d7e, - [0x0ab1] = 0x7d64, [0x0ab3] = 0x7d5a, [0x0ab4] = 0x7d5d, [0x0ab8] = 0x7d76, - [0x0ab9] = 0x7d4d, [0x0aba] = 0x7d75, [0x0abc] = 0x7fd3, [0x0abd] = 0x7fd6, - [0x0ac0] = 0x8060, [0x0ac1] = 0x804e, [0x0ac2] = 0x8145, [0x0ac3] = 0x813b, - [0x0ac5] = 0x8148, [0x0ac6] = 0x8142, [0x0ac7] = 0x8149, [0x0ac8] = 0x8140, - [0x0ac9] = 0x8114, [0x0aca] = 0x8141, [0x0acc] = 0x81ef, [0x0acd] = 0x81f6, - [0x0ace] = 0x8203, [0x0ad0] = 0x83ed, [0x0ad2] = 0x83da, [0x0ad3] = 0x8418, - [0x0ad4] = 0x83d2, [0x0ad5] = 0x8408, [0x0ad7] = 0x8400, [0x0adb] = 0x8417, - [0x0adc] = 0x8346, [0x0add] = 0x8414, [0x0ade] = 0x83d3, [0x0adf] = 0x8405, - [0x0ae0] = 0x841f, [0x0ae1] = 0x8402, [0x0ae2] = 0x8416, [0x0ae3] = 0x83cd, - [0x0ae4] = 0x83e6, [0x0ae6] = 0x865d, [0x0ae7] = 0x86d5, [0x0ae8] = 0x86e1, - [0x0aed] = 0x86ee, [0x0aee] = 0x8847, [0x0aef] = 0x8846, [0x0af2] = 0x88bb, - [0x0af4] = 0x88bf, [0x0af5] = 0x88b4, [0x0af7] = 0x88b5, [0x0af9] = 0x899a, - [0x0afa] = 0x8a43, [0x0afd] = 0x8a5a, [0x0b01] = 0x8a35, [0x0b02] = 0x8a38, - [0x0b03] = 0x8a42, [0x0b04] = 0x8a49, [0x0b05] = 0x8a5d, [0x0b06] = 0x8a4b, - [0x0b07] = 0x8a3d, [0x0b0c] = 0x8c60, [0x0b0d] = 0x8c5e, [0x0b0e] = 0x8c7f, - [0x0b0f] = 0x8c7e, [0x0b10] = 0x8c83, [0x0b12] = 0x8cb1, [0x0b13] = 0x8d87, - [0x0b16] = 0x8d88, [0x0b17] = 0x8d83, [0x0b1a] = 0x8d86, [0x0b1b] = 0x8d8b, - [0x0b1c] = 0x8d82, [0x0b1d] = 0x8dca, [0x0b1e] = 0x8dd2, [0x0b21] = 0x8dd4, - [0x0b22] = 0x8dc9, [0x0b23] = 0x8eb0, [0x0b27] = 0x8ef2, [0x0b28] = 0x8ee4, - [0x0b29] = 0x8ef3, [0x0b2a] = 0x8eea, [0x0b2c] = 0x8efd, [0x0b2e] = 0x8f9d, - [0x0b2f] = 0x902b, [0x0b30] = 0x902a, [0x0b32] = 0x9028, [0x0b33] = 0x9029, - [0x0b34] = 0x902c, [0x0b37] = 0x903a, [0x0b38] = 0x9030, [0x0b39] = 0x9037, - [0x0b3a] = 0x903b, [0x0b3c] = 0x910a, [0x0b40] = 0x91fe, [0x0b41] = 0x9220, - [0x0b43] = 0x920b, [0x0b45] = 0x9218, [0x0b46] = 0x9222, [0x0b48] = 0x921b, - [0x0b49] = 0x9208, [0x0b4b] = 0x920e, [0x0b4c] = 0x9213, [0x0b4f] = 0x9595, - [0x0b53] = 0x968c, [0x0b54] = 0x967b, [0x0b55] = 0x967f, [0x0b56] = 0x9681, - [0x0b58] = 0x9682, [0x0b5e] = 0x96ee, [0x0b5f] = 0x96ed, [0x0b61] = 0x96ec, - [0x0b62] = 0x975f, [0x0b63] = 0x976f, [0x0b65] = 0x976d, [0x0b6c] = 0x98f0, - [0x0b70] = 0x9aa9, [0x0b73] = 0x9ae0, [0x0b74] = 0x4eb7, [0x0b77] = 0x50cc, - [0x0b78] = 0x50bc, [0x0b7a] = 0x50aa, [0x0b7b] = 0x50b9, [0x0b7d] = 0x50ab, + [0x0a05] = 0x6918, [0x0a06] = 0x68e2, [0x0a07] = 0x68cf, [0x0a08] = 0x3b7b, + [0x0a09] = 0x692e, [0x0a0a] = 0x68c5, [0x0a0b] = 0x68ff, [0x0a0c] = 0x3b86, + [0x0a0d] = 0x691c, [0x0a0e] = 0x68c3, [0x0a0f] = 0x3c34, [0x0a10] = 0x6b6f, + [0x0a11] = 0x3c55, [0x0a12] = 0x6b6e, [0x0a13] = 0x3c68, [0x0a14] = 0x6bbe, + [0x0a15] = 0x3c9c, [0x0a16] = 0x6bf4, [0x0a17] = 0x6c2d, [0x0a18] = 0x3cfc, + [0x0a19] = 0x6db6, [0x0a1a] = 0x6e75, [0x0a1b] = 0x6e1e, [0x0a1c] = 0x3d1a, + [0x0a1d] = 0x6e18, [0x0a1e] = 0x3d17, [0x0a1f] = 0x6e48, [0x0a20] = 0x3d1b, + [0x0a21] = 0x6e4f, [0x0a22] = 0x3d13, [0x0a23] = 0x6e42, [0x0a24] = 0x6e6a, + [0x0a25] = 0x6e70, [0x0a26] = 0x6dfe, [0x0a27] = 0x3d05, [0x0a28] = 0x3d07, + [0x0a29] = 0x6e6d, [0x0a2a] = 0x3d1c, [0x0a2b] = 0x6e7b, [0x0a2c] = 0x6e7e, + [0x0a2d] = 0x6e59, [0x0a2e] = 0x3d11, [0x0a2f] = 0x6e57, [0x0a30] = 0x3d16, + [0x0a31] = 0x6e80, [0x0a32] = 0x6e50, [0x0a33] = 0x3d15, [0x0a34] = 0x6e29, + [0x0a35] = 0x6e76, [0x0a36] = 0x6e2a, [0x0a37] = 0x6e4c, [0x0a38] = 0x712a, + [0x0a39] = 0x3dcb, [0x0a3a] = 0x7135, [0x0a3b] = 0x712c, [0x0a3c] = 0x7137, + [0x0a3d] = 0x711d, [0x0a3e] = 0x3dc5, [0x0a3f] = 0x3dc2, [0x0a40] = 0x7138, + [0x0a41] = 0x3dcd, [0x0a42] = 0x7134, [0x0a43] = 0x712b, [0x0a44] = 0x7133, + [0x0a45] = 0x7127, [0x0a46] = 0x7124, [0x0a47] = 0x3dca, [0x0a48] = 0x712d, + [0x0a49] = 0x7232, [0x0a4a] = 0x7283, [0x0a4b] = 0x7282, [0x0a4c] = 0x7287, + [0x0a4d] = 0x7306, [0x0a4e] = 0x7324, [0x0a4f] = 0x7338, [0x0a50] = 0x732a, + [0x0a51] = 0x732c, [0x0a52] = 0x732b, [0x0a53] = 0x3e83, [0x0a54] = 0x732f, + [0x0a55] = 0x7328, [0x0a56] = 0x7417, [0x0a57] = 0x3ed6, [0x0a58] = 0x3ed5, + [0x0a59] = 0x7419, [0x0a5a] = 0x7438, [0x0a5b] = 0x3ed1, [0x0a5c] = 0x741f, + [0x0a5d] = 0x7414, [0x0a5e] = 0x743c, [0x0a5f] = 0x73f7, [0x0a60] = 0x741c, + [0x0a61] = 0x7415, [0x0a62] = 0x7418, [0x0a63] = 0x7439, [0x0a64] = 0x74f9, + [0x0a65] = 0x7524, [0x0a67] = 0x3f52, [0x0a68] = 0x3f5f, [0x0a69] = 0x756e, + [0x0a6a] = 0x756d, [0x0a6b] = 0x7571, [0x0a6c] = 0x758e, [0x0a6d] = 0x3f95, + [0x0a6e] = 0x75e5, [0x0a6f] = 0x3f9d, [0x0a70] = 0x3f98, [0x0a71] = 0x3f9e, + [0x0a72] = 0x3f96, [0x0a73] = 0x7694, [0x0a74] = 0x76b3, [0x0a75] = 0x4003, + [0x0a76] = 0x76d9, [0x0a77] = 0x402f, [0x0a78] = 0x7748, [0x0a79] = 0x7749, + [0x0a7a] = 0x7743, [0x0a7b] = 0x4031, [0x0a7c] = 0x4033, [0x0a7d] = 0x7742, + [0x0a7e] = 0x77df, [0x0a7f] = 0x40b4, [0x0a80] = 0x7863, [0x0a81] = 0x7876, + [0x0a82] = 0x40b0, [0x0a83] = 0x785f, [0x0a84] = 0x7866, [0x0a85] = 0x7966, + [0x0a86] = 0x7971, [0x0a87] = 0x4108, [0x0a88] = 0x4107, [0x0a89] = 0x7976, + [0x0a8a] = 0x7984, [0x0a8b] = 0x7975, [0x0a8c] = 0x79ff, [0x0a8d] = 0x7a07, + [0x0a8e] = 0x414e, [0x0a8f] = 0x7a0e, [0x0a90] = 0x7a09, [0x0a91] = 0x4150, + [0x0a92] = 0x4152, [0x0a93] = 0x41a1, [0x0a94] = 0x41a3, [0x0a95] = 0x41a5, + [0x0a96] = 0x41cc, [0x0a97] = 0x7ae7, [0x0a98] = 0x7ae2, [0x0a99] = 0x7b55, + [0x0a9a] = 0x41ef, [0x0a9b] = 0x41ea, [0x0a9c] = 0x7b43, [0x0a9d] = 0x7b57, + [0x0a9e] = 0x7b6c, [0x0a9f] = 0x7b42, [0x0aa0] = 0x7b53, [0x0aa1] = 0x41ed, + [0x0aa2] = 0x7b41, [0x0aa3] = 0x4285, [0x0aa4] = 0x4284, [0x0aa5] = 0x7ca7, + [0x0aa6] = 0x7ca0, [0x0aa7] = 0x7ca6, [0x0aa8] = 0x7ca4, [0x0aa9] = 0x7d74, + [0x0aaa] = 0x42db, [0x0aab] = 0x7d59, [0x0aac] = 0x42d9, [0x0aad] = 0x7d60, + [0x0aae] = 0x7d57, [0x0aaf] = 0x7d6c, [0x0ab0] = 0x7d7e, [0x0ab1] = 0x7d64, + [0x0ab2] = 0x42d7, [0x0ab3] = 0x7d5a, [0x0ab4] = 0x7d5d, [0x0ab5] = 0x42da, + [0x0ab6] = 0x42de, [0x0ab7] = 0x42d8, [0x0ab8] = 0x7d76, [0x0ab9] = 0x7d4d, + [0x0aba] = 0x7d75, [0x0abb] = 0x42d5, [0x0abc] = 0x7fd3, [0x0abd] = 0x7fd6, + [0x0abe] = 0x439c, [0x0abf] = 0x439d, [0x0ac0] = 0x8060, [0x0ac1] = 0x804e, + [0x0ac2] = 0x8145, [0x0ac3] = 0x813b, [0x0ac4] = 0x43fe, [0x0ac5] = 0x8148, + [0x0ac6] = 0x8142, [0x0ac7] = 0x8149, [0x0ac8] = 0x8140, [0x0ac9] = 0x8114, + [0x0aca] = 0x8141, [0x0acb] = 0x4407, [0x0acc] = 0x81ef, [0x0acd] = 0x81f6, + [0x0ace] = 0x8203, [0x0acf] = 0x446a, [0x0ad0] = 0x83ed, [0x0ad1] = 0x44e7, + [0x0ad2] = 0x83da, [0x0ad3] = 0x8418, [0x0ad4] = 0x83d2, [0x0ad5] = 0x8408, + [0x0ad6] = 0x44e2, [0x0ad7] = 0x8400, [0x0ad8] = 0x44df, [0x0ad9] = 0x44e1, + [0x0ada] = 0x44e5, [0x0adb] = 0x8417, [0x0adc] = 0x8346, [0x0add] = 0x8414, + [0x0ade] = 0x83d3, [0x0adf] = 0x8405, [0x0ae0] = 0x841f, [0x0ae1] = 0x8402, + [0x0ae2] = 0x8416, [0x0ae3] = 0x83cd, [0x0ae4] = 0x83e6, [0x0ae5] = 0x4591, + [0x0ae6] = 0x865d, [0x0ae7] = 0x86d5, [0x0ae8] = 0x86e1, [0x0ae9] = 0x45b4, + [0x0aea] = 0x45b0, [0x0aeb] = 0x45b5, [0x0aec] = 0x45ae, [0x0aed] = 0x86ee, + [0x0aee] = 0x8847, [0x0aef] = 0x8846, [0x0af0] = 0x462d, [0x0af1] = 0x462c, + [0x0af2] = 0x88bb, [0x0af3] = 0x462b, [0x0af4] = 0x88bf, [0x0af5] = 0x88b4, + [0x0af6] = 0x4629, [0x0af7] = 0x88b5, [0x0af8] = 0x467f, [0x0af9] = 0x899a, + [0x0afa] = 0x8a43, [0x0afb] = 0x46c9, [0x0afc] = 0x46cb, [0x0afd] = 0x8a5a, + [0x0afe] = 0x46c5, [0x0aff] = 0x46c6, [0x0b00] = 0x46ca, [0x0b01] = 0x8a35, + [0x0b02] = 0x8a38, [0x0b03] = 0x8a42, [0x0b04] = 0x8a49, [0x0b05] = 0x8a5d, + [0x0b06] = 0x8a4b, [0x0b07] = 0x8a3d, [0x0b08] = 0x46d2, [0x0b09] = 0x46d0, + [0x0b0a] = 0x472d, [0x0b0b] = 0x4735, [0x0b0c] = 0x8c60, [0x0b0d] = 0x8c5e, + [0x0b0e] = 0x8c7f, [0x0b0f] = 0x8c7e, [0x0b10] = 0x8c83, [0x0b11] = 0x476c, + [0x0b12] = 0x8cb1, [0x0b13] = 0x8d87, [0x0b14] = 0x479d, [0x0b15] = 0x47a0, + [0x0b16] = 0x8d88, [0x0b17] = 0x8d83, [0x0b18] = 0x47a2, [0x0b19] = 0x479f, + [0x0b1a] = 0x8d86, [0x0b1b] = 0x8d8b, [0x0b1c] = 0x8d82, [0x0b1d] = 0x8dca, + [0x0b1e] = 0x8dd2, [0x0b1f] = 0x47eb, [0x0b20] = 0x47e2, [0x0b21] = 0x8dd4, + [0x0b22] = 0x8dc9, [0x0b23] = 0x8eb0, [0x0b24] = 0x4836, [0x0b25] = 0x4832, + [0x0b26] = 0x4850, [0x0b27] = 0x8ef2, [0x0b28] = 0x8ee4, [0x0b29] = 0x8ef3, + [0x0b2a] = 0x8eea, [0x0b2b] = 0x484f, [0x0b2c] = 0x8efd, [0x0b2d] = 0x4852, + [0x0b2e] = 0x8f9d, [0x0b2f] = 0x902b, [0x0b30] = 0x902a, [0x0b31] = 0x489e, + [0x0b32] = 0x9028, [0x0b33] = 0x9029, [0x0b34] = 0x902c, [0x0b35] = 0x48a0, + [0x0b36] = 0x489c, [0x0b37] = 0x903a, [0x0b38] = 0x9030, [0x0b39] = 0x9037, + [0x0b3a] = 0x903b, [0x0b3b] = 0x48d1, [0x0b3c] = 0x910a, [0x0b3d] = 0x48ef, + [0x0b3e] = 0x48f0, [0x0b3f] = 0x48f1, [0x0b40] = 0x91fe, [0x0b41] = 0x9220, + [0x0b42] = 0x491d, [0x0b43] = 0x920b, [0x0b44] = 0x491f, [0x0b45] = 0x9218, + [0x0b46] = 0x9222, [0x0b47] = 0x491e, [0x0b48] = 0x921b, [0x0b49] = 0x9208, + [0x0b4a] = 0x4920, [0x0b4b] = 0x920e, [0x0b4c] = 0x9213, [0x0b4d] = 0x498e, + [0x0b4e] = 0x4991, [0x0b4f] = 0x9595, [0x0b50] = 0x28cdd, [0x0b51] = 0x4990, + [0x0b52] = 0x49d7, [0x0b53] = 0x968c, [0x0b54] = 0x967b, [0x0b55] = 0x967f, + [0x0b56] = 0x9681, [0x0b57] = 0x49d9, [0x0b58] = 0x9682, [0x0b59] = 0x49f4, + [0x0b5a] = 0x49f6, [0x0b5b] = 0x3560, [0x0b5c] = 0x49f5, [0x0b5d] = 0x49f3, + [0x0b5e] = 0x96ee, [0x0b5f] = 0x96ed, [0x0b60] = 0x4a0c, [0x0b61] = 0x96ec, + [0x0b62] = 0x975f, [0x0b63] = 0x976f, [0x0b64] = 0x4a51, [0x0b65] = 0x976d, + [0x0b66] = 0x4aa6, [0x0b67] = 0x4aa7, [0x0b68] = 0x4aa8, [0x0b69] = 0x4b27, + [0x0b6a] = 0x4b24, [0x0b6b] = 0x4b25, [0x0b6c] = 0x98f0, [0x0b6d] = 0x4b2a, + [0x0b6e] = 0x4b74, [0x0b6f] = 0x4bc7, [0x0b70] = 0x9aa9, [0x0b71] = 0x4be7, + [0x0b72] = 0x4bed, [0x0b73] = 0x9ae0, [0x0b74] = 0x4eb7, [0x0b75] = 0x342e, + [0x0b76] = 0x347b, [0x0b77] = 0x50cc, [0x0b78] = 0x50bc, [0x0b79] = 0x347c, + [0x0b7a] = 0x50aa, [0x0b7b] = 0x50b9, [0x0b7c] = 0x347d, [0x0b7d] = 0x50ab, [0x0b7e] = 0x50c3, [0x0b7f] = 0x50cd, [0x0b80] = 0x517e, [0x0b81] = 0x527e, - [0x0b82] = 0x5279, [0x0b85] = 0x52e1, [0x0b86] = 0x52e0, [0x0b87] = 0x52e7, - [0x0b88] = 0x5380, [0x0b89] = 0x53ab, [0x0b8a] = 0x53aa, [0x0b8b] = 0x53a9, - [0x0b8c] = 0x53e0, [0x0b8d] = 0x55ea, [0x0b8f] = 0x55d7, [0x0b92] = 0x55c1, - [0x0b93] = 0x5715, [0x0b95] = 0x586c, [0x0b97] = 0x585c, [0x0b98] = 0x5850, - [0x0b99] = 0x5861, [0x0b9a] = 0x586a, [0x0b9b] = 0x5869, [0x0b9c] = 0x5856, - [0x0b9d] = 0x5860, [0x0b9e] = 0x5866, [0x0b9f] = 0x585f, [0x0ba0] = 0x5923, - [0x0ba1] = 0x5966, [0x0ba2] = 0x5968, [0x0ba5] = 0x5ace, [0x0ba7] = 0x5ac5, - [0x0ba8] = 0x5ac3, [0x0bab] = 0x5ad0, [0x0bb2] = 0x5b74, [0x0bb3] = 0x5b76, - [0x0bb4] = 0x5bdc, [0x0bb5] = 0x5bd7, [0x0bb6] = 0x5bda, [0x0bb7] = 0x5bdb, - [0x0bb9] = 0x5c20, [0x0bba] = 0x5d6d, [0x0bbb] = 0x5d66, [0x0bbd] = 0x5d64, - [0x0bbe] = 0x5d6e, [0x0bc0] = 0x5d60, [0x0bc1] = 0x5f42, [0x0bc2] = 0x5f5a, - [0x0bc3] = 0x5f6e, [0x0bc6] = 0x6130, [0x0bc7] = 0x613a, [0x0bc8] = 0x612a, - [0x0bc9] = 0x6143, [0x0bca] = 0x6119, [0x0bcb] = 0x6131, [0x0bcd] = 0x613d, - [0x0bd1] = 0x6408, [0x0bd2] = 0x6432, [0x0bd3] = 0x6438, [0x0bd5] = 0x6431, - [0x0bd7] = 0x6419, [0x0bd9] = 0x6411, [0x0bdc] = 0x6429, [0x0bdd] = 0x641d, - [0x0be1] = 0x643c, [0x0be3] = 0x6446, [0x0be4] = 0x6447, [0x0be7] = 0x643a, - [0x0be8] = 0x6407, [0x0bea] = 0x656b, [0x0bec] = 0x6570, [0x0bed] = 0x656d, - [0x0bef] = 0x65e4, [0x0bf0] = 0x6693, [0x0bf5] = 0x668f, [0x0bf8] = 0x6692, - [0x0bfa] = 0x668e, [0x0bfc] = 0x6946, [0x0c04] = 0x6931, [0x0c07] = 0x693e, - [0x0c09] = 0x697c, [0x0c0a] = 0x6943, [0x0c0c] = 0x6973, [0x0c0e] = 0x6955, + [0x0b82] = 0x5279, [0x0b83] = 0x34fd, [0x0b85] = 0x52e1, [0x0b86] = 0x52e0, + [0x0b87] = 0x52e7, [0x0b88] = 0x5380, [0x0b89] = 0x53ab, [0x0b8a] = 0x53aa, + [0x0b8b] = 0x53a9, [0x0b8c] = 0x53e0, [0x0b8d] = 0x55ea, [0x0b8e] = 0x35da, + [0x0b8f] = 0x55d7, [0x0b90] = 0x35d6, [0x0b91] = 0x35db, [0x0b92] = 0x55c1, + [0x0b93] = 0x5715, [0x0b94] = 0x365b, [0x0b95] = 0x586c, [0x0b96] = 0x365c, + [0x0b97] = 0x585c, [0x0b98] = 0x5850, [0x0b99] = 0x5861, [0x0b9a] = 0x586a, + [0x0b9b] = 0x5869, [0x0b9c] = 0x5856, [0x0b9d] = 0x5860, [0x0b9e] = 0x5866, + [0x0b9f] = 0x585f, [0x0ba0] = 0x5923, [0x0ba1] = 0x5966, [0x0ba2] = 0x5968, + [0x0ba3] = 0x3706, [0x0ba4] = 0x370b, [0x0ba5] = 0x5ace, [0x0ba6] = 0x370d, + [0x0ba7] = 0x5ac5, [0x0ba8] = 0x5ac3, [0x0ba9] = 0x370a, [0x0baa] = 0x3713, + [0x0bab] = 0x5ad0, [0x0bac] = 0x3710, [0x0bad] = 0x3712, [0x0bae] = 0x3709, + [0x0baf] = 0x3708, [0x0bb0] = 0x3711, [0x0bb1] = 0x370f, [0x0bb2] = 0x5b74, + [0x0bb3] = 0x5b76, [0x0bb4] = 0x5bdc, [0x0bb5] = 0x5bd7, [0x0bb6] = 0x5bda, + [0x0bb7] = 0x5bdb, [0x0bb8] = 0x3767, [0x0bb9] = 0x5c20, [0x0bba] = 0x5d6d, + [0x0bbb] = 0x5d66, [0x0bbc] = 0x37f6, [0x0bbd] = 0x5d64, [0x0bbe] = 0x5d6e, + [0x0bc0] = 0x5d60, [0x0bc1] = 0x5f42, [0x0bc2] = 0x5f5a, [0x0bc3] = 0x5f6e, + [0x0bc4] = 0x3964, [0x0bc5] = 0x396c, [0x0bc6] = 0x6130, [0x0bc7] = 0x613a, + [0x0bc8] = 0x612a, [0x0bc9] = 0x6143, [0x0bca] = 0x6119, [0x0bcb] = 0x6131, + [0x0bcc] = 0x396d, [0x0bcd] = 0x613d, [0x0bce] = 0x397a, [0x0bcf] = 0x3975, + [0x0bd0] = 0x3a0d, [0x0bd1] = 0x6408, [0x0bd2] = 0x6432, [0x0bd3] = 0x6438, + [0x0bd4] = 0x3a1e, [0x0bd5] = 0x6431, [0x0bd6] = 0x3a1b, [0x0bd7] = 0x6419, + [0x0bd8] = 0x3a2a, [0x0bd9] = 0x6411, [0x0bda] = 0x3a1f, [0x0bdb] = 0x3a22, + [0x0bdc] = 0x6429, [0x0bdd] = 0x641d, [0x0bde] = 0x3a25, [0x0bdf] = 0x3a27, + [0x0be0] = 0x3a29, [0x0be1] = 0x643c, [0x0be2] = 0x3a24, [0x0be3] = 0x6446, + [0x0be4] = 0x6447, [0x0be5] = 0x3a28, [0x0be6] = 0x3a26, [0x0be7] = 0x643a, + [0x0be8] = 0x6407, [0x0be9] = 0x3a23, [0x0bea] = 0x656b, [0x0beb] = 0x3a9f, + [0x0bec] = 0x6570, [0x0bed] = 0x656d, [0x0bee] = 0x3ab1, [0x0bef] = 0x65e4, + [0x0bf0] = 0x6693, [0x0bf1] = 0x3b03, [0x0bf2] = 0x3b07, [0x0bf3] = 0x3b0c, + [0x0bf4] = 0x3b06, [0x0bf5] = 0x668f, [0x0bf6] = 0x3b04, [0x0bf7] = 0x3b09, + [0x0bf8] = 0x6692, [0x0bf9] = 0x3b05, [0x0bfa] = 0x668e, [0x0bfb] = 0x3b08, + [0x0bfc] = 0x6946, [0x0bfd] = 0x3b96, [0x0bfe] = 0x3b9c, [0x0bff] = 0x3b9f, + [0x0c00] = 0x3b9b, [0x0c01] = 0x3b98, [0x0c02] = 0x3b99, [0x0c03] = 0x3b94, + [0x0c04] = 0x6931, [0x0c05] = 0x3b8d, [0x0c06] = 0x3ba3, [0x0c07] = 0x693e, + [0x0c08] = 0x3b93, [0x0c09] = 0x697c, [0x0c0a] = 0x6943, [0x0c0b] = 0x3b92, + [0x0c0c] = 0x6973, [0x0c0e] = 0x6955, [0x0c0f] = 0x3b8e, [0x0c10] = 0x3b8c, [0x0c11] = 0x6985, [0x0c12] = 0x694d, [0x0c13] = 0x6950, [0x0c14] = 0x6947, [0x0c15] = 0x6967, [0x0c16] = 0x6936, [0x0c17] = 0x6964, [0x0c18] = 0x6961, - [0x0c1a] = 0x697d, [0x0c1b] = 0x6b44, [0x0c1c] = 0x6b40, [0x0c1d] = 0x6b71, - [0x0c1e] = 0x6b73, [0x0c1f] = 0x6b9c, [0x0c23] = 0x6bc1, [0x0c25] = 0x6bfa, - [0x0c26] = 0x6c31, [0x0c27] = 0x6c32, [0x0c2a] = 0x6eb8, [0x0c2b] = 0x6ea8, - [0x0c2d] = 0x6e91, [0x0c2e] = 0x6ebb, [0x0c30] = 0x6e9a, [0x0c33] = 0x6ea9, - [0x0c36] = 0x6eb5, [0x0c37] = 0x6e6c, [0x0c38] = 0x6ee8, [0x0c3a] = 0x6edd, - [0x0c3b] = 0x6eda, [0x0c3c] = 0x6ee6, [0x0c3d] = 0x6eac, [0x0c41] = 0x6ed9, - [0x0c42] = 0x6ee3, [0x0c43] = 0x6ee9, [0x0c44] = 0x6edb, [0x0c46] = 0x716f, - [0x0c49] = 0x7148, [0x0c4b] = 0x714a, [0x0c4c] = 0x716b, [0x0c4e] = 0x714f, - [0x0c4f] = 0x7157, [0x0c50] = 0x7174, [0x0c54] = 0x7145, [0x0c55] = 0x7151, - [0x0c56] = 0x716d, [0x0c58] = 0x7251, [0x0c59] = 0x7250, [0x0c5a] = 0x724e, - [0x0c5c] = 0x7341, [0x0c5e] = 0x732e, [0x0c5f] = 0x7346, [0x0c61] = 0x7427, - [0x0c63] = 0x7448, [0x0c64] = 0x7453, [0x0c65] = 0x743d, [0x0c67] = 0x745d, - [0x0c68] = 0x7456, [0x0c6a] = 0x741e, [0x0c6b] = 0x7447, [0x0c6c] = 0x7443, - [0x0c6d] = 0x7458, [0x0c6e] = 0x7449, [0x0c70] = 0x744c, [0x0c71] = 0x7445, - [0x0c72] = 0x743e, [0x0c74] = 0x7501, [0x0c75] = 0x751e, [0x0c78] = 0x757a, + [0x0c19] = 0x3b9a, [0x0c1a] = 0x697d, [0x0c1b] = 0x6b44, [0x0c1c] = 0x6b40, + [0x0c1d] = 0x6b71, [0x0c1e] = 0x6b73, [0x0c1f] = 0x6b9c, [0x0c20] = 0x3c6a, + [0x0c21] = 0x3c6d, [0x0c22] = 0x3c84, [0x0c23] = 0x6bc1, [0x0c24] = 0x3ca0, + [0x0c25] = 0x6bfa, [0x0c26] = 0x6c31, [0x0c27] = 0x6c32, [0x0c28] = 0x3d1d, + [0x0c29] = 0x3d26, [0x0c2a] = 0x6eb8, [0x0c2b] = 0x6ea8, [0x0c2c] = 0x3d33, + [0x0c2d] = 0x6e91, [0x0c2e] = 0x6ebb, [0x0c2f] = 0x3d38, [0x0c30] = 0x6e9a, + [0x0c31] = 0x3d30, [0x0c32] = 0x3d28, [0x0c33] = 0x6ea9, [0x0c34] = 0x3d27, + [0x0c35] = 0x3d2a, [0x0c36] = 0x6eb5, [0x0c37] = 0x6e6c, [0x0c38] = 0x6ee8, + [0x0c39] = 0x3d31, [0x0c3a] = 0x6edd, [0x0c3b] = 0x6eda, [0x0c3c] = 0x6ee6, + [0x0c3d] = 0x6eac, [0x0c3e] = 0x3d34, [0x0c3f] = 0x3d2e, [0x0c40] = 0x3d3b, + [0x0c41] = 0x6ed9, [0x0c42] = 0x6ee3, [0x0c43] = 0x6ee9, [0x0c44] = 0x6edb, + [0x0c45] = 0x3d29, [0x0c46] = 0x716f, [0x0c47] = 0x3dd2, [0x0c48] = 0x3dd8, + [0x0c49] = 0x7148, [0x0c4a] = 0x3dcf, [0x0c4b] = 0x714a, [0x0c4c] = 0x716b, + [0x0c4d] = 0x3dd9, [0x0c4e] = 0x714f, [0x0c4f] = 0x7157, [0x0c50] = 0x7174, + [0x0c51] = 0x3dce, [0x0c52] = 0x3dd3, [0x0c53] = 0x3dd0, [0x0c54] = 0x7145, + [0x0c55] = 0x7151, [0x0c56] = 0x716d, [0x0c57] = 0x3ba1, [0x0c58] = 0x7251, + [0x0c59] = 0x7250, [0x0c5a] = 0x724e, [0x0c5b] = 0x3e47, [0x0c5c] = 0x7341, + [0x0c5d] = 0x3e8b, [0x0c5e] = 0x732e, [0x0c5f] = 0x7346, [0x0c60] = 0x3ed4, + [0x0c61] = 0x7427, [0x0c62] = 0x3ede, [0x0c63] = 0x7448, [0x0c64] = 0x7453, + [0x0c65] = 0x743d, [0x0c66] = 0x3edf, [0x0c67] = 0x745d, [0x0c68] = 0x7456, + [0x0c69] = 0x3ed7, [0x0c6a] = 0x741e, [0x0c6b] = 0x7447, [0x0c6c] = 0x7443, + [0x0c6d] = 0x7458, [0x0c6e] = 0x7449, [0x0c6f] = 0x3ee1, [0x0c70] = 0x744c, + [0x0c71] = 0x7445, [0x0c72] = 0x743e, [0x0c73] = 0x3f2f, [0x0c74] = 0x7501, + [0x0c75] = 0x751e, [0x0c76] = 0x3f62, [0x0c77] = 0x3f63, [0x0c78] = 0x757a, [0x0c79] = 0x75ee, [0x0c7a] = 0x7602, [0x0c7b] = 0x7697, [0x0c7c] = 0x7698, - [0x0c80] = 0x775d, [0x0c81] = 0x7764, [0x0c82] = 0x7753, [0x0c83] = 0x7758, - [0x0c84] = 0x7882, [0x0c85] = 0x7890, [0x0c86] = 0x788a, [0x0c88] = 0x787a, - [0x0c89] = 0x787d, [0x0c8b] = 0x788b, [0x0c8c] = 0x7878, [0x0c8f] = 0x788d, - [0x0c90] = 0x7888, [0x0c91] = 0x7892, [0x0c92] = 0x7881, [0x0c93] = 0x797e, - [0x0c94] = 0x7983, [0x0c98] = 0x7980, [0x0c9c] = 0x7a0f, [0x0c9f] = 0x7a1d, - [0x0ca1] = 0x7aa1, [0x0ca2] = 0x7aa4, [0x0ca4] = 0x7ae9, [0x0ca5] = 0x7aea, - [0x0ca7] = 0x7b62, [0x0ca8] = 0x7b6b, [0x0caa] = 0x7b5e, [0x0cac] = 0x7b79, - [0x0caf] = 0x7b6f, [0x0cb0] = 0x7b68, [0x0cb3] = 0x7cae, [0x0cb7] = 0x7cb0, - [0x0cb9] = 0x7d90, [0x0cbb] = 0x7d8a, [0x0cbd] = 0x7d8b, [0x0cbe] = 0x7d99, - [0x0cbf] = 0x7d95, [0x0cc1] = 0x7d87, [0x0cc2] = 0x7d78, [0x0cc3] = 0x7d97, - [0x0cc4] = 0x7d89, [0x0cc5] = 0x7d98, [0x0cc9] = 0x7fa3, [0x0ccd] = 0x7fdd, - [0x0cce] = 0x8057, [0x0cd0] = 0x8163, [0x0cd1] = 0x816a, [0x0cd2] = 0x816c, - [0x0cd6] = 0x815d, [0x0cd7] = 0x8175, [0x0cd9] = 0x815f, [0x0cdb] = 0x817d, - [0x0cdc] = 0x816d, [0x0cdf] = 0x8241, [0x0ce0] = 0x844f, [0x0ce1] = 0x8484, - [0x0ce3] = 0x847f, [0x0ce5] = 0x8448, [0x0ce6] = 0x842a, [0x0ce7] = 0x847b, - [0x0ce8] = 0x8472, [0x0ce9] = 0x8464, [0x0cea] = 0x842e, [0x0ceb] = 0x845c, - [0x0cec] = 0x8453, [0x0cee] = 0x8441, [0x0cef] = 0x84c8, [0x0cf1] = 0x8462, - [0x0cf2] = 0x8480, [0x0cf3] = 0x843e, [0x0cf4] = 0x8483, [0x0cf5] = 0x8471, - [0x0cf7] = 0x844a, [0x0cf8] = 0x8455, [0x0cf9] = 0x8458, [0x0cfd] = 0x86fc, - [0x0cfe] = 0x86fd, [0x0cff] = 0x8715, [0x0d01] = 0x8716, [0x0d02] = 0x86ff, - [0x0d06] = 0x8858, [0x0d07] = 0x88cf, [0x0d08] = 0x88e0, [0x0d0d] = 0x89e7, - [0x0d0e] = 0x8a6a, [0x0d0f] = 0x8a80, [0x0d11] = 0x8a6f, [0x0d12] = 0x8a65, - [0x0d14] = 0x8a78, [0x0d15] = 0x8a7d, [0x0d16] = 0x8a88, [0x0d19] = 0x8a64, - [0x0d1a] = 0x8a7e, [0x0d1c] = 0x8a67, [0x0d1d] = 0x8c63, [0x0d1e] = 0x8c88, - [0x0d20] = 0x8ccd, [0x0d22] = 0x8cc9, [0x0d24] = 0x8ded, [0x0d2c] = 0x8eb1, - [0x0d2f] = 0x8f04, [0x0d30] = 0x8f9e, [0x0d31] = 0x8fa0, [0x0d32] = 0x9043, - [0x0d33] = 0x9046, [0x0d34] = 0x9048, [0x0d35] = 0x9045, [0x0d36] = 0x9040, - [0x0d37] = 0x904c, [0x0d3a] = 0x910c, [0x0d3b] = 0x9113, [0x0d3c] = 0x9115, - [0x0d3e] = 0x916b, [0x0d3f] = 0x9167, [0x0d40] = 0x925d, [0x0d41] = 0x9255, - [0x0d42] = 0x9235, [0x0d44] = 0x9259, [0x0d45] = 0x922f, [0x0d46] = 0x923c, - [0x0d47] = 0x928f, [0x0d48] = 0x925c, [0x0d49] = 0x926a, [0x0d4a] = 0x9262, - [0x0d4b] = 0x925f, [0x0d4c] = 0x926b, [0x0d4d] = 0x926e, [0x0d4e] = 0x923b, - [0x0d4f] = 0x9244, [0x0d50] = 0x9241, [0x0d51] = 0x959a, [0x0d53] = 0x9599, - [0x0d57] = 0x968f, [0x0d59] = 0x9696, [0x0d5d] = 0x96f4, [0x0d5e] = 0x96fc, - [0x0d60] = 0x9755, [0x0d62] = 0x9779, [0x0d66] = 0x97ee, [0x0d67] = 0x97f5, - [0x0d69] = 0x980b, [0x0d6b] = 0x98f3, [0x0d6e] = 0x98f7, [0x0d6f] = 0x98ff, - [0x0d70] = 0x98f5, [0x0d72] = 0x98ec, [0x0d73] = 0x98f1, [0x0d76] = 0x999a, + [0x0c7d] = 0x3fe2, [0x0c7e] = 0x4004, [0x0c7f] = 0x4043, [0x0c80] = 0x775d, + [0x0c81] = 0x7764, [0x0c82] = 0x7753, [0x0c83] = 0x7758, [0x0c84] = 0x7882, + [0x0c85] = 0x7890, [0x0c86] = 0x788a, [0x0c87] = 0x40be, [0x0c88] = 0x787a, + [0x0c89] = 0x787d, [0x0c8a] = 0x40ba, [0x0c8b] = 0x788b, [0x0c8c] = 0x7878, + [0x0c8d] = 0x40bc, [0x0c8f] = 0x788d, [0x0c90] = 0x7888, [0x0c91] = 0x7892, + [0x0c92] = 0x7881, [0x0c93] = 0x797e, [0x0c94] = 0x7983, [0x0c95] = 0x410d, + [0x0c96] = 0x410e, [0x0c97] = 0x4111, [0x0c98] = 0x7980, [0x0c99] = 0x410f, + [0x0c9a] = 0x4112, [0x0c9b] = 0x4155, [0x0c9c] = 0x7a0f, [0x0c9d] = 0x4159, + [0x0c9e] = 0x415b, [0x0c9f] = 0x7a1d, [0x0ca0] = 0x4157, [0x0ca1] = 0x7aa1, + [0x0ca2] = 0x7aa4, [0x0ca3] = 0x41ce, [0x0ca4] = 0x7ae9, [0x0ca5] = 0x7aea, + [0x0ca6] = 0x41fe, [0x0ca7] = 0x7b62, [0x0ca8] = 0x7b6b, [0x0ca9] = 0x41fc, + [0x0caa] = 0x7b5e, [0x0cab] = 0x41f5, [0x0cac] = 0x7b79, [0x0cad] = 0x41f9, + [0x0cae] = 0x41fa, [0x0caf] = 0x7b6f, [0x0cb0] = 0x7b68, [0x0cb1] = 0x4288, + [0x0cb2] = 0x4289, [0x0cb3] = 0x7cae, [0x0cb4] = 0x428a, [0x0cb5] = 0x4287, + [0x0cb6] = 0x428b, [0x0cb7] = 0x7cb0, [0x0cb8] = 0x42e6, [0x0cb9] = 0x7d90, + [0x0cba] = 0x42ed, [0x0cbb] = 0x7d8a, [0x0cbc] = 0x42e5, [0x0cbd] = 0x7d8b, + [0x0cbe] = 0x7d99, [0x0cbf] = 0x7d95, [0x0cc0] = 0x42e0, [0x0cc1] = 0x7d87, + [0x0cc2] = 0x7d78, [0x0cc3] = 0x7d97, [0x0cc4] = 0x7d89, [0x0cc5] = 0x7d98, + [0x0cc6] = 0x42e1, [0x0cc7] = 0x435b, [0x0cc8] = 0x435c, [0x0cc9] = 0x7fa3, + [0x0cca] = 0x438f, [0x0ccb] = 0x438b, [0x0ccc] = 0x438d, [0x0ccd] = 0x7fdd, + [0x0cce] = 0x8057, [0x0ccf] = 0x43b9, [0x0cd0] = 0x8163, [0x0cd1] = 0x816a, + [0x0cd2] = 0x816c, [0x0cd3] = 0x440f, [0x0cd4] = 0x4419, [0x0cd5] = 0x4413, + [0x0cd6] = 0x815d, [0x0cd7] = 0x8175, [0x0cd8] = 0x4418, [0x0cd9] = 0x815f, + [0x0cda] = 0x4416, [0x0cdb] = 0x817d, [0x0cdc] = 0x816d, [0x0cdd] = 0x4453, + [0x0cdf] = 0x8241, [0x0ce0] = 0x844f, [0x0ce1] = 0x8484, [0x0ce2] = 0x44f6, + [0x0ce3] = 0x847f, [0x0ce4] = 0x44f5, [0x0ce5] = 0x8448, [0x0ce6] = 0x842a, + [0x0ce7] = 0x847b, [0x0ce8] = 0x8472, [0x0ce9] = 0x8464, [0x0cea] = 0x842e, + [0x0ceb] = 0x845c, [0x0cec] = 0x8453, [0x0ced] = 0x44f7, [0x0cee] = 0x8441, + [0x0cef] = 0x84c8, [0x0cf0] = 0x44f0, [0x0cf1] = 0x8462, [0x0cf2] = 0x8480, + [0x0cf3] = 0x843e, [0x0cf4] = 0x8483, [0x0cf5] = 0x8471, [0x0cf6] = 0x44f9, + [0x0cf7] = 0x844a, [0x0cf8] = 0x8455, [0x0cf9] = 0x8458, [0x0cfa] = 0x4592, + [0x0cfb] = 0x4595, [0x0cfc] = 0x4596, [0x0cfd] = 0x86fc, [0x0cfe] = 0x86fd, + [0x0cff] = 0x8715, [0x0d00] = 0x45b9, [0x0d01] = 0x8716, [0x0d02] = 0x86ff, + [0x0d03] = 0x45bd, [0x0d04] = 0x45b8, [0x0d05] = 0x4612, [0x0d06] = 0x8858, + [0x0d07] = 0x88cf, [0x0d08] = 0x88e0, [0x0d09] = 0x4680, [0x0d0a] = 0x4681, + [0x0d0b] = 0x469a, [0x0d0c] = 0x4698, [0x0d0d] = 0x89e7, [0x0d0e] = 0x8a6a, + [0x0d0f] = 0x8a80, [0x0d10] = 0x46d4, [0x0d11] = 0x8a6f, [0x0d12] = 0x8a65, + [0x0d13] = 0x46da, [0x0d14] = 0x8a78, [0x0d15] = 0x8a7d, [0x0d16] = 0x8a88, + [0x0d17] = 0x46d6, [0x0d18] = 0x46db, [0x0d19] = 0x8a64, [0x0d1a] = 0x8a7e, + [0x0d1b] = 0x46dc, [0x0d1c] = 0x8a67, [0x0d1d] = 0x8c63, [0x0d1e] = 0x8c88, + [0x0d1f] = 0x4771, [0x0d20] = 0x8ccd, [0x0d21] = 0x4772, [0x0d22] = 0x8cc9, + [0x0d23] = 0x47a8, [0x0d24] = 0x8ded, [0x0d25] = 0x47f0, [0x0d27] = 0x47f1, + [0x0d28] = 0x47fd, [0x0d29] = 0x4838, [0x0d2a] = 0x4837, [0x0d2b] = 0x4839, + [0x0d2c] = 0x8eb1, [0x0d2d] = 0x4855, [0x0d2e] = 0x4853, [0x0d2f] = 0x8f04, + [0x0d30] = 0x8f9e, [0x0d31] = 0x8fa0, [0x0d32] = 0x9043, [0x0d33] = 0x9046, + [0x0d34] = 0x9048, [0x0d35] = 0x9045, [0x0d36] = 0x9040, [0x0d37] = 0x904c, + [0x0d38] = 0x48d5, [0x0d39] = 0x48bd, [0x0d3a] = 0x910c, [0x0d3b] = 0x9113, + [0x0d3c] = 0x9115, [0x0d3d] = 0x48f5, [0x0d3e] = 0x916b, [0x0d3f] = 0x9167, + [0x0d40] = 0x925d, [0x0d41] = 0x9255, [0x0d42] = 0x9235, [0x0d43] = 0x4921, + [0x0d44] = 0x9259, [0x0d45] = 0x922f, [0x0d46] = 0x923c, [0x0d47] = 0x928f, + [0x0d48] = 0x925c, [0x0d49] = 0x926a, [0x0d4a] = 0x9262, [0x0d4b] = 0x925f, + [0x0d4c] = 0x926b, [0x0d4d] = 0x926e, [0x0d4e] = 0x923b, [0x0d4f] = 0x9244, + [0x0d50] = 0x9241, [0x0d51] = 0x959a, [0x0d52] = 0x4992, [0x0d53] = 0x9599, + [0x0d54] = 0x49de, [0x0d55] = 0x49db, [0x0d56] = 0x49da, [0x0d57] = 0x968f, + [0x0d58] = 0x49df, [0x0d59] = 0x9696, [0x0d5a] = 0x49f9, [0x0d5b] = 0x49f8, + [0x0d5c] = 0x49fa, [0x0d5d] = 0x96f4, [0x0d5e] = 0x96fc, [0x0d5f] = 0x4a0e, + [0x0d60] = 0x9755, [0x0d61] = 0x4a43, [0x0d62] = 0x9779, [0x0d63] = 0x4a56, + [0x0d64] = 0x4a53, [0x0d65] = 0x4a9e, [0x0d66] = 0x97ee, [0x0d67] = 0x97f5, + [0x0d68] = 0x4aa9, [0x0d69] = 0x980b, [0x0d6a] = 0x4afa, [0x0d6b] = 0x98f3, + [0x0d6c] = 0x4b31, [0x0d6d] = 0x4b30, [0x0d6e] = 0x98f7, [0x0d6f] = 0x98ff, + [0x0d70] = 0x98f5, [0x0d71] = 0x4b32, [0x0d72] = 0x98ec, [0x0d73] = 0x98f1, + [0x0d74] = 0x4b29, [0x0d75] = 0x4b2e, [0x0d76] = 0x999a, [0x0d77] = 0x4b76, [0x0d78] = 0x9ae2, [0x0d79] = 0x9b3d, [0x0d7a] = 0x9b5d, [0x0d7b] = 0x9ce8, - [0x0d7d] = 0x9ceb, [0x0d7e] = 0x9cef, [0x0d7f] = 0x9cee, [0x0d80] = 0x9e81, - [0x0d81] = 0x9f14, [0x0d82] = 0x50d0, [0x0d83] = 0x50d9, [0x0d84] = 0x50dc, - [0x0d85] = 0x50d8, [0x0d87] = 0x50e1, [0x0d88] = 0x50eb, [0x0d8b] = 0x50f4, - [0x0d8c] = 0x50e2, [0x0d8d] = 0x50de, [0x0d91] = 0x51f4, [0x0d95] = 0x52ed, - [0x0d96] = 0x52ea, [0x0d98] = 0x5332, [0x0d9a] = 0x53ae, [0x0d9b] = 0x53b0, - [0x0d9d] = 0x55fb, [0x0d9e] = 0x5603, [0x0d9f] = 0x560b, [0x0da1] = 0x5607, - [0x0da3] = 0x55f8, [0x0da5] = 0x5628, [0x0da6] = 0x561e, [0x0da8] = 0x5618, - [0x0da9] = 0x5611, [0x0daa] = 0x5651, [0x0dab] = 0x5605, [0x0dac] = 0x5717, - [0x0dad] = 0x5892, [0x0daf] = 0x588c, [0x0db1] = 0x5878, [0x0db2] = 0x5884, - [0x0db3] = 0x5873, [0x0db4] = 0x58ad, [0x0db5] = 0x5897, [0x0db6] = 0x5895, - [0x0db7] = 0x5877, [0x0db8] = 0x5872, [0x0db9] = 0x5896, [0x0dba] = 0x588d, - [0x0dbb] = 0x5910, [0x0dbd] = 0x596c, [0x0dbf] = 0x5ae7, [0x0dc1] = 0x5ae4, - [0x0dc4] = 0x5aef, [0x0dc5] = 0x5626, [0x0dc8] = 0x5af0, [0x0dc9] = 0x5d7b, - [0x0dcb] = 0x5d83, [0x0dce] = 0x5d8b, [0x0dcf] = 0x5d8c, [0x0dd1] = 0x5d78, - [0x0dd2] = 0x5e52, [0x0dd5] = 0x5ed0, [0x0dd6] = 0x5ecf, [0x0dd8] = 0x5fb3, - [0x0dd9] = 0x5fb4, [0x0ddd] = 0x617b, [0x0ddf] = 0x616f, [0x0de0] = 0x6181, - [0x0de1] = 0x613c, [0x0de2] = 0x6142, [0x0de3] = 0x6138, [0x0de4] = 0x6133, - [0x0de6] = 0x6160, [0x0de7] = 0x6169, [0x0de8] = 0x617d, [0x0de9] = 0x6186, - [0x0dea] = 0x622c, [0x0deb] = 0x6228, [0x0ded] = 0x644c, [0x0def] = 0x6457, - [0x0df0] = 0x647c, [0x0df3] = 0x6455, [0x0df4] = 0x6462, [0x0df5] = 0x6471, - [0x0df6] = 0x646a, [0x0df7] = 0x6456, [0x0df8] = 0x643b, [0x0df9] = 0x6481, - [0x0dfb] = 0x644f, [0x0dfc] = 0x647e, [0x0dfd] = 0x6464, [0x0e03] = 0x6571, - [0x0e06] = 0x66a5, [0x0e07] = 0x669a, [0x0e08] = 0x669c, [0x0e0a] = 0x66a6, - [0x0e0c] = 0x66a4, [0x0e0d] = 0x698f, [0x0e0e] = 0x69c5, [0x0e0f] = 0x69c8, - [0x0e10] = 0x6992, [0x0e11] = 0x69b2, [0x0e15] = 0x69e3, [0x0e16] = 0x69c0, - [0x0e17] = 0x69d6, [0x0e18] = 0x69d1, [0x0e19] = 0x699f, [0x0e1a] = 0x69a2, - [0x0e1b] = 0x69d2, [0x0e1f] = 0x69e1, [0x0e20] = 0x69d5, [0x0e21] = 0x699d, - [0x0e24] = 0x6998, [0x0e26] = 0x6b74, [0x0e27] = 0x6ba1, [0x0e29] = 0x6ef0, - [0x0e2a] = 0x6ef3, [0x0e2d] = 0x6f1b, [0x0e2e] = 0x6f0c, [0x0e2f] = 0x6f1d, - [0x0e30] = 0x6f34, [0x0e31] = 0x6f28, [0x0e32] = 0x6f17, [0x0e34] = 0x6f44, + [0x0d7c] = 0x4ca5, [0x0d7d] = 0x9ceb, [0x0d7e] = 0x9cef, [0x0d7f] = 0x9cee, + [0x0d80] = 0x9e81, [0x0d81] = 0x9f14, [0x0d82] = 0x50d0, [0x0d83] = 0x50d9, + [0x0d84] = 0x50dc, [0x0d85] = 0x50d8, [0x0d86] = 0x348c, [0x0d87] = 0x50e1, + [0x0d88] = 0x50eb, [0x0d89] = 0x348b, [0x0d8a] = 0x3489, [0x0d8b] = 0x50f4, + [0x0d8c] = 0x50e2, [0x0d8d] = 0x50de, [0x0d8e] = 0x348d, [0x0d8f] = 0x3486, + [0x0d90] = 0x34d7, [0x0d91] = 0x51f4, [0x0d92] = 0x3504, [0x0d93] = 0x3507, + [0x0d94] = 0x3503, [0x0d95] = 0x52ed, [0x0d96] = 0x52ea, [0x0d97] = 0x3522, + [0x0d98] = 0x5332, [0x0d99] = 0x3551, [0x0d9a] = 0x53ae, [0x0d9b] = 0x53b0, + [0x0d9c] = 0x3561, [0x0d9d] = 0x55fb, [0x0d9e] = 0x5603, [0x0d9f] = 0x560b, + [0x0da0] = 0x35e9, [0x0da1] = 0x5607, [0x0da2] = 0x35e5, [0x0da3] = 0x55f8, + [0x0da4] = 0x35e4, [0x0da5] = 0x5628, [0x0da6] = 0x561e, [0x0da7] = 0x35e3, + [0x0da8] = 0x5618, [0x0da9] = 0x5611, [0x0daa] = 0x5651, [0x0dab] = 0x5605, + [0x0dac] = 0x5717, [0x0dad] = 0x5892, [0x0dae] = 0x3665, [0x0daf] = 0x588c, + [0x0db0] = 0x3663, [0x0db1] = 0x5878, [0x0db2] = 0x5884, [0x0db3] = 0x5873, + [0x0db4] = 0x58ad, [0x0db5] = 0x5897, [0x0db6] = 0x5895, [0x0db7] = 0x5877, + [0x0db8] = 0x5872, [0x0db9] = 0x5896, [0x0dba] = 0x588d, [0x0dbb] = 0x5910, + [0x0dbc] = 0x368c, [0x0dbd] = 0x596c, [0x0dbe] = 0x371a, [0x0dbf] = 0x5ae7, + [0x0dc0] = 0x3715, [0x0dc1] = 0x5ae4, [0x0dc2] = 0x3720, [0x0dc3] = 0x3721, + [0x0dc4] = 0x5aef, [0x0dc5] = 0x5626, [0x0dc6] = 0x371c, [0x0dc7] = 0x371b, + [0x0dc8] = 0x5af0, [0x0dc9] = 0x5d7b, [0x0dca] = 0x37fe, [0x0dcb] = 0x5d83, + [0x0dcc] = 0x3804, [0x0dcd] = 0x3801, [0x0dce] = 0x5d8b, [0x0dcf] = 0x5d8c, + [0x0dd0] = 0x3800, [0x0dd1] = 0x5d78, [0x0dd2] = 0x5e52, [0x0dd3] = 0x386d, + [0x0dd4] = 0x3893, [0x0dd5] = 0x5ed0, [0x0dd6] = 0x5ecf, [0x0dd7] = 0x38a1, + [0x0dd8] = 0x5fb3, [0x0dd9] = 0x5fb4, [0x0dda] = 0x3976, [0x0ddb] = 0x3979, + [0x0ddc] = 0x3972, [0x0ddd] = 0x617b, [0x0dde] = 0x3983, [0x0ddf] = 0x616f, + [0x0de0] = 0x6181, [0x0de1] = 0x613c, [0x0de2] = 0x6142, [0x0de3] = 0x6138, + [0x0de4] = 0x6133, [0x0de6] = 0x6160, [0x0de7] = 0x6169, [0x0de8] = 0x617d, + [0x0de9] = 0x6186, [0x0dea] = 0x622c, [0x0deb] = 0x6228, [0x0dec] = 0x3a38, + [0x0ded] = 0x644c, [0x0dee] = 0x3a30, [0x0def] = 0x6457, [0x0df0] = 0x647c, + [0x0df1] = 0x3a34, [0x0df2] = 0x3a3a, [0x0df3] = 0x6455, [0x0df4] = 0x6462, + [0x0df5] = 0x6471, [0x0df6] = 0x646a, [0x0df7] = 0x6456, [0x0df8] = 0x643b, + [0x0df9] = 0x6481, [0x0dfa] = 0x3a35, [0x0dfb] = 0x644f, [0x0dfc] = 0x647e, + [0x0dfd] = 0x6464, [0x0dfe] = 0x3a3f, [0x0dff] = 0x3a40, [0x0e00] = 0x3a32, + [0x0e01] = 0x3a31, [0x0e02] = 0x3a36, [0x0e03] = 0x6571, [0x0e04] = 0x230ba, + [0x0e05] = 0x3b0f, [0x0e06] = 0x66a5, [0x0e07] = 0x669a, [0x0e08] = 0x669c, + [0x0e09] = 0x3b10, [0x0e0a] = 0x66a6, [0x0e0b] = 0x3b0d, [0x0e0c] = 0x66a4, + [0x0e0d] = 0x698f, [0x0e0e] = 0x69c5, [0x0e0f] = 0x69c8, [0x0e10] = 0x6992, + [0x0e11] = 0x69b2, [0x0e12] = 0x3ba9, [0x0e13] = 0x3bb4, [0x0e14] = 0x3bac, + [0x0e15] = 0x69e3, [0x0e16] = 0x69c0, [0x0e17] = 0x69d6, [0x0e18] = 0x69d1, + [0x0e19] = 0x699f, [0x0e1a] = 0x69a2, [0x0e1b] = 0x69d2, [0x0e1c] = 0x3bb8, + [0x0e1d] = 0x3bae, [0x0e1e] = 0x235f3, [0x0e1f] = 0x69e1, [0x0e20] = 0x69d5, + [0x0e21] = 0x699d, [0x0e22] = 0x3bb3, [0x0e23] = 0x3bba, [0x0e24] = 0x6998, + [0x0e25] = 0x3c3f, [0x0e26] = 0x6b74, [0x0e27] = 0x6ba1, [0x0e28] = 0x3d3c, + [0x0e29] = 0x6ef0, [0x0e2a] = 0x6ef3, [0x0e2b] = 0x3d42, [0x0e2c] = 0x3d40, + [0x0e2d] = 0x6f1b, [0x0e2e] = 0x6f0c, [0x0e2f] = 0x6f1d, [0x0e30] = 0x6f34, + [0x0e31] = 0x6f28, [0x0e32] = 0x6f17, [0x0e33] = 0x3d3e, [0x0e34] = 0x6f44, [0x0e35] = 0x6f42, [0x0e36] = 0x6f04, [0x0e37] = 0x6f11, [0x0e38] = 0x6efa, - [0x0e39] = 0x6f4a, [0x0e3a] = 0x7191, [0x0e3b] = 0x718e, [0x0e3d] = 0x718b, - [0x0e3e] = 0x718d, [0x0e3f] = 0x717f, [0x0e40] = 0x718c, [0x0e41] = 0x717e, - [0x0e42] = 0x717c, [0x0e43] = 0x7183, [0x0e45] = 0x7188, [0x0e48] = 0x7294, - [0x0e4a] = 0x7355, [0x0e4b] = 0x7353, [0x0e4c] = 0x734f, [0x0e4d] = 0x7354, - [0x0e4e] = 0x746c, [0x0e4f] = 0x7465, [0x0e50] = 0x7466, [0x0e51] = 0x7461, - [0x0e52] = 0x746b, [0x0e53] = 0x7468, [0x0e54] = 0x7476, [0x0e56] = 0x7460, - [0x0e58] = 0x7474, [0x0e59] = 0x7506, [0x0e5a] = 0x760e, [0x0e5c] = 0x7607, - [0x0e5f] = 0x76b9, [0x0e61] = 0x76b7, [0x0e62] = 0x76e2, [0x0e64] = 0x7774, - [0x0e65] = 0x7777, [0x0e66] = 0x7776, [0x0e67] = 0x7775, [0x0e69] = 0x7778, - [0x0e6a] = 0x7771, [0x0e6c] = 0x777a, [0x0e6d] = 0x715b, [0x0e6e] = 0x777b, - [0x0e6f] = 0x78a6, [0x0e70] = 0x78ae, [0x0e71] = 0x78b8, [0x0e75] = 0x78b1, - [0x0e76] = 0x78af, [0x0e78] = 0x7989, [0x0e79] = 0x7987, [0x0e7c] = 0x7a29, - [0x0e7e] = 0x7a2a, [0x0e80] = 0x7a2d, [0x0e81] = 0x7a2c, [0x0e83] = 0x7a32, + [0x0e39] = 0x6f4a, [0x0e3a] = 0x7191, [0x0e3b] = 0x718e, [0x0e3c] = 0x3de1, + [0x0e3d] = 0x718b, [0x0e3e] = 0x718d, [0x0e3f] = 0x717f, [0x0e40] = 0x718c, + [0x0e41] = 0x717e, [0x0e42] = 0x717c, [0x0e43] = 0x7183, [0x0e44] = 0x3de6, + [0x0e45] = 0x7188, [0x0e46] = 0x3de0, [0x0e47] = 0x3e15, [0x0e48] = 0x7294, + [0x0e49] = 0x3e93, [0x0e4a] = 0x7355, [0x0e4b] = 0x7353, [0x0e4c] = 0x734f, + [0x0e4d] = 0x7354, [0x0e4e] = 0x746c, [0x0e4f] = 0x7465, [0x0e50] = 0x7466, + [0x0e51] = 0x7461, [0x0e52] = 0x746b, [0x0e53] = 0x7468, [0x0e54] = 0x7476, + [0x0e55] = 0x3ee7, [0x0e56] = 0x7460, [0x0e57] = 0x24a0f, [0x0e58] = 0x7474, + [0x0e59] = 0x7506, [0x0e5a] = 0x760e, [0x0e5b] = 0x3fad, [0x0e5c] = 0x7607, + [0x0e5d] = 0x3fae, [0x0e5e] = 0x3fe3, [0x0e5f] = 0x76b9, [0x0e60] = 0x3ff5, + [0x0e61] = 0x76b7, [0x0e62] = 0x76e2, [0x0e63] = 0x4006, [0x0e64] = 0x7774, + [0x0e65] = 0x7777, [0x0e66] = 0x7776, [0x0e67] = 0x7775, [0x0e68] = 0x404f, + [0x0e69] = 0x7778, [0x0e6a] = 0x7771, [0x0e6b] = 0x4054, [0x0e6c] = 0x777a, + [0x0e6d] = 0x715b, [0x0e6e] = 0x777b, [0x0e6f] = 0x78a6, [0x0e70] = 0x78ae, + [0x0e71] = 0x78b8, [0x0e72] = 0x40cb, [0x0e73] = 0x40e3, [0x0e74] = 0x40c9, + [0x0e75] = 0x78b1, [0x0e76] = 0x78af, [0x0e77] = 0x4113, [0x0e78] = 0x7989, + [0x0e79] = 0x7987, [0x0e7a] = 0x4115, [0x0e7b] = 0x4161, [0x0e7c] = 0x7a29, + [0x0e7d] = 0x4166, [0x0e7e] = 0x7a2a, [0x0e7f] = 0x4164, [0x0e80] = 0x7a2d, + [0x0e81] = 0x7a2c, [0x0e82] = 0x4160, [0x0e83] = 0x7a32, [0x0e84] = 0x4163, [0x0e85] = 0x7aec, [0x0e86] = 0x7af0, [0x0e87] = 0x7b81, [0x0e88] = 0x7b9e, - [0x0e89] = 0x7b83, [0x0e8b] = 0x7b92, [0x0e8d] = 0x7ba3, [0x0e8e] = 0x7b9f, - [0x0e8f] = 0x7b93, [0x0e91] = 0x7b86, [0x0e92] = 0x7cb8, [0x0e93] = 0x7cb7, - [0x0e99] = 0x7dc8, [0x0e9a] = 0x7db6, [0x0e9c] = 0x7dd1, [0x0e9e] = 0x7da8, - [0x0e9f] = 0x7dab, [0x0ea1] = 0x7db3, [0x0ea2] = 0x7dcd, [0x0ea4] = 0x7dcf, - [0x0ea5] = 0x7da4, [0x0ea8] = 0x7f41, [0x0ea9] = 0x7f6f, [0x0eaa] = 0x7f71, - [0x0eb1] = 0x8023, [0x0eb2] = 0x805b, [0x0eb4] = 0x8061, [0x0eb5] = 0x805f, - [0x0eb6] = 0x8181, [0x0eb9] = 0x8184, [0x0eba] = 0x8213, [0x0ebc] = 0x824a, - [0x0ebd] = 0x824c, [0x0ec1] = 0x84bd, [0x0ec2] = 0x8495, [0x0ec4] = 0x8492, - [0x0ec5] = 0x84c3, [0x0ec7] = 0x8496, [0x0ec8] = 0x84a5, [0x0ec9] = 0x84b5, + [0x0e89] = 0x7b83, [0x0e8a] = 0x420a, [0x0e8b] = 0x7b92, [0x0e8c] = 0x4204, + [0x0e8d] = 0x7ba3, [0x0e8e] = 0x7b9f, [0x0e8f] = 0x7b93, [0x0e90] = 0x4207, + [0x0e91] = 0x7b86, [0x0e92] = 0x7cb8, [0x0e93] = 0x7cb7, [0x0e94] = 0x428d, + [0x0e95] = 0x428f, [0x0e96] = 0x4290, [0x0e97] = 0x4292, [0x0e98] = 0x42ec, + [0x0e99] = 0x7dc8, [0x0e9a] = 0x7db6, [0x0e9c] = 0x7dd1, [0x0e9d] = 0x42e7, + [0x0e9e] = 0x7da8, [0x0e9f] = 0x7dab, [0x0ea0] = 0x42f2, [0x0ea1] = 0x7db3, + [0x0ea2] = 0x7dcd, [0x0ea3] = 0x42ee, [0x0ea4] = 0x7dcf, [0x0ea5] = 0x7da4, + [0x0ea6] = 0x42ef, [0x0ea7] = 0x434c, [0x0ea8] = 0x7f41, [0x0ea9] = 0x7f6f, + [0x0eaa] = 0x7f71, [0x0eab] = 0x435e, [0x0eac] = 0x435f, [0x0ead] = 0x4376, + [0x0eae] = 0x4374, [0x0eaf] = 0x4372, [0x0eb0] = 0x4390, [0x0eb1] = 0x8023, + [0x0eb2] = 0x805b, [0x0eb3] = 0x43be, [0x0eb4] = 0x8061, [0x0eb5] = 0x805f, + [0x0eb6] = 0x8181, [0x0eb7] = 0x4426, [0x0eb8] = 0x4425, [0x0eb9] = 0x8184, + [0x0eba] = 0x8213, [0x0ebb] = 0x4474, [0x0ebc] = 0x824a, [0x0ebd] = 0x824c, + [0x0ebe] = 0x44fd, [0x0ebf] = 0x4505, [0x0ec0] = 0x4501, [0x0ec1] = 0x84bd, + [0x0ec2] = 0x8495, [0x0ec3] = 0x4509, [0x0ec4] = 0x8492, [0x0ec5] = 0x84c3, + [0x0ec6] = 0x450c, [0x0ec7] = 0x8496, [0x0ec8] = 0x84a5, [0x0ec9] = 0x84b5, [0x0eca] = 0x84b3, [0x0ecb] = 0x84a3, [0x0ecc] = 0x84e4, [0x0ecd] = 0x84d8, - [0x0ece] = 0x84d5, [0x0ed0] = 0x84b7, [0x0ed1] = 0x84ad, [0x0ed2] = 0x84da, - [0x0ed3] = 0x8493, [0x0ed4] = 0x8736, [0x0ed8] = 0x873d, [0x0ed9] = 0x872b, - [0x0eda] = 0x8747, [0x0edb] = 0x8739, [0x0edd] = 0x8745, [0x0ede] = 0x871d, - [0x0ee0] = 0x88ff, [0x0ee1] = 0x88ea, [0x0ee3] = 0x88f5, [0x0ee5] = 0x8900, - [0x0ee6] = 0x88ed, [0x0ee7] = 0x8903, [0x0ee8] = 0x88e9, [0x0eeb] = 0x89ea, - [0x0eed] = 0x8a9b, [0x0eee] = 0x8a8e, [0x0eef] = 0x8aa2, [0x0ef1] = 0x8a9c, + [0x0ece] = 0x84d5, [0x0ecf] = 0x450d, [0x0ed0] = 0x84b7, [0x0ed1] = 0x84ad, + [0x0ed2] = 0x84da, [0x0ed3] = 0x8493, [0x0ed4] = 0x8736, [0x0ed5] = 0x45c0, + [0x0ed6] = 0x45c5, [0x0ed7] = 0x45c9, [0x0ed8] = 0x873d, [0x0ed9] = 0x872b, + [0x0eda] = 0x8747, [0x0edb] = 0x8739, [0x0edc] = 0x45d5, [0x0edd] = 0x8745, + [0x0ede] = 0x871d, [0x0edf] = 0x4641, [0x0ee0] = 0x88ff, [0x0ee1] = 0x88ea, + [0x0ee2] = 0x4633, [0x0ee3] = 0x88f5, [0x0ee4] = 0x463a, [0x0ee5] = 0x8900, + [0x0ee6] = 0x88ed, [0x0ee7] = 0x8903, [0x0ee8] = 0x88e9, [0x0ee9] = 0x4640, + [0x0eea] = 0x4642, [0x0eeb] = 0x89ea, [0x0eec] = 0x46e8, [0x0eed] = 0x8a9b, + [0x0eee] = 0x8a8e, [0x0eef] = 0x8aa2, [0x0ef0] = 0x46e4, [0x0ef1] = 0x8a9c, [0x0ef2] = 0x8a94, [0x0ef3] = 0x8a90, [0x0ef4] = 0x8aa9, [0x0ef5] = 0x8aac, - [0x0ef7] = 0x8a9f, [0x0efa] = 0x8a9d, [0x0efc] = 0x8c67, [0x0eff] = 0x8cd0, - [0x0f00] = 0x8cd6, [0x0f01] = 0x8cd4, [0x0f02] = 0x8d98, [0x0f03] = 0x8d9a, - [0x0f04] = 0x8d97, [0x0f08] = 0x8e0b, [0x0f09] = 0x8e08, [0x0f0a] = 0x8e01, - [0x0f0b] = 0x8eb4, [0x0f0c] = 0x8eb3, [0x0f0e] = 0x8fa1, [0x0f0f] = 0x8fa2, - [0x0f11] = 0x905a, [0x0f13] = 0x9061, [0x0f14] = 0x905f, [0x0f17] = 0x9125, - [0x0f18] = 0x917b, [0x0f19] = 0x9176, [0x0f1a] = 0x917c, [0x0f1c] = 0x9289, - [0x0f1d] = 0x92f6, [0x0f1e] = 0x92b1, [0x0f1f] = 0x92ad, [0x0f20] = 0x9292, - [0x0f21] = 0x9281, [0x0f22] = 0x9284, [0x0f24] = 0x92ae, [0x0f25] = 0x9290, - [0x0f26] = 0x929e, [0x0f2a] = 0x95a2, [0x0f2b] = 0x95a7, [0x0f31] = 0x96a0, - [0x0f32] = 0x969d, [0x0f33] = 0x969f, [0x0f34] = 0x96d0, [0x0f36] = 0x96d1, - [0x0f39] = 0x9759, [0x0f3b] = 0x9764, [0x0f3f] = 0x9819, [0x0f41] = 0x9814, - [0x0f42] = 0x9815, [0x0f43] = 0x981a, [0x0f48] = 0x9906, [0x0f4a] = 0x98f8, - [0x0f4b] = 0x9901, [0x0f4d] = 0x99be, [0x0f4e] = 0x99bc, [0x0f4f] = 0x99b7, - [0x0f50] = 0x99b6, [0x0f51] = 0x99c0, [0x0f53] = 0x99b8, [0x0f57] = 0x99c4, - [0x0f59] = 0x99bf, [0x0f5b] = 0x9ada, [0x0f5c] = 0x9ae4, [0x0f5d] = 0x9ae9, - [0x0f5e] = 0x9ae8, [0x0f5f] = 0x9aea, [0x0f60] = 0x9ae5, [0x0f62] = 0x9b26, - [0x0f65] = 0x9b40, [0x0f6d] = 0x9ebd, [0x0f72] = 0x510e, [0x0f74] = 0x50f7, + [0x0ef6] = 0x46e7, [0x0ef7] = 0x8a9f, [0x0ef8] = 0x46e6, [0x0ef9] = 0x46e1, + [0x0efa] = 0x8a9d, [0x0efb] = 0x4739, [0x0efc] = 0x8c67, [0x0efd] = 0x475c, + [0x0efe] = 0x4775, [0x0eff] = 0x8cd0, [0x0f00] = 0x8cd6, [0x0f01] = 0x8cd4, + [0x0f02] = 0x8d98, [0x0f03] = 0x8d9a, [0x0f04] = 0x8d97, [0x0f05] = 0x47ae, + [0x0f06] = 0x47b0, [0x0f07] = 0x47fa, [0x0f08] = 0x8e0b, [0x0f09] = 0x8e08, + [0x0f0a] = 0x8e01, [0x0f0b] = 0x8eb4, [0x0f0c] = 0x8eb3, [0x0f0d] = 0x485b, + [0x0f0e] = 0x8fa1, [0x0f0f] = 0x8fa2, [0x0f10] = 0x48a5, [0x0f11] = 0x905a, + [0x0f12] = 0x48a2, [0x0f13] = 0x9061, [0x0f14] = 0x905f, [0x0f15] = 0x48db, + [0x0f16] = 0x48da, [0x0f17] = 0x9125, [0x0f18] = 0x917b, [0x0f19] = 0x9176, + [0x0f1a] = 0x917c, [0x0f1b] = 0x4924, [0x0f1c] = 0x9289, [0x0f1d] = 0x92f6, + [0x0f1e] = 0x92b1, [0x0f1f] = 0x92ad, [0x0f20] = 0x9292, [0x0f21] = 0x9281, + [0x0f22] = 0x9284, [0x0f23] = 0x4926, [0x0f24] = 0x92ae, [0x0f25] = 0x9290, + [0x0f26] = 0x929e, [0x0f27] = 0x4998, [0x0f28] = 0x4996, [0x0f29] = 0x499a, + [0x0f2a] = 0x95a2, [0x0f2b] = 0x95a7, [0x0f2c] = 0x4997, [0x0f2d] = 0x49e1, + [0x0f2e] = 0x49e0, [0x0f2f] = 0x49e3, [0x0f30] = 0x49e2, [0x0f31] = 0x96a0, + [0x0f32] = 0x969d, [0x0f33] = 0x969f, [0x0f34] = 0x96d0, [0x0f35] = 0x49fb, + [0x0f36] = 0x96d1, [0x0f37] = 0x4a12, [0x0f38] = 0x4a14, [0x0f39] = 0x9759, + [0x0f3a] = 0x4a45, [0x0f3b] = 0x9764, [0x0f3c] = 0x4a5c, [0x0f3d] = 0x4a5d, + [0x0f3e] = 0x4ab8, [0x0f3f] = 0x9819, [0x0f40] = 0x4aba, [0x0f41] = 0x9814, + [0x0f42] = 0x9815, [0x0f43] = 0x981a, [0x0f44] = 0x4b03, [0x0f45] = 0x4b35, + [0x0f46] = 0x4b36, [0x0f47] = 0x4b39, [0x0f48] = 0x9906, [0x0f49] = 0x4b2d, + [0x0f4a] = 0x98f8, [0x0f4b] = 0x9901, [0x0f4c] = 0x4b7a, [0x0f4d] = 0x99be, + [0x0f4e] = 0x99bc, [0x0f4f] = 0x99b7, [0x0f50] = 0x99b6, [0x0f51] = 0x99c0, + [0x0f52] = 0x4b78, [0x0f53] = 0x99b8, [0x0f54] = 0x4b7b, [0x0f55] = 0x4b7c, + [0x0f56] = 0x4b7e, [0x0f57] = 0x99c4, [0x0f58] = 0x4b7d, [0x0f59] = 0x99bf, + [0x0f5a] = 0x4bc9, [0x0f5b] = 0x9ada, [0x0f5c] = 0x9ae4, [0x0f5d] = 0x9ae9, + [0x0f5e] = 0x9ae8, [0x0f5f] = 0x9aea, [0x0f60] = 0x9ae5, [0x0f61] = 0x4bf3, + [0x0f62] = 0x9b26, [0x0f63] = 0x4c1a, [0x0f64] = 0x4c19, [0x0f65] = 0x9b40, + [0x0f66] = 0x4c1f, [0x0f67] = 0x4ca6, [0x0f68] = 0x4ca7, [0x0f69] = 0x4ca8, + [0x0f6a] = 0x4cab, [0x0f6b] = 0x4ca9, [0x0f6c] = 0x4d2e, [0x0f6d] = 0x9ebd, + [0x0f6e] = 0x4d5e, [0x0f6f] = 0x3495, [0x0f70] = 0x3493, [0x0f71] = 0x3492, + [0x0f72] = 0x510e, [0x0f73] = 0x3496, [0x0f74] = 0x50f7, [0x0f75] = 0x3497, [0x0f76] = 0x50fc, [0x0f77] = 0x510d, [0x0f78] = 0x5101, [0x0f79] = 0x51da, [0x0f7a] = 0x51d9, [0x0f7b] = 0x51db, [0x0f7c] = 0x5286, [0x0f7d] = 0x528e, - [0x0f7e] = 0x52ee, [0x0f7f] = 0x5333, [0x0f80] = 0x53b1, [0x0f82] = 0x5647, - [0x0f83] = 0x562d, [0x0f84] = 0x5654, [0x0f86] = 0x564b, [0x0f87] = 0x5652, - [0x0f88] = 0x5631, [0x0f89] = 0x5644, [0x0f8a] = 0x5656, [0x0f8b] = 0x5650, - [0x0f8c] = 0x562b, [0x0f8e] = 0x564d, [0x0f8f] = 0x5637, [0x0f90] = 0x564f, - [0x0f91] = 0x58a2, [0x0f92] = 0x58b7, [0x0f94] = 0x58b2, [0x0f96] = 0x58aa, - [0x0f97] = 0x58b5, [0x0f98] = 0x58b0, [0x0f9a] = 0x58b4, [0x0f9b] = 0x58a4, - [0x0f9c] = 0x58a7, [0x0f9e] = 0x5926, [0x0f9f] = 0x5afe, [0x0fa1] = 0x5b04, - [0x0fa3] = 0x5afc, [0x0fa5] = 0x5b06, [0x0fa6] = 0x5b0a, [0x0fa7] = 0x5afa, - [0x0fa8] = 0x5b0d, [0x0fa9] = 0x5b00, [0x0faa] = 0x5b0e, [0x0fae] = 0x5d91, - [0x0fb0] = 0x5d8f, [0x0fb1] = 0x5d90, [0x0fb2] = 0x5d98, [0x0fb3] = 0x5da4, - [0x0fb4] = 0x5d9b, [0x0fb5] = 0x5da3, [0x0fb6] = 0x5d96, [0x0fb7] = 0x5de4, - [0x0fb8] = 0x5e5a, [0x0fbb] = 0x5e5e, [0x0fbd] = 0x5fb8, [0x0fbe] = 0x6157, - [0x0fbf] = 0x615c, [0x0fc0] = 0x61a6, [0x0fc1] = 0x6195, [0x0fc2] = 0x6188, - [0x0fc4] = 0x61a3, [0x0fc5] = 0x618f, [0x0fc7] = 0x6164, [0x0fc9] = 0x6159, - [0x0fca] = 0x6178, [0x0fcc] = 0x6185, [0x0fcd] = 0x6187, [0x0fce] = 0x619e, - [0x0fd1] = 0x6198, [0x0fd2] = 0x619c, [0x0fd5] = 0x622f, [0x0fd6] = 0x6480, - [0x0fd7] = 0x649b, [0x0fd8] = 0x648e, [0x0fd9] = 0x648d, [0x0fda] = 0x6494, - [0x0fdb] = 0x64c6, [0x0fdd] = 0x64a8, [0x0fde] = 0x6483, [0x0fe0] = 0x64b9, - [0x0fe1] = 0x6486, [0x0fe2] = 0x64b4, [0x0fe3] = 0x64af, [0x0fe4] = 0x6491, + [0x0f7e] = 0x52ee, [0x0f7f] = 0x5333, [0x0f80] = 0x53b1, [0x0f81] = 0x35f5, + [0x0f82] = 0x5647, [0x0f83] = 0x562d, [0x0f84] = 0x5654, [0x0f85] = 0x35ea, + [0x0f86] = 0x564b, [0x0f87] = 0x5652, [0x0f88] = 0x5631, [0x0f89] = 0x5644, + [0x0f8a] = 0x5656, [0x0f8b] = 0x5650, [0x0f8c] = 0x562b, [0x0f8d] = 0x35f3, + [0x0f8e] = 0x564d, [0x0f8f] = 0x5637, [0x0f90] = 0x564f, [0x0f91] = 0x58a2, + [0x0f92] = 0x58b7, [0x0f93] = 0x3669, [0x0f94] = 0x58b2, [0x0f95] = 0x366b, + [0x0f96] = 0x58aa, [0x0f97] = 0x58b5, [0x0f98] = 0x58b0, [0x0f99] = 0x366c, + [0x0f9a] = 0x58b4, [0x0f9b] = 0x58a4, [0x0f9c] = 0x58a7, [0x0f9d] = 0x3668, + [0x0f9e] = 0x5926, [0x0f9f] = 0x5afe, [0x0fa0] = 0x3728, [0x0fa1] = 0x5b04, + [0x0fa2] = 0x3726, [0x0fa3] = 0x5afc, [0x0fa4] = 0x3725, [0x0fa5] = 0x5b06, + [0x0fa6] = 0x5b0a, [0x0fa7] = 0x5afa, [0x0fa8] = 0x5b0d, [0x0fa9] = 0x5b00, + [0x0faa] = 0x5b0e, [0x0fab] = 0x376b, [0x0fac] = 0x380f, [0x0fad] = 0x3808, + [0x0fae] = 0x5d91, [0x0faf] = 0x380c, [0x0fb0] = 0x5d8f, [0x0fb1] = 0x5d90, + [0x0fb2] = 0x5d98, [0x0fb3] = 0x5da4, [0x0fb4] = 0x5d9b, [0x0fb5] = 0x5da3, + [0x0fb6] = 0x5d96, [0x0fb7] = 0x5de4, [0x0fb8] = 0x5e5a, [0x0fb9] = 0x3860, + [0x0fba] = 0x3862, [0x0fbb] = 0x5e5e, [0x0fbc] = 0x3898, [0x0fbd] = 0x5fb8, + [0x0fbe] = 0x6157, [0x0fbf] = 0x615c, [0x0fc0] = 0x61a6, [0x0fc1] = 0x6195, + [0x0fc2] = 0x6188, [0x0fc3] = 0x398a, [0x0fc4] = 0x61a3, [0x0fc5] = 0x618f, + [0x0fc6] = 0x3984, [0x0fc7] = 0x6164, [0x0fc8] = 0x397f, [0x0fc9] = 0x6159, + [0x0fca] = 0x6178, [0x0fcb] = 0x3982, [0x0fcc] = 0x6185, [0x0fcd] = 0x6187, + [0x0fce] = 0x619e, [0x0fcf] = 0x3996, [0x0fd0] = 0x3989, [0x0fd1] = 0x6198, + [0x0fd2] = 0x619c, [0x0fd3] = 0x398d, [0x0fd4] = 0x39bc, [0x0fd5] = 0x622f, + [0x0fd6] = 0x6480, [0x0fd7] = 0x649b, [0x0fd8] = 0x648e, [0x0fd9] = 0x648d, + [0x0fda] = 0x6494, [0x0fdb] = 0x64c6, [0x0fdc] = 0x3a44, [0x0fdd] = 0x64a8, + [0x0fde] = 0x6483, [0x0fdf] = 0x3a3c, [0x0fe0] = 0x64b9, [0x0fe1] = 0x6486, + [0x0fe2] = 0x64b4, [0x0fe3] = 0x64af, [0x0fe4] = 0x6491, [0x0fe5] = 0x3a4e, [0x0fe6] = 0x64aa, [0x0fe7] = 0x64a1, [0x0fe8] = 0x64a7, [0x0fe9] = 0x66b6, - [0x0fea] = 0x66b3, [0x0fec] = 0x66bc, [0x0fed] = 0x66ac, [0x0fef] = 0x66ad, - [0x0ff0] = 0x6a0e, [0x0ff2] = 0x6a1c, [0x0ff3] = 0x6a1a, [0x0ff6] = 0x6a0b, - [0x0ff8] = 0x69ef, [0x0ff9] = 0x6a0c, [0x0ffa] = 0x69f0, [0x0ffb] = 0x6a22, - [0x0ffd] = 0x69d8, [0x0fff] = 0x6a12, [0x1000] = 0x69fa, [0x1002] = 0x6a2a, - [0x1004] = 0x6a10, [0x1007] = 0x6a29, [0x1008] = 0x69f9, [0x1009] = 0x69ea, - [0x100a] = 0x6a2c, [0x100b] = 0x6a24, [0x100d] = 0x69e9, [0x100e] = 0x6b52, - [0x100f] = 0x6b4f, [0x1010] = 0x6b53, [0x1013] = 0x6f10, [0x1014] = 0x6f65, - [0x1015] = 0x6f75, [0x101a] = 0x6fd0, [0x101c] = 0x6f5c, [0x101d] = 0x6f3d, - [0x101e] = 0x6f71, [0x1020] = 0x6f91, [0x1021] = 0x6f0b, [0x1022] = 0x6f79, - [0x1023] = 0x6f81, [0x1024] = 0x6f8f, [0x1026] = 0x6f59, [0x1027] = 0x6f74, - [0x1029] = 0x71ae, [0x102b] = 0x71a3, [0x102c] = 0x71ad, [0x102f] = 0x71ab, - [0x1030] = 0x71a6, [0x1031] = 0x71a2, [0x1033] = 0x52f2, [0x1034] = 0x7257, - [0x1035] = 0x7255, [0x1036] = 0x7299, [0x1037] = 0x734b, [0x1038] = 0x747a, - [0x103c] = 0x748c, [0x103d] = 0x7484, [0x1040] = 0x7482, [0x1041] = 0x7493, - [0x1042] = 0x747b, [0x1044] = 0x7509, [0x104b] = 0x778a, [0x104d] = 0x7790, - [0x104f] = 0x78c6, [0x1050] = 0x78d3, [0x1051] = 0x78c0, [0x1052] = 0x78d2, - [0x1053] = 0x78c7, [0x1054] = 0x78c2, [0x1056] = 0x799f, [0x1057] = 0x799d, - [0x1058] = 0x799e, [0x105a] = 0x7a41, [0x105c] = 0x7a38, [0x105d] = 0x7a3a, - [0x105e] = 0x7a42, [0x1061] = 0x7a3e, [0x1062] = 0x7ab0, [0x1063] = 0x7bae, - [0x1064] = 0x7bb3, [0x1067] = 0x7bbf, [0x106a] = 0x7bcd, [0x106c] = 0x7bb2, - [0x1074] = 0x7cc4, [0x1075] = 0x7ccd, [0x1076] = 0x7cc2, [0x1077] = 0x7cc6, - [0x1078] = 0x7cc3, [0x1079] = 0x7cc9, [0x107a] = 0x7cc7, [0x107c] = 0x7df8, - [0x107e] = 0x7ded, [0x107f] = 0x7de2, [0x1083] = 0x7ddc, [0x1084] = 0x7e02, - [0x1085] = 0x7e01, [0x1087] = 0x7dd6, [0x1089] = 0x7de4, [0x108a] = 0x7dfe, - [0x108c] = 0x7e00, [0x108d] = 0x7dfc, [0x108e] = 0x7dfd, [0x1090] = 0x7df5, - [0x1091] = 0x7dff, [0x1093] = 0x7deb, [0x1094] = 0x7de5, [0x1095] = 0x7f78, - [0x1096] = 0x7fae, [0x1097] = 0x7fe7, [0x1099] = 0x8065, [0x109a] = 0x806a, - [0x109b] = 0x8066, [0x109c] = 0x8068, [0x109d] = 0x806b, [0x109e] = 0x8194, - [0x109f] = 0x81a1, [0x10a0] = 0x8192, [0x10a1] = 0x8196, [0x10a2] = 0x8193, - [0x10a5] = 0x8501, [0x10a7] = 0x84f8, [0x10a9] = 0x84f5, [0x10ab] = 0x8504, - [0x10b0] = 0x851b, [0x10b1] = 0x8503, [0x10b2] = 0x8533, [0x10b3] = 0x8534, - [0x10b4] = 0x84ed, [0x10b7] = 0x8535, [0x10b9] = 0x8505, [0x10be] = 0x877d, - [0x10c2] = 0x8771, [0x10c4] = 0x885c, [0x10c5] = 0x88e6, [0x10c6] = 0x890f, - [0x10c7] = 0x891b, [0x10c9] = 0x89a9, [0x10ca] = 0x89a5, [0x10cb] = 0x89ee, - [0x10cc] = 0x8ab1, [0x10ce] = 0x8acc, [0x10cf] = 0x8ace, [0x10d1] = 0x8ab7, - [0x10d3] = 0x8ab5, [0x10d4] = 0x8ae9, [0x10d5] = 0x8ab4, [0x10d7] = 0x8ab3, - [0x10d8] = 0x8ac1, [0x10d9] = 0x8aaf, [0x10da] = 0x8aca, [0x10db] = 0x8ad0, - [0x10df] = 0x8c8e, [0x10e2] = 0x8ce9, [0x10e3] = 0x8cdb, [0x10e5] = 0x8ceb, - [0x10e6] = 0x8da4, [0x10e8] = 0x8da2, [0x10e9] = 0x8d9d, [0x10ee] = 0x8e2a, - [0x10ef] = 0x8e28, [0x10f2] = 0x8eb8, [0x10f3] = 0x8eb6, [0x10f4] = 0x8eb9, - [0x10f5] = 0x8eb7, [0x10f6] = 0x8f22, [0x10f7] = 0x8f2b, [0x10f8] = 0x8f27, - [0x10f9] = 0x8f19, [0x10fa] = 0x8fa4, [0x10fc] = 0x8fb3, [0x10fe] = 0x9071, - [0x10ff] = 0x906a, [0x1102] = 0x9188, [0x1103] = 0x918c, [0x1104] = 0x92bf, - [0x1105] = 0x92b8, [0x1106] = 0x92be, [0x1107] = 0x92dc, [0x1108] = 0x92e5, - [0x110b] = 0x92d4, [0x110c] = 0x92d6, [0x110e] = 0x92da, [0x110f] = 0x92ed, - [0x1110] = 0x92f3, [0x1111] = 0x92db, [0x1113] = 0x92b9, [0x1114] = 0x92e2, - [0x1115] = 0x92eb, [0x1116] = 0x95af, [0x1118] = 0x95b2, [0x1119] = 0x95b3, - [0x111d] = 0x96a3, [0x111e] = 0x96a5, [0x1123] = 0x970a, [0x1125] = 0x9787, + [0x0fea] = 0x66b3, [0x0feb] = 0x3b14, [0x0fec] = 0x66bc, [0x0fed] = 0x66ac, + [0x0fee] = 0x3b15, [0x0fef] = 0x66ad, [0x0ff0] = 0x6a0e, [0x0ff1] = 0x3bce, + [0x0ff2] = 0x6a1c, [0x0ff3] = 0x6a1a, [0x0ff4] = 0x3be0, [0x0ff5] = 0x3bc2, + [0x0ff6] = 0x6a0b, [0x0ff7] = 0x3bbf, [0x0ff8] = 0x69ef, [0x0ff9] = 0x6a0c, + [0x0ffa] = 0x69f0, [0x0ffb] = 0x6a22, [0x0ffc] = 0x3bc4, [0x0ffd] = 0x69d8, + [0x0ffe] = 0x3bcf, [0x0fff] = 0x6a12, [0x1000] = 0x69fa, [0x1001] = 0x3bc8, + [0x1002] = 0x6a2a, [0x1003] = 0x3bcc, [0x1004] = 0x6a10, [0x1005] = 0x3bcd, + [0x1006] = 0x3bc7, [0x1007] = 0x6a29, [0x1008] = 0x69f9, [0x1009] = 0x69ea, + [0x100a] = 0x6a2c, [0x100b] = 0x6a24, [0x100c] = 0x4cb7, [0x100d] = 0x69e9, + [0x100e] = 0x6b52, [0x100f] = 0x6b4f, [0x1010] = 0x6b53, [0x1011] = 0x3c43, + [0x1012] = 0x3cb6, [0x1013] = 0x6f10, [0x1014] = 0x6f65, [0x1015] = 0x6f75, + [0x1016] = 0x3d51, [0x1017] = 0x3d4a, [0x1018] = 0x3d4d, [0x1019] = 0x3d56, + [0x101a] = 0x6fd0, [0x101b] = 0x3d53, [0x101c] = 0x6f5c, [0x101d] = 0x6f3d, + [0x101e] = 0x6f71, [0x101f] = 0x3d59, [0x1020] = 0x6f91, [0x1021] = 0x6f0b, + [0x1022] = 0x6f79, [0x1023] = 0x6f81, [0x1024] = 0x6f8f, [0x1025] = 0x3d4e, + [0x1026] = 0x6f59, [0x1027] = 0x6f74, [0x1028] = 0x3dee, [0x1029] = 0x71ae, + [0x102a] = 0x3dec, [0x102b] = 0x71a3, [0x102c] = 0x71ad, [0x102d] = 0x3deb, + [0x102e] = 0x3def, [0x102f] = 0x71ab, [0x1030] = 0x71a6, [0x1031] = 0x71a2, + [0x1032] = 0x3ded, [0x1033] = 0x52f2, [0x1034] = 0x7257, [0x1035] = 0x7255, + [0x1036] = 0x7299, [0x1037] = 0x734b, [0x1038] = 0x747a, [0x1039] = 0x3ef2, + [0x103a] = 0x3eef, [0x103b] = 0x3ef1, [0x103c] = 0x748c, [0x103d] = 0x7484, + [0x103e] = 0x3eed, [0x103f] = 0x3ef0, [0x1040] = 0x7482, [0x1041] = 0x7493, + [0x1042] = 0x747b, [0x1043] = 0x3eee, [0x1044] = 0x7509, [0x1045] = 0x4c1b, + [0x1046] = 0x3f50, [0x1047] = 0x3f66, [0x1048] = 0x3684, [0x1049] = 0x3fb8, + [0x104a] = 0x3ff6, [0x104b] = 0x778a, [0x104c] = 0x4057, [0x104d] = 0x7790, + [0x104e] = 0x405e, [0x104f] = 0x78c6, [0x1050] = 0x78d3, [0x1051] = 0x78c0, + [0x1052] = 0x78d2, [0x1053] = 0x78c7, [0x1054] = 0x78c2, [0x1055] = 0x4119, + [0x1056] = 0x799f, [0x1057] = 0x799d, [0x1058] = 0x799e, [0x1059] = 0x4170, + [0x105a] = 0x7a41, [0x105b] = 0x416e, [0x105c] = 0x7a38, [0x105d] = 0x7a3a, + [0x105e] = 0x7a42, [0x105f] = 0x4172, [0x1060] = 0x4176, [0x1061] = 0x7a3e, + [0x1062] = 0x7ab0, [0x1063] = 0x7bae, [0x1064] = 0x7bb3, [0x1065] = 0x4212, + [0x1066] = 0x421f, [0x1067] = 0x7bbf, [0x1068] = 0x4211, [0x1069] = 0x4216, + [0x106a] = 0x7bcd, [0x106b] = 0x4219, [0x106c] = 0x7bb2, [0x106d] = 0x4224, + [0x106e] = 0x4214, [0x106f] = 0x4225, [0x1070] = 0x4295, [0x1071] = 0x4296, + [0x1072] = 0x4293, [0x1073] = 0x4294, [0x1074] = 0x7cc4, [0x1075] = 0x7ccd, + [0x1076] = 0x7cc2, [0x1077] = 0x7cc6, [0x1078] = 0x7cc3, [0x1079] = 0x7cc9, + [0x107a] = 0x7cc7, [0x107b] = 0x42a0, [0x107c] = 0x7df8, [0x107d] = 0x42fb, + [0x107e] = 0x7ded, [0x107f] = 0x7de2, [0x1080] = 0x42fc, [0x1081] = 0x4300, + [0x1082] = 0x42f8, [0x1083] = 0x7ddc, [0x1084] = 0x7e02, [0x1085] = 0x7e01, + [0x1086] = 0x42f9, [0x1087] = 0x7dd6, [0x1088] = 0x4304, [0x1089] = 0x7de4, + [0x108a] = 0x7dfe, [0x108b] = 0x4303, [0x108c] = 0x7e00, [0x108d] = 0x7dfc, + [0x108e] = 0x7dfd, [0x108f] = 0x42f3, [0x1090] = 0x7df5, [0x1091] = 0x7dff, + [0x1092] = 0x42fa, [0x1093] = 0x7deb, [0x1094] = 0x7de5, [0x1095] = 0x7f78, + [0x1096] = 0x7fae, [0x1097] = 0x7fe7, [0x1098] = 0x43bf, [0x1099] = 0x8065, + [0x109a] = 0x806a, [0x109b] = 0x8066, [0x109c] = 0x8068, [0x109d] = 0x806b, + [0x109e] = 0x8194, [0x109f] = 0x81a1, [0x10a0] = 0x8192, [0x10a1] = 0x8196, + [0x10a2] = 0x8193, [0x10a3] = 0x4479, [0x10a4] = 0x4510, [0x10a5] = 0x8501, + [0x10a6] = 0x4514, [0x10a7] = 0x84f8, [0x10a8] = 0x450e, [0x10a9] = 0x84f5, + [0x10aa] = 0x451a, [0x10ab] = 0x8504, [0x10ac] = 0x4519, [0x10ad] = 0x4521, + [0x10ae] = 0x4523, [0x10af] = 0x451f, [0x10b0] = 0x851b, [0x10b1] = 0x8503, + [0x10b2] = 0x8533, [0x10b3] = 0x8534, [0x10b4] = 0x84ed, [0x10b5] = 0x4525, + [0x10b6] = 0x452b, [0x10b7] = 0x8535, [0x10b8] = 0x4516, [0x10b9] = 0x8505, + [0x10ba] = 0x4522, [0x10bb] = 0x451b, [0x10bc] = 0x45ce, [0x10bd] = 0x45cf, + [0x10be] = 0x877d, [0x10bf] = 0x45cb, [0x10c0] = 0x45d1, [0x10c1] = 0x45cc, + [0x10c2] = 0x8771, [0x10c3] = 0x4617, [0x10c4] = 0x885c, [0x10c5] = 0x88e6, + [0x10c6] = 0x890f, [0x10c7] = 0x891b, [0x10c8] = 0x4651, [0x10c9] = 0x89a9, + [0x10ca] = 0x89a5, [0x10cb] = 0x89ee, [0x10cc] = 0x8ab1, [0x10cd] = 0x46ed, + [0x10ce] = 0x8acc, [0x10cf] = 0x8ace, [0x10d0] = 0x46f4, [0x10d1] = 0x8ab7, + [0x10d2] = 0x46f1, [0x10d3] = 0x8ab5, [0x10d4] = 0x8ae9, [0x10d5] = 0x8ab4, + [0x10d6] = 0x46f8, [0x10d7] = 0x8ab3, [0x10d8] = 0x8ac1, [0x10d9] = 0x8aaf, + [0x10da] = 0x8aca, [0x10db] = 0x8ad0, [0x10dc] = 0x472f, [0x10dd] = 0x475e, + [0x10de] = 0x475d, [0x10df] = 0x8c8e, [0x10e0] = 0x4776, [0x10e1] = 0x4777, + [0x10e2] = 0x8ce9, [0x10e3] = 0x8cdb, [0x10e4] = 0x477e, [0x10e5] = 0x8ceb, + [0x10e6] = 0x8da4, [0x10e7] = 0x47b6, [0x10e8] = 0x8da2, [0x10e9] = 0x8d9d, + [0x10ea] = 0x47b3, [0x10eb] = 0x47fc, [0x10ec] = 0x4803, [0x10ed] = 0x4800, + [0x10ee] = 0x8e2a, [0x10ef] = 0x8e28, [0x10f0] = 0x480a, [0x10f1] = 0x4802, + [0x10f2] = 0x8eb8, [0x10f3] = 0x8eb6, [0x10f4] = 0x8eb9, [0x10f5] = 0x8eb7, + [0x10f6] = 0x8f22, [0x10f7] = 0x8f2b, [0x10f8] = 0x8f27, [0x10f9] = 0x8f19, + [0x10fa] = 0x8fa4, [0x10fb] = 0x4887, [0x10fc] = 0x8fb3, [0x10fd] = 0x48a6, + [0x10fe] = 0x9071, [0x10ff] = 0x906a, [0x1100] = 0x48a9, [0x1101] = 0x48de, + [0x1102] = 0x9188, [0x1103] = 0x918c, [0x1104] = 0x92bf, [0x1105] = 0x92b8, + [0x1106] = 0x92be, [0x1107] = 0x92dc, [0x1108] = 0x92e5, [0x1109] = 0x492e, + [0x110a] = 0x492d, [0x110b] = 0x92d4, [0x110c] = 0x92d6, [0x110d] = 0x4930, + [0x110e] = 0x92da, [0x110f] = 0x92ed, [0x1110] = 0x92f3, [0x1111] = 0x92db, + [0x1112] = 0x492b, [0x1113] = 0x92b9, [0x1114] = 0x92e2, [0x1115] = 0x92eb, + [0x1116] = 0x95af, [0x1117] = 0x499e, [0x1118] = 0x95b2, [0x1119] = 0x95b3, + [0x111a] = 0x499f, [0x111b] = 0x49e5, [0x111c] = 0x49e4, [0x111d] = 0x96a3, + [0x111e] = 0x96a5, [0x111f] = 0x49fd, [0x1120] = 0x49fc, [0x1121] = 0x4a17, + [0x1122] = 0x4a19, [0x1123] = 0x970a, [0x1124] = 0x4a18, [0x1125] = 0x9787, [0x1126] = 0x9789, [0x1127] = 0x978c, [0x1128] = 0x97ef, [0x1129] = 0x982a, - [0x112a] = 0x9822, [0x112c] = 0x981f, [0x112e] = 0x9919, [0x1130] = 0x99ca, - [0x1131] = 0x99da, [0x1135] = 0x99de, [0x1136] = 0x99c8, [0x1137] = 0x99e0, - [0x1139] = 0x9ab6, [0x113a] = 0x9ab5, [0x113c] = 0x9af4, [0x113e] = 0x9b6b, - [0x113f] = 0x9b69, [0x1140] = 0x9b72, [0x1141] = 0x9b63, [0x1143] = 0x9d0d, - [0x1145] = 0x9d01, [0x1146] = 0x9d0c, [0x1148] = 0x9cf8, [0x114b] = 0x9cfe, - [0x114c] = 0x9d02, [0x114d] = 0x9e84, [0x114f] = 0x9eab, [0x1150] = 0x9eaa, - [0x1151] = 0x511d, [0x1152] = 0x5116, [0x1154] = 0x512b, [0x1155] = 0x511e, + [0x112a] = 0x9822, [0x112b] = 0x4abf, [0x112c] = 0x981f, [0x112d] = 0x4b3c, + [0x112e] = 0x9919, [0x112f] = 0x4b6b, [0x1130] = 0x99ca, [0x1131] = 0x99da, + [0x1132] = 0x4b83, [0x1133] = 0x4b81, [0x1134] = 0x4b80, [0x1135] = 0x99de, + [0x1136] = 0x99c8, [0x1137] = 0x99e0, [0x1138] = 0x4bca, [0x1139] = 0x9ab6, + [0x113a] = 0x9ab5, [0x113b] = 0x4bce, [0x113c] = 0x9af4, [0x113d] = 0x4bf6, + [0x113e] = 0x9b6b, [0x113f] = 0x9b69, [0x1140] = 0x9b72, [0x1141] = 0x9b63, + [0x1142] = 0x4c39, [0x1143] = 0x9d0d, [0x1144] = 0x4cae, [0x1145] = 0x9d01, + [0x1146] = 0x9d0c, [0x1147] = 0x4cb5, [0x1148] = 0x9cf8, [0x1149] = 0x4cb3, + [0x114a] = 0x4cb4, [0x114b] = 0x9cfe, [0x114c] = 0x9d02, [0x114d] = 0x9e84, + [0x114e] = 0x4d22, [0x114f] = 0x9eab, [0x1150] = 0x9eaa, [0x1151] = 0x511d, + [0x1152] = 0x5116, [0x1153] = 0x3499, [0x1154] = 0x512b, [0x1155] = 0x511e, [0x1156] = 0x511b, [0x1157] = 0x5290, [0x1158] = 0x5294, [0x1159] = 0x5314, - [0x115c] = 0x5667, [0x115e] = 0x567b, [0x1160] = 0x565f, [0x1161] = 0x5661, - [0x1169] = 0x58c3, [0x116a] = 0x58ca, [0x116b] = 0x58bb, [0x116c] = 0x58c0, - [0x116d] = 0x58c4, [0x116e] = 0x5901, [0x116f] = 0x5b1f, [0x1170] = 0x5b18, - [0x1171] = 0x5b11, [0x1172] = 0x5b15, [0x1174] = 0x5b12, [0x1175] = 0x5b1c, - [0x1177] = 0x5b22, [0x1178] = 0x5b79, [0x1179] = 0x5da6, [0x117b] = 0x5db3, - [0x117c] = 0x5dab, [0x117d] = 0x5eea, [0x117f] = 0x5f5b, [0x1182] = 0x61b7, - [0x1183] = 0x61ce, [0x1184] = 0x61b9, [0x1185] = 0x61bd, [0x1186] = 0x61cf, - [0x1187] = 0x61c0, [0x1188] = 0x6199, [0x1189] = 0x6197, [0x118b] = 0x61bb, - [0x118c] = 0x61d0, [0x118d] = 0x61c4, [0x118e] = 0x6231, [0x1190] = 0x64d3, - [0x1191] = 0x64c0, [0x1196] = 0x64dc, [0x1197] = 0x64d1, [0x1198] = 0x64c8, - [0x119a] = 0x64d5, [0x119b] = 0x66c3, [0x119e] = 0x66bf, [0x119f] = 0x66c5, - [0x11a1] = 0x66cd, [0x11a2] = 0x66c1, [0x11a3] = 0x6706, [0x11a5] = 0x6724, - [0x11a6] = 0x6a63, [0x11a7] = 0x6a42, [0x11a8] = 0x6a52, [0x11aa] = 0x6a43, - [0x11ab] = 0x6a33, [0x11ad] = 0x6a6c, [0x11ae] = 0x6a57, [0x11b0] = 0x6a4c, - [0x11b1] = 0x6a6e, [0x11b7] = 0x6a37, [0x11b9] = 0x6a71, [0x11ba] = 0x6a4a, - [0x11bb] = 0x6a36, [0x11bd] = 0x6a53, [0x11bf] = 0x6a45, [0x11c0] = 0x6a70, - [0x11c3] = 0x6a5c, [0x11c4] = 0x6b58, [0x11c5] = 0x6b57, [0x11cc] = 0x6fbb, - [0x11cf] = 0x6fbe, [0x11d3] = 0x6fb5, [0x11d4] = 0x6fd3, [0x11d5] = 0x6f9f, - [0x11d7] = 0x6fb7, [0x11d8] = 0x6ff5, [0x11d9] = 0x71b7, [0x11db] = 0x71bb, - [0x11dd] = 0x71d1, [0x11df] = 0x71ba, [0x11e1] = 0x71b6, [0x11e2] = 0x71cc, - [0x11e5] = 0x71d3, [0x11e6] = 0x749b, [0x11e9] = 0x7496, [0x11ea] = 0x74a2, - [0x11eb] = 0x749d, [0x11ec] = 0x750a, [0x11ed] = 0x750e, [0x11ef] = 0x7581, - [0x11f0] = 0x762c, [0x11f1] = 0x7637, [0x11f2] = 0x7636, [0x11f3] = 0x763b, - [0x11f5] = 0x76a1, [0x11f8] = 0x7798, [0x11fa] = 0x7796, [0x11fe] = 0x78d6, - [0x11ff] = 0x78eb, [0x1201] = 0x78dc, [0x1203] = 0x79a5, [0x1204] = 0x79a9, - [0x1205] = 0x9834, [0x1206] = 0x7a53, [0x1207] = 0x7a45, [0x1209] = 0x7a4f, - [0x120b] = 0x7abd, [0x120c] = 0x7abb, [0x120d] = 0x7af1, [0x1210] = 0x7bec, - [0x1211] = 0x7bed, [0x1214] = 0x7cd3, [0x1216] = 0x7ce1, [0x1218] = 0x7e19, - [0x121c] = 0x7e27, [0x121d] = 0x7e26, [0x1220] = 0x806e, [0x1221] = 0x81af, - [0x1224] = 0x81ad, [0x1226] = 0x81aa, [0x1227] = 0x8218, [0x122c] = 0x856f, - [0x122d] = 0x854c, [0x122f] = 0x8542, [0x1231] = 0x855c, [0x1232] = 0x8570, - [0x1233] = 0x855f, [0x1235] = 0x855a, [0x1236] = 0x854b, [0x1237] = 0x853f, - [0x1238] = 0x878a, [0x123a] = 0x878b, [0x123b] = 0x87a1, [0x123c] = 0x878e, - [0x123f] = 0x8799, [0x1240] = 0x885e, [0x1241] = 0x885f, [0x1242] = 0x8924, - [0x1243] = 0x89a7, [0x1244] = 0x8aea, [0x1245] = 0x8afd, [0x1246] = 0x8af9, - [0x1247] = 0x8ae3, [0x1248] = 0x8ae5, [0x124b] = 0x8aec, [0x1250] = 0x8cf2, - [0x1252] = 0x8cef, [0x1254] = 0x8da6, [0x1258] = 0x8e3b, [0x1259] = 0x8e43, - [0x125b] = 0x8e32, [0x125c] = 0x8f31, [0x125d] = 0x8f30, [0x125f] = 0x8f2d, - [0x1260] = 0x8f3c, [0x1261] = 0x8fa7, [0x1262] = 0x8fa5, [0x1266] = 0x9137, - [0x1267] = 0x9195, [0x1268] = 0x918e, [0x126a] = 0x9196, [0x126c] = 0x9345, - [0x126d] = 0x930a, [0x1270] = 0x92fd, [0x1271] = 0x9317, [0x1272] = 0x931c, - [0x1273] = 0x9307, [0x1274] = 0x9331, [0x1275] = 0x9332, [0x1276] = 0x932c, - [0x1277] = 0x9330, [0x1278] = 0x9303, [0x1279] = 0x9305, [0x127b] = 0x95c2, - [0x127d] = 0x95b8, [0x127f] = 0x95c1, [0x1283] = 0x96ab, [0x1284] = 0x96b7, - [0x1287] = 0x9715, [0x1288] = 0x9714, [0x128b] = 0x970c, [0x128c] = 0x9717, - [0x128e] = 0x9793, [0x1290] = 0x97d2, [0x1293] = 0x9836, [0x1294] = 0x9831, - [0x1295] = 0x9833, [0x1296] = 0x983c, [0x1297] = 0x982e, [0x1298] = 0x983a, - [0x129a] = 0x983d, [0x129c] = 0x98b5, [0x129d] = 0x9922, [0x129e] = 0x9923, - [0x129f] = 0x9920, [0x12a0] = 0x991c, [0x12a1] = 0x991d, [0x12a3] = 0x99a0, - [0x12a5] = 0x99ef, [0x12a6] = 0x99e8, [0x12a7] = 0x99eb, [0x12ab] = 0x99e1, - [0x12ac] = 0x99e6, [0x12af] = 0x9af8, [0x12b0] = 0x9af5, [0x12b3] = 0x9b83, - [0x12b4] = 0x9b94, [0x12b5] = 0x9b84, [0x12b7] = 0x9b8b, [0x12b8] = 0x9b8f, - [0x12ba] = 0x9b8c, [0x12bc] = 0x9b89, [0x12be] = 0x9b8e, [0x12c2] = 0x9d24, - [0x12c3] = 0x9d0f, [0x12c5] = 0x9d13, [0x12c6] = 0x9d0a, [0x12cb] = 0x9d2a, - [0x12cc] = 0x9d1a, [0x12ce] = 0x9d27, [0x12cf] = 0x9d16, [0x12d0] = 0x9d21, + [0x115a] = 0x20b89, [0x115b] = 0x3602, [0x115c] = 0x5667, [0x115d] = 0x3601, + [0x115e] = 0x567b, [0x115f] = 0x36a1, [0x1160] = 0x565f, [0x1161] = 0x5661, + [0x1162] = 0x35fd, [0x1163] = 0x3673, [0x1164] = 0x3674, [0x1165] = 0x3670, + [0x1166] = 0x3676, [0x1167] = 0x3675, [0x1168] = 0x3672, [0x1169] = 0x58c3, + [0x116a] = 0x58ca, [0x116b] = 0x58bb, [0x116c] = 0x58c0, [0x116d] = 0x58c4, + [0x116e] = 0x5901, [0x116f] = 0x5b1f, [0x1170] = 0x5b18, [0x1171] = 0x5b11, + [0x1172] = 0x5b15, [0x1173] = 0x3729, [0x1174] = 0x5b12, [0x1175] = 0x5b1c, + [0x1176] = 0x372a, [0x1177] = 0x5b22, [0x1178] = 0x5b79, [0x1179] = 0x5da6, + [0x117a] = 0x3816, [0x117b] = 0x5db3, [0x117c] = 0x5dab, [0x117d] = 0x5eea, + [0x117e] = 0x3899, [0x117f] = 0x5f5b, [0x1180] = 0x38d3, [0x1181] = 0x38f5, + [0x1182] = 0x61b7, [0x1183] = 0x61ce, [0x1184] = 0x61b9, [0x1185] = 0x61bd, + [0x1186] = 0x61cf, [0x1187] = 0x61c0, [0x1188] = 0x6199, [0x1189] = 0x6197, + [0x118a] = 0x3994, [0x118b] = 0x61bb, [0x118c] = 0x61d0, [0x118d] = 0x61c4, + [0x118e] = 0x6231, [0x118f] = 0x3a56, [0x1190] = 0x64d3, [0x1191] = 0x64c0, + [0x1192] = 0x3a59, [0x1193] = 0x3a58, [0x1194] = 0x3a55, [0x1195] = 0x3a52, + [0x1196] = 0x64dc, [0x1197] = 0x64d1, [0x1198] = 0x64c8, [0x1199] = 0x3a57, + [0x119a] = 0x64d5, [0x119b] = 0x66c3, [0x119c] = 0x3b1b, [0x119d] = 0x3b1c, + [0x119e] = 0x66bf, [0x119f] = 0x66c5, [0x11a0] = 0x3b19, [0x11a1] = 0x66cd, + [0x11a2] = 0x66c1, [0x11a3] = 0x6706, [0x11a4] = 0x3b3f, [0x11a5] = 0x6724, + [0x11a6] = 0x6a63, [0x11a7] = 0x6a42, [0x11a8] = 0x6a52, [0x11a9] = 0x3bdb, + [0x11aa] = 0x6a43, [0x11ab] = 0x6a33, [0x11ac] = 0x3be2, [0x11ad] = 0x6a6c, + [0x11ae] = 0x6a57, [0x11af] = 0x3bd7, [0x11b0] = 0x6a4c, [0x11b1] = 0x6a6e, + [0x11b2] = 0x3bde, [0x11b3] = 0x3be5, [0x11b4] = 0x3be4, [0x11b5] = 0x3be6, + [0x11b6] = 0x3bd6, [0x11b7] = 0x6a37, [0x11b8] = 0x3bdf, [0x11b9] = 0x6a71, + [0x11ba] = 0x6a4a, [0x11bb] = 0x6a36, [0x11bc] = 0x3bdc, [0x11bd] = 0x6a53, + [0x11be] = 0x3bda, [0x11bf] = 0x6a45, [0x11c0] = 0x6a70, [0x11c1] = 0x3bd3, + [0x11c2] = 0x3bd0, [0x11c3] = 0x6a5c, [0x11c4] = 0x6b58, [0x11c5] = 0x6b57, + [0x11c6] = 0x3c86, [0x11c7] = 0x3c87, [0x11c8] = 0x3cad, [0x11c9] = 0x3cb7, + [0x11ca] = 0x3d58, [0x11cb] = 0x3d6a, [0x11cc] = 0x6fbb, [0x11cd] = 0x3d62, + [0x11ce] = 0x3d61, [0x11cf] = 0x6fbe, [0x11d0] = 0x3d69, [0x11d1] = 0x3d6c, + [0x11d2] = 0x3d65, [0x11d3] = 0x6fb5, [0x11d4] = 0x6fd3, [0x11d5] = 0x6f9f, + [0x11d6] = 0x3d66, [0x11d7] = 0x6fb7, [0x11d8] = 0x6ff5, [0x11d9] = 0x71b7, + [0x11da] = 0x3df5, [0x11db] = 0x71bb, [0x11dc] = 0x3df4, [0x11dd] = 0x71d1, + [0x11de] = 0x3df7, [0x11df] = 0x71ba, [0x11e0] = 0x3df8, [0x11e1] = 0x71b6, + [0x11e2] = 0x71cc, [0x11e3] = 0x3dfb, [0x11e4] = 0x3dfc, [0x11e5] = 0x71d3, + [0x11e6] = 0x749b, [0x11e7] = 0x3ef5, [0x11e8] = 0x3ef8, [0x11e9] = 0x7496, + [0x11ea] = 0x74a2, [0x11eb] = 0x749d, [0x11ec] = 0x750a, [0x11ed] = 0x750e, + [0x11ee] = 0x3f3c, [0x11ef] = 0x7581, [0x11f0] = 0x762c, [0x11f1] = 0x7637, + [0x11f2] = 0x7636, [0x11f3] = 0x763b, [0x11f4] = 0x3fc5, [0x11f5] = 0x76a1, + [0x11f6] = 0x4062, [0x11f7] = 0x4063, [0x11f8] = 0x7798, [0x11f9] = 0x4067, + [0x11fa] = 0x7796, [0x11fb] = 0x4066, [0x11fc] = 0x40d9, [0x11fd] = 0x40db, + [0x11fe] = 0x78d6, [0x11ff] = 0x78eb, [0x1200] = 0x40d8, [0x1201] = 0x78dc, + [0x1202] = 0x411b, [0x1203] = 0x79a5, [0x1204] = 0x79a9, [0x1205] = 0x9834, + [0x1206] = 0x7a53, [0x1207] = 0x7a45, [0x1208] = 0x4179, [0x1209] = 0x7a4f, + [0x120a] = 0x417d, [0x120b] = 0x7abd, [0x120c] = 0x7abb, [0x120d] = 0x7af1, + [0x120e] = 0x422c, [0x120f] = 0x4237, [0x1210] = 0x7bec, [0x1211] = 0x7bed, + [0x1212] = 0x4230, [0x1213] = 0x429a, [0x1214] = 0x7cd3, [0x1215] = 0x4a00, + [0x1216] = 0x7ce1, [0x1217] = 0x4305, [0x1218] = 0x7e19, [0x1219] = 0x4307, + [0x121a] = 0x4309, [0x121b] = 0x430a, [0x121c] = 0x7e27, [0x121d] = 0x7e26, + [0x121e] = 0x4379, [0x121f] = 0x43c2, [0x1220] = 0x806e, [0x1221] = 0x81af, + [0x1222] = 0x4438, [0x1223] = 0x4437, [0x1224] = 0x81ad, [0x1225] = 0x4421, + [0x1226] = 0x81aa, [0x1227] = 0x8218, [0x1228] = 0x445e, [0x1229] = 0x453d, + [0x122a] = 0x4537, [0x122b] = 0x4540, [0x122c] = 0x856f, [0x122d] = 0x854c, + [0x122e] = 0x451d, [0x122f] = 0x8542, [0x1230] = 0x4533, [0x1231] = 0x855c, + [0x1232] = 0x8570, [0x1233] = 0x855f, [0x1234] = 0x4535, [0x1235] = 0x855a, + [0x1236] = 0x854b, [0x1237] = 0x853f, [0x1238] = 0x878a, [0x1239] = 0x45d8, + [0x123a] = 0x878b, [0x123b] = 0x87a1, [0x123c] = 0x878e, [0x123d] = 0x45dc, + [0x123e] = 0x45de, [0x123f] = 0x8799, [0x1240] = 0x885e, [0x1241] = 0x885f, + [0x1242] = 0x8924, [0x1243] = 0x89a7, [0x1244] = 0x8aea, [0x1245] = 0x8afd, + [0x1246] = 0x8af9, [0x1247] = 0x8ae3, [0x1248] = 0x8ae5, [0x1249] = 0x46fa, + [0x124a] = 0x46fb, [0x124b] = 0x8aec, [0x124c] = 0x473d, [0x124d] = 0x473b, + [0x124e] = 0x473f, [0x124f] = 0x475f, [0x1250] = 0x8cf2, [0x1251] = 0x477f, + [0x1252] = 0x8cef, [0x1253] = 0x4784, [0x1254] = 0x8da6, [0x1255] = 0x47bc, + [0x1256] = 0x4814, [0x1257] = 0x480f, [0x1258] = 0x8e3b, [0x1259] = 0x8e43, + [0x125a] = 0x480e, [0x125b] = 0x8e32, [0x125c] = 0x8f31, [0x125d] = 0x8f30, + [0x125e] = 0x4860, [0x125f] = 0x8f2d, [0x1260] = 0x8f3c, [0x1261] = 0x8fa7, + [0x1262] = 0x8fa5, [0x1263] = 0x48ab, [0x1264] = 0x48ac, [0x1265] = 0x48aa, + [0x1266] = 0x9137, [0x1267] = 0x9195, [0x1268] = 0x918e, [0x1269] = 0x4904, + [0x126a] = 0x9196, [0x126b] = 0x4908, [0x126c] = 0x9345, [0x126d] = 0x930a, + [0x126e] = 0x4933, [0x126f] = 0x4934, [0x1270] = 0x92fd, [0x1271] = 0x9317, + [0x1272] = 0x931c, [0x1273] = 0x9307, [0x1274] = 0x9331, [0x1275] = 0x9332, + [0x1276] = 0x932c, [0x1277] = 0x9330, [0x1278] = 0x9303, [0x1279] = 0x9305, + [0x127a] = 0x49a2, [0x127b] = 0x95c2, [0x127c] = 0x49a4, [0x127d] = 0x95b8, + [0x127e] = 0x49a5, [0x127f] = 0x95c1, [0x1280] = 0x49a7, [0x1281] = 0x49a6, + [0x1282] = 0x49e7, [0x1283] = 0x96ab, [0x1284] = 0x96b7, [0x1285] = 0x49ff, + [0x1286] = 0x49fe, [0x1287] = 0x9715, [0x1288] = 0x9714, [0x1289] = 0x4a1d, + [0x128a] = 0x4a1c, [0x128b] = 0x970c, [0x128c] = 0x9717, [0x128d] = 0x4a67, + [0x128e] = 0x9793, [0x128f] = 0x4a94, [0x1290] = 0x97d2, [0x1291] = 0x4ac5, + [0x1292] = 0x4ac8, [0x1293] = 0x9836, [0x1294] = 0x9831, [0x1295] = 0x9833, + [0x1296] = 0x983c, [0x1297] = 0x982e, [0x1298] = 0x983a, [0x1299] = 0x4ac9, + [0x129a] = 0x983d, [0x129b] = 0x4ac7, [0x129c] = 0x98b5, [0x129d] = 0x9922, + [0x129e] = 0x9923, [0x129f] = 0x9920, [0x12a0] = 0x991c, [0x12a1] = 0x991d, + [0x12a2] = 0x4b6c, [0x12a3] = 0x99a0, [0x12a4] = 0x4b8a, [0x12a5] = 0x99ef, + [0x12a6] = 0x99e8, [0x12a7] = 0x99eb, [0x12a8] = 0x4b88, [0x12a9] = 0x4b87, + [0x12aa] = 0x4b86, [0x12ab] = 0x99e1, [0x12ac] = 0x99e6, [0x12ad] = 0x4bcf, + [0x12ae] = 0x4bd0, [0x12af] = 0x9af8, [0x12b0] = 0x9af5, [0x12b1] = 0x4c1c, + [0x12b2] = 0x4c23, [0x12b3] = 0x9b83, [0x12b4] = 0x9b94, [0x12b5] = 0x9b84, + [0x12b6] = 0x4c49, [0x12b7] = 0x9b8b, [0x12b8] = 0x9b8f, [0x12b9] = 0x4c43, + [0x12ba] = 0x9b8c, [0x12bb] = 0x4c48, [0x12bc] = 0x9b89, [0x12bd] = 0x4c47, + [0x12be] = 0x9b8e, [0x12bf] = 0x4c46, [0x12c0] = 0x4c3f, [0x12c1] = 0x4c44, + [0x12c2] = 0x9d24, [0x12c3] = 0x9d0f, [0x12c4] = 0x4cbe, [0x12c5] = 0x9d13, + [0x12c6] = 0x9d0a, [0x12c7] = 0x4cc2, [0x12c8] = 0x4cba, [0x12c9] = 0x4cbc, + [0x12ca] = 0x4cc6, [0x12cb] = 0x9d2a, [0x12cc] = 0x9d1a, [0x12cd] = 0x4cc8, + [0x12ce] = 0x9d27, [0x12cf] = 0x9d16, [0x12d0] = 0x9d21, [0x12d1] = 0x4d23, [0x12d2] = 0x9e85, [0x12d3] = 0x9eac, [0x12d4] = 0x9ec6, [0x12d5] = 0x9ec5, - [0x12d6] = 0x9ed7, [0x12d7] = 0x9f53, [0x12d9] = 0x5128, [0x12da] = 0x5127, - [0x12db] = 0x51df, [0x12dd] = 0x5335, [0x12de] = 0x53b3, [0x12e0] = 0x568a, - [0x12e1] = 0x567d, [0x12e2] = 0x5689, [0x12e4] = 0x58cd, [0x12e5] = 0x58d0, - [0x12e7] = 0x5b2b, [0x12e8] = 0x5b33, [0x12e9] = 0x5b29, [0x12ea] = 0x5b35, - [0x12eb] = 0x5b31, [0x12ec] = 0x5b37, [0x12ed] = 0x5c36, [0x12ee] = 0x5dbe, - [0x12f0] = 0x5db9, [0x12f2] = 0x5dbb, [0x12f4] = 0x61e2, [0x12f5] = 0x61db, + [0x12d6] = 0x9ed7, [0x12d7] = 0x9f53, [0x12d8] = 0x349d, [0x12d9] = 0x5128, + [0x12da] = 0x5127, [0x12db] = 0x51df, [0x12dc] = 0x3524, [0x12dd] = 0x5335, + [0x12de] = 0x53b3, [0x12df] = 0x3607, [0x12e0] = 0x568a, [0x12e1] = 0x567d, + [0x12e2] = 0x5689, [0x12e3] = 0x3679, [0x12e4] = 0x58cd, [0x12e5] = 0x58d0, + [0x12e6] = 0x3678, [0x12e7] = 0x5b2b, [0x12e8] = 0x5b33, [0x12e9] = 0x5b29, + [0x12ea] = 0x5b35, [0x12eb] = 0x5b31, [0x12ec] = 0x5b37, [0x12ed] = 0x5c36, + [0x12ee] = 0x5dbe, [0x12ef] = 0x3819, [0x12f0] = 0x5db9, [0x12f1] = 0x381c, + [0x12f2] = 0x5dbb, [0x12f3] = 0x3818, [0x12f4] = 0x61e2, [0x12f5] = 0x61db, [0x12f6] = 0x61dd, [0x12f7] = 0x61dc, [0x12f8] = 0x61da, [0x12fa] = 0x61d9, - [0x12fd] = 0x64df, [0x1300] = 0x64e1, [0x1302] = 0x64ee, [0x1304] = 0x65b5, - [0x1305] = 0x66d4, [0x1306] = 0x66d5, [0x1308] = 0x66d0, [0x1309] = 0x66d1, - [0x130a] = 0x66ce, [0x130b] = 0x66d7, [0x130e] = 0x6a7d, [0x130f] = 0x6a8a, - [0x1311] = 0x6aa7, [0x1313] = 0x6a99, [0x1314] = 0x6a82, [0x1315] = 0x6a88, - [0x1318] = 0x6a86, [0x131a] = 0x6a98, [0x131b] = 0x6a9d, [0x131e] = 0x6a8f, - [0x1320] = 0x6aaa, [0x1322] = 0x6b5d, [0x1324] = 0x6c0a, [0x1326] = 0x6fd7, - [0x1327] = 0x6fd6, [0x1328] = 0x6fe5, [0x132c] = 0x6fd9, [0x132d] = 0x6fda, - [0x132e] = 0x6fea, [0x1330] = 0x6ff6, [0x1333] = 0x71e3, [0x1335] = 0x71e9, + [0x12fb] = 0x39bd, [0x12fc] = 0x3a5d, [0x12fd] = 0x64df, [0x12fe] = 0x3a5a, + [0x12ff] = 0x3a5e, [0x1300] = 0x64e1, [0x1301] = 0x3a5c, [0x1302] = 0x64ee, + [0x1303] = 0x3a5b, [0x1304] = 0x65b5, [0x1305] = 0x66d4, [0x1306] = 0x66d5, + [0x1307] = 0x3b21, [0x1308] = 0x66d0, [0x1309] = 0x66d1, [0x130a] = 0x66ce, + [0x130b] = 0x66d7, [0x130c] = 0x3b20, [0x130d] = 0x3b32, [0x130e] = 0x6a7d, + [0x130f] = 0x6a8a, [0x1310] = 0x3bf2, [0x1311] = 0x6aa7, [0x1312] = 0x3bf5, + [0x1313] = 0x6a99, [0x1314] = 0x6a82, [0x1315] = 0x6a88, [0x1316] = 0x3bee, + [0x1317] = 0x3bec, [0x1318] = 0x6a86, [0x1319] = 0x3bea, [0x131a] = 0x6a98, + [0x131b] = 0x6a9d, [0x131c] = 0x3bed, [0x131d] = 0x3bf3, [0x131e] = 0x6a8f, + [0x131f] = 0x3bf6, [0x1320] = 0x6aaa, [0x1321] = 0x3c48, [0x1322] = 0x6b5d, + [0x1323] = 0x3c49, [0x1324] = 0x6c0a, [0x1325] = 0x3d75, [0x1326] = 0x6fd7, + [0x1327] = 0x6fd6, [0x1328] = 0x6fe5, [0x1329] = 0x3d6f, [0x132a] = 0x3d7b, + [0x132b] = 0x3d73, [0x132c] = 0x6fd9, [0x132d] = 0x6fda, [0x132e] = 0x6fea, + [0x132f] = 0x3d70, [0x1330] = 0x6ff6, [0x1331] = 0x24039, [0x1332] = 0x3d78, + [0x1333] = 0x71e3, [0x1334] = 0x3dfe, [0x1335] = 0x71e9, [0x1336] = 0x3e00, [0x1337] = 0x71eb, [0x1338] = 0x71ef, [0x1339] = 0x71f3, [0x133a] = 0x71ea, - [0x1340] = 0x7371, [0x1342] = 0x74ae, [0x1344] = 0x74b3, [0x1346] = 0x74ac, - [0x1349] = 0x7583, [0x134a] = 0x7645, [0x134b] = 0x764e, [0x134c] = 0x7644, - [0x134d] = 0x76a3, [0x134e] = 0x76a5, [0x134f] = 0x77a6, [0x1350] = 0x77a4, - [0x1352] = 0x77a9, [0x1353] = 0x77af, [0x1357] = 0x78f0, [0x1358] = 0x78f8, - [0x1359] = 0x78f1, [0x135b] = 0x7a49, [0x135f] = 0x7ac2, [0x1360] = 0x7af2, - [0x1361] = 0x7af3, [0x1362] = 0x7bfa, [0x1364] = 0x7bf6, [0x1365] = 0x7bfc, - [0x1366] = 0x7c18, [0x1367] = 0x7c08, [0x1368] = 0x7c12, [0x136b] = 0x7cdb, - [0x136c] = 0x7cda, [0x1370] = 0x7e2c, [0x1371] = 0x7e4d, [0x1374] = 0x7f46, - [0x1375] = 0x7ff6, [0x1376] = 0x802b, [0x1377] = 0x8074, [0x1378] = 0x81b8, - [0x1379] = 0x81c8, [0x137d] = 0x8592, [0x137e] = 0x8593, [0x1380] = 0x857f, - [0x1381] = 0x85ab, [0x1382] = 0x8597, [0x1385] = 0x85ac, [0x1389] = 0x87ce, - [0x138b] = 0x87cd, [0x138e] = 0x87c1, [0x138f] = 0x87b1, [0x1390] = 0x87c7, - [0x1392] = 0x8940, [0x1394] = 0x893f, [0x1395] = 0x8939, [0x1397] = 0x8943, - [0x139b] = 0x89ab, [0x139d] = 0x8b1f, [0x139e] = 0x8b09, [0x139f] = 0x8b0c, - [0x13a2] = 0x8c40, [0x13a4] = 0x8c96, [0x13a6] = 0x8cf6, [0x13a7] = 0x8cf7, - [0x13a9] = 0x8e46, [0x13aa] = 0x8e4f, [0x13ae] = 0x8f3d, [0x13af] = 0x8f41, + [0x133b] = 0x3e01, [0x133d] = 0x3e55, [0x133e] = 0x3e56, [0x133f] = 0x3e9d, + [0x1340] = 0x7371, [0x1341] = 0x3ef9, [0x1342] = 0x74ae, [0x1343] = 0x3eff, + [0x1344] = 0x74b3, [0x1345] = 0x3efd, [0x1346] = 0x74ac, [0x1347] = 0x3f43, + [0x1348] = 0x3f41, [0x1349] = 0x7583, [0x134a] = 0x7645, [0x134b] = 0x764e, + [0x134c] = 0x7644, [0x134d] = 0x76a3, [0x134e] = 0x76a5, [0x134f] = 0x77a6, + [0x1350] = 0x77a4, [0x1351] = 0x406f, [0x1352] = 0x77a9, [0x1353] = 0x77af, + [0x1354] = 0x408a, [0x1355] = 0x40e5, [0x1356] = 0x40e6, [0x1357] = 0x78f0, + [0x1358] = 0x78f8, [0x1359] = 0x78f1, [0x135a] = 0x417f, [0x135b] = 0x7a49, + [0x135c] = 0x41b5, [0x135d] = 0x41b6, [0x135e] = 0x41bb, [0x135f] = 0x7ac2, + [0x1360] = 0x7af2, [0x1361] = 0x7af3, [0x1362] = 0x7bfa, [0x1363] = 0x4240, + [0x1364] = 0x7bf6, [0x1365] = 0x7bfc, [0x1366] = 0x7c18, [0x1367] = 0x7c08, + [0x1368] = 0x7c12, [0x1369] = 0x429d, [0x136a] = 0x429c, [0x136b] = 0x7cdb, + [0x136c] = 0x7cda, [0x136d] = 0x430f, [0x136e] = 0x4311, [0x136f] = 0x430d, + [0x1370] = 0x7e2c, [0x1371] = 0x7e4d, [0x1372] = 0x4314, [0x1373] = 0x4313, + [0x1374] = 0x7f46, [0x1375] = 0x7ff6, [0x1376] = 0x802b, [0x1377] = 0x8074, + [0x1378] = 0x81b8, [0x1379] = 0x81c8, [0x137a] = 0x4482, [0x137b] = 0x4483, + [0x137c] = 0x454d, [0x137d] = 0x8592, [0x137e] = 0x8593, [0x137f] = 0x454f, + [0x1380] = 0x857f, [0x1381] = 0x85ab, [0x1382] = 0x8597, [0x1383] = 0x454c, + [0x1384] = 0x4551, [0x1385] = 0x85ac, [0x1386] = 0x45ee, [0x1387] = 0x45e8, + [0x1388] = 0x4ccb, [0x1389] = 0x87ce, [0x138a] = 0x45eb, [0x138b] = 0x87cd, + [0x138c] = 0x45e2, [0x138d] = 0x45e6, [0x138e] = 0x87c1, [0x138f] = 0x87b1, + [0x1390] = 0x87c7, [0x1391] = 0x45ec, [0x1392] = 0x8940, [0x1393] = 0x4659, + [0x1394] = 0x893f, [0x1395] = 0x8939, [0x1396] = 0x465d, [0x1397] = 0x8943, + [0x1398] = 0x4657, [0x1399] = 0x465b, [0x139a] = 0x4656, [0x139b] = 0x89ab, + [0x139c] = 0x46fe, [0x139d] = 0x8b1f, [0x139e] = 0x8b09, [0x139f] = 0x8b0c, + [0x13a0] = 0x4700, [0x13a1] = 0x4701, [0x13a2] = 0x8c40, [0x13a3] = 0x4742, + [0x13a4] = 0x8c96, [0x13a5] = 0x4760, [0x13a6] = 0x8cf6, [0x13a7] = 0x8cf7, + [0x13a8] = 0x481d, [0x13a9] = 0x8e46, [0x13aa] = 0x8e4f, [0x13ab] = 0x483e, + [0x13ac] = 0x4869, [0x13ad] = 0x4865, [0x13ae] = 0x8f3d, [0x13af] = 0x8f41, [0x13b0] = 0x9366, [0x13b1] = 0x9378, [0x13b2] = 0x935d, [0x13b3] = 0x9369, [0x13b4] = 0x9374, [0x13b5] = 0x937d, [0x13b6] = 0x936e, [0x13b7] = 0x9372, [0x13b8] = 0x9373, [0x13b9] = 0x9362, [0x13ba] = 0x9348, [0x13bb] = 0x9353, - [0x13bc] = 0x935f, [0x13bd] = 0x9368, [0x13bf] = 0x937f, [0x13c0] = 0x936b, - [0x13c2] = 0x95c4, [0x13c4] = 0x96af, [0x13c5] = 0x96ad, [0x13c6] = 0x96b2, - [0x13c9] = 0x971a, [0x13ca] = 0x971b, [0x13cf] = 0x979b, [0x13d0] = 0x979f, - [0x13d9] = 0x9840, [0x13db] = 0x9847, [0x13dd] = 0x98b7, [0x13e3] = 0x99a2, - [0x13e6] = 0x9a00, [0x13e7] = 0x99f3, [0x13ea] = 0x99f5, [0x13ed] = 0x9abd, - [0x13ee] = 0x9b00, [0x13ef] = 0x9b02, [0x13f1] = 0x9b34, [0x13f2] = 0x9b49, - [0x13f3] = 0x9b9f, [0x13f5] = 0x9ba3, [0x13f6] = 0x9bcd, [0x13f7] = 0x9b99, - [0x13f8] = 0x9b9d, [0x13fb] = 0x9d39, [0x13fd] = 0x9d44, [0x1400] = 0x9d35, - [0x1403] = 0x9eaf, [0x1405] = 0x512f, [0x1408] = 0x9f8e, [0x140a] = 0x569f, - [0x140b] = 0x569b, [0x140c] = 0x569e, [0x140d] = 0x5696, [0x140e] = 0x5694, - [0x140f] = 0x56a0, [0x1411] = 0x5b3b, [0x1414] = 0x5b3a, [0x1415] = 0x5dc1, - [0x1416] = 0x5f4d, [0x1417] = 0x5f5d, [0x1418] = 0x61f3, [0x141d] = 0x64f6, - [0x141e] = 0x64e5, [0x141f] = 0x64ea, [0x1420] = 0x64e7, [0x1421] = 0x6505, - [0x1423] = 0x64f9, [0x1427] = 0x6aab, [0x1428] = 0x6aed, [0x1429] = 0x6ab2, - [0x142a] = 0x6ab0, [0x142b] = 0x6ab5, [0x142c] = 0x6abe, [0x142d] = 0x6ac1, - [0x142e] = 0x6ac8, [0x1430] = 0x6ac0, [0x1431] = 0x6abc, [0x1432] = 0x6ab1, - [0x1433] = 0x6ac4, [0x1434] = 0x6abf, [0x1437] = 0x7008, [0x1438] = 0x7003, + [0x13bc] = 0x935f, [0x13bd] = 0x9368, [0x13be] = 0x4938, [0x13bf] = 0x937f, + [0x13c0] = 0x936b, [0x13c1] = 0x49ae, [0x13c2] = 0x95c4, [0x13c3] = 0x49ad, + [0x13c4] = 0x96af, [0x13c5] = 0x96ad, [0x13c6] = 0x96b2, [0x13c7] = 0x4a02, + [0x13c8] = 0x4a1f, [0x13c9] = 0x971a, [0x13ca] = 0x971b, [0x13cb] = 0x4a22, + [0x13cc] = 0x4a20, [0x13ce] = 0x4a6c, [0x13cf] = 0x979b, [0x13d0] = 0x979f, + [0x13d1] = 0x4a68, [0x13d2] = 0x4a6d, [0x13d3] = 0x4a6e, [0x13d4] = 0x4aa0, + [0x13d5] = 0x4ace, [0x13d6] = 0x4ad0, [0x13d7] = 0x4ad1, [0x13d8] = 0x4acb, + [0x13d9] = 0x9840, [0x13da] = 0x4ad2, [0x13db] = 0x9847, [0x13dc] = 0x4ad3, + [0x13dd] = 0x98b7, [0x13de] = 0x4b20, [0x13df] = 0x4b4e, [0x13e0] = 0x4b4b, + [0x13e1] = 0x4b72, [0x13e2] = 0x4b70, [0x13e3] = 0x99a2, [0x13e4] = 0x4b92, + [0x13e5] = 0x4b8f, [0x13e6] = 0x9a00, [0x13e7] = 0x99f3, [0x13e8] = 0x4b90, + [0x13e9] = 0x29937, [0x13ea] = 0x99f5, [0x13eb] = 0x4bd9, [0x13ec] = 0x4bd5, + [0x13ed] = 0x9abd, [0x13ee] = 0x9b00, [0x13ef] = 0x9b02, [0x13f0] = 0x4bfa, + [0x13f1] = 0x9b34, [0x13f2] = 0x9b49, [0x13f3] = 0x9b9f, [0x13f4] = 0x4c4b, + [0x13f5] = 0x9ba3, [0x13f6] = 0x9bcd, [0x13f7] = 0x9b99, [0x13f8] = 0x9b9d, + [0x13f9] = 0x4cd0, [0x13fa] = 0x4cce, [0x13fb] = 0x9d39, [0x13fc] = 0x4ccf, + [0x13fd] = 0x9d44, [0x13fe] = 0x4cc4, [0x13ff] = 0x4ccc, [0x1400] = 0x9d35, + [0x1401] = 0x4cd2, [0x1402] = 0x4d35, [0x1403] = 0x9eaf, [0x1404] = 0x3e03, + [0x1405] = 0x512f, [0x1406] = 0x349e, [0x1407] = 0x34af, [0x1408] = 0x9f8e, + [0x1409] = 0x360c, [0x140a] = 0x569f, [0x140b] = 0x569b, [0x140c] = 0x569e, + [0x140d] = 0x5696, [0x140e] = 0x5694, [0x140f] = 0x56a0, [0x1410] = 0x367c, + [0x1411] = 0x5b3b, [0x1412] = 0x3730, [0x1413] = 0x3731, [0x1414] = 0x5b3a, + [0x1415] = 0x5dc1, [0x1416] = 0x5f4d, [0x1417] = 0x5f5d, [0x1418] = 0x61f3, + [0x1419] = 0x39a1, [0x141a] = 0x399e, [0x141b] = 0x3a68, [0x141c] = 0x3a61, + [0x141d] = 0x64f6, [0x141e] = 0x64e5, [0x141f] = 0x64ea, [0x1420] = 0x64e7, + [0x1421] = 0x6505, [0x1422] = 0x3a65, [0x1423] = 0x64f9, [0x1424] = 0x3a66, + [0x1425] = 0x3a6a, [0x1426] = 0x3aab, [0x1427] = 0x6aab, [0x1428] = 0x6aed, + [0x1429] = 0x6ab2, [0x142a] = 0x6ab0, [0x142b] = 0x6ab5, [0x142c] = 0x6abe, + [0x142d] = 0x6ac1, [0x142e] = 0x6ac8, [0x142f] = 0x3bf9, [0x1430] = 0x6ac0, + [0x1431] = 0x6abc, [0x1432] = 0x6ab1, [0x1433] = 0x6ac4, [0x1434] = 0x6abf, + [0x1435] = 0x3c58, [0x1436] = 0x3c8a, [0x1437] = 0x7008, [0x1438] = 0x7003, [0x1439] = 0x6ffd, [0x143a] = 0x7010, [0x143b] = 0x7002, [0x143c] = 0x7013, - [0x143e] = 0x71fa, [0x143f] = 0x7200, [0x1440] = 0x74b9, [0x1441] = 0x74bc, - [0x1443] = 0x765b, [0x1444] = 0x7651, [0x1445] = 0x764f, [0x1446] = 0x76eb, - [0x1447] = 0x77b8, [0x1449] = 0x77b9, [0x144a] = 0x77c1, [0x144b] = 0x77c0, - [0x144c] = 0x77be, [0x144d] = 0x790b, [0x144f] = 0x7907, [0x1450] = 0x790a, - [0x1451] = 0x7908, [0x1453] = 0x790d, [0x1454] = 0x7906, [0x1455] = 0x7915, - [0x1456] = 0x79af, [0x145a] = 0x7af5, [0x145d] = 0x7c2e, [0x145f] = 0x7c1b, - [0x1461] = 0x7c1a, [0x1462] = 0x7c24, [0x1465] = 0x7ce6, [0x1466] = 0x7ce3, + [0x143d] = 0x3e04, [0x143e] = 0x71fa, [0x143f] = 0x7200, [0x1440] = 0x74b9, + [0x1441] = 0x74bc, [0x1442] = 0x3f02, [0x1443] = 0x765b, [0x1444] = 0x7651, + [0x1445] = 0x764f, [0x1446] = 0x76eb, [0x1447] = 0x77b8, [0x1448] = 0x4079, + [0x1449] = 0x77b9, [0x144a] = 0x77c1, [0x144b] = 0x77c0, [0x144c] = 0x77be, + [0x144d] = 0x790b, [0x144e] = 0x40eb, [0x144f] = 0x7907, [0x1450] = 0x790a, + [0x1451] = 0x7908, [0x1452] = 0x40e9, [0x1453] = 0x790d, [0x1454] = 0x7906, + [0x1455] = 0x7915, [0x1456] = 0x79af, [0x1457] = 0x4120, [0x1458] = 0x4121, + [0x1459] = 0x4181, [0x145a] = 0x7af5, [0x145b] = 0x424d, [0x145c] = 0x4259, + [0x145d] = 0x7c2e, [0x145e] = 0x4258, [0x145f] = 0x7c1b, [0x1460] = 0x25cd1, + [0x1461] = 0x7c1a, [0x1462] = 0x7c24, [0x1463] = 0x42a5, [0x1464] = 0x42a9, + [0x1465] = 0x7ce6, [0x1466] = 0x7ce3, [0x1467] = 0x431a, [0x1468] = 0x4319, [0x1469] = 0x7e5d, [0x146a] = 0x7e4f, [0x146b] = 0x7e66, [0x146c] = 0x7e5b, - [0x146d] = 0x7f47, [0x146e] = 0x7fb4, [0x1472] = 0x7ffa, [0x1473] = 0x802e, - [0x1476] = 0x81ce, [0x1479] = 0x8219, [0x147c] = 0x85cc, [0x147d] = 0x85b2, - [0x147f] = 0x85bb, [0x1480] = 0x85c1, [0x1484] = 0x87e9, [0x1485] = 0x87ee, - [0x1486] = 0x87f0, [0x1487] = 0x87d6, [0x1488] = 0x880e, [0x1489] = 0x87da, - [0x148a] = 0x8948, [0x148b] = 0x894a, [0x148c] = 0x894e, [0x148d] = 0x894d, - [0x148e] = 0x89b1, [0x148f] = 0x89b0, [0x1490] = 0x89b3, [0x1492] = 0x8b38, - [0x1493] = 0x8b32, [0x1495] = 0x8b2d, [0x1497] = 0x8b34, [0x1499] = 0x8b29, - [0x149a] = 0x8c74, [0x149d] = 0x8d03, [0x14a0] = 0x8da9, [0x14a1] = 0x8e58, - [0x14a4] = 0x8ebf, [0x14a5] = 0x8ec1, [0x14a6] = 0x8f4a, [0x14a7] = 0x8fac, + [0x146d] = 0x7f47, [0x146e] = 0x7fb4, [0x146f] = 0x4396, [0x1470] = 0x4398, + [0x1471] = 0x4397, [0x1472] = 0x7ffa, [0x1473] = 0x802e, [0x1474] = 0x265df, + [0x1475] = 0x43c8, [0x1476] = 0x81ce, [0x1477] = 0x4443, [0x1478] = 0x4445, + [0x1479] = 0x8219, [0x147a] = 0x4552, [0x147b] = 0x4557, [0x147c] = 0x85cc, + [0x147d] = 0x85b2, [0x147e] = 0x4555, [0x147f] = 0x85bb, [0x1480] = 0x85c1, + [0x1481] = 0x4556, [0x1482] = 0x4558, [0x1483] = 0x45f2, [0x1484] = 0x87e9, + [0x1485] = 0x87ee, [0x1486] = 0x87f0, [0x1487] = 0x87d6, [0x1488] = 0x880e, + [0x1489] = 0x87da, [0x148a] = 0x8948, [0x148b] = 0x894a, [0x148c] = 0x894e, + [0x148d] = 0x894d, [0x148e] = 0x89b1, [0x148f] = 0x89b0, [0x1490] = 0x89b3, + [0x1491] = 0x4707, [0x1492] = 0x8b38, [0x1493] = 0x8b32, [0x1494] = 0x4708, + [0x1495] = 0x8b2d, [0x1496] = 0x470a, [0x1497] = 0x8b34, [0x1498] = 0x431b, + [0x1499] = 0x8b29, [0x149a] = 0x8c74, [0x149b] = 0x4761, [0x149c] = 0x4762, + [0x149d] = 0x8d03, [0x149e] = 0x47c2, [0x149f] = 0x47c6, [0x14a0] = 0x8da9, + [0x14a1] = 0x8e58, [0x14a2] = 0x481e, [0x14a3] = 0x4825, [0x14a4] = 0x8ebf, + [0x14a5] = 0x8ec1, [0x14a6] = 0x8f4a, [0x14a7] = 0x8fac, [0x14a8] = 0x48b0, [0x14a9] = 0x9089, [0x14aa] = 0x913d, [0x14ab] = 0x913c, [0x14ac] = 0x91a9, - [0x14ad] = 0x93a0, [0x14af] = 0x9390, [0x14b1] = 0x9393, [0x14b2] = 0x938b, - [0x14b3] = 0x93ad, [0x14b4] = 0x93bb, [0x14b5] = 0x93b8, [0x14b8] = 0x939c, - [0x14b9] = 0x95d8, [0x14ba] = 0x95d7, [0x14be] = 0x975d, [0x14bf] = 0x97a9, - [0x14c0] = 0x97da, [0x14c5] = 0x9854, [0x14c7] = 0x9855, [0x14c8] = 0x984b, - [0x14ca] = 0x983f, [0x14cb] = 0x98b9, [0x14d0] = 0x9938, [0x14d1] = 0x9936, - [0x14d2] = 0x9940, [0x14d4] = 0x993b, [0x14d5] = 0x9939, [0x14d6] = 0x99a4, - [0x14d9] = 0x9a08, [0x14da] = 0x9a0c, [0x14dc] = 0x9a10, [0x14de] = 0x9b07, - [0x14e0] = 0x9bd2, [0x14e2] = 0x9bc2, [0x14e3] = 0x9bbb, [0x14e4] = 0x9bcc, - [0x14e5] = 0x9bcb, [0x14e8] = 0x9d4d, [0x14e9] = 0x9d63, [0x14ea] = 0x9d4e, - [0x14ec] = 0x9d50, [0x14ed] = 0x9d55, [0x14ef] = 0x9d5e, [0x14f1] = 0x9e90, - [0x14f2] = 0x9eb2, [0x14f3] = 0x9eb1, [0x14f5] = 0x9eca, [0x14f6] = 0x9f02, - [0x14f7] = 0x9f27, [0x14f8] = 0x9f26, [0x14fa] = 0x56af, [0x14fb] = 0x58e0, - [0x14fc] = 0x58dc, [0x14fe] = 0x5b39, [0x1501] = 0x5b7c, [0x1502] = 0x5bf3, - [0x1505] = 0x5c6b, [0x1506] = 0x5dc4, [0x1507] = 0x650b, [0x1508] = 0x6508, - [0x1509] = 0x650a, [0x150c] = 0x65dc, [0x150f] = 0x66e1, [0x1510] = 0x66df, - [0x1511] = 0x6ace, [0x1512] = 0x6ad4, [0x1513] = 0x6ae3, [0x1514] = 0x6ad7, - [0x1515] = 0x6ae2, [0x151a] = 0x6ad8, [0x151b] = 0x6ad5, [0x151c] = 0x6ad2, + [0x14ad] = 0x93a0, [0x14ae] = 0x493d, [0x14af] = 0x9390, [0x14b0] = 0x493e, + [0x14b1] = 0x9393, [0x14b2] = 0x938b, [0x14b3] = 0x93ad, [0x14b4] = 0x93bb, + [0x14b5] = 0x93b8, [0x14b6] = 0x4946, [0x14b7] = 0x4945, [0x14b8] = 0x939c, + [0x14b9] = 0x95d8, [0x14ba] = 0x95d7, [0x14bb] = 0x4a03, [0x14bc] = 0x4a26, + [0x14bd] = 0x4a27, [0x14be] = 0x975d, [0x14bf] = 0x97a9, [0x14c0] = 0x97da, + [0x14c1] = 0x4a98, [0x14c2] = 0x4aad, [0x14c3] = 0x4ad5, [0x14c4] = 0x4ada, + [0x14c5] = 0x9854, [0x14c6] = 0x4ad9, [0x14c7] = 0x9855, [0x14c8] = 0x984b, + [0x14c9] = 0x4add, [0x14ca] = 0x983f, [0x14cb] = 0x98b9, [0x14cc] = 0x4b15, + [0x14cd] = 0x4b16, [0x14ce] = 0x4b17, [0x14cf] = 0x4b21, [0x14d0] = 0x9938, + [0x14d1] = 0x9936, [0x14d2] = 0x9940, [0x14d3] = 0x4b4c, [0x14d4] = 0x993b, + [0x14d5] = 0x9939, [0x14d6] = 0x99a4, [0x14d7] = 0x4b96, [0x14d8] = 0x4b98, + [0x14d9] = 0x9a08, [0x14da] = 0x9a0c, [0x14db] = 0x4b9b, [0x14dc] = 0x9a10, + [0x14dd] = 0x4bff, [0x14de] = 0x9b07, [0x14df] = 0x4c25, [0x14e0] = 0x9bd2, + [0x14e1] = 0x4c4f, [0x14e2] = 0x9bc2, [0x14e3] = 0x9bbb, [0x14e4] = 0x9bcc, + [0x14e5] = 0x9bcb, [0x14e6] = 0x4c56, [0x14e7] = 0x4c54, [0x14e8] = 0x9d4d, + [0x14e9] = 0x9d63, [0x14ea] = 0x9d4e, [0x14eb] = 0x4cd8, [0x14ec] = 0x9d50, + [0x14ed] = 0x9d55, [0x14ee] = 0x4cd7, [0x14ef] = 0x9d5e, [0x14f0] = 0x4d26, + [0x14f1] = 0x9e90, [0x14f2] = 0x9eb2, [0x14f3] = 0x9eb1, [0x14f4] = 0x4d38, + [0x14f5] = 0x9eca, [0x14f6] = 0x9f02, [0x14f7] = 0x9f27, [0x14f8] = 0x9f26, + [0x14f9] = 0x4d8a, [0x14fa] = 0x56af, [0x14fb] = 0x58e0, [0x14fc] = 0x58dc, + [0x14fd] = 0x3734, [0x14fe] = 0x5b39, [0x14ff] = 0x3735, [0x1501] = 0x5b7c, + [0x1502] = 0x5bf3, [0x1504] = 0x37a1, [0x1505] = 0x5c6b, [0x1506] = 0x5dc4, + [0x1507] = 0x650b, [0x1508] = 0x6508, [0x1509] = 0x650a, [0x150a] = 0x3a6c, + [0x150b] = 0x3a6d, [0x150c] = 0x65dc, [0x150d] = 0x3b29, [0x150e] = 0x3b2a, + [0x150f] = 0x66e1, [0x1510] = 0x66df, [0x1511] = 0x6ace, [0x1512] = 0x6ad4, + [0x1513] = 0x6ae3, [0x1514] = 0x6ad7, [0x1515] = 0x6ae2, [0x1516] = 0x3c00, + [0x1517] = 0x3c08, [0x1518] = 0x3c06, [0x1519] = 0x3c05, [0x151a] = 0x6ad8, + [0x151b] = 0x6ad5, [0x151c] = 0x6ad2, [0x151d] = 0x3cb1, [0x151e] = 0x3d88, [0x151f] = 0x701e, [0x1520] = 0x702c, [0x1521] = 0x7025, [0x1522] = 0x6ff3, - [0x1523] = 0x7204, [0x1524] = 0x7208, [0x1525] = 0x7215, [0x1527] = 0x74c4, - [0x1528] = 0x74c9, [0x1529] = 0x74c7, [0x152a] = 0x74c8, [0x152b] = 0x76a9, - [0x152c] = 0x77c6, [0x152d] = 0x77c5, [0x152e] = 0x7918, [0x152f] = 0x791a, - [0x1530] = 0x7920, [0x1532] = 0x7a66, [0x1533] = 0x7a64, [0x1534] = 0x7a6a, - [0x153b] = 0x7c35, [0x153c] = 0x7c34, [0x153f] = 0x7e6c, [0x1541] = 0x7e6e, - [0x1542] = 0x7e71, [0x1544] = 0x81d4, [0x1545] = 0x81d6, [0x1546] = 0x821a, + [0x1523] = 0x7204, [0x1524] = 0x7208, [0x1525] = 0x7215, [0x1526] = 0x3e09, + [0x1527] = 0x74c4, [0x1528] = 0x74c9, [0x1529] = 0x74c7, [0x152a] = 0x74c8, + [0x152b] = 0x76a9, [0x152c] = 0x77c6, [0x152d] = 0x77c5, [0x152e] = 0x7918, + [0x152f] = 0x791a, [0x1530] = 0x7920, [0x1531] = 0x4122, [0x1532] = 0x7a66, + [0x1533] = 0x7a64, [0x1534] = 0x7a6a, [0x1535] = 0x41d5, [0x1536] = 0x4261, + [0x1537] = 0x425d, [0x1538] = 0x4262, [0x1539] = 0x424f, [0x153a] = 0x4260, + [0x153b] = 0x7c35, [0x153c] = 0x7c34, [0x153d] = 0x42aa, [0x153e] = 0x4322, + [0x153f] = 0x7e6c, [0x1540] = 0x4321, [0x1541] = 0x7e6e, [0x1542] = 0x7e71, + [0x1543] = 0x4446, [0x1544] = 0x81d4, [0x1545] = 0x81d6, [0x1546] = 0x821a, [0x1547] = 0x8262, [0x1548] = 0x8265, [0x1549] = 0x8276, [0x154a] = 0x85db, - [0x154b] = 0x85d6, [0x154d] = 0x85e7, [0x1550] = 0x85f4, [0x1552] = 0x87fd, - [0x1553] = 0x87d5, [0x1554] = 0x8807, [0x1556] = 0x880f, [0x1557] = 0x87f8, - [0x155a] = 0x8987, [0x155c] = 0x89b5, [0x155d] = 0x89f5, [0x155f] = 0x8b3f, - [0x1560] = 0x8b43, [0x1561] = 0x8b4c, [0x1563] = 0x8d0b, [0x1564] = 0x8e6b, + [0x154b] = 0x85d6, [0x154c] = 0x4562, [0x154d] = 0x85e7, [0x154e] = 0x4560, + [0x154f] = 0x4564, [0x1550] = 0x85f4, [0x1552] = 0x87fd, [0x1553] = 0x87d5, + [0x1554] = 0x8807, [0x1555] = 0x45f6, [0x1556] = 0x880f, [0x1557] = 0x87f8, + [0x1559] = 0x4619, [0x155a] = 0x8987, [0x155b] = 0x4691, [0x155c] = 0x89b5, + [0x155d] = 0x89f5, [0x155e] = 0x470d, [0x155f] = 0x8b3f, [0x1560] = 0x8b43, + [0x1561] = 0x8b4c, [0x1562] = 0x4765, [0x1563] = 0x8d0b, [0x1564] = 0x8e6b, [0x1565] = 0x8e68, [0x1566] = 0x8e70, [0x1567] = 0x8e75, [0x1568] = 0x8e77, - [0x156a] = 0x8ec3, [0x156c] = 0x93e9, [0x156d] = 0x93ea, [0x156e] = 0x93cb, - [0x156f] = 0x93c5, [0x1570] = 0x93c6, [0x1572] = 0x93ed, [0x1573] = 0x93d3, - [0x1575] = 0x93e5, [0x1578] = 0x93db, [0x1579] = 0x93eb, [0x157a] = 0x93e0, - [0x157b] = 0x93c1, [0x157e] = 0x95dd, [0x1588] = 0x97b2, [0x1589] = 0x97b4, - [0x158a] = 0x97b1, [0x158b] = 0x97b5, [0x158c] = 0x97f2, [0x1590] = 0x9856, - [0x1594] = 0x9944, [0x1596] = 0x9a26, [0x1597] = 0x9a1f, [0x1598] = 0x9a18, - [0x1599] = 0x9a21, [0x159a] = 0x9a17, [0x159c] = 0x9b09, [0x159f] = 0x9bc5, - [0x15a0] = 0x9bdf, [0x15a2] = 0x9be3, [0x15a4] = 0x9be9, [0x15a5] = 0x9bee, - [0x15a8] = 0x9d66, [0x15a9] = 0x9d7a, [0x15ab] = 0x9d6e, [0x15ac] = 0x9d91, + [0x1569] = 0x483f, [0x156a] = 0x8ec3, [0x156b] = 0x494b, [0x156c] = 0x93e9, + [0x156d] = 0x93ea, [0x156e] = 0x93cb, [0x156f] = 0x93c5, [0x1570] = 0x93c6, + [0x1571] = 0x4948, [0x1572] = 0x93ed, [0x1573] = 0x93d3, [0x1574] = 0x4952, + [0x1575] = 0x93e5, [0x1576] = 0x494a, [0x1577] = 0x4951, [0x1578] = 0x93db, + [0x1579] = 0x93eb, [0x157a] = 0x93e0, [0x157b] = 0x93c1, [0x157c] = 0x4950, + [0x157d] = 0x494c, [0x157e] = 0x95dd, [0x157f] = 0x49ee, [0x1580] = 0x4a04, + [0x1581] = 0x4a06, [0x1582] = 0x4a2d, [0x1583] = 0x4a2e, [0x1584] = 0x4a2f, + [0x1585] = 0x4a7b, [0x1586] = 0x4a78, [0x1587] = 0x4a77, [0x1588] = 0x97b2, + [0x1589] = 0x97b4, [0x158a] = 0x97b1, [0x158b] = 0x97b5, [0x158c] = 0x97f2, + [0x158d] = 0x4aa2, [0x158e] = 0x4aa1, [0x158f] = 0x4ae3, [0x1590] = 0x9856, + [0x1591] = 0x4b1a, [0x1592] = 0x4b19, [0x1593] = 0x4b57, [0x1594] = 0x9944, + [0x1595] = 0x4b9e, [0x1596] = 0x9a26, [0x1597] = 0x9a1f, [0x1598] = 0x9a18, + [0x1599] = 0x9a21, [0x159a] = 0x9a17, [0x159b] = 0x4bdd, [0x159c] = 0x9b09, + [0x159d] = 0x4c05, [0x159e] = 0x4c28, [0x159f] = 0x9bc5, [0x15a0] = 0x9bdf, + [0x15a1] = 0x4c60, [0x15a2] = 0x9be3, [0x15a3] = 0x4c66, [0x15a4] = 0x9be9, + [0x15a5] = 0x9bee, [0x15a6] = 0x4c67, [0x15a7] = 0x4c68, [0x15a8] = 0x9d66, + [0x15a9] = 0x9d7a, [0x15aa] = 0x4cde, [0x15ab] = 0x9d6e, [0x15ac] = 0x9d91, [0x15ad] = 0x9d83, [0x15ae] = 0x9d76, [0x15af] = 0x9d7e, [0x15b0] = 0x9d6d, - [0x15b2] = 0x9e95, [0x15b3] = 0x9ee3, [0x15b6] = 0x9f03, [0x15b7] = 0x9f04, - [0x15b9] = 0x9f17, [0x15bb] = 0x5136, [0x15bd] = 0x5336, [0x15bf] = 0x5b42, + [0x15b1] = 0x4ce1, [0x15b2] = 0x9e95, [0x15b3] = 0x9ee3, [0x15b4] = 0x4d69, + [0x15b5] = 0x4d77, [0x15b6] = 0x9f03, [0x15b7] = 0x9f04, [0x15b9] = 0x9f17, + [0x15ba] = 0x34a6, [0x15bb] = 0x5136, [0x15bc] = 0x34a5, [0x15bd] = 0x5336, + [0x15be] = 0x3614, [0x15bf] = 0x5b42, [0x15c0] = 0x3736, [0x15c1] = 0x3738, [0x15c2] = 0x5b44, [0x15c3] = 0x5b46, [0x15c4] = 0x5b7e, [0x15c5] = 0x5dca, - [0x15c6] = 0x5dc8, [0x15c7] = 0x5dcc, [0x15c8] = 0x5ef0, [0x15ca] = 0x6585, - [0x15cb] = 0x66e5, [0x15cc] = 0x66e7, [0x15d0] = 0x6af4, [0x15d2] = 0x6ae9, - [0x15d8] = 0x703d, [0x15da] = 0x7036, [0x15dc] = 0x7216, [0x15de] = 0x7212, - [0x15df] = 0x720f, [0x15e0] = 0x7217, [0x15e1] = 0x7211, [0x15e2] = 0x720b, - [0x15e5] = 0x74cd, [0x15e6] = 0x74d0, [0x15e7] = 0x74cc, [0x15e8] = 0x74ce, - [0x15e9] = 0x74d1, [0x15eb] = 0x7589, [0x15ed] = 0x7a6f, [0x15ee] = 0x7c4b, - [0x15ef] = 0x7c44, [0x15f5] = 0x7e7f, [0x15f6] = 0x8b71, [0x15f8] = 0x802f, - [0x15f9] = 0x807a, [0x15fa] = 0x807b, [0x15fb] = 0x807c, [0x15ff] = 0x85fc, - [0x1600] = 0x8610, [0x1601] = 0x8602, [0x1604] = 0x85ee, [0x1605] = 0x8603, - [0x1607] = 0x860d, [0x1608] = 0x8613, [0x1609] = 0x8608, [0x160a] = 0x860f, - [0x160b] = 0x8818, [0x160c] = 0x8812, [0x160f] = 0x8967, [0x1610] = 0x8965, - [0x1611] = 0x89bb, [0x1612] = 0x8b69, [0x1613] = 0x8b62, [0x1615] = 0x8b6e, - [0x1617] = 0x8b61, [0x1619] = 0x8b64, [0x161a] = 0x8b4d, [0x161b] = 0x8c51, - [0x161e] = 0x8e83, [0x161f] = 0x8ec6, [0x1621] = 0x941f, [0x1623] = 0x9404, - [0x1624] = 0x9417, [0x1625] = 0x9408, [0x1626] = 0x9405, [0x1628] = 0x93f3, - [0x1629] = 0x941e, [0x162a] = 0x9402, [0x162b] = 0x941a, [0x162c] = 0x941b, - [0x162d] = 0x9427, [0x162e] = 0x941c, [0x1630] = 0x96b5, [0x1633] = 0x9733, - [0x1635] = 0x9734, [0x1636] = 0x9731, [0x1637] = 0x97b8, [0x1638] = 0x97ba, - [0x163a] = 0x97fc, [0x163d] = 0x98c3, [0x163f] = 0x994d, [0x1641] = 0x9a2f, - [0x1645] = 0x9ac9, [0x1647] = 0x9ac8, [0x1648] = 0x9ac4, [0x1649] = 0x9b2a, - [0x164a] = 0x9b38, [0x164b] = 0x9b50, [0x164d] = 0x9c0a, [0x164e] = 0x9bfb, - [0x164f] = 0x9c04, [0x1650] = 0x9bfc, [0x1651] = 0x9bfe, [0x1655] = 0x9c02, + [0x15c6] = 0x5dc8, [0x15c7] = 0x5dcc, [0x15c8] = 0x5ef0, [0x15c9] = 0x3a70, + [0x15ca] = 0x6585, [0x15cb] = 0x66e5, [0x15cc] = 0x66e7, [0x15cd] = 0x3b2b, + [0x15ce] = 0x3c11, [0x15cf] = 0x3c0a, [0x15d0] = 0x6af4, [0x15d1] = 0x3c0d, + [0x15d2] = 0x6ae9, [0x15d3] = 0x3c16, [0x15d4] = 0x3c10, [0x15d5] = 0x3c09, + [0x15d6] = 0x3c0e, [0x15d7] = 0x3c7a, [0x15d8] = 0x703d, [0x15d9] = 0x3d8c, + [0x15da] = 0x7036, [0x15db] = 0x3d91, [0x15dc] = 0x7216, [0x15dd] = 0x3e0a, + [0x15de] = 0x7212, [0x15df] = 0x720f, [0x15e0] = 0x7217, [0x15e1] = 0x7211, + [0x15e2] = 0x720b, [0x15e3] = 0x3e08, [0x15e4] = 0x3e0b, [0x15e5] = 0x74cd, + [0x15e6] = 0x74d0, [0x15e7] = 0x74cc, [0x15e8] = 0x74ce, [0x15e9] = 0x74d1, + [0x15ea] = 0x3f07, [0x15eb] = 0x7589, [0x15ec] = 0x40f2, [0x15ed] = 0x7a6f, + [0x15ee] = 0x7c4b, [0x15ef] = 0x7c44, [0x15f0] = 0x7c55, [0x15f1] = 0x42ae, + [0x15f2] = 0x4324, [0x15f3] = 0x4326, [0x15f4] = 0x4327, [0x15f5] = 0x7e7f, + [0x15f6] = 0x8b71, [0x15f7] = 0x4399, [0x15f8] = 0x802f, [0x15f9] = 0x807a, + [0x15fa] = 0x807b, [0x15fb] = 0x807c, [0x15fc] = 0x455f, [0x15fd] = 0x456a, + [0x15fe] = 0x4571, [0x15ff] = 0x85fc, [0x1600] = 0x8610, [0x1601] = 0x8602, + [0x1602] = 0x456c, [0x1603] = 0x456f, [0x1604] = 0x85ee, [0x1605] = 0x8603, + [0x1606] = 0x4568, [0x1607] = 0x860d, [0x1608] = 0x8613, [0x1609] = 0x8608, + [0x160a] = 0x860f, [0x160b] = 0x8818, [0x160c] = 0x8812, [0x160d] = 0x4601, + [0x160e] = 0x4668, [0x160f] = 0x8967, [0x1610] = 0x8965, [0x1611] = 0x89bb, + [0x1612] = 0x8b69, [0x1613] = 0x8b62, [0x1614] = 0x4713, [0x1615] = 0x8b6e, + [0x1616] = 0x4716, [0x1617] = 0x8b61, [0x1618] = 0x4718, [0x1619] = 0x8b64, + [0x161a] = 0x8b4d, [0x161b] = 0x8c51, [0x161c] = 0x4789, [0x161d] = 0x47c8, + [0x161e] = 0x8e83, [0x161f] = 0x8ec6, [0x1620] = 0x4884, [0x1621] = 0x941f, + [0x1622] = 0x4954, [0x1623] = 0x9404, [0x1624] = 0x9417, [0x1625] = 0x9408, + [0x1626] = 0x9405, [0x1627] = 0x4956, [0x1628] = 0x93f3, [0x1629] = 0x941e, + [0x162a] = 0x9402, [0x162b] = 0x941a, [0x162c] = 0x941b, [0x162d] = 0x9427, + [0x162e] = 0x941c, [0x162f] = 0x495a, [0x1630] = 0x96b5, [0x1631] = 0x4a05, + [0x1632] = 0x4a07, [0x1633] = 0x9733, [0x1634] = 0x4a31, [0x1635] = 0x9734, + [0x1636] = 0x9731, [0x1637] = 0x97b8, [0x1638] = 0x97ba, [0x1639] = 0x4aa3, + [0x163a] = 0x97fc, [0x163b] = 0x4aeb, [0x163c] = 0x4b1c, [0x163d] = 0x98c3, + [0x163e] = 0x4b5a, [0x163f] = 0x994d, [0x1640] = 0x4b5b, [0x1641] = 0x9a2f, + [0x1642] = 0x4ba6, [0x1643] = 0x4baa, [0x1644] = 0x4ba5, [0x1645] = 0x9ac9, + [0x1646] = 0x4be1, [0x1647] = 0x9ac8, [0x1648] = 0x9ac4, [0x1649] = 0x9b2a, + [0x164a] = 0x9b38, [0x164b] = 0x9b50, [0x164c] = 0x4c2a, [0x164d] = 0x9c0a, + [0x164e] = 0x9bfb, [0x164f] = 0x9c04, [0x1650] = 0x9bfc, [0x1651] = 0x9bfe, + [0x1652] = 0x4c72, [0x1653] = 0x4c6f, [0x1654] = 0x4c73, [0x1655] = 0x9c02, [0x1656] = 0x9bf6, [0x1657] = 0x9c1b, [0x1658] = 0x9bf9, [0x1659] = 0x9c15, [0x165a] = 0x9c10, [0x165b] = 0x9bff, [0x165c] = 0x9c00, [0x165d] = 0x9c0c, - [0x1660] = 0x9d95, [0x1661] = 0x9da5, [0x1666] = 0x9e98, [0x1667] = 0x9ec1, - [0x1669] = 0x9f5a, [0x166a] = 0x5164, [0x166b] = 0x56bb, [0x166d] = 0x58e6, - [0x166e] = 0x5b49, [0x166f] = 0x5bf7, [0x1672] = 0x5dd0, [0x1674] = 0x5fc2, - [0x1676] = 0x6511, [0x1678] = 0x6aff, [0x1679] = 0x6afe, [0x167a] = 0x6afd, - [0x167c] = 0x6b01, [0x167f] = 0x704b, [0x1680] = 0x704d, [0x1681] = 0x7047, - [0x1682] = 0x74d3, [0x1683] = 0x7668, [0x1684] = 0x7667, [0x1687] = 0x77d1, - [0x1688] = 0x7930, [0x1689] = 0x7932, [0x168a] = 0x792e, [0x168c] = 0x9f9d, - [0x168d] = 0x7ac9, [0x168e] = 0x7ac8, [0x1690] = 0x7c56, [0x1691] = 0x7c51, - [0x1695] = 0x7e85, [0x1696] = 0x7e89, [0x1697] = 0x7e8e, [0x1698] = 0x7e84, + [0x165e] = 0x4c6b, [0x165f] = 0x4ce6, [0x1660] = 0x9d95, [0x1661] = 0x9da5, + [0x1662] = 0x4ce9, [0x1663] = 0x4cec, [0x1664] = 0x4ce8, [0x1665] = 0x4cf0, + [0x1666] = 0x9e98, [0x1667] = 0x9ec1, [0x1668] = 0x4d8c, [0x1669] = 0x9f5a, + [0x166a] = 0x5164, [0x166b] = 0x56bb, [0x166c] = 0x3615, [0x166d] = 0x58e6, + [0x166e] = 0x5b49, [0x166f] = 0x5bf7, [0x1670] = 0x3771, [0x1671] = 0x3826, + [0x1672] = 0x5dd0, [0x1673] = 0x38c6, [0x1674] = 0x5fc2, [0x1675] = 0x39a8, + [0x1676] = 0x6511, [0x1677] = 0x3a73, [0x1678] = 0x6aff, [0x1679] = 0x6afe, + [0x167a] = 0x6afd, [0x167b] = 0x3c15, [0x167c] = 0x6b01, [0x167d] = 0x3d98, + [0x167e] = 0x3d97, [0x167f] = 0x704b, [0x1680] = 0x704d, [0x1681] = 0x7047, + [0x1682] = 0x74d3, [0x1683] = 0x7668, [0x1684] = 0x7667, [0x1685] = 0x3fd7, + [0x1686] = 0x4080, [0x1687] = 0x77d1, [0x1688] = 0x7930, [0x1689] = 0x7932, + [0x168a] = 0x792e, [0x168b] = 0x4188, [0x168c] = 0x9f9d, [0x168d] = 0x7ac9, + [0x168e] = 0x7ac8, [0x168f] = 0x4269, [0x1690] = 0x7c56, [0x1691] = 0x7c51, + [0x1692] = 0x426b, [0x1693] = 0x4329, [0x1694] = 0x4328, [0x1695] = 0x7e85, + [0x1696] = 0x7e89, [0x1697] = 0x7e8e, [0x1698] = 0x7e84, [0x1699] = 0x445f, [0x169a] = 0x826a, [0x169b] = 0x862b, [0x169c] = 0x862f, [0x169d] = 0x8628, - [0x169f] = 0x8616, [0x16a0] = 0x8615, [0x16a1] = 0x861d, [0x16a2] = 0x881a, - [0x16a6] = 0x89bc, [0x16a7] = 0x8b75, [0x16a8] = 0x8b7c, [0x16aa] = 0x8d11, - [0x16ab] = 0x8d12, [0x16ac] = 0x8f5c, [0x16ad] = 0x91bb, [0x16af] = 0x93f4, - [0x16b2] = 0x942d, [0x16b5] = 0x96e4, [0x16b6] = 0x9737, [0x16b7] = 0x9736, - [0x16b8] = 0x9767, [0x16b9] = 0x97be, [0x16ba] = 0x97bd, [0x16bb] = 0x97e2, - [0x16bc] = 0x9868, [0x16bd] = 0x9866, [0x16be] = 0x98c8, [0x16bf] = 0x98ca, - [0x16c0] = 0x98c7, [0x16c1] = 0x98dc, [0x16c3] = 0x994f, [0x16c4] = 0x99a9, - [0x16c5] = 0x9a3c, [0x16c7] = 0x9a3b, [0x16c8] = 0x9ace, [0x16ca] = 0x9b14, - [0x16cb] = 0x9b53, [0x16cd] = 0x9c2e, [0x16cf] = 0x9c1f, [0x16d4] = 0x9db0, - [0x16d5] = 0x9dbd, [0x16d8] = 0x9dae, [0x16d9] = 0x9dc4, [0x16da] = 0x9e7b, - [0x16dd] = 0x9e9e, [0x16df] = 0x9f05, [0x16e1] = 0x9f69, [0x16e2] = 0x9fa1, - [0x16e3] = 0x56c7, [0x16e4] = 0x571d, [0x16e5] = 0x5b4a, [0x16e6] = 0x5dd3, - [0x16e8] = 0x5f72, [0x16e9] = 0x6202, [0x16eb] = 0x6235, [0x16ec] = 0x6527, - [0x16ed] = 0x651e, [0x16ee] = 0x651f, [0x16f1] = 0x6b07, [0x16f2] = 0x6b06, - [0x16f5] = 0x7054, [0x16f6] = 0x721c, [0x16f7] = 0x7220, [0x16f8] = 0x7af8, - [0x16fa] = 0x7c5d, [0x16fb] = 0x7c58, [0x16fd] = 0x7e92, [0x16fe] = 0x7f4e, - [0x1702] = 0x8827, [0x1704] = 0x8b81, [0x1705] = 0x8b83, [0x1707] = 0x8c44, - [0x170c] = 0x9442, [0x170d] = 0x944d, [0x170e] = 0x9454, [0x170f] = 0x944e, - [0x1711] = 0x9443, [0x1714] = 0x973c, [0x1715] = 0x9740, [0x1716] = 0x97c0, - [0x171b] = 0x995a, [0x171c] = 0x9a51, [0x171e] = 0x9add, [0x1721] = 0x9c38, - [0x1723] = 0x9c45, [0x1724] = 0x9c3a, [0x1726] = 0x9c35, [0x172a] = 0x9ef1, - [0x172c] = 0x9f93, [0x172d] = 0x529a, [0x1730] = 0x8641, [0x1731] = 0x5dd7, - [0x1733] = 0x6528, [0x1737] = 0x7053, [0x1738] = 0x7059, [0x173a] = 0x7221, - [0x173c] = 0x766f, [0x173d] = 0x7937, [0x173e] = 0x79b5, [0x173f] = 0x7c62, - [0x1740] = 0x7c5e, [0x1741] = 0x7cf5, [0x1744] = 0x863d, [0x1746] = 0x882d, - [0x1747] = 0x8989, [0x1748] = 0x8b8d, [0x1749] = 0x8b87, [0x174a] = 0x8b90, - [0x174b] = 0x8d1a, [0x174c] = 0x8e99, [0x1750] = 0x945f, [0x1753] = 0x9456, - [0x1754] = 0x9461, [0x1755] = 0x945b, [0x1756] = 0x945a, [0x1757] = 0x945c, - [0x1758] = 0x9465, [0x175a] = 0x9741, [0x175d] = 0x986e, [0x175e] = 0x986c, - [0x175f] = 0x986d, [0x1761] = 0x99aa, [0x1762] = 0x9a5c, [0x1763] = 0x9a58, - [0x1764] = 0x9ade, [0x1766] = 0x9c4f, [0x1767] = 0x9c51, [0x1769] = 0x9c53, - [0x176d] = 0x9dfc, [0x176e] = 0x9f39, [0x1770] = 0x513e, [0x1772] = 0x56d2, - [0x1774] = 0x5b4f, [0x1775] = 0x6b14, [0x1777] = 0x7a72, [0x1778] = 0x7a73, - [0x177c] = 0x8b91, [0x177f] = 0x91bf, [0x1781] = 0x946c, [0x1784] = 0x96e6, - [0x1785] = 0x9745, [0x1787] = 0x97c8, [0x1788] = 0x97e4, [0x1789] = 0x995d, - [0x178b] = 0x9b21, [0x178d] = 0x9b2c, [0x178e] = 0x9b57, [0x1791] = 0x9c5d, - [0x1792] = 0x9c61, [0x1793] = 0x9c65, [0x1794] = 0x9e08, [0x179a] = 0x9f45, - [0x179d] = 0x6205, [0x179e] = 0x66ef, [0x179f] = 0x6b1b, [0x17a0] = 0x6b1d, - [0x17a1] = 0x7225, [0x17a2] = 0x7224, [0x17a3] = 0x7c6d, [0x17a5] = 0x8642, - [0x17a6] = 0x8649, [0x17a8] = 0x8978, [0x17a9] = 0x898a, [0x17aa] = 0x8b97, - [0x17ac] = 0x8c9b, [0x17ad] = 0x8d1c, [0x17af] = 0x8ea2, [0x17b8] = 0x9c6c, - [0x17ba] = 0x9c6f, [0x17bc] = 0x9e0e, [0x17be] = 0x9f08, [0x17bf] = 0x9f1d, - [0x17c0] = 0x9fa3, [0x17c3] = 0x5f60, [0x17c4] = 0x6b1c, [0x17c8] = 0x7cf3, - [0x17ca] = 0x8b9b, [0x17cb] = 0x8ea7, [0x17cc] = 0x91c4, [0x17ce] = 0x947a, - [0x17d1] = 0x9a61, [0x17d2] = 0x9a63, [0x17d3] = 0x9ad7, [0x17d4] = 0x9c76, - [0x17d6] = 0x9fa5, [0x17d8] = 0x7067, [0x17da] = 0x72ab, [0x17db] = 0x864a, + [0x169e] = 0x4574, [0x169f] = 0x8616, [0x16a0] = 0x8615, [0x16a1] = 0x861d, + [0x16a2] = 0x881a, [0x16a3] = 0x4602, [0x16a4] = 0x466a, [0x16a5] = 0x4694, + [0x16a6] = 0x89bc, [0x16a7] = 0x8b75, [0x16a8] = 0x8b7c, [0x16a9] = 0x478a, + [0x16aa] = 0x8d11, [0x16ab] = 0x8d12, [0x16ac] = 0x8f5c, [0x16ad] = 0x91bb, + [0x16ae] = 0x4964, [0x16af] = 0x93f4, [0x16b0] = 0x495e, [0x16b1] = 0x4961, + [0x16b2] = 0x942d, [0x16b3] = 0x4965, [0x16b4] = 0x4966, [0x16b5] = 0x96e4, + [0x16b6] = 0x9737, [0x16b7] = 0x9736, [0x16b8] = 0x9767, [0x16b9] = 0x97be, + [0x16ba] = 0x97bd, [0x16bb] = 0x97e2, [0x16bc] = 0x9868, [0x16bd] = 0x9866, + [0x16be] = 0x98c8, [0x16bf] = 0x98ca, [0x16c0] = 0x98c7, [0x16c1] = 0x98dc, + [0x16c2] = 0x4b5f, [0x16c3] = 0x994f, [0x16c4] = 0x99a9, [0x16c5] = 0x9a3c, + [0x16c6] = 0x4baf, [0x16c7] = 0x9a3b, [0x16c8] = 0x9ace, [0x16c9] = 0x4c0d, + [0x16ca] = 0x9b14, [0x16cb] = 0x9b53, [0x16cc] = 0x4c7c, [0x16cd] = 0x9c2e, + [0x16ce] = 0x4c7a, [0x16cf] = 0x9c1f, [0x16d0] = 0x4c76, [0x16d1] = 0x4c79, + [0x16d2] = 0x4c7d, [0x16d3] = 0x4c77, [0x16d4] = 0x9db0, [0x16d5] = 0x9dbd, + [0x16d6] = 0x4cf6, [0x16d7] = 0x4cf1, [0x16d8] = 0x9dae, [0x16d9] = 0x9dc4, + [0x16da] = 0x9e7b, [0x16db] = 0x400b, [0x16dc] = 0x4d29, [0x16dd] = 0x9e9e, + [0x16de] = 0x4d6f, [0x16df] = 0x9f05, [0x16e0] = 0x4d9a, [0x16e1] = 0x9f69, + [0x16e2] = 0x9fa1, [0x16e3] = 0x56c7, [0x16e4] = 0x571d, [0x16e5] = 0x5b4a, + [0x16e6] = 0x5dd3, [0x16e7] = 0x3869, [0x16e8] = 0x5f72, [0x16e9] = 0x6202, + [0x16ea] = 0x39ab, [0x16eb] = 0x6235, [0x16ec] = 0x6527, [0x16ed] = 0x651e, + [0x16ee] = 0x651f, [0x16ef] = 0x3b2c, [0x16f0] = 0x3b2d, [0x16f1] = 0x6b07, + [0x16f2] = 0x6b06, [0x16f3] = 0x3c17, [0x16f4] = 0x3d9a, [0x16f5] = 0x7054, + [0x16f6] = 0x721c, [0x16f7] = 0x7220, [0x16f8] = 0x7af8, [0x16f9] = 0x426e, + [0x16fa] = 0x7c5d, [0x16fb] = 0x7c58, [0x16fc] = 0x432c, [0x16fd] = 0x7e92, + [0x16fe] = 0x7f4e, [0x16ff] = 0x43ca, [0x1700] = 0x4578, [0x1701] = 0x4606, + [0x1702] = 0x8827, [0x1703] = 0x4607, [0x1704] = 0x8b81, [0x1705] = 0x8b83, + [0x1706] = 0x4720, [0x1707] = 0x8c44, [0x1708] = 0x4753, [0x1709] = 0x47ce, + [0x170a] = 0x487a, [0x170b] = 0x4879, [0x170c] = 0x9442, [0x170d] = 0x944d, + [0x170e] = 0x9454, [0x170f] = 0x944e, [0x1710] = 0x496b, [0x1711] = 0x9443, + [0x1712] = 0x4967, [0x1713] = 0x496d, [0x1714] = 0x973c, [0x1715] = 0x9740, + [0x1716] = 0x97c0, [0x1717] = 0x4a85, [0x1718] = 0x4ab0, [0x1719] = 0x4af3, + [0x171a] = 0x4b63, [0x171b] = 0x995a, [0x171c] = 0x9a51, [0x171d] = 0x4bb6, + [0x171e] = 0x9add, [0x171f] = 0x4c82, [0x1720] = 0x4c7f, [0x1721] = 0x9c38, + [0x1722] = 0x4c86, [0x1723] = 0x9c45, [0x1724] = 0x9c3a, [0x1725] = 0x4c84, + [0x1726] = 0x9c35, [0x1727] = 0x4cfc, [0x1728] = 0x4cfd, [0x1729] = 0x4cfa, + [0x172a] = 0x9ef1, [0x172b] = 0x4d87, [0x172c] = 0x9f93, [0x172d] = 0x529a, + [0x172e] = 0x361a, [0x172f] = 0x3619, [0x1730] = 0x8641, [0x1731] = 0x5dd7, + [0x1732] = 0x3a75, [0x1733] = 0x6528, [0x1734] = 0x3c1a, [0x1735] = 0x3c1b, + [0x1736] = 0x3c19, [0x1737] = 0x7053, [0x1738] = 0x7059, [0x1739] = 0x3d9c, + [0x173a] = 0x7221, [0x173b] = 0x3e10, [0x173c] = 0x766f, [0x173d] = 0x7937, + [0x173e] = 0x79b5, [0x173f] = 0x7c62, [0x1740] = 0x7c5e, [0x1741] = 0x7cf5, + [0x1742] = 0x457b, [0x1743] = 0x457c, [0x1744] = 0x863d, [0x1745] = 0x4608, + [0x1746] = 0x882d, [0x1747] = 0x8989, [0x1748] = 0x8b8d, [0x1749] = 0x8b87, + [0x174a] = 0x8b90, [0x174b] = 0x8d1a, [0x174c] = 0x8e99, [0x174d] = 0x4841, + [0x174e] = 0x48e3, [0x174f] = 0x4972, [0x1750] = 0x945f, [0x1751] = 0x4973, + [0x1752] = 0x4968, [0x1753] = 0x9456, [0x1754] = 0x9461, [0x1755] = 0x945b, + [0x1756] = 0x945a, [0x1757] = 0x945c, [0x1758] = 0x9465, [0x1759] = 0x4a35, + [0x175a] = 0x9741, [0x175b] = 0x4a88, [0x175c] = 0x4a9d, [0x175d] = 0x986e, + [0x175e] = 0x986c, [0x175f] = 0x986d, [0x1760] = 0x4275, [0x1761] = 0x99aa, + [0x1762] = 0x9a5c, [0x1763] = 0x9a58, [0x1764] = 0x9ade, [0x1765] = 0x4c8f, + [0x1766] = 0x9c4f, [0x1767] = 0x9c51, [0x1768] = 0x4c8e, [0x1769] = 0x9c53, + [0x176a] = 0x4d05, [0x176b] = 0x4d04, [0x176c] = 0x4cff, [0x176d] = 0x9dfc, + [0x176e] = 0x9f39, [0x176f] = 0x4d9e, [0x1770] = 0x513e, [0x1771] = 0x3554, + [0x1772] = 0x56d2, [0x1773] = 0x3681, [0x1774] = 0x5b4f, [0x1775] = 0x6b14, + [0x1776] = 0x40fa, [0x1777] = 0x7a72, [0x1778] = 0x7a73, [0x1779] = 0x4332, + [0x177a] = 0x4670, [0x177b] = 0x466e, [0x177c] = 0x8b91, [0x177e] = 0x487c, + [0x177f] = 0x91bf, [0x1780] = 0x4975, [0x1781] = 0x946c, [0x1782] = 0x4974, + [0x1783] = 0x4977, [0x1784] = 0x96e6, [0x1785] = 0x9745, [0x1786] = 0x4a37, + [0x1787] = 0x97c8, [0x1788] = 0x97e4, [0x1789] = 0x995d, [0x178a] = 0x4bba, + [0x178b] = 0x9b21, [0x178c] = 0x4c11, [0x178d] = 0x9b2c, [0x178e] = 0x9b57, + [0x178f] = 0x4c92, [0x1790] = 0x4c99, [0x1791] = 0x9c5d, [0x1792] = 0x9c61, + [0x1793] = 0x9c65, [0x1794] = 0x9e08, [0x1795] = 0x4d0a, [0x1796] = 0x4d2a, + [0x1797] = 0x4d2b, [0x1798] = 0x4d44, [0x1799] = 0x4d79, [0x179a] = 0x9f45, + [0x179b] = 0x34aa, [0x179c] = 0x3748, [0x179d] = 0x6205, [0x179e] = 0x66ef, + [0x179f] = 0x6b1b, [0x17a0] = 0x6b1d, [0x17a1] = 0x7225, [0x17a2] = 0x7224, + [0x17a3] = 0x7c6d, [0x17a4] = 0x42b4, [0x17a5] = 0x8642, [0x17a6] = 0x8649, + [0x17a7] = 0x460d, [0x17a8] = 0x8978, [0x17a9] = 0x898a, [0x17aa] = 0x8b97, + [0x17ab] = 0x4754, [0x17ac] = 0x8c9b, [0x17ad] = 0x8d1c, [0x17ae] = 0x4830, + [0x17af] = 0x8ea2, [0x17b0] = 0x4a09, [0x17b1] = 0x4a38, [0x17b2] = 0x4a36, + [0x17b3] = 0x4a8b, [0x17b4] = 0x4af7, [0x17b5] = 0x4b66, [0x17b6] = 0x4bbd, + [0x17b7] = 0x4c1e, [0x17b8] = 0x9c6c, [0x17b9] = 0x4c96, [0x17ba] = 0x9c6f, + [0x17bb] = 0x4d0d, [0x17bc] = 0x9e0e, [0x17bd] = 0x4d73, [0x17be] = 0x9f08, + [0x17bf] = 0x9f1d, [0x17c0] = 0x9fa3, [0x17c1] = 0x373b, [0x17c2] = 0x373c, + [0x17c3] = 0x5f60, [0x17c4] = 0x6b1c, [0x17c5] = 0x3da0, [0x17c6] = 0x40fb, + [0x17c8] = 0x7cf3, [0x17c9] = 0x4581, [0x17ca] = 0x8b9b, [0x17cb] = 0x8ea7, + [0x17cc] = 0x91c4, [0x17cd] = 0x4978, [0x17ce] = 0x947a, [0x17cf] = 0x4a8d, + [0x17d0] = 0x4b73, [0x17d1] = 0x9a61, [0x17d2] = 0x9a63, [0x17d3] = 0x9ad7, + [0x17d4] = 0x9c76, [0x17d5] = 0x4da6, [0x17d6] = 0x9fa5, [0x17d7] = 0x39ad, + [0x17d8] = 0x7067, [0x17d9] = 0x3e11, [0x17da] = 0x72ab, [0x17db] = 0x864a, [0x17dc] = 0x897d, [0x17dd] = 0x8b9d, [0x17de] = 0x8c53, [0x17df] = 0x8f65, - [0x17e0] = 0x947b, [0x17e2] = 0x98cd, [0x17e3] = 0x98dd, [0x17e5] = 0x9b30, - [0x17e6] = 0x9e16, [0x17ec] = 0x96e7, [0x17ed] = 0x9e18, [0x17ee] = 0x9ea2, - [0x17f0] = 0x9f7c, [0x17f2] = 0x7e9e, [0x17f3] = 0x9484, [0x17f5] = 0x9e1c, - [0x17f7] = 0x7c71, [0x17f8] = 0x97ca, [0x17fc] = 0x9ea3, [0x17fe] = 0x9c7b, - [0x17ff] = 0x9f97, [0x1802] = 0x9750, [0x1806] = 0x5727, [0x1807] = 0x5c13, - [0x180e] = 0x5fc8, [0x1814] = 0x6765, [0x1817] = 0x52bd, [0x1819] = 0x5b66, - [0x181b] = 0x65f9, [0x181c] = 0x6788, [0x181d] = 0x6ce6, [0x181e] = 0x6ccb, - [0x1820] = 0x4fbd, [0x1821] = 0x5f8d, [0x1823] = 0x6018, [0x1824] = 0x6048, - [0x1826] = 0x6b29, [0x1827] = 0x70a6, [0x1829] = 0x7706, [0x182d] = 0x5a10, - [0x182e] = 0x5cfc, [0x182f] = 0x5cfe, [0x1836] = 0x70c9, [0x183e] = 0x9579, - [0x1840] = 0x96ba, [0x1848] = 0x7b29, [0x1849] = 0x8128, [0x184b] = 0x8a2e, - [0x184f] = 0x9ad9, [0x1851] = 0x582b, [0x1852] = 0x5845, [0x1854] = 0x63fa, - [0x1858] = 0x6e86, [0x185e] = 0x5867, [0x1860] = 0x5bdd, [0x1861] = 0x656e, - [0x1865] = 0x8c87, [0x1867] = 0x50d2, [0x1868] = 0x50df, [0x186d] = 0x69ba, - [0x186f] = 0x6b9d, [0x1871] = 0x8059, [0x187e] = 0x6f8a, [0x1881] = 0x7bc3, - [0x1882] = 0x7bc2, [0x1887] = 0x90f6, [0x1889] = 0x9823, [0x188f] = 0x71cd, - [0x1890] = 0x7499, [0x1896] = 0x9842, [0x189b] = 0x7f84, [0x18a1] = 0x8d0e, - [0x18a3] = 0x9861, [0x18a6] = 0x8b73, [0x18a8] = 0x9c27, [0x18aa] = 0x9458, - [0x18ab] = 0x77d6, [0x18ac] = 0x9b2d, [0x18c1] = 0x4f66, [0x18c2] = 0x4f68, - [0x18c3] = 0x4fe7, [0x18c4] = 0x503f, [0x18c6] = 0x50a6, [0x18c7] = 0x510f, - [0x18c8] = 0x523e, [0x18c9] = 0x5324, [0x18ca] = 0x5365, [0x18cb] = 0x539b, - [0x18cc] = 0x517f, [0x18cd] = 0x54cb, [0x18ce] = 0x5573, [0x18cf] = 0x5571, - [0x18d0] = 0x556b, [0x18d1] = 0x55f4, [0x18d2] = 0x5622, [0x18d3] = 0x5620, - [0x18d4] = 0x5692, [0x18d5] = 0x56ba, [0x18d6] = 0x5691, [0x18d7] = 0x56b0, - [0x18d8] = 0x5759, [0x18d9] = 0x578a, [0x18da] = 0x580f, [0x18db] = 0x5812, - [0x18dc] = 0x5813, [0x18dd] = 0x5847, [0x18de] = 0x589b, [0x18df] = 0x5900, - [0x18e0] = 0x594d, [0x18e1] = 0x5ad1, [0x18e2] = 0x5ad3, [0x18e3] = 0x5b67, - [0x18e4] = 0x5c57, [0x18e5] = 0x5c77, [0x18e6] = 0x5cd5, [0x18e7] = 0x5d75, - [0x18e8] = 0x5d8e, [0x18e9] = 0x5da5, [0x18ea] = 0x5db6, [0x18eb] = 0x5dbf, - [0x18ec] = 0x5e65, [0x18ed] = 0x5ecd, [0x18ee] = 0x5eed, [0x18ef] = 0x5f94, - [0x18f0] = 0x5f9a, [0x18f1] = 0x5fba, [0x18f2] = 0x6125, [0x18f3] = 0x6150, - [0x18f4] = 0x62a3, [0x18f5] = 0x6360, [0x18f6] = 0x6364, [0x18f7] = 0x63b6, - [0x18f8] = 0x6403, [0x18f9] = 0x64b6, [0x18fa] = 0x651a, [0x18fb] = 0x7a25, - [0x18fc] = 0x5c21, [0x18fd] = 0x66e2, [0x18fe] = 0x6702, [0x18ff] = 0x67a4, - [0x1900] = 0x67ac, [0x1901] = 0x6810, [0x1902] = 0x6806, [0x1903] = 0x685e, - [0x1904] = 0x685a, [0x1905] = 0x692c, [0x1906] = 0x6929, [0x1907] = 0x6a2d, - [0x1908] = 0x6a77, [0x1909] = 0x6a7a, [0x190a] = 0x6aca, [0x190b] = 0x6ae6, - [0x190c] = 0x6af5, [0x190d] = 0x6b0d, [0x190e] = 0x6b0e, [0x190f] = 0x6bdc, - [0x1910] = 0x6bdd, [0x1911] = 0x6bf6, [0x1912] = 0x6c1e, [0x1913] = 0x6c63, - [0x1914] = 0x6da5, [0x1915] = 0x6e0f, [0x1916] = 0x6e8a, [0x1917] = 0x6e84, - [0x1918] = 0x6e8b, [0x1919] = 0x6e7c, [0x191a] = 0x6f4c, [0x191b] = 0x6f48, - [0x191c] = 0x6f49, [0x191d] = 0x6f9d, [0x191e] = 0x6f99, [0x191f] = 0x6ff8, - [0x1920] = 0x702e, [0x1921] = 0x702d, [0x1922] = 0x705c, [0x1923] = 0x79cc, - [0x1924] = 0x70bf, [0x1925] = 0x70ea, [0x1926] = 0x70e5, [0x1927] = 0x7111, - [0x1928] = 0x7112, [0x1929] = 0x713f, [0x192a] = 0x7139, [0x192b] = 0x713b, - [0x192c] = 0x713d, [0x192d] = 0x7177, [0x192e] = 0x7175, [0x192f] = 0x7176, - [0x1930] = 0x7171, [0x1931] = 0x7196, [0x1932] = 0x7193, [0x1933] = 0x71b4, - [0x1934] = 0x71dd, [0x1935] = 0x71de, [0x1936] = 0x720e, [0x1937] = 0x5911, - [0x1938] = 0x7218, [0x1939] = 0x7347, [0x193a] = 0x7348, [0x193b] = 0x73ef, - [0x193c] = 0x7412, [0x193d] = 0x743b, [0x193e] = 0x74a4, [0x193f] = 0x748d, - [0x1940] = 0x74b4, [0x1941] = 0x7673, [0x1942] = 0x7677, [0x1943] = 0x76bc, - [0x1944] = 0x7819, [0x1945] = 0x781b, [0x1946] = 0x783d, [0x1947] = 0x7853, - [0x1948] = 0x7854, [0x1949] = 0x7858, [0x194a] = 0x78b7, [0x194b] = 0x78d8, - [0x194c] = 0x78ee, [0x194d] = 0x7922, [0x194e] = 0x794d, [0x194f] = 0x7986, - [0x1950] = 0x7999, [0x1951] = 0x79a3, [0x1952] = 0x79bc, [0x1953] = 0x7aa7, - [0x1954] = 0x7b37, [0x1955] = 0x7b59, [0x1956] = 0x7bd0, [0x1957] = 0x7c2f, - [0x1958] = 0x7c32, [0x1959] = 0x7c42, [0x195a] = 0x7c4e, [0x195b] = 0x7c68, - [0x195c] = 0x7ca9, [0x195d] = 0x7ced, [0x195e] = 0x7dd0, [0x195f] = 0x7e07, - [0x1960] = 0x7dd3, [0x1961] = 0x7e64, [0x1962] = 0x7f40, [0x1964] = 0x8041, - [0x1965] = 0x8063, [0x1966] = 0x80bb, [0x1967] = 0x6711, [0x1968] = 0x6725, - [0x1969] = 0x8248, [0x196a] = 0x8310, [0x196b] = 0x8362, [0x196c] = 0x8312, - [0x196d] = 0x8421, [0x196e] = 0x841e, [0x196f] = 0x84e2, [0x1970] = 0x84de, - [0x1971] = 0x84e1, [0x1972] = 0x8573, [0x1973] = 0x85d4, [0x1974] = 0x85f5, - [0x1975] = 0x8637, [0x1976] = 0x8645, [0x1977] = 0x8672, [0x1978] = 0x874a, - [0x1979] = 0x87a9, [0x197a] = 0x87a5, [0x197b] = 0x87f5, [0x197c] = 0x8834, - [0x197d] = 0x8850, [0x197e] = 0x8887, [0x197f] = 0x8954, [0x1980] = 0x8984, - [0x1981] = 0x8b03, [0x1982] = 0x8c52, [0x1983] = 0x8cd8, [0x1984] = 0x8d0c, - [0x1985] = 0x8d18, [0x1986] = 0x8db0, [0x1987] = 0x8ebc, [0x1988] = 0x8ed5, - [0x1989] = 0x8faa, [0x198a] = 0x909c, [0x198c] = 0x915c, [0x198d] = 0x922b, - [0x198e] = 0x9221, [0x198f] = 0x9273, [0x1990] = 0x92f4, [0x1991] = 0x92f5, - [0x1992] = 0x933f, [0x1993] = 0x9342, [0x1994] = 0x9386, [0x1995] = 0x93be, - [0x1996] = 0x93bc, [0x1997] = 0x93bd, [0x1998] = 0x93f1, [0x1999] = 0x93f2, - [0x199a] = 0x93ef, [0x199b] = 0x9422, [0x199c] = 0x9423, [0x199d] = 0x9424, - [0x199e] = 0x9467, [0x199f] = 0x9466, [0x19a0] = 0x9597, [0x19a1] = 0x95ce, - [0x19a2] = 0x95e7, [0x19a3] = 0x973b, [0x19a4] = 0x974d, [0x19a5] = 0x98e4, - [0x19a6] = 0x9942, [0x19a7] = 0x9b1d, [0x19a8] = 0x9b98, [0x19aa] = 0x9d49, - [0x19ab] = 0x6449, [0x19ac] = 0x5e71, [0x19ad] = 0x5e85, [0x19ae] = 0x61d3, - [0x19af] = 0x990e, [0x19b0] = 0x8002, [0x19b1] = 0x781e, [0x19b4] = 0x5528, - [0x19b5] = 0x5572, [0x19b6] = 0x55ba, [0x19b7] = 0x55f0, [0x19b8] = 0x55ee, - [0x19b9] = 0x56b8, [0x19ba] = 0x56b9, [0x19bb] = 0x56c4, [0x19bc] = 0x8053, - [0x19bd] = 0x92b0, + [0x17e0] = 0x947b, [0x17e1] = 0x4a39, [0x17e2] = 0x98cd, [0x17e3] = 0x98dd, + [0x17e4] = 0x4bbf, [0x17e5] = 0x9b30, [0x17e6] = 0x9e16, [0x17e7] = 0x4d0f, + [0x17e8] = 0x4da7, [0x17e9] = 0x4db5, [0x17ea] = 0x3fdc, [0x17eb] = 0x4831, + [0x17ec] = 0x96e7, [0x17ed] = 0x9e18, [0x17ee] = 0x9ea2, [0x17ef] = 0x4da8, + [0x17f0] = 0x9f7c, [0x17f1] = 0x4125, [0x17f2] = 0x7e9e, [0x17f3] = 0x9484, + [0x17f4] = 0x4bc1, [0x17f5] = 0x9e1c, [0x17f6] = 0x4190, [0x17f7] = 0x7c71, + [0x17f8] = 0x97ca, [0x17f9] = 0x4696, [0x17fa] = 0x487f, [0x17fb] = 0x4d10, + [0x17fc] = 0x9ea3, [0x17fd] = 0x4a0a, [0x17fe] = 0x9c7b, [0x17ff] = 0x9f97, + [0x1800] = 0x4d12, [0x1801] = 0x4a3a, [0x1802] = 0x9750, [0x1803] = 0x4a3b, + [0x18c1] = 0x4f66, [0x18c2] = 0x4f68, [0x18c3] = 0x4fe7, [0x18c4] = 0x503f, + [0x18c6] = 0x50a6, [0x18c7] = 0x510f, [0x18c8] = 0x523e, [0x18c9] = 0x5324, + [0x18ca] = 0x5365, [0x18cb] = 0x539b, [0x18cc] = 0x517f, [0x18cd] = 0x54cb, + [0x18ce] = 0x5573, [0x18cf] = 0x5571, [0x18d0] = 0x556b, [0x18d1] = 0x55f4, + [0x18d2] = 0x5622, [0x18d3] = 0x5620, [0x18d4] = 0x5692, [0x18d5] = 0x56ba, + [0x18d6] = 0x5691, [0x18d7] = 0x56b0, [0x18d8] = 0x5759, [0x18d9] = 0x578a, + [0x18da] = 0x580f, [0x18db] = 0x5812, [0x18dc] = 0x5813, [0x18dd] = 0x5847, + [0x18de] = 0x589b, [0x18df] = 0x5900, [0x18e0] = 0x594d, [0x18e1] = 0x5ad1, + [0x18e2] = 0x5ad3, [0x18e3] = 0x5b67, [0x18e4] = 0x5c57, [0x18e5] = 0x5c77, + [0x18e6] = 0x5cd5, [0x18e7] = 0x5d75, [0x18e8] = 0x5d8e, [0x18e9] = 0x5da5, + [0x18ea] = 0x5db6, [0x18eb] = 0x5dbf, [0x18ec] = 0x5e65, [0x18ed] = 0x5ecd, + [0x18ee] = 0x5eed, [0x18ef] = 0x5f94, [0x18f0] = 0x5f9a, [0x18f1] = 0x5fba, + [0x18f2] = 0x6125, [0x18f3] = 0x6150, [0x18f4] = 0x62a3, [0x18f5] = 0x6360, + [0x18f6] = 0x6364, [0x18f7] = 0x63b6, [0x18f8] = 0x6403, [0x18f9] = 0x64b6, + [0x18fa] = 0x651a, [0x18fb] = 0x7a25, [0x18fc] = 0x5c21, [0x18fd] = 0x66e2, + [0x18fe] = 0x6702, [0x18ff] = 0x67a4, [0x1900] = 0x67ac, [0x1901] = 0x6810, + [0x1902] = 0x6806, [0x1903] = 0x685e, [0x1904] = 0x685a, [0x1905] = 0x692c, + [0x1906] = 0x6929, [0x1907] = 0x6a2d, [0x1908] = 0x6a77, [0x1909] = 0x6a7a, + [0x190a] = 0x6aca, [0x190b] = 0x6ae6, [0x190c] = 0x6af5, [0x190d] = 0x6b0d, + [0x190e] = 0x6b0e, [0x190f] = 0x6bdc, [0x1910] = 0x6bdd, [0x1911] = 0x6bf6, + [0x1912] = 0x6c1e, [0x1913] = 0x6c63, [0x1914] = 0x6da5, [0x1915] = 0x6e0f, + [0x1916] = 0x6e8a, [0x1917] = 0x6e84, [0x1918] = 0x6e8b, [0x1919] = 0x6e7c, + [0x191a] = 0x6f4c, [0x191b] = 0x6f48, [0x191c] = 0x6f49, [0x191d] = 0x6f9d, + [0x191e] = 0x6f99, [0x191f] = 0x6ff8, [0x1920] = 0x702e, [0x1921] = 0x702d, + [0x1922] = 0x705c, [0x1923] = 0x79cc, [0x1924] = 0x70bf, [0x1925] = 0x70ea, + [0x1926] = 0x70e5, [0x1927] = 0x7111, [0x1928] = 0x7112, [0x1929] = 0x713f, + [0x192a] = 0x7139, [0x192b] = 0x713b, [0x192c] = 0x713d, [0x192d] = 0x7177, + [0x192e] = 0x7175, [0x192f] = 0x7176, [0x1930] = 0x7171, [0x1931] = 0x7196, + [0x1932] = 0x7193, [0x1933] = 0x71b4, [0x1934] = 0x71dd, [0x1935] = 0x71de, + [0x1936] = 0x720e, [0x1937] = 0x5911, [0x1938] = 0x7218, [0x1939] = 0x7347, + [0x193a] = 0x7348, [0x193b] = 0x73ef, [0x193c] = 0x7412, [0x193d] = 0x743b, + [0x193e] = 0x74a4, [0x193f] = 0x748d, [0x1940] = 0x74b4, [0x1941] = 0x7673, + [0x1942] = 0x7677, [0x1943] = 0x76bc, [0x1944] = 0x7819, [0x1945] = 0x781b, + [0x1946] = 0x783d, [0x1947] = 0x7853, [0x1948] = 0x7854, [0x1949] = 0x7858, + [0x194a] = 0x78b7, [0x194b] = 0x78d8, [0x194c] = 0x78ee, [0x194d] = 0x7922, + [0x194e] = 0x794d, [0x194f] = 0x7986, [0x1950] = 0x7999, [0x1951] = 0x79a3, + [0x1952] = 0x79bc, [0x1953] = 0x7aa7, [0x1954] = 0x7b37, [0x1955] = 0x7b59, + [0x1956] = 0x7bd0, [0x1957] = 0x7c2f, [0x1958] = 0x7c32, [0x1959] = 0x7c42, + [0x195a] = 0x7c4e, [0x195b] = 0x7c68, [0x195c] = 0x7ca9, [0x195d] = 0x7ced, + [0x195e] = 0x7dd0, [0x195f] = 0x7e07, [0x1960] = 0x7dd3, [0x1961] = 0x7e64, + [0x1962] = 0x7f40, [0x1964] = 0x8041, [0x1965] = 0x8063, [0x1966] = 0x80bb, + [0x1967] = 0x6711, [0x1968] = 0x6725, [0x1969] = 0x8248, [0x196a] = 0x8310, + [0x196b] = 0x8362, [0x196c] = 0x8312, [0x196d] = 0x8421, [0x196e] = 0x841e, + [0x196f] = 0x84e2, [0x1970] = 0x84de, [0x1971] = 0x84e1, [0x1972] = 0x8573, + [0x1973] = 0x85d4, [0x1974] = 0x85f5, [0x1975] = 0x8637, [0x1976] = 0x8645, + [0x1977] = 0x8672, [0x1978] = 0x874a, [0x1979] = 0x87a9, [0x197a] = 0x87a5, + [0x197b] = 0x87f5, [0x197c] = 0x8834, [0x197d] = 0x8850, [0x197e] = 0x8887, + [0x197f] = 0x8954, [0x1980] = 0x8984, [0x1981] = 0x8b03, [0x1982] = 0x8c52, + [0x1983] = 0x8cd8, [0x1984] = 0x8d0c, [0x1985] = 0x8d18, [0x1986] = 0x8db0, + [0x1987] = 0x8ebc, [0x1988] = 0x8ed5, [0x1989] = 0x8faa, [0x198a] = 0x909c, + [0x198c] = 0x915c, [0x198d] = 0x922b, [0x198e] = 0x9221, [0x198f] = 0x9273, + [0x1990] = 0x92f4, [0x1991] = 0x92f5, [0x1992] = 0x933f, [0x1993] = 0x9342, + [0x1994] = 0x9386, [0x1995] = 0x93be, [0x1996] = 0x93bc, [0x1997] = 0x93bd, + [0x1998] = 0x93f1, [0x1999] = 0x93f2, [0x199a] = 0x93ef, [0x199b] = 0x9422, + [0x199c] = 0x9423, [0x199d] = 0x9424, [0x199e] = 0x9467, [0x199f] = 0x9466, + [0x19a0] = 0x9597, [0x19a1] = 0x95ce, [0x19a2] = 0x95e7, [0x19a3] = 0x973b, + [0x19a4] = 0x974d, [0x19a5] = 0x98e4, [0x19a6] = 0x9942, [0x19a7] = 0x9b1d, + [0x19a8] = 0x9b98, [0x19aa] = 0x9d49, [0x19ab] = 0x6449, [0x19ac] = 0x5e71, + [0x19ad] = 0x5e85, [0x19ae] = 0x61d3, [0x19af] = 0x990e, [0x19b0] = 0x8002, + [0x19b1] = 0x781e, [0x19b4] = 0x5528, [0x19b5] = 0x5572, [0x19b6] = 0x55ba, + [0x19b7] = 0x55f0, [0x19b8] = 0x55ee, [0x19b9] = 0x56b8, [0x19ba] = 0x56b9, + [0x19bb] = 0x56c4, [0x19bc] = 0x8053, [0x19bd] = 0x92b0, +}; + +/* The following table contains no hole and is therefore compact. Nice + work compared with the chaos of other character sets (or plane 1). + + The table can be generated using + + egrep '^0x4' CNS11643.TXT | + awk '{print $1, $2}' | perl tab.pl + + where tab.pl is: + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + $n=0; + while (<>) { + local($cns, $ucs4, %rest) = split; + local($u)=hex($ucs4); + local($c)=hex($cns)-0x42121; + printf ("\n ") if ($n % 4 eq 0); + ++$n; + printf (" [0x%04x] = 0x%04x,", + int($c / 256) * 94 + ($c & 0xff), $u); + } + printf ("\n"); + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +*/ +const uint32_t __cns11643l4_to_ucs4_tab[] = +{ + [0x0000] = 0x20086, [0x0001] = 0x4e40, [0x0002] = 0x4e41, [0x0003] = 0x4e5a, + [0x0004] = 0x21fe8, [0x0005] = 0x4e02, [0x0006] = 0x4e29, [0x0007] = 0x2010e, + [0x0008] = 0x20627, [0x0009] = 0x5202, [0x000a] = 0x353e, [0x000b] = 0x5ddc, + [0x000c] = 0x2053c, [0x000d] = 0x20675, [0x000f] = 0x5342, [0x0010] = 0x536a, + [0x0011] = 0x5b52, [0x0012] = 0x2193c, [0x0015] = 0x5fc4, [0x0016] = 0x624c, + [0x0017] = 0x72ad, [0x0018] = 0x4e12, [0x0019] = 0x4e2f, [0x001a] = 0x4e96, + [0x001b] = 0x4ed0, [0x001c] = 0x5142, [0x001d] = 0x5183, [0x001f] = 0x206a5, + [0x0020] = 0x206aa, [0x0021] = 0x2090f, [0x0022] = 0x20a0e, [0x0023] = 0x5383, + [0x0024] = 0x53b8, [0x0025] = 0x20b9c, [0x0026] = 0x20b9b, [0x0027] = 0x2123c, + [0x0028] = 0x5928, [0x0029] = 0x21bc2, [0x002a] = 0x5c23, [0x002b] = 0x5e01, + [0x002c] = 0x5f00, [0x002d] = 0x233b4, [0x002e] = 0x3cb8, [0x002f] = 0x706c, + [0x0030] = 0x722b, [0x0031] = 0x5188, [0x0032] = 0x8279, [0x0033] = 0x8fb6, + [0x0034] = 0x4e17, [0x0035] = 0x20065, [0x0036] = 0x340c, [0x0037] = 0x201b2, + [0x0038] = 0x3430, [0x0039] = 0x4ee2, [0x003a] = 0x4edb, [0x003b] = 0x20477, + [0x003c] = 0x20542, [0x003d] = 0x51ad, [0x003e] = 0x20633, [0x003f] = 0x51f7, + [0x0040] = 0x34da, [0x0041] = 0x206af, [0x0042] = 0x20836, [0x0043] = 0x3513, + [0x0044] = 0x531b, [0x0045] = 0x5388, [0x0046] = 0x5387, [0x0047] = 0x20b22, + [0x0048] = 0x53cf, [0x0049] = 0x53fd, [0x004a] = 0x3563, [0x004b] = 0x53e7, + [0x004c] = 0x56dc, [0x004d] = 0x211a3, [0x004e] = 0x56d9, [0x004f] = 0x5725, + [0x0050] = 0x5727, [0x0051] = 0x5933, [0x0052] = 0x5c13, [0x0053] = 0x21c25, + [0x0054] = 0x21c24, [0x0055] = 0x5c75, [0x0056] = 0x22052, [0x0057] = 0x22189, + [0x0058] = 0x224bf, [0x0059] = 0x39c4, [0x005a] = 0x39c3, [0x005b] = 0x66f1, + [0x005c] = 0x233b5, [0x005d] = 0x2574c, [0x005e] = 0x7f52, [0x005f] = 0x28e14, + [0x0060] = 0x28e12, [0x0061] = 0x3401, [0x0062] = 0x200a3, [0x0063] = 0x200a2, + [0x0064] = 0x4e51, [0x0065] = 0x4e6a, [0x0066] = 0x201b6, [0x0067] = 0x4f0c, + [0x0068] = 0x201b5, [0x0069] = 0x201b4, [0x006a] = 0x4efe, [0x006b] = 0x4f1b, + [0x006c] = 0x201c2, [0x006d] = 0x201b8, [0x006e] = 0x343a, [0x006f] = 0x20479, + [0x0070] = 0x34ab, [0x0071] = 0x5173, [0x0072] = 0x20508, [0x0073] = 0x518e, + [0x0074] = 0x2057a, [0x0075] = 0x205b6, [0x0076] = 0x206bd, [0x0077] = 0x206b7, + [0x0078] = 0x206bc, [0x0079] = 0x34dd, [0x007a] = 0x206c4, [0x007b] = 0x206c9, + [0x007c] = 0x52a5, [0x007d] = 0x3515, [0x007e] = 0x52a7, [0x007f] = 0x52a4, + [0x0080] = 0x20930, [0x0081] = 0x20983, [0x0082] = 0x20985, [0x0083] = 0x20a12, + [0x0084] = 0x20a34, [0x0085] = 0x53bd, [0x0086] = 0x20ae4, [0x0087] = 0x20ade, + [0x0088] = 0x20b2a, [0x0089] = 0x5402, [0x008a] = 0x20baf, [0x008b] = 0x20bb4, + [0x008c] = 0x20bb3, [0x008d] = 0x20bb1, [0x008e] = 0x572b, [0x008f] = 0x591b, + [0x0090] = 0x5935, [0x0091] = 0x215de, [0x0092] = 0x36a7, [0x0093] = 0x36a5, + [0x0094] = 0x216b8, [0x0095] = 0x216b0, [0x0096] = 0x36a6, [0x0097] = 0x219c2, + [0x0099] = 0x5c17, [0x009a] = 0x377c, [0x009b] = 0x21c2a, [0x009c] = 0x5c70, + [0x009d] = 0x5c7d, [0x009e] = 0x37a9, [0x009f] = 0x21fe9, [0x00a0] = 0x5de9, + [0x00a1] = 0x22057, [0x00a2] = 0x3834, [0x00a3] = 0x3835, [0x00a4] = 0x221b6, + [0x00a5] = 0x221d7, [0x00a6] = 0x221de, [0x00a7] = 0x38a8, [0x00a8] = 0x5f19, + [0x00a9] = 0x5f1c, [0x00aa] = 0x5f75, [0x00ab] = 0x224c2, [0x00ac] = 0x225ab, + [0x00ad] = 0x38ff, [0x00ae] = 0x5fc8, [0x00af] = 0x2298f, [0x00b0] = 0x39c7, + [0x00b1] = 0x39c6, [0x00b2] = 0x39c8, [0x00b3] = 0x22a6d, [0x00b4] = 0x22eb5, + [0x00b5] = 0x3ad0, [0x00b6] = 0x3ad1, [0x00b7] = 0x233c0, [0x00b8] = 0x233bf, + [0x00b9] = 0x3c59, [0x00ba] = 0x239b9, [0x00bb] = 0x23b1c, [0x00bc] = 0x6c12, + [0x00bd] = 0x3cbd, [0x00be] = 0x23c80, [0x00bf] = 0x24184, [0x00c0] = 0x24185, + [0x00c1] = 0x3e28, [0x00c2] = 0x72b3, [0x00c3] = 0x24724, [0x00c4] = 0x3ea9, + [0x00c5] = 0x7390, [0x00c6] = 0x7536, [0x00c7] = 0x2634c, [0x00c8] = 0x43cc, + [0x00c9] = 0x26af6, [0x00ca] = 0x8281, [0x00cb] = 0x8fb8, [0x00cc] = 0x28670, + [0x00cd] = 0x48b4, [0x00ce] = 0x28675, [0x00cf] = 0x28e17, [0x00d0] = 0x4e23, + [0x00d1] = 0x3416, [0x00d2] = 0x342c, [0x00d3] = 0x201f1, [0x00d4] = 0x4f2e, + [0x00d5] = 0x201da, [0x00d6] = 0x514f, [0x00d7] = 0x205b9, [0x00d8] = 0x51ba, + [0x00d9] = 0x34df, [0x00da] = 0x34e0, [0x00db] = 0x5222, [0x00dc] = 0x206ce, + [0x00dd] = 0x206d2, [0x00de] = 0x206d0, [0x00df] = 0x3517, [0x00e0] = 0x20843, + [0x00e1] = 0x52af, [0x00e2] = 0x52b0, [0x00e3] = 0x52b1, [0x00e4] = 0x2084d, + [0x00e5] = 0x20934, [0x00e6] = 0x352f, [0x00e7] = 0x209d9, [0x00e8] = 0x5364, + [0x00e9] = 0x20a18, [0x00ea] = 0x53d3, [0x00eb] = 0x20b38, [0x00ec] = 0x356a, + [0x00ed] = 0x20bd7, [0x00ee] = 0x3570, [0x00ef] = 0x356d, [0x00f0] = 0x20bdc, + [0x00f1] = 0x20bcb, [0x00f2] = 0x20bd6, [0x00f3] = 0x20bd8, [0x00f4] = 0x356e, + [0x00f5] = 0x20bd1, [0x00f8] = 0x20bd2, [0x00f9] = 0x362b, [0x00fa] = 0x3628, + [0x00fb] = 0x21259, [0x00fd] = 0x593f, [0x00fe] = 0x215e5, [0x00ff] = 0x215e6, + [0x0100] = 0x3692, [0x0101] = 0x215e8, [0x0102] = 0x598b, [0x0103] = 0x216bd, + [0x0104] = 0x5991, [0x0105] = 0x5995, [0x0106] = 0x216be, [0x0107] = 0x21949, + [0x0108] = 0x373f, [0x0109] = 0x219cd, [0x010a] = 0x5b8a, [0x010b] = 0x374f, + [0x010c] = 0x3774, [0x010d] = 0x21b5e, [0x010e] = 0x21bd0, [0x010f] = 0x377d, + [0x0110] = 0x21d06, [0x0111] = 0x37b7, [0x0112] = 0x37a3, [0x0113] = 0x37b0, + [0x0114] = 0x37b1, [0x0115] = 0x5c87, [0x0116] = 0x37ab, [0x0117] = 0x21d7c, + [0x0118] = 0x21d71, [0x0119] = 0x21fef, [0x011a] = 0x383a, [0x011b] = 0x3837, + [0x011c] = 0x5e0d, [0x011d] = 0x3838, [0x011e] = 0x3840, [0x011f] = 0x2218d, + [0x0120] = 0x221b7, [0x0121] = 0x5e8e, [0x0122] = 0x389f, [0x0123] = 0x22333, + [0x0124] = 0x2237f, [0x0125] = 0x5f7a, [0x0126] = 0x225f2, [0x0127] = 0x3904, + [0x0128] = 0x3909, [0x0129] = 0x3906, [0x012a] = 0x38fd, [0x012b] = 0x390a, + [0x012c] = 0x3907, [0x012d] = 0x22a2a, [0x012e] = 0x22a8b, [0x012f] = 0x39ca, + [0x0130] = 0x22a83, [0x0131] = 0x22a8a, [0x0132] = 0x6290, [0x0133] = 0x39c9, + [0x0134] = 0x22a8e, [0x0135] = 0x629a, [0x0136] = 0x22eb6, [0x0137] = 0x653c, + [0x0138] = 0x653a, [0x0139] = 0x3a7f, [0x013a] = 0x6598, [0x013b] = 0x230d8, + [0x013c] = 0x3ad2, [0x013d] = 0x23156, [0x013e] = 0x233d2, [0x013f] = 0x6765, + [0x0141] = 0x3b43, [0x0142] = 0x233c2, [0x0143] = 0x23887, [0x0144] = 0x23881, + [0x0145] = 0x239c2, [0x0146] = 0x239bc, [0x0147] = 0x23b23, [0x0148] = 0x3cc1, + [0x0149] = 0x23c93, [0x014a] = 0x3cc5, [0x014b] = 0x3da3, [0x014c] = 0x2418d, + [0x014d] = 0x2418e, [0x014e] = 0x3e2a, [0x014f] = 0x3e5f, [0x0150] = 0x2473b, + [0x0151] = 0x2474d, [0x0152] = 0x3e5d, [0x0153] = 0x24734, [0x0154] = 0x24731, + [0x0155] = 0x248f2, [0x0156] = 0x248f0, [0x0157] = 0x3f17, [0x0158] = 0x24c15, + [0x0159] = 0x24d28, [0x015a] = 0x3f71, [0x015b] = 0x3f72, [0x015c] = 0x24f25, + [0x015d] = 0x250e7, [0x015e] = 0x400f, [0x015f] = 0x250e9, [0x0160] = 0x25417, + [0x0161] = 0x79c2, [0x0162] = 0x4191, [0x0163] = 0x2626c, [0x0164] = 0x26280, + [0x0165] = 0x2634b, [0x0166] = 0x43b2, [0x0167] = 0x43cf, [0x0168] = 0x43ce, + [0x0169] = 0x809e, [0x016a] = 0x268de, [0x016b] = 0x268fb, [0x016c] = 0x81eb, + [0x016d] = 0x26951, [0x016e] = 0x8289, [0x016f] = 0x4496, [0x0170] = 0x26b01, + [0x0171] = 0x26b02, [0x0172] = 0x8296, [0x0173] = 0x26b05, [0x0174] = 0x8287, + [0x0175] = 0x26b03, [0x0176] = 0x4497, [0x0177] = 0x28451, [0x0178] = 0x8fc0, + [0x0179] = 0x488b, [0x017a] = 0x8fc3, [0x017b] = 0x28453, [0x017c] = 0x2867a, + [0x017d] = 0x28678, [0x017e] = 0x28676, [0x017f] = 0x28679, [0x0180] = 0x2868f, + [0x0181] = 0x2867c, [0x0182] = 0x9578, [0x0183] = 0x28e1b, [0x0184] = 0x28e1c, + [0x0185] = 0x9625, [0x0186] = 0x23d92, [0x0187] = 0x4e75, [0x0188] = 0x4e74, + [0x0189] = 0x2012e, [0x018a] = 0x2012c, [0x018b] = 0x342d, [0x018c] = 0x2020c, + [0x018d] = 0x4f99, [0x018e] = 0x2020b, [0x018f] = 0x3450, [0x0190] = 0x344b, + [0x0191] = 0x20205, [0x0192] = 0x344f, [0x0193] = 0x344c, [0x0195] = 0x4f71, + [0x0196] = 0x5153, [0x0197] = 0x51bf, [0x0198] = 0x205c2, [0x0199] = 0x205c3, + [0x019a] = 0x51c0, [0x019b] = 0x20648, [0x019c] = 0x51ee, [0x019d] = 0x20646, + [0x019e] = 0x34e4, [0x019f] = 0x34e3, [0x01a0] = 0x206ea, [0x01a1] = 0x34e1, + [0x01a2] = 0x206eb, [0x01a3] = 0x34e2, [0x01a4] = 0x206ee, [0x01a5] = 0x523d, + [0x01a6] = 0x3519, [0x01a7] = 0x52bd, [0x01a8] = 0x530c, [0x01a9] = 0x208d8, + [0x01aa] = 0x24c1e, [0x01ab] = 0x209df, [0x01ac] = 0x209de, [0x01ad] = 0x3541, + [0x01ae] = 0x7f37, [0x01af] = 0x20a4f, [0x01b0] = 0x53c0, [0x01b1] = 0x355e, + [0x01b2] = 0x20c0d, [0x01b3] = 0x20c08, [0x01b4] = 0x3579, [0x01b5] = 0x20c09, + [0x01b6] = 0x546e, [0x01b7] = 0x5483, [0x01b8] = 0x20c12, [0x01b9] = 0x20c65, + [0x01ba] = 0x545e, [0x01bb] = 0x545d, [0x01bc] = 0x577e, [0x01bd] = 0x5779, + [0x01be] = 0x21289, [0x01bf] = 0x577a, [0x01c0] = 0x576c, [0x01c1] = 0x21284, + [0x01c2] = 0x2129e, [0x01c3] = 0x2128b, [0x01c4] = 0x3632, [0x01c5] = 0x5787, + [0x01c6] = 0x21562, [0x01c7] = 0x591d, [0x01c8] = 0x3694, [0x01c9] = 0x5946, + [0x01ca] = 0x3697, [0x01cb] = 0x215f9, [0x01cc] = 0x5943, [0x01cd] = 0x215f7, + [0x01ce] = 0x3696, [0x01cf] = 0x3698, [0x01d0] = 0x21606, [0x01d1] = 0x216dd, + [0x01d2] = 0x36b2, [0x01d3] = 0x216d9, [0x01d4] = 0x216df, [0x01d5] = 0x216e2, + [0x01d6] = 0x36b9, [0x01d7] = 0x5b61, [0x01d8] = 0x5b66, [0x01d9] = 0x200f1, + [0x01da] = 0x5b90, [0x01db] = 0x3775, [0x01dc] = 0x377f, [0x01dd] = 0x377e, + [0x01de] = 0x5c29, [0x01df] = 0x378f, [0x01e0] = 0x21c3f, [0x01e1] = 0x21c3e, + [0x01e2] = 0x21d0b, [0x01e3] = 0x37bd, [0x01e4] = 0x5cb2, [0x01e5] = 0x21d83, + [0x01e6] = 0x37bb, [0x01e7] = 0x37bc, [0x01e8] = 0x21d86, [0x01e9] = 0x5cc0, + [0x01ea] = 0x2207c, [0x01eb] = 0x383d, [0x01ec] = 0x383e, [0x01ed] = 0x3874, + [0x01ee] = 0x221f7, [0x01ef] = 0x387a, [0x01f0] = 0x3876, [0x01f1] = 0x3878, + [0x01f2] = 0x3875, [0x01f3] = 0x221fb, [0x01f4] = 0x2233b, [0x01f5] = 0x38af, + [0x01f6] = 0x38b0, [0x01f7] = 0x38c7, [0x01f8] = 0x38cc, [0x01f9] = 0x225f9, + [0x01fa] = 0x225ca, [0x01fb] = 0x3916, [0x01fc] = 0x225ff, [0x01fd] = 0x3912, + [0x01fe] = 0x391d, [0x01ff] = 0x22609, [0x0200] = 0x22603, [0x0201] = 0x3915, + [0x0202] = 0x390f, [0x0203] = 0x3914, [0x0204] = 0x601f, [0x0205] = 0x5fe2, + [0x0206] = 0x22610, [0x0207] = 0x2299a, [0x0208] = 0x2299f, [0x0209] = 0x39b0, + [0x020a] = 0x39bf, [0x020b] = 0x39c0, [0x020c] = 0x22a87, [0x020d] = 0x39d2, + [0x020e] = 0x39d9, [0x020f] = 0x22eb7, [0x0210] = 0x3a7a, [0x0211] = 0x22f08, + [0x0212] = 0x22ef9, [0x0215] = 0x22ef4, [0x0216] = 0x6616, [0x0217] = 0x65f9, + [0x0218] = 0x3ada, [0x0219] = 0x26657, [0x021a] = 0x6788, [0x021b] = 0x233d6, + [0x021c] = 0x679b, [0x021e] = 0x676e, [0x021f] = 0x679e, [0x0220] = 0x233d4, + [0x0221] = 0x3c22, [0x0222] = 0x3c1f, [0x0223] = 0x23890, [0x0224] = 0x2388d, + [0x0225] = 0x3c21, [0x0226] = 0x6b24, [0x0227] = 0x23960, [0x0228] = 0x239ce, + [0x0229] = 0x239cf, [0x022a] = 0x3c5c, [0x022b] = 0x6b7d, [0x022c] = 0x239d1, + [0x022d] = 0x3c7d, [0x022e] = 0x3c8d, [0x022f] = 0x3c8f, [0x0230] = 0x6ce6, + [0x0231] = 0x23cca, [0x0232] = 0x6ccb, [0x0233] = 0x3cd0, [0x0234] = 0x23cb7, + [0x0235] = 0x3cd8, [0x0236] = 0x23cb2, [0x0237] = 0x23cbb, [0x0238] = 0x23cb9, + [0x0239] = 0x6cb5, [0x023a] = 0x3da7, [0x023b] = 0x2419e, [0x023c] = 0x7097, + [0x023d] = 0x241b2, [0x023e] = 0x709b, [0x023f] = 0x3e12, [0x0240] = 0x2456f, + [0x0241] = 0x245ac, [0x0242] = 0x3e2f, [0x0243] = 0x24623, [0x0244] = 0x726b, + [0x0245] = 0x3e2e, [0x0246] = 0x3e2c, [0x0247] = 0x3e5c, [0x0248] = 0x2476c, + [0x0249] = 0x72d5, [0x024a] = 0x24732, [0x024b] = 0x2475e, [0x024c] = 0x3e62, + [0x024d] = 0x3e67, [0x024e] = 0x3eb4, [0x024f] = 0x248fb, [0x0250] = 0x24b29, + [0x0251] = 0x24bbd, [0x0252] = 0x24c1f, [0x0253] = 0x7543, [0x0254] = 0x22341, + [0x0255] = 0x24c1d, [0x0256] = 0x759c, [0x0257] = 0x24d31, [0x0258] = 0x24d2f, + [0x0259] = 0x3fea, [0x025a] = 0x25043, [0x025b] = 0x3ffb, [0x025c] = 0x25041, + [0x025d] = 0x4014, [0x025e] = 0x250f5, [0x025f] = 0x4013, [0x0260] = 0x4012, + [0x0261] = 0x4010, [0x0262] = 0x4011, [0x0263] = 0x250f2, [0x0264] = 0x4086, + [0x0265] = 0x77e4, [0x0266] = 0x4098, [0x0267] = 0x2541e, [0x0268] = 0x25754, + [0x0269] = 0x412a, [0x026a] = 0x25756, [0x026b] = 0x25929, [0x026c] = 0x25927, + [0x026d] = 0x25928, [0x026e] = 0x7ace, [0x026f] = 0x42b5, [0x0270] = 0x26279, + [0x0271] = 0x2627e, [0x0272] = 0x264b6, [0x0273] = 0x264b7, [0x0274] = 0x8013, + [0x0275] = 0x43d6, [0x0276] = 0x43d8, [0x0277] = 0x80b7, [0x0278] = 0x43d9, + [0x0279] = 0x43d4, [0x027a] = 0x43d7, [0x027c] = 0x80b9, [0x027e] = 0x2664d, + [0x027f] = 0x81e4, [0x0280] = 0x81fd, [0x0281] = 0x820f, [0x0282] = 0x4460, + [0x0283] = 0x26a09, [0x0284] = 0x26a08, [0x0285] = 0x449e, [0x0286] = 0x44a1, + [0x0287] = 0x26b1e, [0x0288] = 0x26b1a, [0x0289] = 0x26b23, [0x028a] = 0x26b15, + [0x028b] = 0x26b19, [0x028c] = 0x26b16, [0x028d] = 0x82bf, [0x028e] = 0x82ca, + [0x028f] = 0x26b14, [0x0290] = 0x26b18, [0x0291] = 0x82c1, [0x0292] = 0x44a0, + [0x0293] = 0x2721f, [0x0294] = 0x275dd, [0x0295] = 0x275df, [0x0296] = 0x28469, + [0x0297] = 0x8fd0, [0x0299] = 0x2846c, [0x029a] = 0x48b9, [0x029b] = 0x28693, + [0x029c] = 0x90ae, [0x029d] = 0x28695, [0x029e] = 0x28694, [0x029f] = 0x28691, + [0x02a0] = 0x28697, [0x02a1] = 0x28e30, [0x02a2] = 0x49c1, [0x02a3] = 0x49c2, + [0x02a4] = 0x9638, [0x02a6] = 0x341c, [0x02a7] = 0x20231, [0x02a8] = 0x345e, + [0x02a9] = 0x4fbc, [0x02aa] = 0x3459, [0x02ab] = 0x345c, [0x02ac] = 0x20236, + [0x02ad] = 0x345f, [0x02ae] = 0x4fe9, [0x02af] = 0x4fbd, [0x02b0] = 0x4fe2, + [0x02b1] = 0x5158, [0x02b2] = 0x205c9, [0x02b3] = 0x205ca, [0x02b4] = 0x34ce, + [0x02b5] = 0x20718, [0x02b6] = 0x20712, [0x02b7] = 0x20719, [0x02b8] = 0x20710, + [0x02b9] = 0x20716, [0x02ba] = 0x52c6, [0x02bb] = 0x2085f, [0x02bc] = 0x52c8, + [0x02bd] = 0x208df, [0x02be] = 0x20917, [0x02bf] = 0x5328, [0x02c0] = 0x2093c, + [0x02c1] = 0x5329, [0x02c2] = 0x209ea, [0x02c3] = 0x209e9, [0x02c4] = 0x20a1c, + [0x02c5] = 0x20a58, [0x02c6] = 0x20a64, [0x02c7] = 0x20af3, [0x02c8] = 0x355f, + [0x02c9] = 0x20c97, [0x02ca] = 0x3585, [0x02cb] = 0x20c5a, [0x02cc] = 0x20c59, + [0x02cd] = 0x3586, [0x02ce] = 0x20c8e, [0x02cf] = 0x57b4, [0x02d0] = 0x212bc, + [0x02d1] = 0x57a9, [0x02d2] = 0x3687, [0x02d3] = 0x2160d, [0x02d4] = 0x215fc, + [0x02d5] = 0x2160c, [0x02d6] = 0x21707, [0x02d7] = 0x2170a, [0x02d8] = 0x36ca, + [0x02d9] = 0x21702, [0x02da] = 0x36c3, [0x02db] = 0x21726, [0x02dc] = 0x21708, + [0x02dd] = 0x2171d, [0x02de] = 0x36c2, [0x02df] = 0x5b68, [0x02e0] = 0x2194e, + [0x02e1] = 0x3741, [0x02e2] = 0x219ed, [0x02e3] = 0x219ee, [0x02e4] = 0x219ef, + [0x02e5] = 0x3780, [0x02e6] = 0x3781, [0x02e7] = 0x21c50, [0x02e8] = 0x21c4c, + [0x02e9] = 0x3793, [0x02ea] = 0x3792, [0x02eb] = 0x21c4f, [0x02ec] = 0x37c5, + [0x02ed] = 0x21dd4, [0x02ef] = 0x21db0, [0x02f0] = 0x3846, [0x02f1] = 0x3841, + [0x02f2] = 0x3845, [0x02f3] = 0x3842, [0x02f4] = 0x383f, [0x02f5] = 0x220a5, + [0x02f6] = 0x22209, [0x02f7] = 0x3882, [0x02f8] = 0x3881, [0x02f9] = 0x387f, + [0x02fa] = 0x38a5, [0x02fb] = 0x5f2b, [0x02fc] = 0x38b3, [0x02fd] = 0x38b5, + [0x02fe] = 0x223f3, [0x02ff] = 0x223d7, [0x0300] = 0x5f8d, [0x0301] = 0x38da, + [0x0302] = 0x224dc, [0x0303] = 0x38db, [0x0304] = 0x390d, [0x0305] = 0x6018, + [0x0306] = 0x390e, [0x0307] = 0x2260b, [0x0308] = 0x391e, [0x0309] = 0x3925, + [0x030a] = 0x3926, [0x030b] = 0x391c, [0x030c] = 0x3921, [0x030d] = 0x6057, + [0x030e] = 0x6048, [0x030f] = 0x3927, [0x0310] = 0x391a, [0x0311] = 0x2263a, + [0x0312] = 0x2260d, [0x0313] = 0x22611, [0x0314] = 0x6038, [0x0315] = 0x22620, + [0x0316] = 0x22601, [0x0317] = 0x3924, [0x0318] = 0x22637, [0x031a] = 0x6071, + [0x031b] = 0x229aa, [0x031c] = 0x39c1, [0x031d] = 0x39e1, [0x031e] = 0x22ae7, + [0x031f] = 0x22ae8, [0x0320] = 0x6312, [0x0321] = 0x39eb, [0x0322] = 0x22af5, + [0x0323] = 0x39e2, [0x0324] = 0x39d7, [0x0325] = 0x39e9, [0x0326] = 0x22b35, + [0x0327] = 0x22ae6, [0x0328] = 0x630a, [0x0329] = 0x22af8, [0x032a] = 0x6323, + [0x032b] = 0x22af1, [0x032c] = 0x3a84, [0x032d] = 0x22f14, [0x032e] = 0x22f15, + [0x032f] = 0x22f09, [0x0330] = 0x3ab5, [0x0331] = 0x3abc, [0x0332] = 0x3adc, + [0x0333] = 0x3ade, [0x0334] = 0x3adf, [0x0335] = 0x2317b, [0x0336] = 0x662a, + [0x0337] = 0x2317e, [0x0338] = 0x23366, [0x0339] = 0x23367, [0x033a] = 0x2340a, + [0x033b] = 0x3b54, [0x033c] = 0x67e0, [0x033d] = 0x67be, [0x033e] = 0x3b53, + [0x033f] = 0x3c24, [0x0340] = 0x3c25, [0x0341] = 0x6b29, [0x0342] = 0x3c28, + [0x0343] = 0x3c27, [0x0344] = 0x2389c, [0x0345] = 0x23962, [0x0346] = 0x239e1, + [0x0347] = 0x239de, [0x0348] = 0x239df, [0x0349] = 0x239e9, [0x034a] = 0x3c8b, + [0x034b] = 0x23ce4, [0x034c] = 0x23cf7, [0x034d] = 0x3cdc, [0x034e] = 0x6d43, + [0x034f] = 0x23cea, [0x0350] = 0x23cf6, [0x0351] = 0x23d12, [0x0353] = 0x70a6, + [0x0354] = 0x3db2, [0x0355] = 0x70c0, [0x0356] = 0x241d9, [0x0357] = 0x722f, + [0x0358] = 0x2455f, [0x0359] = 0x3e1b, [0x035a] = 0x24573, [0x035b] = 0x3e32, + [0x035c] = 0x7271, [0x035d] = 0x2463f, [0x035e] = 0x24778, [0x035f] = 0x3e6b, + [0x0360] = 0x2477d, [0x0361] = 0x3e6c, [0x0362] = 0x3e6d, [0x0363] = 0x24912, + [0x0364] = 0x3eb9, [0x0365] = 0x3eba, [0x0366] = 0x3f09, [0x0367] = 0x3f0a, + [0x0368] = 0x24b2f, [0x0369] = 0x74ea, [0x036a] = 0x3f1b, [0x036b] = 0x24b30, + [0x036c] = 0x24bdb, [0x036d] = 0x7520, [0x036e] = 0x3f58, [0x036f] = 0x24c29, + [0x0370] = 0x3f5a, [0x0372] = 0x24d40, [0x0373] = 0x3f77, [0x0374] = 0x24d3d, + [0x0375] = 0x24d3e, [0x0376] = 0x3f79, [0x0377] = 0x75a9, [0x0378] = 0x24d38, + [0x0379] = 0x7685, [0x037a] = 0x24f48, [0x037b] = 0x3feb, [0x037c] = 0x24fd0, + [0x037d] = 0x3ffd, [0x037e] = 0x3ffc, [0x037f] = 0x7706, [0x0380] = 0x4015, + [0x0381] = 0x4018, [0x0382] = 0x76f6, [0x0383] = 0x4016, [0x0384] = 0x4017, + [0x0385] = 0x4019, [0x0386] = 0x7700, [0x0387] = 0x401b, [0x0388] = 0x2510e, + [0x0389] = 0x25109, [0x038a] = 0x7702, [0x038b] = 0x25107, [0x038c] = 0x4087, + [0x038d] = 0x2535f, [0x038e] = 0x25360, [0x038f] = 0x409c, [0x0390] = 0x2542a, + [0x0391] = 0x409a, [0x0392] = 0x25429, [0x0393] = 0x40ff, [0x0394] = 0x40fe, + [0x0395] = 0x2564d, [0x0396] = 0x4131, [0x0397] = 0x412e, [0x0398] = 0x4130, + [0x0399] = 0x4132, [0x039a] = 0x2576c, [0x039c] = 0x412f, [0x039d] = 0x25767, + [0x039e] = 0x4195, [0x039f] = 0x4196, [0x03a0] = 0x25939, [0x03a1] = 0x25934, + [0x03a2] = 0x25a59, [0x03a3] = 0x41c5, [0x03a4] = 0x427a, [0x03a5] = 0x26223, + [0x03a6] = 0x4342, [0x03a7] = 0x26282, [0x03a8] = 0x4354, [0x03a9] = 0x26283, + [0x03aa] = 0x262a8, [0x03ab] = 0x26355, [0x03ac] = 0x263f9, [0x03ad] = 0x263f8, + [0x03ae] = 0x263fc, [0x03af] = 0x263fa, [0x03b0] = 0x8009, [0x03b2] = 0x439f, + [0x03b3] = 0x43a0, [0x03b4] = 0x43a2, [0x03b5] = 0x43e0, [0x03b6] = 0x26674, + [0x03b7] = 0x43e1, [0x03b8] = 0x2666b, [0x03b9] = 0x26671, [0x03ba] = 0x43df, + [0x03bb] = 0x26676, [0x03bc] = 0x26a0e, [0x03bd] = 0x4462, [0x03be] = 0x4461, + [0x03bf] = 0x26a10, [0x03c0] = 0x26a0f, [0x03c1] = 0x44a7, [0x03c2] = 0x26b38, + [0x03c3] = 0x26b39, [0x03c4] = 0x26b3a, [0x03c5] = 0x82da, [0x03c6] = 0x26b37, + [0x03c7] = 0x26b3e, [0x03c8] = 0x830a, [0x03c9] = 0x4589, [0x03ca] = 0x2719c, + [0x03cb] = 0x2722a, [0x03cc] = 0x2723a, [0x03cd] = 0x2722b, [0x03ce] = 0x27228, + [0x03cf] = 0x275aa, [0x03d0] = 0x2760f, [0x03d1] = 0x461d, [0x03d2] = 0x27610, + [0x03d3] = 0x277e6, [0x03d4] = 0x472a, [0x03d5] = 0x27d25, [0x03d6] = 0x27e8e, + [0x03d7] = 0x47d3, [0x03d8] = 0x4842, [0x03d9] = 0x4843, [0x03da] = 0x2848b, + [0x03db] = 0x4891, [0x03dc] = 0x2848c, [0x03dd] = 0x2849a, [0x03de] = 0x4890, + [0x03df] = 0x48bf, [0x03e0] = 0x286b3, [0x03e1] = 0x48bc, [0x03e2] = 0x286b2, + [0x03e3] = 0x48c0, [0x03e4] = 0x49c7, [0x03e5] = 0x49c5, [0x03e6] = 0x9655, + [0x03e7] = 0x28e44, [0x03e8] = 0x9652, [0x03e9] = 0x4e35, [0x03ea] = 0x20158, + [0x03eb] = 0x202a7, [0x03ec] = 0x5034, [0x03ed] = 0x5001, [0x03ee] = 0x20263, + [0x03ef] = 0x500a, [0x03f0] = 0x3466, [0x03f1] = 0x2026a, [0x03f2] = 0x20265, + [0x03f3] = 0x2026b, [0x03f4] = 0x34ad, [0x03f5] = 0x204ed, [0x03f6] = 0x205d9, + [0x03f7] = 0x2073b, [0x03f8] = 0x20732, [0x03f9] = 0x5258, [0x03fa] = 0x20735, + [0x03fb] = 0x20731, [0x03fc] = 0x2073e, [0x03fd] = 0x20743, [0x03fe] = 0x20736, + [0x03ff] = 0x2086d, [0x0400] = 0x351d, [0x0401] = 0x208e4, [0x0402] = 0x3531, + [0x0403] = 0x532b, [0x0404] = 0x209f4, [0x0405] = 0x354c, [0x0406] = 0x20a69, + [0x0407] = 0x20a6b, [0x0408] = 0x3595, [0x0409] = 0x3591, [0x040a] = 0x3594, + [0x040b] = 0x20cbf, [0x040c] = 0x20cc3, [0x040d] = 0x20cae, [0x040e] = 0x358f, + [0x040f] = 0x54ec, [0x0410] = 0x20cb1, [0x0411] = 0x5515, [0x0412] = 0x54fe, + [0x0413] = 0x20cbb, [0x0414] = 0x20caf, [0x0415] = 0x20cb0, [0x0416] = 0x54e3, + [0x0417] = 0x5516, [0x0418] = 0x3640, [0x0419] = 0x212ef, [0x041a] = 0x3641, + [0x041b] = 0x212ed, [0x041c] = 0x57d3, [0x041d] = 0x212f0, [0x041e] = 0x21593, + [0x041f] = 0x21634, [0x0420] = 0x2162b, [0x0421] = 0x5959, [0x0422] = 0x5a27, + [0x0423] = 0x36d8, [0x0424] = 0x36d2, [0x0425] = 0x36da, [0x0426] = 0x5a28, + [0x0427] = 0x5a10, [0x0428] = 0x36d7, [0x0429] = 0x5a0e, [0x042a] = 0x3742, + [0x042b] = 0x3757, [0x042c] = 0x21a04, [0x042d] = 0x21a03, [0x042e] = 0x21a02, + [0x042f] = 0x5baf, [0x0430] = 0x21a05, [0x0431] = 0x5bba, [0x0432] = 0x5bb1, + [0x0433] = 0x21a00, [0x0434] = 0x21b74, [0x0435] = 0x3778, [0x0436] = 0x3782, + [0x0437] = 0x3797, [0x0438] = 0x21c65, [0x0439] = 0x21c63, [0x043a] = 0x37c9, + [0x043b] = 0x21dd7, [0x043c] = 0x37c8, [0x043d] = 0x37d6, [0x043e] = 0x37cc, + [0x043f] = 0x21de8, [0x0440] = 0x37d0, [0x0441] = 0x21ddb, [0x0442] = 0x21dd8, + [0x0443] = 0x37ce, [0x0444] = 0x37c7, [0x0445] = 0x5cfc, [0x0446] = 0x21e09, + [0x0447] = 0x37cf, [0x0448] = 0x37cb, [0x0449] = 0x5cf2, [0x044a] = 0x5cfe, + [0x044b] = 0x21de5, [0x044c] = 0x21de7, [0x044d] = 0x5df8, [0x044e] = 0x2203f, + [0x044f] = 0x3847, [0x0450] = 0x220c0, [0x0451] = 0x3848, [0x0452] = 0x220b9, + [0x0453] = 0x220ba, [0x0454] = 0x3883, [0x0455] = 0x3885, [0x0456] = 0x3884, + [0x0457] = 0x22220, [0x0458] = 0x2234f, [0x0459] = 0x5f2c, [0x045a] = 0x38b8, + [0x045b] = 0x38bc, [0x045c] = 0x22491, [0x045d] = 0x22490, [0x045e] = 0x224ee, + [0x045f] = 0x224f3, [0x0460] = 0x224ec, [0x0461] = 0x224f1, [0x0462] = 0x224eb, + [0x0463] = 0x224f2, [0x0464] = 0x224f4, [0x0465] = 0x224ed, [0x0466] = 0x22641, + [0x0467] = 0x22648, [0x0468] = 0x22645, [0x0469] = 0x3931, [0x046a] = 0x3934, + [0x046b] = 0x3936, [0x046c] = 0x6082, [0x046d] = 0x2267f, [0x046e] = 0x2268b, + [0x046f] = 0x3923, [0x0470] = 0x2263b, [0x0471] = 0x2264e, [0x0472] = 0x393a, + [0x0473] = 0x6091, [0x0474] = 0x608f, [0x0475] = 0x2267c, [0x0476] = 0x39b4, + [0x0477] = 0x39b5, [0x0478] = 0x39ed, [0x0479] = 0x39ec, [0x047a] = 0x39d8, + [0x047b] = 0x22af0, [0x047c] = 0x22b36, [0x047d] = 0x22b3f, [0x047e] = 0x22b43, + [0x047f] = 0x22b31, [0x0480] = 0x22b34, [0x0481] = 0x22b46, [0x0482] = 0x39f6, + [0x0483] = 0x39e7, [0x0484] = 0x22b2f, [0x0485] = 0x22ec3, [0x0486] = 0x3a7c, + [0x0487] = 0x3a7b, [0x0488] = 0x22f36, [0x048a] = 0x6547, [0x048b] = 0x654c, + [0x048c] = 0x22f21, [0x048e] = 0x658a, [0x048f] = 0x23073, [0x0490] = 0x3abe, + [0x0491] = 0x230e6, [0x0492] = 0x3ae7, [0x0493] = 0x3ae5, [0x0494] = 0x3aee, + [0x0495] = 0x67e1, [0x0496] = 0x684a, [0x0497] = 0x2343f, [0x0498] = 0x3b59, + [0x0499] = 0x3b5e, [0x049a] = 0x2346b, [0x049b] = 0x3b5a, [0x049c] = 0x683f, + [0x049d] = 0x3b61, [0x049e] = 0x3b58, [0x049f] = 0x3b5b, [0x04a0] = 0x67bd, + [0x04a1] = 0x23471, [0x04a2] = 0x3b5f, [0x04a4] = 0x3c2a, [0x04a5] = 0x3c2d, + [0x04a6] = 0x238b0, [0x04a7] = 0x3c23, [0x04a8] = 0x3c2b, [0x04a9] = 0x3c2c, + [0x04aa] = 0x239f3, [0x04ab] = 0x3c7e, [0x04ad] = 0x3c93, [0x04ae] = 0x3c99, + [0x04af] = 0x23b61, [0x04b0] = 0x23b5f, [0x04b1] = 0x3cb3, [0x04b2] = 0x3ce7, + [0x04b3] = 0x3cea, [0x04b4] = 0x23d28, [0x04b5] = 0x23d1e, [0x04b6] = 0x23d29, + [0x04b8] = 0x23ceb, [0x04b9] = 0x23d66, [0x04ba] = 0x3db4, [0x04bb] = 0x241f6, + [0x04bc] = 0x70c9, [0x04bd] = 0x3e17, [0x04be] = 0x24560, [0x04bf] = 0x24577, + [0x04c0] = 0x245bb, [0x04c1] = 0x3e21, [0x04c2] = 0x245bc, [0x04c3] = 0x3e38, + [0x04c4] = 0x3e37, [0x04c5] = 0x3e74, [0x04c6] = 0x3e73, [0x04c7] = 0x3e75, + [0x04c8] = 0x247a2, [0x04c9] = 0x247b2, [0x04ca] = 0x2479e, [0x04cb] = 0x3e76, + [0x04cc] = 0x3e78, [0x04cd] = 0x2493a, [0x04ce] = 0x24938, [0x04cf] = 0x73ba, + [0x04d0] = 0x3f0c, [0x04d1] = 0x3f20, [0x04d2] = 0x3f1e, [0x04d3] = 0x24c4d, + [0x04d4] = 0x3f5b, [0x04d5] = 0x24c5e, [0x04d6] = 0x3f5c, [0x04d7] = 0x24d17, + [0x04d8] = 0x3f83, [0x04d9] = 0x75c6, [0x04da] = 0x3f80, [0x04db] = 0x3f81, + [0x04dc] = 0x3f7e, [0x04dd] = 0x3f88, [0x04de] = 0x3f85, [0x04df] = 0x3f89, + [0x04e0] = 0x3f7f, [0x04e1] = 0x3f8e, [0x04e2] = 0x24d64, [0x04e3] = 0x24d67, + [0x04e4] = 0x3f84, [0x04e5] = 0x75b7, [0x04e6] = 0x768c, [0x04e7] = 0x24f59, + [0x04e8] = 0x768d, [0x04e9] = 0x24fda, [0x04ea] = 0x3fee, [0x04eb] = 0x3fed, + [0x04ec] = 0x3ffe, [0x04ed] = 0x25051, [0x04ee] = 0x3fff, [0x04ef] = 0x25055, + [0x04f0] = 0x2513b, [0x04f1] = 0x25134, [0x04f2] = 0x4023, [0x04f3] = 0x25137, + [0x04f4] = 0x7717, [0x04f5] = 0x25131, [0x04f6] = 0x771c, [0x04f7] = 0x401f, + [0x04f8] = 0x2513f, [0x04f9] = 0x25159, [0x04fa] = 0x7714, [0x04fb] = 0x25361, + [0x04fc] = 0x408f, [0x04fd] = 0x4090, [0x04fe] = 0x25458, [0x04ff] = 0x25462, + [0x0500] = 0x25450, [0x0501] = 0x40a0, [0x0502] = 0x25451, [0x0503] = 0x40a6, + [0x0504] = 0x409f, [0x0505] = 0x25446, [0x0506] = 0x40a7, [0x0507] = 0x40a1, + [0x0508] = 0x2562d, [0x0509] = 0x4102, [0x050a] = 0x4136, [0x050b] = 0x25948, + [0x050c] = 0x25951, [0x050d] = 0x2594a, [0x050e] = 0x2594f, [0x050f] = 0x25950, + [0x0510] = 0x25949, [0x0511] = 0x25a63, [0x0512] = 0x41c8, [0x0513] = 0x25a66, + [0x0514] = 0x25a60, [0x0515] = 0x41d8, [0x0516] = 0x7b0c, [0x0517] = 0x41dd, + [0x0518] = 0x41dc, [0x0519] = 0x25af1, [0x051a] = 0x41d7, [0x051b] = 0x25b07, + [0x051c] = 0x41da, [0x051d] = 0x42ba, [0x051e] = 0x25f9b, [0x051f] = 0x25fa3, + [0x0520] = 0x25f9d, [0x0521] = 0x42be, [0x0522] = 0x42c2, [0x0523] = 0x42bb, + [0x0524] = 0x42c0, [0x0525] = 0x25fa9, [0x0526] = 0x25fa7, [0x0527] = 0x25fa4, + [0x0528] = 0x7d23, [0x0529] = 0x25fba, [0x052a] = 0x221c1, [0x052b] = 0x26226, + [0x052c] = 0x4343, [0x052d] = 0x4355, [0x052e] = 0x26294, [0x052f] = 0x26293, + [0x0530] = 0x4357, [0x0531] = 0x4368, [0x0532] = 0x7f98, [0x0533] = 0x7f90, + [0x0534] = 0x26407, [0x0535] = 0x2640d, [0x0536] = 0x26402, [0x0537] = 0x2640c, + [0x0538] = 0x26409, [0x0539] = 0x26408, [0x053a] = 0x26413, [0x053b] = 0x43a1, + [0x053c] = 0x264d2, [0x053d] = 0x803a, [0x053e] = 0x2653e, [0x053f] = 0x2653c, + [0x0540] = 0x26667, [0x0541] = 0x2669e, [0x0542] = 0x43ea, [0x0543] = 0x266ad, + [0x0544] = 0x43e7, [0x0545] = 0x266d9, [0x0546] = 0x26642, [0x0547] = 0x266a3, + [0x0548] = 0x266a0, [0x0549] = 0x43e8, [0x054a] = 0x43e9, [0x054b] = 0x2667c, + [0x054c] = 0x26904, [0x054d] = 0x4454, [0x054e] = 0x26958, [0x054f] = 0x26960, + [0x0550] = 0x269c9, [0x0551] = 0x269c8, [0x0552] = 0x8226, [0x0553] = 0x4465, + [0x0554] = 0x26a1c, [0x0555] = 0x26a1a, [0x0556] = 0x448a, [0x0557] = 0x26b74, + [0x0558] = 0x44b0, [0x0559] = 0x26b6e, [0x055a] = 0x26b6f, [0x055b] = 0x26b79, + [0x055c] = 0x44bc, [0x055d] = 0x832e, [0x055e] = 0x26b77, [0x055f] = 0x8355, + [0x0560] = 0x831a, [0x0561] = 0x44b8, [0x0562] = 0x833d, [0x0563] = 0x26b7c, + [0x0564] = 0x44b2, [0x0565] = 0x26b70, [0x0566] = 0x8330, [0x0567] = 0x44bd, + [0x0568] = 0x26b7a, [0x0569] = 0x26b82, [0x056a] = 0x458a, [0x056b] = 0x8651, + [0x056c] = 0x45a1, [0x056d] = 0x27244, [0x056e] = 0x45a2, [0x056f] = 0x27243, + [0x0570] = 0x8688, [0x0571] = 0x27245, [0x0572] = 0x4615, [0x0573] = 0x27625, + [0x0574] = 0x2761f, [0x0575] = 0x4620, [0x0576] = 0x4673, [0x0577] = 0x277e8, + [0x0578] = 0x898e, [0x0579] = 0x898d, [0x057a] = 0x27809, [0x057b] = 0x278b7, + [0x057c] = 0x278b9, [0x057d] = 0x27964, [0x057e] = 0x27963, [0x057f] = 0x8a09, + [0x0580] = 0x8a14, [0x0581] = 0x46b1, [0x0582] = 0x27962, [0x0583] = 0x27965, + [0x0584] = 0x472b, [0x0585] = 0x27bac, [0x0586] = 0x4745, [0x0587] = 0x27d2a, + [0x0588] = 0x4797, [0x0589] = 0x4798, [0x058a] = 0x27e96, [0x058b] = 0x47d5, + [0x058c] = 0x27fc2, [0x058e] = 0x4893, [0x058f] = 0x4896, [0x0590] = 0x9007, + [0x0591] = 0x4894, [0x0592] = 0x284aa, [0x0593] = 0x284b0, [0x0594] = 0x48c7, + [0x0595] = 0x48c5, [0x0596] = 0x286d4, [0x0597] = 0x286cd, [0x0598] = 0x286d6, + [0x0599] = 0x48c4, [0x059a] = 0x287f0, [0x059b] = 0x9579, [0x059c] = 0x9584, + [0x059d] = 0x49ce, [0x059e] = 0x49ca, [0x059f] = 0x49cc, [0x05a0] = 0x9657, + [0x05a1] = 0x49c9, [0x05a2] = 0x96ba, [0x05a4] = 0x29d4b, [0x05a5] = 0x20162, + [0x05a6] = 0x346e, [0x05a7] = 0x202b7, [0x05a8] = 0x5067, [0x05a9] = 0x202ac, + [0x05aa] = 0x202ab, [0x05ab] = 0x3471, [0x05ac] = 0x202c1, [0x05ad] = 0x34bb, + [0x05ae] = 0x34d3, [0x05af] = 0x205e8, [0x05b0] = 0x20769, [0x05b1] = 0x2075d, + [0x05b2] = 0x2075f, [0x05b3] = 0x34f3, [0x05b4] = 0x34ed, [0x05b5] = 0x34f5, + [0x05b6] = 0x20764, [0x05b7] = 0x20762, [0x05b8] = 0x34f1, [0x05b9] = 0x34f2, + [0x05ba] = 0x34f6, [0x05bb] = 0x3520, [0x05bc] = 0x208f9, [0x05bd] = 0x3528, + [0x05be] = 0x208ee, [0x05bf] = 0x5318, [0x05c0] = 0x532c, [0x05c1] = 0x5359, + [0x05c2] = 0x209ab, [0x05c3] = 0x209ac, [0x05c4] = 0x209aa, [0x05c5] = 0x5368, + [0x05c6] = 0x537e, [0x05c7] = 0x20a86, [0x05c8] = 0x20a7a, [0x05c9] = 0x53a1, + [0x05ca] = 0x20d28, [0x05cb] = 0x35a1, [0x05cc] = 0x555b, [0x05cd] = 0x35aa, + [0x05ce] = 0x35a9, [0x05cf] = 0x20d31, [0x05d0] = 0x35b5, [0x05d1] = 0x35a5, + [0x05d2] = 0x35a8, [0x05d3] = 0x5542, [0x05d4] = 0x35a7, [0x05d5] = 0x5547, + [0x05d6] = 0x20d2d, [0x05d8] = 0x553d, [0x05d9] = 0x20d2b, [0x05da] = 0x20d32, + [0x05db] = 0x5560, [0x05dc] = 0x57eb, [0x05dd] = 0x21329, [0x05de] = 0x21326, + [0x05df] = 0x21353, [0x05e0] = 0x364d, [0x05e1] = 0x21333, [0x05e2] = 0x21334, + [0x05e3] = 0x2159d, [0x05e4] = 0x369c, [0x05e5] = 0x595f, [0x05e6] = 0x21641, + [0x05e7] = 0x36ea, [0x05e8] = 0x36e5, [0x05e9] = 0x21791, [0x05ea] = 0x21769, + [0x05eb] = 0x5b6f, [0x05ec] = 0x21a22, [0x05ed] = 0x375e, [0x05ee] = 0x21a34, + [0x05f0] = 0x21b2e, [0x05f1] = 0x3786, [0x05f2] = 0x3784, [0x05f3] = 0x21bf4, + [0x05f4] = 0x5c5a, [0x05f5] = 0x21e28, [0x05f6] = 0x37d9, [0x05f7] = 0x21e1c, + [0x05f8] = 0x37de, [0x05f9] = 0x21e11, [0x05fa] = 0x21e24, [0x05fb] = 0x21e15, + [0x05fc] = 0x37db, [0x05fd] = 0x21e16, [0x05fe] = 0x21e54, [0x05ff] = 0x21e23, + [0x0600] = 0x21fff, [0x0601] = 0x3831, [0x0602] = 0x220cf, [0x0603] = 0x220d0, + [0x0604] = 0x384b, [0x0605] = 0x220ce, [0x0606] = 0x3849, [0x0607] = 0x384a, + [0x0608] = 0x384c, [0x0609] = 0x221c7, [0x060a] = 0x2225c, [0x060b] = 0x388a, + [0x060c] = 0x22236, [0x060d] = 0x3889, [0x060e] = 0x388b, [0x060f] = 0x22243, + [0x0610] = 0x38bb, [0x0611] = 0x5fa2, [0x0612] = 0x5f9d, [0x0613] = 0x38e4, + [0x0614] = 0x2252a, [0x0615] = 0x22501, [0x0616] = 0x5fa3, [0x0617] = 0x2250b, + [0x0618] = 0x2250f, [0x0619] = 0x393b, [0x061a] = 0x392e, [0x061b] = 0x393e, + [0x061c] = 0x3946, [0x061d] = 0x3953, [0x061e] = 0x226df, [0x061f] = 0x3944, + [0x0620] = 0x226d2, [0x0621] = 0x393f, [0x0622] = 0x3942, [0x0623] = 0x394f, + [0x0624] = 0x226cd, [0x0625] = 0x3952, [0x0626] = 0x394a, [0x0627] = 0x60c2, + [0x0628] = 0x226db, [0x0629] = 0x395a, [0x062a] = 0x60a5, [0x062b] = 0x3949, + [0x062c] = 0x226cf, [0x062d] = 0x621c, [0x062e] = 0x229c0, [0x062f] = 0x621d, + [0x0630] = 0x3a03, [0x0631] = 0x22b81, [0x0632] = 0x22b82, [0x0633] = 0x22b8a, + [0x0634] = 0x22ba8, [0x0635] = 0x22b8c, [0x0636] = 0x6395, [0x0637] = 0x639a, + [0x0638] = 0x3a01, [0x0639] = 0x3a06, [0x063a] = 0x39fb, [0x063b] = 0x39f9, + [0x063c] = 0x22b8e, [0x063d] = 0x3a05, [0x063e] = 0x39fa, [0x063f] = 0x22b8b, + [0x0640] = 0x63a6, [0x0641] = 0x22b96, [0x0642] = 0x39fe, [0x0643] = 0x22bcc, + [0x0644] = 0x3a7d, [0x0646] = 0x22f4f, [0x0647] = 0x22f4a, [0x0648] = 0x6550, + [0x064a] = 0x22f4b, [0x064b] = 0x22f3d, [0x064c] = 0x6552, [0x064d] = 0x22f44, + [0x064e] = 0x22f49, [0x064f] = 0x2309e, [0x0650] = 0x230f3, [0x0651] = 0x65c8, + [0x0652] = 0x230f5, [0x0653] = 0x3af0, [0x0654] = 0x3af2, [0x0655] = 0x231b3, + [0x0656] = 0x6658, [0x0657] = 0x3af1, [0x0658] = 0x3ae6, [0x0659] = 0x231e5, + [0x065a] = 0x231b6, [0x065c] = 0x6888, [0x065d] = 0x23486, [0x065e] = 0x3b6f, + [0x065f] = 0x3b6d, [0x0660] = 0x3b69, [0x0661] = 0x234b6, [0x0662] = 0x23485, + [0x0663] = 0x3b6e, [0x0664] = 0x234ab, [0x0665] = 0x3c2f, [0x0666] = 0x3c30, + [0x0667] = 0x3c63, [0x0668] = 0x23a0d, [0x0669] = 0x23a8b, [0x066a] = 0x23a8c, + [0x066b] = 0x6bb8, [0x066c] = 0x3c80, [0x066d] = 0x6bb9, [0x066e] = 0x3c9a, + [0x066f] = 0x3c94, [0x0670] = 0x3c96, [0x0671] = 0x3c95, [0x0672] = 0x3c97, + [0x0673] = 0x23b72, [0x0674] = 0x3cf4, [0x0675] = 0x3cfe, [0x0676] = 0x23d8f, + [0x0677] = 0x3d01, [0x0678] = 0x23d79, [0x0679] = 0x3d02, [0x067a] = 0x23d77, + [0x067b] = 0x3cf9, [0x067c] = 0x23d90, [0x067d] = 0x23d88, [0x067e] = 0x23d80, + [0x067f] = 0x23d9e, [0x0680] = 0x3cf6, [0x0681] = 0x3cf7, [0x0682] = 0x23d82, + [0x0683] = 0x23d34, [0x0684] = 0x23d89, [0x0685] = 0x3cff, [0x0686] = 0x23d85, + [0x0687] = 0x23d7e, [0x0688] = 0x23d7a, [0x0689] = 0x23da6, [0x068a] = 0x6e0b, + [0x068b] = 0x23db5, [0x068c] = 0x241f4, [0x068d] = 0x3dbf, [0x068e] = 0x3dbc, + [0x068f] = 0x7105, [0x0690] = 0x24229, [0x0691] = 0x24226, [0x0692] = 0x2422a, + [0x0693] = 0x3dbe, [0x0694] = 0x3dc0, [0x0695] = 0x2457e, [0x0696] = 0x3e3b, + [0x0697] = 0x3e39, [0x0698] = 0x2465b, [0x0699] = 0x24661, [0x069a] = 0x24660, + [0x069b] = 0x3e3c, [0x069c] = 0x2479b, [0x069d] = 0x7314, [0x069e] = 0x7304, + [0x069f] = 0x247c3, [0x06a0] = 0x3e7d, [0x06a1] = 0x247cd, [0x06a2] = 0x3e7f, + [0x06a3] = 0x3e7a, [0x06a4] = 0x3e7c, [0x06a5] = 0x7305, [0x06a6] = 0x3e7e, + [0x06a7] = 0x7315, [0x06a8] = 0x730d, [0x06a9] = 0x3e80, [0x06aa] = 0x3ebf, + [0x06ab] = 0x3ec3, [0x06ac] = 0x24954, [0x06ad] = 0x24959, [0x06ae] = 0x3ecc, + [0x06af] = 0x3f0e, [0x06b0] = 0x3f0d, [0x06b1] = 0x24af5, [0x06b2] = 0x3f26, + [0x06b3] = 0x3f24, [0x06b4] = 0x3f25, [0x06b5] = 0x3f23, [0x06b6] = 0x3f21, + [0x06b7] = 0x3f29, [0x06b8] = 0x24c69, [0x06b9] = 0x24c65, [0x06ba] = 0x3f8f, + [0x06bb] = 0x3f8d, [0x06bc] = 0x24d7c, [0x06bd] = 0x3f8b, [0x06be] = 0x3f92, + [0x06bf] = 0x24d80, [0x06c0] = 0x3f90, [0x06c1] = 0x24f65, [0x06c2] = 0x3fef, + [0x06c3] = 0x3ff0, [0x06c4] = 0x24fdf, [0x06c5] = 0x25060, [0x06c6] = 0x4001, + [0x06c7] = 0x2505e, [0x06c8] = 0x402e, [0x06c9] = 0x402d, [0x06ca] = 0x772e, + [0x06cb] = 0x4028, [0x06cc] = 0x4029, [0x06cd] = 0x402c, [0x06ce] = 0x2518f, + [0x06cf] = 0x25161, [0x06d0] = 0x2515a, [0x06d1] = 0x7741, [0x06d2] = 0x4088, + [0x06d3] = 0x25367, [0x06d4] = 0x4092, [0x06d5] = 0x4091, [0x06d6] = 0x77ea, + [0x06d7] = 0x253bb, [0x06d8] = 0x7844, [0x06d9] = 0x40a9, [0x06da] = 0x40ac, + [0x06db] = 0x40ae, [0x06dc] = 0x40aa, [0x06dd] = 0x4106, [0x06de] = 0x4105, + [0x06df] = 0x414a, [0x06e0] = 0x413e, [0x06e1] = 0x413c, [0x06e2] = 0x413b, + [0x06e3] = 0x2579b, [0x06e4] = 0x4142, [0x06e5] = 0x4141, [0x06e6] = 0x4143, + [0x06e7] = 0x257a9, [0x06e8] = 0x4145, [0x06e9] = 0x25966, [0x06ea] = 0x419a, + [0x06eb] = 0x419b, [0x06ec] = 0x419f, [0x06ed] = 0x419e, [0x06ee] = 0x25a72, + [0x06ef] = 0x25a76, [0x06f0] = 0x25b14, [0x06f1] = 0x41de, [0x06f2] = 0x41e2, + [0x06f3] = 0x41e6, [0x06f4] = 0x25b0f, [0x06f5] = 0x7b29, [0x06f6] = 0x41e3, + [0x06f7] = 0x7b27, [0x06f8] = 0x41df, [0x06f9] = 0x25e41, [0x06fa] = 0x25e46, + [0x06fb] = 0x7c9d, [0x06fc] = 0x25e4b, [0x06fd] = 0x25e43, [0x06fe] = 0x427e, + [0x06ff] = 0x42c9, [0x0700] = 0x42cc, [0x0701] = 0x25fc6, [0x0702] = 0x42d1, + [0x0703] = 0x25fc7, [0x0704] = 0x42d0, [0x0705] = 0x25fce, [0x0706] = 0x42cf, + [0x0707] = 0x42c8, [0x0708] = 0x25fc9, [0x0709] = 0x42cd, [0x070a] = 0x25fcb, + [0x070b] = 0x25fc5, [0x070c] = 0x4349, [0x070d] = 0x4347, [0x070e] = 0x4358, + [0x070f] = 0x436b, [0x0710] = 0x436c, [0x0711] = 0x436a, [0x0712] = 0x26369, + [0x0713] = 0x4380, [0x0714] = 0x4382, [0x0715] = 0x4384, [0x0716] = 0x7fc8, + [0x0717] = 0x4383, [0x0718] = 0x2641e, [0x0719] = 0x264ba, [0x071a] = 0x43b6, + [0x071b] = 0x26552, [0x071c] = 0x26551, [0x071d] = 0x26553, [0x071e] = 0x2669f, + [0x071f] = 0x266db, [0x0720] = 0x8126, [0x0721] = 0x43f1, [0x0722] = 0x266e3, + [0x0723] = 0x43f6, [0x0724] = 0x43f3, [0x0725] = 0x43f0, [0x0726] = 0x811c, + [0x0727] = 0x266d7, [0x0728] = 0x266e9, [0x0729] = 0x8128, [0x072a] = 0x43f5, + [0x072b] = 0x43f4, [0x072c] = 0x43f7, [0x072d] = 0x266de, [0x072e] = 0x266dc, + [0x072f] = 0x2693c, [0x0731] = 0x4455, [0x0732] = 0x26a22, [0x0733] = 0x26a32, + [0x0734] = 0x26a23, [0x0735] = 0x448b, [0x0736] = 0x44cb, [0x0737] = 0x44c2, + [0x0738] = 0x26bd4, [0x0739] = 0x26bc8, [0x073a] = 0x26bbc, [0x073b] = 0x44ca, + [0x073c] = 0x44cc, [0x073d] = 0x26bcd, [0x073e] = 0x44c7, [0x073f] = 0x44c9, + [0x0740] = 0x8370, [0x0741] = 0x26bbe, [0x0742] = 0x44c6, [0x0743] = 0x26c40, + [0x0744] = 0x26bd6, [0x0745] = 0x44c3, [0x0746] = 0x8382, [0x0747] = 0x26bbd, + [0x0748] = 0x83ac, [0x0749] = 0x26bba, [0x074a] = 0x44c4, [0x074b] = 0x26bc0, + [0x074e] = 0x26bc1, [0x074f] = 0x271a6, [0x0750] = 0x271a5, [0x0751] = 0x271a8, + [0x0752] = 0x45a9, [0x0753] = 0x86ad, [0x0754] = 0x45a8, [0x0755] = 0x45a6, + [0x0756] = 0x2725f, [0x0757] = 0x27270, [0x0758] = 0x2726a, [0x0759] = 0x27265, + [0x075a] = 0x27267, [0x075b] = 0x2726f, [0x075c] = 0x27287, [0x075d] = 0x86ca, + [0x075e] = 0x8851, [0x075f] = 0x2763d, [0x0760] = 0x27643, [0x0761] = 0x4622, + [0x0762] = 0x27640, [0x0763] = 0x4626, [0x0764] = 0x4624, [0x0765] = 0x4625, + [0x0766] = 0x889d, [0x0767] = 0x462a, [0x0768] = 0x4674, [0x0769] = 0x27818, + [0x076a] = 0x4679, [0x076b] = 0x8990, [0x076c] = 0x467a, [0x076d] = 0x27819, + [0x076e] = 0x278c1, [0x076f] = 0x89d8, [0x0770] = 0x89d7, [0x0771] = 0x4697, + [0x0772] = 0x278bc, [0x0773] = 0x278c8, [0x0774] = 0x8a2e, [0x0775] = 0x27971, + [0x0776] = 0x46bc, [0x0777] = 0x2796e, [0x0778] = 0x46b3, [0x0779] = 0x27978, + [0x077a] = 0x46bf, [0x077b] = 0x46b7, [0x077d] = 0x2797a, [0x077e] = 0x27bb1, + [0x077f] = 0x27baf, [0x0780] = 0x27bb0, [0x0781] = 0x4734, [0x0782] = 0x4746, + [0x0783] = 0x4748, [0x0784] = 0x8c59, [0x0785] = 0x27ca8, [0x0786] = 0x27ca6, + [0x0787] = 0x4756, [0x0788] = 0x4767, [0x0789] = 0x27d48, [0x078a] = 0x27d45, + [0x078b] = 0x4768, [0x078c] = 0x4799, [0x078d] = 0x479a, [0x078e] = 0x27ea0, + [0x078f] = 0x27ea4, [0x0790] = 0x47d8, [0x0791] = 0x27fd4, [0x0792] = 0x47db, + [0x0793] = 0x47dc, [0x0794] = 0x47dd, [0x0795] = 0x47d7, [0x0796] = 0x27fd2, + [0x0797] = 0x28222, [0x0798] = 0x4849, [0x0799] = 0x484a, [0x079a] = 0x8eda, + [0x079b] = 0x282b7, [0x079c] = 0x282cc, [0x079d] = 0x9033, [0x079e] = 0x284e6, + [0x079f] = 0x9018, [0x07a0] = 0x489a, [0x07a1] = 0x284c8, [0x07a2] = 0x48cd, + [0x07a3] = 0x48ca, [0x07a4] = 0x286f4, [0x07a5] = 0x48cb, [0x07a6] = 0x286ed, + [0x07a7] = 0x48cf, [0x07a8] = 0x2867e, [0x07aa] = 0x48cc, [0x07ab] = 0x48ea, + [0x07ac] = 0x48ed, [0x07ad] = 0x287f9, [0x07ae] = 0x287fd, [0x07af] = 0x48e9, + [0x07b0] = 0x28807, [0x07b1] = 0x491a, [0x07b2] = 0x91ef, [0x07b3] = 0x498d, + [0x07b4] = 0x49d2, [0x07b5] = 0x28e78, [0x07b6] = 0x28e7a, [0x07b7] = 0x28e79, + [0x07b8] = 0x28f8a, [0x07b9] = 0x49f2, [0x07ba] = 0x2907b, [0x07bb] = 0x291d5, + [0x07bc] = 0x291e9, [0x07bd] = 0x4a3d, [0x07be] = 0x291eb, [0x07bf] = 0x4a3e, + [0x07c0] = 0x4af8, [0x07c1] = 0x4b23, [0x07c2] = 0x9ad9, [0x07c3] = 0x4eb4, + [0x07c4] = 0x2016c, [0x07c5] = 0x50a0, [0x07c6] = 0x5090, [0x07c7] = 0x3475, + [0x07c8] = 0x5086, [0x07c9] = 0x5084, [0x07ca] = 0x202fa, [0x07cb] = 0x508a, + [0x07cc] = 0x3476, [0x07cd] = 0x3473, [0x07ce] = 0x509f, [0x07cf] = 0x50a1, + [0x07d0] = 0x20318, [0x07d1] = 0x5093, [0x07d2] = 0x34bd, [0x07d3] = 0x205f6, + [0x07d4] = 0x51d5, [0x07d5] = 0x2078a, [0x07d6] = 0x20789, [0x07d7] = 0x34f9, + [0x07d8] = 0x2077f, [0x07d9] = 0x20788, [0x07da] = 0x34fa, [0x07db] = 0x20783, + [0x07dc] = 0x20784, [0x07dd] = 0x20798, [0x07de] = 0x20763, [0x07df] = 0x20787, + [0x07e0] = 0x3521, [0x07e2] = 0x3529, [0x07e3] = 0x208f5, [0x07e4] = 0x20950, + [0x07e5] = 0x3538, [0x07e6] = 0x354e, [0x07e7] = 0x20a87, [0x07e8] = 0x20a8a, + [0x07e9] = 0x20b65, [0x07ea] = 0x20db7, [0x07eb] = 0x20dc1, [0x07ec] = 0x20dc7, + [0x07ed] = 0x35c8, [0x07ee] = 0x35bc, [0x07ef] = 0x20dc5, [0x07f0] = 0x20dcb, + [0x07f1] = 0x5590, [0x07f2] = 0x20dd1, [0x07f3] = 0x35bb, [0x07f4] = 0x35c2, + [0x07f5] = 0x35c0, [0x07f6] = 0x20db8, [0x07f7] = 0x20dca, [0x07f8] = 0x35ca, + [0x07f9] = 0x20dde, [0x07fa] = 0x35c9, [0x07fb] = 0x20dce, [0x07fc] = 0x35b8, + [0x07fd] = 0x5710, [0x07fe] = 0x5817, [0x07ff] = 0x21368, [0x0800] = 0x364e, + [0x0801] = 0x2136b, [0x0802] = 0x5844, [0x0803] = 0x3650, [0x0804] = 0x582b, + [0x0805] = 0x2136a, [0x0806] = 0x5845, [0x0807] = 0x21366, [0x0808] = 0x21377, + [0x0809] = 0x21396, [0x080a] = 0x2136e, [0x080c] = 0x368a, [0x080d] = 0x21657, + [0x080e] = 0x5965, [0x080f] = 0x21656, [0x0810] = 0x2179c, [0x0811] = 0x2179e, + [0x0812] = 0x36fc, [0x0813] = 0x36f9, [0x0814] = 0x217a1, [0x0815] = 0x3763, + [0x0816] = 0x21a42, [0x0817] = 0x5bcf, [0x0818] = 0x21a46, [0x0819] = 0x21a3e, + [0x081a] = 0x21b33, [0x081b] = 0x3787, [0x081c] = 0x3788, [0x081d] = 0x21bfa, + [0x081e] = 0x379a, [0x081f] = 0x21c97, [0x0820] = 0x21c9b, [0x0821] = 0x21caa, + [0x0822] = 0x5d56, [0x0823] = 0x21e73, [0x0824] = 0x21e7c, [0x0825] = 0x37e9, + [0x0826] = 0x21e86, [0x0827] = 0x37ea, [0x0828] = 0x5d54, [0x0829] = 0x3850, + [0x082a] = 0x220f3, [0x082b] = 0x220f0, [0x082c] = 0x3856, [0x082d] = 0x3852, + [0x082e] = 0x384f, [0x082f] = 0x3854, [0x0830] = 0x3851, [0x0831] = 0x220ec, + [0x0832] = 0x222af, [0x0833] = 0x388e, [0x0834] = 0x388f, [0x0835] = 0x22264, + [0x0836] = 0x22268, [0x0837] = 0x2235a, [0x0838] = 0x5f3d, [0x0839] = 0x2251f, + [0x083a] = 0x22525, [0x083b] = 0x38ed, [0x083c] = 0x38eb, [0x083d] = 0x5fa4, + [0x083e] = 0x226c6, [0x083f] = 0x226d6, [0x0840] = 0x226c3, [0x0841] = 0x3962, + [0x0842] = 0x2272c, [0x0843] = 0x395d, [0x0844] = 0x2272e, [0x0845] = 0x2275e, + [0x0846] = 0x22733, [0x0847] = 0x3961, [0x0848] = 0x3965, [0x0849] = 0x395c, + [0x084a] = 0x2272d, [0x084b] = 0x22746, [0x084c] = 0x395f, [0x084d] = 0x226c1, + [0x084e] = 0x2273a, [0x084f] = 0x229cc, [0x0850] = 0x22b9d, [0x0851] = 0x22b83, + [0x0852] = 0x22bf6, [0x0853] = 0x63ec, [0x0854] = 0x3a16, [0x0855] = 0x3a0a, + [0x0856] = 0x22bf8, [0x0857] = 0x3a0e, [0x0858] = 0x3a12, [0x0859] = 0x22bfe, + [0x085a] = 0x22bf3, [0x085b] = 0x3a11, [0x085c] = 0x22beb, [0x085d] = 0x22bfa, + [0x085e] = 0x3a10, [0x085f] = 0x22c07, [0x0860] = 0x22bfc, [0x0861] = 0x3a09, + [0x0862] = 0x63fa, [0x0863] = 0x3a15, [0x0864] = 0x63d4, [0x0865] = 0x22f72, + [0x0866] = 0x22f73, [0x0867] = 0x22f74, [0x0868] = 0x3a91, [0x0869] = 0x3a95, + [0x086a] = 0x3a93, [0x086b] = 0x3a92, [0x086c] = 0x3a8f, [0x086d] = 0x22f5f, + [0x086e] = 0x22f60, [0x086f] = 0x230aa, [0x0870] = 0x23134, [0x0871] = 0x3af6, + [0x0872] = 0x231b4, [0x0873] = 0x3afb, [0x0874] = 0x231f0, [0x0875] = 0x6675, + [0x0876] = 0x3af9, [0x0877] = 0x2320d, [0x0878] = 0x231f3, [0x0879] = 0x2320f, + [0x087a] = 0x671c, [0x087b] = 0x3b7d, [0x087c] = 0x234c9, [0x087d] = 0x3b7a, + [0x087e] = 0x3b7f, [0x087f] = 0x234c5, [0x0880] = 0x3b78, [0x0881] = 0x234d7, + [0x0882] = 0x234cc, [0x0883] = 0x68d9, [0x0884] = 0x234e7, [0x0885] = 0x3b70, + [0x0886] = 0x3b82, [0x0887] = 0x234c1, [0x0888] = 0x3b84, [0x0889] = 0x234e8, + [0x088a] = 0x3c33, [0x088b] = 0x238cb, [0x088c] = 0x3c32, [0x088d] = 0x3c36, + [0x088e] = 0x238c8, [0x088f] = 0x2397a, [0x0890] = 0x3c56, [0x0891] = 0x23979, + [0x0892] = 0x2397e, [0x0893] = 0x3c67, [0x0894] = 0x23a1b, [0x0895] = 0x3c65, + [0x0896] = 0x3c64, [0x0897] = 0x3c66, [0x0898] = 0x23a1f, [0x0899] = 0x23a19, + [0x089a] = 0x3c81, [0x089b] = 0x3c82, [0x089c] = 0x3c83, [0x089d] = 0x3c9e, + [0x089e] = 0x23b89, [0x089f] = 0x6bf1, [0x08a0] = 0x3c9d, [0x08a1] = 0x23b8b, + [0x08a2] = 0x3d0f, [0x08a3] = 0x3d12, [0x08a4] = 0x23e09, [0x08a5] = 0x23dfe, + [0x08a6] = 0x23e00, [0x08a7] = 0x3d10, [0x08a8] = 0x3d18, [0x08a9] = 0x23e0b, + [0x08aa] = 0x3d14, [0x08ab] = 0x3d19, [0x08ac] = 0x6e37, [0x08ae] = 0x23e4a, + [0x08af] = 0x6e7d, [0x08b0] = 0x6e86, [0x08b1] = 0x3dc8, [0x08b2] = 0x3dc4, + [0x08b3] = 0x3dc6, [0x08b4] = 0x24279, [0x08b5] = 0x3dc7, [0x08b6] = 0x3dc3, + [0x08b7] = 0x2426c, [0x08b8] = 0x24299, [0x08ba] = 0x24262, [0x08bb] = 0x24514, + [0x08bc] = 0x3e19, [0x08bd] = 0x3e1c, [0x08be] = 0x245c8, [0x08bf] = 0x245d7, + [0x08c0] = 0x2460c, [0x08c1] = 0x3e41, [0x08c2] = 0x24670, [0x08c3] = 0x3e42, + [0x08c4] = 0x3e43, [0x08c5] = 0x24671, [0x08c6] = 0x247df, [0x08c7] = 0x247e4, + [0x08c8] = 0x3e82, [0x08c9] = 0x247e7, [0x08ca] = 0x3e81, [0x08cb] = 0x3e94, + [0x08cc] = 0x3e84, [0x08cd] = 0x24990, [0x08ce] = 0x3ed2, [0x08cf] = 0x3f0f, + [0x08d0] = 0x3f22, [0x08d1] = 0x24b4c, [0x08d2] = 0x3f27, [0x08d3] = 0x3f2a, + [0x08d4] = 0x74fa, [0x08d5] = 0x3f28, [0x08d6] = 0x24b4f, [0x08d7] = 0x3f60, + [0x08d8] = 0x24c7d, [0x08d9] = 0x24c7e, [0x08da] = 0x24c7c, [0x08db] = 0x7572, + [0x08dc] = 0x24c8d, [0x08dd] = 0x24d19, [0x08de] = 0x3f9b, [0x08df] = 0x3f9c, + [0x08e0] = 0x24dc0, [0x08e1] = 0x3f93, [0x08e2] = 0x3f94, [0x08e3] = 0x75dc, + [0x08e4] = 0x3fa0, [0x08e5] = 0x3f99, [0x08e6] = 0x24db6, [0x08e7] = 0x3fa1, + [0x08e8] = 0x24da8, [0x08e9] = 0x3ff1, [0x08ea] = 0x24feb, [0x08eb] = 0x24fe7, + [0x08ec] = 0x2506f, [0x08ed] = 0x251c7, [0x08ee] = 0x4036, [0x08ef] = 0x2519f, + [0x08f0] = 0x4037, [0x08f1] = 0x403f, [0x08f2] = 0x403c, [0x08f3] = 0x251c4, + [0x08f4] = 0x4034, [0x08f5] = 0x4039, [0x08f6] = 0x403b, [0x08f7] = 0x4035, + [0x08f8] = 0x4030, [0x08f9] = 0x4032, [0x08fa] = 0x4038, [0x08fb] = 0x403e, + [0x08fc] = 0x403a, [0x08fd] = 0x2519b, [0x08fe] = 0x25197, [0x08ff] = 0x251c5, + [0x0900] = 0x2536b, [0x0901] = 0x253ce, [0x0902] = 0x40b6, [0x0903] = 0x7867, + [0x0904] = 0x254b1, [0x0905] = 0x254ae, [0x0906] = 0x254b0, [0x0907] = 0x40b3, + [0x0908] = 0x4109, [0x0909] = 0x7977, [0x090a] = 0x2573e, [0x090b] = 0x257b5, + [0x090c] = 0x257ba, [0x090d] = 0x414c, [0x090e] = 0x257b2, [0x090f] = 0x257b4, + [0x0910] = 0x4153, [0x0911] = 0x414d, [0x0912] = 0x4151, [0x0913] = 0x414f, + [0x0914] = 0x7a9b, [0x0915] = 0x25977, [0x0916] = 0x41a2, [0x0917] = 0x25986, + [0x0918] = 0x2597b, [0x0919] = 0x41cd, [0x091a] = 0x25a7e, [0x091b] = 0x25b2e, + [0x091c] = 0x41e7, [0x091d] = 0x25b2f, [0x091e] = 0x41f0, [0x091f] = 0x25b37, + [0x0920] = 0x41e9, [0x0921] = 0x41ec, [0x0922] = 0x25b32, [0x0923] = 0x41e8, + [0x0924] = 0x41ee, [0x0925] = 0x4202, [0x0926] = 0x25b36, [0x0927] = 0x25b39, + [0x0928] = 0x25b35, [0x0929] = 0x25e5c, [0x092a] = 0x4282, [0x092b] = 0x4283, + [0x092c] = 0x4286, [0x092d] = 0x25e7b, [0x092e] = 0x25e61, [0x092f] = 0x25fee, + [0x0930] = 0x25feb, [0x0931] = 0x25fef, [0x0932] = 0x26020, [0x0933] = 0x7d2a, + [0x0934] = 0x7d65, [0x0935] = 0x434a, [0x0936] = 0x26230, [0x0937] = 0x435a, + [0x0938] = 0x7f64, [0x0939] = 0x262be, [0x093a] = 0x436e, [0x093b] = 0x26367, + [0x093c] = 0x2637c, [0x093d] = 0x4370, [0x093e] = 0x436f, [0x093f] = 0x26424, + [0x0940] = 0x438a, [0x0941] = 0x4387, [0x0942] = 0x4388, [0x0943] = 0x26429, + [0x0944] = 0x264ef, [0x0945] = 0x8020, [0x0946] = 0x43b7, [0x0947] = 0x43fd, + [0x0948] = 0x8120, [0x0949] = 0x2670d, [0x094a] = 0x4405, [0x094b] = 0x813c, + [0x094c] = 0x4408, [0x094d] = 0x4403, [0x094e] = 0x4402, [0x094f] = 0x4404, + [0x0950] = 0x3b39, [0x0951] = 0x4409, [0x0952] = 0x43ff, [0x0953] = 0x26764, + [0x0954] = 0x813f, [0x0955] = 0x26715, [0x0956] = 0x43fc, [0x0957] = 0x4401, + [0x0958] = 0x440a, [0x0959] = 0x81f0, [0x095a] = 0x81f5, [0x095b] = 0x446b, + [0x095c] = 0x446c, [0x095d] = 0x26a35, [0x095e] = 0x26a36, [0x095f] = 0x26a34, + [0x0960] = 0x26a37, [0x0961] = 0x26c47, [0x0962] = 0x26c2b, [0x0963] = 0x44de, + [0x0964] = 0x26c41, [0x0965] = 0x26c43, [0x0966] = 0x44db, [0x0967] = 0x26c42, + [0x0968] = 0x44dd, [0x0969] = 0x44e3, [0x096a] = 0x26c32, [0x096b] = 0x44e0, + [0x096c] = 0x44d9, [0x096d] = 0x44d8, [0x096e] = 0x44e4, [0x096f] = 0x26c44, + [0x0970] = 0x26c4a, [0x0971] = 0x44da, [0x0972] = 0x44ef, [0x0974] = 0x8415, + [0x0975] = 0x83be, [0x0976] = 0x26c54, [0x0977] = 0x26c6e, [0x0978] = 0x26c52, + [0x0979] = 0x44d7, [0x097a] = 0x45b3, [0x097b] = 0x45bb, [0x097c] = 0x86e5, + [0x097d] = 0x45b2, [0x097e] = 0x86d2, [0x097f] = 0x45ad, [0x0980] = 0x27292, + [0x0981] = 0x45af, [0x0983] = 0x86e0, [0x0984] = 0x272bf, [0x0985] = 0x4616, + [0x0986] = 0x4628, [0x0987] = 0x4623, [0x0988] = 0x88b3, [0x0989] = 0x27641, + [0x098a] = 0x27669, [0x098b] = 0x27665, [0x098c] = 0x4675, [0x098d] = 0x467e, + [0x098e] = 0x467c, [0x098f] = 0x27822, [0x0990] = 0x2781d, [0x0991] = 0x278d2, + [0x0992] = 0x278da, [0x0993] = 0x278db, [0x0994] = 0x46ce, [0x0995] = 0x46cd, + [0x0996] = 0x46cf, [0x0997] = 0x8a53, [0x0998] = 0x279a4, [0x0999] = 0x2799e, + [0x099a] = 0x8a37, [0x099b] = 0x8a47, [0x099c] = 0x8a5c, [0x099d] = 0x2799d, + [0x099e] = 0x46c4, [0x099f] = 0x46cc, [0x09a0] = 0x46c8, [0x09a1] = 0x46c7, + [0x09a2] = 0x279ad, [0x09a3] = 0x279a6, [0x09a4] = 0x279a7, [0x09a5] = 0x27bb3, + [0x09a6] = 0x27be0, [0x09a7] = 0x27c35, [0x09a8] = 0x27c37, [0x09a9] = 0x475a, + [0x09aa] = 0x476a, [0x09ab] = 0x27d4a, [0x09ac] = 0x476b, [0x09ad] = 0x476d, + [0x09ae] = 0x476f, [0x09af] = 0x27e5e, [0x09b0] = 0x479e, [0x09b1] = 0x27ec0, + [0x09b2] = 0x47a4, [0x09b3] = 0x47a3, [0x09b4] = 0x47e4, [0x09b5] = 0x47e8, + [0x09b6] = 0x47e9, [0x09b7] = 0x47e0, [0x09b8] = 0x47e3, [0x09b9] = 0x27ff9, + [0x09ba] = 0x47ea, [0x09bb] = 0x47e1, [0x09bc] = 0x47ed, [0x09bd] = 0x4834, + [0x09be] = 0x4835, [0x09bf] = 0x4851, [0x09c0] = 0x8ef0, [0x09c1] = 0x284f0, + [0x09c2] = 0x489d, [0x09c3] = 0x284f3, [0x09c4] = 0x2851b, [0x09c5] = 0x284f2, + [0x09c6] = 0x284fb, [0x09c7] = 0x2871c, [0x09c8] = 0x28713, [0x09c9] = 0x48d0, + [0x09ca] = 0x2870f, [0x09cb] = 0x48ee, [0x09cc] = 0x28816, [0x09cd] = 0x28811, + [0x09ce] = 0x28812, [0x09cf] = 0x48f2, [0x09d0] = 0x2880e, [0x09d1] = 0x921d, + [0x09d2] = 0x4988, [0x09d3] = 0x28c67, [0x09d4] = 0x28cf2, [0x09d5] = 0x28cda, + [0x09d6] = 0x498f, [0x09d7] = 0x28cdc, [0x09d8] = 0x49d8, [0x09d9] = 0x28f94, + [0x09da] = 0x28f9b, [0x09db] = 0x28f92, [0x09dc] = 0x28f9a, [0x09dd] = 0x29088, + [0x09de] = 0x29086, [0x09df] = 0x4a3f, [0x09e0] = 0x291ef, [0x09e1] = 0x4a52, + [0x09e2] = 0x976b, [0x09e3] = 0x2925e, [0x09e4] = 0x4a50, [0x09e5] = 0x29458, + [0x09e6] = 0x4ab1, [0x09e7] = 0x29456, [0x09e8] = 0x29454, [0x09e9] = 0x4af9, + [0x09ea] = 0x2959b, [0x09eb] = 0x29696, [0x09ec] = 0x296a4, [0x09ed] = 0x4b26, + [0x09ee] = 0x4b28, [0x09ef] = 0x2969a, [0x09f0] = 0x29a12, [0x09f1] = 0x3480, + [0x09f2] = 0x50c0, [0x09f3] = 0x3481, [0x09f4] = 0x2036b, [0x09f5] = 0x347e, + [0x09f6] = 0x347f, [0x09f7] = 0x20337, [0x09f8] = 0x2033c, [0x09fa] = 0x204f7, + [0x09fb] = 0x34be, [0x09fc] = 0x20566, [0x09fd] = 0x34d6, [0x09fe] = 0x207a9, + [0x09ff] = 0x207ae, [0x0a00] = 0x207ad, [0x0a01] = 0x207c8, [0x0a02] = 0x207a5, + [0x0a03] = 0x207b0, [0x0a04] = 0x20895, [0x0a05] = 0x52e5, [0x0a06] = 0x20925, + [0x0a07] = 0x3534, [0x0a08] = 0x20a99, [0x0a09] = 0x53af, [0x0a0a] = 0x20b74, + [0x0a0b] = 0x20b70, [0x0a0c] = 0x20b6f, [0x0a0d] = 0x20e41, [0x0a0e] = 0x20e54, + [0x0a0f] = 0x35d5, [0x0a10] = 0x35d8, [0x0a11] = 0x20e40, [0x0a12] = 0x20e38, + [0x0a13] = 0x35d4, [0x0a14] = 0x55d8, [0x0a15] = 0x35d9, [0x0a16] = 0x20e52, + [0x0a17] = 0x20e3a, [0x0a18] = 0x20e57, [0x0a1a] = 0x20e59, [0x0a1b] = 0x5711, + [0x0a1c] = 0x5867, [0x0a1d] = 0x213b4, [0x0a1e] = 0x213c0, [0x0a1f] = 0x365d, + [0x0a20] = 0x5843, [0x0a21] = 0x365e, [0x0a22] = 0x3659, [0x0a23] = 0x21375, + [0x0a24] = 0x365a, [0x0a25] = 0x36a0, [0x0a26] = 0x21660, [0x0a27] = 0x21647, + [0x0a28] = 0x3705, [0x0a29] = 0x217f0, [0x0a2a] = 0x3707, [0x0a2b] = 0x217ef, + [0x0a2c] = 0x370e, [0x0a2d] = 0x370c, [0x0a2e] = 0x217ec, [0x0a2f] = 0x21983, + [0x0a30] = 0x3745, [0x0a31] = 0x21984, [0x0a32] = 0x2198f, [0x0a33] = 0x3764, + [0x0a34] = 0x21a61, [0x0a35] = 0x3765, [0x0a36] = 0x21a69, [0x0a37] = 0x5bdd, + [0x0a38] = 0x3766, [0x0a39] = 0x21a62, [0x0a3a] = 0x3789, [0x0a3b] = 0x37ec, + [0x0a3c] = 0x37f1, [0x0a3d] = 0x5d70, [0x0a3e] = 0x5d6a, [0x0a3f] = 0x37f0, + [0x0a40] = 0x37f8, [0x0a41] = 0x5d74, [0x0a42] = 0x5d5f, [0x0a43] = 0x21eae, + [0x0a44] = 0x5d61, [0x0a45] = 0x5d73, [0x0a46] = 0x21eb2, [0x0a47] = 0x37f2, + [0x0a48] = 0x37f4, [0x0a49] = 0x2210b, [0x0a4a] = 0x3858, [0x0a4b] = 0x22110, + [0x0a4c] = 0x2210d, [0x0a4d] = 0x385a, [0x0a4e] = 0x3859, [0x0a4f] = 0x3857, + [0x0a50] = 0x385b, [0x0a51] = 0x5e50, [0x0a52] = 0x2227f, [0x0a53] = 0x22281, + [0x0a54] = 0x38a6, [0x0a55] = 0x38c2, [0x0a56] = 0x38c1, [0x0a57] = 0x5f3f, + [0x0a58] = 0x2240b, [0x0a59] = 0x2254e, [0x0a5a] = 0x38ef, [0x0a5b] = 0x5fb0, + [0x0a5c] = 0x227ea, [0x0a5d] = 0x22745, [0x0a5e] = 0x3968, [0x0a5f] = 0x6135, + [0x0a60] = 0x612d, [0x0a61] = 0x3973, [0x0a62] = 0x396e, [0x0a63] = 0x3974, + [0x0a64] = 0x6102, [0x0a65] = 0x3966, [0x0a66] = 0x22728, [0x0a67] = 0x2275d, + [0x0a68] = 0x229dc, [0x0a69] = 0x39b9, [0x0a6a] = 0x6226, [0x0a6b] = 0x229d4, + [0x0a6c] = 0x3a0c, [0x0a6d] = 0x22c64, [0x0a6e] = 0x22c68, [0x0a6f] = 0x3a20, + [0x0a70] = 0x22c62, [0x0a71] = 0x3a1d, [0x0a72] = 0x22c61, [0x0a73] = 0x3a1c, + [0x0a74] = 0x22c66, [0x0a75] = 0x3a21, [0x0a76] = 0x3a1a, [0x0a77] = 0x3a19, + [0x0a78] = 0x22bf2, [0x0a79] = 0x22c69, [0x0a7a] = 0x22c67, [0x0a7b] = 0x3a7e, + [0x0a7c] = 0x22f9a, [0x0a7d] = 0x22f9b, [0x0a7e] = 0x22f85, [0x0a7f] = 0x22f9c, + [0x0a80] = 0x3a9d, [0x0a81] = 0x22fa4, [0x0a82] = 0x3a9e, [0x0a84] = 0x656e, + [0x0a85] = 0x22f99, [0x0a86] = 0x22f86, [0x0a87] = 0x22f90, [0x0a88] = 0x23081, + [0x0a89] = 0x230ae, [0x0a8a] = 0x65b1, [0x0a8b] = 0x65d4, [0x0a8c] = 0x3acd, + [0x0a8d] = 0x23138, [0x0a8e] = 0x3b0b, [0x0a8f] = 0x3b0a, [0x0a90] = 0x6685, + [0x0a91] = 0x2353b, [0x0a92] = 0x3b8f, [0x0a93] = 0x6972, [0x0a94] = 0x3b95, + [0x0a95] = 0x3b90, [0x0a96] = 0x3b91, [0x0a97] = 0x2354c, [0x0a98] = 0x693a, + [0x0a99] = 0x3bb9, [0x0a9a] = 0x23547, [0x0a9b] = 0x23535, [0x0a9c] = 0x3b97, + [0x0a9d] = 0x3b9e, [0x0a9e] = 0x23533, [0x0a9f] = 0x3b8b, [0x0aa0] = 0x23582, + [0x0aa1] = 0x23540, [0x0aa2] = 0x3c3b, [0x0aa3] = 0x3c3a, [0x0aa4] = 0x3c3c, + [0x0aa5] = 0x3c3d, [0x0aa6] = 0x3c39, [0x0aa7] = 0x3c3e, [0x0aa8] = 0x3c6b, + [0x0aa9] = 0x3c6c, [0x0aaa] = 0x23a36, [0x0aab] = 0x23b0e, [0x0aac] = 0x3ca2, + [0x0aad] = 0x3ca1, [0x0aae] = 0x3c9f, [0x0aaf] = 0x23bad, [0x0ab0] = 0x23baa, + [0x0ab1] = 0x23e17, [0x0ab2] = 0x3d2d, [0x0ab3] = 0x23e67, [0x0ab4] = 0x3d36, + [0x0ab5] = 0x3d2b, [0x0ab6] = 0x23e72, [0x0ab7] = 0x3d37, [0x0ab9] = 0x23e61, + [0x0aba] = 0x23eb0, [0x0abb] = 0x6ead, [0x0abc] = 0x3d25, [0x0abd] = 0x3d2f, + [0x0abe] = 0x3d2c, [0x0abf] = 0x23e6e, [0x0ac0] = 0x23e64, [0x0ac1] = 0x3d32, + [0x0ac2] = 0x23e8c, [0x0ac3] = 0x23e66, [0x0ac4] = 0x6e95, [0x0ac5] = 0x23e6b, + [0x0ac6] = 0x23e5f, [0x0ac7] = 0x23e74, [0x0ac8] = 0x23e65, [0x0ac9] = 0x242bb, + [0x0aca] = 0x242be, [0x0acb] = 0x3dd5, [0x0acc] = 0x242b9, [0x0acd] = 0x3dd4, + [0x0ace] = 0x3dd6, [0x0acf] = 0x242ef, [0x0ad0] = 0x3dd1, [0x0ad1] = 0x7243, + [0x0ad2] = 0x245da, [0x0ad3] = 0x3e46, [0x0ad4] = 0x728f, [0x0ad5] = 0x24690, + [0x0ad6] = 0x247e9, [0x0ad7] = 0x3e8c, [0x0ad8] = 0x3e8a, [0x0ad9] = 0x3e88, + [0x0ada] = 0x24811, [0x0adb] = 0x2480d, [0x0adc] = 0x247ed, [0x0add] = 0x24821, + [0x0ade] = 0x3edd, [0x0adf] = 0x24981, [0x0ae0] = 0x249b1, [0x0ae1] = 0x24b01, + [0x0ae2] = 0x3f2d, [0x0ae3] = 0x24b5e, [0x0ae4] = 0x24b62, [0x0ae5] = 0x3f2e, + [0x0ae6] = 0x3f2c, [0x0ae7] = 0x3f2b, [0x0ae8] = 0x3f30, [0x0ae9] = 0x24b5b, + [0x0aea] = 0x3f4e, [0x0aeb] = 0x24c96, [0x0aec] = 0x24c93, [0x0aed] = 0x3f64, + [0x0aee] = 0x3f61, [0x0aef] = 0x24c92, [0x0af0] = 0x7575, [0x0af2] = 0x3f70, + [0x0af3] = 0x3fa6, [0x0af4] = 0x3fa4, [0x0af5] = 0x24dc4, [0x0af6] = 0x24dc7, + [0x0af7] = 0x24dc3, [0x0af8] = 0x3fa8, [0x0af9] = 0x3fa2, [0x0afa] = 0x24dc8, + [0x0afb] = 0x3fa7, [0x0afc] = 0x75ec, [0x0afd] = 0x3fa5, [0x0afe] = 0x24dca, + [0x0aff] = 0x3fa9, [0x0b00] = 0x24dc5, [0x0b01] = 0x24dcf, [0x0b02] = 0x24ddc, + [0x0b03] = 0x24f7c, [0x0b04] = 0x25001, [0x0b05] = 0x403d, [0x0b06] = 0x251d3, + [0x0b07] = 0x251dc, [0x0b08] = 0x4044, [0x0b09] = 0x4045, [0x0b0a] = 0x4046, + [0x0b0b] = 0x251d4, [0x0b0c] = 0x7757, [0x0b0d] = 0x251cc, [0x0b0e] = 0x4047, + [0x0b0f] = 0x4048, [0x0b10] = 0x4042, [0x0b11] = 0x251d6, [0x0b12] = 0x251db, + [0x0b13] = 0x4041, [0x0b14] = 0x251d5, [0x0b15] = 0x253d9, [0x0b16] = 0x4094, + [0x0b17] = 0x253dd, [0x0b18] = 0x253dc, [0x0b19] = 0x253e0, [0x0b1a] = 0x254cc, + [0x0b1b] = 0x40c0, [0x0b1c] = 0x40b8, [0x0b1d] = 0x40c1, [0x0b1e] = 0x40c2, + [0x0b1f] = 0x40bb, [0x0b20] = 0x40bd, [0x0b21] = 0x40bf, [0x0b22] = 0x40b9, + [0x0b23] = 0x40b7, [0x0b24] = 0x254d2, [0x0b25] = 0x40c7, [0x0b26] = 0x254d3, + [0x0b27] = 0x410c, [0x0b28] = 0x410b, [0x0b29] = 0x797b, [0x0b2a] = 0x4110, + [0x0b2b] = 0x2568d, [0x0b2c] = 0x415d, [0x0b2d] = 0x7a21, [0x0b2e] = 0x415a, + [0x0b2f] = 0x4158, [0x0b30] = 0x4156, [0x0b31] = 0x257d8, [0x0b32] = 0x4154, + [0x0b33] = 0x7a16, [0x0b34] = 0x257bc, [0x0b35] = 0x41a8, [0x0b36] = 0x41a7, + [0x0b37] = 0x41cf, [0x0b38] = 0x41d0, [0x0b39] = 0x25a8a, [0x0b3a] = 0x7ae8, + [0x0b3b] = 0x25a8b, [0x0b3c] = 0x25a8d, [0x0b3d] = 0x41d1, [0x0b3e] = 0x41eb, + [0x0b3f] = 0x25b53, [0x0b40] = 0x41fb, [0x0b41] = 0x7b6a, [0x0b42] = 0x25b59, + [0x0b43] = 0x41fd, [0x0b44] = 0x41f8, [0x0b45] = 0x41f7, [0x0b46] = 0x4200, + [0x0b47] = 0x25b56, [0x0b48] = 0x25b57, [0x0b49] = 0x41f6, [0x0b4a] = 0x7b5f, + [0x0b4b] = 0x25e73, [0x0b4c] = 0x2601b, [0x0b4d] = 0x42df, [0x0b4e] = 0x26021, + [0x0b4f] = 0x26016, [0x0b50] = 0x26018, [0x0b51] = 0x42e2, [0x0b52] = 0x42e4, + [0x0b53] = 0x26044, [0x0b54] = 0x7d82, [0x0b55] = 0x26026, [0x0b56] = 0x42e3, + [0x0b57] = 0x26236, [0x0b58] = 0x4359, [0x0b59] = 0x4371, [0x0b5a] = 0x438e, + [0x0b5b] = 0x438c, [0x0b5c] = 0x2643a, [0x0b5d] = 0x43a4, [0x0b5e] = 0x264f4, + [0x0b5f] = 0x8055, [0x0b60] = 0x4414, [0x0b61] = 0x26762, [0x0b62] = 0x2675b, + [0x0b63] = 0x2676a, [0x0b64] = 0x4411, [0x0b65] = 0x26768, [0x0b66] = 0x441b, + [0x0b67] = 0x4412, [0x0b68] = 0x440e, [0x0b69] = 0x4415, [0x0b6a] = 0x8168, + [0x0b6b] = 0x4410, [0x0b6c] = 0x26781, [0x0b6d] = 0x4417, [0x0b6e] = 0x8246, + [0x0b6f] = 0x8243, [0x0b70] = 0x4470, [0x0b71] = 0x44ed, [0x0b72] = 0x26ce7, + [0x0b73] = 0x44ee, [0x0b74] = 0x26ce6, [0x0b75] = 0x26cd1, [0x0b76] = 0x26d11, + [0x0b77] = 0x8481, [0x0b78] = 0x26cd0, [0x0b79] = 0x26cd9, [0x0b7a] = 0x26d0a, + [0x0b7b] = 0x44f4, [0x0b7c] = 0x26cda, [0x0b7d] = 0x26cdd, [0x0b7e] = 0x26cc8, + [0x0b7f] = 0x26ce2, [0x0b80] = 0x26ce9, [0x0b81] = 0x26ccb, [0x0b82] = 0x847c, + [0x0b83] = 0x26ccc, [0x0b84] = 0x26cc1, [0x0b85] = 0x846a, [0x0b86] = 0x26cde, + [0x0b87] = 0x8488, [0x0b88] = 0x44f2, [0x0b89] = 0x44f8, [0x0b8a] = 0x44f3, + [0x0b8b] = 0x26d51, [0x0b8c] = 0x26d12, [0x0b8d] = 0x44fa, [0x0b8e] = 0x26ce0, + [0x0b8f] = 0x26d2b, [0x0b91] = 0x272d8, [0x0b92] = 0x272d1, [0x0b93] = 0x8710, + [0x0b94] = 0x272d2, [0x0b95] = 0x272cd, [0x0b96] = 0x871f, [0x0b97] = 0x45b6, + [0x0b98] = 0x45b7, [0x0b99] = 0x2733d, [0x0b9a] = 0x870f, [0x0b9b] = 0x272ca, + [0x0b9c] = 0x45ba, [0x0b9d] = 0x272cb, [0x0b9e] = 0x45bc, [0x0b9f] = 0x272d7, + [0x0ba0] = 0x275f4, [0x0ba1] = 0x463b, [0x0ba2] = 0x88d3, [0x0ba3] = 0x462f, + [0x0ba4] = 0x27687, [0x0ba5] = 0x2768b, [0x0ba6] = 0x27683, [0x0ba7] = 0x4637, + [0x0ba8] = 0x4699, [0x0ba9] = 0x279c5, [0x0baa] = 0x279d2, [0x0bab] = 0x279c6, + [0x0bac] = 0x279d3, [0x0bad] = 0x46d9, [0x0bae] = 0x46d8, [0x0baf] = 0x46d7, + [0x0bb0] = 0x279f0, [0x0bb1] = 0x279cd, [0x0bb2] = 0x279cc, [0x0bb3] = 0x279dc, + [0x0bb4] = 0x279d6, [0x0bb5] = 0x4736, [0x0bb6] = 0x27be6, [0x0bb7] = 0x27c41, + [0x0bb8] = 0x27c3f, [0x0bb9] = 0x8c87, [0x0bba] = 0x27cc5, [0x0bbb] = 0x27cc0, + [0x0bbc] = 0x27cc6, [0x0bbd] = 0x27cbe, [0x0bbe] = 0x27cbf, [0x0bbf] = 0x8cc6, + [0x0bc0] = 0x4770, [0x0bc1] = 0x27d63, [0x0bc2] = 0x27ed3, [0x0bc3] = 0x27eda, + [0x0bc4] = 0x27ed5, [0x0bc5] = 0x47a5, [0x0bc6] = 0x47a6, [0x0bc7] = 0x47a9, + [0x0bc8] = 0x47ee, [0x0bc9] = 0x4854, [0x0bca] = 0x282ee, [0x0bcb] = 0x4857, + [0x0bcc] = 0x282fc, [0x0bcd] = 0x28414, [0x0bce] = 0x48a1, [0x0bcf] = 0x28523, + [0x0bd0] = 0x28522, [0x0bd1] = 0x28530, [0x0bd2] = 0x286b5, [0x0bd3] = 0x48d3, + [0x0bd4] = 0x28738, [0x0bd5] = 0x48d4, [0x0bd6] = 0x2873f, [0x0bd7] = 0x48d7, + [0x0bd8] = 0x90cc, [0x0bd9] = 0x916d, [0x0bda] = 0x9170, [0x0bdb] = 0x48f7, + [0x0bdc] = 0x48f6, [0x0bdd] = 0x48f9, [0x0bde] = 0x48f8, [0x0bdf] = 0x9258, + [0x0be0] = 0x9242, [0x0be1] = 0x9268, [0x0be2] = 0x9269, [0x0be3] = 0x28968, + [0x0be4] = 0x28967, [0x0be5] = 0x9243, [0x0be6] = 0x28965, [0x0be7] = 0x9247, + [0x0be8] = 0x498a, [0x0be9] = 0x28c75, [0x0bea] = 0x28cf7, [0x0beb] = 0x28cf3, + [0x0bec] = 0x28cf6, [0x0bed] = 0x4994, [0x0bee] = 0x28d00, [0x0bef] = 0x4993, + [0x0bf0] = 0x28cff, [0x0bf1] = 0x28cf5, [0x0bf2] = 0x959d, [0x0bf3] = 0x49dd, + [0x0bf4] = 0x49dc, [0x0bf5] = 0x49f7, [0x0bf6] = 0x96cf, [0x0bf7] = 0x29092, + [0x0bf8] = 0x29206, [0x0bf9] = 0x4a42, [0x0bfa] = 0x29207, [0x0bfb] = 0x2926b, + [0x0bfc] = 0x4a54, [0x0bfd] = 0x2926c, [0x0bfe] = 0x4a55, [0x0bff] = 0x29393, + [0x0c00] = 0x4a8f, [0x0c01] = 0x29394, [0x0c02] = 0x97f4, [0x0c03] = 0x4ab4, + [0x0c04] = 0x4ab3, [0x0c05] = 0x29462, [0x0c06] = 0x29463, [0x0c07] = 0x9809, + [0x0c08] = 0x2945f, [0x0c09] = 0x29464, [0x0c0a] = 0x2945b, [0x0c0b] = 0x29459, + [0x0c0c] = 0x4afb, [0x0c0d] = 0x4afd, [0x0c0e] = 0x295a4, [0x0c0f] = 0x295ac, + [0x0c10] = 0x98ab, [0x0c11] = 0x4afc, [0x0c12] = 0x296b5, [0x0c13] = 0x4b2c, + [0x0c14] = 0x4b2f, [0x0c15] = 0x296ae, [0x0c16] = 0x4b2b, [0x0c17] = 0x296c5, + [0x0c18] = 0x4b33, [0x0c19] = 0x4b34, [0x0c1a] = 0x98fb, [0x0c1b] = 0x2983b, + [0x0c1c] = 0x9aac, [0x0c1d] = 0x9aae, [0x0c1e] = 0x9aaa, [0x0c1f] = 0x4be8, + [0x0c20] = 0x29abf, [0x0c21] = 0x29c2b, [0x0c22] = 0x29c84, [0x0c23] = 0x29c80, + [0x0c24] = 0x29d4d, [0x0c25] = 0x29d4f, [0x0c26] = 0x9b5c, [0x0c27] = 0x29d4c, + [0x0c28] = 0x29f92, [0x0c29] = 0x4d5d, [0x0c2a] = 0x50d2, [0x0c2b] = 0x3485, + [0x0c2c] = 0x3488, [0x0c2d] = 0x203ae, [0x0c2e] = 0x20379, [0x0c2f] = 0x348e, + [0x0c30] = 0x3484, [0x0c31] = 0x20371, [0x0c32] = 0x50df, [0x0c33] = 0x203b3, + [0x0c34] = 0x3483, [0x0c35] = 0x2032c, [0x0c36] = 0x20377, [0x0c37] = 0x2052f, + [0x0c38] = 0x207c3, [0x0c39] = 0x3502, [0x0c3a] = 0x207cd, [0x0c3b] = 0x3506, + [0x0c3c] = 0x3505, [0x0c3d] = 0x207c9, [0x0c3e] = 0x34fe, [0x0c3f] = 0x3501, + [0x0c40] = 0x3500, [0x0c41] = 0x207ce, [0x0c42] = 0x208a5, [0x0c43] = 0x208a0, + [0x0c44] = 0x208fe, [0x0c45] = 0x20959, [0x0c46] = 0x20a9a, [0x0c47] = 0x35e7, + [0x0c48] = 0x5619, [0x0c49] = 0x20ee4, [0x0c4a] = 0x20ed7, [0x0c4b] = 0x20edc, + [0x0c4c] = 0x35e6, [0x0c4d] = 0x20ee7, [0x0c4e] = 0x35ed, [0x0c4f] = 0x35e2, + [0x0c50] = 0x35eb, [0x0c51] = 0x20ee5, [0x0c52] = 0x35e8, [0x0c53] = 0x35ec, + [0x0c54] = 0x560a, [0x0c55] = 0x3624, [0x0c56] = 0x589a, [0x0c57] = 0x21414, + [0x0c58] = 0x3662, [0x0c59] = 0x213f1, [0x0c5a] = 0x3661, [0x0c5b] = 0x3660, + [0x0c5c] = 0x3664, [0x0c5d] = 0x368b, [0x0c5e] = 0x215b6, [0x0c5f] = 0x2166e, + [0x0c60] = 0x2166c, [0x0c61] = 0x21681, [0x0c62] = 0x21842, [0x0c63] = 0x3719, + [0x0c64] = 0x3716, [0x0c65] = 0x3718, [0x0c66] = 0x3722, [0x0c67] = 0x2181a, + [0x0c68] = 0x371d, [0x0c69] = 0x3717, [0x0c6a] = 0x371e, [0x0c6b] = 0x21827, + [0x0c6c] = 0x21825, [0x0c6d] = 0x21817, [0x0c6e] = 0x2181c, [0x0c6f] = 0x2183d, + [0x0c70] = 0x21820, [0x0c71] = 0x3769, [0x0c72] = 0x376a, [0x0c73] = 0x21a81, + [0x0c74] = 0x376c, [0x0c75] = 0x377a, [0x0c76] = 0x378a, [0x0c77] = 0x21c09, + [0x0c78] = 0x21cc6, [0x0c79] = 0x21cc4, [0x0c7a] = 0x379c, [0x0c7b] = 0x21cc5, + [0x0c7c] = 0x37fd, [0x0c7d] = 0x37f9, [0x0c7e] = 0x21eef, [0x0c7f] = 0x37ff, + [0x0c80] = 0x21edf, [0x0c81] = 0x21ede, [0x0c82] = 0x21eee, [0x0c83] = 0x21ef5, + [0x0c84] = 0x21eec, [0x0c85] = 0x37fc, [0x0c86] = 0x21edd, [0x0c87] = 0x5d85, + [0x0c88] = 0x37fb, [0x0c89] = 0x3802, [0x0c8a] = 0x385f, [0x0c8b] = 0x5e56, + [0x0c8c] = 0x385e, [0x0c8d] = 0x385d, [0x0c8e] = 0x385c, [0x0c8f] = 0x22122, + [0x0c90] = 0x5e51, [0x0c91] = 0x3892, [0x0c92] = 0x22297, [0x0c93] = 0x22295, + [0x0c94] = 0x3894, [0x0c95] = 0x3895, [0x0c96] = 0x38d1, [0x0c97] = 0x224a9, + [0x0c98] = 0x38f1, [0x0c99] = 0x22553, [0x0c9a] = 0x5fb1, [0x0c9b] = 0x22556, + [0x0c9c] = 0x22555, [0x0c9d] = 0x3977, [0x0c9e] = 0x396f, [0x0c9f] = 0x227e3, + [0x0ca0] = 0x227e2, [0x0ca1] = 0x3987, [0x0ca2] = 0x397d, [0x0ca3] = 0x397c, + [0x0ca4] = 0x397e, [0x0ca5] = 0x3985, [0x0ca6] = 0x398b, [0x0ca7] = 0x3986, + [0x0ca8] = 0x3980, [0x0caa] = 0x227a9, [0x0cab] = 0x3978, [0x0cad] = 0x22833, + [0x0cae] = 0x2280a, [0x0caf] = 0x39ba, [0x0cb0] = 0x22a59, [0x0cb1] = 0x3a33, + [0x0cb2] = 0x22cbc, [0x0cb3] = 0x3a2d, [0x0cb4] = 0x22cc4, [0x0cb5] = 0x22cc7, + [0x0cb6] = 0x22cc6, [0x0cb7] = 0x3a37, [0x0cb8] = 0x645a, [0x0cb9] = 0x6463, + [0x0cba] = 0x22cb8, [0x0cbb] = 0x22cda, [0x0cbc] = 0x3a2e, [0x0cbd] = 0x22cb7, + [0x0cbe] = 0x22cc0, [0x0cbf] = 0x3a3d, [0x0cc0] = 0x22ccd, [0x0cc1] = 0x3aa0, + [0x0cc2] = 0x22fbc, [0x0cc3] = 0x22fab, [0x0cc4] = 0x3aa3, [0x0cc5] = 0x23086, + [0x0cc6] = 0x669b, [0x0cc7] = 0x2325a, [0x0cc8] = 0x66a3, [0x0cc9] = 0x3b0e, + [0x0cca] = 0x669e, [0x0ccb] = 0x23343, [0x0ccc] = 0x3bb6, [0x0ccd] = 0x235ac, + [0x0cce] = 0x3bab, [0x0ccf] = 0x3bad, [0x0cd0] = 0x3ba6, [0x0cd1] = 0x235be, + [0x0cd2] = 0x69b8, [0x0cd3] = 0x3baa, [0x0cd4] = 0x69ba, [0x0cd5] = 0x3bb1, + [0x0cd6] = 0x235ab, [0x0cd7] = 0x3ba8, [0x0cd8] = 0x3baf, [0x0cd9] = 0x3bb0, + [0x0cda] = 0x3ba7, [0x0cdb] = 0x3bb2, [0x0cdc] = 0x3b9d, [0x0cdd] = 0x3ba5, + [0x0cde] = 0x3bb5, [0x0cdf] = 0x21b3e, [0x0ce0] = 0x69c7, [0x0ce1] = 0x69d7, + [0x0ce2] = 0x238f9, [0x0ce3] = 0x3c41, [0x0ce4] = 0x238f3, [0x0ce5] = 0x238f7, + [0x0ce6] = 0x6b70, [0x0ce7] = 0x23a45, [0x0ce8] = 0x23a48, [0x0ce9] = 0x3c72, + [0x0cea] = 0x6b9d, [0x0ceb] = 0x3c6f, [0x0cec] = 0x3c71, [0x0ced] = 0x23a44, + [0x0cee] = 0x3c85, [0x0cef] = 0x23aaf, [0x0cf0] = 0x23ab1, [0x0cf1] = 0x3ca4, + [0x0cf2] = 0x3ca5, [0x0cf3] = 0x3ca6, [0x0cf4] = 0x23bcf, [0x0cf5] = 0x3ca8, + [0x0cf6] = 0x23bcb, [0x0cf7] = 0x23bcd, [0x0cf8] = 0x3ca3, [0x0cf9] = 0x23c50, + [0x0cfa] = 0x23eec, [0x0cfb] = 0x23f1a, [0x0cfc] = 0x6f16, [0x0cfd] = 0x6f24, + [0x0cfe] = 0x23ed8, [0x0cff] = 0x3d43, [0x0d00] = 0x23ed0, [0x0d01] = 0x23ed1, + [0x0d02] = 0x3d3d, [0x0d03] = 0x3d45, [0x0d04] = 0x23e7b, [0x0d05] = 0x23ed2, + [0x0d06] = 0x3d44, [0x0d07] = 0x23ed4, [0x0d08] = 0x23ee7, [0x0d09] = 0x23edf, + [0x0d0a] = 0x23ede, [0x0d0b] = 0x6f45, [0x0d0c] = 0x23ed9, [0x0d0d] = 0x23ecf, + [0x0d0e] = 0x2430d, [0x0d0f] = 0x3de3, [0x0d10] = 0x7179, [0x0d12] = 0x3ddf, + [0x0d13] = 0x3de4, [0x0d14] = 0x717a, [0x0d15] = 0x3de5, [0x0d16] = 0x24338, + [0x0d17] = 0x7254, [0x0d18] = 0x3e22, [0x0d19] = 0x3e4a, [0x0d1a] = 0x246a9, + [0x0d1b] = 0x3e49, [0x0d1c] = 0x3e44, [0x0d1d] = 0x3e4b, [0x0d1e] = 0x3e87, + [0x0d1f] = 0x3e89, [0x0d20] = 0x3e92, [0x0d21] = 0x3e91, [0x0d22] = 0x3e90, + [0x0d23] = 0x3e8e, [0x0d24] = 0x2483e, [0x0d25] = 0x24846, [0x0d26] = 0x249ed, + [0x0d28] = 0x3f12, [0x0d29] = 0x3f10, [0x0d2a] = 0x3f11, [0x0d2b] = 0x24b6c, + [0x0d2c] = 0x3f32, [0x0d2d] = 0x3f34, [0x0d2e] = 0x3f37, [0x0d2f] = 0x3f33, + [0x0d30] = 0x3f36, [0x0d31] = 0x3f35, [0x0d32] = 0x3f65, [0x0d33] = 0x24cac, + [0x0d34] = 0x757c, [0x0d35] = 0x757b, [0x0d36] = 0x24dc9, [0x0d37] = 0x7612, + [0x0d38] = 0x3fb0, [0x0d39] = 0x24e12, [0x0d3a] = 0x3faf, [0x0d3b] = 0x3faa, + [0x0d3c] = 0x24dfd, [0x0d3d] = 0x24e01, [0x0d3e] = 0x24e11, [0x0d3f] = 0x3fab, + [0x0d40] = 0x24e89, [0x0d41] = 0x24e05, [0x0d42] = 0x24dfe, [0x0d43] = 0x24e0b, + [0x0d44] = 0x24e20, [0x0d45] = 0x24e04, [0x0d46] = 0x24f88, [0x0d47] = 0x3ff3, + [0x0d48] = 0x25002, [0x0d49] = 0x3ff4, [0x0d4a] = 0x25003, [0x0d4b] = 0x76b6, + [0x0d4c] = 0x76e0, [0x0d4d] = 0x4008, [0x0d4e] = 0x404e, [0x0d4f] = 0x4055, + [0x0d50] = 0x404b, [0x0d51] = 0x25229, [0x0d52] = 0x2523b, [0x0d53] = 0x404d, + [0x0d54] = 0x7773, [0x0d55] = 0x25206, [0x0d56] = 0x4052, [0x0d57] = 0x7772, + [0x0d58] = 0x404c, [0x0d59] = 0x7770, [0x0d5a] = 0x4050, [0x0d5b] = 0x4053, + [0x0d5c] = 0x25203, [0x0d5d] = 0x4051, [0x0d5e] = 0x25378, [0x0d5f] = 0x25379, + [0x0d60] = 0x2537d, [0x0d61] = 0x4089, [0x0d62] = 0x2537f, [0x0d63] = 0x4095, + [0x0d64] = 0x40cc, [0x0d65] = 0x40c8, [0x0d66] = 0x40ce, [0x0d67] = 0x25532, + [0x0d68] = 0x40ca, [0x0d69] = 0x25500, [0x0d6a] = 0x789d, [0x0d6b] = 0x25522, + [0x0d6c] = 0x40cd, [0x0d6d] = 0x256a9, [0x0d6e] = 0x415c, [0x0d6f] = 0x4167, + [0x0d70] = 0x4169, [0x0d71] = 0x4165, [0x0d72] = 0x4162, [0x0d73] = 0x25804, + [0x0d74] = 0x7a27, [0x0d75] = 0x7a35, [0x0d77] = 0x41aa, [0x0d78] = 0x259b8, + [0x0d79] = 0x25a9b, [0x0d7a] = 0x41d2, [0x0d7b] = 0x7ba2, [0x0d7c] = 0x4203, + [0x0d7d] = 0x420c, [0x0d7e] = 0x25b92, [0x0d7f] = 0x4209, [0x0d80] = 0x4206, + [0x0d81] = 0x4205, [0x0d82] = 0x7b89, [0x0d83] = 0x25b8f, [0x0d84] = 0x420b, + [0x0d85] = 0x4208, [0x0d86] = 0x25b98, [0x0d87] = 0x7ba5, [0x0d88] = 0x25bae, + [0x0d89] = 0x428e, [0x0d8a] = 0x25e9d, [0x0d8b] = 0x7cb6, [0x0d8c] = 0x42e8, + [0x0d8d] = 0x26049, [0x0d8e] = 0x26050, [0x0d8f] = 0x26046, [0x0d90] = 0x42ea, + [0x0d91] = 0x2604e, [0x0d92] = 0x7da5, [0x0d93] = 0x7dc3, [0x0d94] = 0x26055, + [0x0d95] = 0x42e9, [0x0d96] = 0x42eb, [0x0d97] = 0x26064, [0x0d98] = 0x42f0, + [0x0d99] = 0x26238, [0x0d9a] = 0x434b, [0x0d9b] = 0x7fab, [0x0d9c] = 0x4373, + [0x0d9d] = 0x4375, [0x0d9e] = 0x4392, [0x0d9f] = 0x4391, [0x0da0] = 0x4393, + [0x0da1] = 0x8025, [0x0da2] = 0x43a7, [0x0da3] = 0x43a6, [0x0da4] = 0x43a8, + [0x0da5] = 0x43aa, [0x0da6] = 0x264fe, [0x0da7] = 0x43a9, [0x0da8] = 0x8059, + [0x0da9] = 0x43bb, [0x0daa] = 0x43bc, [0x0dab] = 0x43ba, [0x0dac] = 0x43bd, + [0x0dad] = 0x4427, [0x0dae] = 0x8185, [0x0daf] = 0x267a6, [0x0db0] = 0x4424, + [0x0db1] = 0x441e, [0x0db2] = 0x441f, [0x0db3] = 0x441d, [0x0db4] = 0x4420, + [0x0db5] = 0x4423, [0x0db6] = 0x4429, [0x0db7] = 0x4422, [0x0db8] = 0x2679c, + [0x0db9] = 0x26799, [0x0dba] = 0x441c, [0x0dbb] = 0x818e, [0x0dbc] = 0x4428, + [0x0dbd] = 0x267b5, [0x0dbe] = 0x267a3, [0x0dbf] = 0x267a0, [0x0dc0] = 0x267a7, + [0x0dc1] = 0x2679b, [0x0dc2] = 0x269df, [0x0dc3] = 0x269e1, [0x0dc4] = 0x4471, + [0x0dc5] = 0x4473, [0x0dc6] = 0x4472, [0x0dc7] = 0x26a4d, [0x0dc8] = 0x4502, + [0x0dc9] = 0x26df3, [0x0dca] = 0x26d6f, [0x0dcb] = 0x26d69, [0x0dcc] = 0x44fe, + [0x0dcd] = 0x84be, [0x0dce] = 0x26d6b, [0x0dcf] = 0x26d78, [0x0dd0] = 0x26d87, + [0x0dd1] = 0x4508, [0x0dd2] = 0x26d85, [0x0dd3] = 0x26d82, [0x0dd4] = 0x26d90, + [0x0dd5] = 0x4507, [0x0dd6] = 0x4504, [0x0dd7] = 0x26d80, [0x0dd8] = 0x26d67, + [0x0dd9] = 0x4500, [0x0dda] = 0x44fc, [0x0ddb] = 0x26d61, [0x0ddc] = 0x4544, + [0x0ddd] = 0x26d93, [0x0dde] = 0x44f1, [0x0ddf] = 0x26df2, [0x0de0] = 0x26d86, + [0x0de1] = 0x84a6, [0x0de2] = 0x4506, [0x0de3] = 0x271cd, [0x0de4] = 0x271c4, + [0x0de5] = 0x45c6, [0x0de6] = 0x45c3, [0x0de7] = 0x45c1, [0x0de8] = 0x45c2, + [0x0de9] = 0x2730f, [0x0dea] = 0x45c4, [0x0deb] = 0x45c7, [0x0dec] = 0x2730d, + [0x0ded] = 0x45bf, [0x0dee] = 0x45d2, [0x0def] = 0x27373, [0x0df0] = 0x45ca, + [0x0df2] = 0x2730a, [0x0df3] = 0x872f, [0x0df4] = 0x27308, [0x0df5] = 0x27313, + [0x0df6] = 0x4613, [0x0df7] = 0x275f8, [0x0df8] = 0x4630, [0x0df9] = 0x463e, + [0x0dfa] = 0x4639, [0x0dfb] = 0x276ab, [0x0dfc] = 0x276a8, [0x0dfd] = 0x463c, + [0x0dfe] = 0x463f, [0x0dff] = 0x276a5, [0x0e00] = 0x4634, [0x0e01] = 0x463d, + [0x0e02] = 0x276c3, [0x0e03] = 0x276a4, [0x0e04] = 0x4638, [0x0e05] = 0x276d4, + [0x0e06] = 0x276ba, [0x0e07] = 0x277f1, [0x0e08] = 0x89a0, [0x0e09] = 0x4682, + [0x0e0a] = 0x2783f, [0x0e0b] = 0x4683, [0x0e0c] = 0x278ea, [0x0e0d] = 0x469b, + [0x0e0e] = 0x279f7, [0x0e0f] = 0x46e0, [0x0e10] = 0x46dd, [0x0e11] = 0x279fa, + [0x0e12] = 0x279f5, [0x0e13] = 0x46de, [0x0e14] = 0x279fe, [0x0e15] = 0x46e3, + [0x0e16] = 0x46e5, [0x0e17] = 0x27a00, [0x0e18] = 0x8a97, [0x0e19] = 0x46e2, + [0x0e1a] = 0x27a02, [0x0e1b] = 0x279fb, [0x0e1c] = 0x27a07, [0x0e1d] = 0x46df, + [0x0e1e] = 0x27a1a, [0x0e1f] = 0x472e, [0x0e20] = 0x27bb8, [0x0e21] = 0x4737, + [0x0e22] = 0x4738, [0x0e23] = 0x27be9, [0x0e24] = 0x27beb, [0x0e25] = 0x27c50, + [0x0e26] = 0x27c4f, [0x0e27] = 0x8c8b, [0x0e28] = 0x27d86, [0x0e29] = 0x3562, + [0x0e2a] = 0x27d8e, [0x0e2b] = 0x4794, [0x0e2c] = 0x4793, [0x0e2d] = 0x47ab, + [0x0e2e] = 0x47ad, [0x0e2f] = 0x27ef0, [0x0e30] = 0x27efb, [0x0e31] = 0x47f5, + [0x0e32] = 0x47f7, [0x0e33] = 0x28042, [0x0e34] = 0x47f6, [0x0e35] = 0x47f8, + [0x0e36] = 0x28085, [0x0e37] = 0x47fb, [0x0e38] = 0x47f9, [0x0e39] = 0x4858, + [0x0e3a] = 0x485a, [0x0e3b] = 0x28305, [0x0e3c] = 0x4859, [0x0e3d] = 0x8f0f, + [0x0e3e] = 0x4885, [0x0e3f] = 0x48a4, [0x0e40] = 0x48d8, [0x0e41] = 0x48d9, + [0x0e42] = 0x2874b, [0x0e43] = 0x48dd, [0x0e44] = 0x48c8, [0x0e45] = 0x28763, + [0x0e46] = 0x48fa, [0x0e47] = 0x48fb, [0x0e48] = 0x9275, [0x0e49] = 0x4927, + [0x0e4a] = 0x929f, [0x0e4b] = 0x492a, [0x0e4c] = 0x4925, [0x0e4d] = 0x28999, + [0x0e4e] = 0x4928, [0x0e4f] = 0x28c81, [0x0e50] = 0x28d17, [0x0e51] = 0x28d10, + [0x0e52] = 0x28d12, [0x0e53] = 0x95a6, [0x0e54] = 0x4995, [0x0e55] = 0x969a, + [0x0e56] = 0x28efa, [0x0e57] = 0x28ef3, [0x0e58] = 0x28ef2, [0x0e59] = 0x28ef5, + [0x0e5a] = 0x28ef6, [0x0e5b] = 0x28fbb, [0x0e5c] = 0x28fc2, [0x0e5d] = 0x290a7, + [0x0e5e] = 0x4a0f, [0x0e5f] = 0x4a11, [0x0e60] = 0x290a8, [0x0e61] = 0x290a3, + [0x0e62] = 0x4a10, [0x0e63] = 0x290aa, [0x0e64] = 0x4a15, [0x0e65] = 0x4a13, + [0x0e66] = 0x9757, [0x0e67] = 0x291dc, [0x0e68] = 0x4a47, [0x0e69] = 0x4a46, + [0x0e6a] = 0x2920f, [0x0e6b] = 0x4a59, [0x0e6c] = 0x4a5b, [0x0e6d] = 0x29279, + [0x0e6e] = 0x4a5e, [0x0e6f] = 0x2927f, [0x0e70] = 0x29285, [0x0e71] = 0x4a5a, + [0x0e72] = 0x4a91, [0x0e73] = 0x4a92, [0x0e74] = 0x4a90, [0x0e75] = 0x4a93, + [0x0e76] = 0x2941b, [0x0e77] = 0x97f7, [0x0e78] = 0x4abe, [0x0e79] = 0x29477, + [0x0e7a] = 0x29476, [0x0e7b] = 0x29498, [0x0e7c] = 0x4abc, [0x0e7d] = 0x4abb, + [0x0e7e] = 0x4ab7, [0x0e7f] = 0x4ab9, [0x0e80] = 0x2947a, [0x0e81] = 0x4b01, + [0x0e82] = 0x4afe, [0x0e83] = 0x295bc, [0x0e84] = 0x295ba, [0x0e85] = 0x4b02, + [0x0e86] = 0x295b6, [0x0e87] = 0x4aff, [0x0e88] = 0x98b0, [0x0e89] = 0x295b4, + [0x0e8a] = 0x4b00, [0x0e8b] = 0x296cf, [0x0e8c] = 0x4b37, [0x0e8d] = 0x4b3a, + [0x0e8e] = 0x4b6f, [0x0e8f] = 0x4b77, [0x0e90] = 0x4b79, [0x0e91] = 0x99c6, + [0x0e92] = 0x2987b, [0x0e93] = 0x4bc8, [0x0e94] = 0x29a1c, [0x0e95] = 0x29a21, + [0x0e96] = 0x29a1d, [0x0e97] = 0x29ac0, [0x0e98] = 0x4bf2, [0x0e99] = 0x29aff, + [0x0e9a] = 0x4bf1, [0x0e9b] = 0x4bf0, [0x0e9c] = 0x9b62, [0x0e9d] = 0x29d56, + [0x0e9e] = 0x4c34, [0x0e9f] = 0x29fa1, [0x0ea0] = 0x29fa2, [0x0ea1] = 0x29fa6, + [0x0ea2] = 0x2a256, [0x0ea3] = 0x2a257, [0x0ea4] = 0x4d2c, [0x0ea5] = 0x4d2d, + [0x0ea6] = 0x2a301, [0x0ea7] = 0x2a3ed, [0x0ea9] = 0x2a5f2, [0x0eaa] = 0x50fa, + [0x0eab] = 0x203b8, [0x0eac] = 0x3491, [0x0ead] = 0x203c0, [0x0eae] = 0x3494, + [0x0eaf] = 0x203b7, [0x0eb0] = 0x203e1, [0x0eb1] = 0x34c4, [0x0eb2] = 0x350a, + [0x0eb3] = 0x207e8, [0x0eb4] = 0x5285, [0x0eb5] = 0x208b2, [0x0eb6] = 0x3552, + [0x0eb7] = 0x20aae, [0x0eb8] = 0x3559, [0x0eb9] = 0x366f, [0x0eba] = 0x20f7e, + [0x0ebb] = 0x35f2, [0x0ebc] = 0x35f4, [0x0ebd] = 0x5643, [0x0ebe] = 0x20f76, + [0x0ebf] = 0x35f1, [0x0ec0] = 0x563c, [0x0ec1] = 0x20f96, [0x0ec2] = 0x366a, + [0x0ec3] = 0x21420, [0x0ec4] = 0x21421, [0x0ec5] = 0x21423, [0x0ec6] = 0x21429, + [0x0ec7] = 0x21677, [0x0ec8] = 0x21851, [0x0ec9] = 0x3724, [0x0eca] = 0x21856, + [0x0ecb] = 0x3723, [0x0ecc] = 0x21888, [0x0ecd] = 0x21859, [0x0ece] = 0x21855, + [0x0ecf] = 0x3727, [0x0ed0] = 0x21997, [0x0ed1] = 0x21998, [0x0ed2] = 0x376d, + [0x0ed3] = 0x5bed, [0x0ed4] = 0x376e, [0x0ed5] = 0x376f, [0x0ed6] = 0x21aa1, + [0x0ed7] = 0x21aa3, [0x0ed8] = 0x5c35, [0x0ed9] = 0x379f, [0x0eda] = 0x380a, + [0x0edb] = 0x3806, [0x0edc] = 0x380e, [0x0edd] = 0x21f0a, [0x0ede] = 0x380d, + [0x0edf] = 0x3805, [0x0ee0] = 0x21f3d, [0x0ee1] = 0x21f0c, [0x0ee2] = 0x380b, + [0x0ee3] = 0x3810, [0x0ee4] = 0x382e, [0x0ee5] = 0x2213d, [0x0ee6] = 0x22139, + [0x0ee7] = 0x222b0, [0x0ee8] = 0x222b2, [0x0ee9] = 0x222ae, [0x0eea] = 0x3896, + [0x0eeb] = 0x3897, [0x0eec] = 0x38c4, [0x0eed] = 0x5f47, [0x0eee] = 0x38c5, + [0x0eef] = 0x22420, [0x0ef0] = 0x38d2, [0x0ef1] = 0x2256e, [0x0ef2] = 0x2256d, + [0x0ef3] = 0x2256a, [0x0ef4] = 0x3981, [0x0ef5] = 0x22832, [0x0ef6] = 0x398e, + [0x0ef7] = 0x3990, [0x0ef8] = 0x398f, [0x0ef9] = 0x22839, [0x0efa] = 0x3991, + [0x0efb] = 0x3995, [0x0efc] = 0x3993, [0x0efd] = 0x227a3, [0x0efe] = 0x616d, + [0x0eff] = 0x2287f, [0x0f00] = 0x22835, [0x0f01] = 0x2283d, [0x0f02] = 0x229f4, + [0x0f03] = 0x229f5, [0x0f04] = 0x3a3b, [0x0f05] = 0x3a48, [0x0f06] = 0x22d48, + [0x0f07] = 0x22d28, [0x0f08] = 0x3a46, [0x0f09] = 0x3a47, [0x0f0a] = 0x22d27, + [0x0f0b] = 0x22d32, [0x0f0c] = 0x22d2c, [0x0f0d] = 0x3a4c, [0x0f0e] = 0x22d2e, + [0x0f0f] = 0x3a4a, [0x0f10] = 0x3a50, [0x0f11] = 0x3a43, [0x0f12] = 0x22d23, + [0x0f13] = 0x22d31, [0x0f15] = 0x3a49, [0x0f16] = 0x3aa6, [0x0f17] = 0x3aa5, + [0x0f18] = 0x3aa4, [0x0f19] = 0x22fc9, [0x0f1a] = 0x23089, [0x0f1b] = 0x3ab9, + [0x0f1c] = 0x230bb, [0x0f1d] = 0x3ace, [0x0f1e] = 0x3acf, [0x0f1f] = 0x3b13, + [0x0f20] = 0x23397, [0x0f21] = 0x23393, [0x0f22] = 0x23628, [0x0f23] = 0x3bc6, + [0x0f24] = 0x3bc5, [0x0f25] = 0x3bca, [0x0f26] = 0x3bd9, [0x0f27] = 0x3bc1, + [0x0f28] = 0x23618, [0x0f29] = 0x2363b, [0x0f2a] = 0x69f5, [0x0f2b] = 0x23627, + [0x0f2c] = 0x23624, [0x0f2d] = 0x2361b, [0x0f2e] = 0x23631, [0x0f2f] = 0x3bcb, + [0x0f30] = 0x23626, [0x0f31] = 0x236a3, [0x0f32] = 0x2363f, [0x0f33] = 0x23622, + [0x0f34] = 0x23619, [0x0f35] = 0x6a03, [0x0f36] = 0x23641, [0x0f37] = 0x2362b, + [0x0f38] = 0x6a65, [0x0f39] = 0x3c42, [0x0f3a] = 0x2390c, [0x0f3b] = 0x6b75, + [0x0f3c] = 0x3c74, [0x0f3d] = 0x3c73, [0x0f3e] = 0x23a4e, [0x0f3f] = 0x23ab9, + [0x0f40] = 0x23afa, [0x0f41] = 0x23be9, [0x0f42] = 0x23be8, [0x0f43] = 0x23be4, + [0x0f44] = 0x6f8a, [0x0f45] = 0x6f56, [0x0f46] = 0x3d52, [0x0f47] = 0x23f5f, + [0x0f48] = 0x23f5d, [0x0f49] = 0x23f52, [0x0f4a] = 0x3d50, [0x0f4b] = 0x23f74, + [0x0f4c] = 0x3d4b, [0x0f4d] = 0x23f46, [0x0f4e] = 0x3d4c, [0x0f4f] = 0x3d6d, + [0x0f50] = 0x23faa, [0x0f51] = 0x6f98, [0x0f52] = 0x23f4a, [0x0f53] = 0x23f59, + [0x0f54] = 0x23f4b, [0x0f55] = 0x3d4f, [0x0f56] = 0x6f68, [0x0f57] = 0x3df0, + [0x0f58] = 0x24350, [0x0f59] = 0x7234, [0x0f5a] = 0x7245, [0x0f5b] = 0x3e4d, + [0x0f5c] = 0x3e4c, [0x0f5d] = 0x246d0, [0x0f5e] = 0x3e4f, [0x0f5f] = 0x3e4e, + [0x0f60] = 0x3e50, [0x0f61] = 0x246cc, [0x0f62] = 0x735c, [0x0f63] = 0x3e96, + [0x0f64] = 0x7356, [0x0f65] = 0x24864, [0x0f66] = 0x24865, [0x0f67] = 0x3e97, + [0x0f68] = 0x3e95, [0x0f69] = 0x3e98, [0x0f6a] = 0x2485c, [0x0f6b] = 0x24a15, + [0x0f6c] = 0x3eec, [0x0f6d] = 0x3eeb, [0x0f6e] = 0x3f13, [0x0f6f] = 0x3f14, + [0x0f70] = 0x3f38, [0x0f71] = 0x3f3a, [0x0f72] = 0x3f39, [0x0f73] = 0x24b79, + [0x0f74] = 0x3f68, [0x0f75] = 0x3f67, [0x0f76] = 0x24cc5, [0x0f77] = 0x24cb8, + [0x0f78] = 0x24e2c, [0x0f79] = 0x3fbe, [0x0f7a] = 0x3fbc, [0x0f7b] = 0x24e37, + [0x0f7c] = 0x24e35, [0x0f7d] = 0x24e31, [0x0f7e] = 0x3fbb, [0x0f7f] = 0x24e2f, + [0x0f80] = 0x3fba, [0x0f81] = 0x24e2b, [0x0f82] = 0x3fb9, [0x0f83] = 0x3fb7, + [0x0f84] = 0x24e2d, [0x0f85] = 0x24e2a, [0x0f86] = 0x3fc1, [0x0f87] = 0x24f95, + [0x0f88] = 0x3ff7, [0x0f89] = 0x2523e, [0x0f8a] = 0x4060, [0x0f8b] = 0x25247, + [0x0f8c] = 0x25245, [0x0f8d] = 0x4059, [0x0f8e] = 0x405c, [0x0f8f] = 0x405a, + [0x0f90] = 0x4058, [0x0f91] = 0x25252, [0x0f92] = 0x405b, [0x0f93] = 0x25270, + [0x0f94] = 0x25250, [0x0f95] = 0x25258, [0x0f96] = 0x25251, [0x0f97] = 0x2523d, + [0x0f98] = 0x405d, [0x0f99] = 0x25241, [0x0f9a] = 0x2520c, [0x0f9b] = 0x2523c, + [0x0f9c] = 0x25386, [0x0f9d] = 0x25383, [0x0f9e] = 0x25389, [0x0f9f] = 0x253f3, + [0x0fa0] = 0x40d4, [0x0fa1] = 0x40d3, [0x0fa2] = 0x78bf, [0x0fa3] = 0x40d2, + [0x0fa4] = 0x78bd, [0x0fa5] = 0x2552d, [0x0fa6] = 0x40d7, [0x0fa7] = 0x40d1, + [0x0fa8] = 0x78e4, [0x0fa9] = 0x40d5, [0x0faa] = 0x256c5, [0x0fac] = 0x416d, + [0x0fad] = 0x416f, [0x0fae] = 0x7a34, [0x0faf] = 0x4175, [0x0fb0] = 0x416c, + [0x0fb1] = 0x4174, [0x0fb2] = 0x25843, [0x0fb3] = 0x4173, [0x0fb4] = 0x25837, + [0x0fb5] = 0x25845, [0x0fb6] = 0x7a36, [0x0fb7] = 0x41ac, [0x0fb8] = 0x259e5, + [0x0fb9] = 0x25aa6, [0x0fba] = 0x25bdb, [0x0fbb] = 0x4210, [0x0fbc] = 0x25bda, + [0x0fbd] = 0x25be6, [0x0fbe] = 0x7bba, [0x0fbf] = 0x7bbc, [0x0fc0] = 0x420f, + [0x0fc1] = 0x7bc8, [0x0fc2] = 0x4223, [0x0fc3] = 0x7bc3, [0x0fc4] = 0x421d, + [0x0fc5] = 0x7bb6, [0x0fc6] = 0x420e, [0x0fc7] = 0x25bf8, [0x0fc8] = 0x25be9, + [0x0fc9] = 0x4215, [0x0fca] = 0x7bc2, [0x0fcb] = 0x4213, [0x0fcc] = 0x25be8, + [0x0fcd] = 0x25bf6, [0x0fce] = 0x421b, [0x0fcf] = 0x7bc5, [0x0fd0] = 0x4222, + [0x0fd1] = 0x4226, [0x0fd2] = 0x25be7, [0x0fd3] = 0x7bbd, [0x0fd4] = 0x7bb0, + [0x0fd5] = 0x4221, [0x0fd6] = 0x421c, [0x0fd7] = 0x4217, [0x0fd8] = 0x25bd5, + [0x0fd9] = 0x421a, [0x0fda] = 0x7bbb, [0x0fdb] = 0x25ed3, [0x0fdc] = 0x25ec7, + [0x0fdd] = 0x25ed1, [0x0fde] = 0x4299, [0x0fdf] = 0x25ec3, [0x0fe0] = 0x4297, + [0x0fe1] = 0x26080, [0x0fe2] = 0x26098, [0x0fe3] = 0x42fd, [0x0fe4] = 0x26084, + [0x0fe5] = 0x42f6, [0x0fe6] = 0x42fe, [0x0fe7] = 0x42f5, [0x0fe8] = 0x42ff, + [0x0fe9] = 0x42f7, [0x0fea] = 0x26097, [0x0feb] = 0x26083, [0x0fec] = 0x26081, + [0x0fed] = 0x4301, [0x0fee] = 0x7e04, [0x0fef] = 0x2608c, [0x0ff0] = 0x26242, + [0x0ff1] = 0x263ab, [0x0ff2] = 0x4377, [0x0ff3] = 0x263a3, [0x0ff4] = 0x263a6, + [0x0ff5] = 0x2645c, [0x0ff6] = 0x26469, [0x0ff7] = 0x26467, [0x0ff8] = 0x43ab, + [0x0ff9] = 0x2658b, [0x0ffa] = 0x265a8, [0x0ffb] = 0x43c0, [0x0ffc] = 0x267d8, + [0x0ffd] = 0x4431, [0x0ffe] = 0x442e, [0x1000] = 0x267dc, [0x1001] = 0x442c, + [0x1002] = 0x267e0, [0x1003] = 0x267e5, [0x1004] = 0x4432, [0x1005] = 0x442f, + [0x1006] = 0x442b, [0x1007] = 0x442d, [0x1008] = 0x4433, [0x1009] = 0x26918, + [0x100a] = 0x26919, [0x100b] = 0x81f1, [0x100c] = 0x4457, [0x100d] = 0x445c, + [0x100e] = 0x447b, [0x100f] = 0x26a5f, [0x1010] = 0x26a5e, [0x1011] = 0x447a, + [0x1012] = 0x26e02, [0x1013] = 0x8522, [0x1014] = 0x4513, [0x1015] = 0x451e, + [0x1016] = 0x4517, [0x1017] = 0x4520, [0x1018] = 0x452a, [0x1019] = 0x4511, + [0x101a] = 0x4515, [0x101b] = 0x450f, [0x101c] = 0x4518, [0x101d] = 0x8538, + [0x101e] = 0x26e12, [0x101f] = 0x26e36, [0x1020] = 0x452c, [0x1021] = 0x8532, + [0x1023] = 0x8510, [0x1024] = 0x26e23, [0x1025] = 0x26e03, [0x1026] = 0x451c, + [0x1027] = 0x26e00, [0x1028] = 0x4529, [0x1029] = 0x26e46, [0x102a] = 0x26e61, + [0x102b] = 0x4512, [0x102c] = 0x854f, [0x102d] = 0x4597, [0x102e] = 0x27384, + [0x102f] = 0x8772, [0x1030] = 0x2736b, [0x1031] = 0x27362, [0x1032] = 0x27356, + [0x1033] = 0x2736a, [0x1034] = 0x27352, [0x1035] = 0x27355, [0x1036] = 0x45d4, + [0x1037] = 0x45d0, [0x1038] = 0x877c, [0x1039] = 0x27361, [0x103b] = 0x27358, + [0x103c] = 0x27377, [0x103d] = 0x45d3, [0x103e] = 0x4614, [0x103f] = 0x276d7, + [0x1040] = 0x4646, [0x1041] = 0x4645, [0x1042] = 0x276de, [0x1043] = 0x4643, + [0x1044] = 0x276df, [0x1045] = 0x890d, [0x1046] = 0x4644, [0x1047] = 0x4648, + [0x1048] = 0x276d1, [0x1049] = 0x4647, [0x104a] = 0x276e2, [0x104b] = 0x276e1, + [0x104c] = 0x276dd, [0x104d] = 0x8908, [0x104e] = 0x4649, [0x104f] = 0x4685, + [0x1050] = 0x2784b, [0x1051] = 0x4684, [0x1052] = 0x2784e, [0x1053] = 0x469d, + [0x1054] = 0x278fc, [0x1055] = 0x469e, [0x1056] = 0x46a0, [0x1057] = 0x278fa, + [0x1058] = 0x469c, [0x1059] = 0x278fb, [0x105a] = 0x469f, [0x105b] = 0x278fe, + [0x105c] = 0x46f7, [0x105d] = 0x46ea, [0x105e] = 0x27a31, [0x105f] = 0x46ef, + [0x1060] = 0x46e9, [0x1061] = 0x46f3, [0x1062] = 0x46f0, [0x1063] = 0x46eb, + [0x1064] = 0x27a38, [0x1065] = 0x46ec, [0x1066] = 0x46f2, [0x1067] = 0x46f5, + [0x1068] = 0x46ee, [0x1069] = 0x27a3a, [0x106a] = 0x27bbb, [0x106b] = 0x473a, + [0x106c] = 0x474b, [0x106d] = 0x27c59, [0x106e] = 0x474a, [0x106f] = 0x474c, + [0x1070] = 0x27cdb, [0x1071] = 0x27cdf, [0x1072] = 0x27ce2, [0x1073] = 0x4779, + [0x1074] = 0x477b, [0x1075] = 0x4778, [0x1076] = 0x27d9e, [0x1077] = 0x27da1, + [0x1078] = 0x47b5, [0x1079] = 0x27f10, [0x107a] = 0x47b4, [0x107b] = 0x47b7, + [0x107c] = 0x8d9e, [0x107d] = 0x4809, [0x107e] = 0x47fe, [0x107f] = 0x4808, + [0x1080] = 0x4807, [0x1081] = 0x28076, [0x1082] = 0x2807f, [0x1083] = 0x2807d, + [0x1084] = 0x4806, [0x1085] = 0x4804, [0x1086] = 0x4805, [0x1087] = 0x47ff, + [0x1088] = 0x480b, [0x1089] = 0x28082, [0x108a] = 0x28257, [0x108b] = 0x483b, + [0x108c] = 0x485d, [0x108d] = 0x485c, [0x108e] = 0x485f, [0x108f] = 0x485e, + [0x1090] = 0x8f28, [0x1091] = 0x2832e, [0x1092] = 0x8f21, [0x1093] = 0x4883, + [0x1094] = 0x2858b, [0x1095] = 0x2858d, [0x1096] = 0x48a7, [0x1097] = 0x9066, + [0x1098] = 0x906c, [0x1099] = 0x28590, [0x109a] = 0x48a8, [0x109b] = 0x286ec, + [0x109c] = 0x2876f, [0x109d] = 0x2876b, [0x109e] = 0x28771, [0x109f] = 0x28778, + [0x10a0] = 0x90f6, [0x10a1] = 0x48e0, [0x10a2] = 0x48df, [0x10a3] = 0x48fe, + [0x10a4] = 0x48fc, [0x10a5] = 0x48ff, [0x10a6] = 0x48fd, [0x10a7] = 0x289ad, + [0x10a8] = 0x492c, [0x10a9] = 0x92ec, [0x10aa] = 0x92ba, [0x10ab] = 0x92e3, + [0x10ac] = 0x92bd, [0x10ad] = 0x499d, [0x10ae] = 0x28d2f, [0x10af] = 0x95b4, + [0x10b0] = 0x28f78, [0x10b1] = 0x4a40, [0x10b2] = 0x291f8, [0x10b3] = 0x29219, + [0x10b4] = 0x4a5f, [0x10b5] = 0x2929b, [0x10b6] = 0x29294, [0x10b7] = 0x29297, + [0x10b8] = 0x29299, [0x10b9] = 0x293a6, [0x10ba] = 0x293a4, [0x10bb] = 0x293a7, + [0x10bc] = 0x97d1, [0x10bd] = 0x29495, [0x10be] = 0x4ac0, [0x10bf] = 0x9823, + [0x10c0] = 0x29490, [0x10c1] = 0x4ac1, [0x10c2] = 0x4ac6, [0x10c3] = 0x2949b, + [0x10c4] = 0x295c4, [0x10c5] = 0x4b04, [0x10c6] = 0x4b05, [0x10c7] = 0x295c6, + [0x10c8] = 0x990b, [0x10c9] = 0x4b3e, [0x10ca] = 0x4b3d, [0x10cb] = 0x4b40, + [0x10cc] = 0x4b3f, [0x10cd] = 0x296e3, [0x10ce] = 0x4b42, [0x10cf] = 0x296df, + [0x10d0] = 0x296dd, [0x10d1] = 0x296e7, [0x10d2] = 0x4b84, [0x10d3] = 0x4b82, + [0x10d4] = 0x4b7f, [0x10d5] = 0x4b85, [0x10d6] = 0x29a2d, [0x10d7] = 0x29a2c, + [0x10d8] = 0x4bcc, [0x10d9] = 0x9ab2, [0x10da] = 0x4bcb, [0x10db] = 0x4bcd, + [0x10dc] = 0x29a34, [0x10dd] = 0x29a38, [0x10de] = 0x9adb, [0x10df] = 0x29b1d, + [0x10e0] = 0x4bf5, [0x10e1] = 0x29b1a, [0x10e2] = 0x29b1b, [0x10e3] = 0x29b14, + [0x10e4] = 0x9af0, [0x10e5] = 0x29b17, [0x10e6] = 0x29c21, [0x10e7] = 0x4c20, + [0x10e8] = 0x4c21, [0x10e9] = 0x29caa, [0x10ea] = 0x29ca1, [0x10eb] = 0x4c37, + [0x10ec] = 0x4c3e, [0x10ed] = 0x9b73, [0x10ee] = 0x4c3d, [0x10ef] = 0x9b6e, + [0x10f0] = 0x29d63, [0x10f1] = 0x29d79, [0x10f2] = 0x29d60, [0x10f3] = 0x9b65, + [0x10f4] = 0x29d62, [0x10f5] = 0x4c3c, [0x10f6] = 0x29d61, [0x10f7] = 0x4c38, + [0x10f8] = 0x9b6a, [0x10f9] = 0x29d70, [0x10fa] = 0x9b6d, [0x10fb] = 0x29d6a, + [0x10fc] = 0x4c3b, [0x10fd] = 0x29fc8, [0x10fe] = 0x4cb0, [0x10ff] = 0x29fc5, + [0x1100] = 0x29fbe, [0x1101] = 0x29fc2, [0x1102] = 0x4cad, [0x1103] = 0x4cb2, + [0x1104] = 0x4cb8, [0x1105] = 0x9d0b, [0x1106] = 0x29fc7, [0x1107] = 0x4caf, + [0x1108] = 0x29fb0, [0x1109] = 0x29fca, [0x110a] = 0x4d1a, [0x110b] = 0x9e76, + [0x110c] = 0x4d20, [0x110d] = 0x4d21, [0x110e] = 0x4d30, [0x110f] = 0x9ea8, + [0x1110] = 0x4d2f, [0x1111] = 0x2a30d, [0x1112] = 0x2a307, [0x1113] = 0x2a396, + [0x1114] = 0x2a3ef, [0x1115] = 0x4d5f, [0x1116] = 0x4d60, [0x1117] = 0x2a41e, + [0x1118] = 0x2a41d, [0x1119] = 0x9f11, [0x111a] = 0x2a590, [0x111b] = 0x203eb, + [0x111c] = 0x348a, [0x111d] = 0x5119, [0x111e] = 0x349c, [0x111f] = 0x203ee, + [0x1120] = 0x349a, [0x1121] = 0x203ef, [0x1122] = 0x203ec, [0x1123] = 0x207fa, + [0x1124] = 0x350c, [0x1125] = 0x350b, [0x1126] = 0x350d, [0x1127] = 0x5292, + [0x1128] = 0x20904, [0x1129] = 0x20fd3, [0x112a] = 0x35fe, [0x112b] = 0x20fd1, + [0x112c] = 0x20ffa, [0x112d] = 0x35ff, [0x112e] = 0x35fb, [0x112f] = 0x35fc, + [0x1130] = 0x3609, [0x1131] = 0x20fc8, [0x1132] = 0x3600, [0x1133] = 0x20fd5, + [0x1134] = 0x5675, [0x1135] = 0x20fcd, [0x1136] = 0x20fd2, [0x1137] = 0x20ffb, + [0x1138] = 0x2122a, [0x1139] = 0x21488, [0x113a] = 0x21461, [0x113b] = 0x3671, + [0x113c] = 0x21463, [0x113d] = 0x21462, [0x113e] = 0x596f, [0x113f] = 0x20057, + [0x1140] = 0x218c8, [0x1141] = 0x21898, [0x1142] = 0x372b, [0x1143] = 0x21ac1, + [0x1144] = 0x21f3f, [0x1145] = 0x21f41, [0x1146] = 0x3814, [0x1147] = 0x3811, + [0x1148] = 0x3812, [0x1149] = 0x22152, [0x114a] = 0x3863, [0x114b] = 0x2215e, + [0x114c] = 0x386e, [0x114d] = 0x389a, [0x114e] = 0x222c7, [0x114f] = 0x389b, + [0x1150] = 0x22370, [0x1151] = 0x22427, [0x1152] = 0x38c8, [0x1153] = 0x22471, + [0x1154] = 0x224b0, [0x1155] = 0x38f6, [0x1156] = 0x22842, [0x1157] = 0x22843, + [0x1158] = 0x61a5, [0x1159] = 0x398c, [0x115a] = 0x3997, [0x115b] = 0x39a2, + [0x115c] = 0x61a0, [0x115d] = 0x22857, [0x115e] = 0x2289d, [0x115f] = 0x22d89, + [0x1160] = 0x22d8d, [0x1161] = 0x22d8b, [0x1162] = 0x22d80, [0x1163] = 0x22d92, + [0x1164] = 0x22d8a, [0x1165] = 0x22dc8, [0x1166] = 0x3a54, [0x1167] = 0x22d8f, + [0x1168] = 0x22d93, [0x1169] = 0x22d91, [0x116a] = 0x3aa8, [0x116b] = 0x22ff2, + [0x116c] = 0x22fde, [0x116d] = 0x3aa9, [0x116e] = 0x230c8, [0x116f] = 0x65b4, + [0x1170] = 0x65d8, [0x1171] = 0x66c2, [0x1172] = 0x3b18, [0x1173] = 0x3b17, + [0x1174] = 0x3b1d, [0x1175] = 0x232a7, [0x1176] = 0x232a1, [0x1177] = 0x3b31, + [0x1178] = 0x2368c, [0x1179] = 0x2367f, [0x117a] = 0x3bd8, [0x117b] = 0x3bd5, + [0x117c] = 0x2367b, [0x117d] = 0x23695, [0x117e] = 0x23699, [0x117f] = 0x3be1, + [0x1180] = 0x2368e, [0x1181] = 0x3bd4, [0x1182] = 0x236da, [0x1183] = 0x2368a, + [0x1184] = 0x2369c, [0x1185] = 0x3be3, [0x1186] = 0x2367e, [0x1187] = 0x3c44, + [0x1188] = 0x3c45, [0x1189] = 0x2391a, [0x118a] = 0x23a55, [0x118b] = 0x3c76, + [0x118c] = 0x3c75, [0x118d] = 0x23a60, [0x118e] = 0x6ba8, [0x118f] = 0x3c88, + [0x1190] = 0x3caa, [0x1191] = 0x23bfb, [0x1192] = 0x3cab, [0x1193] = 0x3cac, + [0x1194] = 0x23bfd, [0x1195] = 0x3d57, [0x1196] = 0x6f83, [0x1197] = 0x3d60, + [0x1198] = 0x3d5d, [0x1199] = 0x3d6b, [0x119a] = 0x23fd0, [0x119b] = 0x3d63, + [0x119c] = 0x3d67, [0x119d] = 0x23fc5, [0x119e] = 0x3d5e, [0x119f] = 0x23fd2, + [0x11a0] = 0x24011, [0x11a1] = 0x6fc5, [0x11a2] = 0x71cd, [0x11a3] = 0x3df9, + [0x11a4] = 0x3df3, [0x11a5] = 0x243ad, [0x11a6] = 0x243a4, [0x11a7] = 0x243a9, + [0x11a8] = 0x243b0, [0x11a9] = 0x2439d, [0x11aa] = 0x3df6, [0x11ab] = 0x24598, + [0x11ac] = 0x729c, [0x11ad] = 0x3e51, [0x11ae] = 0x3e53, [0x11af] = 0x3e52, + [0x11b0] = 0x24892, [0x11b1] = 0x3e9b, [0x11b2] = 0x2488a, [0x11b3] = 0x3e9c, + [0x11b4] = 0x2488d, [0x11b5] = 0x24896, [0x11b6] = 0x3ef7, [0x11b7] = 0x7499, + [0x11ba] = 0x24a45, [0x11bb] = 0x24a4b, [0x11bc] = 0x24b0f, [0x11bd] = 0x24b16, + [0x11be] = 0x3f3b, [0x11bf] = 0x24b8a, [0x11c0] = 0x3f3e, [0x11c1] = 0x3f3d, + [0x11c2] = 0x24cc9, [0x11c3] = 0x3f69, [0x11c4] = 0x24cc8, [0x11c5] = 0x24cca, + [0x11c6] = 0x24e64, [0x11c7] = 0x3fc3, [0x11c8] = 0x3fc4, [0x11c9] = 0x3fc7, + [0x11ca] = 0x24e5d, [0x11cb] = 0x24e63, [0x11cc] = 0x7639, [0x11cd] = 0x3fc6, + [0x11ce] = 0x762e, [0x11cf] = 0x3fc8, [0x11d0] = 0x24e88, [0x11d1] = 0x24f3a, + [0x11d2] = 0x24f39, [0x11d3] = 0x769f, [0x11d4] = 0x76a0, [0x11d5] = 0x3fe6, + [0x11d6] = 0x3ff8, [0x11d7] = 0x25017, [0x11d8] = 0x25093, [0x11d9] = 0x4007, + [0x11da] = 0x25095, [0x11db] = 0x4064, [0x11dc] = 0x4068, [0x11dd] = 0x25276, + [0x11de] = 0x7794, [0x11df] = 0x4065, [0x11e0] = 0x77ae, [0x11e1] = 0x25280, + [0x11e2] = 0x2527b, [0x11e3] = 0x4069, [0x11e4] = 0x25248, [0x11e5] = 0x252a8, + [0x11e6] = 0x25288, [0x11e7] = 0x2538b, [0x11e8] = 0x2538a, [0x11e9] = 0x2538c, + [0x11ea] = 0x253fc, [0x11eb] = 0x40da, [0x11ec] = 0x40e0, [0x11ed] = 0x78e6, + [0x11ee] = 0x25558, [0x11ef] = 0x40de, [0x11f0] = 0x25551, [0x11f1] = 0x25555, + [0x11f2] = 0x25553, [0x11f3] = 0x411c, [0x11f4] = 0x411d, [0x11f5] = 0x411a, + [0x11f6] = 0x256dc, [0x11f7] = 0x417b, [0x11f8] = 0x417a, [0x11f9] = 0x417c, + [0x11fa] = 0x2585c, [0x11fb] = 0x4178, [0x11fc] = 0x4177, [0x11fd] = 0x25865, + [0x11ff] = 0x41b1, [0x1200] = 0x259ee, [0x1201] = 0x41b2, [0x1202] = 0x41b0, + [0x1203] = 0x259f0, [0x1204] = 0x7abc, [0x1205] = 0x259f2, [0x1206] = 0x4236, + [0x1207] = 0x25c35, [0x1208] = 0x422e, [0x1209] = 0x25c22, [0x120a] = 0x7bd6, + [0x120b] = 0x25c20, [0x120c] = 0x4234, [0x120d] = 0x25c2d, [0x120e] = 0x25c28, + [0x120f] = 0x25c26, [0x1210] = 0x25c3c, [0x1211] = 0x422a, [0x1212] = 0x25c38, + [0x1213] = 0x4233, [0x1214] = 0x422d, [0x1215] = 0x422f, [0x1216] = 0x4231, + [0x1217] = 0x422b, [0x1218] = 0x4232, [0x1219] = 0x25c2a, [0x121a] = 0x4235, + [0x121b] = 0x25c1a, [0x121c] = 0x25c30, [0x121d] = 0x25be3, [0x121e] = 0x25c19, + [0x121f] = 0x25ee9, [0x1220] = 0x25ee7, [0x1221] = 0x7ccf, [0x1222] = 0x260d6, + [0x1223] = 0x260c4, [0x1224] = 0x4308, [0x1225] = 0x26087, [0x1226] = 0x4306, + [0x1227] = 0x260c7, [0x1228] = 0x260d9, [0x1229] = 0x7e18, [0x122a] = 0x260df, + [0x122b] = 0x434d, [0x122c] = 0x4361, [0x122d] = 0x2630a, [0x122e] = 0x26301, + [0x122f] = 0x263b1, [0x1230] = 0x4378, [0x1231] = 0x263c1, [0x1232] = 0x4394, + [0x1233] = 0x4395, [0x1234] = 0x26476, [0x1235] = 0x2650d, [0x1236] = 0x2650e, + [0x1237] = 0x43c1, [0x1238] = 0x43c3, [0x1239] = 0x806d, [0x123a] = 0x26807, + [0x123b] = 0x4439, [0x123c] = 0x26809, [0x123d] = 0x26816, [0x123e] = 0x443a, + [0x123f] = 0x443b, [0x1240] = 0x4435, [0x1241] = 0x4436, [0x1242] = 0x2680e, + [0x1243] = 0x443c, [0x1244] = 0x8190, [0x1245] = 0x26806, [0x1246] = 0x2691e, + [0x1247] = 0x2694a, [0x1248] = 0x4458, [0x1249] = 0x447c, [0x124a] = 0x447d, + [0x124b] = 0x448d, [0x124c] = 0x448c, [0x124d] = 0x26ea6, [0x124e] = 0x26e91, + [0x124f] = 0x453b, [0x1250] = 0x453f, [0x1251] = 0x26eb8, [0x1252] = 0x26e96, + [0x1253] = 0x4532, [0x1254] = 0x452d, [0x1255] = 0x26ec5, [0x1256] = 0x452f, + [0x1257] = 0x4539, [0x1258] = 0x452e, [0x1259] = 0x453a, [0x125a] = 0x26f0a, + [0x125b] = 0x4536, [0x125c] = 0x4531, [0x125d] = 0x453e, [0x125e] = 0x4538, + [0x125f] = 0x8552, [0x1260] = 0x4534, [0x1261] = 0x26eb2, [0x1262] = 0x4541, + [0x1263] = 0x26eb7, [0x1264] = 0x26eb4, [0x1265] = 0x26e89, [0x1266] = 0x26e8d, + [0x1267] = 0x4530, [0x1268] = 0x26e87, [0x1269] = 0x26ec2, [0x126a] = 0x26e9c, + [0x126b] = 0x26e92, [0x126c] = 0x4543, [0x126d] = 0x26eca, [0x126e] = 0x8550, + [0x126f] = 0x26e8a, [0x1270] = 0x271e0, [0x1271] = 0x4598, [0x1272] = 0x271e6, + [0x1273] = 0x271e5, [0x1274] = 0x87a0, [0x1275] = 0x273a5, [0x1276] = 0x273b3, + [0x1277] = 0x8786, [0x1278] = 0x45da, [0x1279] = 0x45d7, [0x127a] = 0x273b5, + [0x127b] = 0x273af, [0x127c] = 0x8795, [0x127d] = 0x273b0, [0x127e] = 0x273cc, + [0x127f] = 0x878c, [0x1280] = 0x273a2, [0x1281] = 0x273be, [0x1282] = 0x273c6, + [0x1283] = 0x273ac, [0x1284] = 0x273ae, [0x1285] = 0x4618, [0x1286] = 0x8860, + [0x1288] = 0x27708, [0x1289] = 0x27705, [0x128a] = 0x4652, [0x128b] = 0x8928, + [0x128c] = 0x276fe, [0x128d] = 0x464e, [0x128e] = 0x8920, [0x128f] = 0x27700, + [0x1290] = 0x464f, [0x1291] = 0x4650, [0x1292] = 0x27864, [0x1293] = 0x27868, + [0x1294] = 0x89a8, [0x1295] = 0x4686, [0x1296] = 0x4687, [0x1297] = 0x4689, + [0x1298] = 0x2786a, [0x1299] = 0x27869, [0x129a] = 0x2790d, [0x129b] = 0x27912, + [0x129c] = 0x46a2, [0x129d] = 0x46a3, [0x129e] = 0x2790f, [0x129f] = 0x46a1, + [0x12a0] = 0x27a67, [0x12a1] = 0x27a79, [0x12a2] = 0x27a72, [0x12a3] = 0x27a66, + [0x12a4] = 0x27a7c, [0x12a5] = 0x46f9, [0x12a6] = 0x46fd, [0x12a7] = 0x27a68, + [0x12a8] = 0x27a85, [0x12a9] = 0x27a76, [0x12aa] = 0x27a74, [0x12ab] = 0x27a71, + [0x12ac] = 0x27a64, [0x12ad] = 0x473e, [0x12ae] = 0x473c, [0x12af] = 0x27bf8, + [0x12b0] = 0x474d, [0x12b1] = 0x27c6c, [0x12b2] = 0x474e, [0x12b3] = 0x27ceb, + [0x12b4] = 0x4781, [0x12b5] = 0x4783, [0x12b6] = 0x4782, [0x12b7] = 0x27db8, + [0x12b8] = 0x4780, [0x12b9] = 0x4788, [0x12ba] = 0x27f2d, [0x12bb] = 0x27f2e, + [0x12bc] = 0x27f28, [0x12bd] = 0x27f29, [0x12be] = 0x27f31, [0x12bf] = 0x47b9, + [0x12c0] = 0x27f2f, [0x12c1] = 0x27f2a, [0x12c2] = 0x8e3a, [0x12c3] = 0x280a4, + [0x12c4] = 0x280b7, [0x12c5] = 0x280bf, [0x12c6] = 0x4811, [0x12c7] = 0x480d, + [0x12c8] = 0x4810, [0x12c9] = 0x4813, [0x12ca] = 0x28263, [0x12cb] = 0x483c, + [0x12cc] = 0x4862, [0x12cd] = 0x4863, [0x12ce] = 0x28367, [0x12cf] = 0x285be, + [0x12d1] = 0x28795, [0x12d2] = 0x2879c, [0x12d3] = 0x4903, [0x12d4] = 0x4906, + [0x12d5] = 0x4902, [0x12d6] = 0x4901, [0x12d7] = 0x28871, [0x12d8] = 0x28872, + [0x12d9] = 0x4905, [0x12da] = 0x2886f, [0x12db] = 0x9194, [0x12dc] = 0x9311, + [0x12dd] = 0x289f1, [0x12de] = 0x9337, [0x12df] = 0x4936, [0x12e0] = 0x289e8, + [0x12e1] = 0x4935, [0x12e2] = 0x9343, [0x12e4] = 0x49a1, [0x12e5] = 0x49a3, + [0x12e6] = 0x28d49, [0x12e7] = 0x28d64, [0x12e8] = 0x49a0, [0x12e9] = 0x28d48, + [0x12ea] = 0x49ea, [0x12eb] = 0x96a6, [0x12ec] = 0x49e8, [0x12ed] = 0x28f2c, + [0x12ee] = 0x28fe1, [0x12ef] = 0x28fef, [0x12f0] = 0x290c0, [0x12f1] = 0x4a21, + [0x12f2] = 0x4a1b, [0x12f3] = 0x290d7, [0x12f4] = 0x290d4, [0x12f5] = 0x4a49, + [0x12f6] = 0x4a48, [0x12f7] = 0x292ad, [0x12f8] = 0x9795, [0x12f9] = 0x4a62, + [0x12fa] = 0x4a61, [0x12fb] = 0x4a64, [0x12fc] = 0x4a60, [0x12fd] = 0x4a63, + [0x12fe] = 0x292ae, [0x12ff] = 0x292ac, [0x1300] = 0x9796, [0x1301] = 0x4a66, + [0x1302] = 0x4aac, [0x1303] = 0x4aab, [0x1304] = 0x29427, [0x1305] = 0x294ae, + [0x1306] = 0x4ac3, [0x1307] = 0x294b0, [0x1308] = 0x4ac4, [0x1309] = 0x9825, + [0x130a] = 0x294c0, [0x130b] = 0x294c4, [0x130c] = 0x4b08, [0x130d] = 0x4b09, + [0x130e] = 0x4b0a, [0x130f] = 0x4b06, [0x1310] = 0x4b07, [0x1311] = 0x4b41, + [0x1312] = 0x29707, [0x1313] = 0x4b45, [0x1314] = 0x296fd, [0x1315] = 0x4b43, + [0x1316] = 0x4b44, [0x1317] = 0x9926, [0x1318] = 0x9934, [0x1319] = 0x4b47, + [0x131b] = 0x2981b, [0x131c] = 0x2981c, [0x131d] = 0x4b71, [0x131e] = 0x298b2, + [0x131f] = 0x298b4, [0x1320] = 0x298b7, [0x1321] = 0x298b1, [0x1322] = 0x298b3, + [0x1323] = 0x298ae, [0x1324] = 0x4b8b, [0x1325] = 0x4bd4, [0x1326] = 0x4bd3, + [0x1327] = 0x4bd1, [0x1328] = 0x9aba, [0x1329] = 0x4bd2, [0x132a] = 0x29a3f, + [0x132b] = 0x29b36, [0x132c] = 0x4bf7, [0x132d] = 0x4bf8, [0x132e] = 0x29b31, + [0x132f] = 0x29b3b, [0x1330] = 0x29b35, [0x1331] = 0x29b3a, [0x1332] = 0x29b37, + [0x1333] = 0x29c22, [0x1334] = 0x29c36, [0x1335] = 0x29c32, [0x1336] = 0x4c22, + [0x1337] = 0x29cc0, [0x1338] = 0x4c45, [0x1339] = 0x4c41, [0x133a] = 0x9b81, + [0x133b] = 0x4c40, [0x133c] = 0x9b8a, [0x133d] = 0x29d85, [0x133e] = 0x9b7f, + [0x133f] = 0x4c42, [0x1340] = 0x29d89, [0x1341] = 0x4cc1, [0x1342] = 0x4cc5, + [0x1343] = 0x29fe1, [0x1344] = 0x4cbb, [0x1345] = 0x4cb9, [0x1346] = 0x4cbd, + [0x1347] = 0x4cc9, [0x1348] = 0x2a00a, [0x1349] = 0x9d11, [0x134a] = 0x2a009, + [0x134b] = 0x4cbf, [0x134c] = 0x4cc7, [0x134d] = 0x29fe8, [0x134e] = 0x4cc3, + [0x134f] = 0x4d24, [0x1350] = 0x4d31, [0x1351] = 0x4d33, [0x1352] = 0x2a318, + [0x1353] = 0x4d32, [0x1354] = 0x4d34, [0x1355] = 0x4d52, [0x1356] = 0x4d61, + [0x1357] = 0x9ed9, [0x1358] = 0x4d7a, [0x1359] = 0x4d82, [0x135a] = 0x9f3c, + [0x135b] = 0x2a5c5, [0x135c] = 0x5123, [0x135d] = 0x2040d, [0x135e] = 0x2040c, + [0x135f] = 0x20421, [0x1360] = 0x512c, [0x1361] = 0x20616, [0x1362] = 0x2080e, + [0x1363] = 0x350f, [0x1364] = 0x5295, [0x1365] = 0x20817, [0x1366] = 0x3523, + [0x1367] = 0x3525, [0x1368] = 0x21048, [0x1369] = 0x3606, [0x136a] = 0x3608, + [0x136b] = 0x5688, [0x136c] = 0x21055, [0x136d] = 0x21049, [0x136e] = 0x2104c, + [0x136f] = 0x568b, [0x1370] = 0x2104f, [0x1371] = 0x2103d, [0x1372] = 0x367a, + [0x1373] = 0x3677, [0x1374] = 0x2148a, [0x1375] = 0x214a8, [0x1376] = 0x2168a, + [0x1377] = 0x372e, [0x1378] = 0x218cb, [0x1379] = 0x372f, [0x137a] = 0x218d5, + [0x137b] = 0x221d4, [0x137c] = 0x381b, [0x137d] = 0x3813, [0x137e] = 0x21f5c, + [0x137f] = 0x21f75, [0x1380] = 0x3866, [0x1381] = 0x22161, [0x1382] = 0x3865, + [0x1383] = 0x21696, [0x1384] = 0x38f7, [0x1385] = 0x2258a, [0x1386] = 0x228d0, + [0x1387] = 0x61e1, [0x1388] = 0x61d7, [0x1389] = 0x22849, [0x138a] = 0x228cf, + [0x138b] = 0x399c, [0x138c] = 0x22dd6, [0x138d] = 0x22d7f, [0x138e] = 0x3a53, + [0x138f] = 0x22dd2, [0x1390] = 0x22dcf, [0x1391] = 0x23006, [0x1392] = 0x23009, + [0x1393] = 0x3aba, [0x1394] = 0x65a3, [0x1395] = 0x3b22, [0x1396] = 0x66d3, + [0x1397] = 0x23706, [0x1398] = 0x236f1, [0x1399] = 0x23704, [0x139a] = 0x6a8b, + [0x139b] = 0x236fa, [0x139c] = 0x236f4, [0x139d] = 0x3beb, [0x139e] = 0x3bdd, + [0x139f] = 0x236f9, [0x13a0] = 0x3bef, [0x13a1] = 0x2368b, [0x13a2] = 0x23703, + [0x13a3] = 0x3c47, [0x13a4] = 0x3c46, [0x13a5] = 0x239a2, [0x13a6] = 0x3c78, + [0x13a7] = 0x6bac, [0x13a8] = 0x3c89, [0x13a9] = 0x23c0c, [0x13aa] = 0x23c0b, + [0x13ab] = 0x3d68, [0x13ac] = 0x3d76, [0x13ad] = 0x3d74, [0x13ae] = 0x3d79, + [0x13af] = 0x24024, [0x13b0] = 0x3d7a, [0x13b1] = 0x3d77, [0x13b3] = 0x3d71, + [0x13b4] = 0x24025, [0x13b5] = 0x3d72, [0x13b6] = 0x243f6, [0x13b7] = 0x3dff, + [0x13b8] = 0x243fb, [0x13b9] = 0x3e05, [0x13ba] = 0x24532, [0x13bb] = 0x245fb, + [0x13bc] = 0x3e54, [0x13bd] = 0x246f2, [0x13be] = 0x246f3, [0x13bf] = 0x3e9e, + [0x13c0] = 0x3e9f, [0x13c1] = 0x7374, [0x13c2] = 0x2489c, [0x13c3] = 0x24a72, + [0x13c4] = 0x3efa, [0x13c5] = 0x24a74, [0x13c6] = 0x3f44, [0x13c7] = 0x3f3f, + [0x13c8] = 0x3f40, [0x13c9] = 0x24b86, [0x13ca] = 0x3f42, [0x13cb] = 0x24b8e, + [0x13cc] = 0x24b90, [0x13cd] = 0x3f51, [0x13ce] = 0x24bcd, [0x13cf] = 0x24bf7, + [0x13d0] = 0x24cd6, [0x13d1] = 0x24e84, [0x13d2] = 0x24e95, [0x13d3] = 0x24e8a, + [0x13d4] = 0x7640, [0x13d5] = 0x3fca, [0x13d6] = 0x24e97, [0x13d7] = 0x7641, + [0x13d8] = 0x3fce, [0x13d9] = 0x3fc9, [0x13da] = 0x24fa0, [0x13db] = 0x24fa1, + [0x13dc] = 0x25022, [0x13dd] = 0x250a6, [0x13de] = 0x250a4, [0x13df] = 0x4009, + [0x13e0] = 0x76e8, [0x13e1] = 0x406c, [0x13e2] = 0x406e, [0x13e3] = 0x4070, + [0x13e4] = 0x406d, [0x13e5] = 0x406b, [0x13e6] = 0x4071, [0x13e7] = 0x4072, + [0x13e8] = 0x252af, [0x13e9] = 0x252b0, [0x13ea] = 0x252bd, [0x13eb] = 0x408c, + [0x13ec] = 0x40e4, [0x13ed] = 0x25576, [0x13ee] = 0x40e1, [0x13ef] = 0x2557b, + [0x13f0] = 0x25579, [0x13f1] = 0x78f6, [0x13f2] = 0x40e7, [0x13f3] = 0x7900, + [0x13f4] = 0x40e2, [0x13f5] = 0x411f, [0x13f6] = 0x256ee, [0x13f7] = 0x256f1, + [0x13f8] = 0x417e, [0x13f9] = 0x25894, [0x13fa] = 0x4180, [0x13fb] = 0x7a59, + [0x13fc] = 0x7a55, [0x13fd] = 0x25891, [0x13fe] = 0x41b9, [0x13ff] = 0x41b7, + [0x1400] = 0x41b8, [0x1401] = 0x25a10, [0x1402] = 0x41ba, [0x1403] = 0x7af4, + [0x1404] = 0x25aaf, [0x1405] = 0x41d3, [0x1406] = 0x423f, [0x1407] = 0x7c04, + [0x1408] = 0x4245, [0x1409] = 0x4241, [0x140a] = 0x7c15, [0x140b] = 0x4242, + [0x140c] = 0x4243, [0x140d] = 0x423b, [0x140e] = 0x4238, [0x140f] = 0x25c7b, + [0x1410] = 0x25c77, [0x1411] = 0x423a, [0x1412] = 0x7bf5, [0x1413] = 0x25c80, + [0x1414] = 0x25cc6, [0x1415] = 0x423c, [0x1416] = 0x25c7c, [0x1417] = 0x25c90, + [0x1418] = 0x423e, [0x1419] = 0x25ca3, [0x141a] = 0x25c7d, [0x141b] = 0x25cbd, + [0x141c] = 0x429e, [0x141d] = 0x429f, [0x141e] = 0x42a1, [0x141f] = 0x25f13, + [0x1420] = 0x429b, [0x1421] = 0x4312, [0x1422] = 0x26111, [0x1423] = 0x26144, + [0x1424] = 0x2610d, [0x1425] = 0x4318, [0x1426] = 0x430c, [0x1427] = 0x26314, + [0x1428] = 0x4362, [0x1429] = 0x263b8, [0x142a] = 0x437a, [0x142b] = 0x263b7, + [0x142c] = 0x26483, [0x142d] = 0x43ae, [0x142e] = 0x43af, [0x142f] = 0x26514, + [0x1430] = 0x43ad, [0x1431] = 0x2651c, [0x1432] = 0x43c4, [0x1433] = 0x43c7, + [0x1434] = 0x43c6, [0x1435] = 0x43c5, [0x1436] = 0x265d4, [0x1437] = 0x265d5, + [0x1438] = 0x81c1, [0x1439] = 0x4440, [0x143a] = 0x26843, [0x143b] = 0x26842, + [0x143c] = 0x443f, [0x143d] = 0x4441, [0x143f] = 0x26841, [0x1440] = 0x2694e, + [0x1441] = 0x447f, [0x1442] = 0x26a87, [0x1443] = 0x4486, [0x1444] = 0x4481, + [0x1445] = 0x4480, [0x1446] = 0x448e, [0x1447] = 0x454a, [0x1448] = 0x26f39, + [0x1449] = 0x4547, [0x144a] = 0x26f8f, [0x144b] = 0x26f2a, [0x144c] = 0x454b, + [0x144d] = 0x4546, [0x144e] = 0x454e, [0x144f] = 0x857d, [0x1450] = 0x26f2b, + [0x1451] = 0x85a5, [0x1452] = 0x26f50, [0x1453] = 0x4548, [0x1454] = 0x26f6e, + [0x1455] = 0x4545, [0x1456] = 0x26f3b, [0x1457] = 0x26f53, [0x1458] = 0x26f5f, + [0x1459] = 0x26f2f, [0x145a] = 0x26f30, [0x145b] = 0x26f38, [0x145c] = 0x26f4c, + [0x145d] = 0x271f1, [0x145e] = 0x45db, [0x145f] = 0x45e7, [0x1460] = 0x45e4, + [0x1461] = 0x27407, [0x1462] = 0x27416, [0x1463] = 0x45e1, [0x1464] = 0x27414, + [0x1465] = 0x45e9, [0x1466] = 0x273fb, [0x1467] = 0x45e5, [0x1468] = 0x45e0, + [0x1469] = 0x45e3, [0x146a] = 0x273f8, [0x146b] = 0x27410, [0x146c] = 0x2741d, + [0x146d] = 0x273ff, [0x146e] = 0x2740b, [0x146f] = 0x27404, [0x1470] = 0x45ea, + [0x1471] = 0x273fe, [0x1472] = 0x275ff, [0x1473] = 0x893a, [0x1474] = 0x4654, + [0x1475] = 0x4658, [0x1476] = 0x465c, [0x1477] = 0x27723, [0x1478] = 0x4655, + [0x1479] = 0x468b, [0x147a] = 0x468c, [0x147b] = 0x46a6, [0x147c] = 0x46a5, + [0x147d] = 0x2792a, [0x147e] = 0x27aa0, [0x147f] = 0x27a98, [0x1480] = 0x27a9c, + [0x1481] = 0x46ff, [0x1482] = 0x27a9e, [0x1483] = 0x27aa6, [0x1484] = 0x27ab5, + [0x1485] = 0x27ab0, [0x1486] = 0x4730, [0x1487] = 0x4740, [0x1488] = 0x4741, + [0x1489] = 0x27cf9, [0x148a] = 0x27cf5, [0x148b] = 0x4786, [0x148c] = 0x27dd2, + [0x148d] = 0x47bf, [0x148e] = 0x47bd, [0x148f] = 0x27f50, [0x1490] = 0x27f4e, + [0x1491] = 0x27f4b, [0x1492] = 0x27f52, [0x1493] = 0x27f4d, [0x1494] = 0x47be, + [0x1495] = 0x4819, [0x1496] = 0x280e4, [0x1497] = 0x481c, [0x1498] = 0x280da, + [0x1499] = 0x481b, [0x149a] = 0x4817, [0x149b] = 0x4818, [0x149c] = 0x8e51, + [0x149d] = 0x280df, [0x149e] = 0x280e8, [0x149f] = 0x483d, [0x14a0] = 0x486a, + [0x14a1] = 0x4866, [0x14a2] = 0x28370, [0x14a3] = 0x28372, [0x14a4] = 0x4867, + [0x14a5] = 0x28377, [0x14a6] = 0x4868, [0x14a7] = 0x48ad, [0x14a8] = 0x48ae, + [0x14a9] = 0x285e6, [0x14aa] = 0x287aa, [0x14ab] = 0x48d6, [0x14ac] = 0x4909, + [0x14ad] = 0x2888c, [0x14ae] = 0x9198, [0x14af] = 0x28889, [0x14b0] = 0x490c, + [0x14b1] = 0x490a, [0x14b2] = 0x28a32, [0x14b3] = 0x493b, [0x14b4] = 0x493a, + [0x14b5] = 0x9384, [0x14b6] = 0x9381, [0x14b7] = 0x28a7a, [0x14b8] = 0x936f, + [0x14b9] = 0x28c9e, [0x14ba] = 0x28ca0, [0x14bb] = 0x28d70, [0x14bc] = 0x49af, + [0x14bd] = 0x49aa, [0x14be] = 0x49ab, [0x14bf] = 0x28d6e, [0x14c0] = 0x28d66, + [0x14c1] = 0x49b1, [0x14c2] = 0x28d65, [0x14c3] = 0x49ac, [0x14c4] = 0x49ec, + [0x14c5] = 0x28f7f, [0x14c6] = 0x28fe0, [0x14c7] = 0x4a01, [0x14c8] = 0x28fff, + [0x14c9] = 0x290f6, [0x14ca] = 0x290f7, [0x14cb] = 0x290f5, [0x14cc] = 0x4a23, + [0x14cd] = 0x290fc, [0x14ce] = 0x4a24, [0x14cf] = 0x4a1e, [0x14d0] = 0x290f9, + [0x14d1] = 0x4a4a, [0x14d2] = 0x4a65, [0x14d3] = 0x4a6a, [0x14d4] = 0x292ca, + [0x14d5] = 0x292c3, [0x14d6] = 0x292c6, [0x14d7] = 0x4a69, [0x14d8] = 0x293b8, + [0x14d9] = 0x293bd, [0x14da] = 0x4a95, [0x14db] = 0x293bc, [0x14dc] = 0x29405, + [0x14dd] = 0x294e0, [0x14de] = 0x294e9, [0x14df] = 0x9842, [0x14e0] = 0x294df, + [0x14e1] = 0x294ec, [0x14e2] = 0x4acc, [0x14e3] = 0x294e5, [0x14e4] = 0x294de, + [0x14e6] = 0x4acf, [0x14e7] = 0x294f0, [0x14e8] = 0x294e3, [0x14e9] = 0x4b0f, + [0x14ea] = 0x295ec, [0x14eb] = 0x4b0e, [0x14ec] = 0x4b0b, [0x14ed] = 0x4b10, + [0x14ee] = 0x4b0d, [0x14ef] = 0x4b0c, [0x14f0] = 0x295f2, [0x14f1] = 0x295ef, + [0x14f2] = 0x295e9, [0x14f3] = 0x296fb, [0x14f4] = 0x4b46, [0x14f5] = 0x4b48, + [0x14f6] = 0x9937, [0x14f7] = 0x4b49, [0x14f8] = 0x29737, [0x14f9] = 0x298de, + [0x14fa] = 0x4b91, [0x14fb] = 0x4b8e, [0x14fc] = 0x298da, [0x14fd] = 0x4bd8, + [0x14fe] = 0x4bd6, [0x14ff] = 0x29a4b, [0x1500] = 0x4bda, [0x1501] = 0x29a49, + [0x1502] = 0x4bd7, [0x1503] = 0x29ad5, [0x1504] = 0x9aff, [0x1505] = 0x4bf9, + [0x1506] = 0x29b52, [0x1507] = 0x29b47, [0x1508] = 0x4bfc, [0x1509] = 0x29b48, + [0x150a] = 0x29ccc, [0x150b] = 0x29cd0, [0x150c] = 0x9ba9, [0x150d] = 0x4c4a, + [0x150e] = 0x9ba7, [0x150f] = 0x4c4e, [0x1510] = 0x9bb3, [0x1511] = 0x9bac, + [0x1512] = 0x9bb0, [0x1513] = 0x29d86, [0x1514] = 0x29da7, [0x1515] = 0x29da3, + [0x1516] = 0x9b9c, [0x1517] = 0x29db6, [0x1518] = 0x29dad, [0x1519] = 0x2a013, + [0x151a] = 0x9d3c, [0x151b] = 0x9d1c, [0x151c] = 0x9d3a, [0x151d] = 0x4cd3, + [0x151e] = 0x4ccd, [0x151f] = 0x4cd1, [0x1520] = 0x2a017, [0x1521] = 0x2a022, + [0x1522] = 0x9d32, [0x1523] = 0x9d34, [0x1524] = 0x2a049, [0x1525] = 0x2a026, + [0x1527] = 0x2a03c, [0x1528] = 0x2a028, [0x1529] = 0x2a2a8, [0x152a] = 0x9ec7, + [0x152b] = 0x2a3fb, [0x152c] = 0x4d62, [0x152d] = 0x2a432, [0x152e] = 0x2a4d6, + [0x152f] = 0x2a548, [0x1530] = 0x4d83, [0x1531] = 0x9f3f, [0x1532] = 0x2a5c6, + [0x1533] = 0x4d92, [0x1534] = 0x349f, [0x1535] = 0x34a0, [0x1536] = 0x20425, + [0x1537] = 0x20426, [0x1538] = 0x20424, [0x1539] = 0x20433, [0x153a] = 0x20570, + [0x153b] = 0x3527, [0x153c] = 0x20b90, [0x153d] = 0x360b, [0x153e] = 0x21095, + [0x153f] = 0x210a1, [0x1540] = 0x21092, [0x1541] = 0x2108f, [0x1542] = 0x2109f, + [0x1543] = 0x21096, [0x1544] = 0x21098, [0x1545] = 0x2109d, [0x1546] = 0x210a0, + [0x1547] = 0x368d, [0x1548] = 0x21697, [0x1549] = 0x218eb, [0x154a] = 0x3770, + [0x154b] = 0x21f87, [0x154c] = 0x5eeb, [0x154d] = 0x22432, [0x154e] = 0x399a, + [0x154f] = 0x399f, [0x1550] = 0x399d, [0x1551] = 0x228d8, [0x1552] = 0x228fb, + [0x1553] = 0x22906, [0x1554] = 0x399b, [0x1555] = 0x228d1, [0x1556] = 0x61d5, + [0x1558] = 0x3a60, [0x1559] = 0x3a64, [0x155a] = 0x3a69, [0x155b] = 0x3a63, + [0x155c] = 0x3a67, [0x155d] = 0x3a62, [0x155e] = 0x22df6, [0x155f] = 0x22e04, + [0x1560] = 0x22dfe, [0x1561] = 0x6502, [0x1562] = 0x22dff, [0x1563] = 0x22df7, + [0x1564] = 0x23018, [0x1566] = 0x23014, [0x1567] = 0x230cd, [0x1568] = 0x23120, + [0x1569] = 0x232de, [0x156a] = 0x3b26, [0x156b] = 0x3b23, [0x156c] = 0x3b25, + [0x156d] = 0x23745, [0x156e] = 0x23753, [0x156f] = 0x3bf8, [0x1570] = 0x2374b, + [0x1571] = 0x23755, [0x1572] = 0x23741, [0x1573] = 0x3bf7, [0x1574] = 0x3bfb, + [0x1575] = 0x3bfa, [0x1576] = 0x2375c, [0x1577] = 0x23754, [0x1578] = 0x23a71, + [0x1579] = 0x23ad0, [0x157a] = 0x3cb0, [0x157b] = 0x3caf, [0x157c] = 0x23c53, + [0x157d] = 0x24029, [0x157e] = 0x2407e, [0x157f] = 0x3d7e, [0x1580] = 0x24079, + [0x1581] = 0x3d7d, [0x1582] = 0x3d80, [0x1583] = 0x24070, [0x1584] = 0x2406a, + [0x1585] = 0x3d7f, [0x1586] = 0x3d86, [0x1587] = 0x24085, [0x1588] = 0x24064, + [0x1589] = 0x7012, [0x158a] = 0x24078, [0x158b] = 0x3d81, [0x158c] = 0x24432, + [0x158d] = 0x24427, [0x158e] = 0x2442f, [0x158f] = 0x3e24, [0x1590] = 0x3e58, + [0x1591] = 0x3e57, [0x1592] = 0x3ea0, [0x1593] = 0x248ba, [0x1594] = 0x3efe, + [0x1595] = 0x24a71, [0x1596] = 0x24a8c, [0x1597] = 0x3f15, [0x1598] = 0x24b1a, + [0x1599] = 0x3f47, [0x159a] = 0x3f46, [0x159b] = 0x24b98, [0x159c] = 0x24ce4, + [0x159d] = 0x3f6b, [0x159e] = 0x3f6c, [0x159f] = 0x7585, [0x15a0] = 0x7654, + [0x15a1] = 0x24ec2, [0x15a2] = 0x3fcc, [0x15a3] = 0x24eba, [0x15a4] = 0x7655, + [0x15a5] = 0x24ec8, [0x15a6] = 0x3fcb, [0x15a7] = 0x76a7, [0x15a8] = 0x76a8, + [0x15a9] = 0x3ff9, [0x15aa] = 0x250b9, [0x15ab] = 0x250b8, [0x15ac] = 0x250a5, + [0x15ad] = 0x252e2, [0x15ae] = 0x4078, [0x15af] = 0x407a, [0x15b0] = 0x4075, + [0x15b1] = 0x252d9, [0x15b2] = 0x4076, [0x15b3] = 0x4077, [0x15b4] = 0x252ac, + [0x15b5] = 0x252dd, [0x15b6] = 0x40ea, [0x15b7] = 0x40ee, [0x15b8] = 0x40ed, + [0x15b9] = 0x2559d, [0x15ba] = 0x40ec, [0x15bb] = 0x790f, [0x15bc] = 0x25711, + [0x15bd] = 0x25703, [0x15be] = 0x4184, [0x15bf] = 0x4185, [0x15c0] = 0x4183, + [0x15c1] = 0x258ee, [0x15c2] = 0x41bc, [0x15c3] = 0x41bd, [0x15c4] = 0x41d4, + [0x15c5] = 0x25ca4, [0x15c6] = 0x25cd8, [0x15c7] = 0x25cdd, [0x15c8] = 0x25cde, + [0x15c9] = 0x4255, [0x15ca] = 0x25ce7, [0x15cb] = 0x4250, [0x15cc] = 0x424c, + [0x15cd] = 0x4248, [0x15ce] = 0x25cd4, [0x15cf] = 0x4253, [0x15d0] = 0x25cce, + [0x15d1] = 0x4257, [0x15d2] = 0x4254, [0x15d3] = 0x424e, [0x15d4] = 0x424a, + [0x15d5] = 0x4251, [0x15d6] = 0x25cf1, [0x15d7] = 0x25cd3, [0x15d8] = 0x4249, + [0x15d9] = 0x424b, [0x15da] = 0x4263, [0x15db] = 0x25cca, [0x15dc] = 0x25ce9, + [0x15dd] = 0x42a7, [0x15de] = 0x42a6, [0x15df] = 0x42a4, [0x15e0] = 0x25f1a, + [0x15e1] = 0x25f41, [0x15e3] = 0x7ce4, [0x15e4] = 0x7ce5, [0x15e5] = 0x2613d, + [0x15e6] = 0x26140, [0x15e7] = 0x7e65, [0x15e8] = 0x7e4e, [0x15e9] = 0x4317, + [0x15ea] = 0x26143, [0x15eb] = 0x4316, [0x15ec] = 0x2613f, [0x15ed] = 0x2613c, + [0x15ee] = 0x4363, [0x15ef] = 0x26321, [0x15f0] = 0x26320, [0x15f1] = 0x7f82, + [0x15f2] = 0x263c6, [0x15f3] = 0x437b, [0x15f4] = 0x437c, [0x15f5] = 0x263d1, + [0x15f6] = 0x263ca, [0x15f7] = 0x2648e, [0x15f8] = 0x26491, [0x15f9] = 0x43b0, + [0x15fa] = 0x802d, [0x15fb] = 0x265e3, [0x15fc] = 0x26888, [0x15fd] = 0x4442, + [0x15fe] = 0x26870, [0x15ff] = 0x4444, [0x1600] = 0x2699d, [0x1601] = 0x26a9d, + [0x1602] = 0x26a91, [0x1603] = 0x26a98, [0x1604] = 0x26a99, [0x1605] = 0x4488, + [0x1606] = 0x448f, [0x1607] = 0x4553, [0x1608] = 0x455b, [0x1609] = 0x26fbf, + [0x160a] = 0x4559, [0x160b] = 0x26fae, [0x160c] = 0x26fb1, [0x160d] = 0x26fcc, + [0x160e] = 0x27004, [0x160f] = 0x85ca, [0x1610] = 0x27016, [0x1611] = 0x26fcd, + [0x1612] = 0x4554, [0x1613] = 0x85bc, [0x1614] = 0x26fe0, [0x1615] = 0x26fcb, + [0x1616] = 0x26fd4, [0x1617] = 0x26fc9, [0x1618] = 0x271ff, [0x1619] = 0x4599, + [0x161a] = 0x271fd, [0x161b] = 0x27457, [0x161c] = 0x27452, [0x161d] = 0x27450, + [0x161e] = 0x27445, [0x161f] = 0x2744d, [0x1620] = 0x45f1, [0x1621] = 0x27453, + [0x1622] = 0x45ef, [0x1623] = 0x27482, [0x1624] = 0x27444, [0x1625] = 0x275ce, + [0x1626] = 0x275cf, [0x1627] = 0x275d2, [0x1628] = 0x27602, [0x1629] = 0x2774f, + [0x162a] = 0x27758, [0x162b] = 0x4662, [0x162c] = 0x27743, [0x162d] = 0x4663, + [0x162e] = 0x27752, [0x162f] = 0x4660, [0x1630] = 0x4661, [0x1631] = 0x465f, + [0x1632] = 0x27749, [0x1633] = 0x27753, [0x1634] = 0x2774d, [0x1635] = 0x468d, + [0x1636] = 0x27884, [0x1637] = 0x468e, [0x1638] = 0x27883, [0x1639] = 0x27932, + [0x163a] = 0x27ae2, [0x163b] = 0x4709, [0x163c] = 0x27ae4, [0x163d] = 0x27ad3, + [0x163e] = 0x4705, [0x163f] = 0x27ad5, [0x1640] = 0x27add, [0x1641] = 0x4703, + [0x1642] = 0x4706, [0x1643] = 0x27aec, [0x1644] = 0x27ae6, [0x1645] = 0x27ad2, + [0x1646] = 0x27afa, [0x1647] = 0x27ada, [0x1648] = 0x4731, [0x1649] = 0x27c06, + [0x164a] = 0x27c04, [0x164b] = 0x474f, [0x164c] = 0x27c7b, [0x164d] = 0x27d04, + [0x164e] = 0x27d02, [0x164f] = 0x4766, [0x1650] = 0x8cff, [0x1651] = 0x47c4, + [0x1652] = 0x27f60, [0x1653] = 0x47c3, [0x1654] = 0x47c1, [0x1655] = 0x47c5, + [0x1656] = 0x28107, [0x1657] = 0x28105, [0x1658] = 0x2810c, [0x1659] = 0x4821, + [0x165a] = 0x2815a, [0x165b] = 0x481f, [0x165c] = 0x4822, [0x165d] = 0x2811a, + [0x165e] = 0x4827, [0x165f] = 0x4820, [0x1660] = 0x2838a, [0x1661] = 0x486d, + [0x1662] = 0x486c, [0x1663] = 0x486b, [0x1664] = 0x486f, [0x1665] = 0x4870, + [0x1666] = 0x2838c, [0x1667] = 0x28609, [0x1668] = 0x288a6, [0x1669] = 0x91a6, + [0x166a] = 0x288ac, [0x166b] = 0x288a9, [0x166c] = 0x4942, [0x166d] = 0x28a8b, + [0x166e] = 0x93b6, [0x166f] = 0x28a8c, [0x1670] = 0x4944, [0x1671] = 0x4940, + [0x1672] = 0x28a88, [0x1673] = 0x28a89, [0x1674] = 0x493f, [0x1675] = 0x28a93, + [0x1676] = 0x93ab, [0x1677] = 0x498b, [0x1678] = 0x28d83, [0x1679] = 0x28f4f, + [0x167a] = 0x4a25, [0x167b] = 0x4a28, [0x167c] = 0x29120, [0x167d] = 0x9721, + [0x167e] = 0x29236, [0x167f] = 0x292e2, [0x1680] = 0x4a75, [0x1681] = 0x4a72, + [0x1682] = 0x292ee, [0x1683] = 0x4a6f, [0x1684] = 0x292e7, [0x1685] = 0x292e9, + [0x1686] = 0x4a76, [0x1687] = 0x4a71, [0x1688] = 0x97a7, [0x1689] = 0x292df, + [0x168a] = 0x4a97, [0x168b] = 0x293c7, [0x168c] = 0x4ad7, [0x168d] = 0x29509, + [0x168e] = 0x4ad6, [0x168f] = 0x29501, [0x1690] = 0x4ad8, [0x1691] = 0x4adc, + [0x1692] = 0x4adb, [0x1693] = 0x4ad4, [0x1694] = 0x983e, [0x1695] = 0x4b13, + [0x1696] = 0x4b11, [0x1697] = 0x4b14, [0x1698] = 0x29605, [0x1699] = 0x2960c, + [0x169a] = 0x29778, [0x169b] = 0x2975d, [0x169c] = 0x4b51, [0x169d] = 0x4b50, + [0x169e] = 0x4b53, [0x169f] = 0x4b54, [0x16a0] = 0x4b52, [0x16a1] = 0x2975e, + [0x16a2] = 0x29760, [0x16a3] = 0x29767, [0x16a4] = 0x4b6d, [0x16a6] = 0x298f4, + [0x16a7] = 0x4b95, [0x16a8] = 0x4b99, [0x16a9] = 0x298f1, [0x16aa] = 0x4b9a, + [0x16ab] = 0x298fa, [0x16ac] = 0x4b93, [0x16ad] = 0x4b97, [0x16ae] = 0x298f8, + [0x16af] = 0x298f9, [0x16b0] = 0x29909, [0x16b1] = 0x298fd, [0x16b2] = 0x298f7, + [0x16b3] = 0x4bdc, [0x16b4] = 0x29a59, [0x16b5] = 0x4bfd, [0x16b6] = 0x29b60, + [0x16b7] = 0x29b68, [0x16b8] = 0x4bfe, [0x16b9] = 0x4c00, [0x16ba] = 0x4c02, + [0x16bb] = 0x4c01, [0x16bc] = 0x4c03, [0x16bd] = 0x29b6a, [0x16be] = 0x29c14, + [0x16bf] = 0x29c3e, [0x16c0] = 0x29ce4, [0x16c1] = 0x4c27, [0x16c2] = 0x4c26, + [0x16c3] = 0x4c24, [0x16c4] = 0x4c4c, [0x16c5] = 0x9bbc, [0x16c6] = 0x4c50, + [0x16c7] = 0x4c55, [0x16c8] = 0x4c53, [0x16c9] = 0x9bb7, [0x16ca] = 0x4c52, + [0x16cb] = 0x29dd2, [0x16cc] = 0x4c57, [0x16cd] = 0x9bbe, [0x16ce] = 0x4c58, + [0x16cf] = 0x4cd6, [0x16d0] = 0x2a058, [0x16d1] = 0x2a050, [0x16d2] = 0x4cd4, + [0x16d3] = 0x2a05c, [0x16d4] = 0x4cda, [0x16d5] = 0x4cd9, [0x16d6] = 0x28119, + [0x16d7] = 0x9d62, [0x16d8] = 0x4cd5, [0x16d9] = 0x4ce4, [0x16db] = 0x4cdc, + [0x16dc] = 0x4d1b, [0x16dd] = 0x9e8f, [0x16de] = 0x4d37, [0x16df] = 0x4d36, + [0x16e0] = 0x4d4b, [0x16e1] = 0x9ecb, [0x16e2] = 0x4d66, [0x16e3] = 0x4d76, + [0x16e4] = 0x2a4df, [0x16e5] = 0x4d7e, [0x16e6] = 0x4d7d, [0x16e7] = 0x4d7f, + [0x16e8] = 0x4d84, [0x16e9] = 0x4d8b, [0x16ea] = 0x2a5d9, [0x16eb] = 0x4d94, + [0x16ec] = 0x34a1, [0x16ed] = 0x3511, [0x16ee] = 0x20966, [0x16ef] = 0x3610, + [0x16f0] = 0x56a9, [0x16f1] = 0x210e1, [0x16f2] = 0x210ef, [0x16f3] = 0x210e8, + [0x16f4] = 0x21233, [0x16f5] = 0x5913, [0x16f6] = 0x218fe, [0x16f7] = 0x3732, + [0x16f8] = 0x5bf4, [0x16f9] = 0x21aef, [0x16fa] = 0x21aec, [0x16fb] = 0x21cec, + [0x16fc] = 0x21f9c, [0x16fd] = 0x3820, [0x16fe] = 0x21f99, [0x16ff] = 0x22170, + [0x1700] = 0x2216e, [0x1701] = 0x389d, [0x1702] = 0x22441, [0x1703] = 0x61ec, + [0x1704] = 0x61ef, [0x1705] = 0x22902, [0x1706] = 0x22901, [0x1707] = 0x39a5, + [0x1708] = 0x22a1b, [0x1709] = 0x22e23, [0x170a] = 0x22e25, [0x170b] = 0x22e24, + [0x170c] = 0x22e26, [0x170d] = 0x22e33, [0x170e] = 0x22e2f, [0x170f] = 0x2308f, + [0x1710] = 0x23356, [0x1711] = 0x3c02, [0x1712] = 0x3bfe, [0x1713] = 0x3c01, + [0x1714] = 0x6ad6, [0x1715] = 0x3c03, [0x1716] = 0x3bff, [0x1717] = 0x23799, + [0x1718] = 0x3c04, [0x171a] = 0x3c4a, [0x171b] = 0x23ad9, [0x171c] = 0x3d87, + [0x171d] = 0x240b7, [0x171e] = 0x3d84, [0x171f] = 0x240b6, [0x1720] = 0x3d85, + [0x1721] = 0x7209, [0x1722] = 0x24454, [0x1723] = 0x24457, [0x1724] = 0x2447a, + [0x1725] = 0x3e59, [0x1726] = 0x7379, [0x1727] = 0x24a8e, [0x1728] = 0x74c6, + [0x1729] = 0x24a90, [0x172a] = 0x24ab9, [0x172b] = 0x3f04, [0x172c] = 0x3f49, + [0x172d] = 0x3f48, [0x172e] = 0x24cef, [0x172f] = 0x3f6d, [0x1730] = 0x3fd2, + [0x1731] = 0x3fd3, [0x1732] = 0x24ee2, [0x1733] = 0x3fd1, [0x1734] = 0x24ed6, + [0x1735] = 0x24ed8, [0x1736] = 0x24eda, [0x1737] = 0x24ede, [0x1738] = 0x3fe7, + [0x1739] = 0x400a, [0x173a] = 0x77c3, [0x173b] = 0x25308, [0x173c] = 0x25304, + [0x173d] = 0x2530a, [0x173e] = 0x2530b, [0x173f] = 0x25302, [0x1740] = 0x40f0, + [0x1741] = 0x255aa, [0x1742] = 0x255c1, [0x1743] = 0x791f, [0x1744] = 0x258d7, + [0x1745] = 0x258d9, [0x1746] = 0x7a65, [0x1747] = 0x258de, [0x1748] = 0x258da, + [0x1749] = 0x41be, [0x174a] = 0x41bf, [0x174b] = 0x25a2a, [0x174c] = 0x7ac6, + [0x174d] = 0x7c3a, [0x174e] = 0x25d31, [0x174f] = 0x7c36, [0x1750] = 0x25d2b, + [0x1751] = 0x25d2c, [0x1752] = 0x25d29, [0x1753] = 0x25d2e, [0x1754] = 0x425e, + [0x1755] = 0x25d27, [0x1756] = 0x25d28, [0x1757] = 0x425b, [0x1758] = 0x25d5f, + [0x1759] = 0x25d30, [0x175a] = 0x25d24, [0x175b] = 0x7ceb, [0x175c] = 0x42ab, + [0x175d] = 0x25f3a, [0x175e] = 0x42ac, [0x175f] = 0x25f39, [0x1760] = 0x25f40, + [0x1761] = 0x26180, [0x1762] = 0x26184, [0x1763] = 0x431f, [0x1764] = 0x431d, + [0x1765] = 0x26175, [0x1766] = 0x26176, [0x1767] = 0x431c, [0x1768] = 0x2617c, + [0x1769] = 0x431e, [0x176a] = 0x26178, [0x176b] = 0x2619b, [0x176c] = 0x2617e, + [0x176d] = 0x2625a, [0x176e] = 0x4364, [0x176f] = 0x2632c, [0x1770] = 0x7f84, + [0x1771] = 0x2649c, [0x1772] = 0x26847, [0x1773] = 0x2688a, [0x1774] = 0x4448, + [0x1775] = 0x4447, [0x1776] = 0x26927, [0x1777] = 0x2704a, [0x1778] = 0x455e, + [0x1779] = 0x4561, [0x177a] = 0x27027, [0x177b] = 0x85e0, [0x177c] = 0x85f3, + [0x177d] = 0x2702e, [0x177e] = 0x27026, [0x177f] = 0x27208, [0x1780] = 0x45f7, + [0x1781] = 0x274bd, [0x1782] = 0x27496, [0x1783] = 0x45f4, [0x1784] = 0x45f8, + [0x1785] = 0x881e, [0x1786] = 0x274be, [0x1787] = 0x2748e, [0x1788] = 0x27774, + [0x1789] = 0x4664, [0x178a] = 0x27780, [0x178b] = 0x4692, [0x178c] = 0x468f, + [0x178d] = 0x4690, [0x178e] = 0x89b4, [0x178f] = 0x4693, [0x1790] = 0x46a8, + [0x1791] = 0x2793c, [0x1792] = 0x2793d, [0x1793] = 0x46a9, [0x1794] = 0x2793a, + [0x1795] = 0x27942, [0x1796] = 0x89f9, [0x1797] = 0x27b24, [0x1798] = 0x27b06, + [0x1799] = 0x8b44, [0x179a] = 0x470e, [0x179b] = 0x27b15, [0x179c] = 0x470f, + [0x179d] = 0x27b02, [0x179e] = 0x27b0c, [0x179f] = 0x470b, [0x17a0] = 0x27b08, + [0x17a1] = 0x27b0a, [0x17a2] = 0x27b05, [0x17a3] = 0x27b1c, [0x17a4] = 0x4710, + [0x17a5] = 0x4751, [0x17a6] = 0x27c82, [0x17a7] = 0x4750, [0x17a8] = 0x27c86, + [0x17a9] = 0x4763, [0x17aa] = 0x27e03, [0x17ab] = 0x27f7b, [0x17ac] = 0x47c7, + [0x17ad] = 0x27f7a, [0x17ae] = 0x8e71, [0x17af] = 0x4824, [0x17b0] = 0x4826, + [0x17b1] = 0x8e6e, [0x17b2] = 0x28180, [0x17b3] = 0x8e79, [0x17b4] = 0x28158, + [0x17b5] = 0x8ec4, [0x17b6] = 0x4874, [0x17b7] = 0x4873, [0x17b8] = 0x4872, + [0x17b9] = 0x283aa, [0x17ba] = 0x283ab, [0x17bb] = 0x28436, [0x17bc] = 0x2844a, + [0x17bd] = 0x48b1, [0x17be] = 0x908c, [0x17bf] = 0x287d6, [0x17c0] = 0x490e, + [0x17c1] = 0x4911, [0x17c2] = 0x4910, [0x17c3] = 0x490f, [0x17c4] = 0x4912, + [0x17c5] = 0x4949, [0x17c6] = 0x93c9, [0x17c7] = 0x494f, [0x17c8] = 0x494d, + [0x17c9] = 0x28b03, [0x17ca] = 0x28acf, [0x17cb] = 0x4955, [0x17cc] = 0x28d9f, + [0x17cd] = 0x28da2, [0x17ce] = 0x2902a, [0x17cf] = 0x2902f, [0x17d0] = 0x29144, + [0x17d1] = 0x29140, [0x17d2] = 0x4a2c, [0x17d3] = 0x4a2b, [0x17d4] = 0x29311, + [0x17d5] = 0x2930f, [0x17d6] = 0x4a79, [0x17d7] = 0x2930d, [0x17d8] = 0x29307, + [0x17d9] = 0x29303, [0x17da] = 0x4a7a, [0x17db] = 0x97b0, [0x17dc] = 0x4a99, + [0x17dd] = 0x4a9a, [0x17de] = 0x29435, [0x17df] = 0x4aae, [0x17e0] = 0x4aaf, + [0x17e1] = 0x29504, [0x17e2] = 0x4ae4, [0x17e3] = 0x4ae1, [0x17e4] = 0x4ade, + [0x17e5] = 0x4ae6, [0x17e6] = 0x4adf, [0x17e7] = 0x29526, [0x17e8] = 0x4ae7, + [0x17e9] = 0x4ae2, [0x17ea] = 0x4ae0, [0x17eb] = 0x2951e, [0x17ec] = 0x4ae5, + [0x17ed] = 0x985a, [0x17ee] = 0x2960e, [0x17ef] = 0x4b18, [0x17f0] = 0x2961d, + [0x17f1] = 0x2961e, [0x17f2] = 0x2961f, [0x17f3] = 0x4b56, [0x17f4] = 0x29788, + [0x17f5] = 0x9946, [0x17f6] = 0x2978d, [0x17f7] = 0x29791, [0x17f8] = 0x29780, + [0x17f9] = 0x4b6e, [0x17fa] = 0x29854, [0x17fb] = 0x29855, [0x17fc] = 0x4b9d, + [0x17fd] = 0x4ba0, [0x17fe] = 0x4b9c, [0x17ff] = 0x29925, [0x1800] = 0x2991a, + [0x1801] = 0x4ba1, [0x1802] = 0x4ba2, [0x1803] = 0x4b9f, [0x1804] = 0x4bdf, + [0x1805] = 0x4bde, [0x1806] = 0x9ac3, [0x1807] = 0x4bea, [0x1808] = 0x29b88, + [0x1809] = 0x4c06, [0x180a] = 0x29b7a, [0x180b] = 0x4c04, [0x180c] = 0x9b0f, + [0x180d] = 0x29b80, [0x180e] = 0x29d1e, [0x180f] = 0x29dfc, [0x1810] = 0x29e25, + [0x1811] = 0x4c5f, [0x1812] = 0x9bf4, [0x1813] = 0x9bfa, [0x1814] = 0x4c5c, + [0x1815] = 0x29e0b, [0x1816] = 0x4c5e, [0x1817] = 0x29e06, [0x1818] = 0x29e04, + [0x1819] = 0x9bdd, [0x181a] = 0x4c59, [0x181b] = 0x29df9, [0x181c] = 0x29e00, + [0x181d] = 0x4c64, [0x181e] = 0x4c5d, [0x181f] = 0x4c62, [0x1820] = 0x29e02, + [0x1821] = 0x4c65, [0x1822] = 0x29e07, [0x1823] = 0x9bed, [0x1824] = 0x4c5b, + [0x1825] = 0x9bef, [0x1826] = 0x2a0b5, [0x1827] = 0x4cdd, [0x1828] = 0x2a087, + [0x1829] = 0x4cdf, [0x182a] = 0x2a093, [0x182c] = 0x4ce2, [0x182d] = 0x2a0be, + [0x182e] = 0x2a266, [0x182f] = 0x4d27, [0x1830] = 0x2a2c7, [0x1831] = 0x2a2cf, + [0x1832] = 0x9e96, [0x1833] = 0x4d3a, [0x1834] = 0x4d3c, [0x1835] = 0x2a33d, + [0x1836] = 0x4d39, [0x1837] = 0x2a33c, [0x1838] = 0x2a347, [0x1839] = 0x4d3d, + [0x183a] = 0x4d3b, [0x183b] = 0x9eb3, [0x183c] = 0x4d4c, [0x183d] = 0x2a3c3, + [0x183e] = 0x4d68, [0x183f] = 0x9ee2, [0x1840] = 0x2a51b, [0x1841] = 0x4d80, + [0x1842] = 0x4d85, [0x1843] = 0x2a5c9, [0x1844] = 0x4d95, [0x1845] = 0x2a5dd, + [0x1846] = 0x4d96, [0x1847] = 0x2a693, [0x1848] = 0x9f8f, [0x1849] = 0x2043d, + [0x184a] = 0x34a4, [0x184b] = 0x3512, [0x184c] = 0x56b1, [0x184d] = 0x3625, + [0x184e] = 0x214e6, [0x184f] = 0x5b41, [0x1850] = 0x3737, [0x1851] = 0x21af7, + [0x1852] = 0x21fb0, [0x1853] = 0x21fae, [0x1855] = 0x3868, [0x1856] = 0x3867, + [0x1857] = 0x389e, [0x1858] = 0x2259f, [0x1859] = 0x2259e, [0x185a] = 0x22930, + [0x185b] = 0x39aa, [0x185c] = 0x2294f, [0x185d] = 0x39a9, [0x185e] = 0x39a4, + [0x185f] = 0x22927, [0x1860] = 0x22951, [0x1861] = 0x3a71, [0x1862] = 0x3a6f, + [0x1863] = 0x22e51, [0x1864] = 0x22e54, [0x1865] = 0x22e56, [0x1866] = 0x23027, + [0x1867] = 0x3aad, [0x1868] = 0x23024, [0x1869] = 0x6af6, [0x186a] = 0x3c0c, + [0x186b] = 0x6af2, [0x186c] = 0x3c0b, [0x186d] = 0x237ec, [0x186e] = 0x237c4, + [0x186f] = 0x3c0f, [0x1870] = 0x3c79, [0x1871] = 0x240f8, [0x1872] = 0x240f6, + [0x1873] = 0x240f7, [0x1874] = 0x240ed, [0x1875] = 0x3d8d, [0x1876] = 0x3d8f, + [0x1877] = 0x240f4, [0x1878] = 0x240ef, [0x1879] = 0x3d8e, [0x187a] = 0x3e0c, + [0x187b] = 0x2447f, [0x187c] = 0x244a2, [0x187d] = 0x2447e, [0x187e] = 0x3ea6, + [0x187f] = 0x248c5, [0x1880] = 0x3ea3, [0x1881] = 0x3ea4, [0x1882] = 0x3ea5, + [0x1883] = 0x7588, [0x1884] = 0x3f6e, [0x1885] = 0x24ef1, [0x1886] = 0x24ef2, + [0x1887] = 0x3ffa, [0x1888] = 0x2502f, [0x1889] = 0x407c, [0x188a] = 0x407e, + [0x188b] = 0x407b, [0x188c] = 0x407d, [0x188d] = 0x25323, [0x188e] = 0x25329, + [0x188f] = 0x408d, [0x1890] = 0x40f4, [0x1891] = 0x40f3, [0x1892] = 0x2571b, + [0x1893] = 0x258eb, [0x1894] = 0x4189, [0x1895] = 0x258ea, [0x1896] = 0x25a33, + [0x1897] = 0x41c0, [0x1898] = 0x25d63, [0x1899] = 0x4265, [0x189a] = 0x25d92, + [0x189b] = 0x25d65, [0x189c] = 0x42ad, [0x189d] = 0x4325, [0x189e] = 0x261a0, + [0x18a0] = 0x2625e, [0x18a1] = 0x43c9, [0x18a2] = 0x268aa, [0x18a3] = 0x444a, + [0x18a4] = 0x268a9, [0x18a5] = 0x8267, [0x18a6] = 0x4489, [0x18a7] = 0x2709c, + [0x18a8] = 0x4566, [0x18a9] = 0x4570, [0x18aa] = 0x27092, [0x18ab] = 0x456d, + [0x18ac] = 0x4569, [0x18ad] = 0x4567, [0x18ae] = 0x27086, [0x18af] = 0x4572, + [0x18b0] = 0x860e, [0x18b1] = 0x456e, [0x18b2] = 0x27083, [0x18b3] = 0x459c, + [0x18b4] = 0x45fc, [0x18b5] = 0x45fd, [0x18b6] = 0x4604, [0x18b7] = 0x45ff, + [0x18b9] = 0x45fe, [0x18ba] = 0x4600, [0x18bb] = 0x274ce, [0x18bc] = 0x4666, + [0x18bd] = 0x4669, [0x18be] = 0x27793, [0x18bf] = 0x46aa, [0x18c0] = 0x46ab, + [0x18c1] = 0x4717, [0x18c2] = 0x27b2e, [0x18c3] = 0x27b27, [0x18c4] = 0x27b28, + [0x18c5] = 0x4715, [0x18c6] = 0x8b5e, [0x18c7] = 0x4712, [0x18c8] = 0x8d0e, + [0x18c9] = 0x27e18, [0x18ca] = 0x27e16, [0x18cb] = 0x27f8d, [0x18cc] = 0x47ca, + [0x18cd] = 0x27f8e, [0x18ce] = 0x47c9, [0x18cf] = 0x47cb, [0x18d0] = 0x27f90, + [0x18d1] = 0x27f8f, [0x18d2] = 0x28181, [0x18d3] = 0x4829, [0x18d4] = 0x4828, + [0x18d5] = 0x2818a, [0x18d6] = 0x2818c, [0x18d7] = 0x2828d, [0x18d8] = 0x4840, + [0x18d9] = 0x4875, [0x18da] = 0x4876, [0x18db] = 0x283b2, [0x18dc] = 0x4888, + [0x18dd] = 0x287d9, [0x18de] = 0x91b6, [0x18df] = 0x4957, [0x18e0] = 0x9401, + [0x18e1] = 0x28b0d, [0x18e2] = 0x495f, [0x18e3] = 0x28b13, [0x18e4] = 0x941d, + [0x18e5] = 0x4958, [0x18e6] = 0x495b, [0x18e7] = 0x28b1b, [0x18e8] = 0x942f, + [0x18e9] = 0x28dac, [0x18ea] = 0x49b3, [0x18eb] = 0x28db3, [0x18ec] = 0x49ef, + [0x18ed] = 0x2915e, [0x18ee] = 0x4a30, [0x18ef] = 0x29160, [0x18f0] = 0x29168, + [0x18f1] = 0x29163, [0x18f2] = 0x29169, [0x18f3] = 0x29167, [0x18f4] = 0x4a41, + [0x18f5] = 0x4a4b, [0x18f6] = 0x29328, [0x18f7] = 0x4a7d, [0x18f8] = 0x2932e, + [0x18f9] = 0x29330, [0x18fa] = 0x4a7c, [0x18fb] = 0x29326, [0x18fc] = 0x29331, + [0x18fd] = 0x29341, [0x18fe] = 0x97e0, [0x18ff] = 0x293da, [0x1900] = 0x97db, + [0x1902] = 0x2940b, [0x1903] = 0x9861, [0x1904] = 0x29534, [0x1905] = 0x29533, + [0x1906] = 0x4ae8, [0x1907] = 0x4aea, [0x1908] = 0x4ae9, [0x1909] = 0x29539, + [0x190a] = 0x2953b, [0x190b] = 0x29540, [0x190c] = 0x29630, [0x190d] = 0x4b1b, + [0x190e] = 0x29632, [0x190f] = 0x29637, [0x1910] = 0x4b55, [0x1911] = 0x994a, + [0x1912] = 0x4b59, [0x1913] = 0x4b58, [0x1914] = 0x29781, [0x1915] = 0x2979f, + [0x1916] = 0x297a7, [0x1917] = 0x4ba4, [0x1918] = 0x4ba3, [0x1919] = 0x29944, + [0x191a] = 0x29947, [0x191b] = 0x29948, [0x191c] = 0x2993d, [0x191d] = 0x9a33, + [0x191e] = 0x4ba7, [0x191f] = 0x29949, [0x1920] = 0x4be0, [0x1921] = 0x29a80, + [0x1922] = 0x29ba0, [0x1923] = 0x29b9d, [0x1924] = 0x4c08, [0x1925] = 0x4c0a, + [0x1926] = 0x4c09, [0x1927] = 0x29b9c, [0x1928] = 0x29c47, [0x1929] = 0x29d07, + [0x192a] = 0x4c71, [0x192b] = 0x9c0f, [0x192c] = 0x4c6c, [0x192d] = 0x29e49, + [0x192e] = 0x9c11, [0x192f] = 0x29e44, [0x1930] = 0x9c03, [0x1931] = 0x9c01, + [0x1932] = 0x4c6e, [0x1933] = 0x29edf, [0x1934] = 0x9c16, [0x1935] = 0x29e4c, + [0x1937] = 0x29e4f, [0x1938] = 0x4ce0, [0x1939] = 0x4cee, [0x193a] = 0x2a0c1, + [0x193b] = 0x4ceb, [0x193c] = 0x2a0b9, [0x193d] = 0x2a0cb, [0x193e] = 0x2a0cf, + [0x193f] = 0x2a0c4, [0x1940] = 0x9d93, [0x1941] = 0x4cea, [0x1942] = 0x4cef, + [0x1943] = 0x4ce7, [0x1944] = 0x2a0ca, [0x1945] = 0x2a0c3, [0x1946] = 0x2a2d0, + [0x1947] = 0x2a351, [0x1948] = 0x4d48, [0x1949] = 0x4d49, [0x194a] = 0x2a3a8, + [0x194b] = 0x2a3c7, [0x194c] = 0x2a3c6, [0x194d] = 0x4d4d, [0x194e] = 0x2a3ca, + [0x194f] = 0x2a402, [0x1950] = 0x4d55, [0x1951] = 0x2a45d, [0x1952] = 0x2a45a, + [0x1953] = 0x4d6a, [0x1954] = 0x4d6c, [0x1955] = 0x2a459, [0x1956] = 0x4d6b, + [0x1957] = 0x2a4cc, [0x1958] = 0x2a51c, [0x1959] = 0x2a5cc, [0x195a] = 0x4d98, + [0x195b] = 0x4d99, [0x195c] = 0x4d97, [0x195d] = 0x2a5e8, [0x195e] = 0x2a5ec, + [0x195f] = 0x2a5ea, [0x1960] = 0x2a6ad, [0x1961] = 0x2a6b0, [0x1962] = 0x2045f, + [0x1963] = 0x20458, [0x1964] = 0x20457, [0x1965] = 0x535b, [0x1966] = 0x20b93, + [0x1967] = 0x3616, [0x1968] = 0x2113b, [0x1969] = 0x56bf, [0x196a] = 0x21134, + [0x196b] = 0x214f2, [0x196c] = 0x3739, [0x196d] = 0x21afd, [0x196e] = 0x21c1d, + [0x196f] = 0x3825, [0x1970] = 0x5dce, [0x1971] = 0x22304, [0x1972] = 0x22448, + [0x1973] = 0x22958, [0x1974] = 0x22e4f, [0x1975] = 0x3a74, [0x1976] = 0x22e6e, + [0x1977] = 0x22e72, [0x1978] = 0x3aae, [0x1979] = 0x2302e, [0x197a] = 0x237fc, + [0x197b] = 0x237f4, [0x197c] = 0x23c36, [0x197d] = 0x2410e, [0x197e] = 0x3d92, + [0x197f] = 0x3d94, [0x1980] = 0x24114, [0x1981] = 0x3d95, [0x1982] = 0x24119, + [0x1983] = 0x3e0d, [0x1984] = 0x244a6, [0x1985] = 0x3e25, [0x1986] = 0x24ac9, + [0x1987] = 0x24ac0, [0x1988] = 0x24acc, [0x1989] = 0x24b1b, [0x198a] = 0x24baa, + [0x198b] = 0x24ba8, [0x198c] = 0x24f03, [0x198d] = 0x3fd5, [0x198e] = 0x3fd6, + [0x198f] = 0x76ac, [0x1990] = 0x3fe8, [0x1991] = 0x25035, [0x1992] = 0x407f, + [0x1993] = 0x77d2, [0x1994] = 0x40f5, [0x1995] = 0x40f6, [0x1996] = 0x40f7, + [0x1997] = 0x255d9, [0x1998] = 0x4124, [0x1999] = 0x418d, [0x199a] = 0x418a, + [0x199b] = 0x25a3f, [0x199c] = 0x25a3d, [0x199d] = 0x426c, [0x199e] = 0x4266, + [0x199f] = 0x426a, [0x19a0] = 0x25d8b, [0x19a1] = 0x4267, [0x19a2] = 0x426d, + [0x19a3] = 0x4268, [0x19a4] = 0x7c52, [0x19a5] = 0x25d68, [0x19a6] = 0x25d8a, + [0x19a7] = 0x25f58, [0x19a8] = 0x25f57, [0x19a9] = 0x261ce, [0x19aa] = 0x261bc, + [0x19ab] = 0x261c0, [0x19ac] = 0x261c1, [0x19ad] = 0x261bf, [0x19ae] = 0x261ab, + [0x19af] = 0x2625f, [0x19b0] = 0x4365, [0x19b1] = 0x264a6, [0x19b2] = 0x439a, + [0x19b3] = 0x26529, [0x19b4] = 0x43b1, [0x19b5] = 0x444b, [0x19b6] = 0x444d, + [0x19b7] = 0x444c, [0x19b8] = 0x444e, [0x19b9] = 0x268b8, [0x19ba] = 0x4573, + [0x19bb] = 0x4575, [0x19bc] = 0x270dd, [0x19bd] = 0x270d6, [0x19bf] = 0x270d5, + [0x19c0] = 0x270e7, [0x19c1] = 0x270d8, [0x19c2] = 0x274ec, [0x19c3] = 0x4603, + [0x19c4] = 0x27500, [0x19c5] = 0x27507, [0x19c6] = 0x274fd, [0x19c7] = 0x274f1, + [0x19c8] = 0x274ff, [0x19c9] = 0x277aa, [0x19ca] = 0x277b0, [0x19cb] = 0x27b48, + [0x19cc] = 0x471e, [0x19cd] = 0x27b53, [0x19ce] = 0x8b73, [0x19cf] = 0x27b4d, + [0x19d0] = 0x4719, [0x19d1] = 0x471c, [0x19d2] = 0x471a, [0x19d3] = 0x471d, + [0x19d4] = 0x8b76, [0x19d5] = 0x27b43, [0x19d6] = 0x27b50, [0x19d7] = 0x4743, + [0x19d8] = 0x4752, [0x19d9] = 0x27c8c, [0x19da] = 0x27e27, [0x19db] = 0x4795, + [0x19dc] = 0x27f99, [0x19dd] = 0x47cc, [0x19de] = 0x281b1, [0x19df] = 0x482b, + [0x19e0] = 0x281b0, [0x19e1] = 0x281aa, [0x19e2] = 0x281ac, [0x19e3] = 0x482a, + [0x19e4] = 0x8ec7, [0x19e5] = 0x4877, [0x19e6] = 0x283c8, [0x19e7] = 0x283ca, + [0x19e8] = 0x28642, [0x19e9] = 0x287e0, [0x19ea] = 0x288e7, [0x19eb] = 0x288e8, + [0x19ec] = 0x288e6, [0x19ed] = 0x4913, [0x19ee] = 0x4914, [0x19ef] = 0x9434, + [0x19f0] = 0x28b5b, [0x19f1] = 0x28b56, [0x19f2] = 0x495d, [0x19f3] = 0x28b5a, + [0x19f4] = 0x4960, [0x19f5] = 0x943e, [0x19f6] = 0x4962, [0x19f7] = 0x28cb8, + [0x19f8] = 0x28dc5, [0x19f9] = 0x49b2, [0x19fa] = 0x49f0, [0x19fb] = 0x29048, + [0x19fc] = 0x2917d, [0x19fd] = 0x2917c, [0x19fe] = 0x29181, [0x19ff] = 0x29182, + [0x1a00] = 0x29162, [0x1a01] = 0x4a4c, [0x1a02] = 0x29345, [0x1a03] = 0x4a82, + [0x1a04] = 0x97bc, [0x1a05] = 0x4a81, [0x1a06] = 0x4a9b, [0x1a07] = 0x293e3, + [0x1a08] = 0x4aa4, [0x1a09] = 0x4aee, [0x1a0a] = 0x4aec, [0x1a0b] = 0x29550, + [0x1a0c] = 0x4aed, [0x1a0d] = 0x2954f, [0x1a0e] = 0x4af0, [0x1a0f] = 0x4aef, + [0x1a10] = 0x29639, [0x1a11] = 0x4b1d, [0x1a12] = 0x2963a, [0x1a13] = 0x4b60, + [0x1a14] = 0x4b5e, [0x1a15] = 0x4b5d, [0x1a16] = 0x297c1, [0x1a17] = 0x2994e, + [0x1a18] = 0x2996e, [0x1a19] = 0x4bb1, [0x1a1a] = 0x4bab, [0x1a1b] = 0x4bac, + [0x1a1c] = 0x4bad, [0x1a1d] = 0x29971, [0x1a1e] = 0x4bae, [0x1a1f] = 0x29a8c, + [0x1a20] = 0x29a89, [0x1a21] = 0x4be2, [0x1a22] = 0x29ae5, [0x1a23] = 0x29bb3, + [0x1a24] = 0x29bb6, [0x1a25] = 0x29bb4, [0x1a26] = 0x29c4d, [0x1a27] = 0x9b39, + [0x1a28] = 0x29d13, [0x1a29] = 0x29e78, [0x1a2a] = 0x9c2a, [0x1a2b] = 0x4c7b, + [0x1a2c] = 0x9c26, [0x1a2d] = 0x4c78, [0x1a2e] = 0x4c75, [0x1a2f] = 0x9c27, + [0x1a30] = 0x29e72, [0x1a31] = 0x4cf2, [0x1a32] = 0x4cf4, [0x1a33] = 0x4cf3, + [0x1a34] = 0x9dc0, [0x1a35] = 0x9dc9, [0x1a36] = 0x2a275, [0x1a37] = 0x2a2da, + [0x1a38] = 0x2a2d7, [0x1a39] = 0x4d3f, [0x1a3a] = 0x4d3e, [0x1a3b] = 0x4d40, + [0x1a3c] = 0x4d4e, [0x1a3d] = 0x4d57, [0x1a3e] = 0x4d59, [0x1a3f] = 0x4d58, + [0x1a40] = 0x4d56, [0x1a41] = 0x2a469, [0x1a42] = 0x2a467, [0x1a43] = 0x4d6e, + [0x1a44] = 0x2a466, [0x1a45] = 0x2a46f, [0x1a46] = 0x2a471, [0x1a47] = 0x9eec, + [0x1a48] = 0x2a4cf, [0x1a49] = 0x2a523, [0x1a4a] = 0x4d81, [0x1a4b] = 0x4d86, + [0x1a4c] = 0x2a5a5, [0x1a4d] = 0x4d8f, [0x1a4e] = 0x2a5fe, [0x1a4f] = 0x2a5fb, + [0x1a50] = 0x2a5fd, [0x1a51] = 0x9f68, [0x1a52] = 0x4d9b, [0x1a53] = 0x4db1, + [0x1a54] = 0x4db3, [0x1a55] = 0x2116d, [0x1a56] = 0x373a, [0x1a57] = 0x21b05, + [0x1a58] = 0x21c20, [0x1a59] = 0x3827, [0x1a5a] = 0x21fc8, [0x1a5b] = 0x21fc9, + [0x1a5c] = 0x386a, [0x1a5d] = 0x39ac, [0x1a5e] = 0x23127, [0x1a5f] = 0x3c18, + [0x1a60] = 0x2381e, [0x1a61] = 0x23936, [0x1a62] = 0x3c4c, [0x1a63] = 0x2413d, + [0x1a64] = 0x3d96, [0x1a65] = 0x248d7, [0x1a66] = 0x3f4a, [0x1a67] = 0x24bad, + [0x1a68] = 0x24d00, [0x1a69] = 0x4081, [0x1a6a] = 0x2533a, [0x1a6b] = 0x4083, + [0x1a6c] = 0x40f9, [0x1a6d] = 0x40f8, [0x1a6e] = 0x25726, [0x1a6f] = 0x418e, + [0x1a70] = 0x418f, [0x1a71] = 0x41c1, [0x1a72] = 0x25db7, [0x1a73] = 0x25db6, + [0x1a74] = 0x25dc0, [0x1a75] = 0x4270, [0x1a76] = 0x25d9b, [0x1a77] = 0x4271, + [0x1a78] = 0x261d8, [0x1a79] = 0x432a, [0x1a7a] = 0x432d, [0x1a7b] = 0x437d, + [0x1a7c] = 0x8032, [0x1a7d] = 0x8031, [0x1a7e] = 0x268c0, [0x1a7f] = 0x444f, + [0x1a80] = 0x268bf, [0x1a81] = 0x26abf, [0x1a82] = 0x4490, [0x1a83] = 0x27120, + [0x1a84] = 0x270d0, [0x1a85] = 0x2710e, [0x1a86] = 0x4579, [0x1a87] = 0x2711d, + [0x1a88] = 0x2711e, [0x1a89] = 0x27115, [0x1a8a] = 0x27114, [0x1a8b] = 0x2751e, + [0x1a8c] = 0x2752c, [0x1a8d] = 0x4605, [0x1a8e] = 0x277b9, [0x1a8f] = 0x277b8, + [0x1a90] = 0x277b6, [0x1a91] = 0x2789e, [0x1a92] = 0x2789c, [0x1a93] = 0x2794d, + [0x1a94] = 0x89fd, [0x1a95] = 0x27b6e, [0x1a96] = 0x27b60, [0x1a97] = 0x4721, + [0x1a98] = 0x27b64, [0x1a99] = 0x27b62, [0x1a9a] = 0x261e5, [0x1a9b] = 0x4732, + [0x1a9c] = 0x27fa3, [0x1a9e] = 0x47cf, [0x1a9f] = 0x283d2, [0x1aa0] = 0x283d5, + [0x1aa1] = 0x908e, [0x1aa2] = 0x4916, [0x1aa3] = 0x4915, [0x1aa4] = 0x49b5, + [0x1aa5] = 0x4a08, [0x1aa6] = 0x29055, [0x1aa7] = 0x4a32, [0x1aa8] = 0x29193, + [0x1aa9] = 0x4a33, [0x1aaa] = 0x4a34, [0x1aab] = 0x4a3c, [0x1aac] = 0x29356, + [0x1aad] = 0x97c2, [0x1aae] = 0x293e9, [0x1aaf] = 0x4a9c, [0x1ab0] = 0x29445, + [0x1ab1] = 0x4af4, [0x1ab2] = 0x4af2, [0x1ab3] = 0x2967c, [0x1ab4] = 0x4b62, + [0x1ab5] = 0x297d3, [0x1ab6] = 0x4b61, [0x1ab7] = 0x4b64, [0x1ab8] = 0x4bb5, + [0x1ab9] = 0x9a4b, [0x1aba] = 0x4bb4, [0x1abb] = 0x2998e, [0x1abc] = 0x29a97, + [0x1abd] = 0x4be3, [0x1abe] = 0x29a9b, [0x1abf] = 0x29a99, [0x1ac0] = 0x9b1c, + [0x1ac1] = 0x4c0e, [0x1ac2] = 0x29bcf, [0x1ac3] = 0x9b1b, [0x1ac4] = 0x29c59, + [0x1ac5] = 0x4c2c, [0x1ac6] = 0x4c2b, [0x1ac7] = 0x29d20, [0x1ac8] = 0x29d23, + [0x1ac9] = 0x29d2a, [0x1aca] = 0x4c85, [0x1acb] = 0x4c81, [0x1acc] = 0x4c7e, + [0x1acd] = 0x4c83, [0x1ace] = 0x4c80, [0x1acf] = 0x29eb0, [0x1ad0] = 0x9c42, + [0x1ad1] = 0x2a12f, [0x1ad2] = 0x9dd4, [0x1ad3] = 0x4cfb, [0x1ad4] = 0x4cf7, + [0x1ad5] = 0x2a132, [0x1ad6] = 0x2a143, [0x1ad7] = 0x2a13f, [0x1ad8] = 0x2a139, + [0x1ad9] = 0x4cf8, [0x1ada] = 0x2a130, [0x1adb] = 0x2a2dd, [0x1adc] = 0x2a3da, + [0x1add] = 0x2a3db, [0x1ade] = 0x4d5a, [0x1adf] = 0x2a484, [0x1ae0] = 0x2a47f, + [0x1ae1] = 0x2a472, [0x1ae2] = 0x2a480, [0x1ae3] = 0x2a4ee, [0x1ae4] = 0x4d78, + [0x1ae5] = 0x2a52a, [0x1ae6] = 0x2a522, [0x1ae7] = 0x2a571, [0x1ae8] = 0x2a5cd, + [0x1ae9] = 0x4d9d, [0x1aea] = 0x4d9c, [0x1aeb] = 0x2a60f, [0x1aec] = 0x2a618, + [0x1aed] = 0x2046a, [0x1aee] = 0x34a9, [0x1aef] = 0x34bf, [0x1af0] = 0x56d0, + [0x1af1] = 0x56cf, [0x1af2] = 0x21b0c, [0x1af3] = 0x5dda, [0x1af4] = 0x225a6, + [0x1af5] = 0x3a77, [0x1af6] = 0x3a76, [0x1af7] = 0x23037, [0x1af8] = 0x3abb, + [0x1af9] = 0x66ea, [0x1afa] = 0x23ae2, [0x1afb] = 0x3d9b, [0x1afc] = 0x244bc, + [0x1afd] = 0x3e0f, [0x1afe] = 0x3e5b, [0x1aff] = 0x24ad5, [0x1b00] = 0x3f4c, + [0x1b01] = 0x3f6f, [0x1b02] = 0x3fd9, [0x1b03] = 0x24f12, [0x1b04] = 0x4082, + [0x1b05] = 0x2534b, [0x1b06] = 0x25341, [0x1b07] = 0x253a1, [0x1b08] = 0x255ec, + [0x1b09] = 0x4274, [0x1b0a] = 0x4272, [0x1b0b] = 0x25dd4, [0x1b0c] = 0x25dd8, + [0x1b0d] = 0x25dd9, [0x1b0e] = 0x4273, [0x1b0f] = 0x25dda, [0x1b10] = 0x25f6c, + [0x1b11] = 0x25f6d, [0x1b12] = 0x42b1, [0x1b13] = 0x432e, [0x1b14] = 0x261e7, + [0x1b15] = 0x261eb, [0x1b16] = 0x261ec, [0x1b17] = 0x26262, [0x1b18] = 0x434e, + [0x1b19] = 0x2652b, [0x1b1a] = 0x2660d, [0x1b1b] = 0x268cd, [0x1b1c] = 0x26ac3, + [0x1b1d] = 0x2713f, [0x1b1e] = 0x2713c, [0x1b1f] = 0x2713e, [0x1b20] = 0x2713d, + [0x1b21] = 0x2713a, [0x1b22] = 0x27138, [0x1b23] = 0x27544, [0x1b24] = 0x27545, + [0x1b25] = 0x460b, [0x1b26] = 0x27548, [0x1b27] = 0x27550, [0x1b28] = 0x466c, + [0x1b29] = 0x8b89, [0x1b2a] = 0x27b78, [0x1b2b] = 0x27b79, [0x1b2c] = 0x478b, + [0x1b2d] = 0x27e3e, [0x1b2e] = 0x47d0, [0x1b2f] = 0x482d, [0x1b30] = 0x28654, + [0x1b31] = 0x48e4, [0x1b32] = 0x4971, [0x1b33] = 0x28bb9, [0x1b34] = 0x9458, + [0x1b35] = 0x496f, [0x1b36] = 0x2905f, [0x1b37] = 0x4a87, [0x1b38] = 0x4aa5, + [0x1b39] = 0x29572, [0x1b3a] = 0x29575, [0x1b3b] = 0x4b1e, [0x1b3c] = 0x4b65, + [0x1b3d] = 0x4bb9, [0x1b3e] = 0x4bb7, [0x1b3f] = 0x4bb8, [0x1b40] = 0x4be4, + [0x1b41] = 0x29aa3, [0x1b42] = 0x29aa5, [0x1b43] = 0x29bdc, [0x1b44] = 0x29bdd, + [0x1b45] = 0x29c5a, [0x1b46] = 0x4c8c, [0x1b47] = 0x4c89, [0x1b48] = 0x4c8a, + [0x1b49] = 0x29edb, [0x1b4a] = 0x29edc, [0x1b4b] = 0x4c8b, [0x1b4c] = 0x2a1ab, + [0x1b4d] = 0x2a184, [0x1b4e] = 0x2a176, [0x1b4f] = 0x4d01, [0x1b50] = 0x4cfe, + [0x1b51] = 0x9de7, [0x1b52] = 0x4d03, [0x1b53] = 0x4d06, [0x1b54] = 0x2a183, + [0x1b55] = 0x9dea, [0x1b56] = 0x9df1, [0x1b57] = 0x2a27f, [0x1b58] = 0x4d1d, + [0x1b59] = 0x4d43, [0x1b5a] = 0x2a373, [0x1b5b] = 0x2a3ad, [0x1b5c] = 0x2a3b0, + [0x1b5d] = 0x4d4f, [0x1b5e] = 0x2a40f, [0x1b5f] = 0x2a40c, [0x1b60] = 0x4d5b, + [0x1b61] = 0x4d70, [0x1b62] = 0x2a579, [0x1b63] = 0x4d88, [0x1b64] = 0x2a577, + [0x1b65] = 0x2a57a, [0x1b66] = 0x4d89, [0x1b67] = 0x9f44, [0x1b68] = 0x2a632, + [0x1b69] = 0x2a627, [0x1b6a] = 0x2a62a, [0x1b6b] = 0x2a62c, [0x1b6c] = 0x9f6d, + [0x1b6d] = 0x2a628, [0x1b6e] = 0x2a629, [0x1b6f] = 0x2a638, [0x1b70] = 0x2082f, + [0x1b71] = 0x2117b, [0x1b72] = 0x21b0d, [0x1b73] = 0x5dd9, [0x1b74] = 0x21fd6, + [0x1b75] = 0x21fd5, [0x1b76] = 0x22ea1, [0x1b77] = 0x2384c, [0x1b78] = 0x3d9e, + [0x1b79] = 0x3d9f, [0x1b7a] = 0x3ea7, [0x1b7b] = 0x3f4b, [0x1b7c] = 0x3fdb, + [0x1b7d] = 0x3fda, [0x1b7e] = 0x24fc0, [0x1b7f] = 0x77d6, [0x1b80] = 0x408e, + [0x1b81] = 0x4276, [0x1b82] = 0x25df4, [0x1b83] = 0x4330, [0x1b84] = 0x432f, + [0x1b85] = 0x261f0, [0x1b86] = 0x4366, [0x1b87] = 0x2633f, [0x1b88] = 0x457e, + [0x1b89] = 0x2755d, [0x1b8a] = 0x27572, [0x1b8b] = 0x27562, [0x1b8c] = 0x883a, + [0x1b8d] = 0x27566, [0x1b8e] = 0x8975, [0x1b8f] = 0x466f, [0x1b90] = 0x27b88, + [0x1b91] = 0x47d1, [0x1b92] = 0x482f, [0x1b93] = 0x281e8, [0x1b94] = 0x281e4, + [0x1b95] = 0x48b2, [0x1b96] = 0x4918, [0x1b97] = 0x4917, [0x1b98] = 0x288ff, + [0x1b99] = 0x4976, [0x1b9a] = 0x291af, [0x1b9b] = 0x291ae, [0x1b9c] = 0x4a4f, + [0x1b9d] = 0x4a89, [0x1b9e] = 0x293f2, [0x1b9f] = 0x29448, [0x1ba0] = 0x29581, + [0x1ba1] = 0x2957e, [0x1ba2] = 0x4af5, [0x1ba3] = 0x4b1f, [0x1ba4] = 0x29652, + [0x1ba5] = 0x297ef, [0x1ba6] = 0x9a5d, [0x1ba7] = 0x4be5, [0x1ba8] = 0x29aad, + [0x1ba9] = 0x29be6, [0x1baa] = 0x4c10, [0x1bab] = 0x29bed, [0x1bac] = 0x4c0f, + [0x1bad] = 0x29be9, [0x1bae] = 0x29c61, [0x1baf] = 0x29c60, [0x1bb0] = 0x29d33, + [0x1bb1] = 0x4c2f, [0x1bb2] = 0x4c30, [0x1bb3] = 0x9c64, [0x1bb4] = 0x29f0b, + [0x1bb5] = 0x29f08, [0x1bb6] = 0x4c93, [0x1bb7] = 0x4c94, [0x1bb8] = 0x29f07, + [0x1bb9] = 0x4d07, [0x1bba] = 0x4d09, [0x1bbb] = 0x4d08, [0x1bbc] = 0x2a1ca, + [0x1bbd] = 0x4d0b, [0x1bbe] = 0x2a1c6, [0x1bbf] = 0x9e0a, [0x1bc0] = 0x2a284, + [0x1bc1] = 0x2a2eb, [0x1bc2] = 0x2a37d, [0x1bc3] = 0x4d50, [0x1bc4] = 0x4d71, + [0x1bc5] = 0x2a49b, [0x1bc6] = 0x2a4a2, [0x1bc7] = 0x2a4a1, [0x1bc8] = 0x2a4a0, + [0x1bc9] = 0x2a49c, [0x1bca] = 0x4d7b, [0x1bcb] = 0x4d7c, [0x1bcc] = 0x2a580, + [0x1bcd] = 0x9f73, [0x1bce] = 0x2a640, [0x1bcf] = 0x4da1, [0x1bd0] = 0x2a639, + [0x1bd1] = 0x2a63c, [0x1bd2] = 0x4da0, [0x1bd3] = 0x4da2, [0x1bd4] = 0x208ca, + [0x1bd5] = 0x361b, [0x1bd6] = 0x21189, [0x1bd7] = 0x3682, [0x1bd8] = 0x2303c, + [0x1bd9] = 0x23940, [0x1bda] = 0x24163, [0x1bdb] = 0x24169, [0x1bdc] = 0x3fe9, + [0x1bdd] = 0x25353, [0x1bde] = 0x4084, [0x1bdf] = 0x77e1, [0x1be0] = 0x25917, + [0x1be1] = 0x2591a, [0x1be2] = 0x25e00, [0x1be3] = 0x42b3, [0x1be4] = 0x4334, + [0x1be5] = 0x4333, [0x1be6] = 0x4580, [0x1be7] = 0x2756f, [0x1be8] = 0x278ab, + [0x1be9] = 0x46ad, [0x1bea] = 0x27b91, [0x1beb] = 0x4744, [0x1bec] = 0x4755, + [0x1bed] = 0x27fb1, [0x1bee] = 0x47d2, [0x1bef] = 0x281ef, [0x1bf0] = 0x28df1, + [0x1bf1] = 0x28df2, [0x1bf2] = 0x291b7, [0x1bf3] = 0x291b5, [0x1bf4] = 0x4a8a, + [0x1bf5] = 0x29586, [0x1bf6] = 0x2965a, [0x1bf7] = 0x4b67, [0x1bf8] = 0x299c6, + [0x1bf9] = 0x299cb, [0x1bfa] = 0x4be6, [0x1bfb] = 0x29ab2, [0x1bfc] = 0x4c13, + [0x1bfd] = 0x29bf3, [0x1bfe] = 0x9b2d, [0x1bff] = 0x29f27, [0x1c00] = 0x4c97, + [0x1c01] = 0x9e0c, [0x1c02] = 0x2a1d5, [0x1c03] = 0x2a1d8, [0x1c04] = 0x4d0c, + [0x1c05] = 0x2a1ec, [0x1c06] = 0x2a287, [0x1c07] = 0x2a2f2, [0x1c08] = 0x4d46, + [0x1c09] = 0x4d5c, [0x1c0a] = 0x4d74, [0x1c0b] = 0x4d72, [0x1c0c] = 0x2a4ad, + [0x1c0d] = 0x2a4b0, [0x1c0e] = 0x2a4fd, [0x1c0f] = 0x9f1f, [0x1c10] = 0x2a587, + [0x1c11] = 0x2a64a, [0x1c12] = 0x4da4, [0x1c13] = 0x4da3, [0x1c14] = 0x2a64e, + [0x1c15] = 0x2a649, [0x1c16] = 0x2a651, [0x1c17] = 0x2a64d, [0x1c18] = 0x4db4, + [0x1c19] = 0x20472, [0x1c1a] = 0x3536, [0x1c1b] = 0x21b16, [0x1c1c] = 0x2386d, + [0x1c1d] = 0x23941, [0x1c1e] = 0x3cb2, [0x1c1f] = 0x24171, [0x1c20] = 0x24174, + [0x1c21] = 0x3f16, [0x1c22] = 0x7c70, [0x1c23] = 0x4277, [0x1c24] = 0x25f7c, + [0x1c25] = 0x457f, [0x1c26] = 0x2718a, [0x1c27] = 0x27956, [0x1c28] = 0x487d, + [0x1c29] = 0x9479, [0x1c2a] = 0x28bfa, [0x1c2b] = 0x974a, [0x1c2c] = 0x4a8c, + [0x1c2d] = 0x2965b, [0x1c2e] = 0x4b68, [0x1c2f] = 0x4bbe, [0x1c30] = 0x4c15, + [0x1c31] = 0x2a1f5, [0x1c32] = 0x2a1f0, [0x1c33] = 0x2a2f3, [0x1c34] = 0x2a37f, + [0x1c35] = 0x2a413, [0x1c36] = 0x4d75, [0x1c37] = 0x4da5, [0x1c38] = 0x21b19, + [0x1c39] = 0x22985, [0x1c3a] = 0x22eb0, [0x1c3b] = 0x24177, [0x1c3c] = 0x255ff, + [0x1c3d] = 0x4278, [0x1c3e] = 0x4335, [0x1c3f] = 0x7e9d, [0x1c40] = 0x4582, + [0x1c41] = 0x27187, [0x1c42] = 0x4583, [0x1c43] = 0x2718b, [0x1c44] = 0x4671, + [0x1c45] = 0x27b9e, [0x1c46] = 0x487e, [0x1c47] = 0x4a8e, [0x1c48] = 0x2958f, + [0x1c49] = 0x9960, [0x1c4a] = 0x4b69, [0x1c4b] = 0x29839, [0x1c4c] = 0x299d4, + [0x1c4d] = 0x29af1, [0x1c4e] = 0x29c02, [0x1c4f] = 0x29c6b, [0x1c50] = 0x29d40, + [0x1c51] = 0x4c9a, [0x1c52] = 0x4c9b, [0x1c53] = 0x2a210, [0x1c54] = 0x2a4be, + [0x1c55] = 0x2a4b9, [0x1c56] = 0x4d90, [0x1c57] = 0x2a664, [0x1c58] = 0x9f9e, + [0x1c59] = 0x24ae9, [0x1c5a] = 0x27190, [0x1c5b] = 0x4586, [0x1c5c] = 0x4585, + [0x1c5d] = 0x2721c, [0x1c5e] = 0x460e, [0x1c5f] = 0x27592, [0x1c60] = 0x278ae, + [0x1c61] = 0x27ba3, [0x1c62] = 0x4919, [0x1c63] = 0x291c9, [0x1c64] = 0x4bc0, + [0x1c65] = 0x299d8, [0x1c66] = 0x29d44, [0x1c67] = 0x2a224, [0x1c68] = 0x9ef8, + [0x1c69] = 0x9f3a, [0x1c6a] = 0x9f7d, [0x1c6b] = 0x2a670, [0x1c6c] = 0x2a6d3, + [0x1c6d] = 0x400d, [0x1c6e] = 0x4c16, [0x1c6f] = 0x2a4c3, [0x1c70] = 0x4da9, + [0x1c71] = 0x4daa, [0x1c72] = 0x4085, [0x1c73] = 0x25e21, [0x1c74] = 0x26aca, + [0x1c75] = 0x2759c, [0x1c76] = 0x29c73, [0x1c77] = 0x2a386, [0x1c78] = 0x2a5c1, + [0x1c79] = 0x29c09, [0x1c7a] = 0x9f96, [0x1c7b] = 0x2a6d5, [0x1c7c] = 0x4bc2, + [0x1c7d] = 0x4c31, [0x1c7e] = 0x4d11, [0x1c7f] = 0x4dab, [0x1c80] = 0x4c9c, + [0x1c81] = 0x291d4, +}; + +/* The following table contains no hole and is therefore compact. Nice + work compared with the chaos of other character sets (or plane 1). + + The table can be generated using + + egrep '^0x5' CNS11643.TXT | + awk '{print $1, $2}' | perl tab.pl + + where tab.pl is: + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + $n=0; + while (<>) { + local($cns, $ucs4, %rest) = split; + local($u)=hex($ucs4); + local($c)=hex($cns)-0x52121; + printf ("\n ") if ($n % 4 eq 0); + ++$n; + printf (" [0x%04x] = 0x%04x,", + int($c / 256) * 94 + ($c & 0xff), $u); + } + printf ("\n"); + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +*/ +const uint32_t __cns11643l5_to_ucs4_tab[] = +{ + [0x0000] = 0x200d1, [0x0001] = 0x200cb, [0x0002] = 0x200c9, [0x0003] = 0x2010c, + [0x0004] = 0x20000, [0x0005] = 0x20087, [0x0006] = 0x2010d, [0x0007] = 0x2010f, + [0x0009] = 0x22398, [0x000a] = 0x200d2, [0x000b] = 0x20111, [0x000c] = 0x2007e, + [0x000d] = 0x20ad3, [0x000e] = 0x21552, [0x000f] = 0x21cfe, [0x0010] = 0x225a9, + [0x0011] = 0x23942, [0x0012] = 0x20009, [0x0013] = 0x200d6, [0x0014] = 0x204dd, + [0x0015] = 0x204dc, [0x0016] = 0x20502, [0x0017] = 0x20573, [0x0018] = 0x20676, + [0x0019] = 0x206a7, [0x001a] = 0x206a8, [0x001b] = 0x20833, [0x001c] = 0x208cc, + [0x001d] = 0x20a0d, [0x001e] = 0x20a2c, [0x001f] = 0x20b1b, [0x0020] = 0x355a, + [0x0021] = 0x20b1d, [0x0022] = 0x20b99, [0x0023] = 0x2123e, [0x0024] = 0x21d2d, + [0x0025] = 0x21d2f, [0x0026] = 0x22399, /* [0x0027] = 0x233b3, */ [0x0027] = 0x6729, + [0x0028] = 0x239b6, [0x0029] = 0x23b1b, [0x002a] = 0x244ef, [0x002b] = 0x248e9, + [0x002c] = 0x20014, [0x002d] = 0x20094, [0x002e] = 0x200e1, [0x002f] = 0x20506, + [0x0030] = 0x2054a, [0x0031] = 0x20544, [0x0032] = 0x20631, [0x0033] = 0x2067a, + [0x0034] = 0x206ad, [0x0035] = 0x206ae, [0x0036] = 0x206b1, [0x0037] = 0x20838, + [0x0038] = 0x20837, [0x0039] = 0x2097d, [0x003a] = 0x2097e, [0x003b] = 0x20a2d, + [0x003c] = 0x20a32, [0x003d] = 0x20b23, [0x003e] = 0x20b26, [0x0040] = 0x20ba0, + [0x0041] = 0x216a8, [0x0042] = 0x2193f, [0x0043] = 0x219bc, [0x0044] = 0x21bc4, + [0x0045] = 0x21d3b, [0x0046] = 0x22019, [0x0047] = 0x22018, [0x0048] = 0x221b3, + [0x0049] = 0x223aa, [0x004a] = 0x224be, [0x004b] = 0x225ac, [0x004c] = 0x22a25, + [0x004d] = 0x22a66, [0x004e] = 0x22a6b, [0x004f] = 0x23943, [0x0050] = 0x239b5, + [0x0051] = 0x23aec, [0x0052] = 0x23c76, [0x0053] = 0x3cbc, [0x0054] = 0x24614, + [0x0055] = 0x215dc, [0x0056] = 0x2471c, [0x0057] = 0x2471d, [0x0058] = 0x264d0, + [0x0059] = 0x26612, [0x005a] = 0x26af3, [0x005b] = 0x28669, [0x005c] = 0x49b9, + [0x005d] = 0x28e11, [0x005e] = 0x28e15, [0x005f] = 0x28e10, [0x0060] = 0x28e13, + [0x0061] = 0x200a4, [0x0062] = 0x200a5, [0x0063] = 0x201d0, [0x0064] = 0x201ba, + [0x0065] = 0x201cb, [0x0066] = 0x2057b, [0x0067] = 0x20686, [0x0068] = 0x206bb, + [0x0069] = 0x206ba, [0x006a] = 0x206c3, [0x006b] = 0x206b9, [0x006c] = 0x206c0, + [0x006d] = 0x34de, [0x006e] = 0x20839, [0x006f] = 0x2083b, [0x0070] = 0x20841, + [0x0071] = 0x208d1, [0x0072] = 0x208cf, [0x0073] = 0x208d2, [0x0074] = 0x2092e, + [0x0075] = 0x2096e, [0x0076] = 0x2098c, [0x0077] = 0x20988, [0x0078] = 0x20a35, + [0x0079] = 0x3543, [0x007a] = 0x20a3a, [0x007b] = 0x20a3b, [0x007c] = 0x20a38, + [0x007d] = 0x20a39, [0x007e] = 0x20b2e, [0x007f] = 0x20b2c, [0x0080] = 0x20bc8, + [0x0081] = 0x20bb5, [0x0082] = 0x20bad, [0x0083] = 0x20bb0, [0x0084] = 0x20bab, + [0x0085] = 0x211b3, [0x0086] = 0x211a9, [0x0087] = 0x216bb, [0x0088] = 0x216b9, + [0x0089] = 0x21b5a, [0x008a] = 0x21bcd, [0x008b] = 0x21c2b, [0x008c] = 0x21d05, + [0x008d] = 0x37ac, [0x008e] = 0x37aa, [0x008f] = 0x21d51, [0x0090] = 0x21d4b, + [0x0091] = 0x21fea, [0x0092] = 0x21fed, [0x0093] = 0x22036, [0x0094] = 0x22062, + [0x0095] = 0x22056, [0x0096] = 0x22055, [0x0097] = 0x22064, [0x0098] = 0x22058, + [0x0099] = 0x5e07, [0x009a] = 0x221da, [0x009b] = 0x221d8, [0x009c] = 0x223ad, + [0x009d] = 0x223ab, [0x009e] = 0x224c0, [0x009f] = 0x224c3, [0x00a0] = 0x225b3, + [0x00a1] = 0x225b7, [0x00a2] = 0x225ba, [0x00a3] = 0x5fcb, [0x00a4] = 0x38fe, + [0x00a5] = 0x225c7, [0x00a6] = 0x225b5, [0x00a7] = 0x2298e, [0x00a8] = 0x22a73, + [0x00a9] = 0x22a6c, [0x00aa] = 0x22a74, [0x00ac] = 0x22a72, [0x00ad] = 0x22a71, + [0x00ae] = 0x22a82, [0x00af] = 0x22a70, [0x00b0] = 0x2313f, [0x00b1] = 0x233ba, + [0x00b2] = 0x233b8, [0x00b3] = 0x239b7, [0x00b4] = 0x24723, [0x00b5] = 0x24721, + [0x00b6] = 0x2472b, [0x00b7] = 0x24726, [0x00b8] = 0x24722, [0x00b9] = 0x24d25, + [0x00ba] = 0x250e4, [0x00bb] = 0x25415, [0x00bc] = 0x264e4, [0x00bd] = 0x26633, + [0x00be] = 0x2662a, [0x00bf] = 0x26632, [0x00c0] = 0x26629, [0x00c1] = 0x26afb, + [0x00c2] = 0x2795b, [0x00c3] = 0x2795c, [0x00c4] = 0x27c28, [0x00c5] = 0x2866f, + [0x00c6] = 0x2866d, [0x00c7] = 0x2866b, [0x00c8] = 0x2866e, [0x00c9] = 0x28e16, + [0x00ca] = 0x20022, [0x00cb] = 0x20116, [0x00cc] = 0x20148, [0x00cd] = 0x201d8, + [0x00ce] = 0x20200, [0x00cf] = 0x3441, [0x00d0] = 0x20480, [0x00d1] = 0x204e4, + [0x00d2] = 0x34b4, [0x00d3] = 0x204e7, [0x00d4] = 0x2050c, [0x00d5] = 0x20553, + [0x00d6] = 0x205b7, [0x00d7] = 0x20ae8, [0x00d8] = 0x206d1, [0x00d9] = 0x206e5, + [0x00da] = 0x206d8, [0x00db] = 0x206d6, [0x00dc] = 0x206da, [0x00dd] = 0x206d9, + [0x00de] = 0x206d5, [0x00df] = 0x206e6, [0x00e0] = 0x206d4, [0x00e1] = 0x206d3, + [0x00e2] = 0x20844, [0x00e3] = 0x208d6, [0x00e4] = 0x208d7, [0x00e5] = 0x20913, + [0x00e7] = 0x20970, [0x00e8] = 0x20992, [0x00e9] = 0x209db, [0x00ea] = 0x209da, + [0x00eb] = 0x20a41, [0x00ec] = 0x20a43, [0x00ed] = 0x20b33, [0x00ee] = 0x20bf6, + [0x00ef] = 0x20bd4, [0x00f0] = 0x20bdd, [0x00f1] = 0x20bd0, [0x00f2] = 0x20c04, + [0x00f3] = 0x20bd9, [0x00f4] = 0x20bdb, [0x00f5] = 0x20c05, [0x00f6] = 0x20bd3, + [0x00f7] = 0x20be1, [0x00f8] = 0x21280, [0x00f9] = 0x21277, [0x00fa] = 0x21281, + [0x00fb] = 0x21282, [0x00fc] = 0x21283, [0x00fe] = 0x21561, [0x00ff] = 0x21560, + [0x0100] = 0x216d8, [0x0101] = 0x216d6, [0x0102] = 0x216d7, [0x0103] = 0x24605, + [0x0104] = 0x2194d, [0x0105] = 0x21948, [0x0106] = 0x21bd6, [0x0107] = 0x21bcf, + [0x0108] = 0x21bd9, [0x0109] = 0x21bd8, [0x010a] = 0x21c3d, [0x010b] = 0x37b3, + [0x010c] = 0x21d54, [0x010d] = 0x21d5b, [0x010e] = 0x21d5c, [0x010f] = 0x37b4, + [0x0110] = 0x21d59, [0x0111] = 0x21d58, [0x0112] = 0x21d5a, [0x0113] = 0x21d55, + [0x0114] = 0x21d56, [0x0115] = 0x21d82, [0x0116] = 0x21ff0, [0x0117] = 0x2201c, + [0x0118] = 0x2206a, [0x0119] = 0x22069, [0x011a] = 0x22071, [0x011b] = 0x22067, + [0x011c] = 0x2206c, [0x011d] = 0x2206e, [0x011e] = 0x22079, [0x011f] = 0x2218b, + [0x0120] = 0x221b8, [0x0121] = 0x221e7, [0x0122] = 0x221e8, [0x0123] = 0x221e4, + [0x0124] = 0x221e6, [0x0125] = 0x221e5, [0x0126] = 0x221f0, [0x0127] = 0x22383, + [0x0128] = 0x223b7, [0x0129] = 0x223bb, [0x012a] = 0x223b9, [0x012b] = 0x223c5, + [0x012c] = 0x22453, [0x012d] = 0x224c4, [0x012e] = 0x224c6, [0x012f] = 0x224cb, + [0x0130] = 0x225c8, [0x0132] = 0x225c9, [0x0133] = 0x225db, [0x0134] = 0x22994, + [0x0135] = 0x22a95, [0x0136] = 0x22a88, [0x0137] = 0x22a8d, [0x0138] = 0x22eec, + [0x0139] = 0x22eee, [0x013a] = 0x22ef1, [0x013b] = 0x2312e, [0x013c] = 0x23149, + [0x013d] = 0x2335f, [0x013e] = 0x233d1, [0x013f] = 0x233cb, [0x0140] = 0x23885, + [0x0141] = 0x3c1d, [0x0142] = 0x2394a, [0x0143] = 0x23947, [0x0144] = 0x2394b, + [0x0145] = 0x239bb, [0x0146] = 0x239c4, [0x0147] = 0x3c7c, [0x0148] = 0x23b02, + [0x0149] = 0x23c82, [0x014a] = 0x23c91, [0x014b] = 0x23c8f, [0x014c] = 0x23c92, + [0x014d] = 0x2418f, [0x014e] = 0x24191, [0x014f] = 0x241b4, [0x0150] = 0x24192, + [0x0151] = 0x244f4, [0x0152] = 0x245aa, [0x0153] = 0x24735, [0x0154] = 0x24737, + [0x0155] = 0x2473d, [0x0156] = 0x2473c, [0x0157] = 0x2472f, [0x0158] = 0x24730, + [0x0159] = 0x248f8, [0x015a] = 0x248ef, [0x015b] = 0x24b26, [0x015c] = 0x3f55, + [0x015d] = 0x24d26, [0x015e] = 0x24d27, [0x015f] = 0x24f41, [0x0160] = 0x24fc6, + [0x0161] = 0x24fc7, [0x0162] = 0x250eb, [0x0163] = 0x250e8, [0x0164] = 0x250ea, + [0x0165] = 0x2541a, [0x0166] = 0x25419, [0x0167] = 0x4126, [0x0168] = 0x25923, + [0x0169] = 0x25924, [0x016a] = 0x25e25, [0x016b] = 0x26635, [0x016c] = 0x26634, + [0x016d] = 0x26a07, [0x016e] = 0x2721d, [0x016f] = 0x277e1, [0x0170] = 0x27bab, + [0x0171] = 0x28460, [0x0172] = 0x28677, [0x0173] = 0x2867d, [0x0174] = 0x49bc, + [0x0175] = 0x28e1e, [0x0176] = 0x28e1a, [0x0177] = 0x28e1d, [0x0178] = 0x2006b, + [0x0179] = 0x2012d, [0x017a] = 0x2014c, [0x017b] = 0x2022a, [0x017c] = 0x344a, + [0x017d] = 0x20215, [0x017e] = 0x2022c, [0x017f] = 0x20206, [0x0180] = 0x20208, + [0x0181] = 0x2020a, [0x0182] = 0x344e, [0x0183] = 0x20556, [0x0184] = 0x20584, + [0x0185] = 0x34c9, [0x0186] = 0x205c6, [0x0187] = 0x206f5, [0x0188] = 0x20709, + [0x0189] = 0x206f8, [0x018a] = 0x206e8, [0x018b] = 0x206fb, [0x018c] = 0x206e9, + [0x018d] = 0x206f6, [0x018e] = 0x52b7, [0x018f] = 0x52b8, [0x0190] = 0x20852, + [0x0191] = 0x52b6, [0x0192] = 0x52ba, [0x0193] = 0x20854, [0x0194] = 0x20851, + [0x0195] = 0x20939, [0x0196] = 0x2093a, [0x0197] = 0x20998, [0x0198] = 0x20a4e, + [0x0199] = 0x357b, [0x019a] = 0x20c36, [0x019b] = 0x20c0c, [0x019c] = 0x20c10, + [0x019d] = 0x20c32, [0x019e] = 0x20c11, [0x019f] = 0x20c18, [0x01a0] = 0x20c1c, + [0x01a1] = 0x20c1a, [0x01a2] = 0x20c19, [0x01a3] = 0x20c0b, [0x01a4] = 0x20c0f, + [0x01a5] = 0x20c1d, [0x01a6] = 0x20c21, [0x01a7] = 0x20c13, [0x01a8] = 0x20c1b, + [0x01a9] = 0x20c15, [0x01aa] = 0x3620, [0x01ab] = 0x211d1, [0x01ac] = 0x211c8, + [0x01ad] = 0x2128d, [0x01ae] = 0x212b5, [0x01af] = 0x3689, [0x01b0] = 0x3695, + [0x01b1] = 0x215f8, [0x01b2] = 0x216e0, [0x01b3] = 0x216e1, [0x01b4] = 0x36be, + [0x01b5] = 0x216de, [0x01b6] = 0x216fe, [0x01b7] = 0x216dc, [0x01b8] = 0x21701, + [0x01b9] = 0x216fd, [0x01ba] = 0x21700, [0x01bb] = 0x219d7, [0x01bc] = 0x219d6, + [0x01bd] = 0x219d9, [0x01be] = 0x21b65, [0x01bf] = 0x21bd2, [0x01c0] = 0x21bdc, + [0x01c1] = 0x21be1, [0x01c2] = 0x21bde, [0x01c3] = 0x21c42, [0x01c4] = 0x21c4b, + [0x01c5] = 0x37c3, [0x01c6] = 0x21d8e, [0x01c7] = 0x21d91, [0x01c8] = 0x21d8b, + [0x01c9] = 0x21d90, [0x01ca] = 0x21d88, [0x01cb] = 0x21d89, [0x01cc] = 0x21d84, + [0x01cd] = 0x21daa, [0x01ce] = 0x2208d, [0x01cf] = 0x2208f, [0x01d0] = 0x2207d, + [0x01d1] = 0x2207f, [0x01d2] = 0x2207b, [0x01d3] = 0x22080, [0x01d4] = 0x2207e, + [0x01d5] = 0x22083, [0x01d6] = 0x22081, [0x01d7] = 0x22086, [0x01d8] = 0x2208a, + [0x01d9] = 0x221bd, [0x01da] = 0x221be, [0x01db] = 0x3877, [0x01dc] = 0x221f4, + [0x01dd] = 0x221f3, [0x01de] = 0x22202, [0x01df] = 0x221f6, [0x01e0] = 0x221f5, + [0x01e1] = 0x221f2, [0x01e2] = 0x22204, [0x01e3] = 0x2233d, [0x01e4] = 0x223c6, + [0x01e5] = 0x22489, [0x01e6] = 0x224d4, [0x01e7] = 0x224d6, [0x01e8] = 0x224d2, + [0x01e9] = 0x225fa, [0x01ea] = 0x22606, [0x01eb] = 0x2260c, [0x01ec] = 0x2260a, + [0x01ed] = 0x2260f, [0x01ee] = 0x22a2f, [0x01ef] = 0x39d4, [0x01f0] = 0x22ab7, + [0x01f1] = 0x22abe, [0x01f2] = 0x22abc, [0x01f3] = 0x22ae2, [0x01f4] = 0x22f06, + [0x01f5] = 0x22ef7, [0x01f6] = 0x22f07, [0x01f7] = 0x22ef6, [0x01f8] = 0x23b35, + [0x01f9] = 0x2315f, [0x01fa] = 0x23165, [0x01fb] = 0x23164, [0x01fc] = 0x23161, + [0x01fd] = 0x2315a, [0x01fe] = 0x2315d, [0x0200] = 0x233d7, [0x0201] = 0x233d5, + [0x0202] = 0x233de, [0x0203] = 0x233e1, [0x0204] = 0x233e0, [0x0205] = 0x233d9, + [0x0206] = 0x3b4c, [0x0207] = 0x233da, [0x0208] = 0x233df, [0x0209] = 0x233f6, + [0x020a] = 0x23403, [0x020b] = 0x3c20, [0x020c] = 0x23893, [0x020d] = 0x2388b, + [0x020e] = 0x23891, [0x020f] = 0x23892, [0x0210] = 0x2388a, [0x0211] = 0x23889, + [0x0212] = 0x2388f, [0x0213] = 0x23956, [0x0214] = 0x23959, [0x0215] = 0x239ca, + [0x0216] = 0x239cc, [0x0217] = 0x3c5b, [0x0218] = 0x239d0, [0x0219] = 0x239cd, + [0x021a] = 0x239d6, [0x021b] = 0x239cb, [0x021c] = 0x23a83, [0x021d] = 0x23a82, + [0x021e] = 0x23b06, [0x021f] = 0x23b2a, [0x0220] = 0x23b2c, [0x0221] = 0x23b2b, + [0x0222] = 0x23b29, [0x0223] = 0x23cbd, [0x0224] = 0x23cb3, [0x0225] = 0x23cbe, + [0x0226] = 0x23cc0, [0x0227] = 0x23cb5, [0x0228] = 0x23cb6, [0x0229] = 0x2419d, + [0x022a] = 0x2419f, [0x022b] = 0x24620, [0x022c] = 0x3e2d, [0x022d] = 0x2461e, + [0x022e] = 0x2461c, [0x022f] = 0x24632, [0x0230] = 0x2461f, [0x0231] = 0x2462b, + [0x0232] = 0x24621, [0x0233] = 0x24626, [0x0234] = 0x24624, [0x0235] = 0x2461d, + [0x0236] = 0x24627, [0x0237] = 0x2475b, [0x0238] = 0x24759, [0x0239] = 0x24780, + [0x023a] = 0x24755, [0x023b] = 0x24750, [0x023c] = 0x2475a, [0x023d] = 0x24756, + [0x023e] = 0x24763, [0x023f] = 0x24752, [0x0240] = 0x24758, [0x0241] = 0x3e63, + [0x0242] = 0x24739, [0x0243] = 0x248f9, [0x0244] = 0x24b28, [0x0245] = 0x3f18, + [0x0246] = 0x24bbc, [0x0247] = 0x24bd6, [0x0248] = 0x24c05, [0x0249] = 0x24c20, + [0x024a] = 0x3f74, [0x024b] = 0x24d33, [0x024c] = 0x24f46, [0x024d] = 0x24f42, + [0x024e] = 0x24f43, [0x024f] = 0x24f47, [0x0250] = 0x24fcb, [0x0251] = 0x25042, + [0x0252] = 0x25045, [0x0253] = 0x250fd, [0x0254] = 0x250f4, [0x0255] = 0x250f9, + [0x0256] = 0x250fa, [0x0257] = 0x2535e, [0x0258] = 0x2541d, [0x0259] = 0x4128, + [0x025a] = 0x25758, [0x025b] = 0x25755, [0x025c] = 0x25a57, [0x025d] = 0x25a58, + [0x025e] = 0x25ad9, [0x025f] = 0x25adc, [0x0260] = 0x25adb, [0x0261] = 0x25e27, + [0x0262] = 0x25f85, [0x0263] = 0x25f87, [0x0264] = 0x25f8a, [0x0265] = 0x2628b, + [0x0266] = 0x2634f, [0x0267] = 0x26530, [0x0268] = 0x2652f, [0x0269] = 0x26668, + [0x026a] = 0x26649, [0x026b] = 0x43da, [0x026c] = 0x26648, [0x026d] = 0x2663f, + [0x026e] = 0x2664b, [0x026f] = 0x2665c, [0x0270] = 0x26646, [0x0271] = 0x26640, + [0x0272] = 0x26a0d, [0x0273] = 0x26b1b, [0x0274] = 0x26b1d, [0x0275] = 0x26b17, + [0x0276] = 0x44a4, [0x0277] = 0x26b22, [0x0278] = 0x275a7, [0x0279] = 0x27608, + [0x027a] = 0x27806, [0x027b] = 0x2847d, [0x027c] = 0x488e, [0x027d] = 0x28463, + [0x027e] = 0x28464, [0x027f] = 0x2847f, [0x0280] = 0x2846b, [0x0281] = 0x2847c, + [0x0282] = 0x28468, [0x0283] = 0x28465, [0x0284] = 0x2846a, [0x0285] = 0x28698, + [0x0286] = 0x28699, [0x0287] = 0x286ae, [0x0288] = 0x28e2b, [0x0289] = 0x28e2d, + [0x028a] = 0x28e31, [0x028b] = 0x28e2e, [0x028c] = 0x28e2f, [0x028d] = 0x2006d, + [0x028e] = 0x20131, [0x028f] = 0x2022d, [0x0290] = 0x20239, [0x0291] = 0x20238, + [0x0292] = 0x345b, [0x0293] = 0x2023a, [0x0294] = 0x20235, [0x0295] = 0x20262, + [0x0296] = 0x204ea, [0x0297] = 0x204eb, [0x0298] = 0x20515, [0x0299] = 0x205cc, + [0x029a] = 0x205c8, [0x029b] = 0x205cd, [0x029c] = 0x205db, [0x029d] = 0x205cb, + [0x029e] = 0x20711, [0x029f] = 0x20726, [0x02a0] = 0x20862, [0x02a1] = 0x2085e, + [0x02a2] = 0x20861, [0x02a3] = 0x20941, [0x02a4] = 0x2093f, [0x02a5] = 0x20975, + [0x02a6] = 0x23965, [0x02a7] = 0x20b49, [0x02a8] = 0x209eb, [0x02a9] = 0x20a1a, + [0x02aa] = 0x20a57, [0x02ab] = 0x20c6b, [0x02ac] = 0x20ca9, [0x02ad] = 0x20c54, + [0x02ae] = 0x20c62, [0x02af] = 0x20caa, [0x02b0] = 0x20c58, [0x02b1] = 0x20c72, + [0x02b2] = 0x20c63, [0x02b3] = 0x20c73, [0x02b4] = 0x20c8b, [0x02b5] = 0x20c8c, + [0x02b6] = 0x20c5c, [0x02b7] = 0x20c51, [0x02b8] = 0x20c16, [0x02b9] = 0x20c60, + [0x02ba] = 0x20c61, [0x02bb] = 0x20c5e, [0x02bc] = 0x20c5d, [0x02bd] = 0x20c64, + [0x02be] = 0x20c53, [0x02bf] = 0x20c5f, [0x02c0] = 0x20c5b, [0x02c1] = 0x20c6e, + [0x02c2] = 0x20c55, [0x02c3] = 0x20c52, [0x02c4] = 0x20c68, [0x02c5] = 0x211d2, + [0x02c6] = 0x211d6, [0x02c7] = 0x211d3, [0x02c8] = 0x212b8, [0x02c9] = 0x212bb, + [0x02ca] = 0x212eb, [0x02cb] = 0x212e8, [0x02cc] = 0x212b6, [0x02cd] = 0x212ea, + [0x02ce] = 0x212e7, [0x02cf] = 0x212e9, [0x02d0] = 0x21591, [0x02d1] = 0x21610, + [0x02d2] = 0x2160e, [0x02d3] = 0x2160f, [0x02d4] = 0x2170b, [0x02d5] = 0x21703, + [0x02d6] = 0x2172b, [0x02d7] = 0x21709, [0x02d8] = 0x21728, [0x02d9] = 0x2172c, + [0x02da] = 0x21725, [0x02db] = 0x21727, [0x02dc] = 0x2170f, [0x02dd] = 0x219e9, + [0x02de] = 0x219ec, [0x02df] = 0x3753, [0x02e0] = 0x21b27, [0x02e1] = 0x21b73, + [0x02e2] = 0x21be2, [0x02e3] = 0x21be6, [0x02e5] = 0x21c61, [0x02e6] = 0x21c51, + [0x02e7] = 0x21d12, [0x02e8] = 0x21d0e, [0x02e9] = 0x21dad, [0x02ea] = 0x21daf, + [0x02eb] = 0x21db1, [0x02ec] = 0x21dd3, [0x02ed] = 0x22094, [0x02ee] = 0x22092, + [0x02ef] = 0x22090, [0x02f0] = 0x2209d, [0x02f1] = 0x22093, [0x02f2] = 0x22095, + [0x02f3] = 0x22098, [0x02f4] = 0x22097, [0x02f5] = 0x3880, [0x02f7] = 0x22207, + [0x02f8] = 0x2220b, [0x02f9] = 0x22208, [0x02fa] = 0x223d9, [0x02fb] = 0x223d5, + [0x02fc] = 0x224d7, [0x02fd] = 0x224df, [0x02fe] = 0x38dd, [0x02ff] = 0x224de, + [0x0300] = 0x224e3, [0x0301] = 0x224e2, [0x0302] = 0x38de, [0x0303] = 0x22647, + [0x0304] = 0x3922, [0x0305] = 0x2263d, [0x0306] = 0x22638, [0x0307] = 0x22a44, + [0x0308] = 0x22a3a, [0x0309] = 0x22ab8, [0x030a] = 0x22b2a, [0x030b] = 0x22b00, + [0x030c] = 0x22af3, [0x030d] = 0x22af2, [0x030e] = 0x22aeb, [0x030f] = 0x22afa, + [0x0310] = 0x22aed, [0x0311] = 0x22aec, [0x0312] = 0x22aff, [0x0313] = 0x22afb, + [0x0314] = 0x6306, [0x0315] = 0x22b4e, [0x0316] = 0x22aef, [0x0317] = 0x22af7, + [0x0318] = 0x22f10, [0x0319] = 0x22f11, [0x031a] = 0x22f0c, [0x031b] = 0x22f0b, + [0x031c] = 0x230dd, [0x031d] = 0x23130, [0x031e] = 0x3adb, [0x031f] = 0x2317a, + [0x0320] = 0x23177, [0x0321] = 0x23328, [0x0322] = 0x23327, [0x0323] = 0x23365, + [0x0324] = 0x2340e, [0x0325] = 0x2340b, [0x0326] = 0x23441, [0x0327] = 0x23413, + [0x0328] = 0x2340f, [0x0329] = 0x23412, [0x032a] = 0x23430, [0x032b] = 0x238a0, + [0x032c] = 0x238a3, [0x032d] = 0x2389e, [0x032e] = 0x23897, [0x032f] = 0x238a1, + [0x0330] = 0x2389d, [0x0331] = 0x2389b, [0x0332] = 0x23963, [0x0333] = 0x239e3, + [0x0334] = 0x239e4, [0x0335] = 0x239e6, [0x0336] = 0x239e7, [0x0337] = 0x239dd, + [0x0338] = 0x6b85, [0x0339] = 0x239ec, [0x033a] = 0x239e5, [0x033b] = 0x239f1, + [0x033c] = 0x23b3b, [0x033d] = 0x23b39, [0x033e] = 0x23b3a, [0x033f] = 0x23b3c, + [0x0340] = 0x23b3d, [0x0341] = 0x23b47, [0x0342] = 0x23b3f, [0x0343] = 0x23b44, + [0x0344] = 0x23c48, [0x0345] = 0x23c49, [0x0346] = 0x23c60, [0x0347] = 0x23ce3, + [0x0348] = 0x23ce9, [0x0349] = 0x23cf0, [0x034a] = 0x3cda, [0x034b] = 0x3cdb, + [0x034c] = 0x23cf2, [0x034d] = 0x23ced, [0x034e] = 0x23cec, [0x034f] = 0x23ce6, + [0x0350] = 0x23d16, [0x0351] = 0x3cd7, [0x0352] = 0x241bc, [0x0353] = 0x241be, + [0x0354] = 0x241c0, [0x0355] = 0x241e0, [0x0356] = 0x24500, [0x0357] = 0x24502, + [0x0358] = 0x244fe, [0x0359] = 0x2455e, [0x035a] = 0x245b3, [0x035b] = 0x245b7, + [0x035c] = 0x2463a, [0x035d] = 0x24639, [0x035e] = 0x2463e, [0x035f] = 0x24638, + [0x0360] = 0x2463d, [0x0361] = 0x2464f, [0x0362] = 0x2476e, [0x0363] = 0x2475f, + [0x0364] = 0x24781, [0x0365] = 0x24782, [0x0366] = 0x24771, [0x0367] = 0x2477b, + [0x0368] = 0x24779, [0x0369] = 0x24777, [0x036a] = 0x24773, [0x036b] = 0x2476f, + [0x036c] = 0x24797, [0x036d] = 0x2477e, [0x036e] = 0x248fc, [0x036f] = 0x24911, + [0x0370] = 0x24932, [0x0371] = 0x24931, [0x0372] = 0x24910, [0x0373] = 0x24aec, + [0x0374] = 0x24aeb, [0x0375] = 0x24b2c, [0x0376] = 0x24b2d, [0x0377] = 0x24bda, + [0x0378] = 0x24c2e, [0x0379] = 0x24c2c, [0x037a] = 0x24c2a, [0x037b] = 0x24c33, + [0x037c] = 0x24c4b, [0x037d] = 0x24d18, [0x037e] = 0x24d42, [0x037f] = 0x24d3b, + [0x0380] = 0x24d3f, [0x0381] = 0x24d41, [0x0382] = 0x24d43, [0x0383] = 0x24d3c, + [0x0384] = 0x24f4c, [0x0385] = 0x24f4a, [0x0386] = 0x24f49, [0x0387] = 0x24f56, + [0x0388] = 0x24fcf, [0x0389] = 0x25047, [0x038a] = 0x25048, [0x038b] = 0x25046, + [0x038c] = 0x2511b, [0x038d] = 0x25111, [0x038e] = 0x25114, [0x038f] = 0x2511d, + [0x0390] = 0x25117, [0x0391] = 0x2511e, [0x0392] = 0x2510b, [0x0393] = 0x2511c, + [0x0394] = 0x25112, [0x0395] = 0x25116, [0x0396] = 0x2510d, [0x0397] = 0x25115, + [0x0398] = 0x25113, [0x0399] = 0x25118, [0x039a] = 0x401a, [0x039b] = 0x253ac, + [0x039c] = 0x25444, [0x039d] = 0x2542c, [0x039e] = 0x25445, [0x039f] = 0x25766, + [0x03a0] = 0x2576e, [0x03a1] = 0x25765, [0x03a2] = 0x25768, [0x03a3] = 0x25784, + [0x03a4] = 0x25938, [0x03a5] = 0x2593b, [0x03a6] = 0x2593a, [0x03a7] = 0x2593f, + [0x03a8] = 0x25adf, [0x03a9] = 0x25add, [0x03aa] = 0x25ade, [0x03ab] = 0x25ae2, + [0x03ac] = 0x41d6, [0x03ad] = 0x25e2c, [0x03ae] = 0x25e2f, [0x03af] = 0x25f8f, + [0x03b0] = 0x25f90, [0x03b1] = 0x25f8c, [0x03b2] = 0x25f93, [0x03b3] = 0x26225, + [0x03b4] = 0x26288, [0x03b5] = 0x262a7, [0x03b6] = 0x263f7, [0x03b7] = 0x264bb, + [0x03b8] = 0x26538, [0x03b9] = 0x26539, [0x03ba] = 0x26537, [0x03bb] = 0x26614, + [0x03bc] = 0x2666e, [0x03bd] = 0x2667b, [0x03be] = 0x43de, [0x03bf] = 0x2666c, + [0x03c0] = 0x2667f, [0x03c1] = 0x26678, [0x03c2] = 0x2667a, [0x03c3] = 0x2666f, + [0x03c4] = 0x43e5, [0x03c5] = 0x268fe, [0x03c6] = 0x26b48, [0x03c7] = 0x26b4b, + [0x03c8] = 0x26b41, [0x03c9] = 0x26b49, [0x03ca] = 0x26b3b, [0x03cb] = 0x2722d, + [0x03cc] = 0x275e3, [0x03cd] = 0x2761a, [0x03ce] = 0x2760d, [0x03cf] = 0x27613, + [0x03d0] = 0x27611, [0x03d1] = 0x2761c, [0x03d2] = 0x4672, [0x03d3] = 0x278b5, + [0x03d4] = 0x46af, [0x03d5] = 0x27c29, [0x03d6] = 0x27ca1, [0x03d7] = 0x27d24, + [0x03d8] = 0x27fbb, [0x03d9] = 0x282a1, [0x03da] = 0x28483, [0x03db] = 0x2848d, + [0x03dc] = 0x28487, [0x03dd] = 0x28485, [0x03de] = 0x2848a, [0x03df] = 0x284a3, + [0x03e0] = 0x28489, [0x03e1] = 0x28484, [0x03e2] = 0x284a2, [0x03e3] = 0x286b1, + [0x03e4] = 0x286b0, [0x03e5] = 0x286af, [0x03e6] = 0x286b6, [0x03e7] = 0x286c9, + [0x03e8] = 0x286ca, [0x03e9] = 0x286c8, [0x03ea] = 0x286b4, [0x03eb] = 0x28c59, + [0x03ec] = 0x28cc9, [0x03ed] = 0x28e41, [0x03ee] = 0x28e4c, [0x03ef] = 0x49c4, + [0x03f0] = 0x28e45, [0x03f1] = 0x28e5a, [0x03f2] = 0x200b9, [0x03f3] = 0x20294, + [0x03f4] = 0x2026e, [0x03f5] = 0x202a2, [0x03f6] = 0x20267, [0x03f7] = 0x3463, + [0x03f8] = 0x202a3, [0x03f9] = 0x20276, [0x03fa] = 0x2026c, [0x03fb] = 0x20264, + [0x03fc] = 0x202a5, [0x03fd] = 0x20230, [0x03fe] = 0x202a6, [0x03ff] = 0x20269, + [0x0400] = 0x202a4, [0x0401] = 0x20490, [0x0402] = 0x2055f, [0x0403] = 0x20560, + [0x0404] = 0x205da, [0x0405] = 0x205d8, [0x0406] = 0x205dd, [0x0407] = 0x34ec, + [0x0408] = 0x20759, [0x0409] = 0x2075b, [0x040a] = 0x2075a, [0x040b] = 0x20739, + [0x040c] = 0x20734, [0x040d] = 0x20744, [0x040e] = 0x20733, [0x040f] = 0x2073c, + [0x0410] = 0x20758, [0x0411] = 0x2076a, [0x0412] = 0x2086f, [0x0413] = 0x20872, + [0x0414] = 0x20870, [0x0415] = 0x20871, [0x0416] = 0x2086e, [0x0417] = 0x208f0, + [0x0418] = 0x208eb, [0x0419] = 0x20949, [0x041a] = 0x2094c, [0x041b] = 0x209f5, + [0x041c] = 0x20a20, [0x041d] = 0x20a6a, [0x041e] = 0x20a72, [0x041f] = 0x20b4b, + [0x0420] = 0x20b5d, [0x0421] = 0x20c50, [0x0422] = 0x20cf9, [0x0423] = 0x20cfa, + [0x0424] = 0x20cfb, [0x0425] = 0x20d23, [0x0426] = 0x20cb7, [0x0427] = 0x20d22, + [0x0428] = 0x20cb5, [0x0429] = 0x20cc4, [0x042a] = 0x20cb4, [0x042b] = 0x20cef, + [0x042c] = 0x3598, [0x042d] = 0x20ccd, [0x042e] = 0x20cf0, [0x042f] = 0x20cb8, + [0x0430] = 0x20ccb, [0x0431] = 0x20cf1, [0x0432] = 0x20cba, [0x0433] = 0x20d03, + [0x0434] = 0x20cf8, [0x0435] = 0x20cb6, [0x0436] = 0x20cbc, [0x0437] = 0x20cb3, + [0x0438] = 0x20d21, [0x0439] = 0x20cf7, [0x043a] = 0x20cc2, [0x043b] = 0x20cbe, + [0x043c] = 0x20cc9, [0x043d] = 0x20cbd, [0x043e] = 0x20cce, [0x043f] = 0x20cb9, + [0x0440] = 0x20cc7, [0x0441] = 0x20cca, [0x0442] = 0x20ccc, [0x0443] = 0x20d26, + [0x0444] = 0x211e4, [0x0445] = 0x211e0, [0x0446] = 0x211f0, [0x0447] = 0x212ec, + [0x0448] = 0x21324, [0x0449] = 0x21318, [0x044a] = 0x2132f, [0x044b] = 0x21325, + [0x044c] = 0x21528, [0x044d] = 0x21522, [0x044e] = 0x2156a, [0x044f] = 0x20157, + [0x0450] = 0x21594, [0x0451] = 0x21592, [0x0452] = 0x2159c, [0x0453] = 0x21622, + [0x0454] = 0x21630, [0x0455] = 0x2161d, [0x0456] = 0x21623, [0x0457] = 0x21735, + [0x0458] = 0x21733, [0x0459] = 0x2172f, [0x045a] = 0x2174d, [0x045b] = 0x21731, + [0x045c] = 0x2175b, [0x045d] = 0x2175a, [0x045e] = 0x21732, [0x045f] = 0x2175c, + [0x0460] = 0x21759, [0x0461] = 0x2175d, [0x0462] = 0x21969, [0x0463] = 0x2196d, + [0x0464] = 0x22232, [0x0465] = 0x3758, [0x0466] = 0x21a0a, [0x0467] = 0x21a20, + [0x0468] = 0x21a1f, [0x0469] = 0x21a0d, [0x046a] = 0x21be8, [0x046b] = 0x21bec, + [0x046c] = 0x21c77, [0x046d] = 0x21c70, [0x046e] = 0x21c71, [0x046f] = 0x21df8, + [0x0470] = 0x21dd6, [0x0471] = 0x21dd9, [0x0472] = 0x21dde, [0x0473] = 0x21dd5, + [0x0474] = 0x21de1, [0x0475] = 0x37d3, [0x0476] = 0x21de2, [0x0477] = 0x21ddd, + [0x0478] = 0x21de0, [0x0479] = 0x21e0e, [0x047a] = 0x21e08, [0x047b] = 0x21ddc, + [0x047c] = 0x21e0a, [0x047d] = 0x21e0c, [0x047e] = 0x220b4, [0x047f] = 0x220b1, + [0x0480] = 0x220b6, [0x0481] = 0x220bc, [0x0482] = 0x2221d, [0x0483] = 0x22224, + [0x0484] = 0x22219, [0x0485] = 0x2221b, [0x0486] = 0x22222, [0x0487] = 0x2221a, + [0x0488] = 0x2221c, [0x0489] = 0x22221, [0x048a] = 0x223e6, [0x048b] = 0x223e4, + [0x048c] = 0x223e7, [0x048d] = 0x223ea, [0x048e] = 0x38e2, [0x0490] = 0x224f0, + [0x0491] = 0x224f5, [0x0492] = 0x224ef, [0x0493] = 0x22642, [0x0494] = 0x2266e, + [0x0495] = 0x2263c, [0x0496] = 0x22697, [0x0497] = 0x2268c, [0x0498] = 0x22681, + [0x0499] = 0x22671, [0x049a] = 0x226ce, [0x049b] = 0x226ba, [0x049c] = 0x2267a, + [0x049d] = 0x2267e, [0x049e] = 0x3954, [0x049f] = 0x22672, [0x04a0] = 0x226bb, + [0x04a1] = 0x392f, [0x04a2] = 0x22673, [0x04a3] = 0x22682, [0x04a4] = 0x39b6, + [0x04a5] = 0x229ba, [0x04a6] = 0x229b8, [0x04a7] = 0x22a4b, [0x04a8] = 0x22a48, + [0x04a9] = 0x22b2b, [0x04aa] = 0x22af4, [0x04ab] = 0x22b2c, [0x04ac] = 0x22b42, + [0x04ad] = 0x22b48, [0x04ae] = 0x22b44, [0x04af] = 0x22b45, [0x04b0] = 0x22b3c, + [0x04b1] = 0x22b37, [0x04b2] = 0x22b33, [0x04b3] = 0x22b41, [0x04b4] = 0x22b32, + [0x04b5] = 0x22b87, [0x04b6] = 0x22f27, [0x04b7] = 0x22f23, [0x04b8] = 0x22f2d, + [0x04b9] = 0x22f1f, [0x04ba] = 0x22f2c, [0x04bb] = 0x22f28, [0x04bc] = 0x23075, + [0x04bd] = 0x23074, [0x04be] = 0x230e7, [0x04bf] = 0x23132, [0x04c0] = 0x23131, + [0x04c1] = 0x23199, [0x04c2] = 0x23196, [0x04c3] = 0x23198, [0x04c4] = 0x2319d, + [0x04c5] = 0x23192, [0x04c6] = 0x23194, [0x04c7] = 0x23195, [0x04c8] = 0x23197, + [0x04c9] = 0x266b9, [0x04ca] = 0x3b35, [0x04cb] = 0x23411, [0x04cc] = 0x2343b, + [0x04cd] = 0x23479, [0x04ce] = 0x23442, [0x04cf] = 0x23443, [0x04d0] = 0x3b5d, + [0x04d1] = 0x23478, [0x04d2] = 0x238ac, [0x04d3] = 0x3c29, [0x04d4] = 0x238b1, + [0x04d5] = 0x238b4, [0x04d6] = 0x238b3, [0x04d7] = 0x238af, [0x04d8] = 0x238aa, + [0x04d9] = 0x238b2, [0x04da] = 0x23968, [0x04db] = 0x239f2, [0x04dc] = 0x239fe, + [0x04dd] = 0x239f8, [0x04de] = 0x239f9, [0x04df] = 0x239ff, [0x04e0] = 0x239f5, + [0x04e1] = 0x239f7, [0x04e2] = 0x239fd, [0x04e3] = 0x23a00, [0x04e4] = 0x23a88, + [0x04e5] = 0x23b6e, [0x04e6] = 0x23b5d, [0x04e7] = 0x23b63, [0x04e8] = 0x23b60, + [0x04e9] = 0x23c61, [0x04ea] = 0x23d37, [0x04eb] = 0x23d71, [0x04ec] = 0x23d23, + [0x04ed] = 0x23d22, [0x04ee] = 0x23d1f, [0x04ef] = 0x23d25, [0x04f0] = 0x241fd, + [0x04f1] = 0x24211, [0x04f2] = 0x24223, [0x04f3] = 0x241f0, [0x04f4] = 0x241ef, + [0x04f5] = 0x2450e, [0x04f6] = 0x2450c, [0x04f7] = 0x245ba, [0x04f8] = 0x3e1f, + [0x04f9] = 0x24652, [0x04fa] = 0x24655, [0x04fb] = 0x24653, [0x04fc] = 0x24654, + [0x04fd] = 0x24651, [0x04fe] = 0x24658, [0x04ff] = 0x247b0, [0x0500] = 0x2479f, + [0x0501] = 0x3e72, [0x0502] = 0x247a1, [0x0503] = 0x2479a, [0x0504] = 0x247be, + [0x0505] = 0x247a0, [0x0506] = 0x24937, [0x0507] = 0x3f0b, [0x0508] = 0x24af1, + [0x0509] = 0x24af2, [0x050a] = 0x24b34, [0x050b] = 0x24b37, [0x050c] = 0x24b35, + [0x050d] = 0x2238c, [0x050e] = 0x24bdf, [0x050f] = 0x24c4c, [0x0510] = 0x24c4e, + [0x0511] = 0x24c64, [0x0512] = 0x24c63, [0x0513] = 0x24c36, [0x0514] = 0x24d58, + [0x0515] = 0x24d68, [0x0516] = 0x24d5b, [0x0517] = 0x24d5f, [0x0518] = 0x24d59, + [0x0519] = 0x24d65, [0x051a] = 0x24d60, [0x051b] = 0x24d5e, [0x051c] = 0x24fd5, + [0x051d] = 0x24fd6, [0x051e] = 0x2504e, [0x051f] = 0x25052, [0x0520] = 0x25135, + [0x0521] = 0x25139, [0x0522] = 0x25158, [0x0523] = 0x25141, [0x0524] = 0x25157, + [0x0525] = 0x25138, [0x0526] = 0x2513d, [0x0527] = 0x25132, [0x0528] = 0x25144, + [0x052a] = 0x25363, [0x052b] = 0x25362, [0x052c] = 0x253b8, [0x052d] = 0x253b0, + [0x052e] = 0x253b1, [0x052f] = 0x2544d, [0x0530] = 0x25463, [0x0531] = 0x25470, + [0x0532] = 0x2544b, [0x0533] = 0x2544f, [0x0534] = 0x2544e, [0x0535] = 0x25453, + [0x0536] = 0x25447, [0x0537] = 0x40a2, [0x0538] = 0x25454, [0x0539] = 0x25452, + [0x053a] = 0x25459, [0x053b] = 0x2547e, [0x053c] = 0x2562b, [0x053d] = 0x2562e, + [0x053e] = 0x2577f, [0x053f] = 0x2577e, [0x0540] = 0x25781, [0x0541] = 0x25783, + [0x0542] = 0x25947, [0x0543] = 0x25954, [0x0544] = 0x2594d, [0x0545] = 0x2594c, + [0x0546] = 0x2594b, [0x0547] = 0x25957, [0x0548] = 0x25a65, [0x0549] = 0x25a64, + [0x054a] = 0x25a61, [0x054b] = 0x25a62, [0x054c] = 0x25af0, [0x054d] = 0x25af3, + [0x054e] = 0x25af9, [0x054f] = 0x25af4, [0x0550] = 0x25af5, [0x0551] = 0x25aef, + [0x0552] = 0x25af8, [0x0553] = 0x25afc, [0x0554] = 0x25af7, [0x0555] = 0x25afd, + [0x0556] = 0x25b17, [0x0557] = 0x25e34, [0x0558] = 0x25e36, [0x0559] = 0x25e38, + [0x055a] = 0x25faf, [0x055b] = 0x25fae, [0x055c] = 0x25fac, [0x055d] = 0x25fa2, + [0x055e] = 0x26228, [0x055f] = 0x22ec2, [0x0560] = 0x2629c, [0x0561] = 0x262b3, + [0x0562] = 0x26290, [0x0563] = 0x26406, [0x0564] = 0x26404, [0x0565] = 0x2640b, + [0x0566] = 0x26405, [0x0567] = 0x26540, [0x0568] = 0x2654f, [0x0569] = 0x266ab, + [0x056a] = 0x2669d, [0x056b] = 0x266b8, [0x056c] = 0x266b2, [0x056d] = 0x266d2, + [0x056e] = 0x266cf, [0x056f] = 0x266a2, [0x0570] = 0x43ec, [0x0571] = 0x266a5, + [0x0572] = 0x266a9, [0x0573] = 0x266a7, [0x0574] = 0x266d0, [0x0575] = 0x26902, + [0x0576] = 0x269cf, [0x0577] = 0x269d0, [0x0578] = 0x26a16, [0x0579] = 0x26a19, + [0x057a] = 0x26b75, [0x057b] = 0x26b71, [0x057c] = 0x26b91, [0x057d] = 0x26b72, + [0x057e] = 0x26b8e, [0x057f] = 0x26b6d, [0x0580] = 0x26b88, [0x0581] = 0x26b73, + [0x0582] = 0x44bb, [0x0583] = 0x26b81, [0x0584] = 0x26b76, [0x0585] = 0x26b7b, + [0x0586] = 0x26b7f, [0x0587] = 0x26b90, [0x0588] = 0x26b78, [0x0589] = 0x2724b, + [0x058a] = 0x27248, [0x058b] = 0x2725b, [0x058c] = 0x27251, [0x058d] = 0x2723d, + [0x058e] = 0x27240, [0x058f] = 0x27246, [0x0590] = 0x2724d, [0x0591] = 0x2723b, + [0x0592] = 0x2724a, [0x0593] = 0x27241, [0x0594] = 0x2723e, [0x0595] = 0x2724e, + [0x0596] = 0x275ac, [0x0597] = 0x275e6, [0x0598] = 0x275e9, [0x0599] = 0x27629, + [0x059a] = 0x4621, [0x059b] = 0x27633, [0x059c] = 0x2762e, [0x059d] = 0x2761e, + [0x059e] = 0x461f, [0x05a0] = 0x27622, [0x05a1] = 0x27627, [0x05a2] = 0x277e7, + [0x05a3] = 0x2780b, [0x05a4] = 0x27966, [0x05a5] = 0x27bad, [0x05a6] = 0x27bae, + [0x05a7] = 0x8c38, [0x05a8] = 0x27c2b, [0x05a9] = 0x27c2a, [0x05aa] = 0x27d2c, + [0x05ab] = 0x27d2d, [0x05ac] = 0x4791, [0x05ad] = 0x4796, [0x05ae] = 0x27e8f, + [0x05af] = 0x27e93, [0x05b0] = 0x27fc6, [0x05b1] = 0x27fc5, [0x05b2] = 0x28215, + [0x05b3] = 0x28213, [0x05b4] = 0x282b1, [0x05b5] = 0x282a9, [0x05b7] = 0x284a8, + [0x05b8] = 0x284ab, [0x05b9] = 0x284be, [0x05ba] = 0x284ac, [0x05bb] = 0x284a9, + [0x05bc] = 0x284a6, [0x05bd] = 0x284c1, [0x05be] = 0x286cc, [0x05bf] = 0x286d1, + [0x05c0] = 0x286d3, [0x05c1] = 0x286e4, [0x05c2] = 0x286cb, [0x05c3] = 0x286e1, + [0x05c4] = 0x286d2, [0x05c5] = 0x286e3, [0x05c6] = 0x286cf, [0x05c7] = 0x286d0, + [0x05c8] = 0x286e5, [0x05c9] = 0x2870e, [0x05ca] = 0x28ccc, [0x05cb] = 0x28cca, + [0x05cc] = 0x28ccb, [0x05cd] = 0x28e5c, [0x05ce] = 0x28e61, [0x05cf] = 0x28e5d, + [0x05d0] = 0x28e59, [0x05d1] = 0x29077, [0x05d2] = 0x29684, [0x05d3] = 0x20041, + [0x05d4] = 0x200fd, [0x05d5] = 0x2011a, [0x05d6] = 0x20163, [0x05d7] = 0x202b6, + [0x05d8] = 0x202b2, [0x05d9] = 0x202e9, [0x05da] = 0x202e7, [0x05db] = 0x202d6, + [0x05dc] = 0x20330, [0x05dd] = 0x202ec, [0x05de] = 0x202dd, [0x05df] = 0x202e8, + [0x05e0] = 0x202b0, [0x05e1] = 0x202b5, [0x05e2] = 0x202e1, [0x05e3] = 0x20498, + [0x05e4] = 0x20499, [0x05e5] = 0x34bc, [0x05e6] = 0x20593, [0x05e7] = 0x205e5, + [0x05e8] = 0x34d8, [0x05e9] = 0x20760, [0x05ea] = 0x2075e, [0x05eb] = 0x34f4, + [0x05ec] = 0x2087b, [0x05ed] = 0x208f1, [0x05ee] = 0x208f3, [0x05ef] = 0x20a7f, + [0x05f1] = 0x20b57, [0x05f2] = 0x20b58, [0x05f3] = 0x20d39, [0x05f4] = 0x20da7, + [0x05f5] = 0x20d35, [0x05f6] = 0x20d60, [0x05f7] = 0x20d51, [0x05f8] = 0x20d62, + [0x05f9] = 0x20d42, [0x05fa] = 0x20d3c, [0x05fb] = 0x20d43, [0x05fc] = 0x20dab, + [0x05fd] = 0x20da9, [0x05fe] = 0x20db4, [0x05ff] = 0x20d79, [0x0600] = 0x20d6a, + [0x0601] = 0x20d3b, [0x0602] = 0x20daa, [0x0603] = 0x20d33, [0x0604] = 0x20d37, + [0x0605] = 0x20d27, [0x0606] = 0x20da8, [0x0607] = 0x20d70, [0x0608] = 0x20d2f, + [0x0609] = 0x20d36, [0x060a] = 0x20db5, [0x060b] = 0x20d30, [0x060c] = 0x20d3a, + [0x060d] = 0x20d38, [0x060e] = 0x20db1, [0x060f] = 0x20dac, [0x0610] = 0x20d2e, + [0x0611] = 0x20d75, [0x0612] = 0x20db0, [0x0613] = 0x211f7, [0x0614] = 0x21200, + [0x0615] = 0x211f1, [0x0616] = 0x211f3, [0x0617] = 0x21360, [0x0618] = 0x21361, + [0x0619] = 0x21332, [0x061a] = 0x2132d, [0x061b] = 0x2134a, [0x061c] = 0x2132a, + [0x061d] = 0x21567, [0x061e] = 0x215a2, [0x061f] = 0x215a3, [0x0620] = 0x2159e, + [0x0621] = 0x215a4, [0x0622] = 0x21644, [0x0623] = 0x21632, [0x0624] = 0x2179b, + [0x0625] = 0x21798, [0x0626] = 0x21799, [0x0627] = 0x2179a, [0x0628] = 0x21766, + [0x0629] = 0x21762, [0x062a] = 0x2176b, [0x062b] = 0x24562, [0x062c] = 0x21767, + [0x062d] = 0x21a3b, [0x062e] = 0x21a23, [0x062f] = 0x21a29, [0x0630] = 0x21b7e, + [0x0631] = 0x21bf3, [0x0632] = 0x3785, [0x0633] = 0x21bf5, [0x0634] = 0x3783, + [0x0635] = 0x21c80, [0x0636] = 0x21c7e, [0x0637] = 0x21c7c, [0x0638] = 0x21c7f, + [0x0639] = 0x21c7d, [0x063a] = 0x21c81, [0x063b] = 0x21e25, [0x063c] = 0x21e29, + [0x063d] = 0x21e17, [0x063e] = 0x21e63, [0x063f] = 0x21e67, [0x0640] = 0x21e65, + [0x0641] = 0x21e2a, [0x0642] = 0x21e68, [0x0643] = 0x21e26, [0x0644] = 0x21e64, + [0x0645] = 0x21e1b, [0x0646] = 0x21e62, [0x0647] = 0x21e69, [0x0648] = 0x21ffe, + [0x0649] = 0x22044, [0x064a] = 0x22042, [0x064b] = 0x220b7, [0x064c] = 0x220d2, + [0x064d] = 0x220d4, [0x064e] = 0x220d7, [0x064f] = 0x220dc, [0x0650] = 0x220d1, + [0x0651] = 0x220d5, [0x0652] = 0x220cd, [0x0653] = 0x220d8, [0x0654] = 0x2219a, + [0x0655] = 0x22242, [0x0656] = 0x22235, [0x0657] = 0x22258, [0x0658] = 0x22234, + [0x0659] = 0x2223c, [0x065a] = 0x2223b, [0x065b] = 0x2223e, [0x065c] = 0x2223d, + [0x065d] = 0x2225a, [0x065e] = 0x22241, [0x065f] = 0x22238, [0x0660] = 0x22245, + [0x0661] = 0x22233, [0x0662] = 0x22326, [0x0663] = 0x38ba, [0x0664] = 0x223f7, + [0x0665] = 0x223ef, [0x0666] = 0x223f0, [0x0667] = 0x223ee, [0x0668] = 0x2249d, + [0x0669] = 0x22506, [0x066a] = 0x22511, [0x066b] = 0x22508, [0x066c] = 0x22502, + [0x066d] = 0x2250a, [0x066e] = 0x22507, [0x066f] = 0x22691, [0x0670] = 0x2268e, + [0x0671] = 0x22685, [0x0672] = 0x226e8, [0x0673] = 0x22717, [0x0674] = 0x226d4, + [0x0675] = 0x3969, [0x0676] = 0x226c4, [0x0677] = 0x226d5, [0x0678] = 0x3945, + [0x0679] = 0x226d8, [0x067a] = 0x22680, [0x067b] = 0x226de, [0x067c] = 0x22742, + [0x067d] = 0x229c7, [0x067e] = 0x229bf, [0x067f] = 0x22b8d, [0x0680] = 0x22b89, + [0x0681] = 0x22b90, [0x0682] = 0x22b9a, [0x0683] = 0x22bc8, [0x0684] = 0x22b92, + [0x0685] = 0x22ba1, [0x0686] = 0x22b84, [0x0687] = 0x22f57, [0x0688] = 0x22f47, + [0x0689] = 0x22f77, [0x068a] = 0x22f3a, [0x068b] = 0x22f50, [0x068c] = 0x22f42, + [0x068d] = 0x22f43, [0x068e] = 0x22fa3, [0x068f] = 0x23077, [0x0690] = 0x231b2, + [0x0691] = 0x231e2, [0x0692] = 0x231bd, [0x0693] = 0x23374, [0x0694] = 0x23482, + [0x0695] = 0x234b8, [0x0696] = 0x3b6c, [0x0697] = 0x234ba, [0x0698] = 0x234b9, + [0x0699] = 0x234bb, [0x069a] = 0x23487, [0x069c] = 0x23483, [0x069d] = 0x234b7, + [0x069e] = 0x20043, [0x069f] = 0x238ce, [0x06a0] = 0x238ba, [0x06a1] = 0x23973, + [0x06a2] = 0x23a09, [0x06a3] = 0x23a0a, [0x06a4] = 0x23a0b, [0x06a5] = 0x23a07, + [0x06a6] = 0x23a05, [0x06a7] = 0x23a0e, [0x06a8] = 0x23a97, [0x06a9] = 0x23b77, + [0x06aa] = 0x23b7b, [0x06ab] = 0x23b7a, [0x06ac] = 0x23b74, [0x06ad] = 0x23b79, + [0x06ae] = 0x23d86, [0x06af] = 0x23df5, [0x06b0] = 0x23da5, [0x06b1] = 0x23d9d, + [0x06b2] = 0x23dbe, [0x06b3] = 0x23d96, [0x06b4] = 0x23de1, [0x06b5] = 0x23da4, + [0x06b6] = 0x23da1, [0x06b7] = 0x23df6, [0x06b8] = 0x3d04, [0x06b9] = 0x23d8d, + [0x06ba] = 0x23d8b, [0x06bb] = 0x23d78, [0x06bc] = 0x23d98, [0x06bd] = 0x23e0a, + [0x06be] = 0x2425d, [0x06bf] = 0x24227, [0x06c0] = 0x2425f, [0x06c1] = 0x245c0, + [0x06c2] = 0x245c1, [0x06c3] = 0x2466d, [0x06c4] = 0x2465e, [0x06c5] = 0x2468a, + [0x06c6] = 0x24662, [0x06c7] = 0x24664, [0x06c8] = 0x3e3a, [0x06c9] = 0x247c0, + [0x06ca] = 0x247ca, [0x06cb] = 0x247d1, [0x06cc] = 0x3e79, [0x06cd] = 0x247c7, + [0x06ce] = 0x247ce, [0x06cf] = 0x7309, [0x06d0] = 0x247c5, [0x06d1] = 0x24936, + [0x06d2] = 0x24957, [0x06d3] = 0x24977, [0x06d4] = 0x24af6, [0x06d5] = 0x24af7, + [0x06d6] = 0x24b55, [0x06d7] = 0x24b44, [0x06d8] = 0x24b3e, [0x06d9] = 0x24b42, + [0x06da] = 0x24b52, [0x06db] = 0x24be1, [0x06dc] = 0x24c08, [0x06dd] = 0x24c68, + [0x06de] = 0x24c67, [0x06df] = 0x3f5d, [0x06e1] = 0x24d7e, [0x06e2] = 0x24d93, + [0x06e3] = 0x24d79, [0x06e4] = 0x24d81, [0x06e5] = 0x24d7d, [0x06e6] = 0x24d7b, + [0x06e7] = 0x24d94, [0x06e8] = 0x3f8a, [0x06e9] = 0x24f66, [0x06ea] = 0x24fd9, + [0x06eb] = 0x24fe0, [0x06ed] = 0x2505f, [0x06ee] = 0x2515f, [0x06ef] = 0x2515e, + [0x06f0] = 0x25168, [0x06f1] = 0x4027, [0x06f2] = 0x25188, [0x06f3] = 0x2516a, + [0x06f4] = 0x2516c, [0x06f5] = 0x25166, [0x06f6] = 0x25167, [0x06f7] = 0x25189, + [0x06f8] = 0x25160, [0x06f9] = 0x25185, [0x06fa] = 0x2032a, [0x06fb] = 0x25368, + [0x06fc] = 0x253b9, [0x06fd] = 0x253ba, [0x06fe] = 0x253be, [0x06ff] = 0x2546f, + [0x0700] = 0x25480, [0x0701] = 0x25474, [0x0702] = 0x25481, [0x0703] = 0x2547a, + [0x0704] = 0x2549c, [0x0705] = 0x25473, [0x0706] = 0x25482, [0x0707] = 0x2547f, + [0x0708] = 0x254a7, [0x0709] = 0x25479, [0x070a] = 0x25478, [0x070b] = 0x2547d, + [0x070c] = 0x254a8, [0x070d] = 0x2547c, [0x070e] = 0x25668, [0x070f] = 0x2564e, + [0x0710] = 0x2579e, [0x0711] = 0x4146, [0x0712] = 0x4140, [0x0713] = 0x25798, + [0x0714] = 0x413f, [0x0715] = 0x25785, [0x0716] = 0x2579c, [0x0717] = 0x257c5, + [0x0718] = 0x2579a, [0x0719] = 0x25968, [0x071a] = 0x25965, [0x071b] = 0x25967, + [0x071c] = 0x25961, [0x071d] = 0x25960, [0x071e] = 0x419d, [0x071f] = 0x41cb, + [0x0720] = 0x25a7b, [0x0721] = 0x41e1, [0x0722] = 0x25b19, [0x0723] = 0x25b0e, + [0x0724] = 0x25b31, [0x0725] = 0x25b12, [0x0726] = 0x25b10, [0x0727] = 0x25b15, + [0x0728] = 0x25b3f, [0x0729] = 0x25b1d, [0x072a] = 0x25b1e, [0x072b] = 0x25e4d, + [0x072c] = 0x25e48, [0x072d] = 0x25e45, [0x072e] = 0x25e42, [0x072f] = 0x25e49, + [0x0730] = 0x25e4a, [0x0731] = 0x25e47, [0x0732] = 0x427f, [0x0733] = 0x25e4c, + [0x0734] = 0x25fcd, [0x0735] = 0x25fd5, [0x0736] = 0x25fc4, [0x0737] = 0x25fca, + [0x0738] = 0x25fc3, [0x0739] = 0x4346, [0x073a] = 0x26229, [0x073b] = 0x262b4, + [0x073c] = 0x2636d, [0x073d] = 0x26366, [0x073e] = 0x2636a, [0x073f] = 0x26415, + [0x0740] = 0x264d3, [0x0741] = 0x264ec, [0x0742] = 0x26555, [0x0743] = 0x441a, + [0x0744] = 0x266d6, [0x0745] = 0x266d8, [0x0746] = 0x26751, [0x0747] = 0x266e0, + [0x0748] = 0x26703, [0x0749] = 0x26704, [0x074a] = 0x266da, [0x074b] = 0x266ea, + [0x074c] = 0x26702, [0x074d] = 0x266d3, [0x074e] = 0x266e4, [0x074f] = 0x266e5, + [0x0750] = 0x2693b, [0x0751] = 0x26966, [0x0752] = 0x26a2c, [0x0753] = 0x26a21, + [0x0754] = 0x26a26, [0x0755] = 0x26ad4, [0x0756] = 0x26ad5, [0x0757] = 0x26ad9, + [0x0758] = 0x26bd5, [0x0759] = 0x26beb, [0x075a] = 0x26bc5, [0x075b] = 0x44d3, + [0x075c] = 0x26c27, [0x075d] = 0x26bf0, [0x075e] = 0x26bb9, [0x075f] = 0x26c18, + [0x0760] = 0x26bee, [0x0761] = 0x44d0, [0x0762] = 0x26bb7, [0x0763] = 0x26bbb, + [0x0764] = 0x26bef, [0x0765] = 0x26bb8, [0x0766] = 0x26bdf, [0x0767] = 0x26bda, + [0x0768] = 0x26be3, [0x0769] = 0x26bc9, [0x076a] = 0x26bec, [0x076b] = 0x271a4, + [0x076c] = 0x458e, [0x076d] = 0x271a3, [0x076e] = 0x2725e, [0x076f] = 0x27261, + [0x0770] = 0x27262, [0x0771] = 0x27263, [0x0772] = 0x2728e, [0x0773] = 0x27269, + [0x0774] = 0x2726b, [0x0775] = 0x27285, [0x0776] = 0x2728d, [0x0777] = 0x27264, + [0x0778] = 0x2726d, [0x0779] = 0x2764c, [0x077a] = 0x27649, [0x077b] = 0x27647, + [0x077c] = 0x27648, [0x077d] = 0x27642, [0x077e] = 0x27645, [0x077f] = 0x2765b, + [0x0780] = 0x2765d, [0x0781] = 0x27646, [0x0782] = 0x27813, [0x0783] = 0x2781a, + [0x0784] = 0x2780e, [0x0785] = 0x2780f, [0x0786] = 0x2781b, [0x0787] = 0x27812, + [0x0788] = 0x278c3, [0x0789] = 0x278be, [0x078a] = 0x278bd, [0x078b] = 0x27979, + [0x078c] = 0x2797c, [0x078d] = 0x46c3, [0x078e] = 0x46b6, [0x078f] = 0x27980, + [0x0790] = 0x27975, [0x0791] = 0x2799b, [0x0792] = 0x8a2f, [0x0793] = 0x27974, + [0x0794] = 0x46c0, [0x0795] = 0x46b8, [0x0796] = 0x22041, [0x0797] = 0x22494, + [0x0798] = 0x27c30, [0x0799] = 0x27ca7, [0x079a] = 0x27ca5, [0x079b] = 0x27ca4, + [0x079c] = 0x27d3a, [0x079d] = 0x27e5b, [0x079e] = 0x27e9f, [0x079f] = 0x27ea8, + [0x07a0] = 0x27eb3, [0x07a1] = 0x27ea1, [0x07a2] = 0x27ea7, [0x07a3] = 0x27eb2, + [0x07a4] = 0x27e9d, [0x07a5] = 0x27ea3, [0x07a6] = 0x27ea2, [0x07a7] = 0x27fef, + [0x07a8] = 0x27fd9, [0x07a9] = 0x47d9, [0x07aa] = 0x27fd5, [0x07ab] = 0x27fdd, + [0x07ac] = 0x27fda, [0x07ad] = 0x27fee, [0x07ae] = 0x27fd7, [0x07af] = 0x2821a, + [0x07b0] = 0x28219, [0x07b1] = 0x28218, [0x07b2] = 0x282b3, [0x07b3] = 0x282bf, + [0x07b4] = 0x282bb, [0x07b5] = 0x282c0, [0x07b6] = 0x282b9, [0x07b7] = 0x282b8, + [0x07b8] = 0x282d5, [0x07b9] = 0x28411, [0x07ba] = 0x28410, [0x07bb] = 0x284c3, + [0x07bc] = 0x284c2, [0x07bd] = 0x284e9, [0x07be] = 0x284cd, [0x07bf] = 0x284e5, + [0x07c0] = 0x284ca, [0x07c1] = 0x284c7, [0x07c2] = 0x284e8, [0x07c3] = 0x286f1, + [0x07c4] = 0x2870c, [0x07c5] = 0x286ef, [0x07c6] = 0x286ee, [0x07c7] = 0x286f3, + [0x07c8] = 0x2870d, [0x07c9] = 0x286f6, [0x07ca] = 0x286f0, [0x07cb] = 0x48ec, + [0x07cc] = 0x287f5, [0x07cd] = 0x287f4, [0x07ce] = 0x287f8, [0x07cf] = 0x287fe, + [0x07d0] = 0x28911, [0x07d1] = 0x28922, [0x07d2] = 0x28942, [0x07d3] = 0x28c5c, + [0x07d4] = 0x28c5a, [0x07d5] = 0x28c5d, [0x07d6] = 0x28cd1, [0x07d7] = 0x28cd0, + [0x07d8] = 0x28e75, [0x07d9] = 0x28e7b, [0x07da] = 0x28f89, [0x07db] = 0x2944d, + [0x07dc] = 0x29689, [0x07dd] = 0x29692, [0x07de] = 0x2968c, [0x07df] = 0x29688, + [0x07e0] = 0x29867, [0x07e1] = 0x29868, [0x07e2] = 0x20321, [0x07e3] = 0x202f2, + [0x07e4] = 0x20309, [0x07e5] = 0x202f8, [0x07e6] = 0x202f0, [0x07e7] = 0x202f3, + [0x07e8] = 0x202f5, [0x07e9] = 0x202fb, [0x07ea] = 0x202f7, [0x07eb] = 0x202ef, + [0x07ec] = 0x2030b, [0x07ed] = 0x204a2, [0x07ee] = 0x205f5, [0x07ef] = 0x205f3, + [0x07f0] = 0x205f4, [0x07f1] = 0x205f2, [0x07f2] = 0x20698, [0x07f3] = 0x20768, + [0x07f4] = 0x20780, [0x07f5] = 0x20785, [0x07f6] = 0x2078e, [0x07f7] = 0x2078f, + [0x07f8] = 0x202f4, [0x07f9] = 0x20786, [0x07fa] = 0x207a4, [0x07fb] = 0x20886, + [0x07fc] = 0x20889, [0x07fd] = 0x20887, [0x07fe] = 0x20885, [0x07ff] = 0x52dc, + [0x0800] = 0x20888, [0x0801] = 0x20aff, [0x0802] = 0x20b66, [0x0803] = 0x35cc, + [0x0804] = 0x20dc3, [0x0805] = 0x35a2, [0x0806] = 0x20dc4, [0x0807] = 0x20e3b, + [0x0808] = 0x20de7, [0x0809] = 0x20df8, [0x080a] = 0x20dfb, [0x080b] = 0x35b6, + [0x080c] = 0x20dbe, [0x080d] = 0x20dc6, [0x080e] = 0x35c5, [0x080f] = 0x35c6, + [0x0810] = 0x20dfc, [0x0811] = 0x20dc0, [0x0812] = 0x20e33, [0x0813] = 0x20dc9, + [0x0814] = 0x20dfe, [0x0815] = 0x20dda, [0x0816] = 0x20dcc, [0x0817] = 0x20dbb, + [0x0818] = 0x20dfd, [0x0819] = 0x20ddf, [0x081a] = 0x20dcd, [0x081b] = 0x20dc2, + [0x081c] = 0x20dc8, [0x081d] = 0x20e32, [0x081e] = 0x20e2d, [0x081f] = 0x20dd2, + [0x0820] = 0x20e31, [0x0821] = 0x20dd3, [0x0822] = 0x20e2e, [0x0823] = 0x20dcf, + [0x0824] = 0x211ff, [0x0825] = 0x21209, [0x0826] = 0x211fc, [0x0827] = 0x21372, + [0x0828] = 0x213aa, [0x0829] = 0x213ab, [0x082a] = 0x213a7, [0x082b] = 0x2137b, + [0x082c] = 0x21376, [0x082d] = 0x213a8, [0x082e] = 0x213ac, [0x082f] = 0x3683, + [0x0830] = 0x5921, [0x0831] = 0x215aa, [0x0832] = 0x20a03, [0x0833] = 0x215ac, + [0x0834] = 0x215ad, [0x0835] = 0x215ab, [0x0836] = 0x21650, [0x0837] = 0x21658, + [0x0838] = 0x217dd, [0x0839] = 0x36f8, [0x083a] = 0x217ae, [0x083b] = 0x217a2, + [0x083c] = 0x217ab, [0x083d] = 0x217e3, [0x083e] = 0x217af, [0x083f] = 0x217e0, + [0x0840] = 0x217e4, [0x0841] = 0x36f6, [0x0842] = 0x217a7, [0x0843] = 0x217aa, + [0x0844] = 0x217e2, [0x0845] = 0x217e1, [0x0846] = 0x217df, [0x0847] = 0x217ad, + [0x0848] = 0x217e5, [0x0849] = 0x217d1, [0x084a] = 0x217ac, [0x084b] = 0x217d5, + [0x084c] = 0x217a3, [0x084d] = 0x2179f, [0x084e] = 0x21979, [0x084f] = 0x21976, + [0x0850] = 0x21a43, [0x0851] = 0x21a3d, [0x0852] = 0x21a47, [0x0853] = 0x21a44, + [0x0854] = 0x21a3f, [0x0855] = 0x21a5b, [0x0856] = 0x21b7f, [0x0857] = 0x21c9a, + [0x0858] = 0x21c9c, [0x0859] = 0x379b, [0x085a] = 0x21d1e, [0x085b] = 0x21e88, + [0x085c] = 0x21e6a, [0x085d] = 0x21e76, [0x085e] = 0x21e72, [0x085f] = 0x21e70, + [0x0860] = 0x21e7e, [0x0861] = 0x21e6c, [0x0862] = 0x21e6f, [0x0863] = 0x21e75, + [0x0864] = 0x21e77, [0x0865] = 0x21e78, [0x0866] = 0x21e8a, [0x0867] = 0x21e79, + [0x0868] = 0x21e94, [0x0869] = 0x22001, [0x086a] = 0x22105, [0x086b] = 0x220f1, + [0x086c] = 0x220ee, [0x086d] = 0x220ef, [0x086e] = 0x22104, [0x086f] = 0x5e3f, + [0x0870] = 0x220fa, [0x0871] = 0x22107, [0x0872] = 0x220f4, [0x0873] = 0x220f5, + [0x0874] = 0x2219c, [0x0875] = 0x2226d, [0x0876] = 0x22269, [0x0877] = 0x22266, + [0x0878] = 0x22262, [0x0879] = 0x22246, [0x087a] = 0x388d, [0x087b] = 0x22265, + [0x087c] = 0x2225d, [0x087d] = 0x2225e, [0x087e] = 0x2225f, [0x087f] = 0x2238e, + [0x0880] = 0x22402, [0x0881] = 0x22406, [0x0882] = 0x22404, [0x0883] = 0x22403, + [0x0884] = 0x22462, [0x0885] = 0x22527, [0x0886] = 0x22521, [0x0887] = 0x22520, + [0x0888] = 0x22524, [0x0889] = 0x22529, [0x088a] = 0x22531, [0x088b] = 0x22523, + [0x088c] = 0x22522, [0x088d] = 0x226dc, [0x088e] = 0x2274d, [0x088f] = 0x226e5, + [0x0890] = 0x226d3, [0x0891] = 0x226ee, [0x0892] = 0x226e6, [0x0893] = 0x3956, + [0x0894] = 0x22736, [0x0895] = 0x22740, [0x0896] = 0x2283f, [0x0897] = 0x2273d, + [0x0898] = 0x22744, [0x0899] = 0x395b, [0x089a] = 0x2275f, [0x089b] = 0x22729, + [0x089c] = 0x22749, [0x089d] = 0x2278a, [0x089e] = 0x2272a, [0x089f] = 0x22787, + [0x08a0] = 0x2274c, [0x08a1] = 0x22731, [0x08a2] = 0x22748, [0x08a3] = 0x2272b, + [0x08a4] = 0x2273b, [0x08a5] = 0x22741, [0x08a6] = 0x226c9, [0x08a7] = 0x22734, + [0x08a8] = 0x22753, [0x08a9] = 0x22735, [0x08aa] = 0x22747, [0x08ab] = 0x22738, + [0x08ac] = 0x229d1, [0x08ad] = 0x229d2, [0x08ae] = 0x22a51, [0x08af] = 0x22a55, + [0x08b0] = 0x22a52, [0x08b1] = 0x22a53, [0x08b2] = 0x22b8f, [0x08b3] = 0x22bf4, + [0x08b4] = 0x22c47, [0x08b5] = 0x22c0d, [0x08b6] = 0x22c1c, [0x08b7] = 0x22bfb, + [0x08b8] = 0x22c19, [0x08b9] = 0x22bf7, [0x08ba] = 0x22bf9, [0x08bb] = 0x22bf5, + [0x08bc] = 0x22be9, [0x08bd] = 0x22c0a, [0x08be] = 0x22bee, [0x08bf] = 0x22c0b, + [0x08c0] = 0x22bfd, [0x08c1] = 0x22c06, [0x08c2] = 0x22c02, [0x08c3] = 0x22c16, + [0x08c4] = 0x22c18, [0x08c5] = 0x22bf0, [0x08c6] = 0x22ed4, [0x08c7] = 0x22f66, + [0x08c8] = 0x22f6a, [0x08c9] = 0x22f75, [0x08ca] = 0x22f76, [0x08cb] = 0x22f80, + [0x08cc] = 0x22f6d, [0x08cd] = 0x3a96, [0x08ce] = 0x22f69, [0x08cf] = 0x22f67, + [0x08d0] = 0x22f68, [0x08d1] = 0x22f5d, [0x08d2] = 0x230a4, [0x08d3] = 0x230fe, + [0x08d4] = 0x230fd, [0x08d5] = 0x231ec, [0x08d6] = 0x231e9, [0x08d7] = 0x23221, + [0x08d8] = 0x231eb, [0x08d9] = 0x231e7, [0x08da] = 0x231f2, [0x08db] = 0x23220, + [0x08dc] = 0x2337a, [0x08dd] = 0x2352d, [0x08de] = 0x2352e, [0x08df] = 0x234ca, + [0x08e0] = 0x2352f, [0x08e1] = 0x234c8, [0x08e2] = 0x3b7e, [0x08e3] = 0x234cb, + [0x08e4] = 0x234c3, [0x08e5] = 0x23484, [0x08e6] = 0x234d2, [0x08e7] = 0x234c6, + [0x08e8] = 0x3b81, [0x08e9] = 0x234cf, [0x08ea] = 0x234d5, [0x08eb] = 0x234d4, + [0x08ec] = 0x234dd, [0x08ed] = 0x2352b, [0x08ee] = 0x235a3, [0x08ef] = 0x234db, + [0x08f0] = 0x2352c, [0x08f1] = 0x23513, [0x08f2] = 0x3c35, [0x08f3] = 0x238d1, + [0x08f4] = 0x238cc, [0x08f5] = 0x238d5, [0x08f6] = 0x238c9, [0x08f7] = 0x238cf, + [0x08f8] = 0x238d2, [0x08f9] = 0x2397b, [0x08fa] = 0x2397c, [0x08fb] = 0x23a23, + [0x08fc] = 0x23a1d, [0x08fd] = 0x23a1c, [0x08fe] = 0x23a1e, [0x08ff] = 0x23a22, + [0x0900] = 0x23a24, [0x0901] = 0x23a20, [0x0902] = 0x23a18, [0x0903] = 0x23a21, + [0x0904] = 0x23b88, [0x0905] = 0x23b8a, [0x0906] = 0x23b94, [0x0907] = 0x23b8f, + [0x0908] = 0x23b8e, [0x0909] = 0x23b90, [0x090a] = 0x3c9b, [0x090b] = 0x23ba7, + [0x090c] = 0x23c64, [0x090d] = 0x3d00, [0x090e] = 0x23e18, [0x090f] = 0x23e14, + [0x0910] = 0x23e1d, [0x0911] = 0x23e05, [0x0912] = 0x23dff, [0x0913] = 0x23e1b, + [0x0914] = 0x23e1a, [0x0915] = 0x23e19, [0x0916] = 0x23e03, [0x0917] = 0x23e0e, + [0x0918] = 0x23e47, [0x0919] = 0x23e04, [0x091a] = 0x23e5a, [0x091b] = 0x23e07, + [0x091c] = 0x23e20, [0x091d] = 0x2426a, [0x091e] = 0x24266, [0x091f] = 0x2427a, + [0x0920] = 0x24265, [0x0921] = 0x242af, [0x0922] = 0x245cd, [0x0923] = 0x245cf, + [0x0924] = 0x245d1, [0x0925] = 0x245ce, [0x0926] = 0x2465f, [0x0927] = 0x24677, + [0x0928] = 0x24674, [0x0929] = 0x24688, [0x092a] = 0x24675, [0x092b] = 0x24689, + [0x092c] = 0x24672, [0x092d] = 0x247c6, [0x092e] = 0x247ea, [0x092f] = 0x247e0, + [0x0930] = 0x24807, [0x0931] = 0x247e6, [0x0932] = 0x247e5, [0x0933] = 0x247dd, + [0x0934] = 0x247e3, [0x0935] = 0x247da, [0x0936] = 0x249ae, [0x0937] = 0x2497e, + [0x0938] = 0x2497d, [0x0939] = 0x2497f, [0x093a] = 0x3ed3, [0x093b] = 0x249d9, + [0x093c] = 0x24afa, [0x093d] = 0x24afb, [0x093e] = 0x24b4d, [0x093f] = 0x24b54, + [0x0940] = 0x24b51, [0x0941] = 0x24b50, [0x0942] = 0x24d98, [0x0943] = 0x24d95, + [0x0944] = 0x24d9d, [0x0945] = 0x24dc1, [0x0946] = 0x24d9a, [0x0947] = 0x24d9b, + [0x0948] = 0x3f9f, [0x0949] = 0x24d9c, [0x094a] = 0x24dd7, [0x094b] = 0x24da4, + [0x094c] = 0x24d96, [0x094d] = 0x24da0, [0x094e] = 0x24f31, [0x094f] = 0x24fe9, + [0x0950] = 0x2506e, [0x0951] = 0x2519a, [0x0952] = 0x251a5, [0x0953] = 0x25194, + [0x0954] = 0x251a6, [0x0955] = 0x25199, [0x0956] = 0x2518b, [0x0957] = 0x25198, + [0x0958] = 0x25191, [0x0959] = 0x2518c, [0x095a] = 0x251a1, [0x095b] = 0x251a3, + [0x095c] = 0x251c6, [0x095d] = 0x2536f, [0x095e] = 0x2536d, [0x095f] = 0x2536a, + [0x0960] = 0x2536c, [0x0961] = 0x25371, [0x0962] = 0x2536e, [0x0963] = 0x253df, + [0x0964] = 0x254ac, [0x0965] = 0x254aa, [0x0966] = 0x40b1, [0x0967] = 0x254b5, + [0x0968] = 0x254ad, [0x0969] = 0x254b2, [0x096a] = 0x254b3, [0x096b] = 0x254ab, + [0x096c] = 0x254b6, [0x096d] = 0x254c7, [0x096e] = 0x254c6, [0x096f] = 0x2566c, + [0x0970] = 0x25670, [0x0971] = 0x257b3, [0x0972] = 0x414b, [0x0973] = 0x2598c, + [0x0974] = 0x25981, [0x0975] = 0x25983, [0x0976] = 0x2597d, [0x0977] = 0x25985, + [0x0978] = 0x25990, [0x0979] = 0x259a2, [0x097a] = 0x2598d, [0x097b] = 0x2598f, + [0x097c] = 0x2597e, [0x097d] = 0x2598a, [0x097e] = 0x2597f, [0x097f] = 0x25976, + [0x0980] = 0x25987, [0x0981] = 0x25978, [0x0982] = 0x25a80, [0x0983] = 0x25a82, + [0x0984] = 0x25a81, [0x0985] = 0x25a83, [0x0986] = 0x25b5a, [0x0987] = 0x25b34, + [0x0988] = 0x25b2c, [0x0989] = 0x25b2a, [0x098a] = 0x25b40, [0x098b] = 0x25b2d, + [0x098c] = 0x25b33, [0x098d] = 0x25b2b, [0x098e] = 0x25b4b, [0x098f] = 0x7b3f, + [0x0990] = 0x25b3c, [0x0991] = 0x25e5a, [0x0992] = 0x25e77, [0x0993] = 0x25e60, + [0x0994] = 0x25ffa, [0x0995] = 0x25ff9, [0x0996] = 0x25ffc, [0x0997] = 0x42d6, + [0x0998] = 0x25ff5, [0x0999] = 0x25fe8, [0x099a] = 0x26009, [0x099b] = 0x25fe7, + [0x099c] = 0x25fe6, [0x099d] = 0x25fe9, [0x099e] = 0x26232, [0x099f] = 0x2622c, + [0x09a0] = 0x262bd, [0x09a1] = 0x262bc, [0x09a2] = 0x2637a, [0x09a3] = 0x2637e, + [0x09a4] = 0x26379, [0x09a5] = 0x4389, [0x09a6] = 0x26423, [0x09a7] = 0x26430, + [0x09a8] = 0x26428, [0x09a9] = 0x264d4, [0x09aa] = 0x26ace, [0x09ab] = 0x264f1, + [0x09ac] = 0x264f0, [0x09ad] = 0x26560, [0x09ae] = 0x26565, [0x09af] = 0x266a8, + [0x09b0] = 0x2670a, [0x09b1] = 0x2671b, [0x09b2] = 0x26712, [0x09b3] = 0x26707, + [0x09b4] = 0x2674f, [0x09b5] = 0x2670e, [0x09b6] = 0x26752, [0x09b7] = 0x26716, + [0x09b8] = 0x4400, [0x09b9] = 0x26753, [0x09ba] = 0x26754, [0x09bc] = 0x26756, + [0x09bd] = 0x2696d, [0x09be] = 0x26972, [0x09bf] = 0x26a2f, [0x09c0] = 0x26c2a, + [0x09c1] = 0x44dc, [0x09c2] = 0x26c63, [0x09c3] = 0x26c84, [0x09c4] = 0x26caf, + [0x09c5] = 0x26c45, [0x09c6] = 0x26c70, [0x09c7] = 0x26c56, [0x09c8] = 0x26c16, + [0x09c9] = 0x26c3d, [0x09ca] = 0x26c38, [0x09cb] = 0x26c6f, [0x09cc] = 0x26c77, + [0x09cd] = 0x26c2e, [0x09ce] = 0x26c31, [0x09cf] = 0x26c4c, [0x09d0] = 0x26c5f, + [0x09d1] = 0x26c75, [0x09d2] = 0x26c39, [0x09d3] = 0x26c3a, [0x09d4] = 0x26c2c, + [0x09d5] = 0x26c2d, [0x09d6] = 0x26c3f, [0x09d7] = 0x26c2f, [0x09d8] = 0x26c30, + [0x09d9] = 0x26c3e, [0x09da] = 0x83d0, [0x09db] = 0x4590, [0x09dc] = 0x271b2, + [0x09dd] = 0x272b7, [0x09de] = 0x2728f, [0x09df] = 0x45b1, [0x09e0] = 0x27296, + [0x09e1] = 0x2729e, [0x09e2] = 0x27297, [0x09e3] = 0x27295, [0x09e4] = 0x272a5, + [0x09e5] = 0x27298, [0x09e6] = 0x86e7, [0x09e7] = 0x272a3, [0x09e8] = 0x2729a, + [0x09e9] = 0x272ad, [0x09ea] = 0x272a6, [0x09eb] = 0x272b6, [0x09ec] = 0x27299, + [0x09ed] = 0x272af, [0x09ee] = 0x272ac, [0x09ef] = 0x45aa, [0x09f0] = 0x2729f, + [0x09f1] = 0x27294, [0x09f2] = 0x275eb, [0x09f3] = 0x2766f, [0x09f4] = 0x2766d, + [0x09f5] = 0x2767e, [0x09f6] = 0x2766c, [0x09f7] = 0x27661, [0x09f8] = 0x27663, + [0x09f9] = 0x2766b, [0x09fa] = 0x2765e, [0x09fb] = 0x2763e, [0x09fc] = 0x27664, + [0x09fd] = 0x276ad, [0x09fe] = 0x467d, [0x09ff] = 0x27820, [0x0a00] = 0x278d1, + [0x0a01] = 0x278d5, [0x0a02] = 0x279ae, [0x0a03] = 0x279af, [0x0a04] = 0x2799f, + [0x0a05] = 0x279a8, [0x0a06] = 0x279ca, [0x0a07] = 0x27be1, [0x0a08] = 0x27c39, + [0x0a09] = 0x27c38, [0x0a0a] = 0x27c3b, [0x0a0b] = 0x27cad, [0x0a0c] = 0x27cb5, + [0x0a0d] = 0x27caf, [0x0a0e] = 0x27cb1, [0x0a0f] = 0x27cae, [0x0a10] = 0x27cb4, + [0x0a11] = 0x27cb0, [0x0a12] = 0x27d4b, [0x0a13] = 0x27d51, [0x0a14] = 0x27d4c, + [0x0a15] = 0x4769, [0x0a16] = 0x27d60, [0x0a17] = 0x27ebe, [0x0a18] = 0x27eb9, + [0x0a19] = 0x27eb7, [0x0a1a] = 0x27eb6, [0x0a1b] = 0x47a1, [0x0a1c] = 0x27ebd, + [0x0a1d] = 0x27eb8, [0x0a1e] = 0x27ec1, [0x0a1f] = 0x27ff7, [0x0a20] = 0x27ff3, + [0x0a21] = 0x27ff4, [0x0a22] = 0x27ffb, [0x0a23] = 0x27ffd, [0x0a24] = 0x27ff5, + [0x0a25] = 0x47e7, [0x0a26] = 0x27ffa, [0x0a27] = 0x28014, [0x0a28] = 0x47ec, + [0x0a29] = 0x27ff2, [0x0a2a] = 0x27ffc, [0x0a2b] = 0x28000, [0x0a2c] = 0x47df, + [0x0a2d] = 0x2822b, [0x0a2e] = 0x28229, [0x0a2f] = 0x2822e, [0x0a30] = 0x4833, + [0x0a31] = 0x282d7, [0x0a32] = 0x282db, [0x0a33] = 0x282d9, [0x0a34] = 0x282d8, + [0x0a35] = 0x282e6, [0x0a36] = 0x282d6, [0x0a37] = 0x282d1, [0x0a38] = 0x282e7, + [0x0a39] = 0x282d0, [0x0a3a] = 0x282dc, [0x0a3b] = 0x284ed, [0x0a3c] = 0x2851a, + [0x0a3d] = 0x28519, [0x0a3e] = 0x28516, [0x0a3f] = 0x284ec, [0x0a40] = 0x284ef, + [0x0a41] = 0x284ee, [0x0a42] = 0x284f4, [0x0a43] = 0x2852f, [0x0a44] = 0x28730, + [0x0a45] = 0x28719, [0x0a46] = 0x28718, [0x0a47] = 0x28711, [0x0a48] = 0x28716, + [0x0a49] = 0x28712, [0x0a4a] = 0x28710, [0x0a4b] = 0x28714, [0x0a4c] = 0x2880c, + [0x0a4d] = 0x2880d, [0x0a4e] = 0x28910, [0x0a4f] = 0x28929, [0x0a50] = 0x28928, + [0x0a51] = 0x28c65, [0x0a52] = 0x28c66, [0x0a53] = 0x28cde, [0x0a54] = 0x28cdf, + [0x0a55] = 0x28ce0, [0x0a56] = 0x28cd9, [0x0a57] = 0x28cdb, [0x0a58] = 0x28cd8, + [0x0a59] = 0x28ce3, [0x0a5a] = 0x28cd7, [0x0a5b] = 0x28ea6, [0x0a5c] = 0x28ea7, + [0x0a5d] = 0x28ebf, [0x0a5e] = 0x28ea8, [0x0a5f] = 0x28e9f, [0x0a60] = 0x28ea1, + [0x0a61] = 0x28ea2, [0x0a62] = 0x28ead, [0x0a63] = 0x28ea3, [0x0a64] = 0x28ea0, + [0x0a65] = 0x29083, [0x0a66] = 0x29085, [0x0a67] = 0x29082, [0x0a68] = 0x29084, + [0x0a69] = 0x291ee, [0x0a6a] = 0x2925d, [0x0a6b] = 0x29392, [0x0a6c] = 0x29455, + [0x0a6d] = 0x29453, [0x0a6f] = 0x29451, [0x0a70] = 0x29452, [0x0a71] = 0x29450, + [0x0a72] = 0x2959d, [0x0a73] = 0x29687, [0x0a74] = 0x29697, [0x0a75] = 0x2969b, + [0x0a76] = 0x2969d, [0x0a77] = 0x29869, [0x0a78] = 0x29a11, [0x0a79] = 0x4bee, + [0x0a7a] = 0x29c7a, [0x0a7b] = 0x4c32, [0x0a7c] = 0x23244, [0x0a7d] = 0x200c6, + [0x0a7e] = 0x20340, [0x0a7f] = 0x2032e, [0x0a80] = 0x20368, [0x0a81] = 0x2032d, + [0x0a82] = 0x20334, [0x0a83] = 0x20332, [0x0a84] = 0x20369, [0x0a85] = 0x20331, + [0x0a86] = 0x2036a, [0x0a87] = 0x2033e, [0x0a88] = 0x2036f, [0x0a89] = 0x20375, + [0x0a8a] = 0x204f6, [0x0a8b] = 0x20520, [0x0a8c] = 0x20528, [0x0a8d] = 0x20567, + [0x0a8e] = 0x205fb, [0x0a8f] = 0x205fe, [0x0a90] = 0x205fc, [0x0a91] = 0x205fd, + [0x0a92] = 0x205ff, [0x0a93] = 0x205fa, [0x0a94] = 0x207ac, [0x0a95] = 0x207af, + [0x0a96] = 0x207b1, [0x0a97] = 0x34fc, [0x0a98] = 0x207bf, [0x0a99] = 0x207be, + [0x0a9a] = 0x207a7, [0x0a9b] = 0x207aa, [0x0a9c] = 0x20894, [0x0a9d] = 0x20893, + [0x0a9e] = 0x20899, [0x0a9f] = 0x352a, [0x0aa0] = 0x208fa, [0x0aa1] = 0x20956, + [0x0aa2] = 0x20a22, [0x0aa3] = 0x20a91, [0x0aa4] = 0x20a92, [0x0aa5] = 0x20b08, + [0x0aa6] = 0x20b06, [0x0aa7] = 0x20dd6, [0x0aa8] = 0x20e37, [0x0aa9] = 0x20e4b, + [0x0aaa] = 0x20ece, [0x0aab] = 0x20ed0, [0x0aac] = 0x20e39, [0x0aad] = 0x20e64, + [0x0aae] = 0x20ecf, [0x0aaf] = 0x20e46, [0x0ab0] = 0x20e66, [0x0ab1] = 0x20e56, + [0x0ab2] = 0x20e43, [0x0ab3] = 0x20e4a, [0x0ab4] = 0x20e58, [0x0ab5] = 0x20e65, + [0x0ab6] = 0x20e5a, [0x0ab7] = 0x20e5b, [0x0ab8] = 0x20e55, [0x0ab9] = 0x20e50, + [0x0aba] = 0x20e4c, [0x0abb] = 0x20ecd, [0x0abc] = 0x20e51, [0x0abd] = 0x20e47, + [0x0abe] = 0x35d3, [0x0abf] = 0x20e53, [0x0ac0] = 0x20e62, [0x0ac1] = 0x20ecc, + [0x0ac2] = 0x35d7, [0x0ac3] = 0x20e7f, [0x0ac4] = 0x20e4d, [0x0ac5] = 0x2120a, + [0x0ac6] = 0x2120c, [0x0ac7] = 0x2120f, [0x0ac8] = 0x213bb, [0x0ac9] = 0x213b9, + [0x0aca] = 0x213eb, [0x0acb] = 0x213ae, [0x0acc] = 0x213c1, [0x0acd] = 0x213ea, + [0x0ace] = 0x213be, [0x0acf] = 0x213bf, [0x0ad0] = 0x213ba, [0x0ad1] = 0x213b7, + [0x0ad2] = 0x213b3, [0x0ad3] = 0x213e9, [0x0ad4] = 0x2156e, [0x0ad5] = 0x215af, + [0x0ad6] = 0x215b3, [0x0ad7] = 0x215b2, [0x0ad8] = 0x21668, [0x0ad9] = 0x21669, + [0x0ada] = 0x2166a, [0x0adb] = 0x217de, [0x0adc] = 0x217eb, [0x0add] = 0x21811, + [0x0ade] = 0x217ed, [0x0adf] = 0x217e9, [0x0ae0] = 0x217f7, [0x0ae1] = 0x217f4, + [0x0ae2] = 0x217ea, [0x0ae3] = 0x21812, [0x0ae4] = 0x217e8, [0x0ae5] = 0x21813, + [0x0ae6] = 0x2198e, [0x0ae7] = 0x21986, [0x0ae8] = 0x21a63, [0x0ae9] = 0x21a65, + [0x0aea] = 0x21b99, [0x0aeb] = 0x21cc2, [0x0aec] = 0x21cae, [0x0aed] = 0x21cb0, + [0x0aee] = 0x21cad, [0x0aef] = 0x21eb4, [0x0af0] = 0x21ed1, [0x0af1] = 0x21ead, + [0x0af2] = 0x37f3, [0x0af3] = 0x21ebd, [0x0af4] = 0x21eb7, [0x0af5] = 0x21eab, + [0x0af6] = 0x21eaf, [0x0af7] = 0x21ec1, [0x0af8] = 0x21eb5, [0x0af9] = 0x2210f, + [0x0afa] = 0x2210e, [0x0afb] = 0x2211c, [0x0afc] = 0x22113, [0x0afd] = 0x2210a, + [0x0afe] = 0x2211e, [0x0aff] = 0x22114, [0x0b00] = 0x2211a, [0x0b01] = 0x221cb, + [0x0b02] = 0x22287, [0x0b03] = 0x22293, [0x0b04] = 0x3891, [0x0b05] = 0x22284, + [0x0b06] = 0x22285, [0x0b07] = 0x22292, [0x0b08] = 0x22280, [0x0b09] = 0x2232b, + [0x0b0a] = 0x22363, [0x0b0b] = 0x2240a, [0x0b0c] = 0x38c0, [0x0b0d] = 0x22466, + [0x0b0e] = 0x22534, [0x0b0f] = 0x22533, [0x0b10] = 0x2254d, [0x0b11] = 0x22789, + [0x0b12] = 0x22757, [0x0b13] = 0x6117, [0x0b14] = 0x2274a, [0x0b15] = 0x3963, + [0x0b16] = 0x22739, [0x0b17] = 0x2273f, [0x0b18] = 0x22790, [0x0b19] = 0x2278f, + [0x0b1a] = 0x227b2, [0x0b1b] = 0x2279f, [0x0b1c] = 0x22795, [0x0b1d] = 0x227a1, + [0x0b1e] = 0x2279c, [0x0b1f] = 0x2278e, [0x0b20] = 0x227a0, [0x0b21] = 0x227ae, + [0x0b22] = 0x22796, [0x0b23] = 0x227ca, [0x0b24] = 0x227ac, [0x0b25] = 0x3970, + [0x0b26] = 0x227a6, [0x0b27] = 0x22797, [0x0b28] = 0x22793, [0x0b29] = 0x203b6, + [0x0b2a] = 0x229d6, [0x0b2b] = 0x229e0, [0x0b2c] = 0x229d8, [0x0b2d] = 0x22a56, + [0x0b2e] = 0x22c6e, [0x0b2f] = 0x22c7e, [0x0b30] = 0x22c74, [0x0b31] = 0x22c77, + [0x0b32] = 0x22c80, [0x0b33] = 0x22c7a, [0x0b34] = 0x22c6b, [0x0b35] = 0x22c5f, + [0x0b36] = 0x22c76, [0x0b37] = 0x22cb0, [0x0b38] = 0x22c63, [0x0b39] = 0x22f92, + [0x0b3a] = 0x22f82, [0x0b3b] = 0x22f9d, [0x0b3c] = 0x22f94, [0x0b3d] = 0x22f83, + [0x0b3e] = 0x22f8b, [0x0b3f] = 0x22f84, [0x0b40] = 0x23057, [0x0b41] = 0x23084, + [0x0b42] = 0x230b5, [0x0b43] = 0x23109, [0x0b44] = 0x231e6, [0x0b45] = 0x3b02, + [0x0b46] = 0x23225, [0x0b47] = 0x23251, [0x0b48] = 0x2333e, [0x0b4a] = 0x23385, + [0x0b4b] = 0x2353f, [0x0b4c] = 0x23542, [0x0b4d] = 0x23538, [0x0b4e] = 0x2353a, + [0x0b4f] = 0x2354e, [0x0b50] = 0x23545, [0x0b51] = 0x23539, [0x0b52] = 0x23537, + [0x0b53] = 0x23544, [0x0b55] = 0x235a4, [0x0b56] = 0x2353d, [0x0b57] = 0x23541, + [0x0b58] = 0x238df, [0x0b59] = 0x238de, [0x0b5a] = 0x238ca, [0x0b5b] = 0x238e9, + [0x0b5c] = 0x238e2, [0x0b5d] = 0x238e0, [0x0b5e] = 0x23989, [0x0b5f] = 0x23987, + [0x0b60] = 0x23a32, [0x0b61] = 0x23a33, [0x0b62] = 0x23aac, [0x0b63] = 0x23af9, + [0x0b64] = 0x23b0d, [0x0b65] = 0x23bb9, [0x0b66] = 0x23e5e, [0x0b67] = 0x23e6a, + [0x0b68] = 0x3d35, [0x0b69] = 0x23e81, [0x0b6a] = 0x23e69, [0x0b6b] = 0x23eac, + [0x0b6c] = 0x23e80, [0x0b6d] = 0x23e75, [0x0b6e] = 0x23e71, [0x0b6f] = 0x23e76, + [0x0b70] = 0x23e6f, [0x0b71] = 0x242b6, [0x0b72] = 0x24303, [0x0b73] = 0x242bf, + [0x0b74] = 0x24301, [0x0b75] = 0x242b2, [0x0b76] = 0x242c4, [0x0b77] = 0x245db, + [0x0b78] = 0x245dc, [0x0b79] = 0x245d8, [0x0b7a] = 0x29672, [0x0b7b] = 0x246b5, + [0x0b7c] = 0x246a8, [0x0b7d] = 0x2468f, [0x0b7e] = 0x2469e, [0x0b7f] = 0x2468e, + [0x0b80] = 0x247de, [0x0b81] = 0x247e2, [0x0b82] = 0x24820, [0x0b83] = 0x2481d, + [0x0b84] = 0x2481a, [0x0b85] = 0x24819, [0x0b86] = 0x2482b, [0x0b87] = 0x24818, + [0x0b88] = 0x24810, [0x0b89] = 0x2480e, [0x0b8a] = 0x24824, [0x0b8b] = 0x2481f, + [0x0b8c] = 0x24813, [0x0b8d] = 0x24835, [0x0b8e] = 0x24983, [0x0b8f] = 0x3ee0, + [0x0b90] = 0x249d7, [0x0b91] = 0x24b02, [0x0b92] = 0x24b03, [0x0b93] = 0x24b5c, + [0x0b94] = 0x24b5f, [0x0b95] = 0x24bc7, [0x0b96] = 0x24c9a, [0x0b97] = 0x24c97, + [0x0b98] = 0x24ca3, [0x0b99] = 0x24df7, [0x0b9a] = 0x24dc6, [0x0b9b] = 0x24dcc, + [0x0b9c] = 0x24dd6, [0x0b9d] = 0x24dcd, [0x0b9e] = 0x24df9, [0x0b9f] = 0x24dd9, + [0x0ba0] = 0x24dd8, [0x0ba1] = 0x3f9a, [0x0ba2] = 0x24dd1, [0x0ba3] = 0x24dce, + [0x0ba4] = 0x24dd5, [0x0ba5] = 0x3fa3, [0x0ba6] = 0x24dd4, [0x0ba7] = 0x24df8, + [0x0ba8] = 0x24f7a, [0x0ba9] = 0x24f79, [0x0baa] = 0x24f7f, [0x0bab] = 0x24ff3, + [0x0bac] = 0x24ff5, [0x0bad] = 0x24ff6, [0x0bae] = 0x24ff4, [0x0baf] = 0x24ff7, + [0x0bb0] = 0x4005, [0x0bb1] = 0x25079, [0x0bb2] = 0x2519c, [0x0bb3] = 0x251df, + [0x0bb4] = 0x251f5, [0x0bb5] = 0x251ff, [0x0bb6] = 0x251d1, [0x0bb7] = 0x251da, + [0x0bb8] = 0x251cf, [0x0bb9] = 0x251cd, [0x0bba] = 0x251de, [0x0bbb] = 0x251d8, + [0x0bbc] = 0x23aad, [0x0bbd] = 0x251e0, [0x0bbe] = 0x251fe, [0x0bbf] = 0x2519e, + [0x0bc0] = 0x25375, [0x0bc1] = 0x25373, [0x0bc2] = 0x25372, [0x0bc3] = 0x253d8, + [0x0bc4] = 0x254d0, [0x0bc5] = 0x254d6, [0x0bc6] = 0x254d7, [0x0bc7] = 0x254ca, + [0x0bc8] = 0x254cd, [0x0bc9] = 0x2568a, [0x0bca] = 0x25689, [0x0bcb] = 0x2568b, + [0x0bcc] = 0x257d3, [0x0bcd] = 0x257da, [0x0bce] = 0x257ce, [0x0bcf] = 0x257d2, + [0x0bd0] = 0x415e, [0x0bd1] = 0x257d4, [0x0bd2] = 0x257d7, [0x0bd3] = 0x257d5, + [0x0bd4] = 0x257fb, [0x0bd5] = 0x257cd, [0x0bd6] = 0x257fa, [0x0bd7] = 0x257d6, + [0x0bd8] = 0x41a6, [0x0bd9] = 0x2599b, [0x0bda] = 0x2599e, [0x0bdb] = 0x2599d, + [0x0bdc] = 0x259a4, [0x0bdd] = 0x2599f, [0x0bde] = 0x259a5, [0x0bdf] = 0x259a8, + [0x0be0] = 0x25a8f, [0x0be1] = 0x25a8c, [0x0be2] = 0x25a95, [0x0be3] = 0x25b60, + [0x0be4] = 0x25b55, [0x0be5] = 0x25b5c, [0x0be6] = 0x25b6f, [0x0be7] = 0x25b51, + [0x0be8] = 0x25b61, [0x0be9] = 0x25ba7, [0x0bea] = 0x25b5e, [0x0beb] = 0x25b62, + [0x0bec] = 0x25b54, [0x0bed] = 0x25b6e, [0x0bee] = 0x25b52, [0x0bef] = 0x25b58, + [0x0bf0] = 0x25b6d, [0x0bf1] = 0x25b5f, [0x0bf2] = 0x25b6c, [0x0bf3] = 0x25b50, + [0x0bf4] = 0x25b5d, [0x0bf5] = 0x25b8e, [0x0bf6] = 0x25e72, [0x0bf7] = 0x25e78, + [0x0bf8] = 0x25e75, [0x0bf9] = 0x25e76, [0x0bfa] = 0x25e7c, [0x0bfb] = 0x25e7e, + [0x0bfc] = 0x25e7d, [0x0bfd] = 0x26015, [0x0bfe] = 0x26014, [0x0bff] = 0x2601d, + [0x0c00] = 0x2601c, [0x0c01] = 0x26023, [0x0c02] = 0x26057, [0x0c03] = 0x262c8, + [0x0c04] = 0x435d, [0x0c05] = 0x262c9, [0x0c06] = 0x262c5, [0x0c07] = 0x26387, + [0x0c08] = 0x2638a, [0x0c09] = 0x26394, [0x0c0a] = 0x26439, [0x0c0b] = 0x26440, + [0x0c0c] = 0x2643e, [0x0c0d] = 0x26438, [0x0c0e] = 0x264d6, [0x0c0f] = 0x43b8, + [0x0c10] = 0x26577, [0x0c11] = 0x26578, [0x0c12] = 0x2657d, [0x0c13] = 0x266dd, + [0x0c14] = 0x2675e, [0x0c15] = 0x26777, [0x0c16] = 0x267d4, [0x0c17] = 0x26766, + [0x0c18] = 0x2675f, [0x0c19] = 0x26773, [0x0c1a] = 0x26772, [0x0c1b] = 0x26797, + [0x0c1c] = 0x2675a, [0x0c1d] = 0x26796, [0x0c1e] = 0x2675d, [0x0c1f] = 0x26765, + [0x0c20] = 0x26770, [0x0c21] = 0x26775, [0x0c22] = 0x26774, [0x0c23] = 0x2675c, + [0x0c24] = 0x26760, [0x0c25] = 0x4434, [0x0c26] = 0x2676d, [0x0c27] = 0x26941, + [0x0c28] = 0x26a3c, [0x0c29] = 0x26a3e, [0x0c2a] = 0x446f, [0x0c2b] = 0x26a49, + [0x0c2c] = 0x26be4, [0x0c2d] = 0x26d0c, [0x0c2e] = 0x26d15, [0x0c2f] = 0x26d0e, + [0x0c30] = 0x26cd4, [0x0c31] = 0x26cc7, [0x0c32] = 0x26d14, [0x0c33] = 0x26cdb, + [0x0c34] = 0x26d5f, [0x0c35] = 0x26ced, [0x0c36] = 0x26d09, [0x0c37] = 0x26ccf, + [0x0c38] = 0x26cff, [0x0c39] = 0x26d1a, [0x0c3a] = 0x26cf5, [0x0c3b] = 0x26cee, + [0x0c3c] = 0x26ce5, [0x0c3d] = 0x26d0d, [0x0c3e] = 0x26cdf, [0x0c3f] = 0x26cec, + [0x0c40] = 0x26cd7, [0x0c41] = 0x26d2c, [0x0c42] = 0x26ccd, [0x0c43] = 0x26ce3, + [0x0c44] = 0x26d00, [0x0c45] = 0x26ceb, [0x0c46] = 0x26cfd, [0x0c47] = 0x26d0f, + [0x0c48] = 0x26d2d, [0x0c49] = 0x26d50, [0x0c4a] = 0x26cfe, [0x0c4b] = 0x26cc4, + [0x0c4c] = 0x26ce1, [0x0c4d] = 0x26cf9, [0x0c4e] = 0x271bb, [0x0c4f] = 0x271bc, + [0x0c50] = 0x4594, [0x0c51] = 0x4593, [0x0c52] = 0x271ba, [0x0c53] = 0x272d0, + [0x0c54] = 0x272d6, [0x0c55] = 0x272ce, [0x0c56] = 0x272e1, [0x0c57] = 0x272d5, + [0x0c58] = 0x272cf, [0x0c59] = 0x272d3, [0x0c5a] = 0x8714, [0x0c5b] = 0x272d4, + [0x0c5c] = 0x275b5, [0x0c5d] = 0x27690, [0x0c5e] = 0x276a1, [0x0c5f] = 0x27681, + [0x0c60] = 0x27685, [0x0c61] = 0x2766e, [0x0c62] = 0x27688, [0x0c63] = 0x27682, + [0x0c64] = 0x27686, [0x0c65] = 0x2768f, [0x0c66] = 0x27689, [0x0c67] = 0x27680, + [0x0c68] = 0x27684, [0x0c69] = 0x88d1, [0x0c6a] = 0x27829, [0x0c6b] = 0x2782b, + [0x0c6c] = 0x2782a, [0x0c6d] = 0x27830, [0x0c6e] = 0x278e2, [0x0c6f] = 0x278e3, + [0x0c70] = 0x278e1, [0x0c71] = 0x279d5, [0x0c72] = 0x279c4, [0x0c73] = 0x279c9, + [0x0c74] = 0x279e0, [0x0c75] = 0x279df, [0x0c76] = 0x279cb, [0x0c77] = 0x279dd, + [0x0c78] = 0x279e8, [0x0c79] = 0x279d4, [0x0c7a] = 0x27a1c, [0x0c7b] = 0x27bb5, + [0x0c7c] = 0x27bb6, [0x0c7d] = 0x27be5, [0x0c7e] = 0x27c45, [0x0c7f] = 0x27c49, + [0x0c80] = 0x27c40, [0x0c81] = 0x27c46, [0x0c82] = 0x27c44, [0x0c83] = 0x27c4a, + [0x0c84] = 0x27cc9, [0x0c85] = 0x27cc4, [0x0c86] = 0x27cc2, [0x0c87] = 0x27d68, + [0x0c88] = 0x8ccb, [0x0c89] = 0x27d82, [0x0c8a] = 0x27d6b, [0x0c8b] = 0x27d67, + [0x0c8c] = 0x27d6c, [0x0c8d] = 0x27d6d, [0x0c8e] = 0x27d71, [0x0c8f] = 0x4792, + [0x0c90] = 0x27ed7, [0x0c91] = 0x27ed2, [0x0c92] = 0x27ed9, [0x0c93] = 0x47aa, + [0x0c94] = 0x27ebc, [0x0c95] = 0x27edd, [0x0c96] = 0x27ed6, [0x0c97] = 0x47a7, + [0x0c98] = 0x27ed8, [0x0c99] = 0x28020, [0x0c9a] = 0x28016, [0x0c9b] = 0x28018, + [0x0c9c] = 0x28015, [0x0c9d] = 0x28019, [0x0c9e] = 0x28027, [0x0c9f] = 0x28050, + [0x0ca0] = 0x2801d, [0x0ca1] = 0x2802c, [0x0ca2] = 0x2801c, [0x0ca3] = 0x28029, + [0x0ca4] = 0x2802b, [0x0ca5] = 0x28024, [0x0ca6] = 0x47ef, [0x0ca7] = 0x28028, + [0x0ca8] = 0x28239, [0x0ca9] = 0x282f2, [0x0caa] = 0x282f0, [0x0cab] = 0x8eed, + [0x0cac] = 0x282ed, [0x0cad] = 0x282ef, [0x0cae] = 0x282ea, [0x0caf] = 0x28301, + [0x0cb0] = 0x284bc, [0x0cb1] = 0x2855c, [0x0cb2] = 0x2855b, [0x0cb3] = 0x2855a, + [0x0cb4] = 0x28526, [0x0cb5] = 0x28743, [0x0cb6] = 0x28733, [0x0cb7] = 0x2873a, + [0x0cb8] = 0x28737, [0x0cb9] = 0x28736, [0x0cba] = 0x2873c, [0x0cbb] = 0x28734, + [0x0cbc] = 0x2874a, [0x0cbd] = 0x2873b, [0x0cbe] = 0x28735, [0x0cbf] = 0x2873d, + [0x0cc0] = 0x28740, [0x0cc1] = 0x2873e, [0x0cc2] = 0x28717, [0x0cc3] = 0x28826, + [0x0cc4] = 0x28824, [0x0cc5] = 0x28810, [0x0cc6] = 0x28836, [0x0cc7] = 0x28825, + [0x0cc8] = 0x4922, [0x0cc9] = 0x28966, [0x0cca] = 0x28c7f, [0x0ccb] = 0x28c7a, + [0x0ccc] = 0x28cfb, [0x0ccd] = 0x28cfd, [0x0cce] = 0x28cfc, [0x0ccf] = 0x28cfa, + [0x0cd0] = 0x28ed6, [0x0cd1] = 0x28ed2, [0x0cd2] = 0x28ec8, [0x0cd3] = 0x28ec2, + [0x0cd4] = 0x28ec7, [0x0cd5] = 0x28ecd, [0x0cd6] = 0x28ec1, [0x0cd7] = 0x28ec6, + [0x0cd8] = 0x28ecc, [0x0cd9] = 0x28fa1, [0x0cda] = 0x29095, [0x0cdb] = 0x29094, + [0x0cdc] = 0x29097, [0x0cdd] = 0x29096, [0x0cde] = 0x29093, [0x0cdf] = 0x290a1, + [0x0ce0] = 0x29209, [0x0ce1] = 0x29208, [0x0ce2] = 0x29267, [0x0ce3] = 0x29265, + [0x0ce4] = 0x29262, [0x0ce5] = 0x29261, [0x0ce6] = 0x29397, [0x0ce7] = 0x29401, + [0x0ce8] = 0x29419, [0x0ce9] = 0x29418, [0x0cea] = 0x2945c, [0x0ceb] = 0x29467, + [0x0cec] = 0x2946c, [0x0ced] = 0x4ab5, [0x0cef] = 0x29466, [0x0cf0] = 0x29461, + [0x0cf1] = 0x2946e, [0x0cf2] = 0x2945d, [0x0cf3] = 0x2945a, [0x0cf4] = 0x295a2, + [0x0cf5] = 0x295a9, [0x0cf6] = 0x295a5, [0x0cf7] = 0x295a6, [0x0cf8] = 0x295b2, + [0x0cf9] = 0x295a3, [0x0cfa] = 0x296ac, [0x0cfb] = 0x296aa, [0x0cfc] = 0x296af, + [0x0cfd] = 0x296ab, [0x0cfe] = 0x296b1, [0x0cff] = 0x296c6, [0x0d00] = 0x296ad, + [0x0d01] = 0x296b9, [0x0d02] = 0x29870, [0x0d03] = 0x4b75, [0x0d04] = 0x29c0c, + [0x0d05] = 0x29c81, [0x0d06] = 0x29c83, [0x0d07] = 0x29c7e, [0x0d08] = 0x29d51, + [0x0d09] = 0x29f99, [0x0d0a] = 0x29f94, [0x0d0b] = 0x29f95, [0x0d0c] = 0x2a2fe, + [0x0d0d] = 0x2a418, [0x0d0e] = 0x20105, [0x0d0f] = 0x20372, [0x0d10] = 0x3482, + [0x0d11] = 0x20399, [0x0d12] = 0x204ad, [0x0d13] = 0x20606, [0x0d14] = 0x207c2, + [0x0d15] = 0x207cb, [0x0d16] = 0x207d5, [0x0d17] = 0x207d2, [0x0d18] = 0x207cc, + [0x0d19] = 0x207d7, [0x0d1a] = 0x207c5, [0x0d1b] = 0x207ca, [0x0d1c] = 0x52ec, + [0x0d1d] = 0x208a2, [0x0d1e] = 0x208a3, [0x0d1f] = 0x208a1, [0x0d20] = 0x52e8, + [0x0d21] = 0x208a6, [0x0d22] = 0x208a4, [0x0d23] = 0x208ff, [0x0d24] = 0x20900, + [0x0d25] = 0x3535, [0x0d26] = 0x20a06, [0x0d27] = 0x20a25, [0x0d28] = 0x20a9f, + [0x0d29] = 0x20b7f, [0x0d2a] = 0x20eea, [0x0d2b] = 0x20eeb, [0x0d2c] = 0x20ede, + [0x0d2d] = 0x20f18, [0x0d2e] = 0x20ee0, [0x0d2f] = 0x20ee8, [0x0d30] = 0x20edf, + [0x0d31] = 0x20ef1, [0x0d32] = 0x20eec, [0x0d33] = 0x20f1a, [0x0d34] = 0x20ee6, + [0x0d35] = 0x20ee1, [0x0d36] = 0x20f5d, [0x0d37] = 0x20077, [0x0d38] = 0x20f1e, + [0x0d39] = 0x35f0, [0x0d3a] = 0x20f80, [0x0d3b] = 0x21217, [0x0d3c] = 0x2141d, + [0x0d3d] = 0x213f7, [0x0d3e] = 0x213ef, [0x0d3f] = 0x213ee, [0x0d40] = 0x213ed, + [0x0d41] = 0x213f5, [0x0d42] = 0x2141e, [0x0d43] = 0x215bd, [0x0d44] = 0x257ff, + [0x0d45] = 0x215be, [0x0d46] = 0x2166d, [0x0d47] = 0x21676, [0x0d48] = 0x2184c, + [0x0d49] = 0x21819, [0x0d4a] = 0x21848, [0x0d4b] = 0x2181e, [0x0d4c] = 0x2184a, + [0x0d4d] = 0x21849, [0x0d4e] = 0x21826, [0x0d4f] = 0x21995, [0x0d50] = 0x21a85, + [0x0d51] = 0x21a7e, [0x0d52] = 0x21a97, [0x0d53] = 0x21a7d, [0x0d54] = 0x21b42, + [0x0d55] = 0x21b9e, [0x0d56] = 0x21c0c, [0x0d57] = 0x21c0b, [0x0d58] = 0x21c0e, + [0x0d59] = 0x21ccf, [0x0d5a] = 0x21ed8, [0x0d5b] = 0x21ee0, [0x0d5c] = 0x21ee8, + [0x0d5d] = 0x21ee9, [0x0d5e] = 0x21ee2, [0x0d5f] = 0x21ee1, [0x0d60] = 0x21eda, + [0x0d61] = 0x21ee3, [0x0d62] = 0x21ed9, [0x0d63] = 0x21ef0, [0x0d64] = 0x21ee7, + [0x0d65] = 0x21ee4, [0x0d66] = 0x22123, [0x0d67] = 0x22131, [0x0d68] = 0x22133, + [0x0d69] = 0x2210c, [0x0d6a] = 0x269e0, [0x0d6b] = 0x22126, [0x0d6c] = 0x22124, + [0x0d6d] = 0x22132, [0x0d6e] = 0x22127, [0x0d6f] = 0x22121, [0x0d70] = 0x22130, + [0x0d71] = 0x221a2, [0x0d72] = 0x221cc, [0x0d73] = 0x22296, [0x0d75] = 0x22298, + [0x0d76] = 0x2229c, [0x0d77] = 0x2229b, [0x0d78] = 0x2236b, [0x0d79] = 0x22412, + [0x0d7a] = 0x22414, [0x0d7b] = 0x2255a, [0x0d7c] = 0x22554, [0x0d7d] = 0x22551, + [0x0d7e] = 0x2255e, [0x0d7f] = 0x22558, [0x0d80] = 0x38f0, [0x0d81] = 0x22559, + [0x0d82] = 0x2279a, [0x0d83] = 0x227f2, [0x0d84] = 0x227ad, [0x0d85] = 0x22820, + [0x0d86] = 0x227f1, [0x0d87] = 0x227f0, [0x0d88] = 0x227f3, [0x0d89] = 0x227f4, + [0x0d8a] = 0x227e9, [0x0d8b] = 0x227fe, [0x0d8c] = 0x2282e, [0x0d8d] = 0x227e8, + [0x0d8e] = 0x227e7, [0x0d8f] = 0x227ff, [0x0d90] = 0x227f5, [0x0d91] = 0x229e5, + [0x0d92] = 0x229e7, [0x0d93] = 0x229e6, [0x0d94] = 0x229e9, [0x0d95] = 0x22a58, + [0x0d96] = 0x22c6c, [0x0d97] = 0x22cd9, [0x0d98] = 0x3a3e, [0x0d99] = 0x22ccb, + [0x0d9a] = 0x3a39, [0x0d9b] = 0x22cbe, [0x0d9c] = 0x22cb5, [0x0d9d] = 0x22cd1, + [0x0d9e] = 0x22cc2, [0x0d9f] = 0x22cb6, [0x0da0] = 0x22cd3, [0x0da2] = 0x22eda, + [0x0da4] = 0x22fae, [0x0da5] = 0x3aa1, [0x0da6] = 0x22fac, [0x0da7] = 0x22fa9, + [0x0da8] = 0x22fba, [0x0da9] = 0x22fa7, [0x0daa] = 0x22fb3, [0x0dab] = 0x22fbd, + [0x0dac] = 0x22fb1, [0x0dad] = 0x2310e, [0x0dae] = 0x23111, [0x0daf] = 0x2310f, + [0x0db0] = 0x23252, [0x0db1] = 0x2326a, [0x0db2] = 0x23254, [0x0db3] = 0x23255, + [0x0db4] = 0x23253, [0x0db5] = 0x23257, [0x0db7] = 0x2325b, [0x0db8] = 0x23258, + [0x0db9] = 0x23259, [0x0dba] = 0x3b3b, [0x0dbb] = 0x235b8, [0x0dbc] = 0x235b5, + [0x0dbd] = 0x235bf, [0x0dbe] = 0x235c1, [0x0dbf] = 0x235bb, [0x0dc0] = 0x3bb7, + [0x0dc1] = 0x235c3, [0x0dc2] = 0x235ad, [0x0dc3] = 0x235a8, [0x0dc4] = 0x235ae, + [0x0dc5] = 0x235aa, [0x0dc6] = 0x235d0, [0x0dc7] = 0x235b1, [0x0dc8] = 0x235bc, + [0x0dc9] = 0x235b7, [0x0dca] = 0x235b0, [0x0dcb] = 0x235fa, [0x0dcc] = 0x235fb, + [0x0dcd] = 0x235b9, [0x0dce] = 0x23907, [0x0dcf] = 0x238fc, [0x0dd0] = 0x238ff, + [0x0dd1] = 0x238f2, [0x0dd2] = 0x238f8, [0x0dd3] = 0x238f4, [0x0dd4] = 0x3c57, + [0x0dd5] = 0x3c70, [0x0dd6] = 0x23aae, [0x0dd7] = 0x23b0f, [0x0dd8] = 0x23b10, + [0x0dd9] = 0x29ac1, [0x0dda] = 0x23bc7, [0x0ddb] = 0x23bc6, [0x0ddc] = 0x23bce, + [0x0ddd] = 0x3ca7, [0x0dde] = 0x23bdc, [0x0ddf] = 0x23ed5, [0x0de0] = 0x23ed3, + [0x0de1] = 0x23f20, [0x0de2] = 0x23ee2, [0x0de3] = 0x23ef1, [0x0de4] = 0x23edb, + [0x0de5] = 0x23eea, [0x0de6] = 0x23eeb, [0x0de7] = 0x23ee1, [0x0de8] = 0x23eff, + [0x0de9] = 0x23ed6, [0x0dea] = 0x23ee0, [0x0deb] = 0x23ed7, [0x0dec] = 0x23ee5, + [0x0ded] = 0x3d54, [0x0dee] = 0x2431b, [0x0def] = 0x24310, [0x0df0] = 0x2430f, + [0x0df1] = 0x2430e, [0x0df2] = 0x24339, [0x0df3] = 0x2430a, [0x0df4] = 0x24314, + [0x0df5] = 0x2430c, [0x0df6] = 0x24523, [0x0df7] = 0x2455a, [0x0df8] = 0x245e2, + [0x0df9] = 0x24693, [0x0dfa] = 0x246b0, [0x0dfb] = 0x246ab, [0x0dfc] = 0x246bd, + [0x0dfd] = 0x246b1, [0x0dfe] = 0x2468d, [0x0dff] = 0x246ad, [0x0e00] = 0x246aa, + [0x0e01] = 0x246ac, [0x0e02] = 0x246bc, [0x0e03] = 0x246c9, [0x0e04] = 0x24847, + [0x0e05] = 0x24862, [0x0e06] = 0x24840, [0x0e07] = 0x24844, [0x0e08] = 0x2483f, + [0x0e09] = 0x24843, [0x0e0a] = 0x2483d, [0x0e0b] = 0x24860, [0x0e0c] = 0x2485f, + [0x0e0d] = 0x2483a, [0x0e0e] = 0x24842, [0x0e0f] = 0x2485e, [0x0e10] = 0x2485d, + [0x0e11] = 0x249bc, [0x0e12] = 0x249e0, [0x0e13] = 0x249ee, [0x0e14] = 0x249eb, + [0x0e15] = 0x24a0d, [0x0e16] = 0x24b09, [0x0e17] = 0x24b0c, [0x0e18] = 0x24b69, + [0x0e19] = 0x24b74, [0x0e1a] = 0x24b67, [0x0e1b] = 0x3f31, [0x0e1c] = 0x7527, + [0x0e1d] = 0x24cad, [0x0e1e] = 0x24dff, [0x0e1f] = 0x24e16, [0x0e20] = 0x24e08, + [0x0e21] = 0x24e09, [0x0e22] = 0x24e00, [0x0e23] = 0x24dfc, [0x0e24] = 0x24e13, + [0x0e25] = 0x24e14, [0x0e26] = 0x24e0a, [0x0e27] = 0x2983e, [0x0e28] = 0x24e29, + [0x0e29] = 0x24e17, [0x0e2a] = 0x24e3b, [0x0e2b] = 0x24dfb, [0x0e2c] = 0x3fbf, + [0x0e2d] = 0x24e0e, [0x0e2e] = 0x3fe4, [0x0e2f] = 0x25008, [0x0e30] = 0x2521b, + [0x0e31] = 0x2521a, [0x0e32] = 0x25219, [0x0e33] = 0x25202, [0x0e34] = 0x404a, + [0x0e35] = 0x25217, [0x0e36] = 0x25207, [0x0e37] = 0x25213, [0x0e38] = 0x25209, + [0x0e39] = 0x2520a, [0x0e3a] = 0x25212, [0x0e3b] = 0x252aa, [0x0e3c] = 0x25238, + [0x0e3d] = 0x2537b, [0x0e3e] = 0x2537c, [0x0e3f] = 0x2537a, [0x0e40] = 0x253ea, + [0x0e41] = 0x253eb, [0x0e42] = 0x253ef, [0x0e43] = 0x253f0, [0x0e44] = 0x25509, + [0x0e45] = 0x25502, [0x0e46] = 0x25501, [0x0e47] = 0x2552b, [0x0e48] = 0x25507, + [0x0e49] = 0x40cf, [0x0e4a] = 0x25528, [0x0e4b] = 0x254fb, [0x0e4c] = 0x2552a, + [0x0e4d] = 0x254fe, [0x0e4e] = 0x25504, [0x0e4f] = 0x25529, [0x0e50] = 0x2550a, + [0x0e51] = 0x798c, [0x0e52] = 0x256c2, [0x0e53] = 0x7991, [0x0e54] = 0x256a6, + [0x0e55] = 0x4114, [0x0e56] = 0x22fc6, [0x0e57] = 0x21c07, [0x0e58] = 0x2580a, + [0x0e59] = 0x257fd, [0x0e5a] = 0x25806, [0x0e5b] = 0x2580d, [0x0e5c] = 0x25809, + [0x0e5d] = 0x2580b, [0x0e5e] = 0x25800, [0x0e5f] = 0x25805, [0x0e60] = 0x2583d, + [0x0e61] = 0x259d5, [0x0e62] = 0x259bf, [0x0e63] = 0x259ba, [0x0e64] = 0x259c7, + [0x0e65] = 0x25a98, [0x0e66] = 0x25a9a, [0x0e67] = 0x420d, [0x0e68] = 0x25ba4, + [0x0e69] = 0x25b9c, [0x0e6a] = 0x25b9d, [0x0e6b] = 0x25ba2, [0x0e6c] = 0x25b96, + [0x0e6d] = 0x25b95, [0x0e6e] = 0x25ba5, [0x0e6f] = 0x25baa, [0x0e70] = 0x25bad, + [0x0e71] = 0x25b9a, [0x0e72] = 0x25ba3, [0x0e73] = 0x25b97, [0x0e74] = 0x25b90, + [0x0e75] = 0x25baf, [0x0e76] = 0x25b8d, [0x0e77] = 0x4201, [0x0e78] = 0x25ba8, + [0x0e79] = 0x25bee, [0x0e7a] = 0x25ea3, [0x0e7b] = 0x25e99, [0x0e7c] = 0x25ea1, + [0x0e7d] = 0x25e9c, [0x0e7e] = 0x25ea4, [0x0e7f] = 0x25ecb, [0x0e80] = 0x26056, + [0x0e81] = 0x26048, [0x0e82] = 0x26059, [0x0e83] = 0x2604a, [0x0e84] = 0x2605c, + [0x0e85] = 0x42f1, [0x0e86] = 0x2604f, [0x0e87] = 0x2604d, [0x0e88] = 0x2605d, + [0x0e89] = 0x2623a, [0x0e8a] = 0x262e3, [0x0e8b] = 0x262e1, [0x0e8c] = 0x262de, + [0x0e8d] = 0x26397, [0x0e8e] = 0x2639a, [0x0e8f] = 0x26448, [0x0e90] = 0x2644a, + [0x0e91] = 0x2644c, [0x0e92] = 0x2644e, [0x0e93] = 0x2644f, [0x0e94] = 0x2644b, + [0x0e95] = 0x2644d, [0x0e96] = 0x26447, [0x0e97] = 0x26451, [0x0e98] = 0x264da, + [0x0e99] = 0x264f9, [0x0e9a] = 0x264fc, [0x0e9b] = 0x264fb, [0x0e9c] = 0x264fd, + [0x0e9d] = 0x264f8, [0x0e9e] = 0x264fa, [0x0e9f] = 0x2658a, [0x0ea0] = 0x2658e, + [0x0ea1] = 0x26588, [0x0ea2] = 0x26589, [0x0ea3] = 0x2658d, [0x0ea4] = 0x26590, + [0x0ea6] = 0x2671c, [0x0ea7] = 0x267ab, [0x0ea8] = 0x267a4, [0x0ea9] = 0x267a8, + [0x0eaa] = 0x267ad, [0x0eab] = 0x2679f, [0x0eac] = 0x2679a, [0x0ead] = 0x267b0, + [0x0eae] = 0x267a5, [0x0eaf] = 0x267d5, [0x0eb0] = 0x267a2, [0x0eb1] = 0x267b2, + [0x0eb2] = 0x2679d, [0x0eb3] = 0x267a1, [0x0eb4] = 0x26915, [0x0eb5] = 0x26942, + [0x0eb6] = 0x26973, [0x0eb7] = 0x26984, [0x0eb8] = 0x269dd, [0x0eb9] = 0x26a5c, + [0x0eba] = 0x26a4c, [0x0ebb] = 0x4476, [0x0ebc] = 0x26a4b, [0x0ebd] = 0x26c67, + [0x0ebe] = 0x26da8, [0x0ebf] = 0x26d7f, [0x0ec0] = 0x26d8d, [0x0ec1] = 0x26d8b, + [0x0ec2] = 0x26df7, [0x0ec3] = 0x26da9, [0x0ec4] = 0x26df4, [0x0ec5] = 0x26d9a, + [0x0ec6] = 0x26d8c, [0x0ec7] = 0x26d95, [0x0ec8] = 0x26d7e, [0x0ec9] = 0x26d77, + [0x0eca] = 0x450a, [0x0ecb] = 0x4503, [0x0ecc] = 0x26d71, [0x0ecd] = 0x26dfd, + [0x0ece] = 0x26d88, [0x0ecf] = 0x26d99, [0x0ed0] = 0x26d6d, [0x0ed1] = 0x26dd4, + [0x0ed2] = 0x26d91, [0x0ed3] = 0x26d7d, [0x0ed4] = 0x26d63, [0x0ed5] = 0x26d75, + [0x0ed6] = 0x26df9, [0x0ed7] = 0x26d8e, [0x0ed8] = 0x26d74, [0x0ed9] = 0x26dd9, + [0x0eda] = 0x26d66, [0x0edb] = 0x26dfa, [0x0edc] = 0x26df5, [0x0edd] = 0x8660, + [0x0ede] = 0x271c1, [0x0edf] = 0x271c9, [0x0ee0] = 0x27303, [0x0ee1] = 0x2732c, + [0x0ee2] = 0x27334, [0x0ee3] = 0x27317, [0x0ee4] = 0x27309, [0x0ee5] = 0x27304, + [0x0ee6] = 0x27306, [0x0ee7] = 0x2731a, [0x0ee8] = 0x2730e, [0x0ee9] = 0x27327, + [0x0eea] = 0x27305, [0x0eeb] = 0x27307, [0x0eec] = 0x27319, [0x0eed] = 0x27314, + [0x0eee] = 0x2730c, [0x0eef] = 0x2731d, [0x0ef0] = 0x27322, [0x0ef1] = 0x27323, + [0x0ef2] = 0x275bb, [0x0ef3] = 0x275bc, [0x0ef4] = 0x275ba, [0x0ef5] = 0x276a9, + [0x0ef6] = 0x276b5, [0x0ef7] = 0x276ac, [0x0ef8] = 0x276aa, [0x0ef9] = 0x276af, + [0x0efa] = 0x276b7, [0x0efb] = 0x4635, [0x0efc] = 0x4636, [0x0efd] = 0x2783d, + [0x0efe] = 0x27845, [0x0eff] = 0x27848, [0x0f00] = 0x2783c, [0x0f01] = 0x2783e, + [0x0f02] = 0x278ec, [0x0f03] = 0x278ed, [0x0f04] = 0x278e9, [0x0f05] = 0x27a0a, + [0x0f06] = 0x27a0b, [0x0f07] = 0x279f8, [0x0f08] = 0x27a04, [0x0f09] = 0x279f6, + [0x0f0a] = 0x279f9, [0x0f0b] = 0x27c53, [0x0f0c] = 0x27c52, [0x0f0d] = 0x27c60, + [0x0f0e] = 0x27c63, [0x0f0f] = 0x27cce, [0x0f10] = 0x27ccd, [0x0f11] = 0x27cd0, + [0x0f12] = 0x27ccc, [0x0f13] = 0x27d87, [0x0f14] = 0x27d8d, [0x0f15] = 0x27d9d, + [0x0f16] = 0x4773, [0x0f17] = 0x27e63, [0x0f18] = 0x27ef4, [0x0f19] = 0x27ef1, + [0x0f1a] = 0x27eff, [0x0f1b] = 0x27ef5, [0x0f1c] = 0x27efc, [0x0f1d] = 0x27ef2, + [0x0f1e] = 0x27ef6, [0x0f1f] = 0x47b1, [0x0f20] = 0x27efa, [0x0f21] = 0x47af, + [0x0f22] = 0x2802e, [0x0f23] = 0x28045, [0x0f24] = 0x28043, [0x0f25] = 0x28051, + [0x0f26] = 0x2804c, [0x0f27] = 0x28073, [0x0f28] = 0x28047, [0x0f29] = 0x2804b, + [0x0f2a] = 0x2804f, [0x0f2b] = 0x47f4, [0x0f2c] = 0x28044, [0x0f2d] = 0x2804d, + [0x0f2e] = 0x2804e, [0x0f2f] = 0x2804a, [0x0f30] = 0x28041, [0x0f31] = 0x28052, + [0x0f32] = 0x2809f, [0x0f33] = 0x28054, [0x0f34] = 0x28059, [0x0f35] = 0x280a2, + [0x0f36] = 0x2824b, [0x0f37] = 0x28248, [0x0f38] = 0x2830d, [0x0f39] = 0x2831f, + [0x0f3a] = 0x28308, [0x0f3b] = 0x2830e, [0x0f3c] = 0x2831d, [0x0f3d] = 0x28304, + [0x0f3e] = 0x28418, [0x0f3f] = 0x2841b, [0x0f40] = 0x28566, [0x0f41] = 0x28562, + [0x0f42] = 0x28583, [0x0f43] = 0x28567, [0x0f44] = 0x28762, [0x0f45] = 0x2874f, + [0x0f46] = 0x2874e, [0x0f47] = 0x28767, [0x0f48] = 0x28753, [0x0f49] = 0x2874d, + [0x0f4a] = 0x2874c, [0x0f4b] = 0x28768, [0x0f4c] = 0x28751, [0x0f4d] = 0x48dc, + [0x0f4e] = 0x28758, [0x0f4f] = 0x2875b, [0x0f50] = 0x28750, [0x0f51] = 0x2876a, + [0x0f52] = 0x28839, [0x0f53] = 0x28838, [0x0f54] = 0x28982, [0x0f55] = 0x28984, + [0x0f56] = 0x28986, [0x0f57] = 0x28c80, [0x0f58] = 0x28c86, [0x0f59] = 0x28d25, + [0x0f5a] = 0x28d11, [0x0f5b] = 0x4999, [0x0f5c] = 0x28d0e, [0x0f5d] = 0x28d15, + [0x0f5e] = 0x28d0f, [0x0f5f] = 0x28d18, [0x0f60] = 0x28d0d, [0x0f61] = 0x28d13, + [0x0f62] = 0x28d16, [0x0f63] = 0x28d19, [0x0f64] = 0x28f08, [0x0f65] = 0x28ef7, + [0x0f66] = 0x28efb, [0x0f67] = 0x28efc, [0x0f68] = 0x28fb4, [0x0f69] = 0x28fbe, + [0x0f6a] = 0x28fc1, [0x0f6b] = 0x290a6, [0x0f6c] = 0x290a5, [0x0f6d] = 0x290a2, + [0x0f6e] = 0x290a4, [0x0f6f] = 0x29212, [0x0f70] = 0x2920e, [0x0f71] = 0x2927a, + [0x0f72] = 0x29278, [0x0f73] = 0x2927d, [0x0f74] = 0x2927e, [0x0f75] = 0x29281, + [0x0f76] = 0x29283, [0x0f77] = 0x29280, [0x0f78] = 0x29282, [0x0f79] = 0x2939b, + [0x0f7a] = 0x29399, [0x0f7b] = 0x2939c, [0x0f7c] = 0x2939a, [0x0f7d] = 0x293a1, + [0x0f7e] = 0x2941a, [0x0f7f] = 0x2941c, [0x0f80] = 0x2948a, [0x0f81] = 0x29479, + [0x0f82] = 0x29473, [0x0f83] = 0x29475, [0x0f84] = 0x2947c, [0x0f85] = 0x29478, + [0x0f86] = 0x29460, [0x0f87] = 0x29483, [0x0f88] = 0x29470, [0x0f89] = 0x4ab6, + [0x0f8a] = 0x4abd, [0x0f8b] = 0x29487, [0x0f8c] = 0x29484, [0x0f8d] = 0x2947b, + [0x0f8e] = 0x2947e, [0x0f8f] = 0x29474, [0x0f90] = 0x295b9, [0x0f91] = 0x295b8, + [0x0f92] = 0x295b7, [0x0f93] = 0x295b5, [0x0f94] = 0x296cc, [0x0f95] = 0x296ce, + [0x0f96] = 0x296d1, [0x0f97] = 0x9904, [0x0f98] = 0x296cb, [0x0f99] = 0x999b, + [0x0f9a] = 0x2987e, [0x0f9b] = 0x2987a, [0x0f9c] = 0x29877, [0x0f9d] = 0x2988c, + [0x0f9e] = 0x298e1, [0x0f9f] = 0x29a20, [0x0fa0] = 0x29a1e, [0x0fa1] = 0x29ac2, + [0x0fa2] = 0x29b0f, [0x0fa3] = 0x29b00, [0x0fa4] = 0x4bf4, [0x0fa5] = 0x29b10, + [0x0fa6] = 0x29c0d, [0x0fa7] = 0x29c0e, [0x0fa8] = 0x29c8e, [0x0fa9] = 0x29c8d, + [0x0faa] = 0x29c8a, [0x0fab] = 0x29c8b, [0x0fac] = 0x29c8c, [0x0fad] = 0x29c8f, + [0x0fae] = 0x29d57, [0x0faf] = 0x4c35, [0x0fb0] = 0x29d55, [0x0fb1] = 0x29d5b, + [0x0fb2] = 0x29fac, [0x0fb3] = 0x29fa7, [0x0fb4] = 0x29fa0, [0x0fb5] = 0x29f9e, + [0x0fb6] = 0x4caa, [0x0fb7] = 0x2a28d, [0x0fb8] = 0x4d1f, [0x0fb9] = 0x2a393, + [0x0fba] = 0x2a394, [0x0fbb] = 0x2a392, [0x0fbc] = 0x20181, [0x0fbd] = 0x203d6, + [0x0fbe] = 0x203c3, [0x0fbf] = 0x203e4, [0x0fc0] = 0x203e2, [0x0fc1] = 0x20409, + [0x0fc2] = 0x203bf, [0x0fc3] = 0x203c8, [0x0fc4] = 0x203c7, [0x0fc5] = 0x204b5, + [0x0fc6] = 0x204b2, [0x0fc7] = 0x2060c, [0x0fc8] = 0x2060b, [0x0fc9] = 0x2060a, + [0x0fca] = 0x20605, [0x0fcb] = 0x207d3, [0x0fcc] = 0x207e6, [0x0fcd] = 0x207e9, + [0x0fce] = 0x207f0, [0x0fcf] = 0x207ea, [0x0fd0] = 0x207e7, [0x0fd1] = 0x208b1, + [0x0fd2] = 0x208b3, [0x0fd3] = 0x208b4, [0x0fd4] = 0x208b0, [0x0fd5] = 0x2095c, + [0x0fd6] = 0x2095d, [0x0fd7] = 0x2095e, [0x0fd8] = 0x209c0, [0x0fd9] = 0x20aaf, + [0x0fda] = 0x3550, [0x0fdb] = 0x20b86, [0x0fdc] = 0x20b83, [0x0fdd] = 0x20b84, + [0x0fde] = 0x20f5c, [0x0fdf] = 0x20f70, [0x0fe0] = 0x20f8c, [0x0fe1] = 0x20f7b, + [0x0fe2] = 0x20f66, [0x0fe3] = 0x20f79, [0x0fe4] = 0x20f63, [0x0fe5] = 0x20fc5, + [0x0fe6] = 0x20f6b, [0x0fe7] = 0x20f6d, [0x0fe8] = 0x20f72, [0x0fe9] = 0x20f69, + [0x0fea] = 0x20f75, [0x0feb] = 0x20f89, [0x0fec] = 0x20fc6, [0x0fed] = 0x20fa5, + [0x0fee] = 0x203e7, [0x0fef] = 0x20f6a, [0x0ff0] = 0x20f97, [0x0ff1] = 0x2145a, + [0x0ff2] = 0x2145c, [0x0ff3] = 0x21459, [0x0ff4] = 0x21424, [0x0ff5] = 0x21425, + [0x0ff6] = 0x21430, [0x0ff7] = 0x21458, [0x0ff8] = 0x21431, [0x0ff9] = 0x21576, + [0x0ffa] = 0x215c1, [0x0ffb] = 0x21685, [0x0ffc] = 0x2167d, [0x0ffd] = 0x21865, + [0x0ffe] = 0x21887, [0x0fff] = 0x21852, [0x1000] = 0x21854, [0x1001] = 0x2188a, + [0x1002] = 0x21850, [0x1003] = 0x21886, [0x1004] = 0x2184f, [0x1005] = 0x21868, + [0x1006] = 0x2199d, [0x1007] = 0x21aa0, [0x1008] = 0x21aba, [0x1009] = 0x21abd, + [0x100a] = 0x21ab8, [0x100b] = 0x21ba6, [0x100c] = 0x377b, [0x100d] = 0x21cde, + [0x100e] = 0x21cd8, [0x100f] = 0x21cd1, [0x1010] = 0x21f13, [0x1011] = 0x3809, + [0x1012] = 0x21f0e, [0x1013] = 0x21f1b, [0x1014] = 0x21f3a, [0x1015] = 0x3807, + [0x1016] = 0x21f1c, [0x1017] = 0x21f12, [0x1018] = 0x21f16, [0x1019] = 0x21f1a, + [0x101a] = 0x21448, [0x101b] = 0x2214b, [0x101c] = 0x22137, [0x101d] = 0x22136, + [0x101e] = 0x22138, [0x101f] = 0x2213a, [0x1020] = 0x22149, [0x1021] = 0x2213c, + [0x1022] = 0x2214a, [0x1023] = 0x222b1, [0x1024] = 0x222c2, [0x1025] = 0x222b5, + [0x1026] = 0x222c4, [0x1027] = 0x222b6, [0x1028] = 0x2241e, [0x1029] = 0x2241f, + [0x102a] = 0x224af, [0x102b] = 0x2256b, [0x102c] = 0x2256f, [0x102d] = 0x22792, + [0x102e] = 0x227e4, [0x102f] = 0x2282c, [0x1030] = 0x227ef, [0x1032] = 0x2284f, + [0x1033] = 0x22852, [0x1034] = 0x22850, [0x1035] = 0x2283a, [0x1036] = 0x22837, + [0x1037] = 0x22847, [0x1038] = 0x22864, [0x1039] = 0x22840, [0x103a] = 0x2283c, + [0x103b] = 0x22845, [0x103c] = 0x22841, [0x103d] = 0x229f3, [0x103e] = 0x39bb, + [0x103f] = 0x22cc1, [0x1040] = 0x22cb4, [0x1041] = 0x3a4b, [0x1042] = 0x22d2a, + [0x1043] = 0x22d22, [0x1044] = 0x22d29, [0x1045] = 0x3a4d, [0x1046] = 0x22d3e, + [0x1047] = 0x22d3c, [0x1048] = 0x22d30, [0x1049] = 0x22fc7, [0x104a] = 0x22fd5, + [0x104b] = 0x22fd6, [0x104c] = 0x22fd3, [0x104d] = 0x22fce, [0x104e] = 0x22fc8, + [0x104f] = 0x2305c, [0x1050] = 0x2305f, [0x1051] = 0x23062, [0x1052] = 0x3ac2, + [0x1053] = 0x230bd, [0x1054] = 0x230bf, [0x1055] = 0x2325c, [0x1056] = 0x232b6, + [0x1057] = 0x3b1a, [0x1058] = 0x2329d, [0x1059] = 0x2327f, [0x105a] = 0x3b12, + [0x105b] = 0x23294, [0x105c] = 0x23281, [0x105d] = 0x23347, [0x105e] = 0x23346, + [0x105f] = 0x3b3c, [0x1060] = 0x23394, [0x1061] = 0x23675, [0x1062] = 0x2361a, + [0x1063] = 0x2362a, [0x1064] = 0x23632, [0x1065] = 0x23617, [0x1066] = 0x23623, + [0x1067] = 0x23674, [0x1068] = 0x3bc3, [0x1069] = 0x23676, [0x106a] = 0x2362e, + [0x106b] = 0x23625, [0x106c] = 0x23620, [0x106d] = 0x23671, [0x106e] = 0x23616, + [0x106f] = 0x23670, [0x1070] = 0x2362c, [0x1071] = 0x2362f, [0x1072] = 0x2361f, + [0x1073] = 0x23664, [0x1074] = 0x3bc0, [0x1075] = 0x23908, [0x1076] = 0x23914, + [0x1077] = 0x2390a, [0x1078] = 0x2390b, [0x1079] = 0x23a4f, [0x107a] = 0x23a59, + [0x107b] = 0x23a54, [0x107c] = 0x23a51, [0x107d] = 0x23ab6, [0x107e] = 0x23bec, + [0x107f] = 0x23bed, [0x1080] = 0x23bea, [0x1081] = 0x23eee, [0x1082] = 0x23f5a, + [0x1083] = 0x23f73, [0x1084] = 0x23f65, [0x1085] = 0x23f61, [0x1086] = 0x23f55, + [0x1087] = 0x23f6b, [0x1088] = 0x23f64, [0x1089] = 0x23f5b, [0x108a] = 0x23f4c, + [0x108b] = 0x23f6f, [0x108c] = 0x23f84, [0x108d] = 0x23f70, [0x108e] = 0x2435d, + [0x108f] = 0x24357, [0x1090] = 0x24366, [0x1091] = 0x24353, [0x1092] = 0x24398, + [0x1093] = 0x24397, [0x1094] = 0x24528, [0x1095] = 0x245eb, [0x1096] = 0x245ea, + [0x1097] = 0x245e8, [0x1098] = 0x245ec, [0x1099] = 0x245ef, [0x109a] = 0x246d1, + [0x109b] = 0x246ca, [0x109c] = 0x729f, [0x109d] = 0x246cf, [0x109e] = 0x246cd, + [0x109f] = 0x246ce, [0x10a0] = 0x24870, [0x10a1] = 0x24867, [0x10a2] = 0x24873, + [0x10a3] = 0x2486d, [0x10a4] = 0x24876, [0x10a5] = 0x24879, [0x10a6] = 0x2486a, + [0x10a7] = 0x2488b, [0x10a8] = 0x24872, [0x10a9] = 0x24871, [0x10aa] = 0x2486e, + [0x10ab] = 0x2487a, [0x10ac] = 0x24a16, [0x10ad] = 0x24a39, [0x10ae] = 0x24a3b, + [0x10af] = 0x24b10, [0x10b0] = 0x24b96, [0x10b1] = 0x24b7b, [0x10b2] = 0x24b7c, + [0x10b3] = 0x24b7d, [0x10b4] = 0x24cbe, [0x10b5] = 0x24e5c, [0x10b6] = 0x24e38, + [0x10b7] = 0x24e39, [0x10b8] = 0x24e2e, [0x10b9] = 0x24e34, [0x10ba] = 0x24e32, + [0x10bb] = 0x24e5b, [0x10bc] = 0x24e33, [0x10bd] = 0x24e3c, [0x10be] = 0x3fe5, + [0x10bf] = 0x2500e, [0x10c0] = 0x2500f, [0x10c1] = 0x25010, [0x10c2] = 0x25087, + [0x10c3] = 0x2525b, [0x10c4] = 0x25253, [0x10c5] = 0x405f, [0x10c6] = 0x2525c, + [0x10c7] = 0x2523f, [0x10c8] = 0x25259, [0x10c9] = 0x2524a, [0x10ca] = 0x25244, + [0x10cb] = 0x2524c, [0x10cc] = 0x25240, [0x10cd] = 0x2525f, [0x10ce] = 0x2525e, + [0x10cf] = 0x2524e, [0x10d0] = 0x25254, [0x10d1] = 0x25243, [0x10d2] = 0x25287, + [0x10d3] = 0x25382, [0x10d4] = 0x25385, [0x10d5] = 0x25531, [0x10d6] = 0x25547, + [0x10d7] = 0x2552e, [0x10d8] = 0x2552f, [0x10d9] = 0x25548, [0x10da] = 0x25534, + [0x10db] = 0x4118, [0x10dc] = 0x2059f, [0x10dd] = 0x25832, [0x10de] = 0x25836, + [0x10df] = 0x25833, [0x10e0] = 0x25831, [0x10e1] = 0x25840, [0x10e2] = 0x25841, + [0x10e3] = 0x259dd, [0x10e4] = 0x259d2, [0x10e5] = 0x259d9, [0x10e6] = 0x41ad, + [0x10e7] = 0x259df, [0x10e8] = 0x259db, [0x10e9] = 0x259d8, [0x10ea] = 0x259d3, + [0x10eb] = 0x259de, [0x10ec] = 0x259e0, [0x10ed] = 0x259d4, [0x10ee] = 0x259d7, + [0x10ef] = 0x259da, [0x10f0] = 0x25aa7, [0x10f1] = 0x25bfe, [0x10f2] = 0x25bdd, + [0x10f3] = 0x25c40, [0x10f4] = 0x25be2, [0x10f5] = 0x421e, [0x10f6] = 0x25bd6, + [0x10f7] = 0x25bde, [0x10f8] = 0x25bef, [0x10f9] = 0x4227, [0x10fa] = 0x25beb, + [0x10fb] = 0x25bea, [0x10fc] = 0x25be4, [0x10fd] = 0x25bd1, [0x10fe] = 0x4218, + [0x10ff] = 0x25bec, [0x1100] = 0x25bfa, [0x1101] = 0x25bd9, [0x1102] = 0x25bf3, + [0x1103] = 0x25be1, [0x1104] = 0x25bdc, [0x1105] = 0x25be5, [0x1106] = 0x25bdf, + [0x1107] = 0x25bd4, [0x1108] = 0x4220, [0x1109] = 0x25c05, [0x110a] = 0x25ed6, + [0x110b] = 0x25ed5, [0x110c] = 0x25ed0, [0x110d] = 0x25ec8, [0x110e] = 0x25ec4, + [0x110f] = 0x25ec9, [0x1110] = 0x25ecd, [0x1111] = 0x25ed2, [0x1112] = 0x25ecc, + [0x1113] = 0x25eca, [0x1114] = 0x260a0, [0x1115] = 0x26092, [0x1116] = 0x42f4, + [0x1117] = 0x4302, [0x1118] = 0x2608b, [0x1119] = 0x260a1, [0x111a] = 0x26095, + [0x111b] = 0x26088, [0x111c] = 0x26086, [0x111d] = 0x2608d, [0x111e] = 0x26085, + [0x111f] = 0x26091, [0x1120] = 0x26089, [0x1121] = 0x260a2, [0x1122] = 0x262f0, + [0x1123] = 0x262f3, [0x1124] = 0x262f4, [0x1125] = 0x262ef, [0x1126] = 0x26306, + [0x1127] = 0x263a2, [0x1128] = 0x2645e, [0x1129] = 0x26463, [0x112a] = 0x26460, + [0x112b] = 0x2645b, [0x112c] = 0x2647b, [0x112d] = 0x26458, [0x112e] = 0x26459, + [0x112f] = 0x2645d, [0x1130] = 0x26505, [0x1131] = 0x26506, [0x1132] = 0x26502, + [0x1133] = 0x26503, [0x1134] = 0x26504, [0x1135] = 0x265a2, [0x1136] = 0x265a7, + [0x1137] = 0x265a6, [0x1138] = 0x265a4, [0x1139] = 0x265ac, [0x113a] = 0x265a9, + [0x113b] = 0x267e7, [0x113c] = 0x26801, [0x113d] = 0x267df, [0x113e] = 0x267d9, + [0x113f] = 0x267e3, [0x1140] = 0x2680f, [0x1141] = 0x2691a, [0x1142] = 0x26945, + [0x1143] = 0x26948, [0x1144] = 0x2697b, [0x1145] = 0x26985, [0x1146] = 0x26986, + [0x1147] = 0x269fe, [0x1148] = 0x269ff, [0x1149] = 0x26a64, [0x114a] = 0x26a71, + [0x114b] = 0x26a72, [0x114c] = 0x26a61, [0x114d] = 0x26a62, [0x114e] = 0x26a6c, + [0x114f] = 0x26a60, [0x1150] = 0x26a5d, [0x1151] = 0x26a63, [0x1152] = 0x26a67, + [0x1153] = 0x26e01, [0x1154] = 0x26e2a, [0x1155] = 0x26e30, [0x1156] = 0x26e06, + [0x1157] = 0x26e7d, [0x1158] = 0x26e22, [0x1159] = 0x26eb9, [0x115a] = 0x26e0a, + [0x115b] = 0x26e10, [0x115c] = 0x26d8f, [0x115d] = 0x26e80, [0x115e] = 0x26e13, + [0x115f] = 0x26e2e, [0x1160] = 0x26e18, [0x1161] = 0x26e17, [0x1162] = 0x26e1a, + [0x1163] = 0x26e14, [0x1164] = 0x26e47, [0x1165] = 0x26e63, [0x1166] = 0x26e38, + [0x1167] = 0x4524, [0x1168] = 0x26e7f, [0x1169] = 0x26e21, [0x116a] = 0x26e37, + [0x116b] = 0x26e31, [0x116c] = 0x26e1b, [0x116d] = 0x26ea5, [0x116e] = 0x26f6c, + [0x116f] = 0x271d3, [0x1170] = 0x27388, [0x1171] = 0x2736e, [0x1172] = 0x2735c, + [0x1173] = 0x27374, [0x1174] = 0x27354, [0x1175] = 0x27383, [0x1176] = 0x8770, + [0x1177] = 0x27365, [0x1178] = 0x27360, [0x1179] = 0x27370, [0x117a] = 0x2736f, + [0x117b] = 0x2736d, [0x117c] = 0x27372, [0x117d] = 0x2736c, [0x117e] = 0x27376, + [0x117f] = 0x27375, [0x1180] = 0x27359, [0x1181] = 0x273c7, [0x1182] = 0x275c1, + [0x1183] = 0x275f9, [0x1184] = 0x276e3, [0x1185] = 0x276e7, [0x1186] = 0x276d6, + [0x1187] = 0x276cf, [0x1188] = 0x276da, [0x1189] = 0x276e9, [0x118a] = 0x276d2, + [0x118b] = 0x27855, [0x118c] = 0x2784f, [0x118d] = 0x2784d, [0x118e] = 0x27851, + [0x118f] = 0x27856, [0x1190] = 0x278f9, [0x1191] = 0x278f8, [0x1192] = 0x27906, + [0x1193] = 0x27903, [0x1194] = 0x27909, [0x1195] = 0x278f7, [0x1196] = 0x278f5, + [0x1197] = 0x27a47, [0x1198] = 0x27a45, [0x1199] = 0x27a3e, [0x119a] = 0x27a46, + [0x119b] = 0x27a29, [0x119c] = 0x27a34, [0x119d] = 0x27a3f, [0x119e] = 0x27a44, + [0x119f] = 0x27a35, [0x11a0] = 0x27a5a, [0x11a1] = 0x27a2a, [0x11a2] = 0x27a33, + [0x11a3] = 0x27a37, [0x11a4] = 0x27a43, [0x11a5] = 0x27a39, [0x11a6] = 0x27a30, + [0x11a7] = 0x27a5d, [0x11a8] = 0x27a32, [0x11a9] = 0x27a27, [0x11aa] = 0x27bbd, + [0x11ab] = 0x27bba, [0x11ac] = 0x27bbc, [0x11ad] = 0x27bf1, [0x11ae] = 0x27bf0, + [0x11af] = 0x27c61, [0x11b0] = 0x27c5c, [0x11b1] = 0x27c58, [0x11b2] = 0x27c5d, + [0x11b3] = 0x27cda, [0x11b4] = 0x27cd9, [0x11b5] = 0x27cdd, [0x11b6] = 0x27cdc, + [0x11b7] = 0x27cde, [0x11b8] = 0x477d, [0x11b9] = 0x27da0, [0x11ba] = 0x27da2, + [0x11bb] = 0x27f0f, [0x11bc] = 0x27f13, [0x11bd] = 0x27f12, [0x11be] = 0x27f11, + [0x11bf] = 0x27f14, [0x11c0] = 0x27f19, [0x11c1] = 0x27f0e, [0x11c2] = 0x27f17, + [0x11c3] = 0x27f21, [0x11c4] = 0x27f20, [0x11c5] = 0x27f16, [0x11c6] = 0x28078, + [0x11c7] = 0x8e37, [0x11c8] = 0x28087, [0x11c9] = 0x28079, [0x11ca] = 0x28080, + [0x11cb] = 0x28077, [0x11cc] = 0x28081, [0x11cd] = 0x28046, [0x11ce] = 0x2807a, + [0x11cf] = 0x2809c, [0x11d0] = 0x28083, [0x11d1] = 0x28084, [0x11d2] = 0x280ad, + [0x11d3] = 0x2809d, [0x11d4] = 0x2809e, [0x11d5] = 0x28255, [0x11d6] = 0x28336, + [0x11d7] = 0x2832b, [0x11d8] = 0x28327, [0x11d9] = 0x28346, [0x11da] = 0x2832c, + [0x11db] = 0x28345, [0x11dc] = 0x28333, [0x11dd] = 0x2832d, [0x11de] = 0x28334, + [0x11df] = 0x28322, [0x11e0] = 0x4864, [0x11e1] = 0x2841f, [0x11e2] = 0x285b3, + [0x11e3] = 0x2858c, [0x11e4] = 0x2858f, [0x11e5] = 0x285af, [0x11e6] = 0x285ad, + [0x11e7] = 0x2858e, [0x11e8] = 0x285ac, [0x11e9] = 0x285b0, [0x11ea] = 0x285b1, + [0x11eb] = 0x285ae, [0x11ec] = 0x28599, [0x11ed] = 0x286eb, [0x11ee] = 0x28774, + [0x11ef] = 0x28775, [0x11f0] = 0x2878e, [0x11f1] = 0x2876d, [0x11f2] = 0x28770, + [0x11f3] = 0x2878c, [0x11f4] = 0x2884f, [0x11f5] = 0x28851, [0x11f6] = 0x28858, + [0x11f7] = 0x2884c, [0x11f8] = 0x2884e, [0x11f9] = 0x28915, [0x11fa] = 0x289be, + [0x11fb] = 0x289db, [0x11fc] = 0x289b3, [0x11fd] = 0x289ae, [0x11fe] = 0x28c87, + [0x11ff] = 0x28c8a, [0x1200] = 0x28c88, [0x1201] = 0x28c8b, [0x1202] = 0x28c8c, + [0x1203] = 0x28d44, [0x1204] = 0x28d2d, [0x1205] = 0x28d2a, [0x1206] = 0x28d31, + [0x1207] = 0x28d2c, [0x1208] = 0x28d45, [0x1209] = 0x28d30, [0x120a] = 0x28d29, + [0x120b] = 0x28d46, [0x120c] = 0x28ef4, [0x120d] = 0x28f14, [0x120e] = 0x28f10, + [0x120f] = 0x28f0f, [0x1210] = 0x28f12, [0x1211] = 0x28f0b, [0x1212] = 0x28f0c, + [0x1213] = 0x28f0a, [0x1214] = 0x28f13, [0x1215] = 0x28f0e, [0x1216] = 0x28fd9, + [0x1217] = 0x28fd0, [0x1218] = 0x9703, [0x1219] = 0x290c1, [0x121a] = 0x290bf, + [0x121b] = 0x290bd, [0x121c] = 0x290bc, [0x121d] = 0x290ba, [0x121e] = 0x290bb, + [0x121f] = 0x290d1, [0x1220] = 0x290be, [0x1221] = 0x290d0, [0x1222] = 0x290b9, + [0x1223] = 0x2921a, [0x1224] = 0x2921c, [0x1225] = 0x2921b, [0x1226] = 0x29291, + [0x1227] = 0x29296, [0x1228] = 0x2929f, [0x1229] = 0x2929c, [0x122a] = 0x2929a, + [0x122b] = 0x2929d, [0x122c] = 0x293ad, [0x122d] = 0x293a5, [0x122e] = 0x293ae, + [0x122f] = 0x29403, [0x1230] = 0x29426, [0x1231] = 0x29420, [0x1232] = 0x29423, + [0x1233] = 0x29424, [0x1234] = 0x29421, [0x1235] = 0x29428, [0x1236] = 0x29425, + [0x1237] = 0x2941e, [0x1238] = 0x29494, [0x1239] = 0x29493, [0x123a] = 0x2948f, + [0x123b] = 0x2949a, [0x123c] = 0x294ad, [0x123d] = 0x4ac2, [0x123e] = 0x295ca, + [0x123f] = 0x295c5, [0x1240] = 0x296bb, [0x1241] = 0x296e1, [0x1242] = 0x296ea, + [0x1243] = 0x296e4, [0x1244] = 0x296ed, [0x1245] = 0x296e6, [0x1246] = 0x296e0, + [0x1247] = 0x296e8, [0x1248] = 0x296e5, [0x1249] = 0x2981a, [0x124a] = 0x29894, + [0x124b] = 0x29896, [0x124c] = 0x2989e, [0x124d] = 0x29895, [0x124e] = 0x298a1, + [0x124f] = 0x2988e, [0x1250] = 0x2989b, [0x1251] = 0x29892, [0x1252] = 0x29897, + [0x1253] = 0x29899, [0x1254] = 0x29893, [0x1255] = 0x29a32, [0x1256] = 0x29a2f, + [0x1257] = 0x29a2e, [0x1258] = 0x29a33, [0x1259] = 0x29b1c, [0x125a] = 0x29b1e, + [0x125b] = 0x29b11, [0x125c] = 0x29b20, [0x125d] = 0x29b1f, [0x125e] = 0x29b19, + [0x125f] = 0x29b16, [0x1260] = 0x29cac, [0x1261] = 0x29cb9, [0x1262] = 0x29cb3, + [0x1263] = 0x29ca6, [0x1264] = 0x29ca2, [0x1265] = 0x29ca9, [0x1266] = 0x29ca7, + [0x1267] = 0x29d6c, [0x1268] = 0x29d6d, [0x1269] = 0x29d69, [0x126a] = 0x29d80, + [0x126b] = 0x29d66, [0x126c] = 0x29d65, [0x126d] = 0x29d71, [0x126e] = 0x29d6b, + [0x126f] = 0x29fbd, [0x1270] = 0x29fc1, [0x1271] = 0x29fd3, [0x1272] = 0x29fb6, + [0x1273] = 0x4cac, [0x1274] = 0x29fb9, [0x1275] = 0x29fd4, [0x1276] = 0x29fb7, + [0x1277] = 0x29fdb, [0x1278] = 0x29fb8, [0x1279] = 0x29fc0, [0x127a] = 0x29fbc, + [0x127b] = 0x29fd5, [0x127c] = 0x29fbf, [0x127d] = 0x29fc3, [0x127e] = 0x29fc9, + [0x127f] = 0x2a258, [0x1280] = 0x2a290, [0x1281] = 0x2a295, [0x1282] = 0x2a297, + [0x1283] = 0x2a309, [0x1284] = 0x2a308, [0x1285] = 0x2a306, [0x1286] = 0x2a305, + [0x1287] = 0x2a310, [0x1288] = 0x2a397, [0x1289] = 0x2a395, [0x128a] = 0x2a3ee, + [0x128b] = 0x2a41f, [0x128d] = 0x21b4b, [0x128e] = 0x2018e, [0x128f] = 0x203e8, + [0x1290] = 0x203f0, [0x1291] = 0x203f4, [0x1292] = 0x20406, [0x1293] = 0x203ed, + [0x1294] = 0x349b, [0x1295] = 0x203e9, [0x1296] = 0x20400, [0x1297] = 0x204b8, + [0x1298] = 0x2056d, [0x1299] = 0x20804, [0x129a] = 0x20801, [0x129b] = 0x20803, + [0x129c] = 0x20802, [0x129d] = 0x52f6, [0x129e] = 0x3526, [0x129f] = 0x20962, + [0x12a0] = 0x20aba, [0x12a1] = 0x20b13, [0x12a2] = 0x20fde, [0x12a3] = 0x20fd7, + [0x12a4] = 0x20fe4, [0x12a5] = 0x20fce, [0x12a6] = 0x20fe3, [0x12a7] = 0x20fdd, + [0x12a8] = 0x2103a, [0x12a9] = 0x20fdb, [0x12aa] = 0x20fd6, [0x12ab] = 0x20fe0, + [0x12ac] = 0x20fd4, [0x12ad] = 0x20fcb, [0x12ae] = 0x20fe1, [0x12af] = 0x20fc9, + [0x12b0] = 0x20fdf, [0x12b1] = 0x2103c, [0x12b2] = 0x20ffc, [0x12b3] = 0x20fcf, + [0x12b4] = 0x21479, [0x12b5] = 0x21476, [0x12b6] = 0x21478, [0x12b7] = 0x21687, + [0x12b8] = 0x2189c, [0x12b9] = 0x218b1, [0x12ba] = 0x218c1, [0x12bb] = 0x2189a, + [0x12bc] = 0x21892, [0x12be] = 0x218c2, [0x12bf] = 0x21896, [0x12c0] = 0x218c0, + [0x12c1] = 0x21891, [0x12c2] = 0x21895, [0x12c3] = 0x219a2, [0x12c4] = 0x21ac3, + [0x12c5] = 0x21ac0, [0x12c6] = 0x21ac2, [0x12c7] = 0x20b8a, [0x12c8] = 0x21bb0, + [0x12c9] = 0x21c16, [0x12ca] = 0x21f46, [0x12cb] = 0x21f4a, [0x12cc] = 0x21f3e, + [0x12cd] = 0x21f45, [0x12ce] = 0x21f42, [0x12cf] = 0x3815, [0x12d0] = 0x21f5b, + [0x12d1] = 0x21f44, [0x12d2] = 0x22004, [0x12d3] = 0x24022, [0x12d4] = 0x22155, + [0x12d5] = 0x22157, [0x12d6] = 0x22151, [0x12d7] = 0x2214e, [0x12d8] = 0x2215a, + [0x12d9] = 0x222c6, [0x12da] = 0x222c3, [0x12db] = 0x389c, [0x12dc] = 0x222c5, + [0x12dd] = 0x222cc, [0x12de] = 0x22371, [0x12df] = 0x22426, [0x12e0] = 0x224b2, + [0x12e1] = 0x2257a, [0x12e2] = 0x22584, [0x12e3] = 0x2257b, [0x12e4] = 0x22874, + [0x12e5] = 0x2288c, [0x12e6] = 0x22851, [0x12e7] = 0x22848, [0x12e8] = 0x2288d, + [0x12e9] = 0x22892, [0x12ea] = 0x22898, [0x12eb] = 0x22893, [0x12ec] = 0x228b0, + [0x12ed] = 0x2284e, [0x12ee] = 0x22896, [0x12ef] = 0x22897, [0x12f0] = 0x2289c, + [0x12f1] = 0x228ca, [0x12f2] = 0x22d33, [0x12f3] = 0x22d83, [0x12f4] = 0x22d84, + [0x12f5] = 0x22d9a, [0x12f6] = 0x22d8c, [0x12f7] = 0x64cc, [0x12f8] = 0x22d99, + [0x12f9] = 0x22ee0, [0x12fa] = 0x22fe4, [0x12fb] = 0x22ff8, [0x12fc] = 0x22fed, + [0x12fd] = 0x22ff3, [0x12fe] = 0x22ff4, [0x12ff] = 0x22ff5, [0x1300] = 0x22ffd, + [0x1301] = 0x23119, [0x1302] = 0x2329e, [0x1303] = 0x232c4, [0x1304] = 0x2329f, + [0x1305] = 0x2339b, [0x1306] = 0x2339f, [0x1307] = 0x2339a, [0x1308] = 0x236aa, + [0x1309] = 0x2369d, [0x130a] = 0x23692, [0x130b] = 0x236a2, [0x130c] = 0x236af, + [0x130d] = 0x236eb, [0x130e] = 0x236a0, [0x130f] = 0x236a1, [0x1310] = 0x23694, + [0x1311] = 0x23698, [0x1312] = 0x2368f, [0x1313] = 0x23687, [0x1314] = 0x23684, + [0x1315] = 0x236a9, [0x1316] = 0x2367c, [0x1317] = 0x23918, [0x1318] = 0x23a5f, + [0x1319] = 0x23a62, [0x131a] = 0x23a61, [0x131b] = 0x23ac0, [0x131c] = 0x23b15, + [0x131d] = 0x23bfc, [0x131e] = 0x23bf9, [0x131f] = 0x23fc8, [0x1320] = 0x23fc9, + [0x1321] = 0x23fde, [0x1322] = 0x23fca, [0x1323] = 0x23fe2, [0x1324] = 0x3d64, + [0x1325] = 0x3d6e, [0x1326] = 0x24004, [0x1327] = 0x23fcc, [0x1328] = 0x23fdd, + [0x1329] = 0x23fe4, [0x132a] = 0x23fd3, [0x132b] = 0x23fc7, [0x132c] = 0x23fc6, + [0x132d] = 0x3d5f, [0x132e] = 0x24037, [0x132f] = 0x243d8, [0x1330] = 0x243ee, + [0x1331] = 0x243b2, [0x1332] = 0x243a3, [0x1333] = 0x243b3, [0x1334] = 0x243ed, + [0x1335] = 0x243f8, [0x1336] = 0x24531, [0x1337] = 0x2455b, [0x1338] = 0x24566, + [0x1339] = 0x24569, [0x133a] = 0x24596, [0x133b] = 0x2459b, [0x133c] = 0x245f7, + [0x133d] = 0x245f3, [0x133e] = 0x245f4, [0x133f] = 0x245f5, [0x1340] = 0x246e2, + [0x1341] = 0x246e7, [0x1342] = 0x246e5, [0x1343] = 0x246e9, [0x1344] = 0x246e6, + [0x1345] = 0x246e3, [0x1346] = 0x24874, [0x1347] = 0x2487f, [0x1348] = 0x2488f, + [0x1349] = 0x24890, [0x134a] = 0x24897, [0x134b] = 0x248a3, [0x134c] = 0x2488e, + [0x134d] = 0x24898, [0x134e] = 0x2488c, [0x134f] = 0x24a42, [0x1350] = 0x24a44, + [0x1351] = 0x24a69, [0x1352] = 0x24a43, [0x1353] = 0x24a68, [0x1354] = 0x3ef6, + [0x1355] = 0x24b8d, [0x1356] = 0x24b88, [0x1357] = 0x24b8b, [0x1358] = 0x24b89, + [0x1359] = 0x24ccc, [0x135a] = 0x24d1f, [0x135b] = 0x24e80, [0x135c] = 0x24e5e, + [0x135d] = 0x24e67, [0x135e] = 0x24e68, [0x135f] = 0x24e65, [0x1360] = 0x764a, + [0x1361] = 0x24e74, [0x1362] = 0x24e69, [0x1363] = 0x24e61, [0x1364] = 0x24e62, + [0x1365] = 0x24e6c, [0x1366] = 0x24e93, [0x1367] = 0x24e86, [0x1368] = 0x24f9d, + [0x1369] = 0x24f9b, [0x136a] = 0x2501b, [0x136b] = 0x25016, [0x136c] = 0x25019, + [0x136d] = 0x25014, [0x136e] = 0x25018, [0x136f] = 0x25015, [0x1370] = 0x25099, + [0x1371] = 0x25098, [0x1372] = 0x2525d, [0x1373] = 0x25289, [0x1374] = 0x2527a, + [0x1375] = 0x2527d, [0x1376] = 0x2524b, [0x1377] = 0x4073, [0x1378] = 0x25278, + [0x1379] = 0x2527f, [0x137a] = 0x25277, [0x137b] = 0x2527e, [0x137c] = 0x25279, + [0x137d] = 0x252ab, [0x137e] = 0x2527c, [0x137f] = 0x25274, [0x1380] = 0x25275, + [0x1381] = 0x252a7, [0x1382] = 0x2538d, [0x1383] = 0x2554e, [0x1384] = 0x25566, + [0x1385] = 0x25561, [0x1386] = 0x2554d, [0x1387] = 0x2554f, [0x1388] = 0x40dd, + [0x1389] = 0x25554, [0x138a] = 0x2557c, [0x138b] = 0x256da, [0x138c] = 0x256de, + [0x138d] = 0x256d8, [0x138e] = 0x256dd, [0x138f] = 0x256df, [0x1390] = 0x25866, + [0x1391] = 0x25862, [0x1392] = 0x2585f, [0x1393] = 0x25864, [0x1394] = 0x25863, + [0x1395] = 0x25860, [0x1396] = 0x25888, [0x1397] = 0x2586a, [0x1398] = 0x25867, + [0x1399] = 0x25887, [0x139a] = 0x2583f, [0x139b] = 0x2586c, [0x139c] = 0x2586e, + [0x139d] = 0x258ad, [0x139e] = 0x259f1, [0x139f] = 0x259f4, [0x13a0] = 0x259f6, + [0x13a1] = 0x259f5, [0x13a2] = 0x259f8, [0x13a3] = 0x259fb, [0x13a4] = 0x259ec, + [0x13a5] = 0x259ef, [0x13a6] = 0x259ed, [0x13a7] = 0x7ab9, [0x13a8] = 0x259f7, + [0x13a9] = 0x259f9, [0x13aa] = 0x259fd, [0x13ab] = 0x25ab1, [0x13ac] = 0x25c36, + [0x13ad] = 0x25c1b, [0x13ae] = 0x25c32, [0x13af] = 0x25c42, [0x13b0] = 0x25c4d, + [0x13b1] = 0x25c1f, [0x13b2] = 0x25c21, [0x13b3] = 0x25c1c, [0x13b4] = 0x25c31, + [0x13b5] = 0x25c2e, [0x13b6] = 0x25c47, [0x13b7] = 0x25c3b, [0x13b8] = 0x25c41, + [0x13b9] = 0x25c18, [0x13ba] = 0x25c39, [0x13bb] = 0x25c1d, [0x13bc] = 0x25c27, + [0x13bd] = 0x25c23, [0x13be] = 0x7bd7, [0x13bf] = 0x25eee, [0x13c0] = 0x25ee8, + [0x13c1] = 0x25ee5, [0x13c2] = 0x25eef, [0x13c3] = 0x25ee4, [0x13c4] = 0x25eec, + [0x13c5] = 0x25ef0, [0x13c6] = 0x260d7, [0x13c7] = 0x260d8, [0x13c8] = 0x260d4, + [0x13c9] = 0x260ca, [0x13ca] = 0x260d2, [0x13cb] = 0x260cb, [0x13cc] = 0x260d3, + [0x13cd] = 0x260e6, [0x13ce] = 0x260e2, [0x13cf] = 0x26249, [0x13d0] = 0x26248, + [0x13d1] = 0x262ff, [0x13d2] = 0x26309, [0x13d3] = 0x263b0, [0x13d4] = 0x263af, + [0x13d5] = 0x2647c, [0x13d6] = 0x26478, [0x13d7] = 0x2647a, [0x13d8] = 0x26472, + [0x13d9] = 0x26479, [0x13da] = 0x2647e, [0x13db] = 0x2650c, [0x13dc] = 0x2650b, + [0x13dd] = 0x265cd, [0x13de] = 0x265be, [0x13df] = 0x265bc, [0x13e0] = 0x265bf, + [0x13e1] = 0x265c0, [0x13e2] = 0x265bd, [0x13e3] = 0x26838, [0x13e4] = 0x26808, + [0x13e5] = 0x26805, [0x13e6] = 0x2683b, [0x13e7] = 0x26810, [0x13e8] = 0x2680c, + [0x13e9] = 0x2680d, [0x13ea] = 0x26804, [0x13eb] = 0x2683a, [0x13ec] = 0x26813, + [0x13ed] = 0x26837, [0x13ee] = 0x26839, [0x13ef] = 0x2691f, [0x13f0] = 0x2694b, + [0x13f1] = 0x269ee, [0x13f2] = 0x26a75, [0x13f3] = 0x26a78, [0x13f4] = 0x26a7c, + [0x13f5] = 0x26a74, [0x13f6] = 0x26a76, [0x13f7] = 0x26aea, [0x13f8] = 0x26aeb, + [0x13f9] = 0x26dfb, [0x13fa] = 0x26e19, [0x13fb] = 0x26ea7, [0x13fc] = 0x26e8c, + [0x13fd] = 0x26edc, [0x13fe] = 0x26e98, [0x13ff] = 0x26ebe, [0x1400] = 0x26e9e, + [0x1401] = 0x26f0f, [0x1402] = 0x26e9f, [0x1403] = 0x26edd, [0x1404] = 0x26e93, + [0x1405] = 0x26ebb, [0x1406] = 0x26eb6, [0x1407] = 0x26e90, [0x1408] = 0x26ea1, + [0x1409] = 0x26ebd, [0x140a] = 0x26ede, [0x140b] = 0x26e3a, [0x140c] = 0x26f22, + [0x140d] = 0x26e97, [0x140e] = 0x26e94, [0x140f] = 0x26ec3, [0x1410] = 0x26e8e, + [0x1411] = 0x26ea8, [0x1412] = 0x26e99, [0x1413] = 0x26ead, [0x1414] = 0x26e9b, + [0x1415] = 0x26ea2, [0x1416] = 0x26f21, [0x1417] = 0x26eac, [0x1418] = 0x26f0e, + [0x1419] = 0x26f31, [0x141a] = 0x271e1, [0x141b] = 0x271de, [0x141c] = 0x271df, + [0x141d] = 0x271dc, [0x141e] = 0x271dd, [0x141f] = 0x271ec, [0x1420] = 0x271e7, + [0x1421] = 0x27369, [0x1422] = 0x273b8, [0x1423] = 0x273a1, [0x1424] = 0x273a8, + [0x1425] = 0x273ba, [0x1426] = 0x273c2, [0x1427] = 0x273a6, [0x1428] = 0x273a4, + [0x1429] = 0x273a3, [0x142a] = 0x273ab, [0x142b] = 0x273bc, [0x142c] = 0x273b7, + [0x142d] = 0x273bf, [0x142e] = 0x273ad, [0x142f] = 0x273b1, [0x1430] = 0x273ca, + [0x1431] = 0x273c4, [0x1432] = 0x273b9, [0x1433] = 0x275c8, [0x1434] = 0x275c6, + [0x1435] = 0x275c7, [0x1436] = 0x2770a, [0x1437] = 0x2770d, [0x1438] = 0x276fb, + [0x1439] = 0x27703, [0x143a] = 0x27702, [0x143b] = 0x276fc, [0x143c] = 0x276f9, + [0x143d] = 0x276f8, [0x143e] = 0x2786e, [0x143f] = 0x27863, [0x1440] = 0x27862, + [0x1441] = 0x27861, [0x1442] = 0x2786b, [0x1443] = 0x4688, [0x1444] = 0x2786f, + [0x1445] = 0x27866, [0x1446] = 0x2786c, [0x1447] = 0x2790e, [0x1448] = 0x27915, + [0x1449] = 0x27916, [0x144a] = 0x27910, [0x144b] = 0x27917, [0x144c] = 0x27911, + [0x144d] = 0x27a6e, [0x144e] = 0x27a6c, [0x144f] = 0x27a87, [0x1450] = 0x27a83, + [0x1451] = 0x27a63, [0x1452] = 0x27adc, [0x1453] = 0x27bc0, [0x1454] = 0x27bf7, + [0x1455] = 0x27bfa, [0x1456] = 0x27c70, [0x1457] = 0x27c6a, [0x1458] = 0x27c68, + [0x1459] = 0x27c69, [0x145a] = 0x27c84, [0x145b] = 0x27cec, [0x145c] = 0x27ce7, + [0x145d] = 0x27cee, [0x145e] = 0x27dba, [0x145f] = 0x27db2, [0x1460] = 0x27db5, + [0x1461] = 0x27dcb, [0x1462] = 0x2080b, [0x1463] = 0x27dd0, [0x1464] = 0x27e6d, + [0x1465] = 0x27e6c, [0x1466] = 0x47bb, [0x1467] = 0x27f45, [0x1468] = 0x27f46, + [0x1469] = 0x27f34, [0x146a] = 0x27f2c, [0x146b] = 0x27f35, [0x146c] = 0x27f44, + [0x146d] = 0x47ba, [0x146e] = 0x27f76, [0x146f] = 0x280b1, [0x1470] = 0x280aa, + [0x1471] = 0x280a1, [0x1472] = 0x280b2, [0x1473] = 0x4812, [0x1474] = 0x280a6, + [0x1475] = 0x280b5, [0x1476] = 0x280b4, [0x1477] = 0x280b8, [0x1478] = 0x280af, + [0x1479] = 0x280b0, [0x147a] = 0x280a3, [0x147b] = 0x28262, [0x147c] = 0x28264, + [0x147d] = 0x28356, [0x147e] = 0x28351, [0x147f] = 0x2834f, [0x1480] = 0x28368, + [0x1481] = 0x2834c, [0x1482] = 0x28350, [0x1483] = 0x4861, [0x1484] = 0x28348, + [0x1485] = 0x2834a, [0x1486] = 0x28421, [0x1487] = 0x285e3, [0x1488] = 0x285b9, + [0x1489] = 0x285de, [0x148a] = 0x285b7, [0x148b] = 0x285e1, [0x148c] = 0x285b6, + [0x148d] = 0x285b5, [0x148e] = 0x285df, [0x148f] = 0x48e1, [0x1490] = 0x28797, + [0x1491] = 0x2879a, [0x1492] = 0x2879b, [0x1493] = 0x28798, [0x1494] = 0x28792, + [0x1495] = 0x28793, [0x1496] = 0x287d7, [0x1497] = 0x28773, [0x1498] = 0x2886b, + [0x1499] = 0x28874, [0x149a] = 0x28878, [0x149b] = 0x2886d, [0x149c] = 0x28918, + [0x149d] = 0x289e9, [0x149e] = 0x289f5, [0x149f] = 0x289ea, [0x14a0] = 0x28a2e, + [0x14a1] = 0x289e7, [0x14a2] = 0x289fe, [0x14a3] = 0x289e5, [0x14a4] = 0x28a36, + [0x14a5] = 0x289f0, [0x14a6] = 0x289e6, [0x14a7] = 0x28a2c, [0x14a8] = 0x28c89, + [0x14a9] = 0x28c95, [0x14aa] = 0x28c93, [0x14ab] = 0x28d4d, [0x14ac] = 0x28d4a, + [0x14ad] = 0x28d4f, [0x14ae] = 0x28d50, [0x14af] = 0x28d4b, [0x14b0] = 0x28f2a, + [0x14b1] = 0x28f2b, [0x14b2] = 0x28f2f, [0x14b3] = 0x28f2e, [0x14b4] = 0x28f7c, + [0x14b5] = 0x28fed, [0x14b6] = 0x28fe2, [0x14b7] = 0x290e0, [0x14b8] = 0x290dc, + [0x14b9] = 0x290da, [0x14ba] = 0x290d6, [0x14bb] = 0x290f4, [0x14bc] = 0x290d9, + [0x14bd] = 0x290d5, [0x14be] = 0x29222, [0x14bf] = 0x29221, [0x14c0] = 0x29224, + [0x14c1] = 0x29225, [0x14c2] = 0x29226, [0x14c3] = 0x29223, [0x14c4] = 0x292aa, + [0x14c5] = 0x292af, [0x14c6] = 0x292b0, [0x14c7] = 0x292ab, [0x14c8] = 0x293af, + [0x14c9] = 0x293b7, [0x14ca] = 0x293b5, [0x14cb] = 0x293b2, [0x14cc] = 0x293b3, + [0x14cd] = 0x2942b, [0x14ce] = 0x294d8, [0x14cf] = 0x294c2, [0x14d0] = 0x294af, + [0x14d1] = 0x294bc, [0x14d2] = 0x294b8, [0x14d3] = 0x294be, [0x14d4] = 0x294b7, + [0x14d5] = 0x294b4, [0x14d6] = 0x294bf, [0x14d7] = 0x294b3, [0x14d8] = 0x294b1, + [0x14d9] = 0x294bb, [0x14da] = 0x294bd, [0x14db] = 0x294d6, [0x14dc] = 0x294dd, + [0x14dd] = 0x295d8, [0x14de] = 0x295d3, [0x14df] = 0x295d5, [0x14e0] = 0x295e3, + [0x14e1] = 0x295e2, [0x14e2] = 0x295d9, [0x14e3] = 0x295de, [0x14e4] = 0x295df, + [0x14e5] = 0x295da, [0x14e6] = 0x295d4, [0x14e7] = 0x296f3, [0x14e8] = 0x296e2, + [0x14e9] = 0x2970d, [0x14ea] = 0x29701, [0x14eb] = 0x29705, [0x14ec] = 0x2971a, + [0x14ed] = 0x29703, [0x14ee] = 0x2971f, [0x14ef] = 0x29716, [0x14f0] = 0x296fa, + [0x14f1] = 0x296fc, [0x14f2] = 0x2970a, [0x14f3] = 0x999f, [0x14f4] = 0x298bc, + [0x14f5] = 0x298ca, [0x14f6] = 0x298b6, [0x14f7] = 0x298c7, [0x14f8] = 0x298bf, + [0x14f9] = 0x4b89, [0x14fa] = 0x298b9, [0x14fb] = 0x4b8c, [0x14fc] = 0x298b0, + [0x14fd] = 0x298b8, [0x14fe] = 0x298bd, [0x14ff] = 0x29891, [0x1500] = 0x298bb, + [0x1501] = 0x298be, [0x1502] = 0x29a3e, [0x1503] = 0x29a3d, [0x1504] = 0x29b38, + [0x1505] = 0x29b3d, [0x1506] = 0x29b39, [0x1507] = 0x29b33, [0x1508] = 0x29c33, + [0x1509] = 0x29cbb, [0x150a] = 0x29cc6, [0x150b] = 0x29cc5, [0x150c] = 0x29cc7, + [0x150d] = 0x29ccb, [0x150e] = 0x29ca8, [0x150f] = 0x29cc8, [0x1510] = 0x29cbe, + [0x1511] = 0x29cc1, [0x1512] = 0x29cbd, [0x1513] = 0x29d82, [0x1514] = 0x29d9e, + [0x1515] = 0x29d81, [0x1516] = 0x29d84, [0x1517] = 0x9b8d, [0x1518] = 0x29d96, + [0x1519] = 0x29d8e, [0x151a] = 0x29d88, [0x151b] = 0x29d87, [0x151c] = 0x29fe0, + [0x151d] = 0x2a00d, [0x151e] = 0x29fdf, [0x151f] = 0x29fe4, [0x1520] = 0x29fe2, + [0x1521] = 0x29fdd, [0x1522] = 0x29fec, [0x1523] = 0x29fde, [0x1524] = 0x29fe7, + [0x1525] = 0x29fea, [0x1526] = 0x29fe3, [0x1527] = 0x2a25c, [0x1528] = 0x9e77, + [0x1529] = 0x2a25d, [0x152a] = 0x2a29c, [0x152b] = 0x2a31d, [0x152c] = 0x2a39d, + [0x152d] = 0x2a39e, [0x152e] = 0x2a39b, [0x152f] = 0x2a3b5, [0x1530] = 0x2a3b9, + [0x1531] = 0x2a3b6, [0x1532] = 0x2a3f3, [0x1533] = 0x2a3f2, [0x1534] = 0x2a3f4, + [0x1535] = 0x2a426, [0x1536] = 0x2a427, [0x1537] = 0x2a425, [0x1538] = 0x2a506, + [0x1539] = 0x2a50b, [0x153a] = 0x2a53a, [0x153b] = 0x2a53c, [0x153c] = 0x2040a, + [0x153d] = 0x2040b, [0x153e] = 0x204bf, [0x153f] = 0x204fd, [0x1540] = 0x20618, + [0x1541] = 0x291df, [0x1542] = 0x25390, [0x1543] = 0x2069e, [0x1544] = 0x207fc, + [0x1545] = 0x20810, [0x1546] = 0x2080f, [0x1547] = 0x2080d, [0x1548] = 0x208b9, + [0x1549] = 0x208b7, [0x154a] = 0x208ba, [0x154b] = 0x2090a, [0x154c] = 0x21041, + [0x154d] = 0x2108b, [0x154e] = 0x21046, [0x154f] = 0x21053, [0x1550] = 0x210e2, + [0x1551] = 0x2103f, [0x1552] = 0x20f7c, [0x1553] = 0x2104b, [0x1554] = 0x2104e, + [0x1555] = 0x2108a, [0x1556] = 0x21047, [0x1557] = 0x21493, [0x1558] = 0x27dce, + [0x1559] = 0x2148c, [0x155a] = 0x214af, [0x155b] = 0x214c9, [0x155c] = 0x215c6, + [0x155d] = 0x215c8, [0x155e] = 0x21691, [0x155f] = 0x218cf, [0x1560] = 0x218d4, + [0x1561] = 0x218ce, [0x1562] = 0x21add, [0x1563] = 0x21ad4, [0x1564] = 0x21f49, + [0x1565] = 0x21f63, [0x1566] = 0x21f5d, [0x1567] = 0x381a, [0x1568] = 0x21f67, + [0x1569] = 0x21fbb, [0x156a] = 0x21f60, [0x156b] = 0x21f80, [0x156c] = 0x2215f, + [0x156d] = 0x22160, [0x156e] = 0x222da, [0x156f] = 0x222d2, [0x1570] = 0x222dd, + [0x1571] = 0x2258e, [0x1572] = 0x22588, [0x1573] = 0x2256c, [0x1574] = 0x2289e, + [0x1575] = 0x228c9, [0x1576] = 0x228a4, [0x1577] = 0x3998, [0x1578] = 0x228d9, + [0x1579] = 0x228d2, [0x157a] = 0x228da, [0x157b] = 0x228dd, [0x157c] = 0x228ce, + [0x157d] = 0x228fc, [0x157e] = 0x22a14, [0x157f] = 0x22a60, [0x1580] = 0x22dd7, + [0x1581] = 0x22dcb, [0x1582] = 0x22dcd, [0x1583] = 0x22dd5, [0x1584] = 0x22ee7, + [0x1585] = 0x23000, [0x1586] = 0x2300a, [0x1587] = 0x2300f, [0x1588] = 0x23002, + [0x1589] = 0x23001, [0x158a] = 0x2311d, [0x158b] = 0x232ca, [0x158c] = 0x232cb, + [0x158d] = 0x232cd, [0x158e] = 0x2334f, [0x158f] = 0x2339c, [0x1590] = 0x23680, + [0x1591] = 0x2370d, [0x1592] = 0x23702, [0x1593] = 0x3bf1, [0x1594] = 0x23707, + [0x1595] = 0x236f7, [0x1596] = 0x236f8, [0x1597] = 0x236fd, [0x1598] = 0x23724, + [0x1599] = 0x236fb, [0x159a] = 0x23739, [0x159b] = 0x2373a, [0x159c] = 0x23922, + [0x159e] = 0x23a6a, [0x159f] = 0x23a6d, [0x15a0] = 0x23a74, [0x15a1] = 0x23c0e, + [0x15a2] = 0x23fdf, [0x15a3] = 0x2402b, [0x15a4] = 0x23fe3, [0x15a5] = 0x24026, + [0x15a6] = 0x2402a, [0x15a7] = 0x24023, [0x15a8] = 0x24035, [0x15a9] = 0x2404a, + [0x15aa] = 0x243fd, [0x15ab] = 0x24400, [0x15ac] = 0x2441e, [0x15ad] = 0x243ff, + [0x15ae] = 0x2459e, [0x15af] = 0x245fa, [0x15b0] = 0x246f1, [0x15b1] = 0x24895, + [0x15b2] = 0x248a8, [0x15b3] = 0x248a6, [0x15b4] = 0x24a6e, [0x15b5] = 0x24a83, + [0x15b6] = 0x24a6d, [0x15b7] = 0x24b8f, [0x15b8] = 0x3f6a, [0x15b9] = 0x24cdf, + [0x15ba] = 0x24cd5, [0x15bb] = 0x24ce0, [0x15bc] = 0x24cd3, [0x15bd] = 0x24cd8, + [0x15be] = 0x24e8c, [0x15bf] = 0x764b, [0x15c0] = 0x24e94, [0x15c1] = 0x24e96, + [0x15c2] = 0x24e85, [0x15c3] = 0x24e8f, [0x15c4] = 0x24ea9, [0x15c5] = 0x24e8e, + [0x15c6] = 0x24e90, [0x15c7] = 0x24eb8, [0x15c8] = 0x24ec3, [0x15c9] = 0x24ebb, + [0x15ca] = 0x24fa5, [0x15cb] = 0x24fa2, [0x15cc] = 0x76a2, [0x15cd] = 0x24fa3, + [0x15ce] = 0x250b5, [0x15cf] = 0x250ac, [0x15d0] = 0x250a8, [0x15d1] = 0x252ad, + [0x15d2] = 0x252b8, [0x15d3] = 0x252b4, [0x15d4] = 0x252ae, [0x15d5] = 0x252b6, + [0x15d6] = 0x4485, [0x15d7] = 0x252c1, [0x15d8] = 0x252bf, [0x15d9] = 0x25392, + [0x15da] = 0x25400, [0x15db] = 0x25401, [0x15dc] = 0x25575, [0x15dd] = 0x25572, + [0x15de] = 0x25578, [0x15df] = 0x25570, [0x15e0] = 0x2557e, [0x15e1] = 0x2557d, + [0x15e2] = 0x2557f, [0x15e3] = 0x256ef, [0x15e4] = 0x2586d, [0x15e5] = 0x2588e, + [0x15e6] = 0x2588f, [0x15e7] = 0x2588a, [0x15e8] = 0x2588d, [0x15e9] = 0x25895, + [0x15ea] = 0x2588b, [0x15eb] = 0x2588c, [0x15ec] = 0x258b0, [0x15ed] = 0x25893, + [0x15ee] = 0x259fc, [0x15ef] = 0x25a15, [0x15f0] = 0x25a0e, [0x15f1] = 0x25a18, + [0x15f2] = 0x25a11, [0x15f3] = 0x25a0d, [0x15f4] = 0x25abb, [0x15f5] = 0x25ab3, + [0x15f6] = 0x4239, [0x15f7] = 0x25ca1, [0x15f8] = 0x25c9a, [0x15f9] = 0x25c84, + [0x15fa] = 0x25ca0, [0x15fb] = 0x25c86, [0x15fc] = 0x25c9d, [0x15fd] = 0x25caa, + [0x15fe] = 0x25c78, [0x15ff] = 0x25c8d, [0x1600] = 0x25c8a, [0x1601] = 0x25ca6, + [0x1602] = 0x25c7a, [0x1603] = 0x25c97, [0x1604] = 0x25c88, [0x1605] = 0x25c8e, + [0x1606] = 0x423d, [0x1607] = 0x4244, [0x1608] = 0x25c76, [0x1609] = 0x25c81, + [0x160a] = 0x25c85, [0x160b] = 0x25c75, [0x160c] = 0x25ca8, [0x160d] = 0x25c8f, + [0x160e] = 0x25c91, [0x160f] = 0x25ca2, [0x1610] = 0x25c9c, [0x1611] = 0x25c89, + [0x1612] = 0x25c7f, [0x1613] = 0x25c96, [0x1614] = 0x25c79, [0x1615] = 0x25c9f, + [0x1616] = 0x25ca7, [0x1617] = 0x4246, [0x1618] = 0x25c87, [0x1619] = 0x25c9b, + [0x161a] = 0x25ca5, [0x161b] = 0x25c8b, [0x161c] = 0x25cc9, [0x161d] = 0x25eff, + [0x161e] = 0x25f03, [0x161f] = 0x25f00, [0x1620] = 0x25f02, [0x1621] = 0x25f04, + [0x1622] = 0x25f05, [0x1623] = 0x25ee6, [0x1624] = 0x25f1f, [0x1625] = 0x26114, + [0x1626] = 0x430e, [0x1627] = 0x2610c, [0x1628] = 0x2610f, [0x1629] = 0x26119, + [0x162a] = 0x2610b, [0x162b] = 0x26113, [0x162c] = 0x260d5, [0x162d] = 0x4310, + [0x162e] = 0x2611c, [0x162f] = 0x26250, [0x1630] = 0x2624e, [0x1631] = 0x26312, + [0x1632] = 0x263b9, [0x1633] = 0x26485, [0x1634] = 0x26488, [0x1635] = 0x26490, + [0x1636] = 0x26513, [0x1637] = 0x265d0, [0x1638] = 0x265d1, [0x1639] = 0x265d2, + [0x163a] = 0x265d7, [0x163b] = 0x265d6, [0x163c] = 0x265e5, [0x163d] = 0x26846, + [0x163e] = 0x2686b, [0x163f] = 0x26845, [0x1640] = 0x2683f, [0x1641] = 0x2683e, + [0x1642] = 0x443e, [0x1643] = 0x2686a, [0x1644] = 0x26868, [0x1645] = 0x2684c, + [0x1646] = 0x26923, [0x1647] = 0x26922, [0x1648] = 0x26997, [0x1649] = 0x26991, + [0x164a] = 0x25ab5, [0x164b] = 0x26998, [0x164c] = 0x2699c, [0x164d] = 0x26a89, + [0x164e] = 0x4484, [0x164f] = 0x26a8b, [0x1650] = 0x26a8a, [0x1651] = 0x26a8d, + [0x1652] = 0x26a8e, [0x1653] = 0x26a88, [0x1654] = 0x26f4e, [0x1655] = 0x26f44, + [0x1656] = 0x26f37, [0x1657] = 0x26f75, [0x1658] = 0x26f54, [0x1659] = 0x26f76, + [0x165a] = 0x26f34, [0x165b] = 0x26f6b, [0x165c] = 0x26f32, [0x165d] = 0x26f57, + [0x165e] = 0x26f52, [0x165f] = 0x26f45, [0x1660] = 0x4549, [0x1661] = 0x26eb1, + [0x1662] = 0x26f4b, [0x1663] = 0x26f47, [0x1664] = 0x26f33, [0x1665] = 0x26f40, + [0x1666] = 0x26f3c, [0x1667] = 0x26f43, [0x1668] = 0x26f4f, [0x1669] = 0x26f55, + [0x166a] = 0x26f41, [0x166b] = 0x26fb2, [0x166c] = 0x26fc0, [0x166d] = 0x27434, + [0x166e] = 0x273f9, [0x166f] = 0x27419, [0x1670] = 0x2740d, [0x1671] = 0x273fa, + [0x1672] = 0x2741e, [0x1673] = 0x2741f, [0x1674] = 0x2740e, [0x1675] = 0x27440, + [0x1676] = 0x27408, [0x1677] = 0x45df, [0x1678] = 0x27413, [0x1679] = 0x2744c, + [0x167a] = 0x45f0, [0x167b] = 0x275cc, [0x167c] = 0x275cb, [0x167d] = 0x27724, + [0x167e] = 0x27725, [0x167f] = 0x2773d, [0x1680] = 0x27720, [0x1681] = 0x27727, + [0x1682] = 0x27726, [0x1683] = 0x2771d, [0x1684] = 0x2771e, [0x1685] = 0x27732, + [0x1686] = 0x2776c, [0x1687] = 0x27759, [0x1688] = 0x468a, [0x1689] = 0x2787a, + [0x168a] = 0x27879, [0x168b] = 0x2791b, [0x168c] = 0x2792e, [0x168d] = 0x27923, + [0x168e] = 0x27920, [0x168f] = 0x2791f, [0x1690] = 0x27ab6, [0x1691] = 0x27ab9, + [0x1692] = 0x27aa1, [0x1693] = 0x27aa3, [0x1694] = 0x27aa8, [0x1695] = 0x27aaf, + [0x1696] = 0x27a9a, [0x1697] = 0x27a99, [0x1698] = 0x27aa2, [0x1699] = 0x27a9d, + [0x169a] = 0x4702, [0x169b] = 0x27aab, [0x169c] = 0x27bc9, [0x169d] = 0x27bfe, + [0x169e] = 0x27c00, [0x169f] = 0x27bfc, [0x16a0] = 0x27c07, [0x16a1] = 0x27c75, + [0x16a2] = 0x27c72, [0x16a3] = 0x27c73, [0x16a4] = 0x27c74, [0x16a5] = 0x27cfa, + [0x16a6] = 0x27cfc, [0x16a7] = 0x27cf8, [0x16a8] = 0x27cf6, [0x16a9] = 0x27cfb, + [0x16aa] = 0x27dcd, [0x16ab] = 0x27dd1, [0x16ac] = 0x27dcf, [0x16ad] = 0x27e74, + [0x16ae] = 0x27e72, [0x16af] = 0x27e73, [0x16b0] = 0x27f54, [0x16b1] = 0x27f51, + [0x16b2] = 0x47c0, [0x16b3] = 0x27f53, [0x16b4] = 0x27f49, [0x16b5] = 0x27f4c, + [0x16b6] = 0x27f4a, [0x16b7] = 0x27f4f, [0x16b8] = 0x27f56, [0x16b9] = 0x28100, + [0x16ba] = 0x280d5, [0x16bb] = 0x280d7, [0x16bc] = 0x280ff, [0x16bd] = 0x280d9, + [0x16be] = 0x280e3, [0x16bf] = 0x280d3, [0x16c0] = 0x4815, [0x16c1] = 0x280d8, + [0x16c2] = 0x280d4, [0x16c3] = 0x280de, [0x16c4] = 0x28271, [0x16c5] = 0x28374, + [0x16c6] = 0x28388, [0x16c7] = 0x2837f, [0x16c8] = 0x2836b, [0x16c9] = 0x28387, + [0x16ca] = 0x28379, [0x16cb] = 0x28378, [0x16cc] = 0x28389, [0x16cd] = 0x28380, + [0x16ce] = 0x28376, [0x16cf] = 0x28429, [0x16d0] = 0x28428, [0x16d1] = 0x2842f, + [0x16d2] = 0x285e5, [0x16d3] = 0x28604, [0x16d4] = 0x28603, [0x16d5] = 0x285f0, + [0x16d6] = 0x285e8, [0x16d7] = 0x285ea, [0x16d8] = 0x285f1, [0x16d9] = 0x28601, + [0x16da] = 0x28602, [0x16db] = 0x287a9, [0x16dc] = 0x287ab, [0x16dd] = 0x287b7, + [0x16de] = 0x287b6, [0x16df] = 0x48e2, [0x16e0] = 0x288a0, [0x16e1] = 0x2888e, + [0x16e2] = 0x28886, [0x16e3] = 0x28887, [0x16e4] = 0x28885, [0x16e5] = 0x2888b, + [0x16e6] = 0x28888, [0x16e7] = 0x28890, [0x16e8] = 0x2891a, [0x16e9] = 0x28934, + [0x16ea] = 0x28a37, [0x16eb] = 0x28a2f, [0x16ec] = 0x28a30, [0x16ed] = 0x28a39, + [0x16ee] = 0x28a34, [0x16ef] = 0x28a33, [0x16f0] = 0x28a85, [0x16f1] = 0x28a84, + [0x16f2] = 0x28a3a, [0x16f3] = 0x28c9f, [0x16f4] = 0x28d69, [0x16f5] = 0x28d6c, + [0x16f6] = 0x28d6a, [0x16f7] = 0x28d67, [0x16f8] = 0x28d6b, [0x16f9] = 0x28f3f, + [0x16fa] = 0x28f40, [0x16fb] = 0x2900b, [0x16fc] = 0x290d2, [0x16fd] = 0x290f8, + [0x16fe] = 0x29101, [0x16ff] = 0x290fa, [0x1700] = 0x29116, [0x1702] = 0x2922c, + [0x1703] = 0x2922d, [0x1704] = 0x2922f, [0x1705] = 0x2922e, [0x1706] = 0x292c1, + [0x1707] = 0x292f5, [0x1708] = 0x292c4, [0x1709] = 0x292de, [0x170a] = 0x292cc, + [0x170b] = 0x292d2, [0x170c] = 0x292c2, [0x170d] = 0x292cd, [0x170e] = 0x292cf, + [0x170f] = 0x292dd, [0x1710] = 0x292c8, [0x1711] = 0x293ba, [0x1712] = 0x293be, + [0x1713] = 0x293bf, [0x1714] = 0x2942e, [0x1715] = 0x29430, [0x1716] = 0x294e7, + [0x1717] = 0x294ee, [0x1718] = 0x294e8, [0x1719] = 0x294e6, [0x171a] = 0x294e2, + [0x171b] = 0x294e4, [0x171c] = 0x294fb, [0x171d] = 0x294fc, [0x171e] = 0x294ea, + [0x171f] = 0x295ed, [0x1720] = 0x295f6, [0x1721] = 0x295f3, [0x1722] = 0x295f4, + [0x1723] = 0x295f1, [0x1724] = 0x295f7, [0x1725] = 0x295f5, [0x1726] = 0x295ea, + [0x1727] = 0x295eb, [0x1728] = 0x29700, [0x1729] = 0x2972c, [0x172a] = 0x29712, + [0x172b] = 0x2973d, [0x172c] = 0x29733, [0x172d] = 0x4b4d, [0x172e] = 0x29730, + [0x172f] = 0x29740, [0x1730] = 0x29731, [0x1731] = 0x29757, [0x1732] = 0x4b4a, + [0x1733] = 0x29735, [0x1734] = 0x29732, [0x1735] = 0x2972d, [0x1736] = 0x29736, + [0x1737] = 0x29738, [0x1738] = 0x29762, [0x1739] = 0x2975f, [0x173a] = 0x2978a, + [0x173b] = 0x298d6, [0x173c] = 0x298d8, [0x173d] = 0x298dd, [0x173e] = 0x298e4, + [0x173f] = 0x298e3, [0x1740] = 0x29a4d, [0x1741] = 0x29ad7, [0x1742] = 0x29b4a, + [0x1743] = 0x29b4c, [0x1744] = 0x29b50, [0x1745] = 0x29b4b, [0x1746] = 0x29b4e, + [0x1747] = 0x29b4f, [0x1748] = 0x29c39, [0x1749] = 0x29cd2, [0x174a] = 0x29ccd, + [0x174b] = 0x29cd3, [0x174c] = 0x29ce1, [0x174d] = 0x29cce, [0x174e] = 0x29cd5, + [0x174f] = 0x29cdd, [0x1750] = 0x29cd4, [0x1751] = 0x29ccf, [0x1752] = 0x29dcb, + [0x1753] = 0x29da6, [0x1754] = 0x29dc2, [0x1755] = 0x29da5, [0x1756] = 0x29da9, + [0x1757] = 0x29da2, [0x1758] = 0x29da4, [0x1759] = 0x29db0, [0x175a] = 0x29dcc, + [0x175b] = 0x29daf, [0x175c] = 0x29dbf, [0x175d] = 0x2a024, [0x175e] = 0x2a01a, + [0x175f] = 0x2a014, [0x1760] = 0x2a03a, [0x1761] = 0x2a020, [0x1762] = 0x2a01b, + [0x1763] = 0x2a021, [0x1764] = 0x2a025, [0x1765] = 0x2a01e, [0x1766] = 0x2a03f, + [0x1767] = 0x2a040, [0x1768] = 0x2a018, [0x1769] = 0x2a02c, [0x176a] = 0x2a015, + [0x176b] = 0x2a02d, [0x176c] = 0x2a01f, [0x176d] = 0x2a029, [0x176e] = 0x2a04b, + [0x176f] = 0x2a2b3, [0x1770] = 0x2a2a5, [0x1771] = 0x2a2a7, [0x1772] = 0x2a2ab, + [0x1773] = 0x2a2a6, [0x1774] = 0x2a2aa, [0x1775] = 0x2a322, [0x1776] = 0x2a323, + [0x1777] = 0x2a3a1, [0x1778] = 0x2a3a3, [0x1779] = 0x2a3a0, [0x177a] = 0x2a3bd, + [0x177b] = 0x2a3ba, [0x177c] = 0x2a3fa, [0x177d] = 0x2a3f8, [0x177e] = 0x2a3fc, + [0x177f] = 0x2a3f6, [0x1780] = 0x2a434, [0x1781] = 0x2a443, [0x1782] = 0x4d63, + [0x1783] = 0x2a4d4, [0x1784] = 0x2a50d, [0x1785] = 0x2a543, [0x1786] = 0x2a541, + [0x1787] = 0x2a53d, [0x1788] = 0x2a540, [0x1789] = 0x2a53e, [0x178a] = 0x2a53f, + [0x178b] = 0x2a546, [0x178c] = 0x4d93, [0x178d] = 0x2a5d4, [0x178e] = 0x20435, + [0x178f] = 0x20436, [0x1790] = 0x20432, [0x1791] = 0x2043a, [0x1792] = 0x204c8, + [0x1793] = 0x20536, [0x1794] = 0x2061e, [0x1795] = 0x2061d, [0x1796] = 0x2061f, + [0x1797] = 0x2081c, [0x1798] = 0x2081d, [0x1799] = 0x20820, [0x179a] = 0x350e, + [0x179b] = 0x208c0, [0x179c] = 0x2109a, [0x179d] = 0x21093, [0x179e] = 0x210dd, + [0x179f] = 0x360a, [0x17a0] = 0x210a3, [0x17a1] = 0x210a9, [0x17a2] = 0x2109c, + [0x17a3] = 0x2109b, [0x17a4] = 0x360d, [0x17a5] = 0x21097, [0x17a6] = 0x214b1, + [0x17a7] = 0x214ca, [0x17a8] = 0x214b3, [0x17a9] = 0x214cd, [0x17aa] = 0x218ea, + [0x17ab] = 0x218ee, [0x17ac] = 0x218ef, [0x17ad] = 0x21adf, [0x17ae] = 0x21b50, + [0x17af] = 0x21bbb, [0x17b0] = 0x21f88, [0x17b1] = 0x21f89, [0x17b2] = 0x21f8c, + [0x17b3] = 0x21f85, [0x17b4] = 0x21f5e, [0x17b5] = 0x21f94, [0x17b6] = 0x21f95, + [0x17b7] = 0x2216b, [0x17b8] = 0x2216a, [0x17b9] = 0x22169, [0x17ba] = 0x222e3, + [0x17bb] = 0x222f1, [0x17bc] = 0x22437, [0x17bd] = 0x22433, [0x17be] = 0x22591, + [0x17bf] = 0x2258f, [0x17c0] = 0x22597, [0x17c1] = 0x228d4, [0x17c2] = 0x228de, + [0x17c3] = 0x228d3, [0x17c4] = 0x228e0, [0x17c5] = 0x22943, [0x17c6] = 0x2290b, + [0x17c7] = 0x228ff, [0x17c8] = 0x22904, [0x17c9] = 0x22907, [0x17ca] = 0x22df9, + [0x17cb] = 0x22dfa, [0x17cc] = 0x22dfb, [0x17cd] = 0x22df8, [0x17ce] = 0x23012, + [0x17cf] = 0x23010, [0x17d0] = 0x2311f, [0x17d1] = 0x232df, [0x17d2] = 0x232e3, + [0x17d3] = 0x23352, [0x17d4] = 0x233a9, [0x17d5] = 0x23765, [0x17d6] = 0x23787, + [0x17d7] = 0x23742, [0x17d8] = 0x23752, [0x17d9] = 0x2374c, [0x17da] = 0x2369f, + [0x17db] = 0x23701, [0x17dc] = 0x23748, [0x17dd] = 0x2374f, [0x17de] = 0x2377e, + [0x17df] = 0x2374d, [0x17e0] = 0x23758, [0x17e1] = 0x23747, [0x17e2] = 0x2375e, + [0x17e3] = 0x23749, [0x17e4] = 0x2374e, [0x17e5] = 0x2375d, [0x17e6] = 0x2375a, + [0x17e7] = 0x23786, [0x17e8] = 0x23751, [0x17e9] = 0x23929, [0x17ea] = 0x239a6, + [0x17eb] = 0x239a7, [0x17ec] = 0x23a70, [0x17ed] = 0x23a6f, [0x17ee] = 0x23ad3, + [0x17ef] = 0x23ad2, [0x17f0] = 0x23c28, [0x17f1] = 0x23c1b, [0x17f2] = 0x23c1a, + [0x17f3] = 0x23c1c, [0x17f4] = 0x23c21, [0x17f5] = 0x24032, [0x17f6] = 0x24066, + [0x17f7] = 0x2407d, [0x17f8] = 0x24073, [0x17f9] = 0x2407f, [0x17fa] = 0x24065, + [0x17fb] = 0x24080, [0x17fc] = 0x24061, [0x17fd] = 0x24075, [0x17fe] = 0x2406e, + [0x17ff] = 0x24067, [0x1800] = 0x24071, [0x1801] = 0x2406c, [0x1802] = 0x24063, + [0x1803] = 0x24062, [0x1804] = 0x24083, [0x1805] = 0x240b2, [0x1806] = 0x24081, + [0x1807] = 0x2406f, [0x1808] = 0x2406b, [0x1809] = 0x24082, [0x180a] = 0x2408a, + [0x180b] = 0x24429, [0x180c] = 0x24430, [0x180d] = 0x24431, [0x180e] = 0x24597, + [0x180f] = 0x24600, [0x1810] = 0x245ff, [0x1811] = 0x248b6, [0x1812] = 0x248b5, + [0x1813] = 0x248c3, [0x1814] = 0x24a8d, [0x1815] = 0x24b18, [0x1816] = 0x24b9c, + [0x1817] = 0x24b9a, [0x1818] = 0x24b99, [0x1819] = 0x24eb7, [0x181a] = 0x24ec4, + [0x181b] = 0x24ec6, [0x181c] = 0x24ec7, [0x181d] = 0x24ebc, [0x181e] = 0x24ec0, + [0x181f] = 0x24ec5, [0x1820] = 0x24ecd, [0x1821] = 0x24ec1, [0x1822] = 0x24ebe, + [0x1823] = 0x24fa7, [0x1824] = 0x24fb8, [0x1825] = 0x25023, [0x1826] = 0x4074, + [0x1827] = 0x252e8, [0x1828] = 0x252de, [0x1829] = 0x252e3, [0x182a] = 0x252ef, + [0x182b] = 0x252dc, [0x182c] = 0x252e4, [0x182d] = 0x252e1, [0x182e] = 0x252e5, + [0x182f] = 0x25395, [0x1830] = 0x25394, [0x1831] = 0x25393, [0x1832] = 0x2538e, + [0x1833] = 0x25598, [0x1834] = 0x2559c, [0x1835] = 0x25599, [0x1836] = 0x255a0, + [0x1837] = 0x2559e, [0x1838] = 0x25704, [0x1839] = 0x258d3, [0x183a] = 0x258b4, + [0x183b] = 0x258bb, [0x183c] = 0x258b7, [0x183d] = 0x258b8, [0x183e] = 0x258bd, + [0x183f] = 0x258b6, [0x1840] = 0x258b9, [0x1841] = 0x258b5, [0x1842] = 0x25a22, + [0x1843] = 0x25a21, [0x1844] = 0x25ac3, [0x1845] = 0x25abc, [0x1846] = 0x25cff, + [0x1847] = 0x25ce5, [0x1848] = 0x25cf7, [0x1849] = 0x25cd2, [0x184a] = 0x25d00, + [0x184b] = 0x25cdb, [0x184c] = 0x25cf0, [0x184d] = 0x25ce2, [0x184e] = 0x25ccd, + [0x184f] = 0x4256, [0x1850] = 0x25ce1, [0x1851] = 0x25cf2, [0x1852] = 0x25cdc, + [0x1853] = 0x25ccc, [0x1854] = 0x25cd6, [0x1855] = 0x25cf3, [0x1856] = 0x25cfa, + [0x1857] = 0x25cf6, [0x1858] = 0x25cec, [0x1859] = 0x25cea, [0x185a] = 0x25ce3, + [0x185b] = 0x25cd0, [0x185c] = 0x425a, [0x185d] = 0x25c95, [0x185e] = 0x25cd5, + [0x185f] = 0x25cf4, [0x1860] = 0x25ccb, [0x1861] = 0x25cda, [0x1862] = 0x25cc8, + [0x1863] = 0x25cdf, [0x1864] = 0x25cf5, [0x1865] = 0x25ccf, [0x1866] = 0x25cc7, + [0x1867] = 0x25cd7, [0x1868] = 0x25f24, [0x1869] = 0x42a3, [0x186a] = 0x25f1c, + [0x186b] = 0x25f21, [0x186c] = 0x25f1e, [0x186d] = 0x25f18, [0x186e] = 0x25f1b, + [0x186f] = 0x42a8, [0x1870] = 0x26146, [0x1871] = 0x2614b, [0x1872] = 0x26148, + [0x1873] = 0x26147, [0x1874] = 0x26167, [0x1875] = 0x26154, [0x1876] = 0x26315, + [0x1877] = 0x26322, [0x1878] = 0x263c5, [0x1879] = 0x26329, [0x187a] = 0x263c7, + [0x187b] = 0x2648d, [0x187c] = 0x2651b, [0x187d] = 0x26520, [0x187e] = 0x265e2, + [0x187f] = 0x265e7, [0x1880] = 0x265e8, [0x1881] = 0x265e1, [0x1882] = 0x26872, + [0x1883] = 0x2687b, [0x1884] = 0x26874, [0x1885] = 0x26871, [0x1886] = 0x26879, + [0x1887] = 0x26875, [0x1888] = 0x26890, [0x1889] = 0x26877, [0x188a] = 0x2687d, + [0x188b] = 0x2694f, [0x188c] = 0x26950, [0x188d] = 0x269a3, [0x188e] = 0x269a2, + [0x188f] = 0x269f4, [0x1890] = 0x26a94, [0x1891] = 0x26a9a, [0x1892] = 0x26a9b, + [0x1893] = 0x26aa7, [0x1894] = 0x26a97, [0x1895] = 0x26a95, [0x1896] = 0x26a92, + [0x1897] = 0x26a9c, [0x1898] = 0x26a96, [0x1899] = 0x26fb6, [0x189a] = 0x26fb8, + [0x189b] = 0x26fb0, [0x189c] = 0x27018, [0x189d] = 0x26fc5, [0x189e] = 0x26fb5, + [0x189f] = 0x26fc2, [0x18a0] = 0x27006, [0x18a1] = 0x27019, [0x18a2] = 0x26fb9, + [0x18a3] = 0x27015, [0x18a4] = 0x26fd6, [0x18a5] = 0x26fac, [0x18a6] = 0x453c, + [0x18a7] = 0x26fc6, [0x18a8] = 0x26fb3, [0x18a9] = 0x26fc3, [0x18aa] = 0x26fca, + [0x18ab] = 0x26fcf, [0x18ac] = 0x26fbd, [0x18ad] = 0x26fce, [0x18ae] = 0x27014, + [0x18af] = 0x26fba, [0x18b0] = 0x2701a, [0x18b1] = 0x26fc1, [0x18b2] = 0x26fbb, + [0x18b3] = 0x459b, [0x18b4] = 0x459a, [0x18b5] = 0x27201, [0x18b6] = 0x271fc, + [0x18b7] = 0x2745a, [0x18b8] = 0x27454, [0x18b9] = 0x27461, [0x18ba] = 0x2745c, + [0x18bb] = 0x27455, [0x18bc] = 0x2744a, [0x18bd] = 0x2744b, [0x18be] = 0x27451, + [0x18bf] = 0x27469, [0x18c0] = 0x2746b, [0x18c1] = 0x87f1, [0x18c2] = 0x27466, + [0x18c3] = 0x27458, [0x18c4] = 0x2745d, [0x18c5] = 0x27467, [0x18c6] = 0x27456, + [0x18c7] = 0x27488, [0x18c8] = 0x27464, [0x18c9] = 0x2744e, [0x18ca] = 0x27757, + [0x18cb] = 0x2775a, [0x18cc] = 0x27751, [0x18cd] = 0x2774a, [0x18ce] = 0x2774b, + [0x18cf] = 0x465e, [0x18d0] = 0x27747, [0x18d1] = 0x2776f, [0x18d2] = 0x2776a, + [0x18d3] = 0x2776b, [0x18d4] = 0x27746, [0x18d5] = 0x2776d, [0x18d6] = 0x27754, + [0x18d7] = 0x2776e, [0x18d8] = 0x2774c, [0x18d9] = 0x27878, [0x18da] = 0x27886, + [0x18db] = 0x27882, [0x18dc] = 0x46a7, [0x18dd] = 0x27ae1, [0x18de] = 0x27ae5, + [0x18df] = 0x27adb, [0x18e0] = 0x27ade, [0x18e1] = 0x27ad7, [0x18e2] = 0x27c03, + [0x18e3] = 0x27c7c, [0x18e4] = 0x27c7e, [0x18e5] = 0x27d05, [0x18e6] = 0x27d07, + [0x18e7] = 0x27de6, [0x18e8] = 0x27de1, [0x18e9] = 0x27dfb, [0x18ea] = 0x27de5, + [0x18eb] = 0x27de7, [0x18ec] = 0x27ddf, [0x18ed] = 0x27dff, [0x18ee] = 0x27e76, + [0x18ef] = 0x27f63, [0x18f0] = 0x27f66, [0x18f1] = 0x27f65, [0x18f2] = 0x27f5e, + [0x18f3] = 0x27f64, [0x18f4] = 0x27f6b, [0x18f5] = 0x27f5f, [0x18f6] = 0x27f67, + [0x18f7] = 0x27f68, [0x18f8] = 0x28108, [0x18f9] = 0x28109, [0x18fa] = 0x28117, + [0x18fb] = 0x28115, [0x18fc] = 0x2811b, [0x18fd] = 0x2810b, [0x18fe] = 0x28128, + [0x18ff] = 0x2810e, [0x1900] = 0x28118, [0x1901] = 0x28153, [0x1902] = 0x28145, + [0x1903] = 0x2810d, [0x1904] = 0x2810a, [0x1905] = 0x28113, [0x1906] = 0x2814a, + [0x1907] = 0x28279, [0x1908] = 0x283a1, [0x1909] = 0x2838d, [0x190a] = 0x283a2, + [0x190b] = 0x28390, [0x190c] = 0x486e, [0x190d] = 0x28431, [0x190e] = 0x28430, + [0x190f] = 0x2861f, [0x1910] = 0x28619, [0x1911] = 0x2860c, [0x1912] = 0x2861e, + [0x1913] = 0x2861d, [0x1914] = 0x28607, [0x1915] = 0x28766, [0x1916] = 0x287c5, + [0x1917] = 0x287ba, [0x1918] = 0x287bd, [0x1919] = 0x287c2, [0x191a] = 0x287c3, + [0x191b] = 0x287bf, [0x191c] = 0x490d, [0x191d] = 0x288a1, [0x191e] = 0x288a2, + [0x191f] = 0x288a8, [0x1920] = 0x288a3, [0x1921] = 0x288aa, [0x1922] = 0x288af, + [0x1923] = 0x288b9, [0x1924] = 0x28937, [0x1925] = 0x28a8f, [0x1926] = 0x4943, + [0x1927] = 0x28a8e, [0x1928] = 0x28a87, [0x1929] = 0x28a8a, [0x192a] = 0x28a92, + [0x192b] = 0x28a97, [0x192c] = 0x28a9f, [0x192d] = 0x28b05, [0x192e] = 0x28ca9, + [0x192f] = 0x28ca7, [0x1930] = 0x28d8a, [0x1931] = 0x28d82, [0x1932] = 0x28d85, + [0x1933] = 0x28d8b, [0x1934] = 0x28d89, [0x1935] = 0x28d81, [0x1936] = 0x28d80, + [0x1937] = 0x28d87, [0x1938] = 0x28d86, [0x1939] = 0x28f4d, [0x193a] = 0x2901c, + [0x193b] = 0x2901f, [0x193c] = 0x29121, [0x193d] = 0x2911d, [0x193e] = 0x29122, + [0x193f] = 0x290fe, [0x1940] = 0x2911b, [0x1941] = 0x2913a, [0x1942] = 0x29137, + [0x1943] = 0x29117, [0x1944] = 0x29138, [0x1945] = 0x29126, [0x1946] = 0x29118, + [0x1947] = 0x29234, [0x1948] = 0x29235, [0x1949] = 0x29232, [0x194a] = 0x4a73, + [0x194b] = 0x292e1, [0x194c] = 0x292fd, [0x194d] = 0x292e3, [0x194e] = 0x292e8, + [0x194f] = 0x292f9, [0x1950] = 0x292ff, [0x1951] = 0x292fe, [0x1952] = 0x4a74, + [0x1953] = 0x292e0, [0x1954] = 0x29300, [0x1955] = 0x4a70, [0x1956] = 0x292ec, + [0x1957] = 0x292e4, [0x1958] = 0x292ef, [0x1959] = 0x292fa, [0x195a] = 0x293ca, + [0x195b] = 0x29431, [0x195c] = 0x29432, [0x195d] = 0x29434, [0x195e] = 0x29441, + [0x195f] = 0x29500, [0x1960] = 0x29506, [0x1961] = 0x29508, [0x1962] = 0x29505, + [0x1963] = 0x29503, [0x1964] = 0x2950b, [0x1965] = 0x29502, [0x1966] = 0x2950a, + [0x1967] = 0x295f0, [0x1968] = 0x29613, [0x1969] = 0x2960a, [0x196a] = 0x2960f, + [0x196b] = 0x29611, [0x196c] = 0x29608, [0x196d] = 0x2960b, [0x196e] = 0x29612, + [0x196f] = 0x2960d, [0x1970] = 0x2975b, [0x1971] = 0x29763, [0x1972] = 0x29761, + [0x1973] = 0x29768, [0x1974] = 0x2975a, [0x1975] = 0x2984e, [0x1976] = 0x2984d, + [0x1977] = 0x29850, [0x1978] = 0x298fc, [0x1979] = 0x29912, [0x197a] = 0x298f5, + [0x197b] = 0x2991e, [0x197c] = 0x298f0, [0x197d] = 0x298f3, [0x197e] = 0x298f2, + [0x197f] = 0x29901, [0x1980] = 0x298ef, [0x1981] = 0x298ee, [0x1982] = 0x29916, + [0x1983] = 0x298f6, [0x1984] = 0x298fb, [0x1985] = 0x2991c, [0x1986] = 0x4bdb, + [0x1987] = 0x29a5d, [0x1988] = 0x29a60, [0x1989] = 0x29a66, [0x198a] = 0x29a5f, + [0x198b] = 0x29a61, [0x198c] = 0x29a5b, [0x198d] = 0x29a62, [0x198e] = 0x29a57, + [0x198f] = 0x29b69, [0x1990] = 0x29b6b, [0x1991] = 0x29b61, [0x1992] = 0x29b77, + [0x1993] = 0x29b5f, [0x1994] = 0x29b63, [0x1995] = 0x29b62, [0x1996] = 0x29b65, + [0x1997] = 0x29cef, [0x1998] = 0x29ce2, [0x1999] = 0x29d00, [0x199a] = 0x29ce8, + [0x199b] = 0x29cf2, [0x199c] = 0x29ce7, [0x199d] = 0x4c29, [0x199e] = 0x29ce5, + [0x199f] = 0x29dd5, [0x19a0] = 0x29dd0, [0x19a1] = 0x29dda, [0x19a2] = 0x29dd3, + [0x19a3] = 0x4c51, [0x19a4] = 0x29dd9, [0x19a5] = 0x29dcf, [0x19a6] = 0x29dd6, + [0x19a7] = 0x29dd8, [0x19a8] = 0x29df5, [0x19a9] = 0x29dce, [0x19aa] = 0x29dd7, + [0x19ab] = 0x29df4, [0x19ac] = 0x29dcd, [0x19ad] = 0x29e01, [0x19ae] = 0x9bba, + [0x19af] = 0x2a052, [0x19b0] = 0x2a055, [0x19b1] = 0x2a05a, [0x19b2] = 0x2a04d, + [0x19b3] = 0x2a054, [0x19b4] = 0x2a053, [0x19b5] = 0x2a05e, [0x19b6] = 0x2a067, + [0x19b7] = 0x2a065, [0x19b8] = 0x2a04e, [0x19b9] = 0x4cdb, [0x19ba] = 0x2a04f, + [0x19bb] = 0x2a061, [0x19bc] = 0x2a06e, [0x19bd] = 0x2a051, [0x19be] = 0x2a05b, + [0x19bf] = 0x2a263, [0x19c0] = 0x2a2b7, [0x19c1] = 0x2a2b6, [0x19c2] = 0x2a2c3, + [0x19c3] = 0x2a2bb, [0x19c4] = 0x2a2b5, [0x19c5] = 0x2a32e, [0x19c6] = 0x2a330, + [0x19c7] = 0x2a333, [0x19c8] = 0x2a331, [0x19c9] = 0x2a3a4, [0x19ca] = 0x2a3c1, + [0x19cb] = 0x2a3bb, [0x19cc] = 0x2a3be, [0x19cd] = 0x2a400, [0x19ce] = 0x2a3ff, + [0x19cf] = 0x2a440, [0x19d0] = 0x4d65, [0x19d1] = 0x2a43f, [0x19d2] = 0x2a444, + [0x19d3] = 0x4d64, [0x19d4] = 0x4d67, [0x19d5] = 0x2a4db, [0x19d6] = 0x2a50f, + [0x19d7] = 0x2a511, [0x19d8] = 0x2a54e, [0x19d9] = 0x2a54d, [0x19da] = 0x2a54b, + [0x19db] = 0x2a54c, [0x19dc] = 0x2a595, [0x19dd] = 0x2043b, [0x19de] = 0x20445, + [0x19df] = 0x20444, [0x19e0] = 0x2043e, [0x19e1] = 0x2043c, [0x19e2] = 0x2043f, + [0x19e3] = 0x204cc, [0x19e4] = 0x204ce, [0x19e5] = 0x20622, [0x19e6] = 0x20623, + [0x19e7] = 0x2069f, [0x19e8] = 0x208c5, [0x19e9] = 0x208c4, [0x19ea] = 0x210e9, + [0x19eb] = 0x21099, [0x19ec] = 0x3611, [0x19ed] = 0x210e6, [0x19ee] = 0x210e7, + [0x19ef] = 0x210f7, [0x19f0] = 0x214d2, [0x19f1] = 0x3733, [0x19f2] = 0x218fd, + [0x19f3] = 0x2190c, [0x19f4] = 0x2190b, [0x19f5] = 0x21ced, [0x19f6] = 0x3821, + [0x19f7] = 0x3822, [0x19f8] = 0x21f9b, [0x19f9] = 0x2200a, [0x19fa] = 0x2216f, + [0x19fb] = 0x22175, [0x19fc] = 0x222f2, [0x19fd] = 0x222f8, [0x19fe] = 0x2243e, + [0x19ff] = 0x22924, [0x1a00] = 0x2290e, [0x1a01] = 0x22916, [0x1a02] = 0x22918, + [0x1a03] = 0x22910, [0x1a04] = 0x22931, [0x1a05] = 0x22944, [0x1a06] = 0x39a6, + [0x1a07] = 0x22929, [0x1a08] = 0x2292f, [0x1a09] = 0x2294b, [0x1a0a] = 0x22936, + [0x1a0b] = 0x39a3, [0x1a0c] = 0x22e34, [0x1a0d] = 0x22e00, [0x1a0e] = 0x22e2b, + [0x1a0f] = 0x23020, [0x1a10] = 0x23021, [0x1a11] = 0x2301e, [0x1a12] = 0x2301d, + [0x1a13] = 0x232f5, [0x1a14] = 0x232f2, [0x1a15] = 0x232f6, [0x1a16] = 0x23790, + [0x1a17] = 0x2379d, [0x1a18] = 0x2379c, [0x1a19] = 0x23792, [0x1a1a] = 0x23794, + [0x1a1b] = 0x237d1, [0x1a1c] = 0x23793, [0x1a1d] = 0x237b7, [0x1a1e] = 0x23797, + [0x1a1f] = 0x237b0, [0x1a20] = 0x2379f, [0x1a21] = 0x237c9, [0x1a22] = 0x2392d, + [0x1a23] = 0x2392c, [0x1a24] = 0x23a77, [0x1a25] = 0x23c2c, [0x1a26] = 0x240c0, + [0x1a27] = 0x240b9, [0x1a28] = 0x24453, [0x1a29] = 0x24540, [0x1a2a] = 0x24702, + [0x1a2b] = 0x246fb, [0x1a2c] = 0x3ea1, [0x1a2d] = 0x24a8b, [0x1a2e] = 0x24aae, + [0x1a2f] = 0x24aab, [0x1a30] = 0x24ba1, [0x1a31] = 0x2a2cd, [0x1a32] = 0x24cea, + [0x1a33] = 0x24edd, [0x1a34] = 0x24edc, [0x1a35] = 0x24ed9, [0x1a36] = 0x24fab, + [0x1a37] = 0x24fac, [0x1a38] = 0x24fad, [0x1a39] = 0x24fb2, [0x1a3a] = 0x2502c, + [0x1a3b] = 0x2502b, [0x1a3c] = 0x250c2, [0x1a3d] = 0x25300, [0x1a3e] = 0x2530d, + [0x1a3f] = 0x25306, [0x1a40] = 0x252ff, [0x1a41] = 0x25303, [0x1a42] = 0x25301, + [0x1a43] = 0x25310, [0x1a44] = 0x2530f, [0x1a45] = 0x25305, [0x1a46] = 0x25398, + [0x1a47] = 0x25397, [0x1a48] = 0x25396, [0x1a49] = 0x25399, [0x1a4a] = 0x255ac, + [0x1a4b] = 0x255ab, [0x1a4c] = 0x25712, [0x1a4d] = 0x258d8, [0x1a4e] = 0x258df, + [0x1a4f] = 0x258d6, [0x1a50] = 0x25a2d, [0x1a51] = 0x25a32, [0x1a52] = 0x25d3f, + [0x1a53] = 0x25d2f, [0x1a54] = 0x25d26, [0x1a55] = 0x25d3a, [0x1a56] = 0x25d39, + [0x1a57] = 0x425f, [0x1a58] = 0x25d3b, [0x1a59] = 0x25d35, [0x1a5a] = 0x25d2a, + [0x1a5b] = 0x25d21, [0x1a5c] = 0x25d38, [0x1a5d] = 0x25d37, [0x1a5e] = 0x25d34, + [0x1a5f] = 0x425c, [0x1a60] = 0x25d22, [0x1a61] = 0x25d36, [0x1a62] = 0x25d44, + [0x1a63] = 0x25f45, [0x1a64] = 0x25f3b, [0x1a65] = 0x25f36, [0x1a66] = 0x25f42, + [0x1a67] = 0x2617a, [0x1a68] = 0x26186, [0x1a69] = 0x2618b, [0x1a6a] = 0x2617f, + [0x1a6b] = 0x26181, [0x1a6c] = 0x2632a, [0x1a6d] = 0x263d5, [0x1a6e] = 0x2649f, + [0x1a6f] = 0x2649d, [0x1a70] = 0x26526, [0x1a71] = 0x265f4, [0x1a72] = 0x265f5, + [0x1a73] = 0x26815, [0x1a74] = 0x2688e, [0x1a75] = 0x2688f, [0x1a76] = 0x26926, + [0x1a77] = 0x269a7, [0x1a78] = 0x269af, [0x1a79] = 0x26aad, [0x1a7a] = 0x26aac, + [0x1a7b] = 0x26aab, [0x1a7c] = 0x26aaa, [0x1a7d] = 0x2702f, [0x1a7e] = 0x27021, + [0x1a7f] = 0x27023, [0x1a80] = 0x270a3, [0x1a81] = 0x27049, [0x1a82] = 0x2703a, + [0x1a83] = 0x27048, [0x1a84] = 0x2702d, [0x1a85] = 0x27025, [0x1a86] = 0x27029, + [0x1a87] = 0x27032, [0x1a88] = 0x27034, [0x1a89] = 0x27024, [0x1a8a] = 0x2702c, + [0x1a8b] = 0x2704b, [0x1a8c] = 0x2703b, [0x1a8d] = 0x27020, [0x1a8e] = 0x27028, + [0x1a8f] = 0x27498, [0x1a90] = 0x45f5, [0x1a91] = 0x27497, [0x1a92] = 0x8804, + [0x1a93] = 0x2749d, [0x1a94] = 0x274a8, [0x1a95] = 0x275d5, [0x1a96] = 0x27777, + [0x1a97] = 0x27778, [0x1a98] = 0x27772, [0x1a99] = 0x27773, [0x1a9a] = 0x27802, + [0x1a9b] = 0x2793b, [0x1a9c] = 0x27afe, [0x1a9d] = 0x27b0b, [0x1a9e] = 0x27aff, + [0x1a9f] = 0x27b07, [0x1aa0] = 0x4711, [0x1aa1] = 0x470c, [0x1aa2] = 0x27b30, + [0x1aa3] = 0x27bcd, [0x1aa4] = 0x27bcf, [0x1aa5] = 0x27c10, [0x1aa6] = 0x27c0a, + [0x1aa7] = 0x27c83, [0x1aa8] = 0x27d15, [0x1aa9] = 0x27d0e, [0x1aaa] = 0x27d0c, + [0x1aab] = 0x27e02, [0x1aac] = 0x27dfe, [0x1aad] = 0x27e05, [0x1aae] = 0x27e15, + [0x1aaf] = 0x27e08, [0x1ab0] = 0x27f7f, [0x1ab1] = 0x27f77, [0x1ab2] = 0x27f7c, + [0x1ab3] = 0x27f82, [0x1ab4] = 0x27f7e, [0x1ab5] = 0x27f78, [0x1ab6] = 0x27f7d, + [0x1ab7] = 0x27f79, [0x1ab8] = 0x27f81, [0x1ab9] = 0x2814b, [0x1aba] = 0x28163, + [0x1abb] = 0x28164, [0x1abc] = 0x28156, [0x1abd] = 0x28154, [0x1abe] = 0x2814e, + [0x1abf] = 0x28110, [0x1ac0] = 0x2814f, [0x1ac1] = 0x28157, [0x1ac2] = 0x2815e, + [0x1ac3] = 0x28151, [0x1ac4] = 0x2816a, [0x1ac5] = 0x28169, [0x1ac6] = 0x283ad, + [0x1ac7] = 0x283a4, [0x1ac8] = 0x283ac, [0x1ac9] = 0x283a9, [0x1aca] = 0x283ae, + [0x1acb] = 0x2044c, [0x1acc] = 0x28650, [0x1acd] = 0x28635, [0x1ace] = 0x28632, + [0x1acf] = 0x287d8, [0x1ad0] = 0x287d1, [0x1ad1] = 0x287cf, [0x1ad2] = 0x287be, + [0x1ad3] = 0x288d5, [0x1ad4] = 0x288c1, [0x1ad5] = 0x288c6, [0x1ad6] = 0x288c3, + [0x1ad7] = 0x288c2, [0x1ad8] = 0x288c0, [0x1ad9] = 0x288c5, [0x1ada] = 0x288c7, + [0x1adb] = 0x288bf, [0x1adc] = 0x288c4, [0x1add] = 0x288d4, [0x1ade] = 0x28a90, + [0x1adf] = 0x28ad2, [0x1ae0] = 0x494e, [0x1ae1] = 0x28ad4, [0x1ae2] = 0x28caf, + [0x1ae3] = 0x28cae, [0x1ae4] = 0x28cb2, [0x1ae5] = 0x28cad, [0x1ae6] = 0x28d9c, + [0x1ae7] = 0x28da0, [0x1ae8] = 0x28db6, [0x1ae9] = 0x28f3d, [0x1aea] = 0x28f56, + [0x1aeb] = 0x28f82, [0x1aec] = 0x29028, [0x1aed] = 0x2902b, [0x1aee] = 0x2913c, + [0x1aef] = 0x2913e, [0x1af0] = 0x2913f, [0x1af1] = 0x29142, [0x1af2] = 0x2913d, + [0x1af3] = 0x29141, [0x1af4] = 0x2913b, [0x1af5] = 0x29149, [0x1af6] = 0x29143, + [0x1af7] = 0x29239, [0x1af8] = 0x29238, [0x1af9] = 0x29322, [0x1afa] = 0x29308, + [0x1afb] = 0x2930c, [0x1afc] = 0x29306, [0x1afd] = 0x29313, [0x1afe] = 0x29304, + [0x1aff] = 0x29320, [0x1b00] = 0x2931d, [0x1b01] = 0x29305, [0x1b02] = 0x2930a, + [0x1b03] = 0x293d6, [0x1b04] = 0x293d7, [0x1b05] = 0x29436, [0x1b06] = 0x29437, + [0x1b07] = 0x29523, [0x1b08] = 0x29522, [0x1b09] = 0x29520, [0x1b0a] = 0x2951a, + [0x1b0b] = 0x2951d, [0x1b0c] = 0x2961c, [0x1b0d] = 0x29620, [0x1b0e] = 0x29677, + [0x1b0f] = 0x2977f, [0x1b10] = 0x2978b, [0x1b11] = 0x2977d, [0x1b12] = 0x29799, + [0x1b13] = 0x29784, [0x1b14] = 0x29789, [0x1b15] = 0x29785, [0x1b16] = 0x29783, + [0x1b17] = 0x29786, [0x1b18] = 0x2979e, [0x1b19] = 0x29853, [0x1b1a] = 0x29917, + [0x1b1b] = 0x4b94, [0x1b1c] = 0x29919, [0x1b1d] = 0x29920, [0x1b1e] = 0x2991f, + [0x1b1f] = 0x29923, [0x1b20] = 0x29918, [0x1b21] = 0x29921, [0x1b22] = 0x29929, + [0x1b23] = 0x29924, [0x1b24] = 0x29926, [0x1b25] = 0x29a5e, [0x1b26] = 0x29a6f, + [0x1b27] = 0x29a6e, [0x1b28] = 0x29a74, [0x1b29] = 0x29a72, [0x1b2a] = 0x29a73, + [0x1b2b] = 0x29b7d, [0x1b2c] = 0x29b7e, [0x1b2d] = 0x29b85, [0x1b2e] = 0x29b7f, + [0x1b2f] = 0x29b84, [0x1b30] = 0x29c44, [0x1b31] = 0x29cf5, [0x1b32] = 0x29cf8, + [0x1b33] = 0x29d03, [0x1b34] = 0x29cf6, [0x1b35] = 0x29e28, [0x1b36] = 0x4c63, + [0x1b37] = 0x29e39, [0x1b38] = 0x29dfb, [0x1b39] = 0x29e0e, [0x1b3a] = 0x29dfd, + [0x1b3b] = 0x29e1f, [0x1b3c] = 0x4c61, [0x1b3d] = 0x29e03, [0x1b3e] = 0x9bd8, + [0x1b3f] = 0x29e10, [0x1b40] = 0x4c5a, [0x1b41] = 0x29e0d, [0x1b42] = 0x29e27, + [0x1b43] = 0x29e41, [0x1b44] = 0x2a072, [0x1b45] = 0x2a078, [0x1b46] = 0x2a080, + [0x1b47] = 0x4ce3, [0x1b48] = 0x2a085, [0x1b49] = 0x2a07b, [0x1b4a] = 0x9d7c, + [0x1b4b] = 0x2a07d, [0x1b4c] = 0x2a091, [0x1b4d] = 0x2a088, [0x1b4e] = 0x2a0aa, + [0x1b4f] = 0x2a08d, [0x1b50] = 0x2a089, [0x1b51] = 0x2a095, [0x1b52] = 0x2a09b, + [0x1b53] = 0x2a08c, [0x1b54] = 0x2a09e, [0x1b55] = 0x2a07c, [0x1b56] = 0x2a086, + [0x1b57] = 0x2a084, [0x1b58] = 0x2a268, [0x1b59] = 0x2a2c5, [0x1b5a] = 0x2a2c4, + [0x1b5b] = 0x2a2c9, [0x1b5c] = 0x2a2c6, [0x1b5d] = 0x2a342, [0x1b5e] = 0x2a345, + [0x1b5f] = 0x2a341, [0x1b60] = 0x2a344, [0x1b61] = 0x2a3a6, [0x1b62] = 0x2a3c2, + [0x1b63] = 0x2a442, [0x1b64] = 0x2a449, [0x1b65] = 0x2a448, [0x1b66] = 0x2a44a, + [0x1b67] = 0x2a44c, [0x1b68] = 0x2a44b, [0x1b69] = 0x2a517, [0x1b6a] = 0x2a518, + [0x1b6b] = 0x2a515, [0x1b6c] = 0x2a552, [0x1b6d] = 0x2a554, [0x1b6e] = 0x2a553, + [0x1b6f] = 0x2a59a, [0x1b70] = 0x2a59b, [0x1b71] = 0x2a5dc, [0x1b72] = 0x2a5e4, + [0x1b73] = 0x2a691, [0x1b74] = 0x4daf, [0x1b75] = 0x2a6ba, [0x1b76] = 0x20451, + [0x1b77] = 0x2045b, [0x1b78] = 0x204cf, [0x1b79] = 0x23305, [0x1b7a] = 0x21113, + [0x1b7b] = 0x21115, [0x1b7c] = 0x21114, [0x1b7d] = 0x21123, [0x1b7e] = 0x3613, + [0x1b7f] = 0x21111, [0x1b80] = 0x21112, [0x1b81] = 0x3680, [0x1b82] = 0x214f0, + [0x1b83] = 0x2169b, [0x1b84] = 0x21912, [0x1b85] = 0x21916, [0x1b86] = 0x21917, + [0x1b87] = 0x219b5, [0x1b88] = 0x21cf4, [0x1b89] = 0x21fb1, [0x1b8a] = 0x22179, + [0x1b8b] = 0x222ff, [0x1b8c] = 0x222fc, [0x1b8d] = 0x222fb, [0x1b8e] = 0x2243f, + [0x1b8f] = 0x22444, [0x1b90] = 0x2259d, [0x1b91] = 0x22932, [0x1b92] = 0x2294c, + [0x1b93] = 0x2292b, [0x1b94] = 0x2295a, [0x1b95] = 0x22a1f, [0x1b96] = 0x22e01, + [0x1b97] = 0x22e2d, [0x1b98] = 0x22e27, [0x1b99] = 0x22e59, [0x1b9a] = 0x22e5a, + [0x1b9b] = 0x22e4d, [0x1b9c] = 0x22e58, [0x1b9d] = 0x23023, [0x1b9e] = 0x23025, + [0x1b9f] = 0x2302b, [0x1ba0] = 0x232ff, [0x1ba1] = 0x233ae, [0x1ba2] = 0x237cb, + [0x1ba3] = 0x237ca, [0x1ba4] = 0x237d0, [0x1ba5] = 0x237ce, [0x1ba6] = 0x237cc, + [0x1ba7] = 0x237d8, [0x1ba8] = 0x237c6, [0x1ba9] = 0x237d2, [0x1baa] = 0x237cf, + [0x1bab] = 0x237c8, [0x1bac] = 0x23b17, [0x1bad] = 0x4db0, [0x1bae] = 0x240c4, + [0x1baf] = 0x29240, [0x1bb0] = 0x240e9, [0x1bb1] = 0x240f2, [0x1bb2] = 0x240fc, + [0x1bb3] = 0x240ea, [0x1bb4] = 0x240eb, [0x1bb5] = 0x240fd, [0x1bb6] = 0x24478, + [0x1bb7] = 0x24477, [0x1bb8] = 0x24473, [0x1bb9] = 0x2449e, [0x1bba] = 0x24479, + [0x1bbb] = 0x245a2, [0x1bbc] = 0x24603, [0x1bbd] = 0x24704, [0x1bbe] = 0x24705, + [0x1bbf] = 0x248ce, [0x1bc0] = 0x24abf, [0x1bc1] = 0x24ef6, [0x1bc2] = 0x24ef7, + [0x1bc3] = 0x25031, [0x1bc4] = 0x25030, [0x1bc5] = 0x250c9, [0x1bc6] = 0x250c7, + [0x1bc7] = 0x2531c, [0x1bc8] = 0x25328, [0x1bc9] = 0x2531a, [0x1bca] = 0x2531e, + [0x1bcb] = 0x2531b, [0x1bcc] = 0x2531f, [0x1bcd] = 0x255bf, [0x1bce] = 0x255bb, + [0x1bcf] = 0x255bc, [0x1bd0] = 0x255c0, [0x1bd1] = 0x2571a, [0x1bd2] = 0x258ef, + [0x1bd3] = 0x258ec, [0x1bd4] = 0x258e9, [0x1bd5] = 0x258f0, [0x1bd6] = 0x258fe, + [0x1bd7] = 0x25a34, [0x1bd8] = 0x25d6a, [0x1bd9] = 0x25d95, [0x1bda] = 0x25d6c, + [0x1bdb] = 0x25d72, [0x1bdc] = 0x25d67, [0x1bdd] = 0x25d60, [0x1bde] = 0x25d6b, + [0x1bdf] = 0x25d5e, [0x1be0] = 0x25d6f, [0x1be1] = 0x25d66, [0x1be2] = 0x7c46, + [0x1be3] = 0x25d62, [0x1be4] = 0x25d5d, [0x1be5] = 0x25d5c, [0x1be7] = 0x25f50, + [0x1be8] = 0x2619f, [0x1be9] = 0x4323, [0x1bea] = 0x2619e, [0x1beb] = 0x261a6, + [0x1bec] = 0x26335, [0x1bed] = 0x26338, [0x1bee] = 0x26336, [0x1bef] = 0x2633a, + [0x1bf0] = 0x263dc, [0x1bf1] = 0x2687c, [0x1bf2] = 0x268ab, [0x1bf3] = 0x4449, + [0x1bf4] = 0x268a8, [0x1bf5] = 0x268a7, [0x1bf6] = 0x2692b, [0x1bf7] = 0x2692c, + [0x1bf8] = 0x26928, [0x1bf9] = 0x2092b, [0x1bfa] = 0x269a9, [0x1bfb] = 0x269aa, + [0x1bfc] = 0x269ab, [0x1bfd] = 0x269f8, [0x1bfe] = 0x26ab1, [0x1bff] = 0x26af0, + [0x1c00] = 0x26aef, [0x1c01] = 0x270a8, [0x1c02] = 0x2708b, [0x1c03] = 0x27094, + [0x1c04] = 0x2709e, [0x1c05] = 0x2708f, [0x1c06] = 0x27088, [0x1c07] = 0x2707e, + [0x1c08] = 0x27081, [0x1c09] = 0x27030, [0x1c0a] = 0x2709b, [0x1c0b] = 0x27082, + [0x1c0c] = 0x27090, [0x1c0d] = 0x27085, [0x1c0e] = 0x2707f, [0x1c0f] = 0x270a9, + [0x1c10] = 0x270de, [0x1c11] = 0x2720d, [0x1c12] = 0x45fa, [0x1c13] = 0x274cf, + [0x1c14] = 0x274cb, [0x1c15] = 0x274d8, [0x1c16] = 0x274dd, [0x1c17] = 0x274d3, + [0x1c18] = 0x274d0, [0x1c19] = 0x274d5, [0x1c1a] = 0x274d6, [0x1c1b] = 0x275d6, + [0x1c1c] = 0x27792, [0x1c1d] = 0x27795, [0x1c1e] = 0x2a5cb, [0x1c1f] = 0x2778d, + [0x1c20] = 0x2779b, [0x1c21] = 0x2779d, [0x1c22] = 0x2778f, [0x1c23] = 0x2779e, + [0x1c24] = 0x277a6, [0x1c25] = 0x27896, [0x1c26] = 0x27892, [0x1c27] = 0x27b16, + [0x1c28] = 0x27b2a, [0x1c29] = 0x27b29, [0x1c2a] = 0x27b2c, [0x1c2b] = 0x27c15, + [0x1c2c] = 0x27c12, [0x1c2d] = 0x27c11, [0x1c2e] = 0x27c13, [0x1c2f] = 0x27c88, + [0x1c30] = 0x27c8b, [0x1c31] = 0x27c8a, [0x1c32] = 0x27c87, [0x1c33] = 0x27d17, + [0x1c34] = 0x27d16, [0x1c35] = 0x27d1a, [0x1c36] = 0x27e19, [0x1c37] = 0x27e17, + [0x1c38] = 0x27f91, [0x1c39] = 0x27f94, [0x1c3a] = 0x2818b, [0x1c3b] = 0x28190, + [0x1c3c] = 0x2818f, [0x1c3d] = 0x28186, [0x1c3e] = 0x28183, [0x1c3f] = 0x2818e, + [0x1c40] = 0x28187, [0x1c41] = 0x281a8, [0x1c42] = 0x28185, [0x1c43] = 0x281a6, + [0x1c44] = 0x28182, [0x1c45] = 0x281a7, [0x1c46] = 0x283b9, [0x1c47] = 0x283b7, + [0x1c48] = 0x283b4, [0x1c49] = 0x283b6, [0x1c4a] = 0x283b3, [0x1c4b] = 0x283c6, + [0x1c4c] = 0x2863c, [0x1c4d] = 0x28640, [0x1c4e] = 0x28638, [0x1c4f] = 0x28791, + [0x1c50] = 0x287a6, [0x1c51] = 0x287da, [0x1c52] = 0x288da, [0x1c53] = 0x288d8, + [0x1c54] = 0x288d9, [0x1c55] = 0x288db, [0x1c56] = 0x288d7, [0x1c57] = 0x28b16, + [0x1c58] = 0x28b12, [0x1c59] = 0x28b1f, [0x1c5a] = 0x4959, [0x1c5b] = 0x28b14, + [0x1c5c] = 0x28b1a, [0x1c5d] = 0x28b10, [0x1c5e] = 0x28cb3, [0x1c5f] = 0x28dae, + [0x1c60] = 0x28dc1, [0x1c61] = 0x28db0, [0x1c62] = 0x28daf, [0x1c63] = 0x28db1, + [0x1c64] = 0x28dad, [0x1c65] = 0x28db2, [0x1c66] = 0x28dc4, [0x1c67] = 0x2903c, + [0x1c68] = 0x2903f, [0x1c69] = 0x29161, [0x1c6a] = 0x29166, [0x1c6b] = 0x2923c, + [0x1c6c] = 0x2923b, [0x1c6d] = 0x2932c, [0x1c6e] = 0x4a7e, [0x1c6f] = 0x2932a, + [0x1c70] = 0x2933e, [0x1c71] = 0x2932f, [0x1c72] = 0x29332, [0x1c73] = 0x29327, + [0x1c74] = 0x29329, [0x1c75] = 0x29340, [0x1c76] = 0x293df, [0x1c77] = 0x293de, + [0x1c78] = 0x2943c, [0x1c79] = 0x2943b, [0x1c7a] = 0x2943e, [0x1c7b] = 0x29521, + [0x1c7c] = 0x29546, [0x1c7d] = 0x2953c, [0x1c7e] = 0x29536, [0x1c7f] = 0x29538, + [0x1c80] = 0x29535, [0x1c81] = 0x29631, [0x1c82] = 0x29636, [0x1c83] = 0x2962d, + [0x1c84] = 0x29633, [0x1c85] = 0x2962f, [0x1c86] = 0x2962e, [0x1c87] = 0x29635, + [0x1c88] = 0x297ac, [0x1c89] = 0x297a9, [0x1c8a] = 0x297a6, [0x1c8b] = 0x4ba8, + [0x1c8c] = 0x2994c, [0x1c8d] = 0x29943, [0x1c8e] = 0x29941, [0x1c8f] = 0x2994f, + [0x1c90] = 0x29942, [0x1c91] = 0x29951, [0x1c92] = 0x4ba9, [0x1c93] = 0x29940, + [0x1c94] = 0x29950, [0x1c95] = 0x29945, [0x1c96] = 0x2994a, [0x1c97] = 0x2994b, + [0x1c98] = 0x29a83, [0x1c99] = 0x29a82, [0x1c9a] = 0x29a81, [0x1c9b] = 0x29ae0, + [0x1c9c] = 0x29b98, [0x1c9d] = 0x29b9f, [0x1c9e] = 0x29b9b, [0x1c9f] = 0x29b9a, + [0x1ca0] = 0x29b99, [0x1ca1] = 0x29b96, [0x1ca2] = 0x29bae, [0x1ca3] = 0x29b9e, + [0x1ca4] = 0x29d09, [0x1ca5] = 0x29d0d, [0x1ca6] = 0x29e4e, [0x1ca7] = 0x29e4a, + [0x1ca8] = 0x29e4d, [0x1ca9] = 0x29e40, [0x1caa] = 0x29e3e, [0x1cab] = 0x29e48, + [0x1cac] = 0x29e42, [0x1cad] = 0x29e62, [0x1cae] = 0x29e45, [0x1caf] = 0x29e51, + [0x1cb0] = 0x2a0c6, [0x1cb1] = 0x2a0d0, [0x1cb2] = 0x2a0c0, [0x1cb3] = 0x2a0b7, + [0x1cb4] = 0x2a0c2, [0x1cb5] = 0x2a0bc, [0x1cb6] = 0x2a0c5, [0x1cb7] = 0x2a0dc, + [0x1cb8] = 0x2a0db, [0x1cb9] = 0x2a0d2, [0x1cba] = 0x2a0c7, [0x1cbb] = 0x2a0b6, + [0x1cbc] = 0x2a0c9, /* [0x1cbd] = 0x2a0cc, */ [0x1cbd] = 0x9d8d, [0x1cbe] = 0x2a0d1, + [0x1cbf] = 0x2a0cd, [0x1cc0] = 0x2a0da, [0x1cc1] = 0x2a0ba, [0x1cc2] = 0x2a0d3, + [0x1cc3] = 0x2a0ce, [0x1cc4] = 0x2a0f6, [0x1cc5] = 0x2a0bd, [0x1cc6] = 0x2a0dd, + [0x1cc7] = 0x2a0c8, [0x1cc8] = 0x2a10d, [0x1cc9] = 0x2a135, [0x1cca] = 0x2a271, + [0x1ccb] = 0x2a26e, [0x1ccc] = 0x2a26f, [0x1ccd] = 0x2a2d6, [0x1cce] = 0x2a34c, + [0x1ccf] = 0x2a34f, [0x1cd0] = 0x2a354, [0x1cd1] = 0x2a353, [0x1cd2] = 0x2a3c9, + [0x1cd3] = 0x2a3c8, [0x1cd4] = 0x2a403, [0x1cd5] = 0x4d54, [0x1cd6] = 0x2a404, + [0x1cd8] = 0x2a457, [0x1cd9] = 0x2a452, [0x1cda] = 0x2a453, [0x1cdb] = 0x4d6d, + [0x1cdc] = 0x2a456, [0x1cdd] = 0x2a45c, [0x1cde] = 0x2a455, [0x1cdf] = 0x2a564, + [0x1ce0] = 0x2a55d, [0x1ce1] = 0x2a55e, [0x1ce2] = 0x2a5a2, [0x1ce3] = 0x2a5a3, + [0x1ce4] = 0x4d8e, [0x1ce5] = 0x2a5e7, [0x1ce6] = 0x2a5e6, [0x1ce7] = 0x2a698, + [0x1ce8] = 0x2a6ac, [0x1ce9] = 0x2a6af, [0x1cea] = 0x2a6ae, [0x1ceb] = 0x20459, + [0x1cec] = 0x205a9, [0x1ced] = 0x2082a, [0x1cee] = 0x208c7, [0x1cef] = 0x21141, + [0x1cf0] = 0x21137, [0x1cf1] = 0x21135, [0x1cf2] = 0x21133, [0x1cf3] = 0x21139, + [0x1cf4] = 0x21132, [0x1cf5] = 0x214ff, [0x1cf6] = 0x21501, [0x1cf7] = 0x214f8, + [0x1cf8] = 0x2191b, [0x1cf9] = 0x21919, [0x1cfa] = 0x21bbf, [0x1cfb] = 0x21fbc, + [0x1cfc] = 0x21fbe, [0x1cfd] = 0x21fbd, [0x1cfe] = 0x2217d, [0x1cff] = 0x22446, + [0x1d00] = 0x22447, [0x1d01] = 0x225a4, [0x1d02] = 0x22a21, [0x1d03] = 0x22a62, + [0x1d04] = 0x22e86, [0x1d05] = 0x3a72, [0x1d06] = 0x2302f, [0x1d07] = 0x23031, + [0x1d08] = 0x3c14, [0x1d09] = 0x237f8, [0x1d0a] = 0x237f5, [0x1d0b] = 0x237f9, + [0x1d0c] = 0x237f2, [0x1d0d] = 0x237fa, [0x1d0e] = 0x237f3, [0x1d0f] = 0x23814, + [0x1d10] = 0x237fd, [0x1d11] = 0x2380f, [0x1d12] = 0x2380e, [0x1d13] = 0x23801, + [0x1d14] = 0x23937, [0x1d15] = 0x23935, [0x1d16] = 0x23934, [0x1d17] = 0x23931, + [0x1d18] = 0x23a7a, [0x1d19] = 0x23a7b, [0x1d1a] = 0x23c37, [0x1d1b] = 0x2412b, + [0x1d1c] = 0x240fb, [0x1d1d] = 0x24116, [0x1d1e] = 0x24113, [0x1d1f] = 0x3d93, + [0x1d20] = 0x24111, [0x1d21] = 0x2410f, [0x1d22] = 0x2411b, [0x1d23] = 0x24138, + [0x1d24] = 0x244a4, [0x1d25] = 0x24709, [0x1d26] = 0x24707, [0x1d27] = 0x2470b, + [0x1d28] = 0x248d3, [0x1d29] = 0x248d1, [0x1d2a] = 0x248d8, [0x1d2b] = 0x24b1d, + [0x1d2c] = 0x24ba9, [0x1d2d] = 0x24bd0, [0x1d2e] = 0x27215, [0x1d2f] = 0x24f02, + [0x1d30] = 0x24f05, [0x1d31] = 0x24f01, [0x1d32] = 0x24f00, [0x1d33] = 0x2532e, + [0x1d34] = 0x25330, [0x1d35] = 0x2532f, [0x1d36] = 0x25331, [0x1d37] = 0x255d2, + [0x1d38] = 0x255d3, [0x1d39] = 0x25902, [0x1d3a] = 0x25a40, [0x1d3b] = 0x25a42, + [0x1d3c] = 0x25a3b, [0x1d3d] = 0x25ace, [0x1d3e] = 0x25d98, [0x1d3f] = 0x25d8f, + [0x1d40] = 0x25d94, [0x1d41] = 0x25d91, [0x1d42] = 0x426f, [0x1d43] = 0x25dba, + [0x1d44] = 0x25d90, [0x1d45] = 0x25d86, [0x1d46] = 0x25d9a, [0x1d47] = 0x25d8c, + [0x1d48] = 0x25d93, [0x1d49] = 0x25d87, [0x1d4a] = 0x25d88, [0x1d4b] = 0x25d97, + [0x1d4c] = 0x25d8d, [0x1d4d] = 0x25d9c, [0x1d4e] = 0x25dbd, [0x1d4f] = 0x25f3c, + [0x1d50] = 0x25f59, [0x1d51] = 0x42b0, [0x1d52] = 0x261d1, [0x1d53] = 0x261bb, + [0x1d54] = 0x261be, [0x1d55] = 0x2625d, [0x1d56] = 0x263e2, [0x1d57] = 0x26605, + [0x1d58] = 0x268ba, [0x1d59] = 0x352e, [0x1d5a] = 0x268f4, [0x1d5b] = 0x269b2, + [0x1d5c] = 0x269f9, [0x1d5d] = 0x26ab7, [0x1d5e] = 0x26ab6, [0x1d5f] = 0x27089, + [0x1d60] = 0x270f9, [0x1d61] = 0x270d9, [0x1d62] = 0x270e8, [0x1d63] = 0x270d4, + [0x1d64] = 0x270db, [0x1d65] = 0x270e2, [0x1d66] = 0x270df, [0x1d67] = 0x270d1, + [0x1d68] = 0x270e9, [0x1d69] = 0x270ea, [0x1d6a] = 0x27213, [0x1d6b] = 0x27211, + [0x1d6c] = 0x274fa, [0x1d6d] = 0x274f8, [0x1d6e] = 0x274f4, [0x1d6f] = 0x274fb, + [0x1d70] = 0x2750e, [0x1d71] = 0x27502, [0x1d72] = 0x2750f, [0x1d73] = 0x27790, + [0x1d74] = 0x277ad, [0x1d75] = 0x277a9, [0x1d76] = 0x27948, [0x1d77] = 0x27b5a, + [0x1d78] = 0x27b4f, [0x1d79] = 0x27b4e, [0x1d7a] = 0x27b55, [0x1d7b] = 0x27b54, + [0x1d7c] = 0x27b4a, [0x1d7d] = 0x27bd5, [0x1d7e] = 0x27c18, [0x1d7f] = 0x27c8d, + [0x1d80] = 0x27d1d, [0x1d81] = 0x27d19, [0x1d82] = 0x27e26, [0x1d83] = 0x27e28, + [0x1d84] = 0x27e2b, [0x1d85] = 0x27e7d, [0x1d86] = 0x27fa0, [0x1d87] = 0x27f9a, + [0x1d88] = 0x27f9b, [0x1d89] = 0x281b5, [0x1d8a] = 0x281ad, [0x1d8b] = 0x281b2, + [0x1d8c] = 0x28294, [0x1d8d] = 0x283c9, [0x1d8e] = 0x2864e, [0x1d8f] = 0x2864f, + [0x1d90] = 0x28644, [0x1d91] = 0x28652, [0x1d92] = 0x288e9, [0x1d93] = 0x28939, + [0x1d94] = 0x4969, [0x1d95] = 0x957e, [0x1d96] = 0x28dc7, [0x1d97] = 0x28dd3, + [0x1d98] = 0x28dc6, [0x1d99] = 0x28dc3, [0x1d9a] = 0x49b4, [0x1d9b] = 0x28dd2, + [0x1d9c] = 0x28f66, [0x1d9d] = 0x2917f, [0x1d9e] = 0x29180, [0x1d9f] = 0x29184, + [0x1da0] = 0x29185, [0x1da1] = 0x291e3, [0x1da2] = 0x4a4d, [0x1da3] = 0x29241, + [0x1da4] = 0x29244, [0x1da5] = 0x29243, [0x1da6] = 0x2934e, [0x1da7] = 0x2934f, + [0x1da8] = 0x4a83, [0x1da9] = 0x29349, [0x1daa] = 0x2934a, [0x1dab] = 0x2934b, + [0x1dac] = 0x29343, [0x1dad] = 0x293e0, [0x1dae] = 0x293e5, [0x1daf] = 0x293e1, + [0x1db0] = 0x293e6, [0x1db1] = 0x293e2, [0x1db2] = 0x2940c, [0x1db3] = 0x29440, + [0x1db4] = 0x29549, [0x1db5] = 0x2954a, [0x1db6] = 0x29554, [0x1db7] = 0x2954c, + [0x1db8] = 0x29555, [0x1db9] = 0x29556, [0x1dba] = 0x2963b, [0x1dbb] = 0x2963d, + [0x1dbc] = 0x297a4, [0x1dbd] = 0x297a8, [0x1dbe] = 0x297c3, [0x1dbf] = 0x297bf, + [0x1dc0] = 0x297c8, [0x1dc1] = 0x297c2, [0x1dc2] = 0x297ca, [0x1dc3] = 0x297cc, + [0x1dc4] = 0x297c9, [0x1dc5] = 0x297be, [0x1dc6] = 0x297cd, [0x1dc7] = 0x297c7, + [0x1dc8] = 0x297c5, [0x1dc9] = 0x2985d, [0x1dca] = 0x4bb0, [0x1dcb] = 0x2996c, + [0x1dcc] = 0x2996b, [0x1dcd] = 0x29970, [0x1dce] = 0x2996d, [0x1dcf] = 0x2996f, + [0x1dd0] = 0x29989, [0x1dd1] = 0x29984, [0x1dd2] = 0x29a8d, [0x1dd3] = 0x29a8a, + [0x1dd4] = 0x29a8e, [0x1dd5] = 0x29a91, [0x1dd6] = 0x29bb5, [0x1dd7] = 0x29bb1, + [0x1dd8] = 0x29baf, [0x1dd9] = 0x29bb9, [0x1dda] = 0x29bb7, [0x1ddb] = 0x29bb0, + [0x1ddc] = 0x4c0c, [0x1ddd] = 0x29c17, [0x1dde] = 0x4c18, [0x1ddf] = 0x29c4f, + [0x1de0] = 0x29d19, [0x1de1] = 0x29d10, [0x1de2] = 0x29d18, [0x1de3] = 0x29d11, + [0x1de4] = 0x29d1c, [0x1de5] = 0x29d12, [0x1de6] = 0x29e76, [0x1de7] = 0x29e71, + [0x1de8] = 0x9c20, [0x1de9] = 0x29e7a, [0x1dea] = 0x29e7f, [0x1deb] = 0x9c22, + [0x1dec] = 0x29e73, [0x1ded] = 0x29eab, [0x1dee] = 0x9c1e, [0x1def] = 0x29e77, + [0x1df0] = 0x29e74, [0x1df1] = 0x29e7e, [0x1df2] = 0x29e9b, [0x1df3] = 0x29e84, + [0x1df4] = 0x29e7c, [0x1df5] = 0x2a129, [0x1df6] = 0x2a12b, [0x1df7] = 0x2a10e, + [0x1df8] = 0x2a100, [0x1df9] = 0x2a10b, [0x1dfa] = 0x2a0fe, [0x1dfb] = 0x2a0fa, + [0x1dfc] = 0x2a117, [0x1dfd] = 0x2a0ff, [0x1dfe] = 0x2a10c, [0x1dff] = 0x2a10f, + [0x1e00] = 0x4cf5, [0x1e01] = 0x2a102, [0x1e02] = 0x2a101, [0x1e03] = 0x2a0fc, + [0x1e04] = 0x2a149, [0x1e05] = 0x2a106, [0x1e06] = 0x2a112, [0x1e07] = 0x2a113, + [0x1e08] = 0x2a278, [0x1e09] = 0x2a35b, [0x1e0a] = 0x2a362, [0x1e0b] = 0x2a35f, + [0x1e0c] = 0x2a35d, [0x1e0d] = 0x2a3ab, [0x1e0e] = 0x2a3d5, [0x1e0f] = 0x2a3d4, + [0x1e10] = 0x2a3d3, [0x1e11] = 0x2a407, [0x1e12] = 0x2a46c, [0x1e13] = 0x2a470, + [0x1e14] = 0x2a46e, [0x1e15] = 0x2a468, [0x1e16] = 0x2a46d, [0x1e17] = 0x2a477, + [0x1e18] = 0x2a46a, [0x1e19] = 0x2a4ce, [0x1e1a] = 0x2a4ec, [0x1e1b] = 0x2a569, + [0x1e1c] = 0x2a568, [0x1e1d] = 0x2a5a6, [0x1e1e] = 0x2a5a9, [0x1e1f] = 0x2a5aa, + [0x1e20] = 0x2a600, [0x1e21] = 0x2a60d, [0x1e22] = 0x2a5f8, [0x1e23] = 0x2a5fc, + [0x1e24] = 0x2a60a, [0x1e25] = 0x2a5f7, [0x1e26] = 0x2a601, [0x1e27] = 0x2a6b6, + [0x1e28] = 0x2a6bb, [0x1e29] = 0x2a6b7, [0x1e2a] = 0x2a6b9, [0x1e2b] = 0x2a6ca, + [0x1e2c] = 0x20469, [0x1e2d] = 0x20625, [0x1e2e] = 0x21159, [0x1e2f] = 0x21507, + [0x1e30] = 0x21509, [0x1e31] = 0x21922, [0x1e32] = 0x21b07, [0x1e33] = 0x21b04, + [0x1e34] = 0x2330f, [0x1e35] = 0x21cf8, [0x1e36] = 0x21fc7, [0x1e37] = 0x21fd1, + [0x1e38] = 0x2217e, [0x1e39] = 0x22308, [0x1e3a] = 0x2244a, [0x1e3c] = 0x224b9, + [0x1e3d] = 0x22e88, [0x1e3e] = 0x22e91, [0x1e3f] = 0x22e84, [0x1e40] = 0x22e73, + [0x1e41] = 0x22e89, [0x1e42] = 0x22e85, [0x1e43] = 0x23033, [0x1e44] = 0x23313, + [0x1e45] = 0x2381d, [0x1e46] = 0x2381f, [0x1e47] = 0x2381c, [0x1e48] = 0x23820, + [0x1e49] = 0x2381a, [0x1e4a] = 0x2381b, [0x1e4b] = 0x23939, [0x1e4c] = 0x239af, + [0x1e4d] = 0x23ae5, [0x1e4e] = 0x23c3c, [0x1e4f] = 0x24137, [0x1e50] = 0x2413a, + [0x1e51] = 0x244bb, [0x1e52] = 0x3e0e, [0x1e53] = 0x24710, [0x1e54] = 0x2470d, + [0x1e55] = 0x24baf, [0x1e56] = 0x24c11, [0x1e57] = 0x3fd8, [0x1e58] = 0x24f0d, + [0x1e59] = 0x24f0c, [0x1e5a] = 0x24f0b, [0x1e5b] = 0x250d4, [0x1e5c] = 0x2533d, + [0x1e5d] = 0x2533e, [0x1e5e] = 0x2533b, [0x1e5f] = 0x25343, [0x1e60] = 0x25340, + [0x1e61] = 0x25346, [0x1e62] = 0x25411, [0x1e63] = 0x255dd, [0x1e64] = 0x255df, + [0x1e65] = 0x255ea, [0x1e66] = 0x2574a, [0x1e67] = 0x25906, [0x1e68] = 0x25dc1, + [0x1e69] = 0x25db9, [0x1e6a] = 0x25dc6, [0x1e6b] = 0x25db8, [0x1e6c] = 0x25dbb, + [0x1e6d] = 0x25dc8, [0x1e6e] = 0x25dc5, [0x1e6f] = 0x25dbf, [0x1e70] = 0x25dc7, + [0x1e71] = 0x25dc4, [0x1e72] = 0x25f65, [0x1e73] = 0x25f67, [0x1e74] = 0x261d7, + [0x1e75] = 0x261db, [0x1e76] = 0x261d4, [0x1e77] = 0x261d6, [0x1e78] = 0x263e8, + [0x1e79] = 0x2660a, [0x1e7a] = 0x26abd, [0x1e7b] = 0x26abe, [0x1e7c] = 0x2711a, + [0x1e7d] = 0x2710d, [0x1e7e] = 0x2710f, [0x1e7f] = 0x2711b, [0x1e80] = 0x27110, + [0x1e81] = 0x27111, [0x1e82] = 0x27113, [0x1e83] = 0x27218, [0x1e84] = 0x27520, + [0x1e85] = 0x2751f, [0x1e86] = 0x27523, [0x1e87] = 0x2751d, [0x1e88] = 0x27537, + [0x1e89] = 0x27525, [0x1e8a] = 0x27524, [0x1e8b] = 0x2752a, [0x1e8c] = 0x27527, + [0x1e8d] = 0x27533, [0x1e8e] = 0x27528, [0x1e8f] = 0x27534, [0x1e90] = 0x277ba, + [0x1e91] = 0x8970, [0x1e92] = 0x2789d, [0x1e93] = 0x2794c, [0x1e94] = 0x27b5c, + [0x1e95] = 0x27b6a, [0x1e96] = 0x27b5d, [0x1e97] = 0x27b65, [0x1e98] = 0x27b63, + [0x1e99] = 0x27b5e, [0x1e9a] = 0x27c19, [0x1e9b] = 0x27c97, [0x1e9c] = 0x27e3f, + [0x1e9d] = 0x27e33, [0x1e9e] = 0x27e32, [0x1e9f] = 0x27fa1, [0x1ea0] = 0x27fa5, + [0x1ea1] = 0x27fa4, [0x1ea2] = 0x27fa2, [0x1ea3] = 0x281c1, [0x1ea4] = 0x482c, + [0x1ea5] = 0x281c7, [0x1ea6] = 0x281c4, [0x1ea7] = 0x281c6, [0x1ea8] = 0x281c5, + [0x1ea9] = 0x281d4, [0x1eaa] = 0x281ca, [0x1eab] = 0x28653, [0x1eac] = 0x288f1, + [0x1ead] = 0x28921, [0x1eae] = 0x496e, [0x1eaf] = 0x28bb7, [0x1eb0] = 0x28b92, + [0x1eb1] = 0x28dd4, [0x1eb2] = 0x28f44, [0x1eb3] = 0x29198, [0x1eb4] = 0x2919b, + [0x1eb5] = 0x29191, [0x1eb6] = 0x29195, [0x1eb7] = 0x2919a, [0x1eb8] = 0x29192, + [0x1eb9] = 0x29353, [0x1eba] = 0x29357, [0x1ebb] = 0x4a86, [0x1ebc] = 0x2935c, + [0x1ebd] = 0x2935d, [0x1ebe] = 0x29364, [0x1ebf] = 0x293ea, [0x1ec0] = 0x293ed, + [0x1ec1] = 0x29442, [0x1ec2] = 0x29443, [0x1ec3] = 0x29564, [0x1ec4] = 0x29561, + [0x1ec5] = 0x29560, [0x1ec6] = 0x2967d, [0x1ec7] = 0x297d4, [0x1ec8] = 0x297d5, + [0x1ec9] = 0x297d9, [0x1eca] = 0x29987, [0x1ecb] = 0x29999, [0x1ecc] = 0x2998c, + [0x1ecd] = 0x2998a, [0x1ece] = 0x2998f, [0x1ecf] = 0x4bb3, [0x1ed0] = 0x2998b, + [0x1ed1] = 0x29982, [0x1ed2] = 0x2999b, [0x1ed3] = 0x4beb, [0x1ed4] = 0x29bc8, + [0x1ed5] = 0x29bc4, [0x1ed6] = 0x29bcc, [0x1ed7] = 0x29bc7, [0x1ed8] = 0x29bc3, + [0x1ed9] = 0x29bc6, [0x1eda] = 0x29bcb, [0x1edb] = 0x29bca, [0x1edc] = 0x29bc9, + [0x1edd] = 0x29bcd, [0x1ede] = 0x29c53, [0x1edf] = 0x29d21, [0x1ee0] = 0x29d29, + [0x1ee1] = 0x29d1d, [0x1ee2] = 0x29d24, [0x1ee3] = 0x29d28, [0x1ee4] = 0x9c43, + [0x1ee5] = 0x29eb1, [0x1ee6] = 0x29eb2, [0x1ee7] = 0x29eb5, [0x1ee8] = 0x29ed6, + [0x1ee9] = 0x29eaf, [0x1eea] = 0x29eca, [0x1eeb] = 0x29eb8, [0x1eee] = 0x2a145, + [0x1eef] = 0x2a147, [0x1ef0] = 0x2a134, [0x1ef1] = 0x2a16e, [0x1ef2] = 0x2a142, + [0x1ef3] = 0x2a131, [0x1ef4] = 0x2a12e, [0x1ef5] = 0x2a156, [0x1ef6] = 0x2a138, + [0x1ef7] = 0x2a137, [0x1ef8] = 0x2a14b, [0x1ef9] = 0x2a12d, [0x1efa] = 0x2a133, + [0x1efb] = 0x2a136, [0x1efc] = 0x9de0, [0x1efd] = 0x2a148, [0x1efe] = 0x2a2dc, + [0x1eff] = 0x4d42, [0x1f00] = 0x2a366, [0x1f01] = 0x2a36d, [0x1f02] = 0x2a363, + [0x1f03] = 0x2a364, [0x1f04] = 0x4d41, [0x1f05] = 0x2a367, [0x1f06] = 0x2a3d9, + [0x1f07] = 0x2a40b, [0x1f08] = 0x2a47e, [0x1f09] = 0x2a48b, [0x1f0a] = 0x2a526, + [0x1f0b] = 0x2a52c, [0x1f0c] = 0x2a529, [0x1f0d] = 0x2a56f, [0x1f0e] = 0x2a56b, + [0x1f0f] = 0x2a56d, [0x1f10] = 0x2a56e, [0x1f11] = 0x2a61c, [0x1f12] = 0x2a611, + [0x1f13] = 0x2a610, [0x1f14] = 0x2a624, [0x1f15] = 0x2a612, [0x1f16] = 0x2a615, + [0x1f17] = 0x2a617, [0x1f18] = 0x4dac, [0x1f19] = 0x2046f, [0x1f1a] = 0x205ab, + [0x1f1b] = 0x2082e, [0x1f1c] = 0x208c9, [0x1f1d] = 0x20b96, [0x1f1e] = 0x21185, + [0x1f1f] = 0x216a0, [0x1f20] = 0x2192b, [0x1f21] = 0x2230d, [0x1f22] = 0x23036, + [0x1f24] = 0x3b2f, [0x1f25] = 0x3b2e, [0x1f26] = 0x233b1, [0x1f27] = 0x2384a, + [0x1f28] = 0x23837, [0x1f29] = 0x2383c, [0x1f2a] = 0x23838, [0x1f2b] = 0x2383a, + [0x1f2c] = 0x2383e, [0x1f2d] = 0x23849, [0x1f2e] = 0x3c4d, [0x1f2f] = 0x3c7b, + [0x1f30] = 0x23a80, [0x1f31] = 0x23a7f, [0x1f32] = 0x23ae3, [0x1f33] = 0x23c3f, + [0x1f34] = 0x24152, [0x1f35] = 0x2414e, [0x1f36] = 0x2414a, [0x1f37] = 0x2414b, + [0x1f38] = 0x244d5, [0x1f39] = 0x24ad8, [0x1f3a] = 0x24b20, [0x1f3b] = 0x24bb3, + [0x1f3c] = 0x24bb1, [0x1f3d] = 0x24bb0, [0x1f3e] = 0x24f17, [0x1f3f] = 0x250d9, + [0x1f40] = 0x25349, [0x1f41] = 0x25413, [0x1f42] = 0x255ed, [0x1f43] = 0x255eb, + [0x1f44] = 0x255ee, [0x1f45] = 0x2590a, [0x1f46] = 0x2590b, [0x1f47] = 0x25a4a, + [0x1f48] = 0x25dd5, [0x1f49] = 0x25dd7, [0x1f4a] = 0x25dde, [0x1f4b] = 0x25ddc, + [0x1f4c] = 0x25dee, [0x1f4d] = 0x25f70, [0x1f4e] = 0x42b2, [0x1f4f] = 0x261d9, + [0x1f50] = 0x263d7, [0x1f51] = 0x268cb, [0x1f52] = 0x268c7, [0x1f53] = 0x269fc, + [0x1f54] = 0x2713b, [0x1f55] = 0x27139, [0x1f56] = 0x2714b, [0x1f57] = 0x27143, + [0x1f58] = 0x27140, [0x1f59] = 0x27146, [0x1f5a] = 0x2754d, [0x1f5b] = 0x27543, + [0x1f5c] = 0x27547, [0x1f5d] = 0x2754b, [0x1f5e] = 0x27555, [0x1f5f] = 0x27552, + [0x1f60] = 0x27b5f, [0x1f61] = 0x4722, [0x1f62] = 0x27b7c, [0x1f63] = 0x27b7b, + [0x1f64] = 0x27fa8, [0x1f65] = 0x27fa9, [0x1f66] = 0x281de, [0x1f67] = 0x281d7, + [0x1f68] = 0x281dd, [0x1f69] = 0x281d6, [0x1f6a] = 0x281d8, [0x1f6b] = 0x2829b, + [0x1f6c] = 0x283e0, [0x1f6d] = 0x283e8, [0x1f6e] = 0x283e6, [0x1f6f] = 0x288f8, + [0x1f70] = 0x288fb, [0x1f71] = 0x28bbb, [0x1f72] = 0x9459, [0x1f73] = 0x28bb8, + [0x1f74] = 0x4970, [0x1f75] = 0x28cc1, [0x1f76] = 0x28cc0, [0x1f77] = 0x291a4, + [0x1f78] = 0x291ab, [0x1f79] = 0x2924d, [0x1f7a] = 0x29365, [0x1f7b] = 0x29367, + [0x1f7c] = 0x2936a, [0x1f7d] = 0x29366, [0x1f7e] = 0x29369, [0x1f7f] = 0x29573, + [0x1f80] = 0x29580, [0x1f81] = 0x2956f, [0x1f82] = 0x29571, [0x1f83] = 0x297e4, + [0x1f84] = 0x297e6, [0x1f85] = 0x297e7, [0x1f86] = 0x299a0, [0x1f87] = 0x299a4, + [0x1f88] = 0x29aa2, [0x1f89] = 0x29aa7, [0x1f8a] = 0x29aa4, [0x1f8b] = 0x29bde, + [0x1f8c] = 0x29bdb, [0x1f8d] = 0x29c58, [0x1f8e] = 0x29c5c, [0x1f8f] = 0x29d2f, + [0x1f90] = 0x29d2e, [0x1f91] = 0x29edd, [0x1f92] = 0x29ee4, [0x1f93] = 0x29ed8, + [0x1f94] = 0x29ee7, [0x1f95] = 0x29eda, [0x1f96] = 0x29e75, [0x1f97] = 0x4c95, + [0x1f98] = 0x2a179, [0x1f99] = 0x2a180, [0x1f9a] = 0x2a17f, [0x1f9b] = 0x2a17c, + [0x1f9c] = 0x2a175, [0x1f9d] = 0x2a17b, [0x1f9e] = 0x2a182, [0x1f9f] = 0x4d00, + [0x1fa0] = 0x2a189, [0x1fa1] = 0x2a174, [0x1fa2] = 0x2a17d, [0x1fa3] = 0x2a17a, + [0x1fa4] = 0x2a186, [0x1fa5] = 0x2a1a8, [0x1fa6] = 0x2a172, [0x1fa7] = 0x4d02, + [0x1fa8] = 0x2a18b, [0x1fa9] = 0x2a191, [0x1faa] = 0x2a1b3, [0x1fab] = 0x2a181, + [0x1fac] = 0x2a282, [0x1fad] = 0x2a2e1, [0x1fae] = 0x2a2e3, [0x1faf] = 0x2a2e2, + [0x1fb0] = 0x2a376, [0x1fb1] = 0x2a374, [0x1fb2] = 0x2a372, [0x1fb3] = 0x2a375, + [0x1fb4] = 0x2a40e, [0x1fb5] = 0x2a40d, [0x1fb6] = 0x2a494, [0x1fb7] = 0x2a492, + [0x1fb8] = 0x2a493, [0x1fb9] = 0x2a491, [0x1fba] = 0x2a48f, [0x1fbb] = 0x2a495, + [0x1fbc] = 0x2a4d0, [0x1fbd] = 0x2a4f7, [0x1fbe] = 0x2a576, [0x1fbf] = 0x2a5af, + [0x1fc0] = 0x4d9f, [0x1fc1] = 0x2a626, [0x1fc2] = 0x2a625, [0x1fc3] = 0x2a62d, + [0x1fc4] = 0x2a6a0, [0x1fc5] = 0x2a6c3, [0x1fc6] = 0x204d7, [0x1fc7] = 0x20acc, + [0x1fc8] = 0x21179, [0x1fc9] = 0x2117a, [0x1fca] = 0x21515, [0x1fcb] = 0x21fdb, + [0x1fcc] = 0x22185, [0x1fcd] = 0x22970, [0x1fce] = 0x2297b, [0x1fcf] = 0x22ea5, + [0x1fd0] = 0x22e9f, [0x1fd1] = 0x23317, [0x1fd2] = 0x233b2, [0x1fd3] = 0x23839, + [0x1fd4] = 0x23840, [0x1fd5] = 0x2384e, [0x1fd6] = 0x2393e, [0x1fd7] = 0x23ae8, + [0x1fd8] = 0x23ae7, [0x1fd9] = 0x24166, [0x1fda] = 0x24161, [0x1fdb] = 0x244da, + [0x1fdc] = 0x24714, [0x1fdd] = 0x248df, [0x1fde] = 0x24f18, [0x1fdf] = 0x25039, + [0x1fe0] = 0x2503a, [0x1fe1] = 0x25730, [0x1fe2] = 0x25732, [0x1fe3] = 0x2590e, + [0x1fe4] = 0x25a4c, [0x1fe5] = 0x25de8, [0x1fe6] = 0x25df1, [0x1fe7] = 0x25deb, + [0x1fe8] = 0x25dec, [0x1fe9] = 0x25f74, [0x1fea] = 0x25f73, [0x1feb] = 0x261f1, + [0x1fec] = 0x26342, [0x1fed] = 0x2633e, [0x1fee] = 0x26341, [0x1fef] = 0x2652c, + [0x1ff0] = 0x268d2, [0x1ff1] = 0x269bb, [0x1ff2] = 0x27158, [0x1ff3] = 0x27157, + [0x1ff4] = 0x27156, [0x1ff5] = 0x2715a, [0x1ff6] = 0x457d, [0x1ff7] = 0x27561, + [0x1ff8] = 0x27568, [0x1ff9] = 0x27565, [0x1ffa] = 0x2755f, [0x1ffb] = 0x27564, + [0x1ffc] = 0x2755e, [0x1ffd] = 0x2755b, [0x1ffe] = 0x27567, [0x1fff] = 0x277c3, + [0x2000] = 0x278a2, [0x2001] = 0x27953, [0x2002] = 0x27b7d, [0x2003] = 0x27c20, + [0x2004] = 0x27fae, [0x2005] = 0x27faf, [0x2006] = 0x27fb0, [0x2007] = 0x281e7, + [0x2008] = 0x281e6, [0x2009] = 0x281e9, [0x200a] = 0x283f1, [0x200b] = 0x283eb, + [0x200c] = 0x283ea, [0x200d] = 0x283e9, [0x200e] = 0x28663, [0x200f] = 0x28902, + [0x2010] = 0x288fe, [0x2011] = 0x28bde, [0x2012] = 0x28cc2, [0x2013] = 0x28de6, + [0x2014] = 0x28f5d, [0x2015] = 0x291ad, [0x2016] = 0x29375, [0x2017] = 0x29372, + [0x2018] = 0x29377, [0x2019] = 0x4af6, [0x201a] = 0x29651, [0x201b] = 0x297e8, + [0x201c] = 0x297ed, [0x201d] = 0x297ee, [0x201e] = 0x299b9, [0x201f] = 0x299a1, + [0x2020] = 0x299b6, [0x2021] = 0x29aae, [0x2022] = 0x29be8, [0x2023] = 0x4c12, + [0x2024] = 0x29c1e, [0x2025] = 0x29d31, [0x2026] = 0x29d32, [0x2027] = 0x4c91, + [0x2028] = 0x29f0e, [0x2029] = 0x29f12, [0x202a] = 0x29f09, [0x202b] = 0x29f05, + [0x202c] = 0x4c90, [0x202d] = 0x29f03, [0x202e] = 0x29f1f, [0x202f] = 0x29f0d, + [0x2030] = 0x29f0c, [0x2031] = 0x29f04, [0x2032] = 0x29f0a, [0x2033] = 0x2a1c2, + [0x2034] = 0x2a1bf, [0x2035] = 0x2a1c9, [0x2036] = 0x2a1b2, [0x2037] = 0x2a1c1, + [0x2038] = 0x2a1af, [0x2039] = 0x2a1b4, [0x203a] = 0x2a1b0, [0x203b] = 0x2a1b6, + [0x203c] = 0x2a1b7, [0x203d] = 0x2a1bb, [0x203e] = 0x2a1b1, [0x203f] = 0x2a2f0, + [0x2040] = 0x2a378, [0x2041] = 0x2a37a, [0x2042] = 0x2a379, [0x2043] = 0x2a3e4, + [0x2044] = 0x2a3e6, [0x2045] = 0x2a49f, [0x2046] = 0x2a49d, [0x2047] = 0x2a498, + [0x2048] = 0x2a499, [0x2049] = 0x2a4f9, [0x204a] = 0x2a530, [0x204b] = 0x2a582, + [0x204c] = 0x2a581, [0x204d] = 0x2a5b3, [0x204e] = 0x2a57f, [0x204f] = 0x2a63a, + [0x2050] = 0x2a63e, [0x2051] = 0x2a648, [0x2052] = 0x21186, [0x2053] = 0x21936, + [0x2054] = 0x21b13, [0x2055] = 0x21c22, [0x2056] = 0x21fdd, [0x2057] = 0x225a7, + [0x2058] = 0x2297d, [0x2059] = 0x3a79, [0x205a] = 0x2331c, [0x205b] = 0x23865, + [0x205c] = 0x23860, [0x205d] = 0x23867, [0x205e] = 0x3c4e, [0x205f] = 0x23b1a, + [0x2060] = 0x24ae3, [0x2061] = 0x25734, [0x2062] = 0x25918, [0x2063] = 0x25a52, + [0x2064] = 0x25dfc, [0x2065] = 0x25f79, [0x2066] = 0x25f78, [0x2067] = 0x25f76, + [0x2068] = 0x261fa, [0x2069] = 0x261f8, [0x206a] = 0x2652d, [0x206b] = 0x268d6, + [0x206c] = 0x269bd, [0x206d] = 0x269bf, [0x206e] = 0x269be, [0x206f] = 0x27144, + [0x2070] = 0x27170, [0x2071] = 0x27162, [0x2072] = 0x2716e, [0x2073] = 0x2756e, + [0x2074] = 0x2757c, [0x2075] = 0x27574, [0x2076] = 0x27578, [0x2077] = 0x27570, + [0x2078] = 0x27579, [0x2079] = 0x27571, [0x207a] = 0x277cc, [0x207b] = 0x278a7, + [0x207c] = 0x278a6, [0x207d] = 0x27b93, [0x207e] = 0x27c21, [0x207f] = 0x27c9c, + [0x2080] = 0x2829d, [0x2081] = 0x283f4, [0x2082] = 0x283f3, [0x2083] = 0x28df0, + [0x2084] = 0x291b8, [0x2085] = 0x291b6, [0x2086] = 0x291bd, [0x2087] = 0x29373, + [0x2088] = 0x29382, [0x2089] = 0x29587, [0x208a] = 0x29656, [0x208b] = 0x29659, + [0x208c] = 0x297f6, [0x208d] = 0x299c9, [0x208e] = 0x299c5, [0x208f] = 0x299c7, + [0x2090] = 0x299ca, [0x2091] = 0x299c2, [0x2092] = 0x299c4, [0x2093] = 0x29bf2, + [0x2094] = 0x29bf0, [0x2095] = 0x29d3b, [0x2096] = 0x29d3a, [0x2097] = 0x29f26, + [0x2098] = 0x29f28, [0x2099] = 0x29f34, [0x209a] = 0x29f2d, [0x209b] = 0x2a1d7, + [0x209c] = 0x2a1d2, [0x209d] = 0x2a1d6, [0x209e] = 0x2a1dc, [0x209f] = 0x2a1d3, + [0x20a0] = 0x2a1d1, [0x20a1] = 0x2a286, [0x20a2] = 0x4d1e, [0x20a3] = 0x2a2ef, + [0x20a4] = 0x2a2ee, [0x20a5] = 0x2a3e8, [0x20a6] = 0x2a4ac, [0x20a7] = 0x2a4a9, + [0x20a8] = 0x2a4aa, [0x20a9] = 0x2a4ab, [0x20aa] = 0x2a4fb, [0x20ab] = 0x2a533, + [0x20ac] = 0x2a588, [0x20ad] = 0x2a5b6, [0x20ae] = 0x2a5b7, [0x20af] = 0x2a5d0, + [0x20b0] = 0x2a5cf, [0x20b1] = 0x2a64f, [0x20b2] = 0x2a659, [0x20b3] = 0x2a64c, + [0x20b4] = 0x21b18, [0x20b5] = 0x21fe0, [0x20b6] = 0x23869, [0x20b7] = 0x24173, + [0x20b8] = 0x24172, [0x20b9] = 0x24ae8, [0x20ba] = 0x255fb, [0x20bb] = 0x2591c, + [0x20bc] = 0x25e09, [0x20bd] = 0x25e0a, [0x20be] = 0x25e08, [0x20bf] = 0x25f7d, + [0x20c0] = 0x25f7f, [0x20c1] = 0x26267, [0x20c2] = 0x2717a, [0x20c3] = 0x2717b, + [0x20c4] = 0x277d1, [0x20c5] = 0x4695, [0x20c6] = 0x27b9d, [0x20c7] = 0x27c9d, + [0x20c8] = 0x281fc, [0x20c9] = 0x281fb, [0x20ca] = 0x281fd, [0x20cb] = 0x283f5, + [0x20cc] = 0x283f6, [0x20cd] = 0x28c0f, [0x20ce] = 0x28c1d, [0x20cf] = 0x291c7, + [0x20d0] = 0x291c1, [0x20d1] = 0x291bf, [0x20d2] = 0x29254, [0x20d3] = 0x2937f, + [0x20d4] = 0x293f5, [0x20d5] = 0x2958a, [0x20d6] = 0x2958c, [0x20d7] = 0x2965c, + [0x20d8] = 0x29865, [0x20d9] = 0x299cf, [0x20da] = 0x299d0, [0x20db] = 0x29ab8, + [0x20dc] = 0x29bfa, [0x20dd] = 0x29c66, [0x20de] = 0x29f40, [0x20df] = 0x29f41, + [0x20e0] = 0x9c72, [0x20e1] = 0x2a1f7, [0x20e2] = 0x2a1f3, [0x20e3] = 0x2a1ef, + [0x20e4] = 0x2a1f4, [0x20e5] = 0x2a1ed, [0x20e6] = 0x2a1f2, [0x20e7] = 0x2a1f1, + [0x20e8] = 0x2a1f9, [0x20e9] = 0x2a4b4, [0x20ea] = 0x2a4fc, [0x20eb] = 0x2a5bc, + [0x20ec] = 0x2a65e, [0x20ed] = 0x2a65b, [0x20ee] = 0x2a65f, [0x20ef] = 0x2a65d, + [0x20f0] = 0x2a6cf, [0x20f1] = 0x2a6ce, [0x20f2] = 0x2193a, [0x20f3] = 0x21fe1, + [0x20f4] = 0x22315, [0x20f5] = 0x22314, [0x20f6] = 0x24178, [0x20f7] = 0x24179, + [0x20f8] = 0x244e6, [0x20f9] = 0x24bb8, [0x20fa] = 0x24f22, [0x20fb] = 0x255fe, + [0x20fc] = 0x268db, [0x20fd] = 0x26a06, [0x20fe] = 0x26ac8, [0x20ff] = 0x27189, + [0x2100] = 0x27586, [0x2101] = 0x278ad, [0x2102] = 0x27b99, [0x2103] = 0x27bd8, + [0x2104] = 0x27c23, [0x2105] = 0x27d23, [0x2106] = 0x27fb5, [0x2107] = 0x283f9, + [0x2108] = 0x28907, [0x2109] = 0x28c1e, [0x210a] = 0x28dfb, [0x210b] = 0x28f72, + [0x210c] = 0x28f73, [0x210d] = 0x29387, [0x210e] = 0x29449, [0x210f] = 0x2965d, + [0x2110] = 0x297f8, [0x2111] = 0x29c03, [0x2112] = 0x29f4e, [0x2113] = 0x29f4d, + [0x2114] = 0x29f50, [0x2115] = 0x29f55, [0x2116] = 0x2a209, [0x2117] = 0x2a207, + [0x2118] = 0x2a20c, [0x2119] = 0x2a203, [0x211a] = 0x2a206, [0x211b] = 0x2a20b, + [0x211c] = 0x2a20a, [0x211d] = 0x2a289, [0x211e] = 0x2a4bb, [0x211f] = 0x2a4ff, + [0x2120] = 0x2a536, [0x2121] = 0x2a58b, [0x2122] = 0x2a666, [0x2123] = 0x2a669, + [0x2124] = 0x2a667, [0x2125] = 0x2a6c2, [0x2126] = 0x2a6d2, [0x2127] = 0x21fe2, + [0x2128] = 0x3828, [0x2129] = 0x22988, [0x212a] = 0x2335b, [0x212b] = 0x23876, + [0x212c] = 0x2417d, [0x212d] = 0x245a6, [0x212e] = 0x2535a, [0x212f] = 0x25e17, + [0x2130] = 0x268dc, [0x2131] = 0x2718f, [0x2132] = 0x27594, [0x2133] = 0x27595, + [0x2134] = 0x27fb6, [0x2135] = 0x28204, [0x2136] = 0x287ee, [0x2137] = 0x2938a, + [0x2138] = 0x293f9, [0x2139] = 0x29c07, [0x213a] = 0x29c1f, [0x213b] = 0x29c2a, + [0x213c] = 0x29d45, [0x213d] = 0x29f5c, [0x213e] = 0x29f5b, [0x213f] = 0x29f61, + [0x2140] = 0x29f5d, [0x2141] = 0x2a218, [0x2142] = 0x2a21f, [0x2143] = 0x2a383, + [0x2144] = 0x2a416, [0x2145] = 0x2a414, [0x2146] = 0x2a4bf, [0x2147] = 0x2a4c0, + [0x2148] = 0x2a673, [0x2149] = 0x2a6c0, [0x214a] = 0x21517, [0x214b] = 0x22989, + [0x214c] = 0x2591e, [0x214d] = 0x2591f, [0x214e] = 0x25a54, [0x214f] = 0x25e18, + [0x2150] = 0x26205, [0x2151] = 0x27195, [0x2152] = 0x27598, [0x2153] = 0x2759b, + [0x2154] = 0x27959, [0x2155] = 0x28208, [0x2156] = 0x28401, [0x2157] = 0x291ce, + [0x2158] = 0x293fa, [0x2159] = 0x29abe, [0x215a] = 0x29d47, [0x215b] = 0x29f6a, + [0x215c] = 0x29f69, [0x215d] = 0x29f68, [0x215e] = 0x29f67, [0x215f] = 0x2a225, + [0x2160] = 0x2a228, [0x2161] = 0x2a4c4, [0x2162] = 0x2a537, [0x2163] = 0x2a58d, + [0x2164] = 0x2a58c, [0x2165] = 0x4d91, [0x2167] = 0x25e22, [0x2168] = 0x25f82, + [0x2169] = 0x277d9, [0x216a] = 0x28c38, [0x216b] = 0x293fb, [0x216c] = 0x299e1, + [0x216d] = 0x29c72, [0x216e] = 0x29d48, [0x216f] = 0x29f6c, [0x2170] = 0x29f70, + [0x2171] = 0x2a231, [0x2172] = 0x2a230, [0x2173] = 0x2a679, [0x2174] = 0x25e23, + [0x2175] = 0x268f8, [0x2176] = 0x29c74, [0x2177] = 0x29f73, [0x2178] = 0x2a234, + [0x2179] = 0x2a387, [0x217a] = 0x2a3b2, [0x217b] = 0x2a5c2, [0x217c] = 0x2a67d, + [0x217d] = 0x21fe5, [0x217e] = 0x2938c, [0x217f] = 0x29f77, [0x2180] = 0x29f75, + [0x2181] = 0x2a238, [0x2182] = 0x2a23a, [0x2183] = 0x2a683, [0x2184] = 0x2a681, + [0x2185] = 0x24180, [0x2186] = 0x27199, [0x2187] = 0x4587, [0x2188] = 0x2944a, + [0x2189] = 0x29d4a, [0x218a] = 0x2a23c, [0x218b] = 0x2a6c8, [0x218c] = 0x25604, + [0x218d] = 0x278af, [0x218e] = 0x2a689, [0x218f] = 0x2a2fa, [0x2190] = 0x29661, + [0x2191] = 0x2a23f, [0x2192] = 0x27193, [0x2193] = 0x2a4c9, [0x2194] = 0x277de, + [0x2195] = 0x29391, [0x2196] = 0x2a68e, [0x2197] = 0x2a68d, [0x2198] = 0x27198, + [0x2199] = 0x269c5, [0x219a] = 0x2a6a5, +}; + +/* The following table contains no hole and is therefore compact. Nice + work compared with the chaos of other character sets (or plane 1). + + The table can be generated using + + egrep '^0x6' CNS11643.TXT | + awk '{print $1, $2}' | perl tab.pl + + where tab.pl is: + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + $n=0; + while (<>) { + local($cns, $ucs4, %rest) = split; + local($u)=hex($ucs4); + local($c)=hex($cns)-0x62121; + printf ("\n ") if ($n % 4 eq 0); + ++$n; + printf (" [0x%04x] = 0x%04x,", + int($c / 256) * 94 + ($c & 0xff), $u); + } + printf ("\n"); + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +*/ +const uint32_t __cns11643l6_to_ucs4_tab[] = +{ + [0x0001] = 0x20062, [0x0002] = 0x3405, [0x0003] = 0x20088, [0x0004] = 0x200d0, + [0x0005] = 0x200cf, [0x0006] = 0x2011e, [0x0007] = 0x2011f, [0x0008] = 0x20120, + [0x0009] = 0x2090e, [0x000a] = 0x2092c, [0x000b] = 0x20061, [0x000c] = 0x20004, + [0x000d] = 0x20005, [0x000e] = 0x20003, [0x0011] = 0x2007d, [0x0012] = 0x2008d, + [0x0013] = 0x201a3, [0x0014] = 0x201a4, [0x0015] = 0x204db, [0x0016] = 0x20500, + [0x0018] = 0x206a3, [0x0019] = 0x20832, [0x001a] = 0x353f, [0x001b] = 0x20ad4, + [0x001c] = 0x20ad5, [0x001d] = 0x21c23, [0x001e] = 0x2232c, [0x001f] = 0x2237a, + [0x0020] = 0x20503, [0x0021] = 0x20007, [0x0022] = 0x20008, [0x0023] = 0x2008f, + [0x0024] = 0x2009c, [0x0025] = 0x200d5, [0x0026] = 0x20112, [0x0027] = 0x20113, + [0x0028] = 0x20114, [0x0029] = 0x20121, [0x002a] = 0x201a8, [0x002b] = 0x201a6, + [0x002c] = 0x20476, [0x002d] = 0x20501, [0x002e] = 0x2053d, [0x0030] = 0x2053e, + [0x0031] = 0x20629, [0x0032] = 0x20677, [0x0033] = 0x20678, [0x0034] = 0x206a6, + [0x0035] = 0x206a9, [0x0036] = 0x206ac, [0x0037] = 0x20834, [0x0038] = 0x20504, + [0x0039] = 0x2097b, [0x003a] = 0x20a10, [0x003b] = 0x2062f, [0x003c] = 0x20ad7, + [0x003d] = 0x20b1c, [0x003e] = 0x20b1f, [0x003f] = 0x20b1a, [0x0041] = 0x20b1e, + [0x0042] = 0x20b9e, [0x0043] = 0x20b9a, [0x0044] = 0x211a0, [0x0045] = 0x211a1, + [0x0046] = 0x215d2, [0x0047] = 0x215d3, [0x0048] = 0x219b9, [0x0049] = 0x21b1d, + [0x004a] = 0x21b55, [0x004b] = 0x21cff, [0x004c] = 0x21fe7, [0x004d] = 0x382a, + [0x004e] = 0x22011, [0x004f] = 0x22013, [0x0050] = 0x22012, [0x0051] = 0x221af, + [0x0052] = 0x221b1, [0x0054] = 0x2232d, [0x0055] = 0x2237b, [0x0056] = 0x2239d, + [0x0057] = 0x2239a, [0x0058] = 0x38a7, [0x0059] = 0x2239f, [0x005a] = 0x223a0, + [0x005b] = 0x2239c, [0x005c] = 0x224bd, [0x005d] = 0x38fa, [0x005e] = 0x225aa, + [0x005f] = 0x2306c, [0x0060] = 0x23091, [0x0061] = 0x23c74, [0x0062] = 0x2456a, + [0x0064] = 0x25605, [0x0065] = 0x2626b, [0x0066] = 0x2626a, [0x0067] = 0x200e0, + [0x0068] = 0x20012, [0x0069] = 0x3400, [0x006a] = 0x2007f, [0x006b] = 0x200a0, + [0x006c] = 0x20099, [0x006d] = 0x20095, [0x006e] = 0x2009e, [0x006f] = 0x200df, + [0x0070] = 0x200de, [0x0071] = 0x201af, [0x0072] = 0x201ad, [0x0073] = 0x201b0, + [0x0074] = 0x204df, [0x0075] = 0x20543, [0x0076] = 0x20541, [0x0077] = 0x20548, + [0x0078] = 0x20575, [0x007a] = 0x20632, [0x007b] = 0x2067b, [0x007c] = 0x20679, + [0x007d] = 0x206b3, [0x007e] = 0x34db, [0x007f] = 0x20ba7, [0x0080] = 0x206b2, + [0x0081] = 0x206b0, [0x0082] = 0x206b4, [0x0084] = 0x208cd, [0x0085] = 0x208ce, + [0x0087] = 0x20910, [0x0088] = 0x20980, [0x0089] = 0x209d3, [0x008a] = 0x20a30, + [0x008b] = 0x20098, [0x008c] = 0x20a2f, [0x008d] = 0x20a31, [0x008e] = 0x20ada, + [0x008f] = 0x20ad9, [0x0090] = 0x20b27, [0x0091] = 0x20b28, [0x0092] = 0x20b21, + [0x0093] = 0x20b25, [0x0094] = 0x20ba6, [0x0095] = 0x20ba2, [0x0096] = 0x20ba1, + [0x0097] = 0x20ba4, [0x0099] = 0x20baa, [0x009a] = 0x20ba5, [0x009b] = 0x20ba3, + [0x009c] = 0x20064, [0x009d] = 0x2123f, [0x009e] = 0x21244, [0x009f] = 0x2151b, + [0x00a0] = 0x21553, [0x00a1] = 0x21584, [0x00a2] = 0x21586, [0x00a3] = 0x215d5, + [0x00a5] = 0x2193e, [0x00a6] = 0x21940, [0x00a7] = 0x21bca, [0x00a8] = 0x21bc9, + [0x00a9] = 0x21c26, [0x00aa] = 0x21d00, [0x00ab] = 0x21d31, [0x00ac] = 0x21d3c, + [0x00ad] = 0x21d30, [0x00ae] = 0x21d33, [0x00af] = 0x21d32, [0x00b0] = 0x21d38, + [0x00b1] = 0x22034, [0x00b2] = 0x22053, [0x00b3] = 0x22054, [0x00b4] = 0x221b4, + [0x00b5] = 0x221b2, [0x00b6] = 0x2232f, [0x00b7] = 0x223a5, [0x00b8] = 0x223a7, + [0x00b9] = 0x223a4, [0x00ba] = 0x223a8, [0x00bb] = 0x223a9, [0x00bc] = 0x223a2, + [0x00bd] = 0x223a3, [0x00be] = 0x223a6, [0x00bf] = 0x22481, [0x00c0] = 0x22480, + [0x00c1] = 0x225ad, [0x00c2] = 0x22a24, [0x00c3] = 0x22a65, [0x00c4] = 0x22a68, + [0x00c5] = 0x22a69, [0x00c6] = 0x2313c, [0x00c7] = 0x2313b, [0x00c8] = 0x2335d, + [0x00c9] = 0x23944, [0x00ca] = 0x24182, [0x00cb] = 0x244f1, [0x00cc] = 0x2456b, + [0x00cd] = 0x2471b, [0x00ce] = 0x248eb, [0x00cf] = 0x24bba, [0x00d0] = 0x24bd3, + [0x00d1] = 0x24d13, [0x00d2] = 0x25922, [0x00d3] = 0x26af4, [0x00d4] = 0x2820f, + [0x00d5] = 0x28210, [0x00d6] = 0x20507, [0x00d7] = 0x29c0b, [0x00d8] = 0x29c0a, + [0x00d9] = 0x20019, [0x00da] = 0x2001a, [0x00db] = 0x20018, [0x00dc] = 0x20066, + [0x00dd] = 0x20082, [0x00de] = 0x200a8, [0x00df] = 0x200e5, [0x00e0] = 0x200e7, + [0x00e1] = 0x200e4, [0x00e2] = 0x20115, [0x00e3] = 0x20123, [0x00e4] = 0x20124, + [0x00e5] = 0x20143, [0x00e6] = 0x201c3, [0x00e7] = 0x201bc, [0x00e8] = 0x201bb, + [0x00e9] = 0x3438, [0x00ea] = 0x201b7, [0x00eb] = 0x201b9, [0x00ec] = 0x201cf, + [0x00ee] = 0x2047a, [0x00ef] = 0x2047b, [0x00f0] = 0x204e1, [0x00f1] = 0x204e0, + [0x00f2] = 0x20509, [0x00f3] = 0x2054d, [0x00f5] = 0x2054b, [0x00f6] = 0x20579, + [0x00f7] = 0x205b1, [0x00f8] = 0x20636, [0x00f9] = 0x20635, [0x00fa] = 0x20637, + [0x00fb] = 0x20638, [0x00fc] = 0x2067f, [0x00fd] = 0x20680, [0x00fe] = 0x20681, + [0x00ff] = 0x26953, [0x0100] = 0x2067e, [0x0101] = 0x206cd, [0x0102] = 0x206bf, + [0x0103] = 0x206be, [0x0104] = 0x206c2, [0x0105] = 0x206b8, [0x0106] = 0x206c1, + [0x0107] = 0x6530, [0x0108] = 0x20931, [0x0109] = 0x2092f, [0x010a] = 0x2096f, + [0x010b] = 0x20982, [0x010c] = 0x353a, [0x010d] = 0x20987, [0x010e] = 0x20986, + [0x010f] = 0x2098d, [0x0110] = 0x20994, [0x0111] = 0x209d7, [0x0112] = 0x209d4, + [0x0113] = 0x209d8, [0x0114] = 0x20a16, [0x0115] = 0x20a14, [0x0116] = 0x20a2e, + [0x0117] = 0x20a36, [0x0118] = 0x20a37, [0x0119] = 0x21fee, [0x011a] = 0x20ae0, + [0x011b] = 0x20ae5, [0x011c] = 0x20adf, [0x011d] = 0x20b2b, [0x011e] = 0x20b29, + [0x011f] = 0x20b2d, [0x0120] = 0x20b2f, [0x0121] = 0x20bb7, [0x0122] = 0x20bc9, + [0x0123] = 0x20bc1, [0x0124] = 0x20bca, [0x0125] = 0x20bb2, [0x0126] = 0x20bac, + [0x0127] = 0x20bae, [0x0128] = 0x211b2, [0x0129] = 0x211a8, [0x012a] = 0x211b0, + [0x012b] = 0x211a7, [0x012d] = 0x21252, [0x012e] = 0x2124a, [0x012f] = 0x21556, + [0x0130] = 0x21555, [0x0131] = 0x2155f, [0x0132] = 0x2155e, [0x0133] = 0x21588, + [0x0135] = 0x215dd, [0x0136] = 0x215e2, [0x0137] = 0x215e1, [0x0138] = 0x215df, + [0x0139] = 0x215e0, [0x013a] = 0x216af, [0x013b] = 0x216b1, [0x013c] = 0x216ba, + [0x013d] = 0x21945, [0x013e] = 0x21943, [0x013f] = 0x219bd, [0x0140] = 0x219c8, + [0x0142] = 0x219be, [0x0143] = 0x219bf, [0x0145] = 0x21b59, [0x0146] = 0x21c29, + [0x0147] = 0x21c2c, [0x0148] = 0x21c2f, [0x0149] = 0x21c2d, [0x014a] = 0x21c2e, + [0x014b] = 0x21d04, [0x014c] = 0x21d02, [0x014d] = 0x21d01, [0x014e] = 0x21d40, + [0x014f] = 0x21d4a, [0x0150] = 0x21d3f, [0x0151] = 0x21d4f, [0x0152] = 0x21d41, + [0x0153] = 0x21d4e, [0x0154] = 0x21feb, [0x0155] = 0x21fec, [0x0156] = 0x200ac, + [0x0157] = 0x2205b, [0x0158] = 0x22063, [0x0159] = 0x2205a, [0x015a] = 0x22059, + [0x015b] = 0x221dc, [0x015c] = 0x221db, [0x015d] = 0x221d9, [0x015e] = 0x221e0, + [0x015f] = 0x221dd, [0x0160] = 0x20020, [0x0161] = 0x223b0, [0x0162] = 0x223b1, + [0x0163] = 0x223b2, [0x0164] = 0x223b6, [0x0165] = 0x22451, [0x0166] = 0x22452, + [0x0167] = 0x22450, [0x0168] = 0x22484, [0x0169] = 0x38c9, [0x016a] = 0x22483, + [0x016b] = 0x225c3, [0x016c] = 0x225b8, [0x016d] = 0x225b9, [0x016e] = 0x225b2, + [0x016f] = 0x22990, [0x0170] = 0x22a26, [0x0171] = 0x22a29, [0x0172] = 0x22a6e, + [0x0173] = 0x23140, [0x0174] = 0x2313e, [0x0175] = 0x23141, [0x0176] = 0x2335e, + [0x0177] = 0x233bb, [0x0178] = 0x233bc, [0x0179] = 0x233b9, [0x017b] = 0x23880, + [0x017c] = 0x3c4f, [0x017d] = 0x23945, [0x017e] = 0x239ba, [0x017f] = 0x239bd, + [0x0180] = 0x23c56, [0x0181] = 0x23c55, [0x0182] = 0x23c75, [0x0183] = 0x23c77, + [0x0184] = 0x23c81, [0x0186] = 0x23c83, [0x0187] = 0x23c8b, [0x0188] = 0x23c84, + [0x0189] = 0x24186, [0x018a] = 0x24183, [0x018b] = 0x2418b, [0x018c] = 0x2456d, + [0x018d] = 0x24616, [0x018e] = 0x24728, [0x018f] = 0x248ea, [0x0190] = 0x24bd4, + [0x0191] = 0x24c03, [0x0192] = 0x24d15, [0x0193] = 0x24f3d, [0x0194] = 0x24f3e, + [0x0195] = 0x25416, [0x0197] = 0x25606, [0x0198] = 0x2574d, [0x0199] = 0x26222, + [0x019a] = 0x26273, [0x019b] = 0x2626d, [0x019c] = 0x2626e, [0x019d] = 0x264b1, + [0x019e] = 0x2054e, [0x019f] = 0x2662d, [0x01a0] = 0x43cd, [0x01a1] = 0x268f9, + [0x01a2] = 0x26952, [0x01a3] = 0x26b00, [0x01a4] = 0x26afc, [0x01a5] = 0x26afa, + [0x01a6] = 0x4492, [0x01a7] = 0x26af7, [0x01a8] = 0x26af8, [0x01ab] = 0x27c27, + [0x01ac] = 0x28211, [0x01ad] = 0x200ae, [0x01ae] = 0x28450, [0x01af] = 0x2844f, + [0x01b0] = 0x2844d, [0x01b1] = 0x28671, [0x01b3] = 0x28672, [0x01b4] = 0x28e18, + [0x01b5] = 0x20a44, [0x01b6] = 0x20021, [0x01b7] = 0x20067, [0x01b8] = 0x200af, + [0x01b9] = 0x200b0, [0x01ba] = 0x20029, [0x01bb] = 0x20117, [0x01bc] = 0x20122, + [0x01be] = 0x20025, [0x01bf] = 0x20128, [0x01c0] = 0x201ff, [0x01c1] = 0x201d9, + [0x01c2] = 0x201db, [0x01c3] = 0x201de, [0x01c4] = 0x201f2, [0x01c5] = 0x201fe, + [0x01c6] = 0x201f4, [0x01c7] = 0x201dd, [0x01c8] = 0x3445, [0x01ca] = 0x20201, + [0x01cb] = 0x201dc, [0x01cc] = 0x2047d, [0x01cd] = 0x20481, [0x01ce] = 0x2047e, + [0x01cf] = 0x2047f, [0x01d0] = 0x204e5, [0x01d1] = 0x2050f, [0x01d2] = 0x34b5, + [0x01d3] = 0x2050a, [0x01d4] = 0x34b6, [0x01d5] = 0x2050b, [0x01d6] = 0x20551, + [0x01d7] = 0x20552, [0x01d8] = 0x20550, [0x01d9] = 0x205b8, [0x01da] = 0x2063d, + [0x01db] = 0x2063e, [0x01dc] = 0x2063c, [0x01dd] = 0x20687, [0x01de] = 0x206d7, + [0x01df] = 0x206db, [0x01e0] = 0x206cf, [0x01e1] = 0x206e0, [0x01e2] = 0x2084c, + [0x01e3] = 0x20842, [0x01e4] = 0x208d4, [0x01e5] = 0x20911, [0x01e6] = 0x20914, + [0x01e7] = 0x20915, [0x01e8] = 0x20912, [0x01e9] = 0x20933, [0x01ea] = 0x20935, + [0x01eb] = 0x3537, [0x01ec] = 0x20971, [0x01ed] = 0x3530, [0x01ee] = 0x20991, + [0x01ef] = 0x20993, [0x01f0] = 0x20995, [0x01f1] = 0x209dc, [0x01f2] = 0x20a42, + [0x01f3] = 0x20a40, [0x01f4] = 0x253a6, [0x01f5] = 0x20ae6, [0x01f6] = 0x2128f, + [0x01f7] = 0x20b32, [0x01f9] = 0x20b31, [0x01fa] = 0x20bf5, [0x01fb] = 0x20bcd, + [0x01fc] = 0x20bde, [0x01fd] = 0x20bd5, [0x01fe] = 0x20bda, [0x01ff] = 0x20bee, + [0x0200] = 0x20bec, [0x0201] = 0x20bcf, [0x0202] = 0x20bce, [0x0204] = 0x20bcc, + [0x0205] = 0x20bf3, [0x0206] = 0x211c1, [0x0207] = 0x211c4, [0x0208] = 0x211c6, + [0x0209] = 0x211b4, [0x020a] = 0x211c3, [0x020b] = 0x211b8, [0x020c] = 0x211bb, + [0x020d] = 0x211b7, [0x020e] = 0x211bc, [0x020f] = 0x211bf, [0x0210] = 0x211c7, + [0x0211] = 0x211be, [0x0212] = 0x21260, [0x0213] = 0x2125d, [0x0214] = 0x21276, + [0x0215] = 0x2126c, [0x0216] = 0x21275, [0x0217] = 0x2125b, [0x0218] = 0x21271, + [0x0219] = 0x21273, [0x021a] = 0x21261, [0x021b] = 0x2125a, [0x021c] = 0x21262, + [0x021d] = 0x21272, [0x021e] = 0x2125f, [0x021f] = 0x21258, [0x0220] = 0x2151e, + [0x0221] = 0x21558, [0x0222] = 0x2158b, [0x0223] = 0x2158a, [0x0224] = 0x215f4, + [0x0225] = 0x215f0, [0x0226] = 0x216d2, [0x0227] = 0x216cd, [0x0228] = 0x216ce, + [0x0229] = 0x216bc, [0x022a] = 0x216d0, [0x022b] = 0x21946, [0x022c] = 0x21947, + [0x022d] = 0x373e, [0x022e] = 0x374d, [0x022f] = 0x3751, [0x0230] = 0x219ce, + [0x0231] = 0x219cf, [0x0232] = 0x219cc, [0x0233] = 0x219cb, [0x0235] = 0x21b60, + [0x0236] = 0x21b5f, [0x0237] = 0x21b5d, [0x0238] = 0x21bd4, [0x0239] = 0x21c3a, + [0x023a] = 0x21c38, [0x023b] = 0x21c3c, [0x023c] = 0x21c36, [0x023d] = 0x21d08, + [0x023e] = 0x21d7e, [0x023f] = 0x21d5e, [0x0240] = 0x21d6e, [0x0241] = 0x21d53, + [0x0242] = 0x21d70, [0x0243] = 0x21d57, [0x0244] = 0x21d5d, [0x0245] = 0x21d63, + [0x0246] = 0x21d7a, [0x0247] = 0x21d79, [0x0248] = 0x21d93, [0x024a] = 0x2201d, + [0x024b] = 0x22068, [0x024c] = 0x22073, [0x024d] = 0x22074, [0x024e] = 0x22066, + [0x024f] = 0x2206f, [0x0250] = 0x22075, [0x0251] = 0x2207a, [0x0252] = 0x22070, + [0x0253] = 0x2206d, [0x0254] = 0x22065, [0x0255] = 0x2218a, [0x0256] = 0x221ed, + [0x0257] = 0x221e9, [0x0258] = 0x221e3, [0x0259] = 0x221ef, [0x025a] = 0x3873, + [0x025b] = 0x221ea, [0x025c] = 0x22331, [0x025e] = 0x22338, [0x025f] = 0x26b20, + [0x0260] = 0x22335, [0x0261] = 0x2233a, [0x0262] = 0x22381, [0x0263] = 0x22380, + [0x0264] = 0x223b8, [0x0265] = 0x223c1, [0x0266] = 0x223ba, [0x0267] = 0x22488, + [0x0268] = 0x224cf, [0x0269] = 0x224ca, [0x026a] = 0x224c7, [0x026b] = 0x224c5, + [0x026c] = 0x224c8, [0x026d] = 0x224d0, [0x026e] = 0x224c9, [0x026f] = 0x225bb, + [0x0270] = 0x225b6, [0x0271] = 0x225bd, [0x0273] = 0x225b4, [0x0274] = 0x225c1, + [0x0275] = 0x225d1, [0x0276] = 0x225d2, [0x0277] = 0x225cc, [0x0278] = 0x225d4, + [0x0279] = 0x225cb, [0x027a] = 0x225ce, [0x027b] = 0x225d5, [0x027c] = 0x225d8, + [0x027d] = 0x22995, [0x027e] = 0x22993, [0x027f] = 0x22999, [0x0280] = 0x22996, + [0x0281] = 0x39be, [0x0282] = 0x22a89, [0x0283] = 0x22a94, [0x0284] = 0x22a91, + [0x0285] = 0x22a8f, [0x0286] = 0x22a84, [0x0287] = 0x22a97, [0x0288] = 0x22a86, + [0x0289] = 0x22a85, [0x028a] = 0x22a8c, [0x028b] = 0x22ef2, [0x028c] = 0x22eed, + [0x028d] = 0x22eef, [0x028e] = 0x230d9, [0x028f] = 0x23146, [0x0290] = 0x23147, + [0x0291] = 0x2314b, [0x0292] = 0x23150, [0x0293] = 0x2314a, [0x0294] = 0x2314e, + [0x0295] = 0x2314c, [0x0296] = 0x23148, [0x0297] = 0x23363, [0x0298] = 0x23361, + [0x0299] = 0x23362, [0x029a] = 0x23360, [0x029b] = 0x233c3, [0x029c] = 0x233c5, + [0x029d] = 0x233c1, [0x029e] = 0x233d0, [0x02a0] = 0x23882, [0x02a1] = 0x3c1e, + [0x02a2] = 0x23886, [0x02a3] = 0x23884, [0x02a4] = 0x2394c, [0x02a5] = 0x23948, + [0x02a6] = 0x239b8, [0x02a7] = 0x239bf, [0x02a8] = 0x239c1, [0x02a9] = 0x239c6, + [0x02aa] = 0x239c5, [0x02ab] = 0x239c7, [0x02ac] = 0x239c0, [0x02ad] = 0x239c3, + [0x02ae] = 0x23aed, [0x02af] = 0x23b03, [0x02b0] = 0x23b22, [0x02b1] = 0x23b21, + [0x02b2] = 0x23c9f, [0x02b3] = 0x23c90, [0x02b4] = 0x23c9e, [0x02b5] = 0x3cc8, + [0x02b6] = 0x23ca0, [0x02b7] = 0x23c94, [0x02b8] = 0x23c95, [0x02b9] = 0x23ca1, + [0x02ba] = 0x3cc3, [0x02bb] = 0x3cc7, [0x02bc] = 0x2419a, [0x02bd] = 0x24190, + [0x02be] = 0x244f2, [0x02bf] = 0x244f3, [0x02c0] = 0x2456e, [0x02c1] = 0x245ab, + [0x02c2] = 0x245a9, [0x02c3] = 0x2461a, [0x02c4] = 0x24618, [0x02c5] = 0x2461b, + [0x02c6] = 0x24760, [0x02c7] = 0x2474c, [0x02c8] = 0x24742, [0x02c9] = 0x24733, + [0x02ca] = 0x2473f, [0x02cb] = 0x2473e, [0x02cc] = 0x24738, [0x02cd] = 0x24743, + [0x02ce] = 0x24746, [0x02cf] = 0x24736, [0x02d0] = 0x248ee, [0x02d1] = 0x248f5, + [0x02d2] = 0x248f4, [0x02d3] = 0x3f56, [0x02d4] = 0x24c1b, [0x02d5] = 0x3540, + [0x02d6] = 0x24d2b, [0x02d7] = 0x24d29, [0x02d8] = 0x24d2a, [0x02d9] = 0x24d2e, + [0x02da] = 0x2503f, [0x02db] = 0x250e6, [0x02dc] = 0x253a7, [0x02dd] = 0x253a8, + [0x02de] = 0x25418, [0x02df] = 0x25608, [0x02e0] = 0x25750, [0x02e1] = 0x25753, + [0x02e2] = 0x25a56, [0x02e3] = 0x25a55, [0x02e4] = 0x2626f, [0x02e5] = 0x2627f, + [0x02e6] = 0x264b3, [0x02e7] = 0x2663a, [0x02e8] = 0x26638, [0x02e9] = 0x26637, + [0x02ea] = 0x26636, [0x02eb] = 0x20554, [0x02ed] = 0x268dd, [0x02ee] = 0x268fc, + [0x02ef] = 0x268fa, [0x02f0] = 0x26933, [0x02f1] = 0x26b04, [0x02f2] = 0x26b07, + [0x02f3] = 0x26b08, [0x02f4] = 0x26b06, [0x02f5] = 0x26b09, [0x02f8] = 0x2721e, + [0x02fa] = 0x2840b, [0x02fb] = 0x28443, [0x02fc] = 0x28452, [0x02fd] = 0x28458, + [0x02fe] = 0x2845e, [0x02ff] = 0x28668, [0x0300] = 0x2868d, [0x0301] = 0x28682, + [0x0302] = 0x2867b, [0x0303] = 0x28c58, [0x0304] = 0x49bd, [0x0306] = 0x2002c, + [0x0307] = 0x2002e, [0x0308] = 0x2160b, [0x0309] = 0x2002d, [0x030a] = 0x20069, + [0x030b] = 0x200b2, [0x030c] = 0x200b6, [0x030d] = 0x200a9, [0x030e] = 0x200ed, + [0x030f] = 0x20119, [0x0310] = 0x2014f, [0x0311] = 0x20216, [0x0312] = 0x20203, + [0x0313] = 0x2020e, [0x0314] = 0x20204, [0x0315] = 0x20207, [0x0316] = 0x20210, + [0x0317] = 0x20227, [0x0318] = 0x20228, [0x0319] = 0x2020d, [0x031a] = 0x20229, + [0x031b] = 0x2020f, [0x031c] = 0x20222, [0x031d] = 0x20211, [0x031e] = 0x20485, + [0x031f] = 0x20484, [0x0320] = 0x20483, [0x0321] = 0x2048a, [0x0322] = 0x20486, + [0x0323] = 0x20510, [0x0324] = 0x20558, [0x0325] = 0x2055a, [0x0326] = 0x2070c, + [0x0327] = 0x205c4, [0x0328] = 0x205c5, [0x0329] = 0x20647, [0x032a] = 0x20649, + [0x032b] = 0x2064a, [0x032c] = 0x2064b, [0x032d] = 0x221bb, [0x032e] = 0x2068d, + [0x032f] = 0x2068b, [0x0330] = 0x20707, [0x0331] = 0x20706, [0x0333] = 0x206ef, + [0x0334] = 0x206f0, [0x0335] = 0x206ed, [0x0336] = 0x206f9, [0x0337] = 0x20702, + [0x0338] = 0x206e7, [0x0339] = 0x206f4, [0x033a] = 0x206f7, [0x033b] = 0x206f1, + [0x033c] = 0x20853, [0x033d] = 0x20855, [0x033e] = 0x351a, [0x033f] = 0x208da, + [0x0340] = 0x208d9, [0x0341] = 0x352c, [0x0342] = 0x20938, [0x0343] = 0x20999, + [0x0344] = 0x209a2, [0x0345] = 0x2099c, [0x0346] = 0x2099a, [0x0347] = 0x2099b, + [0x0348] = 0x209e5, [0x0349] = 0x209e3, [0x034a] = 0x209e1, [0x034b] = 0x209e0, + [0x034c] = 0x209e2, [0x034d] = 0x209e4, [0x034f] = 0x209e8, [0x0351] = 0x20a13, + [0x0352] = 0x20a56, [0x0353] = 0x20a4b, [0x0354] = 0x20a4a, [0x0355] = 0x20a4d, + [0x0356] = 0x20a4c, [0x0357] = 0x3549, [0x0358] = 0x20aea, [0x0359] = 0x20ae9, + [0x035a] = 0x20aeb, [0x035b] = 0x20aec, [0x035c] = 0x20b3a, [0x035d] = 0x20b3c, + [0x035e] = 0x20b39, [0x035f] = 0x20b3b, [0x0360] = 0x20c14, [0x0361] = 0x20c0e, + [0x0362] = 0x20c35, [0x0363] = 0x20c0a, [0x0364] = 0x20c3f, [0x0365] = 0x20c38, + [0x0366] = 0x357c, [0x0367] = 0x20c4e, [0x0368] = 0x20c17, [0x036a] = 0x20c1e, + [0x036b] = 0x211b6, [0x036c] = 0x211ce, [0x036d] = 0x211ca, [0x036e] = 0x211cb, + [0x036f] = 0x211cc, [0x0370] = 0x211c9, [0x0371] = 0x212b4, [0x0372] = 0x212ac, + [0x0373] = 0x21288, [0x0374] = 0x21286, [0x0375] = 0x2128c, [0x0376] = 0x21293, + [0x0377] = 0x2128a, [0x0378] = 0x212a4, [0x0379] = 0x21287, [0x037a] = 0x212a5, + [0x037b] = 0x212a6, [0x037c] = 0x21285, [0x037d] = 0x212a3, [0x037e] = 0x2128e, + [0x037f] = 0x2151f, [0x0380] = 0x21563, [0x0381] = 0x2158d, [0x0382] = 0x215fa, + [0x0383] = 0x215fb, [0x0384] = 0x21609, [0x0385] = 0x215fe, [0x0386] = 0x215ff, + [0x0387] = 0x21602, [0x0388] = 0x21604, [0x0389] = 0x215fd, [0x038a] = 0x21605, + [0x038b] = 0x216f9, [0x038c] = 0x216f7, [0x038d] = 0x216db, [0x038e] = 0x216da, + [0x038f] = 0x21951, [0x0390] = 0x21950, [0x0391] = 0x21957, [0x0392] = 0x219e2, + [0x0393] = 0x219d8, [0x0394] = 0x219da, [0x0395] = 0x219dc, [0x0396] = 0x21b20, + [0x0397] = 0x21b1f, [0x0398] = 0x21b69, [0x0399] = 0x21bdd, [0x039a] = 0x21c40, + [0x039b] = 0x21c41, [0x039c] = 0x21c43, [0x039d] = 0x21d0d, [0x039e] = 0x21d0c, + [0x039f] = 0x21d87, [0x03a0] = 0x21da9, [0x03a1] = 0x21d92, [0x03a2] = 0x21d85, + [0x03a3] = 0x37bf, [0x03a4] = 0x21d8c, [0x03a5] = 0x21da2, [0x03a6] = 0x21d8f, + [0x03a7] = 0x21d8a, [0x03a8] = 0x37ba, [0x03a9] = 0x21d8d, [0x03aa] = 0x21ff1, + [0x03ab] = 0x22037, [0x03ac] = 0x2208b, [0x03ad] = 0x22087, [0x03ae] = 0x22082, + [0x03af] = 0x2218e, [0x03b0] = 0x221bc, [0x03b1] = 0x221f8, [0x03b2] = 0x221fa, + [0x03b3] = 0x221eb, [0x03b4] = 0x221f9, [0x03b5] = 0x221fc, [0x03b6] = 0x22205, + [0x03b7] = 0x2231b, [0x03b8] = 0x2231d, [0x03b9] = 0x2231e, [0x03bb] = 0x2233c, + [0x03bc] = 0x2233e, [0x03bd] = 0x22384, [0x03be] = 0x223c8, [0x03bf] = 0x223c9, + [0x03c0] = 0x223d3, [0x03c1] = 0x223c7, [0x03c2] = 0x223d2, [0x03c3] = 0x22455, + [0x03c5] = 0x2248c, [0x03c6] = 0x2248a, [0x03c7] = 0x224d5, [0x03c8] = 0x224d3, + [0x03c9] = 0x38d8, [0x03ca] = 0x224d8, [0x03cb] = 0x225d0, [0x03cc] = 0x225ee, + [0x03cd] = 0x225f1, [0x03ce] = 0x225fb, [0x03cf] = 0x225d3, [0x03d0] = 0x225ec, + [0x03d1] = 0x225cd, [0x03d2] = 0x22615, [0x03d3] = 0x22626, [0x03d4] = 0x2260e, + [0x03d5] = 0x22627, [0x03d6] = 0x2262a, [0x03d7] = 0x22600, [0x03d8] = 0x22604, + [0x03d9] = 0x22628, [0x03da] = 0x22608, [0x03db] = 0x22614, [0x03dc] = 0x2299b, + [0x03dd] = 0x39b2, [0x03de] = 0x229a1, [0x03df] = 0x2299d, [0x03e0] = 0x229a0, + [0x03e1] = 0x2299e, [0x03e2] = 0x229a2, [0x03e3] = 0x2299c, [0x03e4] = 0x22a32, + [0x03e5] = 0x22a34, [0x03e6] = 0x22a93, [0x03e7] = 0x22a96, [0x03e8] = 0x22a90, + [0x03e9] = 0x22ab4, [0x03ea] = 0x22ab5, [0x03ec] = 0x22ab6, [0x03ed] = 0x22ac2, + [0x03ef] = 0x22aba, [0x03f0] = 0x22a92, [0x03f1] = 0x22efb, [0x03f2] = 0x22f05, + [0x03f3] = 0x22ef3, [0x03f4] = 0x22efe, [0x03f5] = 0x22efd, [0x03f6] = 0x2455d, + [0x03f7] = 0x22efa, [0x03f8] = 0x23043, [0x03f9] = 0x23095, [0x03fa] = 0x23094, + [0x03fb] = 0x3ac4, [0x03fc] = 0x2316f, [0x03fd] = 0x23173, [0x03fe] = 0x2315c, + [0x03ff] = 0x2315b, [0x0400] = 0x23166, [0x0401] = 0x23174, [0x0402] = 0x23163, + [0x0403] = 0x23167, [0x0404] = 0x23160, [0x0405] = 0x23162, [0x0406] = 0x23171, + [0x0407] = 0x23172, [0x0408] = 0x2315e, [0x0409] = 0x23323, [0x040a] = 0x23326, + [0x040b] = 0x23364, [0x040d] = 0x233f2, [0x040e] = 0x23401, [0x040f] = 0x233dd, + [0x0410] = 0x233dc, [0x0411] = 0x233db, [0x0412] = 0x233f3, [0x0413] = 0x233fd, + [0x0414] = 0x233d8, [0x0415] = 0x233f8, [0x0416] = 0x233fb, [0x0417] = 0x23883, + [0x0418] = 0x2388c, [0x0419] = 0x2388e, [0x041a] = 0x23949, [0x041b] = 0x23954, + [0x041c] = 0x23952, [0x041d] = 0x2394e, [0x041e] = 0x23958, [0x041f] = 0x23951, + [0x0420] = 0x23955, [0x0421] = 0x23953, [0x0422] = 0x23957, [0x0423] = 0x23950, + [0x0424] = 0x2394f, [0x0425] = 0x2394d, [0x0426] = 0x239d2, [0x0427] = 0x239d3, + [0x0428] = 0x239c9, [0x0429] = 0x239d4, [0x042a] = 0x23aef, [0x042c] = 0x200b1, + [0x042d] = 0x23b05, [0x042e] = 0x23b04, [0x042f] = 0x23b2e, [0x0430] = 0x23b2d, + [0x0431] = 0x23c45, [0x0432] = 0x23c5b, [0x0433] = 0x23c5a, [0x0434] = 0x23c59, + [0x0435] = 0x23c9d, [0x0436] = 0x23c8e, [0x0437] = 0x23cbc, [0x0438] = 0x23cdd, + [0x0439] = 0x23cba, [0x043b] = 0x23cd8, [0x043c] = 0x23ccb, [0x043d] = 0x23cd9, + [0x043e] = 0x23cda, [0x043f] = 0x23cc4, [0x0440] = 0x23cb8, [0x0441] = 0x23cbf, + [0x0442] = 0x23cdb, [0x0443] = 0x23cc1, [0x0445] = 0x23cc5, [0x0447] = 0x241b1, + [0x0448] = 0x241af, [0x044a] = 0x244f7, [0x044b] = 0x244f6, [0x044c] = 0x244f8, + [0x044d] = 0x24550, [0x044e] = 0x24551, [0x044f] = 0x24571, [0x0450] = 0x24570, + [0x0451] = 0x245b0, [0x0452] = 0x245af, [0x0453] = 0x245ae, [0x0454] = 0x245ad, + [0x0455] = 0x24625, [0x0456] = 0x2462c, [0x0457] = 0x24622, [0x0458] = 0x24633, + [0x0459] = 0x24634, [0x045a] = 0x3e2b, [0x045b] = 0x2473a, [0x045c] = 0x24740, + [0x045d] = 0x24768, [0x045e] = 0x3e61, [0x045f] = 0x24764, [0x0460] = 0x2475c, + [0x0461] = 0x24757, [0x0462] = 0x24753, [0x0463] = 0x2474f, [0x0464] = 0x24751, + [0x0465] = 0x24754, [0x0466] = 0x24766, [0x0467] = 0x72dd, [0x0468] = 0x3eb2, + [0x0469] = 0x2490d, [0x046a] = 0x24908, [0x046c] = 0x248fa, [0x046d] = 0x24aea, + [0x046e] = 0x24b2a, [0x046f] = 0x24bbb, [0x0470] = 0x24bd5, [0x0471] = 0x24bd7, + [0x0472] = 0x21da4, [0x0473] = 0x200f0, [0x0474] = 0x200b5, [0x0475] = 0x24c06, + [0x0476] = 0x24c28, [0x0477] = 0x24c22, [0x0478] = 0x24c21, [0x0479] = 0x22456, + [0x047a] = 0x24c23, [0x047b] = 0x211cd, [0x047c] = 0x24d30, [0x047d] = 0x24d34, + [0x047e] = 0x24fc9, [0x047f] = 0x24fca, [0x0480] = 0x24fc8, [0x0482] = 0x25044, + [0x0483] = 0x250f3, [0x0485] = 0x250f8, [0x0486] = 0x250fc, [0x0487] = 0x250f6, + [0x0488] = 0x250fb, [0x0489] = 0x250f7, [0x048a] = 0x25100, [0x048b] = 0x25102, + [0x048e] = 0x25424, [0x048f] = 0x2560d, [0x0490] = 0x4129, [0x0491] = 0x25762, + [0x0492] = 0x25930, [0x0493] = 0x2592b, [0x0494] = 0x2592a, [0x0495] = 0x4192, + [0x0496] = 0x2592d, [0x0497] = 0x25ada, [0x0498] = 0x25e28, [0x0499] = 0x25f86, + [0x049a] = 0x26277, [0x049b] = 0x2627c, [0x049c] = 0x26350, [0x049d] = 0x2634e, + [0x049e] = 0x263f2, [0x049f] = 0x264b2, [0x04a0] = 0x264ce, [0x04a1] = 0x264cf, + [0x04a2] = 0x264e5, [0x04a3] = 0x23407, [0x04a4] = 0x26535, [0x04a5] = 0x26531, + [0x04a6] = 0x26613, [0x04a7] = 0x2662b, [0x04a8] = 0x2662c, [0x04a9] = 0x26645, + [0x04aa] = 0x26660, [0x04ab] = 0x26641, [0x04ac] = 0x26658, [0x04ad] = 0x26647, + [0x04ae] = 0x2665b, [0x04af] = 0x26650, [0x04b1] = 0x2665f, [0x04b2] = 0x2664a, + [0x04b3] = 0x26656, [0x04b4] = 0x26643, [0x04b5] = 0x26644, [0x04b6] = 0x26651, + [0x04b7] = 0x268fd, [0x04b8] = 0x26934, [0x04b9] = 0x26935, [0x04ba] = 0x26954, + [0x04bb] = 0x26955, [0x04bc] = 0x26a0c, [0x04bd] = 0x26a0b, [0x04be] = 0x26a0a, + [0x04bf] = 0x26af9, [0x04c0] = 0x26b35, [0x04c1] = 0x26b24, [0x04c2] = 0x26b13, + [0x04c3] = 0x26b1c, [0x04c4] = 0x26b69, [0x04c5] = 0x26b25, [0x04c6] = 0x26b21, + [0x04ca] = 0x27220, [0x04cb] = 0x275a9, [0x04cc] = 0x275a8, [0x04cd] = 0x275de, + [0x04ce] = 0x27609, [0x04cf] = 0x2760a, [0x04d0] = 0x2760b, [0x04d1] = 0x277e3, + [0x04d2] = 0x27807, [0x04d3] = 0x278b2, [0x04d4] = 0x278b3, [0x04d5] = 0x2795d, + [0x04d6] = 0x27e58, [0x04d7] = 0x27e86, [0x04d8] = 0x27e87, [0x04d9] = 0x27fb9, + [0x04da] = 0x27fb8, [0x04db] = 0x2840c, [0x04dc] = 0x28444, [0x04dd] = 0x28466, + [0x04de] = 0x28480, [0x04df] = 0x28475, [0x04e0] = 0x2846d, [0x04e1] = 0x2847e, + [0x04e2] = 0x28467, [0x04e3] = 0x28481, [0x04e4] = 0x28477, [0x04e5] = 0x286a8, + [0x04e6] = 0x286a2, [0x04e7] = 0x286a5, [0x04e8] = 0x2869b, [0x04e9] = 0x28c57, + [0x04ea] = 0x28e0f, [0x04eb] = 0x28e32, [0x04ec] = 0x28e2c, [0x04ed] = 0x28e33, + [0x04ee] = 0x291e7, [0x04ef] = 0x2006e, [0x04f0] = 0x200b7, [0x04f1] = 0x200f6, + [0x04f2] = 0x200f2, [0x04f3] = 0x200f3, [0x04f4] = 0x20517, [0x04f5] = 0x20130, + [0x04f6] = 0x20154, [0x04f7] = 0x20153, [0x04f8] = 0x20252, [0x04f9] = 0x2023d, + [0x04fa] = 0x2023c, [0x04fb] = 0x20234, [0x04fc] = 0x20233, [0x04fd] = 0x20254, + [0x04fe] = 0x2022f, [0x04ff] = 0x3458, [0x0500] = 0x20255, [0x0501] = 0x2023f, + [0x0502] = 0x20237, [0x0503] = 0x20256, [0x0504] = 0x20261, [0x0505] = 0x20258, + [0x0507] = 0x2023b, [0x0508] = 0x20232, [0x0509] = 0x2022e, [0x050a] = 0x2023e, + [0x050b] = 0x2003b, [0x050c] = 0x2048c, [0x050d] = 0x2048d, [0x050e] = 0x20513, + [0x050f] = 0x20516, [0x0510] = 0x20512, [0x0511] = 0x2055b, [0x0512] = 0x2058a, + [0x0513] = 0x205d7, [0x0514] = 0x205ce, [0x0515] = 0x20650, [0x0516] = 0x20651, + [0x0517] = 0x2064f, [0x0518] = 0x2068e, [0x0519] = 0x2068f, [0x051a] = 0x206f2, + [0x051c] = 0x20728, [0x051d] = 0x2071a, [0x051e] = 0x20725, [0x051f] = 0x2071d, + [0x0520] = 0x20714, [0x0521] = 0x20720, [0x0522] = 0x2071f, [0x0523] = 0x2071b, + [0x0524] = 0x20717, [0x0525] = 0x20715, [0x0526] = 0x2071c, [0x0527] = 0x20713, + [0x0529] = 0x20860, [0x052a] = 0x351c, [0x052b] = 0x20866, [0x052c] = 0x208e3, + [0x052d] = 0x208de, [0x052e] = 0x208e0, [0x052f] = 0x208e1, [0x0530] = 0x2091a, + [0x0531] = 0x2091b, [0x0532] = 0x20918, [0x0533] = 0x2091c, [0x0534] = 0x20919, + [0x0535] = 0x20942, [0x0536] = 0x20940, [0x0537] = 0x2093e, [0x0538] = 0x20944, + [0x0539] = 0x20974, [0x053a] = 0x20943, [0x053c] = 0x209f2, [0x053d] = 0x20a1b, + [0x053e] = 0x20a19, [0x053f] = 0x20a1e, [0x0541] = 0x20a5e, [0x0542] = 0x20a66, + [0x0543] = 0x20a5d, [0x0544] = 0x20a5a, [0x0545] = 0x20a5f, [0x0546] = 0x20a60, + [0x0547] = 0x20a5b, [0x0548] = 0x20a5c, [0x0549] = 0x20a59, [0x054a] = 0x20af0, + [0x054b] = 0x20af1, [0x054c] = 0x20b43, [0x054d] = 0x20b40, [0x054e] = 0x20b42, + [0x054f] = 0x20b41, [0x0550] = 0x20b3f, [0x0551] = 0x20c57, [0x0552] = 0x20c69, + [0x0553] = 0x20c6f, [0x0554] = 0x20cab, [0x0555] = 0x20c71, [0x0556] = 0x20c93, + [0x0557] = 0x20c56, [0x0558] = 0x20c90, [0x0559] = 0x20c6d, [0x055a] = 0x20c6c, + [0x055b] = 0x20c70, [0x055c] = 0x20c66, [0x055d] = 0x20c67, [0x055e] = 0x211d7, + [0x055f] = 0x211b5, [0x0560] = 0x211db, [0x0561] = 0x211d8, [0x0562] = 0x211d5, + [0x0563] = 0x211d4, [0x0564] = 0x212ba, [0x0565] = 0x212b7, [0x0566] = 0x212be, + [0x0567] = 0x212b9, [0x0568] = 0x3637, [0x0569] = 0x212e0, [0x056a] = 0x212dd, + [0x056b] = 0x212de, [0x056c] = 0x24918, [0x056d] = 0x212d8, [0x056e] = 0x212bd, + [0x056f] = 0x212db, [0x0570] = 0x2151d, [0x0571] = 0x21525, [0x0572] = 0x21721, + [0x0573] = 0x2170c, [0x0574] = 0x21729, [0x0575] = 0x2172d, [0x0576] = 0x2171b, + [0x0577] = 0x2170e, [0x0578] = 0x2171f, [0x0579] = 0x21704, [0x057a] = 0x2171c, + [0x057b] = 0x21705, [0x057c] = 0x21706, [0x057d] = 0x21720, [0x057e] = 0x2170d, + [0x057f] = 0x2172a, [0x0580] = 0x21723, [0x0581] = 0x21711, [0x0582] = 0x2195c, + [0x0583] = 0x21966, [0x0584] = 0x2195b, [0x0585] = 0x2194f, [0x0586] = 0x2195e, + [0x0587] = 0x2195d, [0x0588] = 0x219f1, [0x0589] = 0x219ea, [0x058a] = 0x219f4, + [0x058b] = 0x219eb, [0x058c] = 0x219f0, [0x058d] = 0x219fa, [0x058e] = 0x219fb, + [0x058f] = 0x21b28, [0x0590] = 0x21b2c, [0x0591] = 0x21b6b, [0x0592] = 0x21b2a, + [0x0593] = 0x21b6a, [0x0594] = 0x21b6f, [0x0595] = 0x21bdb, [0x0596] = 0x21be0, + [0x0597] = 0x24fd1, [0x0598] = 0x21be3, [0x0599] = 0x21be5, [0x059a] = 0x21be7, + [0x059b] = 0x21c4d, [0x059c] = 0x21c55, [0x059d] = 0x21c54, [0x059e] = 0x21c53, + [0x059f] = 0x21c52, [0x05a0] = 0x21c4e, [0x05a1] = 0x21c60, [0x05a2] = 0x221c0, + [0x05a3] = 0x21d0f, [0x05a4] = 0x21d11, [0x05a5] = 0x21d13, [0x05a6] = 0x21dc6, + [0x05a7] = 0x21db3, [0x05a8] = 0x21dc7, [0x05a9] = 0x21dd2, [0x05aa] = 0x21db8, + [0x05ab] = 0x21dac, [0x05ac] = 0x21dae, [0x05ad] = 0x21dcf, [0x05ae] = 0x21dc5, + [0x05b0] = 0x21dcc, [0x05b1] = 0x21dab, [0x05b2] = 0x21dc9, [0x05b3] = 0x21db9, + [0x05b4] = 0x21ffb, [0x05b5] = 0x21ff8, [0x05b6] = 0x21ff7, [0x05b7] = 0x21ff9, + [0x05b8] = 0x22020, [0x05b9] = 0x2203b, [0x05ba] = 0x22039, [0x05bb] = 0x2209e, + [0x05bc] = 0x2209a, [0x05bd] = 0x220aa, [0x05be] = 0x220ab, [0x05bf] = 0x220af, + [0x05c0] = 0x22096, [0x05c1] = 0x220a9, [0x05c2] = 0x220a6, [0x05c3] = 0x22091, + [0x05c4] = 0x3843, [0x05c5] = 0x220ae, [0x05c6] = 0x2209f, [0x05c7] = 0x220ac, + [0x05c8] = 0x220a0, [0x05c9] = 0x22192, [0x05ca] = 0x22191, [0x05cb] = 0x221bf, + [0x05cc] = 0x22217, [0x05cd] = 0x2220a, [0x05ce] = 0x2220c, [0x05cf] = 0x2234a, + [0x05d0] = 0x22346, [0x05d1] = 0x22334, [0x05d2] = 0x22345, [0x05d3] = 0x22343, + [0x05d4] = 0x22344, [0x05d6] = 0x22387, [0x05d7] = 0x22386, [0x05d8] = 0x2238a, + [0x05d9] = 0x223da, [0x05da] = 0x223d8, [0x05db] = 0x38b4, [0x05dc] = 0x20518, + [0x05dd] = 0x20134, [0x05de] = 0x223d6, [0x05df] = 0x223d4, [0x05e0] = 0x22454, + [0x05e1] = 0x22459, [0x05e2] = 0x2245a, [0x05e3] = 0x22457, [0x05e4] = 0x38e0, + [0x05e5] = 0x224dd, [0x05e6] = 0x224e9, [0x05e7] = 0x224e0, [0x05e8] = 0x22605, + [0x05e9] = 0x22612, [0x05ea] = 0x22613, [0x05eb] = 0x22607, [0x05ec] = 0x22616, + [0x05ed] = 0x22623, [0x05ee] = 0x22602, [0x05f0] = 0x2264a, [0x05f1] = 0x22636, + [0x05f2] = 0x22640, [0x05f3] = 0x22656, [0x05f4] = 0x22643, [0x05f6] = 0x2264b, + [0x05f7] = 0x22646, [0x05f8] = 0x2263e, [0x05f9] = 0x22649, [0x05fa] = 0x229a7, + [0x05fb] = 0x229b6, [0x05fc] = 0x229a6, [0x05fd] = 0x229a8, [0x05fe] = 0x229ac, + [0x05ff] = 0x229a9, [0x0600] = 0x229ab, [0x0601] = 0x22a38, [0x0602] = 0x22a37, + [0x0603] = 0x22a39, [0x0604] = 0x22a41, [0x0605] = 0x22a3e, [0x0606] = 0x22ac0, + [0x0607] = 0x22abb, [0x0608] = 0x22abf, [0x0609] = 0x22abd, [0x060a] = 0x22afe, + [0x060b] = 0x22b1e, [0x060c] = 0x22aee, [0x060d] = 0x22afc, [0x060f] = 0x22af9, + [0x0610] = 0x22b06, [0x0611] = 0x22ae4, [0x0612] = 0x22ae9, [0x0613] = 0x22ae5, + [0x0614] = 0x22b03, [0x0615] = 0x22afd, [0x0616] = 0x22b49, [0x0617] = 0x22ebe, + [0x0618] = 0x22f0a, [0x0619] = 0x25626, [0x061a] = 0x22f18, [0x061b] = 0x22f0d, + [0x061c] = 0x22f0f, [0x061d] = 0x22f0e, [0x061e] = 0x22f20, [0x061f] = 0x23071, + [0x0620] = 0x23099, [0x0621] = 0x230e2, [0x0622] = 0x230df, [0x0623] = 0x230de, + [0x0624] = 0x23178, [0x0625] = 0x23179, [0x0626] = 0x3ae4, [0x0627] = 0x2317c, + [0x0628] = 0x2317d, [0x0629] = 0x23184, [0x062a] = 0x2318b, [0x062b] = 0x2318a, + [0x062d] = 0x23189, [0x062e] = 0x2332c, [0x062f] = 0x23329, [0x0630] = 0x2336c, + [0x0631] = 0x6804, [0x0632] = 0x23409, [0x0633] = 0x23408, [0x0634] = 0x2340c, + [0x0635] = 0x2340d, [0x0636] = 0x23410, [0x0637] = 0x3c26, [0x0638] = 0x2389f, + [0x0639] = 0x23898, [0x063a] = 0x238a2, [0x063b] = 0x2389a, [0x063c] = 0x239d5, + [0x063d] = 0x239e2, [0x063e] = 0x239f0, [0x063f] = 0x239ea, [0x0640] = 0x239eb, + [0x0641] = 0x239ed, [0x0642] = 0x239e8, [0x0643] = 0x239e0, [0x0644] = 0x23a85, + [0x0645] = 0x23a86, [0x0646] = 0x23af0, [0x0647] = 0x21e46, [0x0648] = 0x23b45, + [0x0649] = 0x23b38, [0x064a] = 0x23b3e, [0x064b] = 0x23b42, [0x064c] = 0x23b40, + [0x064d] = 0x23c47, [0x064e] = 0x23c5c, [0x064f] = 0x23c5e, [0x0650] = 0x23cb4, + [0x0651] = 0x23cc2, [0x0652] = 0x23d14, [0x0653] = 0x23ce5, [0x0654] = 0x23d15, + [0x0655] = 0x23d11, [0x0657] = 0x23cee, [0x0658] = 0x23ce7, [0x0659] = 0x23cf5, + [0x065a] = 0x23cf4, [0x065b] = 0x23ce8, [0x065c] = 0x23d01, [0x065d] = 0x23cef, + [0x065e] = 0x23cf1, [0x0660] = 0x241db, [0x0661] = 0x241bf, [0x0662] = 0x241da, + [0x0663] = 0x241c7, [0x0664] = 0x241dd, [0x0666] = 0x241eb, [0x0667] = 0x241e1, + [0x0668] = 0x241c1, [0x0669] = 0x241bd, [0x066a] = 0x24507, [0x066b] = 0x244fd, + [0x066c] = 0x24501, [0x066d] = 0x2450a, [0x066e] = 0x24503, [0x066f] = 0x24572, + [0x0670] = 0x24574, [0x0671] = 0x24575, [0x0672] = 0x245b2, [0x0673] = 0x245b1, + [0x0674] = 0x245b4, [0x0675] = 0x2464c, [0x0676] = 0x24642, [0x0677] = 0x24640, + [0x0678] = 0x24649, [0x0679] = 0x2463c, [0x067a] = 0x2464d, [0x067b] = 0x2464a, + [0x067c] = 0x2463b, [0x067d] = 0x24761, [0x067e] = 0x24774, [0x0680] = 0x2477f, + [0x0681] = 0x2477a, [0x0682] = 0x24788, [0x0683] = 0x2477c, [0x0684] = 0x3e6f, + [0x0685] = 0x24770, [0x0686] = 0x2490f, [0x0687] = 0x24928, [0x0688] = 0x24913, + [0x0689] = 0x2492a, [0x068a] = 0x24aed, [0x068b] = 0x24aef, [0x068c] = 0x24b2e, + [0x068d] = 0x24bc1, [0x068e] = 0x24bdd, [0x068f] = 0x20b47, [0x0690] = 0x24c2d, + [0x0691] = 0x24c2b, [0x0692] = 0x24c35, [0x0693] = 0x24c2f, [0x0694] = 0x24c31, + [0x0695] = 0x24c34, [0x0697] = 0x24c30, [0x0698] = 0x24d3a, [0x0699] = 0x24d39, + [0x069a] = 0x24d37, [0x069b] = 0x24d4b, [0x069c] = 0x24d54, [0x069d] = 0x24d4d, + [0x069e] = 0x24d51, [0x069f] = 0x24d47, [0x06a0] = 0x24f27, [0x06a1] = 0x24f50, + [0x06a2] = 0x24f4d, [0x06a3] = 0x24f4e, [0x06a4] = 0x24f54, [0x06a5] = 0x24fd2, + [0x06a6] = 0x24fce, [0x06a7] = 0x2504b, [0x06a8] = 0x25049, [0x06a9] = 0x25105, + [0x06aa] = 0x2510f, [0x06ab] = 0x25119, [0x06ad] = 0x25106, [0x06ae] = 0x2510c, + [0x06af] = 0x25129, [0x06b0] = 0x25104, [0x06b1] = 0x25108, [0x06b2] = 0x25125, + [0x06b3] = 0x401c, [0x06b4] = 0x25103, [0x06b5] = 0x25127, [0x06b6] = 0x25110, + [0x06b7] = 0x2510a, [0x06b9] = 0x26b5d, [0x06ba] = 0x253aa, [0x06bb] = 0x253ab, + [0x06bc] = 0x253a9, [0x06bd] = 0x25441, [0x06be] = 0x2543a, [0x06bf] = 0x2543c, + [0x06c0] = 0x2542b, [0x06c1] = 0x25449, [0x06c2] = 0x25615, [0x06c3] = 0x4100, + [0x06c4] = 0x25616, [0x06c6] = 0x25631, [0x06c7] = 0x23c4a, [0x06c8] = 0x2573c, + [0x06c9] = 0x2577c, [0x06ca] = 0x2576d, [0x06cb] = 0x2576a, [0x06cc] = 0x25763, + [0x06cd] = 0x2576b, [0x06ce] = 0x2577b, [0x06cf] = 0x25764, [0x06d0] = 0x2577a, + [0x06d1] = 0x25769, [0x06d2] = 0x2576f, [0x06d3] = 0x25937, [0x06d4] = 0x25935, + [0x06d5] = 0x2593c, [0x06d6] = 0x25936, [0x06d7] = 0x2593d, [0x06d8] = 0x2593e, + [0x06d9] = 0x25ae1, [0x06da] = 0x25ae0, [0x06db] = 0x25e2d, [0x06dc] = 0x25e2b, + [0x06dd] = 0x25f8d, [0x06de] = 0x25f92, [0x06df] = 0x42b6, [0x06e0] = 0x25f8e, + [0x06e2] = 0x25f91, [0x06e3] = 0x25f96, [0x06e4] = 0x2627b, [0x06e5] = 0x26278, + [0x06e6] = 0x26281, [0x06e7] = 0x26296, [0x06e8] = 0x262a3, [0x06e9] = 0x26295, + [0x06ea] = 0x26297, [0x06eb] = 0x26354, [0x06ec] = 0x26352, [0x06ed] = 0x263f5, + [0x06ee] = 0x26400, [0x06ef] = 0x263fb, [0x06f0] = 0x263f4, [0x06f1] = 0x263f6, + [0x06f2] = 0x264e8, [0x06f3] = 0x264ea, [0x06f4] = 0x2663e, [0x06f5] = 0x2663d, + [0x06f6] = 0x2663b, [0x06f7] = 0x26680, [0x06f8] = 0x43e4, [0x06f9] = 0x26688, + [0x06fa] = 0x26681, [0x06fb] = 0x26682, [0x06fc] = 0x266ce, [0x06fd] = 0x26683, + [0x06fe] = 0x26677, [0x06ff] = 0x26679, [0x0700] = 0x26673, [0x0701] = 0x2666d, + [0x0702] = 0x26670, [0x0703] = 0x2668d, [0x0704] = 0x26675, [0x0705] = 0x2668c, + [0x0706] = 0x2666a, [0x0707] = 0x26691, [0x0708] = 0x26689, [0x0709] = 0x2668e, + [0x070a] = 0x212dc, [0x070b] = 0x268ff, [0x070c] = 0x26959, [0x070d] = 0x269c7, + [0x070e] = 0x26a12, [0x070f] = 0x26a14, [0x0710] = 0x26a13, [0x0711] = 0x26acb, + [0x0712] = 0x26b42, [0x0713] = 0x44ad, [0x0714] = 0x26b3d, [0x0715] = 0x82ff, + [0x0716] = 0x26b40, [0x0717] = 0x26b44, [0x0718] = 0x26b62, [0x0719] = 0x26b43, + [0x071a] = 0x26b3f, [0x071b] = 0x26b45, [0x071c] = 0x26b3c, [0x071e] = 0x26b46, + [0x071f] = 0x26b47, [0x0721] = 0x2719e, [0x0722] = 0x2719d, [0x0723] = 0x2722c, + [0x0724] = 0x27229, [0x0725] = 0x2722f, [0x0726] = 0x2722e, [0x0727] = 0x27230, + [0x0728] = 0x275e1, [0x0729] = 0x275e2, [0x072a] = 0x2760e, [0x072b] = 0x27619, + [0x072c] = 0x27612, [0x072d] = 0x278b4, [0x072e] = 0x27bda, [0x072f] = 0x27d26, + [0x0730] = 0x27e59, [0x0731] = 0x27e5a, [0x0732] = 0x27e88, [0x0733] = 0x27fc0, + [0x0734] = 0x27fba, [0x0735] = 0x282a0, [0x0737] = 0x282a2, [0x0738] = 0x28486, + [0x0739] = 0x8fec, [0x073a] = 0x2849d, [0x073b] = 0x28488, [0x073c] = 0x2848f, + [0x073d] = 0x2848e, [0x073e] = 0x2849b, [0x073f] = 0x286c1, [0x0740] = 0x286c3, + [0x0741] = 0x286c4, [0x0742] = 0x28696, [0x0743] = 0x286c7, [0x0744] = 0x286c6, + [0x0745] = 0x286bf, [0x0746] = 0x48c3, [0x0747] = 0x2890f, [0x0748] = 0x28e55, + [0x0749] = 0x28e42, [0x074a] = 0x28e46, [0x074b] = 0x28e4b, [0x074c] = 0x28e43, + [0x074d] = 0x28e53, [0x074e] = 0x28e48, [0x074f] = 0x28e49, [0x0750] = 0x28e4a, + [0x0751] = 0x28e4e, [0x0752] = 0x24bde, [0x0753] = 0x20691, [0x0754] = 0x2944b, + [0x0755] = 0x29680, [0x0756] = 0x29681, [0x0757] = 0x29683, [0x0758] = 0x2028a, + [0x0759] = 0x29682, [0x075a] = 0x22342, [0x075b] = 0x20922, [0x075c] = 0x20070, + [0x075d] = 0x20071, [0x075e] = 0x200bc, [0x075f] = 0x21d18, [0x0760] = 0x200be, + [0x0761] = 0x200ba, [0x0762] = 0x200f8, [0x0763] = 0x20137, [0x0764] = 0x20135, + [0x0765] = 0x20afc, [0x0766] = 0x20156, [0x0767] = 0x20159, [0x0768] = 0x2015e, + [0x0769] = 0x2026d, [0x076a] = 0x20291, [0x076b] = 0x20292, [0x076c] = 0x20268, + [0x076d] = 0x20266, [0x076e] = 0x20273, [0x076f] = 0x3467, [0x0770] = 0x20296, + [0x0771] = 0x2028b, [0x0772] = 0x2028c, [0x0773] = 0x20496, [0x0774] = 0x204ee, + [0x0775] = 0x2051c, [0x0776] = 0x2051a, [0x0777] = 0x20519, [0x0778] = 0x2051b, + [0x0779] = 0x2055d, [0x077a] = 0x2055e, [0x077c] = 0x205dc, [0x077d] = 0x205e2, + [0x077e] = 0x20652, [0x077f] = 0x20692, [0x0780] = 0x20730, [0x0781] = 0x20752, + [0x0782] = 0x20742, [0x0783] = 0x20741, [0x0784] = 0x20745, [0x0785] = 0x20737, + [0x0786] = 0x20740, [0x0787] = 0x2073f, [0x0788] = 0x2073d, [0x0789] = 0x20738, + [0x078a] = 0x2073a, [0x078b] = 0x20749, [0x078c] = 0x2086b, [0x078d] = 0x20878, + [0x078e] = 0x20879, [0x0790] = 0x2086c, [0x0791] = 0x208e9, [0x0792] = 0x208e6, + [0x0793] = 0x208e5, [0x0794] = 0x208ea, [0x0795] = 0x208e7, [0x0796] = 0x208e8, + [0x0797] = 0x2091f, [0x0798] = 0x2094b, [0x0799] = 0x2094a, [0x079a] = 0x20953, + [0x079b] = 0x20976, [0x079c] = 0x209a3, [0x079d] = 0x209a4, [0x079e] = 0x209f6, + [0x079f] = 0x209f3, [0x07a0] = 0x209f9, [0x07a1] = 0x209f7, [0x07a2] = 0x209fc, + [0x07a3] = 0x20a1d, [0x07a4] = 0x20a6d, [0x07a5] = 0x20a71, [0x07a6] = 0x20a6c, + [0x07a7] = 0x20a6e, [0x07a8] = 0x20a70, [0x07a9] = 0x20a6f, [0x07aa] = 0x20a67, + [0x07ab] = 0x20a68, [0x07ac] = 0x20afa, [0x07ad] = 0x20af9, [0x07ae] = 0x20b4e, + [0x07af] = 0x53de, [0x07b0] = 0x20b4d, [0x07b1] = 0x20b4f, [0x07b2] = 0x20b4a, + [0x07b3] = 0x20b4c, [0x07b4] = 0x3596, [0x07b6] = 0x20cee, [0x07b7] = 0x20cb2, + [0x07b8] = 0x20cc0, [0x07b9] = 0x20cc1, [0x07ba] = 0x20cf4, [0x07bb] = 0x20cc8, + [0x07bc] = 0x20cc5, [0x07bd] = 0x20cc6, [0x07be] = 0x20cad, [0x07bf] = 0x211e2, + [0x07c0] = 0x211ea, [0x07c1] = 0x211e3, [0x07c2] = 0x211e1, [0x07c3] = 0x212f7, + [0x07c4] = 0x21301, [0x07c5] = 0x21312, [0x07c6] = 0x212f6, [0x07c7] = 0x212f1, + [0x07c8] = 0x2131f, [0x07c9] = 0x212ee, [0x07cb] = 0x212f3, [0x07cc] = 0x21315, + [0x07cd] = 0x21316, [0x07ce] = 0x21317, [0x07cf] = 0x212f8, [0x07d0] = 0x21319, + [0x07d1] = 0x212f2, [0x07d2] = 0x212f4, [0x07d3] = 0x212f5, [0x07d4] = 0x21313, + [0x07d5] = 0x21306, [0x07d6] = 0x21526, [0x07d7] = 0x21524, [0x07d8] = 0x2155a, + [0x07d9] = 0x22ec8, [0x07da] = 0x21597, [0x07db] = 0x21595, [0x07dc] = 0x2159a, + [0x07dd] = 0x2161f, [0x07de] = 0x20afb, [0x07df] = 0x21629, [0x07e0] = 0x21620, + [0x07e3] = 0x2174c, [0x07e4] = 0x21730, [0x07e5] = 0x21738, [0x07e6] = 0x2173d, + [0x07e7] = 0x21751, [0x07e8] = 0x2174f, [0x07e9] = 0x2174a, [0x07ea] = 0x21734, + [0x07eb] = 0x21736, [0x07ec] = 0x5a30, [0x07ed] = 0x2196a, [0x07ee] = 0x21968, + [0x07ef] = 0x21a1c, [0x07f0] = 0x21a0e, [0x07f1] = 0x21a1e, [0x07f2] = 0x3759, + [0x07f3] = 0x21a09, [0x07f4] = 0x21a08, [0x07f5] = 0x21a13, [0x07f6] = 0x21a01, + [0x07f7] = 0x21a0f, [0x07f8] = 0x21a14, [0x07f9] = 0x21a06, [0x07fa] = 0x21a07, + [0x07fb] = 0x5bb2, [0x07fd] = 0x3776, [0x07fe] = 0x21b79, [0x07ff] = 0x21bea, + [0x0800] = 0x21bed, [0x0801] = 0x21be9, [0x0802] = 0x21bee, [0x0803] = 0x21c68, + [0x0804] = 0x21c64, [0x0805] = 0x21c67, [0x0806] = 0x21c72, [0x0807] = 0x21c62, + [0x0808] = 0x21c74, [0x0809] = 0x21c79, [0x080a] = 0x21d19, [0x080b] = 0x21d17, + [0x080c] = 0x21d15, [0x080d] = 0x21d16, [0x080e] = 0x21de6, [0x080f] = 0x262a4, + [0x0810] = 0x21dee, [0x0811] = 0x37d2, [0x0812] = 0x21ddf, [0x0813] = 0x21de4, + [0x0814] = 0x21dda, [0x0815] = 0x21dea, [0x0816] = 0x21ded, [0x0817] = 0x21de3, + [0x0818] = 0x21de9, [0x0819] = 0x21ffd, [0x081a] = 0x20657, [0x081b] = 0x22021, + [0x081c] = 0x220c6, [0x081d] = 0x220b8, [0x081e] = 0x220cb, [0x0820] = 0x220bd, + [0x0821] = 0x220b5, [0x0822] = 0x220bb, [0x0823] = 0x220bf, [0x0824] = 0x220be, + [0x0825] = 0x220b2, [0x0826] = 0x220c1, [0x0827] = 0x220c2, [0x0828] = 0x22199, + [0x0829] = 0x221c6, [0x082a] = 0x2222c, [0x082b] = 0x2222d, [0x082c] = 0x22225, + [0x082d] = 0x2221e, [0x082e] = 0x2221f, [0x082f] = 0x22223, [0x0830] = 0x22350, + [0x0831] = 0x2234e, [0x0832] = 0x2234d, [0x0833] = 0x22352, [0x0834] = 0x223e9, + [0x0835] = 0x223ec, [0x0836] = 0x223e8, [0x0837] = 0x22458, [0x0838] = 0x2245c, + [0x0839] = 0x2245b, [0x083a] = 0x2248f, [0x083b] = 0x23972, [0x083c] = 0x224f6, + [0x083d] = 0x22500, [0x083e] = 0x224fc, [0x083f] = 0x224f8, [0x0840] = 0x224ea, + [0x0841] = 0x224fe, [0x0842] = 0x224f7, [0x0843] = 0x224fd, [0x0844] = 0x22670, + [0x0845] = 0x22662, [0x0846] = 0x22644, [0x0847] = 0x3920, [0x0848] = 0x2264d, + [0x0849] = 0x2264c, [0x084a] = 0x2263f, [0x084b] = 0x22666, [0x084c] = 0x22635, + [0x084d] = 0x3929, [0x084e] = 0x22634, [0x084f] = 0x2268d, [0x0850] = 0x22684, + [0x0851] = 0x3938, [0x0852] = 0x22686, [0x0853] = 0x22689, [0x0854] = 0x22687, + [0x0855] = 0x22683, [0x0856] = 0x22675, [0x0857] = 0x22679, [0x0858] = 0x226af, + [0x0859] = 0x226b0, [0x085a] = 0x229b7, [0x085b] = 0x229bb, [0x085c] = 0x229b9, + [0x085d] = 0x22a46, [0x085e] = 0x22a47, [0x085f] = 0x22a45, [0x0860] = 0x22aea, + [0x0861] = 0x22af6, [0x0862] = 0x22b68, [0x0863] = 0x22b39, [0x0865] = 0x22b3d, + [0x0866] = 0x22b3b, [0x0867] = 0x22b4d, [0x0868] = 0x22b30, [0x0869] = 0x22b4a, + [0x086a] = 0x22b3e, [0x086b] = 0x22b40, [0x086c] = 0x22b4c, [0x086d] = 0x22b47, + [0x086e] = 0x22b38, [0x086f] = 0x22b52, [0x0870] = 0x22b3a, [0x0871] = 0x22b53, + [0x0872] = 0x22ec4, [0x0873] = 0x22ec1, [0x0874] = 0x22f1c, [0x0875] = 0x22f1d, + [0x0876] = 0x22f2a, [0x0877] = 0x22f1e, [0x0878] = 0x22f2f, [0x0879] = 0x22f22, + [0x087a] = 0x22f2e, [0x087b] = 0x22f25, [0x087c] = 0x3a89, [0x087d] = 0x3ab0, + [0x087e] = 0x2304a, [0x087f] = 0x2304b, [0x0880] = 0x23076, [0x0881] = 0x3abf, + [0x0882] = 0x230e8, [0x0883] = 0x230ef, [0x0884] = 0x230e9, [0x0885] = 0x3ac5, + [0x0886] = 0x230ea, [0x0888] = 0x3aea, [0x0889] = 0x2319b, [0x088a] = 0x2319e, + [0x088b] = 0x23193, [0x088c] = 0x231a7, [0x088d] = 0x2319c, [0x088e] = 0x231a0, + [0x088f] = 0x2319a, [0x0890] = 0x231ab, [0x0891] = 0x231be, [0x0892] = 0x231a9, + [0x0893] = 0x2332d, [0x0894] = 0x2336e, [0x0895] = 0x23444, [0x0896] = 0x2343d, + [0x0897] = 0x2343a, [0x0898] = 0x23468, [0x0899] = 0x2343c, [0x089a] = 0x2346a, + [0x089c] = 0x23438, [0x089d] = 0x23465, [0x089e] = 0x23439, [0x089f] = 0x2346d, + [0x08a0] = 0x23436, [0x08a2] = 0x2343e, [0x08a3] = 0x2347e, [0x08a4] = 0x23437, + [0x08a5] = 0x23899, [0x08a6] = 0x238a9, [0x08a7] = 0x238ad, [0x08a8] = 0x238a7, + [0x08a9] = 0x238a8, [0x08aa] = 0x23966, [0x08ab] = 0x23969, [0x08ac] = 0x2396d, + [0x08ad] = 0x23967, [0x08ae] = 0x2396b, [0x08af] = 0x2396a, [0x08b0] = 0x239ee, + [0x08b1] = 0x23a01, [0x08b2] = 0x23a03, [0x08b3] = 0x239f4, [0x08b4] = 0x239fb, + [0x08b5] = 0x3c37, [0x08b6] = 0x239f6, [0x08b7] = 0x239fc, [0x08b8] = 0x23af4, + [0x08b9] = 0x23b08, [0x08ba] = 0x23b0a, [0x08bb] = 0x23b09, [0x08bc] = 0x23b6d, + [0x08bd] = 0x23b62, [0x08be] = 0x23b41, [0x08bf] = 0x23b5e, [0x08c0] = 0x23b5c, + [0x08c1] = 0x23cf3, [0x08c2] = 0x23d26, [0x08c3] = 0x3ce4, [0x08c4] = 0x23d39, + [0x08c6] = 0x23d6c, [0x08c7] = 0x23d2b, [0x08c8] = 0x23d2e, [0x08c9] = 0x23d3b, + [0x08ca] = 0x23d5e, [0x08cb] = 0x23dfb, [0x08cc] = 0x23d27, [0x08cd] = 0x23d24, + [0x08ce] = 0x23d69, [0x08cf] = 0x23d30, [0x08d1] = 0x23d62, [0x08d2] = 0x23d38, + [0x08d3] = 0x23d35, [0x08d4] = 0x23d2a, [0x08d5] = 0x23d2c, [0x08d6] = 0x23d68, + [0x08d7] = 0x23d31, [0x08d8] = 0x23d2f, [0x08d9] = 0x23d2d, [0x08da] = 0x23d3a, + [0x08db] = 0x23d36, [0x08dd] = 0x23d21, [0x08de] = 0x23d3c, [0x08df] = 0x23d20, + [0x08e0] = 0x23d64, [0x08e1] = 0x23d3e, [0x08e2] = 0x3ce8, [0x08e3] = 0x241f7, + [0x08e4] = 0x24212, [0x08e5] = 0x241f1, [0x08e6] = 0x241f5, [0x08e7] = 0x24222, + [0x08e8] = 0x241f2, [0x08e9] = 0x241df, [0x08ea] = 0x24215, [0x08eb] = 0x24216, + [0x08ec] = 0x2457a, [0x08ed] = 0x24576, [0x08ee] = 0x245be, [0x08ef] = 0x3e20, + [0x08f0] = 0x245bd, [0x08f1] = 0x24609, [0x08f2] = 0x24608, [0x08f3] = 0x24657, + [0x08f4] = 0x247a3, [0x08f5] = 0x247bf, [0x08f6] = 0x247b8, [0x08f7] = 0x247af, + [0x08f8] = 0x2479c, [0x08f9] = 0x247a5, [0x08fa] = 0x24772, [0x08fb] = 0x24775, + [0x08fc] = 0x2479d, [0x08fd] = 0x24799, [0x08fe] = 0x247b9, [0x08ff] = 0x2494e, + [0x0900] = 0x24939, [0x0901] = 0x2493b, [0x0902] = 0x24935, [0x0903] = 0x2493c, + [0x0904] = 0x24955, [0x0905] = 0x24af0, [0x0906] = 0x24af3, [0x0907] = 0x24af4, + [0x0908] = 0x24b3b, [0x0909] = 0x24b3c, [0x090a] = 0x24b3a, [0x090b] = 0x24b36, + [0x090c] = 0x24c07, [0x090d] = 0x20ceb, [0x090e] = 0x24c55, [0x090f] = 0x24c50, + [0x0910] = 0x24c4f, [0x0911] = 0x24c52, [0x0912] = 0x24c56, [0x0913] = 0x200bd, + [0x0914] = 0x24c32, [0x0915] = 0x24d63, [0x0916] = 0x24d6b, [0x0917] = 0x24d66, + [0x0918] = 0x24d57, [0x0919] = 0x24d5d, [0x091a] = 0x3f86, [0x091b] = 0x24d6d, + [0x091c] = 0x24d61, [0x091d] = 0x24d69, [0x091e] = 0x24d5a, [0x091f] = 0x24d5c, + [0x0920] = 0x24d62, [0x0921] = 0x24f2a, [0x0922] = 0x24f29, [0x0923] = 0x24f58, + [0x0924] = 0x24f5a, [0x0925] = 0x24fd7, [0x0926] = 0x24fdb, [0x0927] = 0x24fdc, + [0x0928] = 0x24fdd, [0x0929] = 0x24fd8, [0x092a] = 0x25054, [0x092b] = 0x2505b, + [0x092c] = 0x2505c, [0x092d] = 0x25053, [0x092e] = 0x2504f, [0x092f] = 0x25056, + [0x0930] = 0x25050, [0x0931] = 0x2505a, [0x0932] = 0x2506b, [0x0933] = 0x25136, + [0x0934] = 0x25153, [0x0935] = 0x2513a, [0x0936] = 0x2513c, [0x0937] = 0x2513e, + [0x0938] = 0x25149, [0x0939] = 0x25140, [0x093c] = 0x25364, [0x093d] = 0x25365, + [0x093e] = 0x253b5, [0x093f] = 0x253b6, [0x0940] = 0x253b2, [0x0941] = 0x25448, + [0x0942] = 0x2544a, [0x0943] = 0x25472, [0x0944] = 0x25469, [0x0945] = 0x2545a, + [0x0946] = 0x2544c, [0x0947] = 0x2562c, [0x0948] = 0x25630, [0x0949] = 0x2564b, + [0x094a] = 0x25649, [0x094b] = 0x25642, [0x094c] = 0x25644, [0x094d] = 0x2564a, + [0x094e] = 0x2564f, [0x094f] = 0x25792, [0x0951] = 0x25797, [0x0952] = 0x25780, + [0x0953] = 0x25782, [0x0954] = 0x25786, [0x0955] = 0x25953, [0x0956] = 0x2595e, + [0x0957] = 0x25952, [0x0958] = 0x2595b, [0x0959] = 0x2594e, [0x095a] = 0x25a6d, + [0x095b] = 0x25a6e, [0x095c] = 0x25afa, [0x095d] = 0x25af6, [0x095e] = 0x25afb, + [0x095f] = 0x25e33, [0x0960] = 0x25e3d, [0x0961] = 0x25e37, [0x0962] = 0x25e3e, + [0x0963] = 0x25e35, [0x0964] = 0x25f9a, [0x0965] = 0x25fab, [0x0966] = 0x25fa6, + [0x0967] = 0x25fb0, [0x0968] = 0x25f99, [0x0969] = 0x25fa0, [0x096a] = 0x25f9e, + [0x096b] = 0x25fa8, [0x096c] = 0x25fa1, [0x096d] = 0x25faa, [0x096e] = 0x25fad, + [0x096f] = 0x25fbb, [0x0970] = 0x25f9c, [0x0971] = 0x25fa5, [0x0972] = 0x200b3, + [0x0973] = 0x26227, [0x0974] = 0x2628d, [0x0975] = 0x2628e, [0x0976] = 0x2628f, + [0x0977] = 0x26292, [0x0978] = 0x4356, [0x0979] = 0x26291, [0x097a] = 0x262ad, + [0x097b] = 0x26357, [0x097c] = 0x26358, [0x097d] = 0x2635e, [0x097e] = 0x2635d, + [0x097f] = 0x2635c, [0x0980] = 0x2635b, [0x0981] = 0x4367, [0x0982] = 0x2640a, + [0x0983] = 0x26403, [0x0984] = 0x2640e, [0x0985] = 0x264b8, [0x0986] = 0x2654d, + [0x0987] = 0x2653f, [0x0988] = 0x26547, [0x0989] = 0x2654b, [0x098a] = 0x2654a, + [0x098b] = 0x2653d, [0x098c] = 0x8038, [0x098d] = 0x26541, [0x098e] = 0x2654c, + [0x098f] = 0x8081, [0x0990] = 0x26662, [0x0991] = 0x26669, [0x0992] = 0x26661, + [0x0993] = 0x43d1, [0x0994] = 0x266aa, [0x0995] = 0x266a6, [0x0996] = 0x266ac, + [0x0997] = 0x266bd, [0x0998] = 0x266bb, [0x0999] = 0x266a4, [0x099a] = 0x266ba, + [0x099b] = 0x2669a, [0x099c] = 0x43eb, [0x099d] = 0x266a1, [0x099e] = 0x266c1, + [0x099f] = 0x268e0, [0x09a0] = 0x2690a, [0x09a1] = 0x26903, [0x09a2] = 0x26906, + [0x09a3] = 0x26939, [0x09a4] = 0x2693a, [0x09a5] = 0x26936, [0x09a6] = 0x2695b, + [0x09a7] = 0x2695f, [0x09a8] = 0x2695e, [0x09a9] = 0x26967, [0x09aa] = 0x26961, + [0x09ab] = 0x26962, [0x09ac] = 0x2695d, [0x09ad] = 0x269ca, [0x09ae] = 0x269cc, + [0x09af] = 0x269ce, [0x09b0] = 0x26a18, [0x09b1] = 0x26a1d, [0x09b2] = 0x26a1f, + [0x09b3] = 0x26a20, [0x09b4] = 0x26a17, [0x09b5] = 0x26a15, [0x09b6] = 0x26b1f, + [0x09b7] = 0x26b27, [0x09b8] = 0x26b26, [0x09b9] = 0x21e10, [0x09ba] = 0x26b8b, + [0x09bb] = 0x26bae, [0x09bc] = 0x26b8a, [0x09be] = 0x26b92, [0x09bf] = 0x26b89, + [0x09c0] = 0x26b87, [0x09c1] = 0x44b6, [0x09c2] = 0x26b8f, [0x09c3] = 0x26b84, + [0x09c4] = 0x26b83, [0x09c5] = 0x26b8c, [0x09c6] = 0x26b93, [0x09c7] = 0x26b8d, + [0x09c8] = 0x26b98, [0x09c9] = 0x26b7d, [0x09ca] = 0x26b7e, [0x09cb] = 0x26bd2, + [0x09cc] = 0x26b80, [0x09cd] = 0x26b99, [0x09ce] = 0x271ac, [0x09cf] = 0x27250, + [0x09d0] = 0x27255, [0x09d1] = 0x27242, [0x09d2] = 0x2723f, [0x09d3] = 0x2723c, + [0x09d4] = 0x45a3, [0x09d5] = 0x2724c, [0x09d6] = 0x27249, [0x09d7] = 0x27257, + [0x09d8] = 0x27258, [0x09d9] = 0x2724f, [0x09da] = 0x2725c, [0x09db] = 0x27247, + [0x09dd] = 0x275ab, [0x09de] = 0x4610, [0x09df] = 0x275af, [0x09e0] = 0x275ad, + [0x09e1] = 0x275e8, [0x09e2] = 0x275e7, [0x09e3] = 0x27630, [0x09e4] = 0x27626, + [0x09e5] = 0x2762f, [0x09e6] = 0x27628, [0x09e7] = 0x2762b, [0x09e8] = 0x2761d, + [0x09e9] = 0x2762d, [0x09ea] = 0x27620, [0x09eb] = 0x2762a, [0x09ec] = 0x2762c, + [0x09ed] = 0x27635, [0x09ee] = 0x27621, [0x09ef] = 0x27623, [0x09f0] = 0x27624, + [0x09f1] = 0x27636, [0x09f2] = 0x27637, [0x09f3] = 0x277e9, [0x09f4] = 0x278ba, + [0x09f5] = 0x278b8, [0x09f7] = 0x2796d, [0x09f8] = 0x2796a, [0x09f9] = 0x27968, + [0x09fa] = 0x27969, [0x09fb] = 0x2796b, [0x09fc] = 0x27961, [0x09fd] = 0x27bdc, + [0x09fe] = 0x27bdb, [0x09ff] = 0x27c2d, [0x0a00] = 0x27c2c, [0x0a01] = 0x27ca2, + [0x0a02] = 0x27d2b, [0x0a03] = 0x27d32, [0x0a05] = 0x27e94, [0x0a06] = 0x27e92, + [0x0a07] = 0x27e90, [0x0a08] = 0x27fc9, [0x0a09] = 0x27fc4, [0x0a0a] = 0x27fc1, + [0x0a0b] = 0x27fc3, [0x0a0c] = 0x27fcd, [0x0a0d] = 0x28214, [0x0a0e] = 0x282a7, + [0x0a0f] = 0x282af, [0x0a10] = 0x282aa, [0x0a11] = 0x2840d, [0x0a12] = 0x28454, + [0x0a13] = 0x2845b, [0x0a14] = 0x28461, [0x0a15] = 0x284ae, [0x0a16] = 0x284b3, + [0x0a17] = 0x284c0, [0x0a18] = 0x284c4, [0x0a19] = 0x284bf, [0x0a1a] = 0x284cb, + [0x0a1b] = 0x284ad, [0x0a1c] = 0x284a7, [0x0a1d] = 0x284a4, [0x0a1e] = 0x284bd, + [0x0a1f] = 0x284af, [0x0a20] = 0x284b2, [0x0a21] = 0x284a5, [0x0a22] = 0x286e7, + [0x0a23] = 0x286e0, [0x0a24] = 0x286ce, [0x0a25] = 0x286de, [0x0a26] = 0x286d5, + [0x0a27] = 0x286df, [0x0a28] = 0x286d9, [0x0a29] = 0x287f2, [0x0a2a] = 0x28923, + [0x0a2b] = 0x28940, [0x0a2c] = 0x491b, [0x0a2d] = 0x2893e, [0x0a2e] = 0x4987, + [0x0a2f] = 0x28ccf, [0x0a30] = 0x20b54, [0x0a31] = 0x28e5b, [0x0a32] = 0x28e58, + [0x0a33] = 0x28e62, [0x0a34] = 0x28e5f, [0x0a35] = 0x28e67, [0x0a36] = 0x28e63, + [0x0a37] = 0x28e5e, [0x0a38] = 0x28e60, [0x0a39] = 0x28f85, [0x0a3a] = 0x28f86, + [0x0a3b] = 0x28f87, [0x0a3c] = 0x291e8, [0x0a3d] = 0x291e6, [0x0a3e] = 0x29671, + [0x0a3f] = 0x29685, [0x0a41] = 0x29686, [0x0a42] = 0x29810, [0x0a43] = 0x209f8, + [0x0a44] = 0x200bf, [0x0a45] = 0x20b61, [0x0a46] = 0x200fe, [0x0a47] = 0x200fc, + [0x0a48] = 0x20139, [0x0a49] = 0x20161, [0x0a4a] = 0x20160, [0x0a4b] = 0x202e2, + [0x0a4c] = 0x202ea, [0x0a4d] = 0x202e3, [0x0a4e] = 0x202b4, [0x0a4f] = 0x202ae, + [0x0a50] = 0x202be, [0x0a51] = 0x202b8, [0x0a52] = 0x202a8, [0x0a53] = 0x202aa, + [0x0a54] = 0x202a9, [0x0a55] = 0x202b3, [0x0a56] = 0x202d5, [0x0a57] = 0x202ad, + [0x0a58] = 0x202b9, [0x0a59] = 0x202bb, [0x0a5a] = 0x202b1, [0x0a5b] = 0x202c2, + [0x0a5d] = 0x202eb, [0x0a5e] = 0x202ba, [0x0a5f] = 0x202d2, [0x0a60] = 0x202d4, + [0x0a61] = 0x204f1, [0x0a62] = 0x2051d, [0x0a64] = 0x20562, [0x0a65] = 0x2058c, + [0x0a66] = 0x205e6, [0x0a67] = 0x205e7, [0x0a68] = 0x2065a, [0x0a69] = 0x20658, + [0x0a6a] = 0x20659, [0x0a6b] = 0x20696, [0x0a6c] = 0x20697, [0x0a6d] = 0x20761, + [0x0a6e] = 0x20767, [0x0a6f] = 0x20771, [0x0a70] = 0x20765, [0x0a71] = 0x2077d, + [0x0a72] = 0x2077e, [0x0a73] = 0x2087d, [0x0a74] = 0x20884, [0x0a75] = 0x2087c, + [0x0a76] = 0x2087e, [0x0a77] = 0x2087f, [0x0a78] = 0x20880, [0x0a79] = 0x208ef, + [0x0a7a] = 0x208f4, [0x0a7b] = 0x2091e, [0x0a7c] = 0x2094e, [0x0a7d] = 0x209fb, + [0x0a7e] = 0x209fa, [0x0a7f] = 0x209fd, [0x0a82] = 0x20a79, [0x0a83] = 0x20a7c, + [0x0a84] = 0x20a7d, [0x0a85] = 0x20a84, [0x0a86] = 0x20a7b, [0x0a87] = 0x20a78, + [0x0a88] = 0x3557, [0x0a89] = 0x20b5e, [0x0a8a] = 0x20b5a, [0x0a8b] = 0x20b5c, + [0x0a8c] = 0x20b59, [0x0a8d] = 0x20b55, [0x0a8e] = 0x20b63, [0x0a8f] = 0x20b56, + [0x0a90] = 0x20b5f, [0x0a91] = 0x20b60, [0x0a92] = 0x20b5b, [0x0a93] = 0x20d4a, + [0x0a94] = 0x20d65, [0x0a95] = 0x20db3, [0x0a96] = 0x20d2c, [0x0a97] = 0x20d77, + [0x0a98] = 0x20d3d, [0x0a99] = 0x20d52, [0x0a9a] = 0x20d61, [0x0a9b] = 0x20d2a, + [0x0a9c] = 0x20d3e, [0x0a9d] = 0x20d34, [0x0a9e] = 0x20d29, [0x0a9f] = 0x20db2, + [0x0aa0] = 0x20dad, [0x0aa1] = 0x20d40, [0x0aa2] = 0x20d53, [0x0aa4] = 0x20d3f, + [0x0aa5] = 0x20d41, [0x0aa6] = 0x20d72, [0x0aa7] = 0x211f6, [0x0aa8] = 0x211f5, + [0x0aa9] = 0x211f4, [0x0aaa] = 0x211f2, [0x0aab] = 0x211f9, [0x0aac] = 0x21327, + [0x0aad] = 0x21354, [0x0aae] = 0x21355, [0x0aaf] = 0x2132e, [0x0ab2] = 0x2132c, + [0x0ab3] = 0x21338, [0x0ab4] = 0x21339, [0x0ab5] = 0x21331, [0x0ab6] = 0x2134f, + [0x0ab7] = 0x21373, [0x0ab8] = 0x21330, [0x0ab9] = 0x2132b, [0x0aba] = 0x21351, + [0x0abb] = 0x2152c, [0x0abc] = 0x2155b, [0x0abd] = 0x2155c, [0x0abe] = 0x21568, + [0x0abf] = 0x2156c, [0x0ac0] = 0x2156b, [0x0ac1] = 0x21569, [0x0ac2] = 0x2159f, + [0x0ac3] = 0x21638, [0x0ac4] = 0x2163c, [0x0ac5] = 0x2163a, [0x0ac6] = 0x21635, + [0x0ac7] = 0x369d, [0x0ac8] = 0x21639, [0x0ac9] = 0x21636, [0x0aca] = 0x2163b, + [0x0acb] = 0x21760, [0x0acc] = 0x21761, [0x0acd] = 0x21763, [0x0ace] = 0x21764, + [0x0acf] = 0x21794, [0x0ad0] = 0x21793, [0x0ad1] = 0x2175e, [0x0ad2] = 0x21768, + [0x0ad3] = 0x2176a, [0x0ad4] = 0x21765, [0x0ad6] = 0x21790, [0x0ad7] = 0x2175f, + [0x0ad8] = 0x21772, [0x0ada] = 0x21a3c, [0x0adb] = 0x21a27, [0x0adc] = 0x21a24, + [0x0add] = 0x21a26, [0x0ade] = 0x21a25, [0x0adf] = 0x375f, [0x0ae0] = 0x21a28, + [0x0ae1] = 0x21a36, [0x0ae2] = 0x21b31, [0x0ae3] = 0x21b30, [0x0ae4] = 0x21b34, + [0x0ae5] = 0x21b81, [0x0ae6] = 0x21b7d, [0x0ae7] = 0x21b82, [0x0ae8] = 0x21b80, + [0x0ae9] = 0x3779, [0x0aea] = 0x202d3, [0x0aeb] = 0x21bf2, [0x0aec] = 0x21c66, + [0x0aed] = 0x21c8c, [0x0aee] = 0x21c7b, [0x0aef] = 0x21c83, [0x0af0] = 0x3798, + [0x0af1] = 0x21c8e, [0x0af2] = 0x21c7a, [0x0af3] = 0x21c92, [0x0af4] = 0x21c91, + [0x0af5] = 0x21c82, [0x0af6] = 0x21d1b, [0x0af7] = 0x21d1c, [0x0af8] = 0x21e27, + [0x0af9] = 0x21e21, [0x0afa] = 0x37dc, [0x0afc] = 0x21e43, [0x0afd] = 0x37df, + [0x0afe] = 0x21e18, [0x0aff] = 0x21e7b, [0x0b00] = 0x21e1a, [0x0b01] = 0x21e4b, + [0x0b02] = 0x21e4a, [0x0b03] = 0x21e4d, [0x0b04] = 0x21e4f, [0x0b05] = 0x21e19, + [0x0b06] = 0x21e35, [0x0b07] = 0x21e13, [0x0b08] = 0x21e52, [0x0b09] = 0x21e14, + [0x0b0a] = 0x21e1e, [0x0b0b] = 0x21e2c, [0x0b0c] = 0x21e20, [0x0b0d] = 0x21e22, + [0x0b0e] = 0x21e12, [0x0b0f] = 0x21e1f, [0x0b10] = 0x22000, [0x0b11] = 0x22023, + [0x0b12] = 0x22040, [0x0b13] = 0x22043, [0x0b14] = 0x220e4, [0x0b15] = 0x220db, + [0x0b16] = 0x220ea, [0x0b17] = 0x220dd, [0x0b18] = 0x220cc, [0x0b19] = 0x220d9, + [0x0b1a] = 0x220e8, [0x0b1b] = 0x220f6, [0x0b1c] = 0x220e3, [0x0b1d] = 0x220d3, + [0x0b1e] = 0x220da, [0x0b1f] = 0x220d6, [0x0b20] = 0x220e7, [0x0b21] = 0x2223a, + [0x0b22] = 0x2223f, [0x0b23] = 0x22240, [0x0b24] = 0x22248, [0x0b25] = 0x22259, + [0x0b26] = 0x22237, [0x0b27] = 0x22244, [0x0b2a] = 0x22255, [0x0b2b] = 0x22239, + [0x0b2c] = 0x22354, [0x0b2d] = 0x22355, [0x0b2e] = 0x22356, [0x0b2f] = 0x22357, + [0x0b30] = 0x22358, [0x0b31] = 0x22359, [0x0b32] = 0x2238d, [0x0b33] = 0x223f2, + [0x0b34] = 0x223f8, [0x0b35] = 0x223f5, [0x0b36] = 0x223f6, [0x0b37] = 0x223fc, + [0x0b38] = 0x223fe, [0x0b39] = 0x223f1, [0x0b3a] = 0x223fd, [0x0b3b] = 0x2245e, + [0x0b3c] = 0x22496, [0x0b3d] = 0x22497, [0x0b3e] = 0x2249c, [0x0b3f] = 0x2249b, + [0x0b40] = 0x22495, [0x0b42] = 0x2251a, [0x0b43] = 0x22509, [0x0b44] = 0x22504, + [0x0b45] = 0x2250e, [0x0b46] = 0x2251c, [0x0b47] = 0x22518, [0x0b48] = 0x2250d, + [0x0b49] = 0x22510, [0x0b4a] = 0x2250c, [0x0b4b] = 0x22503, [0x0b4c] = 0x2267b, + [0x0b4d] = 0x226a6, [0x0b4e] = 0x22677, [0x0b4f] = 0x22688, [0x0b50] = 0x22674, + [0x0b51] = 0x226da, [0x0b52] = 0x22676, [0x0b53] = 0x22678, [0x0b54] = 0x2268a, + [0x0b55] = 0x2268f, [0x0b56] = 0x2267d, [0x0b57] = 0x22690, [0x0b58] = 0x226ed, + [0x0b59] = 0x226d9, [0x0b5a] = 0x226d0, [0x0b5b] = 0x2271a, [0x0b5c] = 0x226d7, + [0x0b5d] = 0x226e2, [0x0b5e] = 0x226e1, [0x0b5f] = 0x226c5, [0x0b60] = 0x226e0, + [0x0b61] = 0x226ca, [0x0b62] = 0x22725, [0x0b63] = 0x226cc, [0x0b65] = 0x229c6, + [0x0b66] = 0x229c1, [0x0b67] = 0x22a4d, [0x0b68] = 0x22b4b, [0x0b69] = 0x22b64, + [0x0b6a] = 0x22b95, [0x0b6b] = 0x22b99, [0x0b6d] = 0x22b94, [0x0b6e] = 0x22ba2, + [0x0b6f] = 0x22bae, [0x0b70] = 0x22b9e, [0x0b71] = 0x22ba7, [0x0b72] = 0x22b86, + [0x0b73] = 0x39fd, [0x0b74] = 0x22ba4, [0x0b75] = 0x22b91, [0x0b76] = 0x22b93, + [0x0b78] = 0x22b88, [0x0b79] = 0x22ecd, [0x0b7a] = 0x22eca, [0x0b7b] = 0x22f3f, + [0x0b7c] = 0x22f40, [0x0b7d] = 0x22f46, [0x0b7e] = 0x22f41, [0x0b7f] = 0x22f45, + [0x0b80] = 0x22f58, [0x0b81] = 0x22f3b, [0x0b82] = 0x22f48, [0x0b83] = 0x2304e, + [0x0b84] = 0x23052, [0x0b85] = 0x2304f, [0x0b86] = 0x2307b, [0x0b87] = 0x2307a, + [0x0b88] = 0x230a0, [0x0b89] = 0x2309f, [0x0b8a] = 0x230fb, [0x0b8b] = 0x230f7, + [0x0b8c] = 0x231b8, [0x0b8d] = 0x231b9, [0x0b8e] = 0x231bb, [0x0b8f] = 0x231b7, + [0x0b90] = 0x3af4, [0x0b91] = 0x231ba, [0x0b92] = 0x3aef, [0x0b93] = 0x231da, + [0x0b94] = 0x231b5, [0x0b95] = 0x231bf, [0x0b96] = 0x231bc, [0x0b97] = 0x231c0, + [0x0b9a] = 0x23375, [0x0b9b] = 0x23379, [0x0b9c] = 0x23376, [0x0b9d] = 0x23435, + [0x0b9e] = 0x23440, [0x0b9f] = 0x234c0, [0x0ba0] = 0x23481, [0x0ba1] = 0x234ad, + [0x0ba2] = 0x234af, [0x0ba3] = 0x234ac, [0x0ba4] = 0x2348f, [0x0ba5] = 0x234a8, + [0x0ba6] = 0x234aa, [0x0ba7] = 0x234a9, [0x0ba8] = 0x23488, [0x0ba9] = 0x2347f, + [0x0baa] = 0x23480, [0x0bab] = 0x234bc, [0x0bac] = 0x238ae, [0x0bad] = 0x238bb, + [0x0bae] = 0x238bd, [0x0baf] = 0x3c31, [0x0bb0] = 0x23978, [0x0bb1] = 0x23974, + [0x0bb2] = 0x23a0c, [0x0bb3] = 0x23a11, [0x0bb4] = 0x23a08, [0x0bb5] = 0x23a06, + [0x0bb6] = 0x23a10, [0x0bb7] = 0x23a8f, [0x0bb8] = 0x23a90, [0x0bb9] = 0x23a8d, + [0x0bba] = 0x23a8e, [0x0bbb] = 0x23a96, [0x0bbc] = 0x23a95, [0x0bbd] = 0x23b0b, + [0x0bbe] = 0x23b0c, [0x0bbf] = 0x23b7c, [0x0bc0] = 0x23b73, [0x0bc1] = 0x23b75, + [0x0bc2] = 0x23b76, [0x0bc3] = 0x23b7d, [0x0bc4] = 0x23b78, [0x0bc5] = 0x23b71, + [0x0bc6] = 0x23c4b, [0x0bc7] = 0x23c4e, [0x0bc8] = 0x23d33, [0x0bc9] = 0x23d32, + [0x0bca] = 0x3d03, [0x0bcb] = 0x23d91, [0x0bcc] = 0x23de7, [0x0bcd] = 0x23de9, + [0x0bce] = 0x23da2, [0x0bcf] = 0x23d94, [0x0bd0] = 0x23d87, [0x0bd1] = 0x23da3, + [0x0bd2] = 0x23ddd, [0x0bd3] = 0x23d7b, [0x0bd4] = 0x23d83, [0x0bd5] = 0x23d81, + [0x0bd6] = 0x23ddf, [0x0bd7] = 0x23d7c, [0x0bd8] = 0x23de4, [0x0bd9] = 0x23de2, + [0x0bda] = 0x23d93, [0x0bdb] = 0x23d7d, [0x0bdc] = 0x23dbf, [0x0bdd] = 0x23d9b, + [0x0bde] = 0x23d8e, [0x0bdf] = 0x23d9f, [0x0be0] = 0x3d09, [0x0be1] = 0x23d8c, + [0x0be2] = 0x23d7f, [0x0be3] = 0x23d9c, [0x0be4] = 0x23d84, [0x0be5] = 0x23d42, + [0x0be6] = 0x23de6, [0x0be7] = 0x24251, [0x0be8] = 0x2424a, [0x0be9] = 0x24264, + [0x0bea] = 0x24225, [0x0beb] = 0x2422f, [0x0bec] = 0x2422e, [0x0bed] = 0x2422b, + [0x0bee] = 0x24228, [0x0bef] = 0x24232, [0x0bf0] = 0x2422d, [0x0bf1] = 0x24231, + [0x0bf2] = 0x24239, [0x0bf3] = 0x2422c, [0x0bf4] = 0x24261, [0x0bf5] = 0x24511, + [0x0bf6] = 0x24510, [0x0bf7] = 0x24512, [0x0bf8] = 0x24553, [0x0bf9] = 0x24555, + [0x0bfa] = 0x2457b, [0x0bfb] = 0x24581, [0x0bfc] = 0x2457d, [0x0bfd] = 0x2457c, + [0x0bfe] = 0x245c2, [0x0bff] = 0x245c5, [0x0c01] = 0x245c4, [0x0c03] = 0x2466b, + [0x0c04] = 0x24668, [0x0c05] = 0x3e3e, [0x0c06] = 0x2465c, [0x0c07] = 0x2465d, + [0x0c08] = 0x2466a, [0x0c0a] = 0x24c76, [0x0c0b] = 0x24776, [0x0c0c] = 0x3e77, + [0x0c0d] = 0x247c4, [0x0c0e] = 0x247cb, [0x0c0f] = 0x247c8, [0x0c10] = 0x247d4, + [0x0c11] = 0x247d5, [0x0c12] = 0x247c9, [0x0c13] = 0x247d7, [0x0c14] = 0x3e7b, + [0x0c15] = 0x24978, [0x0c16] = 0x2495a, [0x0c17] = 0x2495b, [0x0c18] = 0x2495c, + [0x0c19] = 0x24956, [0x0c1a] = 0x24958, [0x0c1b] = 0x24971, [0x0c1c] = 0x269d4, + [0x0c1d] = 0x24b40, [0x0c1f] = 0x24b3f, [0x0c20] = 0x24b43, [0x0c21] = 0x24b41, + [0x0c22] = 0x24be2, [0x0c23] = 0x24be0, [0x0c24] = 0x24be3, [0x0c25] = 0x24c66, + [0x0c26] = 0x24c73, [0x0c27] = 0x24c6c, [0x0c28] = 0x24c71, [0x0c29] = 0x24c6a, + [0x0c2a] = 0x24c6d, [0x0c2b] = 0x24c6e, [0x0c2c] = 0x24c6b, [0x0c2d] = 0x24d8c, + [0x0c2e] = 0x24d77, [0x0c30] = 0x24d7f, [0x0c31] = 0x24d89, [0x0c32] = 0x24d7a, + [0x0c33] = 0x24d85, [0x0c34] = 0x24d78, [0x0c35] = 0x24d8a, [0x0c36] = 0x24d86, + [0x0c37] = 0x24f2c, [0x0c38] = 0x24f67, [0x0c39] = 0x24f5b, [0x0c3a] = 0x24fe5, + [0x0c3b] = 0x24fe1, [0x0c3c] = 0x25061, [0x0c3d] = 0x25069, [0x0c3e] = 0x2506a, + [0x0c3f] = 0x25165, [0x0c40] = 0x2516d, [0x0c41] = 0x25163, [0x0c42] = 0x25186, + [0x0c43] = 0x2515c, [0x0c44] = 0x25162, [0x0c46] = 0x25179, [0x0c47] = 0x25169, + [0x0c48] = 0x25170, [0x0c49] = 0x25176, [0x0c4a] = 0x2515d, [0x0c4b] = 0x25187, + [0x0c4c] = 0x2516e, [0x0c4d] = 0x25171, [0x0c4e] = 0x2517c, [0x0c4f] = 0x25173, + [0x0c50] = 0x2515b, [0x0c51] = 0x2516b, [0x0c52] = 0x253bf, [0x0c53] = 0x253c1, + [0x0c54] = 0x253bd, [0x0c55] = 0x253c9, [0x0c56] = 0x253bc, [0x0c57] = 0x253c2, + [0x0c58] = 0x253c0, [0x0c59] = 0x25492, [0x0c5a] = 0x254a9, [0x0c5b] = 0x2548f, + [0x0c5c] = 0x25476, [0x0c5d] = 0x2547b, [0x0c5e] = 0x25475, [0x0c5f] = 0x254a4, + [0x0c60] = 0x25664, [0x0c61] = 0x2573d, [0x0c62] = 0x257af, [0x0c63] = 0x413a, + [0x0c65] = 0x2579d, [0x0c66] = 0x25799, [0x0c67] = 0x257b1, [0x0c68] = 0x25963, + [0x0c69] = 0x25962, [0x0c6a] = 0x25964, [0x0c6b] = 0x25969, [0x0c6c] = 0x41a0, + [0x0c6d] = 0x25a75, [0x0c6e] = 0x25a73, [0x0c6f] = 0x25a71, [0x0c70] = 0x25a74, + [0x0c71] = 0x25b0c, [0x0c72] = 0x25b16, [0x0c73] = 0x41e5, [0x0c74] = 0x25b11, + [0x0c75] = 0x25b1f, [0x0c76] = 0x25b1a, [0x0c77] = 0x25b0d, [0x0c78] = 0x25b1b, + [0x0c79] = 0x25b13, [0x0c7a] = 0x25e4e, [0x0c7b] = 0x25e55, [0x0c7c] = 0x25e50, + [0x0c7d] = 0x427d, [0x0c7e] = 0x25fd2, [0x0c7f] = 0x25fd3, [0x0c80] = 0x25fd1, + [0x0c81] = 0x25ff1, [0x0c82] = 0x25fdc, [0x0c83] = 0x25fc8, [0x0c84] = 0x25fcc, + [0x0c85] = 0x25fd0, [0x0c86] = 0x25fcf, [0x0c87] = 0x25fdf, [0x0c88] = 0x2622b, + [0x0c89] = 0x2622e, [0x0c8a] = 0x2622d, [0x0c8b] = 0x2629d, [0x0c8c] = 0x2629e, + [0x0c8d] = 0x2629f, [0x0c8e] = 0x262a9, [0x0c8f] = 0x262a0, [0x0c90] = 0x26298, + [0x0c91] = 0x262a1, [0x0c92] = 0x262ab, [0x0c93] = 0x262af, [0x0c94] = 0x2636e, + [0x0c95] = 0x2635f, [0x0c96] = 0x2635a, [0x0c97] = 0x436d, [0x0c98] = 0x26365, + [0x0c99] = 0x26368, [0x0c9a] = 0x26372, [0x0c9b] = 0x26417, [0x0c9c] = 0x26416, + [0x0c9d] = 0x26418, [0x0c9e] = 0x26419, [0x0c9f] = 0x2641a, [0x0ca0] = 0x26422, + [0x0ca1] = 0x2641b, [0x0ca2] = 0x2641c, [0x0ca3] = 0x264be, [0x0ca4] = 0x264ee, + [0x0ca5] = 0x2655a, [0x0ca6] = 0x26550, [0x0ca7] = 0x26558, [0x0ca8] = 0x26554, + [0x0ca9] = 0x26557, [0x0caa] = 0x26556, [0x0cab] = 0x26615, [0x0cac] = 0x2669b, + [0x0cad] = 0x26693, [0x0cae] = 0x26692, [0x0caf] = 0x26672, [0x0cb0] = 0x26698, + [0x0cb1] = 0x26699, [0x0cb2] = 0x266df, [0x0cb3] = 0x43f8, [0x0cb4] = 0x266d5, + [0x0cb5] = 0x8158, [0x0cb6] = 0x266d4, [0x0cb7] = 0x266f3, [0x0cb8] = 0x266f4, + [0x0cb9] = 0x266e7, [0x0cba] = 0x266e1, [0x0cbb] = 0x266e6, [0x0cbc] = 0x266eb, + [0x0cbd] = 0x266ec, [0x0cbe] = 0x202db, [0x0cbf] = 0x4450, [0x0cc0] = 0x2690d, + [0x0cc1] = 0x2690c, [0x0cc2] = 0x21b2f, [0x0cc3] = 0x26968, [0x0cc4] = 0x26965, + [0x0cc5] = 0x2696b, [0x0cc6] = 0x26969, [0x0cc7] = 0x269d1, [0x0cc8] = 0x269d3, + [0x0cc9] = 0x26a27, [0x0cca] = 0x26a28, [0x0ccb] = 0x4468, [0x0ccc] = 0x4467, + [0x0ccd] = 0x26a24, [0x0cce] = 0x26ad7, [0x0ccf] = 0x26bca, [0x0cd0] = 0x26bc7, + [0x0cd2] = 0x26bd8, [0x0cd3] = 0x26be1, [0x0cd4] = 0x26bc6, [0x0cd5] = 0x26bf8, + [0x0cd6] = 0x26bc3, [0x0cd7] = 0x26bf4, [0x0cd8] = 0x26c17, [0x0cd9] = 0x26bea, + [0x0cda] = 0x26bcb, [0x0cdb] = 0x26b86, [0x0cdc] = 0x26bc4, [0x0cdd] = 0x26bd9, + [0x0cde] = 0x26c19, [0x0cdf] = 0x26bc2, [0x0ce0] = 0x26be2, [0x0ce1] = 0x44cf, + [0x0ce2] = 0x26bde, [0x0ce3] = 0x26bed, [0x0ce5] = 0x44cd, [0x0ce6] = 0x26c1d, + [0x0ce7] = 0x26bdd, [0x0ce8] = 0x26bdb, [0x0ce9] = 0x26be8, [0x0cea] = 0x26be9, + [0x0ceb] = 0x26bbf, [0x0cec] = 0x26be0, [0x0ced] = 0x26bd1, [0x0cee] = 0x26bdc, + [0x0cef] = 0x26bce, [0x0cf0] = 0x26c1e, [0x0cf1] = 0x26bcc, [0x0cf2] = 0x26bf2, + [0x0cf3] = 0x26bf3, [0x0cf8] = 0x271ab, [0x0cf9] = 0x271aa, [0x0cfa] = 0x271a7, + [0x0cfb] = 0x271a9, [0x0cfc] = 0x27288, [0x0cfd] = 0x27275, [0x0cfe] = 0x27260, + [0x0cff] = 0x2726c, [0x0d00] = 0x27273, [0x0d01] = 0x45ab, [0x0d02] = 0x2726e, + [0x0d03] = 0x27274, [0x0d04] = 0x27276, [0x0d05] = 0x27268, [0x0d06] = 0x27277, + [0x0d07] = 0x27286, [0x0d08] = 0x275ea, [0x0d09] = 0x27651, [0x0d0a] = 0x27650, + [0x0d0b] = 0x27658, [0x0d0c] = 0x2764d, [0x0d0d] = 0x2764f, [0x0d0e] = 0x2764e, + [0x0d0f] = 0x2765c, [0x0d10] = 0x27652, [0x0d11] = 0x27644, [0x0d12] = 0x2764a, + [0x0d13] = 0x2764b, [0x0d14] = 0x277ea, [0x0d15] = 0x27810, [0x0d16] = 0x27811, + [0x0d17] = 0x278cd, [0x0d18] = 0x278bf, [0x0d19] = 0x278c4, [0x0d1a] = 0x278d0, + [0x0d1b] = 0x278ce, [0x0d1c] = 0x278c0, [0x0d1d] = 0x278c2, [0x0d1e] = 0x278cf, + [0x0d1f] = 0x278c9, [0x0d20] = 0x278bb, [0x0d21] = 0x27997, [0x0d22] = 0x27992, + [0x0d23] = 0x2796f, [0x0d24] = 0x2797e, [0x0d25] = 0x2799a, [0x0d26] = 0x46c1, + [0x0d27] = 0x27986, [0x0d28] = 0x27973, [0x0d29] = 0x8a24, [0x0d2a] = 0x27977, + [0x0d2b] = 0x2798f, [0x0d2c] = 0x27970, [0x0d2d] = 0x27981, [0x0d2e] = 0x27982, + [0x0d2f] = 0x27999, [0x0d30] = 0x2797d, [0x0d31] = 0x2797f, [0x0d32] = 0x2797b, + [0x0d33] = 0x27987, [0x0d34] = 0x27bb2, [0x0d35] = 0x27c2f, [0x0d36] = 0x27c34, + [0x0d37] = 0x27c2e, [0x0d38] = 0x27c32, [0x0d39] = 0x4747, [0x0d3a] = 0x27caa, + [0x0d3b] = 0x4757, [0x0d3c] = 0x27ca9, [0x0d3d] = 0x27d38, [0x0d3e] = 0x27d36, + [0x0d3f] = 0x27d37, [0x0d40] = 0x27d47, [0x0d41] = 0x27d33, [0x0d42] = 0x27d39, + [0x0d43] = 0x27d35, [0x0d44] = 0x27d44, [0x0d45] = 0x27ea5, [0x0d46] = 0x27ea6, + [0x0d47] = 0x27e9e, [0x0d48] = 0x27fe3, [0x0d49] = 0x27fdf, [0x0d4a] = 0x27fd3, + [0x0d4b] = 0x27ff1, [0x0d4c] = 0x27fe4, [0x0d4d] = 0x27fe0, [0x0d4e] = 0x27fd6, + [0x0d4f] = 0x8dc3, [0x0d50] = 0x27fe6, [0x0d51] = 0x27fd8, [0x0d52] = 0x27fde, + [0x0d53] = 0x27fdb, [0x0d54] = 0x27fdc, [0x0d55] = 0x2821b, [0x0d56] = 0x2821f, + [0x0d57] = 0x2821d, [0x0d58] = 0x2821c, [0x0d59] = 0x2821e, [0x0d5a] = 0x28220, + [0x0d5b] = 0x28221, [0x0d5c] = 0x484e, [0x0d5d] = 0x282b6, [0x0d5e] = 0x282bc, + [0x0d5f] = 0x282c6, [0x0d60] = 0x282c7, [0x0d61] = 0x282ba, [0x0d62] = 0x282be, + [0x0d63] = 0x282bd, [0x0d64] = 0x282b5, [0x0d65] = 0x282b4, [0x0d66] = 0x2840f, + [0x0d67] = 0x28462, [0x0d68] = 0x284eb, [0x0d69] = 0x284d9, [0x0d6a] = 0x284e4, + [0x0d6b] = 0x284d7, [0x0d6c] = 0x284d8, [0x0d6d] = 0x284d6, [0x0d6e] = 0x284ce, + [0x0d6f] = 0x284dd, [0x0d70] = 0x284e7, [0x0d71] = 0x284d2, [0x0d72] = 0x284c5, + [0x0d73] = 0x284c9, [0x0d74] = 0x284db, [0x0d75] = 0x28692, [0x0d76] = 0x2868a, + [0x0d77] = 0x2868b, [0x0d78] = 0x28689, [0x0d79] = 0x28708, [0x0d7a] = 0x28703, + [0x0d7b] = 0x28706, [0x0d7c] = 0x28705, [0x0d7d] = 0x286f5, [0x0d7e] = 0x2870b, + [0x0d7f] = 0x286fb, [0x0d80] = 0x287fc, [0x0d81] = 0x28801, [0x0d82] = 0x28802, + [0x0d83] = 0x287fa, [0x0d84] = 0x28808, [0x0d85] = 0x287f7, [0x0d86] = 0x28800, + [0x0d87] = 0x287ff, [0x0d88] = 0x28806, [0x0d89] = 0x287f6, [0x0d8a] = 0x287fb, + [0x0d8b] = 0x2880a, [0x0d8c] = 0x28925, [0x0d8d] = 0x28943, [0x0d8e] = 0x28944, + [0x0d8f] = 0x28c64, [0x0d90] = 0x28c62, [0x0d91] = 0x28c5e, [0x0d92] = 0x28c5b, + [0x0d93] = 0x28cd6, [0x0d94] = 0x20072, [0x0d95] = 0x200c2, [0x0d96] = 0x28e77, + [0x0d97] = 0x28e82, [0x0d98] = 0x28e7c, [0x0d99] = 0x28e7d, [0x0d9a] = 0x28e86, + [0x0d9b] = 0x28e81, [0x0d9c] = 0x28e84, [0x0d9d] = 0x28e76, [0x0d9e] = 0x28e83, + [0x0d9f] = 0x28e7f, [0x0da0] = 0x28e7e, [0x0da1] = 0x28f88, [0x0da2] = 0x28f8d, + [0x0da3] = 0x28f8b, [0x0da4] = 0x28f91, [0x0da5] = 0x28f8f, [0x0da6] = 0x2907c, + [0x0da7] = 0x29079, [0x0da8] = 0x2907a, [0x0da9] = 0x291ea, [0x0daa] = 0x2944c, + [0x0dab] = 0x29599, [0x0dac] = 0x202d1, [0x0dad] = 0x2968b, [0x0dae] = 0x2968d, + [0x0daf] = 0x2968a, [0x0db0] = 0x2968e, [0x0db1] = 0x29811, [0x0db2] = 0x22256, + [0x0db4] = 0x20074, [0x0db5] = 0x200c3, [0x0db6] = 0x200c4, [0x0db7] = 0x2011b, + [0x0db8] = 0x2015f, [0x0db9] = 0x2016a, [0x0dba] = 0x20169, [0x0dbb] = 0x2016b, + [0x0dbc] = 0x2030c, [0x0dbd] = 0x202f6, [0x0dbe] = 0x202ed, [0x0dbf] = 0x20329, + [0x0dc0] = 0x202fe, [0x0dc1] = 0x202f1, [0x0dc2] = 0x20317, [0x0dc3] = 0x202ff, + [0x0dc4] = 0x202ee, [0x0dc5] = 0x202fd, [0x0dc6] = 0x2031c, [0x0dc7] = 0x202fc, + [0x0dc8] = 0x20300, [0x0dc9] = 0x20320, [0x0dca] = 0x3477, [0x0dcb] = 0x202f9, + [0x0dcc] = 0x20367, [0x0dcd] = 0x20308, [0x0dce] = 0x2049e, [0x0dcf] = 0x204f3, + [0x0dd0] = 0x20525, [0x0dd1] = 0x20527, [0x0dd2] = 0x2051f, [0x0dd3] = 0x20565, + [0x0dd4] = 0x20563, [0x0dd5] = 0x20594, [0x0dd6] = 0x20597, [0x0dd7] = 0x205f1, + [0x0dd8] = 0x2065f, [0x0dd9] = 0x20662, [0x0dda] = 0x51f2, [0x0ddb] = 0x20660, + [0x0ddd] = 0x2078c, [0x0dde] = 0x20782, [0x0ddf] = 0x20790, [0x0de0] = 0x2078b, + [0x0de1] = 0x2078d, [0x0de2] = 0x20781, [0x0de3] = 0x2079d, [0x0de4] = 0x2088e, + [0x0de5] = 0x2088f, [0x0de6] = 0x20892, [0x0de7] = 0x20923, [0x0de8] = 0x20952, + [0x0dea] = 0x20a00, [0x0deb] = 0x20a01, [0x0dec] = 0x20a02, [0x0ded] = 0x20a1f, + [0x0dee] = 0x20a8c, [0x0def] = 0x20a89, [0x0df0] = 0x20a8b, [0x0df1] = 0x20a88, + [0x0df2] = 0x20a8d, [0x0df3] = 0x20a8f, [0x0df4] = 0x26385, [0x0df5] = 0x20b00, + [0x0df6] = 0x20b05, [0x0df7] = 0x20b01, [0x0df8] = 0x20b68, [0x0df9] = 0x20b6e, + [0x0dfa] = 0x20b67, [0x0dfb] = 0x20b75, [0x0dfc] = 0x55b6, [0x0dfe] = 0x20dd7, + [0x0e00] = 0x20048, [0x0e01] = 0x20dd4, [0x0e02] = 0x20dd8, [0x0e05] = 0x20dba, + [0x0e07] = 0x20ddb, [0x0e08] = 0x20dbf, [0x0e09] = 0x20e35, [0x0e0a] = 0x20dbc, + [0x0e0b] = 0x20dd9, [0x0e0c] = 0x35c4, [0x0e0d] = 0x20ddd, [0x0e0e] = 0x20e00, + [0x0e0f] = 0x20dd5, [0x0e10] = 0x20e30, [0x0e11] = 0x20dbd, [0x0e12] = 0x20ddc, + [0x0e13] = 0x211fd, [0x0e14] = 0x211fe, [0x0e15] = 0x21207, [0x0e16] = 0x24517, + [0x0e17] = 0x2136f, [0x0e18] = 0x21369, [0x0e19] = 0x21370, [0x0e1a] = 0x21367, + [0x0e1b] = 0x213a9, [0x0e1c] = 0x21395, [0x0e1d] = 0x21390, [0x0e1e] = 0x2136c, + [0x0e1f] = 0x21397, [0x0e20] = 0x21371, [0x0e21] = 0x3652, [0x0e22] = 0x21374, + [0x0e23] = 0x2136d, [0x0e24] = 0x2138e, [0x0e25] = 0x2152f, [0x0e26] = 0x2a31b, + [0x0e27] = 0x215a9, [0x0e28] = 0x2164e, [0x0e2a] = 0x2165a, [0x0e2b] = 0x21648, + [0x0e2c] = 0x21655, [0x0e2d] = 0x2164c, [0x0e2e] = 0x21649, [0x0e2f] = 0x2164f, + [0x0e30] = 0x2164a, [0x0e31] = 0x217d6, [0x0e32] = 0x217a0, [0x0e33] = 0x217a9, + [0x0e35] = 0x2179d, [0x0e36] = 0x217d4, [0x0e37] = 0x217a4, [0x0e38] = 0x217a8, + [0x0e39] = 0x217a6, [0x0e3a] = 0x217e6, [0x0e3b] = 0x2197d, [0x0e3c] = 0x21977, + [0x0e3d] = 0x2197a, [0x0e3e] = 0x21a41, [0x0e3f] = 0x21a49, [0x0e40] = 0x21a59, + [0x0e41] = 0x21a45, [0x0e42] = 0x21a48, [0x0e43] = 0x21a40, [0x0e44] = 0x21b8e, + [0x0e45] = 0x21b95, [0x0e46] = 0x21b90, [0x0e47] = 0x21bf7, [0x0e48] = 0x21bf8, + [0x0e49] = 0x21bf6, [0x0e4a] = 0x21bfb, [0x0e4b] = 0x21c9e, [0x0e4c] = 0x21c9d, + [0x0e4d] = 0x21c99, [0x0e4f] = 0x21ca3, [0x0e50] = 0x21ca9, [0x0e51] = 0x21c98, + [0x0e52] = 0x21ca0, [0x0e53] = 0x21c96, [0x0e54] = 0x21c94, [0x0e55] = 0x21c95, + [0x0e56] = 0x21c9f, [0x0e57] = 0x21ca1, [0x0e58] = 0x21d21, [0x0e59] = 0x21d1d, + [0x0e5a] = 0x21d1f, [0x0e5b] = 0x21e6d, [0x0e5d] = 0x21e9a, [0x0e5e] = 0x21e92, + [0x0e5f] = 0x21e7a, [0x0e60] = 0x21e7d, [0x0e61] = 0x21ea1, [0x0e62] = 0x21e9d, + [0x0e63] = 0x21e99, [0x0e64] = 0x21e6b, [0x0e65] = 0x21e6e, [0x0e67] = 0x22045, + [0x0e69] = 0x220fb, [0x0e6a] = 0x220eb, [0x0e6b] = 0x220f2, [0x0e6c] = 0x220f9, + [0x0e6e] = 0x220f8, [0x0e6f] = 0x220ed, [0x0e70] = 0x22101, [0x0e71] = 0x220f7, + [0x0e72] = 0x22106, [0x0e73] = 0x2219b, [0x0e74] = 0x221ca, [0x0e75] = 0x386b, + [0x0e76] = 0x5ec3, [0x0e77] = 0x2226b, [0x0e78] = 0x2226c, [0x0e79] = 0x22274, + [0x0e7a] = 0x22267, [0x0e7b] = 0x2225b, [0x0e7c] = 0x22260, [0x0e7d] = 0x22276, + [0x0e7e] = 0x22263, [0x0e7f] = 0x22261, [0x0e80] = 0x22328, [0x0e81] = 0x2235b, + [0x0e82] = 0x2235e, [0x0e83] = 0x22360, [0x0e84] = 0x2235d, [0x0e85] = 0x2235c, + [0x0e86] = 0x223f4, [0x0e87] = 0x22400, [0x0e88] = 0x22408, [0x0e89] = 0x22407, + [0x0e8a] = 0x22401, [0x0e8b] = 0x22405, [0x0e8c] = 0x22464, [0x0e8d] = 0x22463, + [0x0e8e] = 0x2249e, [0x0e8f] = 0x224a0, [0x0e90] = 0x224a1, [0x0e91] = 0x2249f, + [0x0e92] = 0x22526, [0x0e93] = 0x2252d, [0x0e94] = 0x22528, [0x0e95] = 0x2251d, + [0x0e96] = 0x226ec, [0x0e97] = 0x226e3, [0x0e98] = 0x226eb, [0x0e99] = 0x22716, + [0x0e9a] = 0x226c8, [0x0e9b] = 0x2661b, [0x0e9c] = 0x226e9, [0x0e9d] = 0x226e4, + [0x0e9e] = 0x22724, [0x0e9f] = 0x226d1, [0x0ea0] = 0x3941, [0x0ea1] = 0x226dd, + [0x0ea2] = 0x226c2, [0x0ea3] = 0x226cb, [0x0ea4] = 0x226c7, [0x0ea5] = 0x226e7, + [0x0ea6] = 0x3950, [0x0ea7] = 0x226ea, [0x0ea8] = 0x2274b, [0x0eaa] = 0x22760, + [0x0eab] = 0x2277d, [0x0eac] = 0x2273e, [0x0eae] = 0x22752, [0x0eaf] = 0x2274e, + [0x0eb0] = 0x2273c, [0x0eb1] = 0x22732, [0x0eb2] = 0x22730, [0x0eb3] = 0x22723, + [0x0eb4] = 0x229ca, [0x0eb5] = 0x229cb, [0x0eb6] = 0x229c9, [0x0eb7] = 0x229c8, + [0x0eb8] = 0x229cd, [0x0eb9] = 0x22b98, [0x0eba] = 0x22ba0, [0x0ebb] = 0x22b9f, + [0x0ebc] = 0x22b9c, [0x0ebd] = 0x22ba3, [0x0ebe] = 0x22b97, [0x0ec0] = 0x22bf1, + [0x0ec1] = 0x22c09, [0x0ec2] = 0x22c03, [0x0ec3] = 0x22bea, [0x0ec4] = 0x22c45, + [0x0ec5] = 0x22bed, [0x0ec6] = 0x22c05, [0x0ec7] = 0x22c1a, [0x0ec8] = 0x22c15, + [0x0ec9] = 0x22c01, [0x0eca] = 0x22bec, [0x0ecb] = 0x22c0e, [0x0ecc] = 0x22c17, + [0x0ecd] = 0x22c42, [0x0ece] = 0x22c12, [0x0ecf] = 0x22c10, [0x0ed0] = 0x22bef, + [0x0ed1] = 0x22bff, [0x0ed2] = 0x22c00, [0x0ed3] = 0x22c0c, [0x0ed4] = 0x22c0f, + [0x0ed5] = 0x22c04, [0x0ed6] = 0x22c08, [0x0ed7] = 0x22c14, [0x0ed8] = 0x22c43, + [0x0eda] = 0x22c1b, [0x0edb] = 0x22c11, [0x0edc] = 0x22c13, [0x0edd] = 0x22ecf, + [0x0ede] = 0x22ece, [0x0edf] = 0x22f6f, [0x0ee0] = 0x22f6e, [0x0ee1] = 0x22f7a, + [0x0ee2] = 0x22f70, [0x0ee3] = 0x22f64, [0x0ee4] = 0x22f5e, [0x0ee5] = 0x22f6c, + [0x0ee7] = 0x22f5b, [0x0ee8] = 0x22f61, [0x0ee9] = 0x22f65, [0x0eea] = 0x2307f, + [0x0eeb] = 0x23080, [0x0eec] = 0x2307c, [0x0eed] = 0x230a7, [0x0eee] = 0x230a6, + [0x0eef] = 0x230a1, [0x0ef0] = 0x3ac0, [0x0ef1] = 0x230a8, [0x0ef2] = 0x230a3, + [0x0ef3] = 0x230a2, [0x0ef4] = 0x230ad, [0x0ef5] = 0x230a5, [0x0ef6] = 0x23101, + [0x0ef7] = 0x230ff, [0x0ef8] = 0x230fc, [0x0ef9] = 0x23100, [0x0efa] = 0x23135, + [0x0efb] = 0x231ee, [0x0efc] = 0x231ef, [0x0efd] = 0x231f6, [0x0efe] = 0x231e8, + [0x0eff] = 0x231ea, [0x0f00] = 0x231e3, [0x0f01] = 0x2321f, [0x0f02] = 0x3afc, + [0x0f03] = 0x231e4, [0x0f04] = 0x231fa, [0x0f05] = 0x231f1, [0x0f06] = 0x231fb, + [0x0f08] = 0x2333d, [0x0f09] = 0x2333c, [0x0f0a] = 0x3479, [0x0f0b] = 0x23378, + [0x0f0c] = 0x23377, [0x0f0d] = 0x440b, [0x0f0e] = 0x234d1, [0x0f0f] = 0x234c7, + [0x0f10] = 0x234df, [0x0f11] = 0x234d0, [0x0f12] = 0x234e0, [0x0f13] = 0x234d6, + [0x0f14] = 0x234d8, [0x0f15] = 0x23516, [0x0f16] = 0x2350e, [0x0f17] = 0x234d9, + [0x0f18] = 0x2350f, [0x0f19] = 0x23511, [0x0f1a] = 0x234cd, [0x0f1b] = 0x23489, + [0x0f1c] = 0x234ce, [0x0f1d] = 0x23514, [0x0f1e] = 0x234da, [0x0f1f] = 0x23512, + [0x0f20] = 0x234d3, [0x0f21] = 0x234c2, [0x0f22] = 0x234e1, [0x0f23] = 0x234e9, + [0x0f24] = 0x234ea, [0x0f25] = 0x234de, [0x0f26] = 0x23515, [0x0f27] = 0x238d9, + [0x0f28] = 0x238d6, [0x0f29] = 0x238cd, [0x0f2a] = 0x238d0, [0x0f2b] = 0x238d3, + [0x0f2d] = 0x23982, [0x0f2e] = 0x23985, [0x0f2f] = 0x2397f, [0x0f30] = 0x2397d, + [0x0f31] = 0x23981, [0x0f32] = 0x23983, [0x0f33] = 0x23984, [0x0f34] = 0x284a0, + [0x0f35] = 0x23a28, [0x0f36] = 0x23a0f, [0x0f37] = 0x23a17, [0x0f38] = 0x23a1a, + [0x0f39] = 0x23a25, [0x0f3b] = 0x23a9b, [0x0f3c] = 0x23a99, [0x0f3d] = 0x23b92, + [0x0f3e] = 0x23b8c, [0x0f3f] = 0x23b95, [0x0f40] = 0x23b8d, [0x0f41] = 0x23ba3, + [0x0f42] = 0x23b93, [0x0f43] = 0x23b91, [0x0f44] = 0x23ddb, [0x0f45] = 0x23d99, + [0x0f46] = 0x23d9a, [0x0f47] = 0x23e08, [0x0f48] = 0x23e4c, [0x0f49] = 0x23e0d, + [0x0f4a] = 0x23e01, [0x0f4b] = 0x23e4e, [0x0f4c] = 0x23e02, [0x0f4d] = 0x23e4d, + [0x0f4e] = 0x23e21, [0x0f4f] = 0x23dfc, [0x0f51] = 0x23d8a, [0x0f53] = 0x23d95, + [0x0f54] = 0x23e11, [0x0f55] = 0x23e12, [0x0f56] = 0x23e46, [0x0f57] = 0x23e1c, + [0x0f58] = 0x23e49, [0x0f59] = 0x23e0c, [0x0f5a] = 0x3d1e, [0x0f5b] = 0x23e13, + [0x0f5c] = 0x23e16, [0x0f5d] = 0x23dfd, [0x0f5e] = 0x23e0f, [0x0f5f] = 0x23e1f, + [0x0f60] = 0x24230, [0x0f61] = 0x2426e, [0x0f62] = 0x2426b, [0x0f63] = 0x2429b, + [0x0f64] = 0x2427b, [0x0f65] = 0x24263, [0x0f66] = 0x24297, [0x0f67] = 0x2426d, + [0x0f68] = 0x2429c, [0x0f69] = 0x24298, [0x0f6a] = 0x2426f, [0x0f6b] = 0x24267, + [0x0f6c] = 0x24269, [0x0f6d] = 0x24515, [0x0f6e] = 0x24563, [0x0f6f] = 0x24586, + [0x0f70] = 0x2458a, [0x0f71] = 0x24587, [0x0f72] = 0x24588, [0x0f73] = 0x24585, + [0x0f74] = 0x24589, [0x0f75] = 0x245ca, [0x0f76] = 0x245c7, [0x0f77] = 0x245cb, + [0x0f78] = 0x245cc, [0x0f79] = 0x245c9, [0x0f7a] = 0x2460d, [0x0f7b] = 0x24683, + [0x0f7c] = 0x24684, [0x0f7d] = 0x24678, [0x0f7e] = 0x24682, [0x0f7f] = 0x24673, + [0x0f80] = 0x24679, [0x0f81] = 0x2468c, [0x0f82] = 0x247d0, [0x0f83] = 0x247cf, + [0x0f84] = 0x247d2, [0x0f85] = 0x247d9, [0x0f86] = 0x247cc, [0x0f87] = 0x247eb, + [0x0f88] = 0x247fd, [0x0f89] = 0x247ec, [0x0f8a] = 0x247e8, [0x0f8b] = 0x247f8, + [0x0f8c] = 0x247fa, [0x0f8e] = 0x3e85, [0x0f8f] = 0x247e1, [0x0f90] = 0x247fb, + [0x0f91] = 0x248e7, [0x0f93] = 0x249a5, [0x0f94] = 0x24991, [0x0f95] = 0x249a6, + [0x0f96] = 0x2497c, [0x0f97] = 0x24992, [0x0f98] = 0x249a2, [0x0f99] = 0x249a0, + [0x0f9a] = 0x24afc, [0x0f9b] = 0x24afe, [0x0f9c] = 0x24b57, [0x0f9d] = 0x24b53, + [0x0f9e] = 0x24b58, [0x0f9f] = 0x24be7, [0x0fa0] = 0x24c8e, [0x0fa2] = 0x24c83, + [0x0fa3] = 0x24c8b, [0x0fa4] = 0x24c84, [0x0fa5] = 0x3f97, [0x0fa6] = 0x24da2, + [0x0fa7] = 0x24db7, [0x0fa8] = 0x24da9, [0x0fa9] = 0x24da5, [0x0faa] = 0x24d9f, + [0x0fab] = 0x24daa, [0x0fac] = 0x24d97, [0x0fad] = 0x24da1, [0x0fae] = 0x24d9e, + [0x0faf] = 0x24dab, [0x0fb0] = 0x24d99, [0x0fb1] = 0x24da3, [0x0fb2] = 0x24f30, + [0x0fb3] = 0x24f32, [0x0fb4] = 0x24f2f, [0x0fb5] = 0x24f70, [0x0fb6] = 0x24f6c, + [0x0fb7] = 0x24f6f, [0x0fb8] = 0x24fe8, [0x0fb9] = 0x24fee, [0x0fba] = 0x24fea, + [0x0fbb] = 0x2506d, [0x0fbc] = 0x25076, [0x0fbd] = 0x25070, [0x0fbe] = 0x25071, + [0x0fbf] = 0x2506c, [0x0fc0] = 0x251eb, [0x0fc1] = 0x251b5, [0x0fc2] = 0x25196, + [0x0fc3] = 0x25190, [0x0fc4] = 0x2518d, [0x0fc6] = 0x251a2, [0x0fc7] = 0x251b0, + [0x0fc8] = 0x25192, [0x0fc9] = 0x251a0, [0x0fca] = 0x25193, [0x0fcb] = 0x251c3, + [0x0fcc] = 0x2518e, [0x0fcd] = 0x251b6, [0x0fce] = 0x2519d, [0x0fcf] = 0x25195, + [0x0fd0] = 0x251b3, [0x0fd1] = 0x251a4, [0x0fd2] = 0x25370, [0x0fd3] = 0x253d4, + [0x0fd4] = 0x4093, [0x0fd5] = 0x253cf, [0x0fd6] = 0x20170, [0x0fd7] = 0x25494, + [0x0fd8] = 0x7861, [0x0fd9] = 0x254c0, [0x0fda] = 0x254b4, [0x0fdb] = 0x254c1, + [0x0fdc] = 0x40b2, [0x0fdd] = 0x254bd, [0x0fde] = 0x254af, [0x0fdf] = 0x25677, + [0x0fe0] = 0x25678, [0x0fe1] = 0x2566b, [0x0fe2] = 0x2566d, [0x0fe3] = 0x2566e, + [0x0fe4] = 0x25672, [0x0fe5] = 0x2566f, [0x0fe6] = 0x25671, [0x0fe7] = 0x230ab, + [0x0fe8] = 0x2568c, [0x0fe9] = 0x2573f, [0x0fea] = 0x257b6, [0x0feb] = 0x257b7, + [0x0fed] = 0x257bb, [0x0fee] = 0x257b8, [0x0fef] = 0x2079c, [0x0ff0] = 0x257b9, + [0x0ff1] = 0x7a01, [0x0ff2] = 0x2598b, [0x0ff3] = 0x2597a, [0x0ff4] = 0x25984, + [0x0ff5] = 0x25988, [0x0ff6] = 0x25991, [0x0ff7] = 0x25979, [0x0ff8] = 0x2598e, + [0x0ff9] = 0x25980, [0x0ffa] = 0x25982, [0x0ffb] = 0x2597c, [0x0ffc] = 0x41a4, + [0x0ffd] = 0x25a84, [0x0ffe] = 0x25a7f, [0x0fff] = 0x41f2, [0x1000] = 0x25b3b, + [0x1001] = 0x25b71, [0x1002] = 0x25b3d, [0x1003] = 0x25b30, [0x1004] = 0x41f1, + [0x1005] = 0x25b3e, [0x1006] = 0x25b38, [0x1007] = 0x25e5e, [0x1008] = 0x25e64, + [0x1009] = 0x4281, [0x100a] = 0x25e5d, [0x100b] = 0x25e6d, [0x100c] = 0x25e4f, + [0x100d] = 0x25e62, [0x100e] = 0x25e5f, [0x100f] = 0x25fec, [0x1010] = 0x25ff2, + [0x1011] = 0x25ff4, [0x1012] = 0x25ff7, [0x1013] = 0x25ff6, [0x1014] = 0x26007, + [0x1015] = 0x25fed, [0x1016] = 0x25fea, [0x1017] = 0x25ff0, [0x1018] = 0x25ff8, + [0x1019] = 0x25ff3, [0x101a] = 0x42dc, [0x101c] = 0x26231, [0x101d] = 0x2622f, + [0x101e] = 0x262b6, [0x101f] = 0x262ae, [0x1020] = 0x262aa, [0x1021] = 0x262bf, + [0x1022] = 0x262cc, [0x1023] = 0x262c7, [0x1024] = 0x26c83, [0x1025] = 0x26380, + [0x1026] = 0x2637b, [0x1027] = 0x2637f, [0x1028] = 0x2637d, [0x1029] = 0x26383, + [0x102b] = 0x26446, [0x102c] = 0x2642d, [0x102d] = 0x26425, [0x102e] = 0x26426, + [0x102f] = 0x2642c, [0x1030] = 0x26437, [0x1031] = 0x26431, [0x1032] = 0x26433, + [0x1033] = 0x26432, [0x1034] = 0x26427, [0x1035] = 0x2642a, [0x1036] = 0x2642e, + [0x1037] = 0x2642f, [0x1038] = 0x264c0, [0x1039] = 0x26571, [0x103a] = 0x26561, + [0x103b] = 0x26562, [0x103c] = 0x26566, [0x103d] = 0x26618, [0x103e] = 0x266c5, + [0x103f] = 0x266c3, [0x1040] = 0x266c4, [0x1041] = 0x266c2, [0x1042] = 0x266ae, + [0x1043] = 0x26710, [0x1044] = 0x26708, [0x1045] = 0x2671f, [0x1046] = 0x2673a, + [0x1047] = 0x2673b, [0x1048] = 0x26736, [0x1049] = 0x2670c, [0x104a] = 0x26706, + [0x104b] = 0x2672a, [0x104c] = 0x26757, [0x104d] = 0x26750, [0x104e] = 0x26720, + [0x1050] = 0x2672c, [0x1051] = 0x26721, [0x1052] = 0x2670b, [0x1053] = 0x26719, + [0x1054] = 0x26735, [0x1055] = 0x26718, [0x1056] = 0x2670f, [0x1057] = 0x26713, + [0x1058] = 0x26755, [0x1059] = 0x26739, [0x105a] = 0x2671a, [0x105b] = 0x440c, + [0x105c] = 0x26717, [0x105d] = 0x268e4, [0x105e] = 0x268e9, [0x105f] = 0x2458b, + [0x1060] = 0x26910, [0x1061] = 0x26912, [0x1062] = 0x2693f, [0x1063] = 0x2696e, + [0x1064] = 0x24518, [0x1066] = 0x269d6, [0x1067] = 0x269d5, [0x1068] = 0x269d7, + [0x1069] = 0x20b02, [0x106a] = 0x446d, [0x106b] = 0x26a31, [0x106c] = 0x26a30, + [0x106d] = 0x26a3a, [0x106e] = 0x26b85, [0x106f] = 0x26b6b, [0x1070] = 0x26c48, + [0x1071] = 0x26c4b, [0x1072] = 0x26c37, [0x1073] = 0x26c7b, [0x1074] = 0x26c6c, + [0x1075] = 0x26c85, [0x1076] = 0x26c65, [0x1077] = 0x26c36, [0x1078] = 0x26c86, + [0x1079] = 0x26c34, [0x107a] = 0x26c68, [0x107b] = 0x26c5a, [0x107c] = 0x26c58, + [0x107d] = 0x26c72, [0x107e] = 0x26c6a, [0x107f] = 0x26bd3, [0x1080] = 0x26c3c, + [0x1081] = 0x26c33, [0x1082] = 0x26c3b, [0x1083] = 0x26c4d, [0x1084] = 0x26c4f, + [0x1085] = 0x26c7c, [0x1086] = 0x26cb0, [0x1087] = 0x26c5b, [0x1088] = 0x26c55, + [0x1089] = 0x26c64, [0x108a] = 0x26c6b, [0x108b] = 0x26c53, [0x108c] = 0x44e6, + [0x108d] = 0x26c57, [0x108e] = 0x26c5e, [0x108f] = 0x26c6d, [0x1090] = 0x26c35, + [0x1091] = 0x26c69, [0x1092] = 0x26c59, [0x1093] = 0x26c66, [0x1094] = 0x26c50, + [0x1095] = 0x26c51, [0x1096] = 0x26c5c, [0x1097] = 0x26d5d, [0x1098] = 0x26c87, + [0x1099] = 0x26c78, [0x109a] = 0x26c49, [0x109b] = 0x26c4e, [0x109c] = 0x26bf1, + [0x109d] = 0x26c73, [0x109e] = 0x26c88, [0x109f] = 0x26bcf, [0x10a1] = 0x271b1, + [0x10a2] = 0x271b3, [0x10a3] = 0x2729c, [0x10a4] = 0x272a4, [0x10a5] = 0x27290, + [0x10a6] = 0x272b8, [0x10a7] = 0x272a0, [0x10a8] = 0x2729d, [0x10a9] = 0x272a8, + [0x10aa] = 0x272a9, [0x10ac] = 0x272b1, [0x10ad] = 0x27293, [0x10ae] = 0x2729b, + [0x10af] = 0x272a2, [0x10b0] = 0x272a1, [0x10b1] = 0x272b0, [0x10b2] = 0x272a7, + [0x10b3] = 0x275b3, [0x10b4] = 0x8849, [0x10b5] = 0x275b4, [0x10b6] = 0x275f1, + [0x10b7] = 0x275ed, [0x10b8] = 0x275ec, [0x10b9] = 0x27668, [0x10ba] = 0x27675, + [0x10bb] = 0x2766a, [0x10bc] = 0x27662, [0x10bd] = 0x27667, [0x10be] = 0x27660, + [0x10bf] = 0x27677, [0x10c0] = 0x2765f, [0x10c1] = 0x27679, [0x10c2] = 0x27823, + [0x10c3] = 0x27821, [0x10c4] = 0x2781c, [0x10c5] = 0x8999, [0x10c6] = 0x2781f, + [0x10c7] = 0x2781e, [0x10c8] = 0x278d6, [0x10c9] = 0x278d3, [0x10ca] = 0x278d9, + [0x10cb] = 0x278d7, [0x10cc] = 0x278d4, [0x10cd] = 0x278dc, [0x10ce] = 0x278d8, + [0x10cf] = 0x279a3, [0x10d0] = 0x46d1, [0x10d1] = 0x279be, [0x10d2] = 0x279a9, + [0x10d3] = 0x279a1, [0x10d4] = 0x279a0, [0x10d5] = 0x279ab, [0x10d6] = 0x279a2, + [0x10d7] = 0x279ba, [0x10d8] = 0x279c2, [0x10d9] = 0x2799c, [0x10da] = 0x279bb, + [0x10db] = 0x279aa, [0x10dc] = 0x279ac, [0x10dd] = 0x279a5, [0x10de] = 0x279c1, + [0x10df] = 0x472c, [0x10e0] = 0x27be2, [0x10e1] = 0x27c36, [0x10e2] = 0x27c3d, + [0x10e3] = 0x27c3a, [0x10e4] = 0x22461, [0x10e5] = 0x27c48, [0x10e6] = 0x27c3c, + [0x10e7] = 0x27cb7, [0x10e8] = 0x27cac, [0x10e9] = 0x27cb3, [0x10ea] = 0x27cb6, + [0x10eb] = 0x27cb2, [0x10ec] = 0x476e, [0x10ed] = 0x27d5d, [0x10ee] = 0x27d49, + [0x10ef] = 0x27d4e, [0x10f0] = 0x27d4f, [0x10f1] = 0x27d4d, [0x10f2] = 0x27d5c, + [0x10f3] = 0x27e5d, [0x10f4] = 0x27ebb, [0x10f5] = 0x27ece, [0x10f6] = 0x27ebf, + [0x10f7] = 0x27eba, [0x10f8] = 0x27ec3, [0x10f9] = 0x47e5, [0x10fa] = 0x28006, + [0x10fb] = 0x27ff8, [0x10fc] = 0x27ffe, [0x10fd] = 0x28013, [0x10fe] = 0x27ff6, + [0x10ff] = 0x47e6, [0x1100] = 0x28234, [0x1101] = 0x2822d, [0x1102] = 0x2822a, + [0x1103] = 0x28235, [0x1104] = 0x2822c, [0x1105] = 0x282d4, [0x1106] = 0x282da, + [0x1107] = 0x282d3, [0x1108] = 0x282d2, [0x1109] = 0x282ce, [0x110a] = 0x282cf, + [0x110b] = 0x489f, [0x110c] = 0x284fd, [0x110d] = 0x2850b, [0x110e] = 0x284fe, + [0x110f] = 0x284f8, [0x1110] = 0x284f7, [0x1111] = 0x28517, [0x1112] = 0x284fa, + [0x1113] = 0x284f9, [0x1114] = 0x28500, [0x1115] = 0x284f5, [0x1116] = 0x284f1, + [0x1117] = 0x28503, [0x1118] = 0x28505, [0x1119] = 0x2851c, [0x111a] = 0x286ac, + [0x111b] = 0x2869a, [0x111c] = 0x286ad, [0x111d] = 0x286a0, [0x111e] = 0x2871b, + [0x111f] = 0x28725, [0x1120] = 0x28724, [0x1121] = 0x28726, [0x1122] = 0x28727, + [0x1123] = 0x28728, [0x1124] = 0x2872a, [0x1125] = 0x2871a, [0x1126] = 0x2872e, + [0x1127] = 0x28715, [0x1128] = 0x28815, [0x1129] = 0x28814, [0x112a] = 0x28817, + [0x112b] = 0x28818, [0x112c] = 0x2880f, [0x112d] = 0x28813, [0x112e] = 0x2880b, + [0x112f] = 0x28822, [0x1130] = 0x2137a, [0x1131] = 0x28926, [0x1132] = 0x921f, + [0x1133] = 0x28951, [0x1134] = 0x2894d, [0x1135] = 0x2894e, [0x1136] = 0x2894a, + [0x1137] = 0x2894b, [0x1138] = 0x2894c, [0x1139] = 0x28950, [0x113a] = 0x28962, + [0x113b] = 0x2894f, [0x113c] = 0x28952, [0x113d] = 0x28c68, [0x113e] = 0x28c69, + [0x113f] = 0x28ce5, [0x1140] = 0x28cf0, [0x1141] = 0x28ce1, [0x1142] = 0x28ce2, + [0x1144] = 0x28ea5, [0x1145] = 0x28ea9, [0x1146] = 0x28ea4, [0x1147] = 0x28eaf, + [0x1148] = 0x28eac, [0x1149] = 0x28eae, [0x114a] = 0x28eaa, [0x114b] = 0x28f95, + [0x114c] = 0x28f99, [0x114d] = 0x28f93, [0x114e] = 0x28f9d, [0x114f] = 0x28f98, + [0x1150] = 0x28f9c, [0x1151] = 0x28f97, [0x1152] = 0x4a0d, [0x1153] = 0x29089, + [0x1154] = 0x29087, [0x1155] = 0x291d7, [0x1156] = 0x291ed, [0x1157] = 0x291f1, + [0x1158] = 0x291f0, [0x1159] = 0x29205, [0x115a] = 0x29203, [0x115b] = 0x29204, + [0x115c] = 0x2925f, [0x115d] = 0x29457, [0x115e] = 0x2959c, [0x115f] = 0x295a1, + [0x1160] = 0x2959a, [0x1161] = 0x2968f, [0x1162] = 0x29693, [0x1163] = 0x2969e, + [0x1164] = 0x296a3, [0x1165] = 0x29698, [0x1166] = 0x29699, [0x1167] = 0x29695, + [0x1168] = 0x2986e, [0x1169] = 0x2986a, [0x116a] = 0x29af4, [0x116b] = 0x29af7, + [0x116c] = 0x29c79, [0x116d] = 0x29f8f, [0x116e] = 0x29f91, [0x116f] = 0x2a00b, + [0x1170] = 0x2a502, [0x1171] = 0x20084, [0x1172] = 0x20104, [0x1173] = 0x20180, + [0x1174] = 0x2032f, [0x1175] = 0x2033f, [0x1176] = 0x2033b, [0x1177] = 0x20362, + [0x1178] = 0x20344, [0x1179] = 0x20333, [0x117a] = 0x2035f, [0x117b] = 0x2032b, + [0x117d] = 0x20339, [0x117e] = 0x20336, [0x117f] = 0x20348, [0x1180] = 0x20335, + [0x1181] = 0x2036c, [0x1182] = 0x20358, [0x1183] = 0x2033a, [0x1184] = 0x204a8, + [0x1185] = 0x204f4, [0x1186] = 0x20529, [0x1187] = 0x2059a, [0x1188] = 0x20600, + [0x1189] = 0x207bb, [0x118a] = 0x207bd, [0x118b] = 0x207b7, [0x118c] = 0x207b2, + [0x118d] = 0x34f8, [0x118e] = 0x207a8, [0x118f] = 0x207ab, [0x1190] = 0x207a6, + [0x1191] = 0x207bc, [0x1192] = 0x20897, [0x1193] = 0x20896, [0x1194] = 0x208f8, + [0x1195] = 0x5313, [0x1196] = 0x20951, [0x1197] = 0x3533, [0x1198] = 0x209b5, + [0x1199] = 0x209b4, [0x119a] = 0x209b6, [0x119b] = 0x353c, [0x119c] = 0x209b7, + [0x119d] = 0x20a05, [0x119e] = 0x20a23, [0x119f] = 0x20a95, [0x11a0] = 0x20a98, + [0x11a1] = 0x354f, [0x11a2] = 0x20a94, [0x11a3] = 0x20a93, [0x11a4] = 0x20b07, + [0x11a5] = 0x20b73, [0x11a6] = 0x20b71, [0x11a7] = 0x20b72, [0x11a8] = 0x20b78, + [0x11a9] = 0x20e5f, [0x11aa] = 0x20e6a, [0x11ab] = 0x20e67, [0x11ac] = 0x20e6b, + [0x11ad] = 0x20e69, [0x11ae] = 0x20e8e, [0x11af] = 0x20e49, [0x11b0] = 0x20e80, + [0x11b1] = 0x35dc, [0x11b2] = 0x20e44, [0x11b3] = 0x20e8f, [0x11b4] = 0x20e45, + [0x11b6] = 0x20e4f, [0x11b7] = 0x20e63, [0x11b8] = 0x20e36, [0x11b9] = 0x20e48, + [0x11ba] = 0x20e5c, [0x11bb] = 0x20e93, [0x11bc] = 0x20e61, [0x11bd] = 0x20e60, + [0x11be] = 0x20e4e, [0x11bf] = 0x20e5e, [0x11c0] = 0x20e3f, [0x11c1] = 0x20ea4, + [0x11c2] = 0x55e0, [0x11c3] = 0x20e68, [0x11c4] = 0x2120b, [0x11c5] = 0x21211, + [0x11c6] = 0x2120d, [0x11c7] = 0x2120e, [0x11c8] = 0x213c2, [0x11ca] = 0x213b0, + [0x11cb] = 0x213c3, [0x11cc] = 0x213c8, [0x11cd] = 0x21365, [0x11ce] = 0x213d7, + [0x11cf] = 0x213bd, [0x11d0] = 0x213b8, [0x11d1] = 0x213b6, [0x11d2] = 0x213c7, + [0x11d3] = 0x213bc, [0x11d4] = 0x213b1, [0x11d5] = 0x213af, [0x11d7] = 0x21535, + [0x11d8] = 0x21530, [0x11d9] = 0x2155d, [0x11da] = 0x20b76, [0x11db] = 0x2156f, + [0x11dc] = 0x215b0, [0x11de] = 0x215b4, [0x11df] = 0x2165c, [0x11e0] = 0x2165d, + [0x11e1] = 0x21808, [0x11e2] = 0x217ee, [0x11e3] = 0x2180b, [0x11e4] = 0x217f2, + [0x11e5] = 0x217fd, [0x11e6] = 0x217f1, [0x11e7] = 0x21810, [0x11e9] = 0x21814, + [0x11ea] = 0x2198b, [0x11eb] = 0x2198c, [0x11ec] = 0x21985, [0x11ed] = 0x21a7a, + [0x11ee] = 0x21a6c, [0x11ef] = 0x21a60, [0x11f0] = 0x21a67, [0x11f1] = 0x21a66, + [0x11f2] = 0x21a6a, [0x11f3] = 0x21a5f, [0x11f4] = 0x21a6d, [0x11f5] = 0x21a68, + [0x11f6] = 0x21a64, [0x11f7] = 0x21b3a, [0x11f8] = 0x21b3b, [0x11f9] = 0x21b39, + [0x11fa] = 0x21c02, [0x11fb] = 0x21c04, [0x11fc] = 0x21c03, [0x11fd] = 0x21cb4, + [0x11fe] = 0x21cb3, [0x11ff] = 0x21cbb, [0x1200] = 0x21cac, [0x1201] = 0x21cb6, + [0x1202] = 0x21cb1, [0x1203] = 0x21caf, [0x1204] = 0x21cb5, [0x1205] = 0x21cbe, + [0x1206] = 0x21cb2, [0x1207] = 0x21d24, [0x1208] = 0x21eb6, [0x1209] = 0x21eb9, + [0x120a] = 0x21eac, [0x120b] = 0x21eb0, [0x120c] = 0x21ed7, [0x120d] = 0x21ebb, + [0x120e] = 0x21efe, [0x120f] = 0x21ecb, [0x1211] = 0x37f5, [0x1212] = 0x21eb3, + [0x1213] = 0x21ebe, [0x1214] = 0x21ecd, [0x1215] = 0x21ebc, [0x1216] = 0x21eba, + [0x1217] = 0x21ec7, [0x1218] = 0x22116, [0x1219] = 0x2211b, [0x121a] = 0x22117, + [0x121b] = 0x22115, [0x121c] = 0x2219f, [0x121e] = 0x22282, [0x121f] = 0x22283, + [0x1220] = 0x2228e, [0x1221] = 0x2226a, [0x1222] = 0x22289, [0x1223] = 0x22294, + [0x1224] = 0x22286, [0x1225] = 0x22290, [0x1226] = 0x22362, [0x1227] = 0x22390, + [0x1228] = 0x2240c, [0x1229] = 0x2240f, [0x122a] = 0x38c3, [0x122b] = 0x224a5, + [0x122c] = 0x224a7, [0x122d] = 0x224a6, [0x122e] = 0x224a4, [0x122f] = 0x22535, + [0x1230] = 0x22538, [0x1231] = 0x22536, [0x1232] = 0x22543, [0x1233] = 0x22547, + [0x1234] = 0x22537, [0x1235] = 0x22743, [0x1236] = 0x227a2, [0x1237] = 0x22751, + [0x1238] = 0x22772, [0x1239] = 0x2276d, [0x123a] = 0x2272f, [0x123b] = 0x22754, + [0x123c] = 0x2276e, [0x123d] = 0x22755, [0x123e] = 0x22737, [0x123f] = 0x2274f, + [0x1240] = 0x22750, [0x1241] = 0x6139, [0x1242] = 0x2279e, [0x1244] = 0x227b3, + [0x1245] = 0x227a7, [0x1246] = 0x3971, [0x1247] = 0x227f9, [0x1248] = 0x22791, + [0x124a] = 0x227b6, [0x124b] = 0x227dd, [0x124c] = 0x22799, [0x124d] = 0x229df, + [0x124e] = 0x229d5, [0x124f] = 0x247f5, [0x1250] = 0x22c28, [0x1251] = 0x22c40, + [0x1252] = 0x22c71, [0x1253] = 0x22c98, [0x1254] = 0x22c95, [0x1255] = 0x22c65, + [0x1256] = 0x22c78, [0x1257] = 0x22c7f, [0x1258] = 0x22c60, [0x1259] = 0x22c7c, + [0x125a] = 0x22c96, [0x125b] = 0x22c6a, [0x125c] = 0x22c79, [0x125d] = 0x22c73, + [0x125e] = 0x22c72, [0x125f] = 0x22c7b, [0x1260] = 0x22c70, [0x1261] = 0x22ed5, + [0x1262] = 0x22ed7, [0x1263] = 0x22f8f, [0x1264] = 0x22f89, [0x1265] = 0x22f9e, + [0x1266] = 0x22f87, [0x1267] = 0x22fa0, [0x1268] = 0x22f8d, [0x1269] = 0x22f88, + [0x126a] = 0x22f7f, [0x126b] = 0x22f8c, [0x126c] = 0x22f93, [0x126d] = 0x23059, + [0x126e] = 0x295b0, [0x126f] = 0x230b1, [0x1270] = 0x251f4, [0x1271] = 0x230af, + [0x1272] = 0x230b2, [0x1273] = 0x23108, [0x1274] = 0x2310a, [0x1275] = 0x23136, + [0x1276] = 0x23137, [0x1278] = 0x3b01, [0x1279] = 0x23236, [0x127a] = 0x23229, + [0x127b] = 0x2324a, [0x127c] = 0x23226, [0x127d] = 0x23228, [0x127e] = 0x23224, + [0x127f] = 0x2322a, [0x1280] = 0x23248, [0x1281] = 0x23344, [0x1282] = 0x23384, + [0x1283] = 0x2338c, [0x1284] = 0x234c4, [0x1285] = 0x234dc, [0x1286] = 0x23587, + [0x1287] = 0x23553, [0x1288] = 0x2357f, [0x1289] = 0x23531, [0x128a] = 0x23551, + [0x128b] = 0x2354b, [0x128c] = 0x23552, [0x128d] = 0x23580, [0x128e] = 0x235a5, + [0x128f] = 0x23581, [0x1290] = 0x23543, [0x1291] = 0x23534, [0x1292] = 0x23536, + [0x1293] = 0x23532, [0x1294] = 0x23548, [0x1295] = 0x23549, [0x1296] = 0x2353c, + [0x1297] = 0x2354d, [0x1298] = 0x2354a, [0x129a] = 0x2358a, [0x129b] = 0x23546, + [0x129c] = 0x2353e, [0x129d] = 0x23583, [0x129e] = 0x23550, [0x129f] = 0x235b4, + [0x12a0] = 0x238f0, [0x12a1] = 0x238e4, [0x12a2] = 0x238e3, [0x12a3] = 0x238e5, + [0x12a4] = 0x238e6, [0x12a5] = 0x238e7, [0x12a6] = 0x238e1, [0x12a7] = 0x238ef, + [0x12a8] = 0x238e8, [0x12a9] = 0x238dd, [0x12aa] = 0x23903, [0x12ab] = 0x23988, + [0x12ac] = 0x23a26, [0x12ad] = 0x23a16, [0x12ae] = 0x23a3b, [0x12af] = 0x23a2f, + [0x12b0] = 0x23a39, [0x12b1] = 0x23a34, [0x12b3] = 0x23a35, [0x12b4] = 0x23a31, + [0x12b5] = 0x23a38, [0x12b6] = 0x20b81, [0x12b7] = 0x23aaa, [0x12b8] = 0x23aa3, + [0x12b9] = 0x23aa4, [0x12ba] = 0x23aa0, [0x12bb] = 0x23aa1, [0x12bc] = 0x23aa9, + [0x12bd] = 0x23aa5, [0x12be] = 0x23baf, [0x12bf] = 0x23bb1, [0x12c0] = 0x23bab, + [0x12c1] = 0x23bae, [0x12c2] = 0x23bb0, [0x12c3] = 0x23bb3, [0x12c4] = 0x23bac, + [0x12c5] = 0x23ba9, [0x12c6] = 0x23bb2, [0x12c7] = 0x23ba8, [0x12c8] = 0x23bb4, + [0x12c9] = 0x23bc2, [0x12ca] = 0x23c4f, [0x12cb] = 0x23c66, [0x12cc] = 0x23e1e, + [0x12cd] = 0x23e15, [0x12ce] = 0x23e10, [0x12cf] = 0x23e7f, [0x12d0] = 0x23e7e, + [0x12d1] = 0x23e60, [0x12d2] = 0x23ecc, [0x12d3] = 0x23eb2, [0x12d4] = 0x23e62, + [0x12d5] = 0x23e8d, [0x12d6] = 0x23e8e, [0x12d7] = 0x23e77, [0x12d8] = 0x23e7c, + [0x12d9] = 0x23e8f, [0x12da] = 0x23e5d, [0x12db] = 0x23e6d, [0x12dc] = 0x23e63, + [0x12dd] = 0x23eaf, [0x12de] = 0x23e90, [0x12df] = 0x23e7d, [0x12e0] = 0x23e7a, + [0x12e1] = 0x23e06, [0x12e3] = 0x23e68, [0x12e4] = 0x23eb4, [0x12e5] = 0x23e78, + [0x12e6] = 0x23eb1, [0x12e7] = 0x6ed7, [0x12e9] = 0x3d41, [0x12ea] = 0x242e8, + [0x12eb] = 0x242e9, [0x12ec] = 0x242c0, [0x12ed] = 0x3dd7, [0x12ee] = 0x242ea, + [0x12ef] = 0x242b7, [0x12f0] = 0x242ba, [0x12f1] = 0x242b5, [0x12f3] = 0x242b4, + [0x12f4] = 0x242bc, [0x12f5] = 0x242c6, [0x12f6] = 0x242b8, [0x12f7] = 0x242bd, + [0x12f8] = 0x242c2, [0x12f9] = 0x2434d, [0x12fa] = 0x242f0, [0x12fb] = 0x242c7, + [0x12fc] = 0x242c1, [0x12fd] = 0x242c3, [0x12fe] = 0x242f1, [0x12ff] = 0x242ec, + [0x1301] = 0x2451c, [0x1302] = 0x24520, [0x1303] = 0x24558, [0x1304] = 0x24565, + [0x1305] = 0x24564, [0x1306] = 0x2458c, [0x1307] = 0x2458d, [0x1308] = 0x245d9, + [0x1309] = 0x245e0, [0x130a] = 0x24610, [0x130b] = 0x24694, [0x130c] = 0x24692, + [0x130d] = 0x24696, [0x130e] = 0x24695, [0x130f] = 0x246bf, [0x1310] = 0x246a0, + [0x1311] = 0x3e45, [0x1312] = 0x247f4, [0x1313] = 0x247f6, [0x1314] = 0x247dc, + [0x1315] = 0x733d, [0x1316] = 0x24816, [0x1317] = 0x24815, [0x1318] = 0x2481c, + [0x1319] = 0x2480f, [0x131a] = 0x2482c, [0x131b] = 0x24814, [0x131c] = 0x24825, + [0x131d] = 0x24817, [0x131e] = 0x24812, [0x131f] = 0x2481e, [0x1320] = 0x24980, + [0x1321] = 0x249a8, [0x1322] = 0x249af, [0x1323] = 0x249d6, [0x1324] = 0x249e2, + [0x1325] = 0x249b4, [0x1326] = 0x249b3, [0x1327] = 0x249b0, [0x1328] = 0x249b2, + [0x1329] = 0x249a1, [0x132a] = 0x24b60, [0x132b] = 0x24b66, [0x132c] = 0x24b61, + [0x132d] = 0x24b4e, [0x132e] = 0x24b5d, [0x132f] = 0x24b63, [0x1330] = 0x24be6, + [0x1331] = 0x24bef, [0x1332] = 0x24bec, [0x1333] = 0x24c98, [0x1334] = 0x24ca7, + [0x1335] = 0x24c94, [0x1336] = 0x24c95, [0x1337] = 0x24c91, [0x1338] = 0x24c9d, + [0x1339] = 0x24c99, [0x133a] = 0x24c9b, [0x133b] = 0x24c9c, [0x133c] = 0x24d1d, + [0x133d] = 0x24d1c, [0x133e] = 0x24dd0, [0x133f] = 0x24de0, [0x1340] = 0x24dcb, + [0x1341] = 0x24ddb, [0x1342] = 0x24dda, [0x1343] = 0x24dc2, [0x1344] = 0x24dd3, + [0x1345] = 0x24de5, [0x1346] = 0x24f7d, [0x1347] = 0x24f7b, [0x1348] = 0x24fff, + [0x1349] = 0x3ff2, [0x134a] = 0x24ff9, [0x134b] = 0x25077, [0x134c] = 0x2507c, + [0x134d] = 0x25078, [0x134e] = 0x2507b, [0x134f] = 0x2507a, [0x1350] = 0x251d2, + [0x1351] = 0x251cb, [0x1352] = 0x251c9, [0x1353] = 0x251ce, [0x1354] = 0x251e4, + [0x1355] = 0x251ca, [0x1356] = 0x251d0, [0x1357] = 0x22fa5, [0x1358] = 0x4049, + [0x1359] = 0x251d9, [0x135a] = 0x251ee, [0x135b] = 0x251dd, [0x135c] = 0x25200, + [0x135d] = 0x251e1, [0x135e] = 0x253de, [0x135f] = 0x253e2, [0x1360] = 0x253da, + [0x1361] = 0x254ce, [0x1363] = 0x254cf, [0x1364] = 0x254da, [0x1365] = 0x254d1, + [0x1366] = 0x254d4, [0x1367] = 0x254ed, [0x1368] = 0x254cb, [0x1369] = 0x254d5, + [0x136a] = 0x254f1, [0x136b] = 0x2569c, [0x136c] = 0x25688, [0x136d] = 0x25741, + [0x136e] = 0x257d0, [0x136f] = 0x257f7, [0x1370] = 0x257cf, [0x1371] = 0x257d1, + [0x1372] = 0x257db, [0x1373] = 0x257de, [0x1374] = 0x257f8, [0x1375] = 0x257dc, + [0x1376] = 0x257d9, [0x1377] = 0x259a0, [0x1378] = 0x259b2, [0x1379] = 0x259a1, + [0x137a] = 0x259aa, [0x137b] = 0x259a9, [0x137c] = 0x41a9, [0x137d] = 0x259a6, + [0x137e] = 0x2599c, [0x137f] = 0x259b5, [0x1380] = 0x259a7, [0x1381] = 0x25a8e, + [0x1382] = 0x25a90, [0x1383] = 0x25a91, [0x1384] = 0x25b85, [0x1385] = 0x25b5b, + [0x1386] = 0x25b70, [0x1387] = 0x25b64, [0x1388] = 0x25b67, [0x1389] = 0x25b63, + [0x138a] = 0x25b77, [0x138b] = 0x25b68, [0x138c] = 0x25b65, [0x138d] = 0x25b6a, + [0x138e] = 0x25b78, [0x138f] = 0x25b66, [0x1390] = 0x25e88, [0x1391] = 0x25e9e, + [0x1392] = 0x25e74, [0x1393] = 0x25e7a, [0x1394] = 0x25e79, [0x1395] = 0x25e8b, + [0x1396] = 0x25e7f, [0x1397] = 0x26013, [0x1398] = 0x2601e, [0x1399] = 0x26017, + [0x139a] = 0x2601a, [0x139b] = 0x26022, [0x139c] = 0x26043, [0x139d] = 0x26019, + [0x139e] = 0x2601f, [0x139f] = 0x26027, [0x13a0] = 0x26012, [0x13a1] = 0x26024, + [0x13a2] = 0x26025, [0x13a3] = 0x2035e, [0x13a4] = 0x26235, [0x13a5] = 0x26234, + [0x13a6] = 0x262d1, [0x13a7] = 0x262c4, [0x13a8] = 0x262ca, [0x13a9] = 0x262c6, + [0x13aa] = 0x262cb, [0x13ab] = 0x262cd, [0x13ac] = 0x262e2, [0x13ad] = 0x26389, + [0x13ae] = 0x2638b, [0x13af] = 0x26386, [0x13b0] = 0x26388, [0x13b1] = 0x2638d, + [0x13b2] = 0x2643b, [0x13b3] = 0x2643c, [0x13b4] = 0x2643d, [0x13b5] = 0x264f5, + [0x13b6] = 0x26579, [0x13b7] = 0x26575, [0x13b8] = 0x26582, [0x13b9] = 0x2657f, + [0x13ba] = 0x26585, [0x13bb] = 0x26576, [0x13bc] = 0x2657c, [0x13bd] = 0x2657e, + [0x13be] = 0x2657b, [0x13bf] = 0x26580, [0x13c0] = 0x2657a, [0x13c1] = 0x22548, + [0x13c2] = 0x43cb, [0x13c3] = 0x2661d, [0x13c4] = 0x266f6, [0x13c5] = 0x266f7, + [0x13c6] = 0x266f9, [0x13c7] = 0x26763, [0x13c8] = 0x2676c, [0x13c9] = 0x2676e, + [0x13ca] = 0x26714, [0x13cb] = 0x440d, [0x13cc] = 0x26767, [0x13cd] = 0x2676f, + [0x13ce] = 0x26769, [0x13cf] = 0x26776, [0x13d0] = 0x26795, [0x13d1] = 0x26771, + [0x13d2] = 0x26761, [0x13d3] = 0x26778, [0x13d4] = 0x2676b, [0x13d5] = 0x26785, + [0x13d6] = 0x26784, [0x13d7] = 0x26914, [0x13d8] = 0x26976, [0x13d9] = 0x259b6, + [0x13da] = 0x26975, [0x13db] = 0x26974, [0x13dc] = 0x269e2, [0x13dd] = 0x26a3f, + [0x13de] = 0x26a44, [0x13df] = 0x26a3d, [0x13e0] = 0x26a47, [0x13e1] = 0x26a48, + [0x13e2] = 0x26adb, [0x13e3] = 0x26adc, [0x13e4] = 0x26add, [0x13e5] = 0x26be5, + [0x13e6] = 0x26be6, [0x13e7] = 0x26cc2, [0x13e8] = 0x26d2e, [0x13e9] = 0x26d1d, + [0x13ea] = 0x26cf8, [0x13eb] = 0x26cf0, [0x13ec] = 0x26cf6, [0x13ed] = 0x26cc5, + [0x13ee] = 0x26cc6, [0x13ef] = 0x26cfc, [0x13f0] = 0x26d52, [0x13f1] = 0x26d2f, + [0x13f2] = 0x26d10, [0x13f3] = 0x26cf3, [0x13f4] = 0x26cd2, [0x13f5] = 0x26cea, + [0x13f6] = 0x26cdc, [0x13f7] = 0x26d1b, [0x13f8] = 0x26cfb, [0x13f9] = 0x26cc3, + [0x13fa] = 0x26d16, [0x13fb] = 0x26d07, [0x13fc] = 0x26cc9, [0x13fd] = 0x26cd8, + [0x13fe] = 0x26d30, [0x13ff] = 0x26d13, [0x1400] = 0x26d31, [0x1401] = 0x26cfa, + [0x1402] = 0x26cf2, [0x1403] = 0x26de3, [0x1404] = 0x26cd5, [0x1405] = 0x26d01, + [0x1406] = 0x26cf1, [0x1407] = 0x26d1c, [0x1408] = 0x26cd6, [0x1409] = 0x26d08, + [0x140a] = 0x26d0b, [0x140b] = 0x26d17, [0x140c] = 0x26d20, [0x140d] = 0x26cca, + [0x140e] = 0x26d32, [0x140f] = 0x26d05, [0x1410] = 0x26ce4, [0x1411] = 0x26cce, + [0x1412] = 0x26d33, [0x1413] = 0x26d02, [0x1414] = 0x26d19, [0x1415] = 0x26d1e, + [0x1416] = 0x26cd3, [0x1417] = 0x26cf7, [0x1418] = 0x26ce8, [0x1419] = 0x26d1f, + [0x141a] = 0x26cf4, [0x141b] = 0x26dd8, [0x141c] = 0x271bf, [0x141d] = 0x271be, + [0x141e] = 0x271bd, [0x141f] = 0x272dc, [0x1420] = 0x272dd, [0x1421] = 0x272ab, + [0x1422] = 0x272c9, [0x1423] = 0x272c8, [0x1424] = 0x272df, [0x1425] = 0x272d9, + [0x1426] = 0x272db, [0x1427] = 0x272cc, [0x1428] = 0x272e0, [0x1429] = 0x272ef, + [0x142a] = 0x272f3, [0x142b] = 0x272ae, [0x142c] = 0x27301, [0x142d] = 0x275b7, + [0x142e] = 0x275b9, [0x142f] = 0x275b6, [0x1430] = 0x275b8, [0x1431] = 0x275f6, + [0x1432] = 0x275f3, [0x1433] = 0x275f5, [0x1434] = 0x275f2, [0x1435] = 0x27691, + [0x1436] = 0x2769d, [0x1437] = 0x2769b, [0x1438] = 0x27692, [0x1439] = 0x2768d, + [0x143a] = 0x2769e, [0x143b] = 0x2768c, [0x143c] = 0x4631, [0x143e] = 0x27695, + [0x1440] = 0x2768a, [0x1441] = 0x2768e, [0x1442] = 0x2769c, [0x1443] = 0x277ef, + [0x1444] = 0x2782d, [0x1445] = 0x27852, [0x1446] = 0x27835, [0x1447] = 0x27828, + [0x1448] = 0x2782e, [0x1449] = 0x278e5, [0x144a] = 0x279ea, [0x144b] = 0x279f1, + [0x144c] = 0x279eb, [0x144d] = 0x279d8, [0x144e] = 0x279d0, [0x144f] = 0x279f3, + [0x1450] = 0x279db, [0x1451] = 0x279ce, [0x1452] = 0x46d5, [0x1453] = 0x279da, + [0x1454] = 0x279d7, [0x1455] = 0x279e1, [0x1456] = 0x279f2, [0x1457] = 0x279c8, + [0x1458] = 0x279d9, [0x1459] = 0x279de, [0x145a] = 0x279d1, [0x145b] = 0x279e7, + [0x145c] = 0x279cf, [0x145d] = 0x27bb7, [0x145e] = 0x27c47, [0x145f] = 0x27c42, + [0x1460] = 0x27c43, [0x1462] = 0x27cc3, [0x1463] = 0x27cc1, [0x1464] = 0x27cc7, + [0x1465] = 0x27d64, [0x1466] = 0x27d6a, [0x1467] = 0x27d66, [0x1468] = 0x27d50, + [0x1469] = 0x27d6e, [0x146a] = 0x27d65, [0x146b] = 0x238ec, [0x146c] = 0x27d7f, + [0x146e] = 0x27d9a, [0x146f] = 0x27d69, [0x1470] = 0x27d72, [0x1471] = 0x27d6f, + [0x1472] = 0x27d7d, [0x1473] = 0x27d70, [0x1474] = 0x27e60, [0x1475] = 0x27ec2, + [0x1476] = 0x27ee7, [0x1477] = 0x27ed1, [0x1478] = 0x27eeb, [0x1479] = 0x27ed4, + [0x147a] = 0x27edc, [0x147b] = 0x27edb, [0x147c] = 0x28037, [0x147d] = 0x28025, + [0x147e] = 0x2801f, [0x147f] = 0x2801e, [0x1480] = 0x28021, [0x1481] = 0x2801b, + [0x1482] = 0x28017, [0x1483] = 0x28022, [0x1484] = 0x2802a, [0x1485] = 0x2801a, + [0x1486] = 0x2802d, [0x1487] = 0x28023, [0x1488] = 0x28026, [0x1489] = 0x28036, + [0x148a] = 0x27fff, [0x148b] = 0x2823a, [0x148c] = 0x28240, [0x148d] = 0x28242, + [0x148e] = 0x28238, [0x148f] = 0x2823b, [0x1490] = 0x2823c, [0x1491] = 0x28243, + [0x1492] = 0x282e8, [0x1493] = 0x4856, [0x1494] = 0x282f9, [0x1495] = 0x282eb, + [0x1496] = 0x282f1, [0x1497] = 0x282e9, [0x1498] = 0x282ec, [0x1499] = 0x28415, + [0x149a] = 0x28447, [0x149b] = 0x28446, [0x149c] = 0x28445, [0x149d] = 0x28524, + [0x149e] = 0x28556, [0x149f] = 0x28521, [0x14a0] = 0x28527, [0x14a1] = 0x2854d, + [0x14a2] = 0x28531, [0x14a3] = 0x2851e, [0x14a4] = 0x2852c, [0x14a5] = 0x2854f, + [0x14a6] = 0x2852b, [0x14a7] = 0x28553, [0x14a8] = 0x28551, [0x14a9] = 0x28554, + [0x14aa] = 0x28529, [0x14ab] = 0x28550, [0x14ac] = 0x2851f, [0x14ad] = 0x28532, + [0x14ae] = 0x2852a, [0x14af] = 0x2851d, [0x14b0] = 0x28528, [0x14b1] = 0x2852e, + [0x14b2] = 0x2852d, [0x14b3] = 0x286bc, [0x14b4] = 0x286bb, [0x14b5] = 0x286bd, + [0x14b7] = 0x28747, [0x14b8] = 0x28741, [0x14ba] = 0x28749, [0x14bb] = 0x48f4, + [0x14bc] = 0x2882e, [0x14bd] = 0x28827, [0x14be] = 0x2896a, [0x14bf] = 0x2897b, + [0x14c0] = 0x28973, [0x14c1] = 0x28975, [0x14c2] = 0x28969, [0x14c3] = 0x28979, + [0x14c4] = 0x28972, [0x14c5] = 0x28c76, [0x14c6] = 0x28c77, [0x14c7] = 0x28c74, + [0x14c8] = 0x28c73, [0x14c9] = 0x28d02, [0x14ca] = 0x28cfe, [0x14cb] = 0x28d01, + [0x14cc] = 0x28cf9, [0x14cd] = 0x28cf4, [0x14ce] = 0x28ed3, [0x14cf] = 0x28ed5, + [0x14d0] = 0x28ed8, [0x14d1] = 0x28ec3, [0x14d2] = 0x28eca, [0x14d3] = 0x28ed0, + [0x14d4] = 0x28ecb, [0x14d5] = 0x28ece, [0x14d6] = 0x28ec5, [0x14d7] = 0x28ee6, + [0x14d8] = 0x28ec4, [0x14d9] = 0x28ec0, [0x14da] = 0x28ed4, [0x14db] = 0x28ee8, + [0x14dc] = 0x28f76, [0x14dd] = 0x28fa2, [0x14de] = 0x28fae, [0x14df] = 0x28fa8, + [0x14e0] = 0x28fa3, [0x14e1] = 0x28fa7, [0x14e2] = 0x28f96, [0x14e3] = 0x28fa9, + [0x14e4] = 0x28fa5, [0x14e5] = 0x28faf, [0x14e6] = 0x28fa4, [0x14e7] = 0x28fab, + [0x14e8] = 0x28faa, [0x14e9] = 0x28fa6, [0x14ea] = 0x28fa0, [0x14eb] = 0x29098, + [0x14ec] = 0x291db, [0x14ed] = 0x291f6, [0x14ee] = 0x291f5, [0x14ef] = 0x2920c, + [0x14f0] = 0x2920a, [0x14f1] = 0x9775, [0x14f2] = 0x29268, [0x14f3] = 0x29263, + [0x14f4] = 0x29266, [0x14f5] = 0x4a58, [0x14f6] = 0x29264, [0x14f7] = 0x2926a, + [0x14f8] = 0x29269, [0x14f9] = 0x29395, [0x14fa] = 0x29402, [0x14fb] = 0x2946a, + [0x14fc] = 0x2945e, [0x14fd] = 0x29468, [0x14fe] = 0x29469, [0x14ff] = 0x29465, + [0x1501] = 0x295a7, [0x1502] = 0x295ae, [0x1503] = 0x295a8, [0x1504] = 0x295b3, + [0x1505] = 0x2969c, [0x1506] = 0x296a9, [0x1507] = 0x296b6, [0x1508] = 0x296b3, + [0x1509] = 0x296b2, [0x150b] = 0x296b8, [0x150c] = 0x296c0, [0x150d] = 0x296bf, + [0x150e] = 0x296ba, [0x150f] = 0x296a8, [0x1510] = 0x2983c, [0x1511] = 0x29872, + [0x1512] = 0x29871, [0x1513] = 0x29875, [0x1514] = 0x29873, [0x1515] = 0x29a17, + [0x1516] = 0x29a15, [0x1517] = 0x29a16, [0x1518] = 0x29a1b, [0x1519] = 0x29afa, + [0x151a] = 0x29af9, [0x151b] = 0x29c2c, [0x151c] = 0x29c85, [0x151d] = 0x29c82, + [0x151e] = 0x29c7f, [0x151f] = 0x29c7d, [0x1520] = 0x29c88, [0x1521] = 0x242f3, + [0x1522] = 0x29d4e, [0x1523] = 0x29d50, [0x1524] = 0x29f93, [0x1525] = 0x29f97, + [0x1526] = 0x29f98, [0x1527] = 0x29f9b, [0x1528] = 0x29f9c, [0x1529] = 0x29f96, + [0x152a] = 0x2a28b, [0x152b] = 0x2a2fd, [0x152c] = 0x2a2fc, [0x152e] = 0x2398b, + [0x152f] = 0x20108, [0x1530] = 0x20107, [0x1531] = 0x20373, [0x1532] = 0x203a2, + [0x1533] = 0x203af, [0x1534] = 0x20382, [0x1535] = 0x2037b, [0x1536] = 0x20374, + [0x1537] = 0x203b0, [0x1538] = 0x20376, [0x1539] = 0x203b9, [0x153a] = 0x2039e, + [0x153b] = 0x203b1, [0x153c] = 0x203a1, [0x153d] = 0x203b2, [0x153e] = 0x2036e, + [0x1540] = 0x3487, [0x1541] = 0x20378, [0x1542] = 0x2037a, [0x1543] = 0x20383, + [0x1544] = 0x2039a, [0x1545] = 0x204f8, [0x1546] = 0x20531, [0x1547] = 0x20569, + [0x1548] = 0x20568, [0x1549] = 0x2059c, [0x154a] = 0x20604, [0x154b] = 0x20699, + [0x154c] = 0x207c7, [0x154d] = 0x207c6, [0x154e] = 0x207dc, [0x154f] = 0x207c4, + [0x1550] = 0x207d8, [0x1551] = 0x207d4, [0x1552] = 0x207df, [0x1553] = 0x207d1, + [0x1554] = 0x207d0, [0x1555] = 0x207d6, [0x1556] = 0x207cf, [0x1557] = 0x208ad, + [0x1558] = 0x208af, [0x1559] = 0x208a7, [0x155a] = 0x208fd, [0x155b] = 0x2095b, + [0x155c] = 0x2095a, [0x155d] = 0x20a07, [0x155e] = 0x20a9d, [0x155f] = 0x20a9b, + [0x1560] = 0x20aab, [0x1561] = 0x20aa4, [0x1562] = 0x20a9c, [0x1563] = 0x20a9e, + [0x1564] = 0x20aa5, [0x1565] = 0x20aaa, [0x1566] = 0x20aa6, [0x1567] = 0x20b0e, + [0x1568] = 0x20b7e, [0x1569] = 0x20b7c, [0x156a] = 0x20eee, [0x156b] = 0x20ed5, + [0x156c] = 0x20ee9, [0x156d] = 0x20e42, [0x156e] = 0x20ee2, [0x156f] = 0x20f23, + [0x1570] = 0x20ed9, [0x1571] = 0x20ed4, [0x1572] = 0x20ee3, [0x1573] = 0x20f15, + [0x1574] = 0x20eef, [0x1575] = 0x20ef0, [0x1576] = 0x20ed6, [0x1577] = 0x20edd, + [0x1578] = 0x20ef6, [0x1579] = 0x20f1c, [0x157a] = 0x20ed8, [0x157b] = 0x20edb, + [0x157c] = 0x20eda, [0x157d] = 0x20eed, [0x157e] = 0x21411, [0x157f] = 0x21215, + [0x1580] = 0x21218, [0x1581] = 0x2121a, [0x1582] = 0x2121f, [0x1583] = 0x21216, + [0x1585] = 0x21219, [0x1587] = 0x213f0, [0x1588] = 0x21409, [0x1589] = 0x2141b, + [0x158a] = 0x27be7, [0x158b] = 0x213f6, [0x158c] = 0x213f4, [0x158d] = 0x213b5, + [0x158e] = 0x21410, [0x158f] = 0x213f2, [0x1590] = 0x21415, [0x1591] = 0x213f3, + [0x1592] = 0x213f8, [0x1593] = 0x21539, [0x1594] = 0x2153b, [0x1595] = 0x21536, + [0x1596] = 0x2140e, [0x1597] = 0x21572, [0x1598] = 0x21574, [0x1599] = 0x215b9, + [0x159a] = 0x215b7, [0x159b] = 0x215b8, [0x159c] = 0x21672, [0x159d] = 0x2166b, + [0x159e] = 0x2181d, [0x159f] = 0x21837, [0x15a0] = 0x21822, [0x15a1] = 0x21843, + [0x15a2] = 0x2184d, [0x15a3] = 0x21838, [0x15a4] = 0x2185b, [0x15a5] = 0x21879, + [0x15a6] = 0x2181b, [0x15a7] = 0x217f3, [0x15a8] = 0x21991, [0x15a9] = 0x21a7b, + [0x15aa] = 0x21a94, [0x15ac] = 0x21a96, [0x15ad] = 0x21a7f, [0x15ae] = 0x21a8f, + [0x15af] = 0x21a84, [0x15b0] = 0x21a7c, [0x15b1] = 0x21a8e, [0x15b2] = 0x21a90, + [0x15b3] = 0x21a98, [0x15b4] = 0x21a83, [0x15b5] = 0x21a80, [0x15b6] = 0x21a93, + [0x15b7] = 0x21a82, [0x15b9] = 0x21b3d, [0x15ba] = 0x21b41, [0x15bb] = 0x21ba1, + [0x15bc] = 0x21b9f, [0x15bd] = 0x21c0a, [0x15be] = 0x21c0d, [0x15bf] = 0x21cc8, + [0x15c0] = 0x21cc9, [0x15c1] = 0x21cc7, [0x15c2] = 0x21ccd, [0x15c3] = 0x21d25, + [0x15c4] = 0x21eb1, [0x15c5] = 0x21edc, [0x15c7] = 0x21ee5, [0x15c8] = 0x21ef4, + [0x15c9] = 0x21ebf, [0x15ca] = 0x21edb, [0x15cb] = 0x21eea, [0x15cc] = 0x21ef2, + [0x15cd] = 0x37fa, [0x15ce] = 0x21ef1, [0x15cf] = 0x21eed, [0x15d0] = 0x21ee6, + [0x15d1] = 0x22002, [0x15d3] = 0x22125, [0x15d4] = 0x22118, [0x15d5] = 0x2211f, + [0x15d6] = 0x22120, [0x15d7] = 0x221cf, [0x15d8] = 0x2229d, [0x15d9] = 0x22299, + [0x15da] = 0x222a8, [0x15db] = 0x22368, [0x15dc] = 0x22366, [0x15dd] = 0x22367, + [0x15de] = 0x22391, [0x15df] = 0x22413, [0x15e0] = 0x22415, [0x15e1] = 0x2241d, + [0x15e2] = 0x22416, [0x15e3] = 0x22419, [0x15e4] = 0x2246b, [0x15e5] = 0x22468, + [0x15e6] = 0x2246a, [0x15e7] = 0x2246d, [0x15e8] = 0x22469, [0x15e9] = 0x224aa, + [0x15ea] = 0x22557, [0x15eb] = 0x22552, [0x15ec] = 0x22550, [0x15ed] = 0x2255f, + [0x15ee] = 0x22567, [0x15ef] = 0x2254f, [0x15f0] = 0x38f2, [0x15f1] = 0x2255b, + [0x15f2] = 0x2255c, [0x15f3] = 0x2255d, [0x15f4] = 0x2281f, [0x15f5] = 0x2279d, + [0x15f6] = 0x227b1, [0x15f7] = 0x227b0, [0x15f8] = 0x22794, [0x15f9] = 0x227c3, + [0x15fa] = 0x227af, [0x15fb] = 0x227a8, [0x15fc] = 0x227dc, [0x15fd] = 0x22798, + [0x15fe] = 0x227c4, [0x15ff] = 0x227a4, [0x1600] = 0x227ab, [0x1601] = 0x227aa, + [0x1602] = 0x227a5, [0x1603] = 0x22821, [0x1604] = 0x227eb, [0x1605] = 0x227e6, + [0x1606] = 0x227f7, [0x1607] = 0x227f8, [0x1608] = 0x227fc, [0x1609] = 0x227fa, + [0x160a] = 0x227e0, [0x160c] = 0x227f6, [0x160e] = 0x227e1, [0x160f] = 0x229ec, + [0x1610] = 0x229e2, [0x1611] = 0x229e4, [0x1612] = 0x229f9, [0x1613] = 0x22c6f, + [0x1614] = 0x23a4c, [0x1615] = 0x22cbb, [0x1616] = 0x22ce1, [0x1617] = 0x22d00, + [0x1618] = 0x22cd8, [0x1619] = 0x3a2f, [0x161a] = 0x22cd6, [0x161b] = 0x22ce2, + [0x161c] = 0x22cc3, [0x161d] = 0x22cb3, [0x161e] = 0x22cd2, [0x1620] = 0x22cce, + [0x1621] = 0x22cd0, [0x1622] = 0x22cd5, [0x1623] = 0x22cb9, [0x1624] = 0x22cba, + [0x1625] = 0x22ccf, [0x1626] = 0x22cbd, [0x1627] = 0x22edb, [0x1628] = 0x22faa, + [0x1629] = 0x22fad, [0x162a] = 0x22fb8, [0x162b] = 0x22fb6, [0x162c] = 0x22fb5, + [0x162d] = 0x22faf, [0x162e] = 0x22fb4, [0x162f] = 0x22fb7, [0x1630] = 0x22fa8, + [0x1631] = 0x22fb9, [0x1632] = 0x22fbe, [0x1633] = 0x23082, [0x1634] = 0x230bc, + [0x1635] = 0x230b8, [0x1636] = 0x230b6, [0x1637] = 0x230b9, [0x1638] = 0x3ac1, + [0x1639] = 0x23110, [0x163a] = 0x23227, [0x163b] = 0x23269, [0x163c] = 0x23270, + [0x163d] = 0x23256, [0x163e] = 0x2326b, [0x163f] = 0x2327a, [0x1640] = 0x2326c, + [0x1641] = 0x2326d, [0x1643] = 0x267c1, [0x1644] = 0x2338d, [0x1645] = 0x23390, + [0x1646] = 0x235b6, [0x1647] = 0x23610, [0x1648] = 0x23612, [0x1649] = 0x235ba, + [0x164a] = 0x235bd, [0x164b] = 0x23605, [0x164c] = 0x235c2, [0x164d] = 0x23607, + [0x164e] = 0x235f5, [0x1650] = 0x235af, [0x1651] = 0x235f4, [0x1652] = 0x235f7, + [0x1653] = 0x235f8, [0x1654] = 0x23611, [0x1655] = 0x238f6, [0x1656] = 0x238f5, + [0x1657] = 0x238fb, [0x1658] = 0x23901, [0x1659] = 0x23900, [0x165a] = 0x23902, + [0x165b] = 0x238fe, [0x165c] = 0x238fa, [0x165d] = 0x238fd, [0x165e] = 0x3c40, + [0x165f] = 0x23a37, [0x1660] = 0x23a49, [0x1661] = 0x23a4b, [0x1662] = 0x23a46, + [0x1663] = 0x23a47, [0x1664] = 0x23ab3, [0x1665] = 0x23ab2, [0x1666] = 0x23ab0, + [0x1667] = 0x23ab7, [0x1668] = 0x23b11, [0x1669] = 0x23bcc, [0x166a] = 0x23bdf, + [0x166b] = 0x23bd3, [0x166c] = 0x23bd5, [0x166d] = 0x23bdb, [0x166e] = 0x23bc5, + [0x166f] = 0x23bc8, [0x1670] = 0x23bc9, [0x1671] = 0x23be2, [0x1672] = 0x23bca, + [0x1673] = 0x23bd1, [0x1674] = 0x23bd2, [0x1675] = 0x23bdd, [0x1676] = 0x23e6c, + [0x1677] = 0x23e73, [0x1678] = 0x23f21, [0x1679] = 0x23ef0, [0x167a] = 0x23f1f, + [0x167b] = 0x23f3b, [0x167c] = 0x23f22, [0x167d] = 0x23f23, [0x167e] = 0x23ee8, + [0x167f] = 0x23edd, [0x1680] = 0x3d3f, [0x1681] = 0x23f1b, [0x1682] = 0x23eed, + [0x1684] = 0x23ef2, [0x1685] = 0x3d46, [0x1686] = 0x23edc, [0x1687] = 0x23ee9, + [0x1688] = 0x23f1d, [0x1689] = 0x23eda, [0x168a] = 0x23ee6, [0x168b] = 0x24313, + [0x168c] = 0x24315, [0x168d] = 0x24316, [0x168e] = 0x2433c, [0x168f] = 0x2430b, + [0x1690] = 0x2431c, [0x1691] = 0x2433a, [0x1692] = 0x2433d, [0x1693] = 0x2439a, + [0x1694] = 0x2431d, [0x1695] = 0x24309, [0x1696] = 0x24308, [0x1697] = 0x2433b, + [0x1698] = 0x24522, [0x1699] = 0x24526, [0x169a] = 0x24525, [0x169b] = 0x24524, + [0x169c] = 0x2039b, [0x169d] = 0x2458f, [0x169e] = 0x24590, [0x169f] = 0x245e6, + [0x16a0] = 0x245e3, [0x16a1] = 0x245e5, [0x16a2] = 0x24611, [0x16a4] = 0x246ae, + [0x16a5] = 0x246be, [0x16a6] = 0x246b4, [0x16a7] = 0x246b3, [0x16a8] = 0x246af, + [0x16a9] = 0x24691, [0x16aa] = 0x246c2, [0x16ab] = 0x246b6, [0x16ac] = 0x246b2, + [0x16ad] = 0x24857, [0x16ae] = 0x2483b, [0x16af] = 0x24858, [0x16b0] = 0x24851, + [0x16b1] = 0x24841, [0x16b2] = 0x24839, [0x16b3] = 0x3e8f, [0x16b4] = 0x24859, + [0x16b5] = 0x24845, [0x16b6] = 0x24861, [0x16b7] = 0x248e8, [0x16b8] = 0x249fa, + [0x16b9] = 0x249ea, [0x16ba] = 0x249ef, [0x16bb] = 0x249f2, [0x16bc] = 0x249f0, + [0x16bd] = 0x24b08, [0x16be] = 0x24b70, [0x16bf] = 0x24b6a, [0x16c0] = 0x24b73, + [0x16c1] = 0x24b68, [0x16c2] = 0x24bc8, [0x16c3] = 0x24bf2, [0x16c4] = 0x20b7b, + [0x16c5] = 0x24cae, [0x16c6] = 0x24cab, [0x16c7] = 0x24cb5, [0x16c8] = 0x24caf, + [0x16c9] = 0x24cb2, [0x16ca] = 0x24cb6, [0x16cb] = 0x24cb0, [0x16cc] = 0x24d1e, + [0x16cd] = 0x24e03, [0x16ce] = 0x24e06, [0x16cf] = 0x24e1f, [0x16d0] = 0x3fac, + [0x16d1] = 0x24e0f, [0x16d2] = 0x24e02, [0x16d3] = 0x24e19, [0x16d4] = 0x24e18, + [0x16d5] = 0x24e22, [0x16d6] = 0x24e15, [0x16d7] = 0x24e07, [0x16d8] = 0x24e0d, + [0x16d9] = 0x24e24, [0x16da] = 0x24e0c, [0x16db] = 0x24e1e, [0x16dc] = 0x24f89, + [0x16dd] = 0x24f8a, [0x16de] = 0x2500a, [0x16df] = 0x2500b, [0x16e0] = 0x25007, + [0x16e1] = 0x25004, [0x16e2] = 0x25009, [0x16e3] = 0x25084, [0x16e4] = 0x25083, + [0x16e5] = 0x25218, [0x16e6] = 0x25214, [0x16e7] = 0x25205, [0x16e8] = 0x25216, + [0x16e9] = 0x2520e, [0x16ea] = 0x25211, [0x16eb] = 0x25208, [0x16ec] = 0x2520b, + [0x16ed] = 0x25215, [0x16ee] = 0x25085, [0x16ef] = 0x25237, [0x16f0] = 0x2522a, + [0x16f1] = 0x2520d, [0x16f2] = 0x2520f, [0x16f3] = 0x2537e, [0x16f4] = 0x25376, + [0x16f5] = 0x25377, [0x16f6] = 0x253ec, [0x16f7] = 0x254fc, [0x16f8] = 0x25508, + [0x16f9] = 0x254ff, [0x16fa] = 0x25503, [0x16fb] = 0x25510, [0x16fc] = 0x25505, + [0x16fd] = 0x25506, [0x16fe] = 0x254fa, [0x16ff] = 0x256c7, [0x1700] = 0x256c0, + [0x1701] = 0x256c3, [0x1702] = 0x256a7, [0x1703] = 0x256a8, [0x1704] = 0x256ab, + [0x1705] = 0x256c1, [0x1706] = 0x256aa, [0x1707] = 0x256c8, [0x1708] = 0x25743, + [0x1709] = 0x25802, [0x170a] = 0x2580e, [0x170b] = 0x25801, [0x170c] = 0x257fe, + [0x170d] = 0x25803, [0x170e] = 0x4168, [0x170f] = 0x25822, [0x1710] = 0x25821, + [0x1711] = 0x25807, [0x1712] = 0x25808, [0x1713] = 0x2580c, [0x1714] = 0x259ca, + [0x1715] = 0x259bc, [0x1716] = 0x259be, [0x1717] = 0x259bd, [0x1719] = 0x259bb, + [0x171a] = 0x259b9, [0x171b] = 0x41ab, [0x171c] = 0x259c5, [0x171d] = 0x25a99, + [0x171e] = 0x25b6b, [0x171f] = 0x25b93, [0x1720] = 0x25b94, [0x1721] = 0x25ba9, + [0x1722] = 0x25ba0, [0x1723] = 0x25ba6, [0x1725] = 0x25bab, [0x1726] = 0x25b9e, + [0x1727] = 0x25b9b, [0x1728] = 0x25b91, [0x1729] = 0x25b99, [0x172a] = 0x25eb6, + [0x172b] = 0x25eb8, [0x172c] = 0x25e9a, [0x172d] = 0x4291, [0x172e] = 0x25e98, + [0x172f] = 0x25e9b, [0x1730] = 0x25eb3, [0x1731] = 0x25ea2, [0x1732] = 0x222aa, + [0x1733] = 0x25ea0, [0x1734] = 0x25e9f, [0x1735] = 0x2605b, [0x1736] = 0x26070, + [0x1737] = 0x26054, [0x1738] = 0x26071, [0x1739] = 0x26065, [0x173a] = 0x26051, + [0x173b] = 0x2609d, [0x173c] = 0x26061, [0x173d] = 0x2605a, [0x173e] = 0x26074, + [0x173f] = 0x2604c, [0x1740] = 0x2604b, [0x1741] = 0x2605e, [0x1742] = 0x26058, + [0x1743] = 0x26053, [0x1744] = 0x26052, [0x1745] = 0x2623b, [0x1746] = 0x26239, + [0x1747] = 0x262d6, [0x1748] = 0x262e7, [0x1749] = 0x262d7, [0x174a] = 0x262d8, + [0x174b] = 0x262d9, [0x174c] = 0x262da, [0x174d] = 0x262db, [0x174e] = 0x262dc, + [0x174f] = 0x262e0, [0x1750] = 0x262e4, [0x1751] = 0x262dd, [0x1752] = 0x262f5, + [0x1753] = 0x262f1, [0x1754] = 0x26398, [0x1755] = 0x2639d, [0x1756] = 0x26399, + [0x1757] = 0x26450, [0x1758] = 0x26449, [0x1759] = 0x7fe4, [0x175a] = 0x26462, + [0x175b] = 0x264d7, [0x175c] = 0x26501, [0x175d] = 0x264f7, [0x175f] = 0x2658c, + [0x1760] = 0x2659c, [0x1761] = 0x8088, [0x1762] = 0x2661f, [0x1763] = 0x2661e, + [0x1764] = 0x2673d, [0x1765] = 0x2673f, [0x1766] = 0x26711, [0x1767] = 0x26759, + [0x1768] = 0x2673e, [0x1769] = 0x26758, [0x176a] = 0x26800, [0x176b] = 0x2679e, + [0x176c] = 0x267b6, [0x176d] = 0x267aa, [0x176e] = 0x267af, [0x176f] = 0x267ac, + [0x1770] = 0x4430, [0x1771] = 0x267c0, [0x1772] = 0x267a9, [0x1773] = 0x20b10, + [0x1774] = 0x268ee, [0x1775] = 0x26977, [0x1776] = 0x26979, [0x1777] = 0x2697a, + [0x1778] = 0x2697d, [0x1779] = 0x2697f, [0x177a] = 0x26983, [0x177b] = 0x26978, + [0x177c] = 0x2697e, [0x177d] = 0x269e4, [0x177e] = 0x269e6, [0x177f] = 0x269e5, + [0x1780] = 0x445d, [0x1781] = 0x26a4e, [0x1782] = 0x26a59, [0x1783] = 0x4475, + [0x1785] = 0x26a4f, [0x1786] = 0x26a4a, [0x1787] = 0x26ae3, [0x1788] = 0x26ade, + [0x1789] = 0x26ae2, [0x178a] = 0x26c74, [0x178b] = 0x26cac, [0x178c] = 0x26c61, + [0x178d] = 0x26c62, [0x178e] = 0x26c76, [0x178f] = 0x26c7a, [0x1790] = 0x26c79, + [0x1791] = 0x26c60, [0x1792] = 0x26d64, [0x1793] = 0x26e81, [0x1794] = 0x26ddf, + [0x1795] = 0x26d84, [0x1796] = 0x26d8a, [0x1797] = 0x26d92, [0x1798] = 0x26d79, + [0x1799] = 0x26dde, [0x179a] = 0x26d98, [0x179b] = 0x26d6c, [0x179c] = 0x26de1, + [0x179e] = 0x26d7c, [0x179f] = 0x26d72, [0x17a0] = 0x26d81, [0x17a1] = 0x26de0, + [0x17a2] = 0x26d65, [0x17a3] = 0x44ff, [0x17a4] = 0x26d6a, [0x17a5] = 0x26d97, + [0x17a6] = 0x26daa, [0x17a7] = 0x26dd3, [0x17a8] = 0x26dab, [0x17a9] = 0x26d6e, + [0x17aa] = 0x26dac, [0x17ab] = 0x26d76, [0x17ac] = 0x26d7b, [0x17ad] = 0x26dad, + [0x17af] = 0x26d94, [0x17b0] = 0x26dd7, [0x17b1] = 0x26d70, [0x17b2] = 0x26dd5, + [0x17b3] = 0x26df1, [0x17b4] = 0x26d7a, [0x17b5] = 0x26d68, [0x17b6] = 0x26d96, + [0x17b7] = 0x450b, [0x17b8] = 0x26d73, [0x17b9] = 0x26dae, [0x17ba] = 0x26ddd, + [0x17bb] = 0x26dda, [0x17bc] = 0x26daf, [0x17bd] = 0x26db0, [0x17be] = 0x26ddb, + [0x17bf] = 0x26d62, [0x17c0] = 0x26df8, [0x17c1] = 0x271c2, [0x17c2] = 0x271c7, + [0x17c3] = 0x271c8, [0x17c4] = 0x271c5, [0x17c5] = 0x271c3, [0x17c6] = 0x271c6, + [0x17c7] = 0x272de, [0x17c8] = 0x45c8, [0x17c9] = 0x27311, [0x17ca] = 0x27315, + [0x17cb] = 0x27328, [0x17cc] = 0x27321, [0x17cd] = 0x2732d, [0x17ce] = 0x27351, + [0x17cf] = 0x2732b, [0x17d0] = 0x27316, [0x17d1] = 0x27324, [0x17d2] = 0x27335, + [0x17d3] = 0x2731f, [0x17d4] = 0x27312, [0x17d5] = 0x27310, [0x17d6] = 0x27380, + [0x17d7] = 0x2733b, [0x17d8] = 0x27329, [0x17d9] = 0x2732a, [0x17da] = 0x2731b, + [0x17db] = 0x27318, [0x17dc] = 0x27320, [0x17dd] = 0x2733f, [0x17de] = 0x2731c, + [0x17df] = 0x27326, [0x17e0] = 0x2730b, [0x17e1] = 0x275be, [0x17e2] = 0x275c4, + [0x17e3] = 0x275bd, [0x17e4] = 0x275fa, [0x17e5] = 0x275fb, [0x17e6] = 0x276b1, + [0x17e7] = 0x276b2, [0x17e8] = 0x276b0, [0x17e9] = 0x276b9, [0x17ea] = 0x276a6, + [0x17eb] = 0x276bd, [0x17ec] = 0x276b6, [0x17ed] = 0x276b8, [0x17ee] = 0x276b4, + [0x17ef] = 0x276b3, [0x17f0] = 0x276a7, [0x17f1] = 0x276ae, [0x17f2] = 0x276bc, + [0x17f3] = 0x277f2, [0x17f4] = 0x277f3, [0x17f5] = 0x277f4, [0x17f6] = 0x2783b, + [0x17f7] = 0x27840, [0x17f8] = 0x27846, [0x17f9] = 0x278f0, [0x17fa] = 0x278ee, + [0x17fb] = 0x278e8, [0x17fc] = 0x278f1, [0x17fd] = 0x278eb, [0x17fe] = 0x278ef, + [0x17ff] = 0x279fc, [0x1800] = 0x27a20, [0x1801] = 0x27a09, [0x1802] = 0x27a06, + [0x1803] = 0x27a03, [0x1805] = 0x27a19, [0x1806] = 0x27a24, [0x1807] = 0x27a1b, + [0x1808] = 0x27a1d, [0x1809] = 0x279fd, [0x180a] = 0x27a1e, [0x180b] = 0x279f4, + [0x180c] = 0x27a01, [0x180d] = 0x27a08, [0x180e] = 0x27a05, [0x180f] = 0x27a23, + [0x1810] = 0x279ff, [0x1811] = 0x27bea, [0x1812] = 0x27c4d, [0x1813] = 0x27c4e, + [0x1814] = 0x27c56, [0x1815] = 0x27c57, [0x1816] = 0x27c51, [0x1817] = 0x27c55, + [0x1818] = 0x27c54, [0x1819] = 0x27ccb, [0x181a] = 0x27cd4, [0x181b] = 0x27cd1, + [0x181c] = 0x27ccf, [0x181d] = 0x27cd2, [0x181e] = 0x27cca, [0x181f] = 0x27cd6, + [0x1820] = 0x27d8b, [0x1821] = 0x27d88, [0x1822] = 0x27d85, [0x1823] = 0x27d89, + [0x1824] = 0x21a9b, [0x1825] = 0x27dbb, [0x1826] = 0x27d8c, [0x1827] = 0x4774, + [0x1828] = 0x27d99, [0x1829] = 0x27d8a, [0x182a] = 0x27eec, [0x182b] = 0x27eef, + [0x182c] = 0x27ef9, [0x182d] = 0x27f09, [0x182e] = 0x27ef8, [0x182f] = 0x27ef3, + [0x1830] = 0x27f00, [0x1831] = 0x27f1d, [0x1832] = 0x47ac, [0x1833] = 0x27efd, + [0x1834] = 0x28048, [0x1835] = 0x2805c, [0x1836] = 0x28055, [0x1837] = 0x2805e, + [0x1838] = 0x28049, [0x1839] = 0x28063, [0x183a] = 0x28060, [0x183b] = 0x28053, + [0x183c] = 0x28062, [0x183d] = 0x28040, [0x183e] = 0x28249, [0x183f] = 0x2824a, + [0x1840] = 0x2824c, [0x1841] = 0x2824d, [0x1842] = 0x2830a, [0x1843] = 0x28306, + [0x1844] = 0x2832f, [0x1845] = 0x28321, [0x1846] = 0x28307, [0x1847] = 0x28309, + [0x1848] = 0x28302, [0x1849] = 0x28316, [0x184a] = 0x28303, [0x184b] = 0x2830b, + [0x184c] = 0x2830f, [0x184d] = 0x28560, [0x184e] = 0x28568, [0x184f] = 0x2855e, + [0x1850] = 0x2855d, [0x1851] = 0x28563, [0x1852] = 0x2855f, [0x1853] = 0x28564, + [0x1854] = 0x28578, [0x1855] = 0x28561, [0x1856] = 0x28569, [0x1857] = 0x28565, + [0x1858] = 0x286da, [0x1859] = 0x286e6, [0x185a] = 0x286db, [0x185b] = 0x286dc, + [0x185c] = 0x28739, [0x185d] = 0x28757, [0x185e] = 0x28755, [0x185f] = 0x28765, + [0x1860] = 0x28761, [0x1861] = 0x28754, [0x1862] = 0x28845, [0x1863] = 0x28841, + [0x1864] = 0x2883e, [0x1865] = 0x28837, [0x1866] = 0x28912, [0x1867] = 0x28913, + [0x1868] = 0x2892c, [0x1869] = 0x28996, [0x186b] = 0x2899c, [0x186c] = 0x2899d, + [0x186d] = 0x28985, [0x186f] = 0x2899f, [0x1870] = 0x289a3, [0x1871] = 0x28c82, + [0x1872] = 0x28c83, [0x1874] = 0x28d1d, [0x1875] = 0x28d14, [0x1876] = 0x28d1f, + [0x1877] = 0x28d20, [0x1878] = 0x28e47, [0x1879] = 0x28e80, [0x187a] = 0x28ec9, + [0x187b] = 0x28ef9, [0x187c] = 0x28f06, [0x187d] = 0x28ef0, [0x187e] = 0x28ef8, + [0x187f] = 0x28eef, [0x1880] = 0x28efd, [0x1881] = 0x28ef1, [0x1882] = 0x28efe, + [0x1883] = 0x28fb8, [0x1884] = 0x28fc0, [0x1885] = 0x28fc3, [0x1886] = 0x28fb5, + [0x1887] = 0x28fb6, [0x1888] = 0x28fc9, [0x188a] = 0x28fbd, [0x188b] = 0x28fba, + [0x188c] = 0x28fbf, [0x188d] = 0x28fb3, [0x188e] = 0x28fc6, [0x188f] = 0x28fb2, + [0x1890] = 0x28fbc, [0x1891] = 0x28fb7, [0x1892] = 0x28fb9, [0x1893] = 0x28fc8, + [0x1894] = 0x290b5, [0x1895] = 0x290b3, [0x1896] = 0x4a16, [0x1897] = 0x290ac, + [0x1898] = 0x290a9, [0x1899] = 0x290ad, [0x189a] = 0x29211, [0x189b] = 0x2920d, + [0x189c] = 0x29216, [0x189d] = 0x29289, [0x189e] = 0x2927c, [0x189f] = 0x2928b, + [0x18a0] = 0x2927b, [0x18a1] = 0x29288, [0x18a2] = 0x29284, [0x18a3] = 0x2939d, + [0x18a4] = 0x29398, [0x18a5] = 0x29488, [0x18a6] = 0x29486, [0x18a7] = 0x29482, + [0x18a8] = 0x2948b, [0x18aa] = 0x29471, [0x18ab] = 0x29472, [0x18ac] = 0x29481, + [0x18ad] = 0x2948c, [0x18ae] = 0x29480, [0x18af] = 0x29489, [0x18b0] = 0x295bb, + [0x18b1] = 0x295c1, [0x18b2] = 0x295be, [0x18b4] = 0x295bd, [0x18b5] = 0x296c1, + [0x18b6] = 0x296b4, [0x18b7] = 0x296b7, [0x18b8] = 0x296c8, [0x18b9] = 0x4b3b, + [0x18ba] = 0x296d3, [0x18bb] = 0x296d0, [0x18bc] = 0x296b0, [0x18bd] = 0x296ca, + [0x18be] = 0x296cd, [0x18bf] = 0x29815, [0x18c0] = 0x29819, [0x18c1] = 0x29817, + [0x18c2] = 0x2983f, [0x18c3] = 0x29840, [0x18c4] = 0x29844, [0x18c5] = 0x2987c, + [0x18c6] = 0x29878, [0x18c7] = 0x29879, [0x18c8] = 0x29888, [0x18ca] = 0x29889, + [0x18cb] = 0x2987d, [0x18cc] = 0x29a23, [0x18cd] = 0x29a24, [0x18ce] = 0x29a26, + [0x18cf] = 0x29a22, [0x18d0] = 0x29a27, [0x18d1] = 0x29a1f, [0x18d2] = 0x29ac9, + [0x18d3] = 0x29ac3, [0x18d4] = 0x29b0a, [0x18d5] = 0x29b0b, [0x18d6] = 0x29b04, + [0x18d7] = 0x4bef, [0x18d8] = 0x29b03, [0x18d9] = 0x29b01, [0x18da] = 0x29b09, + [0x18db] = 0x29c0f, [0x18dc] = 0x29c2e, [0x18dd] = 0x29c2d, [0x18de] = 0x29c91, + [0x18df] = 0x29c99, [0x18e0] = 0x29c9e, [0x18e1] = 0x29c90, [0x18e2] = 0x29c94, + [0x18e3] = 0x29c9d, [0x18e4] = 0x29c98, [0x18e5] = 0x29c9b, [0x18e6] = 0x29c9c, + [0x18e7] = 0x29c9a, [0x18e8] = 0x29d54, [0x18e9] = 0x29f9d, [0x18ea] = 0x29f9f, + [0x18eb] = 0x29fa3, [0x18ec] = 0x29fa4, [0x18ed] = 0x29fa5, [0x18ee] = 0x2a302, + [0x18ef] = 0x2a417, [0x18f0] = 0x2a41b, [0x18f1] = 0x2a419, [0x18f2] = 0x2a4d1, + [0x18f3] = 0x21537, +}; + +/* The following table contains no hole and is therefore compact. Nice + work compared with the chaos of other character sets (or plane 1). + + The table can be generated using + + egrep '^0x7' CNS11643.TXT | + awk '{print $1, $2}' | perl tab.pl + + where tab.pl is: + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + $n=0; + while (<>) { + local($cns, $ucs4, %rest) = split; + local($u)=hex($ucs4); + local($c)=hex($cns)-0x72121; + printf ("\n ") if ($n % 4 eq 0); + ++$n; + printf (" [0x%04x] = 0x%04x,", + int($c / 256) * 94 + ($c & 0xff), $u); + } + printf ("\n"); + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +*/ +const uint32_t __cns11643l7_to_ucs4_tab[] = +{ + [0x0000] = 0x20055, [0x0001] = 0x20182, [0x0002] = 0x20189, [0x0003] = 0x20187, + [0x0004] = 0x203be, [0x0005] = 0x203bd, [0x0006] = 0x203ca, [0x0007] = 0x203d4, + [0x0008] = 0x203bc, [0x0009] = 0x203c4, [0x000a] = 0x203c1, [0x000b] = 0x203c2, + [0x000c] = 0x203d7, [0x000d] = 0x20370, [0x000e] = 0x203ba, [0x000f] = 0x203e3, + [0x0010] = 0x203bb, [0x0011] = 0x204b1, [0x0012] = 0x204b6, [0x0013] = 0x204b0, + [0x0014] = 0x2056c, [0x0015] = 0x2060d, [0x0016] = 0x20607, [0x0017] = 0x207f1, + [0x0018] = 0x207f5, [0x0019] = 0x207ed, [0x001a] = 0x207ef, [0x001b] = 0x207eb, + [0x001c] = 0x207ec, [0x001d] = 0x207ee, [0x001e] = 0x20807, [0x001f] = 0x209c4, + [0x0020] = 0x20a08, [0x0021] = 0x20ab3, [0x0022] = 0x20aad, [0x0023] = 0x20ab0, + [0x0024] = 0x20b11, [0x0025] = 0x2018a, [0x0026] = 0x20f83, [0x0027] = 0x20f7a, + [0x0028] = 0x20f82, [0x0029] = 0x20f68, [0x002a] = 0x20f71, [0x002b] = 0x20fb0, + [0x002c] = 0x20faf, [0x002d] = 0x35f6, [0x002e] = 0x20f6c, [0x002f] = 0x20f6f, + [0x0030] = 0x20f62, [0x0031] = 0x20f65, [0x0032] = 0x20f81, [0x0033] = 0x20f7f, + [0x0034] = 0x20f64, [0x0035] = 0x20f73, [0x0036] = 0x20f6e, [0x0037] = 0x20f67, + [0x0038] = 0x20f74, [0x0039] = 0x20f7d, [0x003a] = 0x20f78, [0x003b] = 0x20f85, + [0x003c] = 0x20faa, [0x003d] = 0x20f88, [0x003e] = 0x20fa6, [0x0040] = 0x20f8a, + [0x0041] = 0x20f84, [0x0042] = 0x5655, [0x0043] = 0x21224, [0x0044] = 0x21222, + [0x0045] = 0x21223, [0x0046] = 0x21432, [0x0047] = 0x2145b, [0x0048] = 0x2144f, + [0x0049] = 0x3667, [0x004a] = 0x21426, [0x004b] = 0x2143e, [0x004c] = 0x21442, + [0x004d] = 0x21447, [0x004e] = 0x21422, [0x004f] = 0x2069b, [0x0050] = 0x2144a, + [0x0051] = 0x2141f, [0x0052] = 0x21449, [0x0053] = 0x2142b, [0x0054] = 0x21433, + [0x0056] = 0x2142a, [0x0057] = 0x21428, [0x0058] = 0x2153d, [0x0059] = 0x2153c, + [0x005a] = 0x215bf, [0x005b] = 0x21679, [0x005c] = 0x21680, [0x005d] = 0x2167c, + [0x005e] = 0x2167a, [0x005f] = 0x21678, [0x0060] = 0x21882, [0x0061] = 0x2185c, + [0x0062] = 0x2185a, [0x0063] = 0x2184b, [0x0064] = 0x2187c, [0x0065] = 0x2187f, + [0x0066] = 0x2181f, [0x0067] = 0x21889, [0x0068] = 0x2188b, [0x0069] = 0x21857, + [0x006a] = 0x2187e, [0x006b] = 0x2187d, [0x006c] = 0x21853, [0x006d] = 0x21a9f, + [0x006e] = 0x21abc, [0x006f] = 0x21aa5, [0x0070] = 0x21a86, [0x0071] = 0x21adc, + [0x0072] = 0x21aa4, [0x0073] = 0x21ab6, [0x0074] = 0x21aa2, [0x0075] = 0x21ab4, + [0x0076] = 0x21b48, [0x0077] = 0x21b46, [0x0078] = 0x21ba7, [0x0079] = 0x21c14, + [0x007a] = 0x21c12, [0x007b] = 0x21c11, [0x007c] = 0x21ce1, [0x007d] = 0x21cd0, + [0x007e] = 0x21d26, [0x007f] = 0x21d28, [0x0080] = 0x21d29, [0x0081] = 0x21f2f, + [0x0082] = 0x21f0d, [0x0083] = 0x21f25, [0x0084] = 0x21f14, [0x0085] = 0x21f3c, + [0x0086] = 0x21f0b, [0x0087] = 0x21f11, [0x0088] = 0x21f30, [0x0089] = 0x21f18, + [0x008a] = 0x21f19, [0x008b] = 0x21f36, [0x008c] = 0x21f17, [0x008d] = 0x21f10, + [0x008e] = 0x21f15, [0x008f] = 0x22003, [0x0090] = 0x22029, [0x0091] = 0x2204c, + [0x0092] = 0x2213f, [0x0093] = 0x2213e, [0x0094] = 0x22134, [0x0095] = 0x22142, + [0x0096] = 0x22135, [0x0097] = 0x207f3, [0x0098] = 0x221cd, [0x0099] = 0x221d1, + [0x009a] = 0x221d2, [0x009b] = 0x222ad, [0x009c] = 0x222ba, [0x009d] = 0x222c1, + [0x009e] = 0x222bb, [0x009f] = 0x222b4, [0x00a0] = 0x222bc, [0x00a1] = 0x2236c, + [0x00a2] = 0x22392, [0x00a3] = 0x22421, [0x00a4] = 0x22424, [0x00a5] = 0x23f19, + [0x00a6] = 0x224ad, [0x00a7] = 0x224ae, [0x00a8] = 0x224ab, [0x00a9] = 0x224ac, + [0x00aa] = 0x22570, [0x00ab] = 0x22576, [0x00ac] = 0x22571, [0x00ad] = 0x22577, + [0x00ae] = 0x617f, [0x00af] = 0x227ec, [0x00b0] = 0x2281c, [0x00b1] = 0x227fb, + [0x00b2] = 0x227ee, [0x00b3] = 0x228e2, [0x00b4] = 0x227fd, [0x00b5] = 0x2281e, + [0x00b6] = 0x2283b, [0x00b7] = 0x2284a, [0x00b9] = 0x3992, [0x00ba] = 0x2287d, + [0x00bb] = 0x22856, [0x00bc] = 0x22844, [0x00bd] = 0x2284b, [0x00be] = 0x229fa, + [0x00bf] = 0x229e8, [0x00c0] = 0x229f8, [0x00c1] = 0x229ff, [0x00c2] = 0x229f7, + [0x00c3] = 0x229f6, [0x00c4] = 0x229fe, [0x00c5] = 0x22a07, [0x00c6] = 0x22a5d, + [0x00c7] = 0x22cd4, [0x00c9] = 0x22cc8, [0x00ca] = 0x22cc5, [0x00cc] = 0x22cc9, + [0x00cd] = 0x22d4d, [0x00ce] = 0x22d20, [0x00cf] = 0x22d36, [0x00d0] = 0x22d35, + [0x00d1] = 0x22d88, [0x00d2] = 0x22d25, [0x00d3] = 0x22d21, [0x00d4] = 0x22d26, + [0x00d5] = 0x3a45, [0x00d6] = 0x22d3f, [0x00d7] = 0x22d3b, [0x00d8] = 0x22d24, + [0x00d9] = 0x22d43, [0x00da] = 0x22d4e, [0x00db] = 0x22d4f, [0x00dc] = 0x22d44, + [0x00dd] = 0x22d40, [0x00de] = 0x22d41, [0x00df] = 0x22d39, [0x00e0] = 0x22d2b, + [0x00e1] = 0x22edd, [0x00e2] = 0x22ede, [0x00e3] = 0x22fcd, [0x00e4] = 0x22fcb, + [0x00e5] = 0x22fdb, [0x00e6] = 0x22fd8, [0x00e7] = 0x22fd9, [0x00e8] = 0x22fd2, + [0x00e9] = 0x22fca, [0x00ea] = 0x22fd1, [0x00eb] = 0x22fd4, [0x00ec] = 0x22ff9, + [0x00ed] = 0x22fd0, [0x00ee] = 0x2305e, [0x00ef] = 0x2305d, [0x00f0] = 0x2308a, + [0x00f1] = 0x23114, [0x00f2] = 0x23283, [0x00f3] = 0x23284, [0x00f4] = 0x2329b, + [0x00f5] = 0x23282, [0x00f6] = 0x2327d, [0x00f7] = 0x2327c, [0x00f8] = 0x23299, + [0x00f9] = 0x2327e, [0x00fa] = 0x2329a, [0x00fb] = 0x23295, [0x00fc] = 0x2327b, + [0x00fd] = 0x23286, [0x00fe] = 0x23348, [0x00ff] = 0x23392, [0x0100] = 0x235b2, + [0x0101] = 0x23642, [0x0102] = 0x23672, [0x0103] = 0x23615, [0x0104] = 0x23630, + [0x0105] = 0x23643, [0x0106] = 0x2365b, [0x0107] = 0x2361d, [0x0108] = 0x23673, + [0x0109] = 0x2362d, [0x010a] = 0x3bc9, [0x010b] = 0x23621, [0x010c] = 0x2361c, + [0x010e] = 0x23629, [0x010f] = 0x2361e, [0x0110] = 0x23633, [0x0111] = 0x23910, + [0x0112] = 0x2390e, [0x0114] = 0x2390d, [0x0115] = 0x23911, [0x0116] = 0x23912, + [0x0117] = 0x23917, [0x0118] = 0x23909, [0x0119] = 0x2390f, [0x011a] = 0x23998, + [0x011b] = 0x23994, [0x011c] = 0x23996, [0x011d] = 0x23999, [0x011e] = 0x23995, + [0x011f] = 0x23997, [0x0120] = 0x23a50, [0x0121] = 0x23a52, [0x0122] = 0x23a4d, + [0x0123] = 0x23a57, [0x0124] = 0x23a53, [0x0125] = 0x23a56, [0x0126] = 0x23ab8, + [0x0127] = 0x23b12, [0x0128] = 0x23bf1, [0x0129] = 0x23bf0, [0x012a] = 0x23bee, + [0x012b] = 0x23bef, [0x012c] = 0x23be5, [0x012d] = 0x23beb, [0x012e] = 0x23be7, + [0x012f] = 0x23bf2, [0x0130] = 0x23be6, [0x0131] = 0x23bf7, [0x0132] = 0x23c09, + [0x0133] = 0x23c6b, [0x0134] = 0x23c6a, [0x0135] = 0x23e79, [0x0136] = 0x23ecd, + [0x0137] = 0x23eef, [0x0138] = 0x23ee4, [0x0139] = 0x23ee3, [0x013a] = 0x23f6c, + [0x013b] = 0x23f67, [0x013c] = 0x23f62, [0x013d] = 0x23f58, [0x013e] = 0x23f69, + [0x013f] = 0x23fab, [0x0140] = 0x23f57, [0x0141] = 0x23fad, [0x0142] = 0x23f54, + [0x0143] = 0x23fae, [0x0144] = 0x23f76, [0x0145] = 0x23f49, [0x0146] = 0x23f45, + [0x0147] = 0x23f4f, [0x0149] = 0x23f50, [0x014a] = 0x23f7d, [0x014b] = 0x23f44, + [0x014c] = 0x23f66, [0x014d] = 0x23f48, [0x014e] = 0x23fa3, [0x014f] = 0x23f51, + [0x0150] = 0x23f53, [0x0152] = 0x23f60, [0x0153] = 0x23f47, [0x0154] = 0x23f5e, + [0x0155] = 0x23f85, [0x0156] = 0x23fac, [0x0157] = 0x23f6d, [0x0158] = 0x23f75, + [0x0159] = 0x23fa8, [0x015a] = 0x3d55, [0x015b] = 0x23f43, [0x015c] = 0x23f4e, + [0x015d] = 0x23f5c, [0x015e] = 0x23f56, [0x015f] = 0x23f6e, [0x0160] = 0x23f63, + [0x0161] = 0x23f6a, [0x0162] = 0x24356, [0x0163] = 0x24312, [0x0164] = 0x2435c, + [0x0165] = 0x24358, [0x0166] = 0x24355, [0x0167] = 0x2437e, [0x0168] = 0x243a8, + [0x0169] = 0x24311, [0x016a] = 0x24359, [0x016b] = 0x2435a, [0x016c] = 0x24367, + [0x016d] = 0x24354, [0x016e] = 0x2435b, [0x016f] = 0x243f0, [0x0170] = 0x24529, + [0x0171] = 0x2452c, [0x0172] = 0x2452a, [0x0173] = 0x24527, [0x0174] = 0x24567, + [0x0175] = 0x24568, [0x0176] = 0x24593, [0x0177] = 0x24595, [0x0178] = 0x2459a, + [0x0179] = 0x245ee, [0x017a] = 0x245f1, [0x017b] = 0x245ed, [0x017c] = 0x245e9, + [0x017d] = 0x246cb, [0x017e] = 0x246df, [0x017f] = 0x246db, [0x0180] = 0x2483c, + [0x0181] = 0x2484e, [0x0182] = 0x2486c, [0x0183] = 0x2487b, [0x0184] = 0x2487c, + [0x0185] = 0x24883, [0x0186] = 0x2486b, [0x0187] = 0x24866, [0x0188] = 0x24863, + [0x0189] = 0x248a0, [0x018a] = 0x24885, [0x018b] = 0x24868, [0x018c] = 0x248a2, + [0x018d] = 0x249ec, [0x018e] = 0x3ee8, [0x018f] = 0x249e7, [0x0190] = 0x24a10, + [0x0191] = 0x24a18, [0x0192] = 0x24a3a, [0x0193] = 0x24a1a, [0x0194] = 0x24a38, + [0x0195] = 0x24a41, [0x0196] = 0x24a1b, [0x0197] = 0x24a14, [0x0198] = 0x24a1c, + [0x0199] = 0x24a1d, [0x019a] = 0x24b12, [0x019b] = 0x24b0d, [0x019c] = 0x24b07, + [0x019d] = 0x24b7e, [0x019e] = 0x24b7f, [0x019f] = 0x20ab9, [0x01a0] = 0x24b80, + [0x01a1] = 0x24b7a, [0x01a2] = 0x24bf3, [0x01a3] = 0x24cb9, [0x01a4] = 0x24cbb, + [0x01a5] = 0x24cba, [0x01a6] = 0x24cbd, [0x01a7] = 0x24cb7, [0x01a8] = 0x24cbf, + [0x01a9] = 0x24d21, [0x01aa] = 0x24e3a, [0x01ab] = 0x24e3d, [0x01ac] = 0x24e36, + [0x01ad] = 0x24e49, [0x01ae] = 0x24e81, [0x01af] = 0x3fb6, [0x01b0] = 0x24e3f, + [0x01b1] = 0x24e4d, [0x01b2] = 0x24e3e, [0x01b3] = 0x3fbd, [0x01b4] = 0x24e30, + [0x01b5] = 0x24e4f, [0x01b6] = 0x24f37, [0x01b7] = 0x24f98, [0x01b8] = 0x24f99, + [0x01b9] = 0x25011, [0x01ba] = 0x2500d, [0x01bb] = 0x25088, [0x01bc] = 0x2508a, + [0x01bd] = 0x2521c, [0x01be] = 0x25255, [0x01bf] = 0x25256, [0x01c0] = 0x25262, + [0x01c1] = 0x25257, [0x01c2] = 0x25242, [0x01c3] = 0x25210, [0x01c4] = 0x2524d, + [0x01c5] = 0x2525a, [0x01c6] = 0x25266, [0x01c7] = 0x25246, [0x01c8] = 0x2287e, + [0x01c9] = 0x2524f, [0x01ca] = 0x262f9, [0x01cb] = 0x25387, [0x01cc] = 0x25384, + [0x01cd] = 0x253f4, [0x01ce] = 0x253f5, [0x01cf] = 0x253f2, [0x01d0] = 0x253f7, + [0x01d1] = 0x25545, [0x01d3] = 0x25549, [0x01d4] = 0x25535, [0x01d5] = 0x254fd, + [0x01d6] = 0x25530, [0x01d7] = 0x25543, [0x01d8] = 0x25546, [0x01d9] = 0x40d6, + [0x01da] = 0x25533, [0x01db] = 0x256c6, [0x01dd] = 0x256d4, [0x01de] = 0x271d8, + [0x01df] = 0x256e0, [0x01e0] = 0x20fa7, [0x01e1] = 0x25744, [0x01e2] = 0x20398, + [0x01e3] = 0x25854, [0x01e4] = 0x2583e, [0x01e5] = 0x25835, [0x01e6] = 0x2583a, + [0x01e7] = 0x4171, [0x01e8] = 0x25834, [0x01e9] = 0x25839, [0x01ea] = 0x25846, + [0x01eb] = 0x2585a, [0x01ec] = 0x2585b, [0x01ed] = 0x2583c, [0x01ee] = 0x259dc, + [0x01ef] = 0x259d6, [0x01f0] = 0x259d0, [0x01f2] = 0x25aac, [0x01f4] = 0x25aa5, + [0x01f5] = 0x25bf4, [0x01f6] = 0x25c24, [0x01f7] = 0x25be0, [0x01f8] = 0x25bfd, + [0x01f9] = 0x25bf2, [0x01fa] = 0x25bfc, [0x01fb] = 0x25c02, [0x01fc] = 0x25bf1, + [0x01fd] = 0x25bff, [0x01fe] = 0x25bd2, [0x01ff] = 0x25bd8, [0x0200] = 0x25bd3, + [0x0201] = 0x25bf9, [0x0203] = 0x25bed, [0x0204] = 0x25bf7, [0x0205] = 0x25bf0, + [0x0206] = 0x25bd7, [0x0207] = 0x25c09, [0x0208] = 0x25bf5, [0x0209] = 0x25ec2, + [0x020a] = 0x25ec5, [0x020b] = 0x25ecf, [0x020c] = 0x4298, [0x020d] = 0x25ec1, + [0x020e] = 0x25ec6, [0x020f] = 0x25ed4, [0x0210] = 0x25ece, [0x0211] = 0x2609b, + [0x0212] = 0x26099, [0x0213] = 0x2608f, [0x0214] = 0x260b7, [0x0215] = 0x26082, + [0x0216] = 0x26093, [0x0217] = 0x260b4, [0x0218] = 0x260c1, [0x0219] = 0x26090, + [0x021a] = 0x2609a, [0x021b] = 0x26094, [0x021c] = 0x2609c, [0x021d] = 0x260b5, + [0x0220] = 0x2609f, [0x0221] = 0x2608e, [0x0222] = 0x2609e, [0x0223] = 0x2623c, + [0x0224] = 0x26247, [0x0225] = 0x26241, [0x0226] = 0x262eb, [0x0227] = 0x262ec, + [0x0228] = 0x262ed, [0x0229] = 0x262ee, [0x022a] = 0x262df, [0x022b] = 0x262f2, + [0x022c] = 0x2630d, [0x022d] = 0x2630e, [0x022e] = 0x20186, [0x022f] = 0x263a9, + [0x0230] = 0x263a4, [0x0231] = 0x263a5, [0x0232] = 0x2645f, [0x0233] = 0x2645a, + [0x0234] = 0x26466, [0x0235] = 0x26468, [0x0236] = 0x2646a, [0x0237] = 0x26464, + [0x0238] = 0x26465, [0x0239] = 0x264c1, [0x023a] = 0x264d8, [0x023c] = 0x264d9, + [0x023d] = 0x26509, [0x023e] = 0x265aa, [0x023f] = 0x265a3, [0x0240] = 0x265b9, + [0x0241] = 0x259e2, [0x0242] = 0x265a5, [0x0243] = 0x265ab, [0x0244] = 0x26620, + [0x0245] = 0x26789, [0x0246] = 0x2678b, [0x0247] = 0x267db, [0x0248] = 0x267e4, + [0x0249] = 0x267ef, [0x024a] = 0x267e2, [0x024b] = 0x267e9, [0x024c] = 0x267f0, + [0x024d] = 0x267f3, [0x024e] = 0x267dd, [0x024f] = 0x2681e, [0x0250] = 0x2691d, + [0x0251] = 0x26946, [0x0252] = 0x2697c, [0x0253] = 0x26980, [0x0254] = 0x26981, + [0x0255] = 0x26982, [0x0256] = 0x26987, [0x0257] = 0x26988, [0x0258] = 0x2698a, + [0x0259] = 0x2698c, [0x025a] = 0x269e7, [0x025b] = 0x269eb, [0x025c] = 0x269ea, + [0x025d] = 0x26a68, [0x025e] = 0x26a6b, [0x025f] = 0x26a69, [0x0260] = 0x26a66, + [0x0261] = 0x26a6a, [0x0262] = 0x26a65, [0x0263] = 0x26ae5, [0x0264] = 0x26ae4, + [0x0265] = 0x26ae6, [0x0266] = 0x26d18, [0x0267] = 0x26e24, [0x0268] = 0x26e48, + [0x0269] = 0x26e2f, [0x026a] = 0x26e7e, [0x026b] = 0x26d89, [0x026c] = 0x26e1e, + [0x026d] = 0x26e49, [0x026e] = 0x26e26, [0x026f] = 0x26e09, [0x0270] = 0x26e34, + [0x0271] = 0x26e2d, [0x0272] = 0x26e4a, [0x0273] = 0x26e15, [0x0275] = 0x26e33, + [0x0276] = 0x26e28, [0x0277] = 0x26e27, [0x0278] = 0x26e20, [0x0279] = 0x26e2b, + [0x027a] = 0x26e29, [0x027b] = 0x26e6a, [0x027c] = 0x26e0b, [0x027d] = 0x26e0e, + [0x027e] = 0x26e1c, [0x027f] = 0x26dff, [0x0281] = 0x26e35, [0x0282] = 0x26e11, + [0x0283] = 0x26e4b, [0x0284] = 0x26e4c, [0x0285] = 0x26e1f, [0x0286] = 0x26e0f, + [0x0287] = 0x26e39, [0x0288] = 0x26e68, [0x0289] = 0x26e1d, [0x028a] = 0x26e08, + [0x028b] = 0x26e0c, [0x028c] = 0x26e0d, [0x028d] = 0x26e62, [0x028e] = 0x26eaf, + [0x028f] = 0x26e32, [0x0290] = 0x26e2c, [0x0291] = 0x26e64, [0x0292] = 0x26e04, + [0x0293] = 0x26e16, [0x0294] = 0x26e4d, [0x0295] = 0x26e07, [0x0296] = 0x26eae, + [0x0297] = 0x271d4, [0x0298] = 0x271d1, [0x0299] = 0x271d5, [0x029a] = 0x271d0, + [0x029b] = 0x27371, [0x029c] = 0x2735d, [0x029d] = 0x2735b, [0x029e] = 0x2737a, + [0x02a0] = 0x2737f, [0x02a1] = 0x27379, [0x02a2] = 0x27367, [0x02a3] = 0x2739e, + [0x02a4] = 0x27394, [0x02a5] = 0x27364, [0x02a6] = 0x2735e, [0x02a7] = 0x27381, + [0x02a8] = 0x2735a, [0x02a9] = 0x27357, [0x02aa] = 0x2737c, [0x02ab] = 0x27398, + [0x02ac] = 0x27366, [0x02ad] = 0x2737e, [0x02ae] = 0x27382, [0x02af] = 0x27368, + [0x02b0] = 0x2735f, [0x02b1] = 0x27363, [0x02b2] = 0x27397, [0x02b3] = 0x45cd, + [0x02b4] = 0x27353, [0x02b5] = 0x2737b, [0x02b6] = 0x2737d, [0x02b7] = 0x27378, + [0x02b8] = 0x27406, [0x02b9] = 0x275c0, [0x02ba] = 0x275c2, [0x02bb] = 0x275c3, + [0x02bc] = 0x276dc, [0x02bd] = 0x276e6, [0x02be] = 0x276ec, [0x02bf] = 0x276f2, + [0x02c0] = 0x276e8, [0x02c1] = 0x276eb, [0x02c2] = 0x276ea, [0x02c3] = 0x276e5, + [0x02c4] = 0x276e0, [0x02c5] = 0x276d0, [0x02c6] = 0x276d8, [0x02c7] = 0x276d5, + [0x02c8] = 0x276d3, [0x02c9] = 0x276e4, [0x02ca] = 0x276f3, [0x02cb] = 0x276db, + [0x02cc] = 0x2772f, [0x02cd] = 0x277f9, [0x02ce] = 0x2785d, [0x02cf] = 0x2785b, + [0x02d0] = 0x2784c, [0x02d1] = 0x27858, [0x02d2] = 0x27860, [0x02d3] = 0x27853, + [0x02d4] = 0x27850, [0x02d5] = 0x27907, [0x02d6] = 0x27908, [0x02d7] = 0x278f4, + [0x02d8] = 0x278f6, [0x02d9] = 0x27904, [0x02da] = 0x278fd, [0x02db] = 0x27905, + [0x02dc] = 0x27a28, [0x02dd] = 0x27a56, [0x02de] = 0x27a42, [0x02df] = 0x27a5c, + [0x02e0] = 0x27a3d, [0x02e1] = 0x27a2f, [0x02e2] = 0x27a2b, [0x02e3] = 0x27a58, + [0x02e4] = 0x27a61, [0x02e5] = 0x27a2c, [0x02e6] = 0x27a51, [0x02e7] = 0x27a50, + [0x02e8] = 0x27a3c, [0x02e9] = 0x27a36, [0x02ea] = 0x46f6, [0x02eb] = 0x27a60, + [0x02ec] = 0x27a5b, [0x02ed] = 0x27a2e, [0x02ee] = 0x27a40, [0x02ef] = 0x27a5f, + [0x02f0] = 0x27a26, [0x02f1] = 0x27a2d, [0x02f2] = 0x27a5e, [0x02f3] = 0x27a3b, + [0x02f4] = 0x27bef, [0x02f5] = 0x27bf3, [0x02f6] = 0x27bee, [0x02f7] = 0x27bed, + [0x02f8] = 0x27c5a, [0x02f9] = 0x27c62, [0x02fa] = 0x27c5b, [0x02fb] = 0x27c5f, + [0x02fc] = 0x27c5e, [0x02fd] = 0x27c64, [0x02fe] = 0x27ce0, [0x02ff] = 0x27ce1, + [0x0300] = 0x27ce5, [0x0301] = 0x27da5, [0x0302] = 0x27d9b, [0x0303] = 0x27d9f, + [0x0304] = 0x27d9c, [0x0305] = 0x477a, [0x0306] = 0x27daa, [0x0307] = 0x27da4, + [0x0308] = 0x27da3, [0x0309] = 0x27e67, [0x030a] = 0x27f26, [0x030b] = 0x27f1a, + [0x030c] = 0x47b8, [0x030d] = 0x27f1c, [0x030e] = 0x27f15, [0x030f] = 0x27f1b, + [0x0310] = 0x27f18, [0x0311] = 0x27f1e, [0x0312] = 0x27f25, [0x0314] = 0x2807b, + [0x0315] = 0x28075, [0x0316] = 0x28093, [0x0317] = 0x2808f, [0x0318] = 0x2807c, + [0x0319] = 0x2809b, [0x031a] = 0x28088, [0x031b] = 0x28091, [0x031c] = 0x2807e, + [0x031d] = 0x4801, [0x031e] = 0x28086, [0x031f] = 0x2825b, [0x0320] = 0x28254, + [0x0321] = 0x28335, [0x0322] = 0x28340, [0x0323] = 0x28337, [0x0324] = 0x28329, + [0x0325] = 0x28326, [0x0326] = 0x28323, [0x0327] = 0x28330, [0x0328] = 0x28320, + [0x0329] = 0x28328, [0x032a] = 0x28332, [0x032b] = 0x2832a, [0x032c] = 0x28331, + [0x032d] = 0x28324, [0x032e] = 0x28341, [0x032f] = 0x28342, [0x0330] = 0x28343, + [0x0331] = 0x28325, [0x0332] = 0x28338, [0x0333] = 0x2841c, [0x0334] = 0x2841d, + [0x0335] = 0x2841e, [0x0336] = 0x284f6, [0x0337] = 0x285a5, [0x0338] = 0x28589, + [0x0339] = 0x2859d, [0x033a] = 0x2858a, [0x033b] = 0x28587, [0x033c] = 0x285ab, + [0x033d] = 0x28586, [0x033e] = 0x2859e, [0x033f] = 0x28593, [0x0340] = 0x285a1, + [0x0341] = 0x28588, [0x0342] = 0x285a3, [0x0343] = 0x2859f, [0x0344] = 0x285a0, + [0x0345] = 0x286ff, [0x0346] = 0x28700, [0x0347] = 0x28702, [0x0348] = 0x286f8, + [0x0349] = 0x286f7, [0x034a] = 0x28701, [0x034b] = 0x28787, [0x034c] = 0x28789, + [0x034d] = 0x28776, [0x034e] = 0x2876e, [0x034f] = 0x28777, [0x0350] = 0x28782, + [0x0351] = 0x28785, [0x0352] = 0x28783, [0x0353] = 0x28784, [0x0354] = 0x28857, + [0x0355] = 0x2884b, [0x0356] = 0x28856, [0x0357] = 0x2885d, [0x0358] = 0x28860, + [0x0359] = 0x2884d, [0x035a] = 0x28855, [0x035b] = 0x28854, [0x035c] = 0x28853, + [0x035d] = 0x28850, [0x035e] = 0x28863, [0x035f] = 0x28862, [0x0360] = 0x28917, + [0x0361] = 0x28916, [0x0362] = 0x2892d, [0x0363] = 0x289d9, [0x0364] = 0x289bf, + [0x0365] = 0x492f, [0x0366] = 0x289b2, [0x0367] = 0x289ac, [0x0368] = 0x289b0, + [0x0369] = 0x289cf, [0x036a] = 0x289b8, [0x036b] = 0x4931, [0x036c] = 0x289d3, + [0x036d] = 0x289b1, [0x036e] = 0x289af, [0x036f] = 0x289ce, [0x0370] = 0x289b4, + [0x0371] = 0x289b7, [0x0372] = 0x289d5, [0x0373] = 0x499c, [0x0374] = 0x28d38, + [0x0375] = 0x28d28, [0x0376] = 0x28d3f, [0x0377] = 0x28d40, [0x0378] = 0x28d41, + [0x0379] = 0x28d33, [0x037a] = 0x28d2b, [0x037b] = 0x28d2e, [0x037c] = 0x28f11, + [0x037d] = 0x28f18, [0x037e] = 0x28f17, [0x037f] = 0x28f19, [0x0380] = 0x28f16, + [0x0381] = 0x49e6, [0x0382] = 0x28f0d, [0x0383] = 0x28f26, [0x0384] = 0x28f79, + [0x0385] = 0x28fd8, [0x0386] = 0x28ff3, [0x0387] = 0x28fd7, [0x0388] = 0x28fcc, + [0x0389] = 0x28fcf, [0x038a] = 0x28fcb, [0x038b] = 0x28fd1, [0x038c] = 0x28fce, + [0x038d] = 0x28fd4, [0x038e] = 0x28fd5, [0x038f] = 0x28fd3, [0x0390] = 0x28fd6, + [0x0391] = 0x28fcd, [0x0392] = 0x28fda, [0x0393] = 0x28fd2, [0x0394] = 0x28fde, + [0x0395] = 0x290cc, [0x0396] = 0x290b8, [0x0397] = 0x290b7, [0x0398] = 0x290c2, + [0x0399] = 0x290c3, [0x039a] = 0x291fa, [0x039b] = 0x291f9, [0x039c] = 0x2921f, + [0x039d] = 0x2921d, [0x039e] = 0x24382, [0x039f] = 0x292a6, [0x03a0] = 0x29290, + [0x03a1] = 0x2929e, [0x03a2] = 0x29298, [0x03a3] = 0x29293, [0x03a4] = 0x29292, + [0x03a5] = 0x292a5, [0x03a6] = 0x29295, [0x03a7] = 0x293a9, [0x03a8] = 0x293a8, + [0x03a9] = 0x293aa, [0x03aa] = 0x293ab, [0x03ab] = 0x293ac, [0x03ac] = 0x2941f, + [0x03ad] = 0x29422, [0x03ae] = 0x294aa, [0x03af] = 0x29496, [0x03b0] = 0x29491, + [0x03b1] = 0x294ab, [0x03b2] = 0x294a2, [0x03b3] = 0x294a4, [0x03b4] = 0x2949d, + [0x03b5] = 0x29497, [0x03b6] = 0x2947d, [0x03b7] = 0x2949f, [0x03b8] = 0x2949c, + [0x03b9] = 0x29499, [0x03ba] = 0x294a6, [0x03bb] = 0x29492, [0x03bc] = 0x294a7, + [0x03bd] = 0x295c9, [0x03be] = 0x295c8, [0x03bf] = 0x295c7, [0x03c0] = 0x295cb, + [0x03c1] = 0x29674, [0x03c2] = 0x296c9, [0x03c3] = 0x4b38, [0x03c4] = 0x296d2, + [0x03c5] = 0x296db, [0x03c6] = 0x296eb, [0x03c7] = 0x296e9, [0x03c8] = 0x296ef, + [0x03c9] = 0x296ee, [0x03ca] = 0x296f9, [0x03cb] = 0x296de, [0x03cc] = 0x29816, + [0x03cd] = 0x29845, [0x03ce] = 0x2987f, [0x03cf] = 0x29898, [0x03d0] = 0x2989f, + [0x03d1] = 0x29886, [0x03d2] = 0x29890, [0x03d3] = 0x2989a, [0x03d4] = 0x2989d, + [0x03d5] = 0x2988d, [0x03d6] = 0x2989c, [0x03d7] = 0x298a0, [0x03d8] = 0x298a7, + [0x03d9] = 0x2988f, [0x03da] = 0x29a41, [0x03db] = 0x29a35, [0x03dc] = 0x29a37, + [0x03dd] = 0x29a30, [0x03de] = 0x29a3a, [0x03df] = 0x29a36, [0x03e1] = 0x29aca, + [0x03e2] = 0x29b12, [0x03e3] = 0x29b15, [0x03e4] = 0x29b22, [0x03e5] = 0x29b13, + [0x03e6] = 0x29b18, [0x03e7] = 0x29b21, [0x03e8] = 0x29c10, [0x03e9] = 0x29c20, + [0x03ea] = 0x29c2f, [0x03eb] = 0x29ca5, [0x03ec] = 0x29ca3, [0x03ed] = 0x29cb6, + [0x03ee] = 0x29cab, [0x03ef] = 0x29d68, [0x03f0] = 0x29d67, [0x03f1] = 0x29d6f, + [0x03f2] = 0x29d77, [0x03f3] = 0x29d64, [0x03f4] = 0x29d78, [0x03f5] = 0x4c3a, + [0x03f6] = 0x29d76, [0x03f7] = 0x29d6e, [0x03f8] = 0x4cb1, [0x03f9] = 0x29fd0, + [0x03fa] = 0x29fb3, [0x03fb] = 0x29fcb, [0x03fc] = 0x29fd6, [0x03fd] = 0x29fb1, + [0x03fe] = 0x29fb4, [0x03ff] = 0x29fd7, [0x0400] = 0x29fc6, [0x0401] = 0x29fba, + [0x0402] = 0x29fd1, [0x0403] = 0x29fd2, [0x0404] = 0x29fb5, [0x0405] = 0x29fc4, + [0x0406] = 0x29fcc, [0x0407] = 0x29fbb, [0x0408] = 0x29fb2, [0x0409] = 0x2a25b, + [0x040a] = 0x2a25a, [0x040b] = 0x2a259, [0x040c] = 0x2a299, [0x040d] = 0x2a294, + [0x040e] = 0x2a296, [0x040f] = 0x2a293, [0x0410] = 0x2a291, [0x0411] = 0x2a28f, + [0x0412] = 0x2a298, [0x0413] = 0x2a30c, [0x0414] = 0x2a30a, [0x0415] = 0x2a30e, + [0x0416] = 0x2a312, [0x0417] = 0x2a311, [0x0418] = 0x2a30b, [0x0419] = 0x2a39a, + [0x041a] = 0x4d47, [0x041b] = 0x2a3b4, [0x041c] = 0x4d51, [0x041d] = 0x2a41c, + [0x041e] = 0x2a420, [0x041f] = 0x2a421, [0x0420] = 0x2a4d3, [0x0421] = 0x2a4d2, + [0x0422] = 0x2a538, [0x0424] = 0x24ccf, [0x0425] = 0x2011d, [0x0426] = 0x20192, + [0x0427] = 0x2018f, [0x0428] = 0x2018c, [0x0429] = 0x203ea, [0x042a] = 0x204b9, + [0x042b] = 0x2056e, [0x042c] = 0x205a0, [0x042d] = 0x291dd, [0x042e] = 0x20612, + [0x042f] = 0x20617, [0x0430] = 0x2066d, [0x0431] = 0x20805, [0x0432] = 0x207fb, + [0x0433] = 0x207fd, [0x0434] = 0x20806, [0x0435] = 0x20800, [0x0436] = 0x207ff, + [0x0437] = 0x207fe, [0x0438] = 0x208b6, [0x0439] = 0x20905, [0x043a] = 0x20907, + [0x043b] = 0x20abc, [0x043c] = 0x20abb, [0x043d] = 0x20b8b, [0x043e] = 0x20b87, + [0x043f] = 0x27bfb, [0x0440] = 0x20fe7, [0x0441] = 0x20fe6, [0x0442] = 0x20fe2, + [0x0443] = 0x285d3, [0x0444] = 0x20fd9, [0x0445] = 0x20fca, [0x0446] = 0x21012, + [0x0447] = 0x21010, [0x0448] = 0x20fdc, [0x0449] = 0x20fd0, [0x044a] = 0x20f8b, + [0x044b] = 0x21013, [0x044c] = 0x22a10, [0x044d] = 0x20fda, [0x044f] = 0x20ffd, + [0x0450] = 0x20fe5, [0x0451] = 0x20fcc, [0x0452] = 0x21039, [0x0453] = 0x20fc7, + [0x0454] = 0x20fd8, [0x0455] = 0x21460, [0x0456] = 0x21464, [0x0457] = 0x21486, + [0x0458] = 0x2145e, [0x0459] = 0x21466, [0x045a] = 0x2145f, [0x045b] = 0x21477, + [0x045c] = 0x21482, [0x045d] = 0x21496, [0x045e] = 0x2153e, [0x045f] = 0x21579, + [0x0460] = 0x2157a, [0x0461] = 0x21688, [0x0462] = 0x21689, [0x0463] = 0x2168c, + [0x0464] = 0x243e0, [0x0465] = 0x2167b, [0x0466] = 0x21686, [0x0467] = 0x21894, + [0x0468] = 0x21897, [0x0469] = 0x218b7, [0x046a] = 0x218b5, [0x046b] = 0x218b8, + [0x046c] = 0x21893, [0x046d] = 0x218b2, [0x046e] = 0x218b4, [0x046f] = 0x21899, + [0x0470] = 0x218c3, [0x0471] = 0x2189d, [0x0472] = 0x2189b, [0x0473] = 0x218a3, + [0x0474] = 0x3747, [0x0475] = 0x2199f, [0x0476] = 0x2199e, [0x0477] = 0x219a3, + [0x0478] = 0x219a0, [0x0479] = 0x219a1, [0x047a] = 0x21ac5, [0x047b] = 0x21ac6, + [0x047c] = 0x21abe, [0x047d] = 0x21ac4, [0x047e] = 0x21abf, [0x047f] = 0x21b4c, + [0x0480] = 0x21b4a, [0x0481] = 0x21bb1, [0x0482] = 0x21c15, [0x0483] = 0x21c17, + [0x0484] = 0x21c10, [0x0485] = 0x21c18, [0x0486] = 0x21ce0, [0x0487] = 0x21cdf, + [0x0488] = 0x21d27, [0x0489] = 0x21f43, [0x048a] = 0x21f48, [0x048b] = 0x21f1d, + [0x048c] = 0x21f50, [0x048d] = 0x21f58, [0x048e] = 0x21f47, [0x048f] = 0x21f54, + [0x0490] = 0x21f53, [0x0491] = 0x21f40, [0x0492] = 0x21f55, [0x0493] = 0x3817, + [0x0494] = 0x21f5a, [0x0495] = 0x22470, [0x0496] = 0x2215b, [0x0497] = 0x2214d, + [0x0498] = 0x22156, [0x0499] = 0x2214f, [0x049b] = 0x22159, [0x049d] = 0x22154, + [0x049e] = 0x22153, [0x049f] = 0x22150, [0x04a0] = 0x222b3, [0x04a1] = 0x2236e, + [0x04a2] = 0x38a3, [0x04a3] = 0x2236f, [0x04a4] = 0x22393, [0x04a5] = 0x22429, + [0x04a6] = 0x22425, [0x04a7] = 0x22428, [0x04a8] = 0x2246f, [0x04a9] = 0x232b8, + [0x04ab] = 0x224b3, [0x04ac] = 0x22579, [0x04ad] = 0x2257e, [0x04ae] = 0x2257c, + [0x04af] = 0x22583, [0x04b1] = 0x22800, [0x04b2] = 0x22834, [0x04b3] = 0x22865, + [0x04b4] = 0x22836, [0x04b5] = 0x228a7, [0x04b6] = 0x22859, [0x04b7] = 0x22858, + [0x04b8] = 0x22831, [0x04b9] = 0x22862, [0x04ba] = 0x22838, [0x04bb] = 0x22873, + [0x04bc] = 0x2283e, [0x04bd] = 0x22855, [0x04be] = 0x22854, [0x04bf] = 0x22895, + [0x04c1] = 0x228a5, [0x04c2] = 0x22894, [0x04c3] = 0x2289a, [0x04c4] = 0x2289b, + [0x04c5] = 0x22899, [0x04c6] = 0x2289f, [0x04c7] = 0x22853, [0x04c8] = 0x22a12, + [0x04c9] = 0x22a0a, [0x04ca] = 0x22a09, [0x04cb] = 0x22a0c, [0x04cc] = 0x22a0b, + [0x04cd] = 0x22a0e, [0x04ce] = 0x22a0d, [0x04cf] = 0x22a08, [0x04d0] = 0x22d38, + [0x04d1] = 0x22d3a, [0x04d2] = 0x22d37, [0x04d3] = 0x22d3d, [0x04d4] = 0x22d2d, + [0x04d5] = 0x22d82, [0x04d6] = 0x22d95, [0x04d7] = 0x22d87, [0x04d8] = 0x22d9d, + [0x04d9] = 0x22db5, [0x04da] = 0x22d81, [0x04db] = 0x22dc7, [0x04dc] = 0x22d9b, + [0x04dd] = 0x22d98, [0x04de] = 0x22d94, [0x04df] = 0x22d86, [0x04e0] = 0x22d90, + [0x04e1] = 0x22d34, [0x04e2] = 0x22d8e, [0x04e3] = 0x22d85, [0x04e4] = 0x22da6, + [0x04e5] = 0x22d96, [0x04e6] = 0x22fea, [0x04e7] = 0x22fdf, [0x04e8] = 0x232bd, + [0x04e9] = 0x22ff7, [0x04ea] = 0x22feb, [0x04eb] = 0x22fe0, [0x04ec] = 0x22fe8, + [0x04ed] = 0x22fe1, [0x04ee] = 0x22fe9, [0x04ef] = 0x22fee, [0x04f0] = 0x22fe5, + [0x04f1] = 0x22fec, [0x04f2] = 0x23063, [0x04f3] = 0x230c6, [0x04f4] = 0x230c2, + [0x04f5] = 0x230c1, [0x04f6] = 0x230c0, [0x04f7] = 0x230c3, [0x04f8] = 0x23118, + [0x04f9] = 0x232ae, [0x04fa] = 0x232a3, [0x04fb] = 0x232c5, [0x04fc] = 0x232a0, + [0x04fd] = 0x232b4, [0x04fe] = 0x232a5, [0x04ff] = 0x3b1e, [0x0500] = 0x232a4, + [0x0501] = 0x232a8, [0x0502] = 0x232a6, [0x0503] = 0x236a8, [0x0504] = 0x2368d, + [0x0505] = 0x23682, [0x0506] = 0x2369e, [0x0507] = 0x23689, [0x0508] = 0x23683, + [0x0509] = 0x23691, [0x050a] = 0x236a6, [0x050b] = 0x2369a, [0x050c] = 0x23690, + [0x050d] = 0x23685, [0x050e] = 0x2367d, [0x0510] = 0x2369b, [0x0511] = 0x236a5, + [0x0512] = 0x236f0, [0x0513] = 0x23696, [0x0514] = 0x23688, [0x0515] = 0x236d6, + [0x0516] = 0x236d8, [0x0517] = 0x23686, [0x0518] = 0x236a4, [0x0519] = 0x23697, + [0x051a] = 0x2391c, [0x051b] = 0x23919, [0x051c] = 0x2399e, [0x051d] = 0x2399f, + [0x051e] = 0x2399d, [0x051f] = 0x2399c, [0x0520] = 0x23a5d, [0x0521] = 0x23a5e, + [0x0522] = 0x23a73, [0x0523] = 0x23a63, [0x0524] = 0x23abe, [0x0525] = 0x23ac1, + [0x0526] = 0x23abc, [0x0527] = 0x23abf, [0x0528] = 0x23abb, [0x0529] = 0x23abd, + [0x052a] = 0x23b13, [0x052b] = 0x23b14, [0x052c] = 0x23bf8, [0x052d] = 0x23bfa, + [0x052e] = 0x23c06, [0x052f] = 0x23bfe, [0x0530] = 0x23c51, [0x0531] = 0x2400b, + [0x0532] = 0x23ff1, [0x0533] = 0x23fa9, [0x0534] = 0x23fd5, [0x0535] = 0x23fdc, + [0x0536] = 0x23fcb, [0x0537] = 0x23ff2, [0x0538] = 0x2405f, [0x0539] = 0x23fdb, + [0x053a] = 0x23fd6, [0x053b] = 0x23fd9, [0x053c] = 0x23fd1, [0x053d] = 0x23fcf, + [0x053e] = 0x23fd8, [0x053f] = 0x23fe0, [0x0540] = 0x23fd4, [0x0541] = 0x23ff3, + [0x0542] = 0x24005, [0x0543] = 0x23fce, [0x0544] = 0x23ff4, [0x0546] = 0x23fda, + [0x0547] = 0x2400e, [0x0548] = 0x24006, [0x0549] = 0x23fd7, [0x054a] = 0x23fcd, + [0x054b] = 0x24007, [0x054c] = 0x23fe1, [0x054d] = 0x24008, [0x054e] = 0x243be, + [0x054f] = 0x243ef, [0x0550] = 0x243d9, [0x0551] = 0x243da, [0x0552] = 0x71d7, + [0x0553] = 0x243a0, [0x0554] = 0x243df, [0x0555] = 0x2439e, [0x0556] = 0x243bf, + [0x0557] = 0x243af, [0x0558] = 0x243a7, [0x0559] = 0x243aa, [0x055a] = 0x243f4, + [0x055b] = 0x243ae, [0x055c] = 0x243b5, [0x055d] = 0x243b8, [0x055e] = 0x243db, + [0x055f] = 0x243c0, [0x0560] = 0x243b7, [0x0561] = 0x243a2, [0x0562] = 0x243dd, + [0x0563] = 0x243a1, [0x0564] = 0x243a5, [0x0565] = 0x243b4, [0x0566] = 0x243a6, + [0x0567] = 0x243ab, [0x0568] = 0x243ac, [0x0569] = 0x2439f, [0x056a] = 0x243b1, + [0x056b] = 0x243fc, [0x056c] = 0x2452e, [0x056d] = 0x24530, [0x056e] = 0x24599, + [0x056f] = 0x245f8, [0x0570] = 0x245f6, [0x0571] = 0x246f4, [0x0572] = 0x246eb, + [0x0573] = 0x246e1, [0x0574] = 0x246e4, [0x0575] = 0x24875, [0x0576] = 0x24869, + [0x0577] = 0x3e9a, [0x0578] = 0x24899, [0x0579] = 0x2489e, [0x057a] = 0x24894, + [0x057b] = 0x24893, [0x057c] = 0x24891, [0x057d] = 0x24a19, [0x057e] = 0x24a17, + [0x057f] = 0x24a49, [0x0580] = 0x24a47, [0x0581] = 0x24a48, [0x0582] = 0x24a52, + [0x0583] = 0x24a40, [0x0584] = 0x24a63, [0x0585] = 0x24a46, [0x0586] = 0x24a5f, + [0x0587] = 0x24b0e, [0x0588] = 0x24b85, [0x0589] = 0x24b87, [0x058a] = 0x24bcb, + [0x058b] = 0x24bcc, [0x058c] = 0x24bc9, [0x058d] = 0x24ccb, [0x058e] = 0x21ce7, + [0x058f] = 0x24d20, [0x0590] = 0x24e5f, [0x0591] = 0x24e60, [0x0592] = 0x24e6a, + [0x0593] = 0x24e76, [0x0594] = 0x24e73, [0x0595] = 0x24e71, [0x0596] = 0x24e66, + [0x0597] = 0x3fc2, [0x0598] = 0x24e6b, [0x0599] = 0x24e79, [0x059a] = 0x24e7b, + [0x059b] = 0x24f3c, [0x059c] = 0x24f9e, [0x059d] = 0x24f9c, [0x059e] = 0x2501c, + [0x059f] = 0x2501e, [0x05a0] = 0x25021, [0x05a1] = 0x25096, [0x05a2] = 0x250a1, + [0x05a3] = 0x250b6, [0x05a4] = 0x250a0, [0x05a5] = 0x25094, [0x05a6] = 0x25097, + [0x05a7] = 0x25281, [0x05a8] = 0x25286, [0x05a9] = 0x252c0, [0x05aa] = 0x2528a, + [0x05ac] = 0x25285, [0x05ad] = 0x25295, [0x05ae] = 0x25249, [0x05af] = 0x25282, + [0x05b0] = 0x25284, [0x05b1] = 0x22878, [0x05b2] = 0x25290, [0x05b3] = 0x252b1, + [0x05b4] = 0x253fe, [0x05b5] = 0x253fb, [0x05b6] = 0x25550, [0x05b7] = 0x25556, + [0x05b8] = 0x2555a, [0x05b9] = 0x2554c, [0x05ba] = 0x40dc, [0x05bb] = 0x25557, + [0x05bc] = 0x256e1, [0x05bd] = 0x256d9, [0x05be] = 0x256db, [0x05bf] = 0x256f4, + [0x05c0] = 0x25745, [0x05c1] = 0x25747, [0x05c2] = 0x25874, [0x05c3] = 0x2586b, + [0x05c4] = 0x25868, [0x05c5] = 0x25869, [0x05c6] = 0x25879, [0x05c8] = 0x25880, + [0x05c9] = 0x25881, [0x05ca] = 0x25861, [0x05cb] = 0x25870, [0x05cc] = 0x2586f, + [0x05cd] = 0x25873, [0x05ce] = 0x2585d, [0x05cf] = 0x259fa, [0x05d0] = 0x41b3, + [0x05d1] = 0x259f3, [0x05d2] = 0x25a0a, [0x05d3] = 0x25a17, [0x05d5] = 0x25ab0, + [0x05d6] = 0x25c3e, [0x05d7] = 0x25c46, [0x05d8] = 0x25c4f, [0x05d9] = 0x25c44, + [0x05da] = 0x25c69, [0x05db] = 0x25c33, [0x05dc] = 0x25c2f, [0x05dd] = 0x25c4e, + [0x05de] = 0x25c3a, [0x05df] = 0x25c2b, [0x05e0] = 0x25ca9, [0x05e1] = 0x25c50, + [0x05e2] = 0x25c45, [0x05e3] = 0x25c37, [0x05e4] = 0x25c25, [0x05e5] = 0x25c2c, + [0x05e6] = 0x25c3f, [0x05e7] = 0x25c34, [0x05e8] = 0x25c29, [0x05e9] = 0x25c1e, + [0x05ea] = 0x25c3d, [0x05eb] = 0x25eed, [0x05ed] = 0x25ef3, [0x05ee] = 0x25eea, + [0x05ef] = 0x25eeb, [0x05f0] = 0x260cc, [0x05f1] = 0x260ce, [0x05f2] = 0x260d0, + [0x05f3] = 0x260e3, [0x05f4] = 0x260e0, [0x05f5] = 0x260d1, [0x05f6] = 0x260dc, + [0x05f7] = 0x260dd, [0x05f8] = 0x260f0, [0x05f9] = 0x260db, [0x05fa] = 0x260e5, + [0x05fb] = 0x260f1, [0x05fc] = 0x260c9, [0x05fd] = 0x260e8, [0x05fe] = 0x260e7, + [0x05ff] = 0x260c8, [0x0600] = 0x260de, [0x0601] = 0x260cd, [0x0602] = 0x260c5, + [0x0603] = 0x260c6, [0x0604] = 0x260e4, [0x0605] = 0x260c3, [0x0606] = 0x262fb, + [0x0607] = 0x262fc, [0x0608] = 0x262fe, [0x0609] = 0x26303, [0x060a] = 0x26300, + [0x060b] = 0x262fd, [0x060c] = 0x26305, [0x060d] = 0x26313, [0x060e] = 0x263a7, + [0x060f] = 0x263b4, [0x0610] = 0x26470, [0x0611] = 0x26474, [0x0612] = 0x26471, + [0x0613] = 0x26475, [0x0614] = 0x2647d, [0x0615] = 0x26473, [0x0616] = 0x264c4, + [0x0617] = 0x264c3, [0x0618] = 0x264de, [0x0619] = 0x264dd, [0x061a] = 0x26511, + [0x061b] = 0x2650f, [0x061c] = 0x26510, [0x061d] = 0x265c3, [0x061e] = 0x265c2, + [0x061f] = 0x265ca, [0x0620] = 0x265c1, [0x0621] = 0x26623, [0x0622] = 0x267b1, + [0x0623] = 0x26824, [0x0624] = 0x26811, [0x0625] = 0x26825, [0x0626] = 0x2680a, + [0x0627] = 0x2681f, [0x0628] = 0x26820, [0x0629] = 0x26814, [0x062a] = 0x26828, + [0x062b] = 0x26803, [0x062c] = 0x26812, [0x062d] = 0x2680b, [0x062e] = 0x26817, + [0x062f] = 0x22a11, [0x0630] = 0x26949, [0x0631] = 0x26989, [0x0632] = 0x26990, + [0x0633] = 0x2698f, [0x0634] = 0x26996, [0x0635] = 0x26995, [0x0636] = 0x26993, + [0x0637] = 0x269ed, [0x0638] = 0x269f0, [0x0639] = 0x243de, [0x063a] = 0x26a85, + [0x063b] = 0x26a77, [0x063c] = 0x26a7a, [0x063d] = 0x26a84, [0x063e] = 0x26a79, + [0x063f] = 0x26a7d, [0x0640] = 0x26a7b, [0x0641] = 0x26aed, [0x0642] = 0x26aec, + [0x0643] = 0x26df6, [0x0644] = 0x26d9b, [0x0645] = 0x26e9d, [0x0646] = 0x26f11, + [0x0647] = 0x26ec4, [0x0648] = 0x26ec8, [0x0649] = 0x26edf, [0x064a] = 0x26ebf, + [0x064b] = 0x26eb3, [0x064c] = 0x26eba, [0x064d] = 0x26f10, [0x064e] = 0x26f06, + [0x064f] = 0x26e88, [0x0650] = 0x26e9a, [0x0651] = 0x26ee0, [0x0652] = 0x26ecc, + [0x0653] = 0x26eb5, [0x0654] = 0x26ee1, [0x0655] = 0x26ebc, [0x0656] = 0x26ec6, + [0x0657] = 0x26f0b, [0x0658] = 0x26ea4, [0x0659] = 0x26e95, [0x065a] = 0x26ea3, + [0x065b] = 0x26ee2, [0x065c] = 0x26ecd, [0x065d] = 0x26ee3, [0x065e] = 0x26eab, + [0x065f] = 0x26ecb, [0x0660] = 0x26e8f, [0x0662] = 0x26ea9, [0x0663] = 0x26f24, + [0x0664] = 0x26ee4, [0x0665] = 0x26f12, [0x0666] = 0x26ee5, [0x0667] = 0x26f67, + [0x0668] = 0x26eaa, [0x0669] = 0x26ea0, [0x066a] = 0x26ee6, [0x066b] = 0x26ec1, + [0x066c] = 0x26ee7, [0x066d] = 0x26f0d, [0x066e] = 0x26e86, [0x066f] = 0x26eb0, + [0x0670] = 0x26e8b, [0x0671] = 0x26ee8, [0x0672] = 0x26ec9, [0x0673] = 0x26f19, + [0x0674] = 0x26ec0, [0x0675] = 0x26f0c, [0x0676] = 0x26ee9, [0x0677] = 0x26eea, + [0x0678] = 0x271ed, [0x0679] = 0x271e3, [0x067a] = 0x271e4, [0x067b] = 0x271e8, + [0x067c] = 0x271d2, [0x067d] = 0x271e2, [0x067e] = 0x8666, [0x067f] = 0x273cf, + [0x0680] = 0x273d1, [0x0681] = 0x273c3, [0x0682] = 0x273c9, [0x0683] = 0x273ea, + [0x0684] = 0x273b4, [0x0685] = 0x273dc, [0x0686] = 0x273bd, [0x0687] = 0x273e6, + [0x0688] = 0x273c8, [0x0689] = 0x273ec, [0x068a] = 0x273b2, [0x068b] = 0x273a9, + [0x068c] = 0x273d3, [0x068d] = 0x273c0, [0x068e] = 0x273e9, [0x068f] = 0x273d5, + [0x0690] = 0x45d9, [0x0691] = 0x273c5, [0x0692] = 0x45dd, [0x0693] = 0x273cb, + [0x0694] = 0x273d0, [0x0695] = 0x273d2, [0x0696] = 0x273e4, [0x0697] = 0x273e8, + [0x0698] = 0x273cd, [0x0699] = 0x273b6, [0x069a] = 0x273aa, [0x069b] = 0x273d4, + [0x069c] = 0x28449, [0x069d] = 0x273c1, [0x069e] = 0x273dd, [0x069f] = 0x273ce, + [0x06a0] = 0x275c9, [0x06a1] = 0x275ca, [0x06a2] = 0x276fd, [0x06a3] = 0x276d9, + [0x06a4] = 0x276ff, [0x06a5] = 0x27704, [0x06a6] = 0x276fa, [0x06a7] = 0x27706, + [0x06a8] = 0x27715, [0x06a9] = 0x27711, [0x06aa] = 0x27707, [0x06ab] = 0x2770b, + [0x06ac] = 0x277fc, [0x06ad] = 0x277fd, [0x06ae] = 0x2786d, [0x06af] = 0x27865, + [0x06b0] = 0x27914, [0x06b1] = 0x27913, [0x06b2] = 0x2790c, [0x06b3] = 0x2790b, + [0x06b4] = 0x27918, [0x06b5] = 0x27922, [0x06b6] = 0x27a7d, [0x06b7] = 0x27a6f, + [0x06b8] = 0x27a75, [0x06b9] = 0x27a7b, [0x06ba] = 0x27a80, [0x06bb] = 0x27a7f, + [0x06bc] = 0x27a96, [0x06bd] = 0x27a6d, [0x06be] = 0x27a6b, [0x06bf] = 0x27a86, + [0x06c0] = 0x27a73, [0x06c1] = 0x27a62, [0x06c2] = 0x27a77, [0x06c3] = 0x27a81, + [0x06c4] = 0x27a69, [0x06c5] = 0x27a82, [0x06c6] = 0x27a97, [0x06c7] = 0x27a84, + [0x06c8] = 0x46fc, [0x06c9] = 0x27a78, [0x06cb] = 0x27a7a, [0x06cc] = 0x27a6a, + [0x06cd] = 0x27a65, [0x06ce] = 0x27a7e, [0x06cf] = 0x27a94, [0x06d0] = 0x27bc2, + [0x06d1] = 0x27bc1, [0x06d2] = 0x27bf9, [0x06d3] = 0x27c71, [0x06d4] = 0x27c6b, + [0x06d5] = 0x27c6d, [0x06d6] = 0x27c6f, [0x06d7] = 0x27c6e, [0x06d8] = 0x27cf2, + [0x06d9] = 0x27ce8, [0x06da] = 0x27cef, [0x06db] = 0x27ce9, [0x06dc] = 0x27cea, + [0x06dd] = 0x27ced, [0x06de] = 0x27cf3, [0x06df] = 0x27ce6, [0x06e0] = 0x27dc9, + [0x06e1] = 0x27db4, [0x06e2] = 0x27db3, [0x06e3] = 0x27db9, [0x06e4] = 0x27dca, + [0x06e5] = 0x27db1, [0x06e6] = 0x27db6, [0x06e7] = 0x27dc7, [0x06e8] = 0x27dc4, + [0x06e9] = 0x27db7, [0x06ea] = 0x27e6f, [0x06eb] = 0x27f33, [0x06ec] = 0x27f32, + [0x06ed] = 0x27f1f, [0x06ef] = 0x27f2b, [0x06f0] = 0x27f30, [0x06f1] = 0x27f36, + [0x06f2] = 0x27f42, [0x06f3] = 0x27f41, [0x06f5] = 0x280a5, [0x06f6] = 0x280ab, + [0x06f7] = 0x280a9, [0x06f8] = 0x280b3, [0x06f9] = 0x280a7, [0x06fa] = 0x280a0, + [0x06fb] = 0x280d2, [0x06fc] = 0x280a8, [0x06fd] = 0x280b6, [0x06fe] = 0x280ac, + [0x06ff] = 0x280ae, [0x0700] = 0x280e6, [0x0701] = 0x28265, [0x0702] = 0x28347, + [0x0703] = 0x28363, [0x0704] = 0x2834d, [0x0705] = 0x2835f, [0x0706] = 0x2834b, + [0x0707] = 0x28360, [0x0708] = 0x28349, [0x0709] = 0x28353, [0x070b] = 0x8f3a, + [0x070c] = 0x28357, [0x070d] = 0x2834e, [0x070e] = 0x28352, [0x070f] = 0x28354, + [0x0710] = 0x28420, [0x0711] = 0x28422, [0x0712] = 0x285c1, [0x0713] = 0x285d7, + [0x0714] = 0x285d5, [0x0715] = 0x285c4, [0x0716] = 0x285d0, [0x0717] = 0x285bb, + [0x0718] = 0x285e2, [0x0719] = 0x285cb, [0x071a] = 0x285b8, [0x071b] = 0x285bf, + [0x071c] = 0x285d8, [0x071d] = 0x285c0, [0x071e] = 0x285ba, [0x071f] = 0x285b4, + [0x0720] = 0x285bc, [0x0721] = 0x285d4, [0x0722] = 0x285ed, [0x0723] = 0x285c2, + [0x0724] = 0x285d9, [0x0725] = 0x285cc, [0x0726] = 0x2872f, [0x0727] = 0x28723, + [0x0728] = 0x28796, [0x0729] = 0x2878d, [0x072a] = 0x2879e, [0x072b] = 0x28799, + [0x072c] = 0x28883, [0x072d] = 0x4907, [0x072e] = 0x2886a, [0x072f] = 0x28869, + [0x0730] = 0x28875, [0x0731] = 0x2886c, [0x0732] = 0x28880, [0x0733] = 0x2886e, + [0x0734] = 0x28881, [0x0735] = 0x28877, [0x0736] = 0x28876, [0x0737] = 0x28873, + [0x0738] = 0x28870, [0x0739] = 0x28884, [0x073a] = 0x28919, [0x073b] = 0x289f2, + [0x073c] = 0x933d, [0x073d] = 0x289ec, [0x073e] = 0x289eb, [0x073f] = 0x289f6, + [0x0740] = 0x289ef, [0x0741] = 0x289f4, [0x0742] = 0x289ee, [0x0743] = 0x289f3, + [0x0744] = 0x289ed, [0x0745] = 0x28c9b, [0x0746] = 0x28c98, [0x0747] = 0x28c94, + [0x0748] = 0x2147a, [0x0749] = 0x28c9a, [0x074b] = 0x28d4c, [0x074c] = 0x49a8, + [0x074d] = 0x28d57, [0x074e] = 0x28d51, [0x074f] = 0x28d62, [0x0750] = 0x28d52, + [0x0751] = 0x28d5c, [0x0752] = 0x28d53, [0x0754] = 0x28e85, [0x0755] = 0x28f2d, + [0x0756] = 0x28f3e, [0x0757] = 0x28f30, [0x0758] = 0x28f7d, [0x0759] = 0x28fe6, + [0x075a] = 0x28ff6, [0x075b] = 0x28fe4, [0x075c] = 0x28fe9, [0x075d] = 0x28fec, + [0x075e] = 0x28ff2, [0x075f] = 0x28fe8, [0x0760] = 0x28fe3, [0x0761] = 0x28feb, + [0x0762] = 0x28ff0, [0x0763] = 0x28fea, [0x0764] = 0x28fe7, [0x0765] = 0x28ffd, + [0x0766] = 0x28fe5, [0x0767] = 0x28fee, [0x0768] = 0x28ff5, [0x0769] = 0x28ff9, + [0x076a] = 0x28ff1, [0x076b] = 0x28ff4, [0x076d] = 0x29011, [0x076e] = 0x290de, + [0x076f] = 0x290d8, [0x0770] = 0x290dd, [0x0771] = 0x290db, [0x0772] = 0x290d3, + [0x0773] = 0x290e1, [0x0774] = 0x291de, [0x0775] = 0x291fc, [0x0776] = 0x29228, + [0x0777] = 0x292b7, [0x0778] = 0x292b8, [0x0779] = 0x292c7, [0x077a] = 0x292b2, + [0x077b] = 0x292a9, [0x077c] = 0x292b9, [0x077d] = 0x292bc, [0x077e] = 0x292b3, + [0x077f] = 0x292d1, [0x0780] = 0x293b0, [0x0781] = 0x293b1, [0x0782] = 0x293b6, + [0x0783] = 0x29404, [0x0784] = 0x2942c, [0x0785] = 0x294c1, [0x0786] = 0x2949e, + [0x0787] = 0x294ba, [0x0788] = 0x4aca, [0x0789] = 0x294d1, [0x078a] = 0x294d3, + [0x078b] = 0x294d4, [0x078c] = 0x294d5, [0x078d] = 0x294c5, [0x078e] = 0x294b6, + [0x078f] = 0x294b2, [0x0790] = 0x294b5, [0x0791] = 0x294c3, [0x0792] = 0x294b9, + [0x0793] = 0x294c6, [0x0794] = 0x295d6, [0x0795] = 0x295e0, [0x0796] = 0x295db, + [0x0797] = 0x295d7, [0x0798] = 0x295dd, [0x0799] = 0x29715, [0x079a] = 0x2970c, + [0x079b] = 0x2970f, [0x079c] = 0x2970e, [0x079d] = 0x296fe, [0x079e] = 0x29704, + [0x079f] = 0x2970b, [0x07a0] = 0x29702, [0x07a1] = 0x296ff, [0x07a2] = 0x29708, + [0x07a3] = 0x29710, [0x07a4] = 0x29717, [0x07a5] = 0x29713, [0x07a6] = 0x29706, + [0x07a7] = 0x29709, [0x07a8] = 0x29824, [0x07a9] = 0x29826, [0x07aa] = 0x29825, + [0x07ab] = 0x29848, [0x07ac] = 0x298b5, [0x07ad] = 0x298d2, [0x07ae] = 0x298d5, + [0x07af] = 0x298c4, [0x07b0] = 0x298af, [0x07b1] = 0x298ad, [0x07b2] = 0x298c1, + [0x07b3] = 0x298c0, [0x07b4] = 0x298cc, [0x07b5] = 0x298cd, [0x07b6] = 0x298c3, + [0x07b7] = 0x298c8, [0x07b8] = 0x298c5, [0x07b9] = 0x298ba, [0x07ba] = 0x298d0, + [0x07bb] = 0x298c2, [0x07bc] = 0x298ce, [0x07bd] = 0x4b8d, [0x07be] = 0x29a43, + [0x07bf] = 0x29a42, [0x07c0] = 0x29a40, [0x07c1] = 0x29a31, [0x07c2] = 0x29acf, + [0x07c3] = 0x29ace, [0x07c4] = 0x29b30, [0x07c5] = 0x29b34, [0x07c6] = 0x29b32, + [0x07c7] = 0x29b43, [0x07c8] = 0x29b3c, [0x07c9] = 0x29c11, [0x07ca] = 0x29c35, + [0x07cb] = 0x29c34, [0x07cc] = 0x29c37, [0x07cd] = 0x29c31, [0x07ce] = 0x29cbf, + [0x07cf] = 0x29cbc, [0x07d0] = 0x29cc2, [0x07d1] = 0x29cc9, [0x07d2] = 0x29d83, + [0x07d3] = 0x29d8b, [0x07d4] = 0x29da0, [0x07d5] = 0x29d8d, [0x07d6] = 0x29d8c, + [0x07d7] = 0x29d9a, [0x07d8] = 0x29d8a, [0x07d9] = 0x29d91, [0x07da] = 0x29ff1, + [0x07db] = 0x2a00f, [0x07dc] = 0x2a001, [0x07dd] = 0x2a007, [0x07de] = 0x2a00c, + [0x07df] = 0x4cc0, [0x07e0] = 0x29fdc, [0x07e1] = 0x29fee, [0x07e2] = 0x29ff7, + [0x07e3] = 0x29ff2, [0x07e4] = 0x29ff8, [0x07e5] = 0x29feb, [0x07e6] = 0x4cca, + [0x07e7] = 0x29fe6, [0x07e8] = 0x29fed, [0x07e9] = 0x29fe9, [0x07ea] = 0x2a008, + [0x07eb] = 0x2a000, [0x07ec] = 0x29fe5, [0x07ed] = 0x29ffc, [0x07ee] = 0x2a261, + [0x07ef] = 0x2a25e, [0x07f0] = 0x2a25f, [0x07f1] = 0x4d25, [0x07f2] = 0x2a29b, + [0x07f3] = 0x2a316, [0x07f4] = 0x2a315, [0x07f5] = 0x2a320, [0x07f6] = 0x2a314, + [0x07f7] = 0x2a31a, [0x07f8] = 0x2a317, [0x07f9] = 0x2a39c, [0x07fa] = 0x4d4a, + [0x07fb] = 0x2a3f1, [0x07fc] = 0x4d53, [0x07fd] = 0x2a3f0, [0x07fe] = 0x2a428, + [0x07ff] = 0x2a424, [0x0800] = 0x2a42a, [0x0801] = 0x2a42b, [0x0802] = 0x2a4d5, + [0x0803] = 0x2a504, [0x0804] = 0x2a505, [0x0805] = 0x2a591, [0x0806] = 0x2a592, + [0x0807] = 0x2a6a6, [0x0808] = 0x20109, [0x0809] = 0x20422, [0x080a] = 0x2041a, + [0x080b] = 0x2040e, [0x080c] = 0x2041b, [0x080d] = 0x20408, [0x080e] = 0x250b3, + [0x0810] = 0x2069d, [0x0811] = 0x20812, [0x0812] = 0x2081e, [0x0813] = 0x208bb, + [0x0814] = 0x208bf, [0x0815] = 0x208bc, [0x0816] = 0x20908, [0x0817] = 0x20909, + [0x0818] = 0x20963, [0x0819] = 0x209c8, [0x081a] = 0x23728, [0x081b] = 0x20b8e, + [0x081c] = 0x20b8d, [0x081d] = 0x21043, [0x081e] = 0x2104d, [0x081f] = 0x2106d, + [0x0820] = 0x21042, [0x0821] = 0x21052, [0x0822] = 0x21051, [0x0823] = 0x21069, + [0x0824] = 0x21050, [0x0825] = 0x21056, [0x0826] = 0x2106c, [0x0827] = 0x21044, + [0x0828] = 0x21045, [0x0829] = 0x2106b, [0x082a] = 0x3605, [0x082b] = 0x21068, + [0x082c] = 0x21057, [0x082d] = 0x2122e, [0x082e] = 0x21231, [0x082f] = 0x2122d, + [0x0830] = 0x2148b, [0x0831] = 0x214b2, [0x0832] = 0x2148d, [0x0833] = 0x214a3, + [0x0834] = 0x214a4, [0x0835] = 0x21490, [0x0836] = 0x21489, [0x0837] = 0x2148e, + [0x0838] = 0x21492, [0x0839] = 0x2157b, [0x083a] = 0x21690, [0x083b] = 0x2168f, + [0x083c] = 0x218e9, [0x083d] = 0x218cd, [0x083e] = 0x218c5, [0x083f] = 0x218d0, + [0x0840] = 0x218c9, [0x0841] = 0x218d1, [0x0842] = 0x218c7, [0x0843] = 0x218d2, + [0x0844] = 0x2185f, [0x0845] = 0x218e1, [0x0846] = 0x218cc, [0x0847] = 0x218c6, + [0x0848] = 0x218e4, [0x0849] = 0x219a9, [0x084a] = 0x21ad3, [0x084b] = 0x21ada, + [0x084c] = 0x21ad2, [0x084d] = 0x21adb, [0x084e] = 0x21b4d, [0x084f] = 0x21b4e, + [0x0850] = 0x21c1c, [0x0851] = 0x21ce8, [0x0852] = 0x21f6c, [0x0853] = 0x21f5f, + [0x0854] = 0x21f66, [0x0855] = 0x21f64, [0x0856] = 0x21f78, [0x0857] = 0x21f65, + [0x0858] = 0x21f6d, [0x0859] = 0x21f61, [0x085a] = 0x21f7a, [0x085b] = 0x22007, + [0x085c] = 0x22166, [0x085d] = 0x22168, [0x085e] = 0x22162, [0x085f] = 0x222d3, + [0x0860] = 0x222d4, [0x0861] = 0x222d1, [0x0862] = 0x222dc, [0x0863] = 0x22373, + [0x0864] = 0x22372, [0x0865] = 0x2242d, [0x0866] = 0x2242c, [0x0867] = 0x2242f, + [0x0868] = 0x22472, [0x0869] = 0x224b4, [0x086a] = 0x22589, [0x086b] = 0x228cd, + [0x086c] = 0x228a6, [0x086d] = 0x228a2, [0x086e] = 0x228a0, [0x086f] = 0x22846, + [0x0870] = 0x228a1, [0x0871] = 0x26857, [0x0872] = 0x228a3, [0x0873] = 0x228b1, + [0x0874] = 0x228db, [0x0875] = 0x228f6, [0x0876] = 0x228dc, [0x0877] = 0x228d6, + [0x0878] = 0x22a13, [0x0879] = 0x22d9c, [0x087a] = 0x22d97, [0x087b] = 0x22dd8, + [0x087c] = 0x22de4, [0x087d] = 0x22dd4, [0x087e] = 0x22de5, [0x087f] = 0x22ddb, + [0x0880] = 0x22dd0, [0x0881] = 0x22dda, [0x0882] = 0x22dcc, [0x0883] = 0x22ddc, + [0x0884] = 0x22ded, [0x0885] = 0x22dd3, [0x0886] = 0x22dd1, [0x0887] = 0x22dce, + [0x0888] = 0x22dd9, [0x0889] = 0x22ddd, [0x088b] = 0x22ee6, [0x088c] = 0x22ee5, + [0x088d] = 0x22ee9, [0x088e] = 0x22fff, [0x088f] = 0x22ffe, [0x0890] = 0x2300e, + [0x0891] = 0x2308c, [0x0892] = 0x230ca, [0x0893] = 0x230cb, [0x0894] = 0x2311a, + [0x0895] = 0x232d7, [0x0896] = 0x232cf, [0x0897] = 0x232d0, [0x0898] = 0x232c9, + [0x0899] = 0x232cc, [0x089a] = 0x232d3, [0x089b] = 0x233a4, [0x089c] = 0x233a3, + [0x089d] = 0x23681, [0x089e] = 0x23726, [0x089f] = 0x236f3, [0x08a0] = 0x23727, + [0x08a1] = 0x236f2, [0x08a2] = 0x236ff, [0x08a3] = 0x236f5, [0x08a4] = 0x236fc, + [0x08a5] = 0x2370e, [0x08a6] = 0x3bf0, [0x08a7] = 0x236f6, [0x08a8] = 0x23700, + [0x08a9] = 0x23723, [0x08aa] = 0x23705, [0x08ab] = 0x23725, [0x08ac] = 0x23708, + [0x08ad] = 0x23750, [0x08ae] = 0x23925, [0x08af] = 0x23920, [0x08b0] = 0x23923, + [0x08b1] = 0x23921, [0x08b2] = 0x239a1, [0x08b3] = 0x23a69, [0x08b4] = 0x23a6c, + [0x08b5] = 0x23a68, [0x08b6] = 0x23a6b, [0x08b7] = 0x23acc, [0x08b8] = 0x23acd, + [0x08b9] = 0x23c10, [0x08ba] = 0x23c0d, [0x08bb] = 0x23c0a, [0x08bc] = 0x23c16, + [0x08bd] = 0x23c14, [0x08be] = 0x23c52, [0x08bf] = 0x24028, [0x08c0] = 0x2402e, + [0x08c1] = 0x2402c, [0x08c2] = 0x2404d, [0x08c3] = 0x24049, [0x08c4] = 0x24031, + [0x08c5] = 0x24030, [0x08c6] = 0x24033, [0x08c7] = 0x2402d, [0x08c8] = 0x24036, + [0x08c9] = 0x2403e, [0x08ca] = 0x2402f, [0x08cb] = 0x24027, [0x08cc] = 0x24034, + [0x08cd] = 0x2404c, [0x08ce] = 0x243fe, [0x08cf] = 0x24412, [0x08d0] = 0x2441f, + [0x08d1] = 0x24417, [0x08d2] = 0x243f5, [0x08d3] = 0x24415, [0x08d4] = 0x243f7, + [0x08d5] = 0x3e02, [0x08d6] = 0x21f7d, [0x08d7] = 0x243fa, [0x08d8] = 0x243f9, + [0x08d9] = 0x2444b, [0x08da] = 0x2459c, [0x08db] = 0x2459d, [0x08dc] = 0x3e23, + [0x08dd] = 0x246f0, [0x08de] = 0x246f6, [0x08df] = 0x246ef, [0x08e0] = 0x2489d, + [0x08e1] = 0x2489a, [0x08e2] = 0x248a7, [0x08e3] = 0x248af, [0x08e4] = 0x248aa, + [0x08e5] = 0x24a64, [0x08e6] = 0x24a86, [0x08e7] = 0x24a75, [0x08e8] = 0x24a70, + [0x08e9] = 0x24a84, [0x08ea] = 0x24a6b, [0x08eb] = 0x24a85, [0x08ec] = 0x24a6c, + [0x08ed] = 0x24b17, [0x08ee] = 0x24b94, [0x08ef] = 0x24b93, [0x08f0] = 0x24cd2, + [0x08f1] = 0x24cd7, [0x08f2] = 0x24cd4, [0x08f3] = 0x24ea6, [0x08f4] = 0x24ea7, + [0x08f5] = 0x24e9c, [0x08f6] = 0x24e8b, [0x08f7] = 0x24e8d, [0x08f8] = 0x24e98, + [0x08f9] = 0x24eb9, [0x08fa] = 0x24e9b, [0x08fb] = 0x24e9d, [0x08fc] = 0x24e99, + [0x08fd] = 0x24ea8, [0x08fe] = 0x24e91, [0x08ff] = 0x24e87, [0x0900] = 0x24e9a, + [0x0901] = 0x24fa6, [0x0902] = 0x2501f, [0x0903] = 0x250a7, [0x0904] = 0x250b1, + [0x0905] = 0x250b2, [0x0906] = 0x250b7, [0x0907] = 0x252d0, [0x0908] = 0x252b3, + [0x0909] = 0x252b5, [0x090a] = 0x252c4, [0x090b] = 0x252c3, [0x090c] = 0x252bc, + [0x090d] = 0x252b2, [0x090e] = 0x252ba, [0x090f] = 0x252bb, [0x0910] = 0x252c2, + [0x0911] = 0x252cd, [0x0912] = 0x252be, [0x0913] = 0x252b7, [0x0914] = 0x2538f, + [0x0915] = 0x25403, [0x0916] = 0x25404, [0x0917] = 0x25571, [0x0918] = 0x25577, + [0x0919] = 0x25574, [0x091a] = 0x2558b, [0x091b] = 0x2557a, [0x091d] = 0x2558c, + [0x091e] = 0x25573, [0x091f] = 0x256ff, [0x0920] = 0x256fb, [0x0921] = 0x256fd, + [0x0922] = 0x256f0, [0x0923] = 0x256f3, [0x0924] = 0x256fc, [0x0925] = 0x256f2, + [0x0926] = 0x25892, [0x0927] = 0x2589e, [0x0928] = 0x258ae, [0x0929] = 0x25896, + [0x092a] = 0x25a14, [0x092b] = 0x25a12, [0x092c] = 0x25a13, [0x092d] = 0x25a16, + [0x092e] = 0x25a0f, [0x092f] = 0x25ab6, [0x0930] = 0x25abd, [0x0931] = 0x25c8c, + [0x0932] = 0x25cae, [0x0933] = 0x25cac, [0x0934] = 0x25cab, [0x0935] = 0x25c99, + [0x0936] = 0x25c92, [0x0937] = 0x25cbb, [0x0938] = 0x25c9e, [0x0939] = 0x25c7e, + [0x093a] = 0x25caf, [0x093b] = 0x25cbc, [0x093c] = 0x25c98, [0x093d] = 0x25f01, + [0x093e] = 0x25f09, [0x093f] = 0x25f06, [0x0941] = 0x25f07, [0x0942] = 0x25f08, + [0x0943] = 0x260cf, [0x0944] = 0x2610e, [0x0945] = 0x26132, [0x0946] = 0x4315, + [0x0947] = 0x26112, [0x0948] = 0x26116, [0x0949] = 0x26117, [0x094a] = 0x2611b, + [0x094b] = 0x26115, [0x094c] = 0x26131, [0x094d] = 0x26118, [0x094e] = 0x2611a, + [0x094f] = 0x26110, [0x0950] = 0x2610a, [0x0951] = 0x26109, [0x0952] = 0x2624f, + [0x0954] = 0x2630f, [0x0955] = 0x26310, [0x0957] = 0x26328, [0x0958] = 0x26311, + [0x0959] = 0x26316, [0x095a] = 0x26317, [0x095b] = 0x26302, [0x095c] = 0x263bb, + [0x095d] = 0x263ba, [0x095e] = 0x263c3, [0x095f] = 0x263bc, [0x0960] = 0x2648a, + [0x0961] = 0x26484, [0x0962] = 0x26486, [0x0963] = 0x264e0, [0x0964] = 0x26517, + [0x0965] = 0x26518, [0x0966] = 0x2651e, [0x0967] = 0x26515, [0x0968] = 0x265d3, + [0x0969] = 0x265da, [0x096a] = 0x265d9, [0x096b] = 0x267e6, [0x096c] = 0x267f4, + [0x096d] = 0x267e1, [0x096e] = 0x26869, [0x096f] = 0x26840, [0x0970] = 0x26858, + [0x0971] = 0x2686c, [0x0972] = 0x2684d, [0x0973] = 0x26921, [0x0974] = 0x26999, + [0x0975] = 0x269f1, [0x0976] = 0x23f68, [0x0977] = 0x26a86, [0x0978] = 0x26f5b, + [0x0979] = 0x26f5c, [0x097a] = 0x26f77, [0x097b] = 0x26f2c, [0x097d] = 0x26f58, + [0x097e] = 0x26f64, [0x097f] = 0x26f61, [0x0980] = 0x26f48, [0x0981] = 0x26f97, + [0x0982] = 0x26f59, [0x0983] = 0x26f29, [0x0984] = 0x26f62, [0x0985] = 0x26f2e, + [0x0986] = 0x26f68, [0x0987] = 0x26f90, [0x0988] = 0x26f3a, [0x0989] = 0x26f3d, + [0x098a] = 0x26f5e, [0x098b] = 0x26f46, [0x098c] = 0x26f69, [0x098d] = 0x26f65, + [0x098e] = 0x26f3e, [0x098f] = 0x26f49, [0x0990] = 0x26f56, [0x0991] = 0x26fe1, + [0x0992] = 0x26f78, [0x0993] = 0x26f79, [0x0994] = 0x26f66, [0x0995] = 0x26f4a, + [0x0996] = 0x26f35, [0x0997] = 0x26f7a, [0x0998] = 0x26f92, [0x0999] = 0x26f60, + [0x099a] = 0x26f36, [0x099b] = 0x26f51, [0x099c] = 0x26f42, [0x099d] = 0x455d, + [0x099e] = 0x26f3f, [0x099f] = 0x26f7b, [0x09a0] = 0x26f5d, [0x09a1] = 0x26f94, + [0x09a2] = 0x26f6a, [0x09a4] = 0x271f2, [0x09a5] = 0x273bb, [0x09a6] = 0x2741b, + [0x09a7] = 0x2741a, [0x09a8] = 0x27433, [0x09a9] = 0x27417, [0x09aa] = 0x2740a, + [0x09ab] = 0x27415, [0x09ac] = 0x27412, [0x09ad] = 0x27401, [0x09ae] = 0x2742d, + [0x09af] = 0x273fd, [0x09b0] = 0x27423, [0x09b1] = 0x27405, [0x09b2] = 0x27411, + [0x09b3] = 0x27400, [0x09b4] = 0x2741c, [0x09b5] = 0x27435, [0x09b6] = 0x2742e, + [0x09b7] = 0x27436, [0x09b8] = 0x20abf, [0x09b9] = 0x2742f, [0x09ba] = 0x2740c, + [0x09bb] = 0x27409, [0x09bc] = 0x27431, [0x09bd] = 0x273fc, [0x09be] = 0x2740f, + [0x09bf] = 0x27418, [0x09c0] = 0x27402, [0x09c1] = 0x27600, [0x09c2] = 0x2771f, + [0x09c3] = 0x27737, [0x09c4] = 0x465a, [0x09c5] = 0x27738, [0x09c6] = 0x2772b, + [0x09c7] = 0x2772e, [0x09c8] = 0x27721, [0x09c9] = 0x27730, [0x09ca] = 0x27729, + [0x09cb] = 0x27731, [0x09cd] = 0x27701, [0x09ce] = 0x2772c, [0x09cf] = 0x27722, + [0x09d0] = 0x277ff, [0x09d1] = 0x27877, [0x09d2] = 0x27867, [0x09d3] = 0x2787f, + [0x09d4] = 0x2787d, [0x09d5] = 0x2787b, [0x09d6] = 0x2787e, [0x09d7] = 0x2791e, + [0x09d8] = 0x2791c, [0x09d9] = 0x27921, [0x09da] = 0x27926, [0x09db] = 0x27927, + [0x09dc] = 0x27929, [0x09dd] = 0x2792c, [0x09de] = 0x2791d, [0x09df] = 0x2792b, + [0x09e0] = 0x27abf, [0x09e1] = 0x27aa4, [0x09e2] = 0x27aaa, [0x09e3] = 0x27aae, + [0x09e4] = 0x27a9f, [0x09e5] = 0x27ad0, [0x09e6] = 0x27ab1, [0x09e7] = 0x27aad, + [0x09e8] = 0x27a9b, [0x09e9] = 0x27ab2, [0x09ea] = 0x27aa9, [0x09eb] = 0x27ab3, + [0x09ec] = 0x27ab4, [0x09ed] = 0x27aba, [0x09ee] = 0x27aa5, [0x09ef] = 0x27ab7, + [0x09f0] = 0x27aac, [0x09f1] = 0x27acb, [0x09f2] = 0x27acf, [0x09f3] = 0x27bc6, + [0x09f4] = 0x27c01, [0x09f5] = 0x27bff, [0x09f6] = 0x27bfd, [0x09f7] = 0x27c77, + [0x09f8] = 0x27c78, [0x09f9] = 0x27c76, [0x09fa] = 0x27cf7, [0x09fb] = 0x27dcc, + [0x09fc] = 0x4785, [0x09fd] = 0x27dd4, [0x09fe] = 0x27dd7, [0x09ff] = 0x27dd5, + [0x0a00] = 0x27dd6, [0x0a01] = 0x27dd3, [0x0a02] = 0x27f5d, [0x0a03] = 0x27f55, + [0x0a04] = 0x280e0, [0x0a05] = 0x28148, [0x0a06] = 0x280ee, [0x0a07] = 0x280db, + [0x0a08] = 0x280e7, [0x0a09] = 0x280d6, [0x0a0a] = 0x280e5, [0x0a0b] = 0x280e1, + [0x0a0c] = 0x280dd, [0x0a0d] = 0x280e2, [0x0a0e] = 0x28270, [0x0a0f] = 0x28266, + [0x0a10] = 0x2826f, [0x0a11] = 0x2826e, [0x0a12] = 0x28381, [0x0a13] = 0x28369, + [0x0a14] = 0x2836e, [0x0a15] = 0x2836d, [0x0a16] = 0x2836c, [0x0a17] = 0x28384, + [0x0a18] = 0x28385, [0x0a19] = 0x28371, [0x0a1a] = 0x28373, [0x0a1b] = 0x2836a, + [0x0a1c] = 0x2836f, [0x0a1d] = 0x2837b, [0x0a1e] = 0x2856a, [0x0a1f] = 0x2857c, + [0x0a20] = 0x2857d, [0x0a21] = 0x28581, [0x0a22] = 0x285fa, [0x0a23] = 0x28605, + [0x0a24] = 0x285eb, [0x0a25] = 0x285fb, [0x0a26] = 0x285e9, [0x0a27] = 0x285ef, + [0x0a28] = 0x285fc, [0x0a29] = 0x285e7, [0x0a2b] = 0x285ee, [0x0a2c] = 0x285fd, + [0x0a2d] = 0x28732, [0x0a2e] = 0x287a7, [0x0a2f] = 0x287b5, [0x0a30] = 0x287b1, + [0x0a31] = 0x287b9, [0x0a32] = 0x287a8, [0x0a33] = 0x287b3, [0x0a35] = 0x2888a, + [0x0a36] = 0x28891, [0x0a37] = 0x2888d, [0x0a38] = 0x28899, [0x0a39] = 0x490b, + [0x0a3a] = 0x2889a, [0x0a3b] = 0x2889b, [0x0a3c] = 0x28892, [0x0a3d] = 0x2888f, + [0x0a3e] = 0x288ab, [0x0a3f] = 0x24cdb, [0x0a40] = 0x4939, [0x0a41] = 0x28a75, + [0x0a42] = 0x28a31, [0x0a43] = 0x28a38, [0x0a44] = 0x4937, [0x0a45] = 0x28a35, + [0x0a46] = 0x28a69, [0x0a47] = 0x28a3b, [0x0a48] = 0x28a3d, [0x0a49] = 0x28a6c, + [0x0a4a] = 0x28a79, [0x0a4b] = 0x28a3c, [0x0a4c] = 0x28a3e, [0x0a4d] = 0x28c97, + [0x0a4e] = 0x28ca5, [0x0a4f] = 0x28ca2, [0x0a50] = 0x28c9d, [0x0a51] = 0x28ca1, + [0x0a52] = 0x28d68, [0x0a53] = 0x28d6f, [0x0a54] = 0x28d6d, [0x0a55] = 0x28d72, + [0x0a56] = 0x28d75, [0x0a57] = 0x28d77, [0x0a58] = 0x28d79, [0x0a59] = 0x28eb5, + [0x0a5a] = 0x28eea, [0x0a5b] = 0x28eab, [0x0a5c] = 0x28f43, [0x0a5d] = 0x28f41, + [0x0a5e] = 0x28f42, [0x0a5f] = 0x29009, [0x0a60] = 0x29008, [0x0a61] = 0x29006, + [0x0a62] = 0x29001, [0x0a63] = 0x29003, [0x0a64] = 0x29000, [0x0a65] = 0x29004, + [0x0a66] = 0x2900a, [0x0a67] = 0x2900e, [0x0a68] = 0x2900d, [0x0a69] = 0x29007, + [0x0a6a] = 0x2900f, [0x0a6b] = 0x29014, [0x0a6c] = 0x29002, [0x0a6d] = 0x29015, + [0x0a6e] = 0x2900c, [0x0a6f] = 0x29010, [0x0a70] = 0x29005, [0x0a71] = 0x290fd, + [0x0a72] = 0x290ff, [0x0a73] = 0x29104, [0x0a74] = 0x29100, [0x0a75] = 0x29109, + [0x0a76] = 0x2922b, [0x0a78] = 0x29231, [0x0a79] = 0x292db, [0x0a7a] = 0x292c5, + [0x0a7b] = 0x292d3, [0x0a7c] = 0x292ce, [0x0a7d] = 0x4a6b, [0x0a7e] = 0x292c9, + [0x0a7f] = 0x292bf, [0x0a80] = 0x292cb, [0x0a81] = 0x292c0, [0x0a82] = 0x292d0, + [0x0a83] = 0x292d4, [0x0a84] = 0x293c1, [0x0a85] = 0x293b9, [0x0a86] = 0x293bb, + [0x0a87] = 0x293c3, [0x0a88] = 0x293c9, [0x0a89] = 0x29407, [0x0a8a] = 0x2942d, + [0x0a8b] = 0x294f8, [0x0a8c] = 0x294e1, [0x0a8d] = 0x294fa, [0x0a8e] = 0x294ef, + [0x0a8f] = 0x294fd, [0x0a90] = 0x4acd, [0x0a91] = 0x294eb, [0x0a92] = 0x294f1, + [0x0a93] = 0x294ed, [0x0a94] = 0x294fe, [0x0a95] = 0x295f8, [0x0a96] = 0x29603, + [0x0a97] = 0x295ee, [0x0a98] = 0x295e8, [0x0a99] = 0x29601, [0x0a9a] = 0x296ec, + [0x0a9b] = 0x29722, [0x0a9c] = 0x29714, [0x0a9d] = 0x29734, [0x0a9e] = 0x2972f, + [0x0a9f] = 0x29739, [0x0aa0] = 0x29741, [0x0aa1] = 0x2973c, [0x0aa2] = 0x29749, + [0x0aa3] = 0x29758, [0x0aa4] = 0x2973a, [0x0aa5] = 0x29742, [0x0aa6] = 0x2973f, + [0x0aa7] = 0x29822, [0x0aa8] = 0x29823, [0x0aa9] = 0x2984a, [0x0aaa] = 0x298dc, + [0x0aab] = 0x298d9, [0x0aac] = 0x298db, [0x0aad] = 0x298e2, [0x0aaf] = 0x298df, + [0x0ab0] = 0x298e0, [0x0ab1] = 0x298d7, [0x0ab2] = 0x29a4f, [0x0ab3] = 0x29a46, + [0x0ab4] = 0x29a53, [0x0ab5] = 0x29a55, [0x0ab6] = 0x29a4e, [0x0ab7] = 0x29a4a, + [0x0ab8] = 0x29a4c, [0x0ab9] = 0x29a63, [0x0aba] = 0x29b51, [0x0abb] = 0x29b53, + [0x0abc] = 0x29b58, [0x0abd] = 0x29b4d, [0x0abe] = 0x29b5a, [0x0abf] = 0x29b49, + [0x0ac0] = 0x29b5d, [0x0ac1] = 0x29c12, [0x0ac2] = 0x29c3c, [0x0ac3] = 0x29cd1, + [0x0ac4] = 0x29cdf, [0x0ac5] = 0x29cd6, [0x0ac6] = 0x29cd8, [0x0ac7] = 0x29ce0, + [0x0ac8] = 0x29cd9, [0x0ac9] = 0x29db1, [0x0aca] = 0x29dac, [0x0acb] = 0x29daa, + [0x0acc] = 0x29dee, [0x0acd] = 0x29dbd, [0x0ace] = 0x4c4d, [0x0acf] = 0x29dc3, + [0x0ad0] = 0x29da8, [0x0ad1] = 0x29dae, [0x0ad2] = 0x29dab, [0x0ad3] = 0x2a01d, + [0x0ad4] = 0x2a027, [0x0ad5] = 0x2a038, [0x0ad6] = 0x2a012, [0x0ad7] = 0x2a048, + [0x0ad8] = 0x2a02b, [0x0ad9] = 0x2a016, [0x0ada] = 0x2a019, [0x0adb] = 0x2a03d, + [0x0adc] = 0x2a023, [0x0add] = 0x2a02a, [0x0ade] = 0x2a264, [0x0adf] = 0x2a2ad, + [0x0ae0] = 0x2a2ac, [0x0ae2] = 0x2a2b1, [0x0ae3] = 0x2a2af, [0x0ae4] = 0x2a32c, + [0x0ae5] = 0x2a324, [0x0ae6] = 0x2a325, [0x0ae7] = 0x2a328, [0x0ae8] = 0x2a3f9, + [0x0ae9] = 0x2a3f7, [0x0aea] = 0x2a3fd, [0x0aeb] = 0x2a3fe, [0x0aec] = 0x2a439, + [0x0aed] = 0x2a433, [0x0aee] = 0x2a4d7, [0x0aef] = 0x2a4d8, [0x0af0] = 0x2a4e4, + [0x0af1] = 0x214a1, [0x0af2] = 0x2a50e, [0x0af3] = 0x2a53b, [0x0af4] = 0x2a544, + [0x0af5] = 0x2a542, [0x0af6] = 0x2a594, [0x0af7] = 0x2a593, [0x0af8] = 0x2a5d5, + [0x0af9] = 0x2a6a7, [0x0afa] = 0x20431, [0x0afb] = 0x20423, [0x0afc] = 0x20428, + [0x0afd] = 0x20427, [0x0afe] = 0x204c6, [0x0aff] = 0x205a3, [0x0b00] = 0x20621, + [0x0b01] = 0x2081b, [0x0b02] = 0x3510, [0x0b03] = 0x208c1, [0x0b04] = 0x208c3, + [0x0b05] = 0x2092a, [0x0b06] = 0x20969, [0x0b07] = 0x20a27, [0x0b08] = 0x210b6, + [0x0b09] = 0x210a7, [0x0b0a] = 0x210a4, [0x0b0b] = 0x210a6, [0x0b0c] = 0x21090, + [0x0b0d] = 0x2109e, [0x0b0e] = 0x21094, [0x0b0f] = 0x210a8, [0x0b10] = 0x210a5, + [0x0b11] = 0x210a2, [0x0b12] = 0x21091, [0x0b13] = 0x367b, [0x0b14] = 0x214bc, + [0x0b15] = 0x214bd, [0x0b16] = 0x214b4, [0x0b17] = 0x214b0, [0x0b18] = 0x214e4, + [0x0b19] = 0x21545, [0x0b1a] = 0x2154b, [0x0b1b] = 0x2157e, [0x0b1c] = 0x2157f, + [0x0b1d] = 0x2157d, [0x0b1e] = 0x215c3, [0x0b1f] = 0x218fc, [0x0b20] = 0x218f7, + [0x0b21] = 0x218f0, [0x0b22] = 0x218ed, [0x0b23] = 0x218f1, [0x0b24] = 0x218f8, + [0x0b25] = 0x21ae9, [0x0b26] = 0x21ceb, [0x0b27] = 0x381d, [0x0b28] = 0x21f90, + [0x0b29] = 0x21f8d, [0x0b2a] = 0x21f86, [0x0b2b] = 0x21f91, [0x0b2c] = 0x21f8a, + [0x0b2d] = 0x22008, [0x0b2e] = 0x22050, [0x0b2f] = 0x222ea, [0x0b30] = 0x222e6, + [0x0b31] = 0x222e2, [0x0b32] = 0x222e7, [0x0b33] = 0x222ed, [0x0b34] = 0x222e1, + [0x0b35] = 0x22434, [0x0b36] = 0x22476, [0x0b37] = 0x22475, [0x0b38] = 0x22473, + [0x0b39] = 0x224b5, [0x0b3a] = 0x22590, [0x0b3b] = 0x22592, [0x0b3c] = 0x228e1, + [0x0b3d] = 0x228df, [0x0b3e] = 0x228d5, [0x0b3f] = 0x228f2, [0x0b40] = 0x228fe, + [0x0b41] = 0x22913, [0x0b42] = 0x2292e, [0x0b43] = 0x22a19, [0x0b44] = 0x22e08, + [0x0b45] = 0x64f5, [0x0b46] = 0x22e05, [0x0b47] = 0x22e09, [0x0b48] = 0x22e06, + [0x0b49] = 0x22e03, [0x0b4a] = 0x22dfd, [0x0b4b] = 0x22dfc, [0x0b4c] = 0x22e02, + [0x0b4d] = 0x22e42, [0x0b4e] = 0x2301a, [0x0b4f] = 0x23011, [0x0b50] = 0x23015, + [0x0b51] = 0x23016, [0x0b52] = 0x230cc, [0x0b53] = 0x230cf, [0x0b54] = 0x230d0, + [0x0b55] = 0x23122, [0x0b56] = 0x2311e, [0x0b57] = 0x23121, [0x0b58] = 0x232e5, + [0x0b59] = 0x3b27, [0x0b5a] = 0x23354, [0x0b5b] = 0x232ef, [0x0b5c] = 0x23353, + [0x0b5d] = 0x23351, [0x0b5e] = 0x233ad, [0x0b5f] = 0x23767, [0x0b60] = 0x23768, + [0x0b61] = 0x237a4, [0x0b62] = 0x23777, [0x0b63] = 0x23789, [0x0b64] = 0x23744, + [0x0b65] = 0x2378b, [0x0b66] = 0x23779, [0x0b67] = 0x2375b, [0x0b68] = 0x23743, + [0x0b69] = 0x23757, [0x0b6a] = 0x2374a, [0x0b6b] = 0x2377c, [0x0b6c] = 0x23746, + [0x0b6d] = 0x2377b, [0x0b6e] = 0x23756, [0x0b6f] = 0x239a8, [0x0b70] = 0x23a76, + [0x0b71] = 0x23a72, [0x0b72] = 0x23ad6, [0x0b73] = 0x23ad8, [0x0b74] = 0x23ad1, + [0x0b75] = 0x23c22, [0x0b76] = 0x23c20, [0x0b77] = 0x23c23, [0x0b78] = 0x23c1e, + [0x0b79] = 0x23c6e, [0x0b7a] = 0x240a3, [0x0b7b] = 0x24077, [0x0b7c] = 0x240a6, + [0x0b7d] = 0x2406d, [0x0b7e] = 0x240a2, [0x0b7f] = 0x2407c, [0x0b80] = 0x24084, + [0x0b81] = 0x24068, [0x0b82] = 0x24074, [0x0b83] = 0x24086, [0x0b84] = 0x240a5, + [0x0b85] = 0x2407b, [0x0b86] = 0x2407a, [0x0b87] = 0x24069, [0x0b88] = 0x24072, + [0x0b89] = 0x24076, [0x0b8a] = 0x2444a, [0x0b8b] = 0x24437, [0x0b8c] = 0x2442a, + [0x0b8d] = 0x2442d, [0x0b8e] = 0x24446, [0x0b8f] = 0x24428, [0x0b90] = 0x24426, + [0x0b91] = 0x24442, [0x0b92] = 0x2442c, [0x0b93] = 0x24438, [0x0b94] = 0x2442b, + [0x0b95] = 0x24433, [0x0b96] = 0x24445, [0x0b97] = 0x24539, [0x0b98] = 0x246f9, + [0x0b99] = 0x246fa, [0x0b9a] = 0x248b8, [0x0b9b] = 0x248b7, [0x0b9c] = 0x248bb, + [0x0b9d] = 0x248b9, [0x0b9e] = 0x248b4, [0x0b9f] = 0x24a6f, [0x0ba0] = 0x24a87, + [0x0ba1] = 0x24a8f, [0x0ba2] = 0x24aa2, [0x0ba3] = 0x24aa3, [0x0ba5] = 0x24b9b, + [0x0ba6] = 0x24b9d, [0x0ba7] = 0x24bce, [0x0ba8] = 0x3fcf, [0x0ba9] = 0x24ebd, + [0x0baa] = 0x24ebf, [0x0bab] = 0x24e92, [0x0bac] = 0x3fcd, [0x0bad] = 0x24eef, + [0x0bae] = 0x24ec9, [0x0baf] = 0x24fa4, [0x0bb0] = 0x24fa8, [0x0bb1] = 0x24faa, + [0x0bb2] = 0x25028, [0x0bb3] = 0x25024, [0x0bb4] = 0x25025, [0x0bb5] = 0x25026, + [0x0bb6] = 0x250a9, [0x0bb7] = 0x250ba, [0x0bb8] = 0x250be, [0x0bb9] = 0x250bc, + [0x0bba] = 0x250c0, [0x0bbb] = 0x252f0, [0x0bbc] = 0x252df, [0x0bbd] = 0x252e0, + [0x0bbe] = 0x252ed, [0x0bbf] = 0x252db, [0x0bc0] = 0x252fb, [0x0bc1] = 0x252b9, + [0x0bc2] = 0x252da, [0x0bc3] = 0x252eb, [0x0bc4] = 0x252ec, [0x0bc5] = 0x2559a, + [0x0bc6] = 0x2559f, [0x0bc7] = 0x2559b, [0x0bc8] = 0x25597, [0x0bc9] = 0x255a1, + [0x0bca] = 0x2570f, [0x0bcb] = 0x25705, [0x0bcc] = 0x25748, [0x0bcd] = 0x4182, + [0x0bce] = 0x258bc, [0x0bcf] = 0x258ba, [0x0bd0] = 0x25abf, [0x0bd1] = 0x25d01, + [0x0bd2] = 0x25ce8, [0x0bd3] = 0x25cef, [0x0bd4] = 0x25ce4, [0x0bd5] = 0x25ce6, + [0x0bd6] = 0x25d02, [0x0bd7] = 0x25ceb, [0x0bd8] = 0x25ce0, [0x0bd9] = 0x25ced, + [0x0bda] = 0x25cd9, [0x0bdc] = 0x25d14, [0x0bdd] = 0x25cee, [0x0bde] = 0x4252, + [0x0bdf] = 0x25d13, [0x0be0] = 0x25cf9, [0x0be1] = 0x25cf8, [0x0be2] = 0x25f25, + [0x0be4] = 0x25f19, [0x0be5] = 0x25f20, [0x0be6] = 0x25f43, [0x0be7] = 0x25f3f, + [0x0be8] = 0x26145, [0x0be9] = 0x2614c, [0x0bea] = 0x26149, [0x0beb] = 0x2614f, + [0x0bec] = 0x26141, [0x0bed] = 0x2613e, [0x0bee] = 0x2614d, [0x0bef] = 0x26152, + [0x0bf0] = 0x2614a, [0x0bf1] = 0x2614e, [0x0bf2] = 0x26173, [0x0bf3] = 0x26142, + [0x0bf4] = 0x26151, [0x0bf5] = 0x26155, [0x0bf6] = 0x26150, [0x0bf7] = 0x2616c, + [0x0bf9] = 0x2616a, [0x0bfa] = 0x26153, [0x0bfb] = 0x26168, [0x0bfc] = 0x26255, + [0x0bfd] = 0x26256, [0x0bfe] = 0x2631c, [0x0bff] = 0x2631d, [0x0c00] = 0x7f80, + [0x0c01] = 0x2631e, [0x0c02] = 0x26323, [0x0c03] = 0x2631f, [0x0c04] = 0x263e1, + [0x0c05] = 0x263cd, [0x0c06] = 0x263cb, [0x0c07] = 0x263cc, [0x0c08] = 0x263c8, + [0x0c09] = 0x263c9, [0x0c0a] = 0x2649b, [0x0c0b] = 0x26494, [0x0c0c] = 0x26492, + [0x0c0d] = 0x26496, [0x0c0e] = 0x26493, [0x0c0f] = 0x26495, [0x0c10] = 0x2648f, + [0x0c11] = 0x2651d, [0x0c12] = 0x26522, [0x0c13] = 0x26521, [0x0c14] = 0x265e9, + [0x0c15] = 0x265ef, [0x0c16] = 0x265e0, [0x0c17] = 0x265e6, [0x0c18] = 0x265e4, + [0x0c19] = 0x26829, [0x0c1a] = 0x2682c, [0x0c1b] = 0x26876, [0x0c1c] = 0x26883, + [0x0c1d] = 0x26878, [0x0c1e] = 0x2683c, [0x0c1f] = 0x24443, [0x0c20] = 0x2687a, + [0x0c21] = 0x4451, [0x0c22] = 0x268f2, [0x0c23] = 0x2699e, [0x0c24] = 0x2699b, + [0x0c25] = 0x2699a, [0x0c26] = 0x269f6, [0x0c27] = 0x269f5, [0x0c28] = 0x26aa5, + [0x0c29] = 0x26a93, [0x0c2a] = 0x26aa4, [0x0c2b] = 0x26e82, [0x0c2c] = 0x26ec7, + [0x0c2d] = 0x26fb7, [0x0c2e] = 0x2701d, [0x0c2f] = 0x26fe2, [0x0c30] = 0x26fd7, + [0x0c31] = 0x26fe3, [0x0c32] = 0x26fe4, [0x0c33] = 0x26fbc, [0x0c34] = 0x26fd3, + [0x0c35] = 0x455a, [0x0c36] = 0x26f5a, [0x0c37] = 0x26fd2, [0x0c38] = 0x26f2d, + [0x0c3a] = 0x26fc4, [0x0c3b] = 0x26fd0, [0x0c3c] = 0x26fe5, [0x0c3d] = 0x27005, + [0x0c3e] = 0x27007, [0x0c3f] = 0x26fe6, [0x0c40] = 0x2701b, [0x0c41] = 0x26fe7, + [0x0c42] = 0x26fd8, [0x0c43] = 0x26fbe, [0x0c44] = 0x27017, [0x0c45] = 0x26fb4, + [0x0c46] = 0x26fd9, [0x0c47] = 0x26fe8, [0x0c48] = 0x26fad, [0x0c49] = 0x26faf, + [0x0c4a] = 0x26fc8, [0x0c4b] = 0x26fe9, [0x0c4c] = 0x26fea, [0x0c4d] = 0x271fe, + [0x0c4e] = 0x271fb, [0x0c4f] = 0x27200, [0x0c50] = 0x27472, [0x0c51] = 0x27470, + [0x0c52] = 0x27446, [0x0c53] = 0x27459, [0x0c54] = 0x2745e, [0x0c55] = 0x27448, + [0x0c56] = 0x2744f, [0x0c57] = 0x27471, [0x0c58] = 0x27460, [0x0c59] = 0x2745f, + [0x0c5a] = 0x2746e, [0x0c5b] = 0x27473, [0x0c5e] = 0x27447, [0x0c5f] = 0x2746d, + [0x0c60] = 0x2746f, [0x0c61] = 0x27481, [0x0c62] = 0x2746c, [0x0c63] = 0x27478, + [0x0c64] = 0x27483, [0x0c65] = 0x27449, [0x0c66] = 0x27468, [0x0c67] = 0x27474, + [0x0c68] = 0x27463, [0x0c69] = 0x2746a, [0x0c6a] = 0x26885, [0x0c6b] = 0x27465, + [0x0c6c] = 0x27462, [0x0c6d] = 0x274c8, [0x0c6e] = 0x275d0, [0x0c6f] = 0x275d4, + [0x0c70] = 0x275d1, [0x0c71] = 0x27603, [0x0c72] = 0x27742, [0x0c73] = 0x27763, + [0x0c74] = 0x27756, [0x0c75] = 0x2775b, [0x0c76] = 0x27755, [0x0c77] = 0x27750, + [0x0c78] = 0x2772d, [0x0c79] = 0x27744, [0x0c7a] = 0x27748, [0x0c7b] = 0x27745, + [0x0c7c] = 0x27782, [0x0c7d] = 0x4665, [0x0c7e] = 0x27762, [0x0c7f] = 0x27885, + [0x0c80] = 0x2788d, [0x0c81] = 0x27936, [0x0c82] = 0x2792f, [0x0c83] = 0x27931, + [0x0c84] = 0x27937, [0x0c85] = 0x27aa7, [0x0c86] = 0x27ad9, [0x0c87] = 0x27af0, + [0x0c88] = 0x27af2, [0x0c89] = 0x27afd, [0x0c8a] = 0x27ae8, [0x0c8b] = 0x27aeb, + [0x0c8c] = 0x27aee, [0x0c8d] = 0x27ae0, [0x0c8e] = 0x27ae9, [0x0c8f] = 0x27aed, + [0x0c90] = 0x27ad6, [0x0c91] = 0x27af8, [0x0c92] = 0x27ad4, [0x0c93] = 0x27adf, + [0x0c94] = 0x27ae7, [0x0c95] = 0x27ad8, [0x0c96] = 0x27ae3, [0x0c97] = 0x27aef, + [0x0c98] = 0x27b0f, [0x0c99] = 0x27bca, [0x0c9a] = 0x21546, [0x0c9b] = 0x27c05, + [0x0c9c] = 0x27c0c, [0x0c9d] = 0x27c0d, [0x0c9e] = 0x27c7f, [0x0c9f] = 0x27c80, + [0x0ca0] = 0x27c81, [0x0ca1] = 0x27d01, [0x0ca2] = 0x27d03, [0x0ca3] = 0x27df2, + [0x0ca4] = 0x27de2, [0x0ca5] = 0x27de3, [0x0ca6] = 0x27dde, [0x0ca7] = 0x27de9, + [0x0ca8] = 0x27de8, [0x0ca9] = 0x27de0, [0x0caa] = 0x27e01, [0x0cab] = 0x27df5, + [0x0cac] = 0x27de4, [0x0cad] = 0x8d01, [0x0cae] = 0x27e77, [0x0caf] = 0x27f74, + [0x0cb0] = 0x27f6f, [0x0cb1] = 0x27f62, [0x0cb2] = 0x27f61, [0x0cb3] = 0x27f6d, + [0x0cb4] = 0x27f73, [0x0cb5] = 0x27f6a, [0x0cb6] = 0x27f69, [0x0cb7] = 0x28112, + [0x0cb8] = 0x2812d, [0x0cb9] = 0x28114, [0x0cba] = 0x2810f, [0x0cbb] = 0x28129, + [0x0cbc] = 0x28116, [0x0cbd] = 0x28103, [0x0cbe] = 0x28146, [0x0cbf] = 0x2815c, + [0x0cc0] = 0x28111, [0x0cc1] = 0x28106, [0x0cc2] = 0x280dc, [0x0cc3] = 0x2812b, + [0x0cc4] = 0x2812a, [0x0cc5] = 0x2812c, [0x0cc6] = 0x28127, [0x0cc7] = 0x2827a, + [0x0cc8] = 0x2839c, [0x0cc9] = 0x28399, [0x0cca] = 0x28395, [0x0ccb] = 0x2838b, + [0x0ccc] = 0x28398, [0x0ccd] = 0x28396, [0x0cce] = 0x28432, [0x0ccf] = 0x285a4, + [0x0cd0] = 0x285aa, [0x0cd1] = 0x2861b, [0x0cd2] = 0x48af, [0x0cd3] = 0x2860d, + [0x0cd4] = 0x2861c, [0x0cd5] = 0x2860a, [0x0cd6] = 0x28620, [0x0cd7] = 0x28608, + [0x0cd8] = 0x2861a, [0x0cd9] = 0x28613, [0x0cda] = 0x28611, [0x0cdb] = 0x2875d, + [0x0cdc] = 0x2875f, [0x0cdd] = 0x2875e, [0x0cde] = 0x28760, [0x0cdf] = 0x287bb, + [0x0ce0] = 0x287bc, [0x0ce1] = 0x287c1, [0x0ce2] = 0x287c0, [0x0ce3] = 0x287c8, + [0x0ce4] = 0x287ce, [0x0ce5] = 0x288a7, [0x0ce6] = 0x288b2, [0x0ce7] = 0x288b6, + [0x0ce8] = 0x288a5, [0x0ce9] = 0x288ba, [0x0cea] = 0x288b5, [0x0ceb] = 0x288ad, + [0x0cec] = 0x288a4, [0x0ced] = 0x288d3, [0x0cee] = 0x288b0, [0x0cef] = 0x288b1, + [0x0cf0] = 0x2891d, [0x0cf1] = 0x28a8d, [0x0cf2] = 0x4941, [0x0cf3] = 0x28a91, + [0x0cf4] = 0x28ab6, [0x0cf5] = 0x28ab7, [0x0cf6] = 0x28abd, [0x0cf7] = 0x28abc, + [0x0cf8] = 0x28a96, [0x0cf9] = 0x28a94, [0x0cfa] = 0x28aa0, [0x0cfb] = 0x28ca8, + [0x0cfc] = 0x28ca6, [0x0cfd] = 0x28d84, [0x0cfe] = 0x28d96, [0x0cff] = 0x28d88, + [0x0d00] = 0x28d9a, [0x0d01] = 0x28ed1, [0x0d02] = 0x28ecf, [0x0d03] = 0x28f50, + [0x0d04] = 0x28f51, [0x0d05] = 0x28f4e, [0x0d06] = 0x28f80, [0x0d07] = 0x28f81, + [0x0d08] = 0x2901b, [0x0d09] = 0x29017, [0x0d0a] = 0x29020, [0x0d0b] = 0x29019, + [0x0d0c] = 0x2901a, [0x0d0d] = 0x29021, [0x0d0e] = 0x2901e, [0x0d0f] = 0x29018, + [0x0d10] = 0x2901d, [0x0d11] = 0x4a29, [0x0d12] = 0x2912d, [0x0d13] = 0x29124, + [0x0d14] = 0x29127, [0x0d15] = 0x2912e, [0x0d16] = 0x29125, [0x0d17] = 0x2911c, + [0x0d18] = 0x29119, [0x0d19] = 0x4a2a, [0x0d1a] = 0x29123, [0x0d1b] = 0x2911f, + [0x0d1c] = 0x2911a, [0x0d1d] = 0x2912b, [0x0d1e] = 0x2911e, [0x0d1f] = 0x291e0, + [0x0d20] = 0x29233, [0x0d21] = 0x292e6, [0x0d22] = 0x292fc, [0x0d23] = 0x292e5, + [0x0d24] = 0x292f8, [0x0d25] = 0x292f6, [0x0d26] = 0x292ea, [0x0d27] = 0x292f2, + [0x0d28] = 0x292ed, [0x0d29] = 0x292eb, [0x0d2a] = 0x292f0, [0x0d2b] = 0x292f1, + [0x0d2c] = 0x293c6, [0x0d2d] = 0x293c8, [0x0d2e] = 0x293ce, [0x0d2f] = 0x293c5, + [0x0d30] = 0x4a96, [0x0d31] = 0x293cb, [0x0d32] = 0x29513, [0x0d33] = 0x29514, + [0x0d34] = 0x29507, [0x0d35] = 0x2950c, [0x0d36] = 0x2961a, [0x0d37] = 0x4b12, + [0x0d38] = 0x29617, [0x0d39] = 0x29606, [0x0d3a] = 0x29616, [0x0d3b] = 0x29607, + [0x0d3c] = 0x29610, [0x0d3d] = 0x29609, [0x0d3e] = 0x29619, [0x0d3f] = 0x29615, + [0x0d40] = 0x2976e, [0x0d41] = 0x2973b, [0x0d42] = 0x2973e, [0x0d43] = 0x2976c, + [0x0d44] = 0x29765, [0x0d45] = 0x29764, [0x0d46] = 0x29759, [0x0d47] = 0x2977c, + [0x0d48] = 0x29770, [0x0d49] = 0x29779, [0x0d4a] = 0x2982c, [0x0d4b] = 0x29852, + [0x0d4c] = 0x29851, [0x0d4d] = 0x2984c, [0x0d4e] = 0x29900, [0x0d4f] = 0x29910, + [0x0d50] = 0x29913, [0x0d51] = 0x298ff, [0x0d52] = 0x298fe, [0x0d53] = 0x298ed, + [0x0d54] = 0x29a5a, [0x0d55] = 0x29a58, [0x0d56] = 0x29a5c, [0x0d57] = 0x29ada, + [0x0d58] = 0x29b78, [0x0d59] = 0x29b5e, [0x0d5a] = 0x29b67, [0x0d5b] = 0x29b64, + [0x0d5c] = 0x29c13, [0x0d5d] = 0x29c23, [0x0d5e] = 0x29c41, [0x0d5f] = 0x29c3f, + [0x0d60] = 0x29c40, [0x0d61] = 0x29ced, [0x0d62] = 0x29ce3, [0x0d63] = 0x29cea, + [0x0d64] = 0x29cf0, [0x0d65] = 0x29ce6, [0x0d66] = 0x29ce9, [0x0d67] = 0x29cf1, + [0x0d68] = 0x29cee, [0x0d69] = 0x29dd4, [0x0d6a] = 0x29dd1, [0x0d6b] = 0x29ddc, + [0x0d6c] = 0x29dec, [0x0d6d] = 0x2a069, [0x0d6e] = 0x2a06d, [0x0d6f] = 0x2a057, + [0x0d70] = 0x2a066, [0x0d71] = 0x2a0f9, [0x0d72] = 0x2a04a, [0x0d73] = 0x2a060, + [0x0d74] = 0x2a056, [0x0d75] = 0x2a059, [0x0d76] = 0x2a04c, [0x0d77] = 0x2a06a, + [0x0d78] = 0x2a062, [0x0d79] = 0x2a063, [0x0d7a] = 0x2a070, [0x0d7b] = 0x2a05f, + [0x0d7d] = 0x2a064, [0x0d7e] = 0x2a05d, [0x0d7f] = 0x2a068, [0x0d80] = 0x2a09f, + [0x0d81] = 0x2a2ba, [0x0d82] = 0x2a2b8, [0x0d83] = 0x2a2bc, [0x0d84] = 0x2a2b9, + [0x0d85] = 0x2a2b4, [0x0d86] = 0x2a33b, [0x0d87] = 0x2a32d, [0x0d88] = 0x2a338, + [0x0d89] = 0x2a32f, [0x0d8a] = 0x2a332, [0x0d8b] = 0x2a441, [0x0d8c] = 0x2a4cb, + [0x0d8d] = 0x2a4de, [0x0d8e] = 0x2a4dd, [0x0d8f] = 0x2a4da, [0x0d90] = 0x2a4dc, + [0x0d91] = 0x2a510, [0x0d92] = 0x2a54f, [0x0d93] = 0x2a549, [0x0d94] = 0x2a598, + [0x0d95] = 0x2a596, [0x0d96] = 0x2a597, [0x0d97] = 0x2a5c7, [0x0d98] = 0x2019c, + [0x0d99] = 0x2a5da, [0x0d9a] = 0x2a5d8, [0x0d9b] = 0x2a6a8, [0x0d9c] = 0x2010a, + [0x0d9d] = 0x2019d, [0x0d9e] = 0x204cb, [0x0d9f] = 0x20538, [0x0da0] = 0x20539, + [0x0da1] = 0x205a6, [0x0da2] = 0x20823, [0x0da3] = 0x20822, [0x0da4] = 0x20821, + [0x0da5] = 0x209ce, [0x0da6] = 0x20b92, [0x0da7] = 0x20b91, [0x0da8] = 0x210ec, + [0x0da9] = 0x210e0, [0x0daa] = 0x210ed, [0x0dab] = 0x21108, [0x0dac] = 0x210e5, + [0x0dad] = 0x210ee, [0x0dae] = 0x210e4, [0x0daf] = 0x210eb, [0x0db0] = 0x210e3, + [0x0db1] = 0x210ea, [0x0db2] = 0x2110a, [0x0db4] = 0x214d1, [0x0db5] = 0x214e3, + [0x0db6] = 0x214d4, [0x0db7] = 0x214d0, [0x0db8] = 0x214d9, [0x0db9] = 0x367e, + [0x0dba] = 0x58e1, [0x0dbb] = 0x214da, [0x0dbc] = 0x214d3, [0x0dbd] = 0x2154c, + [0x0dbe] = 0x2154d, [0x0dbf] = 0x2157c, [0x0dc0] = 0x21580, [0x0dc1] = 0x215cc, + [0x0dc2] = 0x218ff, [0x0dc3] = 0x21908, [0x0dc4] = 0x2a508, [0x0dc5] = 0x21901, + [0x0dc7] = 0x21900, [0x0dc8] = 0x21aed, [0x0dc9] = 0x21af3, [0x0dca] = 0x21aee, + [0x0dcb] = 0x21af1, [0x0dcc] = 0x21af0, [0x0dcd] = 0x21ade, [0x0dce] = 0x21b51, + [0x0dcf] = 0x21f82, [0x0dd0] = 0x21fa9, [0x0dd1] = 0x21f98, [0x0dd2] = 0x21f9d, + [0x0dd3] = 0x21f9a, [0x0dd4] = 0x21f9e, [0x0dd5] = 0x21f9f, [0x0dd6] = 0x21fa6, + [0x0dd7] = 0x21fa7, [0x0dd8] = 0x22009, [0x0dd9] = 0x2202f, [0x0dda] = 0x22171, + [0x0ddb] = 0x2216d, [0x0ddc] = 0x22172, [0x0ddd] = 0x222ef, [0x0dde] = 0x222f0, + [0x0ddf] = 0x2243b, [0x0de0] = 0x22439, [0x0de1] = 0x2243c, [0x0de2] = 0x22438, + [0x0de3] = 0x24bfd, [0x0de4] = 0x2243a, [0x0de5] = 0x22478, [0x0de6] = 0x22479, + [0x0de7] = 0x22477, [0x0de8] = 0x22598, [0x0de9] = 0x2259c, [0x0dea] = 0x22599, + [0x0deb] = 0x2259a, [0x0dec] = 0x22911, [0x0ded] = 0x2290a, [0x0dee] = 0x228fd, + [0x0def] = 0x2290f, [0x0df0] = 0x22919, [0x0df1] = 0x22903, [0x0df2] = 0x22915, + [0x0df3] = 0x2290c, [0x0df4] = 0x22909, [0x0df5] = 0x22912, [0x0df6] = 0x22934, + [0x0df7] = 0x2292a, [0x0df8] = 0x22908, [0x0df9] = 0x2292d, [0x0dfa] = 0x22928, + [0x0dfc] = 0x2292c, [0x0dfd] = 0x22926, [0x0dfe] = 0x22933, [0x0dff] = 0x39a7, + [0x0e00] = 0x22a1a, [0x0e01] = 0x22a1e, [0x0e02] = 0x22e07, [0x0e03] = 0x22e2c, + [0x0e04] = 0x22e32, [0x0e05] = 0x22e28, [0x0e06] = 0x22e31, [0x0e07] = 0x22e29, + [0x0e08] = 0x22e30, [0x0e09] = 0x22e2a, [0x0e0a] = 0x22e44, [0x0e0b] = 0x22e2e, + [0x0e0c] = 0x230d1, [0x0e0d] = 0x23124, [0x0e0e] = 0x232f7, [0x0e0f] = 0x232f4, + [0x0e10] = 0x232f3, [0x0e11] = 0x232f8, [0x0e12] = 0x237b5, [0x0e13] = 0x23796, + [0x0e14] = 0x23798, [0x0e15] = 0x23795, [0x0e16] = 0x23791, [0x0e17] = 0x237b2, + [0x0e18] = 0x2379e, [0x0e19] = 0x23759, [0x0e1a] = 0x237a3, [0x0e1b] = 0x2379a, + [0x0e1c] = 0x2379b, [0x0e1d] = 0x4320, [0x0e1e] = 0x26183, [0x0e1f] = 0x23ada, + [0x0e20] = 0x23adf, [0x0e21] = 0x23b16, [0x0e22] = 0x23c1f, [0x0e23] = 0x23c2d, + [0x0e24] = 0x23c2e, [0x0e25] = 0x23c2b, [0x0e26] = 0x240b8, [0x0e27] = 0x240bb, + [0x0e28] = 0x240bf, [0x0e29] = 0x240ba, [0x0e2a] = 0x240d5, [0x0e2b] = 0x240e3, + [0x0e2c] = 0x240c1, [0x0e2d] = 0x240be, [0x0e2e] = 0x240bd, [0x0e2f] = 0x240b4, + [0x0e30] = 0x240c2, [0x0e31] = 0x240a1, [0x0e32] = 0x24087, [0x0e33] = 0x240d7, + [0x0e34] = 0x240ca, [0x0e35] = 0x240b5, [0x0e36] = 0x240da, [0x0e37] = 0x240d9, + [0x0e38] = 0x240b3, [0x0e39] = 0x240d8, [0x0e3a] = 0x24467, [0x0e3b] = 0x24471, + [0x0e3c] = 0x24462, [0x0e3d] = 0x2445c, [0x0e3e] = 0x24468, [0x0e3f] = 0x24452, + [0x0e40] = 0x24456, [0x0e41] = 0x21109, [0x0e42] = 0x20442, [0x0e43] = 0x245a0, + [0x0e44] = 0x24700, [0x0e45] = 0x246fe, [0x0e46] = 0x246ff, [0x0e47] = 0x248cb, + [0x0e49] = 0x248ca, [0x0e4a] = 0x248a9, [0x0e4b] = 0x248c8, [0x0e4c] = 0x24ab4, + [0x0e4d] = 0x24aac, [0x0e4e] = 0x24aaa, [0x0e4f] = 0x24aa9, [0x0e50] = 0x24c0e, + [0x0e51] = 0x24ce9, [0x0e52] = 0x24ced, [0x0e53] = 0x24cf2, [0x0e54] = 0x24ceb, + [0x0e55] = 0x24cee, [0x0e56] = 0x24ee8, [0x0e57] = 0x24edb, [0x0e58] = 0x24ed7, + [0x0e59] = 0x24ee3, [0x0e5a] = 0x24ee5, [0x0e5b] = 0x24eee, [0x0e5c] = 0x24ed5, + [0x0e5d] = 0x24fb3, [0x0e5e] = 0x2502d, [0x0e5f] = 0x250c1, [0x0e60] = 0x250c3, + [0x0e61] = 0x2530c, [0x0e62] = 0x2530e, [0x0e63] = 0x25307, [0x0e64] = 0x25317, + [0x0e65] = 0x25309, [0x0e66] = 0x25316, [0x0e67] = 0x2539a, [0x0e68] = 0x2539c, + [0x0e69] = 0x255b4, [0x0e6a] = 0x255b7, [0x0e6b] = 0x255b3, [0x0e6c] = 0x2154e, + [0x0e6d] = 0x25713, [0x0e6e] = 0x25714, [0x0e6f] = 0x258e6, [0x0e70] = 0x258dc, + [0x0e71] = 0x258e8, [0x0e72] = 0x258e5, [0x0e73] = 0x25a2e, [0x0e74] = 0x25a2c, + [0x0e75] = 0x25a2b, [0x0e76] = 0x25acd, [0x0e77] = 0x25d3d, [0x0e78] = 0x25d32, + [0x0e79] = 0x25d2d, [0x0e7a] = 0x25d45, [0x0e7b] = 0x25d3e, [0x0e7c] = 0x25d50, + [0x0e7d] = 0x25d25, [0x0e7e] = 0x25d53, [0x0e7f] = 0x25d23, [0x0e80] = 0x25f37, + [0x0e81] = 0x25f38, [0x0e82] = 0x25f47, [0x0e83] = 0x25f3d, [0x0e84] = 0x25f3e, + [0x0e85] = 0x25f49, [0x0e86] = 0x25f4a, [0x0e87] = 0x25f1d, [0x0e88] = 0x7ce9, + [0x0e89] = 0x261a5, [0x0e8a] = 0x2618c, [0x0e8b] = 0x2618d, [0x0e8c] = 0x26189, + [0x0e8d] = 0x26196, [0x0e8e] = 0x26185, [0x0e8f] = 0x2618f, [0x0e90] = 0x26177, + [0x0e91] = 0x2618e, [0x0e92] = 0x26182, [0x0e93] = 0x2618a, [0x0e94] = 0x26188, + [0x0e95] = 0x2617b, [0x0e96] = 0x26197, [0x0e97] = 0x2617d, [0x0e98] = 0x26179, + [0x0e99] = 0x26259, [0x0e9a] = 0x26324, [0x0e9b] = 0x2632d, [0x0e9c] = 0x2632e, + [0x0e9d] = 0x2632b, [0x0e9f] = 0x263da, [0x0ea0] = 0x263d8, [0x0ea1] = 0x263d6, + [0x0ea2] = 0x26487, [0x0ea3] = 0x264a0, [0x0ea4] = 0x26528, [0x0ea5] = 0x26525, + [0x0ea6] = 0x2651f, [0x0ea7] = 0x265f3, [0x0ea8] = 0x265f7, [0x0ea9] = 0x265f6, + [0x0eaa] = 0x2682b, [0x0eab] = 0x2685b, [0x0eac] = 0x26848, [0x0ead] = 0x81cb, + [0x0eae] = 0x2685c, [0x0eaf] = 0x2686d, [0x0eb0] = 0x2689d, [0x0eb1] = 0x26899, + [0x0eb2] = 0x2688c, [0x0eb3] = 0x26891, [0x0eb4] = 0x2689b, [0x0eb5] = 0x2689a, + [0x0eb6] = 0x2689c, [0x0eb7] = 0x26895, [0x0eb8] = 0x2688d, [0x0eb9] = 0x26896, + [0x0eba] = 0x268a5, [0x0ebb] = 0x2692a, [0x0ebc] = 0x269a1, [0x0ebd] = 0x269a4, + [0x0ebe] = 0x269ad, [0x0ebf] = 0x26aa9, [0x0ec0] = 0x26aae, [0x0ec1] = 0x26ab0, + [0x0ec2] = 0x2700d, [0x0ec3] = 0x26f63, [0x0ec4] = 0x26f71, [0x0ec5] = 0x27051, + [0x0ec6] = 0x27054, [0x0ec7] = 0x2702a, [0x0ec8] = 0x27044, [0x0ec9] = 0x27055, + [0x0eca] = 0x27099, [0x0ecb] = 0x27039, [0x0ecc] = 0x2703f, [0x0ecd] = 0x2703e, + [0x0ece] = 0x2704f, [0x0ecf] = 0x2704d, [0x0ed0] = 0x27035, [0x0ed1] = 0x27040, + [0x0ed2] = 0x27031, [0x0ed3] = 0x26fd5, [0x0ed4] = 0x2702b, [0x0ed5] = 0x27033, + [0x0ed6] = 0x27041, [0x0ed7] = 0x27056, [0x0ed8] = 0x2704c, [0x0ed9] = 0x27046, + [0x0eda] = 0x2703c, [0x0edb] = 0x27045, [0x0edc] = 0x27043, [0x0edd] = 0x2703d, + [0x0ede] = 0x27070, [0x0edf] = 0x27057, [0x0ee0] = 0x27038, [0x0ee1] = 0x27058, + [0x0ee2] = 0x4565, [0x0ee3] = 0x27037, [0x0ee4] = 0x27207, [0x0ee5] = 0x27206, + [0x0ee6] = 0x27209, [0x0ee7] = 0x274ab, [0x0ee8] = 0x27490, [0x0ee9] = 0x27493, + [0x0eea] = 0x274bc, [0x0eeb] = 0x274a9, [0x0eec] = 0x2749e, [0x0eed] = 0x274bf, + [0x0eee] = 0x274aa, [0x0eef] = 0x27491, [0x0ef0] = 0x274a4, [0x0ef1] = 0x2749a, + [0x0ef2] = 0x274a7, [0x0ef3] = 0x274a1, [0x0ef4] = 0x2749c, [0x0ef5] = 0x274a2, + [0x0ef6] = 0x2749b, [0x0ef7] = 0x2749f, [0x0ef8] = 0x27494, [0x0ef9] = 0x2748f, + [0x0efa] = 0x272f0, [0x0efb] = 0x27492, [0x0efc] = 0x27495, [0x0efd] = 0x274a5, + [0x0efe] = 0x274a6, [0x0eff] = 0x27604, [0x0f00] = 0x2779c, [0x0f01] = 0x27779, + [0x0f02] = 0x2777a, [0x0f03] = 0x2777e, [0x0f04] = 0x2777b, [0x0f05] = 0x27771, + [0x0f06] = 0x27781, [0x0f07] = 0x2777f, [0x0f08] = 0x2777c, [0x0f09] = 0x2777d, + [0x0f0a] = 0x27775, [0x0f0b] = 0x27776, [0x0f0c] = 0x2788e, [0x0f0d] = 0x2788f, + [0x0f0e] = 0x2793e, [0x0f0f] = 0x2793f, [0x0f10] = 0x27940, [0x0f11] = 0x27941, + [0x0f12] = 0x4704, [0x0f13] = 0x27b0d, [0x0f14] = 0x27b17, [0x0f15] = 0x27b10, + [0x0f16] = 0x27b0e, [0x0f17] = 0x27aea, [0x0f18] = 0x27b1d, [0x0f19] = 0x27b03, + [0x0f1a] = 0x27b22, [0x0f1b] = 0x27b04, [0x0f1c] = 0x27b00, [0x0f1d] = 0x27b20, + [0x0f1e] = 0x27b21, [0x0f1f] = 0x27b23, [0x0f20] = 0x27b13, [0x0f21] = 0x27b09, + [0x0f22] = 0x27b11, [0x0f23] = 0x27bcb, [0x0f24] = 0x27bce, [0x0f25] = 0x27bd0, + [0x0f26] = 0x27bcc, [0x0f27] = 0x27bd4, [0x0f28] = 0x214db, [0x0f29] = 0x27c09, + [0x0f2a] = 0x27c0b, [0x0f2b] = 0x27c85, [0x0f2c] = 0x27d06, [0x0f2d] = 0x27d0d, + [0x0f2e] = 0x4764, [0x0f2f] = 0x27d14, [0x0f30] = 0x27d0f, [0x0f31] = 0x27e09, + [0x0f32] = 0x27e14, [0x0f33] = 0x27e0b, [0x0f34] = 0x27dfc, [0x0f35] = 0x27e04, + [0x0f36] = 0x27e0a, [0x0f37] = 0x27e00, [0x0f38] = 0x27dfd, [0x0f39] = 0x27e07, + [0x0f3a] = 0x27e06, [0x0f3b] = 0x27e11, [0x0f3c] = 0x27e79, [0x0f3d] = 0x27e78, + [0x0f3e] = 0x27f88, [0x0f3f] = 0x27f80, [0x0f40] = 0x27f8b, [0x0f41] = 0x28159, + [0x0f42] = 0x28161, [0x0f43] = 0x28175, [0x0f44] = 0x4823, [0x0f45] = 0x28155, + [0x0f46] = 0x2815b, [0x0f47] = 0x2815f, [0x0f48] = 0x28152, [0x0f49] = 0x28162, + [0x0f4a] = 0x28172, [0x0f4b] = 0x2815d, [0x0f4c] = 0x28168, [0x0f4d] = 0x28171, + [0x0f4e] = 0x28165, [0x0f4f] = 0x28166, [0x0f50] = 0x28167, [0x0f51] = 0x28176, + [0x0f52] = 0x2814c, [0x0f53] = 0x28160, [0x0f54] = 0x28174, [0x0f55] = 0x28150, + [0x0f56] = 0x2828a, [0x0f57] = 0x28281, [0x0f58] = 0x28286, [0x0f59] = 0x2827f, + [0x0f5a] = 0x28280, [0x0f5b] = 0x283a5, [0x0f5c] = 0x283a7, [0x0f5d] = 0x283a8, + [0x0f5e] = 0x283a6, [0x0f5f] = 0x283af, [0x0f60] = 0x26195, [0x0f61] = 0x283b1, + [0x0f62] = 0x28435, [0x0f63] = 0x28439, [0x0f64] = 0x285c3, [0x0f65] = 0x28630, + [0x0f66] = 0x2862a, [0x0f67] = 0x2862b, [0x0f68] = 0x2862d, [0x0f69] = 0x2862e, + [0x0f6a] = 0x2862c, [0x0f6b] = 0x28623, [0x0f6c] = 0x28621, [0x0f6d] = 0x28622, + [0x0f6e] = 0x2876c, [0x0f6f] = 0x28781, [0x0f70] = 0x2878f, [0x0f71] = 0x28780, + [0x0f72] = 0x287d0, [0x0f73] = 0x287cd, [0x0f74] = 0x287d5, [0x0f75] = 0x287d4, + [0x0f76] = 0x288d1, [0x0f77] = 0x288be, [0x0f78] = 0x288cb, [0x0f79] = 0x288ce, + [0x0f7a] = 0x288bd, [0x0f7b] = 0x288d0, [0x0f7c] = 0x28b04, [0x0f7d] = 0x28ad5, + [0x0f7e] = 0x28ad0, [0x0f7f] = 0x28ad3, [0x0f80] = 0x28afb, [0x0f81] = 0x28ad8, + [0x0f82] = 0x28ad1, [0x0f83] = 0x28afd, [0x0f84] = 0x28ad9, [0x0f85] = 0x28ad6, + [0x0f86] = 0x28ae6, [0x0f87] = 0x28af9, [0x0f88] = 0x28da1, [0x0f89] = 0x28d9d, + [0x0f8a] = 0x28d9e, [0x0f8b] = 0x95d9, [0x0f8c] = 0x28eff, [0x0f8d] = 0x28f5f, + [0x0f8e] = 0x28f57, [0x0f8f] = 0x28f60, [0x0f90] = 0x28f59, [0x0f91] = 0x2902c, + [0x0f92] = 0x29025, [0x0f93] = 0x29027, [0x0f94] = 0x29030, [0x0f95] = 0x29024, + [0x0f96] = 0x29026, [0x0f97] = 0x2902d, [0x0f98] = 0x2902e, [0x0f99] = 0x29029, + [0x0f9a] = 0x29031, [0x0f9b] = 0x29145, [0x0f9c] = 0x29147, [0x0f9d] = 0x29152, + [0x0f9e] = 0x2914a, [0x0f9f] = 0x29150, [0x0fa0] = 0x29146, [0x0fa1] = 0x2914f, + [0x0fa2] = 0x2914e, [0x0fa3] = 0x29153, [0x0fa4] = 0x29321, [0x0fa5] = 0x29309, + [0x0fa6] = 0x2931a, [0x0fa7] = 0x2931b, [0x0fa8] = 0x25315, [0x0fa9] = 0x29310, + [0x0fab] = 0x29314, [0x0fac] = 0x2930e, [0x0fad] = 0x29312, [0x0fae] = 0x2930b, + [0x0faf] = 0x293cf, [0x0fb0] = 0x293d2, [0x0fb1] = 0x293d0, [0x0fb2] = 0x293d4, + [0x0fb3] = 0x293d3, [0x0fb4] = 0x293d1, [0x0fb5] = 0x20b18, [0x0fb7] = 0x29409, + [0x0fb8] = 0x2951c, [0x0fb9] = 0x29527, [0x0fba] = 0x29525, [0x0fbb] = 0x2951b, + [0x0fbc] = 0x29529, [0x0fbd] = 0x2951f, [0x0fbe] = 0x29530, [0x0fbf] = 0x29524, + [0x0fc0] = 0x29528, [0x0fc1] = 0x29519, [0x0fc2] = 0x2952f, [0x0fc3] = 0x29624, + [0x0fc4] = 0x29621, [0x0fc5] = 0x29625, [0x0fc6] = 0x29626, [0x0fc7] = 0x29627, + [0x0fc8] = 0x29676, [0x0fc9] = 0x29766, [0x0fca] = 0x29775, [0x0fcb] = 0x29769, + [0x0fcc] = 0x2977e, [0x0fcd] = 0x2978f, [0x0fce] = 0x29774, [0x0fcf] = 0x27210, + [0x0fd0] = 0x297ad, [0x0fd1] = 0x2982b, [0x0fd2] = 0x2982a, [0x0fd3] = 0x29858, + [0x0fd4] = 0x29922, [0x0fd5] = 0x2991d, [0x0fd6] = 0x2992b, [0x0fd7] = 0x2992c, + [0x0fd8] = 0x2992d, [0x0fd9] = 0x29933, [0x0fda] = 0x2991b, [0x0fdb] = 0x29927, + [0x0fdc] = 0x2992a, [0x0fdd] = 0x29928, [0x0fde] = 0x2993b, [0x0fdf] = 0x29a7e, + [0x0fe0] = 0x29a71, [0x0fe1] = 0x29a79, [0x0fe2] = 0x29a78, [0x0fe3] = 0x29a70, + [0x0fe4] = 0x29a6d, [0x0fe5] = 0x29a7d, [0x0fe6] = 0x29a75, [0x0fe7] = 0x29a76, + [0x0fe8] = 0x29ade, [0x0fe9] = 0x29b66, [0x0fea] = 0x29b83, [0x0feb] = 0x29b87, + [0x0fec] = 0x29b7b, [0x0fed] = 0x29b89, [0x0fee] = 0x29b86, [0x0fef] = 0x29b82, + [0x0ff0] = 0x29b7c, [0x0ff1] = 0x29b81, [0x0ff2] = 0x29c43, [0x0ff3] = 0x29c45, + [0x0ff4] = 0x29cf7, [0x0ff5] = 0x29cf9, [0x0ff6] = 0x29cfa, [0x0ff7] = 0x29e05, + [0x0ff8] = 0x29dfe, [0x0ff9] = 0x29e0f, [0x0ffa] = 0x29dff, [0x0ffb] = 0x29dfa, + [0x0ffc] = 0x29e09, [0x0ffd] = 0x29e20, [0x0ffe] = 0x29e0c, [0x0fff] = 0x29e3c, + [0x1000] = 0x29e22, [0x1001] = 0x29df8, [0x1002] = 0x29e0a, [0x1003] = 0x29e08, + [0x1004] = 0x29df7, [0x1005] = 0x2a08e, [0x1006] = 0x2a077, [0x1007] = 0x2a08b, + [0x1008] = 0x2a0b4, [0x1009] = 0x2a08a, [0x100a] = 0x2a09a, [0x100b] = 0x2a079, + [0x100c] = 0x2a083, [0x100d] = 0x2a07f, [0x100e] = 0x2a0a1, [0x100f] = 0x2a08f, + [0x1010] = 0x2a0a3, [0x1011] = 0x2a081, [0x1012] = 0x2a094, [0x1013] = 0x2a07e, + [0x1014] = 0x2a082, [0x1015] = 0x2a090, [0x1016] = 0x2a0a5, [0x1017] = 0x2a0ad, + [0x1018] = 0x2a09d, [0x1019] = 0x2a267, [0x101a] = 0x2a269, [0x101b] = 0x2a2cb, + [0x101c] = 0x2a2c8, [0x101d] = 0x2a2d1, [0x101e] = 0x2a340, [0x101f] = 0x2a34b, + [0x1020] = 0x2a349, [0x1021] = 0x2a346, [0x1022] = 0x2a33e, [0x1023] = 0x2a343, + [0x1024] = 0x2a33f, [0x1025] = 0x2a3a5, [0x1026] = 0x2a3a7, [0x1027] = 0x2a44e, + [0x1028] = 0x2a44d, [0x1029] = 0x2259b, [0x102a] = 0x2a4e5, [0x102b] = 0x2a4e1, + [0x102c] = 0x2a4e2, [0x102d] = 0x2a516, [0x102e] = 0x2a514, [0x1030] = 0x2a559, + [0x1031] = 0x2a551, [0x1032] = 0x2a55f, [0x1033] = 0x2a54a, [0x1034] = 0x2a557, + [0x1035] = 0x2a558, [0x1036] = 0x2a5ca, [0x1037] = 0x2a5db, [0x1038] = 0x2a5de, + [0x1039] = 0x2a5e0, [0x103a] = 0x2a5e1, [0x103b] = 0x2a5df, [0x103c] = 0x2a5e2, + [0x103d] = 0x2a5e3, [0x103e] = 0x2a692, [0x103f] = 0x2a6bf, [0x1040] = 0x2a6be, + [0x1041] = 0x2010b, [0x1042] = 0x20452, [0x1043] = 0x2044e, [0x1044] = 0x34b9, + [0x1046] = 0x205a7, [0x1047] = 0x20826, [0x1048] = 0x20827, [0x1049] = 0x208c6, + [0x104a] = 0x2090b, [0x104b] = 0x2096a, [0x104c] = 0x20978, [0x104d] = 0x2111a, + [0x104e] = 0x21116, [0x104f] = 0x21119, [0x1050] = 0x21117, [0x1051] = 0x2111b, + [0x1052] = 0x21118, [0x1053] = 0x21120, [0x1054] = 0x21237, [0x1055] = 0x214ec, + [0x1056] = 0x21581, [0x1057] = 0x2923d, [0x1058] = 0x2190f, [0x1059] = 0x219ad, + [0x105a] = 0x21afb, [0x105b] = 0x21b52, [0x105c] = 0x21faf, [0x105d] = 0x21fb7, + [0x105e] = 0x21fb2, [0x105f] = 0x22178, [0x1060] = 0x221ac, [0x1061] = 0x22300, + [0x1062] = 0x222fe, [0x1063] = 0x22302, [0x1064] = 0x222fd, [0x1065] = 0x22303, + [0x1066] = 0x22440, [0x1067] = 0x22443, [0x1068] = 0x22442, [0x1069] = 0x224b7, + [0x106a] = 0x225a2, [0x106b] = 0x22900, [0x106c] = 0x22935, [0x106d] = 0x22941, + [0x106e] = 0x22905, [0x106f] = 0x20453, [0x1070] = 0x22950, [0x1071] = 0x2294e, + [0x1072] = 0x22953, [0x1073] = 0x22e53, [0x1074] = 0x22e50, [0x1075] = 0x22e57, + [0x1076] = 0x22e5f, [0x1077] = 0x22e55, [0x1078] = 0x22eea, [0x1079] = 0x23026, + [0x107a] = 0x29830, [0x107b] = 0x2302a, [0x107c] = 0x23028, [0x107d] = 0x2302c, + [0x107e] = 0x2302d, [0x107f] = 0x230d4, [0x1080] = 0x23307, [0x1081] = 0x23358, + [0x1082] = 0x23359, [0x1083] = 0x237c5, [0x1084] = 0x237cd, [0x1085] = 0x237c7, + [0x1086] = 0x237e8, [0x1087] = 0x3c4b, [0x1088] = 0x23932, [0x1089] = 0x2a697, + [0x108a] = 0x23ade, [0x108b] = 0x23c32, [0x108c] = 0x20ac8, [0x108e] = 0x240f1, + [0x108f] = 0x240f0, [0x1090] = 0x240ec, [0x1091] = 0x24109, [0x1092] = 0x240f9, + [0x1093] = 0x240f5, [0x1094] = 0x240fe, [0x1095] = 0x24474, [0x1096] = 0x24481, + [0x1097] = 0x2447c, [0x1098] = 0x24475, [0x1099] = 0x24489, [0x109a] = 0x24482, + [0x109b] = 0x24497, [0x109c] = 0x24486, [0x109d] = 0x2447d, [0x109e] = 0x24493, + [0x109f] = 0x2449c, [0x10a0] = 0x24476, [0x10a1] = 0x24480, [0x10a2] = 0x24545, + [0x10a3] = 0x206a1, [0x10a4] = 0x24703, [0x10a5] = 0x248c9, [0x10a6] = 0x248cd, + [0x10a7] = 0x248d0, [0x10a8] = 0x24aad, [0x10a9] = 0x24ac5, [0x10aa] = 0x24ba2, + [0x10ab] = 0x24cec, [0x10ac] = 0x24cf6, [0x10ad] = 0x24cf3, [0x10ae] = 0x24ef3, + [0x10af] = 0x24efa, [0x10b0] = 0x24ef9, [0x10b1] = 0x24ef5, [0x10b2] = 0x24ef4, + [0x10b3] = 0x24ef8, [0x10b4] = 0x24fb6, [0x10b5] = 0x24fb4, [0x10b6] = 0x25032, + [0x10b7] = 0x250cd, [0x10b8] = 0x250c8, [0x10b9] = 0x250ce, [0x10ba] = 0x250ca, + [0x10bb] = 0x2532a, [0x10bc] = 0x25321, [0x10bd] = 0x2531d, [0x10be] = 0x255bd, + [0x10bf] = 0x255be, [0x10c0] = 0x255c2, [0x10c1] = 0x40f1, [0x10c2] = 0x255c9, + [0x10c3] = 0x2571f, [0x10c4] = 0x258f1, [0x10c5] = 0x258ed, [0x10c6] = 0x258f2, + [0x10c7] = 0x258e0, [0x10c8] = 0x258f7, [0x10c9] = 0x25a30, [0x10ca] = 0x25a37, + [0x10cb] = 0x25a31, [0x10cc] = 0x25a36, [0x10cd] = 0x25ac8, [0x10ce] = 0x25d6d, + [0x10cf] = 0x25d69, [0x10d0] = 0x25d7d, [0x10d1] = 0x25d61, [0x10d2] = 0x25d70, + [0x10d3] = 0x25d71, [0x10d4] = 0x25d73, [0x10d5] = 0x25d76, [0x10d6] = 0x25d75, + [0x10d7] = 0x25d78, [0x10d8] = 0x25d79, [0x10d9] = 0x25d64, [0x10da] = 0x25d6e, + [0x10db] = 0x25f51, [0x10dc] = 0x25f4f, [0x10dd] = 0x25f22, [0x10de] = 0x261af, + [0x10df] = 0x261aa, [0x10e0] = 0x261a3, [0x10e1] = 0x2619d, [0x10e2] = 0x2619c, + [0x10e3] = 0x261a1, [0x10e4] = 0x261b6, [0x10e5] = 0x261ac, [0x10e6] = 0x261a2, + [0x10e7] = 0x261a7, [0x10e8] = 0x261b0, [0x10e9] = 0x261a9, [0x10ea] = 0x261c3, + [0x10eb] = 0x26331, [0x10ec] = 0x26332, [0x10ed] = 0x26333, [0x10ee] = 0x26334, + [0x10ef] = 0x26337, [0x10f0] = 0x2633c, [0x10f1] = 0x263d9, [0x10f2] = 0x263dd, + [0x10f3] = 0x263de, [0x10f4] = 0x263df, [0x10f5] = 0x263e0, [0x10f6] = 0x264a5, + [0x10f7] = 0x264aa, [0x10f8] = 0x264a2, [0x10f9] = 0x264a3, [0x10fa] = 0x26604, + [0x10fb] = 0x26603, [0x10fc] = 0x265fe, [0x10fd] = 0x26628, [0x10fe] = 0x268af, + [0x10ff] = 0x268ad, [0x1100] = 0x268a6, [0x1101] = 0x269ac, [0x1102] = 0x269a5, + [0x1103] = 0x269b0, [0x1104] = 0x269b1, [0x1105] = 0x26a01, [0x1106] = 0x26ab2, + [0x1107] = 0x26ad2, [0x1108] = 0x26af1, [0x1109] = 0x26fd1, [0x110a] = 0x27047, + [0x110b] = 0x270c9, [0x110c] = 0x270a7, [0x110d] = 0x270c8, [0x110e] = 0x27095, + [0x110f] = 0x2708e, [0x1110] = 0x27091, [0x1111] = 0x2707d, [0x1112] = 0x270ee, + [0x1113] = 0x2708d, [0x1114] = 0x2708c, [0x1115] = 0x270b0, [0x1116] = 0x27096, + [0x1117] = 0x27042, [0x1118] = 0x2707c, [0x1119] = 0x270b1, [0x111a] = 0x270b2, + [0x111b] = 0x27084, [0x111c] = 0x2709d, [0x111d] = 0x270a1, [0x111e] = 0x27098, + [0x111f] = 0x270b3, [0x1120] = 0x27022, [0x1121] = 0x2707b, [0x1122] = 0x2708a, + [0x1123] = 0x270ce, [0x1124] = 0x27080, [0x1125] = 0x27097, [0x1126] = 0x270b4, + [0x1127] = 0x270b5, [0x1128] = 0x2709a, [0x1129] = 0x2709f, [0x112a] = 0x27093, + [0x112b] = 0x27212, [0x112c] = 0x2720b, [0x112d] = 0x2720e, [0x112e] = 0x274a3, + [0x112f] = 0x274cc, [0x1130] = 0x274dc, [0x1131] = 0x274e1, [0x1132] = 0x274de, + [0x1133] = 0x274d2, [0x1134] = 0x274db, [0x1135] = 0x274d9, [0x1136] = 0x274d7, + [0x1137] = 0x274d4, [0x1138] = 0x274c9, [0x1139] = 0x274eb, [0x113a] = 0x274da, + [0x113b] = 0x274d1, [0x113c] = 0x27504, [0x113d] = 0x274ca, [0x113e] = 0x274e2, + [0x113f] = 0x275d7, [0x1140] = 0x2778c, [0x1141] = 0x27799, [0x1142] = 0x277a2, + [0x1143] = 0x27796, [0x1144] = 0x27794, [0x1145] = 0x2779f, [0x1146] = 0x4667, + [0x1147] = 0x2778e, [0x1148] = 0x27803, [0x1149] = 0x27894, [0x114a] = 0x27893, + [0x114b] = 0x27944, [0x114c] = 0x27b2f, [0x114d] = 0x27b35, [0x114e] = 0x27b2b, + [0x114f] = 0x27b32, [0x1150] = 0x27b2d, [0x1151] = 0x27b36, [0x1152] = 0x4714, + [0x1153] = 0x27b31, [0x1154] = 0x27b12, [0x1155] = 0x27b33, [0x1156] = 0x27b1f, + [0x1157] = 0x27b34, [0x1158] = 0x27b40, [0x1159] = 0x27b3f, [0x115a] = 0x27b41, + [0x115b] = 0x27bd3, [0x115c] = 0x27c89, [0x115d] = 0x27d18, [0x115e] = 0x27d10, + [0x115f] = 0x27e1a, [0x1160] = 0x27e25, [0x1161] = 0x27e1e, [0x1162] = 0x27f92, + [0x1163] = 0x27f95, [0x1164] = 0x27f93, [0x1165] = 0x28184, [0x1166] = 0x2819a, + [0x1167] = 0x28189, [0x1168] = 0x2818d, [0x1169] = 0x28188, [0x116a] = 0x28191, + [0x116b] = 0x2819b, [0x116c] = 0x2819c, [0x116d] = 0x29548, [0x116e] = 0x2828e, + [0x116f] = 0x28292, [0x1170] = 0x283c5, [0x1171] = 0x283c1, [0x1172] = 0x283b8, + [0x1173] = 0x283be, [0x1174] = 0x283b5, [0x1175] = 0x283c7, [0x1176] = 0x2843c, + [0x1177] = 0x4889, [0x1178] = 0x285ec, [0x1179] = 0x2863f, [0x117a] = 0x28639, + [0x117b] = 0x28637, [0x117c] = 0x287a1, [0x117d] = 0x28794, [0x117e] = 0x287a0, + [0x117f] = 0x287de, [0x1180] = 0x287db, [0x1181] = 0x287df, [0x1182] = 0x287dc, + [0x1183] = 0x288d6, [0x1184] = 0x288dc, [0x1185] = 0x288dd, [0x1186] = 0x288e0, + [0x1187] = 0x288e3, [0x1188] = 0x288e1, [0x1189] = 0x28b18, [0x118a] = 0x28b19, + [0x118b] = 0x28b53, [0x118d] = 0x28b44, [0x118e] = 0x28b0e, [0x118f] = 0x28b0f, + [0x1190] = 0x28b47, [0x1191] = 0x28b17, [0x1192] = 0x28b1d, [0x1193] = 0x28b11, + [0x1194] = 0x28cb4, [0x1195] = 0x28cb6, [0x1196] = 0x28db7, [0x1197] = 0x28dbe, + [0x1198] = 0x28dc2, [0x1199] = 0x28db4, [0x119a] = 0x28f31, [0x119b] = 0x28f15, + [0x119c] = 0x28f83, [0x119d] = 0x2903b, [0x119e] = 0x29036, [0x119f] = 0x29042, + [0x11a0] = 0x29050, [0x11a1] = 0x29040, [0x11a2] = 0x29034, [0x11a3] = 0x29038, + [0x11a4] = 0x2903d, [0x11a5] = 0x2903e, [0x11a6] = 0x29035, [0x11a7] = 0x2903a, + [0x11a8] = 0x29046, [0x11a9] = 0x29037, [0x11aa] = 0x29039, [0x11ab] = 0x29045, + [0x11ac] = 0x29177, [0x11ad] = 0x2915d, [0x11ae] = 0x2916a, [0x11af] = 0x29176, + [0x11b0] = 0x2916b, [0x11b1] = 0x2916c, [0x11b2] = 0x29165, [0x11b3] = 0x29164, + [0x11b4] = 0x29171, [0x11b5] = 0x2915f, [0x11b6] = 0x29172, [0x11b7] = 0x291fe, + [0x11b8] = 0x291ff, [0x11b9] = 0x2923e, [0x11ba] = 0x2932b, [0x11bb] = 0x29336, + [0x11bc] = 0x2932d, [0x11bd] = 0x29339, [0x11be] = 0x2933f, [0x11bf] = 0x2933b, + [0x11c0] = 0x29333, [0x11c1] = 0x29342, [0x11c2] = 0x2933a, [0x11c3] = 0x293d5, + [0x11c4] = 0x293d8, [0x11c5] = 0x293d9, [0x11c6] = 0x2940d, [0x11c7] = 0x2940a, + [0x11c8] = 0x29439, [0x11c9] = 0x2943a, [0x11ca] = 0x2953d, [0x11cb] = 0x29545, + [0x11cc] = 0x2953a, [0x11cd] = 0x29537, [0x11ce] = 0x2953e, [0x11cf] = 0x29542, + [0x11d0] = 0x29787, [0x11d1] = 0x2978c, [0x11d2] = 0x29782, [0x11d3] = 0x2976b, + [0x11d4] = 0x297a0, [0x11d5] = 0x2979a, [0x11d6] = 0x29790, [0x11d7] = 0x2978e, + [0x11d8] = 0x297a1, [0x11d9] = 0x297bd, [0x11da] = 0x297b2, [0x11db] = 0x297b5, + [0x11dc] = 0x297b7, [0x11dd] = 0x297aa, [0x11de] = 0x297a2, [0x11df] = 0x297a5, + [0x11e0] = 0x297ae, [0x11e1] = 0x297ab, [0x11e2] = 0x297bc, [0x11e3] = 0x29832, + [0x11e4] = 0x2985a, [0x11e5] = 0x29964, [0x11e6] = 0x2995c, [0x11e7] = 0x2994d, + [0x11e8] = 0x2993f, [0x11e9] = 0x2993e, [0x11ea] = 0x29952, [0x11eb] = 0x29958, + [0x11ec] = 0x29957, [0x11ed] = 0x2995e, [0x11ee] = 0x29953, [0x11ef] = 0x29954, + [0x11f0] = 0x29956, [0x11f1] = 0x28f65, [0x11f2] = 0x29a84, [0x11f3] = 0x29a85, + [0x11f4] = 0x29a86, [0x11f5] = 0x29b97, [0x11f6] = 0x29ba1, [0x11f7] = 0x29ba2, + [0x11f8] = 0x4c0b, [0x11fa] = 0x29ba3, [0x11fb] = 0x29ba6, [0x11fc] = 0x4c17, + [0x11fd] = 0x29c15, [0x11fe] = 0x29c24, [0x11ff] = 0x29c4a, [0x1200] = 0x29c49, + [0x1201] = 0x29c48, [0x1202] = 0x29c4b, [0x1203] = 0x29d0e, [0x1204] = 0x29962, + [0x1205] = 0x29d0b, [0x1206] = 0x29d0a, [0x1207] = 0x29d08, [0x1208] = 0x29d06, + [0x1209] = 0x29e43, [0x120a] = 0x29e47, [0x120b] = 0x29e3f, [0x120c] = 0x29e46, + [0x120d] = 0x29e50, [0x120e] = 0x4c6d, [0x120f] = 0x29e4b, [0x1210] = 0x4c70, + [0x1211] = 0x29e52, [0x1212] = 0x2a0d7, [0x1213] = 0x2a0bf, [0x1214] = 0x2a0d8, + [0x1215] = 0x2a0e0, [0x1216] = 0x2a0e7, [0x1217] = 0x2a0b8, [0x1218] = 0x2a0d5, + [0x1219] = 0x2a0ef, [0x121a] = 0x2a0e6, [0x121b] = 0x2a0e4, [0x121c] = 0x2a0d4, + [0x121d] = 0x2a0d6, [0x121e] = 0x2a0ea, [0x121f] = 0x4ced, [0x1220] = 0x2a0bb, + [0x1221] = 0x2a0e9, [0x1223] = 0x2a26d, [0x1224] = 0x2a270, [0x1225] = 0x2a273, + [0x1226] = 0x2a272, [0x1227] = 0x2a2d4, [0x1228] = 0x2a2ce, [0x1229] = 0x2a2d5, + [0x122a] = 0x2a35a, [0x122b] = 0x2a358, [0x122c] = 0x2a352, [0x122d] = 0x2a350, + [0x122e] = 0x2a355, [0x122f] = 0x2a34e, [0x1230] = 0x2a34d, [0x1231] = 0x2a3cb, + [0x1232] = 0x2a3cc, [0x1233] = 0x2a3cd, [0x1234] = 0x2a3d1, [0x1235] = 0x2a458, + [0x1236] = 0x2a463, [0x1237] = 0x2a45e, [0x1238] = 0x2a454, [0x1239] = 0x2a45b, + [0x123a] = 0x2a4e9, [0x123b] = 0x2a4e7, [0x123c] = 0x2a4e8, [0x123d] = 0x2a51d, + [0x123e] = 0x2a567, [0x123f] = 0x2a55a, [0x1240] = 0x2a55c, [0x1241] = 0x2a55b, + [0x1242] = 0x2a561, [0x1243] = 0x2a5a1, [0x1244] = 0x4d8d, [0x1245] = 0x2a5a4, + [0x1246] = 0x2a5e9, [0x1247] = 0x2a5ef, [0x1248] = 0x2a5e5, [0x1249] = 0x2a5f5, + [0x124a] = 0x2a5eb, [0x124b] = 0x2a5ed, [0x124c] = 0x2a696, [0x124d] = 0x2a695, + [0x124e] = 0x2a6b3, [0x124f] = 0x2a6b5, [0x1250] = 0x2a6b1, [0x1251] = 0x34a7, + [0x1252] = 0x2044d, [0x1253] = 0x20624, [0x1254] = 0x2082b, [0x1255] = 0x209cf, + [0x1256] = 0x20ac9, [0x1257] = 0x21136, [0x1258] = 0x21131, [0x1259] = 0x21154, + [0x125a] = 0x2113a, [0x125b] = 0x21138, [0x125c] = 0x21239, [0x125d] = 0x21238, + [0x125e] = 0x214f4, [0x125f] = 0x214f3, [0x1260] = 0x214f6, [0x1261] = 0x214fc, + [0x1262] = 0x214f5, [0x1263] = 0x214f1, [0x1264] = 0x2169c, [0x1265] = 0x21918, + [0x1266] = 0x2191a, [0x1267] = 0x21afc, [0x1268] = 0x21afe, [0x1269] = 0x21b03, + [0x126a] = 0x21b53, [0x126b] = 0x21d2b, [0x126c] = 0x21fc6, [0x126d] = 0x21fc1, + [0x126e] = 0x2217b, [0x126f] = 0x22306, [0x1270] = 0x22449, [0x1271] = 0x224b8, + [0x1272] = 0x225a3, [0x1273] = 0x22952, [0x1274] = 0x2294d, [0x1275] = 0x2295f, + [0x1276] = 0x2295e, [0x1277] = 0x22961, [0x1278] = 0x22a23, [0x1279] = 0x22e8c, + [0x127a] = 0x22e6f, [0x127b] = 0x22e75, [0x127c] = 0x22e74, [0x127d] = 0x22e71, + [0x127e] = 0x22e70, [0x127f] = 0x22e6c, [0x1280] = 0x23126, [0x1281] = 0x23308, + [0x1282] = 0x6707, [0x1283] = 0x237f0, [0x1284] = 0x237ef, [0x1285] = 0x237fb, + [0x1286] = 0x23810, [0x1287] = 0x2380c, [0x1288] = 0x237f6, [0x1289] = 0x237fe, + [0x128a] = 0x23a7c, [0x128b] = 0x23ae1, [0x128c] = 0x23c38, [0x128d] = 0x23c6f, + [0x128e] = 0x24118, [0x128f] = 0x24115, [0x1290] = 0x2411c, [0x1291] = 0x24110, + [0x1292] = 0x24135, [0x1294] = 0x24117, [0x1295] = 0x2411d, [0x1296] = 0x24126, + [0x1297] = 0x24128, [0x1298] = 0x24129, [0x1299] = 0x2412a, [0x129a] = 0x2411a, + [0x129c] = 0x22307, [0x129d] = 0x244ab, [0x129e] = 0x244ac, [0x129f] = 0x244a1, + [0x12a0] = 0x244ae, [0x12a1] = 0x244a3, [0x12a2] = 0x244a7, [0x12a3] = 0x24548, + [0x12a4] = 0x24604, [0x12a5] = 0x246fd, [0x12a6] = 0x3e5a, [0x12a7] = 0x24708, + [0x12a8] = 0x248d2, [0x12a9] = 0x24ac6, [0x12aa] = 0x24abe, [0x12ab] = 0x24b1c, + [0x12ac] = 0x24ba6, [0x12ad] = 0x24ba7, [0x12ae] = 0x24bab, [0x12af] = 0x24c00, + [0x12b0] = 0x24cfb, [0x12b1] = 0x24cfc, [0x12b2] = 0x24cf9, [0x12b3] = 0x24d01, + [0x12b4] = 0x24f06, [0x12b5] = 0x24f04, [0x12b7] = 0x25034, [0x12b8] = 0x25336, + [0x12b9] = 0x25332, [0x12ba] = 0x25342, [0x12bb] = 0x2532d, [0x12bc] = 0x25335, + [0x12bd] = 0x255d8, [0x12be] = 0x25723, [0x12bf] = 0x25720, [0x12c0] = 0x25901, + [0x12c1] = 0x25900, [0x12c2] = 0x25903, [0x12c3] = 0x2a6bc, [0x12c4] = 0x25a3c, + [0x12c5] = 0x25a41, [0x12c6] = 0x25a35, [0x12c7] = 0x25ac9, [0x12c8] = 0x25d8e, + [0x12c9] = 0x25d9e, [0x12ca] = 0x25d99, [0x12cb] = 0x25db4, [0x12cc] = 0x25daa, + [0x12cd] = 0x25d9f, [0x12ce] = 0x25d96, [0x12cf] = 0x25d9d, [0x12d0] = 0x25dc3, + [0x12d1] = 0x25d74, [0x12d2] = 0x25dab, [0x12d3] = 0x42af, [0x12d4] = 0x25f63, + [0x12d5] = 0x25f5b, [0x12d6] = 0x25f5a, [0x12d7] = 0x261c5, [0x12d8] = 0x261c4, + [0x12d9] = 0x261cf, [0x12da] = 0x261c8, [0x12db] = 0x261a4, [0x12dc] = 0x261bd, + [0x12dd] = 0x261d3, [0x12de] = 0x26260, [0x12df] = 0x2633b, [0x12e0] = 0x263e3, + [0x12e1] = 0x263e7, [0x12e2] = 0x264a8, [0x12e3] = 0x264ac, [0x12e4] = 0x264a9, + [0x12e5] = 0x2652a, [0x12e6] = 0x26608, [0x12e7] = 0x26609, [0x12e8] = 0x268b9, + [0x12e9] = 0x26ac1, [0x12ea] = 0x26ac2, [0x12eb] = 0x26ab8, [0x12ec] = 0x270e1, + [0x12ed] = 0x270eb, [0x12ee] = 0x270e5, [0x12ef] = 0x270fa, [0x12f0] = 0x270e4, + [0x12f1] = 0x2710b, [0x12f2] = 0x270d7, [0x12f3] = 0x270ef, [0x12f4] = 0x270e0, + [0x12f5] = 0x270ec, [0x12f6] = 0x270fb, [0x12f8] = 0x270d3, [0x12f9] = 0x270e6, + [0x12fa] = 0x270fc, [0x12fb] = 0x270e3, [0x12fc] = 0x270cf, [0x12fd] = 0x270da, + [0x12fe] = 0x270dc, [0x12ff] = 0x270d2, [0x1300] = 0x270a4, [0x1301] = 0x456b, + [0x1302] = 0x27217, [0x1303] = 0x27216, [0x1304] = 0x274f2, [0x1305] = 0x274fc, + [0x1306] = 0x27518, [0x1307] = 0x274f6, [0x1308] = 0x274fe, [0x1309] = 0x274f3, + [0x130a] = 0x274f7, [0x130b] = 0x27501, [0x130c] = 0x274f9, [0x130d] = 0x27506, + [0x130e] = 0x274f5, [0x130f] = 0x27510, [0x1310] = 0x274df, [0x1311] = 0x27503, + [0x1312] = 0x27508, [0x1313] = 0x275d8, [0x1314] = 0x27605, [0x1315] = 0x27797, + [0x1316] = 0x277b3, [0x1317] = 0x277ae, [0x1318] = 0x277af, [0x1319] = 0x277a7, + [0x131a] = 0x277b1, [0x131b] = 0x277a8, [0x131c] = 0x277ac, [0x131d] = 0x277ab, + [0x131e] = 0x27804, [0x131f] = 0x2789a, [0x1320] = 0x2794a, [0x1321] = 0x27b42, + [0x1322] = 0x27b58, [0x1323] = 0x27b4b, [0x1324] = 0x27b45, [0x1325] = 0x27b49, + [0x1326] = 0x27b4c, [0x1327] = 0x27b59, [0x1328] = 0x27b56, [0x1329] = 0x471b, + [0x132a] = 0x27b46, [0x132b] = 0x27b44, [0x132c] = 0x27b5b, [0x132d] = 0x27b69, + [0x132e] = 0x27c8e, [0x132f] = 0x27c8f, [0x1330] = 0x27d1e, [0x1331] = 0x268bc, + [0x1332] = 0x27e2f, [0x1333] = 0x27f9e, [0x1334] = 0x27f9d, [0x1335] = 0x27f9f, + [0x1336] = 0x27f9c, [0x1337] = 0x281b4, [0x1338] = 0x281ae, [0x1339] = 0x281ab, + [0x133a] = 0x281b3, [0x133b] = 0x281af, [0x133c] = 0x281c2, [0x133d] = 0x28293, + [0x133e] = 0x28295, [0x133f] = 0x28296, [0x1340] = 0x28297, [0x1341] = 0x283cf, + [0x1342] = 0x283ce, [0x1343] = 0x283cb, [0x1344] = 0x2844b, [0x1345] = 0x28646, + [0x1346] = 0x28643, [0x1347] = 0x28645, [0x1348] = 0x28651, [0x1349] = 0x287ae, + [0x134a] = 0x287af, [0x134b] = 0x287b0, [0x134c] = 0x287b8, [0x134d] = 0x287e2, + [0x134e] = 0x287e3, [0x134f] = 0x287e6, [0x1350] = 0x288ed, [0x1351] = 0x288ea, + [0x1352] = 0x2893a, [0x1353] = 0x28b59, [0x1354] = 0x28b84, [0x1355] = 0x28b5f, + [0x1356] = 0x28b7c, [0x1357] = 0x28b5c, [0x1358] = 0x28b58, [0x1359] = 0x28b55, + [0x135a] = 0x28b5d, [0x135b] = 0x28b7e, [0x135c] = 0x28b80, [0x135d] = 0x28b83, + [0x135e] = 0x28b57, [0x135f] = 0x4963, [0x1360] = 0x28b5e, [0x1361] = 0x28cba, + [0x1362] = 0x28dd5, [0x1363] = 0x28f58, [0x1364] = 0x28f68, [0x1365] = 0x28f67, + [0x1366] = 0x2904a, [0x1367] = 0x2904c, [0x1368] = 0x29052, [0x1369] = 0x29049, + [0x136a] = 0x2904e, [0x136b] = 0x29047, [0x136c] = 0x2904d, [0x136d] = 0x2904b, + [0x136e] = 0x2904f, [0x136f] = 0x2917e, [0x1370] = 0x29187, [0x1371] = 0x29183, + [0x1372] = 0x29189, [0x1373] = 0x24aca, [0x1374] = 0x29186, [0x1375] = 0x29188, + [0x1376] = 0x29247, [0x1377] = 0x29242, [0x1378] = 0x29249, [0x1379] = 0x29248, + [0x137a] = 0x4a80, [0x137b] = 0x4a84, [0x137c] = 0x4a7f, [0x137d] = 0x29344, + [0x137e] = 0x29351, [0x137f] = 0x29346, [0x1380] = 0x29347, [0x1381] = 0x293e4, + [0x1382] = 0x2940f, [0x1383] = 0x2943f, [0x1384] = 0x2954b, [0x1385] = 0x29557, + [0x1386] = 0x29552, [0x1387] = 0x4af1, [0x1388] = 0x29551, [0x1389] = 0x29558, + [0x138a] = 0x2955e, [0x138b] = 0x29553, [0x138c] = 0x2955d, [0x138d] = 0x2954d, + [0x138e] = 0x2963c, [0x138f] = 0x2963f, [0x1390] = 0x29646, [0x1391] = 0x2963e, + [0x1392] = 0x29644, [0x1393] = 0x29645, [0x1394] = 0x29641, [0x1395] = 0x29638, + [0x1396] = 0x29642, [0x1397] = 0x29643, [0x1398] = 0x2967a, [0x1399] = 0x297a3, + [0x139a] = 0x297ba, [0x139b] = 0x297c0, [0x139c] = 0x297c4, [0x139d] = 0x297c6, + [0x139e] = 0x297cb, [0x139f] = 0x29861, [0x13a0] = 0x2997a, [0x13a1] = 0x29973, + [0x13a2] = 0x29972, [0x13a3] = 0x29974, [0x13a4] = 0x29980, [0x13a5] = 0x29981, + [0x13a6] = 0x9a47, [0x13a7] = 0x29a95, [0x13a8] = 0x29a8f, [0x13a9] = 0x29a90, + [0x13aa] = 0x29a92, [0x13ab] = 0x29a94, [0x13ac] = 0x29a8b, [0x13ad] = 0x29ae6, + [0x13ae] = 0x29bb2, [0x13af] = 0x29bb8, [0x13b0] = 0x29bbd, [0x13b1] = 0x29bbe, + [0x13b2] = 0x29bce, [0x13b3] = 0x29bba, [0x13b4] = 0x29c16, [0x13b5] = 0x29c26, + [0x13b6] = 0x29c25, [0x13b7] = 0x29c4c, [0x13b8] = 0x29c50, [0x13b9] = 0x29c4e, + [0x13ba] = 0x29c51, [0x13bb] = 0x29c52, [0x13bc] = 0x29d14, [0x13bd] = 0x29d15, + [0x13be] = 0x29d1b, [0x13bf] = 0x29e82, [0x13c0] = 0x29e99, [0x13c1] = 0x29e9a, + [0x13c2] = 0x29e7d, [0x13c3] = 0x29e85, [0x13c4] = 0x29e86, [0x13c5] = 0x29e9c, + [0x13c6] = 0x29e79, [0x13c7] = 0x29e7b, [0x13c8] = 0x29e80, [0x13c9] = 0x29e83, + [0x13ca] = 0x29e81, [0x13cb] = 0x2a11e, [0x13cc] = 0x2a11b, [0x13cd] = 0x2a12a, + [0x13ce] = 0x2a0fb, [0x13cf] = 0x2a105, [0x13d0] = 0x2a120, [0x13d1] = 0x2a111, + [0x13d2] = 0x2a104, [0x13d3] = 0x2a0fd, [0x13d4] = 0x2a103, [0x13d5] = 0x2a110, + [0x13d6] = 0x2a118, [0x13d7] = 0x2a10a, [0x13d8] = 0x2a14e, [0x13d9] = 0x2a109, + [0x13da] = 0x2a107, [0x13db] = 0x2a11c, [0x13dc] = 0x4d1c, [0x13dd] = 0x2a277, + [0x13de] = 0x2a276, [0x13df] = 0x2a2d8, [0x13e0] = 0x2a2d9, [0x13e1] = 0x2a361, + [0x13e2] = 0x2a35c, [0x13e3] = 0x2a35e, [0x13e4] = 0x2a360, [0x13e5] = 0x2a3aa, + [0x13e6] = 0x2a3d6, [0x13e7] = 0x2a3d8, [0x13e8] = 0x2a409, [0x13e9] = 0x2a408, + [0x13ea] = 0x2a46b, [0x13eb] = 0x2a465, [0x13ec] = 0x2a473, [0x13ed] = 0x2a474, + [0x13ee] = 0x2a4ed, [0x13ef] = 0x2a524, [0x13f0] = 0x2a525, [0x13f1] = 0x2a56a, + [0x13f2] = 0x2a5a7, [0x13f3] = 0x2a5a8, [0x13f4] = 0x2a60b, [0x13f5] = 0x2a5fa, + [0x13f6] = 0x2a5f9, [0x13f7] = 0x2a5ff, [0x13f8] = 0x2a604, [0x13f9] = 0x2a5f6, + [0x13fa] = 0x2a605, [0x13fb] = 0x2a699, [0x13fc] = 0x2a6ab, [0x13fd] = 0x2a6bd, + [0x13fe] = 0x2a6b8, [0x13ff] = 0x34a8, [0x1400] = 0x20464, [0x1401] = 0x2045a, + [0x1402] = 0x20572, [0x1403] = 0x2097a, [0x1404] = 0x20b95, [0x1405] = 0x2115f, + [0x1406] = 0x21161, [0x1407] = 0x2115e, [0x1408] = 0x2115a, [0x1409] = 0x2115c, + [0x140a] = 0x2115d, [0x140b] = 0x2116e, [0x140c] = 0x21157, [0x140d] = 0x21158, + [0x140e] = 0x21502, [0x140f] = 0x2150b, [0x1410] = 0x21508, [0x1411] = 0x21551, + [0x1412] = 0x21925, [0x1413] = 0x21928, [0x1414] = 0x21923, [0x1415] = 0x21921, + [0x1416] = 0x21924, [0x1417] = 0x21929, [0x1418] = 0x21b06, [0x1419] = 0x21b0a, + [0x141a] = 0x21fca, [0x141b] = 0x21fcc, [0x141c] = 0x21fcb, [0x141d] = 0x21fcf, + [0x141e] = 0x2217f, [0x141f] = 0x2217c, [0x1420] = 0x221d6, [0x1421] = 0x22309, + [0x1422] = 0x2230b, [0x1423] = 0x22376, [0x1424] = 0x2247d, [0x1425] = 0x225a5, + [0x1426] = 0x2295b, [0x1427] = 0x2295c, [0x1428] = 0x2295d, [0x1429] = 0x22965, + [0x142a] = 0x22e6d, [0x142b] = 0x22e82, [0x142c] = 0x22e83, [0x142d] = 0x22e87, + [0x142e] = 0x22e95, [0x142f] = 0x22e8a, [0x1430] = 0x230d6, [0x1431] = 0x23128, + [0x1432] = 0x2330d, [0x1433] = 0x2382e, [0x1435] = 0x2382d, [0x1436] = 0x23821, + [0x1437] = 0x23819, [0x1438] = 0x2393b, [0x1439] = 0x2393c, [0x143a] = 0x2393a, + [0x143b] = 0x23a7e, [0x143c] = 0x23c3b, [0x143d] = 0x24147, [0x143e] = 0x24139, + [0x143f] = 0x24134, [0x1440] = 0x24136, [0x1441] = 0x24146, [0x1442] = 0x2413b, + [0x1443] = 0x24141, [0x1444] = 0x24145, [0x1445] = 0x244c0, [0x1446] = 0x244c4, + [0x1447] = 0x244ba, [0x1448] = 0x244bd, [0x1449] = 0x244be, [0x144a] = 0x245a3, + [0x144b] = 0x2470c, [0x144c] = 0x248d9, [0x144d] = 0x24acd, [0x144e] = 0x24bae, + [0x144f] = 0x24cff, [0x1450] = 0x24d24, [0x1451] = 0x24fbb, [0x1452] = 0x24fbc, + [0x1453] = 0x25036, [0x1454] = 0x250d5, [0x1455] = 0x250d3, [0x1456] = 0x250d6, + [0x1457] = 0x2533c, [0x1458] = 0x2533f, [0x1459] = 0x255de, [0x145a] = 0x255e3, + [0x145b] = 0x25727, [0x145c] = 0x25729, [0x145d] = 0x418b, [0x145e] = 0x25905, + [0x145f] = 0x25907, [0x1460] = 0x2590c, [0x1461] = 0x25ad0, [0x1462] = 0x25dbe, + [0x1463] = 0x25dbc, [0x1464] = 0x25dd0, [0x1465] = 0x25dc2, [0x1466] = 0x25db5, + [0x1467] = 0x25dc9, [0x1468] = 0x25f66, [0x1469] = 0x432b, [0x146a] = 0x261d5, + [0x146b] = 0x261e2, [0x146c] = 0x261dc, [0x146d] = 0x261e3, [0x146e] = 0x261da, + [0x146f] = 0x261c2, [0x1470] = 0x261e8, [0x1471] = 0x263e9, [0x1472] = 0x264af, + [0x1473] = 0x264ad, [0x1474] = 0x264ae, [0x1475] = 0x2660b, [0x1476] = 0x268c1, + [0x1477] = 0x269b6, [0x1478] = 0x269b9, [0x1479] = 0x26ac0, [0x147a] = 0x270a5, + [0x147b] = 0x27128, [0x147c] = 0x27122, [0x147d] = 0x27129, [0x147e] = 0x27118, + [0x147f] = 0x2711f, [0x1480] = 0x2711c, [0x1481] = 0x27112, [0x1482] = 0x2712a, + [0x1483] = 0x457a, [0x1484] = 0x27121, [0x1485] = 0x2712b, [0x1486] = 0x27117, + [0x1487] = 0x270f0, [0x1488] = 0x27116, [0x1489] = 0x27123, [0x148a] = 0x2752b, + [0x148b] = 0x27526, [0x148c] = 0x2753d, [0x148d] = 0x27522, [0x148e] = 0x2753a, + [0x148f] = 0x27531, [0x1490] = 0x27532, [0x1491] = 0x27554, [0x1492] = 0x27521, + [0x1493] = 0x27535, [0x1494] = 0x4609, [0x1495] = 0x2752e, [0x1496] = 0x27530, + [0x1497] = 0x2752f, [0x1498] = 0x27536, [0x1499] = 0x275da, [0x149a] = 0x275d9, + [0x149b] = 0x277bb, [0x149c] = 0x277bc, [0x149d] = 0x277b7, [0x149e] = 0x277c2, + [0x149f] = 0x277bd, [0x14a0] = 0x277b2, [0x14a1] = 0x466d, [0x14a2] = 0x25344, + [0x14a3] = 0x25dd1, [0x14a4] = 0x27b52, [0x14a5] = 0x27b6b, [0x14a6] = 0x27b67, + [0x14a7] = 0x471f, [0x14a8] = 0x27b61, [0x14a9] = 0x27b6c, [0x14aa] = 0x27b51, + [0x14ab] = 0x27b74, [0x14ac] = 0x27b77, [0x14ad] = 0x27b6f, [0x14ae] = 0x27b6d, + [0x14af] = 0x27b68, [0x14b1] = 0x27b84, [0x14b2] = 0x27c90, [0x14b3] = 0x27c92, + [0x14b4] = 0x27c93, [0x14b5] = 0x27d1f, [0x14b6] = 0x27e31, [0x14b7] = 0x27e38, + [0x14b8] = 0x27e39, [0x14b9] = 0x27e37, [0x14ba] = 0x27fab, [0x14bb] = 0x281c3, + [0x14bc] = 0x281c8, [0x14bd] = 0x281cb, [0x14be] = 0x281cf, [0x14bf] = 0x28298, + [0x14c0] = 0x283d4, [0x14c1] = 0x283d3, [0x14c2] = 0x283d8, [0x14c3] = 0x283d9, + [0x14c4] = 0x283dd, [0x14c5] = 0x283d1, [0x14c6] = 0x283d6, [0x14c7] = 0x2843e, + [0x14c8] = 0x28658, [0x14c9] = 0x28657, [0x14ca] = 0x28655, [0x14cb] = 0x287c4, + [0x14cc] = 0x287e4, [0x14cd] = 0x288ee, [0x14ce] = 0x288ef, [0x14cf] = 0x288f3, + [0x14d0] = 0x288f2, [0x14d1] = 0x288f0, [0x14d2] = 0x28bab, [0x14d3] = 0x28b9a, + [0x14d4] = 0x28baf, [0x14d5] = 0x28b97, [0x14d6] = 0x496a, [0x14d7] = 0x496c, + [0x14d8] = 0x28bbf, [0x14d9] = 0x28b94, [0x14da] = 0x28b93, [0x14db] = 0x28cbe, + [0x14dc] = 0x28cbb, [0x14dd] = 0x28cbc, [0x14de] = 0x28dd9, [0x14df] = 0x28f6c, + [0x14e0] = 0x29053, [0x14e1] = 0x29054, [0x14e2] = 0x2905b, [0x14e3] = 0x29058, + [0x14e4] = 0x29056, [0x14e5] = 0x29057, [0x14e6] = 0x2919f, [0x14e7] = 0x29194, + [0x14e8] = 0x29196, [0x14e9] = 0x29197, [0x14ea] = 0x2924a, [0x14eb] = 0x2924b, + [0x14ec] = 0x29355, [0x14ed] = 0x2935a, [0x14ee] = 0x2935e, [0x14ef] = 0x2935f, + [0x14f0] = 0x29359, [0x14f1] = 0x2935b, [0x14f2] = 0x29358, [0x14f3] = 0x29354, + [0x14f4] = 0x293e8, [0x14f5] = 0x293eb, [0x14f6] = 0x293ec, [0x14f7] = 0x29413, + [0x14f8] = 0x29566, [0x14f9] = 0x2956b, [0x14fa] = 0x29562, [0x14fb] = 0x29569, + [0x14fc] = 0x29563, [0x14fd] = 0x2955f, [0x14fe] = 0x2954e, [0x14ff] = 0x29648, + [0x1500] = 0x2964a, [0x1501] = 0x297e3, [0x1502] = 0x297db, [0x1503] = 0x297d8, + [0x1504] = 0x297d6, [0x1505] = 0x29986, [0x1506] = 0x29990, [0x1507] = 0x29991, + [0x1508] = 0x29988, [0x1509] = 0x29994, [0x150a] = 0x29983, [0x150b] = 0x4bb2, + [0x150c] = 0x2999c, [0x150d] = 0x2998d, [0x150e] = 0x29985, [0x150f] = 0x29a98, + [0x1510] = 0x29a9a, [0x1511] = 0x29a9c, [0x1512] = 0x29ae7, [0x1513] = 0x29bc5, + [0x1514] = 0x29bd0, [0x1515] = 0x29bd1, [0x1516] = 0x29c19, [0x1517] = 0x29c27, + [0x1518] = 0x4c1d, [0x1519] = 0x29c54, [0x151a] = 0x29d2d, [0x151b] = 0x29d22, + [0x151c] = 0x4c2d, [0x151d] = 0x29d1f, [0x151e] = 0x29ebd, [0x151f] = 0x29eae, + [0x1520] = 0x29ebb, [0x1521] = 0x29ead, [0x1522] = 0x29ebc, [0x1523] = 0x29eb9, + [0x1524] = 0x29eb4, [0x1525] = 0x29ecb, [0x1526] = 0x29eb7, [0x1527] = 0x29eb3, + [0x1528] = 0x29eba, [0x1529] = 0x29eb6, [0x152a] = 0x29ecd, [0x152b] = 0x29ebe, + [0x152c] = 0x29ec9, [0x152e] = 0x2a15f, [0x152f] = 0x2a13b, [0x1530] = 0x2a161, + [0x1531] = 0x2a15c, [0x1532] = 0x2a18a, [0x1533] = 0x2a15a, [0x1534] = 0x2a14d, + [0x1535] = 0x2a146, [0x1536] = 0x2a144, [0x1537] = 0x2a13d, [0x1538] = 0x2a140, + [0x1539] = 0x2a13c, [0x153a] = 0x2a18c, [0x153b] = 0x2a141, [0x153c] = 0x2a14c, + [0x153d] = 0x2a13e, [0x153e] = 0x2a14a, [0x153f] = 0x2a27c, [0x1540] = 0x2a27a, + [0x1541] = 0x2a365, [0x1542] = 0x2a36e, [0x1543] = 0x2a369, [0x1544] = 0x2a36a, + [0x1545] = 0x2a36f, [0x1546] = 0x2a36c, [0x1547] = 0x2a370, [0x1548] = 0x2a368, + [0x1549] = 0x2a36b, [0x154a] = 0x4d45, [0x154b] = 0x2a3ac, [0x154c] = 0x2a3de, + [0x154d] = 0x2a3dd, [0x154e] = 0x2a3dc, [0x154f] = 0x244c5, [0x1550] = 0x2a48c, + [0x1551] = 0x2a483, [0x1552] = 0x2a482, [0x1553] = 0x2a488, [0x1554] = 0x2a485, + [0x1555] = 0x2a481, [0x1556] = 0x2a4f5, [0x1557] = 0x2a4ef, [0x1558] = 0x2a4f4, + [0x1559] = 0x2a4f2, [0x155a] = 0x2a4f6, [0x155b] = 0x2a4f3, [0x155c] = 0x2a4f0, + [0x155d] = 0x2a4f1, [0x155e] = 0x2a52b, [0x155f] = 0x2a527, [0x1560] = 0x2a528, + [0x1561] = 0x2a56c, [0x1562] = 0x2a5ae, [0x1563] = 0x2a60e, [0x1564] = 0x2a61b, + [0x1565] = 0x2a616, [0x1566] = 0x2a61f, [0x1567] = 0x2a622, [0x1568] = 0x2a620, + [0x1569] = 0x2a621, [0x156a] = 0x2a614, [0x156b] = 0x2a613, [0x156c] = 0x2a69d, + [0x156d] = 0x2a69c, [0x156e] = 0x2a69e, [0x156f] = 0x2a69f, [0x1570] = 0x2046b, + [0x1571] = 0x208c8, [0x1572] = 0x21178, [0x1573] = 0x21176, [0x1574] = 0x21170, + [0x1575] = 0x21171, [0x1576] = 0x2150a, [0x1577] = 0x2192c, [0x1578] = 0x22311, + [0x1579] = 0x2247e, [0x157a] = 0x22957, [0x157b] = 0x22966, [0x157c] = 0x22969, + [0x157d] = 0x22967, [0x157e] = 0x22968, [0x157f] = 0x22971, [0x1580] = 0x2296f, + [0x1581] = 0x2a3ae, [0x1582] = 0x22e8b, [0x1583] = 0x22e96, [0x1584] = 0x23035, + [0x1585] = 0x2303a, [0x1586] = 0x2306b, [0x1587] = 0x23316, [0x1588] = 0x23843, + [0x1589] = 0x23846, [0x158a] = 0x2383f, [0x158b] = 0x2383b, [0x158c] = 0x2383d, + [0x158d] = 0x239b1, [0x158e] = 0x239b2, [0x158f] = 0x23ae4, [0x1590] = 0x23c40, + [0x1591] = 0x2415d, [0x1592] = 0x24151, [0x1593] = 0x2414d, [0x1594] = 0x2414c, + [0x1595] = 0x2415b, [0x1596] = 0x244d4, [0x1597] = 0x244d2, [0x1598] = 0x244ca, + [0x1599] = 0x244c8, [0x159a] = 0x244d0, [0x159b] = 0x244c9, [0x159c] = 0x24549, + [0x159d] = 0x245a4, [0x159e] = 0x24712, [0x159f] = 0x2470f, [0x15a0] = 0x24711, + [0x15a1] = 0x248db, [0x15a2] = 0x248dd, [0x15a3] = 0x248dc, [0x15a4] = 0x24ad4, + [0x15a5] = 0x24b21, [0x15a6] = 0x24bb2, [0x15a7] = 0x24d04, [0x15a8] = 0x24d02, + [0x15a9] = 0x24f11, [0x15aa] = 0x24f16, [0x15ab] = 0x24f10, [0x15ac] = 0x24fbe, + [0x15ad] = 0x2721a, [0x15ae] = 0x2534c, [0x15af] = 0x2534a, [0x15b0] = 0x255f2, + [0x15b1] = 0x255f1, [0x15b2] = 0x2572a, [0x15b3] = 0x2572c, [0x15b4] = 0x2572f, + [0x15b5] = 0x25731, [0x15b6] = 0x25911, [0x15b7] = 0x25912, [0x15b8] = 0x25a4b, + [0x15b9] = 0x25ddb, [0x15ba] = 0x25dd6, [0x15bb] = 0x25ddd, [0x15bc] = 0x25de2, + [0x15bd] = 0x25de4, [0x15be] = 0x25de0, [0x15bf] = 0x25ddf, [0x15c0] = 0x25de3, + [0x15c1] = 0x25f6e, [0x15c2] = 0x25f71, [0x15c3] = 0x261e9, [0x15c4] = 0x261ea, + [0x15c5] = 0x26263, [0x15c6] = 0x263eb, [0x15c7] = 0x263ea, [0x15c8] = 0x268bd, + [0x15c9] = 0x268bb, [0x15ca] = 0x268c6, [0x15cb] = 0x268cc, [0x15cc] = 0x268c8, + [0x15cd] = 0x244cf, [0x15ce] = 0x268c9, [0x15cf] = 0x268ca, [0x15d0] = 0x268cf, + [0x15d1] = 0x268d0, [0x15d2] = 0x269ba, [0x15d3] = 0x269fb, [0x15d4] = 0x26a03, + [0x15d5] = 0x26ac4, [0x15d6] = 0x27149, [0x15d7] = 0x27153, [0x15d8] = 0x27136, + [0x15d9] = 0x2714a, [0x15da] = 0x27141, [0x15db] = 0x2714e, [0x15dc] = 0x27119, + [0x15dd] = 0x2714d, [0x15de] = 0x27145, [0x15df] = 0x2714c, [0x15e0] = 0x27147, + [0x15e1] = 0x27148, [0x15e2] = 0x2714f, [0x15e3] = 0x27137, [0x15e4] = 0x27142, + [0x15e5] = 0x2754a, [0x15e6] = 0x27546, [0x15e7] = 0x460a, [0x15e8] = 0x27549, + [0x15e9] = 0x2754f, [0x15ea] = 0x27551, [0x15eb] = 0x2754c, [0x15ec] = 0x460c, + [0x15ed] = 0x27606, [0x15ee] = 0x27951, [0x15ef] = 0x27b7a, [0x15f0] = 0x27b83, + [0x15f1] = 0x27b7e, [0x15f2] = 0x27b7f, [0x15f3] = 0x27b80, [0x15f4] = 0x24bb5, + [0x15f5] = 0x27c91, [0x15f6] = 0x27c94, [0x15f7] = 0x27c95, [0x15f8] = 0x27d21, + [0x15f9] = 0x27d20, [0x15fa] = 0x27e3d, [0x15fb] = 0x27e40, [0x15fc] = 0x27e46, + [0x15fd] = 0x27e84, [0x15fe] = 0x27fac, [0x15ff] = 0x27fad, [0x1600] = 0x482e, + [0x1601] = 0x281da, [0x1602] = 0x281d9, [0x1603] = 0x283e2, [0x1604] = 0x283e1, + [0x1605] = 0x283e3, [0x1606] = 0x283e4, [0x1607] = 0x283de, [0x1608] = 0x283df, + [0x1609] = 0x28641, [0x160a] = 0x28659, [0x160b] = 0x2865c, [0x160c] = 0x2865a, + [0x160d] = 0x287e8, [0x160e] = 0x288f6, [0x160f] = 0x288fc, [0x1610] = 0x288f7, + [0x1611] = 0x288fa, [0x1612] = 0x288f9, [0x1613] = 0x28bc4, [0x1614] = 0x28bbe, + [0x1615] = 0x28bd2, [0x1616] = 0x28bbd, [0x1617] = 0x28b95, [0x1618] = 0x28bd4, + [0x1619] = 0x28de4, [0x161a] = 0x29061, [0x161b] = 0x29062, [0x161c] = 0x29063, + [0x161d] = 0x29064, [0x161e] = 0x29060, [0x161f] = 0x2905c, [0x1620] = 0x2905d, + [0x1621] = 0x2905e, [0x1622] = 0x291a5, [0x1623] = 0x291a6, [0x1624] = 0x2924c, + [0x1625] = 0x29368, [0x1626] = 0x2936e, [0x1627] = 0x29371, [0x1628] = 0x2936b, + [0x1629] = 0x2936f, [0x162a] = 0x293ee, [0x162b] = 0x293f1, [0x162c] = 0x293f0, + [0x162d] = 0x293ef, [0x162e] = 0x29415, [0x162f] = 0x29414, [0x1630] = 0x28f6e, + [0x1631] = 0x29447, [0x1632] = 0x2957c, [0x1633] = 0x2957a, [0x1634] = 0x29574, + [0x1635] = 0x29576, [0x1636] = 0x2956e, [0x1637] = 0x29578, [0x1638] = 0x2956d, + [0x1639] = 0x2956c, [0x163a] = 0x2964e, [0x163b] = 0x297d7, [0x163c] = 0x297ea, + [0x163d] = 0x297e5, [0x163e] = 0x29864, [0x163f] = 0x299b3, [0x1640] = 0x299a3, + [0x1641] = 0x299a5, [0x1642] = 0x299a7, [0x1643] = 0x299a2, [0x1644] = 0x2999f, + [0x1645] = 0x299a6, [0x1646] = 0x2999e, [0x1647] = 0x299a8, [0x1648] = 0x29aa9, + [0x1649] = 0x29aa6, [0x164a] = 0x29aaa, [0x164b] = 0x29aab, [0x164c] = 0x29aa0, + [0x164d] = 0x29aa1, [0x164e] = 0x29aa8, [0x164f] = 0x29ae8, [0x1650] = 0x29ae9, + [0x1651] = 0x29aea, [0x1652] = 0x29be4, [0x1653] = 0x29bdf, [0x1654] = 0x29be0, + [0x1655] = 0x29c28, [0x1656] = 0x29c5d, [0x1657] = 0x29c5b, [0x1658] = 0x29c56, + [0x1659] = 0x29c57, [0x165a] = 0x29c5f, [0x165b] = 0x29c62, [0x165c] = 0x29ee1, + [0x165d] = 0x29ee3, [0x165e] = 0x29ede, [0x165f] = 0x29ed9, [0x1660] = 0x29ee8, + [0x1661] = 0x29ef2, [0x1662] = 0x29ef6, [0x1663] = 0x29ee6, [0x1664] = 0x29ef4, + [0x1665] = 0x29ef5, [0x1666] = 0x29ee5, [0x1667] = 0x29ee2, [0x1668] = 0x4c8d, + [0x1669] = 0x2a196, [0x166a] = 0x2a1aa, [0x166b] = 0x2a197, [0x166c] = 0x2a170, + [0x166d] = 0x2a1a1, [0x166e] = 0x2a19d, [0x166f] = 0x2a1a9, [0x1670] = 0x2a16f, + [0x1671] = 0x2a17e, [0x1672] = 0x2a194, [0x1673] = 0x2a19a, [0x1674] = 0x2a173, + [0x1675] = 0x2a187, [0x1676] = 0x2a171, [0x1677] = 0x2a177, [0x1678] = 0x2a188, + [0x1679] = 0x2a18d, [0x167a] = 0x2a185, [0x167b] = 0x2a178, [0x167c] = 0x2a1ad, + [0x167d] = 0x2a280, [0x167e] = 0x2a281, [0x167f] = 0x2a2e5, [0x1680] = 0x2a2e7, + [0x1681] = 0x2a37c, [0x1682] = 0x2a3af, [0x1683] = 0x2a3e1, [0x1684] = 0x2a496, + [0x1685] = 0x2a4a3, [0x1686] = 0x2a490, [0x1687] = 0x2a4f8, [0x1688] = 0x2a52e, + [0x1689] = 0x2a575, [0x168a] = 0x2a57e, [0x168b] = 0x2a57d, [0x168c] = 0x2a57b, + [0x168d] = 0x2a578, [0x168e] = 0x2a5b0, [0x168f] = 0x2a634, [0x1690] = 0x2a636, + [0x1691] = 0x2a630, [0x1693] = 0x2a62e, [0x1694] = 0x2a637, [0x1695] = 0x20ace, + [0x1696] = 0x20b97, [0x1697] = 0x20b98, [0x1698] = 0x2117c, [0x1699] = 0x2117e, + [0x169a] = 0x2117d, [0x169b] = 0x2117f, [0x169c] = 0x2150f, [0x169d] = 0x216a4, + [0x169e] = 0x21931, [0x169f] = 0x2192e, [0x16a0] = 0x2192f, [0x16a1] = 0x21932, + [0x16a2] = 0x21d2c, [0x16a3] = 0x21fd4, [0x16a4] = 0x21fdc, [0x16a5] = 0x21fd8, + [0x16a6] = 0x2200e, [0x16a7] = 0x22183, [0x16a8] = 0x22184, [0x16a9] = 0x22312, + [0x16aa] = 0x22972, [0x16ab] = 0x2297c, [0x16ac] = 0x2297e, [0x16ad] = 0x22ea6, + [0x16ae] = 0x22ea0, [0x16af] = 0x22e9e, [0x16b0] = 0x22ea2, [0x16b1] = 0x2312a, + [0x16b2] = 0x23318, [0x16b3] = 0x2384d, [0x16b4] = 0x23858, [0x16b5] = 0x2385b, + [0x16b6] = 0x25914, [0x16b8] = 0x23ae6, [0x16b9] = 0x24164, [0x16ba] = 0x24168, + [0x16bb] = 0x24160, [0x16bc] = 0x24162, [0x16bd] = 0x244d7, [0x16be] = 0x2454b, + [0x16bf] = 0x248e0, [0x16c0] = 0x24b22, [0x16c1] = 0x24d05, [0x16c2] = 0x24f19, + [0x16c3] = 0x24f1a, [0x16c4] = 0x24fc3, [0x16c5] = 0x250d8, [0x16c6] = 0x250dc, + [0x16c7] = 0x2534f, [0x16c8] = 0x255f7, [0x16c9] = 0x255f4, [0x16ca] = 0x255f8, + [0x16cb] = 0x25913, [0x16cc] = 0x25a50, [0x16cd] = 0x25df0, [0x16ce] = 0x25de9, + [0x16cf] = 0x25def, [0x16d0] = 0x25ded, [0x16d1] = 0x25dea, [0x16d2] = 0x25df8, + [0x16d3] = 0x25e05, [0x16d4] = 0x25df2, [0x16d5] = 0x25f72, [0x16d6] = 0x4331, + [0x16d7] = 0x261f9, [0x16d8] = 0x261f3, [0x16d9] = 0x261f6, [0x16da] = 0x261f2, + [0x16db] = 0x261f7, [0x16dc] = 0x26266, [0x16dd] = 0x26265, [0x16de] = 0x26340, + [0x16e0] = 0x268d1, [0x16e1] = 0x268d3, [0x16e2] = 0x26a04, [0x16e3] = 0x27159, + [0x16e4] = 0x27160, [0x16e5] = 0x2715b, [0x16e6] = 0x2715d, [0x16e7] = 0x2715e, + [0x16e8] = 0x27169, [0x16e9] = 0x2715c, [0x16ea] = 0x27161, [0x16eb] = 0x2716a, + [0x16ec] = 0x2715f, [0x16ed] = 0x2754e, [0x16ee] = 0x2755c, [0x16ef] = 0x27560, + [0x16f0] = 0x27563, [0x16f1] = 0x275db, [0x16f2] = 0x277ca, [0x16f3] = 0x277c9, + [0x16f4] = 0x277c8, [0x16f5] = 0x278a5, [0x16f6] = 0x278a3, [0x16f7] = 0x27b8e, + [0x16f8] = 0x27b87, [0x16f9] = 0x27b89, [0x16fa] = 0x27b85, [0x16fb] = 0x27b86, + [0x16fc] = 0x27b8f, [0x16fd] = 0x27b8a, [0x16fe] = 0x27b90, [0x16ff] = 0x27c98, + [0x1700] = 0x27c9b, [0x1701] = 0x27e47, [0x1702] = 0x27e49, [0x1703] = 0x27e48, + [0x1704] = 0x281e5, [0x1705] = 0x281ea, [0x1706] = 0x281ed, [0x1707] = 0x283f0, + [0x1708] = 0x283ef, [0x1709] = 0x283f2, [0x170a] = 0x283ec, [0x170b] = 0x28440, + [0x170c] = 0x28660, [0x170d] = 0x2865f, [0x170e] = 0x287eb, [0x170f] = 0x287ec, + [0x1710] = 0x28900, [0x1711] = 0x28901, [0x1712] = 0x28be2, [0x1713] = 0x28bdf, + [0x1714] = 0x28be0, [0x1715] = 0x28be1, [0x1716] = 0x28be3, [0x1717] = 0x28cc3, + [0x1718] = 0x28deb, [0x1719] = 0x28dea, [0x171a] = 0x28f61, [0x171b] = 0x28f71, + [0x171c] = 0x2906b, [0x171d] = 0x29068, [0x171e] = 0x29069, [0x171f] = 0x29067, + [0x1720] = 0x291b0, [0x1721] = 0x291b1, [0x1722] = 0x291b2, [0x1723] = 0x29251, + [0x1724] = 0x29374, [0x1725] = 0x2957f, [0x1726] = 0x29584, [0x1727] = 0x29653, + [0x1728] = 0x29654, [0x1729] = 0x297f0, [0x172a] = 0x297f4, [0x172b] = 0x297f1, + [0x172c] = 0x29837, [0x172d] = 0x299bf, [0x172e] = 0x4bbc, [0x172f] = 0x4bbb, + [0x1730] = 0x299bd, [0x1731] = 0x299be, [0x1732] = 0x299b7, [0x1733] = 0x299c0, + [0x1734] = 0x299ba, [0x1735] = 0x299b8, [0x1736] = 0x299bc, [0x1737] = 0x299bb, + [0x1738] = 0x29aeb, [0x1739] = 0x29be7, [0x173a] = 0x29c1d, [0x173b] = 0x29c1c, + [0x173c] = 0x29c63, [0x173d] = 0x2244b, [0x173e] = 0x29d38, [0x173f] = 0x29d36, + [0x1740] = 0x29d34, [0x1741] = 0x29d37, [0x1742] = 0x29f06, [0x1743] = 0x29f1c, + [0x1744] = 0x29f02, [0x1745] = 0x29f1d, [0x1746] = 0x29f1e, [0x1747] = 0x29ee0, + [0x1748] = 0x29f11, [0x1749] = 0x29f18, [0x174a] = 0x29f21, [0x174b] = 0x29f20, + [0x174c] = 0x29f10, [0x174d] = 0x2a1bd, [0x174e] = 0x2a1ae, [0x174f] = 0x2a1b5, + [0x1750] = 0x2a1b8, [0x1751] = 0x2a1b9, [0x1752] = 0x2a1be, [0x1753] = 0x2a1c4, + [0x1754] = 0x2a1bc, [0x1755] = 0x2a1ba, [0x1756] = 0x2a283, [0x1757] = 0x2a2ea, + [0x1758] = 0x2a2ec, [0x1759] = 0x2a37e, [0x175a] = 0x2a37b, [0x175b] = 0x2a3e5, + [0x175c] = 0x2a4a7, [0x175d] = 0x2a49e, [0x175e] = 0x2a49a, [0x175f] = 0x2a52f, + [0x1760] = 0x2a531, [0x1761] = 0x2a583, [0x1762] = 0x2a5b5, [0x1763] = 0x2a646, + [0x1764] = 0x2a641, [0x1765] = 0x2a643, [0x1766] = 0x2a63d, [0x1767] = 0x2a642, + [0x1768] = 0x2a63b, [0x1769] = 0x2a647, [0x176a] = 0x2096b, [0x176b] = 0x209d0, + [0x176c] = 0x2118e, [0x176d] = 0x21b11, [0x1770] = 0x2244c, [0x1771] = 0x2312b, + [0x1772] = 0x2384f, [0x1773] = 0x2385e, [0x1774] = 0x23863, [0x1775] = 0x2386b, + [0x1776] = 0x2393f, [0x1777] = 0x23ae9, [0x1778] = 0x2416d, [0x1779] = 0x2416b, + [0x177a] = 0x2416a, [0x177b] = 0x29f2a, [0x177c] = 0x244e0, [0x177d] = 0x244dd, + [0x177e] = 0x244e1, [0x177f] = 0x244de, [0x1780] = 0x244dc, [0x1781] = 0x2454d, + [0x1782] = 0x24716, [0x1783] = 0x248e3, [0x1784] = 0x24ae5, [0x1785] = 0x24ae4, + [0x1786] = 0x24f1d, [0x1787] = 0x2574b, [0x1788] = 0x2a6c1, [0x1789] = 0x25a4e, + [0x178a] = 0x25ad6, [0x178b] = 0x25dfd, [0x178c] = 0x25e07, [0x178d] = 0x25dfe, + [0x178e] = 0x25e03, [0x178f] = 0x25e0b, [0x1790] = 0x25dff, [0x1791] = 0x25f7a, + [0x1792] = 0x25f77, [0x1793] = 0x261fb, [0x1794] = 0x26343, [0x1795] = 0x263ed, + [0x1796] = 0x269bc, [0x1797] = 0x244df, [0x1798] = 0x26a05, [0x1799] = 0x26ac6, + [0x179a] = 0x26ac5, [0x179b] = 0x27174, [0x179c] = 0x27173, [0x179d] = 0x27172, + [0x179e] = 0x27178, [0x179f] = 0x27573, [0x17a0] = 0x2757a, [0x17a1] = 0x24f1c, + [0x17a2] = 0x27576, [0x17a3] = 0x27575, [0x17a4] = 0x27577, [0x17a5] = 0x277cf, + [0x17a6] = 0x277ce, [0x17a7] = 0x277cd, [0x17a8] = 0x278a8, [0x17a9] = 0x27b98, + [0x17aa] = 0x27b92, [0x17ab] = 0x27b94, [0x17ac] = 0x27c9a, [0x17ad] = 0x27fb4, + [0x17ae] = 0x281eb, [0x17af] = 0x281f4, [0x17b0] = 0x281f3, [0x17b1] = 0x281ee, + [0x17b2] = 0x281f2, [0x17b3] = 0x281f0, [0x17b4] = 0x28664, [0x17b5] = 0x28c05, + [0x17b6] = 0x28bfb, [0x17b7] = 0x28bfc, [0x17b8] = 0x28df3, [0x17b9] = 0x2906c, + [0x17ba] = 0x291ba, [0x17bb] = 0x29379, [0x17bc] = 0x2937e, [0x17bd] = 0x29378, + [0x17be] = 0x293f4, [0x17bf] = 0x29416, [0x17c0] = 0x29657, [0x17c1] = 0x299c8, + [0x17c2] = 0x299c3, [0x17c3] = 0x299ce, [0x17c4] = 0x29ab3, [0x17c5] = 0x29aed, + [0x17c6] = 0x29aee, [0x17c7] = 0x29bf1, [0x17c8] = 0x29bf8, [0x17c9] = 0x4c14, + [0x17ca] = 0x29c64, [0x17cb] = 0x29c65, [0x17cc] = 0x29f35, [0x17cd] = 0x29f29, + [0x17ce] = 0x29f2c, [0x17cf] = 0x29f31, [0x17d0] = 0x29f2b, [0x17d1] = 0x29f2e, + [0x17d2] = 0x29f25, [0x17d3] = 0x2a1da, [0x17d4] = 0x2a1e0, [0x17d5] = 0x2a1d4, + [0x17d6] = 0x2a1e1, [0x17d7] = 0x2a1dd, [0x17d8] = 0x2a3e7, [0x17d9] = 0x2a412, + [0x17da] = 0x2a4ae, [0x17db] = 0x2a4af, [0x17dc] = 0x2a586, [0x17dd] = 0x2a585, + [0x17de] = 0x2a5d1, [0x17df] = 0x2a658, [0x17e0] = 0x2a63f, [0x17e1] = 0x2a652, + [0x17e2] = 0x2a64b, [0x17e3] = 0x2a653, [0x17e4] = 0x2a650, [0x17e5] = 0x2a656, + [0x17e6] = 0x2a657, [0x17e7] = 0x2a6cd, [0x17e8] = 0x2a6cb, [0x17e9] = 0x20831, + [0x17ea] = 0x20830, [0x17eb] = 0x209d1, [0x17ec] = 0x361c, [0x17ed] = 0x21192, + [0x17ee] = 0x21190, [0x17ef] = 0x2118f, [0x17f0] = 0x21193, [0x17f1] = 0x21191, + [0x17f2] = 0x3772, [0x17f3] = 0x22313, [0x17f4] = 0x2247f, [0x17f5] = 0x22eac, + [0x17f6] = 0x24170, [0x17f7] = 0x244e5, [0x17f8] = 0x24b23, [0x17f9] = 0x24b24, + [0x17fa] = 0x24d08, [0x17fb] = 0x24d07, [0x17fc] = 0x24f1f, [0x17fd] = 0x24f20, + [0x17fe] = 0x24f21, [0x17ff] = 0x250e1, [0x1800] = 0x25354, [0x1801] = 0x25357, + [0x1802] = 0x25355, [0x1803] = 0x255fa, [0x1804] = 0x25738, [0x1805] = 0x27186, + [0x1806] = 0x25737, [0x1807] = 0x25a53, [0x1808] = 0x25f7e, [0x1809] = 0x25f7b, + [0x180b] = 0x261fd, [0x180c] = 0x261fc, [0x180d] = 0x26346, [0x180e] = 0x26932, + [0x180f] = 0x26ac7, [0x1810] = 0x27171, [0x1811] = 0x27183, [0x1812] = 0x2716f, + [0x1813] = 0x2717e, [0x1814] = 0x2717d, [0x1815] = 0x27181, [0x1816] = 0x2717c, + [0x1817] = 0x2758a, [0x1818] = 0x2757e, [0x1819] = 0x27580, [0x181a] = 0x2757d, + [0x181b] = 0x2757f, [0x181c] = 0x27582, [0x181d] = 0x277d4, [0x181e] = 0x277d0, + [0x181f] = 0x277d2, [0x1820] = 0x27955, [0x1821] = 0x27b9b, [0x1822] = 0x27b9a, + [0x1823] = 0x27e4e, [0x1824] = 0x281f1, [0x1825] = 0x283f8, [0x1826] = 0x283fd, + [0x1827] = 0x2865e, [0x1828] = 0x28666, [0x1829] = 0x28905, [0x182a] = 0x28c0a, + [0x182b] = 0x28c0b, [0x182c] = 0x28c0e, [0x182d] = 0x28c0d, [0x182e] = 0x28c11, + [0x182f] = 0x28c09, [0x1830] = 0x28c10, [0x1831] = 0x28c0c, [0x1832] = 0x28c12, + [0x1833] = 0x28cc4, [0x1834] = 0x28df7, [0x1835] = 0x28df8, [0x1836] = 0x28f6a, + [0x1837] = 0x28f6b, [0x1838] = 0x291c0, [0x1839] = 0x291c2, [0x183a] = 0x29385, + [0x183b] = 0x29380, [0x183c] = 0x29384, [0x183d] = 0x29381, [0x183e] = 0x291c4, + [0x183f] = 0x2958b, [0x1840] = 0x2958d, [0x1841] = 0x2958e, [0x1842] = 0x29ab7, + [0x1843] = 0x29ab9, [0x1844] = 0x29aef, [0x1845] = 0x29bfb, [0x1846] = 0x29bff, + [0x1847] = 0x29c67, [0x1848] = 0x29c68, [0x1849] = 0x29c69, [0x184a] = 0x29d3f, + [0x184b] = 0x29f3c, [0x184c] = 0x29f4c, [0x184d] = 0x29f3d, [0x184e] = 0x29f3e, + [0x184f] = 0x29f3f, [0x1850] = 0x29f3b, [0x1851] = 0x2a1ff, [0x1852] = 0x4d0e, + [0x1853] = 0x2a1f6, [0x1854] = 0x2a1ee, [0x1855] = 0x2a1fc, [0x1856] = 0x2a1f8, + [0x1857] = 0x2a201, [0x1858] = 0x2a1fa, [0x1859] = 0x2a288, [0x185a] = 0x2a380, + [0x185b] = 0x2a411, [0x185c] = 0x2a4fe, [0x185d] = 0x2a500, [0x185e] = 0x2a535, + [0x185f] = 0x2503c, [0x1860] = 0x2a5bd, [0x1861] = 0x2a5bb, [0x1862] = 0x2a65c, + [0x1863] = 0x2a65a, [0x1864] = 0x2a6d1, [0x1865] = 0x2a6d0, [0x1866] = 0x20a0b, + [0x1867] = 0x23873, [0x1868] = 0x21939, [0x1869] = 0x21b1a, [0x186a] = 0x21fe3, + [0x186b] = 0x22187, [0x186c] = 0x22377, [0x186d] = 0x22378, [0x186e] = 0x22eb1, + [0x186f] = 0x2386a, [0x1870] = 0x23874, [0x1871] = 0x23aeb, [0x1872] = 0x2417b, + [0x1873] = 0x245a5, [0x1874] = 0x248e4, [0x1875] = 0x24d0b, [0x1876] = 0x24d0e, + [0x1877] = 0x24d0c, [0x1878] = 0x25739, [0x1879] = 0x25e10, [0x187a] = 0x25e11, + [0x187b] = 0x25e16, [0x187c] = 0x25f81, [0x187d] = 0x25f80, [0x187e] = 0x261fe, + [0x187f] = 0x26201, [0x1880] = 0x26200, [0x1881] = 0x26347, [0x1882] = 0x263ef, + [0x1883] = 0x27188, [0x1884] = 0x2758b, [0x1885] = 0x2758d, [0x1886] = 0x27587, + [0x1887] = 0x27585, [0x1888] = 0x2758f, [0x1889] = 0x27584, [0x188a] = 0x27588, + [0x188b] = 0x2758e, [0x188c] = 0x2758c, [0x188d] = 0x277d7, [0x188e] = 0x277d6, + [0x188f] = 0x27b9f, [0x1890] = 0x22188, [0x1891] = 0x28203, [0x1892] = 0x283fe, + [0x1893] = 0x287ef, [0x1894] = 0x28909, [0x1895] = 0x28908, [0x1896] = 0x28c20, + [0x1897] = 0x28c24, [0x1898] = 0x28c1f, [0x1899] = 0x29070, [0x189a] = 0x29256, + [0x189b] = 0x293f7, [0x189c] = 0x293f8, [0x189d] = 0x293f6, [0x189e] = 0x29590, + [0x189f] = 0x2965e, [0x18a0] = 0x297f7, [0x18a1] = 0x299d6, [0x18a2] = 0x299d5, + [0x18a3] = 0x29abb, [0x18a4] = 0x29af0, [0x18a5] = 0x29c01, [0x18a6] = 0x29c6c, + [0x18a7] = 0x29d41, [0x18a8] = 0x29d42, [0x18a9] = 0x29f4f, [0x18aa] = 0x29f53, + [0x18ab] = 0x29f58, [0x18ac] = 0x2a212, [0x18ad] = 0x2a204, [0x18ae] = 0x2a213, + [0x18af] = 0x2a205, [0x18b0] = 0x2a20d, [0x18b1] = 0x2a382, [0x18b2] = 0x2a381, + [0x18b3] = 0x2a4b5, [0x18b4] = 0x2a4ba, [0x18b5] = 0x2a5be, [0x18b6] = 0x2a665, + [0x18b7] = 0x2a663, [0x18b8] = 0x2a66e, [0x18b9] = 0x2a66a, [0x18ba] = 0x2a66c, + [0x18bb] = 0x2a6c4, [0x18bc] = 0x2096c, [0x18bd] = 0x27ba5, [0x18be] = 0x21b12, + [0x18bf] = 0x2244d, [0x18c0] = 0x2331f, [0x18c1] = 0x23877, [0x18c2] = 0x23878, + [0x18c3] = 0x23c44, [0x18c4] = 0x2417c, [0x18c5] = 0x244eb, [0x18c6] = 0x244ea, + [0x18c7] = 0x244ec, [0x18c8] = 0x245a7, [0x18c9] = 0x24719, [0x18ca] = 0x24f23, + [0x18cb] = 0x7674, [0x18cc] = 0x25601, [0x18cd] = 0x25e1c, [0x18ce] = 0x26203, + [0x18cf] = 0x26348, [0x18d0] = 0x268da, [0x18d1] = 0x27191, [0x18d2] = 0x27192, + [0x18d3] = 0x27596, [0x18d4] = 0x27597, [0x18d5] = 0x27591, [0x18d6] = 0x27593, + [0x18d7] = 0x277d8, [0x18d8] = 0x277d5, [0x18d9] = 0x27957, [0x18da] = 0x27958, + [0x18db] = 0x27ba2, [0x18dc] = 0x28205, [0x18dd] = 0x283fa, [0x18de] = 0x2890c, + [0x18df] = 0x2890a, [0x18e0] = 0x28c2e, [0x18e1] = 0x28c29, [0x18e2] = 0x28c2f, + [0x18e3] = 0x28cc5, [0x18e4] = 0x29072, [0x18e5] = 0x291c8, [0x18e6] = 0x2925a, + [0x18e7] = 0x29259, [0x18e8] = 0x29389, [0x18e9] = 0x29388, [0x18ea] = 0x299db, + [0x18eb] = 0x299d9, [0x18ec] = 0x299da, [0x18ed] = 0x29abc, [0x18ee] = 0x4bec, + [0x18ef] = 0x29c06, [0x18f0] = 0x29c05, [0x18f1] = 0x29c6f, [0x18f2] = 0x29c6d, + [0x18f3] = 0x29c70, [0x18f4] = 0x29f60, [0x18f5] = 0x29f5e, [0x18f6] = 0x29f63, + [0x18f7] = 0x29f5a, [0x18f8] = 0x29f5f, [0x18f9] = 0x2a219, [0x18fa] = 0x2a21d, + [0x18fb] = 0x2a21b, [0x18fc] = 0x2a222, [0x18fd] = 0x2a21c, [0x18fe] = 0x2a21e, + [0x18ff] = 0x2a2f7, [0x1900] = 0x2a384, [0x1901] = 0x2a415, [0x1902] = 0x2a4b8, + [0x1903] = 0x2a4c1, [0x1904] = 0x2a501, [0x1905] = 0x2a50a, [0x1906] = 0x2a5d2, + [0x1907] = 0x2a675, [0x1908] = 0x2a674, [0x1909] = 0x2a672, [0x190a] = 0x20ad0, + [0x190b] = 0x21b1b, [0x190c] = 0x22010, [0x190d] = 0x22379, [0x190e] = 0x244ed, + [0x190f] = 0x24bb9, [0x1910] = 0x24f24, [0x1911] = 0x24fc5, [0x1912] = 0x25603, + [0x1913] = 0x2634a, [0x1914] = 0x268f7, [0x1915] = 0x269c1, [0x1916] = 0x269c2, + [0x1917] = 0x27194, [0x1918] = 0x27599, [0x1919] = 0x2759a, [0x191a] = 0x2795a, + [0x191b] = 0x27ba8, [0x191c] = 0x27c25, [0x191d] = 0x27c9e, [0x191e] = 0x28441, + [0x191f] = 0x28c32, [0x1920] = 0x28c33, [0x1921] = 0x291cb, [0x1922] = 0x291ca, + [0x1923] = 0x291cc, [0x1924] = 0x29593, [0x1925] = 0x299e0, [0x1926] = 0x29c71, + [0x1927] = 0x29f6b, [0x1928] = 0x2a22b, [0x1929] = 0x2a229, [0x192a] = 0x2a21a, + [0x192b] = 0x2a226, [0x192c] = 0x2a227, [0x192d] = 0x2a22a, [0x192e] = 0x2a2f8, + [0x192f] = 0x2503d, [0x1930] = 0x2a676, [0x1931] = 0x21518, [0x1932] = 0x2387a, + [0x1933] = 0x2417f, [0x1934] = 0x4279, [0x1935] = 0x263f0, [0x1936] = 0x2719a, + [0x1937] = 0x27196, [0x1938] = 0x2759e, [0x1939] = 0x2759d, [0x193a] = 0x275dc, + [0x193b] = 0x277da, [0x193c] = 0x2820b, [0x193d] = 0x28402, [0x193e] = 0x28442, + [0x193f] = 0x28667, [0x1940] = 0x2938b, [0x1941] = 0x299e2, [0x1942] = 0x29f71, + [0x1943] = 0x2a22f, [0x1944] = 0x2a22e, [0x1945] = 0x2a4c6, [0x1946] = 0x2a58e, + [0x1947] = 0x2a67b, [0x1948] = 0x2a677, [0x1949] = 0x2a678, [0x194a] = 0x2a67c, + [0x194b] = 0x2387c, [0x194c] = 0x26207, [0x194d] = 0x27197, [0x194e] = 0x27bd9, + [0x194f] = 0x2890d, [0x1950] = 0x2890e, [0x1951] = 0x299e3, [0x1952] = 0x299e4, + [0x1953] = 0x29af3, [0x1954] = 0x29c75, [0x1955] = 0x2a237, [0x1956] = 0x2a235, + [0x1957] = 0x2a58f, [0x1958] = 0x2a680, [0x1959] = 0x2a67f, [0x195a] = 0x2a6d4, + [0x195b] = 0x22eb4, [0x195c] = 0x2a3ec, [0x195d] = 0x28f75, [0x195e] = 0x24d10, + [0x195f] = 0x26269, [0x1960] = 0x275a4, [0x1961] = 0x277db, [0x1962] = 0x291d1, + [0x1963] = 0x2938d, [0x1964] = 0x29f76, [0x1965] = 0x2a239, [0x1966] = 0x2a684, + [0x1967] = 0x2a682, [0x1968] = 0x20ad2, [0x1969] = 0x244ee, [0x196a] = 0x24d11, + [0x196b] = 0x25f84, [0x196c] = 0x28f74, [0x196d] = 0x2938f, [0x196e] = 0x2938e, + [0x196f] = 0x2a23b, [0x1970] = 0x208cb, [0x1971] = 0x2a688, [0x1972] = 0x2a686, + [0x1973] = 0x2335c, [0x1974] = 0x253a4, [0x1975] = 0x29075, [0x1976] = 0x2a68b, + [0x1977] = 0x21519, [0x1978] = 0x27c9f, [0x1979] = 0x299e5, [0x197a] = 0x2a240, + [0x197b] = 0x24d12, [0x197c] = 0x2a2fb, [0x197d] = 0x2a68c, [0x197e] = 0x253a5, + [0x197f] = 0x29c77, [0x1980] = 0x29c78, [0x1981] = 0x2a6d6, [0x1982] = 0x277df, + [0x1983] = 0x291d2, [0x1984] = 0x2151a, [0x1985] = 0x27ba9, [0x1986] = 0x291d3, + [0x1987] = 0x2a4ca, [0x1988] = 0x269c4, [0x1989] = 0x278b1, [0x198a] = 0x29664, +}; + +/* The following table contains no hole and is therefore compact. Nice + work compared with the chaos of other character sets (or plane 1). + + The table can be generated using + + egrep '^0xF' CNS11643.TXT | + awk '{print $1, $2}' | perl tab.pl + + where tab.pl is: + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + $n=0; + while (<>) { + local($cns, $ucs4, %rest) = split; + local($u)=hex($ucs4); + local($c)=hex($cns)-0xF2121; + printf ("\n ") if ($n % 4 eq 0); + ++$n; + printf (" [0x%04x] = 0x%04x,", + int($c / 256) * 94 + ($c & 0xff), $u); + } + printf ("\n"); + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +*/ +const uint32_t __cns11643l15_to_ucs4_tab[] = +{ + [0x0000] = 0x20002, [0x0001] = 0x2008c, [0x0002] = 0x200d4, [0x0003] = 0x201a5, + [0x0004] = 0x20092, [0x0005] = 0x20093, [0x0006] = 0x200d8, [0x0007] = 0x200d9, + [0x0008] = 0x201a7, [0x0009] = 0x2062b, [0x000a] = 0x2062c, [0x000b] = 0x2062d, + [0x000c] = 0x20630, [0x000d] = 0x2062e, [0x000e] = 0x206ab, [0x000f] = 0x5301, + [0x0010] = 0x2092d, [0x0011] = 0x2096d, [0x0013] = 0x20a0f, [0x0015] = 0x20b9d, + [0x0016] = 0x211a2, [0x0017] = 0x215d4, [0x0018] = 0x21b56, [0x0019] = 0x21bc3, + [0x001a] = 0x22014, [0x001c] = 0x2471a, [0x001d] = 0x2000f, [0x001e] = 0x20010, + [0x001f] = 0x2009a, [0x0020] = 0x2009b, [0x0022] = 0x201ac, [0x0023] = 0x3436, + [0x0024] = 0x20097, [0x0025] = 0x20546, [0x0027] = 0x20576, [0x0028] = 0x20577, + [0x0029] = 0x205ae, [0x002a] = 0x2063a, [0x002b] = 0x2067d, [0x002c] = 0x21bc5, + [0x002d] = 0x20ba8, [0x002f] = 0x53fa, [0x0030] = 0x21241, [0x0031] = 0x21242, + [0x0032] = 0x215d8, [0x0033] = 0x215d9, [0x0034] = 0x216aa, [0x0035] = 0x216ab, + [0x0036] = 0x21942, [0x0037] = 0x21941, [0x0038] = 0x9f99, [0x0039] = 0x21bc6, + [0x003b] = 0x21d35, [0x003c] = 0x21d36, [0x003d] = 0x21d37, [0x003f] = 0x2634d, + [0x0041] = 0x221b5, [0x0042] = 0x22317, [0x0043] = 0x22482, [0x0044] = 0x233b6, + [0x0045] = 0x6c49, [0x0046] = 0x23c72, [0x0047] = 0x2455c, [0x0048] = 0x245a8, + [0x0049] = 0x8fb7, [0x004a] = 0x215e3, [0x004b] = 0x3406, [0x004d] = 0x200e6, + [0x004e] = 0x20144, [0x004f] = 0x20145, [0x0050] = 0x4f29, [0x0052] = 0x201c4, + [0x0053] = 0x201c5, [0x0054] = 0x201c6, [0x0055] = 0x201c7, [0x0056] = 0x201c8, + [0x0057] = 0x201c9, [0x0058] = 0x201ca, [0x0059] = 0x201d4, [0x005a] = 0x2057d, + [0x005b] = 0x26272, [0x005c] = 0x205b2, [0x005d] = 0x205b4, [0x005e] = 0x20682, + [0x005f] = 0x206c7, [0x0060] = 0x206c8, [0x0062] = 0x2083c, [0x0063] = 0x2083d, + [0x0064] = 0x2083e, [0x0065] = 0x2083f, [0x0067] = 0x208d3, [0x0068] = 0x20147, + [0x0069] = 0x534e, [0x006a] = 0x20a3d, [0x006b] = 0x20ae2, [0x006c] = 0x20bb8, + [0x006d] = 0x20bb9, [0x006e] = 0x20bc2, [0x006f] = 0x20bba, [0x0070] = 0x20bc6, + [0x0071] = 0x20bbb, [0x0072] = 0x211ad, [0x0073] = 0x2124c, [0x0074] = 0x2124d, + [0x0076] = 0x216b2, [0x0077] = 0x216b3, [0x0078] = 0x216b4, [0x0079] = 0x216b5, + [0x007a] = 0x219c3, [0x007b] = 0x219c4, [0x007c] = 0x219c5, [0x007d] = 0x219c6, + [0x007e] = 0x219c7, [0x0080] = 0x21bce, [0x0081] = 0x21c30, [0x0082] = 0x21d47, + [0x0083] = 0x21d48, [0x0084] = 0x5c81, [0x0085] = 0x2205c, [0x0087] = 0x2205f, + [0x0088] = 0x22318, [0x0089] = 0x22319, [0x008a] = 0x2237e, [0x008b] = 0x5f10, + [0x008c] = 0x225b0, [0x008d] = 0x22a75, [0x008e] = 0x6268, [0x008f] = 0x22a76, + [0x0090] = 0x23041, [0x0091] = 0x23142, [0x0093] = 0x233bd, [0x0094] = 0x6742, + [0x0095] = 0x6740, [0x0096] = 0x51ea, [0x0097] = 0x23b1e, [0x0098] = 0x23b1f, + [0x0099] = 0x23c87, [0x009a] = 0x6c62, [0x009b] = 0x23c78, [0x009c] = 0x24188, + [0x009d] = 0x24189, [0x009e] = 0x2418a, [0x009f] = 0x24617, [0x00a0] = 0x24615, + [0x00a3] = 0x7391, [0x00a4] = 0x250e5, [0x00a5] = 0x25609, [0x00a6] = 0x2573b, + [0x00a7] = 0x2574f, [0x00a9] = 0x2662e, [0x00aa] = 0x2662f, [0x00ab] = 0x26aff, + [0x00ac] = 0x26afd, [0x00ad] = 0x26afe, [0x00ae] = 0x8fbb, [0x00af] = 0x8fbc, + [0x00b1] = 0x20023, [0x00b2] = 0x200ea, [0x00b3] = 0x2012a, [0x00b4] = 0x20149, + [0x00b5] = 0x2014a, [0x00b6] = 0x2014b, [0x00b7] = 0x201df, [0x00b8] = 0x201e0, + [0x00b9] = 0x201e1, [0x00ba] = 0x201e2, [0x00bb] = 0x205c1, [0x00bc] = 0x201e3, + [0x00bd] = 0x201e4, [0x00be] = 0x201e5, [0x00bf] = 0x205c0, [0x00c0] = 0x201e6, + [0x00c1] = 0x201f7, [0x00c3] = 0x201e7, [0x00c4] = 0x201e8, [0x00c5] = 0x201e9, + [0x00c6] = 0x201ea, [0x00c7] = 0x201eb, [0x00c8] = 0x2050e, [0x00c9] = 0x20580, + [0x00ca] = 0x20581, [0x00cb] = 0x205ba, [0x00cc] = 0x205bb, [0x00cd] = 0x205bc, + [0x00ce] = 0x205bd, [0x00cf] = 0x2063f, [0x00d0] = 0x20640, [0x00d1] = 0x20688, + [0x00d3] = 0x20846, [0x00d5] = 0x20847, [0x00d6] = 0x20848, [0x00d7] = 0x20936, + [0x00d8] = 0x20972, [0x00d9] = 0x20996, [0x00da] = 0x20a47, [0x00db] = 0x20ae7, + [0x00dc] = 0x20b34, [0x00dd] = 0x20b35, [0x00de] = 0x20b36, [0x00df] = 0x20b37, + [0x00e0] = 0x20be3, [0x00e1] = 0x20be4, [0x00e2] = 0x20be5, [0x00e3] = 0x20beb, + [0x00e4] = 0x3575, [0x00e5] = 0x20be6, [0x00e6] = 0x20be7, [0x00e7] = 0x20be8, + [0x00ea] = 0x211b9, [0x00eb] = 0x56e8, [0x00ec] = 0x211ba, [0x00ed] = 0x575b, + [0x00ee] = 0x21263, [0x00ef] = 0x21264, [0x00f1] = 0x21265, [0x00f3] = 0x21266, + [0x00f4] = 0x2127c, [0x00f5] = 0x21267, [0x00f7] = 0x21559, [0x00f8] = 0x215e9, + [0x00f9] = 0x215ea, [0x00fa] = 0x215eb, [0x00fb] = 0x215ec, [0x00fc] = 0x215ed, + [0x00fd] = 0x215ee, [0x00fe] = 0x215ef, [0x00ff] = 0x216bf, [0x0100] = 0x216cb, + [0x0101] = 0x216c3, [0x0102] = 0x216d5, [0x0103] = 0x216c4, [0x0104] = 0x216c5, + [0x0105] = 0x216d3, [0x0106] = 0x216c6, [0x0107] = 0x216c7, [0x0108] = 0x216c8, + [0x0109] = 0x216c9, [0x010a] = 0x216ca, [0x010b] = 0x2194a, [0x010d] = 0x219d1, + [0x010e] = 0x21b61, [0x010f] = 0x21c37, [0x0111] = 0x21d64, [0x0112] = 0x21d66, + [0x0114] = 0x21d67, [0x0115] = 0x21d68, [0x0116] = 0x21d69, [0x0117] = 0x5c97, + [0x0118] = 0x21d73, [0x0119] = 0x21d6a, [0x011a] = 0x21d6b, [0x011b] = 0x6762, + [0x011d] = 0x22072, [0x011e] = 0x383c, [0x011f] = 0x221b9, [0x0120] = 0x2231c, + [0x0121] = 0x22336, [0x0122] = 0x223bc, [0x0123] = 0x223be, [0x0124] = 0x223bf, + [0x0125] = 0x223c0, [0x0126] = 0x22487, [0x0127] = 0x225dc, [0x0128] = 0x225dd, + [0x0129] = 0x225f5, [0x012a] = 0x225de, [0x012b] = 0x225df, [0x012d] = 0x225e0, + [0x012e] = 0x225e1, [0x012f] = 0x225e2, [0x0130] = 0x22a2c, [0x0131] = 0x22a2d, + [0x0132] = 0x62a4, [0x0133] = 0x22aa9, [0x0134] = 0x22a9c, [0x0135] = 0x22a9d, + [0x0136] = 0x22a9e, [0x0137] = 0x22a9f, [0x0138] = 0x22aa0, [0x0139] = 0x22aa1, + [0x013a] = 0x22aa2, [0x013c] = 0x22aa3, [0x013d] = 0x22aa4, [0x013e] = 0x22aa7, + [0x013f] = 0x23042, [0x0140] = 0x23093, [0x0141] = 0x23151, [0x0143] = 0x23152, + [0x0144] = 0x23144, [0x0145] = 0x23153, [0x0146] = 0x23322, [0x0147] = 0x233c6, + [0x0148] = 0x233c7, [0x0149] = 0x233c9, [0x014b] = 0x233ca, [0x014c] = 0x6766, + [0x014d] = 0x233c8, [0x014e] = 0x23b24, [0x014f] = 0x23b25, [0x0150] = 0x23b26, + [0x0152] = 0x23b27, [0x0153] = 0x23b28, [0x0155] = 0x23c58, [0x0157] = 0x23ca7, + [0x0158] = 0x23c88, [0x0159] = 0x23c89, [0x015a] = 0x23ca5, [0x015b] = 0x23ca8, + [0x015c] = 0x23ca9, [0x015d] = 0x23caa, [0x015e] = 0x23cab, [0x015f] = 0x23cac, + [0x0160] = 0x23cad, [0x0161] = 0x6ca3, [0x0162] = 0x23c79, [0x0164] = 0x24194, + [0x0165] = 0x24195, [0x0166] = 0x24196, [0x0169] = 0x24197, [0x016a] = 0x707f, + [0x016b] = 0x24198, [0x016c] = 0x2454e, [0x016d] = 0x2454f, [0x016e] = 0x24619, + [0x0170] = 0x24741, [0x0172] = 0x248f7, [0x0173] = 0x24c04, [0x0174] = 0x24c19, + [0x0175] = 0x24c17, [0x0176] = 0x25040, [0x0177] = 0x250ec, [0x0178] = 0x2541b, + [0x0179] = 0x2541c, [0x017a] = 0x77f6, [0x017b] = 0x2560e, [0x017c] = 0x25752, + [0x017d] = 0x25ad8, [0x017e] = 0x25e26, [0x017f] = 0x26274, [0x0181] = 0x26275, + [0x0182] = 0x269c6, [0x0183] = 0x26b0b, [0x0184] = 0x26b0c, [0x0185] = 0x26b0d, + [0x0186] = 0x26b0e, [0x0187] = 0x26b0f, [0x0188] = 0x26b10, [0x0189] = 0x8fc8, + [0x018a] = 0x28459, [0x018b] = 0x2845a, [0x018c] = 0x28683, [0x018d] = 0x28684, + [0x018e] = 0x28685, [0x0191] = 0x28e20, [0x0192] = 0x28e21, [0x0193] = 0x28e22, + [0x0194] = 0x28e23, [0x0195] = 0x28e24, [0x0196] = 0x28e29, [0x0197] = 0x200f4, + [0x0199] = 0x2158f, [0x019a] = 0x20151, [0x019b] = 0x4fab, [0x019c] = 0x20217, + [0x019d] = 0x20218, [0x019e] = 0x2025b, [0x019f] = 0x20219, [0x01a0] = 0x2021a, + [0x01a1] = 0x3453, [0x01a2] = 0x2021b, [0x01a3] = 0x2021c, [0x01a4] = 0x2021d, + [0x01a5] = 0x2021e, [0x01a6] = 0x2021f, [0x01a7] = 0x20220, [0x01a8] = 0x20221, + [0x01a9] = 0x2048b, [0x01aa] = 0x20488, [0x01ab] = 0x5c2d, [0x01ac] = 0x20585, + [0x01ad] = 0x26287, [0x01ae] = 0x205c7, [0x01af] = 0x2064c, [0x01b0] = 0x2064d, + [0x01b1] = 0x206fc, [0x01b2] = 0x206fd, [0x01b3] = 0x206fe, [0x01b4] = 0x206ff, + [0x01b7] = 0x20856, [0x01b8] = 0x20857, [0x01b9] = 0x20858, [0x01ba] = 0x20859, + [0x01bb] = 0x208dc, [0x01bc] = 0x208dd, [0x01bd] = 0x20973, [0x01be] = 0x2099d, + [0x01bf] = 0x209a1, [0x01c0] = 0x2099e, [0x01c1] = 0x2099f, [0x01c2] = 0x209a0, + [0x01c3] = 0x209e6, [0x01c4] = 0x20a51, [0x01c5] = 0x20a52, [0x01c6] = 0x20b3d, + [0x01c7] = 0x20c22, [0x01c8] = 0x549c, [0x01c9] = 0x20c23, [0x01ca] = 0x20c24, + [0x01cb] = 0x20c25, [0x01cc] = 0x20c26, [0x01cd] = 0x20c27, [0x01ce] = 0x20c28, + [0x01cf] = 0x20c29, [0x01d0] = 0x20c2a, [0x01d1] = 0x20c2b, [0x01d3] = 0x20c40, + [0x01d4] = 0x20c2c, [0x01d5] = 0x20c2d, [0x01d6] = 0x20c2e, [0x01d7] = 0x20c2f, + [0x01d8] = 0x20c30, [0x01d9] = 0x211d0, [0x01da] = 0x212a8, [0x01db] = 0x21294, + [0x01dc] = 0x21295, [0x01dd] = 0x21296, [0x01de] = 0x21297, [0x01df] = 0x21298, + [0x01e0] = 0x2129c, [0x01e1] = 0x2129b, [0x01e3] = 0x212a1, [0x01e4] = 0x212a0, + [0x01e5] = 0x21299, [0x01e6] = 0x2129a, [0x01e7] = 0x212a7, [0x01e8] = 0x5788, + [0x01e9] = 0x21564, [0x01eb] = 0x21600, [0x01ec] = 0x21601, [0x01ef] = 0x216e5, + [0x01f0] = 0x216e9, [0x01f1] = 0x216fb, [0x01f2] = 0x216fc, [0x01f3] = 0x216ea, + [0x01f4] = 0x216eb, [0x01f5] = 0x216ec, [0x01f6] = 0x216ed, [0x01f7] = 0x216ee, + [0x01f8] = 0x216ef, [0x01f9] = 0x216fa, [0x01fa] = 0x216f0, [0x01fb] = 0x216f1, + [0x01fc] = 0x216f2, [0x01fd] = 0x216f3, [0x01fe] = 0x216f4, [0x01ff] = 0x21952, + [0x0200] = 0x21953, [0x0201] = 0x21954, [0x0202] = 0x21955, [0x0203] = 0x21958, + [0x0204] = 0x21956, [0x0206] = 0x219dd, [0x0207] = 0x219de, [0x0208] = 0x219e3, + [0x0209] = 0x219df, [0x020a] = 0x219e0, [0x020b] = 0x21b22, [0x020c] = 0x21b23, + [0x020d] = 0x21b68, [0x020e] = 0x21bdf, [0x020f] = 0x34ac, [0x0210] = 0x21c44, + [0x0211] = 0x21d94, [0x0212] = 0x21d95, [0x0213] = 0x21d96, [0x0214] = 0x21d97, + [0x0215] = 0x21d98, [0x0216] = 0x21d99, [0x0218] = 0x21d9a, [0x0219] = 0x21d9b, + [0x021a] = 0x21d9d, [0x021b] = 0x21d9e, [0x021c] = 0x21d9f, [0x021d] = 0x21da0, + [0x021e] = 0x21ff3, [0x021f] = 0x21ff2, [0x0220] = 0x2201f, [0x0221] = 0x22088, + [0x0222] = 0x2218f, [0x0223] = 0x22190, [0x0225] = 0x221fd, [0x0226] = 0x221fe, + [0x0227] = 0x221ff, [0x0228] = 0x22200, [0x0229] = 0x22201, [0x022a] = 0x2261a, + [0x022c] = 0x225e3, [0x022d] = 0x225e4, [0x022e] = 0x225e5, [0x022f] = 0x225e6, + [0x0230] = 0x225e7, [0x0231] = 0x225eb, [0x0232] = 0x225e8, [0x0233] = 0x225e9, + [0x0234] = 0x225ea, [0x0235] = 0x2261d, [0x0236] = 0x229a4, [0x0237] = 0x229a3, + [0x0238] = 0x22ad4, [0x0239] = 0x22ac6, [0x023a] = 0x22ac7, [0x023b] = 0x22ac8, + [0x023c] = 0x22ac9, [0x023d] = 0x22aca, [0x023e] = 0x22acb, [0x023f] = 0x22acc, + [0x0240] = 0x22acd, [0x0242] = 0x22ace, [0x0243] = 0x62c3, [0x0244] = 0x22eb8, + [0x0245] = 0x22eb9, [0x0246] = 0x22eba, [0x0247] = 0x2306e, [0x0248] = 0x230db, + [0x0249] = 0x230dc, [0x024a] = 0x23168, [0x024b] = 0x23169, [0x024c] = 0x2316a, + [0x024d] = 0x2316b, [0x024e] = 0x2316c, [0x024f] = 0x2316d, [0x0250] = 0x2316e, + [0x0251] = 0x6619, [0x0252] = 0x23324, [0x0253] = 0x23325, [0x0255] = 0x23400, + [0x0256] = 0x233e5, [0x0257] = 0x233f9, [0x0258] = 0x233e7, [0x0259] = 0x233e8, + [0x025a] = 0x233e9, [0x025b] = 0x233fe, [0x025c] = 0x233ea, [0x025d] = 0x233eb, + [0x025e] = 0x233ec, [0x025f] = 0x3b49, [0x0260] = 0x233ed, [0x0261] = 0x67a1, + [0x0262] = 0x233ee, [0x0263] = 0x67a6, [0x0264] = 0x233ef, [0x0266] = 0x23417, + [0x0267] = 0x233f0, [0x0268] = 0x233f1, [0x0269] = 0x23894, [0x026a] = 0x2395b, + [0x026b] = 0x2395c, [0x026c] = 0x2395d, [0x026d] = 0x23b2f, [0x026e] = 0x3c91, + [0x026f] = 0x23b30, [0x0270] = 0x23b31, [0x0271] = 0x23b32, [0x0272] = 0x23b33, + [0x0273] = 0x23ccc, [0x0274] = 0x23ccd, [0x0275] = 0x23cce, [0x0276] = 0x23cae, + [0x0277] = 0x23caf, [0x0278] = 0x23cb0, [0x0279] = 0x3cd3, [0x027a] = 0x23ccf, + [0x027b] = 0x23cd0, [0x027c] = 0x23cd1, [0x027d] = 0x23cd2, [0x027e] = 0x23cd3, + [0x0280] = 0x23cd4, [0x0282] = 0x241a6, [0x0283] = 0x241a7, [0x0284] = 0x241a8, + [0x0285] = 0x241b0, [0x0286] = 0x241a9, [0x0287] = 0x241aa, [0x0288] = 0x241ab, + [0x0289] = 0x241ac, [0x028a] = 0x241ad, [0x028b] = 0x244fb, [0x028c] = 0x244fc, + [0x028e] = 0x2462d, [0x028f] = 0x2462e, [0x0290] = 0x24650, [0x0291] = 0x2462f, + [0x0292] = 0x24630, [0x0293] = 0x24765, [0x0294] = 0x248e6, [0x0295] = 0x2490c, + [0x0296] = 0x24902, [0x0297] = 0x24903, [0x0298] = 0x24904, [0x0299] = 0x24905, + [0x029a] = 0x24906, [0x029c] = 0x24bc0, [0x029d] = 0x24c24, [0x029e] = 0x24c25, + [0x029f] = 0x24d16, [0x02a0] = 0x24d32, [0x02a1] = 0x25420, [0x02a2] = 0x25421, + [0x02a3] = 0x25422, [0x02a4] = 0x25423, [0x02a5] = 0x77fe, [0x02a6] = 0x25425, + [0x02a7] = 0x25619, [0x02a8] = 0x25624, [0x02a9] = 0x2561a, [0x02aa] = 0x2561b, + [0x02ab] = 0x2561c, [0x02ac] = 0x2561d, [0x02ae] = 0x2561e, [0x02af] = 0x2575a, + [0x02b0] = 0x2575b, [0x02b1] = 0x2575c, [0x02b2] = 0x2575d, [0x02b3] = 0x2575e, + [0x02b4] = 0x25931, [0x02b6] = 0x25e29, [0x02b8] = 0x25f88, [0x02b9] = 0x25f89, + [0x02ba] = 0x26289, [0x02bb] = 0x7f57, [0x02bc] = 0x26356, [0x02bd] = 0x264d1, + [0x02be] = 0x264e6, [0x02bf] = 0x26532, [0x02c0] = 0x26533, [0x02c1] = 0x26652, + [0x02c2] = 0x26653, [0x02c3] = 0x43d5, [0x02c4] = 0x26654, [0x02c5] = 0x26655, + [0x02c8] = 0x26b29, [0x02c9] = 0x26b2a, [0x02ca] = 0x26b2b, [0x02cb] = 0x26b2c, + [0x02cc] = 0x26b2d, [0x02ce] = 0x26b2e, [0x02cf] = 0x26b2f, [0x02d0] = 0x26b30, + [0x02d1] = 0x26b31, [0x02d2] = 0x26b32, [0x02d3] = 0x26b33, [0x02d4] = 0x82c5, + [0x02d5] = 0x26b34, [0x02d6] = 0x2719b, [0x02d7] = 0x27223, [0x02d8] = 0x27224, + [0x02da] = 0x27225, [0x02db] = 0x27227, [0x02dc] = 0x27616, [0x02dd] = 0x27ca0, + [0x02de] = 0x2846f, [0x02df] = 0x8fdf, [0x02e0] = 0x28470, [0x02e1] = 0x28471, + [0x02e2] = 0x8fdc, [0x02e3] = 0x488c, [0x02e4] = 0x28472, [0x02e5] = 0x28473, + [0x02e6] = 0x28474, [0x02e7] = 0x2869c, [0x02e8] = 0x286aa, [0x02e9] = 0x2869d, + [0x02ea] = 0x2869e, [0x02ec] = 0x286ab, [0x02ed] = 0x2869f, [0x02ee] = 0x28e35, + [0x02ef] = 0x28e38, [0x02f0] = 0x2a38d, [0x02f1] = 0x20035, [0x02f2] = 0x20036, + [0x02f3] = 0x25aee, [0x02f4] = 0x200b4, [0x02f5] = 0x2a6c9, [0x02f6] = 0x20132, + [0x02f7] = 0x20155, [0x02f8] = 0x20244, [0x02f9] = 0x20245, [0x02fa] = 0x20246, + [0x02fb] = 0x20247, [0x02fc] = 0x4fe4, [0x02fd] = 0x20248, [0x02fe] = 0x20249, + [0x0300] = 0x2024a, [0x0301] = 0x2024b, [0x0302] = 0x2024c, [0x0303] = 0x2024d, + [0x0304] = 0x2024e, [0x0305] = 0x2024f, [0x0306] = 0x20250, [0x0307] = 0x20251, + [0x0308] = 0x26299, [0x0309] = 0x205d1, [0x030b] = 0x205d2, [0x030c] = 0x205d3, + [0x030d] = 0x205d4, [0x030e] = 0x205d5, [0x030f] = 0x20721, [0x0310] = 0x20722, + [0x0311] = 0x20723, [0x0312] = 0x20868, [0x0313] = 0x20869, [0x0314] = 0x2086a, + [0x0315] = 0x208e2, [0x0316] = 0x20945, [0x0317] = 0x209ec, [0x0318] = 0x209ed, + [0x0319] = 0x209ee, [0x031a] = 0x209ef, [0x031c] = 0x20a62, [0x031d] = 0x20a63, + [0x031e] = 0x20af4, [0x031f] = 0x2006f, [0x0320] = 0x20b44, [0x0321] = 0x20b45, + [0x0322] = 0x20c79, [0x0323] = 0x551b, [0x0324] = 0x20c7a, [0x0325] = 0x20c7b, + [0x0326] = 0x20c7c, [0x0327] = 0x20c7d, [0x0328] = 0x20c7e, [0x0329] = 0x20c7f, + [0x032a] = 0x20c80, [0x032b] = 0x3588, [0x032d] = 0x20c81, [0x032e] = 0x20c82, + [0x032f] = 0x20c83, [0x0330] = 0x20c84, [0x0331] = 0x20c85, [0x0332] = 0x20c86, + [0x0333] = 0x20c87, [0x0334] = 0x20c8f, [0x0335] = 0x20c88, [0x0336] = 0x20c89, + [0x0337] = 0x212c5, [0x0338] = 0x212c6, [0x0339] = 0x57aa, [0x033a] = 0x212c7, + [0x033b] = 0x212c8, [0x033c] = 0x212c9, [0x033d] = 0x212ca, [0x033e] = 0x212cb, + [0x033f] = 0x212cc, [0x0340] = 0x57ab, [0x0341] = 0x212cd, [0x0342] = 0x212ce, + [0x0343] = 0x212e3, [0x0344] = 0x212cf, [0x0345] = 0x212d0, [0x0346] = 0x212d1, + [0x0347] = 0x212d2, [0x0348] = 0x212d3, [0x0349] = 0x212c4, [0x034a] = 0x212d4, + [0x034b] = 0x212d5, [0x034c] = 0x212d6, [0x034d] = 0x21520, [0x034e] = 0x21521, + [0x034f] = 0x2161a, [0x0350] = 0x21612, [0x0351] = 0x21614, [0x0352] = 0x21615, + [0x0353] = 0x21616, [0x0354] = 0x21619, [0x0355] = 0x21617, [0x0356] = 0x21618, + [0x0357] = 0x36c9, [0x035a] = 0x21712, [0x035b] = 0x21713, [0x035c] = 0x21714, + [0x035d] = 0x21715, [0x035e] = 0x21716, [0x035f] = 0x21717, [0x0360] = 0x21718, + [0x0361] = 0x21719, [0x0362] = 0x21961, [0x0363] = 0x21962, [0x0364] = 0x21963, + [0x0365] = 0x219f5, [0x0366] = 0x5ba9, [0x0367] = 0x219f6, [0x0368] = 0x219f7, + [0x0369] = 0x219f8, [0x036a] = 0x21b29, [0x036b] = 0x3917, [0x036c] = 0x21c5d, + [0x036d] = 0x21c57, [0x036e] = 0x21c58, [0x036f] = 0x21c59, [0x0370] = 0x21c5a, + [0x0371] = 0x21c5b, [0x0372] = 0x21dbb, [0x0373] = 0x21dd1, [0x0374] = 0x21dbc, + [0x0375] = 0x21dbd, [0x0376] = 0x268df, [0x0377] = 0x21dd0, [0x0378] = 0x21dbe, + [0x0379] = 0x21dbf, [0x037a] = 0x21dc0, [0x037b] = 0x21dc1, [0x037c] = 0x21dc2, + [0x037d] = 0x21dc3, [0x037e] = 0x21dc4, [0x037f] = 0x26b6c, [0x0380] = 0x220a1, + [0x0381] = 0x220a2, [0x0382] = 0x220a3, [0x0383] = 0x22193, [0x0384] = 0x2220d, + [0x0385] = 0x2220f, [0x0386] = 0x2220e, [0x0387] = 0x22210, [0x0388] = 0x22211, + [0x0389] = 0x22212, [0x038b] = 0x224e5, [0x038c] = 0x2262f, [0x038e] = 0x22657, + [0x038f] = 0x22630, [0x0390] = 0x22668, [0x0391] = 0x2262b, [0x0392] = 0x22631, + [0x0393] = 0x22658, [0x0395] = 0x22632, [0x0396] = 0x22659, [0x0398] = 0x2265a, + [0x0399] = 0x22633, [0x039a] = 0x2265b, [0x039b] = 0x2265c, [0x039c] = 0x2265d, + [0x039d] = 0x2261e, [0x039e] = 0x229ae, [0x039f] = 0x229af, [0x03a0] = 0x22a3b, + [0x03a1] = 0x22a3c, [0x03a2] = 0x22a3d, [0x03a3] = 0x22b07, [0x03a4] = 0x22b08, + [0x03a5] = 0x22b09, [0x03a6] = 0x22b0a, [0x03a7] = 0x22b0b, [0x03a8] = 0x22b0c, + [0x03a9] = 0x22b0d, [0x03aa] = 0x22b0e, [0x03ab] = 0x22b0f, [0x03ac] = 0x22b10, + [0x03ad] = 0x22b22, [0x03ae] = 0x22b11, [0x03af] = 0x22b12, [0x03b0] = 0x22b13, + [0x03b1] = 0x22b14, [0x03b2] = 0x22b15, [0x03b3] = 0x22b16, [0x03b4] = 0x22b17, + [0x03b5] = 0x22b18, [0x03b8] = 0x23046, [0x03b9] = 0x23047, [0x03ba] = 0x23048, + [0x03bb] = 0x230e1, [0x03bc] = 0x23181, [0x03bd] = 0x23183, [0x03be] = 0x20c75, + [0x03c0] = 0x23185, [0x03c1] = 0x23186, [0x03c2] = 0x2332a, [0x03c4] = 0x2332b, + [0x03c5] = 0x2336b, [0x03c6] = 0x23418, [0x03c7] = 0x23419, [0x03c8] = 0x2341a, + [0x03ca] = 0x2341b, [0x03cb] = 0x2341c, [0x03cc] = 0x2341d, [0x03cd] = 0x2341e, + [0x03ce] = 0x2341f, [0x03cf] = 0x23420, [0x03d0] = 0x23421, [0x03d1] = 0x23422, + [0x03d2] = 0x23423, [0x03d3] = 0x6811, [0x03d4] = 0x23424, [0x03d5] = 0x23425, + [0x03d6] = 0x23426, [0x03d7] = 0x23427, [0x03d8] = 0x23428, [0x03d9] = 0x23429, + [0x03da] = 0x2342a, [0x03db] = 0x239ef, [0x03dc] = 0x23b49, [0x03dd] = 0x23b4a, + [0x03de] = 0x23b4b, [0x03df] = 0x23b4c, [0x03e0] = 0x23b4d, [0x03e1] = 0x23b4e, + [0x03e2] = 0x23b4f, [0x03e3] = 0x23b50, [0x03e4] = 0x23b51, [0x03e5] = 0x23b52, + [0x03e6] = 0x23b53, [0x03e7] = 0x23b54, [0x03e8] = 0x23b5a, [0x03e9] = 0x23b55, + [0x03ea] = 0x23c5f, [0x03eb] = 0x23d02, [0x03ec] = 0x23d03, [0x03ed] = 0x23d04, + [0x03ee] = 0x23d05, [0x03ef] = 0x23cd5, [0x03f0] = 0x23d06, [0x03f1] = 0x23d07, + [0x03f2] = 0x23cd6, [0x03f3] = 0x23d08, [0x03f4] = 0x23d09, [0x03f5] = 0x23d0a, + [0x03f6] = 0x23d0b, [0x03f7] = 0x23cd7, [0x03f8] = 0x23d0c, [0x03f9] = 0x23d0d, + [0x03fa] = 0x241c8, [0x03fb] = 0x241c9, [0x03fc] = 0x241ca, [0x03fd] = 0x241cb, + [0x03fe] = 0x241cc, [0x03ff] = 0x241cd, [0x0400] = 0x241ce, [0x0401] = 0x241cf, + [0x0402] = 0x241d0, [0x0403] = 0x241d1, [0x0404] = 0x241d2, [0x0405] = 0x7551, + [0x0406] = 0x241d3, [0x0407] = 0x241d4, [0x0408] = 0x241d5, [0x0409] = 0x241d6, + [0x040a] = 0x241d7, [0x040b] = 0x241e2, [0x040c] = 0x241d8, [0x040d] = 0x24504, + [0x040e] = 0x24505, [0x040f] = 0x24506, [0x0411] = 0x24643, [0x0412] = 0x24644, + [0x0413] = 0x24784, [0x0414] = 0x2478f, [0x0415] = 0x24785, [0x0416] = 0x24786, + [0x0417] = 0x2492f, [0x0418] = 0x2491a, [0x0419] = 0x2491b, [0x041a] = 0x2491c, + [0x041b] = 0x3ebd, [0x041c] = 0x2491d, [0x041d] = 0x2491e, [0x041e] = 0x2491f, + [0x041f] = 0x24920, [0x0420] = 0x24921, [0x0421] = 0x24922, [0x0423] = 0x24923, + [0x0424] = 0x24924, [0x0425] = 0x2490e, [0x0426] = 0x24925, [0x0427] = 0x2492b, + [0x0428] = 0x2492c, [0x0429] = 0x2490b, [0x042a] = 0x24aee, [0x042c] = 0x24bc3, + [0x042d] = 0x24bd8, [0x042e] = 0x24bd9, [0x042f] = 0x24c38, [0x0430] = 0x24c39, + [0x0431] = 0x24c3a, [0x0432] = 0x24c3b, [0x0433] = 0x7553, [0x0434] = 0x24c3c, + [0x0435] = 0x24c3d, [0x0436] = 0x24c3e, [0x0437] = 0x24c3f, [0x0438] = 0x24c40, + [0x0439] = 0x24d48, [0x043a] = 0x24d4c, [0x043b] = 0x24f28, [0x043c] = 0x24f51, + [0x043d] = 0x24f52, [0x043e] = 0x2504c, [0x043f] = 0x25123, [0x0441] = 0x25124, + [0x0442] = 0x25431, [0x0443] = 0x25432, [0x0444] = 0x25433, [0x0445] = 0x7818, + [0x0446] = 0x25434, [0x0447] = 0x25435, [0x0448] = 0x25436, [0x0449] = 0x25440, + [0x044a] = 0x25437, [0x044c] = 0x25438, [0x044d] = 0x2543d, [0x044e] = 0x25638, + [0x044f] = 0x25639, [0x0450] = 0x2563a, [0x0451] = 0x2563b, [0x0452] = 0x2563c, + [0x0453] = 0x2564c, [0x0454] = 0x25773, [0x0455] = 0x25774, [0x0456] = 0x4133, + [0x0457] = 0x25775, [0x0458] = 0x25776, [0x0459] = 0x25779, [0x045a] = 0x25941, + [0x045b] = 0x25942, [0x045c] = 0x25943, [0x045d] = 0x25a5b, [0x045f] = 0x7ad7, + [0x0460] = 0x238a6, [0x0461] = 0x25a5c, [0x0462] = 0x25ae5, [0x0463] = 0x25ae6, + [0x0464] = 0x25ae7, [0x0465] = 0x25ae8, [0x0466] = 0x25aed, [0x0467] = 0x25e30, + [0x0468] = 0x7c7e, [0x0469] = 0x25e31, [0x046a] = 0x25f94, [0x046b] = 0x26351, + [0x046c] = 0x263fd, [0x046d] = 0x263fe, [0x046e] = 0x264e9, [0x0470] = 0x266b3, + [0x0471] = 0x26684, [0x0472] = 0x26694, [0x0474] = 0x2669c, [0x0476] = 0x26685, + [0x0477] = 0x26900, [0x0478] = 0x26937, [0x0479] = 0x26957, [0x047a] = 0x26b54, + [0x047b] = 0x26b68, [0x047c] = 0x26b55, [0x047d] = 0x26b5c, [0x047e] = 0x26b56, + [0x047f] = 0x26b57, [0x0480] = 0x26b58, [0x0481] = 0x26b59, [0x0482] = 0x26b5a, + [0x0483] = 0x26b5b, [0x0484] = 0x27234, [0x0485] = 0x867e, [0x0486] = 0x27235, + [0x0488] = 0x27239, [0x0489] = 0x27236, [0x048a] = 0x27237, [0x048b] = 0x27238, + [0x048c] = 0x275e5, [0x048d] = 0x27659, [0x048f] = 0x2763a, [0x0490] = 0x2763b, + [0x0491] = 0x27d28, [0x0492] = 0x27e89, [0x0494] = 0x27e8a, [0x0495] = 0x27e8b, + [0x0496] = 0x27e8c, [0x0497] = 0x27e8d, [0x0498] = 0x27fbc, [0x0499] = 0x282a3, + [0x049a] = 0x4844, [0x049b] = 0x282a4, [0x049c] = 0x28493, [0x049d] = 0x28494, + [0x049e] = 0x28495, [0x049f] = 0x28496, [0x04a0] = 0x28497, [0x04a1] = 0x286b9, + [0x04a2] = 0x28e4f, [0x04a3] = 0x28e50, [0x04a4] = 0x28e51, [0x04a5] = 0x29076, + [0x04a7] = 0x200fb, [0x04a8] = 0x20083, [0x04a9] = 0x20138, [0x04aa] = 0x2015d, + [0x04ab] = 0x20271, [0x04ad] = 0x20277, [0x04ae] = 0x20278, [0x04b0] = 0x202c3, + [0x04b1] = 0x20279, [0x04b2] = 0x2027a, [0x04b3] = 0x2027b, [0x04b4] = 0x2027c, + [0x04b5] = 0x20272, [0x04b6] = 0x2027d, [0x04b7] = 0x202a0, [0x04b8] = 0x2027e, + [0x04b9] = 0x2027f, [0x04ba] = 0x20280, [0x04bb] = 0x20281, [0x04bc] = 0x20282, + [0x04bd] = 0x20283, [0x04be] = 0x2029e, [0x04bf] = 0x20284, [0x04c0] = 0x20285, + [0x04c1] = 0x20286, [0x04c2] = 0x20287, [0x04c3] = 0x20288, [0x04c4] = 0x20493, + [0x04c5] = 0x20494, [0x04c6] = 0x20495, [0x04c7] = 0x204ef, [0x04c8] = 0x204f0, + [0x04ca] = 0x2058d, [0x04cb] = 0x2058f, [0x04cc] = 0x20590, [0x04cd] = 0x20591, + [0x04ce] = 0x20592, [0x04cf] = 0x205de, [0x04d0] = 0x205e1, [0x04d1] = 0x20653, + [0x04d2] = 0x5266, [0x04d3] = 0x2074a, [0x04d4] = 0x2074b, [0x04d5] = 0x2074c, + [0x04d6] = 0x20751, [0x04d7] = 0x2074d, [0x04d8] = 0x20748, [0x04d9] = 0x20874, + [0x04da] = 0x20875, [0x04db] = 0x20920, [0x04dc] = 0x20921, [0x04dd] = 0x209a5, + [0x04de] = 0x209a6, [0x04df] = 0x20a73, [0x04e0] = 0x20a74, [0x04e1] = 0x20b50, + [0x04e2] = 0x20b51, [0x04e3] = 0x20b52, [0x04e4] = 0x20b53, [0x04e5] = 0x20cdb, + [0x04e6] = 0x20cdc, [0x04e7] = 0x5520, [0x04e8] = 0x20cdd, [0x04e9] = 0x20cde, + [0x04ea] = 0x20cff, [0x04ed] = 0x20cdf, [0x04ee] = 0x20ce0, [0x04ef] = 0x5521, + [0x04f0] = 0x20ce1, [0x04f1] = 0x20ce2, [0x04f2] = 0x20ce3, [0x04f3] = 0x20ce4, + [0x04f4] = 0x20ce5, [0x04f5] = 0x20ce6, [0x04f6] = 0x20ce7, [0x04f7] = 0x20ce8, + [0x04f8] = 0x20ce9, [0x04f9] = 0x20cea, [0x04fa] = 0x21307, [0x04fb] = 0x21308, + [0x04fc] = 0x21309, [0x04fd] = 0x2130a, [0x04fe] = 0x2130b, [0x04ff] = 0x2130c, + [0x0500] = 0x2130d, [0x0501] = 0x57d7, [0x0502] = 0x2131a, [0x0503] = 0x2130e, + [0x0504] = 0x2130f, [0x0505] = 0x21310, [0x0506] = 0x2131c, [0x0507] = 0x21527, + [0x0508] = 0x21566, [0x0509] = 0x21598, [0x050a] = 0x21599, [0x050b] = 0x21633, + [0x050c] = 0x21624, [0x050d] = 0x21625, [0x050e] = 0x21626, [0x0510] = 0x36e1, + [0x0511] = 0x2173e, [0x0513] = 0x2173f, [0x0514] = 0x21757, [0x0515] = 0x21740, + [0x0516] = 0x21741, [0x0517] = 0x21758, [0x0518] = 0x21742, [0x0519] = 0x21743, + [0x051a] = 0x21744, [0x051b] = 0x21745, [0x051c] = 0x21746, [0x051d] = 0x36e2, + [0x051e] = 0x21747, [0x051f] = 0x2196b, [0x0520] = 0x2196c, [0x0521] = 0x21a10, + [0x0522] = 0x21a11, [0x0523] = 0x5bbe, [0x0524] = 0x21b75, [0x0525] = 0x21bef, + [0x0526] = 0x21c6a, [0x0527] = 0x21c6b, [0x0529] = 0x21c6c, [0x052a] = 0x21c6d, + [0x052b] = 0x21c6e, [0x052c] = 0x21def, [0x052d] = 0x21df0, [0x052e] = 0x21df1, + [0x052f] = 0x21df2, [0x0530] = 0x21df3, [0x0531] = 0x21df4, [0x0532] = 0x21df5, + [0x0533] = 0x21dff, [0x0534] = 0x21df6, [0x0535] = 0x21e02, [0x0536] = 0x21df7, + [0x0537] = 0x22022, [0x0538] = 0x220c4, [0x0539] = 0x220c3, [0x053a] = 0x22228, + [0x053b] = 0x387c, [0x053c] = 0x22320, [0x053d] = 0x22325, [0x053e] = 0x22322, + [0x053f] = 0x22323, [0x0540] = 0x223eb, [0x0541] = 0x38e3, [0x0542] = 0x224f9, + [0x0543] = 0x224fa, [0x0544] = 0x22699, [0x0545] = 0x2269a, [0x0546] = 0x2269b, + [0x0547] = 0x22663, [0x0549] = 0x2265e, [0x054a] = 0x2265f, [0x054b] = 0x22660, + [0x054c] = 0x2269c, [0x054d] = 0x22661, [0x054e] = 0x2269d, [0x054f] = 0x22b54, + [0x0550] = 0x22b55, [0x0551] = 0x22b56, [0x0552] = 0x22b57, [0x0553] = 0x22b58, + [0x0554] = 0x22b59, [0x0555] = 0x22b5a, [0x0556] = 0x22b19, [0x0557] = 0x22b6a, + [0x0558] = 0x22b5b, [0x0559] = 0x22b5c, [0x055a] = 0x22b5d, [0x055b] = 0x22b66, + [0x055d] = 0x22b5e, [0x055e] = 0x22b5f, [0x055f] = 0x22b1a, [0x0560] = 0x22b60, + [0x0561] = 0x22b61, [0x0563] = 0x22b62, [0x0564] = 0x22b1b, [0x0565] = 0x22b63, + [0x0566] = 0x26410, [0x0567] = 0x26411, [0x0568] = 0x2304c, [0x0569] = 0x2309b, + [0x056a] = 0x230eb, [0x056b] = 0x230ec, [0x056c] = 0x230ed, [0x056d] = 0x230ee, + [0x056e] = 0x231a3, [0x056f] = 0x231a8, [0x0570] = 0x231a6, [0x0571] = 0x3aec, + [0x0572] = 0x2332f, [0x0573] = 0x23330, [0x0574] = 0x23331, [0x0575] = 0x23332, + [0x0576] = 0x23333, [0x0577] = 0x2344f, [0x0578] = 0x23451, [0x0579] = 0x23452, + [0x057a] = 0x2347d, [0x057b] = 0x23453, [0x057c] = 0x23454, [0x057d] = 0x23455, + [0x057e] = 0x23456, [0x057f] = 0x23457, [0x0580] = 0x23458, [0x0581] = 0x23459, + [0x0582] = 0x2345a, [0x0583] = 0x2345b, [0x0584] = 0x2345c, [0x0585] = 0x6857, + [0x0586] = 0x2345d, [0x0587] = 0x2345e, [0x0588] = 0x2345f, [0x0589] = 0x2346f, + [0x058a] = 0x23460, [0x058b] = 0x23461, [0x058c] = 0x23462, [0x058d] = 0x23463, + [0x058e] = 0x23472, [0x058f] = 0x23464, [0x0591] = 0x2346e, [0x0592] = 0x238b5, + [0x0593] = 0x23b65, [0x0594] = 0x23b66, [0x0595] = 0x23b67, [0x0596] = 0x23b68, + [0x0597] = 0x23b69, [0x0598] = 0x23b6a, [0x0599] = 0x23b6b, [0x059a] = 0x23b6c, + [0x059b] = 0x23d0e, [0x059c] = 0x23d43, [0x059e] = 0x23d0f, [0x059f] = 0x23d44, + [0x05a0] = 0x23d45, [0x05a1] = 0x23d46, [0x05a2] = 0x23d47, [0x05a3] = 0x23d48, + [0x05a4] = 0x23d49, [0x05a5] = 0x23d10, [0x05a6] = 0x23d4a, [0x05a7] = 0x23d4b, + [0x05a8] = 0x23d4c, [0x05a9] = 0x23d4d, [0x05ab] = 0x23d4e, [0x05ac] = 0x23d4f, + [0x05ad] = 0x23d50, [0x05ae] = 0x23d51, [0x05af] = 0x23d52, [0x05b0] = 0x23d53, + [0x05b1] = 0x23d54, [0x05b2] = 0x23d55, [0x05b3] = 0x23d56, [0x05b4] = 0x23d57, + [0x05b5] = 0x23d58, [0x05b6] = 0x23d59, [0x05b7] = 0x23d5a, [0x05b8] = 0x23d1d, + [0x05b9] = 0x23d5b, [0x05ba] = 0x23d5c, [0x05bb] = 0x23d5d, [0x05be] = 0x241fe, + [0x05bf] = 0x241ff, [0x05c0] = 0x24200, [0x05c1] = 0x24201, [0x05c2] = 0x24202, + [0x05c3] = 0x24203, [0x05c4] = 0x24204, [0x05c5] = 0x24205, [0x05c6] = 0x24206, + [0x05c7] = 0x24207, [0x05c8] = 0x24218, [0x05c9] = 0x24208, [0x05ca] = 0x24209, + [0x05cb] = 0x241f3, [0x05cc] = 0x2420a, [0x05cd] = 0x2420b, [0x05ce] = 0x2421b, + [0x05cf] = 0x2420c, [0x05d0] = 0x2420d, [0x05d1] = 0x2420e, [0x05d2] = 0x2420f, + [0x05d3] = 0x24210, [0x05d4] = 0x2450f, [0x05d5] = 0x24561, [0x05d6] = 0x24579, + [0x05d7] = 0x247c1, [0x05d8] = 0x247ac, [0x05d9] = 0x247ad, [0x05da] = 0x24943, + [0x05db] = 0x24944, [0x05dc] = 0x24945, [0x05dd] = 0x24946, [0x05de] = 0x24947, + [0x05df] = 0x24948, [0x05e0] = 0x24949, [0x05e1] = 0x24964, [0x05e2] = 0x2494a, + [0x05e3] = 0x2494b, [0x05e4] = 0x2494c, [0x05e5] = 0x2494d, [0x05e8] = 0x24b39, + [0x05e9] = 0x24c57, [0x05ea] = 0x24c58, [0x05eb] = 0x24c59, [0x05ec] = 0x24c5f, + [0x05ed] = 0x24c5a, [0x05ee] = 0x24d6a, [0x05ef] = 0x24f2b, [0x05f0] = 0x24f5d, + [0x05f1] = 0x24f5e, [0x05f2] = 0x24f5f, [0x05f4] = 0x24f60, [0x05f5] = 0x24f61, + [0x05f6] = 0x25058, [0x05f7] = 0x25059, [0x05f8] = 0x2514a, [0x05f9] = 0x2514b, + [0x05fa] = 0x2514c, [0x05fb] = 0x2514d, [0x05fc] = 0x2514e, [0x05fd] = 0x25457, + [0x05fe] = 0x253b3, [0x05ff] = 0x253b4, [0x0600] = 0x2546e, [0x0601] = 0x2545b, + [0x0602] = 0x2545c, [0x0604] = 0x2545d, [0x0605] = 0x2545e, [0x0607] = 0x2546c, + [0x0608] = 0x2563d, [0x0609] = 0x25654, [0x060a] = 0x2563e, [0x060b] = 0x25655, + [0x060c] = 0x25656, [0x060d] = 0x2563f, [0x060e] = 0x25657, [0x060f] = 0x25658, + [0x0610] = 0x25659, [0x0611] = 0x2565a, [0x0612] = 0x2565b, [0x0613] = 0x2565c, + [0x0614] = 0x25788, [0x0615] = 0x25789, [0x0617] = 0x25958, [0x0618] = 0x25959, + [0x0619] = 0x2595a, [0x061b] = 0x25a67, [0x061c] = 0x25a68, [0x061d] = 0x25a69, + [0x061e] = 0x25a6a, [0x0620] = 0x25a6b, [0x0621] = 0x25a6c, [0x0622] = 0x25afe, + [0x0623] = 0x25aff, [0x0624] = 0x25b00, [0x0625] = 0x25b01, [0x0626] = 0x25b02, + [0x0627] = 0x25b03, [0x0628] = 0x25b04, [0x0629] = 0x25b05, [0x062a] = 0x25e39, + [0x062b] = 0x25e3a, [0x062c] = 0x25e3b, [0x062d] = 0x25e3c, [0x0630] = 0x25fb2, + [0x0631] = 0x25fb3, [0x0632] = 0x25fb4, [0x0633] = 0x25fb5, [0x0634] = 0x25fb6, + [0x0635] = 0x25fb7, [0x0636] = 0x25fb8, [0x0637] = 0x7f3c, [0x0638] = 0x262a2, + [0x0639] = 0x26361, [0x063a] = 0x26362, [0x063b] = 0x26414, [0x063d] = 0x264eb, + [0x063e] = 0x26542, [0x063f] = 0x26548, [0x0641] = 0x26543, [0x0642] = 0x2654e, + [0x0643] = 0x26544, [0x0644] = 0x26545, [0x0645] = 0x266b4, [0x0646] = 0x266b5, + [0x064a] = 0x266b6, [0x064c] = 0x268e1, [0x064d] = 0x26905, [0x064f] = 0x8273, + [0x0650] = 0x26b9a, [0x0652] = 0x26b9b, [0x0653] = 0x26b9c, [0x0654] = 0x26b9d, + [0x0655] = 0x26b9e, [0x0656] = 0x26b9f, [0x0658] = 0x26ba0, [0x0659] = 0x26ba1, + [0x065a] = 0x26ba2, [0x065b] = 0x26bb5, [0x065c] = 0x26ba3, [0x065d] = 0x26ba4, + [0x065f] = 0x26ba5, [0x0660] = 0x26ba6, [0x0661] = 0x26ba7, [0x0662] = 0x26ba8, + [0x0663] = 0x26baf, [0x0664] = 0x26ba9, [0x0665] = 0x26baa, [0x0666] = 0x26bab, + [0x0667] = 0x26bac, [0x0668] = 0x26bad, [0x0669] = 0x26bb3, [0x066b] = 0x271a0, + [0x066c] = 0x27256, [0x066d] = 0x27634, [0x066e] = 0x4627, [0x066f] = 0x2763c, + [0x0670] = 0x2780c, [0x0672] = 0x27c3e, [0x0673] = 0x27ca3, [0x0674] = 0x27d30, + [0x0675] = 0x27d31, [0x0676] = 0x27e97, [0x0677] = 0x27e98, [0x0678] = 0x27e99, + [0x0679] = 0x27e9a, [0x067a] = 0x27e9b, [0x067b] = 0x282b2, [0x067c] = 0x282ab, + [0x067d] = 0x282ac, [0x067e] = 0x286fc, [0x067f] = 0x286e8, [0x0680] = 0x286e9, + [0x0681] = 0x286ea, [0x0682] = 0x287f1, [0x0683] = 0x2893f, [0x0684] = 0x28cce, + [0x0685] = 0x28e6d, [0x0686] = 0x28e6e, [0x0687] = 0x28e6f, [0x0688] = 0x28e70, + [0x0689] = 0x28e71, [0x068a] = 0x28e72, [0x068b] = 0x28e73, [0x068c] = 0x96be, + [0x068d] = 0x29078, [0x068e] = 0x2983a, [0x068f] = 0x20167, [0x0690] = 0x66fa, + [0x0691] = 0x20164, [0x0692] = 0x20165, [0x0693] = 0x20307, [0x0694] = 0x202c4, + [0x0695] = 0x202c5, [0x0696] = 0x202c6, [0x0697] = 0x202c7, [0x0698] = 0x202c8, + [0x0699] = 0x202c9, [0x069a] = 0x202e5, [0x069b] = 0x202ca, [0x069c] = 0x202cb, + [0x069e] = 0x202cc, [0x069f] = 0x202cd, [0x06a0] = 0x202ce, [0x06a1] = 0x202cf, + [0x06a2] = 0x202d0, [0x06a3] = 0x20497, [0x06a4] = 0x2049a, [0x06a5] = 0x2049b, + [0x06a6] = 0x205ea, [0x06a7] = 0x205ec, [0x06a8] = 0x205ed, [0x06a9] = 0x205f7, + [0x06aa] = 0x205ee, [0x06ab] = 0x205ef, [0x06ac] = 0x2065b, [0x06ad] = 0x2065c, + [0x06ae] = 0x2065d, [0x06af] = 0x2076d, [0x06b0] = 0x2076e, [0x06b2] = 0x2076f, + [0x06b3] = 0x20881, [0x06b4] = 0x20882, [0x06b5] = 0x2094f, [0x06b6] = 0x209ad, + [0x06b7] = 0x2870a, [0x06b8] = 0x20a7e, [0x06b9] = 0x20b69, [0x06ba] = 0x20d54, + [0x06bb] = 0x20d55, [0x06bc] = 0x20d56, [0x06bd] = 0x20d57, [0x06be] = 0x35ab, + [0x06bf] = 0x20d58, [0x06c0] = 0x20d59, [0x06c1] = 0x20d5a, [0x06c2] = 0x20d5b, + [0x06c3] = 0x20d5c, [0x06c4] = 0x20d5d, [0x06c7] = 0x20d5e, [0x06c8] = 0x20d5f, + [0x06c9] = 0x2133b, [0x06ca] = 0x21336, [0x06cb] = 0x2133c, [0x06cc] = 0x2133d, + [0x06cd] = 0x2133e, [0x06ce] = 0x2133f, [0x06cf] = 0x21340, [0x06d0] = 0x21341, + [0x06d1] = 0x21342, [0x06d2] = 0x364b, [0x06d3] = 0x21343, [0x06d4] = 0x21344, + [0x06d5] = 0x21345, [0x06d6] = 0x21337, [0x06d9] = 0x21346, [0x06da] = 0x21347, + [0x06db] = 0x21348, [0x06dc] = 0x21349, [0x06dd] = 0x2152d, [0x06de] = 0x215a5, + [0x06df] = 0x2163d, [0x06e0] = 0x2163f, [0x06e1] = 0x2196e, [0x06e2] = 0x217e7, + [0x06e3] = 0x21775, [0x06e4] = 0x21776, [0x06e5] = 0x21777, [0x06e6] = 0x21778, + [0x06e7] = 0x21779, [0x06e8] = 0x2177a, [0x06e9] = 0x2177b, [0x06ea] = 0x2177c, + [0x06eb] = 0x2178e, [0x06ec] = 0x2177d, [0x06ed] = 0x2177e, [0x06ee] = 0x5a72, + [0x06ef] = 0x2177f, [0x06f0] = 0x21780, [0x06f1] = 0x21781, [0x06f2] = 0x21782, + [0x06f3] = 0x21783, [0x06f4] = 0x21784, [0x06f5] = 0x21785, [0x06f6] = 0x21786, + [0x06f7] = 0x21787, [0x06f8] = 0x21788, [0x06f9] = 0x21789, [0x06fa] = 0x2178a, + [0x06fb] = 0x2178b, [0x06fc] = 0x2178c, [0x06fd] = 0x2196f, [0x06fe] = 0x21970, + [0x06ff] = 0x21971, [0x0700] = 0x21972, [0x0701] = 0x21a2a, [0x0702] = 0x21a2b, + [0x0703] = 0x21a2c, [0x0704] = 0x21a2d, [0x0705] = 0x21a2e, [0x0706] = 0x21a2f, + [0x0707] = 0x21a30, [0x0708] = 0x21a31, [0x0709] = 0x21b83, [0x070a] = 0x21c84, + [0x070b] = 0x21c85, [0x070c] = 0x21c93, [0x070e] = 0x21c86, [0x070f] = 0x21c87, + [0x0710] = 0x21c88, [0x0711] = 0x21c89, [0x0712] = 0x21c8a, [0x0713] = 0x21c8b, + [0x0714] = 0x21e36, [0x0715] = 0x21e38, [0x0716] = 0x21e39, [0x0717] = 0x21e3a, + [0x0718] = 0x37e2, [0x0719] = 0x21e3b, [0x071a] = 0x21e3c, [0x071b] = 0x21e3d, + [0x071c] = 0x21e3e, [0x071d] = 0x21e3f, [0x071f] = 0x21e40, [0x0720] = 0x21e41, + [0x0721] = 0x21e42, [0x0722] = 0x220de, [0x0723] = 0x220df, [0x0724] = 0x220e0, + [0x0725] = 0x220e1, [0x0726] = 0x2224a, [0x0727] = 0x2224b, [0x0728] = 0x2224c, + [0x0729] = 0x2224d, [0x072a] = 0x2224e, [0x072b] = 0x2224f, [0x072c] = 0x22250, + [0x072d] = 0x22327, [0x072e] = 0x223f9, [0x072f] = 0x223fa, [0x0730] = 0x223fb, + [0x0731] = 0x22498, [0x0732] = 0x22499, [0x0733] = 0x2249a, [0x0735] = 0x2251e, + [0x0736] = 0x2269e, [0x0737] = 0x226f7, [0x0738] = 0x2269f, [0x0739] = 0x226a0, + [0x073a] = 0x226f0, [0x073b] = 0x226f8, [0x073c] = 0x226f9, [0x073d] = 0x226a1, + [0x073e] = 0x226a2, [0x073f] = 0x226a3, [0x0740] = 0x226a4, [0x0741] = 0x226a5, + [0x0742] = 0x226fa, [0x0743] = 0x226fb, [0x0744] = 0x226fc, [0x0745] = 0x226fd, + [0x0746] = 0x226fe, [0x0747] = 0x2271f, [0x0748] = 0x226ff, [0x0749] = 0x22700, + [0x074a] = 0x2278c, [0x074b] = 0x22701, [0x074c] = 0x229c2, [0x074d] = 0x229c3, + [0x074f] = 0x229d3, [0x0750] = 0x22a4e, [0x0751] = 0x22baf, [0x0752] = 0x22bb0, + [0x0753] = 0x22bb1, [0x0754] = 0x22bb2, [0x0755] = 0x22bb3, [0x0756] = 0x22bc6, + [0x0757] = 0x22bb4, [0x0759] = 0x22bb5, [0x075a] = 0x22bb6, [0x075b] = 0x22bb7, + [0x075c] = 0x22bb8, [0x075d] = 0x22bb9, [0x075e] = 0x22bba, [0x075f] = 0x22bbb, + [0x0760] = 0x22bbc, [0x0761] = 0x22bbd, [0x0762] = 0x22bbe, [0x0763] = 0x22bbf, + [0x0764] = 0x22bc1, [0x0765] = 0x22bc0, [0x0766] = 0x22bc2, [0x0767] = 0x22bc3, + [0x0768] = 0x22f51, [0x0769] = 0x22f52, [0x076a] = 0x22f53, [0x076b] = 0x22f54, + [0x076c] = 0x22f55, [0x076d] = 0x2305a, [0x076e] = 0x23050, [0x076f] = 0x23051, + [0x0770] = 0x23078, [0x0771] = 0x230f8, [0x0772] = 0x230f9, [0x0773] = 0x231c6, + [0x0774] = 0x231cb, [0x0775] = 0x231cc, [0x0776] = 0x231cd, [0x0777] = 0x231ce, + [0x0778] = 0x231cf, [0x0779] = 0x231d0, [0x077a] = 0x231d1, [0x077b] = 0x231d2, + [0x077c] = 0x231d3, [0x077d] = 0x231d4, [0x077e] = 0x231d5, [0x0780] = 0x23337, + [0x0781] = 0x23338, [0x0782] = 0x23373, [0x0783] = 0x23490, [0x0784] = 0x23491, + [0x0785] = 0x234bf, [0x0786] = 0x23492, [0x0787] = 0x23493, [0x0788] = 0x23494, + [0x0789] = 0x23495, [0x078a] = 0x23496, [0x078b] = 0x23497, [0x078c] = 0x23498, + [0x078d] = 0x23499, [0x078e] = 0x68bd, [0x078f] = 0x2349a, [0x0790] = 0x2349b, + [0x0791] = 0x2349c, [0x0792] = 0x2349d, [0x0793] = 0x2349e, [0x0794] = 0x2349f, + [0x0795] = 0x234a0, [0x0796] = 0x234a1, [0x0797] = 0x234a2, [0x0798] = 0x234a3, + [0x0799] = 0x234a4, [0x079a] = 0x234a5, [0x079c] = 0x234a6, [0x079d] = 0x234a7, + [0x079e] = 0x238bf, [0x079f] = 0x238c0, [0x07a0] = 0x238c1, [0x07a1] = 0x238c2, + [0x07a2] = 0x238c3, [0x07a3] = 0x238c4, [0x07a4] = 0x238c5, [0x07a5] = 0x238c6, + [0x07a6] = 0x23975, [0x07a7] = 0x23a43, [0x07a8] = 0x23a12, [0x07a9] = 0x23a9f, + [0x07aa] = 0x23a91, [0x07ac] = 0x23a92, [0x07ad] = 0x23a93, [0x07ae] = 0x23a94, + [0x07af] = 0x23b7e, [0x07b0] = 0x23b7f, [0x07b1] = 0x23b80, [0x07b2] = 0x23b81, + [0x07b3] = 0x23b82, [0x07b4] = 0x23c4c, [0x07b5] = 0x23c63, [0x07b6] = 0x23dc0, + [0x07b7] = 0x23dc1, [0x07b8] = 0x23dc2, [0x07b9] = 0x2423a, [0x07ba] = 0x23dc3, + [0x07bb] = 0x23dc4, [0x07bc] = 0x23dc5, [0x07bd] = 0x23dc6, [0x07be] = 0x6e15, + [0x07bf] = 0x23dc7, [0x07c1] = 0x23dc8, [0x07c2] = 0x23d73, [0x07c3] = 0x23dc9, + [0x07c4] = 0x23dca, [0x07c5] = 0x23dcb, [0x07c6] = 0x23dcc, [0x07c7] = 0x23dcd, + [0x07cb] = 0x23dce, [0x07cc] = 0x23dcf, [0x07cd] = 0x23dd0, [0x07ce] = 0x23dd1, + [0x07cf] = 0x23dd2, [0x07d0] = 0x23dd3, [0x07d1] = 0x23dd4, [0x07d2] = 0x23dd5, + [0x07d3] = 0x2423b, [0x07d4] = 0x2423c, [0x07d5] = 0x2423d, [0x07d6] = 0x2423e, + [0x07d8] = 0x2423f, [0x07d9] = 0x24240, [0x07da] = 0x24241, [0x07db] = 0x24242, + [0x07dc] = 0x24243, [0x07dd] = 0x3dc1, [0x07de] = 0x24244, [0x07df] = 0x24245, + [0x07e0] = 0x24259, [0x07e1] = 0x24246, [0x07e2] = 0x24247, [0x07e3] = 0x24248, + [0x07e5] = 0x24249, [0x07e6] = 0x24513, [0x07e7] = 0x24582, [0x07e8] = 0x24583, + [0x07e9] = 0x24666, [0x07ea] = 0x24667, [0x07eb] = 0x24965, [0x07ec] = 0x7413, + [0x07ed] = 0x24966, [0x07ef] = 0x24975, [0x07f0] = 0x24974, [0x07f1] = 0x24967, + [0x07f2] = 0x2496d, [0x07f3] = 0x24976, [0x07f4] = 0x24968, [0x07f5] = 0x24969, + [0x07f6] = 0x2496a, [0x07f7] = 0x2496b, [0x07f8] = 0x2494f, [0x07f9] = 0x2496c, + [0x07fa] = 0x24af8, [0x07fb] = 0x24b45, [0x07fc] = 0x74f8, [0x07fd] = 0x24b46, + [0x07fe] = 0x24be4, [0x07ff] = 0x24c85, [0x0800] = 0x24c6f, [0x0801] = 0x24c70, + [0x0802] = 0x24d82, [0x0803] = 0x24d83, [0x0804] = 0x24d84, [0x0805] = 0x24d8b, + [0x0806] = 0x24f2d, [0x0807] = 0x24f68, [0x0808] = 0x24f69, [0x0809] = 0x24f77, + [0x080a] = 0x24f64, [0x080b] = 0x24f6a, [0x080d] = 0x24ff2, [0x080e] = 0x24fe2, + [0x080f] = 0x25063, [0x0810] = 0x25064, [0x0811] = 0x25065, [0x0812] = 0x25066, + [0x0813] = 0x7b3d, [0x0814] = 0x25067, [0x0815] = 0x25068, [0x0816] = 0x76d8, + [0x0818] = 0x25172, [0x0819] = 0x2517d, [0x081a] = 0x25369, [0x081b] = 0x25484, + [0x081c] = 0x25486, [0x081d] = 0x25487, [0x081e] = 0x25488, [0x081f] = 0x2549e, + [0x0821] = 0x25489, [0x0822] = 0x2548a, [0x0823] = 0x25496, [0x0824] = 0x2548b, + [0x0825] = 0x2548c, [0x0826] = 0x2548d, [0x0827] = 0x25679, [0x0828] = 0x25683, + [0x0829] = 0x2567a, [0x082a] = 0x2565d, [0x082b] = 0x2567b, [0x082d] = 0x2579f, + [0x082f] = 0x257a0, [0x0830] = 0x257a1, [0x0831] = 0x257a2, [0x0832] = 0x79fc, + [0x0833] = 0x2596a, [0x0834] = 0x2596b, [0x0835] = 0x2596c, [0x0836] = 0x2596d, + [0x0837] = 0x2596e, [0x0838] = 0x25a78, [0x083a] = 0x25a79, [0x083b] = 0x25a7c, + [0x083c] = 0x25b21, [0x083d] = 0x25b22, [0x083e] = 0x25b23, [0x083f] = 0x25b24, + [0x0840] = 0x7b39, [0x0841] = 0x25b25, [0x0842] = 0x25b26, [0x0843] = 0x25e51, + [0x0844] = 0x25e52, [0x0845] = 0x25e56, [0x0847] = 0x7d4b, [0x0848] = 0x25fe1, + [0x084b] = 0x25fd6, [0x084c] = 0x25fd7, [0x084d] = 0x25fd8, [0x084e] = 0x25fd9, + [0x084f] = 0x262b5, [0x0850] = 0x2636c, [0x0851] = 0x2636f, [0x0852] = 0x26370, + [0x0853] = 0x264bc, [0x0854] = 0x264bd, [0x0855] = 0x264ed, [0x0856] = 0x2655b, + [0x0857] = 0x2655c, [0x0858] = 0x2655d, [0x0859] = 0x2655e, [0x085a] = 0x26686, + [0x085b] = 0x26687, [0x085c] = 0x266ed, [0x085e] = 0x266ee, [0x0860] = 0x2690e, + [0x0861] = 0x2690f, [0x0863] = 0x26a2d, [0x0864] = 0x26a2a, [0x0865] = 0x26a2e, + [0x0866] = 0x26acc, [0x0867] = 0x26bf9, [0x0868] = 0x26bfa, [0x0869] = 0x26bfb, + [0x086a] = 0x26bfc, [0x086b] = 0x83b9, [0x086c] = 0x26bfd, [0x086d] = 0x26c1b, + [0x086e] = 0x26bfe, [0x086f] = 0x26bff, [0x0870] = 0x26c00, [0x0871] = 0x26c01, + [0x0872] = 0x26c02, [0x0873] = 0x26c03, [0x0874] = 0x26c21, [0x0875] = 0x26c04, + [0x0876] = 0x26c05, [0x0877] = 0x26c06, [0x0878] = 0x26c07, [0x0879] = 0x26c08, + [0x087a] = 0x26c09, [0x087b] = 0x26c0a, [0x087c] = 0x26c0b, [0x087d] = 0x26c0c, + [0x087e] = 0x26c0d, [0x087f] = 0x26c0e, [0x0880] = 0x26c0f, [0x0881] = 0x26c10, + [0x0882] = 0x26c11, [0x0883] = 0x26c12, [0x0884] = 0x26c13, [0x0885] = 0x26c14, + [0x0886] = 0x26c15, [0x0887] = 0x2727b, [0x0888] = 0x2727c, [0x0889] = 0x2727d, + [0x088a] = 0x2727e, [0x088b] = 0x86cf, [0x088c] = 0x2727f, [0x088d] = 0x27280, + [0x088e] = 0x27266, [0x088f] = 0x27281, [0x0890] = 0x27282, [0x0891] = 0x27283, + [0x0892] = 0x275b2, [0x0894] = 0x2767f, [0x0895] = 0x27672, [0x0896] = 0x2765a, + [0x0897] = 0x277eb, [0x0898] = 0x27815, [0x089a] = 0x27816, [0x089c] = 0x27817, + [0x089e] = 0x278c5, [0x089f] = 0x278c6, [0x08a0] = 0x278c7, [0x08a1] = 0x27988, + [0x08a2] = 0x27989, [0x08a4] = 0x2798a, [0x08a5] = 0x2798b, [0x08a6] = 0x2798c, + [0x08a7] = 0x2798d, [0x08a8] = 0x27bdf, [0x08aa] = 0x27d3b, [0x08ab] = 0x27d3c, + [0x08ac] = 0x27d3d, [0x08ad] = 0x27d3e, [0x08ae] = 0x27d3f, [0x08af] = 0x27d40, + [0x08b0] = 0x27d41, [0x08b1] = 0x27d42, [0x08b2] = 0x27e5c, [0x08b3] = 0x27eaf, + [0x08b4] = 0x27ea9, [0x08b5] = 0x27eaa, [0x08b6] = 0x27eab, [0x08b7] = 0x27eac, + [0x08b8] = 0x27eb5, [0x08b9] = 0x27ead, [0x08ba] = 0x27eae, [0x08bb] = 0x27fe2, + [0x08bc] = 0x28224, [0x08bd] = 0x8eae, [0x08be] = 0x282c4, [0x08c0] = 0x284ea, + [0x08c1] = 0x284d3, [0x08c2] = 0x284d4, [0x08c3] = 0x284d5, [0x08c4] = 0x28686, + [0x08c6] = 0x28687, [0x08c7] = 0x286fd, [0x08c8] = 0x28805, [0x08c9] = 0x28949, + [0x08ca] = 0x28c5f, [0x08cb] = 0x28cd3, [0x08cc] = 0x28cd5, [0x08cd] = 0x28e8a, + [0x08ce] = 0x28e8b, [0x08cf] = 0x28e8c, [0x08d0] = 0x28e8d, [0x08d1] = 0x28e8e, + [0x08d2] = 0x28e8f, [0x08d3] = 0x28e90, [0x08d4] = 0x28e91, [0x08d5] = 0x28e92, + [0x08d6] = 0x28e93, [0x08d7] = 0x2907d, [0x08d8] = 0x2907e, [0x08d9] = 0x96eb, + [0x08dc] = 0x291ec, [0x08dd] = 0x2925b, [0x08de] = 0x29c87, [0x08df] = 0x29c86, + [0x08e1] = 0x20046, [0x08e2] = 0x20047, [0x08e3] = 0x20102, [0x08e4] = 0x2016d, + [0x08e5] = 0x2016e, [0x08e6] = 0x2016f, [0x08e7] = 0x2030d, [0x08e8] = 0x2030e, + [0x08e9] = 0x2030f, [0x08ea] = 0x20310, [0x08eb] = 0x20311, [0x08ec] = 0x20312, + [0x08ed] = 0x20313, [0x08ee] = 0x20314, [0x08ef] = 0x2049f, [0x08f0] = 0x204a0, + [0x08f1] = 0x204a1, [0x08f2] = 0x204a3, [0x08f3] = 0x20521, [0x08f4] = 0x20522, + [0x08f5] = 0x2337c, [0x08f6] = 0x20595, [0x08f7] = 0x20596, [0x08f8] = 0x20661, + [0x08f9] = 0x20667, [0x08fa] = 0x20791, [0x08fb] = 0x20792, [0x08fc] = 0x20793, + [0x08fd] = 0x20794, [0x08fe] = 0x2088a, [0x08ff] = 0x2088b, [0x0900] = 0x208f7, + [0x0901] = 0x20924, [0x0902] = 0x209b0, [0x0903] = 0x209b1, [0x0904] = 0x20a8e, + [0x0905] = 0x20b04, [0x0906] = 0x20b6a, [0x0907] = 0x20b6b, [0x0908] = 0x20b6c, + [0x0909] = 0x20b6d, [0x090a] = 0x20de8, [0x090b] = 0x20e0c, [0x090c] = 0x20de9, + [0x090d] = 0x20dea, [0x090e] = 0x20e0d, [0x0910] = 0x20deb, [0x0911] = 0x20dec, + [0x0912] = 0x20ded, [0x0913] = 0x20dee, [0x0914] = 0x20def, [0x0915] = 0x20df0, + [0x0916] = 0x20df1, [0x0917] = 0x20df2, [0x0918] = 0x20e16, [0x0919] = 0x20df3, + [0x091a] = 0x20e04, [0x091b] = 0x20e1d, [0x091c] = 0x20df4, [0x091d] = 0x20df5, + [0x091e] = 0x20df6, [0x091f] = 0x20df7, [0x0920] = 0x55b0, [0x0921] = 0x21202, + [0x0922] = 0x21203, [0x0923] = 0x21204, [0x0924] = 0x2139a, [0x0925] = 0x2137c, + [0x0926] = 0x213c5, [0x0927] = 0x2137d, [0x0928] = 0x2137e, [0x0929] = 0x2137f, + [0x092a] = 0x21380, [0x092b] = 0x21381, [0x092c] = 0x5840, [0x092d] = 0x5842, + [0x092e] = 0x21382, [0x092f] = 0x21383, [0x0930] = 0x21384, [0x0931] = 0x21385, + [0x0932] = 0x21386, [0x0933] = 0x21387, [0x0934] = 0x215ae, [0x0935] = 0x2164d, + [0x0936] = 0x217b0, [0x0937] = 0x217dc, [0x0938] = 0x217b6, [0x0939] = 0x217b7, + [0x093a] = 0x217b8, [0x093b] = 0x217b9, [0x093c] = 0x217ba, [0x093d] = 0x217bb, + [0x093e] = 0x217db, [0x093f] = 0x217bc, [0x0940] = 0x217bd, [0x0941] = 0x217be, + [0x0943] = 0x217bf, [0x0944] = 0x217c0, [0x0945] = 0x217c1, [0x0946] = 0x217c2, + [0x0947] = 0x217c3, [0x0948] = 0x217ce, [0x0949] = 0x3701, [0x094a] = 0x217d9, + [0x094b] = 0x217c4, [0x094c] = 0x217c5, [0x094d] = 0x217da, [0x094e] = 0x217c6, + [0x094f] = 0x217c7, [0x0950] = 0x217c8, [0x0951] = 0x217c9, [0x0952] = 0x217ca, + [0x0953] = 0x2197e, [0x0954] = 0x2197b, [0x0955] = 0x21a4e, [0x0956] = 0x21a4f, + [0x0957] = 0x21a50, [0x0958] = 0x21a51, [0x0959] = 0x21a52, [0x095a] = 0x21a53, + [0x095b] = 0x21a54, [0x095c] = 0x21a55, [0x095d] = 0x21b8f, [0x095e] = 0x21bfc, + [0x095f] = 0x21ca6, [0x0960] = 0x21ca7, [0x0961] = 0x21ca8, [0x0962] = 0x21d23, + [0x0963] = 0x21e8b, [0x0965] = 0x21e8c, [0x0966] = 0x21e8d, [0x0967] = 0x21e8e, + [0x0968] = 0x21e8f, [0x0969] = 0x21ea4, [0x096a] = 0x20599, [0x096b] = 0x22024, + [0x096c] = 0x22046, [0x096d] = 0x22047, [0x096e] = 0x22048, [0x096f] = 0x220fd, + [0x0970] = 0x220fe, [0x0972] = 0x2226e, [0x0973] = 0x2227c, [0x0974] = 0x2226f, + [0x0975] = 0x22270, [0x0976] = 0x22271, [0x0977] = 0x22272, [0x0978] = 0x22329, + [0x0979] = 0x2232a, [0x097a] = 0x2235f, [0x097b] = 0x224a2, [0x097c] = 0x22530, + [0x097d] = 0x2252b, [0x097e] = 0x22761, [0x097f] = 0x22702, [0x0980] = 0x22703, + [0x0981] = 0x22704, [0x0982] = 0x22705, [0x0983] = 0x22706, [0x0984] = 0x22707, + [0x0986] = 0x22708, [0x0987] = 0x22709, [0x0988] = 0x22762, [0x0989] = 0x2270a, + [0x098a] = 0x2270b, [0x098b] = 0x2270c, [0x098c] = 0x2270d, [0x098d] = 0x2270e, + [0x098e] = 0x22763, [0x098f] = 0x22727, [0x0990] = 0x2270f, [0x0992] = 0x2271b, + [0x0993] = 0x22764, [0x0994] = 0x22710, [0x0995] = 0x22711, [0x0996] = 0x22781, + [0x0997] = 0x22712, [0x0998] = 0x22765, [0x0999] = 0x22713, [0x099a] = 0x229ce, + [0x099b] = 0x22c29, [0x099c] = 0x22bc4, [0x099d] = 0x22c2a, [0x099f] = 0x22c2b, + [0x09a0] = 0x22c2c, [0x09a1] = 0x22c2d, [0x09a2] = 0x22c2e, [0x09a3] = 0x22c2f, + [0x09a4] = 0x22c30, [0x09a5] = 0x22c31, [0x09a6] = 0x22c32, [0x09a7] = 0x22c33, + [0x09a8] = 0x22c34, [0x09aa] = 0x22c35, [0x09ab] = 0x22c36, [0x09ac] = 0x22be3, + [0x09ad] = 0x22c37, [0x09ae] = 0x22c38, [0x09af] = 0x22c39, [0x09b0] = 0x22c3a, + [0x09b1] = 0x22c3b, [0x09b2] = 0x22c4d, [0x09b3] = 0x22c3c, [0x09b4] = 0x22c3d, + [0x09b5] = 0x22c3e, [0x09b7] = 0x22ed0, [0x09b8] = 0x22ed1, [0x09b9] = 0x23055, + [0x09ba] = 0x23102, [0x09bb] = 0x23104, [0x09bc] = 0x231fc, [0x09bd] = 0x23207, + [0x09be] = 0x231fd, [0x09bf] = 0x231fe, [0x09c1] = 0x231ff, [0x09c2] = 0x23200, + [0x09c3] = 0x23208, [0x09c4] = 0x23201, [0x09c5] = 0x23202, [0x09c6] = 0x23235, + [0x09c7] = 0x23203, [0x09c8] = 0x23204, [0x09ca] = 0x2333b, [0x09cb] = 0x23389, + [0x09cc] = 0x23381, [0x09cd] = 0x23382, [0x09ce] = 0x26733, [0x09cf] = 0x234eb, + [0x09d0] = 0x234ec, [0x09d2] = 0x234ed, [0x09d3] = 0x234ee, [0x09d4] = 0x234ef, + [0x09d6] = 0x234f0, [0x09d7] = 0x234f1, [0x09d8] = 0x234f2, [0x09d9] = 0x692b, + [0x09da] = 0x234f3, [0x09db] = 0x6916, [0x09dc] = 0x234f4, [0x09dd] = 0x234f5, + [0x09de] = 0x2004b, [0x09df] = 0x234f6, [0x09e0] = 0x234f7, [0x09e1] = 0x234f8, + [0x09e2] = 0x234f9, [0x09e3] = 0x234fa, [0x09e4] = 0x234fb, [0x09e5] = 0x234fc, + [0x09e6] = 0x234fd, [0x09e7] = 0x234fe, [0x09e8] = 0x234ff, [0x09e9] = 0x23500, + [0x09ea] = 0x691b, [0x09eb] = 0x23501, [0x09ec] = 0x23502, [0x09ed] = 0x23503, + [0x09ee] = 0x23504, [0x09ef] = 0x23505, [0x09f0] = 0x23506, [0x09f1] = 0x23507, + [0x09f2] = 0x6927, [0x09f3] = 0x23508, [0x09f4] = 0x23509, [0x09f5] = 0x2350a, + [0x09f6] = 0x2350b, [0x09f7] = 0x2350c, [0x09f8] = 0x2350d, [0x09f9] = 0x238d7, + [0x09fa] = 0x238d8, [0x09fb] = 0x23a29, [0x09fc] = 0x23a9c, [0x09fd] = 0x23af8, + [0x09fe] = 0x23b98, [0x09ff] = 0x23ba4, [0x0a00] = 0x23b99, [0x0a01] = 0x23b9a, + [0x0a02] = 0x23b9b, [0x0a03] = 0x23b97, [0x0a04] = 0x23b9c, [0x0a05] = 0x6bf5, + [0x0a06] = 0x23b9d, [0x0a08] = 0x23b9e, [0x0a09] = 0x23b9f, [0x0a0a] = 0x23c65, + [0x0a0b] = 0x23dd6, [0x0a0c] = 0x3d20, [0x0a0d] = 0x23e32, [0x0a0e] = 0x23e33, + [0x0a0f] = 0x23e34, [0x0a10] = 0x6e82, [0x0a11] = 0x23e35, [0x0a12] = 0x23e36, + [0x0a13] = 0x23e37, [0x0a14] = 0x23dd7, [0x0a16] = 0x23dd8, [0x0a17] = 0x23e38, + [0x0a18] = 0x23e39, [0x0a19] = 0x23e3a, [0x0a1a] = 0x23e3b, [0x0a1b] = 0x23e3c, + [0x0a1c] = 0x23e3d, [0x0a1d] = 0x23e3e, [0x0a1e] = 0x23e3f, [0x0a1f] = 0x23e40, + [0x0a20] = 0x23dd9, [0x0a21] = 0x23e41, [0x0a22] = 0x23e42, [0x0a23] = 0x3d21, + [0x0a24] = 0x23e43, [0x0a25] = 0x23e44, [0x0a26] = 0x6e7a, [0x0a27] = 0x2427c, + [0x0a28] = 0x2427d, [0x0a29] = 0x2427e, [0x0a2a] = 0x2427f, [0x0a2b] = 0x24280, + [0x0a2c] = 0x24281, [0x0a2d] = 0x24282, [0x0a2f] = 0x24283, [0x0a30] = 0x24284, + [0x0a31] = 0x24285, [0x0a32] = 0x24286, [0x0a33] = 0x242a5, [0x0a34] = 0x24287, + [0x0a35] = 0x24288, [0x0a36] = 0x24289, [0x0a37] = 0x2428a, [0x0a38] = 0x2428b, + [0x0a39] = 0x2428c, [0x0a3a] = 0x2428d, [0x0a3b] = 0x2428e, [0x0a3e] = 0x2428f, + [0x0a40] = 0x24290, [0x0a41] = 0x24291, [0x0a42] = 0x24292, [0x0a43] = 0x24293, + [0x0a44] = 0x24294, [0x0a45] = 0x24295, [0x0a47] = 0x7129, [0x0a48] = 0x24296, + [0x0a49] = 0x24556, [0x0a4a] = 0x24557, [0x0a4b] = 0x245e1, [0x0a4c] = 0x2460e, + [0x0a4d] = 0x2460f, [0x0a4e] = 0x2467a, [0x0a4f] = 0x2467b, [0x0a50] = 0x2468b, + [0x0a51] = 0x247f2, [0x0a52] = 0x247f3, [0x0a53] = 0x24993, [0x0a54] = 0x24994, + [0x0a55] = 0x24995, [0x0a56] = 0x24996, [0x0a57] = 0x24997, [0x0a58] = 0x249ad, + [0x0a59] = 0x24998, [0x0a5a] = 0x249ab, [0x0a5b] = 0x2497b, [0x0a5c] = 0x24999, + [0x0a5d] = 0x2499a, [0x0a5e] = 0x2499b, [0x0a5f] = 0x24985, [0x0a60] = 0x2499c, + [0x0a61] = 0x2499d, [0x0a62] = 0x3eda, [0x0a64] = 0x249ac, [0x0a65] = 0x24979, + [0x0a66] = 0x2499e, [0x0a67] = 0x249a4, [0x0a68] = 0x24afd, [0x0a69] = 0x24beb, + [0x0a6a] = 0x24bea, [0x0a6b] = 0x24c8f, [0x0a6c] = 0x24c90, [0x0a6d] = 0x24c86, + [0x0a6e] = 0x24c87, [0x0a6f] = 0x24c88, [0x0a70] = 0x24dac, [0x0a71] = 0x24dad, + [0x0a72] = 0x24fec, [0x0a73] = 0x25073, [0x0a74] = 0x25074, [0x0a76] = 0x251aa, + [0x0a77] = 0x251ab, [0x0a78] = 0x251ac, [0x0a79] = 0x253d1, [0x0a7a] = 0x253d7, + [0x0a7b] = 0x254b9, [0x0a7c] = 0x254ba, [0x0a7d] = 0x254bb, [0x0a7e] = 0x254bc, + [0x0a7f] = 0x2568e, [0x0a80] = 0x2568f, [0x0a81] = 0x25690, [0x0a82] = 0x2567c, + [0x0a83] = 0x25691, [0x0a84] = 0x25692, [0x0a85] = 0x25693, [0x0a86] = 0x25694, + [0x0a88] = 0x2569a, [0x0a89] = 0x25695, [0x0a8a] = 0x25696, [0x0a8b] = 0x25697, + [0x0a8c] = 0x257bd, [0x0a8d] = 0x257c7, [0x0a8e] = 0x257be, [0x0a90] = 0x257bf, + [0x0a92] = 0x25993, [0x0a93] = 0x21a5e, [0x0a94] = 0x25a86, [0x0a95] = 0x25a87, + [0x0a96] = 0x25a88, [0x0a97] = 0x25a89, [0x0a98] = 0x25b41, [0x0a99] = 0x25b42, + [0x0a9a] = 0x25b43, [0x0a9b] = 0x25b44, [0x0a9c] = 0x25b45, [0x0a9d] = 0x25b46, + [0x0a9e] = 0x25b4a, [0x0a9f] = 0x25b47, [0x0aa0] = 0x25b48, [0x0aa1] = 0x25b49, + [0x0aa2] = 0x25e6b, [0x0aa3] = 0x25e66, [0x0aa5] = 0x25e67, [0x0aa6] = 0x7cab, + [0x0aa7] = 0x25e68, [0x0aa8] = 0x7cac, [0x0aaa] = 0x25ffd, [0x0aab] = 0x25ffe, + [0x0aac] = 0x25fff, [0x0aad] = 0x26000, [0x0aae] = 0x26001, [0x0aaf] = 0x26002, + [0x0ab0] = 0x26003, [0x0ab1] = 0x26004, [0x0ab2] = 0x26005, [0x0ab3] = 0x26006, + [0x0ab4] = 0x26233, [0x0ab5] = 0x262c2, [0x0ab6] = 0x262d0, [0x0ab8] = 0x26395, + [0x0ab9] = 0x26396, [0x0aba] = 0x26435, [0x0abb] = 0x26436, [0x0abc] = 0x26567, + [0x0abd] = 0x26568, [0x0abe] = 0x26569, [0x0abf] = 0x2656a, [0x0ac0] = 0x26572, + [0x0ac1] = 0x2656b, [0x0ac2] = 0x2656c, [0x0ac3] = 0x2656d, [0x0ac4] = 0x2656e, + [0x0ac5] = 0x2656f, [0x0ac6] = 0x26722, [0x0ac9] = 0x26723, [0x0aca] = 0x26741, + [0x0acb] = 0x26724, [0x0acc] = 0x26725, [0x0acd] = 0x26726, [0x0ace] = 0x26727, + [0x0acf] = 0x26728, [0x0ad0] = 0x26729, [0x0ad1] = 0x266b7, [0x0ad5] = 0x269da, + [0x0ad6] = 0x26acf, [0x0ad7] = 0x26ada, [0x0ad8] = 0x26c89, [0x0ad9] = 0x26cb7, + [0x0ada] = 0x26c8a, [0x0adb] = 0x26c8b, [0x0adc] = 0x26d5e, [0x0add] = 0x26c8c, + [0x0adf] = 0x26c8d, [0x0ae0] = 0x26c8e, [0x0ae1] = 0x26c8f, [0x0ae2] = 0x26c90, + [0x0ae3] = 0x26c91, [0x0ae4] = 0x26c92, [0x0ae5] = 0x26c93, [0x0ae6] = 0x26c94, + [0x0ae7] = 0x26cb6, [0x0ae8] = 0x26c95, [0x0ae9] = 0x26c96, [0x0aea] = 0x26c97, + [0x0aeb] = 0x83f7, [0x0aed] = 0x26c98, [0x0aee] = 0x26c99, [0x0aef] = 0x26c9a, + [0x0af0] = 0x44ea, [0x0af2] = 0x26c9b, [0x0af3] = 0x26cbd, [0x0af4] = 0x26c9c, + [0x0af5] = 0x26c9d, [0x0af6] = 0x26c9e, [0x0af7] = 0x26c9f, [0x0af8] = 0x26cc0, + [0x0af9] = 0x26ca0, [0x0afa] = 0x26ca1, [0x0afb] = 0x26ca2, [0x0afc] = 0x26ca3, + [0x0afd] = 0x26ca4, [0x0afe] = 0x26ca5, [0x0aff] = 0x26ca6, [0x0b00] = 0x26ca7, + [0x0b01] = 0x26ca8, [0x0b02] = 0x26ca9, [0x0b03] = 0x26caa, [0x0b05] = 0x271b4, + [0x0b06] = 0x271b5, [0x0b07] = 0x271b6, [0x0b08] = 0x272b9, [0x0b09] = 0x272ba, + [0x0b0a] = 0x272bb, [0x0b0b] = 0x27291, [0x0b0c] = 0x272bc, [0x0b0d] = 0x275ee, + [0x0b0e] = 0x275ef, [0x0b0f] = 0x27696, [0x0b10] = 0x27697, [0x0b11] = 0x27673, + [0x0b12] = 0x27698, [0x0b13] = 0x27699, [0x0b14] = 0x277ed, [0x0b15] = 0x277ee, + [0x0b16] = 0x278de, [0x0b17] = 0x279b0, [0x0b18] = 0x279b1, [0x0b19] = 0x279b2, + [0x0b1a] = 0x279b3, [0x0b1b] = 0x279b4, [0x0b1c] = 0x279b5, [0x0b1d] = 0x279b6, + [0x0b1f] = 0x279b7, [0x0b20] = 0x27be3, [0x0b21] = 0x27cb9, [0x0b22] = 0x27d55, + [0x0b23] = 0x27d7e, [0x0b24] = 0x27d56, [0x0b25] = 0x27d57, [0x0b26] = 0x27d58, + [0x0b27] = 0x27d59, [0x0b28] = 0x27d5a, [0x0b2a] = 0x27ec4, [0x0b2b] = 0x27ec5, + [0x0b2c] = 0x27ec6, [0x0b2d] = 0x27ec7, [0x0b2e] = 0x27ec8, [0x0b2f] = 0x27ec9, + [0x0b30] = 0x27eee, [0x0b31] = 0x27ecf, [0x0b32] = 0x27eca, [0x0b33] = 0x27ecb, + [0x0b34] = 0x27ecc, [0x0b35] = 0x28009, [0x0b37] = 0x28003, [0x0b38] = 0x2822f, + [0x0b39] = 0x28230, [0x0b3a] = 0x28231, [0x0b3b] = 0x28232, [0x0b3c] = 0x2850e, + [0x0b3d] = 0x2850f, [0x0b3e] = 0x28510, [0x0b3f] = 0x28511, [0x0b40] = 0x28512, + [0x0b42] = 0x28513, [0x0b43] = 0x28514, [0x0b44] = 0x28515, [0x0b45] = 0x284ff, + [0x0b46] = 0x2871f, [0x0b47] = 0x28720, [0x0b48] = 0x28721, [0x0b49] = 0x2872d, + [0x0b4b] = 0x2881b, [0x0b4c] = 0x2881c, [0x0b4d] = 0x2881d, [0x0b4e] = 0x2881e, + [0x0b4f] = 0x28953, [0x0b50] = 0x28954, [0x0b51] = 0x28955, [0x0b52] = 0x28956, + [0x0b53] = 0x28964, [0x0b54] = 0x28959, [0x0b55] = 0x28957, [0x0b57] = 0x28958, + [0x0b58] = 0x28c6b, [0x0b59] = 0x4989, [0x0b5b] = 0x28ce7, [0x0b5c] = 0x28ce8, + [0x0b5d] = 0x28ce9, [0x0b5e] = 0x28cea, [0x0b5f] = 0x28ceb, [0x0b60] = 0x28cec, + [0x0b61] = 0x9596, [0x0b62] = 0x28ced, [0x0b63] = 0x28eb1, [0x0b64] = 0x28eb4, + [0x0b66] = 0x2908a, [0x0b67] = 0x2908d, [0x0b68] = 0x2908c, [0x0b69] = 0x291f2, + [0x0b6a] = 0x291f3, [0x0b6c] = 0x22108, [0x0b6d] = 0x29417, [0x0b6e] = 0x4ab2, + [0x0b6f] = 0x2959f, [0x0b70] = 0x296a0, [0x0b72] = 0x2986d, [0x0b73] = 0x2307d, + [0x0b74] = 0x29f90, [0x0b75] = 0x2a5c4, [0x0b76] = 0x2004c, [0x0b77] = 0x20174, + [0x0b78] = 0x20175, [0x0b79] = 0x20176, [0x0b7a] = 0x20349, [0x0b7b] = 0x2034a, + [0x0b7c] = 0x2034b, [0x0b7d] = 0x2034c, [0x0b7e] = 0x2034d, [0x0b7f] = 0x2034e, + [0x0b80] = 0x2034f, [0x0b81] = 0x20350, [0x0b82] = 0x20351, [0x0b83] = 0x20352, + [0x0b84] = 0x20353, [0x0b85] = 0x20354, [0x0b86] = 0x20355, [0x0b87] = 0x20356, + [0x0b88] = 0x204a4, [0x0b89] = 0x204a9, [0x0b8a] = 0x2052a, [0x0b8b] = 0x2052b, + [0x0b8c] = 0x207b3, [0x0b8d] = 0x207c1, [0x0b8e] = 0x20898, [0x0b8f] = 0x208fb, + [0x0b90] = 0x208fc, [0x0b91] = 0x209bc, [0x0b92] = 0x20a96, [0x0b93] = 0x20b0a, + [0x0b95] = 0x20ea2, [0x0b97] = 0x20e81, [0x0b98] = 0x20e82, [0x0b99] = 0x20e83, + [0x0b9a] = 0x20e84, [0x0b9b] = 0x20e85, [0x0b9c] = 0x20e86, [0x0b9d] = 0x20e87, + [0x0b9e] = 0x20e88, [0x0b9f] = 0x20e89, [0x0ba0] = 0x20e8a, [0x0ba1] = 0x20e8b, + [0x0ba2] = 0x20e8c, [0x0ba3] = 0x55f1, [0x0ba4] = 0x20e8d, [0x0ba5] = 0x20ed1, + [0x0ba6] = 0x21214, [0x0ba7] = 0x213c9, [0x0ba8] = 0x213ca, [0x0ba9] = 0x213cb, + [0x0baa] = 0x29afd, [0x0bab] = 0x213cc, [0x0bac] = 0x213cd, [0x0bad] = 0x213ce, + [0x0bae] = 0x213cf, [0x0baf] = 0x213d0, [0x0bb0] = 0x213d1, [0x0bb1] = 0x213d2, + [0x0bb2] = 0x213d3, [0x0bb3] = 0x213d4, [0x0bb4] = 0x213d5, [0x0bb5] = 0x21571, + [0x0bb6] = 0x2004d, [0x0bb7] = 0x21662, [0x0bb8] = 0x2180e, [0x0bb9] = 0x217fe, + [0x0bba] = 0x217ff, [0x0bbb] = 0x21800, [0x0bbd] = 0x21801, [0x0bbe] = 0x21802, + [0x0bbf] = 0x21803, [0x0bc0] = 0x21815, [0x0bc1] = 0x21804, [0x0bc2] = 0x21805, + [0x0bc4] = 0x21987, [0x0bc5] = 0x21989, [0x0bc6] = 0x21a6e, [0x0bc7] = 0x21a6f, + [0x0bc8] = 0x21a70, [0x0bc9] = 0x21a71, [0x0bcb] = 0x21a72, [0x0bcc] = 0x21a73, + [0x0bcd] = 0x21a74, [0x0bce] = 0x21b9d, [0x0bcf] = 0x21cb8, [0x0bd0] = 0x21cb9, + [0x0bd1] = 0x21cba, [0x0bd2] = 0x21ec2, [0x0bd3] = 0x21ec3, [0x0bd4] = 0x21ed5, + [0x0bd5] = 0x21ec4, [0x0bd6] = 0x21ec0, [0x0bd7] = 0x21ec5, [0x0bd8] = 0x21ec6, + [0x0bd9] = 0x2228a, [0x0bda] = 0x2228b, [0x0bdb] = 0x2228c, [0x0bdc] = 0x22364, + [0x0bdd] = 0x25b8c, [0x0bde] = 0x5f41, [0x0bdf] = 0x2240d, [0x0be0] = 0x224a8, + [0x0be1] = 0x2253b, [0x0be2] = 0x2253c, [0x0be3] = 0x2253d, [0x0be4] = 0x2253e, + [0x0be5] = 0x2253f, [0x0be6] = 0x22540, [0x0be7] = 0x22766, [0x0be8] = 0x227cb, + [0x0be9] = 0x227b7, [0x0bea] = 0x227b8, [0x0beb] = 0x227b9, [0x0bec] = 0x227ba, + [0x0bed] = 0x22767, [0x0bee] = 0x227bb, [0x0bef] = 0x22768, [0x0bf0] = 0x22769, + [0x0bf1] = 0x2276a, [0x0bf2] = 0x227bc, [0x0bf4] = 0x229db, [0x0bf5] = 0x22c81, + [0x0bf6] = 0x22c82, [0x0bf7] = 0x22c83, [0x0bf8] = 0x22c84, [0x0bf9] = 0x22c85, + [0x0bfa] = 0x22c86, [0x0bfb] = 0x22c87, [0x0bfc] = 0x22c88, [0x0bfd] = 0x22c89, + [0x0bff] = 0x22c8a, [0x0c00] = 0x22c8b, [0x0c02] = 0x22c8c, [0x0c03] = 0x22c8d, + [0x0c04] = 0x22c8e, [0x0c05] = 0x22c8f, [0x0c06] = 0x22c90, [0x0c07] = 0x22ca1, + [0x0c08] = 0x22c91, [0x0c09] = 0x22ed6, [0x0c0a] = 0x22f9f, [0x0c0b] = 0x23058, + [0x0c0c] = 0x23085, [0x0c0d] = 0x2310b, [0x0c0e] = 0x2310c, [0x0c0f] = 0x23237, + [0x0c10] = 0x23238, [0x0c12] = 0x23239, [0x0c13] = 0x2323a, [0x0c14] = 0x2323b, + [0x0c15] = 0x2323c, [0x0c16] = 0x2323d, [0x0c17] = 0x2323e, [0x0c18] = 0x23240, + [0x0c19] = 0x23241, [0x0c1a] = 0x23242, [0x0c1c] = 0x23243, [0x0c1d] = 0x2338a, + [0x0c1e] = 0x2338b, [0x0c1f] = 0x23590, [0x0c20] = 0x23559, [0x0c21] = 0x2355b, + [0x0c22] = 0x2355c, [0x0c23] = 0x2355d, [0x0c24] = 0x2355e, [0x0c25] = 0x698a, + [0x0c26] = 0x2355f, [0x0c27] = 0x23560, [0x0c28] = 0x23561, [0x0c29] = 0x23562, + [0x0c2a] = 0x23563, [0x0c2b] = 0x23564, [0x0c2c] = 0x23593, [0x0c2d] = 0x23565, + [0x0c2e] = 0x23566, [0x0c2f] = 0x23567, [0x0c30] = 0x23568, [0x0c31] = 0x23569, + [0x0c32] = 0x2356a, [0x0c33] = 0x2356b, [0x0c34] = 0x23595, [0x0c35] = 0x2356c, + [0x0c36] = 0x2356d, [0x0c37] = 0x2356e, [0x0c38] = 0x2356f, [0x0c39] = 0x698c, + [0x0c3a] = 0x23570, [0x0c3b] = 0x23571, [0x0c3c] = 0x23572, [0x0c3d] = 0x23573, + [0x0c3e] = 0x23574, [0x0c3f] = 0x23575, [0x0c40] = 0x23576, [0x0c41] = 0x23577, + [0x0c42] = 0x23578, [0x0c43] = 0x23579, [0x0c44] = 0x6980, [0x0c45] = 0x2357a, + [0x0c46] = 0x697f, [0x0c47] = 0x2357b, [0x0c48] = 0x235a9, [0x0c49] = 0x2357c, + [0x0c4a] = 0x238f1, [0x0c4b] = 0x238eb, [0x0c4c] = 0x2398a, [0x0c4d] = 0x23a3d, + [0x0c4e] = 0x23aa6, [0x0c4f] = 0x23aa7, [0x0c50] = 0x23bba, [0x0c52] = 0x23bbb, + [0x0c53] = 0x23bbc, [0x0c54] = 0x23bbd, [0x0c55] = 0x23e91, [0x0c56] = 0x23e92, + [0x0c57] = 0x23e93, [0x0c58] = 0x23e94, [0x0c59] = 0x23e95, [0x0c5a] = 0x23e96, + [0x0c5b] = 0x23e97, [0x0c5c] = 0x23dda, [0x0c5d] = 0x23e98, [0x0c5e] = 0x23e99, + [0x0c5f] = 0x23e9a, [0x0c62] = 0x23e9b, [0x0c63] = 0x23e9c, [0x0c64] = 0x23e9d, + [0x0c65] = 0x23e9e, [0x0c66] = 0x23e9f, [0x0c67] = 0x23ea0, [0x0c68] = 0x23ebf, + [0x0c69] = 0x23ea1, [0x0c6a] = 0x23ea2, [0x0c6b] = 0x23ea3, [0x0c6c] = 0x23ea4, + [0x0c6d] = 0x23ea5, [0x0c6e] = 0x23ea6, [0x0c6f] = 0x23ea7, [0x0c70] = 0x23e5b, + [0x0c72] = 0x23ea8, [0x0c73] = 0x242cb, [0x0c75] = 0x3dda, [0x0c76] = 0x242cc, + [0x0c77] = 0x2434f, [0x0c78] = 0x242cd, [0x0c79] = 0x242ce, [0x0c7a] = 0x242cf, + [0x0c7b] = 0x2434e, [0x0c7c] = 0x242d0, [0x0c7d] = 0x242d1, [0x0c7e] = 0x242d2, + [0x0c80] = 0x242d3, [0x0c81] = 0x242d4, [0x0c82] = 0x242d5, [0x0c83] = 0x242d6, + [0x0c84] = 0x242d7, [0x0c85] = 0x242d8, [0x0c86] = 0x242d9, [0x0c87] = 0x242fa, + [0x0c88] = 0x242da, [0x0c89] = 0x242db, [0x0c8b] = 0x242dc, [0x0c8e] = 0x242dd, + [0x0c8f] = 0x242de, [0x0c90] = 0x242df, [0x0c91] = 0x242e0, [0x0c92] = 0x242e1, + [0x0c93] = 0x242e2, [0x0c94] = 0x242e3, [0x0c95] = 0x242e4, [0x0c96] = 0x242e5, + [0x0c97] = 0x3ddb, [0x0c98] = 0x242e6, [0x0c99] = 0x242e7, [0x0c9a] = 0x2458e, + [0x0c9b] = 0x24698, [0x0c9c] = 0x24699, [0x0c9e] = 0x2480a, [0x0ca0] = 0x24826, + [0x0ca1] = 0x24827, [0x0ca2] = 0x249bd, [0x0ca3] = 0x249df, [0x0ca4] = 0x3ee2, + [0x0ca5] = 0x249be, [0x0ca6] = 0x249de, [0x0ca7] = 0x249bf, [0x0ca8] = 0x249c0, + [0x0ca9] = 0x249c1, [0x0caa] = 0x249c2, [0x0cab] = 0x2499f, [0x0cac] = 0x249c3, + [0x0cad] = 0x249c4, [0x0cae] = 0x249c5, [0x0caf] = 0x249c6, [0x0cb0] = 0x249c7, + [0x0cb1] = 0x3ee3, [0x0cb2] = 0x249c8, [0x0cb3] = 0x249c9, [0x0cb4] = 0x249e3, + [0x0cb5] = 0x249ca, [0x0cb6] = 0x249cb, [0x0cb7] = 0x249cc, [0x0cb8] = 0x249cd, + [0x0cb9] = 0x249ce, [0x0cba] = 0x249cf, [0x0cbb] = 0x249d0, [0x0cbc] = 0x249d1, + [0x0cbd] = 0x249d2, [0x0cbe] = 0x249d3, [0x0cc0] = 0x249d4, [0x0cc1] = 0x24b04, + [0x0cc2] = 0x24b65, [0x0cc3] = 0x24bee, [0x0cc4] = 0x24ca0, [0x0cc5] = 0x24ca1, + [0x0cc6] = 0x24ddd, [0x0cc7] = 0x24dde, [0x0cc8] = 0x24f83, [0x0cc9] = 0x24ffa, + [0x0cca] = 0x2507f, [0x0ccb] = 0x25080, [0x0ccc] = 0x251e8, [0x0ccd] = 0x251e9, + [0x0cce] = 0x251ea, [0x0ccf] = 0x235a6, [0x0cd0] = 0x253e1, [0x0cd2] = 0x254db, + [0x0cd3] = 0x254dc, [0x0cd4] = 0x254dd, [0x0cd5] = 0x254de, [0x0cd6] = 0x254df, + [0x0cd7] = 0x254e0, [0x0cd8] = 0x254e1, [0x0cd9] = 0x254e2, [0x0cda] = 0x254e3, + [0x0cdb] = 0x254e4, [0x0cdc] = 0x254e5, [0x0cdd] = 0x254e6, [0x0cde] = 0x789c, + [0x0cdf] = 0x254e7, [0x0ce0] = 0x256b0, [0x0ce1] = 0x25698, [0x0ce2] = 0x256b1, + [0x0ce3] = 0x25699, [0x0ce4] = 0x256b2, [0x0ce5] = 0x256b3, [0x0ce6] = 0x256b4, + [0x0ce7] = 0x256b5, [0x0ce8] = 0x256b6, [0x0ce9] = 0x256b7, [0x0cea] = 0x256b8, + [0x0ceb] = 0x256b9, [0x0cec] = 0x257e2, [0x0ced] = 0x257e3, [0x0cee] = 0x257e4, + [0x0cef] = 0x257e5, [0x0cf0] = 0x257e6, [0x0cf1] = 0x257e7, [0x0cf2] = 0x257e8, + [0x0cf3] = 0x257e9, [0x0cf4] = 0x259ad, [0x0cf5] = 0x259cf, [0x0cf6] = 0x259ae, + [0x0cf7] = 0x259af, [0x0cf8] = 0x259b0, [0x0cf9] = 0x259b1, [0x0cfa] = 0x25a92, + [0x0cfb] = 0x25a93, [0x0cfc] = 0x25a94, [0x0cfd] = 0x25b79, [0x0cfe] = 0x7b7b, + [0x0cff] = 0x25b7a, [0x0d00] = 0x25b7b, [0x0d01] = 0x25b7c, [0x0d02] = 0x25b7d, + [0x0d03] = 0x25b7e, [0x0d04] = 0x25b7f, [0x0d05] = 0x25b80, [0x0d06] = 0x25b81, + [0x0d07] = 0x25b82, [0x0d08] = 0x25b83, [0x0d09] = 0x25b84, [0x0d0a] = 0x25e97, + [0x0d0b] = 0x25e84, [0x0d0c] = 0x25e85, [0x0d0d] = 0x25e89, [0x0d0e] = 0x25e86, + [0x0d0f] = 0x25e87, [0x0d10] = 0x2602c, [0x0d11] = 0x2602d, [0x0d12] = 0x2602e, + [0x0d13] = 0x2602f, [0x0d14] = 0x26030, [0x0d15] = 0x26031, [0x0d16] = 0x26032, + [0x0d17] = 0x26033, [0x0d18] = 0x26034, [0x0d19] = 0x26035, [0x0d1a] = 0x26036, + [0x0d1b] = 0x26037, [0x0d1c] = 0x262d2, [0x0d1d] = 0x26444, [0x0d1e] = 0x26500, + [0x0d1f] = 0x26583, [0x0d20] = 0x26584, [0x0d22] = 0x2677a, [0x0d23] = 0x2677b, + [0x0d24] = 0x2677c, [0x0d25] = 0x2677d, [0x0d26] = 0x2677e, [0x0d28] = 0x2677f, + [0x0d29] = 0x26787, [0x0d2a] = 0x26780, [0x0d2b] = 0x26a43, [0x0d2c] = 0x26d34, + [0x0d2e] = 0x26d35, [0x0d2f] = 0x26d36, [0x0d30] = 0x26d37, [0x0d31] = 0x26d38, + [0x0d32] = 0x26d39, [0x0d33] = 0x26d3a, [0x0d34] = 0x26d3b, [0x0d35] = 0x26d3c, + [0x0d36] = 0x26d3d, [0x0d37] = 0x26d3e, [0x0d38] = 0x26d3f, [0x0d39] = 0x26d40, + [0x0d3a] = 0x26d41, [0x0d3b] = 0x26d42, [0x0d3c] = 0x26d43, [0x0d3d] = 0x26d44, + [0x0d3e] = 0x26d45, [0x0d3f] = 0x26d46, [0x0d40] = 0x26d47, [0x0d41] = 0x26d48, + [0x0d42] = 0x26d49, [0x0d43] = 0x26d4a, [0x0d45] = 0x26d4b, [0x0d46] = 0x26d4c, + [0x0d47] = 0x26d4d, [0x0d48] = 0x26d4e, [0x0d49] = 0x272e7, [0x0d4a] = 0x272e8, + [0x0d4b] = 0x272e9, [0x0d4c] = 0x272ea, [0x0d4d] = 0x272eb, [0x0d4e] = 0x272ec, + [0x0d4f] = 0x272ed, [0x0d50] = 0x272ee, [0x0d51] = 0x275f7, [0x0d52] = 0x2769a, + [0x0d53] = 0x276cd, [0x0d55] = 0x276a3, [0x0d56] = 0x276ce, [0x0d57] = 0x27831, + [0x0d58] = 0x27832, [0x0d59] = 0x27833, [0x0d5a] = 0x279e4, [0x0d5c] = 0x279e5, + [0x0d5d] = 0x279e6, [0x0d5e] = 0x27cc8, [0x0d5f] = 0x27d74, [0x0d60] = 0x27d75, + [0x0d61] = 0x27d76, [0x0d62] = 0x27d77, [0x0d63] = 0x27d78, [0x0d64] = 0x27d79, + [0x0d65] = 0x27d7a, [0x0d66] = 0x27e61, [0x0d67] = 0x27edf, [0x0d68] = 0x27ee0, + [0x0d69] = 0x27ee1, [0x0d6a] = 0x27ee2, [0x0d6b] = 0x27ee3, [0x0d6c] = 0x27ee4, + [0x0d6d] = 0x27ee5, [0x0d6e] = 0x27ee6, [0x0d6f] = 0x47f3, [0x0d70] = 0x28031, + [0x0d71] = 0x2823d, [0x0d72] = 0x2823e, [0x0d73] = 0x2823f, [0x0d74] = 0x282f4, + [0x0d75] = 0x282f5, [0x0d76] = 0x282f6, [0x0d78] = 0x28417, [0x0d79] = 0x28541, + [0x0d7a] = 0x28542, [0x0d7b] = 0x28543, [0x0d7c] = 0x28544, [0x0d7d] = 0x28545, + [0x0d7e] = 0x28546, [0x0d7f] = 0x28547, [0x0d80] = 0x28548, [0x0d81] = 0x28549, + [0x0d82] = 0x2854a, [0x0d83] = 0x2854b, [0x0d84] = 0x90d2, [0x0d85] = 0x286ba, + [0x0d86] = 0x28744, [0x0d87] = 0x2892a, [0x0d88] = 0x2896d, [0x0d8b] = 0x2897e, + [0x0d8c] = 0x2896e, [0x0d8d] = 0x2896f, [0x0d8e] = 0x28970, [0x0d8f] = 0x28971, + [0x0d90] = 0x28976, [0x0d91] = 0x28c79, [0x0d92] = 0x95a0, [0x0d94] = 0x28d04, + [0x0d95] = 0x28cf8, [0x0d96] = 0x28d05, [0x0d97] = 0x28eda, [0x0d98] = 0x28edb, + [0x0d99] = 0x28edc, [0x0d9a] = 0x28edd, [0x0d9b] = 0x28ede, [0x0d9c] = 0x28edf, + [0x0d9d] = 0x28ee0, [0x0d9e] = 0x28ee1, [0x0d9f] = 0x290c5, [0x0da0] = 0x2909a, + [0x0da1] = 0x2909b, [0x0da2] = 0x2909c, [0x0da3] = 0x291d8, [0x0da4] = 0x291d9, + [0x0da5] = 0x291da, [0x0da6] = 0x2926e, [0x0da7] = 0x4a57, [0x0da8] = 0x2946b, + [0x0da9] = 0x27d83, [0x0dab] = 0x296d6, [0x0dac] = 0x296bd, [0x0dae] = 0x2322e, + [0x0daf] = 0x29afc, [0x0db0] = 0x29d53, [0x0db1] = 0x29db7, [0x0db2] = 0x2a28c, + [0x0db3] = 0x2a38e, [0x0db4] = 0x2a2ff, [0x0db5] = 0x20076, [0x0db6] = 0x20106, + [0x0db7] = 0x2017e, [0x0db8] = 0x20384, [0x0db9] = 0x20385, [0x0dba] = 0x20386, + [0x0dbb] = 0x20387, [0x0dbc] = 0x20388, [0x0dbd] = 0x203a7, [0x0dbe] = 0x20389, + [0x0dbf] = 0x2038a, [0x0dc0] = 0x2038b, [0x0dc1] = 0x2038c, [0x0dc2] = 0x2038d, + [0x0dc3] = 0x2038e, [0x0dc4] = 0x2038f, [0x0dc5] = 0x203a3, [0x0dc6] = 0x20390, + [0x0dc7] = 0x20391, [0x0dc8] = 0x20392, [0x0dc9] = 0x20393, [0x0dca] = 0x203ac, + [0x0dcb] = 0x20394, [0x0dcc] = 0x20395, [0x0dcd] = 0x20396, [0x0dce] = 0x204aa, + [0x0dcf] = 0x204ab, [0x0dd0] = 0x2059e, [0x0dd1] = 0x51a9, [0x0dd2] = 0x20608, + [0x0dd3] = 0x20609, [0x0dd4] = 0x20668, [0x0dd5] = 0x20669, [0x0dd6] = 0x2066a, + [0x0dd7] = 0x2069a, [0x0dd8] = 0x207d9, [0x0dd9] = 0x207da, [0x0dda] = 0x207db, + [0x0ddb] = 0x208a8, [0x0ddc] = 0x20901, [0x0ddd] = 0x20928, [0x0dde] = 0x20977, + [0x0ddf] = 0x209bd, [0x0de0] = 0x209be, [0x0de1] = 0x20f60, [0x0de2] = 0x20aa0, + [0x0de3] = 0x20aa2, [0x0de4] = 0x20b0f, [0x0de5] = 0x20b85, [0x0de6] = 0x20efe, + [0x0de7] = 0x20eff, [0x0de8] = 0x20f00, [0x0de9] = 0x20f01, [0x0dea] = 0x20f16, + [0x0deb] = 0x20f02, [0x0dec] = 0x20f03, [0x0ded] = 0x20f04, [0x0dee] = 0x20f05, + [0x0def] = 0x20f06, [0x0df0] = 0x20f07, [0x0df1] = 0x20f08, [0x0df2] = 0x20f22, + [0x0df3] = 0x20f09, [0x0df4] = 0x20f0a, [0x0df5] = 0x20f0b, [0x0df6] = 0x20f0c, + [0x0df7] = 0x20f14, [0x0df8] = 0x20f29, [0x0df9] = 0x20e6e, [0x0dfa] = 0x20f0d, + [0x0dfb] = 0x20f0e, [0x0dfc] = 0x20f0f, [0x0dfd] = 0x20f10, [0x0dfe] = 0x20f11, + [0x0dff] = 0x20f12, [0x0e00] = 0x20f13, [0x0e01] = 0x2121b, [0x0e02] = 0x2121c, + [0x0e03] = 0x2121d, [0x0e04] = 0x21413, [0x0e05] = 0x213ff, [0x0e06] = 0x21400, + [0x0e07] = 0x21401, [0x0e08] = 0x21402, [0x0e09] = 0x21403, [0x0e0a] = 0x21404, + [0x0e0b] = 0x2140a, [0x0e0c] = 0x21405, [0x0e0d] = 0x21406, [0x0e0e] = 0x21407, + [0x0e0f] = 0x21408, [0x0e10] = 0x2153a, [0x0e11] = 0x21573, [0x0e12] = 0x2166f, + [0x0e13] = 0x21670, [0x0e14] = 0x21671, [0x0e15] = 0x20052, [0x0e17] = 0x21a9a, + [0x0e18] = 0x21860, [0x0e1a] = 0x2182b, [0x0e1b] = 0x21824, [0x0e1c] = 0x2182c, + [0x0e1d] = 0x2182d, [0x0e1e] = 0x2182e, [0x0e1f] = 0x2182f, [0x0e20] = 0x21830, + [0x0e21] = 0x21831, [0x0e22] = 0x21832, [0x0e23] = 0x21833, [0x0e24] = 0x21834, + [0x0e25] = 0x21835, [0x0e26] = 0x21845, [0x0e27] = 0x21836, [0x0e28] = 0x21992, + [0x0e29] = 0x21993, [0x0e2a] = 0x21a88, [0x0e2b] = 0x21a89, [0x0e2c] = 0x21a8a, + [0x0e2d] = 0x21a8b, [0x0e2e] = 0x21b3f, [0x0e30] = 0x21cca, [0x0e31] = 0x21ef6, + [0x0e32] = 0x21ef7, [0x0e33] = 0x21ef8, [0x0e34] = 0x21ef9, [0x0e35] = 0x2212b, + [0x0e37] = 0x221a4, [0x0e38] = 0x221ce, [0x0e3a] = 0x2229e, [0x0e3b] = 0x2229f, + [0x0e3c] = 0x222a0, [0x0e3d] = 0x222a1, [0x0e3e] = 0x222a2, [0x0e3f] = 0x222a3, + [0x0e40] = 0x222a4, [0x0e41] = 0x222a5, [0x0e42] = 0x222a6, [0x0e43] = 0x22418, + [0x0e44] = 0x22560, [0x0e45] = 0x22561, [0x0e46] = 0x22562, [0x0e47] = 0x22563, + [0x0e48] = 0x22564, [0x0e49] = 0x227bd, [0x0e4a] = 0x227be, [0x0e4b] = 0x2280b, + [0x0e4c] = 0x227bf, [0x0e4d] = 0x227c0, [0x0e4f] = 0x2280c, [0x0e50] = 0x2278d, + [0x0e51] = 0x2280d, [0x0e52] = 0x2280e, [0x0e53] = 0x2285e, [0x0e54] = 0x2280f, + [0x0e55] = 0x22810, [0x0e56] = 0x227c1, [0x0e57] = 0x22811, [0x0e59] = 0x227c2, + [0x0e5a] = 0x229ea, [0x0e5b] = 0x229eb, [0x0e5c] = 0x22ce3, [0x0e5d] = 0x22ce4, + [0x0e5e] = 0x22ce5, [0x0e5f] = 0x22ce6, [0x0e60] = 0x22ce7, [0x0e61] = 0x22c92, + [0x0e62] = 0x22d4a, [0x0e64] = 0x22ce8, [0x0e65] = 0x22ce9, [0x0e66] = 0x22cea, + [0x0e67] = 0x22d01, [0x0e68] = 0x22ceb, [0x0e69] = 0x22cec, [0x0e6a] = 0x22cef, + [0x0e6b] = 0x22ced, [0x0e6c] = 0x22cee, [0x0e6d] = 0x22cf0, [0x0e6e] = 0x22cf1, + [0x0e6f] = 0x22cf2, [0x0e70] = 0x22cf3, [0x0e71] = 0x22cf4, [0x0e72] = 0x22cf5, + [0x0e73] = 0x22cf6, [0x0e74] = 0x22cf7, [0x0e75] = 0x22cf8, [0x0e76] = 0x22cf9, + [0x0e77] = 0x22cfe, [0x0e78] = 0x22cfa, [0x0e79] = 0x22cfb, [0x0e7a] = 0x22cfc, + [0x0e7b] = 0x23263, [0x0e7c] = 0x23264, [0x0e7d] = 0x23265, [0x0e7e] = 0x23266, + [0x0e7f] = 0x23267, [0x0e80] = 0x23268, [0x0e81] = 0x2360b, [0x0e82] = 0x2360d, + [0x0e83] = 0x3bbc, [0x0e84] = 0x2360e, [0x0e85] = 0x2360f, [0x0e86] = 0x3ba4, + [0x0e87] = 0x23614, [0x0e88] = 0x235d4, [0x0e89] = 0x235d5, [0x0e8a] = 0x235d6, + [0x0e8b] = 0x235d7, [0x0e8c] = 0x235d8, [0x0e8d] = 0x235d9, [0x0e8e] = 0x235da, + [0x0e8f] = 0x235db, [0x0e90] = 0x235dc, [0x0e91] = 0x235dd, [0x0e92] = 0x235de, + [0x0e93] = 0x235df, [0x0e94] = 0x235e0, [0x0e95] = 0x235e1, [0x0e96] = 0x235e2, + [0x0e97] = 0x235e3, [0x0e98] = 0x235e4, [0x0e99] = 0x235e5, [0x0e9a] = 0x235e6, + [0x0e9b] = 0x235e7, [0x0e9c] = 0x235e8, [0x0e9d] = 0x235e9, [0x0e9e] = 0x235ea, + [0x0e9f] = 0x235eb, [0x0ea0] = 0x235ec, [0x0ea1] = 0x236ec, [0x0ea2] = 0x235ed, + [0x0ea3] = 0x235ee, [0x0ea4] = 0x235ef, [0x0ea5] = 0x23600, [0x0ea6] = 0x235f0, + [0x0ea7] = 0x23904, [0x0ea9] = 0x23905, [0x0eab] = 0x23ab5, [0x0ead] = 0x23bd6, + [0x0eae] = 0x23bd7, [0x0eaf] = 0x23bd8, [0x0eb0] = 0x23bd9, [0x0eb1] = 0x23ea9, + [0x0eb2] = 0x23f00, [0x0eb3] = 0x23f01, [0x0eb4] = 0x23f02, [0x0eb5] = 0x23f03, + [0x0eb6] = 0x23f04, [0x0eb7] = 0x23f05, [0x0eb8] = 0x23f06, [0x0eb9] = 0x23f3f, + [0x0eba] = 0x23f07, [0x0ebb] = 0x23f08, [0x0ebc] = 0x23f09, [0x0ebd] = 0x23f0a, + [0x0ebe] = 0x23eb6, [0x0ebf] = 0x23f0b, [0x0ec0] = 0x23f0c, [0x0ec3] = 0x23f0d, + [0x0ec5] = 0x23f0e, [0x0ec6] = 0x23f0f, [0x0ec7] = 0x23f10, [0x0ec8] = 0x23f11, + [0x0ec9] = 0x23f12, [0x0eca] = 0x23f35, [0x0ecb] = 0x23f13, [0x0ecc] = 0x23f14, + [0x0ecd] = 0x23eaa, [0x0ecf] = 0x23fc1, [0x0ed0] = 0x23f15, [0x0ed1] = 0x23f16, + [0x0ed2] = 0x23f17, [0x0ed3] = 0x2431e, [0x0ed4] = 0x2431f, [0x0ed5] = 0x24320, + [0x0ed6] = 0x24321, [0x0ed8] = 0x24322, [0x0ed9] = 0x24323, [0x0eda] = 0x7195, + [0x0edb] = 0x24324, [0x0edc] = 0x24325, [0x0edd] = 0x24326, [0x0ede] = 0x24327, + [0x0edf] = 0x24328, [0x0ee0] = 0x24329, [0x0ee1] = 0x2432a, [0x0ee2] = 0x2432b, + [0x0ee3] = 0x24307, [0x0ee4] = 0x2432c, [0x0ee5] = 0x2432d, [0x0ee6] = 0x2432e, + [0x0ee7] = 0x3de8, [0x0ee9] = 0x2432f, [0x0eea] = 0x24330, [0x0eeb] = 0x24348, + [0x0eec] = 0x24331, [0x0eed] = 0x24332, [0x0eee] = 0x7198, [0x0eef] = 0x24333, + [0x0ef1] = 0x24334, [0x0ef2] = 0x24335, [0x0ef3] = 0x24336, [0x0ef4] = 0x24559, + [0x0ef5] = 0x24591, [0x0ef6] = 0x245e7, [0x0ef7] = 0x246b8, [0x0ef8] = 0x246b9, + [0x0ef9] = 0x246ba, [0x0efa] = 0x246bb, [0x0efb] = 0x246c8, [0x0efc] = 0x2484d, + [0x0efd] = 0x24889, [0x0efe] = 0x24850, [0x0eff] = 0x24828, [0x0f00] = 0x249fb, + [0x0f01] = 0x249fc, [0x0f02] = 0x249fd, [0x0f03] = 0x249fe, [0x0f04] = 0x249ff, + [0x0f05] = 0x7478, [0x0f06] = 0x24a00, [0x0f07] = 0x24a01, [0x0f08] = 0x24a02, + [0x0f09] = 0x249e4, [0x0f0a] = 0x249e5, [0x0f0b] = 0x24a03, [0x0f0c] = 0x24a04, + [0x0f0d] = 0x24a05, [0x0f0e] = 0x24a06, [0x0f0f] = 0x24a07, [0x0f10] = 0x24a13, + [0x0f11] = 0x24a08, [0x0f12] = 0x24a09, [0x0f13] = 0x249e6, [0x0f14] = 0x24a0a, + [0x0f15] = 0x24a0b, [0x0f16] = 0x24a0c, [0x0f17] = 0x24b0b, [0x0f18] = 0x24bf4, + [0x0f19] = 0x24c0a, [0x0f1a] = 0x24cb1, [0x0f1b] = 0x24e1d, [0x0f1d] = 0x24f8b, + [0x0f1e] = 0x24f8c, [0x0f1f] = 0x24f8f, [0x0f20] = 0x24f8d, [0x0f21] = 0x24f8e, + [0x0f22] = 0x25006, [0x0f23] = 0x25086, [0x0f24] = 0x25222, [0x0f25] = 0x25223, + [0x0f26] = 0x25224, [0x0f27] = 0x25225, [0x0f28] = 0x25226, [0x0f29] = 0x25227, + [0x0f2a] = 0x25228, [0x0f2b] = 0x253f1, [0x0f2c] = 0x78b9, [0x0f2d] = 0x25523, + [0x0f2e] = 0x25512, [0x0f30] = 0x25513, [0x0f31] = 0x25514, [0x0f32] = 0x25515, + [0x0f33] = 0x25516, [0x0f34] = 0x25517, [0x0f35] = 0x25518, [0x0f36] = 0x25519, + [0x0f37] = 0x2554b, [0x0f38] = 0x2551a, [0x0f39] = 0x2551b, [0x0f3a] = 0x2551c, + [0x0f3c] = 0x2551d, [0x0f3d] = 0x2551e, [0x0f3e] = 0x2551f, [0x0f3f] = 0x25520, + [0x0f40] = 0x256ca, [0x0f41] = 0x222ac, [0x0f42] = 0x256cb, [0x0f43] = 0x256cc, + [0x0f44] = 0x256cd, [0x0f45] = 0x256ce, [0x0f47] = 0x256cf, [0x0f48] = 0x25810, + [0x0f49] = 0x25811, [0x0f4a] = 0x25812, [0x0f4b] = 0x25813, [0x0f4c] = 0x25814, + [0x0f4d] = 0x2580f, [0x0f4e] = 0x25815, [0x0f4f] = 0x25816, [0x0f50] = 0x25817, + [0x0f51] = 0x7a33, [0x0f52] = 0x25818, [0x0f53] = 0x259c6, [0x0f54] = 0x25a9f, + [0x0f55] = 0x25aa0, [0x0f56] = 0x25aa4, [0x0f57] = 0x25aa1, [0x0f58] = 0x25bb5, + [0x0f59] = 0x25bb6, [0x0f5a] = 0x25bb7, [0x0f5b] = 0x25bb8, [0x0f5c] = 0x25bb9, + [0x0f5d] = 0x25bba, [0x0f5e] = 0x25bd0, [0x0f5f] = 0x25bc6, [0x0f60] = 0x25bbb, + [0x0f61] = 0x25bbc, [0x0f62] = 0x25bbd, [0x0f63] = 0x25bbe, [0x0f64] = 0x25bbf, + [0x0f65] = 0x25bc0, [0x0f66] = 0x25bc1, [0x0f67] = 0x25bc2, [0x0f69] = 0x25ea7, + [0x0f6a] = 0x25ea8, [0x0f6b] = 0x25ea9, [0x0f6c] = 0x25eaa, [0x0f6d] = 0x25eab, + [0x0f6e] = 0x25eac, [0x0f6f] = 0x25ebc, [0x0f70] = 0x25ead, [0x0f71] = 0x25eae, + [0x0f72] = 0x7cc0, [0x0f73] = 0x25eaf, [0x0f74] = 0x25eb0, [0x0f75] = 0x25eb1, + [0x0f76] = 0x7cc1, [0x0f77] = 0x25eb4, [0x0f78] = 0x25eb2, [0x0f79] = 0x26066, + [0x0f7a] = 0x26067, [0x0f7b] = 0x26068, [0x0f7c] = 0x26069, [0x0f7d] = 0x2606a, + [0x0f7e] = 0x2606b, [0x0f7f] = 0x2606c, [0x0f80] = 0x2606d, [0x0f81] = 0x2606e, + [0x0f82] = 0x2606f, [0x0f84] = 0x2623e, [0x0f85] = 0x2623f, [0x0f86] = 0x26240, + [0x0f87] = 0x262e8, [0x0f88] = 0x26452, [0x0f89] = 0x26453, [0x0f8a] = 0x26454, + [0x0f8b] = 0x26455, [0x0f8c] = 0x26591, [0x0f8d] = 0x26592, [0x0f8e] = 0x26593, + [0x0f8f] = 0x26594, [0x0f90] = 0x26595, [0x0f91] = 0x26596, [0x0f92] = 0x26597, + [0x0f93] = 0x26598, [0x0f95] = 0x26599, [0x0f96] = 0x2659a, [0x0f97] = 0x2659b, + [0x0f98] = 0x267b7, [0x0f99] = 0x267b8, [0x0f9a] = 0x267b9, [0x0f9c] = 0x267ba, + [0x0f9d] = 0x267bb, [0x0f9e] = 0x267bd, [0x0fa0] = 0x267bc, [0x0fa3] = 0x268eb, + [0x0fa4] = 0x268ec, [0x0fa5] = 0x26916, [0x0fa6] = 0x26944, [0x0fa7] = 0x269e3, + [0x0fa8] = 0x26a58, [0x0fa9] = 0x26a53, [0x0faa] = 0x26a54, [0x0fab] = 0x26ae0, + [0x0fac] = 0x26db1, [0x0fad] = 0x26db2, [0x0fae] = 0x26db3, [0x0faf] = 0x26dea, + [0x0fb1] = 0x26db4, [0x0fb2] = 0x26df0, [0x0fb3] = 0x26db5, [0x0fb4] = 0x26db6, + [0x0fb5] = 0x26db7, [0x0fb6] = 0x26db8, [0x0fb7] = 0x26db9, [0x0fb8] = 0x26dba, + [0x0fb9] = 0x26dbb, [0x0fba] = 0x26dbc, [0x0fbb] = 0x26dbd, [0x0fbc] = 0x26dbe, + [0x0fbd] = 0x26dbf, [0x0fbe] = 0x26dc0, [0x0fbf] = 0x26dc1, [0x0fc0] = 0x26dc2, + [0x0fc1] = 0x26dc3, [0x0fc3] = 0x26dc4, [0x0fc4] = 0x26dc5, [0x0fc5] = 0x26dc6, + [0x0fc6] = 0x26dfc, [0x0fc7] = 0x26dc7, [0x0fc8] = 0x26dc8, [0x0fc9] = 0x26dc9, + [0x0fca] = 0x26dca, [0x0fcb] = 0x26dcb, [0x0fcc] = 0x26dcc, [0x0fcd] = 0x26e84, + [0x0fce] = 0x26dcd, [0x0fcf] = 0x26dce, [0x0fd0] = 0x26dcf, [0x0fd1] = 0x26dd0, + [0x0fd2] = 0x26dd1, [0x0fd3] = 0x26dd2, [0x0fd4] = 0x271ca, [0x0fd5] = 0x271cb, + [0x0fd6] = 0x27336, [0x0fd7] = 0x27337, [0x0fd8] = 0x2739f, [0x0fd9] = 0x27338, + [0x0fda] = 0x27339, [0x0fdb] = 0x2733a, [0x0fdc] = 0x8744, [0x0fdd] = 0x276be, + [0x0fde] = 0x276f0, [0x0fdf] = 0x276bf, [0x0fe0] = 0x276c0, [0x0fe1] = 0x277f7, + [0x0fe2] = 0x277f8, [0x0fe3] = 0x277fa, [0x0fe4] = 0x27843, [0x0fe5] = 0x27844, + [0x0fe6] = 0x27a0f, [0x0fe7] = 0x27a10, [0x0fe8] = 0x27a11, [0x0fe9] = 0x27a12, + [0x0feb] = 0x27a13, [0x0fec] = 0x27a14, [0x0fed] = 0x27a15, [0x0fee] = 0x27a16, + [0x0ff1] = 0x27cd3, [0x0ff2] = 0x27cd7, [0x0ff4] = 0x27db0, [0x0ff5] = 0x27d98, + [0x0ff6] = 0x27d90, [0x0ff7] = 0x27d91, [0x0ff8] = 0x27d92, [0x0ff9] = 0x27d97, + [0x0ffa] = 0x27d93, [0x0ffb] = 0x27e64, [0x0ffc] = 0x27f01, [0x0ffd] = 0x27f02, + [0x0ffe] = 0x27f03, [0x0fff] = 0x27f04, [0x1000] = 0x27f05, [0x1001] = 0x27f06, + [0x1002] = 0x27f07, [0x1003] = 0x2805a, [0x1004] = 0x2805b, [0x1005] = 0x2824e, + [0x1006] = 0x2824f, [0x1007] = 0x28250, [0x1008] = 0x28319, [0x1009] = 0x2831a, + [0x100a] = 0x2831b, [0x100c] = 0x2831c, [0x100e] = 0x28419, [0x100f] = 0x2841a, + [0x1010] = 0x4886, [0x1011] = 0x2898a, [0x1012] = 0x2856e, [0x1013] = 0x2856f, + [0x1014] = 0x9064, [0x1015] = 0x28570, [0x1016] = 0x28571, [0x1017] = 0x28572, + [0x1018] = 0x28573, [0x1019] = 0x28574, [0x101a] = 0x28575, [0x101b] = 0x28576, + [0x101c] = 0x2883a, [0x101d] = 0x2883b, [0x101e] = 0x2883c, [0x101f] = 0x2885a, + [0x1020] = 0x2883d, [0x1021] = 0x28842, [0x1022] = 0x2898b, [0x1023] = 0x289a0, + [0x1024] = 0x2898c, [0x1025] = 0x2898d, [0x1026] = 0x2898e, [0x1027] = 0x289ab, + [0x1028] = 0x2898f, [0x1029] = 0x9277, [0x102a] = 0x28990, [0x102b] = 0x28991, + [0x102c] = 0x28992, [0x102d] = 0x289aa, [0x102e] = 0x92af, [0x102f] = 0x28993, + [0x1030] = 0x28994, [0x1031] = 0x2899e, [0x1032] = 0x289a8, [0x1035] = 0x28f00, + [0x1036] = 0x28f01, [0x1037] = 0x28f02, [0x1038] = 0x28f03, [0x1039] = 0x28f04, + [0x103a] = 0x28f05, [0x103b] = 0x28fc4, [0x103c] = 0x28fc5, [0x103e] = 0x290ae, + [0x103f] = 0x290b2, [0x1042] = 0x291f7, [0x1043] = 0x29213, [0x1044] = 0x2939e, + [0x1045] = 0x29485, [0x1046] = 0x25380, [0x1047] = 0x294c8, [0x1048] = 0x29841, + [0x1049] = 0x29881, [0x104a] = 0x29882, [0x104b] = 0x29883, [0x104c] = 0x29884, + [0x104d] = 0x29ac4, [0x104e] = 0x29ac5, [0x104f] = 0x29ac6, [0x1050] = 0x29c95, + [0x1051] = 0x29c96, [0x1052] = 0x29c97, [0x1053] = 0x29d58, [0x1054] = 0x29d59, + [0x1056] = 0x29fa9, [0x1057] = 0x29faa, [0x1058] = 0x29fab, [0x1059] = 0x2a28e, + [0x105a] = 0x2a303, [0x105b] = 0x2a3b3, [0x105c] = 0x20b82, [0x105d] = 0x20053, + [0x105e] = 0x20183, [0x105f] = 0x20184, [0x1060] = 0x20185, [0x1061] = 0x203cc, + [0x1062] = 0x203cd, [0x1063] = 0x203ce, [0x1064] = 0x203cf, [0x1065] = 0x203d0, + [0x1067] = 0x203d1, [0x1068] = 0x203d2, [0x1069] = 0x203da, [0x106a] = 0x204b3, + [0x106b] = 0x204b4, [0x106d] = 0x20613, [0x106e] = 0x2060e, [0x106f] = 0x2066b, + [0x1070] = 0x20903, [0x1071] = 0x20961, [0x1072] = 0x209c1, [0x1073] = 0x209c2, + [0x1074] = 0x20ab5, [0x1075] = 0x20140, [0x1076] = 0x20f98, [0x1077] = 0x20f99, + [0x1078] = 0x20f9a, [0x1079] = 0x20f9b, [0x107a] = 0x20f9c, [0x107b] = 0x20f9d, + [0x107c] = 0x20f9e, [0x107d] = 0x20f9f, [0x107e] = 0x20fee, [0x107f] = 0x20fa0, + [0x1080] = 0x20fa1, [0x1081] = 0x20f86, [0x1082] = 0x21225, [0x1083] = 0x21434, + [0x1084] = 0x21435, [0x1085] = 0x21451, [0x1086] = 0x2142d, [0x1087] = 0x24362, + [0x1088] = 0x21454, [0x1089] = 0x21452, [0x108a] = 0x366d, [0x108b] = 0x21436, + [0x108c] = 0x21437, [0x108d] = 0x21438, [0x108e] = 0x21439, [0x108f] = 0x2143a, + [0x1090] = 0x2143b, [0x1091] = 0x21468, [0x1092] = 0x2143c, [0x1093] = 0x366e, + [0x1094] = 0x21577, [0x1095] = 0x23296, [0x1096] = 0x2167e, [0x1097] = 0x2167f, + [0x1098] = 0x21869, [0x1099] = 0x2186a, [0x109a] = 0x2186b, [0x109b] = 0x2186c, + [0x109c] = 0x2186d, [0x109d] = 0x2186e, [0x109e] = 0x2186f, [0x109f] = 0x2185d, + [0x10a0] = 0x21870, [0x10a1] = 0x21885, [0x10a2] = 0x21871, [0x10a3] = 0x21872, + [0x10a4] = 0x21873, [0x10a5] = 0x21874, [0x10a6] = 0x21875, [0x10a7] = 0x21876, + [0x10a8] = 0x21884, [0x10a9] = 0x21877, [0x10aa] = 0x21883, [0x10ab] = 0x2199a, + [0x10ac] = 0x21aa7, [0x10ad] = 0x21aa8, [0x10ae] = 0x21aa9, [0x10af] = 0x21aaa, + [0x10b0] = 0x21aab, [0x10b1] = 0x21aac, [0x10b2] = 0x21ab7, [0x10b3] = 0x21aad, + [0x10b4] = 0x21aae, [0x10b6] = 0x21b45, [0x10b7] = 0x21cd3, [0x10b8] = 0x21cd4, + [0x10b9] = 0x21cd5, [0x10ba] = 0x21cd6, [0x10bb] = 0x21cd7, [0x10bc] = 0x21f26, + [0x10bd] = 0x21f27, [0x10be] = 0x21f28, [0x10c0] = 0x21f29, [0x10c1] = 0x21f2a, + [0x10c2] = 0x22005, [0x10c3] = 0x5e64, [0x10c4] = 0x221d0, [0x10c5] = 0x222b7, + [0x10c7] = 0x222b8, [0x10c8] = 0x222b9, [0x10c9] = 0x22422, [0x10ca] = 0x22423, + [0x10cb] = 0x22573, [0x10cc] = 0x22574, [0x10cd] = 0x2288f, [0x10ce] = 0x22812, + [0x10cf] = 0x22813, [0x10d0] = 0x22814, [0x10d1] = 0x22815, [0x10d2] = 0x22816, + [0x10d3] = 0x22817, [0x10d4] = 0x22818, [0x10d5] = 0x22861, [0x10d6] = 0x22866, + [0x10d7] = 0x22867, [0x10d8] = 0x22819, [0x10d9] = 0x22868, [0x10da] = 0x2281a, + [0x10db] = 0x22869, [0x10dc] = 0x22a04, [0x10dd] = 0x22a05, [0x10df] = 0x22a06, + [0x10e0] = 0x229fd, [0x10e1] = 0x22d50, [0x10e2] = 0x22d51, [0x10e3] = 0x22d52, + [0x10e4] = 0x22d53, [0x10e5] = 0x22d54, [0x10e6] = 0x22d55, [0x10e7] = 0x22d63, + [0x10e9] = 0x22d56, [0x10ea] = 0x22d57, [0x10eb] = 0x22d58, [0x10ec] = 0x22d59, + [0x10ed] = 0x22d5a, [0x10ee] = 0x22d5b, [0x10f0] = 0x22d5c, [0x10f1] = 0x22d5d, + [0x10f2] = 0x22d5e, [0x10f3] = 0x22d5f, [0x10f4] = 0x22fd7, [0x10f6] = 0x23060, + [0x10f7] = 0x23061, [0x10f8] = 0x23117, [0x10f9] = 0x23139, [0x10fa] = 0x2328f, + [0x10fb] = 0x232c8, [0x10fc] = 0x23290, [0x10fd] = 0x23291, [0x10fe] = 0x23398, + [0x10ff] = 0x23399, [0x1100] = 0x23644, [0x1101] = 0x23645, [0x1102] = 0x23646, + [0x1103] = 0x23659, [0x1104] = 0x236ee, [0x1105] = 0x6a2b, [0x1106] = 0x23647, + [0x1107] = 0x23648, [0x1109] = 0x23649, [0x110a] = 0x2364a, [0x110b] = 0x2364b, + [0x110c] = 0x2364c, [0x110d] = 0x2364d, [0x110e] = 0x2364e, [0x110f] = 0x2364f, + [0x1110] = 0x23650, [0x1111] = 0x23651, [0x1112] = 0x23652, [0x1113] = 0x23653, + [0x1114] = 0x23654, [0x1115] = 0x23655, [0x1116] = 0x23656, [0x1117] = 0x23915, + [0x1118] = 0x2399a, [0x1119] = 0x23a58, [0x111a] = 0x23afc, [0x111b] = 0x23afd, + [0x111c] = 0x23f86, [0x111d] = 0x23f87, [0x111e] = 0x23f88, [0x111f] = 0x23f89, + [0x1120] = 0x23f8a, [0x1121] = 0x23f8b, [0x1122] = 0x23f8c, [0x1124] = 0x2401f, + [0x1125] = 0x23f8d, [0x1126] = 0x23f8e, [0x1127] = 0x23f8f, [0x1128] = 0x23f90, + [0x1129] = 0x23f91, [0x112a] = 0x23f92, [0x112b] = 0x23f93, [0x112d] = 0x23f94, + [0x112e] = 0x23f95, [0x112f] = 0x23eca, [0x1130] = 0x23f18, [0x1132] = 0x23f96, + [0x1133] = 0x23f97, [0x1134] = 0x23f98, [0x1135] = 0x23f99, [0x1136] = 0x23f9a, + [0x1137] = 0x23f9b, [0x1138] = 0x23f9c, [0x1139] = 0x23f9d, [0x113a] = 0x23f9e, + [0x113b] = 0x23f9f, [0x113c] = 0x6f46, [0x113e] = 0x23fa0, [0x113f] = 0x23fa1, + [0x1140] = 0x6f9a, [0x1141] = 0x23fb7, [0x1143] = 0x24396, [0x1144] = 0x24368, + [0x1145] = 0x24369, [0x1146] = 0x2438c, [0x1147] = 0x2436a, [0x1148] = 0x2436b, + [0x1149] = 0x2436c, [0x114a] = 0x2436d, [0x114b] = 0x2436e, [0x114c] = 0x2436f, + [0x114d] = 0x2437f, [0x114e] = 0x24384, [0x114f] = 0x24370, [0x1150] = 0x24371, + [0x1151] = 0x24385, [0x1152] = 0x24372, [0x1153] = 0x24373, [0x1154] = 0x24374, + [0x1155] = 0x24375, [0x1156] = 0x24376, [0x1158] = 0x24377, [0x1159] = 0x24378, + [0x115a] = 0x24379, [0x115b] = 0x2437a, [0x115c] = 0x2437b, [0x115d] = 0x2437c, + [0x115f] = 0x24594, [0x1160] = 0x246d5, [0x1161] = 0x24829, [0x1162] = 0x24a2b, + [0x1163] = 0x24a2c, [0x1164] = 0x24a2d, [0x1165] = 0x24a2e, [0x1166] = 0x24a2f, + [0x1167] = 0x24a30, [0x1168] = 0x24a3e, [0x1169] = 0x24a31, [0x116a] = 0x24a32, + [0x116b] = 0x24a33, [0x116c] = 0x24a34, [0x116d] = 0x24a35, [0x116e] = 0x24b11, + [0x116f] = 0x3f53, [0x1170] = 0x24cc0, [0x1171] = 0x24e42, [0x1172] = 0x24e43, + [0x1173] = 0x24e44, [0x1174] = 0x24e45, [0x1175] = 0x24e46, [0x1176] = 0x2508c, + [0x1177] = 0x2508d, [0x1178] = 0x2508e, [0x1179] = 0x2508f, [0x117a] = 0x25090, + [0x117b] = 0x25091, [0x117c] = 0x25263, [0x117d] = 0x25264, [0x117e] = 0x25265, + [0x1182] = 0x253f6, [0x1183] = 0x25536, [0x1184] = 0x25537, [0x1185] = 0x2552c, + [0x1186] = 0x25538, [0x1187] = 0x25539, [0x1189] = 0x2553a, [0x118a] = 0x256e3, + [0x118b] = 0x256e2, [0x118c] = 0x256f5, [0x118d] = 0x25847, [0x118f] = 0x25848, + [0x1190] = 0x25849, [0x1191] = 0x2584a, [0x1192] = 0x2584b, [0x1193] = 0x2584c, + [0x1194] = 0x25aa8, [0x1195] = 0x25aa9, [0x1196] = 0x25aaa, [0x1198] = 0x25c0b, + [0x1199] = 0x25c06, [0x119a] = 0x25c73, [0x119b] = 0x25c0c, [0x119c] = 0x25c0d, + [0x119d] = 0x25c0e, [0x119e] = 0x25c0f, [0x119f] = 0x25c10, [0x11a1] = 0x25c11, + [0x11a3] = 0x25c12, [0x11a4] = 0x25c14, [0x11a5] = 0x25c15, [0x11a6] = 0x25c16, + [0x11a8] = 0x25c13, [0x11a9] = 0x25c17, [0x11aa] = 0x25ed9, [0x11ab] = 0x25eda, + [0x11ac] = 0x25edb, [0x11ae] = 0x25edc, [0x11af] = 0x260a6, [0x11b0] = 0x260a7, + [0x11b1] = 0x260a8, [0x11b2] = 0x260a9, [0x11b3] = 0x260aa, [0x11b4] = 0x260ab, + [0x11b7] = 0x260ac, [0x11b8] = 0x260ad, [0x11b9] = 0x260ae, [0x11bc] = 0x260af, + [0x11bd] = 0x260b0, [0x11be] = 0x260b1, [0x11bf] = 0x26244, [0x11c0] = 0x26245, + [0x11c1] = 0x262f7, [0x11c2] = 0x262f8, [0x11c3] = 0x2646b, [0x11c4] = 0x2646c, + [0x11c5] = 0x26461, [0x11c6] = 0x26512, [0x11c7] = 0x265af, [0x11c8] = 0x265b0, + [0x11c9] = 0x265b1, [0x11ca] = 0x265b2, [0x11cb] = 0x265b3, [0x11cc] = 0x265b4, + [0x11cd] = 0x265b5, [0x11ce] = 0x265b6, [0x11cf] = 0x26622, [0x11d0] = 0x267ea, + [0x11d1] = 0x267eb, [0x11d2] = 0x267ec, [0x11d3] = 0x267ed, [0x11d5] = 0x268ed, + [0x11d6] = 0x2691b, [0x11d7] = 0x26947, [0x11d8] = 0x269e8, [0x11d9] = 0x26ad0, + [0x11da] = 0x26ae7, [0x11db] = 0x26ae8, [0x11dc] = 0x26ae9, [0x11dd] = 0x26e4e, + [0x11de] = 0x26e4f, [0x11df] = 0x26e50, [0x11e0] = 0x26e72, [0x11e1] = 0x26e51, + [0x11e2] = 0x26e52, [0x11e4] = 0x4526, [0x11e5] = 0x26e53, [0x11e6] = 0x26e54, + [0x11e7] = 0x26e55, [0x11e8] = 0x26e56, [0x11e9] = 0x26e57, [0x11ea] = 0x26e77, + [0x11eb] = 0x26e58, [0x11ec] = 0x26e59, [0x11ed] = 0x26e5a, [0x11ee] = 0x26e5b, + [0x11ef] = 0x26e5c, [0x11f0] = 0x26e6e, [0x11f1] = 0x26e5d, [0x11f2] = 0x4527, + [0x11f4] = 0x26e5e, [0x11f5] = 0x4528, [0x11f6] = 0x26e5f, [0x11f8] = 0x271d7, + [0x11f9] = 0x27389, [0x11fa] = 0x2738a, [0x11fd] = 0x2738b, [0x11fe] = 0x2738c, + [0x11ff] = 0x2738d, [0x1200] = 0x2738e, [0x1202] = 0x2738f, [0x1204] = 0x2739a, + [0x1205] = 0x27390, [0x1206] = 0x27391, [0x1207] = 0x27392, [0x1208] = 0x27393, + [0x1209] = 0x27712, [0x120a] = 0x276f1, [0x120c] = 0x277fe, [0x120d] = 0x277fb, + [0x120e] = 0x27857, [0x120f] = 0x27a49, [0x1210] = 0x27a4a, [0x1211] = 0x27a4b, + [0x1212] = 0x27a4c, [0x1214] = 0x27a4d, [0x1215] = 0x27a59, [0x1216] = 0x27a4e, + [0x1217] = 0x27a4f, [0x1218] = 0x27bf4, [0x1219] = 0x27c65, [0x121a] = 0x27da6, + [0x121b] = 0x27da7, [0x121c] = 0x27da8, [0x121d] = 0x27f22, [0x121e] = 0x27f23, + [0x121f] = 0x2808b, [0x1220] = 0x2808c, [0x1221] = 0x2808d, [0x1222] = 0x2808e, + [0x1223] = 0x28258, [0x1225] = 0x28259, [0x1226] = 0x2833b, [0x1227] = 0x2833c, + [0x1228] = 0x2833d, [0x1229] = 0x2833e, [0x122a] = 0x28448, [0x122b] = 0x28594, + [0x122c] = 0x28595, [0x122d] = 0x28596, [0x122e] = 0x28597, [0x122f] = 0x28598, + [0x1230] = 0x2877d, [0x1231] = 0x286fe, [0x1232] = 0x2877e, [0x1233] = 0x2877f, + [0x1235] = 0x2885b, [0x1236] = 0x2885c, [0x1237] = 0x289e4, [0x1238] = 0x289c1, + [0x1239] = 0x289fd, [0x123a] = 0x289c2, [0x123b] = 0x289d6, [0x123c] = 0x289c3, + [0x123d] = 0x289c4, [0x123f] = 0x289dc, [0x1240] = 0x289c5, [0x1241] = 0x289c6, + [0x1242] = 0x289c7, [0x1243] = 0x289e1, [0x1244] = 0x289c8, [0x1245] = 0x289c9, + [0x1246] = 0x289ca, [0x1247] = 0x289cb, [0x1248] = 0x92f2, [0x1249] = 0x289cc, + [0x124a] = 0x289cd, [0x124b] = 0x28d35, [0x124c] = 0x28d36, [0x124d] = 0x28d47, + [0x124e] = 0x28d37, [0x124f] = 0x28f1b, [0x1250] = 0x28f1c, [0x1251] = 0x28f1d, + [0x1252] = 0x28f1e, [0x1253] = 0x28f1f, [0x1254] = 0x28f20, [0x1255] = 0x28f7b, + [0x1256] = 0x28f7a, [0x1257] = 0x28ffe, [0x1258] = 0x290c6, [0x1259] = 0x290c7, + [0x125a] = 0x290c8, [0x125b] = 0x290c9, [0x125c] = 0x290ca, [0x125e] = 0x294a0, + [0x125f] = 0x294a1, [0x1260] = 0x295cc, [0x1261] = 0x295cd, [0x1262] = 0x296f1, + [0x1263] = 0x296d7, [0x1264] = 0x29842, [0x1265] = 0x29846, [0x1266] = 0x298a3, + [0x1267] = 0x298a5, [0x1268] = 0x298a6, [0x1269] = 0x29acb, [0x126a] = 0x29acc, + [0x126b] = 0x29b26, [0x126c] = 0x29b27, [0x126d] = 0x29b28, [0x126e] = 0x29b29, + [0x126f] = 0x29cae, [0x1270] = 0x29caf, [0x1271] = 0x29cb0, [0x1272] = 0x29d73, + [0x1274] = 0x29d7c, [0x1275] = 0x29d74, [0x1277] = 0x29f80, [0x1278] = 0x29d75, + [0x1279] = 0x9b79, [0x127b] = 0x29fcf, [0x127d] = 0x2a38f, [0x127e] = 0x20670, + [0x127f] = 0x20085, [0x1280] = 0x20397, [0x1281] = 0x203f6, [0x1282] = 0x203f7, + [0x1283] = 0x203f8, [0x1284] = 0x203fa, [0x1285] = 0x203fb, [0x1286] = 0x204ba, + [0x1287] = 0x204bb, [0x1288] = 0x204bc, [0x1289] = 0x204bd, [0x128a] = 0x20534, + [0x128b] = 0x20535, [0x128c] = 0x205a2, [0x128d] = 0x20614, [0x128e] = 0x20611, + [0x128f] = 0x2066e, [0x1290] = 0x2066f, [0x1291] = 0x20808, [0x1292] = 0x208b8, + [0x1293] = 0x20a09, [0x1294] = 0x20abd, [0x1295] = 0x20abe, [0x1296] = 0x20b88, + [0x1297] = 0x20ffe, [0x1298] = 0x567a, [0x1299] = 0x20fff, [0x129a] = 0x21000, + [0x129b] = 0x21001, [0x129c] = 0x21002, [0x129d] = 0x21003, [0x129e] = 0x21004, + [0x129f] = 0x21005, [0x12a0] = 0x21006, [0x12a2] = 0x21007, [0x12a3] = 0x21008, + [0x12a4] = 0x21009, [0x12a5] = 0x2100a, [0x12a6] = 0x2100b, [0x12a7] = 0x2100c, + [0x12a8] = 0x2100d, [0x12a9] = 0x2100e, [0x12aa] = 0x2100f, [0x12ae] = 0x2122c, + [0x12af] = 0x2146b, [0x12b1] = 0x2146c, [0x12b2] = 0x21487, [0x12b3] = 0x2146d, + [0x12b4] = 0x21578, [0x12b5] = 0x2168b, [0x12b6] = 0x218a4, [0x12b7] = 0x218a5, + [0x12b8] = 0x218a6, [0x12b9] = 0x218a7, [0x12ba] = 0x218be, [0x12bb] = 0x218a8, + [0x12bc] = 0x218a9, [0x12bd] = 0x218aa, [0x12be] = 0x2188d, [0x12bf] = 0x218ab, + [0x12c0] = 0x218ac, [0x12c1] = 0x218bf, [0x12c3] = 0x372c, [0x12c4] = 0x218ad, + [0x12c5] = 0x218ae, [0x12c6] = 0x219a4, [0x12c7] = 0x219a5, [0x12c8] = 0x21ac7, + [0x12c9] = 0x21ac8, [0x12ca] = 0x21ac9, [0x12cb] = 0x27dbc, [0x12cc] = 0x21aca, + [0x12cd] = 0x21acb, [0x12ce] = 0x21acc, [0x12cf] = 0x21acd, [0x12d0] = 0x21ace, + [0x12d1] = 0x21c19, [0x12d2] = 0x21ce6, [0x12d3] = 0x21f4c, [0x12d4] = 0x21f4d, + [0x12d5] = 0x21f4e, [0x12d6] = 0x22006, [0x12d8] = 0x222cd, [0x12d9] = 0x222ce, + [0x12da] = 0x222cf, [0x12db] = 0x222d0, [0x12dc] = 0x5f5c, [0x12dd] = 0x22581, + [0x12de] = 0x22582, [0x12df] = 0x20533, [0x12e0] = 0x2286a, [0x12e1] = 0x2286b, + [0x12e2] = 0x228b2, [0x12e3] = 0x2286c, [0x12e4] = 0x2286d, [0x12e5] = 0x228cc, + [0x12e6] = 0x228ae, [0x12e7] = 0x228b3, [0x12e8] = 0x22891, [0x12ea] = 0x2286e, + [0x12eb] = 0x228b4, [0x12ec] = 0x2286f, [0x12ed] = 0x22dc9, [0x12ee] = 0x22da7, + [0x12ef] = 0x22da8, [0x12f0] = 0x22da9, [0x12f1] = 0x22daa, [0x12f2] = 0x22dab, + [0x12f3] = 0x22dac, [0x12f4] = 0x22dad, [0x12f5] = 0x22dae, [0x12f6] = 0x22daf, + [0x12f7] = 0x22db0, [0x12f8] = 0x22d60, [0x12f9] = 0x22db1, [0x12fa] = 0x22ee1, + [0x12fb] = 0x22fe3, [0x12fc] = 0x22ff6, [0x12fd] = 0x65d9, [0x12fe] = 0x232af, + [0x12ff] = 0x232b0, [0x1300] = 0x232b1, [0x1301] = 0x232ba, [0x1302] = 0x232b2, + [0x1303] = 0x232b3, [0x1304] = 0x2334c, [0x1306] = 0x233a0, [0x1307] = 0x233a1, + [0x1308] = 0x236b0, [0x1309] = 0x236b1, [0x130a] = 0x236b2, [0x130b] = 0x236b3, + [0x130c] = 0x236b4, [0x130e] = 0x236b5, [0x130f] = 0x236b6, [0x1310] = 0x236b7, + [0x1311] = 0x236b8, [0x1312] = 0x236b9, [0x1313] = 0x236ba, [0x1314] = 0x6a72, + [0x1315] = 0x236bb, [0x1316] = 0x236bc, [0x1317] = 0x236bd, [0x1318] = 0x236be, + [0x1319] = 0x236bf, [0x131a] = 0x236df, [0x131b] = 0x236c0, [0x131c] = 0x236c1, + [0x131d] = 0x236c2, [0x131e] = 0x236c3, [0x131f] = 0x236c4, [0x1320] = 0x6a78, + [0x1322] = 0x236c5, [0x1323] = 0x236c6, [0x1324] = 0x236c7, [0x1325] = 0x236c8, + [0x1326] = 0x236c9, [0x1327] = 0x236ca, [0x1328] = 0x2373c, [0x1329] = 0x236cb, + [0x132a] = 0x236cc, [0x132b] = 0x236cd, [0x132c] = 0x236ce, [0x132d] = 0x236cf, + [0x132e] = 0x236d0, [0x132f] = 0x236d1, [0x1330] = 0x6b5a, [0x1331] = 0x2391d, + [0x1332] = 0x2391e, [0x1333] = 0x23a64, [0x1334] = 0x23a65, [0x1335] = 0x23ac5, + [0x1336] = 0x23ac6, [0x1337] = 0x23ac7, [0x1338] = 0x23aff, [0x1339] = 0x23bff, + [0x133a] = 0x23c00, [0x133b] = 0x23c01, [0x133c] = 0x23c02, [0x133d] = 0x23ff5, + [0x133e] = 0x2405c, [0x133f] = 0x23ff6, [0x1340] = 0x23ff7, [0x1341] = 0x23fb0, + [0x1342] = 0x23ff8, [0x1343] = 0x23ff9, [0x1344] = 0x2405d, [0x1345] = 0x24050, + [0x1346] = 0x23ffa, [0x1347] = 0x23ffb, [0x1348] = 0x23fa2, [0x1349] = 0x23ffc, + [0x134a] = 0x23ffd, [0x134b] = 0x23ffe, [0x134c] = 0x23fff, [0x134e] = 0x24000, + [0x1350] = 0x243c1, [0x1351] = 0x243c2, [0x1352] = 0x243c3, [0x1353] = 0x243c4, + [0x1354] = 0x243c5, [0x1355] = 0x243c6, [0x1356] = 0x243c7, [0x1357] = 0x243c8, + [0x1358] = 0x243c9, [0x1359] = 0x243ca, [0x135a] = 0x243cb, [0x135b] = 0x290ef, + [0x135c] = 0x243d7, [0x135d] = 0x243cc, [0x135e] = 0x243cd, [0x135f] = 0x243ce, + [0x1360] = 0x24422, [0x1361] = 0x243cf, [0x1362] = 0x243d0, [0x1364] = 0x243d1, + [0x1365] = 0x243d2, [0x1366] = 0x243e9, [0x1367] = 0x243d3, [0x1368] = 0x243d4, + [0x1369] = 0x243d5, [0x136a] = 0x24538, [0x136b] = 0x2103b, [0x136c] = 0x2487d, + [0x136d] = 0x2056f, [0x136e] = 0x248a1, [0x136f] = 0x24a53, [0x1370] = 0x24a54, + [0x1371] = 0x3efb, [0x1372] = 0x24a55, [0x1373] = 0x24a3c, [0x1374] = 0x24a56, + [0x1376] = 0x24a66, [0x1377] = 0x3efc, [0x1378] = 0x24a57, [0x1379] = 0x24a58, + [0x137a] = 0x24a59, [0x137b] = 0x24a5a, [0x137c] = 0x24a5b, [0x137d] = 0x24a67, + [0x137e] = 0x24a5c, [0x1381] = 0x24a6a, [0x1382] = 0x24a5d, [0x1383] = 0x24a3d, + [0x1384] = 0x24a5e, [0x1385] = 0x24a65, [0x1386] = 0x24ce1, [0x1387] = 0x24ccd, + [0x1388] = 0x2a011, [0x1389] = 0x24e6f, [0x138a] = 0x24e70, [0x138b] = 0x2501a, + [0x138c] = 0x2509a, [0x138d] = 0x2509b, [0x138e] = 0x2509c, [0x138f] = 0x2509e, + [0x1390] = 0x2509f, [0x1392] = 0x2528e, [0x1394] = 0x253fd, [0x1396] = 0x2555e, + [0x1397] = 0x2555f, [0x1398] = 0x25560, [0x1399] = 0x25565, [0x139a] = 0x25567, + [0x139b] = 0x25568, [0x139c] = 0x25569, [0x139e] = 0x2556a, [0x139f] = 0x2558f, + [0x13a0] = 0x2556b, [0x13a1] = 0x2556c, [0x13a2] = 0x2556d, [0x13a3] = 0x256f7, + [0x13a4] = 0x256f8, [0x13a5] = 0x256f9, [0x13a6] = 0x256e4, [0x13a7] = 0x256fa, + [0x13a8] = 0x258b1, [0x13a9] = 0x25875, [0x13aa] = 0x25876, [0x13ab] = 0x259ff, + [0x13ac] = 0x25a00, [0x13ad] = 0x25a01, [0x13ae] = 0x25a02, [0x13af] = 0x25a03, + [0x13b0] = 0x25aae, [0x13b1] = 0x25aad, [0x13b2] = 0x25c51, [0x13b3] = 0x25c52, + [0x13b5] = 0x25c53, [0x13b6] = 0x25c54, [0x13b7] = 0x25c55, [0x13b8] = 0x25c56, + [0x13b9] = 0x25c57, [0x13ba] = 0x25c58, [0x13bb] = 0x25c59, [0x13bc] = 0x25c5a, + [0x13bd] = 0x25c5b, [0x13be] = 0x25c5c, [0x13bf] = 0x25c5d, [0x13c0] = 0x25c5e, + [0x13c1] = 0x25c5f, [0x13c2] = 0x25c60, [0x13c3] = 0x25c61, [0x13c4] = 0x25c62, + [0x13c5] = 0x25c63, [0x13c6] = 0x25c64, [0x13c7] = 0x25c4c, [0x13c8] = 0x25c66, + [0x13c9] = 0x25ef1, [0x13ca] = 0x25ef2, [0x13cb] = 0x260f2, [0x13cc] = 0x260f3, + [0x13cd] = 0x260f4, [0x13ce] = 0x260f5, [0x13cf] = 0x260f6, [0x13d0] = 0x260f7, + [0x13d1] = 0x260f8, [0x13d2] = 0x260f9, [0x13d3] = 0x260fa, [0x13d4] = 0x2624c, + [0x13d5] = 0x2624b, [0x13d6] = 0x2631b, [0x13d7] = 0x263ce, [0x13d8] = 0x263b3, + [0x13d9] = 0x2647f, [0x13dc] = 0x2651a, [0x13dd] = 0x265c4, [0x13de] = 0x265c5, + [0x13df] = 0x265c6, [0x13e0] = 0x265c7, [0x13e1] = 0x265c8, [0x13e2] = 0x265c9, + [0x13e4] = 0x26819, [0x13e5] = 0x2681c, [0x13e6] = 0x2681a, [0x13e7] = 0x2694c, + [0x13e8] = 0x2698e, [0x13e9] = 0x26a7e, [0x13ea] = 0x26eeb, [0x13eb] = 0x26eec, + [0x13ec] = 0x26eed, [0x13ed] = 0x26eee, [0x13ee] = 0x26eef, [0x13ef] = 0x26ef0, + [0x13f0] = 0x26ef1, [0x13f1] = 0x26ed8, [0x13f2] = 0x26ed9, [0x13f3] = 0x26eda, + [0x13f4] = 0x26edb, [0x13f5] = 0x26ef2, [0x13f6] = 0x26ef3, [0x13f7] = 0x26ef4, + [0x13f8] = 0x26f07, [0x13fc] = 0x26ef5, [0x13fd] = 0x26f15, [0x13ff] = 0x26ef6, + [0x1400] = 0x26ef7, [0x1401] = 0x26ef8, [0x1402] = 0x26ef9, [0x1403] = 0x26efa, + [0x1404] = 0x26efb, [0x1405] = 0x26efc, [0x1406] = 0x26efd, [0x1407] = 0x26efe, + [0x1408] = 0x26fa7, [0x1409] = 0x26eff, [0x140a] = 0x26f00, [0x140b] = 0x26f01, + [0x140c] = 0x26f02, [0x140d] = 0x26f03, [0x140e] = 0x26f04, [0x140f] = 0x26f05, + [0x1410] = 0x271e9, [0x1411] = 0x271ea, [0x1412] = 0x271eb, [0x1413] = 0x273de, + [0x1414] = 0x273df, [0x1416] = 0x273e0, [0x1417] = 0x273e1, [0x1418] = 0x273e2, + [0x1419] = 0x273e3, [0x141a] = 0x2773e, [0x141b] = 0x2773f, [0x141c] = 0x27740, + [0x141d] = 0x27741, [0x141e] = 0x27871, [0x141f] = 0x27872, [0x1420] = 0x27873, + [0x1421] = 0x27a88, [0x1422] = 0x27a89, [0x1423] = 0x27a8a, [0x1424] = 0x27a8b, + [0x1425] = 0x27a8c, [0x1426] = 0x27a8d, [0x1427] = 0x27a8e, [0x1428] = 0x27a8f, + [0x1429] = 0x27a90, [0x142a] = 0x27a91, [0x142b] = 0x27a92, [0x142d] = 0x27cf1, + [0x142e] = 0x27dbe, [0x142f] = 0x27dbf, [0x1430] = 0x27dc0, [0x1431] = 0x27dc1, + [0x1432] = 0x27dc2, [0x1433] = 0x27dc3, [0x1434] = 0x27e6e, [0x1435] = 0x27f37, + [0x1436] = 0x27f57, [0x1437] = 0x27f38, [0x1438] = 0x27f39, [0x1439] = 0x27f3a, + [0x143a] = 0x27f3b, [0x143b] = 0x27f3c, [0x143c] = 0x27f3d, [0x143d] = 0x27f3e, + [0x143e] = 0x27f27, [0x143f] = 0x27f3f, [0x1442] = 0x280c0, [0x1443] = 0x280c1, + [0x1444] = 0x8ebe, [0x1445] = 0x28267, [0x1447] = 0x28268, [0x1448] = 0x28358, + [0x1449] = 0x28365, [0x144a] = 0x28359, [0x144b] = 0x2835a, [0x144c] = 0x28424, + [0x144d] = 0x285cd, [0x144e] = 0x285ce, [0x144f] = 0x285cf, [0x1450] = 0x285d2, + [0x1451] = 0x2879f, [0x1452] = 0x28722, [0x1453] = 0x2887d, [0x1454] = 0x2887e, + [0x1455] = 0x289ff, [0x1456] = 0x28a25, [0x1457] = 0x28a00, [0x1458] = 0x28a01, + [0x1459] = 0x933b, [0x145a] = 0x28a02, [0x145b] = 0x28a03, [0x145c] = 0x28a04, + [0x145e] = 0x28a05, [0x145f] = 0x28a06, [0x1460] = 0x28a07, [0x1461] = 0x28a16, + [0x1462] = 0x28a08, [0x1463] = 0x28a17, [0x1464] = 0x28a09, [0x1465] = 0x28a0a, + [0x1466] = 0x9340, [0x1467] = 0x28a0b, [0x1468] = 0x28a0c, [0x1469] = 0x28a29, + [0x146a] = 0x933a, [0x146b] = 0x28a0d, [0x146d] = 0x28a0e, [0x146e] = 0x28a10, + [0x146f] = 0x28a11, [0x1470] = 0x28a1d, [0x1471] = 0x28a12, [0x1472] = 0x28a13, + [0x1474] = 0x28a14, [0x1475] = 0x28a15, [0x1476] = 0x28c8d, [0x1477] = 0x28d54, + [0x1478] = 0x28d55, [0x1479] = 0x28d56, [0x147a] = 0x28f33, [0x147b] = 0x28f34, + [0x147c] = 0x28f35, [0x147d] = 0x28f36, [0x147e] = 0x28ffa, [0x147f] = 0x290e3, + [0x1480] = 0x290e6, [0x1481] = 0x290ed, [0x1482] = 0x290e7, [0x1483] = 0x290e8, + [0x1484] = 0x290e9, [0x1485] = 0x290ea, [0x1486] = 0x290eb, [0x1487] = 0x29227, + [0x1488] = 0x29220, [0x148a] = 0x2942a, [0x148b] = 0x294c9, [0x148d] = 0x294ca, + [0x148e] = 0x294cb, [0x148f] = 0x294d9, [0x1490] = 0x294cc, [0x1491] = 0x294cd, + [0x1492] = 0x294ce, [0x1494] = 0x295e1, [0x1495] = 0x2971b, [0x1496] = 0x2971c, + [0x1497] = 0x2971d, [0x1498] = 0x2971e, [0x1499] = 0x29847, [0x149a] = 0x298d1, + [0x149b] = 0x298c9, [0x149c] = 0x29ad0, [0x149d] = 0x29ad1, [0x149e] = 0x29b3f, + [0x149f] = 0x29b40, [0x14a0] = 0x29b41, [0x14a2] = 0x29b42, [0x14a3] = 0x29cc4, + [0x14a4] = 0x29d9b, [0x14a5] = 0x29d92, [0x14a6] = 0x29d93, [0x14a7] = 0x9b96, + [0x14a8] = 0x29d94, [0x14a9] = 0x29d95, [0x14ac] = 0x29ff3, [0x14ad] = 0x29ff4, + [0x14ae] = 0x29ff5, [0x14af] = 0x29ff6, [0x14b0] = 0x2a260, [0x14b1] = 0x2a29e, + [0x14b2] = 0x2a2a0, [0x14b3] = 0x2a2a1, [0x14b4] = 0x2a31c, [0x14b5] = 0x2a39f, + [0x14b6] = 0x20056, [0x14b7] = 0x20412, [0x14b8] = 0x2041f, [0x14b9] = 0x20415, + [0x14ba] = 0x20416, [0x14bb] = 0x20417, [0x14bd] = 0x20418, [0x14be] = 0x204c2, + [0x14bf] = 0x204c3, [0x14c0] = 0x204c4, [0x14c1] = 0x205a1, [0x14c2] = 0x2061b, + [0x14c3] = 0x2061c, [0x14c4] = 0x20671, [0x14c5] = 0x20813, [0x14c6] = 0x20b17, + [0x14c7] = 0x20b8f, [0x14c8] = 0x2105f, [0x14c9] = 0x21060, [0x14ca] = 0x210ac, + [0x14cd] = 0x21061, [0x14ce] = 0x21062, [0x14cf] = 0x21063, [0x14d0] = 0x21064, + [0x14d1] = 0x21065, [0x14d3] = 0x21499, [0x14d4] = 0x2149a, [0x14d5] = 0x2149b, + [0x14d6] = 0x2149c, [0x14d7] = 0x2149d, [0x14d8] = 0x2149e, [0x14d9] = 0x2149f, + [0x14da] = 0x214a0, [0x14db] = 0x218da, [0x14dc] = 0x218db, [0x14dd] = 0x218dc, + [0x14de] = 0x218dd, [0x14df] = 0x218de, [0x14e0] = 0x218df, [0x14e1] = 0x21ad5, + [0x14e2] = 0x21ad6, [0x14e3] = 0x21ad7, [0x14e4] = 0x21ad8, [0x14e5] = 0x21ae0, + [0x14e6] = 0x21bb4, [0x14e8] = 0x21f6e, [0x14e9] = 0x21f6f, [0x14ea] = 0x21f70, + [0x14eb] = 0x22163, [0x14ed] = 0x222d5, [0x14ee] = 0x222d6, [0x14ef] = 0x222d7, + [0x14f0] = 0x222d8, [0x14f1] = 0x22430, [0x14f2] = 0x228b5, [0x14f3] = 0x228b6, + [0x14f4] = 0x228c1, [0x14f5] = 0x228f7, [0x14f6] = 0x39a0, [0x14f7] = 0x228cb, + [0x14f8] = 0x228e8, [0x14fa] = 0x228e9, [0x14fb] = 0x228b7, [0x14fc] = 0x22a15, + [0x14fd] = 0x22de6, [0x14fe] = 0x22de7, [0x14ff] = 0x22de8, [0x1500] = 0x22de9, + [0x1501] = 0x22dea, [0x1502] = 0x22deb, [0x1504] = 0x2300b, [0x1505] = 0x2300c, + [0x1506] = 0x23064, [0x1507] = 0x232d4, [0x1508] = 0x232d5, [0x1509] = 0x232d6, + [0x150a] = 0x232d8, [0x150b] = 0x233a5, [0x150c] = 0x2005b, [0x150d] = 0x2370f, + [0x150e] = 0x23710, [0x1510] = 0x23711, [0x1511] = 0x23712, [0x1512] = 0x23713, + [0x1513] = 0x23714, [0x1514] = 0x23715, [0x1515] = 0x23716, [0x1516] = 0x23717, + [0x1517] = 0x23718, [0x1518] = 0x23719, [0x1519] = 0x2371a, [0x151a] = 0x2372f, + [0x151b] = 0x2371b, [0x151c] = 0x2371c, [0x151d] = 0x2373f, [0x151e] = 0x2371d, + [0x151f] = 0x2371e, [0x1520] = 0x2372c, [0x1521] = 0x2371f, [0x1522] = 0x23924, + [0x1523] = 0x239a4, [0x1524] = 0x239a5, [0x1525] = 0x26251, [0x1526] = 0x23afe, + [0x1527] = 0x23c11, [0x1528] = 0x23c12, [0x1529] = 0x23c13, [0x152a] = 0x23c54, + [0x152b] = 0x2405e, [0x152c] = 0x24021, [0x152d] = 0x2403f, [0x152e] = 0x24040, + [0x152f] = 0x24041, [0x1530] = 0x24042, [0x1531] = 0x24043, [0x1532] = 0x24044, + [0x1533] = 0x24020, [0x1534] = 0x24045, [0x1536] = 0x24046, [0x1537] = 0x240b0, + [0x1538] = 0x24047, [0x1539] = 0x24057, [0x153a] = 0x24001, [0x153b] = 0x240b1, + [0x153c] = 0x2405a, [0x153d] = 0x24048, [0x153e] = 0x24404, [0x153f] = 0x24405, + [0x1540] = 0x71f5, [0x1541] = 0x2444f, [0x1542] = 0x24450, [0x1543] = 0x24406, + [0x1544] = 0x24407, [0x1545] = 0x24408, [0x1546] = 0x24409, [0x1547] = 0x2440a, + [0x1548] = 0x2440b, [0x1549] = 0x2440c, [0x154a] = 0x2440d, [0x154b] = 0x2440e, + [0x154c] = 0x2440f, [0x154d] = 0x24410, [0x154e] = 0x24411, [0x154f] = 0x24533, + [0x1550] = 0x24534, [0x1551] = 0x24535, [0x1552] = 0x245fc, [0x1553] = 0x245fd, + [0x1554] = 0x248b0, [0x1555] = 0x248b1, [0x1556] = 0x248b2, [0x1557] = 0x248b3, + [0x1558] = 0x3f01, [0x1559] = 0x24a7b, [0x155a] = 0x24a7c, [0x155b] = 0x24a7d, + [0x155c] = 0x24a7e, [0x155d] = 0x24a7f, [0x155e] = 0x24a80, [0x155f] = 0x24a81, + [0x1560] = 0x24a82, [0x1561] = 0x24bf9, [0x1562] = 0x24cda, [0x1563] = 0x24ea1, + [0x1566] = 0x250ad, [0x1567] = 0x250ae, [0x1569] = 0x252c8, [0x156a] = 0x252c9, + [0x156b] = 0x252ca, [0x156c] = 0x25582, [0x156d] = 0x25583, [0x156e] = 0x25584, + [0x156f] = 0x25585, [0x1570] = 0x25586, [0x1571] = 0x25587, [0x1572] = 0x25588, + [0x1573] = 0x25589, [0x1574] = 0x2558a, [0x1576] = 0x25707, [0x1577] = 0x25708, + [0x1578] = 0x25701, [0x1579] = 0x25709, [0x157a] = 0x25702, [0x157b] = 0x2570a, + [0x157c] = 0x2570b, [0x157d] = 0x2570c, [0x157e] = 0x258a7, [0x157f] = 0x25898, + [0x1580] = 0x25899, [0x1581] = 0x2589a, [0x1582] = 0x2589b, [0x1583] = 0x2589c, + [0x1584] = 0x7a50, [0x1585] = 0x2589d, [0x1586] = 0x25a1a, [0x1587] = 0x25ab2, + [0x1588] = 0x25cb0, [0x1589] = 0x25cb1, [0x158b] = 0x25cb2, [0x158c] = 0x25cb3, + [0x158d] = 0x25cb4, [0x158e] = 0x25cb5, [0x158f] = 0x25cb6, [0x1590] = 0x25cc0, + [0x1591] = 0x25cb7, [0x1592] = 0x25cb8, [0x1593] = 0x25cb9, [0x1594] = 0x25cba, + [0x1595] = 0x25d1d, [0x1596] = 0x25f0c, [0x1597] = 0x25f0d, [0x1598] = 0x25f0e, + [0x1599] = 0x25f35, [0x159a] = 0x25f0f, [0x159b] = 0x25f10, [0x159c] = 0x25f11, + [0x159d] = 0x25f12, [0x159e] = 0x26122, [0x159f] = 0x26123, [0x15a0] = 0x26124, + [0x15a2] = 0x26125, [0x15a3] = 0x26126, [0x15a4] = 0x26127, [0x15a5] = 0x26128, + [0x15a6] = 0x26129, [0x15a7] = 0x2612a, [0x15a8] = 0x2612b, [0x15a9] = 0x2612c, + [0x15aa] = 0x2612d, [0x15ab] = 0x2612e, [0x15ac] = 0x26252, [0x15ad] = 0x26253, + [0x15ae] = 0x26319, [0x15af] = 0x263bf, [0x15b0] = 0x2648b, [0x15b1] = 0x2648c, + [0x15b2] = 0x26523, [0x15b3] = 0x26524, [0x15b4] = 0x265f1, [0x15b5] = 0x265d8, + [0x15b7] = 0x2684e, [0x15b8] = 0x2684f, [0x15b9] = 0x26855, [0x15ba] = 0x26850, + [0x15bb] = 0x26851, [0x15bc] = 0x26852, [0x15bd] = 0x26853, [0x15be] = 0x26802, + [0x15bf] = 0x26854, [0x15c0] = 0x268f1, [0x15c1] = 0x26924, [0x15c2] = 0x26ad1, + [0x15c3] = 0x26f7c, [0x15c4] = 0x26f7d, [0x15c5] = 0x26f7e, [0x15c6] = 0x26f7f, + [0x15c7] = 0x26f80, [0x15c8] = 0x26f9f, [0x15c9] = 0x26f81, [0x15ca] = 0x26f82, + [0x15cb] = 0x26f83, [0x15cc] = 0x26f84, [0x15cd] = 0x26f85, [0x15ce] = 0x26f86, + [0x15cf] = 0x26f87, [0x15d0] = 0x26f88, [0x15d1] = 0x26f9b, [0x15d2] = 0x26f89, + [0x15d3] = 0x26f8a, [0x15d4] = 0x26f8b, [0x15d5] = 0x26f8c, [0x15d7] = 0x26fa1, + [0x15d8] = 0x26f8d, [0x15d9] = 0x26f8e, [0x15da] = 0x271f3, [0x15db] = 0x271f4, + [0x15dc] = 0x271f5, [0x15dd] = 0x27424, [0x15de] = 0x27425, [0x15df] = 0x27426, + [0x15e0] = 0x27427, [0x15e1] = 0x27428, [0x15e2] = 0x27429, [0x15e3] = 0x2742a, + [0x15e5] = 0x2742b, [0x15e6] = 0x275cd, [0x15e7] = 0x27601, [0x15e8] = 0x2258d, + [0x15e9] = 0x27770, [0x15ea] = 0x27880, [0x15eb] = 0x27881, [0x15ec] = 0x27ac0, + [0x15ed] = 0x27ac1, [0x15ee] = 0x27ac2, [0x15ef] = 0x27ac3, [0x15f0] = 0x27ac4, + [0x15f1] = 0x27ac5, [0x15f2] = 0x27ac6, [0x15f3] = 0x27ac7, [0x15f4] = 0x27ac8, + [0x15f5] = 0x27cfe, [0x15f7] = 0x27dd9, [0x15f8] = 0x27ddc, [0x15f9] = 0x27dda, + [0x15fa] = 0x27e75, [0x15fb] = 0x27f58, [0x15fc] = 0x27f59, [0x15fd] = 0x27f5a, + [0x15fe] = 0x27f5b, [0x15ff] = 0x27f5c, [0x1600] = 0x280ec, [0x1601] = 0x481a, + [0x1602] = 0x280f3, [0x1603] = 0x28272, [0x1604] = 0x28273, [0x1605] = 0x28382, + [0x1606] = 0x28383, [0x1607] = 0x2842a, [0x1608] = 0x2842b, [0x1609] = 0x2842c, + [0x160a] = 0x2842d, [0x160b] = 0x285f6, [0x160c] = 0x28600, [0x160d] = 0x285f7, + [0x160e] = 0x285f8, [0x160f] = 0x285f9, [0x1611] = 0x28894, [0x1612] = 0x28895, + [0x1613] = 0x28896, [0x1614] = 0x2891b, [0x1615] = 0x28a86, [0x1616] = 0x28a4c, + [0x1617] = 0x28a4d, [0x1618] = 0x28a83, [0x161a] = 0x28a82, [0x161b] = 0x28a4e, + [0x161c] = 0x28a4f, [0x161d] = 0x28a50, [0x161e] = 0x28a51, [0x161f] = 0x28a81, + [0x1620] = 0x9387, [0x1621] = 0x28a52, [0x1622] = 0x28a53, [0x1623] = 0x28a54, + [0x1624] = 0x28a55, [0x1626] = 0x28a56, [0x1627] = 0x28a57, [0x1628] = 0x9385, + [0x1629] = 0x28a58, [0x162a] = 0x28a5b, [0x162b] = 0x28a5c, [0x162c] = 0x28a5d, + [0x162d] = 0x28a5e, [0x162e] = 0x28a5f, [0x162f] = 0x28a60, [0x1630] = 0x28a61, + [0x1631] = 0x28a7c, [0x1632] = 0x28a62, [0x1633] = 0x493c, [0x1635] = 0x28a63, + [0x1636] = 0x28a64, [0x1637] = 0x28d73, [0x1638] = 0x28f45, [0x1639] = 0x28f46, + [0x163a] = 0x28f47, [0x163b] = 0x28f4c, [0x163c] = 0x29012, [0x163e] = 0x29013, + [0x163f] = 0x29139, [0x1640] = 0x29103, [0x1641] = 0x2910d, [0x1642] = 0x29230, + [0x1643] = 0x292d5, [0x1644] = 0x293c0, [0x1645] = 0x294f2, [0x1646] = 0x294f3, + [0x1647] = 0x294f4, [0x1648] = 0x294f5, [0x1649] = 0x294f6, [0x164a] = 0x294f7, + [0x164b] = 0x295fa, [0x164c] = 0x295fb, [0x164d] = 0x29745, [0x164e] = 0x29746, + [0x164f] = 0x29849, [0x1650] = 0x298e7, [0x1651] = 0x298e8, [0x1652] = 0x29ad8, + [0x1653] = 0x29ad9, [0x1654] = 0x29b55, [0x1655] = 0x29b56, [0x1656] = 0x29b57, + [0x1657] = 0x29cda, [0x1658] = 0x29cdb, [0x1659] = 0x29cdc, [0x165a] = 0x29db8, + [0x165b] = 0x29db9, [0x165c] = 0x29dba, [0x165d] = 0x9bb1, [0x165e] = 0x29dbb, + [0x165f] = 0x29f89, [0x1660] = 0x29dbc, [0x1661] = 0x2a030, [0x1662] = 0x2a031, + [0x1663] = 0x2a032, [0x1664] = 0x2a033, [0x1666] = 0x2a034, [0x1667] = 0x2a035, + [0x1668] = 0x2a036, [0x1669] = 0x9d47, [0x166a] = 0x2a037, [0x166b] = 0x2a2b2, + [0x166c] = 0x2a390, [0x166d] = 0x2a326, [0x166e] = 0x2a3a2, [0x166f] = 0x2a438, + [0x1671] = 0x2042e, [0x1673] = 0x2042f, [0x1674] = 0x20430, [0x1675] = 0x2042a, + [0x1676] = 0x2042b, [0x1677] = 0x204c9, [0x1678] = 0x20537, [0x1679] = 0x20620, + [0x167a] = 0x20672, [0x167b] = 0x2081f, [0x167c] = 0x20965, [0x167d] = 0x209ca, + [0x167e] = 0x20ac0, [0x167f] = 0x20ac1, [0x1680] = 0x20ac2, [0x1681] = 0x210b7, + [0x1682] = 0x210b8, [0x1683] = 0x210b9, [0x1684] = 0x210ba, [0x1685] = 0x210bb, + [0x1688] = 0x210bc, [0x1689] = 0x210bd, [0x168a] = 0x210be, [0x168b] = 0x210f2, + [0x168c] = 0x214b5, [0x168d] = 0x214b7, [0x168e] = 0x214b8, [0x168f] = 0x210df, + [0x1690] = 0x214b9, [0x1691] = 0x214d5, [0x1692] = 0x214ba, [0x1693] = 0x214bb, + [0x1694] = 0x2154a, [0x1695] = 0x218f2, [0x1696] = 0x218f3, [0x1697] = 0x218f4, + [0x1698] = 0x218fa, [0x1699] = 0x218f5, [0x169a] = 0x21902, [0x169b] = 0x21ae2, + [0x169c] = 0x21ae3, [0x169d] = 0x21f8e, [0x169e] = 0x21f8b, [0x169f] = 0x222e4, + [0x16a0] = 0x222eb, [0x16a1] = 0x222e5, [0x16a2] = 0x22435, [0x16a3] = 0x22593, + [0x16a4] = 0x228ea, [0x16a5] = 0x228eb, [0x16a7] = 0x228ec, [0x16a8] = 0x228ed, + [0x16a9] = 0x22917, [0x16aa] = 0x228ee, [0x16ab] = 0x228ef, [0x16ac] = 0x228f0, + [0x16ad] = 0x22e0e, [0x16ae] = 0x22e0f, [0x16af] = 0x22e10, [0x16b0] = 0x22e19, + [0x16b1] = 0x22e18, [0x16b2] = 0x22e11, [0x16b3] = 0x22e12, [0x16b4] = 0x22e13, + [0x16b6] = 0x22e14, [0x16b7] = 0x22e15, [0x16b8] = 0x3a6b, [0x16b9] = 0x22e16, + [0x16ba] = 0x23065, [0x16bb] = 0x232ea, [0x16bc] = 0x232eb, [0x16bd] = 0x232ec, + [0x16be] = 0x232ed, [0x16c0] = 0x232ee, [0x16c1] = 0x233ac, [0x16c2] = 0x237c2, + [0x16c3] = 0x23769, [0x16c4] = 0x23781, [0x16c5] = 0x2376a, [0x16c6] = 0x2376b, + [0x16c7] = 0x2376c, [0x16c8] = 0x2376d, [0x16c9] = 0x2376e, [0x16ca] = 0x2376f, + [0x16cb] = 0x23770, [0x16cd] = 0x23771, [0x16ce] = 0x23772, [0x16cf] = 0x23773, + [0x16d0] = 0x2378c, [0x16d1] = 0x23774, [0x16d2] = 0x23775, [0x16d3] = 0x23776, + [0x16d4] = 0x23c24, [0x16d5] = 0x23c2a, [0x16d6] = 0x2408e, [0x16d7] = 0x240af, + [0x16d8] = 0x2408f, [0x16d9] = 0x24090, [0x16da] = 0x24091, [0x16dc] = 0x24092, + [0x16dd] = 0x24093, [0x16de] = 0x24094, [0x16df] = 0x24095, [0x16e0] = 0x24096, + [0x16e1] = 0x24097, [0x16e2] = 0x24098, [0x16e3] = 0x24099, [0x16e4] = 0x2409a, + [0x16e5] = 0x2409b, [0x16e6] = 0x2409c, [0x16e7] = 0x24439, [0x16e8] = 0x2443b, + [0x16e9] = 0x2443a, [0x16ea] = 0x2443c, [0x16eb] = 0x2443d, [0x16ec] = 0x2443e, + [0x16ed] = 0x2443f, [0x16ee] = 0x24470, [0x16ef] = 0x24440, [0x16f0] = 0x24441, + [0x16f1] = 0x248c0, [0x16f2] = 0x248c1, [0x16f3] = 0x24aa4, [0x16f4] = 0x24a97, + [0x16f5] = 0x24aa5, [0x16f6] = 0x24a98, [0x16f7] = 0x24a99, [0x16f8] = 0x24a9a, + [0x16fa] = 0x24a9b, [0x16fb] = 0x24aa6, [0x16fc] = 0x24a9c, [0x16fd] = 0x24a9d, + [0x16fe] = 0x24a9e, [0x16ff] = 0x24a9f, [0x1700] = 0x28ace, [0x1701] = 0x24ac8, + [0x1702] = 0x24aa0, [0x1703] = 0x24b19, [0x1704] = 0x24c0d, [0x1705] = 0x250bf, + [0x1706] = 0x252e9, [0x1707] = 0x252ea, [0x1708] = 0x255a2, [0x1709] = 0x255a3, + [0x170a] = 0x255a4, [0x170b] = 0x255a5, [0x170c] = 0x255a6, [0x170d] = 0x25715, + [0x170e] = 0x25717, [0x170f] = 0x258bf, [0x1710] = 0x258c0, [0x1711] = 0x258c1, + [0x1712] = 0x258c2, [0x1713] = 0x258c3, [0x1714] = 0x258c4, [0x1715] = 0x258c5, + [0x1716] = 0x2190d, [0x1717] = 0x25a23, [0x1718] = 0x25abe, [0x1719] = 0x25d03, + [0x171a] = 0x25d04, [0x171b] = 0x25d05, [0x171c] = 0x25d06, [0x171d] = 0x25d07, + [0x171e] = 0x25d08, [0x171f] = 0x25d09, [0x1720] = 0x25d0a, [0x1721] = 0x25d0b, + [0x1722] = 0x25d0c, [0x1723] = 0x25d20, [0x1724] = 0x25d0d, [0x1725] = 0x25d0e, + [0x1726] = 0x25d0f, [0x1728] = 0x25f26, [0x1729] = 0x25f27, [0x172a] = 0x25f28, + [0x172b] = 0x2615d, [0x172c] = 0x2615e, [0x172d] = 0x2615f, [0x172e] = 0x26160, + [0x172f] = 0x26161, [0x1730] = 0x26162, [0x1731] = 0x26163, [0x1732] = 0x26164, + [0x1733] = 0x26165, [0x1734] = 0x26257, [0x1735] = 0x263cf, [0x1736] = 0x263d0, + [0x1737] = 0x26499, [0x1738] = 0x2649a, [0x1739] = 0x265ea, [0x173a] = 0x265eb, + [0x173b] = 0x265ec, [0x173c] = 0x2687e, [0x173d] = 0x2687f, [0x173e] = 0x26880, + [0x1741] = 0x26881, [0x1742] = 0x26882, [0x1743] = 0x268f3, [0x1744] = 0x26925, + [0x1745] = 0x2699f, [0x1746] = 0x269a0, [0x1747] = 0x269f3, [0x1748] = 0x26a00, + [0x1749] = 0x26feb, [0x174a] = 0x26fec, [0x174b] = 0x26fed, [0x174c] = 0x26fee, + [0x174d] = 0x26fef, [0x174f] = 0x455c, [0x1750] = 0x26ff0, [0x1751] = 0x26ff1, + [0x1752] = 0x26ff2, [0x1753] = 0x26ff3, [0x1754] = 0x26ff4, [0x1755] = 0x26ff5, + [0x1756] = 0x26ff9, [0x1757] = 0x26ffa, [0x1758] = 0x26ffb, [0x1759] = 0x26ffc, + [0x175a] = 0x26ffd, [0x175b] = 0x26ffe, [0x175c] = 0x26fff, [0x175d] = 0x27000, + [0x175f] = 0x27001, [0x1760] = 0x27002, [0x1761] = 0x27203, [0x1762] = 0x27486, + [0x1763] = 0x27479, [0x1765] = 0x2747a, [0x1766] = 0x2747b, [0x1767] = 0x2747c, + [0x1768] = 0x27484, [0x1769] = 0x2747d, [0x176a] = 0x2747e, [0x176b] = 0x2747f, + [0x176c] = 0x27786, [0x176d] = 0x27787, [0x176e] = 0x27800, [0x176f] = 0x27801, + [0x1770] = 0x27888, [0x1771] = 0x27889, [0x1772] = 0x2788a, [0x1773] = 0x27af5, + [0x1775] = 0x27b25, [0x1776] = 0x27af6, [0x1777] = 0x27deb, [0x1778] = 0x27dec, + [0x1779] = 0x27ded, [0x177a] = 0x27dee, [0x177b] = 0x4787, [0x177c] = 0x27def, + [0x177d] = 0x27df0, [0x177e] = 0x27f6c, [0x177f] = 0x28121, [0x1780] = 0x28122, + [0x1781] = 0x28123, [0x1782] = 0x28124, [0x1783] = 0x28125, [0x1784] = 0x28126, + [0x1785] = 0x2827b, [0x1786] = 0x2827c, [0x1787] = 0x28391, [0x1788] = 0x28392, + [0x1789] = 0x28393, [0x178a] = 0x2860e, [0x178b] = 0x2860f, [0x178c] = 0x28610, + [0x178d] = 0x288b3, [0x178e] = 0x28936, [0x178f] = 0x28ac6, [0x1790] = 0x28aa1, + [0x1791] = 0x28aa2, [0x1792] = 0x93b9, [0x1793] = 0x28aa3, [0x1794] = 0x28acc, + [0x1795] = 0x28aa4, [0x1796] = 0x28aa5, [0x1797] = 0x28aa6, [0x1798] = 0x28acb, + [0x1799] = 0x28aa7, [0x179b] = 0x28aa8, [0x179c] = 0x28aa9, [0x179d] = 0x28aaa, + [0x179f] = 0x28aab, [0x17a0] = 0x28aac, [0x17a1] = 0x28aad, [0x17a2] = 0x93bf, + [0x17a3] = 0x28aae, [0x17a4] = 0x28aaf, [0x17a5] = 0x28ab0, [0x17a6] = 0x28d8c, + [0x17a7] = 0x28d8d, [0x17a8] = 0x28d8e, [0x17aa] = 0x28d92, [0x17ab] = 0x28d8f, + [0x17ac] = 0x28f52, [0x17ad] = 0x28f53, [0x17ae] = 0x28f54, [0x17af] = 0x28f55, + [0x17b0] = 0x29129, [0x17b2] = 0x292f3, [0x17b3] = 0x292f4, [0x17b4] = 0x2950d, + [0x17b5] = 0x2950e, [0x17b6] = 0x2950f, [0x17b7] = 0x29510, [0x17b8] = 0x29614, + [0x17b9] = 0x29771, [0x17ba] = 0x29772, [0x17bb] = 0x2990f, [0x17bc] = 0x29904, + [0x17bd] = 0x29906, [0x17bf] = 0x29907, [0x17c0] = 0x29adc, [0x17c1] = 0x29add, + [0x17c2] = 0x29b6d, [0x17c3] = 0x29b79, [0x17c4] = 0x29b6e, [0x17c6] = 0x29cec, + [0x17c7] = 0x29ddd, [0x17c8] = 0x29dde, [0x17c9] = 0x29ddf, [0x17ca] = 0x29de0, + [0x17cb] = 0x29de1, [0x17cc] = 0x29de2, [0x17cd] = 0x29de3, [0x17ce] = 0x29de4, + [0x17cf] = 0x29e3a, [0x17d0] = 0x29de5, [0x17d1] = 0x9bcf, [0x17d2] = 0x29de6, + [0x17d3] = 0x2a06b, [0x17d4] = 0x2a06c, [0x17d5] = 0x2444e, [0x17d6] = 0x9d64, + [0x17d7] = 0x2a2bd, [0x17d8] = 0x2a2be, [0x17d9] = 0x2a2bf, [0x17da] = 0x2a334, + [0x17db] = 0x9ebf, [0x17dc] = 0x2a512, [0x17dd] = 0x20440, [0x17de] = 0x20441, + [0x17df] = 0x21102, [0x17e0] = 0x21103, [0x17e1] = 0x21104, [0x17e2] = 0x21105, + [0x17e3] = 0x21106, [0x17e4] = 0x214d7, [0x17e5] = 0x214cc, [0x17e6] = 0x21698, + [0x17e7] = 0x21906, [0x17e8] = 0x21907, [0x17e9] = 0x219af, [0x17ea] = 0x219b0, + [0x17eb] = 0x21aea, [0x17ec] = 0x21af2, [0x17ed] = 0x21fa2, [0x17ee] = 0x21fa3, + [0x17ef] = 0x21fa4, [0x17f0] = 0x22176, [0x17f1] = 0x222f5, [0x17f2] = 0x222f6, + [0x17f3] = 0x222f7, [0x17f5] = 0x2293b, [0x17f6] = 0x22925, [0x17f7] = 0x2293a, + [0x17f8] = 0x2293c, [0x17f9] = 0x2293d, [0x17fa] = 0x2293e, [0x17fb] = 0x22e37, + [0x17fc] = 0x22e38, [0x17fd] = 0x22e39, [0x17fe] = 0x22e3a, [0x17ff] = 0x22e3b, + [0x1800] = 0x22e3c, [0x1801] = 0x22e3d, [0x1802] = 0x22e3e, [0x1803] = 0x22e3f, + [0x1804] = 0x22e4b, [0x1806] = 0x22e40, [0x1807] = 0x23022, [0x1808] = 0x23067, + [0x1809] = 0x230d3, [0x180a] = 0x232fa, [0x180c] = 0x237bc, [0x180f] = 0x237a5, + [0x1810] = 0x3c07, [0x1811] = 0x237b6, [0x1813] = 0x237a6, [0x1814] = 0x237bb, + [0x1815] = 0x237a7, [0x1816] = 0x237a8, [0x1817] = 0x237a9, [0x1818] = 0x237aa, + [0x1819] = 0x237ab, [0x181a] = 0x237ac, [0x181b] = 0x237bf, [0x181c] = 0x237ad, + [0x181d] = 0x237ae, [0x181e] = 0x237af, [0x181f] = 0x2392e, [0x1820] = 0x23b00, + [0x1821] = 0x2409d, [0x1822] = 0x2409e, [0x1823] = 0x240cb, [0x1824] = 0x240cc, + [0x1825] = 0x240cd, [0x1826] = 0x240ce, [0x1827] = 0x240cf, [0x1829] = 0x2409f, + [0x182a] = 0x240d0, [0x182b] = 0x240d1, [0x182c] = 0x240d2, [0x182d] = 0x240d3, + [0x182e] = 0x240d4, [0x1831] = 0x2445d, [0x1832] = 0x2445e, [0x1833] = 0x2445f, + [0x1834] = 0x24460, [0x1835] = 0x3f05, [0x1836] = 0x24aba, [0x1837] = 0x24abc, + [0x1839] = 0x24ab5, [0x183a] = 0x24abd, [0x183b] = 0x24ab6, [0x183c] = 0x24ab7, + [0x183d] = 0x24ab8, [0x183e] = 0x24aa8, [0x1840] = 0x24bfe, [0x1841] = 0x24bfc, + [0x1842] = 0x24ee1, [0x1843] = 0x250c4, [0x1844] = 0x250c5, [0x1845] = 0x25314, + [0x1846] = 0x255ae, [0x1847] = 0x255af, [0x1848] = 0x255b0, [0x1849] = 0x255b1, + [0x184a] = 0x255b9, [0x184b] = 0x258e7, [0x184c] = 0x25d46, [0x184e] = 0x25d47, + [0x184f] = 0x25d48, [0x1850] = 0x25d49, [0x1851] = 0x25d1e, [0x1852] = 0x25d1f, + [0x1853] = 0x25d4a, [0x1854] = 0x25d4b, [0x1855] = 0x25d4c, [0x1856] = 0x25d4d, + [0x1857] = 0x25d4e, [0x1859] = 0x25f46, [0x185a] = 0x25f4b, [0x185b] = 0x26190, + [0x185c] = 0x26191, [0x185e] = 0x26192, [0x185f] = 0x26193, [0x1860] = 0x26194, + [0x1861] = 0x2625b, [0x1862] = 0x265f2, [0x1863] = 0x265f8, [0x1864] = 0x265f9, + [0x1865] = 0x26894, [0x1866] = 0x268a4, [0x1867] = 0x26897, [0x1868] = 0x26898, + [0x1869] = 0x26929, [0x186a] = 0x269ae, [0x186b] = 0x26aaf, [0x186c] = 0x27059, + [0x186d] = 0x2705a, [0x186f] = 0x2705b, [0x1870] = 0x2705c, [0x1871] = 0x2705d, + [0x1872] = 0x2705e, [0x1873] = 0x2705f, [0x1874] = 0x27060, [0x1875] = 0x27061, + [0x1876] = 0x26faa, [0x1877] = 0x27062, [0x1878] = 0x27063, [0x1879] = 0x27064, + [0x187a] = 0x27065, [0x187b] = 0x27066, [0x187c] = 0x27067, [0x187d] = 0x27068, + [0x187e] = 0x27069, [0x187f] = 0x2706a, [0x1880] = 0x2706b, [0x1881] = 0x2706c, + [0x1882] = 0x2706d, [0x1883] = 0x2706e, [0x1884] = 0x2706f, [0x1886] = 0x274b2, + [0x1887] = 0x274b3, [0x1888] = 0x274b4, [0x1889] = 0x45f9, [0x188a] = 0x274b5, + [0x188b] = 0x274b6, [0x188c] = 0x274b7, [0x188d] = 0x274b8, [0x188e] = 0x274b9, + [0x188f] = 0x274ba, [0x1890] = 0x274bb, [0x1891] = 0x27788, [0x1892] = 0x89b8, + [0x1893] = 0x27b19, [0x1894] = 0x27b1a, [0x1895] = 0x27b1b, [0x1896] = 0x27c16, + [0x1897] = 0x27e0c, [0x1898] = 0x27e0d, [0x1899] = 0x27e0e, [0x189a] = 0x27e0f, + [0x189c] = 0x27f83, [0x189d] = 0x27f84, [0x189e] = 0x27f85, [0x189f] = 0x28283, + [0x18a0] = 0x28284, [0x18a1] = 0x283b0, [0x18a3] = 0x28626, [0x18a4] = 0x28627, + [0x18a5] = 0x28636, [0x18a6] = 0x28628, [0x18a7] = 0x28629, [0x18aa] = 0x28ae7, + [0x18ab] = 0x28ae8, [0x18ac] = 0x28ae9, [0x18ad] = 0x4953, [0x18ae] = 0x28aea, + [0x18af] = 0x28aeb, [0x18b1] = 0x28aec, [0x18b2] = 0x28aed, [0x18b3] = 0x28aee, + [0x18b4] = 0x28aef, [0x18b5] = 0x28af0, [0x18b6] = 0x28af1, [0x18b7] = 0x28b0c, + [0x18b8] = 0x28af2, [0x18b9] = 0x28af3, [0x18ba] = 0x28af4, [0x18bb] = 0x28af5, + [0x18bc] = 0x28af6, [0x18bd] = 0x28af7, [0x18be] = 0x28af8, [0x18bf] = 0x28da3, + [0x18c0] = 0x28da4, [0x18c1] = 0x28da5, [0x18c2] = 0x28da6, [0x18c3] = 0x28da7, + [0x18c5] = 0x28f5c, [0x18c7] = 0x2914b, [0x18c8] = 0x291e1, [0x18c9] = 0x29315, + [0x18cb] = 0x29316, [0x18cc] = 0x29317, [0x18cd] = 0x2952c, [0x18ce] = 0x2952d, + [0x18cf] = 0x29622, [0x18d0] = 0x29623, [0x18d1] = 0x29796, [0x18d2] = 0x29797, + [0x18d4] = 0x2992e, [0x18d5] = 0x29930, [0x18d6] = 0x29931, [0x18d8] = 0x29adf, + [0x18d9] = 0x29b8b, [0x18da] = 0x29b8c, [0x18dc] = 0x29b8d, [0x18dd] = 0x29cfc, + [0x18de] = 0x29cfd, [0x18df] = 0x29cfe, [0x18e0] = 0x29cff, [0x18e1] = 0x29e17, + [0x18e2] = 0x29e2d, [0x18e3] = 0x29e18, [0x18e4] = 0x9bf3, [0x18e5] = 0x29e19, + [0x18e7] = 0x29e12, [0x18e8] = 0x29e1a, [0x18e9] = 0x29e1b, [0x18ea] = 0x29e1c, + [0x18eb] = 0x4c69, [0x18ed] = 0x2a097, [0x18ef] = 0x2a098, [0x18f0] = 0x2a099, + [0x18f2] = 0x2a3c4, [0x18f3] = 0x2044f, [0x18f4] = 0x204cd, [0x18f5] = 0x20ac7, + [0x18f6] = 0x2111c, [0x18f7] = 0x2111d, [0x18f8] = 0x2111e, [0x18f9] = 0x214e7, + [0x18fa] = 0x214e9, [0x18fb] = 0x214ea, [0x18fc] = 0x214eb, [0x18fd] = 0x21915, + [0x18fe] = 0x21cf1, [0x18ff] = 0x21cf2, [0x1900] = 0x21fb6, [0x1901] = 0x225a0, + [0x1902] = 0x2294a, [0x1903] = 0x22a20, [0x1904] = 0x22e60, [0x1905] = 0x22e61, + [0x1906] = 0x22e41, [0x1907] = 0x22e62, [0x1908] = 0x23303, [0x1909] = 0x23304, + [0x190a] = 0x237d9, [0x190b] = 0x237da, [0x190c] = 0x237db, [0x190d] = 0x237dc, + [0x190e] = 0x237dd, [0x1910] = 0x237de, [0x1911] = 0x237df, [0x1912] = 0x237e0, + [0x1913] = 0x237e1, [0x1914] = 0x237e2, [0x1915] = 0x3c12, [0x1916] = 0x237e3, + [0x1918] = 0x23c31, [0x1919] = 0x24105, [0x191a] = 0x24106, [0x191b] = 0x24107, + [0x191c] = 0x24472, [0x191d] = 0x2448a, [0x191e] = 0x2448b, [0x191f] = 0x24488, + [0x1921] = 0x2448c, [0x1922] = 0x2448d, [0x1923] = 0x2448e, [0x1924] = 0x2448f, + [0x1925] = 0x24490, [0x1926] = 0x24542, [0x1927] = 0x24543, [0x1929] = 0x24ac1, + [0x192a] = 0x24ac2, [0x192b] = 0x24ac3, [0x192c] = 0x24ac4, [0x192d] = 0x250cb, + [0x192e] = 0x25322, [0x1931] = 0x255c3, [0x1932] = 0x255c4, [0x1933] = 0x255c5, + [0x1934] = 0x255c6, [0x1935] = 0x2571e, [0x1936] = 0x25725, [0x1937] = 0x258f3, + [0x1938] = 0x258f4, [0x193a] = 0x258f5, [0x193b] = 0x25a38, [0x193c] = 0x25a48, + [0x193d] = 0x25aca, [0x193e] = 0x7c4f, [0x193f] = 0x25d7a, [0x1940] = 0x25d7b, + [0x1941] = 0x25f55, [0x1942] = 0x25f56, [0x1943] = 0x261b1, [0x1944] = 0x261b2, + [0x1945] = 0x261b3, [0x1947] = 0x261b4, [0x1948] = 0x261b5, [0x1949] = 0x264a4, + [0x194a] = 0x26600, [0x194b] = 0x26601, [0x194c] = 0x26602, [0x194d] = 0x268ac, + [0x194f] = 0x269b3, [0x1950] = 0x270b6, [0x1951] = 0x270b7, [0x1952] = 0x270b8, + [0x1953] = 0x270b9, [0x1954] = 0x270ba, [0x1955] = 0x270bb, [0x1956] = 0x270bc, + [0x1957] = 0x270bd, [0x1958] = 0x270be, [0x1959] = 0x270bf, [0x195a] = 0x270c0, + [0x195b] = 0x270c1, [0x195c] = 0x270c2, [0x195d] = 0x270c3, [0x195e] = 0x270c4, + [0x195f] = 0x270c5, [0x1960] = 0x270c6, [0x1961] = 0x270c7, [0x1962] = 0x274e3, + [0x1963] = 0x274e4, [0x1964] = 0x274e5, [0x1965] = 0x274e6, [0x1966] = 0x274e7, + [0x1968] = 0x277b5, [0x1969] = 0x277a1, [0x196a] = 0x27895, [0x196b] = 0x27b3b, + [0x196c] = 0x27b3c, [0x196d] = 0x27b3d, [0x196e] = 0x27b3e, [0x196f] = 0x27c14, + [0x1970] = 0x27e20, [0x1971] = 0x27e21, [0x1972] = 0x27e22, [0x1973] = 0x27e23, + [0x1974] = 0x27e24, [0x1975] = 0x27f96, [0x1976] = 0x27f97, [0x1977] = 0x27f98, + [0x1978] = 0x28194, [0x1979] = 0x28195, [0x197a] = 0x28196, [0x197b] = 0x28197, + [0x197c] = 0x28198, [0x197d] = 0x2828f, [0x197e] = 0x28290, [0x197f] = 0x283bc, + [0x1980] = 0x2843b, [0x1981] = 0x2863d, [0x1983] = 0x288df, [0x1984] = 0x2891e, + [0x1985] = 0x28b23, [0x1986] = 0x28b24, [0x1987] = 0x28b49, [0x1988] = 0x28b25, + [0x1989] = 0x28b26, [0x198a] = 0x28b27, [0x198b] = 0x28b28, [0x198c] = 0x9425, + [0x198d] = 0x28b29, [0x198e] = 0x28b2a, [0x198f] = 0x28b2e, [0x1990] = 0x28b2f, + [0x1991] = 0x28b4e, [0x1992] = 0x28b30, [0x1994] = 0x28b31, [0x1995] = 0x28b32, + [0x1996] = 0x28b33, [0x1997] = 0x28b34, [0x1998] = 0x28b35, [0x1999] = 0x28b36, + [0x199b] = 0x28b37, [0x199c] = 0x28b50, [0x199d] = 0x28b38, [0x199f] = 0x28b39, + [0x19a0] = 0x28b3a, [0x19a1] = 0x28b3b, [0x19a2] = 0x28b3c, [0x19a3] = 0x28b3d, + [0x19a4] = 0x28b3e, [0x19a5] = 0x28db8, [0x19a6] = 0x28db9, [0x19a7] = 0x28f62, + [0x19a8] = 0x28f63, [0x19a9] = 0x29041, [0x19aa] = 0x2916d, [0x19ac] = 0x29352, + [0x19ad] = 0x29337, [0x19ae] = 0x293db, [0x19af] = 0x2953f, [0x19b0] = 0x29634, + [0x19b1] = 0x2985b, [0x19b2] = 0x29946, [0x19b3] = 0x2995a, [0x19b4] = 0x2995b, + [0x19b5] = 0x29ae1, [0x19b6] = 0x29ae2, [0x19b7] = 0x29ae3, [0x19b8] = 0x29ae4, + [0x19b9] = 0x29ba7, [0x19ba] = 0x29ba8, [0x19bb] = 0x29ba9, [0x19bc] = 0x29d0f, + [0x19bd] = 0x29d2b, [0x19be] = 0x29e56, [0x19bf] = 0x29e57, [0x19c0] = 0x29e58, + [0x19c1] = 0x29e5e, [0x19c2] = 0x29e59, [0x19c3] = 0x29e5a, [0x19c4] = 0x29e5b, + [0x19c5] = 0x29e5c, [0x19c7] = 0x29e68, [0x19c9] = 0x2a12c, [0x19ca] = 0x2a0e2, + [0x19cb] = 0x2a0f3, [0x19cc] = 0x2a2d2, [0x19cd] = 0x2a356, [0x19ce] = 0x2a3ce, + [0x19cf] = 0x2a461, [0x19d0] = 0x2a69b, [0x19d1] = 0x2a6b4, [0x19d2] = 0x2045c, + [0x19d4] = 0x204d2, [0x19d5] = 0x20571, [0x19d6] = 0x20673, [0x19d7] = 0x2082c, + [0x19d8] = 0x20b94, [0x19da] = 0x2113f, [0x19db] = 0x21140, [0x19dc] = 0x214f9, + [0x19dd] = 0x214fa, [0x19de] = 0x214fd, [0x19df] = 0x214fb, [0x19e0] = 0x2191c, + [0x19e1] = 0x2191d, [0x19e2] = 0x21aff, [0x19e3] = 0x21b00, [0x19e4] = 0x21cf7, + [0x19e5] = 0x24cfe, [0x19e7] = 0x224b6, [0x19e8] = 0x22954, [0x19e9] = 0x22e77, + [0x19ea] = 0x22e79, [0x19eb] = 0x22e7a, [0x19ec] = 0x22e7b, [0x19ed] = 0x23069, + [0x19ee] = 0x23802, [0x19ef] = 0x23803, [0x19f0] = 0x23804, [0x19f1] = 0x23805, + [0x19f2] = 0x23806, [0x19f3] = 0x23807, [0x19f4] = 0x23808, [0x19f5] = 0x23809, + [0x19f6] = 0x2380a, [0x19f7] = 0x2380b, [0x19f8] = 0x23835, [0x19fa] = 0x23c39, + [0x19fb] = 0x2411e, [0x19fc] = 0x2411f, [0x19fd] = 0x24120, [0x19fe] = 0x24121, + [0x1a00] = 0x24122, [0x1a01] = 0x24123, [0x1a02] = 0x24124, [0x1a03] = 0x2412c, + [0x1a04] = 0x244b3, [0x1a05] = 0x244b5, [0x1a06] = 0x244b6, [0x1a07] = 0x244b7, + [0x1a08] = 0x244b8, [0x1a09] = 0x24ad0, [0x1a0a] = 0x24cfa, [0x1a0b] = 0x24f07, + [0x1a0c] = 0x24fbd, [0x1a0d] = 0x250d7, [0x1a0e] = 0x250d2, [0x1a0f] = 0x255db, + [0x1a10] = 0x255d6, [0x1a11] = 0x2045d, [0x1a12] = 0x25a43, [0x1a13] = 0x25acf, + [0x1a14] = 0x25da3, [0x1a15] = 0x25da4, [0x1a16] = 0x25da5, [0x1a17] = 0x25da6, + [0x1a18] = 0x25da7, [0x1a19] = 0x25da8, [0x1a1a] = 0x25da9, [0x1a1b] = 0x25f5d, + [0x1a1c] = 0x25f5e, [0x1a1d] = 0x261c9, [0x1a1e] = 0x261ca, [0x1a1f] = 0x261cb, + [0x1a20] = 0x261cc, [0x1a21] = 0x26606, [0x1a22] = 0x26607, [0x1a24] = 0x268c5, + [0x1a25] = 0x268f5, [0x1a26] = 0x269b4, [0x1a27] = 0x269b8, [0x1a28] = 0x269b5, + [0x1a29] = 0x270fd, [0x1a2b] = 0x270fe, [0x1a2c] = 0x270ff, [0x1a2d] = 0x27100, + [0x1a2e] = 0x27101, [0x1a2f] = 0x27102, [0x1a30] = 0x27103, [0x1a31] = 0x27109, + [0x1a32] = 0x27104, [0x1a33] = 0x27105, [0x1a34] = 0x27106, [0x1a35] = 0x27107, + [0x1a36] = 0x27511, [0x1a37] = 0x27512, [0x1a38] = 0x27513, [0x1a39] = 0x27514, + [0x1a3a] = 0x27515, [0x1a3c] = 0x27898, [0x1a3d] = 0x27899, [0x1a3e] = 0x27e3c, + [0x1a3f] = 0x27e2d, [0x1a40] = 0x27e2e, [0x1a42] = 0x281bb, [0x1a43] = 0x281bc, + [0x1a44] = 0x4878, [0x1a45] = 0x2843d, [0x1a46] = 0x28647, [0x1a47] = 0x28648, + [0x1a48] = 0x28649, [0x1a49] = 0x2864a, [0x1a4a] = 0x287e1, [0x1a4b] = 0x287e7, + [0x1a4c] = 0x288eb, [0x1a4d] = 0x28920, [0x1a4e] = 0x28938, [0x1a4f] = 0x28b62, + [0x1a50] = 0x28b67, [0x1a51] = 0x28b68, [0x1a52] = 0x28b69, [0x1a53] = 0x28b6a, + [0x1a54] = 0x28b6b, [0x1a55] = 0x28b6d, [0x1a56] = 0x28b6e, [0x1a57] = 0x28b6f, + [0x1a58] = 0x28b70, [0x1a59] = 0x28b71, [0x1a5a] = 0x28b72, [0x1a5b] = 0x28b8f, + [0x1a5c] = 0x28b73, [0x1a5d] = 0x28b74, [0x1a5e] = 0x28b75, [0x1a5f] = 0x28b76, + [0x1a60] = 0x28b77, [0x1a61] = 0x28dc9, [0x1a62] = 0x28dca, [0x1a63] = 0x95e6, + [0x1a64] = 0x28dcb, [0x1a65] = 0x28dcc, [0x1a66] = 0x28dcd, [0x1a67] = 0x29051, + [0x1a6a] = 0x29245, [0x1a6b] = 0x29559, [0x1a6c] = 0x2955a, [0x1a6d] = 0x2955b, + [0x1a6e] = 0x29640, [0x1a6f] = 0x297cf, [0x1a70] = 0x2985e, [0x1a71] = 0x2997b, + [0x1a72] = 0x29a93, [0x1a73] = 0x29bbc, [0x1a74] = 0x29d16, [0x1a75] = 0x29d30, + [0x1a77] = 0x29e8d, [0x1a78] = 0x29e8e, [0x1a79] = 0x9c2f, [0x1a7a] = 0x29e8f, + [0x1a7b] = 0x29e90, [0x1a7c] = 0x29e91, [0x1a7d] = 0x29e92, [0x1a7e] = 0x29e93, + [0x1a7f] = 0x29e94, [0x1a80] = 0x29e95, [0x1a81] = 0x29e96, [0x1a82] = 0x2a123, + [0x1a83] = 0x2a114, [0x1a84] = 0x2a2db, [0x1a85] = 0x2a40a, [0x1a86] = 0x2a5ce, + [0x1a87] = 0x20466, [0x1a88] = 0x20468, [0x1a89] = 0x20467, [0x1a8a] = 0x204d3, + [0x1a8b] = 0x21163, [0x1a8c] = 0x21504, [0x1a8d] = 0x2169e, [0x1a8e] = 0x21926, + [0x1a8f] = 0x2192a, [0x1a90] = 0x2296c, [0x1a91] = 0x22964, [0x1a92] = 0x22e8f, + [0x1a93] = 0x22e90, [0x1a94] = 0x23034, [0x1a95] = 0x2330e, [0x1a96] = 0x23825, + [0x1a97] = 0x23826, [0x1a98] = 0x23827, [0x1a9a] = 0x23828, [0x1a9b] = 0x6b0c, + [0x1a9d] = 0x23829, [0x1a9e] = 0x2382a, [0x1a9f] = 0x2382b, [0x1aa0] = 0x2382c, + [0x1aa1] = 0x23c3e, [0x1aa2] = 0x24142, [0x1aa3] = 0x24143, [0x1aa4] = 0x24133, + [0x1aa5] = 0x244c1, [0x1aa6] = 0x244c2, [0x1aa7] = 0x244c3, [0x1aa8] = 0x24ad6, + [0x1aa9] = 0x24ad7, [0x1aaa] = 0x255e1, [0x1aab] = 0x255e2, [0x1aac] = 0x2572b, + [0x1aad] = 0x25ad1, [0x1aae] = 0x25dcc, [0x1aaf] = 0x25dcd, [0x1ab0] = 0x25dce, + [0x1ab1] = 0x25dcf, [0x1ab2] = 0x261de, [0x1ab3] = 0x261df, [0x1ab4] = 0x261e0, + [0x1ab5] = 0x261e1, [0x1ab6] = 0x268f6, [0x1ab7] = 0x2712c, [0x1ab9] = 0x27154, + [0x1aba] = 0x2712d, [0x1abb] = 0x2712e, [0x1abc] = 0x27541, [0x1abd] = 0x27542, + [0x1abe] = 0x277c7, [0x1abf] = 0x278a0, [0x1ac0] = 0x278a1, [0x1ac1] = 0x27b70, + [0x1ac2] = 0x27b71, [0x1ac3] = 0x27b72, [0x1ac5] = 0x27e34, [0x1ac6] = 0x27e35, + [0x1ac7] = 0x27e36, [0x1ac8] = 0x27fa6, [0x1ac9] = 0x281cc, [0x1acb] = 0x28299, + [0x1acc] = 0x288f4, [0x1acd] = 0x28b9b, [0x1ace] = 0x28b9e, [0x1acf] = 0x28b9f, + [0x1ad0] = 0x28ba0, [0x1ad1] = 0x28ba1, [0x1ad2] = 0x28ba2, [0x1ad3] = 0x28ba3, + [0x1ad4] = 0x28ba4, [0x1ad5] = 0x28ba5, [0x1ad6] = 0x28ba6, [0x1ad7] = 0x28ba7, + [0x1ad8] = 0x28ba8, [0x1ad9] = 0x28ddb, [0x1ada] = 0x28ddc, [0x1adb] = 0x28ddd, + [0x1adc] = 0x28dd7, [0x1add] = 0x28dde, [0x1ade] = 0x28ddf, [0x1adf] = 0x29059, + [0x1ae0] = 0x29446, [0x1ae1] = 0x29565, [0x1ae2] = 0x29649, [0x1ae4] = 0x297dd, + [0x1ae5] = 0x29995, [0x1ae6] = 0x29996, [0x1ae7] = 0x29997, [0x1ae8] = 0x29bd4, + [0x1ae9] = 0x29bd6, [0x1aea] = 0x29d26, [0x1aeb] = 0x9c47, [0x1aec] = 0x4c88, + [0x1aed] = 0x29ec8, [0x1aee] = 0x29ec5, [0x1aef] = 0x29ec6, [0x1af0] = 0x29ec7, + [0x1af1] = 0x2a151, [0x1af2] = 0x2a152, [0x1af3] = 0x2a153, [0x1af4] = 0x2a154, + [0x1af5] = 0x2a155, [0x1af6] = 0x2a2de, [0x1af8] = 0x2046d, [0x1af9] = 0x204d5, + [0x1afa] = 0x21172, [0x1afb] = 0x221ae, [0x1afc] = 0x2230f, [0x1afd] = 0x2296b, + [0x1afe] = 0x2296d, [0x1aff] = 0x2296e, [0x1b00] = 0x22978, [0x1b01] = 0x22e98, + [0x1b02] = 0x22e99, [0x1b03] = 0x22e9a, [0x1b04] = 0x23844, [0x1b05] = 0x2385c, + [0x1b06] = 0x23845, [0x1b07] = 0x23b01, [0x1b08] = 0x24158, [0x1b09] = 0x24159, + [0x1b0a] = 0x2415a, [0x1b0c] = 0x244d9, [0x1b0d] = 0x244d6, [0x1b0e] = 0x24ada, + [0x1b0f] = 0x24adf, [0x1b10] = 0x24adb, [0x1b11] = 0x24d03, [0x1b12] = 0x255ef, + [0x1b13] = 0x7936, [0x1b14] = 0x25733, [0x1b15] = 0x25ad2, [0x1b16] = 0x25de1, + [0x1b17] = 0x25f6f, [0x1b18] = 0x26264, [0x1b19] = 0x2660e, [0x1b1a] = 0x27150, + [0x1b1b] = 0x27151, [0x1b1c] = 0x27152, [0x1b1d] = 0x27556, [0x1b1e] = 0x27557, + [0x1b1f] = 0x27558, [0x1b21] = 0x27b81, [0x1b22] = 0x27b82, [0x1b23] = 0x27c1d, + [0x1b24] = 0x27c1e, [0x1b25] = 0x27e43, [0x1b26] = 0x27faa, [0x1b27] = 0x288fd, + [0x1b29] = 0x28bc6, [0x1b2a] = 0x28bc7, [0x1b2b] = 0x28bd9, [0x1b2c] = 0x28bd7, + [0x1b2e] = 0x28bc8, [0x1b2f] = 0x28bc9, [0x1b30] = 0x28bca, [0x1b31] = 0x28bcb, + [0x1b32] = 0x28bda, [0x1b34] = 0x28bcc, [0x1b35] = 0x28bcd, [0x1b36] = 0x28bce, + [0x1b37] = 0x28bcf, [0x1b38] = 0x28bd0, [0x1b39] = 0x28bd1, [0x1b3a] = 0x28bbc, + [0x1b3b] = 0x28de1, [0x1b3c] = 0x28de2, [0x1b3d] = 0x28de3, [0x1b3e] = 0x291a9, + [0x1b3f] = 0x2924e, [0x1b40] = 0x29577, [0x1b43] = 0x299ac, [0x1b44] = 0x299ad, + [0x1b45] = 0x29ab6, [0x1b46] = 0x29be5, [0x1b47] = 0x29ef8, [0x1b48] = 0x29eea, + [0x1b49] = 0x29f8d, [0x1b4a] = 0x29eeb, [0x1b4b] = 0x2a195, [0x1b4c] = 0x2046e, + [0x1b4d] = 0x204d8, [0x1b4e] = 0x21183, [0x1b4f] = 0x216a3, [0x1b50] = 0x21930, + [0x1b51] = 0x21b0f, [0x1b52] = 0x22979, [0x1b53] = 0x2297a, [0x1b54] = 0x22ea7, + [0x1b55] = 0x22ea8, [0x1b56] = 0x22ea9, [0x1b57] = 0x22eaa, [0x1b58] = 0x23319, + [0x1b59] = 0x23850, [0x1b5a] = 0x23851, [0x1b5b] = 0x23852, [0x1b5c] = 0x6b15, + [0x1b5d] = 0x23868, [0x1b5e] = 0x23853, [0x1b5f] = 0x23854, [0x1b60] = 0x248e2, + [0x1b61] = 0x24adc, [0x1b62] = 0x25915, [0x1b63] = 0x25916, [0x1b64] = 0x25a4f, + [0x1b65] = 0x25df5, [0x1b66] = 0x25df6, [0x1b67] = 0x25df7, [0x1b68] = 0x261f4, + [0x1b69] = 0x264cc, [0x1b6a] = 0x2660f, [0x1b6b] = 0x27166, [0x1b6c] = 0x27167, + [0x1b6e] = 0x27168, [0x1b6f] = 0x278a4, [0x1b70] = 0x27b8b, [0x1b71] = 0x27b8c, + [0x1b72] = 0x281fa, [0x1b73] = 0x28be6, [0x1b74] = 0x28bed, [0x1b75] = 0x28bee, + [0x1b76] = 0x28bef, [0x1b77] = 0x28bf0, [0x1b78] = 0x28bfe, [0x1b79] = 0x28de7, + [0x1b7a] = 0x28de8, [0x1b7b] = 0x291b3, [0x1b7c] = 0x291e4, [0x1b7d] = 0x29583, + [0x1b7e] = 0x29aec, [0x1b80] = 0x29f16, [0x1b83] = 0x29f17, [0x1b84] = 0x2a1c3, + [0x1b85] = 0x2a1ac, [0x1b86] = 0x2a2ed, [0x1b89] = 0x2a5b4, [0x1b8b] = 0x2118a, + [0x1b8c] = 0x2118b, [0x1b8d] = 0x21934, [0x1b8e] = 0x21b14, [0x1b8f] = 0x21fdf, + [0x1b90] = 0x224bb, [0x1b91] = 0x2297f, [0x1b92] = 0x22981, [0x1b93] = 0x22ead, + [0x1b94] = 0x22eae, [0x1b95] = 0x23862, [0x1b96] = 0x2386e, [0x1b98] = 0x2416e, + [0x1b9a] = 0x24717, [0x1b9b] = 0x24ae6, [0x1b9c] = 0x24c10, [0x1b9d] = 0x25919, + [0x1b9f] = 0x26610, [0x1ba0] = 0x26af2, [0x1ba1] = 0x27176, [0x1ba2] = 0x27177, + [0x1ba3] = 0x27b95, [0x1ba4] = 0x27b96, [0x1ba5] = 0x28c00, [0x1ba6] = 0x28c01, + [0x1ba7] = 0x28c31, [0x1ba9] = 0x28c1c, [0x1baa] = 0x2906d, [0x1bab] = 0x29bf4, + [0x1bac] = 0x29bf5, [0x1bad] = 0x29d3d, [0x1bae] = 0x29f32, [0x1baf] = 0x29f33, + [0x1bb0] = 0x2a2f4, [0x1bb2] = 0x20473, [0x1bb3] = 0x21937, [0x1bb5] = 0x23871, + [0x1bb6] = 0x25e0f, [0x1bb8] = 0x25e0e, [0x1bb9] = 0x26611, [0x1bba] = 0x27185, + [0x1bbb] = 0x28c14, [0x1bbc] = 0x28c15, [0x1bbd] = 0x28c16, [0x1bbe] = 0x28c17, + [0x1bbf] = 0x28c18, [0x1bc0] = 0x28c19, [0x1bc1] = 0x28c1a, [0x1bc2] = 0x291c3, + [0x1bc3] = 0x29f42, [0x1bc4] = 0x29f43, [0x1bc5] = 0x29f44, [0x1bc6] = 0x29f48, + [0x1bc7] = 0x2a1fb, [0x1bc8] = 0x216a5, [0x1bc9] = 0x219b8, [0x1bca] = 0x22eb2, + [0x1bcb] = 0x2303d, [0x1bcc] = 0x23872, [0x1bcd] = 0x244e7, [0x1bce] = 0x244e8, + [0x1bcf] = 0x25359, [0x1bd0] = 0x2573a, [0x1bd1] = 0x25e14, [0x1bd2] = 0x261ff, + [0x1bd3] = 0x269c0, [0x1bd4] = 0x2718d, [0x1bd5] = 0x4584, [0x1bd6] = 0x2718e, + [0x1bd8] = 0x28c22, [0x1bdb] = 0x29c04, [0x1bdc] = 0x29c29, [0x1bdd] = 0x29f51, + [0x1bde] = 0x29f66, [0x1bdf] = 0x2a20e, [0x1be2] = 0x2119b, [0x1be3] = 0x2119c, + [0x1be4] = 0x22316, [0x1be5] = 0x22986, [0x1be6] = 0x22987, [0x1be8] = 0x28c2c, + [0x1be9] = 0x28c30, [0x1bea] = 0x28c28, [0x1beb] = 0x2965f, [0x1bed] = 0x2417e, + [0x1bee] = 0x25e19, [0x1bef] = 0x2820a, [0x1bf0] = 0x28c36, [0x1bf1] = 0x28dfc, + [0x1bf2] = 0x29f6d, [0x1bf3] = 0x29f6e, [0x1bf4] = 0x2a6c6, [0x1bf5] = 0x53b5, + [0x1bf6] = 0x2387b, [0x1bf7] = 0x26206, [0x1bf8] = 0x2759f, [0x1bf9] = 0x2a232, + [0x1bfa] = 0x2820d, [0x1bfb] = 0x2298b, [0x1bfc] = 0x28c3b, [0x1bfe] = 0x2a23d, + [0x1bff] = 0x28c3c, [0x1c00] = 0x28c3d, }; /* For the non-CJK ideograph glyphs (all in plane 1) we can use the tables in cns11643l1. - CJK Ideographs. The table can be created using + CJK Ideographs in the UCS plane 0: range U+3400..U+9FA5. + The table can be created using + + egrep '^0x' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | egrep '^0x(3[4-9A-F]|[4-9])' | perl tab.pl + + where tab.pl is + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + $n=0; + while (<>) { + local($ucs4, $cns, %rest) = split; + local($u)=hex($ucs4); + local($c)=hex($cns); + printf ("\n ") if ($n % 2 == 0); + ++$n; + printf (" [0x%04x] = \"\\x%02x\\x%02x\\x%02x\",", $u - 0x3400, + int($c/0x10000), int(($c&0xff00)/256), $c&255); + } + printf ("\n"); + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +*/ +const char __cns11643_from_ucs4p0_tab[][3] = +{ + [0x0000] = "\x06\x22\x2c", [0x0001] = "\x04\x22\x24", + [0x0005] = "\x06\x21\x23", [0x0006] = "\x0f\x21\x6c", + [0x000c] = "\x04\x21\x57", [0x0016] = "\x04\x23\x36", + [0x001c] = "\x04\x28\x35", [0x0021] = "\x03\x34\x3b", + [0x0024] = "\x03\x39\x6d", [0x0028] = "\x03\x27\x41", + [0x0029] = "\x03\x28\x6c", [0x002b] = "\x03\x23\x23", + [0x002c] = "\x04\x23\x37", [0x002d] = "\x04\x25\x34", + [0x002e] = "\x03\x40\x34", [0x0030] = "\x04\x21\x59", + [0x0031] = "\x03\x21\x75", [0x0032] = "\x03\x21\x6e", + [0x0033] = "\x03\x21\x71", [0x0034] = "\x03\x21\x73", + [0x0036] = "\x0f\x21\x44", [0x0038] = "\x06\x23\x4e", + [0x0039] = "\x03\x22\x71", [0x003a] = "\x04\x22\x31", + [0x003b] = "\x03\x22\x69", [0x003c] = "\x03\x22\x6a", + [0x0041] = "\x05\x23\x34", [0x0042] = "\x03\x24\x4a", + [0x0043] = "\x03\x24\x47", [0x0044] = "\x03\x24\x4d", + [0x0045] = "\x06\x25\x71", [0x0049] = "\x03\x27\x46", + [0x004a] = "\x05\x25\x25", [0x004b] = "\x04\x25\x39", + [0x004c] = "\x04\x25\x3c", [0x004d] = "\x03\x27\x45", + [0x004e] = "\x05\x25\x2b", [0x004f] = "\x04\x25\x3b", + [0x0050] = "\x04\x25\x38", [0x0051] = "\x03\x27\x50", + [0x0053] = "\x0f\x25\x4a", [0x0057] = "\x03\x2b\x31", + [0x0058] = "\x06\x2e\x5a", [0x0059] = "\x04\x28\x39", + [0x005a] = "\x03\x2b\x30", [0x005b] = "\x05\x28\x21", + [0x005c] = "\x04\x28\x3a", [0x005d] = "\x03\x2b\x2a", + [0x005e] = "\x04\x28\x37", [0x005f] = "\x04\x28\x3c", + [0x0063] = "\x05\x2b\x6c", [0x0064] = "\x03\x34\x49", + [0x0065] = "\x03\x2f\x52", [0x0066] = "\x04\x2b\x65", + [0x0067] = "\x06\x35\x38", [0x006e] = "\x04\x30\x45", + [0x006f] = "\x03\x34\x3e", [0x0070] = "\x03\x34\x48", + [0x0071] = "\x04\x30\x4a", [0x0073] = "\x04\x36\x38", + [0x0074] = "\x03\x39\x73", [0x0075] = "\x04\x36\x32", + [0x0076] = "\x04\x36\x37", [0x0077] = "\x06\x46\x55", + [0x0079] = "\x06\x49\x7b", [0x007a] = "\x03\x39\x74", + [0x007b] = "\x03\x40\x35", [0x007c] = "\x03\x40\x38", + [0x007d] = "\x03\x40\x3b", [0x007e] = "\x04\x3c\x2c", + [0x007f] = "\x04\x3c\x2d", [0x0080] = "\x04\x3c\x28", + [0x0081] = "\x04\x3c\x2a", [0x0082] = "\x05\x44\x57", + [0x0083] = "\x04\x42\x37", [0x0084] = "\x04\x42\x33", + [0x0085] = "\x04\x42\x2e", [0x0086] = "\x03\x45\x78", + [0x0087] = "\x06\x5a\x73", [0x0088] = "\x04\x42\x2f", + [0x0089] = "\x03\x45\x73", [0x008a] = "\x04\x4f\x59", + [0x008b] = "\x03\x45\x72", [0x008c] = "\x03\x45\x6f", + [0x008d] = "\x03\x45\x77", [0x008e] = "\x04\x42\x32", + [0x0091] = "\x04\x48\x7b", [0x0092] = "\x03\x4b\x26", + [0x0093] = "\x03\x4b\x25", [0x0094] = "\x04\x48\x7d", + [0x0095] = "\x03\x4b\x24", [0x0096] = "\x03\x4b\x28", + [0x0097] = "\x03\x4b\x2a", [0x0099] = "\x03\x50\x32", + [0x009a] = "\x04\x4f\x5d", [0x009b] = "\x05\x53\x59", + [0x009c] = "\x04\x4f\x5b", [0x009d] = "\x03\x54\x3f", + [0x009e] = "\x03\x57\x53", [0x009f] = "\x04\x5a\x67", + [0x00a0] = "\x04\x5a\x68", [0x00a1] = "\x04\x5f\x49", + [0x00a4] = "\x04\x63\x2f", [0x00a5] = "\x03\x5c\x33", + [0x00a6] = "\x03\x5c\x31", [0x00a7] = "\x07\x52\x74", + [0x00a8] = "\x07\x57\x4c", [0x00a9] = "\x04\x6a\x41", + [0x00aa] = "\x03\x61\x3c", [0x00ab] = "\x04\x22\x33", + [0x00ac] = "\x0f\x26\x5a", [0x00ad] = "\x04\x2b\x69", + [0x00af] = "\x03\x57\x54", [0x00b0] = "\x03\x21\x76", + [0x00b2] = "\x03\x22\x79", [0x00b3] = "\x03\x24\x55", + [0x00b4] = "\x05\x23\x37", [0x00b5] = "\x06\x25\x7b", + [0x00b6] = "\x06\x25\x7d", [0x00b7] = "\x03\x24\x56", + [0x00b8] = "\x03\x2b\x38", [0x00b9] = "\x07\x4d\x3d", + [0x00ba] = "\x03\x2a\x4c", [0x00bb] = "\x04\x30\x4c", + [0x00bc] = "\x05\x31\x26", [0x00bd] = "\x04\x36\x3d", + [0x00be] = "\x04\x3c\x32", [0x00bf] = "\x04\x6a\x42", + [0x00c2] = "\x03\x2b\x3a", [0x00c3] = "\x03\x39\x78", + [0x00c4] = "\x04\x49\x22", [0x00c5] = "\x03\x21\x50", + [0x00c7] = "\x03\x23\x21", [0x00c8] = "\x03\x24\x58", + [0x00c9] = "\x05\x25\x2e", [0x00ca] = "\x03\x27\x57", + [0x00cb] = "\x03\x27\x56", [0x00cc] = "\x03\x27\x58", + [0x00ce] = "\x04\x28\x43", [0x00cf] = "\x03\x2b\x3c", + [0x00d0] = "\x03\x2f\x5d", [0x00d1] = "\x03\x2f\x5c", + [0x00d3] = "\x04\x30\x4d", [0x00d4] = "\x03\x39\x7b", + [0x00d5] = "\x03\x39\x7c", [0x00d6] = "\x04\x3c\x34", + [0x00d7] = "\x03\x45\x79", [0x00d8] = "\x05\x31\x29", + [0x00da] = "\x04\x21\x61", [0x00db] = "\x06\x22\x41", + [0x00dc] = "\x03\x21\x7e", [0x00dd] = "\x04\x22\x3c", + [0x00de] = "\x05\x22\x30", [0x00df] = "\x04\x23\x3e", + [0x00e0] = "\x04\x23\x3f", [0x00e1] = "\x04\x25\x4a", + [0x00e2] = "\x04\x25\x4c", [0x00e3] = "\x04\x25\x48", + [0x00e4] = "\x04\x25\x47", [0x00e7] = "\x03\x2b\x41", + [0x00e8] = "\x03\x2b\x45", [0x00e9] = "\x03\x2b\x42", + [0x00ec] = "\x05\x2b\x7c", [0x00ed] = "\x04\x30\x53", + [0x00ee] = "\x03\x2f\x67", [0x00ef] = "\x03\x2f\x69", + [0x00f1] = "\x04\x30\x57", [0x00f2] = "\x04\x30\x58", + [0x00f3] = "\x04\x30\x52", [0x00f4] = "\x05\x31\x2c", + [0x00f5] = "\x04\x30\x54", [0x00f6] = "\x04\x30\x59", + [0x00f7] = "\x03\x3a\x24", [0x00f8] = "\x06\x50\x6c", + [0x00f9] = "\x04\x36\x42", [0x00fa] = "\x04\x36\x45", + [0x00fb] = "\x03\x3a\x22", [0x00fc] = "\x05\x3d\x70", + [0x00fd] = "\x03\x40\x42", [0x00fe] = "\x04\x42\x41", + [0x0100] = "\x04\x42\x43", [0x0101] = "\x04\x42\x42", + [0x0102] = "\x04\x42\x3c", [0x0103] = "\x03\x45\x7d", + [0x0104] = "\x03\x45\x7b", [0x0105] = "\x04\x42\x3f", + [0x0106] = "\x04\x42\x3e", [0x0107] = "\x03\x45\x7c", + [0x010a] = "\x04\x49\x23", [0x010b] = "\x04\x4f\x62", + [0x010c] = "\x04\x4f\x61", [0x010d] = "\x04\x4f\x63", + [0x010e] = "\x05\x61\x3b", [0x010f] = "\x04\x55\x6c", + [0x0110] = "\x07\x3e\x7d", [0x0111] = "\x04\x5f\x4a", + [0x0112] = "\x04\x63\x30", [0x0113] = "\x04\x21\x64", + [0x0115] = "\x04\x22\x40", [0x0117] = "\x04\x23\x44", + [0x0118] = "\x03\x24\x64", [0x0119] = "\x04\x25\x4f", + [0x011a] = "\x06\x29\x6f", [0x011c] = "\x06\x2f\x27", + [0x011d] = "\x04\x2b\x75", [0x011e] = "\x03\x2f\x6b", + [0x0120] = "\x04\x30\x5a", [0x0121] = "\x04\x36\x4b", + [0x0122] = "\x03\x46\x22", [0x0123] = "\x04\x55\x6f", + [0x0124] = "\x03\x54\x43", [0x0125] = "\x04\x55\x70", + [0x0126] = "\x05\x53\x63", [0x0127] = "\x04\x5a\x6e", + [0x0128] = "\x04\x30\x5c", [0x0129] = "\x04\x36\x4d", + [0x012a] = "\x05\x3d\x78", [0x012c] = "\x06\x29\x72", + [0x012d] = "\x03\x34\x53", [0x012e] = "\x05\x70\x78", + [0x012f] = "\x04\x23\x4b", [0x0130] = "\x06\x26\x38", + [0x0131] = "\x04\x2b\x77", [0x0132] = "\x03\x3a\x25", + [0x0133] = "\x06\x50\x76", [0x0134] = "\x04\x3c\x3e", + [0x0135] = "\x05\x44\x6c", [0x0136] = "\x04\x6d\x53", + [0x0137] = "\x06\x26\x36", [0x0138] = "\x04\x36\x50", + [0x0139] = "\x03\x21\x58", [0x013a] = "\x06\x23\x71", + [0x013b] = "\x03\x23\x2c", [0x013c] = "\x06\x50\x7a", + [0x013d] = "\x03\x27\x64", [0x013e] = "\x04\x21\x2b", + [0x013f] = "\x06\x21\x3b", [0x0140] = "\x06\x28\x64", + [0x0141] = "\x04\x25\x56", [0x0142] = "\x03\x23\x30", + [0x0143] = "\x05\x22\x3c", [0x0144] = "\x03\x23\x2e", + [0x0145] = "\x03\x24\x6a", [0x0146] = "\x03\x24\x69", + [0x0147] = "\x03\x24\x68", [0x0148] = "\x03\x27\x68", + [0x0149] = "\x06\x2a\x2a", [0x014a] = "\x03\x2b\x4c", + [0x014b] = "\x03\x2f\x70", [0x014c] = "\x04\x2b\x7a", + [0x014d] = "\x03\x2f\x71", [0x014e] = "\x04\x36\x51", + [0x014f] = "\x06\x51\x22", [0x0150] = "\x05\x4c\x31", + [0x0151] = "\x03\x46\x24", [0x0152] = "\x04\x49\x27", + [0x0154] = "\x03\x60\x70", [0x0155] = "\x03\x21\x5d", + [0x0156] = "\x03\x2f\x72", [0x0157] = "\x06\x3d\x61", + [0x0158] = "\x03\x34\x56", [0x0159] = "\x04\x49\x29", + [0x015a] = "\x05\x21\x41", [0x015b] = "\x03\x21\x5f", + [0x015c] = "\x03\x23\x32", [0x015e] = "\x04\x25\x5a", + [0x015f] = "\x04\x28\x57", [0x0160] = "\x03\x3f\x78", + [0x0161] = "\x03\x46\x27", [0x0162] = "\x04\x47\x56", + [0x0163] = "\x04\x21\x6b", [0x0164] = "\x03\x22\x30", + [0x0165] = "\x03\x22\x2c", [0x0166] = "\x03\x23\x38", + [0x0167] = "\x03\x23\x36", [0x0169] = "\x03\x24\x6c", + [0x016a] = "\x04\x23\x51", [0x016b] = "\x03\x24\x6b", + [0x016c] = "\x03\x24\x71", [0x016d] = "\x04\x23\x54", + [0x016e] = "\x04\x23\x59", [0x016f] = "\x03\x24\x72", + [0x0170] = "\x04\x23\x53", [0x0171] = "\x03\x24\x6f", + [0x0172] = "\x03\x24\x6e", [0x0173] = "\x03\x24\x7a", + [0x0175] = "\x0f\x23\x49", [0x0176] = "\x03\x25\x25", + [0x0177] = "\x03\x27\x7a", [0x0178] = "\x03\x27\x6d", + [0x0179] = "\x04\x25\x5d", [0x017a] = "\x03\x27\x76", + [0x017b] = "\x05\x25\x42", [0x017c] = "\x06\x2a\x39", + [0x0180] = "\x03\x2b\x52", [0x0181] = "\x03\x2b\x60", + [0x0182] = "\x03\x2b\x5f", [0x0183] = "\x03\x2b\x62", + [0x0184] = "\x03\x2b\x5a", [0x0185] = "\x04\x28\x59", + [0x0186] = "\x04\x28\x5c", [0x0187] = "\x03\x2b\x56", + [0x0188] = "\x0f\x29\x5c", [0x018f] = "\x04\x2c\x25", + [0x0190] = "\x03\x2f\x7d", [0x0191] = "\x04\x2b\x7e", + [0x0192] = "\x03\x2f\x75", [0x0193] = "\x03\x2f\x7c", + [0x0194] = "\x04\x2c\x21", [0x0195] = "\x04\x2b\x7d", + [0x0196] = "\x06\x35\x7d", [0x0197] = "\x03\x30\x24", + [0x0198] = "\x05\x2c\x43", [0x019f] = "\x03\x34\x5d", + [0x01a0] = "\x03\x34\x65", [0x01a1] = "\x04\x30\x6a", + [0x01a2] = "\x05\x36\x70", [0x01a3] = "\x03\x34\x63", + [0x01a4] = "\x03\x34\x5c", [0x01a5] = "\x04\x30\x70", + [0x01a6] = "\x03\x34\x5a", [0x01a7] = "\x04\x30\x73", + [0x01a8] = "\x04\x30\x71", [0x01a9] = "\x04\x30\x6d", + [0x01aa] = "\x04\x30\x6c", [0x01ab] = "\x0f\x33\x43", + [0x01b4] = "\x03\x38\x53", [0x01b5] = "\x04\x30\x6f", + [0x01b6] = "\x05\x36\x76", [0x01b7] = "\x03\x3a\x32", + [0x01b8] = "\x04\x36\x67", [0x01b9] = "\x03\x3a\x35", + [0x01ba] = "\x03\x3a\x2c", [0x01bb] = "\x04\x36\x5e", + [0x01bc] = "\x04\x36\x59", [0x01bd] = "\x03\x3a\x39", + [0x01be] = "\x03\x3a\x3e", [0x01bf] = "\x03\x3a\x2d", + [0x01c0] = "\x04\x36\x60", [0x01c1] = "\x03\x3a\x3d", + [0x01c2] = "\x04\x36\x5f", [0x01c3] = "\x03\x3a\x37", + [0x01c4] = "\x06\x47\x39", [0x01c5] = "\x05\x36\x79", + [0x01c6] = "\x05\x36\x7a", [0x01c7] = "\x03\x3a\x30", + [0x01c8] = "\x04\x36\x58", [0x01c9] = "\x04\x36\x65", + [0x01ca] = "\x04\x36\x63", [0x01cb] = "\x03\x3a\x41", + [0x01cc] = "\x05\x36\x6e", [0x01cd] = "\x03\x3a\x3f", + [0x01d0] = "\x03\x3a\x3a", [0x01d3] = "\x05\x3e\x39", + [0x01d4] = "\x04\x3c\x4a", [0x01d5] = "\x04\x3c\x46", + [0x01d6] = "\x03\x40\x4f", [0x01d7] = "\x05\x3e\x3d", + [0x01d8] = "\x04\x3c\x47", [0x01d9] = "\x04\x3c\x4c", + [0x01da] = "\x03\x40\x4d", [0x01db] = "\x03\x40\x50", + [0x01dc] = "\x06\x51\x32", [0x01e2] = "\x04\x42\x52", + [0x01e3] = "\x03\x46\x32", [0x01e4] = "\x03\x46\x2f", + [0x01e5] = "\x03\x46\x2d", [0x01e6] = "\x04\x42\x4f", + [0x01e7] = "\x04\x42\x4a", [0x01e8] = "\x04\x42\x55", + [0x01e9] = "\x03\x46\x2b", [0x01ea] = "\x03\x4b\x3a", + [0x01eb] = "\x04\x42\x53", [0x01ec] = "\x04\x42\x56", + [0x01ed] = "\x04\x42\x51", [0x01f0] = "\x05\x45\x22", + [0x01f1] = "\x04\x49\x30", [0x01f2] = "\x04\x49\x2c", + [0x01f3] = "\x03\x4b\x42", [0x01f4] = "\x04\x49\x2d", + [0x01f5] = "\x03\x4b\x36", [0x01f6] = "\x07\x21\x4e", + [0x01fb] = "\x04\x4f\x6b", [0x01fc] = "\x04\x4f\x6c", + [0x01fd] = "\x03\x50\x41", [0x01fe] = "\x04\x4f\x67", + [0x01ff] = "\x04\x4f\x6a", [0x0200] = "\x04\x4f\x6f", + [0x0201] = "\x03\x50\x3c", [0x0202] = "\x03\x50\x3a", + [0x0205] = "\x07\x37\x37", [0x0206] = "\x04\x55\x72", + [0x0207] = "\x03\x54\x46", [0x0208] = "\x04\x55\x73", + [0x0209] = "\x04\x4f\x6d", [0x020a] = "\x05\x61\x40", + [0x020b] = "\x04\x5a\x70", [0x020c] = "\x03\x57\x56", + [0x020d] = "\x05\x61\x45", [0x0210] = "\x04\x5f\x4c", + [0x0211] = "\x05\x67\x59", [0x0213] = "\x05\x6b\x73", + [0x0214] = "\x03\x5c\x35", [0x0215] = "\x03\x5e\x27", + [0x0216] = "\x04\x66\x32", [0x0219] = "\x03\x60\x2e", + [0x021a] = "\x03\x60\x2d", [0x021b] = "\x04\x6c\x6c", + [0x021c] = "\x07\x62\x2f", [0x021d] = "\x03\x22\x32", + [0x021e] = "\x03\x22\x21", [0x021f] = "\x03\x23\x3d", + [0x0220] = "\x05\x25\x53", [0x0221] = "\x03\x27\x7e", + [0x0222] = "\x03\x2b\x64", [0x0223] = "\x03\x30\x26", + [0x0224] = "\x04\x42\x58", [0x0225] = "\x04\x63\x32", + [0x0226] = "\x03\x22\x33", [0x0227] = "\x03\x25\x2e", + [0x0228] = "\x04\x23\x5f", [0x0229] = "\x03\x25\x39", + [0x022a] = "\x03\x25\x3a", [0x022b] = "\x04\x23\x5e", + [0x022c] = "\x03\x25\x3d", [0x022d] = "\x03\x25\x3f", + [0x022f] = "\x03\x25\x3b", [0x0230] = "\x03\x25\x34", + [0x0231] = "\x03\x28\x27", [0x0232] = "\x04\x25\x6d", + [0x0233] = "\x03\x28\x2b", [0x0234] = "\x03\x28\x2c", + [0x0236] = "\x03\x2b\x76", [0x0237] = "\x06\x2f\x65", + [0x0238] = "\x03\x2b\x74", [0x0239] = "\x03\x2b\x75", + [0x023a] = "\x03\x2b\x73", [0x023b] = "\x03\x2b\x6f", + [0x023f] = "\x03\x30\x29", [0x0240] = "\x04\x2c\x2f", + [0x0241] = "\x04\x2c\x31", [0x0242] = "\x03\x30\x2d", + [0x0243] = "\x03\x30\x2c", [0x0244] = "\x03\x30\x2e", + [0x0245] = "\x03\x30\x31", [0x0247] = "\x03\x34\x6c", + [0x0248] = "\x03\x34\x6d", [0x0249] = "\x03\x34\x73", + [0x024a] = "\x03\x34\x6a", [0x024b] = "\x0f\x33\x57", + [0x024d] = "\x04\x31\x21", [0x024e] = "\x04\x36\x6b", + [0x024f] = "\x03\x3a\x46", [0x0250] = "\x04\x36\x6e", + [0x0251] = "\x03\x3a\x51", [0x0252] = "\x06\x47\x4e", + [0x0253] = "\x03\x3a\x48", [0x0255] = "\x03\x3a\x4d", + [0x0259] = "\x04\x3c\x59", [0x025a] = "\x04\x3c\x5b", + [0x025b] = "\x03\x40\x53", [0x025c] = "\x03\x40\x55", + [0x025d] = "\x04\x3c\x56", [0x025e] = "\x04\x3c\x58", + [0x0260] = "\x04\x42\x5e", [0x0261] = "\x04\x42\x5d", + [0x0262] = "\x04\x42\x5b", [0x0263] = "\x03\x46\x3b", + [0x0264] = "\x04\x42\x5f", [0x0265] = "\x03\x46\x39", + [0x0267] = "\x07\x21\x6a", [0x0268] = "\x03\x4b\x52", + [0x0269] = "\x03\x4b\x48", [0x026a] = "\x04\x49\x33", + [0x026b] = "\x03\x4b\x4a", [0x026c] = "\x03\x4b\x4e", + [0x026d] = "\x0f\x4e\x25", [0x026e] = "\x0f\x4e\x2e", + [0x026f] = "\x04\x49\x2a", [0x0270] = "\x03\x50\x44", + [0x0271] = "\x04\x4f\x78", [0x0272] = "\x03\x50\x47", + [0x0273] = "\x03\x50\x42", [0x0274] = "\x03\x50\x43", + [0x0275] = "\x03\x50\x46", [0x0276] = "\x03\x50\x45", + [0x0277] = "\x04\x55\x7c", [0x0278] = "\x03\x54\x4d", + [0x0279] = "\x03\x54\x4a", [0x027a] = "\x04\x55\x7b", + [0x027b] = "\x07\x3f\x30", [0x027c] = "\x03\x57\x5d", + [0x027e] = "\x07\x46\x44", [0x0280] = "\x05\x6b\x76", + [0x0281] = "\x03\x60\x72", [0x0282] = "\x04\x6c\x6e", + [0x0283] = "\x05\x37\x3c", [0x0284] = "\x03\x4d\x41", + [0x0285] = "\x03\x2b\x78", [0x0287] = "\x04\x28\x61", + [0x0289] = "\x05\x25\x58", [0x028a] = "\x04\x36\x77", + [0x028b] = "\x04\x42\x60", [0x028c] = "\x03\x46\x47", + [0x028d] = "\x04\x5a\x7a", [0x028e] = "\x03\x22\x3a", + [0x028f] = "\x03\x23\x46", [0x0290] = "\x03\x23\x48", + [0x0292] = "\x04\x23\x65", [0x0293] = "\x03\x25\x4a", + [0x0294] = "\x04\x25\x71", [0x0295] = "\x05\x25\x59", + [0x0296] = "\x04\x25\x77", [0x0297] = "\x04\x25\x73", + [0x0298] = "\x04\x25\x78", [0x029a] = "\x03\x2b\x7d", + [0x029c] = "\x04\x31\x25", [0x029d] = "\x06\x3e\x42", + [0x029e] = "\x03\x34\x7a", [0x029f] = "\x03\x3a\x55", + [0x02a0] = "\x04\x3c\x5c", [0x02a1] = "\x03\x50\x3e", + [0x02a2] = "\x03\x21\x74", [0x02a3] = "\x03\x23\x4c", + [0x02a4] = "\x03\x23\x4a", [0x02a5] = "\x04\x22\x56", + [0x02a6] = "\x04\x22\x59", [0x02a7] = "\x04\x22\x55", + [0x02a8] = "\x03\x23\x49", [0x02a9] = "\x03\x25\x52", + [0x02aa] = "\x03\x25\x57", [0x02ab] = "\x03\x25\x50", + [0x02ac] = "\x03\x25\x4f", [0x02ad] = "\x03\x25\x4d", + [0x02ae] = "\x03\x25\x54", [0x02b0] = "\x03\x28\x31", + [0x02b1] = "\x03\x28\x3b", [0x02b2] = "\x04\x25\x7b", + [0x02b3] = "\x03\x28\x42", [0x02b4] = "\x03\x28\x32", + [0x02b5] = "\x03\x28\x3a", [0x02b6] = "\x03\x28\x43", + [0x02b7] = "\x03\x28\x47", [0x02b8] = "\x03\x28\x34", + [0x02b9] = "\x04\x26\x21", [0x02ba] = "\x03\x28\x44", + [0x02bb] = "\x03\x28\x3e", [0x02bc] = "\x03\x28\x36", + [0x02bd] = "\x03\x28\x3c", [0x02be] = "\x05\x25\x5d", + [0x02bf] = "\x03\x28\x39", [0x02c1] = "\x03\x28\x30", + [0x02c2] = "\x04\x28\x6d", [0x02c3] = "\x04\x28\x69", + [0x02c4] = "\x03\x2b\x7e", [0x02c5] = "\x03\x2c\x22", + [0x02c9] = "\x0f\x2a\x2a", [0x02ca] = "\x04\x28\x67", + [0x02cd] = "\x03\x30\x3f", [0x02ce] = "\x03\x30\x42", + [0x02cf] = "\x03\x30\x3d", [0x02d0] = "\x03\x30\x49", + [0x02d1] = "\x03\x30\x47", [0x02d2] = "\x04\x2c\x3b", + [0x02d3] = "\x03\x30\x43", [0x02d4] = "\x03\x30\x50", + [0x02d5] = "\x03\x30\x4c", [0x02d6] = "\x03\x30\x44", + [0x02d7] = "\x04\x2c\x3f", [0x02d8] = "\x04\x2c\x3a", + [0x02d9] = "\x03\x30\x39", [0x02da] = "\x04\x2c\x3c", + [0x02db] = "\x03\x30\x51", [0x02dc] = "\x03\x30\x46", + [0x02dd] = "\x03\x30\x41", [0x02de] = "\x03\x30\x3a", + [0x02e1] = "\x0f\x2e\x6b", [0x02e2] = "\x0f\x2e\x78", + [0x02e5] = "\x04\x31\x29", [0x02e6] = "\x03\x35\x26", + [0x02e7] = "\x03\x35\x2d", [0x02e8] = "\x03\x35\x21", + [0x02e9] = "\x03\x35\x36", [0x02ea] = "\x04\x31\x28", + [0x02eb] = "\x03\x35\x2c", [0x02ec] = "\x03\x35\x23", + [0x02ed] = "\x03\x35\x25", [0x02ee] = "\x03\x3a\x71", + [0x02ef] = "\x03\x3a\x67", [0x02f0] = "\x03\x3a\x74", + [0x02f1] = "\x03\x3a\x64", [0x02f2] = "\x03\x3a\x76", + [0x02f3] = "\x03\x3a\x6c", [0x02f4] = "\x03\x3a\x6a", + [0x02f5] = "\x03\x3a\x65", [0x02f6] = "\x05\x37\x4e", + [0x02f7] = "\x03\x3a\x6e", [0x02f8] = "\x05\x37\x46", + [0x02f9] = "\x04\x36\x7e", [0x02fa] = "\x03\x3a\x6f", + [0x02fb] = "\x03\x3a\x5f", [0x02fc] = "\x04\x36\x7d", + [0x02fd] = "\x03\x3a\x70", [0x02fe] = "\x03\x3a\x5d", + [0x0301] = "\x0f\x3a\x3c", [0x0302] = "\x03\x3a\x6d", + [0x0303] = "\x03\x3a\x69", [0x0304] = "\x03\x3a\x68", + [0x0305] = "\x04\x3c\x5f", [0x0306] = "\x03\x40\x62", + [0x0307] = "\x04\x3c\x61", [0x0308] = "\x03\x40\x6e", + [0x0309] = "\x03\x40\x6d", [0x030a] = "\x03\x40\x68", + [0x030b] = "\x03\x40\x63", [0x030c] = "\x04\x3c\x64", + [0x030d] = "\x03\x40\x65", [0x030e] = "\x04\x3c\x63", + [0x030f] = "\x03\x40\x70", [0x0310] = "\x03\x40\x6b", + [0x0311] = "\x03\x40\x6f", [0x0312] = "\x03\x40\x6c", + [0x0313] = "\x03\x40\x69", [0x0315] = "\x03\x46\x4b", + [0x0316] = "\x04\x42\x67", [0x0317] = "\x04\x42\x6c", + [0x0318] = "\x04\x42\x68", [0x0319] = "\x04\x42\x66", + [0x031a] = "\x03\x46\x49", [0x031b] = "\x03\x46\x52", + [0x031c] = "\x03\x46\x51", [0x031d] = "\x04\x42\x6b", + [0x031e] = "\x04\x42\x6d", [0x0320] = "\x03\x46\x4d", + [0x0321] = "\x03\x46\x4e", [0x0322] = "\x04\x42\x69", + [0x0323] = "\x04\x49\x3c", [0x0324] = "\x04\x49\x3a", + [0x0325] = "\x03\x4b\x59", [0x0326] = "\x03\x4b\x57", + [0x0327] = "\x04\x49\x40", [0x0328] = "\x03\x4b\x55", + [0x0329] = "\x03\x50\x52", [0x032a] = "\x03\x50\x55", + [0x032b] = "\x04\x50\x21", [0x032c] = "\x0f\x54\x2a", + [0x032e] = "\x04\x56\x22", [0x032f] = "\x04\x56\x24", + [0x0330] = "\x03\x57\x5f", [0x0331] = "\x03\x57\x60", + [0x0332] = "\x04\x5f\x54", [0x0333] = "\x05\x67\x5e", + [0x0334] = "\x03\x5a\x30", [0x0335] = "\x03\x5a\x32", + [0x0336] = "\x03\x5c\x37", [0x0337] = "\x04\x63\x35", + [0x0338] = "\x03\x5c\x38", [0x0339] = "\x04\x66\x37", + [0x033a] = "\x04\x68\x65", [0x033b] = "\x03\x61\x62", + [0x033c] = "\x03\x61\x63", [0x033d] = "\x03\x23\x4e", + [0x033e] = "\x06\x26\x78", [0x033f] = "\x04\x23\x6d", + [0x0340] = "\x03\x28\x49", [0x0341] = "\x04\x28\x70", + [0x0342] = "\x04\x2c\x41", [0x0343] = "\x03\x30\x54", + [0x0344] = "\x03\x3a\x7d", [0x0345] = "\x04\x3c\x67", + [0x0347] = "\x07\x2d\x2d", [0x0348] = "\x03\x61\x3d", + [0x034a] = "\x03\x22\x3c", [0x034c] = "\x03\x23\x4f", + [0x034d] = "\x06\x26\x79", [0x034e] = "\x03\x25\x59", + [0x034f] = "\x04\x23\x70", [0x0350] = "\x03\x25\x5b", + [0x0351] = "\x06\x26\x7a", [0x0352] = "\x03\x28\x4f", + [0x0353] = "\x05\x28\x6e", [0x0354] = "\x03\x2c\x30", + [0x0355] = "\x03\x2c\x31", [0x0356] = "\x03\x2c\x33", + [0x0357] = "\x04\x2c\x42", [0x0358] = "\x05\x2c\x7c", + [0x0359] = "\x06\x36\x5d", [0x035b] = "\x03\x35\x42", + [0x035c] = "\x03\x35\x3d", [0x035d] = "\x03\x35\x3e", + [0x035e] = "\x04\x31\x2e", [0x035f] = "\x06\x3e\x5a", + [0x0360] = "\x03\x35\x40", [0x0362] = "\x03\x3b\x21", + [0x0363] = "\x04\x37\x22", [0x0364] = "\x04\x3c\x6a", + [0x0365] = "\x04\x3c\x6c", [0x0366] = "\x04\x3c\x6f", + [0x0367] = "\x03\x40\x77", [0x0369] = "\x04\x42\x74", + [0x036a] = "\x04\x42\x75", [0x036b] = "\x03\x4b\x60", + [0x036c] = "\x04\x42\x77", [0x036d] = "\x04\x49\x43", + [0x036e] = "\x04\x49\x45", [0x036f] = "\x04\x49\x46", + [0x0370] = "\x04\x5a\x7d", [0x0371] = "\x03\x5e\x2b", + [0x0372] = "\x07\x62\x35", [0x0374] = "\x04\x23\x71", + [0x0375] = "\x04\x26\x26", [0x0376] = "\x06\x36\x68", + [0x0377] = "\x03\x3b\x22", [0x0378] = "\x04\x2c\x4c", + [0x0379] = "\x06\x3e\x64", [0x037a] = "\x04\x42\x78", + [0x037b] = "\x05\x4c\x63", [0x037c] = "\x04\x22\x5d", + [0x037d] = "\x04\x23\x74", [0x037e] = "\x04\x26\x28", + [0x037f] = "\x04\x26\x27", [0x0380] = "\x04\x28\x74", + [0x0381] = "\x04\x28\x75", [0x0382] = "\x04\x2c\x4d", + [0x0383] = "\x05\x31\x75", [0x0384] = "\x04\x31\x33", + [0x0385] = "\x05\x31\x73", [0x0386] = "\x04\x31\x32", + [0x0387] = "\x04\x37\x28", [0x0388] = "\x04\x37\x29", + [0x0389] = "\x04\x3c\x71", [0x038a] = "\x04\x42\x79", + [0x038b] = "\x03\x22\x40", [0x038c] = "\x03\x23\x53", + [0x038f] = "\x04\x26\x2a", [0x0390] = "\x03\x28\x52", + [0x0391] = "\x03\x28\x53", [0x0392] = "\x04\x28\x79", + [0x0393] = "\x04\x28\x78", [0x0394] = "\x03\x2c\x39", + [0x0395] = "\x03\x2c\x38", [0x0396] = "\x03\x2c\x36", + [0x0397] = "\x04\x2c\x4e", [0x0398] = "\x06\x3e\x6b", + [0x0399] = "\x03\x35\x45", [0x039a] = "\x04\x37\x2b", + [0x039b] = "\x05\x37\x66", [0x039c] = "\x04\x42\x7d", + [0x039f] = "\x04\x49\x4a", [0x03a1] = "\x03\x5a\x37", + [0x03a2] = "\x03\x21\x62", [0x03a3] = "\x04\x23\x77", + [0x03a4] = "\x03\x22\x42", [0x03a5] = "\x03\x22\x43", + [0x03a6] = "\x03\x22\x41", [0x03a7] = "\x03\x22\x44", + [0x03a8] = "\x03\x23\x56", [0x03a9] = "\x04\x22\x61", + [0x03aa] = "\x05\x22\x51", [0x03ab] = "\x04\x23\x7b", + [0x03ac] = "\x05\x22\x50", [0x03ad] = "\x03\x23\x57", + [0x03af] = "\x03\x23\x58", [0x03b0] = "\x04\x23\x78", + [0x03b1] = "\x04\x23\x79", [0x03b2] = "\x03\x25\x60", + [0x03b3] = "\x05\x23\x70", [0x03b4] = "\x05\x23\x74", + [0x03b5] = "\x03\x25\x64", [0x03b6] = "\x03\x25\x65", + [0x03b7] = "\x04\x23\x76", [0x03b9] = "\x03\x28\x5b", + [0x03ba] = "\x06\x2a\x7b", [0x03bb] = "\x04\x26\x31", + [0x03bc] = "\x04\x26\x32", [0x03bd] = "\x04\x26\x2e", + [0x03be] = "\x03\x28\x56", [0x03bf] = "\x06\x2a\x76", + [0x03c0] = "\x03\x28\x59", [0x03c1] = "\x03\x28\x5a", + [0x03c3] = "\x05\x25\x6e", [0x03c4] = "\x03\x2c\x3a", + [0x03c5] = "\x04\x28\x7b", [0x03c7] = "\x04\x2c\x5b", + [0x03c8] = "\x04\x2c\x53", [0x03c9] = "\x04\x2c\x51", + [0x03ca] = "\x03\x30\x60", [0x03cb] = "\x04\x2c\x5f", + [0x03cc] = "\x04\x2c\x55", [0x03cd] = "\x03\x30\x5c", + [0x03ce] = "\x04\x2c\x5a", [0x03cf] = "\x04\x2c\x5e", + [0x03d0] = "\x04\x2c\x57", [0x03d1] = "\x03\x30\x5d", + [0x03d2] = "\x06\x36\x7c", [0x03d3] = "\x05\x2d\x2e", + [0x03d4] = "\x03\x30\x65", [0x03d6] = "\x04\x2c\x54", + [0x03d7] = "\x03\x35\x56", [0x03d8] = "\x03\x35\x49", + [0x03d9] = "\x04\x31\x37", [0x03da] = "\x03\x35\x4c", + [0x03db] = "\x04\x31\x3d", [0x03dc] = "\x06\x3e\x75", + [0x03dd] = "\x03\x35\x4d", [0x03de] = "\x04\x31\x39", + [0x03df] = "\x06\x3e\x78", [0x03e0] = "\x03\x35\x50", + [0x03e2] = "\x0f\x34\x3f", [0x03e5] = "\x03\x35\x53", + [0x03e6] = "\x03\x3b\x2f", [0x03e7] = "\x03\x3b\x32", + [0x03e8] = "\x03\x3b\x29", [0x03e9] = "\x04\x37\x32", + [0x03ea] = "\x04\x37\x34", [0x03eb] = "\x03\x3b\x35", + [0x03ec] = "\x04\x3c\x72", [0x03ed] = "\x03\x3b\x30", + [0x03ef] = "\x03\x3b\x2c", [0x03f0] = "\x04\x3c\x76", + [0x03f1] = "\x04\x3c\x73", [0x03f2] = "\x04\x3c\x7e", + [0x03f3] = "\x05\x3e\x6d", [0x03f4] = "\x04\x3d\x21", + [0x03f5] = "\x06\x52\x34", [0x03f6] = "\x03\x40\x7b", + [0x03f8] = "\x04\x3c\x77", [0x03f9] = "\x04\x43\x22", + [0x03fa] = "\x06\x5c\x44", [0x03fb] = "\x04\x43\x2d", + [0x03fc] = "\x04\x43\x2a", [0x03fd] = "\x04\x43\x21", + [0x03fe] = "\x03\x46\x55", [0x03ff] = "\x04\x43\x24", + [0x0400] = "\x03\x46\x5b", [0x0401] = "\x03\x46\x58", + [0x0402] = "\x04\x43\x2e", [0x0404] = "\x03\x46\x57", + [0x0405] = "\x04\x49\x50", [0x0406] = "\x04\x49\x4c", + [0x0407] = "\x05\x4c\x6c", [0x0408] = "\x03\x4b\x62", + [0x0409] = "\x05\x4c\x68", [0x040a] = "\x04\x49\x4b", + [0x040b] = "\x04\x49\x53", [0x040c] = "\x03\x4b\x64", + [0x040d] = "\x04\x49\x4f", [0x040e] = "\x04\x49\x4d", + [0x040f] = "\x03\x4b\x61", [0x0410] = "\x04\x49\x54", + [0x0411] = "\x04\x50\x26", [0x0412] = "\x04\x50\x27", + [0x0413] = "\x04\x56\x28", [0x0414] = "\x04\x50\x25", + [0x0415] = "\x05\x54\x36", [0x0416] = "\x03\x50\x59", + [0x0417] = "\x07\x2d\x4c", [0x0418] = "\x03\x54\x5a", + [0x0419] = "\x03\x54\x56", [0x041a] = "\x05\x5b\x3c", + [0x041b] = "\x04\x56\x27", [0x041c] = "\x03\x54\x58", + [0x041d] = "\x07\x3f\x44", [0x0420] = "\x04\x5f\x5a", + [0x0421] = "\x05\x67\x63", [0x0422] = "\x05\x67\x64", + [0x0425] = "\x04\x66\x3a", [0x0426] = "\x03\x5e\x2c", + [0x0427] = "\x04\x68\x68", [0x0428] = "\x05\x7b\x3d", + [0x0429] = "\x03\x23\x5b", [0x042a] = "\x06\x21\x6e", + [0x042d] = "\x03\x3b\x38", [0x042e] = "\x04\x49\x55", + [0x042f] = "\x03\x22\x45", [0x0431] = "\x04\x31\x42", + [0x0432] = "\x03\x22\x46", [0x0434] = "\x04\x22\x65", + [0x0435] = "\x04\x22\x66", [0x0436] = "\x03\x23\x5d", + [0x0437] = "\x04\x24\x22", [0x0438] = "\x04\x24\x24", + [0x0439] = "\x03\x25\x69", [0x043a] = "\x04\x24\x21", + [0x043b] = "\x03\x25\x6a", [0x043c] = "\x0f\x24\x25", + [0x043d] = "\x04\x26\x36", [0x043e] = "\x04\x26\x37", + [0x043f] = "\x04\x29\x25", [0x0440] = "\x04\x24\x25", + [0x0441] = "\x04\x29\x22", [0x0442] = "\x04\x29\x24", + [0x0443] = "\x06\x30\x63", [0x0444] = "\x03\x2c\x47", + [0x0445] = "\x04\x29\x23", [0x0446] = "\x04\x29\x21", + [0x0447] = "\x04\x2c\x66", [0x0448] = "\x04\x2c\x68", + [0x0449] = "\x04\x31\x47", [0x044a] = "\x04\x31\x48", + [0x044b] = "\x04\x31\x45", [0x044c] = "\x04\x31\x49", + [0x044e] = "\x03\x35\x5c", [0x044f] = "\x04\x37\x3b", + [0x0450] = "\x04\x37\x36", [0x0451] = "\x04\x37\x3d", + [0x0452] = "\x04\x37\x3a", [0x0453] = "\x03\x3b\x3c", + [0x0454] = "\x04\x37\x3c", [0x0455] = "\x03\x3b\x39", + [0x0456] = "\x04\x37\x39", [0x0457] = "\x04\x3d\x28", + [0x0458] = "\x04\x3d\x23", [0x0459] = "\x04\x3d\x27", + [0x045a] = "\x04\x3d\x26", [0x045b] = "\x04\x3d\x29", + [0x045c] = "\x04\x43\x33", [0x045d] = "\x04\x43\x32", + [0x045e] = "\x04\x43\x31", [0x045f] = "\x04\x43\x2f", + [0x0460] = "\x03\x4b\x6e", [0x0462] = "\x03\x4b\x6f", + [0x0463] = "\x04\x50\x29", [0x0465] = "\x04\x56\x2d", + [0x0466] = "\x04\x56\x2b", [0x0467] = "\x04\x63\x3b", + [0x0468] = "\x04\x63\x3a", [0x0469] = "\x03\x5f\x44", + [0x046a] = "\x04\x68\x6b", [0x046b] = "\x06\x48\x44", + [0x046d] = "\x03\x46\x5e", [0x046e] = "\x04\x50\x2b", + [0x046f] = "\x03\x23\x60", [0x0470] = "\x03\x23\x5f", + [0x0471] = "\x03\x23\x5e", [0x0472] = "\x03\x25\x6c", + [0x0473] = "\x06\x27\x47", [0x0474] = "\x04\x26\x38", + [0x0475] = "\x04\x26\x3d", [0x0476] = "\x04\x26\x3b", + [0x0477] = "\x05\x26\x26", [0x0478] = "\x04\x26\x3c", + [0x0479] = "\x03\x28\x64", [0x047a] = "\x04\x26\x3a", + [0x047b] = "\x03\x28\x66", [0x047c] = "\x0f\x2f\x38", + [0x047d] = "\x03\x2c\x49", [0x047e] = "\x03\x2c\x4a", + [0x047f] = "\x04\x29\x2a", [0x0480] = "\x05\x29\x26", + [0x0481] = "\x04\x29\x29", [0x0482] = "\x04\x29\x28", + [0x0483] = "\x04\x2c\x6b", [0x0484] = "\x04\x2c\x6d", + [0x0485] = "\x04\x2c\x6c", [0x0486] = "\x03\x30\x6d", + [0x0488] = "\x03\x35\x5e", [0x0489] = "\x04\x31\x4e", + [0x048a] = "\x04\x31\x4c", [0x048b] = "\x04\x31\x4f", + [0x048c] = "\x03\x35\x5d", [0x048d] = "\x05\x38\x29", + [0x048e] = "\x04\x37\x40", [0x048f] = "\x04\x37\x41", + [0x0490] = "\x03\x3b\x41", [0x0491] = "\x05\x3f\x21", + [0x0492] = "\x04\x43\x36", [0x0493] = "\x03\x46\x5f", + [0x0494] = "\x04\x43\x39", [0x0495] = "\x04\x43\x3a", + [0x0496] = "\x04\x49\x5b", [0x0497] = "\x04\x49\x5c", + [0x0498] = "\x03\x4b\x71", [0x0499] = "\x03\x50\x5d", + [0x049a] = "\x04\x50\x2c", [0x049b] = "\x04\x50\x2e", + [0x049c] = "\x05\x54\x42", [0x049d] = "\x04\x5f\x5e", + [0x049e] = "\x04\x63\x3c", [0x049f] = "\x04\x24\x29", + [0x04a0] = "\x03\x28\x6a", [0x04a1] = "\x03\x46\x62", + [0x04a3] = "\x07\x2d\x5b", [0x04a5] = "\x04\x29\x2b", + [0x04a6] = "\x04\x3d\x2d", [0x04a7] = "\x06\x21\x79", + [0x04a8] = "\x04\x22\x6a", [0x04a9] = "\x03\x23\x63", + [0x04aa] = "\x03\x23\x64", [0x04ac] = "\x03\x25\x70", + [0x04ae] = "\x03\x28\x6f", [0x04af] = "\x04\x26\x40", + [0x04b0] = "\x04\x26\x41", [0x04b2] = "\x03\x2c\x4e", + [0x04b3] = "\x04\x29\x2d", [0x04b4] = "\x06\x30\x7a", + [0x04b5] = "\x04\x29\x2e", [0x04b6] = "\x03\x2c\x4f", + [0x04b8] = "\x04\x2c\x71", [0x04ba] = "\x05\x32\x46", + [0x04bb] = "\x04\x31\x51", [0x04bc] = "\x04\x2c\x72", + [0x04bd] = "\x03\x3b\x46", [0x04be] = "\x03\x3b\x43", + [0x04c0] = "\x05\x3f\x29", [0x04c1] = "\x04\x3d\x2f", + [0x04c2] = "\x04\x3d\x2e", [0x04c3] = "\x06\x52\x4d", + [0x04c4] = "\x04\x49\x5d", [0x04c5] = "\x04\x49\x5f", + [0x04c6] = "\x03\x5e\x2e", [0x04c7] = "\x04\x26\x42", + [0x04c8] = "\x04\x50\x31", [0x04c9] = "\x06\x24\x70", + [0x04cb] = "\x03\x28\x73", [0x04cc] = "\x04\x26\x43", + [0x04cd] = "\x03\x28\x72", [0x04ce] = "\x03\x35\x64", + [0x04cf] = "\x03\x3b\x48", [0x04d0] = "\x03\x3b\x49", + [0x04d1] = "\x04\x43\x3b", [0x04d2] = "\x04\x49\x61", + [0x04d3] = "\x03\x50\x5f", [0x04d4] = "\x03\x22\x4b", + [0x04d8] = "\x06\x2b\x3e", [0x04d9] = "\x03\x28\x74", + [0x04da] = "\x04\x29\x32", [0x04db] = "\x04\x29\x34", + [0x04dc] = "\x03\x2c\x52", [0x04dd] = "\x05\x29\x2f", + [0x04de] = "\x05\x29\x33", [0x04df] = "\x03\x2c\x53", + [0x04e0] = "\x06\x31\x25", [0x04e2] = "\x05\x2d\x47", + [0x04e3] = "\x0f\x2f\x3e", [0x04e4] = "\x04\x31\x54", + [0x04e5] = "\x03\x35\x66", [0x04e6] = "\x03\x35\x67", + [0x04eb] = "\x04\x37\x49", [0x04ec] = "\x03\x3b\x4a", + [0x04ed] = "\x04\x37\x48", [0x04ef] = "\x04\x3d\x33", + [0x04f0] = "\x05\x45\x69", [0x04f1] = "\x04\x43\x3d", + [0x04f2] = "\x06\x5c\x67", [0x04f5] = "\x03\x50\x60", + [0x04f6] = "\x04\x50\x34", [0x04f7] = "\x04\x56\x2f", + [0x04fa] = "\x06\x21\x7e", [0x04fb] = "\x03\x23\x65", + [0x04fc] = "\x03\x23\x68", [0x04fd] = "\x04\x24\x31", + [0x04fe] = "\x05\x22\x67", [0x04ff] = "\x04\x22\x70", + [0x0501] = "\x03\x28\x7b", [0x0502] = "\x03\x28\x7d", + [0x0503] = "\x03\x25\x79", [0x0504] = "\x04\x24\x2e", + [0x0505] = "\x03\x28\x7c", [0x0506] = "\x04\x24\x30", + [0x0507] = "\x04\x24\x33", [0x0508] = "\x03\x25\x73", + [0x0509] = "\x04\x24\x2f", [0x050a] = "\x04\x24\x32", + [0x050b] = "\x03\x26\x24", [0x050c] = "\x03\x28\x79", + [0x050d] = "\x04\x29\x35", [0x050e] = "\x04\x29\x37", + [0x050f] = "\x04\x26\x4d", [0x0510] = "\x03\x2c\x59", + [0x0511] = "\x03\x29\x24", [0x0512] = "\x04\x26\x48", + [0x0513] = "\x03\x29\x23", [0x0514] = "\x04\x26\x4e", + [0x0515] = "\x04\x26\x4c", [0x0516] = "\x04\x26\x46", + [0x0517] = "\x0f\x2a\x3e", [0x0519] = "\x03\x2c\x58", + [0x051a] = "\x04\x29\x41", [0x051b] = "\x03\x2c\x62", + [0x051c] = "\x04\x29\x3c", [0x051d] = "\x04\x26\x49", + [0x051e] = "\x04\x29\x39", [0x051f] = "\x03\x30\x7d", + [0x0520] = "\x06\x37\x54", [0x0521] = "\x04\x29\x3d", + [0x0522] = "\x05\x29\x35", [0x0523] = "\x04\x2d\x28", + [0x0524] = "\x04\x29\x48", [0x0525] = "\x04\x29\x3a", + [0x0526] = "\x04\x29\x3b", [0x0527] = "\x04\x29\x40", + [0x0528] = "\x03\x2c\x55", [0x0529] = "\x06\x37\x5a", + [0x052a] = "\x03\x30\x7c", [0x052c] = "\x03\x2c\x5e", + [0x052e] = "\x04\x31\x5b", [0x052f] = "\x05\x2d\x5a", + [0x0530] = "\x03\x35\x73", [0x0531] = "\x04\x2d\x22", + [0x0532] = "\x03\x35\x69", [0x0533] = "\x03\x30\x75", + [0x0534] = "\x04\x2d\x23", [0x0535] = "\x03\x35\x70", + [0x0536] = "\x04\x2d\x24", [0x0537] = "\x03\x30\x77", + [0x0538] = "\x06\x37\x5e", [0x0539] = "\x03\x31\x24", + [0x053a] = "\x04\x2d\x2b", [0x053b] = "\x04\x31\x5a", + [0x053e] = "\x04\x31\x5c", [0x053f] = "\x04\x31\x62", + [0x0540] = "\x03\x35\x6b", [0x0541] = "\x06\x48\x6f", + [0x0542] = "\x04\x31\x63", [0x0543] = "\x03\x35\x75", + [0x0544] = "\x04\x31\x60", [0x0545] = "\x05\x32\x5b", + [0x0546] = "\x04\x31\x5d", [0x0547] = "\x03\x35\x6c", + [0x0548] = "\x03\x3b\x4e", [0x0549] = "\x04\x31\x6c", + [0x054a] = "\x04\x31\x67", [0x054b] = "\x03\x3b\x4c", + [0x054c] = "\x03\x35\x6d", [0x054d] = "\x03\x35\x77", + [0x054e] = "\x03\x3b\x57", [0x054f] = "\x04\x31\x64", + [0x0550] = "\x06\x48\x75", [0x0551] = "\x03\x3b\x53", + [0x0552] = "\x04\x31\x66", [0x0553] = "\x04\x31\x5e", + [0x0554] = "\x05\x2d\x57", [0x0555] = "\x03\x3b\x52", + [0x0556] = "\x05\x38\x42", [0x055a] = "\x04\x31\x6a", + [0x055b] = "\x05\x38\x48", [0x055c] = "\x04\x37\x56", + [0x055d] = "\x04\x37\x50", [0x055e] = "\x03\x3b\x5c", + [0x055f] = "\x04\x37\x59", [0x0560] = "\x03\x3b\x5f", + [0x0561] = "\x04\x37\x54", [0x0562] = "\x04\x37\x4e", + [0x0563] = "\x05\x3f\x32", [0x0564] = "\x03\x41\x25", + [0x0565] = "\x04\x37\x55", [0x0566] = "\x04\x3d\x3e", + [0x0567] = "\x03\x3b\x60", [0x0568] = "\x04\x3d\x37", + [0x0569] = "\x05\x32\x58", [0x056b] = "\x03\x3b\x5b", + [0x056c] = "\x03\x41\x26", [0x056d] = "\x03\x41\x2d", + [0x056e] = "\x04\x3d\x3b", [0x056f] = "\x04\x43\x43", + [0x0570] = "\x05\x3f\x42", [0x0571] = "\x06\x52\x69", + [0x0572] = "\x03\x46\x67", [0x0573] = "\x04\x3d\x3a", + [0x0574] = "\x04\x3d\x3c", [0x0575] = "\x03\x41\x30", + [0x0576] = "\x03\x46\x65", [0x0577] = "\x04\x43\x42", + [0x0578] = "\x04\x43\x50", [0x0579] = "\x03\x46\x66", + [0x057a] = "\x03\x41\x2f", [0x057c] = "\x04\x43\x48", + [0x057d] = "\x04\x43\x47", [0x057e] = "\x04\x43\x49", + [0x057f] = "\x03\x4b\x7d", [0x0580] = "\x04\x43\x4d", + [0x0581] = "\x04\x49\x65", [0x0582] = "\x03\x4c\x22", + [0x0583] = "\x03\x46\x69", [0x0584] = "\x03\x4b\x7b", + [0x0585] = "\x04\x43\x4a", [0x0586] = "\x04\x43\x4c", + [0x0587] = "\x04\x43\x46", [0x0589] = "\x03\x4c\x27", + [0x058a] = "\x03\x4b\x78", [0x058b] = "\x04\x43\x4b", + [0x058c] = "\x04\x50\x38", [0x058d] = "\x03\x4c\x2a", + [0x058e] = "\x04\x49\x67", [0x058f] = "\x04\x49\x69", + [0x0590] = "\x04\x49\x68", [0x0591] = "\x04\x49\x6b", + [0x0592] = "\x07\x22\x7c", [0x0593] = "\x04\x49\x6d", + [0x0594] = "\x03\x50\x69", [0x0595] = "\x04\x49\x6c", + [0x0596] = "\x03\x4c\x26", [0x0597] = "\x04\x50\x39", + [0x0598] = "\x05\x5b\x4c", [0x059a] = "\x04\x5b\x23", + [0x059b] = "\x04\x5b\x29", [0x059c] = "\x04\x56\x36", + [0x059d] = "\x04\x5b\x25", [0x059e] = "\x03\x57\x67", + [0x059f] = "\x04\x5b\x24", [0x05a0] = "\x0f\x5a\x29", + [0x05a1] = "\x03\x57\x66", [0x05a2] = "\x04\x50\x3a", + [0x05a3] = "\x05\x67\x78", [0x05a4] = "\x04\x63\x43", + [0x05a5] = "\x04\x5f\x64", [0x05a6] = "\x05\x67\x73", + [0x05a7] = "\x07\x47\x2c", [0x05a8] = "\x03\x5e\x30", + [0x05a9] = "\x04\x63\x42", [0x05aa] = "\x04\x63\x40", + [0x05ab] = "\x03\x5f\x47", [0x05ac] = "\x04\x68\x6c", + [0x05ad] = "\x03\x61\x78", [0x05ae] = "\x03\x23\x6a", + [0x05af] = "\x03\x26\x26", [0x05b0] = "\x04\x26\x54", + [0x05b2] = "\x06\x2b\x52", [0x05b4] = "\x04\x2d\x2f", + [0x05b5] = "\x04\x2d\x30", [0x05b6] = "\x05\x2d\x5d", + [0x05b7] = "\x03\x35\x7a", [0x05b8] = "\x03\x3b\x65", + [0x05b9] = "\x04\x3d\x42", [0x05ba] = "\x04\x43\x54", + [0x05bb] = "\x05\x4d\x37", [0x05bc] = "\x03\x4c\x2b", + [0x05bd] = "\x03\x54\x62", [0x05be] = "\x06\x27\x6e", + [0x05bf] = "\x04\x26\x55", [0x05c0] = "\x04\x26\x56", + [0x05c1] = "\x04\x29\x4d", [0x05c2] = "\x03\x2c\x64", + [0x05c3] = "\x04\x21\x7b", [0x05c4] = "\x04\x21\x7a", + [0x05c5] = "\x03\x22\x4f", [0x05c6] = "\x04\x22\x74", + [0x05c7] = "\x04\x22\x73", [0x05c8] = "\x04\x22\x75", + [0x05c9] = "\x04\x24\x3a", [0x05ca] = "\x04\x24\x36", + [0x05cb] = "\x03\x26\x2c", [0x05cc] = "\x03\x26\x2d", + [0x05cd] = "\x03\x26\x30", [0x05ce] = "\x03\x26\x2b", + [0x05d2] = "\x04\x26\x58", [0x05d3] = "\x03\x29\x2d", + [0x05d4] = "\x05\x26\x3a", [0x05d5] = "\x03\x29\x2c", + [0x05d6] = "\x03\x29\x38", [0x05d7] = "\x04\x29\x55", + [0x05d8] = "\x04\x2d\x33", [0x05d9] = "\x04\x26\x59", + [0x05da] = "\x03\x29\x2b", [0x05e1] = "\x04\x29\x4e", + [0x05e2] = "\x04\x29\x54", [0x05e3] = "\x03\x2c\x66", + [0x05e4] = "\x03\x29\x27", [0x05e5] = "\x03\x2c\x67", + [0x05e6] = "\x03\x2c\x69", [0x05e7] = "\x04\x2d\x3c", + [0x05e8] = "\x03\x2c\x71", [0x05e9] = "\x04\x29\x56", + [0x05ea] = "\x03\x2c\x68", [0x05eb] = "\x04\x29\x52", + [0x05ec] = "\x04\x2d\x32", [0x05ed] = "\x04\x2d\x31", + [0x05ee] = "\x03\x2c\x6a", [0x05ef] = "\x03\x2c\x65", + [0x05f1] = "\x03\x31\x34", [0x05f2] = "\x03\x31\x2a", + [0x05f3] = "\x03\x35\x7b", [0x05f4] = "\x03\x31\x31", + [0x05f5] = "\x03\x31\x3a", [0x05f6] = "\x04\x2d\x3b", + [0x05f7] = "\x03\x31\x2d", [0x05f8] = "\x03\x31\x2b", + [0x05f9] = "\x04\x31\x7c", [0x05fa] = "\x04\x32\x21", + [0x05fb] = "\x04\x31\x7b", [0x05fc] = "\x03\x36\x2c", + [0x05fd] = "\x06\x40\x32", [0x05fe] = "\x04\x32\x25", + [0x05ff] = "\x03\x36\x2f", [0x0600] = "\x03\x36\x30", + [0x0601] = "\x04\x31\x79", [0x0602] = "\x03\x35\x7e", + [0x0603] = "\x04\x31\x71", [0x0604] = "\x03\x36\x25", + [0x0605] = "\x04\x31\x7e", [0x0606] = "\x04\x31\x7a", + [0x0607] = "\x03\x3b\x6b", [0x0608] = "\x03\x36\x2a", + [0x0609] = "\x04\x37\x6e", [0x060a] = "\x04\x37\x62", + [0x060b] = "\x03\x36\x21", [0x060c] = "\x04\x3d\x45", + [0x060d] = "\x03\x41\x31", [0x060e] = "\x04\x37\x64", + [0x060f] = "\x03\x3b\x6a", [0x0610] = "\x04\x37\x6b", + [0x0611] = "\x04\x37\x68", [0x0612] = "\x04\x37\x65", + [0x0613] = "\x03\x3b\x6c", [0x0614] = "\x03\x3b\x69", + [0x0615] = "\x04\x37\x70", [0x0616] = "\x04\x37\x61", + [0x0617] = "\x03\x3b\x6e", [0x0619] = "\x04\x3d\x50", + [0x061a] = "\x04\x3d\x4f", [0x061b] = "\x03\x41\x37", + [0x061c] = "\x04\x3d\x4c", [0x061d] = "\x04\x3d\x4a", + [0x061e] = "\x03\x41\x35", [0x061f] = "\x03\x41\x3b", + [0x0620] = "\x04\x3d\x48", [0x0621] = "\x04\x3d\x4e", + [0x0622] = "\x03\x41\x3c", [0x0623] = "\x03\x41\x4a", + [0x0624] = "\x03\x41\x43", [0x0625] = "\x03\x41\x3f", + [0x0626] = "\x03\x41\x47", [0x0627] = "\x03\x41\x40", + [0x0628] = "\x03\x41\x46", [0x0629] = "\x03\x41\x41", + [0x062a] = "\x03\x41\x39", [0x062d] = "\x04\x43\x58", + [0x062e] = "\x04\x43\x61", [0x062f] = "\x06\x5d\x32", + [0x0630] = "\x03\x46\x79", [0x0631] = "\x03\x47\x2e", + [0x0632] = "\x03\x47\x2d", [0x0633] = "\x04\x43\x56", + [0x0634] = "\x03\x46\x7c", [0x0635] = "\x03\x47\x27", + [0x0636] = "\x03\x47\x2f", [0x0637] = "\x04\x43\x5c", + [0x0638] = "\x03\x46\x77", [0x0639] = "\x05\x46\x25", + [0x063a] = "\x03\x46\x7d", [0x063b] = "\x04\x49\x75", + [0x063c] = "\x03\x4c\x36", [0x063d] = "\x04\x43\x64", + [0x063e] = "\x05\x46\x23", [0x063f] = "\x03\x47\x2b", + [0x0640] = "\x03\x47\x2c", [0x0643] = "\x04\x4a\x24", + [0x0644] = "\x03\x4c\x33", [0x0645] = "\x07\x23\x3a", + [0x0646] = "\x04\x49\x79", [0x0647] = "\x04\x49\x7a", + [0x0648] = "\x04\x49\x76", [0x0649] = "\x04\x4a\x28", + [0x064a] = "\x04\x4a\x22", [0x064b] = "\x05\x4d\x3a", + [0x064c] = "\x04\x49\x7e", [0x064d] = "\x05\x4d\x3e", + [0x064e] = "\x03\x4c\x3c", [0x0650] = "\x04\x4a\x23", + [0x0652] = "\x03\x50\x74", [0x0653] = "\x04\x56\x39", + [0x0654] = "\x04\x50\x45", [0x0655] = "\x03\x50\x73", + [0x0656] = "\x03\x50\x6e", [0x0657] = "\x03\x50\x78", + [0x0658] = "\x03\x50\x72", [0x0659] = "\x03\x50\x71", + [0x065a] = "\x03\x54\x65", [0x065b] = "\x03\x54\x6a", + [0x065c] = "\x03\x54\x68", [0x065d] = "\x03\x54\x63", + [0x065e] = "\x03\x54\x66", [0x0660] = "\x04\x5b\x2d", + [0x0661] = "\x03\x57\x69", [0x0662] = "\x04\x5b\x32", + [0x0663] = "\x04\x5b\x30", [0x0664] = "\x04\x5b\x2e", + [0x0665] = "\x03\x57\x6f", [0x0666] = "\x03\x57\x71", + [0x0667] = "\x04\x5b\x31", [0x0668] = "\x03\x57\x68", + [0x0669] = "\x04\x5b\x2f", [0x066a] = "\x03\x57\x72", + [0x066b] = "\x0f\x5e\x73", [0x066c] = "\x03\x5a\x3d", + [0x066d] = "\x03\x5a\x3e", [0x066f] = "\x04\x63\x47", + [0x0670] = "\x03\x5c\x40", [0x0671] = "\x04\x63\x46", + [0x0672] = "\x05\x70\x24", [0x0673] = "\x03\x5e\x32", + [0x0674] = "\x04\x66\x40", [0x0675] = "\x03\x60\x31", + [0x0676] = "\x04\x6a\x49", [0x0677] = "\x04\x6a\x48", + [0x0679] = "\x05\x79\x2a", [0x067a] = "\x04\x26\x5b", + [0x067b] = "\x04\x2d\x40", [0x067c] = "\x04\x2d\x3f", + [0x067d] = "\x04\x32\x27", [0x067e] = "\x04\x3d\x54", + [0x067f] = "\x04\x24\x40", [0x0680] = "\x03\x26\x3a", + [0x0684] = "\x04\x29\x5d", [0x0685] = "\x03\x2c\x75", + [0x0687] = "\x03\x31\x3e", [0x0689] = "\x06\x38\x2b", + [0x068b] = "\x03\x36\x33", [0x068d] = "\x03\x36\x35", + [0x068f] = "\x04\x37\x79", [0x0691] = "\x04\x37\x75", + [0x0692] = "\x04\x37\x78", [0x0693] = "\x04\x37\x77", + [0x0695] = "\x04\x37\x76", [0x0696] = "\x05\x38\x7c", + [0x069a] = "\x03\x3b\x77", [0x069d] = "\x04\x3d\x59", + [0x069e] = "\x04\x3d\x5b", [0x069f] = "\x03\x41\x4c", + [0x06a0] = "\x04\x43\x66", [0x06a1] = "\x05\x46\x30", + [0x06a3] = "\x04\x43\x69", [0x06a4] = "\x04\x4a\x2b", + [0x06a5] = "\x04\x4a\x2a", [0x06a6] = "\x04\x4a\x29", + [0x06a8] = "\x04\x50\x49", [0x06a9] = "\x04\x50\x4c", + [0x06ab] = "\x03\x57\x73", [0x06ad] = "\x04\x63\x4c", + [0x06ae] = "\x04\x66\x43", [0x06af] = "\x03\x26\x3b", + [0x06b0] = "\x06\x38\x2c", [0x06b1] = "\x03\x41\x4f", + [0x06b4] = "\x03\x29\x3a", [0x06b5] = "\x04\x29\x61", + [0x06b6] = "\x03\x31\x41", [0x06b7] = "\x03\x39\x2b", + [0x06b8] = "\x03\x3b\x78", [0x06b9] = "\x04\x4a\x2e", + [0x06ba] = "\x04\x56\x3e", [0x06bb] = "\x04\x6a\x4b", + [0x06bc] = "\x04\x29\x62", [0x06be] = "\x04\x2d\x49", + [0x06bf] = "\x06\x38\x30", [0x06c0] = "\x06\x49\x61", + [0x06c1] = "\x06\x5d\x51", [0x06c2] = "\x05\x4d\x4b", + [0x06c3] = "\x03\x23\x71", [0x06c4] = "\x06\x2b\x70", + [0x06c5] = "\x06\x38\x34", [0x06ca] = "\x03\x36\x3b", + [0x06cb] = "\x03\x36\x3e", [0x06cd] = "\x04\x3d\x65", + [0x06ce] = "\x04\x4a\x30", [0x06cf] = "\x04\x4a\x31", + [0x06d0] = "\x04\x22\x78", [0x06d1] = "\x04\x22\x79", + [0x06d2] = "\x04\x24\x43", [0x06d3] = "\x03\x26\x3c", + [0x06d4] = "\x03\x26\x3f", [0x06d5] = "\x03\x26\x3e", + [0x06d7] = "\x03\x26\x40", [0x06d8] = "\x03\x29\x3f", + [0x06d9] = "\x03\x29\x3d", [0x06da] = "\x04\x26\x63", + [0x06db] = "\x05\x29\x4f", [0x06dc] = "\x04\x29\x63", + [0x06dd] = "\x03\x2c\x7b", [0x06de] = "\x04\x29\x64", + [0x06df] = "\x04\x29\x65", [0x06e0] = "\x03\x2c\x78", + [0x06e1] = "\x03\x2d\x26", [0x06e4] = "\x06\x31\x67", + [0x06e5] = "\x04\x2d\x4c", [0x06e6] = "\x04\x32\x3b", + [0x06e7] = "\x04\x2d\x4b", [0x06e9] = "\x03\x31\x47", + [0x06ea] = "\x06\x38\x37", [0x06eb] = "\x03\x31\x4a", + [0x06ec] = "\x0f\x2f\x6e", [0x06ee] = "\x04\x2d\x4d", + [0x06ef] = "\x06\x40\x51", [0x06f0] = "\x04\x32\x36", + [0x06f1] = "\x04\x32\x3a", [0x06f2] = "\x04\x32\x37", + [0x06f3] = "\x03\x36\x43", [0x06f4] = "\x06\x40\x4f", + [0x06f5] = "\x03\x3c\x22", [0x06f6] = "\x04\x37\x7e", + [0x06f7] = "\x03\x3b\x7a", [0x06f8] = "\x03\x3b\x7b", + [0x06f9] = "\x04\x38\x25", [0x06fa] = "\x03\x3c\x27", + [0x06fb] = "\x04\x38\x22", [0x06fc] = "\x06\x49\x73", + [0x06fd] = "\x03\x3c\x21", [0x0701] = "\x06\x53\x3d", + [0x0702] = "\x05\x3f\x62", [0x0703] = "\x03\x41\x52", + [0x0704] = "\x03\x41\x57", [0x0705] = "\x03\x41\x5a", + [0x0706] = "\x03\x41\x55", [0x0707] = "\x03\x41\x53", + [0x0708] = "\x03\x41\x5c", [0x0709] = "\x03\x41\x58", + [0x070a] = "\x04\x3d\x68", [0x070b] = "\x04\x3d\x67", + [0x070c] = "\x03\x41\x54", [0x070d] = "\x03\x47\x38", + [0x070e] = "\x04\x43\x6e", [0x070f] = "\x03\x47\x32", + [0x0710] = "\x03\x47\x36", [0x0712] = "\x05\x4d\x53", + [0x0713] = "\x04\x4a\x32", [0x0714] = "\x03\x4c\x42", + [0x0715] = "\x03\x4c\x45", [0x0717] = "\x04\x50\x52", + [0x0718] = "\x04\x50\x51", [0x0719] = "\x03\x51\x21", + [0x071a] = "\x05\x4d\x50", [0x071b] = "\x03\x50\x7b", + [0x071c] = "\x03\x50\x7c", [0x071d] = "\x04\x50\x53", + [0x071e] = "\x07\x2e\x5a", [0x0720] = "\x03\x54\x73", + [0x0721] = "\x03\x54\x6e", [0x0722] = "\x04\x56\x40", + [0x0723] = "\x04\x5b\x40", [0x0725] = "\x04\x5b\x41", + [0x0726] = "\x04\x5b\x3f", [0x0727] = "\x07\x3f\x76", + [0x0729] = "\x03\x5a\x40", [0x072a] = "\x03\x5a\x41", + [0x072b] = "\x03\x5c\x44", [0x072c] = "\x03\x5f\x4c", + [0x072d] = "\x03\x5f\x4d", [0x072e] = "\x05\x75\x6e", + [0x072f] = "\x05\x75\x6d", [0x0730] = "\x03\x23\x74", + [0x0731] = "\x04\x50\x56", [0x0732] = "\x03\x54\x74", + [0x0733] = "\x03\x29\x44", [0x0734] = "\x03\x31\x4e", + [0x0735] = "\x05\x2e\x25", [0x0736] = "\x03\x36\x49", + [0x0738] = "\x03\x3c\x28", [0x0739] = "\x04\x3a\x43", + [0x073b] = "\x05\x46\x45", [0x073c] = "\x05\x4d\x58", + [0x073f] = "\x03\x51\x25", [0x0741] = "\x03\x23\x76", + [0x0742] = "\x03\x26\x43", [0x0743] = "\x04\x24\x48", + [0x0744] = "\x03\x26\x46", [0x0747] = "\x03\x29\x4b", + [0x0748] = "\x03\x29\x46", [0x0749] = "\x0f\x27\x4c", + [0x074a] = "\x03\x29\x50", [0x074b] = "\x03\x29\x4d", + [0x074c] = "\x05\x26\x51", [0x0751] = "\x03\x2d\x28", + [0x0752] = "\x03\x2d\x2c", [0x0753] = "\x04\x29\x6f", + [0x0754] = "\x04\x29\x6c", [0x0755] = "\x03\x2d\x29", + [0x0758] = "\x04\x2d\x57", [0x0759] = "\x04\x2d\x51", + [0x075a] = "\x04\x2d\x54", [0x075b] = "\x04\x2d\x58", + [0x075c] = "\x03\x31\x52", [0x075d] = "\x05\x2e\x2b", + [0x075e] = "\x04\x2d\x52", [0x075f] = "\x04\x2d\x5b", + [0x0760] = "\x03\x31\x55", [0x0761] = "\x04\x2d\x56", + [0x0762] = "\x03\x31\x51", [0x0768] = "\x03\x36\x59", + [0x0769] = "\x04\x32\x43", [0x076a] = "\x03\x36\x4a", + [0x076b] = "\x03\x36\x4f", [0x076c] = "\x05\x32\x79", + [0x076d] = "\x04\x32\x42", [0x076e] = "\x04\x32\x46", + [0x076f] = "\x04\x32\x41", [0x0770] = "\x04\x38\x34", + [0x0771] = "\x03\x36\x58", [0x0772] = "\x03\x36\x5d", + [0x0778] = "\x04\x38\x2f", [0x0779] = "\x03\x3c\x2e", + [0x077a] = "\x04\x38\x2c", [0x077b] = "\x03\x3c\x3f", + [0x077c] = "\x03\x3c\x30", [0x077d] = "\x04\x38\x2a", + [0x077e] = "\x05\x39\x33", [0x077f] = "\x04\x38\x2d", + [0x0780] = "\x03\x3c\x2c", [0x0781] = "\x05\x39\x39", + [0x0782] = "\x04\x38\x35", [0x0783] = "\x03\x3c\x35", + [0x0784] = "\x04\x38\x37", [0x0785] = "\x03\x3c\x36", + [0x0786] = "\x03\x3c\x43", [0x0787] = "\x03\x3c\x2b", + [0x0788] = "\x03\x3c\x2d", [0x078b] = "\x04\x3d\x78", + [0x078c] = "\x03\x41\x71", [0x078d] = "\x03\x41\x66", + [0x078e] = "\x03\x41\x70", [0x078f] = "\x04\x3d\x6b", + [0x0790] = "\x04\x3d\x6e", [0x0791] = "\x04\x3d\x6f", + [0x0792] = "\x03\x41\x6c", [0x0793] = "\x03\x41\x69", + [0x0794] = "\x03\x41\x64", [0x0795] = "\x04\x3d\x6d", + [0x0796] = "\x03\x41\x5e", [0x0797] = "\x04\x3d\x75", + [0x0798] = "\x03\x41\x62", [0x0799] = "\x03\x41\x63", + [0x079a] = "\x03\x41\x7a", [0x079b] = "\x03\x41\x61", + [0x079c] = "\x03\x41\x5f", [0x079d] = "\x04\x44\x23", + [0x079e] = "\x04\x3d\x76", [0x079f] = "\x03\x41\x60", + [0x07a1] = "\x03\x42\x5a", [0x07a3] = "\x03\x41\x67", + [0x07a4] = "\x0f\x48\x55", [0x07a5] = "\x04\x44\x24", + [0x07a6] = "\x04\x43\x75", [0x07a7] = "\x04\x44\x21", + [0x07a8] = "\x04\x43\x7c", [0x07a9] = "\x03\x47\x3f", + [0x07aa] = "\x04\x43\x78", [0x07ab] = "\x04\x43\x73", + [0x07ac] = "\x03\x47\x41", [0x07ad] = "\x04\x43\x74", + [0x07ae] = "\x03\x47\x4a", [0x07af] = "\x04\x43\x7d", + [0x07b0] = "\x04\x43\x7e", [0x07b1] = "\x04\x43\x7a", + [0x07b2] = "\x04\x44\x22", [0x07b3] = "\x03\x47\x4f", + [0x07b4] = "\x03\x47\x40", [0x07b5] = "\x04\x44\x25", + [0x07b6] = "\x04\x43\x71", [0x07b7] = "\x05\x46\x4b", + [0x07b8] = "\x03\x47\x49", [0x07b9] = "\x04\x3d\x72", + [0x07ba] = "\x03\x47\x50", [0x07bc] = "\x0f\x48\x52", + [0x07bf] = "\x03\x4c\x4e", [0x07c0] = "\x05\x4d\x6d", + [0x07c1] = "\x04\x4a\x3a", [0x07c2] = "\x03\x4c\x4c", + [0x07c3] = "\x05\x4d\x61", [0x07c4] = "\x03\x4c\x53", + [0x07c5] = "\x04\x4a\x37", [0x07c6] = "\x04\x4a\x36", + [0x07c7] = "\x03\x4c\x5d", [0x07c8] = "\x03\x4c\x58", + [0x07c9] = "\x07\x23\x6f", [0x07ca] = "\x04\x4a\x38", + [0x07cb] = "\x04\x4a\x42", [0x07cc] = "\x03\x4c\x5a", + [0x07cd] = "\x03\x4c\x5c", [0x07ce] = "\x03\x4c\x48", + [0x07cf] = "\x03\x4c\x55", [0x07d0] = "\x03\x51\x43", + [0x07d3] = "\x03\x51\x42", [0x07d4] = "\x04\x50\x60", + [0x07d5] = "\x04\x50\x5a", [0x07d6] = "\x03\x51\x37", + [0x07d7] = "\x03\x51\x30", [0x07d8] = "\x04\x50\x59", + [0x07d9] = "\x04\x4a\x39", [0x07da] = "\x03\x51\x3f", + [0x07db] = "\x03\x51\x2a", [0x07dc] = "\x03\x51\x3d", + [0x07dd] = "\x04\x56\x49", [0x07de] = "\x03\x51\x33", + [0x07df] = "\x03\x51\x39", [0x07e0] = "\x03\x4c\x4b", + [0x07e1] = "\x04\x50\x5e", [0x07e2] = "\x03\x51\x2d", + [0x07e3] = "\x04\x50\x64", [0x07e4] = "\x03\x51\x35", + [0x07e5] = "\x03\x51\x34", [0x07e6] = "\x03\x51\x36", + [0x07ea] = "\x03\x55\x22", [0x07eb] = "\x04\x56\x48", + [0x07ec] = "\x03\x54\x7e", [0x07ed] = "\x03\x55\x25", + [0x07ee] = "\x03\x54\x7d", [0x07ef] = "\x04\x56\x4b", + [0x07f0] = "\x07\x38\x55", [0x07f1] = "\x05\x5b\x68", + [0x07f2] = "\x03\x54\x77", [0x07f3] = "\x03\x55\x26", + [0x07f5] = "\x03\x54\x79", [0x07f6] = "\x03\x55\x28", + [0x07f7] = "\x04\x5b\x48", [0x07f8] = "\x04\x5b\x44", + [0x07f9] = "\x03\x57\x7c", [0x07fa] = "\x04\x5b\x4a", + [0x07fb] = "\x04\x5b\x49", [0x07fe] = "\x04\x5f\x6f", + [0x07ff] = "\x04\x5f\x73", [0x0800] = "\x03\x5a\x49", + [0x0801] = "\x04\x5f\x70", [0x0802] = "\x04\x5f\x6e", + [0x0803] = "\x04\x5f\x72", [0x0804] = "\x04\x5f\x75", + [0x0805] = "\x03\x5a\x4c", [0x0806] = "\x03\x5a\x4b", + [0x0807] = "\x0f\x62\x53", [0x0808] = "\x03\x5a\x4a", + [0x0809] = "\x03\x5c\x4c", [0x080a] = "\x03\x5c\x46", + [0x080b] = "\x04\x63\x51", [0x080c] = "\x04\x63\x4f", + [0x080d] = "\x03\x5c\x48", [0x080e] = "\x03\x5c\x4d", + [0x080f] = "\x04\x63\x54", [0x0810] = "\x03\x5c\x4b", + [0x0811] = "\x03\x5c\x45", [0x0812] = "\x0f\x65\x3e", + [0x0814] = "\x05\x70\x27", [0x0815] = "\x03\x5e\x36", + [0x0816] = "\x03\x5c\x4a", [0x0817] = "\x03\x5f\x50", + [0x0818] = "\x04\x68\x6e", [0x0819] = "\x03\x60\x35", + [0x081a] = "\x03\x60\x33", [0x081b] = "\x03\x60\x34", + [0x081d] = "\x05\x24\x48", [0x081e] = "\x06\x28\x30", + [0x081f] = "\x04\x26\x6d", [0x0820] = "\x05\x26\x56", + [0x0821] = "\x04\x26\x70", [0x0822] = "\x04\x26\x6c", + [0x0823] = "\x04\x2d\x60", [0x0824] = "\x04\x29\x70", + [0x0825] = "\x04\x29\x71", [0x0826] = "\x06\x31\x78", + [0x0827] = "\x04\x29\x74", [0x0828] = "\x04\x29\x73", + [0x0829] = "\x05\x2e\x2e", [0x082a] = "\x04\x2d\x5d", + [0x082b] = "\x04\x2d\x61", [0x082c] = "\x04\x2d\x62", + [0x082d] = "\x04\x2d\x5e", [0x082e] = "\x03\x36\x61", + [0x082f] = "\x04\x32\x48", [0x0830] = "\x04\x32\x49", + [0x0831] = "\x06\x40\x6e", [0x0832] = "\x04\x38\x3b", + [0x0833] = "\x04\x38\x39", [0x0834] = "\x03\x3c\x46", + [0x0835] = "\x05\x39\x43", [0x0836] = "\x04\x38\x3c", + [0x0837] = "\x06\x38\x64", [0x0839] = "\x04\x3e\x21", + [0x083a] = "\x04\x3d\x7c", [0x083b] = "\x04\x3d\x7b", + [0x083c] = "\x04\x3d\x7d", [0x083d] = "\x04\x3d\x7e", + [0x083e] = "\x04\x3e\x22", [0x083f] = "\x03\x47\x52", + [0x0840] = "\x06\x5d\x77", [0x0841] = "\x04\x44\x2a", + [0x0842] = "\x04\x4a\x4c", [0x0843] = "\x03\x4c\x68", + [0x0844] = "\x04\x50\x66", [0x0845] = "\x04\x50\x67", + [0x0846] = "\x04\x56\x4f", [0x0847] = "\x04\x56\x4e", + [0x0848] = "\x03\x55\x2a", [0x0849] = "\x03\x55\x2c", + [0x084a] = "\x04\x5f\x77", [0x084b] = "\x07\x4e\x22", + [0x084c] = "\x04\x68\x71", [0x084d] = "\x05\x75\x77", + [0x084e] = "\x05\x79\x2f", [0x084f] = "\x06\x25\x25", + [0x0852] = "\x03\x2d\x3e", [0x0854] = "\x03\x2b\x7b", + [0x0855] = "\x03\x3c\x48", [0x0856] = "\x04\x38\x3f", + [0x0857] = "\x05\x46\x5f", [0x0858] = "\x03\x58\x24", + [0x0859] = "\x04\x22\x7c", [0x085a] = "\x03\x29\x57", + [0x085b] = "\x05\x26\x62", [0x085c] = "\x04\x26\x75", + [0x085e] = "\x03\x2d\x3f", [0x085f] = "\x03\x2d\x41", + [0x0860] = "\x03\x2d\x40", [0x0861] = "\x03\x31\x69", + [0x0862] = "\x03\x36\x63", [0x0863] = "\x04\x32\x4a", + [0x0864] = "\x04\x38\x45", [0x0865] = "\x04\x38\x44", + [0x0866] = "\x04\x38\x46", [0x0867] = "\x04\x38\x42", + [0x0868] = "\x03\x3c\x4a", [0x086a] = "\x03\x42\x23", + [0x086b] = "\x04\x3e\x23", [0x086c] = "\x04\x3e\x24", + [0x086d] = "\x03\x42\x24", [0x086f] = "\x04\x44\x32", + [0x0870] = "\x05\x46\x60", [0x0871] = "\x04\x44\x33", + [0x0872] = "\x04\x44\x30", [0x0873] = "\x04\x4a\x50", + [0x0874] = "\x04\x4a\x4f", [0x0875] = "\x04\x50\x6b", + [0x0876] = "\x04\x50\x6a", [0x0878] = "\x04\x56\x51", + [0x0879] = "\x04\x63\x55", [0x087a] = "\x03\x5c\x4e", + [0x087b] = "\x05\x75\x78", [0x087c] = "\x05\x24\x4e", + [0x087d] = "\x04\x26\x78", [0x087e] = "\x04\x2d\x64", + [0x087f] = "\x03\x31\x6b", [0x0880] = "\x04\x32\x4f", + [0x0881] = "\x04\x38\x49", [0x0882] = "\x04\x38\x4a", + [0x0883] = "\x04\x38\x4b", [0x0884] = "\x03\x42\x25", + [0x0885] = "\x04\x44\x35", [0x0886] = "\x03\x51\x47", + [0x0887] = "\x03\x51\x48", [0x0888] = "\x04\x50\x6e", + [0x0889] = "\x04\x56\x53", [0x088a] = "\x03\x58\x25", + [0x088b] = "\x04\x29\x7b", [0x088c] = "\x03\x23\x7b", + [0x088d] = "\x04\x26\x79", [0x088e] = "\x03\x29\x5b", + [0x088f] = "\x04\x26\x7a", [0x0891] = "\x0f\x27\x5b", + [0x0892] = "\x03\x2d\x43", [0x0893] = "\x04\x2d\x66", + [0x0894] = "\x04\x32\x52", [0x0895] = "\x04\x32\x54", + [0x0896] = "\x04\x32\x53", [0x0897] = "\x04\x32\x55", + [0x0898] = "\x03\x36\x67", [0x0899] = "\x04\x2d\x67", + [0x089a] = "\x04\x32\x51", [0x089b] = "\x05\x39\x5b", + [0x089c] = "\x03\x3c\x4c", [0x089d] = "\x04\x38\x4f", + [0x089e] = "\x04\x38\x4c", [0x089f] = "\x04\x3e\x29", + [0x08a0] = "\x03\x42\x27", [0x08a1] = "\x04\x3e\x28", + [0x08a2] = "\x04\x3e\x27", [0x08a3] = "\x04\x44\x3f", + [0x08a4] = "\x04\x44\x38", [0x08a5] = "\x04\x44\x39", + [0x08a6] = "\x04\x44\x3a", [0x08a7] = "\x05\x46\x68", + [0x08a8] = "\x04\x44\x3c", [0x08aa] = "\x04\x50\x6f", + [0x08ab] = "\x04\x50\x71", [0x08ac] = "\x04\x50\x72", + [0x08ad] = "\x03\x51\x49", [0x08af] = "\x04\x5b\x50", + [0x08b0] = "\x04\x5b\x4f", [0x08b1] = "\x03\x5a\x50", + [0x08b2] = "\x04\x6d\x57", [0x08b3] = "\x04\x2d\x6a", + [0x08b4] = "\x03\x29\x5c", [0x08b5] = "\x03\x36\x68", + [0x08b6] = "\x03\x4c\x69", [0x08b7] = "\x03\x51\x4a", + [0x08b8] = "\x04\x21\x4f", [0x08b9] = "\x03\x22\x56", + [0x08ba] = "\x03\x22\x55", [0x08bb] = "\x03\x24\x22", + [0x08bc] = "\x05\x21\x74", [0x08bd] = "\x04\x23\x22", + [0x08be] = "\x03\x26\x54", [0x08c0] = "\x03\x26\x4f", + [0x08c1] = "\x04\x24\x4f", [0x08c2] = "\x03\x26\x5d", + [0x08c3] = "\x06\x28\x49", [0x08c4] = "\x03\x26\x5a", + [0x08c5] = "\x04\x24\x51", [0x08c6] = "\x03\x26\x4b", + [0x08c7] = "\x06\x28\x4a", [0x08c8] = "\x06\x28\x44", + [0x08ca] = "\x03\x26\x58", [0x08cb] = "\x03\x29\x61", + [0x08cc] = "\x03\x29\x5f", [0x08cd] = "\x03\x29\x5e", + [0x08ce] = "\x03\x29\x62", [0x08cf] = "\x03\x29\x60", + [0x08d0] = "\x04\x26\x7e", [0x08d1] = "\x03\x29\x68", + [0x08d2] = "\x03\x29\x66", [0x08d3] = "\x0f\x27\x66", + [0x08d6] = "\x03\x2d\x44", [0x08d7] = "\x05\x2a\x24", + [0x08d8] = "\x04\x27\x22", [0x08d9] = "\x03\x2d\x54", + [0x08da] = "\x05\x29\x7b", [0x08db] = "\x05\x29\x7c", + [0x08dc] = "\x04\x29\x7e", [0x08dd] = "\x03\x2d\x56", + [0x08de] = "\x03\x2d\x4c", [0x08e4] = "\x06\x38\x72", + [0x08e5] = "\x03\x31\x70", [0x08e6] = "\x03\x31\x71", + [0x08e7] = "\x04\x2d\x6b", [0x08e8] = "\x06\x39\x33", + [0x08e9] = "\x03\x31\x74", [0x08ea] = "\x04\x2d\x6c", + [0x08eb] = "\x03\x36\x69", [0x08ec] = "\x03\x32\x24", + [0x08ed] = "\x03\x32\x23", [0x08ee] = "\x03\x31\x7e", + [0x08f3] = "\x03\x31\x75", [0x08f4] = "\x04\x32\x57", + [0x08f5] = "\x03\x36\x71", [0x08f6] = "\x04\x32\x63", + [0x08f7] = "\x04\x32\x64", [0x08f8] = "\x03\x36\x6e", + [0x08f9] = "\x04\x32\x5e", [0x08fa] = "\x03\x37\x22", + [0x08fb] = "\x03\x36\x6d", [0x08fc] = "\x03\x3c\x4f", + [0x08fd] = "\x03\x36\x7e", [0x08fe] = "\x04\x32\x58", + [0x08ff] = "\x04\x32\x68", [0x0900] = "\x05\x39\x5e", + [0x0901] = "\x04\x32\x5a", [0x0902] = "\x04\x32\x5c", + [0x0903] = "\x06\x41\x2b", [0x0904] = "\x05\x33\x3d", + [0x0905] = "\x03\x3c\x5e", [0x0906] = "\x03\x36\x7b", + [0x0907] = "\x03\x3c\x5f", [0x0908] = "\x03\x36\x73", + [0x0909] = "\x06\x41\x41", [0x090a] = "\x03\x36\x78", + [0x090f] = "\x04\x38\x51", [0x0910] = "\x04\x38\x56", + [0x0911] = "\x03\x3c\x65", [0x0912] = "\x04\x38\x52", + [0x0913] = "\x03\x3c\x59", [0x0914] = "\x04\x38\x59", + [0x0915] = "\x03\x3c\x6a", [0x0916] = "\x03\x3c\x67", + [0x0917] = "\x03\x3c\x55", [0x0918] = "\x04\x38\x57", + [0x0919] = "\x04\x38\x5a", [0x091a] = "\x03\x3c\x53", + [0x091b] = "\x03\x3c\x57", [0x091c] = "\x03\x3c\x61", + [0x091d] = "\x03\x42\x2b", [0x091e] = "\x06\x4a\x6d", + [0x0920] = "\x0f\x3c\x43", [0x0921] = "\x0f\x3c\x5a", + [0x0925] = "\x04\x3e\x37", [0x0926] = "\x03\x42\x2c", + [0x0927] = "\x03\x42\x37", [0x0928] = "\x03\x42\x35", + [0x0929] = "\x03\x42\x48", [0x092a] = "\x03\x42\x38", + [0x092b] = "\x04\x3e\x30", [0x092c] = "\x04\x3e\x39", + [0x092d] = "\x04\x3e\x2d", [0x092e] = "\x03\x42\x42", + [0x092f] = "\x04\x3e\x38", [0x0930] = "\x03\x42\x34", + [0x0931] = "\x03\x42\x3c", [0x0932] = "\x04\x3e\x3c", + [0x0933] = "\x03\x42\x2f", [0x0934] = "\x03\x42\x41", + [0x0935] = "\x05\x40\x27", [0x0936] = "\x04\x3e\x2f", + [0x0937] = "\x04\x3e\x32", [0x0938] = "\x03\x42\x32", + [0x093b] = "\x03\x42\x43", [0x093c] = "\x03\x47\x55", + [0x093d] = "\x04\x44\x49", [0x093e] = "\x03\x47\x60", + [0x093f] = "\x06\x5e\x3b", [0x0940] = "\x03\x47\x59", + [0x0941] = "\x06\x54\x50", [0x0942] = "\x03\x47\x58", + [0x0943] = "\x04\x44\x46", [0x0944] = "\x04\x44\x4d", + [0x0945] = "\x04\x44\x4a", [0x0946] = "\x06\x5e\x40", + [0x094a] = "\x03\x4c\x6e", [0x094b] = "\x04\x4a\x5f", + [0x094c] = "\x04\x4a\x61", [0x094d] = "\x03\x4c\x6f", + [0x094e] = "\x03\x4c\x7c", [0x094f] = "\x04\x4a\x68", + [0x0950] = "\x04\x4a\x5d", [0x0951] = "\x03\x4c\x6d", + [0x0952] = "\x04\x4a\x59", [0x0953] = "\x03\x4c\x72", + [0x0954] = "\x05\x46\x78", [0x0955] = "\x07\x24\x61", + [0x0956] = "\x03\x4c\x70", [0x0957] = "\x04\x50\x74", + [0x0958] = "\x03\x51\x4b", [0x0959] = "\x03\x4c\x76", + [0x095d] = "\x04\x50\x77", [0x095e] = "\x04\x50\x7d", + [0x095f] = "\x05\x55\x36", [0x0960] = "\x04\x50\x76", + [0x0961] = "\x03\x51\x4f", [0x0962] = "\x03\x51\x4e", + [0x0963] = "\x04\x50\x7a", [0x0964] = "\x05\x55\x2d", + [0x0965] = "\x03\x51\x53", [0x0966] = "\x03\x51\x57", + [0x0967] = "\x04\x50\x7b", [0x0968] = "\x04\x56\x56", + [0x0969] = "\x03\x51\x51", [0x096a] = "\x03\x51\x4c", + [0x096b] = "\x04\x50\x78", [0x096c] = "\x03\x51\x52", + [0x096d] = "\x04\x4a\x62", [0x096e] = "\x05\x55\x2e", + [0x096f] = "\x03\x55\x32", [0x0970] = "\x03\x55\x38", + [0x0971] = "\x04\x56\x5e", [0x0972] = "\x04\x56\x60", + [0x0973] = "\x03\x55\x34", [0x0974] = "\x04\x56\x58", + [0x0975] = "\x03\x55\x2e", [0x0976] = "\x04\x56\x57", + [0x0977] = "\x04\x56\x5c", [0x0978] = "\x03\x55\x3b", + [0x0979] = "\x04\x56\x59", [0x097a] = "\x04\x56\x5b", + [0x097b] = "\x03\x55\x33", [0x097d] = "\x04\x5b\x56", + [0x097e] = "\x04\x5b\x54", [0x097f] = "\x04\x5b\x5a", + [0x0980] = "\x04\x5b\x57", [0x0981] = "\x04\x5b\x60", + [0x0984] = "\x04\x5f\x7b", [0x0985] = "\x04\x5f\x7d", + [0x0986] = "\x04\x5b\x5b", [0x0987] = "\x04\x5f\x79", + [0x0988] = "\x03\x5a\x51", [0x098c] = "\x03\x5c\x50", + [0x098d] = "\x04\x63\x5a", [0x098e] = "\x04\x63\x5e", + [0x098f] = "\x04\x63\x5b", [0x0991] = "\x03\x5c\x52", + [0x0992] = "\x04\x66\x49", [0x0993] = "\x05\x70\x3e", + [0x0994] = "\x04\x66\x4a", [0x0995] = "\x04\x66\x4c", + [0x0996] = "\x04\x68\x73", [0x0997] = "\x03\x5e\x39", + [0x0998] = "\x03\x5e\x38", [0x099a] = "\x03\x5f\x51", + [0x099b] = "\x04\x6a\x4e", [0x099c] = "\x03\x60\x38", + [0x099e] = "\x04\x6b\x6d", [0x099f] = "\x04\x6b\x6e", + [0x09a0] = "\x03\x61\x66", [0x09a1] = "\x03\x24\x2a", + [0x09a3] = "\x04\x24\x52", [0x09a4] = "\x03\x26\x61", + [0x09a6] = "\x03\x29\x6e", [0x09a7] = "\x04\x27\x27", + [0x09a8] = "\x03\x29\x78", [0x09aa] = "\x03\x29\x73", + [0x09ab] = "\x03\x2d\x67", [0x09ac] = "\x03\x2d\x59", + [0x09ad] = "\x03\x2d\x66", [0x09ae] = "\x03\x2d\x61", + [0x09af] = "\x03\x2d\x60", [0x09b0] = "\x03\x2d\x5b", + [0x09b2] = "\x04\x2a\x27", [0x09b3] = "\x03\x32\x2e", + [0x09b4] = "\x04\x2d\x73", [0x09b5] = "\x03\x32\x32", + [0x09b9] = "\x03\x37\x2b", [0x09ba] = "\x03\x37\x2a", + [0x09bb] = "\x03\x37\x34", [0x09bc] = "\x04\x32\x71", + [0x09be] = "\x04\x32\x76", [0x09bf] = "\x04\x32\x70", + [0x09c0] = "\x04\x32\x77", [0x09c1] = "\x0f\x36\x48", + [0x09c2] = "\x03\x3c\x76", [0x09c3] = "\x04\x38\x65", + [0x09c4] = "\x04\x38\x61", [0x09c5] = "\x03\x3c\x75", + [0x09c6] = "\x04\x38\x62", [0x09c7] = "\x04\x38\x64", + [0x09c8] = "\x04\x38\x60", [0x09c9] = "\x03\x3b\x23", + [0x09ca] = "\x03\x3c\x7e", [0x09cb] = "\x03\x3c\x70", + [0x09cd] = "\x03\x3c\x78", [0x09ce] = "\x03\x42\x54", + [0x09cf] = "\x03\x42\x4d", [0x09d0] = "\x03\x42\x56", + [0x09d1] = "\x04\x3e\x4b", [0x09d2] = "\x03\x42\x4a", + [0x09d3] = "\x03\x42\x55", [0x09d4] = "\x04\x3e\x48", + [0x09d5] = "\x04\x3e\x46", [0x09d6] = "\x04\x3e\x49", + [0x09d7] = "\x06\x54\x54", [0x09d8] = "\x03\x42\x4b", + [0x09d9] = "\x03\x42\x50", [0x09da] = "\x0f\x42\x78", + [0x09db] = "\x0f\x43\x3c", [0x09df] = "\x04\x44\x59", + [0x09e0] = "\x03\x47\x73", [0x09e1] = "\x03\x47\x69", + [0x09e3] = "\x04\x44\x56", [0x09e4] = "\x04\x44\x5a", + [0x09e5] = "\x04\x44\x5c", [0x09e6] = "\x03\x47\x71", + [0x09e8] = "\x0f\x49\x58", [0x09eb] = "\x03\x4d\x26", + [0x09ec] = "\x03\x4d\x23", [0x09ed] = "\x03\x4d\x2b", + [0x09ee] = "\x03\x4d\x21", [0x09ef] = "\x03\x4d\x27", + [0x09f0] = "\x04\x4a\x6a", [0x09f3] = "\x04\x51\x25", + [0x09f4] = "\x03\x51\x5d", [0x09f5] = "\x03\x51\x5b", + [0x09f6] = "\x04\x51\x2b", [0x09f7] = "\x03\x51\x5f", + [0x09f8] = "\x03\x51\x61", [0x09f9] = "\x04\x51\x24", + [0x09fb] = "\x03\x51\x64", [0x09fc] = "\x03\x51\x65", + [0x09fe] = "\x03\x55\x3d", [0x09ff] = "\x04\x56\x62", + [0x0a00] = "\x03\x55\x3f", [0x0a01] = "\x03\x55\x44", + [0x0a02] = "\x07\x39\x26", [0x0a03] = "\x03\x57\x51", + [0x0a04] = "\x03\x58\x2c", [0x0a05] = "\x04\x56\x64", + [0x0a08] = "\x03\x5c\x5a", [0x0a09] = "\x03\x5a\x59", + [0x0a0a] = "\x03\x5c\x54", [0x0a0b] = "\x03\x5c\x5b", + [0x0a0c] = "\x04\x63\x5f", [0x0a0d] = "\x04\x66\x4e", + [0x0a0e] = "\x05\x73\x57", [0x0a0f] = "\x04\x6a\x50", + [0x0a10] = "\x03\x60\x3a", [0x0a11] = "\x03\x61\x7a", + [0x0a12] = "\x04\x27\x2c", [0x0a13] = "\x03\x29\x7a", + [0x0a14] = "\x03\x37\x58", [0x0a15] = "\x03\x47\x74", + [0x0a16] = "\x03\x2d\x6a", [0x0a17] = "\x04\x2d\x76", + [0x0a18] = "\x03\x37\x36", [0x0a19] = "\x04\x38\x6b", + [0x0a1a] = "\x03\x29\x7b", [0x0a1b] = "\x04\x2a\x2c", + [0x0a1c] = "\x04\x38\x6c", [0x0a1d] = "\x03\x29\x7d", + [0x0a1e] = "\x03\x29\x7e", [0x0a1f] = "\x05\x2e\x53", + [0x0a20] = "\x06\x39\x40", [0x0a21] = "\x04\x2d\x7a", + [0x0a22] = "\x04\x44\x5f", [0x0a23] = "\x07\x39\x2d", + [0x0a24] = "\x04\x5b\x64", [0x0a25] = "\x04\x66\x50", + [0x0a26] = "\x03\x21\x6a", [0x0a27] = "\x03\x32\x33", + [0x0a28] = "\x04\x23\x26", [0x0a29] = "\x03\x26\x65", + [0x0a2a] = "\x04\x24\x55", [0x0a2b] = "\x06\x2c\x71", + [0x0a2c] = "\x04\x27\x33", [0x0a2d] = "\x05\x26\x77", + [0x0a2e] = "\x04\x27\x32", [0x0a2f] = "\x04\x27\x2f", + [0x0a30] = "\x03\x2d\x6c", [0x0a31] = "\x03\x2d\x6f", + [0x0a32] = "\x04\x2a\x2e", [0x0a33] = "\x03\x2d\x6e", + [0x0a35] = "\x03\x32\x34", [0x0a36] = "\x03\x32\x35", + [0x0a37] = "\x04\x2d\x7d", [0x0a38] = "\x04\x2d\x7c", + [0x0a39] = "\x04\x32\x7a", [0x0a3a] = "\x05\x33\x4d", + [0x0a3b] = "\x04\x32\x79", [0x0a3c] = "\x04\x32\x7e", + [0x0a3d] = "\x03\x37\x38", [0x0a3e] = "\x06\x41\x66", + [0x0a40] = "\x03\x37\x37", [0x0a41] = "\x04\x38\x70", + [0x0a42] = "\x04\x38\x72", [0x0a43] = "\x04\x38\x73", + [0x0a44] = "\x04\x44\x63", [0x0a45] = "\x06\x54\x78", + [0x0a46] = "\x04\x3e\x4e", [0x0a47] = "\x03\x42\x5e", + [0x0a49] = "\x04\x44\x62", [0x0a4a] = "\x04\x44\x60", + [0x0a4b] = "\x04\x44\x64", [0x0a4c] = "\x04\x4a\x6f", + [0x0a4d] = "\x04\x4a\x6e", [0x0a4e] = "\x04\x4a\x72", + [0x0a4f] = "\x04\x4a\x71", [0x0a50] = "\x04\x4a\x73", + [0x0a51] = "\x04\x51\x2e", [0x0a52] = "\x04\x51\x30", + [0x0a53] = "\x04\x51\x2f", [0x0a54] = "\x04\x56\x67", + [0x0a55] = "\x03\x55\x46", [0x0a56] = "\x03\x55\x47", + [0x0a57] = "\x04\x5b\x66", [0x0a58] = "\x04\x5b\x65", + [0x0a59] = "\x04\x60\x24", [0x0a5a] = "\x07\x53\x6b", + [0x0a5b] = "\x04\x6a\x51", [0x0a5c] = "\x04\x27\x34", + [0x0a5d] = "\x04\x24\x59", [0x0a5e] = "\x03\x26\x6d", + [0x0a5f] = "\x04\x24\x56", [0x0a60] = "\x03\x26\x6c", + [0x0a61] = "\x06\x2c\x75", [0x0a62] = "\x04\x27\x39", + [0x0a63] = "\x05\x27\x2e", [0x0a64] = "\x03\x2a\x29", + [0x0a65] = "\x03\x2a\x24", [0x0a66] = "\x03\x2a\x25", + [0x0a67] = "\x04\x27\x3a", [0x0a6b] = "\x04\x2a\x32", + [0x0a6c] = "\x04\x2a\x34", [0x0a6d] = "\x04\x2a\x35", + [0x0a6e] = "\x03\x2d\x72", [0x0a6f] = "\x06\x32\x67", + [0x0a71] = "\x03\x32\x37", [0x0a72] = "\x05\x2e\x5c", + [0x0a73] = "\x04\x2e\x21", [0x0a74] = "\x04\x2d\x7e", + [0x0a75] = "\x04\x2e\x22", [0x0a76] = "\x04\x2e\x26", + [0x0a77] = "\x06\x41\x6d", [0x0a78] = "\x04\x2e\x27", + [0x0a79] = "\x05\x33\x51", [0x0a7a] = "\x04\x33\x28", + [0x0a7b] = "\x06\x41\x75", [0x0a7c] = "\x04\x33\x29", + [0x0a7d] = "\x04\x33\x25", [0x0a7e] = "\x04\x33\x2b", + [0x0a7f] = "\x04\x33\x27", [0x0a80] = "\x04\x33\x2e", + [0x0a81] = "\x04\x38\x79", [0x0a82] = "\x04\x38\x77", + [0x0a83] = "\x03\x3d\x2c", [0x0a84] = "\x04\x38\x7b", + [0x0a85] = "\x06\x4b\x43", [0x0a87] = "\x04\x44\x65", + [0x0a88] = "\x04\x3e\x54", [0x0a89] = "\x04\x44\x66", + [0x0a8a] = "\x04\x3e\x53", [0x0a8b] = "\x03\x42\x60", + [0x0a8c] = "\x04\x3e\x52", [0x0a8e] = "\x04\x44\x6a", + [0x0a8f] = "\x06\x5e\x6e", [0x0a90] = "\x04\x44\x69", + [0x0a91] = "\x04\x44\x68", [0x0a92] = "\x04\x44\x67", + [0x0a93] = "\x03\x47\x76", [0x0a94] = "\x04\x38\x7a", + [0x0a95] = "\x04\x4a\x7b", [0x0a96] = "\x04\x4a\x76", + [0x0a97] = "\x04\x4a\x7a", [0x0a98] = "\x04\x4a\x7c", + [0x0a9a] = "\x07\x2f\x74", [0x0a9b] = "\x04\x51\x32", + [0x0a9c] = "\x04\x51\x34", [0x0a9d] = "\x03\x55\x48", + [0x0a9e] = "\x04\x56\x6a", [0x0a9f] = "\x04\x56\x6b", + [0x0aa0] = "\x04\x5b\x67", [0x0aa1] = "\x05\x68\x3b", + [0x0aa3] = "\x04\x63\x65", [0x0aa4] = "\x04\x63\x66", + [0x0aa5] = "\x04\x63\x67", [0x0aa6] = "\x04\x63\x63", + [0x0aa7] = "\x04\x6b\x6f", [0x0aa8] = "\x03\x24\x2e", + [0x0aa9] = "\x04\x23\x29", [0x0aaa] = "\x03\x24\x30", + [0x0aab] = "\x03\x24\x31", [0x0aac] = "\x03\x26\x71", + [0x0aad] = "\x03\x26\x6f", [0x0aae] = "\x03\x26\x70", + [0x0ab0] = "\x03\x2a\x2e", [0x0ab1] = "\x03\x2d\x76", + [0x0ab2] = "\x06\x2d\x21", [0x0ab3] = "\x03\x2a\x30", + [0x0ab4] = "\x04\x27\x3b", [0x0ab5] = "\x03\x2a\x31", + [0x0ab7] = "\x03\x2d\x7d", [0x0ab8] = "\x03\x32\x3a", + [0x0ab9] = "\x04\x2a\x37", [0x0aba] = "\x04\x2a\x38", + [0x0abd] = "\x0f\x2c\x32", [0x0abf] = "\x04\x33\x2f", + [0x0ac0] = "\x03\x32\x43", [0x0ac1] = "\x03\x32\x44", + [0x0ac2] = "\x03\x32\x3b", [0x0ac3] = "\x04\x33\x30", + [0x0ac4] = "\x03\x32\x45", [0x0ac8] = "\x03\x32\x42", + [0x0ac9] = "\x03\x37\x3f", [0x0aca] = "\x03\x37\x42", + [0x0acb] = "\x03\x37\x41", [0x0acc] = "\x04\x33\x33", + [0x0acd] = "\x03\x37\x3e", [0x0ace] = "\x03\x37\x43", + [0x0ad1] = "\x03\x3d\x34", [0x0ad2] = "\x04\x38\x7d", + [0x0ad3] = "\x05\x3a\x2d", [0x0ad4] = "\x03\x42\x63", + [0x0ad5] = "\x03\x3d\x31", [0x0ad6] = "\x03\x3d\x30", + [0x0ad7] = "\x03\x42\x6c", [0x0ada] = "\x0f\x3d\x3b", + [0x0add] = "\x04\x3e\x59", [0x0ade] = "\x03\x42\x65", + [0x0adf] = "\x03\x42\x69", [0x0ae0] = "\x05\x40\x4e", + [0x0ae1] = "\x03\x42\x72", [0x0ae2] = "\x0f\x43\x49", + [0x0ae3] = "\x0f\x43\x56", [0x0ae7] = "\x03\x48\x24", + [0x0ae8] = "\x07\x25\x37", [0x0aeb] = "\x04\x4b\x22", + [0x0aec] = "\x04\x4b\x21", [0x0aed] = "\x03\x4d\x37", + [0x0aee] = "\x03\x4d\x3c", [0x0aef] = "\x03\x4d\x33", + [0x0af0] = "\x03\x4d\x38", [0x0af1] = "\x03\x4d\x34", + [0x0af2] = "\x03\x4d\x32", [0x0af5] = "\x03\x51\x68", + [0x0af6] = "\x05\x55\x5d", [0x0af7] = "\x04\x51\x37", + [0x0af8] = "\x03\x51\x69", [0x0af9] = "\x03\x55\x4a", + [0x0afa] = "\x04\x56\x6f", [0x0afb] = "\x0f\x55\x7a", + [0x0afc] = "\x0f\x56\x22", [0x0afd] = "\x03\x55\x4e", + [0x0afe] = "\x04\x5b\x69", [0x0aff] = "\x03\x55\x4c", + [0x0b01] = "\x0f\x5b\x2d", [0x0b02] = "\x03\x58\x31", + [0x0b04] = "\x04\x60\x2a", [0x0b05] = "\x0f\x62\x78", + [0x0b07] = "\x03\x5c\x61", [0x0b09] = "\x04\x2a\x39", + [0x0b0a] = "\x04\x2a\x3a", [0x0b0b] = "\x05\x2e\x62", + [0x0b0c] = "\x04\x2e\x2b", [0x0b0d] = "\x04\x33\x35", + [0x0b0e] = "\x04\x33\x34", [0x0b0f] = "\x04\x38\x7e", + [0x0b10] = "\x04\x44\x70", [0x0b11] = "\x04\x44\x71", + [0x0b12] = "\x04\x44\x6f", [0x0b13] = "\x04\x4b\x23", + [0x0b14] = "\x04\x4b\x24", [0x0b15] = "\x04\x5b\x6c", + [0x0b16] = "\x04\x6d\x5a", [0x0b17] = "\x04\x24\x5e", + [0x0b18] = "\x05\x27\x32", [0x0b19] = "\x03\x2a\x34", + [0x0b1a] = "\x03\x2e\x23", [0x0b1b] = "\x04\x2a\x3d", + [0x0b1c] = "\x03\x32\x4a", [0x0b1d] = "\x03\x32\x4b", + [0x0b1e] = "\x04\x2e\x2d", [0x0b1f] = "\x03\x32\x49", + [0x0b20] = "\x04\x2e\x2c", [0x0b21] = "\x04\x33\x3b", + [0x0b22] = "\x04\x39\x21", [0x0b23] = "\x04\x33\x3a", + [0x0b24] = "\x04\x33\x38", [0x0b25] = "\x04\x33\x39", + [0x0b26] = "\x04\x33\x37", [0x0b27] = "\x04\x39\x23", + [0x0b28] = "\x04\x39\x26", [0x0b29] = "\x04\x33\x3c", + [0x0b2a] = "\x04\x39\x24", [0x0b2b] = "\x04\x3e\x62", + [0x0b2c] = "\x04\x3e\x61", [0x0b2d] = "\x04\x3e\x5d", + [0x0b2e] = "\x04\x3e\x60", [0x0b2f] = "\x03\x42\x76", + [0x0b30] = "\x04\x3e\x63", [0x0b31] = "\x05\x47\x48", + [0x0b32] = "\x04\x44\x73", [0x0b33] = "\x04\x44\x76", + [0x0b34] = "\x04\x44\x74", [0x0b35] = "\x04\x44\x78", + [0x0b36] = "\x04\x44\x77", [0x0b37] = "\x04\x44\x75", + [0x0b38] = "\x04\x4b\x25", [0x0b39] = "\x04\x4b\x27", + [0x0b3a] = "\x04\x4b\x26", [0x0b3b] = "\x04\x51\x3f", + [0x0b3c] = "\x03\x51\x6f", [0x0b3d] = "\x04\x51\x42", + [0x0b3e] = "\x04\x51\x41", [0x0b3f] = "\x04\x56\x72", + [0x0b40] = "\x04\x56\x73", [0x0b41] = "\x03\x55\x51", + [0x0b42] = "\x04\x56\x75", [0x0b43] = "\x03\x55\x50", + [0x0b44] = "\x04\x56\x71", [0x0b46] = "\x04\x5b\x6f", + [0x0b47] = "\x04\x5b\x6e", [0x0b48] = "\x04\x60\x2c", + [0x0b49] = "\x04\x60\x2b", [0x0b4a] = "\x04\x68\x75", + [0x0b4b] = "\x04\x6b\x70", [0x0b4c] = "\x04\x6a\x53", + [0x0b4d] = "\x03\x32\x4c", [0x0b4e] = "\x04\x3e\x65", + [0x0b50] = "\x03\x4d\x3f", [0x0b51] = "\x04\x56\x78", + [0x0b52] = "\x03\x3d\x40", [0x0b53] = "\x0f\x50\x4e", + [0x0b55] = "\x05\x24\x63", [0x0b56] = "\x06\x28\x62", + [0x0b57] = "\x03\x26\x72", [0x0b58] = "\x04\x2a\x41", + [0x0b59] = "\x03\x2e\x29", [0x0b5a] = "\x04\x2a\x43", + [0x0b5b] = "\x04\x2e\x2f", [0x0b5c] = "\x04\x2e\x31", + [0x0b5d] = "\x05\x33\x64", [0x0b5e] = "\x03\x37\x48", + [0x0b5f] = "\x03\x3d\x41", [0x0b60] = "\x04\x39\x28", + [0x0b61] = "\x04\x3e\x69", [0x0b62] = "\x03\x42\x79", + [0x0b63] = "\x03\x42\x7a", [0x0b64] = "\x04\x3e\x68", + [0x0b65] = "\x04\x44\x79", [0x0b66] = "\x03\x4d\x40", + [0x0b67] = "\x04\x4b\x2a", [0x0b68] = "\x04\x4b\x29", + [0x0b69] = "\x04\x51\x44", [0x0b6a] = "\x05\x5c\x2f", + [0x0b6b] = "\x04\x5b\x72", [0x0b6c] = "\x04\x5b\x73", + [0x0b6d] = "\x04\x60\x2e", [0x0b6e] = "\x04\x63\x69", + [0x0b6f] = "\x04\x6a\x54", [0x0b70] = "\x04\x3e\x6d", + [0x0b71] = "\x04\x24\x61", [0x0b72] = "\x04\x24\x62", + [0x0b74] = "\x05\x27\x37", [0x0b75] = "\x03\x2a\x3c", + [0x0b77] = "\x04\x2a\x46", [0x0b78] = "\x03\x2e\x2d", + [0x0b79] = "\x04\x2a\x49", [0x0b7a] = "\x03\x2e\x2c", + [0x0b7b] = "\x03\x2e\x2e", [0x0b7d] = "\x03\x32\x56", + [0x0b7e] = "\x04\x2e\x37", [0x0b7f] = "\x04\x2e\x3b", + [0x0b80] = "\x04\x2e\x35", [0x0b81] = "\x04\x2e\x36", + [0x0b82] = "\x03\x32\x54", [0x0b83] = "\x04\x2e\x33", + [0x0b84] = "\x04\x2e\x3f", [0x0b85] = "\x04\x2e\x39", + [0x0b86] = "\x06\x39\x6b", [0x0b87] = "\x03\x32\x53", + [0x0b88] = "\x04\x2e\x38", [0x0b89] = "\x04\x2e\x3a", + [0x0b8a] = "\x05\x33\x6d", [0x0b8b] = "\x04\x33\x42", + [0x0b8c] = "\x03\x37\x4c", [0x0b8d] = "\x04\x33\x40", + [0x0b8e] = "\x04\x2e\x3c", [0x0b8f] = "\x04\x33\x3f", + [0x0b90] = "\x04\x33\x45", [0x0b91] = "\x03\x37\x4b", + [0x0b92] = "\x04\x33\x43", [0x0b93] = "\x04\x39\x32", + [0x0b94] = "\x04\x39\x33", [0x0b95] = "\x03\x3d\x46", + [0x0b96] = "\x03\x3d\x4b", [0x0b97] = "\x06\x4b\x5a", + [0x0b98] = "\x03\x3d\x49", [0x0b99] = "\x04\x39\x36", + [0x0b9a] = "\x05\x40\x60", [0x0b9b] = "\x04\x39\x2f", + [0x0b9c] = "\x04\x39\x30", [0x0b9d] = "\x03\x3d\x48", + [0x0b9e] = "\x03\x3d\x4a", [0x0b9f] = "\x05\x3a\x3b", + [0x0ba0] = "\x04\x39\x35", [0x0ba1] = "\x04\x39\x38", + [0x0ba2] = "\x04\x3e\x74", [0x0ba3] = "\x05\x40\x64", + [0x0ba4] = "\x04\x3e\x6f", [0x0ba5] = "\x04\x3e\x78", + [0x0ba6] = "\x04\x3e\x6e", [0x0ba7] = "\x04\x3e\x76", + [0x0ba8] = "\x04\x3e\x73", [0x0ba9] = "\x04\x3e\x7a", + [0x0baa] = "\x04\x45\x24", [0x0bab] = "\x04\x45\x28", + [0x0bac] = "\x06\x5f\x2d", [0x0bad] = "\x03\x48\x2a", + [0x0bae] = "\x03\x48\x2c", [0x0baf] = "\x04\x45\x23", + [0x0bb0] = "\x04\x45\x21", [0x0bb6] = "\x07\x25\x58", + [0x0bb7] = "\x04\x4b\x38", [0x0bb8] = "\x03\x4d\x42", + [0x0bb9] = "\x04\x4b\x37", [0x0bba] = "\x04\x4b\x35", + [0x0bbb] = "\x04\x4b\x33", [0x0bbc] = "\x04\x4b\x2f", + [0x0bbd] = "\x07\x25\x5c", [0x0bbe] = "\x04\x4b\x2e", + [0x0bbf] = "\x05\x47\x59", [0x0bc1] = "\x04\x4b\x3b", + [0x0bc2] = "\x07\x30\x36", [0x0bc3] = "\x04\x51\x48", + [0x0bc4] = "\x04\x51\x49", [0x0bc5] = "\x03\x51\x75", + [0x0bc6] = "\x04\x51\x4e", [0x0bc7] = "\x04\x51\x4a", + [0x0bc8] = "\x04\x51\x50", [0x0bc9] = "\x04\x57\x26", + [0x0bca] = "\x04\x57\x22", [0x0bcb] = "\x04\x5b\x7b", + [0x0bcc] = "\x04\x5b\x77", [0x0bcd] = "\x07\x40\x6b", + [0x0bce] = "\x04\x57\x25", [0x0bcf] = "\x07\x40\x67", + [0x0bd1] = "\x04\x60\x32", [0x0bd2] = "\x04\x60\x2f", + [0x0bd3] = "\x04\x60\x30", [0x0bd5] = "\x04\x66\x58", + [0x0bd6] = "\x04\x66\x59", [0x0bd7] = "\x03\x5e\x40", + [0x0bd8] = "\x05\x73\x5c", [0x0bd9] = "\x04\x6a\x55", + [0x0bda] = "\x04\x6b\x72", [0x0bdb] = "\x04\x6b\x71", + [0x0bdc] = "\x03\x62\x2d", [0x0bdd] = "\x03\x26\x75", + [0x0bde] = "\x03\x2e\x30", [0x0bdf] = "\x03\x32\x58", + [0x0be1] = "\x03\x37\x4e", [0x0be2] = "\x03\x43\x22", + [0x0be3] = "\x03\x48\x2d", [0x0be4] = "\x05\x47\x5b", + [0x0be5] = "\x05\x4e\x59", [0x0be6] = "\x04\x51\x56", + [0x0be7] = "\x04\x60\x37", [0x0be8] = "\x04\x66\x5b", + [0x0be9] = "\x04\x6c\x73", [0x0bea] = "\x04\x27\x46", + [0x0beb] = "\x04\x2a\x4e", [0x0bec] = "\x03\x2e\x31", + [0x0bed] = "\x04\x2e\x46", [0x0bee] = "\x04\x2e\x45", + [0x0bef] = "\x04\x33\x47", [0x0bf0] = "\x04\x33\x48", + [0x0bf1] = "\x04\x39\x3a", [0x0bf2] = "\x06\x55\x52", + [0x0bf3] = "\x04\x45\x30", [0x0bf4] = "\x04\x45\x32", + [0x0bf5] = "\x03\x48\x2f", [0x0bf6] = "\x03\x4d\x43", + [0x0bf7] = "\x04\x4b\x3d", [0x0bf8] = "\x04\x51\x57", + [0x0bf9] = "\x04\x5b\x7e", [0x0bfa] = "\x04\x63\x6c", + [0x0bfb] = "\x04\x27\x48", [0x0bfc] = "\x04\x2a\x51", + [0x0bfd] = "\x04\x2a\x50", [0x0bfe] = "\x04\x2e\x47", + [0x0bff] = "\x04\x2e\x49", [0x0c00] = "\x03\x32\x59", + [0x0c01] = "\x04\x33\x4b", [0x0c02] = "\x03\x37\x4f", + [0x0c03] = "\x03\x3d\x4e", [0x0c04] = "\x03\x43\x23", + [0x0c05] = "\x05\x40\x6f", [0x0c06] = "\x03\x48\x32", + [0x0c07] = "\x04\x51\x5a", [0x0c08] = "\x04\x45\x36", + [0x0c09] = "\x04\x57\x2c", [0x0c0a] = "\x04\x60\x38", + [0x0c0b] = "\x03\x5f\x38", [0x0c0d] = "\x04\x6e\x48", + [0x0c0e] = "\x03\x26\x79", [0x0c0f] = "\x04\x24\x65", + [0x0c10] = "\x04\x27\x4e", [0x0c11] = "\x04\x27\x4f", + [0x0c12] = "\x04\x27\x4d", [0x0c13] = "\x04\x27\x4c", + [0x0c14] = "\x04\x27\x4a", [0x0c15] = "\x04\x2a\x53", + [0x0c16] = "\x04\x2a\x56", [0x0c17] = "\x04\x2a\x57", + [0x0c18] = "\x04\x2a\x54", [0x0c19] = "\x04\x2a\x58", + [0x0c1a] = "\x05\x2a\x6d", [0x0c1b] = "\x04\x2a\x5a", + [0x0c1c] = "\x06\x33\x38", [0x0c1e] = "\x03\x2e\x34", + [0x0c1f] = "\x04\x2e\x52", [0x0c20] = "\x03\x32\x5d", + [0x0c21] = "\x03\x32\x66", [0x0c22] = "\x03\x32\x60", + [0x0c23] = "\x04\x2e\x4d", [0x0c24] = "\x03\x32\x61", + [0x0c27] = "\x05\x33\x76", [0x0c28] = "\x04\x33\x50", + [0x0c29] = "\x04\x33\x51", [0x0c2a] = "\x03\x37\x56", + [0x0c2b] = "\x03\x37\x54", [0x0c2c] = "\x04\x33\x52", + [0x0c2d] = "\x04\x33\x4e", [0x0c2e] = "\x04\x33\x4d", + [0x0c2f] = "\x03\x3d\x50", [0x0c30] = "\x04\x39\x49", + [0x0c31] = "\x03\x3d\x54", [0x0c32] = "\x04\x39\x4a", + [0x0c33] = "\x03\x3d\x55", [0x0c34] = "\x04\x39\x45", + [0x0c35] = "\x04\x39\x48", [0x0c36] = "\x04\x39\x3f", + [0x0c37] = "\x04\x39\x41", [0x0c38] = "\x04\x39\x4b", + [0x0c39] = "\x04\x39\x46", [0x0c3a] = "\x04\x39\x4d", + [0x0c3b] = "\x04\x39\x47", [0x0c3c] = "\x04\x39\x43", + [0x0c3d] = "\x04\x3f\x22", [0x0c3e] = "\x04\x39\x4c", + [0x0c3f] = "\x04\x39\x42", [0x0c41] = "\x04\x3f\x30", + [0x0c42] = "\x04\x3f\x2d", [0x0c43] = "\x03\x43\x24", + [0x0c44] = "\x04\x3f\x25", [0x0c45] = "\x04\x3f\x26", + [0x0c46] = "\x04\x3f\x27", [0x0c47] = "\x04\x3f\x2b", + [0x0c48] = "\x04\x3f\x2c", [0x0c49] = "\x06\x55\x61", + [0x0c4a] = "\x05\x47\x61", [0x0c4b] = "\x04\x45\x39", + [0x0c4c] = "\x04\x45\x41", [0x0c4d] = "\x04\x45\x3c", + [0x0c4e] = "\x04\x45\x37", [0x0c4f] = "\x03\x48\x37", + [0x0c50] = "\x04\x45\x43", [0x0c51] = "\x04\x45\x46", + [0x0c52] = "\x04\x45\x3f", [0x0c53] = "\x04\x45\x44", + [0x0c54] = "\x03\x48\x3a", [0x0c55] = "\x04\x45\x38", + [0x0c57] = "\x03\x4d\x45", [0x0c58] = "\x04\x4b\x45", + [0x0c59] = "\x04\x4b\x42", [0x0c5a] = "\x04\x4b\x44", + [0x0c5b] = "\x04\x4b\x47", [0x0c5c] = "\x04\x4b\x43", + [0x0c5d] = "\x04\x4b\x4d", [0x0c5e] = "\x03\x4d\x47", + [0x0c5f] = "\x05\x4e\x60", [0x0c60] = "\x04\x4b\x3f", + [0x0c62] = "\x03\x51\x77", [0x0c63] = "\x03\x51\x78", + [0x0c64] = "\x04\x51\x5c", [0x0c65] = "\x04\x51\x60", + [0x0c66] = "\x03\x51\x7c", [0x0c67] = "\x03\x51\x7a", + [0x0c68] = "\x04\x51\x5d", [0x0c69] = "\x04\x51\x64", + [0x0c6b] = "\x04\x57\x32", [0x0c6c] = "\x04\x57\x2e", + [0x0c6d] = "\x04\x57\x31", [0x0c6e] = "\x04\x57\x2f", + [0x0c6f] = "\x03\x55\x5a", [0x0c70] = "\x04\x57\x30", + [0x0c71] = "\x04\x57\x33", [0x0c72] = "\x04\x57\x34", + [0x0c73] = "\x05\x56\x22", [0x0c74] = "\x05\x62\x69", + [0x0c75] = "\x04\x5c\x27", [0x0c76] = "\x04\x5c\x29", + [0x0c77] = "\x04\x5c\x2a", [0x0c78] = "\x04\x5c\x25", + [0x0c79] = "\x03\x58\x37", [0x0c7a] = "\x04\x5c\x26", + [0x0c7b] = "\x04\x63\x70", [0x0c7c] = "\x04\x63\x6e", + [0x0c7d] = "\x04\x63\x71", [0x0c7e] = "\x04\x63\x6f", + [0x0c7f] = "\x04\x66\x5d", [0x0c80] = "\x03\x5e\x41", + [0x0c81] = "\x04\x68\x78", [0x0c82] = "\x04\x6a\x57", + [0x0c83] = "\x04\x68\x7a", [0x0c84] = "\x04\x6c\x75", + [0x0c85] = "\x04\x6e\x4d", [0x0c86] = "\x04\x27\x51", + [0x0c87] = "\x04\x2a\x5f", [0x0c88] = "\x04\x33\x57", + [0x0c89] = "\x04\x45\x4a", [0x0c8a] = "\x03\x55\x5d", + [0x0c8c] = "\x04\x57\x38", [0x0c8d] = "\x04\x63\x74", + [0x0c8e] = "\x04\x6b\x75", [0x0c8f] = "\x04\x2e\x57", + [0x0c90] = "\x04\x2e\x58", [0x0c91] = "\x04\x33\x5a", + [0x0c92] = "\x04\x33\x59", [0x0c93] = "\x06\x4c\x2b", + [0x0c94] = "\x04\x3f\x33", [0x0c95] = "\x04\x45\x4c", + [0x0c96] = "\x03\x24\x32", [0x0c97] = "\x03\x26\x7a", + [0x0c98] = "\x04\x27\x53", [0x0c9a] = "\x04\x2a\x64", + [0x0c9b] = "\x03\x2e\x38", [0x0c9c] = "\x04\x2a\x62", + [0x0c9d] = "\x03\x2e\x3c", [0x0c9e] = "\x03\x2d\x3b", + [0x0c9f] = "\x04\x2e\x5f", [0x0ca0] = "\x04\x2e\x5c", + [0x0ca1] = "\x04\x2e\x62", [0x0ca2] = "\x05\x2f\x34", + [0x0ca3] = "\x03\x37\x5b", [0x0ca4] = "\x03\x32\x6a", + [0x0ca5] = "\x03\x32\x6b", [0x0ca6] = "\x04\x2e\x5e", + [0x0ca7] = "\x04\x2e\x61", [0x0ca9] = "\x04\x33\x5e", + [0x0caa] = "\x04\x33\x61", [0x0cab] = "\x03\x37\x5c", + [0x0cac] = "\x04\x33\x5f", [0x0cad] = "\x03\x37\x5a", + [0x0cae] = "\x04\x33\x60", [0x0caf] = "\x03\x37\x5e", + [0x0cb0] = "\x03\x3d\x5b", [0x0cb1] = "\x05\x3a\x59", + [0x0cb2] = "\x06\x4c\x33", [0x0cb3] = "\x04\x39\x58", + [0x0cb4] = "\x03\x3d\x58", [0x0cb6] = "\x04\x39\x53", + [0x0cb7] = "\x04\x3f\x40", [0x0cb8] = "\x04\x3f\x39", + [0x0cb9] = "\x04\x3f\x3f", [0x0cba] = "\x03\x43\x2f", + [0x0cbb] = "\x04\x3f\x3c", [0x0cbc] = "\x03\x43\x32", + [0x0cbd] = "\x04\x3f\x3d", [0x0cbe] = "\x03\x43\x2c", + [0x0cbf] = "\x04\x3f\x3e", [0x0cc0] = "\x04\x3f\x38", + [0x0cc1] = "\x04\x3f\x3a", [0x0cc2] = "\x04\x3f\x3b", + [0x0cc7] = "\x04\x3f\x42", [0x0cc8] = "\x04\x45\x4e", + [0x0cc9] = "\x03\x48\x43", [0x0cca] = "\x04\x45\x51", + [0x0ccb] = "\x03\x48\x41", [0x0ccc] = "\x04\x45\x4d", + [0x0ccd] = "\x04\x45\x55", [0x0cce] = "\x04\x45\x4f", + [0x0ccf] = "\x05\x47\x76", [0x0cd1] = "\x04\x4b\x5c", + [0x0cd2] = "\x04\x4b\x58", [0x0cd3] = "\x04\x4b\x56", + [0x0cd4] = "\x04\x4b\x55", [0x0cd5] = "\x04\x4b\x5e", + [0x0cd6] = "\x07\x26\x24", [0x0cd7] = "\x04\x4b\x5b", + [0x0cd8] = "\x03\x52\x23", [0x0cd9] = "\x03\x51\x7d", + [0x0cda] = "\x04\x51\x6c", [0x0cdb] = "\x03\x51\x7e", + [0x0cdc] = "\x07\x30\x59", [0x0cdd] = "\x05\x56\x33", + [0x0cde] = "\x04\x51\x70", [0x0ce0] = "\x04\x51\x6d", + [0x0ce1] = "\x04\x57\x3b", [0x0ce2] = "\x04\x57\x41", + [0x0ce3] = "\x03\x48\x42", [0x0ce4] = "\x04\x57\x39", + [0x0ce5] = "\x03\x55\x5e", [0x0ce6] = "\x03\x55\x5f", + [0x0ce7] = "\x04\x57\x3f", [0x0ce9] = "\x03\x58\x41", + [0x0cea] = "\x04\x5c\x2d", [0x0ceb] = "\x03\x58\x3d", + [0x0cec] = "\x04\x5c\x31", [0x0ced] = "\x04\x5c\x2f", + [0x0cee] = "\x04\x5c\x2e", [0x0cf0] = "\x04\x60\x3f", + [0x0cf1] = "\x07\x4e\x5c", [0x0cf2] = "\x03\x5c\x63", + [0x0cf3] = "\x04\x63\x76", [0x0cf4] = "\x04\x63\x75", + [0x0cf5] = "\x04\x66\x5f", [0x0cf6] = "\x04\x66\x60", + [0x0cf7] = "\x04\x66\x61", [0x0cf8] = "\x04\x68\x7c", + [0x0cf9] = "\x04\x68\x7b", [0x0cfa] = "\x03\x60\x75", + [0x0cfb] = "\x03\x61\x67", [0x0cfd] = "\x03\x2e\x3f", + [0x0cfe] = "\x04\x2a\x67", [0x0cff] = "\x04\x2a\x66", + [0x0d00] = "\x06\x33\x48", [0x0d01] = "\x03\x32\x6e", + [0x0d02] = "\x04\x2e\x64", [0x0d03] = "\x03\x32\x71", + [0x0d04] = "\x03\x37\x64", [0x0d05] = "\x04\x33\x63", + [0x0d06] = "\x04\x33\x62", [0x0d07] = "\x03\x3d\x61", + [0x0d08] = "\x03\x3d\x60", [0x0d09] = "\x04\x39\x59", + [0x0d0b] = "\x04\x3f\x45", [0x0d0c] = "\x04\x3f\x44", + [0x0d0d] = "\x03\x43\x3a", [0x0d0e] = "\x03\x43\x3b", + [0x0d0f] = "\x03\x43\x3e", [0x0d10] = "\x04\x3f\x47", + [0x0d11] = "\x03\x43\x3c", [0x0d12] = "\x03\x43\x3f", + [0x0d13] = "\x03\x48\x46", [0x0d14] = "\x05\x48\x24", + [0x0d15] = "\x03\x48\x49", [0x0d18] = "\x05\x4e\x76", + [0x0d19] = "\x03\x4d\x4e", [0x0d1a] = "\x04\x51\x76", + [0x0d1b] = "\x03\x52\x25", [0x0d1c] = "\x04\x51\x74", + [0x0d1d] = "\x04\x51\x75", [0x0d1f] = "\x04\x57\x42", + [0x0d20] = "\x03\x58\x46", [0x0d21] = "\x03\x58\x47", + [0x0d22] = "\x03\x5a\x64", [0x0d24] = "\x04\x66\x63", + [0x0d25] = "\x03\x62\x34", [0x0d26] = "\x05\x24\x6e", + [0x0d27] = "\x03\x26\x7d", [0x0d28] = "\x05\x27\x46", + [0x0d29] = "\x06\x2d\x49", [0x0d2a] = "\x04\x27\x56", + [0x0d2b] = "\x03\x2a\x40", [0x0d2c] = "\x03\x2a\x41", + [0x0d2d] = "\x03\x2a\x43", [0x0d2e] = "\x04\x2a\x6a", + [0x0d2f] = "\x04\x2a\x6f", [0x0d30] = "\x04\x2a\x6b", + [0x0d31] = "\x04\x2a\x69", [0x0d32] = "\x04\x2a\x6c", + [0x0d33] = "\x0f\x2c\x6d", [0x0d36] = "\x04\x2e\x65", + [0x0d37] = "\x03\x32\x75", [0x0d38] = "\x03\x32\x7a", + [0x0d3a] = "\x06\x42\x66", [0x0d3b] = "\x04\x33\x67", + [0x0d3c] = "\x04\x33\x66", [0x0d3d] = "\x03\x37\x6d", + [0x0d3e] = "\x04\x33\x65", [0x0d3f] = "\x05\x34\x3b", + [0x0d40] = "\x05\x34\x39", [0x0d41] = "\x04\x33\x6a", + [0x0d42] = "\x04\x33\x69", [0x0d43] = "\x04\x33\x6b", + [0x0d44] = "\x03\x37\x68", [0x0d45] = "\x04\x33\x6d", + [0x0d46] = "\x05\x34\x38", [0x0d47] = "\x03\x37\x6e", + [0x0d4a] = "\x04\x33\x64", [0x0d4b] = "\x05\x3a\x65", + [0x0d4c] = "\x04\x39\x5e", [0x0d4d] = "\x04\x39\x62", + [0x0d4e] = "\x03\x3d\x67", [0x0d4f] = "\x04\x39\x64", + [0x0d50] = "\x03\x3d\x6a", [0x0d51] = "\x04\x39\x63", + [0x0d52] = "\x03\x3d\x6b", [0x0d53] = "\x04\x39\x61", + [0x0d54] = "\x04\x3f\x4f", [0x0d55] = "\x03\x43\x40", + [0x0d56] = "\x04\x3f\x4d", [0x0d57] = "\x03\x43\x45", + [0x0d58] = "\x04\x3f\x4c", [0x0d59] = "\x03\x43\x42", + [0x0d5a] = "\x04\x3f\x4b", [0x0d5b] = "\x03\x43\x43", + [0x0d5c] = "\x04\x45\x57", [0x0d5d] = "\x04\x3f\x49", + [0x0d5e] = "\x05\x41\x31", [0x0d60] = "\x03\x48\x51", + [0x0d61] = "\x03\x48\x4a", [0x0d62] = "\x04\x45\x5b", + [0x0d63] = "\x03\x48\x53", [0x0d64] = "\x03\x48\x4e", + [0x0d65] = "\x04\x45\x5a", [0x0d66] = "\x03\x48\x4c", + [0x0d67] = "\x04\x45\x58", [0x0d68] = "\x06\x5f\x6b", + [0x0d69] = "\x04\x45\x59", [0x0d6c] = "\x04\x4b\x65", + [0x0d6d] = "\x04\x4b\x61", [0x0d6e] = "\x03\x4d\x54", + [0x0d6f] = "\x04\x4b\x62", [0x0d70] = "\x03\x4d\x52", + [0x0d71] = "\x07\x26\x32", [0x0d72] = "\x03\x4d\x58", + [0x0d73] = "\x04\x4b\x68", [0x0d74] = "\x04\x4b\x66", + [0x0d75] = "\x04\x4b\x64", [0x0d76] = "\x03\x4d\x59", + [0x0d77] = "\x04\x51\x7d", [0x0d78] = "\x04\x51\x7c", + [0x0d79] = "\x03\x52\x2b", [0x0d7a] = "\x04\x51\x79", + [0x0d7b] = "\x04\x51\x78", [0x0d7c] = "\x04\x51\x7a", + [0x0d7d] = "\x03\x52\x2d", [0x0d7e] = "\x04\x57\x45", + [0x0d7f] = "\x03\x55\x63", [0x0d80] = "\x04\x57\x47", + [0x0d81] = "\x03\x58\x48", [0x0d82] = "\x07\x41\x2e", + [0x0d83] = "\x04\x5c\x37", [0x0d84] = "\x04\x5c\x35", + [0x0d85] = "\x04\x5c\x36", [0x0d88] = "\x03\x5e\x46", + [0x0d89] = "\x04\x63\x79", [0x0d8a] = "\x04\x66\x65", + [0x0d8b] = "\x07\x58\x4c", [0x0d8d] = "\x04\x66\x64", + [0x0d8e] = "\x04\x68\x7e", [0x0d8f] = "\x04\x69\x21", + [0x0d90] = "\x03\x62\x39", [0x0d91] = "\x04\x24\x69", + [0x0d92] = "\x06\x2d\x4e", [0x0d93] = "\x03\x2e\x46", + [0x0d94] = "\x03\x2e\x45", [0x0d95] = "\x04\x2a\x71", + [0x0d96] = "\x04\x2a\x72", [0x0d97] = "\x03\x33\x21", + [0x0d98] = "\x03\x32\x7e", [0x0d99] = "\x03\x32\x7d", + [0x0d9a] = "\x04\x33\x6f", [0x0d9b] = "\x04\x33\x70", + [0x0d9c] = "\x03\x37\x6f", [0x0d9d] = "\x05\x34\x45", + [0x0d9e] = "\x04\x33\x72", [0x0d9f] = "\x04\x33\x71", + [0x0da0] = "\x06\x42\x6f", [0x0da1] = "\x03\x3d\x6c", + [0x0da2] = "\x04\x39\x67", [0x0da3] = "\x03\x3d\x6d", + [0x0da4] = "\x06\x4c\x53", [0x0da5] = "\x03\x3d\x6e", + [0x0da6] = "\x05\x41\x39", [0x0da7] = "\x04\x3f\x53", + [0x0da8] = "\x04\x3f\x52", [0x0da9] = "\x06\x56\x27", + [0x0daa] = "\x04\x45\x60", [0x0dab] = "\x06\x5f\x78", + [0x0dac] = "\x04\x4b\x6c", [0x0dad] = "\x05\x4f\x23", + [0x0db0] = "\x04\x52\x25", [0x0db1] = "\x04\x52\x22", + [0x0db2] = "\x04\x52\x24", [0x0db3] = "\x07\x30\x6f", + [0x0db5] = "\x03\x55\x65", [0x0db6] = "\x03\x55\x66", + [0x0db7] = "\x04\x57\x4c", [0x0db8] = "\x04\x57\x4d", + [0x0db9] = "\x04\x57\x4b", [0x0dba] = "\x04\x57\x4f", + [0x0dbb] = "\x03\x55\x67", [0x0dbc] = "\x04\x5c\x39", + [0x0dbd] = "\x04\x5c\x3a", [0x0dbe] = "\x04\x60\x48", + [0x0dbf] = "\x04\x60\x49", [0x0dc0] = "\x04\x63\x7c", + [0x0dc1] = "\x04\x69\x22", [0x0dc2] = "\x03\x24\x34", + [0x0dc3] = "\x03\x2a\x46", [0x0dc5] = "\x04\x2a\x76", + [0x0dc6] = "\x03\x2e\x4a", [0x0dc7] = "\x03\x33\x25", + [0x0dc8] = "\x04\x2e\x6d", [0x0dc9] = "\x03\x33\x22", + [0x0dcb] = "\x05\x34\x46", [0x0dcc] = "\x03\x3d\x6f", + [0x0dcd] = "\x04\x39\x6a", [0x0dce] = "\x03\x43\x48", + [0x0dcf] = "\x04\x3f\x54", [0x0dd0] = "\x04\x3f\x55", + [0x0dd1] = "\x04\x3f\x5a", [0x0dd2] = "\x04\x45\x63", + [0x0dd3] = "\x04\x57\x52", [0x0dd4] = "\x04\x5c\x3b", + [0x0dd5] = "\x03\x5a\x68", [0x0dd6] = "\x05\x2b\x21", + [0x0dd7] = "\x04\x2e\x75", [0x0dd8] = "\x04\x2e\x70", + [0x0dd9] = "\x03\x33\x28", [0x0dda] = "\x04\x2e\x77", + [0x0ddb] = "\x03\x33\x29", [0x0ddc] = "\x04\x2e\x73", + [0x0ddd] = "\x04\x2e\x72", [0x0dde] = "\x04\x33\x76", + [0x0ddf] = "\x04\x33\x7d", [0x0de0] = "\x03\x37\x74", + [0x0de1] = "\x05\x34\x48", [0x0de2] = "\x04\x33\x77", + [0x0de3] = "\x04\x33\x7b", [0x0de4] = "\x03\x37\x75", + [0x0de5] = "\x06\x42\x76", [0x0de6] = "\x04\x33\x78", + [0x0de7] = "\x04\x39\x6d", [0x0de8] = "\x04\x39\x74", + [0x0de9] = "\x04\x39\x71", [0x0dea] = "\x03\x3d\x74", + [0x0deb] = "\x04\x3f\x5b", [0x0dec] = "\x04\x39\x72", + [0x0ded] = "\x03\x3d\x7a", [0x0dee] = "\x04\x39\x75", + [0x0def] = "\x03\x3d\x73", [0x0df0] = "\x04\x39\x6f", + [0x0df1] = "\x06\x4c\x5b", [0x0df2] = "\x06\x4c\x56", + [0x0df5] = "\x03\x43\x50", [0x0df6] = "\x04\x3f\x66", + [0x0df7] = "\x04\x3f\x62", [0x0df8] = "\x04\x3f\x61", + [0x0df9] = "\x03\x43\x52", [0x0dfa] = "\x03\x43\x53", + [0x0dfb] = "\x04\x3f\x5d", [0x0dfc] = "\x03\x43\x4e", + [0x0dfd] = "\x04\x3f\x60", [0x0dfe] = "\x03\x43\x4b", + [0x0e00] = "\x04\x3f\x63", [0x0e01] = "\x05\x48\x46", + [0x0e02] = "\x04\x39\x76", [0x0e03] = "\x04\x45\x65", + [0x0e04] = "\x03\x48\x5b", [0x0e05] = "\x04\x45\x6a", + [0x0e06] = "\x04\x45\x69", [0x0e07] = "\x03\x48\x5f", + [0x0e08] = "\x04\x45\x6e", [0x0e09] = "\x04\x45\x68", + [0x0e0a] = "\x03\x48\x59", [0x0e0b] = "\x04\x45\x6d", + [0x0e0c] = "\x04\x45\x66", [0x0e0d] = "\x05\x48\x36", + [0x0e0e] = "\x04\x4b\x7b", [0x0e0f] = "\x04\x4b\x75", + [0x0e10] = "\x04\x4b\x70", [0x0e11] = "\x03\x4d\x61", + [0x0e12] = "\x03\x4d\x5e", [0x0e13] = "\x04\x4c\x22", + [0x0e14] = "\x03\x4d\x67", [0x0e15] = "\x04\x4b\x7e", + [0x0e16] = "\x03\x4d\x62", [0x0e17] = "\x04\x4c\x2e", + [0x0e18] = "\x05\x4f\x3b", [0x0e19] = "\x03\x4d\x64", + [0x0e1a] = "\x04\x4c\x30", [0x0e1b] = "\x04\x4c\x25", + [0x0e1c] = "\x04\x4c\x2d", [0x0e1d] = "\x04\x4b\x79", + [0x0e1e] = "\x05\x4f\x32", [0x0e1f] = "\x03\x4d\x5f", + [0x0e20] = "\x05\x4f\x45", [0x0e21] = "\x04\x4c\x2c", + [0x0e22] = "\x04\x4c\x27", [0x0e23] = "\x04\x4b\x77", + [0x0e24] = "\x03\x4d\x66", [0x0e25] = "\x03\x4d\x68", + [0x0e26] = "\x04\x4c\x28", [0x0e27] = "\x05\x4f\x36", + [0x0e2a] = "\x04\x52\x34", [0x0e2b] = "\x04\x52\x3a", + [0x0e2c] = "\x03\x52\x31", [0x0e2d] = "\x04\x52\x37", + [0x0e2e] = "\x04\x52\x2b", [0x0e2f] = "\x04\x52\x38", + [0x0e30] = "\x03\x52\x35", [0x0e31] = "\x04\x52\x39", + [0x0e32] = "\x04\x52\x3b", [0x0e33] = "\x04\x52\x36", + [0x0e34] = "\x04\x52\x2f", [0x0e35] = "\x04\x52\x3d", + [0x0e36] = "\x04\x52\x29", [0x0e37] = "\x03\x52\x32", + [0x0e38] = "\x04\x57\x5b", [0x0e39] = "\x05\x5c\x6d", + [0x0e3a] = "\x04\x57\x5e", [0x0e3b] = "\x04\x57\x5a", + [0x0e3c] = "\x04\x57\x62", [0x0e3d] = "\x05\x5c\x7d", + [0x0e3e] = "\x04\x57\x65", [0x0e3f] = "\x04\x57\x53", + [0x0e40] = "\x03\x55\x6c", [0x0e41] = "\x04\x57\x56", + [0x0e42] = "\x04\x57\x58", [0x0e43] = "\x04\x57\x59", + [0x0e44] = "\x05\x5c\x7e", [0x0e45] = "\x04\x57\x55", + [0x0e46] = "\x05\x5d\x30", [0x0e48] = "\x04\x5c\x44", + [0x0e49] = "\x04\x5c\x4f", [0x0e4a] = "\x04\x5c\x4b", + [0x0e4b] = "\x04\x5c\x50", [0x0e4c] = "\x04\x5c\x43", + [0x0e4d] = "\x03\x58\x4a", [0x0e4e] = "\x04\x5c\x4a", + [0x0e4f] = "\x03\x5a\x6c", [0x0e50] = "\x04\x5c\x42", + [0x0e51] = "\x04\x5c\x4c", [0x0e52] = "\x07\x41\x3f", + [0x0e53] = "\x04\x5c\x46", [0x0e54] = "\x04\x5c\x49", + [0x0e55] = "\x04\x5c\x40", [0x0e56] = "\x05\x63\x34", + [0x0e57] = "\x04\x5c\x48", [0x0e58] = "\x03\x58\x4d", + [0x0e59] = "\x03\x58\x4b", [0x0e5a] = "\x05\x63\x41", + [0x0e5b] = "\x04\x60\x56", [0x0e5c] = "\x05\x68\x6e", + [0x0e5d] = "\x03\x5a\x6a", [0x0e5e] = "\x04\x60\x53", + [0x0e5f] = "\x05\x68\x66", [0x0e60] = "\x03\x5a\x6d", + [0x0e61] = "\x03\x5a\x69", [0x0e62] = "\x03\x5a\x6b", + [0x0e63] = "\x04\x5c\x51", [0x0e65] = "\x04\x63\x7e", + [0x0e66] = "\x04\x66\x69", [0x0e67] = "\x04\x66\x6c", + [0x0e68] = "\x04\x66\x6e", [0x0e69] = "\x03\x5e\x4a", + [0x0e6a] = "\x04\x66\x6a", [0x0e6b] = "\x03\x5e\x4d", + [0x0e6c] = "\x04\x66\x68", [0x0e6d] = "\x04\x66\x6d", + [0x0e6e] = "\x03\x5f\x56", [0x0e6f] = "\x05\x70\x61", + [0x0e70] = "\x04\x69\x26", [0x0e71] = "\x04\x69\x28", + [0x0e72] = "\x04\x6a\x5d", [0x0e73] = "\x04\x6a\x61", + [0x0e74] = "\x04\x6a\x5c", [0x0e75] = "\x03\x60\x5f", + [0x0e76] = "\x04\x6b\x76", [0x0e77] = "\x04\x6d\x5c", + [0x0e78] = "\x04\x6d\x76", [0x0e79] = "\x07\x65\x5d", + [0x0e7a] = "\x04\x2a\x77", [0x0e7b] = "\x03\x33\x2f", + [0x0e7c] = "\x03\x33\x33", [0x0e7d] = "\x06\x43\x22", + [0x0e7e] = "\x04\x34\x25", [0x0e7f] = "\x05\x34\x59", + [0x0e80] = "\x03\x37\x7c", [0x0e81] = "\x06\x4c\x60", + [0x0e82] = "\x04\x39\x7b", [0x0e83] = "\x04\x39\x7c", + [0x0e84] = "\x03\x3d\x7d", [0x0e85] = "\x03\x3d\x7c", + [0x0e86] = "\x04\x39\x7d", [0x0e87] = "\x03\x43\x5a", + [0x0e88] = "\x03\x43\x56", [0x0e89] = "\x03\x43\x57", + [0x0e8a] = "\x03\x43\x59", [0x0e8b] = "\x03\x43\x5b", + [0x0e8d] = "\x03\x48\x63", [0x0e8e] = "\x04\x45\x72", + [0x0e8f] = "\x03\x48\x64", [0x0e90] = "\x03\x48\x65", + [0x0e91] = "\x06\x60\x2c", [0x0e92] = "\x03\x48\x66", + [0x0e93] = "\x03\x4d\x6b", [0x0e94] = "\x03\x4d\x6c", + [0x0e95] = "\x03\x4d\x69", [0x0e96] = "\x03\x4d\x6a", + [0x0e97] = "\x04\x4c\x37", [0x0e98] = "\x07\x26\x57", + [0x0e99] = "\x04\x4c\x35", [0x0e9a] = "\x03\x52\x36", + [0x0e9b] = "\x04\x57\x6d", [0x0e9c] = "\x03\x55\x73", + [0x0e9d] = "\x03\x55\x72", [0x0e9e] = "\x04\x57\x69", + [0x0e9f] = "\x04\x57\x6a", [0x0ea0] = "\x03\x4d\x74", + [0x0ea1] = "\x04\x57\x6b", [0x0ea3] = "\x05\x63\x4e", + [0x0ea4] = "\x04\x5c\x56", [0x0ea5] = "\x03\x58\x52", + [0x0ea6] = "\x04\x5c\x55", [0x0ea7] = "\x04\x5c\x54", + [0x0ea8] = "\x05\x63\x54", [0x0ea9] = "\x03\x58\x53", + [0x0eaa] = "\x03\x5a\x70", [0x0eab] = "\x04\x60\x5b", + [0x0eac] = "\x04\x60\x5d", [0x0ead] = "\x04\x64\x23", + [0x0eae] = "\x03\x5c\x68", [0x0eaf] = "\x07\x54\x3a", + [0x0eb0] = "\x05\x70\x70", [0x0eb1] = "\x04\x6a\x65", + [0x0eb2] = "\x05\x76\x39", [0x0eb3] = "\x04\x6c\x7a", + [0x0eb4] = "\x03\x61\x45", [0x0eb5] = "\x04\x27\x5c", + [0x0eb6] = "\x06\x33\x64", [0x0eb7] = "\x03\x2e\x57", + [0x0eb8] = "\x03\x2e\x55", [0x0eb9] = "\x03\x2e\x58", + [0x0eba] = "\x04\x2e\x78", [0x0ebb] = "\x04\x2e\x7e", + [0x0ebc] = "\x03\x33\x35", [0x0ebd] = "\x03\x33\x34", + [0x0ebe] = "\x04\x2e\x7c", [0x0ebf] = "\x03\x33\x39", + [0x0ec0] = "\x04\x2f\x21", [0x0ec1] = "\x03\x33\x38", + [0x0ec2] = "\x04\x2e\x7d", [0x0ec3] = "\x03\x33\x36", + [0x0ec4] = "\x03\x33\x3a", [0x0ec8] = "\x04\x34\x2e", + [0x0ec9] = "\x04\x34\x26", [0x0eca] = "\x03\x38\x23", + [0x0ecb] = "\x03\x38\x2a", [0x0ecc] = "\x04\x34\x27", + [0x0ecd] = "\x04\x34\x30", [0x0ece] = "\x03\x38\x2c", + [0x0ecf] = "\x04\x34\x2d", [0x0ed0] = "\x04\x34\x2b", + [0x0ed1] = "\x04\x34\x29", [0x0ed2] = "\x03\x38\x28", + [0x0ed3] = "\x03\x38\x2d", [0x0ed4] = "\x03\x38\x25", + [0x0ed5] = "\x03\x3e\x36", [0x0ed6] = "\x05\x3b\x2c", + [0x0ed7] = "\x03\x3e\x2d", [0x0ed8] = "\x03\x3e\x32", + [0x0ed9] = "\x03\x3e\x27", [0x0eda] = "\x03\x3e\x30", + [0x0edb] = "\x03\x3e\x25", [0x0edc] = "\x06\x4c\x71", + [0x0ede] = "\x03\x3e\x31", [0x0edf] = "\x04\x3f\x6a", + [0x0ee0] = "\x03\x43\x65", [0x0ee1] = "\x03\x43\x6b", + [0x0ee2] = "\x04\x3f\x6e", [0x0ee3] = "\x04\x3f\x73", + [0x0ee4] = "\x04\x3f\x6f", [0x0ee5] = "\x03\x43\x61", + [0x0ee6] = "\x03\x43\x5d", [0x0ee7] = "\x03\x48\x6c", + [0x0ee8] = "\x04\x45\x75", [0x0ee9] = "\x04\x45\x7e", + [0x0eea] = "\x04\x45\x79", [0x0eeb] = "\x04\x46\x21", + [0x0eec] = "\x03\x48\x67", [0x0eed] = "\x03\x43\x5f", + [0x0eee] = "\x03\x48\x72", [0x0eef] = "\x03\x48\x75", + [0x0ef0] = "\x04\x46\x23", [0x0ef1] = "\x05\x48\x54", + [0x0ef2] = "\x03\x48\x6f", [0x0ef3] = "\x03\x4e\x2a", + [0x0ef4] = "\x05\x4f\x53", [0x0ef5] = "\x04\x4c\x3e", + [0x0ef6] = "\x04\x4c\x3c", [0x0ef7] = "\x04\x4c\x40", + [0x0ef8] = "\x03\x4d\x7b", [0x0ef9] = "\x03\x4e\x21", + [0x0efa] = "\x03\x4e\x2d", [0x0efb] = "\x03\x4d\x76", + [0x0efc] = "\x03\x4d\x79", [0x0efd] = "\x04\x4c\x3a", + [0x0efe] = "\x04\x4c\x3d", [0x0eff] = "\x04\x4c\x3f", + [0x0f00] = "\x03\x4d\x7a", [0x0f01] = "\x04\x4c\x44", + [0x0f02] = "\x05\x4f\x54", [0x0f03] = "\x03\x4e\x26", + [0x0f04] = "\x03\x4e\x23", [0x0f05] = "\x03\x52\x3a", + [0x0f06] = "\x04\x52\x49", [0x0f07] = "\x03\x52\x3c", + [0x0f08] = "\x04\x52\x47", [0x0f09] = "\x03\x52\x3d", + [0x0f0a] = "\x03\x52\x3e", [0x0f0c] = "\x04\x57\x73", + [0x0f0d] = "\x03\x55\x78", [0x0f0e] = "\x05\x5d\x3f", + [0x0f0f] = "\x03\x55\x76", [0x0f10] = "\x05\x5d\x46", + [0x0f11] = "\x03\x55\x77", [0x0f12] = "\x04\x57\x6e", + [0x0f13] = "\x03\x55\x7c", [0x0f14] = "\x03\x55\x7b", + [0x0f15] = "\x07\x3a\x39", [0x0f16] = "\x04\x5c\x62", + [0x0f17] = "\x04\x5c\x60", [0x0f18] = "\x04\x57\x72", + [0x0f19] = "\x03\x58\x57", [0x0f1a] = "\x03\x58\x56", + [0x0f1b] = "\x03\x59\x29", [0x0f1c] = "\x04\x60\x66", + [0x0f1d] = "\x04\x60\x63", [0x0f1e] = "\x04\x60\x68", + [0x0f1f] = "\x04\x60\x62", [0x0f20] = "\x07\x47\x4a", + [0x0f21] = "\x03\x5a\x73", [0x0f22] = "\x03\x5a\x71", + [0x0f23] = "\x05\x6d\x22", [0x0f24] = "\x03\x5c\x69", + [0x0f25] = "\x04\x64\x24", [0x0f26] = "\x03\x5c\x6a", + [0x0f27] = "\x03\x5c\x6b", [0x0f28] = "\x03\x5e\x4f", + [0x0f29] = "\x03\x5e\x4e", [0x0f2a] = "\x04\x69\x2a", + [0x0f2b] = "\x07\x58\x58", [0x0f2c] = "\x03\x5f\x59", + [0x0f2d] = "\x04\x69\x2b", [0x0f2e] = "\x04\x6a\x66", + [0x0f2f] = "\x04\x6b\x79", [0x0f30] = "\x04\x6b\x78", + [0x0f31] = "\x07\x5f\x33", [0x0f32] = "\x03\x60\x78", + [0x0f33] = "\x04\x6c\x7c", [0x0f34] = "\x04\x6c\x7b", + [0x0f35] = "\x04\x6d\x77", [0x0f42] = "\x04\x2a\x79", + [0x0f43] = "\x04\x2f\x29", [0x0f44] = "\x03\x38\x2f", + [0x0f45] = "\x03\x38\x32", [0x0f46] = "\x05\x34\x60", + [0x0f47] = "\x04\x34\x34", [0x0f48] = "\x03\x38\x30", + [0x0f49] = "\x04\x34\x33", [0x0f4a] = "\x04\x3a\x28", + [0x0f4b] = "\x04\x46\x25", [0x0f4c] = "\x03\x48\x76", + [0x0f4d] = "\x04\x52\x4e", [0x0f4e] = "\x04\x6a\x6b", + [0x0f50] = "\x03\x2a\x4d", [0x0f51] = "\x03\x2e\x5c", + [0x0f52] = "\x03\x2e\x5b", [0x0f53] = "\x03\x2e\x59", + [0x0f54] = "\x04\x2a\x7b", [0x0f55] = "\x04\x2f\x2a", + [0x0f56] = "\x06\x3a\x6b", [0x0f57] = "\x04\x2f\x2d", + [0x0f58] = "\x04\x34\x35", [0x0f59] = "\x04\x3f\x75", + [0x0f5a] = "\x04\x3a\x2a", [0x0f5b] = "\x03\x43\x6c", + [0x0f5c] = "\x03\x43\x6d", [0x0f5d] = "\x05\x41\x65", + [0x0f5e] = "\x03\x48\x7a", [0x0f5f] = "\x03\x48\x7b", + [0x0f61] = "\x04\x52\x4f", [0x0f62] = "\x04\x57\x75", + [0x0f63] = "\x04\x5c\x65", [0x0f64] = "\x04\x60\x6d", + [0x0f65] = "\x04\x66\x7b", [0x0f66] = "\x04\x6b\x7b", + [0x0f67] = "\x06\x3a\x74", [0x0f68] = "\x04\x2f\x2e", + [0x0f69] = "\x03\x31\x3f", [0x0f6a] = "\x04\x34\x38", + [0x0f6b] = "\x04\x34\x36", [0x0f6c] = "\x04\x34\x37", + [0x0f6d] = "\x06\x43\x3c", [0x0f6e] = "\x04\x3a\x2d", + [0x0f6f] = "\x04\x3a\x31", [0x0f70] = "\x04\x3a\x30", + [0x0f71] = "\x04\x3f\x76", [0x0f72] = "\x03\x48\x7e", + [0x0f73] = "\x04\x46\x27", [0x0f74] = "\x03\x48\x7d", + [0x0f75] = "\x04\x46\x28", [0x0f76] = "\x03\x48\x7c", + [0x0f77] = "\x04\x4c\x49", [0x0f78] = "\x04\x52\x53", + [0x0f79] = "\x03\x52\x41", [0x0f7a] = "\x04\x57\x77", + [0x0f7b] = "\x04\x5c\x6a", [0x0f7c] = "\x04\x5c\x6b", + [0x0f7d] = "\x04\x69\x2c", [0x0f7e] = "\x03\x33\x40", + [0x0f7f] = "\x03\x33\x41", [0x0f80] = "\x04\x34\x3a", + [0x0f81] = "\x03\x38\x33", [0x0f82] = "\x04\x34\x3b", + [0x0f83] = "\x04\x34\x3e", [0x0f84] = "\x04\x34\x3c", + [0x0f85] = "\x03\x38\x35", [0x0f86] = "\x03\x38\x34", + [0x0f87] = "\x04\x3a\x34", [0x0f88] = "\x04\x3a\x35", + [0x0f89] = "\x05\x3b\x3a", [0x0f8a] = "\x04\x3a\x33", + [0x0f8b] = "\x03\x43\x70", [0x0f8c] = "\x04\x3f\x78", + [0x0f8d] = "\x03\x43\x71", [0x0f8e] = "\x04\x3f\x77", + [0x0f8f] = "\x03\x43\x6f", [0x0f90] = "\x03\x49\x21", + [0x0f91] = "\x04\x46\x2a", [0x0f92] = "\x04\x46\x29", + [0x0f93] = "\x04\x46\x2b", [0x0f94] = "\x04\x52\x55", + [0x0f95] = "\x04\x52\x56", [0x0f96] = "\x03\x58\x5e", + [0x0f97] = "\x03\x58\x60", [0x0f98] = "\x03\x58\x5f", + [0x0f99] = "\x03\x5c\x6e", [0x0f9a] = "\x04\x66\x7d", + [0x0f9c] = "\x03\x3e\x39", [0x0f9d] = "\x03\x3e\x3a", + [0x0f9f] = "\x04\x2b\x27", [0x0fa0] = "\x04\x2b\x28", + [0x0fa1] = "\x04\x2f\x38", [0x0fa2] = "\x04\x2b\x29", + [0x0fa3] = "\x03\x38\x38", [0x0fa4] = "\x04\x3f\x7a", + [0x0fa6] = "\x04\x46\x2e", [0x0fa7] = "\x04\x46\x2d", + [0x0fa8] = "\x04\x46\x2f", [0x0fa9] = "\x04\x46\x32", + [0x0faa] = "\x04\x46\x30", [0x0fab] = "\x04\x4c\x4f", + [0x0fad] = "\x04\x57\x7d", [0x0fae] = "\x04\x57\x7a", + [0x0faf] = "\x04\x57\x7b", [0x0fb0] = "\x04\x5c\x70", + [0x0fb1] = "\x04\x67\x21", [0x0fb2] = "\x04\x24\x6d", + [0x0fb3] = "\x03\x33\x46", [0x0fb4] = "\x03\x33\x45", + [0x0fb5] = "\x03\x38\x3a", [0x0fb6] = "\x04\x34\x41", + [0x0fb7] = "\x04\x3a\x39", [0x0fb8] = "\x05\x41\x70", + [0x0fb9] = "\x03\x43\x74", [0x0fba] = "\x04\x46\x36", + [0x0fbb] = "\x04\x46\x34", [0x0fbc] = "\x04\x46\x35", + [0x0fbd] = "\x04\x46\x37", [0x0fbe] = "\x03\x49\x24", + [0x0fbf] = "\x03\x4e\x33", [0x0fc0] = "\x04\x4c\x52", + [0x0fc1] = "\x04\x52\x5a", [0x0fc2] = "\x03\x52\x42", + [0x0fc3] = "\x04\x52\x5b", [0x0fc4] = "\x04\x58\x21", + [0x0fc5] = "\x04\x58\x24", [0x0fc6] = "\x04\x58\x23", + [0x0fc7] = "\x04\x58\x22", [0x0fc8] = "\x03\x58\x64", + [0x0fc9] = "\x04\x64\x28", [0x0fca] = "\x03\x5f\x5c", + [0x0fcb] = "\x06\x56\x6d", [0x0fcc] = "\x04\x23\x2d", + [0x0fcd] = "\x06\x25\x49", [0x0fce] = "\x04\x24\x6f", + [0x0fcf] = "\x04\x24\x6e", [0x0fd0] = "\x03\x2a\x51", + [0x0fd1] = "\x06\x3b\x28", [0x0fd2] = "\x03\x2a\x55", + [0x0fd3] = "\x03\x2a\x50", [0x0fd4] = "\x04\x27\x66", + [0x0fd5] = "\x0f\x28\x52", [0x0fd6] = "\x04\x27\x62", + [0x0fd7] = "\x04\x27\x67", [0x0fd8] = "\x04\x27\x63", + [0x0fd9] = "\x04\x27\x65", [0x0fda] = "\x05\x27\x58", + [0x0fdb] = "\x03\x2a\x5a", [0x0fdc] = "\x03\x2a\x53", + [0x0fde] = "\x05\x2b\x33", [0x0fdf] = "\x04\x2b\x2f", + [0x0fe0] = "\x04\x2b\x2a", [0x0fe1] = "\x04\x2b\x2c", + [0x0fe2] = "\x03\x2e\x62", [0x0fe3] = "\x03\x2e\x5f", + [0x0fe4] = "\x06\x33\x7d", [0x0fe5] = "\x05\x2b\x39", + [0x0fe6] = "\x03\x33\x51", [0x0fe7] = "\x04\x2f\x41", + [0x0fe8] = "\x04\x2f\x46", [0x0fe9] = "\x04\x2f\x47", + [0x0fea] = "\x04\x2f\x3f", [0x0feb] = "\x06\x3b\x31", + [0x0fec] = "\x05\x2f\x6d", [0x0fef] = "\x03\x38\x46", + [0x0ff0] = "\x04\x34\x4c", [0x0ff1] = "\x04\x34\x48", + [0x0ff2] = "\x03\x38\x44", [0x0ff3] = "\x04\x34\x4b", + [0x0ff4] = "\x04\x34\x52", [0x0ff5] = "\x04\x34\x51", + [0x0ff6] = "\x04\x34\x4a", [0x0ff7] = "\x04\x34\x53", + [0x0ff8] = "\x06\x43\x58", [0x0ff9] = "\x03\x38\x40", + [0x0ffa] = "\x03\x38\x3f", [0x0ffb] = "\x03\x38\x43", + [0x0ffc] = "\x04\x3a\x49", [0x0ffd] = "\x04\x3a\x3a", + [0x0ffe] = "\x03\x3e\x3f", [0x0fff] = "\x04\x3a\x45", + [0x1000] = "\x05\x3b\x4d", [0x1001] = "\x04\x3a\x4a", + [0x1002] = "\x04\x3a\x41", [0x1003] = "\x04\x3a\x40", + [0x1004] = "\x04\x3a\x42", [0x1005] = "\x04\x3a\x3d", + [0x1007] = "\x03\x3e\x46", [0x1008] = "\x04\x3a\x3f", + [0x1009] = "\x04\x3a\x44", [0x100a] = "\x04\x3a\x4b", + [0x100b] = "\x06\x49\x7e", [0x100c] = "\x06\x4d\x54", + [0x100d] = "\x06\x56\x76", [0x100e] = "\x04\x40\x27", + [0x100f] = "\x03\x43\x78", [0x1010] = "\x04\x40\x2a", + [0x1011] = "\x04\x40\x23", [0x1012] = "\x04\x40\x26", + [0x1013] = "\x03\x43\x7a", [0x1014] = "\x04\x3f\x7d", + [0x1015] = "\x04\x40\x28", [0x1016] = "\x03\x44\x21", + [0x1017] = "\x04\x40\x2c", [0x1018] = "\x03\x43\x7d", + [0x1019] = "\x03\x43\x79", [0x101a] = "\x05\x34\x6a", + [0x101b] = "\x04\x40\x25", [0x101c] = "\x04\x46\x45", + [0x101d] = "\x04\x46\x3e", [0x101e] = "\x04\x46\x3c", + [0x101f] = "\x04\x46\x3d", [0x1020] = "\x04\x46\x3f", + [0x1021] = "\x03\x52\x48", [0x1022] = "\x04\x46\x42", + [0x1023] = "\x04\x46\x40", [0x1024] = "\x04\x46\x3b", + [0x1025] = "\x03\x49\x29", [0x1026] = "\x03\x49\x28", + [0x1027] = "\x04\x46\x38", [0x1028] = "\x04\x46\x47", + [0x1029] = "\x04\x46\x41", [0x102b] = "\x04\x4c\x5d", + [0x102c] = "\x04\x4c\x58", [0x102d] = "\x04\x4c\x5e", + [0x102e] = "\x04\x4c\x55", [0x102f] = "\x04\x4c\x5c", + [0x1030] = "\x06\x60\x6f", [0x1031] = "\x04\x4c\x54", + [0x1032] = "\x04\x4c\x5b", [0x1033] = "\x04\x4c\x5f", + [0x1034] = "\x05\x42\x28", [0x1035] = "\x04\x52\x63", + [0x1036] = "\x04\x52\x64", [0x1037] = "\x03\x52\x46", + [0x1038] = "\x03\x52\x45", [0x1039] = "\x04\x52\x5e", + [0x103a] = "\x04\x52\x61", [0x103b] = "\x04\x52\x62", + [0x103c] = "\x04\x52\x66", [0x103e] = "\x05\x5d\x5b", + [0x103f] = "\x04\x58\x2b", [0x1040] = "\x04\x58\x28", + [0x1041] = "\x04\x58\x2c", [0x1042] = "\x04\x5c\x74", + [0x1043] = "\x03\x58\x66", [0x1044] = "\x04\x5c\x76", + [0x1045] = "\x03\x58\x67", [0x1046] = "\x03\x5a\x76", + [0x1047] = "\x04\x60\x74", [0x1048] = "\x04\x60\x73", + [0x1049] = "\x05\x6d\x2c", [0x104a] = "\x04\x64\x2a", + [0x104b] = "\x04\x67\x22", [0x104c] = "\x04\x67\x24", + [0x104d] = "\x04\x67\x23", [0x104e] = "\x04\x67\x25", + [0x104f] = "\x04\x69\x30", [0x1050] = "\x06\x43\x64", + [0x1051] = "\x07\x42\x24", [0x1052] = "\x03\x2b\x44", + [0x1053] = "\x03\x44\x24", [0x1054] = "\x04\x2f\x4a", + [0x1055] = "\x04\x34\x58", [0x1057] = "\x04\x4c\x63", + [0x1058] = "\x04\x52\x6b", [0x1059] = "\x03\x33\x53", + [0x105a] = "\x03\x33\x54", [0x105b] = "\x03\x38\x4a", + [0x105c] = "\x04\x4c\x64", [0x105d] = "\x06\x61\x21", + [0x105e] = "\x03\x52\x4b", [0x105f] = "\x03\x5e\x54", + [0x1060] = "\x04\x27\x6f", [0x1061] = "\x04\x2b\x33", + [0x1062] = "\x04\x2b\x32", [0x1063] = "\x03\x2e\x67", + [0x1064] = "\x03\x33\x56", [0x1065] = "\x04\x2f\x50", + [0x1066] = "\x03\x38\x4b", [0x1067] = "\x06\x43\x71", + [0x1068] = "\x06\x43\x70", [0x106a] = "\x03\x3e\x4a", + [0x106b] = "\x04\x3a\x4e", [0x106c] = "\x04\x3a\x4f", + [0x106d] = "\x06\x4d\x63", [0x106f] = "\x05\x42\x2d", + [0x1070] = "\x04\x40\x2f", [0x1071] = "\x04\x46\x4f", + [0x1072] = "\x04\x46\x51", [0x1073] = "\x04\x46\x50", + [0x1074] = "\x03\x49\x2c", [0x1075] = "\x06\x61\x24", + [0x1076] = "\x05\x49\x2c", [0x1079] = "\x03\x4e\x3e", + [0x107a] = "\x04\x4c\x68", [0x107b] = "\x04\x4c\x65", + [0x107c] = "\x04\x52\x6c", [0x107d] = "\x04\x52\x6d", + [0x107f] = "\x04\x58\x30", [0x1080] = "\x04\x58\x34", + [0x1081] = "\x04\x58\x33", [0x1082] = "\x03\x56\x25", + [0x1083] = "\x03\x56\x26", [0x1084] = "\x05\x5d\x67", + [0x1085] = "\x05\x5c\x4d", [0x1086] = "\x04\x58\x32", + [0x1088] = "\x04\x5c\x7c", [0x1089] = "\x04\x64\x2d", + [0x108a] = "\x04\x2f\x53", [0x108b] = "\x04\x34\x5c", + [0x108c] = "\x04\x52\x6f", [0x108d] = "\x04\x52\x6e", + [0x108e] = "\x04\x58\x35", [0x108f] = "\x04\x5c\x7d", + [0x1090] = "\x04\x69\x33", [0x1092] = "\x06\x25\x4f", + [0x1093] = "\x03\x24\x37", [0x1094] = "\x03\x24\x39", + [0x1095] = "\x03\x27\x27", [0x1096] = "\x04\x24\x76", + [0x1097] = "\x04\x24\x7d", [0x1098] = "\x03\x27\x2c", + [0x109a] = "\x03\x2a\x63", [0x109b] = "\x03\x2a\x67", + [0x109c] = "\x03\x2a\x64", [0x109d] = "\x03\x2a\x6a", + [0x109e] = "\x04\x27\x72", [0x109f] = "\x03\x2a\x62", + [0x10a0] = "\x04\x28\x21", [0x10a1] = "\x04\x27\x73", + [0x10a2] = "\x03\x2a\x65", [0x10a3] = "\x03\x2a\x69", + [0x10a4] = "\x05\x27\x63", [0x10a5] = "\x03\x2a\x61", + [0x10a6] = "\x03\x2e\x6d", [0x10a7] = "\x04\x2b\x36", + [0x10a8] = "\x03\x2e\x70", [0x10a9] = "\x03\x2e\x71", + [0x10aa] = "\x03\x2e\x6c", [0x10ab] = "\x03\x2e\x73", + [0x10ac] = "\x03\x2e\x75", [0x10ad] = "\x06\x34\x3a", + [0x10b0] = "\x04\x2f\x55", [0x10b1] = "\x03\x33\x61", + [0x10b2] = "\x04\x2f\x61", [0x10b3] = "\x03\x33\x64", + [0x10b4] = "\x03\x33\x5b", [0x10b5] = "\x03\x33\x5e", + [0x10b6] = "\x06\x3b\x56", [0x10b7] = "\x03\x33\x5d", + [0x10b8] = "\x04\x2f\x5e", [0x10b9] = "\x03\x33\x5c", + [0x10ba] = "\x03\x33\x65", [0x10bb] = "\x05\x30\x21", + [0x10bc] = "\x04\x2f\x59", [0x10bd] = "\x04\x2f\x64", + [0x10c1] = "\x03\x33\x60", [0x10c2] = "\x04\x34\x5e", + [0x10c3] = "\x04\x34\x6c", [0x10c4] = "\x04\x34\x71", + [0x10c5] = "\x03\x38\x5a", [0x10c6] = "\x04\x34\x69", + [0x10c7] = "\x04\x34\x65", [0x10c8] = "\x03\x38\x56", + [0x10c9] = "\x04\x34\x66", [0x10ca] = "\x04\x34\x62", + [0x10cb] = "\x04\x34\x5d", [0x10cc] = "\x04\x34\x63", + [0x10cd] = "\x06\x44\x2c", [0x10ce] = "\x03\x38\x4c", + [0x10cf] = "\x06\x44\x28", [0x10d0] = "\x05\x35\x2a", + [0x10d1] = "\x03\x38\x59", [0x10d2] = "\x03\x38\x5c", + [0x10d3] = "\x05\x35\x24", [0x10d7] = "\x04\x3a\x6c", + [0x10d8] = "\x04\x3a\x60", [0x10d9] = "\x04\x3a\x5f", + [0x10da] = "\x04\x3a\x64", [0x10db] = "\x04\x3a\x59", + [0x10dc] = "\x05\x3b\x56", [0x10dd] = "\x04\x3a\x5b", + [0x10de] = "\x04\x3a\x56", [0x10df] = "\x03\x3e\x53", + [0x10e0] = "\x04\x3a\x5e", [0x10e1] = "\x03\x3e\x54", + [0x10e2] = "\x03\x3e\x51", [0x10e3] = "\x04\x3a\x5c", + [0x10e4] = "\x04\x3a\x61", [0x10e5] = "\x03\x3e\x55", + [0x10e6] = "\x06\x4e\x27", [0x10e7] = "\x03\x3e\x4c", + [0x10ea] = "\x0f\x3e\x6b", [0x10ed] = "\x04\x40\x30", + [0x10ee] = "\x04\x40\x32", [0x10ef] = "\x04\x3a\x65", + [0x10f0] = "\x03\x44\x37", [0x10f1] = "\x04\x46\x69", + [0x10f2] = "\x04\x40\x47", [0x10f3] = "\x04\x40\x49", + [0x10f4] = "\x04\x40\x3a", [0x10f5] = "\x03\x44\x2b", + [0x10f6] = "\x03\x44\x29", [0x10f7] = "\x03\x44\x34", + [0x10f8] = "\x04\x40\x48", [0x10f9] = "\x03\x44\x3d", + [0x10fa] = "\x04\x40\x4c", [0x10fc] = "\x04\x46\x65", + [0x10fd] = "\x03\x49\x2f", [0x10fe] = "\x04\x46\x57", + [0x10ff] = "\x06\x61\x44", [0x1100] = "\x04\x46\x64", + [0x1101] = "\x03\x49\x31", [0x1102] = "\x04\x46\x53", + [0x1103] = "\x05\x49\x3c", [0x1104] = "\x04\x46\x61", + [0x1105] = "\x03\x49\x30", [0x1106] = "\x04\x46\x6d", + [0x1107] = "\x04\x46\x60", [0x1108] = "\x04\x46\x5c", + [0x1109] = "\x03\x49\x34", [0x110a] = "\x05\x49\x3b", + [0x110b] = "\x06\x61\x58", [0x110c] = "\x03\x49\x37", + [0x110d] = "\x03\x49\x40", [0x110e] = "\x03\x4e\x43", + [0x110f] = "\x04\x4c\x72", [0x1110] = "\x03\x4e\x3f", + [0x1111] = "\x04\x4c\x70", [0x1112] = "\x04\x4d\x24", + [0x1113] = "\x04\x4c\x6b", [0x1114] = "\x03\x4e\x41", + [0x1115] = "\x04\x4c\x71", [0x1116] = "\x03\x4e\x53", + [0x1117] = "\x04\x4c\x6d", [0x1118] = "\x04\x4c\x73", + [0x1119] = "\x03\x4e\x47", [0x111a] = "\x03\x4e\x45", + [0x111b] = "\x03\x4e\x56", [0x111c] = "\x04\x4c\x7d", + [0x111d] = "\x03\x52\x51", [0x111e] = "\x04\x4c\x6c", + [0x111f] = "\x03\x4e\x4a", [0x1120] = "\x04\x4c\x6e", + [0x1121] = "\x03\x4e\x48", [0x1122] = "\x03\x4e\x55", + [0x1123] = "\x03\x4e\x49", [0x1124] = "\x05\x50\x46", + [0x1125] = "\x03\x4e\x50", [0x1126] = "\x0f\x51\x65", + [0x1127] = "\x0f\x51\x73", [0x1128] = "\x0f\x51\x76", + [0x1129] = "\x04\x4d\x21", [0x112a] = "\x04\x4c\x6f", + [0x112b] = "\x03\x4e\x51", [0x112c] = "\x04\x4c\x77", + [0x112d] = "\x04\x52\x77", [0x112e] = "\x04\x52\x7b", + [0x112f] = "\x04\x52\x79", [0x1130] = "\x04\x53\x2c", + [0x1131] = "\x04\x53\x21", [0x1132] = "\x04\x52\x76", + [0x1133] = "\x03\x52\x53", [0x1134] = "\x04\x53\x25", + [0x1135] = "\x03\x52\x57", [0x1136] = "\x04\x52\x7e", + [0x1137] = "\x03\x52\x4d", [0x1138] = "\x04\x53\x23", + [0x1139] = "\x04\x52\x7a", [0x113a] = "\x04\x52\x7c", + [0x113b] = "\x04\x52\x72", [0x113c] = "\x05\x64\x2d", + [0x113d] = "\x03\x52\x4c", [0x113e] = "\x04\x53\x22", + [0x113f] = "\x04\x52\x73", [0x1140] = "\x03\x52\x4e", + [0x1141] = "\x04\x53\x27", [0x1143] = "\x04\x53\x31", + [0x1144] = "\x04\x46\x67", [0x1145] = "\x04\x58\x44", + [0x1146] = "\x04\x58\x3c", [0x1147] = "\x04\x58\x38", + [0x1148] = "\x04\x58\x42", [0x1149] = "\x05\x5d\x79", + [0x114a] = "\x04\x58\x36", [0x114b] = "\x04\x58\x3b", + [0x114c] = "\x03\x56\x2e", [0x114d] = "\x03\x56\x27", + [0x114e] = "\x04\x58\x3d", [0x114f] = "\x03\x56\x2a", + [0x1151] = "\x03\x56\x2f", [0x1152] = "\x03\x58\x69", + [0x1153] = "\x04\x5c\x7e", [0x1154] = "\x04\x5d\x2b", + [0x1155] = "\x03\x58\x6d", [0x1156] = "\x03\x58\x70", + [0x1157] = "\x03\x58\x6a", [0x1158] = "\x03\x58\x71", + [0x1159] = "\x04\x5d\x23", [0x115a] = "\x07\x42\x38", + [0x115b] = "\x04\x5d\x21", [0x115c] = "\x0f\x60\x4e", + [0x115d] = "\x07\x3b\x32", [0x115e] = "\x04\x60\x77", + [0x115f] = "\x03\x5c\x73", [0x1160] = "\x03\x5b\x23", + [0x1161] = "\x04\x60\x78", [0x1162] = "\x03\x5b\x21", + [0x1164] = "\x03\x5b\x24", [0x1165] = "\x07\x49\x53", + [0x1166] = "\x04\x64\x2f", [0x1167] = "\x04\x64\x34", + [0x1168] = "\x03\x5c\x7d", [0x1169] = "\x04\x64\x33", + [0x116a] = "\x03\x5c\x74", [0x116b] = "\x07\x54\x68", + [0x116c] = "\x03\x5c\x79", [0x116d] = "\x04\x64\x32", + [0x116e] = "\x04\x64\x38", [0x116f] = "\x03\x5c\x7a", + [0x1170] = "\x04\x64\x30", [0x1171] = "\x03\x5c\x75", + [0x1172] = "\x04\x64\x36", [0x1173] = "\x04\x67\x27", + [0x1174] = "\x03\x5e\x59", [0x1175] = "\x04\x67\x28", + [0x1178] = "\x03\x5f\x5d", [0x1179] = "\x04\x69\x37", + [0x117a] = "\x07\x58\x72", [0x117b] = "\x03\x60\x41", + [0x117c] = "\x03\x60\x42", [0x117d] = "\x05\x78\x25", + [0x117e] = "\x04\x6b\x7d", [0x117f] = "\x04\x6d\x5e", + [0x1180] = "\x04\x6c\x7d", [0x1181] = "\x03\x61\x6a", + [0x1182] = "\x04\x6d\x79", [0x1183] = "\x04\x6d\x7b", + [0x1184] = "\x0f\x6c\x6c", [0x1185] = "\x04\x6e\x37", + [0x1186] = "\x04\x6e\x36", [0x1187] = "\x05\x7c\x3e", + [0x1188] = "\x03\x2a\x6d", [0x1189] = "\x04\x2b\x3e", + [0x118a] = "\x04\x2f\x67", [0x118b] = "\x03\x33\x67", + [0x118c] = "\x03\x33\x66", [0x118d] = "\x03\x33\x68", + [0x118e] = "\x05\x35\x35", [0x118f] = "\x03\x38\x62", + [0x1190] = "\x05\x3b\x70", [0x1191] = "\x03\x3e\x60", + [0x1192] = "\x03\x44\x41", [0x1193] = "\x05\x42\x54", + [0x1194] = "\x05\x42\x53", [0x1195] = "\x03\x44\x42", + [0x1196] = "\x03\x44\x43", [0x1197] = "\x04\x4d\x26", + [0x1198] = "\x04\x53\x36", [0x1199] = "\x04\x5d\x32", + [0x119a] = "\x05\x64\x3b", [0x119b] = "\x05\x64\x3a", + [0x119c] = "\x04\x64\x3a", [0x119d] = "\x03\x27\x2e", + [0x119e] = "\x03\x2e\x7d", [0x119f] = "\x03\x2f\x21", + [0x11a0] = "\x03\x2f\x22", [0x11a1] = "\x04\x2f\x69", + [0x11a2] = "\x04\x2f\x6b", [0x11a3] = "\x06\x3b\x69", + [0x11a4] = "\x03\x38\x68", [0x11a5] = "\x03\x38\x67", + [0x11a6] = "\x04\x34\x7c", [0x11a7] = "\x03\x38\x65", + [0x11a8] = "\x04\x34\x7b", [0x11a9] = "\x04\x34\x79", + [0x11aa] = "\x05\x3c\x26", [0x11ab] = "\x06\x44\x48", + [0x11ad] = "\x04\x3a\x72", [0x11ae] = "\x03\x3e\x67", + [0x11af] = "\x04\x3a\x74", [0x11b0] = "\x03\x3e\x65", + [0x11b1] = "\x05\x3b\x74", [0x11b2] = "\x04\x3a\x70", + [0x11b3] = "\x04\x3a\x6d", [0x11b4] = "\x03\x3e\x64", + [0x11b5] = "\x03\x3e\x66", [0x11b6] = "\x04\x40\x56", + [0x11b7] = "\x04\x40\x57", [0x11b8] = "\x03\x44\x4b", + [0x11b9] = "\x03\x44\x47", [0x11ba] = "\x04\x40\x5b", + [0x11bb] = "\x04\x3a\x6e", [0x11bc] = "\x04\x40\x5d", + [0x11bd] = "\x03\x44\x4a", [0x11bf] = "\x04\x46\x78", + [0x11c0] = "\x03\x49\x46", [0x11c1] = "\x04\x46\x72", + [0x11c2] = "\x04\x46\x73", [0x11c3] = "\x04\x46\x71", + [0x11c4] = "\x04\x46\x75", [0x11c5] = "\x03\x49\x47", + [0x11c6] = "\x04\x46\x70", [0x11c7] = "\x04\x46\x76", + [0x11c8] = "\x06\x61\x69", [0x11c9] = "\x03\x49\x48", + [0x11ca] = "\x04\x46\x7b", [0x11cb] = "\x03\x4e\x5a", + [0x11cc] = "\x03\x4e\x5c", [0x11cd] = "\x07\x28\x42", + [0x11ce] = "\x03\x4e\x57", [0x11cf] = "\x03\x4e\x58", + [0x11d0] = "\x04\x4d\x30", [0x11d1] = "\x03\x4e\x5b", + [0x11d2] = "\x04\x46\x79", [0x11d3] = "\x04\x4d\x36", + [0x11d4] = "\x04\x4d\x2f", [0x11d5] = "\x03\x49\x4d", + [0x11d7] = "\x04\x53\x3e", [0x11d8] = "\x03\x52\x5c", + [0x11d9] = "\x07\x32\x73", [0x11da] = "\x04\x53\x3d", + [0x11db] = "\x04\x58\x4d", [0x11dc] = "\x03\x52\x60", + [0x11dd] = "\x07\x32\x75", [0x11de] = "\x03\x52\x61", + [0x11df] = "\x05\x5e\x32", [0x11e0] = "\x04\x58\x57", + [0x11e1] = "\x04\x58\x52", [0x11e2] = "\x03\x56\x37", + [0x11e3] = "\x04\x58\x58", [0x11e4] = "\x04\x58\x4f", + [0x11e5] = "\x04\x58\x56", [0x11e6] = "\x03\x56\x38", + [0x11e7] = "\x04\x58\x4e", [0x11e8] = "\x03\x56\x32", + [0x11e9] = "\x04\x58\x54", [0x11ea] = "\x04\x58\x5f", + [0x11eb] = "\x03\x56\x35", [0x11ec] = "\x03\x56\x3c", + [0x11ee] = "\x03\x56\x31", [0x11ef] = "\x04\x5d\x3b", + [0x11f0] = "\x05\x5e\x35", [0x11f1] = "\x04\x5d\x39", + [0x11f2] = "\x03\x58\x72", [0x11f4] = "\x04\x61\x24", + [0x11f5] = "\x05\x69\x41", [0x11f6] = "\x03\x5b\x2a", + [0x11f7] = "\x04\x61\x21", [0x11f8] = "\x04\x61\x25", + [0x11f9] = "\x0f\x63\x6e", [0x11fa] = "\x05\x6d\x4b", + [0x11fc] = "\x04\x64\x3b", [0x11fd] = "\x04\x64\x3c", + [0x11fe] = "\x04\x64\x40", [0x11ff] = "\x04\x64\x3e", + [0x1200] = "\x04\x64\x41", [0x1201] = "\x03\x5d\x26", + [0x1202] = "\x03\x5e\x5e", [0x1203] = "\x04\x67\x30", + [0x1204] = "\x04\x64\x3d", [0x1205] = "\x04\x69\x3e", + [0x1206] = "\x03\x5f\x5e", [0x1207] = "\x03\x5f\x60", + [0x1208] = "\x03\x60\x44", [0x1209] = "\x07\x59\x25", + [0x120a] = "\x07\x5c\x5e", [0x120b] = "\x04\x6a\x78", + [0x120c] = "\x07\x5c\x63", [0x120d] = "\x03\x61\x48", + [0x120e] = "\x04\x6e\x39", [0x120f] = "\x03\x2f\x25", + [0x1210] = "\x06\x3b\x73", [0x1211] = "\x03\x38\x69", + [0x1212] = "\x03\x44\x4c", [0x1213] = "\x04\x47\x23", + [0x1214] = "\x04\x4d\x37", [0x1215] = "\x04\x2f\x6f", + [0x1216] = "\x04\x3a\x78", [0x1217] = "\x03\x4e\x5e", + [0x1218] = "\x04\x53\x4a", [0x1219] = "\x03\x5b\x2e", + [0x121a] = "\x03\x2a\x6e", [0x121c] = "\x03\x2f\x28", + [0x121d] = "\x04\x2b\x46", [0x121f] = "\x05\x30\x3d", + [0x1220] = "\x04\x2f\x72", [0x1221] = "\x05\x30\x39", + [0x1222] = "\x04\x35\x2a", [0x1223] = "\x04\x3a\x7a", + [0x1224] = "\x04\x35\x2d", [0x1225] = "\x04\x35\x2e", + [0x1226] = "\x04\x35\x2c", [0x1227] = "\x0f\x32\x51", + [0x1228] = "\x04\x3a\x79", [0x1229] = "\x03\x3e\x71", + [0x122a] = "\x04\x35\x30", [0x122b] = "\x03\x3e\x6e", + [0x122c] = "\x03\x3e\x6c", [0x122d] = "\x03\x3e\x6b", + [0x122e] = "\x03\x2f\x4a", [0x122f] = "\x04\x40\x62", + [0x1230] = "\x04\x47\x25", [0x1231] = "\x06\x58\x2b", + [0x1233] = "\x03\x49\x53", [0x1234] = "\x04\x47\x2d", + [0x1235] = "\x05\x49\x6c", [0x1236] = "\x05\x49\x6d", + [0x1237] = "\x04\x40\x66", [0x1238] = "\x04\x47\x31", + [0x1239] = "\x04\x47\x27", [0x123a] = "\x03\x49\x55", + [0x123b] = "\x04\x40\x60", [0x123c] = "\x04\x47\x2a", + [0x123d] = "\x04\x47\x2e", [0x123e] = "\x04\x47\x26", + [0x123f] = "\x04\x47\x2b", [0x1240] = "\x03\x49\x5a", + [0x1241] = "\x03\x49\x50", [0x1242] = "\x03\x49\x5b", + [0x1243] = "\x04\x4d\x3c", [0x1244] = "\x04\x4d\x3f", + [0x1245] = "\x04\x4d\x3a", [0x1246] = "\x04\x4d\x39", + [0x1247] = "\x04\x4d\x42", [0x1248] = "\x04\x4d\x40", + [0x1249] = "\x04\x4d\x47", [0x124e] = "\x04\x53\x52", + [0x124f] = "\x04\x53\x55", [0x1250] = "\x04\x53\x56", + [0x1251] = "\x03\x4e\x63", [0x1252] = "\x04\x53\x4f", + [0x1254] = "\x04\x58\x63", [0x1255] = "\x04\x58\x67", + [0x1256] = "\x03\x56\x45", [0x1257] = "\x03\x56\x43", + [0x1258] = "\x04\x58\x64", [0x1259] = "\x03\x56\x3e", + [0x125a] = "\x07\x3b\x59", [0x125b] = "\x03\x56\x44", + [0x125c] = "\x04\x58\x65", [0x125d] = "\x03\x56\x41", + [0x125e] = "\x05\x64\x56", [0x125f] = "\x04\x5d\x4a", + [0x1260] = "\x04\x5d\x48", [0x1261] = "\x04\x5d\x49", + [0x1262] = "\x04\x5d\x44", [0x1263] = "\x04\x5d\x46", + [0x1264] = "\x04\x61\x2a", [0x1265] = "\x07\x43\x22", + [0x1266] = "\x04\x64\x43", [0x1267] = "\x07\x50\x25", + [0x1268] = "\x03\x5d\x27", [0x1269] = "\x04\x64\x44", + [0x126a] = "\x03\x5e\x5f", [0x126c] = "\x04\x6a\x7b", + [0x126d] = "\x07\x59\x32", [0x126e] = "\x03\x60\x7a", + [0x126f] = "\x04\x6c\x26", [0x1270] = "\x03\x60\x79", + [0x1271] = "\x04\x6d\x7d", [0x1272] = "\x05\x2b\x47", + [0x1273] = "\x04\x2f\x73", [0x1274] = "\x04\x35\x31", + [0x1275] = "\x04\x3b\x21", [0x1277] = "\x03\x33\x79", + [0x1278] = "\x03\x33\x78", [0x1279] = "\x04\x35\x33", + [0x127a] = "\x04\x35\x35", [0x127c] = "\x04\x3b\x23", + [0x127d] = "\x05\x3c\x35", [0x127e] = "\x04\x3b\x22", + [0x127f] = "\x03\x3e\x73", [0x1280] = "\x03\x44\x50", + [0x1281] = "\x03\x44\x51", [0x1282] = "\x04\x47\x36", + [0x1283] = "\x04\x47\x38", [0x1284] = "\x04\x4d\x4a", + [0x1285] = "\x04\x4d\x48", [0x1286] = "\x04\x53\x5a", + [0x1287] = "\x04\x53\x5b", [0x1288] = "\x05\x58\x32", + [0x1289] = "\x04\x53\x5c", [0x128a] = "\x05\x5e\x43", + [0x128b] = "\x04\x58\x68", [0x128c] = "\x04\x58\x69", + [0x128d] = "\x04\x5d\x4e", [0x128e] = "\x04\x5d\x50", + [0x128f] = "\x04\x61\x2d", [0x1290] = "\x04\x61\x2e", + [0x1291] = "\x03\x5b\x30", [0x1292] = "\x04\x61\x2c", + [0x1293] = "\x04\x61\x30", [0x1294] = "\x03\x5e\x60", + [0x1295] = "\x05\x7a\x38", [0x1296] = "\x03\x62\x3c", + [0x1297] = "\x04\x35\x3a", [0x1298] = "\x03\x44\x53", + [0x1299] = "\x04\x40\x67", [0x129a] = "\x03\x44\x52", + [0x129b] = "\x04\x47\x3a", [0x129c] = "\x04\x4d\x51", + [0x129d] = "\x04\x4d\x4c", [0x129e] = "\x04\x4d\x4e", + [0x129f] = "\x04\x4d\x53", [0x12a0] = "\x04\x4d\x4f", + [0x12a1] = "\x04\x53\x64", [0x12a2] = "\x04\x53\x61", + [0x12a3] = "\x04\x53\x62", [0x12a5] = "\x04\x58\x6b", + [0x12a6] = "\x04\x58\x6a", [0x12a7] = "\x05\x64\x63", + [0x12a8] = "\x04\x61\x31", [0x12a9] = "\x04\x61\x34", + [0x12aa] = "\x04\x64\x46", [0x12ab] = "\x04\x64\x47", + [0x12ad] = "\x04\x6d\x22", [0x12ae] = "\x03\x2f\x2b", + [0x12af] = "\x05\x2b\x49", [0x12b0] = "\x03\x2f\x2d", + [0x12b1] = "\x04\x2f\x7e", [0x12b2] = "\x03\x33\x7d", + [0x12b3] = "\x04\x35\x41", [0x12b4] = "\x03\x38\x7c", + [0x12b5] = "\x03\x38\x78", [0x12b6] = "\x05\x35\x57", + [0x12b7] = "\x04\x35\x44", [0x12b8] = "\x05\x35\x5e", + [0x12b9] = "\x03\x39\x24", [0x12ba] = "\x03\x39\x28", + [0x12bb] = "\x03\x39\x21", [0x12bc] = "\x04\x35\x3f", + [0x12bd] = "\x03\x38\x7d", [0x12be] = "\x03\x39\x27", + [0x12bf] = "\x04\x35\x43", [0x12c0] = "\x05\x35\x5d", + [0x12c1] = "\x06\x44\x6d", [0x12c2] = "\x03\x39\x26", + [0x12c3] = "\x05\x35\x56", [0x12c4] = "\x04\x3b\x33", + [0x12c5] = "\x03\x3e\x79", [0x12c6] = "\x03\x3e\x7a", + [0x12c7] = "\x04\x3b\x36", [0x12c8] = "\x04\x3b\x35", + [0x12c9] = "\x03\x3e\x76", [0x12ca] = "\x03\x3e\x7b", + [0x12cb] = "\x03\x3e\x77", [0x12cc] = "\x04\x3b\x34", + [0x12cd] = "\x04\x3b\x2a", [0x12ce] = "\x04\x3b\x29", + [0x12cf] = "\x04\x3b\x2b", [0x12d0] = "\x03\x3f\x26", + [0x12d1] = "\x06\x4e\x6b", [0x12d2] = "\x03\x3f\x25", + [0x12d4] = "\x03\x44\x57", [0x12d5] = "\x06\x58\x41", + [0x12d6] = "\x03\x44\x5e", [0x12d7] = "\x04\x40\x6e", + [0x12d8] = "\x04\x40\x6d", [0x12d9] = "\x04\x40\x6c", + [0x12da] = "\x03\x44\x5a", [0x12db] = "\x03\x44\x5f", + [0x12dc] = "\x03\x44\x62", [0x12dd] = "\x04\x47\x3d", + [0x12de] = "\x04\x47\x40", [0x12df] = "\x04\x47\x4a", + [0x12e0] = "\x04\x47\x3c", [0x12e1] = "\x03\x49\x6a", + [0x12e2] = "\x04\x47\x46", [0x12e3] = "\x04\x47\x42", + [0x12e4] = "\x03\x49\x61", [0x12e5] = "\x04\x47\x43", + [0x12e6] = "\x03\x49\x69", [0x12e7] = "\x03\x49\x67", + [0x12e8] = "\x03\x49\x5d", [0x12e9] = "\x04\x4d\x59", + [0x12ea] = "\x04\x4d\x56", [0x12eb] = "\x04\x4d\x5c", + [0x12ec] = "\x04\x4d\x5e", [0x12ed] = "\x03\x4e\x68", + [0x12ee] = "\x04\x4d\x61", [0x12ef] = "\x04\x4d\x58", + [0x12f0] = "\x04\x4d\x5b", [0x12f1] = "\x03\x4e\x6d", + [0x12f2] = "\x04\x4d\x5f", [0x12f3] = "\x04\x4d\x5a", + [0x12f4] = "\x03\x4e\x6b", [0x12f5] = "\x04\x4d\x60", + [0x12f6] = "\x07\x28\x79", [0x12f7] = "\x04\x4d\x55", + [0x12f8] = "\x03\x4e\x71", [0x12f9] = "\x04\x53\x6a", + [0x12fa] = "\x03\x52\x6c", [0x12fb] = "\x03\x52\x6d", + [0x12fc] = "\x07\x33\x4d", [0x12fd] = "\x04\x53\x6b", + [0x12fe] = "\x03\x56\x47", [0x12ff] = "\x04\x58\x70", + [0x1300] = "\x03\x56\x4b", [0x1301] = "\x03\x56\x4c", + [0x1302] = "\x05\x5e\x55", [0x1303] = "\x04\x5d\x5a", + [0x1304] = "\x07\x4a\x25", [0x1305] = "\x04\x5d\x57", + [0x1306] = "\x04\x5d\x5b", [0x1307] = "\x03\x59\x22", + [0x1308] = "\x03\x59\x25", [0x1309] = "\x04\x5d\x54", + [0x130a] = "\x03\x59\x27", [0x130b] = "\x04\x61\x40", + [0x130c] = "\x05\x69\x52", [0x130d] = "\x03\x5b\x33", + [0x130e] = "\x04\x61\x3b", [0x130f] = "\x04\x61\x3d", + [0x1310] = "\x04\x61\x45", [0x1311] = "\x05\x69\x51", + [0x1312] = "\x04\x64\x4e", [0x1313] = "\x03\x5d\x2d", + [0x1314] = "\x07\x50\x31", [0x1315] = "\x04\x64\x4c", + [0x1316] = "\x03\x5d\x2f", [0x1317] = "\x04\x64\x48", + [0x1318] = "\x03\x5d\x31", [0x1319] = "\x04\x67\x3d", + [0x131a] = "\x04\x67\x3f", [0x131b] = "\x07\x55\x32", + [0x131c] = "\x04\x67\x3e", [0x131d] = "\x04\x67\x40", + [0x131e] = "\x04\x67\x39", [0x131f] = "\x07\x59\x38", + [0x1320] = "\x03\x5f\x63", [0x1321] = "\x04\x69\x48", + [0x1322] = "\x05\x76\x4c", [0x132a] = "\x04\x2b\x49", + [0x132b] = "\x04\x30\x23", [0x132c] = "\x06\x4e\x7a", + [0x132d] = "\x03\x3f\x27", [0x132e] = "\x04\x47\x4c", + [0x132f] = "\x03\x4e\x77", [0x1330] = "\x04\x58\x75", + [0x1331] = "\x04\x5d\x61", [0x1332] = "\x04\x69\x4c", + [0x1334] = "\x04\x35\x4a", [0x1335] = "\x03\x3f\x28", + [0x1336] = "\x04\x40\x74", [0x1337] = "\x04\x47\x4e", + [0x1338] = "\x04\x47\x4f", [0x1339] = "\x03\x49\x6c", + [0x133a] = "\x04\x4d\x64", [0x133b] = "\x03\x52\x70", + [0x133c] = "\x04\x53\x73", [0x133d] = "\x03\x52\x6f", + [0x133e] = "\x04\x53\x72", [0x133f] = "\x03\x52\x71", + [0x1340] = "\x04\x58\x76", [0x1341] = "\x04\x58\x77", + [0x1342] = "\x03\x56\x4e", [0x1343] = "\x04\x67\x44", + [0x1344] = "\x04\x6d\x24", [0x1345] = "\x04\x30\x25", + [0x1346] = "\x04\x35\x4b", [0x1347] = "\x06\x45\x22", + [0x1348] = "\x04\x35\x4c", [0x134a] = "\x04\x4d\x67", + [0x134b] = "\x04\x4d\x65", [0x134c] = "\x04\x4d\x68", + [0x134d] = "\x04\x53\x75", [0x134e] = "\x04\x53\x77", + [0x134f] = "\x04\x5d\x64", [0x1350] = "\x04\x61\x48", + [0x1351] = "\x04\x61\x46", [0x1352] = "\x04\x67\x45", + [0x1353] = "\x03\x5f\x65", [0x1354] = "\x03\x61\x4c", + [0x1355] = "\x04\x6d\x25", [0x1356] = "\x04\x35\x50", + [0x1357] = "\x06\x45\x24", [0x1358] = "\x03\x39\x2f", + [0x135a] = "\x04\x3b\x3e", [0x135c] = "\x03\x49\x6e", + [0x135d] = "\x03\x4e\x79", [0x135e] = "\x03\x4e\x78", + [0x135f] = "\x03\x52\x72", [0x1360] = "\x03\x56\x50", + [0x1361] = "\x03\x59\x2c", [0x1362] = "\x03\x59\x2d", + [0x1363] = "\x04\x61\x4a", [0x1364] = "\x07\x4a\x41", + [0x1365] = "\x03\x5b\x37", [0x1366] = "\x04\x5d\x68", + [0x1367] = "\x04\x35\x51", [0x1368] = "\x04\x35\x54", + [0x1369] = "\x05\x3c\x4c", [0x136a] = "\x04\x3b\x3f", + [0x136b] = "\x04\x3b\x41", [0x136c] = "\x03\x3f\x2e", + [0x136d] = "\x04\x3b\x42", [0x136e] = "\x06\x4f\x29", + [0x136f] = "\x04\x3b\x43", [0x1370] = "\x04\x41\x21", + [0x1371] = "\x03\x44\x66", [0x1372] = "\x03\x44\x68", + [0x1373] = "\x05\x4a\x29", [0x1374] = "\x06\x62\x6a", + [0x1375] = "\x03\x49\x6f", [0x1376] = "\x03\x4e\x7b", + [0x1377] = "\x03\x4e\x7c", [0x1378] = "\x04\x4d\x6e", + [0x1379] = "\x04\x4d\x6c", [0x137a] = "\x07\x29\x36", + [0x137b] = "\x04\x4d\x6d", [0x137d] = "\x05\x51\x39", + [0x137e] = "\x03\x4f\x21", [0x137f] = "\x03\x52\x74", + [0x1380] = "\x04\x53\x7d", [0x1381] = "\x04\x53\x79", + [0x1382] = "\x04\x53\x7b", [0x1383] = "\x04\x53\x7a", + [0x1384] = "\x03\x52\x76", [0x1385] = "\x07\x3c\x33", + [0x1386] = "\x04\x58\x7a", [0x1387] = "\x0f\x60\x7a", + [0x1388] = "\x04\x53\x7e", [0x1389] = "\x03\x5d\x35", + [0x138a] = "\x03\x5e\x64", [0x138b] = "\x04\x6b\x21", + [0x1391] = "\x05\x30\x4b", [0x1392] = "\x05\x43\x34", + [0x1393] = "\x04\x47\x59", [0x1394] = "\x04\x47\x58", + [0x1395] = "\x04\x67\x48", [0x1396] = "\x05\x30\x4c", + [0x1397] = "\x04\x30\x27", [0x1398] = "\x04\x30\x28", + [0x1399] = "\x04\x35\x55", [0x139a] = "\x04\x35\x56", + [0x139b] = "\x03\x39\x34", [0x139c] = "\x03\x39\x36", + [0x139d] = "\x03\x3f\x31", [0x139e] = "\x04\x3b\x45", + [0x139f] = "\x03\x3f\x36", [0x13a0] = "\x03\x3f\x32", + [0x13a1] = "\x05\x3c\x52", [0x13a2] = "\x03\x3f\x35", + [0x13a3] = "\x04\x3b\x48", [0x13a4] = "\x04\x3b\x47", + [0x13a5] = "\x04\x41\x26", [0x13a6] = "\x04\x41\x27", + [0x13a7] = "\x05\x43\x3c", [0x13a8] = "\x03\x44\x6a", + [0x13a9] = "\x04\x41\x28", [0x13aa] = "\x05\x43\x38", + [0x13ab] = "\x04\x47\x5a", [0x13ac] = "\x06\x62\x75", + [0x13ad] = "\x04\x47\x5b", [0x13ae] = "\x03\x49\x76", + [0x13af] = "\x05\x4a\x34", [0x13b0] = "\x03\x49\x77", + [0x13b1] = "\x05\x4a\x32", [0x13b3] = "\x03\x4f\x27", + [0x13b4] = "\x04\x4d\x73", [0x13b5] = "\x04\x4d\x71", + [0x13b6] = "\x03\x4f\x24", [0x13b7] = "\x04\x4d\x74", + [0x13b8] = "\x07\x29\x3d", [0x13b9] = "\x04\x54\x26", + [0x13ba] = "\x05\x58\x5c", [0x13bb] = "\x05\x58\x55", + [0x13bc] = "\x03\x52\x78", [0x13bd] = "\x04\x58\x7d", + [0x13be] = "\x04\x59\x25", [0x13bf] = "\x04\x58\x7c", + [0x13c0] = "\x05\x5e\x6d", [0x13c1] = "\x04\x5d\x6d", + [0x13c2] = "\x03\x59\x2f", [0x13c3] = "\x04\x5d\x6c", + [0x13c4] = "\x04\x5d\x6a", [0x13c5] = "\x04\x5d\x6e", + [0x13c6] = "\x03\x59\x30", [0x13c7] = "\x04\x61\x4d", + [0x13c8] = "\x03\x5d\x36", [0x13c9] = "\x04\x64\x55", + [0x13ca] = "\x04\x64\x53", [0x13cb] = "\x04\x64\x56", + [0x13cc] = "\x04\x67\x4a", [0x13ce] = "\x03\x5f\x66", + [0x13cf] = "\x04\x69\x4f", [0x13d0] = "\x04\x6b\x23", + [0x13d1] = "\x04\x6c\x28", [0x13d2] = "\x04\x6d\x27", + [0x13d3] = "\x04\x2b\x4c", [0x13d4] = "\x03\x2f\x2f", + [0x13d5] = "\x04\x30\x2a", [0x13d6] = "\x03\x33\x7e", + [0x13d7] = "\x04\x35\x5e", [0x13d8] = "\x04\x35\x59", + [0x13d9] = "\x05\x35\x72", [0x13da] = "\x03\x39\x3b", + [0x13db] = "\x04\x35\x5b", [0x13dc] = "\x04\x35\x5c", + [0x13dd] = "\x04\x35\x5d", [0x13de] = "\x03\x39\x3c", + [0x13df] = "\x05\x3c\x63", [0x13e0] = "\x04\x3b\x4c", + [0x13e1] = "\x04\x3b\x50", [0x13e2] = "\x03\x3f\x3d", + [0x13e3] = "\x04\x3b\x4d", [0x13e4] = "\x04\x3b\x49", + [0x13e5] = "\x06\x4f\x36", [0x13e6] = "\x06\x4f\x3c", + [0x13e7] = "\x05\x3c\x5c", [0x13e8] = "\x04\x3b\x4a", + [0x13e9] = "\x04\x3b\x4b", [0x13ea] = "\x04\x3b\x4f", + [0x13eb] = "\x03\x3f\x3c", [0x13ec] = "\x05\x3c\x5f", + [0x13ed] = "\x04\x3b\x51", [0x13ee] = "\x04\x41\x29", + [0x13ef] = "\x05\x43\x4b", [0x13f0] = "\x03\x44\x6c", + [0x13f1] = "\x03\x44\x6e", [0x13f3] = "\x0f\x45\x58", + [0x13f4] = "\x05\x4a\x3e", [0x13f5] = "\x04\x47\x5e", + [0x13f6] = "\x04\x47\x61", [0x13f7] = "\x04\x47\x5f", + [0x13f8] = "\x04\x47\x62", [0x13f9] = "\x04\x47\x65", + [0x13fa] = "\x03\x49\x78", [0x13fb] = "\x04\x47\x64", + [0x13fc] = "\x03\x4f\x28", [0x13fd] = "\x03\x44\x6f", + [0x13fe] = "\x04\x4d\x77", [0x13ff] = "\x04\x4e\x22", + [0x1400] = "\x03\x4f\x2a", [0x1401] = "\x07\x29\x4e", + [0x1402] = "\x03\x4f\x2e", [0x1403] = "\x03\x4f\x29", + [0x1404] = "\x04\x4d\x7e", [0x1405] = "\x04\x4e\x21", + [0x1406] = "\x04\x4d\x7d", [0x1407] = "\x04\x4d\x79", + [0x1408] = "\x04\x4d\x78", [0x1409] = "\x04\x4d\x76", + [0x140a] = "\x03\x4f\x2d", [0x140b] = "\x04\x4e\x23", + [0x140d] = "\x04\x54\x2e", [0x140e] = "\x03\x52\x7d", + [0x140f] = "\x03\x52\x7a", [0x1410] = "\x04\x54\x2f", + [0x1411] = "\x04\x54\x2d", [0x1412] = "\x05\x58\x62", + [0x1413] = "\x04\x54\x30", [0x1414] = "\x03\x52\x79", + [0x1415] = "\x05\x5e\x7b", [0x1417] = "\x04\x59\x2b", + [0x1418] = "\x04\x59\x2c", [0x1419] = "\x04\x59\x26", + [0x141a] = "\x0f\x5c\x78", [0x141b] = "\x04\x59\x2a", + [0x141c] = "\x04\x59\x28", [0x141d] = "\x03\x56\x53", + [0x141e] = "\x03\x59\x33", [0x141f] = "\x04\x5d\x74", + [0x1420] = "\x04\x5d\x78", [0x1421] = "\x04\x5d\x72", + [0x1422] = "\x04\x5d\x75", [0x1423] = "\x07\x4a\x57", + [0x1424] = "\x04\x61\x50", [0x1425] = "\x03\x59\x34", + [0x1426] = "\x04\x61\x51", [0x1427] = "\x04\x5d\x77", + [0x1428] = "\x04\x64\x5b", [0x1429] = "\x04\x64\x5a", + [0x142a] = "\x04\x67\x50", [0x142b] = "\x04\x67\x4c", + [0x142c] = "\x05\x74\x4b", [0x142d] = "\x04\x6b\x24", + [0x142e] = "\x07\x5c\x77", [0x142f] = "\x04\x6c\x29", + [0x1430] = "\x03\x61\x4f", [0x1431] = "\x03\x62\x2e", + [0x1432] = "\x03\x3f\x42", [0x1433] = "\x05\x3c\x67", + [0x1434] = "\x04\x3b\x52", [0x1435] = "\x04\x3b\x53", + [0x1436] = "\x03\x3f\x41", [0x1437] = "\x03\x44\x71", + [0x1438] = "\x03\x44\x70", [0x1439] = "\x03\x44\x72", + [0x143b] = "\x04\x4e\x26", [0x143c] = "\x04\x54\x32", + [0x143d] = "\x04\x59\x30", [0x143e] = "\x03\x56\x56", + [0x143f] = "\x03\x5b\x3e", [0x1440] = "\x04\x64\x5f", + [0x1441] = "\x03\x60\x4c", [0x1442] = "\x04\x2b\x4d", + [0x1443] = "\x04\x2b\x4e", [0x1444] = "\x0f\x2d\x53", + [0x1445] = "\x03\x34\x22", [0x1446] = "\x03\x39\x43", + [0x1447] = "\x03\x39\x44", [0x1448] = "\x03\x39\x48", + [0x1449] = "\x04\x35\x61", [0x144a] = "\x04\x35\x62", + [0x144b] = "\x03\x39\x45", [0x144c] = "\x03\x39\x46", + [0x144d] = "\x03\x39\x42", [0x144e] = "\x06\x45\x45", + [0x144f] = "\x03\x3f\x48", [0x1450] = "\x03\x3f\x43", + [0x1451] = "\x04\x3b\x54", [0x1452] = "\x03\x3f\x4a", + [0x1453] = "\x03\x44\x75", [0x1454] = "\x04\x41\x2a", + [0x1455] = "\x03\x44\x74", [0x1456] = "\x06\x59\x24", + [0x1457] = "\x04\x41\x2c", [0x1458] = "\x04\x47\x66", + [0x1459] = "\x04\x47\x69", [0x145a] = "\x04\x47\x67", + [0x145b] = "\x03\x49\x7e", [0x145c] = "\x04\x4e\x28", + [0x145d] = "\x04\x4e\x27", [0x145e] = "\x04\x4e\x2a", + [0x145f] = "\x04\x4e\x29", [0x1460] = "\x03\x53\x23", + [0x1461] = "\x05\x58\x72", [0x1462] = "\x04\x54\x33", + [0x1463] = "\x04\x54\x34", [0x1464] = "\x05\x51\x61", + [0x1465] = "\x03\x56\x58", [0x1466] = "\x04\x59\x32", + [0x1467] = "\x04\x59\x35", [0x1468] = "\x04\x59\x37", + [0x1469] = "\x03\x56\x57", [0x146a] = "\x04\x59\x31", + [0x146b] = "\x04\x5d\x7c", [0x146c] = "\x04\x5d\x7b", + [0x146d] = "\x04\x5d\x7a", [0x146e] = "\x05\x65\x35", + [0x146f] = "\x04\x5d\x7d", [0x1470] = "\x04\x5d\x7e", + [0x1472] = "\x04\x61\x59", [0x1473] = "\x04\x61\x58", + [0x1474] = "\x04\x61\x57", [0x1475] = "\x04\x64\x60", + [0x1476] = "\x04\x64\x61", [0x1477] = "\x04\x67\x52", + [0x1478] = "\x0f\x68\x53", [0x1479] = "\x03\x5f\x68", + [0x147a] = "\x03\x5f\x67", [0x147c] = "\x03\x60\x7d", + [0x147d] = "\x04\x6d\x61", [0x147e] = "\x04\x6e\x21", + [0x147f] = "\x03\x62\x3d", [0x1483] = "\x04\x4e\x2e", + [0x1484] = "\x03\x5d\x39", [0x1485] = "\x04\x47\x6b", + [0x1486] = "\x0f\x4c\x67", [0x1487] = "\x03\x4f\x38", + [0x1488] = "\x04\x64\x63", [0x1489] = "\x07\x50\x56", + [0x148a] = "\x03\x27\x32", [0x148b] = "\x04\x25\x22", + [0x148c] = "\x0f\x28\x72", [0x148d] = "\x03\x2a\x6f", + [0x148e] = "\x05\x27\x69", [0x1490] = "\x04\x2b\x53", + [0x1491] = "\x04\x2b\x50", [0x1492] = "\x03\x34\x23", + [0x1493] = "\x04\x30\x2d", [0x1494] = "\x04\x30\x30", + [0x1495] = "\x03\x34\x24", [0x1496] = "\x04\x30\x2e", + [0x1499] = "\x03\x39\x49", [0x149a] = "\x04\x35\x69", + [0x149b] = "\x03\x39\x4d", [0x149c] = "\x03\x3f\x53", + [0x149d] = "\x04\x3b\x57", [0x149e] = "\x03\x3f\x4e", + [0x149f] = "\x06\x4f\x48", [0x14a0] = "\x03\x3f\x52", + [0x14a1] = "\x04\x41\x2f", [0x14a2] = "\x03\x4a\x25", + [0x14a4] = "\x04\x47\x6c", [0x14a5] = "\x03\x4a\x23", + [0x14a6] = "\x03\x4f\x3a", [0x14a7] = "\x04\x4e\x31", + [0x14a8] = "\x04\x4e\x35", [0x14a9] = "\x03\x4f\x3d", + [0x14aa] = "\x03\x53\x2a", [0x14ab] = "\x03\x53\x28", + [0x14ac] = "\x03\x53\x29", [0x14ad] = "\x04\x59\x38", + [0x14ae] = "\x04\x59\x39", [0x14af] = "\x07\x43\x77", + [0x14b0] = "\x03\x59\x39", [0x14b1] = "\x04\x61\x5e", + [0x14b2] = "\x04\x6c\x2c", [0x14b3] = "\x03\x22\x5f", + [0x14b4] = "\x04\x23\x32", [0x14b5] = "\x03\x27\x36", + [0x14b6] = "\x03\x27\x37", [0x14b7] = "\x03\x27\x38", + [0x14b8] = "\x03\x2a\x76", [0x14b9] = "\x04\x28\x29", + [0x14bb] = "\x03\x2f\x36", [0x14bc] = "\x04\x2b\x56", + [0x14bd] = "\x03\x45\x22", [0x14be] = "\x03\x2f\x3d", + [0x14bf] = "\x04\x2b\x54", [0x14c0] = "\x04\x2b\x58", + [0x14c1] = "\x03\x2f\x39", [0x14c2] = "\x03\x2f\x3a", + [0x14c3] = "\x06\x34\x6d", [0x14c4] = "\x04\x30\x38", + [0x14c5] = "\x04\x30\x34", [0x14c6] = "\x03\x34\x28", + [0x14c7] = "\x04\x30\x33", [0x14c8] = "\x04\x47\x71", + [0x14ca] = "\x04\x35\x6c", [0x14cb] = "\x04\x35\x6e", + [0x14cc] = "\x04\x35\x73", [0x14cd] = "\x04\x35\x6b", + [0x14ce] = "\x03\x39\x50", [0x14cf] = "\x04\x35\x70", + [0x14d0] = "\x04\x3b\x5e", [0x14d1] = "\x03\x3f\x58", + [0x14d3] = "\x04\x41\x34", [0x14d4] = "\x04\x41\x36", + [0x14d5] = "\x03\x45\x21", [0x14d6] = "\x04\x59\x3c", + [0x14d7] = "\x04\x41\x38", [0x14d8] = "\x04\x47\x6d", + [0x14d9] = "\x04\x47\x6e", [0x14da] = "\x03\x4a\x29", + [0x14db] = "\x03\x4a\x28", [0x14dc] = "\x05\x4a\x60", + [0x14dd] = "\x04\x47\x70", [0x14de] = "\x03\x4f\x3e", + [0x14df] = "\x04\x4e\x3d", [0x14e0] = "\x04\x4e\x3c", + [0x14e1] = "\x05\x58\x7e", [0x14e2] = "\x05\x5f\x3c", + [0x14e3] = "\x03\x60\x4d", [0x14e4] = "\x04\x6b\x26", + [0x14e5] = "\x03\x2f\x3f", [0x14e7] = "\x03\x34\x2b", + [0x14e8] = "\x03\x34\x2c", [0x14e9] = "\x04\x35\x78", + [0x14ea] = "\x04\x35\x74", [0x14eb] = "\x03\x39\x53", + [0x14ec] = "\x05\x36\x36", [0x14ed] = "\x04\x35\x75", + [0x14ee] = "\x04\x3b\x60", [0x14ef] = "\x03\x3f\x5a", + [0x14f0] = "\x03\x3f\x5b", [0x14f1] = "\x03\x3f\x5c", + [0x14f2] = "\x04\x3b\x64", [0x14f4] = "\x06\x59\x4c", + [0x14f5] = "\x03\x45\x26", [0x14f6] = "\x04\x41\x3d", + [0x14f7] = "\x04\x41\x3c", [0x14f8] = "\x04\x41\x3f", + [0x14f9] = "\x04\x41\x3e", [0x14fa] = "\x04\x47\x73", + [0x14fb] = "\x04\x47\x74", [0x14fc] = "\x04\x4e\x3f", + [0x14fd] = "\x04\x4e\x41", [0x14fe] = "\x04\x4e\x3e", + [0x14ff] = "\x04\x4e\x40", [0x1501] = "\x04\x54\x3d", + [0x1502] = "\x04\x54\x3c", [0x1503] = "\x04\x54\x3a", + [0x1504] = "\x03\x53\x2e", [0x1505] = "\x04\x54\x40", + [0x1506] = "\x04\x54\x3b", [0x1507] = "\x07\x34\x54", + [0x1508] = "\x03\x53\x30", [0x1509] = "\x04\x59\x3d", + [0x150a] = "\x04\x59\x42", [0x150b] = "\x07\x3c\x70", + [0x150c] = "\x04\x59\x41", [0x150d] = "\x05\x65\x45", + [0x150e] = "\x04\x61\x61", [0x150f] = "\x04\x61\x64", + [0x1510] = "\x04\x61\x63", [0x1511] = "\x04\x61\x62", + [0x1512] = "\x04\x61\x65", [0x1513] = "\x04\x67\x5a", + [0x1514] = "\x04\x67\x5b", [0x1515] = "\x04\x69\x54", + [0x1516] = "\x04\x69\x53", [0x1517] = "\x04\x6c\x2e", + [0x1518] = "\x04\x6c\x2d", [0x1519] = "\x04\x6e\x3d", + [0x151a] = "\x04\x35\x7a", [0x151b] = "\x06\x3c\x63", + [0x151c] = "\x03\x39\x5a", [0x151d] = "\x03\x3f\x5f", + [0x151e] = "\x03\x3f\x64", [0x151f] = "\x03\x3f\x61", + [0x1520] = "\x03\x3f\x67", [0x1521] = "\x03\x45\x2c", + [0x1522] = "\x05\x43\x6d", [0x1524] = "\x03\x4a\x2e", + [0x1525] = "\x04\x47\x79", [0x1526] = "\x03\x4a\x36", + [0x1527] = "\x04\x47\x76", [0x1528] = "\x04\x47\x7b", + [0x152a] = "\x04\x47\x78", [0x152b] = "\x03\x4f\x4f", + [0x152c] = "\x04\x4e\x43", [0x152d] = "\x03\x4f\x47", + [0x152e] = "\x03\x4f\x46", [0x152f] = "\x07\x2a\x38", + [0x1530] = "\x03\x4f\x4a", [0x1531] = "\x07\x2a\x3e", + [0x1533] = "\x03\x53\x33", [0x1534] = "\x03\x53\x34", + [0x1535] = "\x04\x54\x48", [0x1536] = "\x04\x54\x46", + [0x1537] = "\x07\x3c\x7b", [0x1538] = "\x03\x56\x69", + [0x1539] = "\x07\x3c\x77", [0x153a] = "\x04\x59\x45", + [0x153b] = "\x04\x59\x44", [0x153c] = "\x0f\x5d\x4c", + [0x153d] = "\x03\x59\x3f", [0x153e] = "\x03\x59\x41", + [0x153f] = "\x04\x5e\x2f", [0x1540] = "\x04\x5e\x2c", + [0x1541] = "\x07\x44\x39", [0x1542] = "\x04\x5e\x27", + [0x1543] = "\x05\x65\x4f", [0x1544] = "\x04\x5e\x2b", + [0x1545] = "\x03\x59\x48", [0x1546] = "\x03\x59\x47", + [0x1548] = "\x03\x5b\x46", [0x1549] = "\x04\x61\x66", + [0x154a] = "\x03\x5b\x4b", [0x154b] = "\x03\x5b\x40", + [0x154c] = "\x03\x5b\x52", [0x154d] = "\x04\x61\x69", + [0x154e] = "\x05\x6a\x33", [0x154f] = "\x04\x61\x68", + [0x1550] = "\x03\x5b\x51", [0x1551] = "\x03\x5b\x4c", + [0x1552] = "\x03\x5b\x49", [0x1553] = "\x0f\x64\x34", + [0x1554] = "\x03\x5d\x3b", [0x1555] = "\x04\x61\x6c", + [0x1556] = "\x03\x5d\x40", [0x1557] = "\x04\x64\x66", + [0x1558] = "\x04\x64\x6c", [0x1559] = "\x05\x6e\x35", + [0x155a] = "\x03\x5d\x48", [0x155b] = "\x04\x64\x6d", + [0x155d] = "\x04\x67\x5f", [0x155e] = "\x03\x5e\x6b", + [0x155f] = "\x04\x64\x69", [0x1560] = "\x04\x67\x61", + [0x1561] = "\x03\x5e\x6c", [0x1562] = "\x04\x67\x63", + [0x1563] = "\x07\x55\x68", [0x1564] = "\x03\x5e\x69", + [0x1565] = "\x03\x5e\x6e", [0x1566] = "\x03\x5e\x6f", + [0x1567] = "\x03\x5f\x6f", [0x1568] = "\x03\x60\x51", + [0x1569] = "\x05\x71\x55", [0x156a] = "\x07\x59\x67", + [0x156b] = "\x03\x5f\x6d", [0x156c] = "\x07\x59\x68", + [0x156d] = "\x03\x5f\x70", [0x156e] = "\x05\x74\x55", + [0x156f] = "\x04\x6b\x2a", [0x1570] = "\x05\x76\x5f", + [0x1571] = "\x04\x6b\x27", [0x1572] = "\x03\x60\x4e", + [0x1573] = "\x03\x60\x50", [0x1574] = "\x03\x61\x23", + [0x1575] = "\x03\x61\x21", [0x1576] = "\x04\x6c\x30", + [0x1577] = "\x03\x61\x24", [0x1578] = "\x03\x61\x6e", + [0x1587] = "\x06\x3c\x65", [0x1588] = "\x04\x3b\x67", + [0x1589] = "\x0f\x3f\x76", [0x158a] = "\x04\x41\x49", + [0x158b] = "\x04\x5e\x32", [0x158c] = "\x03\x39\x5b", + [0x158d] = "\x04\x35\x7c", [0x158e] = "\x03\x3f\x6a", + [0x158f] = "\x04\x3b\x6b", [0x1590] = "\x03\x3f\x6e", + [0x1591] = "\x03\x3f\x6b", [0x1592] = "\x03\x45\x3b", + [0x1593] = "\x04\x41\x50", [0x1594] = "\x04\x41\x4e", + [0x1595] = "\x04\x48\x23", [0x1596] = "\x03\x4a\x3b", + [0x1597] = "\x03\x4a\x3f", [0x1598] = "\x03\x4a\x3a", + [0x1599] = "\x05\x4a\x6e", [0x159a] = "\x03\x4a\x3c", + [0x159c] = "\x07\x2a\x46", [0x159d] = "\x04\x4e\x48", + [0x159e] = "\x03\x4f\x54", [0x159f] = "\x03\x4f\x57", + [0x15a0] = "\x04\x54\x4f", [0x15a1] = "\x04\x54\x4b", + [0x15a2] = "\x03\x53\x3f", [0x15a3] = "\x04\x54\x4c", + [0x15a4] = "\x03\x53\x41", [0x15a5] = "\x03\x53\x43", + [0x15a6] = "\x03\x53\x46", [0x15a7] = "\x03\x53\x45", + [0x15a8] = "\x07\x34\x73", [0x15aa] = "\x04\x59\x4e", + [0x15ab] = "\x04\x59\x4f", [0x15ac] = "\x04\x59\x54", + [0x15ad] = "\x03\x56\x6e", [0x15ae] = "\x03\x56\x6c", + [0x15af] = "\x04\x59\x4d", [0x15b1] = "\x04\x59\x52", + [0x15b2] = "\x04\x67\x66", [0x15b3] = "\x04\x64\x71", + [0x15b4] = "\x05\x71\x5b", [0x15b5] = "\x04\x69\x55", + [0x15b9] = "\x05\x21\x7d", [0x15ba] = "\x03\x22\x60", + [0x15bb] = "\x03\x24\x3e", [0x15bc] = "\x05\x24\x7b", + [0x15bd] = "\x06\x29\x35", [0x15c1] = "\x04\x28\x31", + [0x15c2] = "\x04\x28\x32", [0x15c3] = "\x03\x2a\x7a", + [0x15c4] = "\x05\x2b\x64", [0x15c5] = "\x04\x2b\x5a", + [0x15c6] = "\x03\x2f\x41", [0x15c7] = "\x04\x2b\x59", + [0x15c9] = "\x04\x30\x40", [0x15ca] = "\x04\x30\x3d", + [0x15cb] = "\x03\x34\x35", [0x15cc] = "\x04\x30\x3e", + [0x15cd] = "\x03\x34\x37", [0x15ce] = "\x04\x30\x3c", + [0x15d0] = "\x03\x39\x63", [0x15d1] = "\x03\x39\x5d", + [0x15d2] = "\x04\x35\x7d", [0x15d3] = "\x03\x39\x60", + [0x15d4] = "\x03\x39\x62", [0x15d5] = "\x03\x39\x64", + [0x15d6] = "\x03\x39\x5f", [0x15d7] = "\x03\x3f\x6f", + [0x15d8] = "\x04\x3b\x6d", [0x15d9] = "\x03\x3f\x74", + [0x15da] = "\x03\x45\x3f", [0x15db] = "\x03\x45\x3e", + [0x15dc] = "\x04\x41\x55", [0x15dd] = "\x04\x41\x54", + [0x15de] = "\x03\x45\x3d", [0x15df] = "\x03\x45\x41", + [0x15e0] = "\x03\x4a\x41", [0x15e1] = "\x03\x4a\x40", + [0x15e2] = "\x03\x4a\x43", [0x15e3] = "\x03\x4a\x42", + [0x15e4] = "\x03\x4f\x59", [0x15e5] = "\x03\x4f\x58", + [0x15e6] = "\x07\x2a\x54", [0x15e7] = "\x03\x53\x47", + [0x15e8] = "\x04\x54\x53", [0x15ea] = "\x04\x54\x51", + [0x15ec] = "\x04\x59\x55", [0x15ee] = "\x03\x5b\x54", + [0x15ef] = "\x04\x64\x73", [0x15f0] = "\x04\x67\x67", + [0x15f1] = "\x03\x34\x38", [0x15f2] = "\x04\x36\x24", + [0x15f3] = "\x03\x3f\x7a", [0x15f4] = "\x03\x3f\x76", + [0x15f5] = "\x03\x3f\x79", [0x15f6] = "\x03\x3f\x77", + [0x15f7] = "\x04\x41\x56", [0x15f8] = "\x03\x45\x44", + [0x15f9] = "\x03\x45\x43", [0x15fa] = "\x03\x45\x45", + [0x15fb] = "\x03\x4a\x48", [0x15fc] = "\x03\x4f\x5d", + [0x15fd] = "\x03\x4f\x5c", [0x15fe] = "\x03\x53\x4b", + [0x15ff] = "\x03\x53\x4a", [0x1600] = "\x03\x52\x38", + [0x1601] = "\x04\x59\x58", [0x1602] = "\x03\x56\x72", + [0x1603] = "\x03\x59\x4c", [0x1604] = "\x03\x5b\x55", + [0x1605] = "\x03\x5d\x4a", [0x1606] = "\x03\x5b\x56", + [0x1607] = "\x03\x5d\x4b", [0x1608] = "\x04\x69\x56", + [0x1609] = "\x03\x61\x51", [0x160a] = "\x03\x62\x40", + [0x160b] = "\x03\x39\x66", [0x160c] = "\x03\x3f\x7d", + [0x160d] = "\x06\x50\x31", [0x160e] = "\x03\x45\x48", + [0x160f] = "\x04\x48\x2d", [0x1610] = "\x04\x48\x31", + [0x1611] = "\x04\x48\x2e", [0x1612] = "\x03\x4a\x4a", + [0x1613] = "\x04\x48\x34", [0x1614] = "\x03\x4a\x4b", + [0x1615] = "\x04\x48\x33", [0x1616] = "\x06\x63\x7b", + [0x1617] = "\x03\x4f\x5e", [0x1618] = "\x03\x4f\x61", + [0x1619] = "\x03\x4f\x5f", [0x161b] = "\x04\x54\x59", + [0x161c] = "\x03\x53\x4f", [0x161d] = "\x03\x53\x4e", + [0x161e] = "\x04\x59\x60", [0x161f] = "\x03\x56\x73", + [0x1620] = "\x03\x56\x77", [0x1621] = "\x04\x54\x58", + [0x1622] = "\x03\x56\x76", [0x1623] = "\x04\x59\x5d", + [0x1624] = "\x04\x59\x5f", [0x1625] = "\x04\x5e\x35", + [0x1626] = "\x03\x59\x4d", [0x1627] = "\x03\x59\x4e", + [0x1628] = "\x04\x5e\x36", [0x1629] = "\x07\x44\x58", + [0x162a] = "\x07\x44\x60", [0x162b] = "\x04\x61\x74", + [0x162c] = "\x04\x61\x73", [0x162d] = "\x03\x5b\x57", + [0x162e] = "\x03\x5b\x58", [0x162f] = "\x03\x5b\x59", + [0x1630] = "\x04\x64\x75", [0x1631] = "\x03\x5d\x4d", + [0x1632] = "\x04\x69\x58", [0x1633] = "\x04\x69\x5a", + [0x1634] = "\x04\x69\x5b", [0x1635] = "\x03\x60\x58", + [0x1636] = "\x03\x61\x53", [0x1637] = "\x03\x61\x27", + [0x1638] = "\x03\x61\x52", [0x1639] = "\x03\x62\x24", + [0x163a] = "\x03\x62\x44", [0x163b] = "\x03\x62\x46", + [0x163c] = "\x04\x69\x5c", [0x163d] = "\x04\x36\x28", + [0x163e] = "\x04\x36\x2a", [0x163f] = "\x04\x3b\x74", + [0x1640] = "\x04\x4e\x4c", [0x1641] = "\x04\x64\x7b", + [0x1642] = "\x04\x41\x5a", [0x1643] = "\x03\x45\x4a", + [0x1645] = "\x03\x4a\x4d", [0x1646] = "\x04\x48\x38", + [0x1647] = "\x04\x48\x37", [0x1648] = "\x04\x54\x5d", + [0x1649] = "\x04\x54\x5c", [0x164a] = "\x04\x59\x62", + [0x164b] = "\x04\x64\x7c", [0x164c] = "\x04\x67\x6e", + [0x164d] = "\x05\x71\x63", [0x164f] = "\x04\x6c\x33", + [0x1650] = "\x04\x3b\x79", [0x1651] = "\x03\x40\x23", + [0x1652] = "\x04\x3b\x76", [0x1653] = "\x03\x45\x4d", + [0x1654] = "\x04\x41\x5d", [0x1655] = "\x04\x41\x5f", + [0x1656] = "\x03\x45\x4c", [0x1657] = "\x0f\x46\x32", + [0x1658] = "\x06\x5a\x28", [0x1659] = "\x04\x48\x3a", + [0x165a] = "\x04\x48\x40", [0x165b] = "\x04\x48\x3b", + [0x165c] = "\x03\x4a\x4f", [0x165d] = "\x03\x4a\x50", + [0x165e] = "\x04\x48\x3d", [0x165f] = "\x04\x4e\x4f", + [0x1660] = "\x04\x54\x63", [0x1661] = "\x04\x54\x61", + [0x1662] = "\x04\x54\x60", [0x1663] = "\x04\x54\x64", + [0x1664] = "\x04\x54\x62", [0x1665] = "\x04\x59\x63", + [0x1666] = "\x04\x54\x68", [0x1667] = "\x03\x53\x52", + [0x1668] = "\x03\x56\x7c", [0x1669] = "\x04\x59\x68", + [0x166a] = "\x04\x59\x64", [0x166b] = "\x07\x3d\x56", + [0x166c] = "\x03\x56\x79", [0x166d] = "\x03\x56\x7d", + [0x166e] = "\x03\x56\x7e", [0x166f] = "\x04\x5e\x3e", + [0x1670] = "\x05\x65\x7e", [0x1671] = "\x04\x5e\x42", + [0x1672] = "\x04\x5e\x3c", [0x1673] = "\x05\x65\x73", + [0x1674] = "\x05\x65\x7b", [0x1675] = "\x04\x5e\x3b", + [0x1676] = "\x04\x5e\x41", [0x1677] = "\x03\x5b\x5c", + [0x1678] = "\x03\x5b\x5b", [0x1679] = "\x04\x61\x77", + [0x167a] = "\x04\x61\x7b", [0x167b] = "\x03\x5b\x5a", + [0x167c] = "\x04\x65\x23", [0x167d] = "\x04\x64\x7e", + [0x167e] = "\x05\x6e\x49", [0x167f] = "\x07\x56\x27", + [0x1680] = "\x07\x56\x25", [0x1681] = "\x04\x67\x72", + [0x1682] = "\x04\x67\x70", [0x1683] = "\x05\x71\x69", + [0x1684] = "\x07\x56\x26", [0x1685] = "\x03\x5f\x74", + [0x1686] = "\x05\x74\x62", [0x1687] = "\x04\x6b\x2c", + [0x1688] = "\x03\x60\x5a", [0x1689] = "\x04\x6c\x34", + [0x168a] = "\x04\x6d\x2d", [0x168b] = "\x03\x61\x54", + [0x168c] = "\x04\x6d\x65", [0x168d] = "\x03\x61\x70", + [0x168e] = "\x04\x6e\x22", [0x168f] = "\x04\x41\x61", + [0x1690] = "\x04\x48\x43", [0x1691] = "\x04\x48\x41", + [0x1692] = "\x04\x48\x42", [0x1693] = "\x04\x48\x44", + [0x1694] = "\x03\x53\x54", [0x1695] = "\x04\x59\x6b", + [0x1696] = "\x07\x44\x77", [0x1697] = "\x04\x5e\x45", + [0x1698] = "\x03\x59\x52", [0x1699] = "\x04\x61\x7d", + [0x169a] = "\x04\x61\x7e", [0x169b] = "\x04\x67\x73", + [0x169c] = "\x04\x69\x60", [0x169d] = "\x03\x60\x5b", + [0x169e] = "\x03\x45\x4e", [0x16a0] = "\x03\x57\x21", + [0x16a1] = "\x03\x5b\x63", [0x16a2] = "\x03\x5b\x62", + [0x16a3] = "\x03\x5d\x52", [0x16a4] = "\x04\x67\x75", + [0x16a5] = "\x04\x6b\x2d", [0x16a6] = "\x03\x40\x25", + [0x16a7] = "\x03\x40\x26", [0x16a8] = "\x03\x40\x27", + [0x16a9] = "\x03\x45\x51", [0x16ab] = "\x04\x54\x6a", + [0x16ac] = "\x04\x54\x69", [0x16ad] = "\x03\x59\x53", + [0x16ae] = "\x04\x62\x22", [0x16af] = "\x04\x62\x23", + [0x16b0] = "\x03\x5f\x75", [0x16b1] = "\x04\x3b\x7b", + [0x16b2] = "\x0f\x40\x2d", [0x16b3] = "\x04\x41\x65", + [0x16b4] = "\x04\x41\x64", [0x16b5] = "\x05\x44\x34", + [0x16b6] = "\x05\x4b\x3e", [0x16b7] = "\x04\x48\x4d", + [0x16b8] = "\x03\x4a\x51", [0x16b9] = "\x04\x48\x4e", + [0x16ba] = "\x03\x4a\x53", [0x16bb] = "\x04\x48\x4c", + [0x16bc] = "\x04\x48\x4b", [0x16bd] = "\x05\x4b\x3f", + [0x16be] = "\x04\x48\x47", [0x16bf] = "\x03\x4f\x68", + [0x16c0] = "\x04\x4e\x59", [0x16c1] = "\x04\x4e\x5c", + [0x16c2] = "\x05\x52\x60", [0x16c3] = "\x04\x54\x6d", + [0x16c4] = "\x04\x54\x6f", [0x16c5] = "\x03\x53\x56", + [0x16c6] = "\x04\x4e\x5d", [0x16c7] = "\x03\x53\x60", + [0x16c8] = "\x03\x53\x57", [0x16c9] = "\x03\x53\x5e", + [0x16ca] = "\x07\x35\x51", [0x16cb] = "\x03\x57\x25", + [0x16cc] = "\x04\x59\x73", [0x16cd] = "\x07\x3d\x69", + [0x16ce] = "\x03\x57\x22", [0x16cf] = "\x04\x59\x77", + [0x16d0] = "\x03\x57\x23", [0x16d1] = "\x03\x57\x24", + [0x16d2] = "\x03\x57\x27", [0x16d3] = "\x03\x57\x29", + [0x16d4] = "\x04\x5e\x4e", [0x16d5] = "\x03\x59\x54", + [0x16d6] = "\x04\x5e\x49", [0x16d7] = "\x04\x5e\x47", + [0x16d8] = "\x04\x5e\x4b", [0x16d9] = "\x03\x59\x57", + [0x16da] = "\x03\x59\x55", [0x16db] = "\x04\x5e\x4d", + [0x16dc] = "\x04\x5e\x4c", [0x16dd] = "\x03\x59\x5a", + [0x16de] = "\x04\x62\x27", [0x16df] = "\x04\x62\x29", + [0x16e0] = "\x04\x62\x2d", [0x16e1] = "\x04\x62\x26", + [0x16e2] = "\x04\x62\x2c", [0x16e3] = "\x03\x5b\x64", + [0x16e4] = "\x04\x62\x25", [0x16e5] = "\x04\x62\x2f", + [0x16e6] = "\x04\x62\x28", [0x16e7] = "\x04\x62\x2b", + [0x16e8] = "\x04\x65\x2f", [0x16e9] = "\x04\x65\x31", + [0x16ea] = "\x04\x65\x30", [0x16eb] = "\x03\x5d\x54", + [0x16ec] = "\x04\x67\x77", [0x16ed] = "\x04\x67\x79", + [0x16ee] = "\x04\x67\x76", [0x16ef] = "\x04\x67\x7c", + [0x16f0] = "\x04\x67\x7b", [0x16f1] = "\x07\x56\x32", + [0x16f2] = "\x04\x69\x63", [0x16f3] = "\x03\x5f\x76", + [0x16f4] = "\x04\x69\x62", [0x16f5] = "\x04\x6c\x39", + [0x16f6] = "\x05\x78\x48", [0x16f7] = "\x03\x61\x55", + [0x16f8] = "\x04\x36\x2b", [0x16f9] = "\x04\x3b\x7e", + [0x16fa] = "\x03\x45\x53", [0x16fb] = "\x04\x41\x6d", + [0x16fc] = "\x04\x41\x72", [0x16fd] = "\x04\x41\x6e", + [0x16fe] = "\x04\x48\x51", [0x16ff] = "\x04\x48\x56", + [0x1700] = "\x04\x48\x59", [0x1701] = "\x04\x48\x50", + [0x1702] = "\x04\x48\x54", [0x1703] = "\x03\x4a\x57", + [0x1704] = "\x04\x4e\x60", [0x1705] = "\x04\x4e\x61", + [0x1706] = "\x04\x54\x76", [0x1707] = "\x04\x54\x77", + [0x1708] = "\x04\x54\x73", [0x1709] = "\x04\x54\x74", + [0x170a] = "\x04\x54\x75", [0x170b] = "\x04\x59\x7d", + [0x170c] = "\x04\x5a\x22", [0x170d] = "\x04\x5a\x21", + [0x170e] = "\x04\x59\x7c", [0x170f] = "\x04\x59\x7a", + [0x1710] = "\x04\x59\x7e", [0x1711] = "\x04\x5e\x51", + [0x1712] = "\x07\x44\x7e", [0x1713] = "\x04\x5e\x50", + [0x1714] = "\x04\x5e\x52", [0x1715] = "\x03\x59\x5d", + [0x1716] = "\x03\x59\x5e", [0x1717] = "\x03\x59\x5f", + [0x1718] = "\x04\x62\x32", [0x1719] = "\x03\x5b\x67", + [0x171a] = "\x03\x5b\x66", [0x171b] = "\x04\x65\x36", + [0x171c] = "\x03\x5d\x55", [0x171d] = "\x04\x67\x7e", + [0x171e] = "\x04\x6b\x30", [0x171f] = "\x04\x6c\x3a", + [0x1720] = "\x03\x57\x2b", [0x1721] = "\x03\x59\x60", + [0x1722] = "\x03\x34\x3a", [0x1723] = "\x04\x36\x2c", + [0x1724] = "\x03\x40\x29", [0x1725] = "\x03\x40\x2a", + [0x1726] = "\x04\x3c\x24", [0x1727] = "\x03\x40\x28", + [0x1728] = "\x04\x3c\x25", [0x1729] = "\x03\x45\x5d", + [0x172a] = "\x03\x40\x2c", [0x172b] = "\x04\x41\x77", + [0x172c] = "\x04\x41\x74", [0x172d] = "\x03\x4a\x5c", + [0x172e] = "\x03\x45\x5e", [0x172f] = "\x04\x41\x75", + [0x1730] = "\x03\x45\x56", [0x1731] = "\x03\x45\x55", + [0x1732] = "\x03\x45\x5a", [0x1733] = "\x04\x41\x79", + [0x1734] = "\x04\x41\x7a", [0x1735] = "\x03\x4a\x58", + [0x1736] = "\x03\x4a\x59", [0x1737] = "\x04\x48\x5b", + [0x1738] = "\x07\x2b\x38", [0x1739] = "\x03\x4a\x5a", + [0x173a] = "\x04\x48\x5c", [0x173b] = "\x06\x64\x40", + [0x173c] = "\x03\x4f\x6a", [0x173d] = "\x04\x4e\x65", + [0x173e] = "\x04\x4e\x64", [0x173f] = "\x04\x4e\x67", + [0x1740] = "\x04\x4e\x66", [0x1741] = "\x04\x54\x78", + [0x1742] = "\x04\x4e\x69", [0x1743] = "\x04\x54\x7c", + [0x1744] = "\x04\x54\x7d", [0x1745] = "\x04\x54\x7a", + [0x1746] = "\x04\x5a\x27", [0x1747] = "\x04\x55\x22", + [0x1748] = "\x04\x5a\x28", [0x1749] = "\x04\x5a\x2a", + [0x174a] = "\x05\x60\x31", [0x174b] = "\x03\x57\x2d", + [0x174c] = "\x03\x59\x64", [0x174d] = "\x05\x60\x2c", + [0x174e] = "\x03\x57\x2c", [0x1750] = "\x04\x5e\x58", + [0x1751] = "\x04\x5e\x57", [0x1752] = "\x04\x5e\x5b", + [0x1753] = "\x04\x5e\x59", [0x1754] = "\x04\x5e\x5a", + [0x1755] = "\x04\x65\x39", [0x1756] = "\x04\x62\x36", + [0x1757] = "\x03\x5b\x68", [0x1758] = "\x04\x65\x3c", + [0x1759] = "\x04\x65\x3b", [0x175a] = "\x03\x5d\x57", + [0x175b] = "\x03\x5d\x59", [0x175d] = "\x04\x68\x24", + [0x175e] = "\x04\x68\x23", [0x175f] = "\x03\x5e\x7d", + [0x1760] = "\x04\x68\x22", [0x1761] = "\x04\x69\x67", + [0x1762] = "\x04\x69\x65", [0x1763] = "\x03\x5f\x77", + [0x1764] = "\x04\x69\x68", [0x1765] = "\x04\x6b\x31", + [0x1766] = "\x03\x61\x56", [0x1767] = "\x04\x6d\x30", + [0x1768] = "\x04\x6d\x67", [0x1769] = "\x04\x6e\x25", + [0x176b] = "\x03\x4f\x6c", [0x176c] = "\x03\x53\x67", + [0x176d] = "\x04\x5e\x5f", [0x176e] = "\x04\x62\x3c", + [0x176f] = "\x04\x48\x5d", [0x1770] = "\x03\x57\x2f", + [0x1771] = "\x04\x55\x26", [0x1772] = "\x03\x57\x2e", + [0x1773] = "\x03\x61\x71", [0x1774] = "\x03\x40\x2d", + [0x1775] = "\x05\x44\x4a", [0x1776] = "\x03\x45\x60", + [0x1777] = "\x04\x48\x5e", [0x1778] = "\x03\x4a\x65", + [0x1779] = "\x04\x48\x5f", [0x177a] = "\x03\x4a\x5f", + [0x177b] = "\x03\x4a\x67", [0x177c] = "\x03\x4a\x68", + [0x177d] = "\x03\x4a\x6b", [0x177e] = "\x03\x4a\x69", + [0x177f] = "\x04\x4e\x6f", [0x1780] = "\x03\x4f\x71", + [0x1781] = "\x03\x4f\x70", [0x1782] = "\x04\x4e\x6e", + [0x1783] = "\x03\x4f\x6f", [0x1784] = "\x04\x4e\x6d", + [0x1785] = "\x04\x4e\x70", [0x1786] = "\x03\x53\x6f", + [0x1787] = "\x03\x53\x6e", [0x1788] = "\x03\x53\x6d", + [0x1789] = "\x05\x5a\x2c", [0x178a] = "\x03\x53\x69", + [0x178b] = "\x04\x55\x2d", [0x178c] = "\x05\x5a\x2e", + [0x178d] = "\x07\x36\x28", [0x178e] = "\x04\x5a\x2e", + [0x178f] = "\x03\x57\x32", [0x1790] = "\x03\x57\x35", + [0x1791] = "\x04\x5a\x2d", [0x1792] = "\x03\x57\x31", + [0x1793] = "\x04\x5e\x67", [0x1794] = "\x05\x6a\x6e", + [0x1795] = "\x04\x5e\x62", [0x1796] = "\x03\x59\x68", + [0x1797] = "\x04\x5e\x68", [0x1798] = "\x03\x59\x69", + [0x1799] = "\x04\x5e\x63", [0x179a] = "\x04\x5e\x65", + [0x179b] = "\x03\x59\x6c", [0x179c] = "\x04\x62\x41", + [0x179d] = "\x04\x62\x3f", [0x179e] = "\x03\x5b\x6a", + [0x179f] = "\x04\x62\x46", [0x17a0] = "\x04\x62\x40", + [0x17a1] = "\x04\x62\x44", [0x17a2] = "\x04\x62\x45", + [0x17a3] = "\x04\x65\x41", [0x17a4] = "\x04\x65\x40", + [0x17a5] = "\x03\x5d\x5d", [0x17a6] = "\x03\x5d\x5b", + [0x17a7] = "\x04\x65\x47", [0x17a8] = "\x05\x6e\x66", + [0x17a9] = "\x05\x6e\x6d", [0x17aa] = "\x03\x5d\x5c", + [0x17ab] = "\x04\x68\x29", [0x17ac] = "\x04\x68\x2a", + [0x17ad] = "\x04\x68\x2b", [0x17ae] = "\x04\x68\x2d", + [0x17af] = "\x03\x5f\x23", [0x17b0] = "\x05\x72\x2d", + [0x17b1] = "\x04\x68\x28", [0x17b2] = "\x07\x5a\x3e", + [0x17b3] = "\x05\x74\x76", [0x17b4] = "\x04\x69\x6b", + [0x17b5] = "\x04\x69\x69", [0x17b6] = "\x03\x5f\x7a", + [0x17b7] = "\x04\x6b\x33", [0x17b8] = "\x04\x6b\x34", + [0x17b9] = "\x04\x6b\x32", [0x17ba] = "\x03\x61\x2b", + [0x17bb] = "\x07\x60\x2e", [0x17bc] = "\x07\x60\x2d", + [0x17bd] = "\x03\x61\x57", [0x17be] = "\x04\x6d\x68", + [0x17bf] = "\x03\x62\x27", [0x17c0] = "\x04\x6e\x3f", + [0x17c1] = "\x03\x62\x37", [0x17c2] = "\x04\x6e\x57", + [0x17c6] = "\x03\x39\x69", [0x17c7] = "\x03\x40\x2e", + [0x17c8] = "\x04\x48\x62", [0x17c9] = "\x03\x4a\x6d", + [0x17ca] = "\x03\x4f\x75", [0x17cb] = "\x04\x4e\x75", + [0x17cc] = "\x04\x4e\x73", [0x17cd] = "\x04\x4e\x76", + [0x17ce] = "\x03\x4f\x78", [0x17cf] = "\x03\x53\x72", + [0x17d0] = "\x03\x53\x73", [0x17d1] = "\x04\x55\x30", + [0x17d2] = "\x04\x55\x32", [0x17d3] = "\x04\x55\x2f", + [0x17d4] = "\x04\x55\x2e", [0x17d5] = "\x03\x57\x39", + [0x17d6] = "\x04\x5a\x31", [0x17d7] = "\x04\x5a\x35", + [0x17d8] = "\x04\x5a\x30", [0x17d9] = "\x03\x57\x38", + [0x17da] = "\x04\x5a\x33", [0x17db] = "\x05\x66\x51", + [0x17dc] = "\x04\x5e\x6e", [0x17dd] = "\x03\x5b\x70", + [0x17de] = "\x04\x62\x48", [0x17df] = "\x04\x62\x47", + [0x17e0] = "\x04\x65\x49", [0x17e1] = "\x03\x5d\x5f", + [0x17e2] = "\x04\x68\x30", [0x17e3] = "\x04\x69\x6e", + [0x17e4] = "\x04\x6b\x35", [0x17e5] = "\x04\x6c\x3e", + [0x17e6] = "\x04\x6d\x33", [0x17e7] = "\x03\x40\x30", + [0x17e8] = "\x04\x42\x22", [0x17ea] = "\x04\x62\x4a", + [0x17eb] = "\x05\x74\x7a", [0x17ec] = "\x07\x64\x75", + [0x17ed] = "\x03\x40\x31", [0x17ee] = "\x05\x3d\x52", + [0x17ef] = "\x06\x64\x5e", [0x17f0] = "\x04\x48\x6a", + [0x17f1] = "\x04\x48\x69", [0x17f2] = "\x04\x48\x67", + [0x17f3] = "\x03\x4a\x74", [0x17f4] = "\x05\x4b\x59", + [0x17f5] = "\x04\x4e\x7b", [0x17f6] = "\x03\x4f\x7a", + [0x17f7] = "\x04\x55\x35", [0x17f8] = "\x04\x55\x36", + [0x17f9] = "\x04\x5a\x38", [0x17fa] = "\x03\x57\x3d", + [0x17fc] = "\x04\x5a\x3b", [0x17fd] = "\x04\x5e\x70", + [0x17fe] = "\x04\x5e\x73", [0x17ff] = "\x03\x59\x6e", + [0x1800] = "\x04\x5e\x74", [0x1801] = "\x04\x5e\x76", + [0x1802] = "\x04\x5e\x75", [0x1803] = "\x04\x5e\x77", + [0x1804] = "\x04\x62\x4e", [0x1805] = "\x03\x5b\x72", + [0x1806] = "\x04\x62\x4c", [0x1808] = "\x04\x65\x4d", + [0x1809] = "\x04\x65\x4f", [0x180a] = "\x04\x65\x4e", + [0x180b] = "\x07\x51\x79", [0x180c] = "\x05\x72\x3f", + [0x180d] = "\x03\x5f\x26", [0x180e] = "\x04\x69\x72", + [0x180f] = "\x04\x6c\x43", [0x1810] = "\x04\x6c\x41", + [0x1811] = "\x03\x61\x2d", [0x1812] = "\x05\x78\x52", + [0x1813] = "\x04\x6d\x35", [0x1814] = "\x07\x61\x6a", + [0x1815] = "\x04\x6d\x69", [0x1816] = "\x04\x6e\x49", + [0x1817] = "\x07\x51\x7d", [0x1818] = "\x05\x72\x41", + [0x1819] = "\x03\x4a\x77", [0x181a] = "\x03\x4a\x76", + [0x181b] = "\x03\x4d\x3e", [0x181c] = "\x03\x53\x76", + [0x181d] = "\x07\x5a\x4b", [0x181e] = "\x03\x61\x58", + [0x181f] = "\x03\x4a\x79", [0x1820] = "\x04\x4f\x24", + [0x1821] = "\x04\x4f\x25", [0x1822] = "\x04\x55\x3f", + [0x1823] = "\x03\x53\x77", [0x1824] = "\x04\x5e\x7e", + [0x1825] = "\x03\x59\x70", [0x1826] = "\x04\x5e\x7d", + [0x1827] = "\x04\x5e\x7c", [0x1828] = "\x03\x5b\x73", + [0x1829] = "\x05\x66\x68", [0x182a] = "\x03\x5d\x65", + [0x182b] = "\x04\x69\x77", [0x182c] = "\x04\x69\x76", + [0x182d] = "\x07\x5a\x4f", [0x182f] = "\x04\x6c\x48", + [0x1830] = "\x04\x6c\x49", [0x1831] = "\x04\x6e\x58", + [0x1832] = "\x05\x3d\x54", [0x1834] = "\x04\x48\x6d", + [0x1835] = "\x05\x4b\x64", [0x1837] = "\x04\x4f\x28", + [0x1838] = "\x04\x4f\x34", [0x1839] = "\x03\x50\x21", + [0x183a] = "\x07\x2b\x6a", [0x183b] = "\x04\x4f\x39", + [0x183c] = "\x04\x4f\x32", [0x183d] = "\x04\x4f\x2b", + [0x183e] = "\x04\x4f\x29", [0x183f] = "\x03\x54\x27", + [0x1840] = "\x04\x55\x44", [0x1841] = "\x04\x55\x42", + [0x1842] = "\x04\x55\x48", [0x1843] = "\x03\x53\x7e", + [0x1844] = "\x03\x54\x28", [0x1845] = "\x04\x55\x41", + [0x1846] = "\x03\x54\x26", [0x1847] = "\x03\x54\x24", + [0x1848] = "\x03\x54\x22", [0x1849] = "\x03\x53\x7b", + [0x184a] = "\x04\x5a\x40", [0x184b] = "\x03\x57\x41", + [0x184c] = "\x04\x5f\x21", [0x184d] = "\x07\x3e\x49", + [0x184e] = "\x04\x5a\x42", [0x184f] = "\x03\x59\x72", + [0x1850] = "\x04\x5f\x23", [0x1851] = "\x05\x66\x6e", + [0x1852] = "\x04\x5f\x27", [0x1853] = "\x04\x5f\x25", + [0x1854] = "\x03\x59\x78", [0x1855] = "\x04\x5f\x24", + [0x1856] = "\x03\x59\x77", [0x1857] = "\x04\x5f\x29", + [0x1858] = "\x04\x5f\x2b", [0x1859] = "\x04\x62\x5d", + [0x185a] = "\x05\x6b\x35", [0x185b] = "\x04\x62\x67", + [0x185c] = "\x04\x62\x57", [0x185d] = "\x04\x62\x61", + [0x185e] = "\x04\x62\x59", [0x185f] = "\x04\x62\x54", + [0x1860] = "\x03\x5b\x76", [0x1861] = "\x05\x6b\x31", + [0x1862] = "\x04\x62\x62", [0x1863] = "\x05\x6b\x2b", + [0x1864] = "\x04\x62\x60", [0x1865] = "\x04\x62\x64", + [0x1866] = "\x03\x5b\x78", [0x1867] = "\x03\x5b\x7b", + [0x1868] = "\x03\x5b\x7c", [0x1869] = "\x0f\x64\x72", + [0x186b] = "\x03\x5d\x77", [0x186c] = "\x04\x65\x55", + [0x186d] = "\x07\x52\x31", [0x186e] = "\x04\x65\x5b", + [0x186f] = "\x03\x5d\x6c", [0x1870] = "\x07\x52\x33", + [0x1871] = "\x04\x65\x53", [0x1872] = "\x03\x5d\x6b", + [0x1873] = "\x03\x5d\x6d", [0x1875] = "\x04\x68\x3d", + [0x1876] = "\x03\x5f\x2d", [0x1877] = "\x03\x5f\x30", + [0x1878] = "\x04\x68\x3c", [0x1879] = "\x03\x5f\x2e", + [0x187a] = "\x03\x5f\x2b", [0x187b] = "\x04\x68\x3a", + [0x187c] = "\x03\x5f\x29", [0x187d] = "\x03\x5f\x2f", + [0x187e] = "\x04\x69\x7d", [0x187f] = "\x03\x5f\x7d", + [0x1880] = "\x04\x6a\x21", [0x1881] = "\x04\x69\x7c", + [0x1882] = "\x03\x5f\x7c", [0x1883] = "\x04\x69\x7e", + [0x1884] = "\x03\x60\x24", [0x1885] = "\x04\x69\x7b", + [0x1886] = "\x03\x60\x21", [0x1888] = "\x0f\x6a\x3f", + [0x1889] = "\x04\x6b\x3c", [0x188a] = "\x04\x6b\x3d", + [0x188b] = "\x04\x6b\x40", [0x188c] = "\x04\x6b\x3b", + [0x188d] = "\x07\x5e\x23", [0x188e] = "\x03\x60\x67", + [0x188f] = "\x03\x60\x64", [0x1890] = "\x05\x78\x5b", + [0x1891] = "\x05\x78\x56", [0x1892] = "\x03\x61\x30", + [0x1893] = "\x04\x6c\x4d", [0x1894] = "\x04\x6c\x4e", + [0x1895] = "\x05\x77\x24", [0x1896] = "\x03\x61\x5a", + [0x1897] = "\x04\x6d\x39", [0x1899] = "\x03\x61\x31", + [0x189a] = "\x04\x6e\x2c", [0x189b] = "\x04\x6e\x2d", + [0x189c] = "\x04\x6e\x5b", [0x18a5] = "\x03\x45\x65", + [0x18a6] = "\x03\x4a\x7a", [0x18a7] = "\x03\x4a\x7b", + [0x18a8] = "\x03\x4a\x7c", [0x18a9] = "\x03\x4a\x7e", + [0x18aa] = "\x05\x4b\x6b", [0x18ab] = "\x03\x4a\x7d", + [0x18ac] = "\x05\x53\x38", [0x18ad] = "\x04\x4f\x3f", + [0x18ae] = "\x03\x50\x23", [0x18af] = "\x04\x4f\x44", + [0x18b0] = "\x04\x4f\x3b", [0x18b1] = "\x07\x2b\x6d", + [0x18b2] = "\x04\x4f\x40", [0x18b3] = "\x03\x50\x28", + [0x18b4] = "\x03\x50\x29", [0x18b5] = "\x03\x50\x26", + [0x18b7] = "\x03\x4c\x63", [0x18b8] = "\x04\x4f\x41", + [0x18b9] = "\x04\x55\x4e", [0x18ba] = "\x03\x54\x2f", + [0x18bb] = "\x04\x55\x4d", [0x18bc] = "\x03\x54\x30", + [0x18bd] = "\x04\x55\x4f", [0x18be] = "\x03\x54\x2b", + [0x18bf] = "\x04\x55\x54", [0x18c0] = "\x07\x36\x4a", + [0x18c1] = "\x04\x55\x4a", [0x18c2] = "\x03\x54\x2e", + [0x18c3] = "\x04\x55\x57", [0x18c4] = "\x03\x57\x4b", + [0x18c5] = "\x04\x55\x4b", [0x18c6] = "\x03\x54\x31", + [0x18c7] = "\x04\x55\x55", [0x18c8] = "\x03\x54\x34", + [0x18c9] = "\x04\x55\x50", [0x18ca] = "\x07\x36\x51", + [0x18cb] = "\x03\x56\x33", [0x18cc] = "\x03\x57\x4c", + [0x18cd] = "\x04\x5a\x51", [0x18ce] = "\x03\x57\x47", + [0x18cf] = "\x03\x57\x49", [0x18d0] = "\x03\x57\x46", + [0x18d1] = "\x04\x5a\x52", [0x18d2] = "\x03\x57\x4e", + [0x18d3] = "\x04\x5a\x50", [0x18d4] = "\x04\x5f\x2f", + [0x18d5] = "\x04\x5f\x35", [0x18d6] = "\x04\x5f\x2c", + [0x18d7] = "\x03\x5a\x21", [0x18d8] = "\x03\x59\x7c", + [0x18d9] = "\x04\x5f\x32", [0x18da] = "\x04\x5f\x31", + [0x18db] = "\x05\x67\x26", [0x18dc] = "\x04\x5f\x38", + [0x18dd] = "\x04\x62\x6a", [0x18de] = "\x03\x5c\x21", + [0x18df] = "\x04\x62\x6c", [0x18e0] = "\x04\x65\x61", + [0x18e1] = "\x03\x5c\x28", [0x18e2] = "\x04\x62\x6f", + [0x18e3] = "\x05\x6b\x3c", [0x18e4] = "\x04\x5f\x36", + [0x18e6] = "\x03\x5d\x78", [0x18e7] = "\x04\x65\x6c", + [0x18e8] = "\x03\x5d\x7d", [0x18e9] = "\x03\x5d\x7b", + [0x18ea] = "\x04\x65\x6a", [0x18eb] = "\x04\x65\x64", + [0x18ec] = "\x03\x5d\x7c", [0x18ed] = "\x07\x52\x42", + [0x18ee] = "\x04\x65\x62", [0x18ef] = "\x04\x65\x6b", + [0x18f0] = "\x03\x5d\x7e", [0x18f1] = "\x03\x5f\x34", + [0x18f2] = "\x04\x68\x40", [0x18f3] = "\x04\x68\x42", + [0x18f4] = "\x04\x68\x41", [0x18f5] = "\x05\x72\x63", + [0x18f6] = "\x03\x5f\x33", [0x18f7] = "\x04\x6a\x27", + [0x18f8] = "\x04\x6a\x2c", [0x18fa] = "\x03\x60\x28", + [0x18fb] = "\x04\x6a\x26", [0x18fc] = "\x03\x60\x26", + [0x18fd] = "\x03\x60\x27", [0x18fe] = "\x04\x6b\x45", + [0x18ff] = "\x03\x60\x6b", [0x1900] = "\x05\x77\x2c", + [0x1901] = "\x04\x6b\x44", [0x1902] = "\x05\x77\x34", + [0x1903] = "\x04\x6b\x47", [0x1904] = "\x03\x60\x6a", + [0x1905] = "\x03\x60\x69", [0x1906] = "\x04\x6b\x48", + [0x1907] = "\x04\x6c\x50", [0x1908] = "\x04\x6c\x52", + [0x1909] = "\x04\x6c\x51", [0x190a] = "\x03\x61\x36", + [0x190b] = "\x04\x6c\x54", [0x190c] = "\x04\x6d\x3d", + [0x190d] = "\x03\x61\x5c", [0x190e] = "\x07\x63\x37", + [0x190f] = "\x03\x62\x2a", [0x1910] = "\x03\x62\x3e", + [0x1911] = "\x04\x6e\x59", [0x1912] = "\x03\x62\x43", + [0x191a] = "\x04\x4f\x47", [0x191b] = "\x04\x5f\x39", + [0x191c] = "\x07\x57\x29", [0x191d] = "\x04\x6b\x4d", + [0x191e] = "\x05\x79\x73", [0x191f] = "\x05\x4b\x6d", + [0x1920] = "\x04\x4f\x49", [0x1921] = "\x04\x4f\x4a", + [0x1922] = "\x03\x50\x2d", [0x1923] = "\x03\x54\x38", + [0x1924] = "\x04\x55\x58", [0x1925] = "\x07\x36\x5c", + [0x1926] = "\x03\x5a\x23", [0x1927] = "\x04\x62\x72", + [0x1929] = "\x03\x5f\x39", [0x192a] = "\x03\x61\x37", + [0x192b] = "\x03\x61\x38", [0x192c] = "\x04\x48\x73", + [0x192d] = "\x04\x48\x74", [0x192e] = "\x03\x4b\x21", + [0x192f] = "\x04\x4f\x4d", [0x1930] = "\x04\x4f\x4b", + [0x1931] = "\x04\x55\x59", [0x1932] = "\x04\x55\x5c", + [0x1933] = "\x04\x55\x5a", [0x1934] = "\x04\x55\x5d", + [0x1935] = "\x03\x57\x4f", [0x1936] = "\x04\x5f\x3c", + [0x1937] = "\x04\x5f\x3b", [0x1938] = "\x03\x5a\x27", + [0x1939] = "\x04\x62\x79", [0x193a] = "\x04\x62\x76", + [0x193b] = "\x04\x62\x7d", [0x193c] = "\x04\x62\x77", + [0x193d] = "\x04\x62\x7c", [0x193e] = "\x04\x68\x49", + [0x193f] = "\x04\x68\x48", [0x1940] = "\x04\x68\x4a", + [0x1941] = "\x05\x75\x4d", [0x1942] = "\x05\x75\x48", + [0x1943] = "\x04\x6b\x4e", [0x1944] = "\x03\x61\x39", + [0x1945] = "\x07\x5a\x7d", [0x1946] = "\x04\x6d\x41", + [0x1947] = "\x07\x2c\x31", [0x1948] = "\x04\x65\x71", + [0x1949] = "\x04\x65\x72", [0x194a] = "\x07\x36\x65", + [0x194b] = "\x04\x5f\x3d", [0x194c] = "\x04\x63\x21", + [0x194d] = "\x04\x65\x76", [0x194e] = "\x04\x68\x4b", + [0x194f] = "\x04\x6b\x52", [0x1950] = "\x04\x6c\x5a", + [0x1951] = "\x07\x2c\x33", [0x1952] = "\x04\x55\x5e", + [0x1953] = "\x07\x36\x67", [0x1954] = "\x05\x6f\x52", + [0x1955] = "\x04\x65\x79", [0x1956] = "\x04\x68\x4f", + [0x1957] = "\x04\x68\x4c", [0x1958] = "\x04\x68\x4e", + [0x1959] = "\x04\x68\x4d", [0x195a] = "\x04\x6a\x31", + [0x195b] = "\x04\x6b\x55", [0x195c] = "\x04\x6d\x42", + [0x195d] = "\x04\x42\x2c", [0x195e] = "\x03\x4b\x23", + [0x195f] = "\x04\x4f\x52", [0x1960] = "\x04\x4f\x53", + [0x1961] = "\x04\x55\x5f", [0x1962] = "\x04\x5a\x5f", + [0x1963] = "\x05\x61\x23", [0x1964] = "\x05\x67\x40", + [0x1965] = "\x05\x67\x3d", [0x1966] = "\x04\x5f\x3f", + [0x1967] = "\x05\x67\x41", [0x1968] = "\x04\x63\x23", + [0x1969] = "\x03\x5c\x2b", [0x196a] = "\x04\x65\x7c", + [0x196b] = "\x04\x66\x21", [0x196c] = "\x04\x65\x7d", + [0x196d] = "\x05\x6f\x58", [0x196e] = "\x04\x68\x52", + [0x196f] = "\x03\x5f\x3b", [0x1970] = "\x04\x6b\x56", + [0x1971] = "\x04\x6c\x5b", [0x1972] = "\x04\x6d\x44", + [0x1973] = "\x03\x61\x5e", [0x1974] = "\x04\x6d\x43", + [0x1975] = "\x04\x6d\x6f", [0x1976] = "\x04\x5f\x40", + [0x1977] = "\x03\x5c\x2c", [0x1978] = "\x04\x6a\x37", + [0x1979] = "\x03\x61\x3a", [0x197a] = "\x04\x55\x61", + [0x197b] = "\x04\x6c\x61", [0x197c] = "\x04\x6c\x62", + [0x197d] = "\x04\x5f\x43", [0x197e] = "\x04\x5f\x42", + [0x197f] = "\x04\x5f\x44", [0x1980] = "\x04\x63\x26", + [0x1981] = "\x04\x68\x59", [0x1982] = "\x04\x55\x62", + [0x1983] = "\x04\x5a\x63", [0x1984] = "\x04\x5f\x45", + [0x1985] = "\x04\x63\x27", [0x1986] = "\x04\x68\x5a", + [0x1987] = "\x03\x60\x2a", [0x1988] = "\x04\x6b\x58", + [0x1989] = "\x04\x6b\x5b", [0x198a] = "\x03\x5a\x2c", + [0x198b] = "\x04\x5f\x46", [0x198c] = "\x03\x5e\x23", + [0x198d] = "\x07\x52\x67", [0x198e] = "\x05\x6f\x61", + [0x198f] = "\x04\x68\x5c", [0x1990] = "\x04\x6e\x31", + [0x1991] = "\x05\x7b\x7a", [0x1992] = "\x04\x5a\x66", + [0x1993] = "\x05\x61\x2d", [0x1994] = "\x04\x5f\x48", + [0x1995] = "\x04\x63\x29", [0x1996] = "\x04\x63\x2b", + [0x1997] = "\x04\x66\x27", [0x1998] = "\x04\x66\x25", + [0x1999] = "\x04\x66\x26", [0x199a] = "\x03\x5f\x3d", + [0x199b] = "\x04\x68\x61", [0x199c] = "\x04\x6a\x3d", + [0x199d] = "\x04\x6a\x3c", [0x199e] = "\x03\x60\x6e", + [0x199f] = "\x05\x77\x4d", [0x19a0] = "\x04\x6c\x69", + [0x19a1] = "\x04\x6c\x66", [0x19a2] = "\x04\x6c\x6a", + [0x19a3] = "\x04\x6d\x4c", [0x19a4] = "\x04\x6d\x4b", + [0x19a5] = "\x04\x6d\x70", [0x19a6] = "\x03\x61\x76", + [0x19a7] = "\x03\x62\x2b", [0x19a8] = "\x03\x62\x32", + [0x19a9] = "\x04\x6e\x4b", [0x19aa] = "\x04\x6e\x4c", + [0x19ab] = "\x04\x6e\x5a", [0x19ac] = "\x05\x75\x61", + [0x19af] = "\x05\x6b\x69", [0x19b0] = "\x05\x6c\x44", + [0x19b1] = "\x04\x68\x62", [0x19b3] = "\x04\x68\x63", + [0x19b4] = "\x04\x6d\x51", [0x19b5] = "\x03\x62\x2c", + [0x1a00] = "\x01\x44\x21", [0x1a01] = "\x01\x44\x23", + [0x1a02] = "\x04\x21\x26", [0x1a03] = "\x01\x44\x24", + [0x1a04] = "\x03\x21\x26", [0x1a05] = "\x03\x21\x25", + [0x1a07] = "\x02\x21\x26", [0x1a08] = "\x01\x44\x37", + [0x1a09] = "\x01\x44\x35", [0x1a0a] = "\x01\x44\x38", + [0x1a0b] = "\x01\x44\x36", [0x1a0c] = "\x02\x21\x27", + [0x1a0d] = "\x01\x44\x62", [0x1a0e] = "\x02\x21\x2f", + [0x1a0f] = "\x02\x21\x2d", [0x1a10] = "\x01\x44\x61", + [0x1a11] = "\x01\x44\x60", [0x1a12] = "\x04\x21\x39", + [0x1a14] = "\x01\x45\x62", [0x1a15] = "\x01\x45\x61", + [0x1a16] = "\x01\x45\x60", [0x1a17] = "\x04\x21\x55", + [0x1a18] = "\x01\x45\x63", [0x1a19] = "\x01\x45\x5f", + [0x1a1e] = "\x01\x47\x22", [0x1a1f] = "\x01\x47\x23", + [0x1a20] = "\x03\x22\x62", [0x1a21] = "\x03\x22\x61", + [0x1a22] = "\x03\x22\x63", [0x1a23] = "\x04\x23\x35", + [0x1a24] = "\x03\x24\x3f", [0x1a26] = "\x01\x4b\x64", + [0x1a28] = "\x03\x21\x21", [0x1a29] = "\x04\x21\x27", + [0x1a2a] = "\x03\x21\x2c", [0x1a2b] = "\x01\x44\x39", + [0x1a2d] = "\x01\x44\x63", [0x1a2e] = "\x02\x21\x30", + [0x1a2f] = "\x04\x21\x3a", [0x1a30] = "\x01\x44\x64", + [0x1a31] = "\x02\x21\x43", [0x1a32] = "\x01\x48\x6b", + [0x1a33] = "\x02\x25\x31", [0x1a35] = "\x04\x2b\x5e", + [0x1a36] = "\x03\x21\x22", [0x1a38] = "\x01\x44\x3a", + [0x1a39] = "\x01\x44\x65", [0x1a3b] = "\x01\x45\x64", + [0x1a3c] = "\x02\x21\x44", [0x1a3d] = "\x03\x27\x40", + [0x1a3f] = "\x03\x21\x23", [0x1a40] = "\x04\x21\x22", + [0x1a41] = "\x04\x21\x23", [0x1a42] = "\x02\x21\x21", + [0x1a43] = "\x01\x44\x25", [0x1a45] = "\x01\x44\x3c", + [0x1a46] = "\x03\x21\x30", [0x1a47] = "\x02\x21\x28", + [0x1a48] = "\x01\x44\x3d", [0x1a49] = "\x03\x21\x2e", + [0x1a4b] = "\x01\x44\x66", [0x1a4d] = "\x01\x45\x65", + [0x1a4e] = "\x01\x45\x67", [0x1a4f] = "\x01\x45\x66", + [0x1a51] = "\x04\x22\x27", [0x1a52] = "\x01\x47\x24", + [0x1a53] = "\x01\x47\x25", [0x1a54] = "\x03\x23\x45", + [0x1a56] = "\x01\x4b\x65", [0x1a57] = "\x03\x2b\x22", + [0x1a58] = "\x01\x53\x7d", [0x1a59] = "\x01\x44\x22", + [0x1a5a] = "\x04\x21\x24", [0x1a5c] = "\x02\x21\x22", + [0x1a5d] = "\x01\x44\x26", [0x1a5e] = "\x01\x44\x3f", + [0x1a5f] = "\x01\x44\x3e", [0x1a62] = "\x03\x21\x46", + [0x1a63] = "\x03\x21\x45", [0x1a68] = "\x03\x22\x64", + [0x1a69] = "\x01\x47\x26", [0x1a6a] = "\x04\x22\x28", + [0x1a71] = "\x03\x24\x40", [0x1a73] = "\x01\x4b\x66", + [0x1a74] = "\x04\x25\x31", [0x1a75] = "\x04\x25\x30", + [0x1a79] = "\x03\x2b\x23", [0x1a7e] = "\x01\x58\x71", + [0x1a7f] = "\x02\x33\x4e", [0x1a80] = "\x03\x39\x6c", + [0x1a81] = "\x03\x39\x6e", [0x1a82] = "\x01\x63\x2a", + [0x1a83] = "\x02\x41\x56", [0x1a84] = "\x02\x41\x57", + [0x1a85] = "\x03\x21\x24", [0x1a86] = "\x01\x44\x27", + [0x1a87] = "\x03\x21\x2d", [0x1a88] = "\x01\x44\x68", + [0x1a89] = "\x03\x22\x65", [0x1a8b] = "\x01\x4b\x67", + [0x1a8c] = "\x01\x44\x28", [0x1a8d] = "\x02\x21\x29", + [0x1a8e] = "\x01\x44\x40", [0x1a8f] = "\x03\x21\x31", + [0x1a91] = "\x01\x44\x69", [0x1a92] = "\x01\x44\x6b", + [0x1a93] = "\x02\x21\x31", [0x1a94] = "\x01\x44\x6c", + [0x1a95] = "\x01\x44\x6a", [0x1a96] = "\x04\x21\x3b", + [0x1a97] = "\x03\x21\x6c", [0x1a98] = "\x03\x22\x66", + [0x1a99] = "\x01\x47\x27", [0x1a9b] = "\x01\x4b\x68", + [0x1a9c] = "\x03\x24\x42", [0x1a9d] = "\x03\x27\x42", + [0x1a9e] = "\x01\x4b\x69", [0x1a9f] = "\x01\x4f\x67", + [0x1aa0] = "\x01\x27\x28", [0x1aa1] = "\x01\x44\x41", + [0x1aa2] = "\x01\x44\x6d", [0x1aa3] = "\x03\x21\x47", + [0x1aa4] = "\x01\x47\x28", [0x1aa5] = "\x01\x47\x2a", + [0x1aa6] = "\x01\x47\x29", [0x1aa8] = "\x01\x48\x6c", + [0x1aab] = "\x01\x4b\x6a", [0x1aac] = "\x01\x4b\x6b", + [0x1aad] = "\x01\x4f\x68", [0x1aae] = "\x01\x4f\x69", + [0x1aaf] = "\x03\x2b\x26", [0x1ab0] = "\x03\x2b\x25", + [0x1ab1] = "\x03\x2b\x27", [0x1ab2] = "\x03\x2b\x24", + [0x1ab3] = "\x01\x53\x7e", [0x1ab4] = "\x04\x36\x2e", + [0x1ab6] = "\x02\x41\x58", [0x1ab7] = "\x03\x40\x33", + [0x1ab9] = "\x02\x6d\x44", [0x1aba] = "\x01\x44\x29", + [0x1abc] = "\x03\x21\x32", [0x1abe] = "\x03\x21\x33", + [0x1ac0] = "\x01\x44\x6f", [0x1ac1] = "\x01\x44\x6e", + [0x1ac2] = "\x02\x21\x32", [0x1ac3] = "\x01\x44\x70", + [0x1ac4] = "\x01\x44\x76", [0x1ac5] = "\x03\x21\x49", + [0x1ac6] = "\x01\x44\x71", [0x1ac7] = "\x01\x44\x72", + [0x1ac8] = "\x02\x21\x34", [0x1ac9] = "\x02\x21\x33", + [0x1aca] = "\x01\x44\x74", [0x1acb] = "\x01\x44\x75", + [0x1acc] = "\x03\x21\x4c", [0x1acd] = "\x01\x44\x73", + [0x1ace] = "\x03\x21\x4b", [0x1acf] = "\x03\x21\x4a", + [0x1ad0] = "\x04\x21\x3c", [0x1ad4] = "\x01\x45\x6a", + [0x1ad5] = "\x01\x45\x6b", [0x1ad6] = "\x01\x45\x6c", + [0x1ad7] = "\x01\x45\x6d", [0x1ad8] = "\x01\x45\x69", + [0x1ad9] = "\x01\x45\x70", [0x1ada] = "\x02\x21\x4a", + [0x1adb] = "\x04\x21\x5b", [0x1adc] = "\x02\x21\x46", + [0x1add] = "\x02\x21\x49", [0x1ade] = "\x01\x45\x71", + [0x1adf] = "\x01\x46\x23", [0x1ae0] = "\x03\x21\x6d", + [0x1ae1] = "\x02\x21\x48", [0x1ae2] = "\x04\x21\x5a", + [0x1ae3] = "\x01\x45\x6e", [0x1ae4] = "\x01\x45\x6f", + [0x1ae5] = "\x01\x45\x68", [0x1ae6] = "\x03\x21\x72", + [0x1ae7] = "\x03\x21\x70", [0x1ae8] = "\x02\x21\x45", + [0x1ae9] = "\x02\x21\x47", [0x1aee] = "\x03\x22\x6f", + [0x1aef] = "\x03\x22\x68", [0x1af0] = "\x01\x47\x37", + [0x1af1] = "\x02\x21\x6f", [0x1af2] = "\x01\x47\x34", + [0x1af3] = "\x01\x47\x38", [0x1af4] = "\x02\x21\x79", + [0x1af5] = "\x02\x21\x6d", [0x1af6] = "\x01\x47\x35", + [0x1af7] = "\x02\x21\x71", [0x1af8] = "\x03\x22\x6b", + [0x1af9] = "\x03\x22\x67", [0x1afa] = "\x03\x22\x76", + [0x1afb] = "\x01\x47\x36", [0x1afc] = "\x03\x22\x6e", + [0x1afd] = "\x01\x47\x39", [0x1afe] = "\x04\x22\x2d", + [0x1aff] = "\x01\x47\x2b", [0x1b00] = "\x02\x21\x70", + [0x1b01] = "\x01\x47\x3a", [0x1b02] = "\x02\x21\x74", + [0x1b03] = "\x03\x22\x6d", [0x1b04] = "\x02\x21\x78", + [0x1b05] = "\x02\x21\x75", [0x1b06] = "\x03\x22\x6c", + [0x1b07] = "\x03\x22\x74", [0x1b08] = "\x02\x21\x72", + [0x1b09] = "\x01\x47\x2c", [0x1b0a] = "\x01\x47\x2e", + [0x1b0b] = "\x01\x47\x3b", [0x1b0c] = "\x04\x22\x2a", + [0x1b0d] = "\x01\x47\x30", [0x1b0e] = "\x02\x21\x6a", + [0x1b0f] = "\x01\x47\x33", [0x1b10] = "\x01\x47\x31", + [0x1b11] = "\x01\x47\x32", [0x1b12] = "\x02\x21\x7a", + [0x1b13] = "\x02\x21\x77", [0x1b14] = "\x02\x21\x6e", + [0x1b15] = "\x01\x47\x2f", [0x1b16] = "\x03\x22\x70", + [0x1b17] = "\x03\x22\x77", [0x1b18] = "\x02\x21\x6b", + [0x1b19] = "\x01\x47\x2d", [0x1b1a] = "\x03\x22\x75", + [0x1b1b] = "\x04\x22\x2e", [0x1b1c] = "\x03\x22\x73", + [0x1b1d] = "\x02\x21\x73", [0x1b22] = "\x02\x21\x76", + [0x1b28] = "\x03\x22\x72", [0x1b29] = "\x0f\x21\x71", + [0x1b2c] = "\x02\x21\x6c", [0x1b2d] = "\x02\x23\x28", + [0x1b2e] = "\x04\x23\x39", [0x1b2f] = "\x01\x49\x24", + [0x1b30] = "\x01\x48\x75", [0x1b31] = "\x03\x24\x50", + [0x1b32] = "\x03\x24\x48", [0x1b33] = "\x02\x23\x29", + [0x1b34] = "\x01\x48\x72", [0x1b35] = "\x03\x24\x4f", + [0x1b36] = "\x01\x49\x26", [0x1b37] = "\x03\x24\x46", + [0x1b38] = "\x01\x48\x7a", [0x1b39] = "\x03\x24\x45", + [0x1b3a] = "\x01\x48\x79", [0x1b3b] = "\x02\x22\x7b", + [0x1b3c] = "\x01\x48\x7d", [0x1b3d] = "\x01\x48\x78", + [0x1b3e] = "\x02\x23\x22", [0x1b3f] = "\x02\x23\x2a", + [0x1b40] = "\x03\x24\x4e", [0x1b41] = "\x02\x23\x26", + [0x1b42] = "\x03\x24\x49", [0x1b43] = "\x01\x48\x7b", + [0x1b44] = "\x03\x24\x4b", [0x1b45] = "\x03\x24\x43", + [0x1b46] = "\x01\x48\x7e", [0x1b47] = "\x01\x48\x6f", + [0x1b48] = "\x01\x49\x29", [0x1b49] = "\x02\x22\x7d", + [0x1b4a] = "\x03\x24\x44", [0x1b4b] = "\x03\x24\x4c", + [0x1b4c] = "\x02\x25\x3d", [0x1b4d] = "\x01\x48\x6d", + [0x1b4e] = "\x01\x49\x25", [0x1b4f] = "\x01\x48\x6e", + [0x1b50] = "\x01\x48\x76", [0x1b51] = "\x01\x48\x77", + [0x1b52] = "\x02\x23\x24", [0x1b53] = "\x02\x22\x7e", + [0x1b54] = "\x01\x48\x7c", [0x1b55] = "\x01\x48\x74", + [0x1b56] = "\x02\x22\x7a", [0x1b57] = "\x01\x48\x70", + [0x1b58] = "\x02\x23\x27", [0x1b59] = "\x01\x49\x27", + [0x1b5a] = "\x01\x49\x2a", [0x1b5b] = "\x01\x48\x73", + [0x1b5c] = "\x01\x49\x22", [0x1b5d] = "\x01\x49\x28", + [0x1b5e] = "\x01\x48\x71", [0x1b5f] = "\x02\x23\x25", + [0x1b60] = "\x01\x49\x23", [0x1b61] = "\x02\x23\x2b", + [0x1b62] = "\x02\x22\x7c", [0x1b63] = "\x01\x49\x21", + [0x1b64] = "\x02\x23\x21", [0x1b66] = "\x03\x64\x48", + [0x1b67] = "\x02\x23\x23", [0x1b68] = "\x03\x64\x49", + [0x1b69] = "\x01\x4b\x79", [0x1b6a] = "\x02\x25\x3f", + [0x1b6b] = "\x02\x25\x4b", [0x1b6c] = "\x01\x4b\x71", + [0x1b6d] = "\x03\x27\x47", [0x1b6e] = "\x02\x25\x4c", + [0x1b6f] = "\x01\x4b\x6c", [0x1b70] = "\x01\x4b\x76", + [0x1b71] = "\x04\x25\x3e", [0x1b72] = "\x03\x27\x4f", + [0x1b73] = "\x01\x4b\x6f", [0x1b74] = "\x02\x25\x39", + [0x1b75] = "\x01\x4b\x77", [0x1b76] = "\x02\x25\x38", + [0x1b77] = "\x02\x25\x3c", [0x1b78] = "\x02\x25\x43", + [0x1b79] = "\x02\x25\x41", [0x1b7a] = "\x01\x4c\x21", + [0x1b7b] = "\x01\x4b\x7a", [0x1b7c] = "\x02\x25\x33", + [0x1b7d] = "\x02\x25\x35", [0x1b7e] = "\x01\x4b\x7c", + [0x1b7f] = "\x01\x4b\x70", [0x1b80] = "\x02\x25\x36", + [0x1b81] = "\x02\x25\x42", [0x1b82] = "\x02\x25\x49", + [0x1b83] = "\x01\x4b\x75", [0x1b84] = "\x02\x25\x3b", + [0x1b85] = "\x02\x25\x34", [0x1b86] = "\x01\x4b\x74", + [0x1b87] = "\x02\x25\x37", [0x1b88] = "\x01\x4b\x78", + [0x1b89] = "\x02\x25\x3a", [0x1b8a] = "\x03\x27\x44", + [0x1b8b] = "\x01\x4b\x73", [0x1b8c] = "\x03\x27\x51", + [0x1b8d] = "\x01\x4b\x6e", [0x1b8e] = "\x03\x27\x48", + [0x1b8f] = "\x01\x4b\x7d", [0x1b90] = "\x02\x25\x44", + [0x1b91] = "\x01\x4b\x7e", [0x1b92] = "\x02\x25\x48", + [0x1b93] = "\x03\x27\x43", [0x1b94] = "\x02\x25\x46", + [0x1b95] = "\x02\x25\x4a", [0x1b96] = "\x01\x4b\x7b", + [0x1b97] = "\x02\x25\x3e", [0x1b98] = "\x02\x25\x32", + [0x1b99] = "\x04\x25\x36", [0x1b9a] = "\x02\x25\x40", + [0x1b9b] = "\x01\x4b\x72", [0x1b9c] = "\x02\x25\x45", + [0x1b9d] = "\x01\x4b\x6d", [0x1b9e] = "\x02\x25\x47", + [0x1b9f] = "\x03\x27\x4c", [0x1ba0] = "\x03\x27\x49", + [0x1ba1] = "\x03\x27\x4b", [0x1ba2] = "\x03\x27\x4a", + [0x1ba3] = "\x03\x27\x4d", [0x1bab] = "\x0f\x25\x44", + [0x1bae] = "\x01\x4f\x78", [0x1baf] = "\x01\x4f\x6c", + [0x1bb0] = "\x03\x2b\x2d", [0x1bb1] = "\x03\x2b\x2e", + [0x1bb2] = "\x02\x29\x22", [0x1bb3] = "\x02\x29\x2a", + [0x1bb4] = "\x03\x2b\x36", [0x1bb5] = "\x01\x4f\x6b", + [0x1bb6] = "\x01\x4f\x73", [0x1bb7] = "\x01\x50\x21", + [0x1bb8] = "\x03\x2b\x2c", [0x1bb9] = "\x02\x29\x30", + [0x1bba] = "\x02\x29\x2e", [0x1bbb] = "\x02\x29\x29", + [0x1bbc] = "\x04\x28\x38", [0x1bbd] = "\x04\x28\x3e", + [0x1bbe] = "\x03\x2b\x2b", [0x1bbf] = "\x01\x4f\x6d", + [0x1bc0] = "\x02\x29\x2f", [0x1bc1] = "\x02\x29\x25", + [0x1bc2] = "\x01\x4f\x7b", [0x1bc3] = "\x01\x4f\x72", + [0x1bc4] = "\x01\x4f\x7a", [0x1bc5] = "\x02\x28\x7e", + [0x1bc6] = "\x03\x2b\x32", [0x1bc7] = "\x02\x29\x2c", + [0x1bc8] = "\x03\x2b\x2f", [0x1bc9] = "\x02\x29\x23", + [0x1bca] = "\x01\x4f\x76", [0x1bcb] = "\x02\x29\x24", + [0x1bcc] = "\x03\x2b\x33", [0x1bcd] = "\x02\x28\x7d", + [0x1bce] = "\x01\x4f\x7d", [0x1bcf] = "\x01\x4f\x70", + [0x1bd0] = "\x01\x4f\x79", [0x1bd1] = "\x01\x4f\x6f", + [0x1bd2] = "\x03\x2b\x28", [0x1bd3] = "\x02\x29\x21", + [0x1bd4] = "\x02\x29\x26", [0x1bd5] = "\x03\x2b\x29", + [0x1bd6] = "\x02\x29\x2d", [0x1bd7] = "\x01\x4f\x77", + [0x1bd8] = "\x01\x4f\x74", [0x1bd9] = "\x02\x29\x28", + [0x1bda] = "\x01\x4f\x7c", [0x1bdb] = "\x02\x29\x2b", + [0x1bdc] = "\x02\x29\x27", [0x1bdd] = "\x01\x4f\x71", + [0x1bde] = "\x01\x4f\x7e", [0x1bdf] = "\x01\x4f\x75", + [0x1be0] = "\x01\x4f\x6e", [0x1be1] = "\x01\x4f\x6a", + [0x1be2] = "\x04\x28\x3f", [0x1be3] = "\x03\x2b\x35", + [0x1be4] = "\x0f\x29\x2d", [0x1be5] = "\x03\x2b\x34", + [0x1be7] = "\x03\x64\x4a", [0x1be9] = "\x04\x28\x3d", + [0x1bec] = "\x02\x29\x31", [0x1bee] = "\x01\x54\x3a", + [0x1bef] = "\x01\x54\x24", [0x1bf0] = "\x03\x2f\x48", + [0x1bf1] = "\x01\x54\x34", [0x1bf2] = "\x03\x2f\x4d", + [0x1bf3] = "\x01\x54\x39", [0x1bf4] = "\x02\x2d\x71", + [0x1bf5] = "\x02\x2d\x70", [0x1bf6] = "\x02\x2d\x75", + [0x1bf7] = "\x02\x2d\x76", [0x1bf8] = "\x01\x54\x27", + [0x1bf9] = "\x03\x2f\x44", [0x1bfa] = "\x01\x54\x30", + [0x1bfb] = "\x03\x2f\x58", [0x1bfc] = "\x03\x2f\x4c", + [0x1bfd] = "\x03\x2f\x56", [0x1bfe] = "\x01\x54\x3d", + [0x1bff] = "\x03\x2f\x46", [0x1c00] = "\x01\x54\x31", + [0x1c01] = "\x04\x2b\x62", [0x1c02] = "\x03\x2f\x4b", + [0x1c03] = "\x03\x2f\x49", [0x1c04] = "\x03\x2f\x47", + [0x1c05] = "\x02\x2d\x6a", [0x1c06] = "\x01\x54\x2a", + [0x1c07] = "\x02\x2d\x6b", [0x1c08] = "\x03\x2f\x4f", + [0x1c09] = "\x01\x54\x3f", [0x1c0a] = "\x04\x2b\x64", + [0x1c0b] = "\x01\x54\x36", [0x1c0c] = "\x01\x54\x21", + [0x1c0d] = "\x01\x54\x22", [0x1c0e] = "\x02\x2d\x7e", + [0x1c0f] = "\x01\x59\x24", [0x1c10] = "\x03\x2f\x53", + [0x1c11] = "\x01\x54\x2f", [0x1c12] = "\x01\x54\x2e", + [0x1c13] = "\x02\x2d\x6c", [0x1c14] = "\x01\x54\x32", + [0x1c15] = "\x02\x33\x5e", [0x1c16] = "\x01\x54\x29", + [0x1c17] = "\x02\x2d\x77", [0x1c18] = "\x01\x54\x38", + [0x1c19] = "\x01\x54\x37", [0x1c1a] = "\x01\x54\x2d", + [0x1c1b] = "\x02\x2d\x6f", [0x1c1c] = "\x02\x2d\x78", + [0x1c1d] = "\x03\x2f\x45", [0x1c1e] = "\x02\x2d\x69", + [0x1c1f] = "\x01\x54\x2c", [0x1c20] = "\x02\x2d\x79", + [0x1c21] = "\x01\x54\x35", [0x1c22] = "\x02\x2d\x6d", + [0x1c23] = "\x01\x54\x23", [0x1c24] = "\x03\x2f\x4e", + [0x1c25] = "\x01\x54\x26", [0x1c26] = "\x01\x54\x25", + [0x1c27] = "\x02\x2d\x7a", [0x1c28] = "\x01\x54\x33", + [0x1c29] = "\x01\x54\x28", [0x1c2a] = "\x01\x54\x3c", + [0x1c2b] = "\x01\x54\x3e", [0x1c2c] = "\x02\x2d\x74", + [0x1c2d] = "\x01\x54\x3b", [0x1c2e] = "\x03\x2f\x51", + [0x1c2f] = "\x02\x2d\x7c", [0x1c30] = "\x02\x2d\x6e", + [0x1c31] = "\x02\x2d\x7d", [0x1c32] = "\x03\x2f\x43", + [0x1c33] = "\x02\x2d\x72", [0x1c34] = "\x04\x2b\x61", + [0x1c35] = "\x02\x2d\x7b", [0x1c36] = "\x03\x2f\x50", + [0x1c37] = "\x02\x2d\x73", [0x1c38] = "\x03\x2f\x54", + [0x1c39] = "\x03\x2f\x55", [0x1c3c] = "\x01\x54\x2b", + [0x1c3f] = "\x03\x64\x4b", [0x1c40] = "\x02\x33\x66", + [0x1c41] = "\x02\x33\x5a", [0x1c42] = "\x03\x34\x3c", + [0x1c43] = "\x01\x58\x76", [0x1c44] = "\x03\x34\x3f", + [0x1c45] = "\x02\x33\x5f", [0x1c46] = "\x02\x33\x65", + [0x1c47] = "\x01\x58\x75", [0x1c48] = "\x02\x33\x58", + [0x1c49] = "\x01\x58\x79", [0x1c4a] = "\x02\x33\x5c", + [0x1c4b] = "\x02\x33\x55", [0x1c4c] = "\x01\x58\x77", + [0x1c4d] = "\x02\x33\x59", [0x1c4e] = "\x01\x58\x7c", + [0x1c4f] = "\x01\x59\x23", [0x1c50] = "\x03\x34\x44", + [0x1c51] = "\x02\x33\x6a", [0x1c52] = "\x03\x34\x41", + [0x1c53] = "\x02\x33\x54", [0x1c54] = "\x03\x34\x42", + [0x1c55] = "\x01\x58\x7d", [0x1c56] = "\x03\x2f\x57", + [0x1c57] = "\x02\x33\x69", [0x1c58] = "\x03\x34\x47", + [0x1c59] = "\x03\x34\x3d", [0x1c5a] = "\x01\x58\x78", + [0x1c5b] = "\x02\x33\x5b", [0x1c5c] = "\x01\x58\x74", + [0x1c5d] = "\x02\x33\x56", [0x1c5e] = "\x02\x33\x52", + [0x1c5f] = "\x02\x33\x60", [0x1c60] = "\x02\x33\x53", + [0x1c61] = "\x02\x33\x51", [0x1c62] = "\x02\x33\x5d", + [0x1c63] = "\x02\x33\x63", [0x1c64] = "\x02\x33\x64", + [0x1c65] = "\x01\x58\x7a", [0x1c66] = "\x03\x34\x40", + [0x1c67] = "\x04\x30\x47", [0x1c68] = "\x02\x3a\x3f", + [0x1c69] = "\x02\x33\x61", [0x1c6a] = "\x02\x33\x50", + [0x1c6b] = "\x02\x33\x62", [0x1c6c] = "\x03\x34\x4b", + [0x1c6d] = "\x01\x59\x26", [0x1c6e] = "\x02\x33\x67", + [0x1c6f] = "\x01\x59\x25", [0x1c70] = "\x02\x33\x4f", + [0x1c71] = "\x03\x34\x43", [0x1c72] = "\x02\x33\x57", + [0x1c73] = "\x02\x33\x68", [0x1c74] = "\x01\x59\x21", + [0x1c75] = "\x01\x58\x7e", [0x1c76] = "\x01\x58\x7b", + [0x1c77] = "\x01\x59\x22", [0x1c78] = "\x03\x34\x4c", + [0x1c79] = "\x03\x34\x4a", [0x1c7a] = "\x01\x58\x72", + [0x1c7b] = "\x03\x34\x45", [0x1c7c] = "\x03\x34\x46", + [0x1c7d] = "\x01\x58\x73", [0x1c80] = "\x01\x5e\x2e", + [0x1c81] = "\x03\x39\x75", [0x1c82] = "\x02\x3a\x42", + [0x1c83] = "\x02\x3a\x3b", [0x1c84] = "\x04\x36\x34", + [0x1c85] = "\x01\x5e\x2b", [0x1c86] = "\x04\x36\x33", + [0x1c87] = "\x02\x3a\x43", [0x1c88] = "\x03\x39\x71", + [0x1c89] = "\x03\x39\x72", [0x1c8a] = "\x04\x36\x36", + [0x1c8b] = "\x02\x3a\x39", [0x1c8c] = "\x02\x3a\x3c", + [0x1c8d] = "\x01\x5e\x2a", [0x1c8e] = "\x02\x3a\x3d", + [0x1c8f] = "\x03\x39\x6f", [0x1c90] = "\x04\x36\x31", + [0x1c91] = "\x01\x5e\x2d", [0x1c92] = "\x02\x3a\x41", + [0x1c93] = "\x04\x36\x3c", [0x1c94] = "\x02\x3a\x37", + [0x1c95] = "\x02\x3a\x36", [0x1c96] = "\x01\x5e\x2f", + [0x1c97] = "\x03\x39\x70", [0x1c98] = "\x01\x5e\x30", + [0x1c99] = "\x01\x5e\x2c", [0x1c9a] = "\x01\x5e\x31", + [0x1c9b] = "\x02\x3a\x35", [0x1c9c] = "\x02\x3a\x40", + [0x1c9d] = "\x02\x3a\x3e", [0x1c9e] = "\x02\x3a\x38", + [0x1c9f] = "\x04\x36\x39", [0x1ca0] = "\x04\x36\x30", + [0x1ca1] = "\x04\x36\x3a", [0x1ca2] = "\x01\x5e\x29", + [0x1ca3] = "\x02\x3a\x3a", [0x1ca6] = "\x03\x64\x4d", + [0x1caa] = "\x03\x40\x39", [0x1cab] = "\x03\x40\x3c", + [0x1cac] = "\x01\x63\x31", [0x1cad] = "\x01\x63\x2b", + [0x1cae] = "\x02\x41\x5c", [0x1caf] = "\x01\x63\x34", + [0x1cb0] = "\x02\x41\x62", [0x1cb1] = "\x02\x41\x65", + [0x1cb2] = "\x01\x63\x2d", [0x1cb3] = "\x01\x63\x2e", + [0x1cb4] = "\x02\x41\x5f", [0x1cb5] = "\x01\x63\x2c", + [0x1cb6] = "\x02\x41\x68", [0x1cb7] = "\x01\x63\x32", + [0x1cb8] = "\x02\x41\x69", [0x1cb9] = "\x03\x40\x3a", + [0x1cba] = "\x02\x41\x64", [0x1cbb] = "\x01\x63\x33", + [0x1cbc] = "\x03\x40\x37", [0x1cbd] = "\x02\x41\x59", + [0x1cbe] = "\x01\x63\x30", [0x1cbf] = "\x02\x41\x5a", + [0x1cc0] = "\x04\x3c\x29", [0x1cc1] = "\x02\x41\x63", + [0x1cc2] = "\x02\x41\x61", [0x1cc3] = "\x03\x40\x3d", + [0x1cc4] = "\x02\x41\x5d", [0x1cc5] = "\x01\x63\x2f", + [0x1cc6] = "\x02\x41\x5b", [0x1cc7] = "\x01\x63\x35", + [0x1cc8] = "\x02\x41\x60", [0x1cc9] = "\x02\x41\x67", + [0x1cca] = "\x02\x41\x5e", [0x1ccb] = "\x02\x41\x66", + [0x1ccc] = "\x03\x40\x36", [0x1ccd] = "\x03\x40\x3e", + [0x1cce] = "\x01\x67\x7c", [0x1ccf] = "\x01\x67\x79", + [0x1cd0] = "\x03\x45\x6b", [0x1cd1] = "\x01\x67\x7a", + [0x1cd2] = "\x04\x42\x2d", [0x1cd3] = "\x02\x49\x21", + [0x1cd4] = "\x02\x48\x77", [0x1cd5] = "\x01\x67\x78", + [0x1cd6] = "\x01\x67\x75", [0x1cd7] = "\x02\x48\x78", + [0x1cd8] = "\x03\x45\x6e", [0x1cd9] = "\x03\x45\x6c", + [0x1cda] = "\x01\x67\x77", [0x1cdb] = "\x02\x48\x7b", + [0x1cdc] = "\x03\x45\x6d", [0x1cdd] = "\x02\x48\x7d", + [0x1cde] = "\x03\x45\x76", [0x1cdf] = "\x04\x42\x35", + [0x1ce0] = "\x02\x49\x26", [0x1ce1] = "\x03\x45\x70", + [0x1ce2] = "\x03\x45\x75", [0x1ce3] = "\x02\x49\x25", + [0x1ce4] = "\x02\x48\x7e", [0x1ce5] = "\x01\x67\x74", + [0x1ce6] = "\x02\x48\x76", [0x1ce7] = "\x01\x67\x72", + [0x1ce8] = "\x02\x48\x79", [0x1ce9] = "\x01\x67\x7d", + [0x1cea] = "\x02\x48\x7c", [0x1ceb] = "\x03\x45\x71", + [0x1cec] = "\x02\x49\x22", [0x1ced] = "\x01\x67\x76", + [0x1cee] = "\x01\x67\x73", [0x1cef] = "\x02\x49\x24", + [0x1cf0] = "\x02\x49\x23", [0x1cf1] = "\x01\x67\x7b", + [0x1cf3] = "\x02\x48\x7a", [0x1cf4] = "\x03\x45\x74", + [0x1cf5] = "\x01\x6c\x23", [0x1cf6] = "\x02\x4f\x54", + [0x1cf7] = "\x03\x4b\x29", [0x1cf8] = "\x02\x4f\x51", + [0x1cf9] = "\x01\x6c\x24", [0x1cfa] = "\x04\x48\x79", + [0x1cfb] = "\x01\x6c\x22", [0x1cfc] = "\x03\x4b\x2b", + [0x1cfd] = "\x02\x4f\x58", [0x1cfe] = "\x02\x4f\x55", + [0x1cff] = "\x02\x4f\x4e", [0x1d00] = "\x01\x6c\x21", + [0x1d01] = "\x03\x4b\x2d", [0x1d02] = "\x01\x6c\x25", + [0x1d03] = "\x02\x4f\x4f", [0x1d04] = "\x01\x6b\x7e", + [0x1d05] = "\x01\x6c\x28", [0x1d06] = "\x02\x4f\x52", + [0x1d07] = "\x02\x4f\x53", [0x1d08] = "\x01\x6c\x26", + [0x1d09] = "\x01\x6c\x27", [0x1d0a] = "\x02\x4f\x59", + [0x1d0b] = "\x02\x4f\x56", [0x1d0c] = "\x02\x4f\x57", + [0x1d0d] = "\x03\x4b\x2c", [0x1d0e] = "\x03\x4b\x27", + [0x1d0f] = "\x03\x64\x4e", [0x1d10] = "\x01\x70\x33", + [0x1d11] = "\x02\x56\x43", [0x1d12] = "\x01\x70\x30", + [0x1d13] = "\x02\x56\x40", [0x1d14] = "\x01\x70\x32", + [0x1d15] = "\x01\x70\x34", [0x1d16] = "\x03\x50\x31", + [0x1d17] = "\x02\x56\x41", [0x1d18] = "\x01\x70\x31", + [0x1d19] = "\x04\x4f\x5a", [0x1d1a] = "\x02\x56\x42", + [0x1d1b] = "\x03\x50\x35", [0x1d1c] = "\x02\x56\x3f", + [0x1d1d] = "\x03\x50\x30", [0x1d1e] = "\x03\x50\x34", + [0x1d1f] = "\x01\x73\x41", [0x1d20] = "\x02\x5c\x49", + [0x1d21] = "\x01\x73\x42", [0x1d22] = "\x02\x5c\x47", + [0x1d23] = "\x04\x55\x65", [0x1d24] = "\x02\x5c\x48", + [0x1d25] = "\x02\x5c\x46", [0x1d26] = "\x02\x5c\x45", + [0x1d27] = "\x03\x54\x41", [0x1d28] = "\x03\x54\x40", + [0x1d29] = "\x02\x5c\x4a", [0x1d2a] = "\x01\x73\x40", + [0x1d2b] = "\x03\x50\x33", [0x1d2c] = "\x04\x55\x69", + [0x1d2d] = "\x02\x61\x44", [0x1d2e] = "\x02\x61\x45", + [0x1d2f] = "\x03\x57\x52", [0x1d30] = "\x02\x4f\x50", + [0x1d31] = "\x02\x61\x43", [0x1d32] = "\x01\x73\x43", + [0x1d33] = "\x01\x78\x2b", [0x1d34] = "\x02\x65\x37", + [0x1d35] = "\x02\x65\x38", [0x1d36] = "\x03\x5c\x32", + [0x1d37] = "\x01\x7a\x62", [0x1d38] = "\x01\x7a\x63", + [0x1d39] = "\x02\x6b\x4f", [0x1d3a] = "\x02\x6b\x4e", + [0x1d3b] = "\x01\x7b\x58", [0x1d3c] = "\x01\x7b\x57", + [0x1d3d] = "\x02\x6e\x7d", [0x1d3e] = "\x03\x60\x6f", + [0x1d3f] = "\x01\x44\x2a", [0x1d40] = "\x01\x44\x42", + [0x1d41] = "\x01\x44\x78", [0x1d42] = "\x04\x21\x3d", + [0x1d43] = "\x01\x44\x77", [0x1d44] = "\x01\x45\x73", + [0x1d45] = "\x01\x45\x72", [0x1d46] = "\x01\x47\x3e", + [0x1d47] = "\x01\x47\x3d", [0x1d48] = "\x01\x47\x3f", + [0x1d49] = "\x01\x47\x3c", [0x1d4a] = "\x03\x22\x78", + [0x1d4b] = "\x01\x49\x2c", [0x1d4c] = "\x01\x49\x2b", + [0x1d4d] = "\x01\x49\x2d", [0x1d4e] = "\x03\x24\x54", + [0x1d4f] = "\x04\x23\x3b", [0x1d50] = "\x03\x24\x53", + [0x1d51] = "\x03\x24\x51", [0x1d52] = "\x01\x4c\x23", + [0x1d53] = "\x04\x25\x3f", [0x1d54] = "\x01\x4c\x22", + [0x1d55] = "\x01\x4c\x24", [0x1d56] = "\x03\x27\x52", + [0x1d57] = "\x01\x50\x22", [0x1d58] = "\x04\x28\x40", + [0x1d59] = "\x01\x22\x79", [0x1d5a] = "\x02\x2e\x21", + [0x1d5b] = "\x01\x22\x7a", [0x1d5c] = "\x01\x59\x27", + [0x1d5d] = "\x01\x22\x7c", [0x1d5e] = "\x01\x22\x7b", + [0x1d5f] = "\x02\x3a\x44", [0x1d60] = "\x03\x39\x76", + [0x1d61] = "\x01\x22\x7d", [0x1d62] = "\x01\x67\x7e", + [0x1d63] = "\x01\x22\x7e", [0x1d64] = "\x03\x5e\x25", + [0x1d65] = "\x01\x44\x2b", [0x1d66] = "\x03\x21\x34", + [0x1d67] = "\x01\x44\x79", [0x1d68] = "\x01\x47\x40", + [0x1d69] = "\x01\x4c\x25", [0x1d6a] = "\x03\x2b\x37", + [0x1d6b] = "\x01\x44\x2c", [0x1d6c] = "\x01\x44\x7c", + [0x1d6d] = "\x01\x44\x7a", [0x1d6e] = "\x01\x44\x7b", + [0x1d71] = "\x01\x47\x41", [0x1d72] = "\x03\x22\x7a", + [0x1d73] = "\x04\x22\x34", [0x1d75] = "\x01\x49\x2e", + [0x1d76] = "\x01\x4c\x27", [0x1d77] = "\x01\x4c\x26", + [0x1d78] = "\x01\x4c\x28", [0x1d79] = "\x03\x2e\x7b", + [0x1d7c] = "\x01\x54\x40", [0x1d7e] = "\x03\x40\x3f", + [0x1d7f] = "\x03\x64\x53", [0x1d80] = "\x01\x70\x35", + [0x1d82] = "\x03\x21\x27", [0x1d83] = "\x04\x21\x3e", + [0x1d84] = "\x03\x21\x4d", [0x1d85] = "\x03\x21\x48", + [0x1d86] = "\x03\x21\x4e", [0x1d87] = "\x02\x21\x2e", + [0x1d88] = "\x04\x21\x52", [0x1d89] = "\x01\x45\x74", + [0x1d8a] = "\x01\x45\x75", [0x1d8b] = "\x03\x21\x78", + [0x1d8c] = "\x03\x21\x79", [0x1d8d] = "\x01\x47\x42", + [0x1d8e] = "\x04\x22\x36", [0x1d8f] = "\x02\x23\x2c", + [0x1d90] = "\x03\x27\x55", [0x1d91] = "\x01\x50\x24", + [0x1d92] = "\x01\x50\x23", [0x1d93] = "\x02\x2e\x23", + [0x1d94] = "\x02\x2e\x22", [0x1d95] = "\x01\x59\x28", + [0x1d96] = "\x03\x21\x28", [0x1d97] = "\x01\x44\x7d", + [0x1d98] = "\x02\x21\x35", [0x1d99] = "\x03\x21\x7a", + [0x1d9d] = "\x03\x24\x57", [0x1d9e] = "\x02\x25\x4d", + [0x1d9f] = "\x03\x2b\x39", [0x1da0] = "\x01\x50\x25", + [0x1da1] = "\x03\x2f\x5b", [0x1da2] = "\x01\x54\x43", + [0x1da3] = "\x03\x2f\x59", [0x1da4] = "\x01\x54\x41", + [0x1da5] = "\x01\x54\x42", [0x1da6] = "\x03\x2f\x5a", + [0x1da8] = "\x03\x34\x4d", [0x1da9] = "\x0f\x46\x5c", + [0x1daa] = "\x01\x70\x36", [0x1dab] = "\x01\x27\x2f", + [0x1dac] = "\x01\x45\x76", [0x1dad] = "\x04\x21\x5e", + [0x1db0] = "\x01\x47\x43", [0x1db1] = "\x02\x21\x7b", + [0x1db2] = "\x03\x22\x7e", [0x1db3] = "\x03\x22\x7d", + [0x1db4] = "\x03\x22\x7c", [0x1db5] = "\x03\x24\x59", + [0x1db6] = "\x01\x49\x2f", [0x1db7] = "\x01\x49\x30", + [0x1db8] = "\x03\x24\x5a", [0x1db9] = "\x02\x23\x2d", + [0x1dba] = "\x04\x23\x3d", [0x1dbc] = "\x02\x25\x4e", + [0x1dbd] = "\x01\x4c\x29", [0x1dbe] = "\x02\x25\x4f", + [0x1dbf] = "\x04\x25\x40", [0x1dc0] = "\x04\x25\x43", + [0x1dc1] = "\x03\x2b\x3b", [0x1dc2] = "\x03\x2b\x3d", + [0x1dc3] = "\x03\x2b\x3e", [0x1dc4] = "\x02\x2e\x25", + [0x1dc5] = "\x02\x2e\x26", [0x1dc6] = "\x01\x54\x46", + [0x1dc7] = "\x03\x2f\x5e", [0x1dc8] = "\x02\x2e\x27", + [0x1dc9] = "\x03\x2f\x5f", [0x1dca] = "\x02\x2e\x24", + [0x1dcb] = "\x01\x54\x47", [0x1dcc] = "\x01\x54\x45", + [0x1dcd] = "\x01\x54\x44", [0x1dce] = "\x02\x2e\x28", + [0x1dcf] = "\x03\x34\x4f", [0x1dd0] = "\x02\x33\x6b", + [0x1dd1] = "\x03\x34\x4e", [0x1dd2] = "\x03\x39\x7d", + [0x1dd3] = "\x03\x39\x7a", [0x1dd4] = "\x02\x3a\x45", + [0x1dd5] = "\x04\x36\x3f", [0x1dd6] = "\x03\x39\x7e", + [0x1dd7] = "\x02\x41\x6a", [0x1dd8] = "\x02\x49\x27", + [0x1dd9] = "\x03\x4b\x2f", [0x1dda] = "\x03\x4b\x2e", + [0x1ddb] = "\x03\x4b\x30", [0x1ddc] = "\x01\x6c\x29", + [0x1ddd] = "\x01\x70\x37", [0x1dde] = "\x02\x56\x44", + [0x1ddf] = "\x03\x54\x42", [0x1de0] = "\x01\x44\x2d", + [0x1de1] = "\x01\x44\x3b", [0x1de2] = "\x03\x21\x2f", + [0x1de3] = "\x03\x21\x35", [0x1de4] = "\x03\x21\x51", + [0x1de5] = "\x03\x21\x7b", [0x1de8] = "\x03\x23\x22", + [0x1dea] = "\x0f\x22\x59", [0x1dec] = "\x03\x24\x5b", + [0x1ded] = "\x03\x27\x59", [0x1dee] = "\x04\x25\x45", + [0x1df0] = "\x01\x59\x29", [0x1df1] = "\x01\x5e\x33", + [0x1df2] = "\x06\x46\x65", [0x1df3] = "\x01\x68\x21", + [0x1df4] = "\x03\x45\x7a", [0x1df5] = "\x02\x21\x23", + [0x1df6] = "\x01\x44\x7e", [0x1df7] = "\x04\x21\x60", + [0x1df8] = "\x01\x45\x79", [0x1df9] = "\x01\x45\x77", + [0x1dfa] = "\x01\x45\x78", [0x1dfd] = "\x01\x4c\x2a", + [0x1dfe] = "\x03\x27\x5a", [0x1e00] = "\x01\x44\x2e", + [0x1e01] = "\x01\x44\x2f", [0x1e02] = "\x04\x21\x2a", + [0x1e03] = "\x01\x44\x43", [0x1e04] = "\x03\x21\x36", + [0x1e05] = "\x03\x21\x52", [0x1e06] = "\x01\x45\x21", + [0x1e07] = "\x01\x45\x22", [0x1e08] = "\x01\x45\x23", + [0x1e09] = "\x02\x21\x4c", [0x1e0a] = "\x01\x45\x7a", + [0x1e0b] = "\x03\x21\x7d", [0x1e0c] = "\x02\x21\x4b", + [0x1e0e] = "\x01\x47\x47", [0x1e0f] = "\x03\x23\x25", + [0x1e10] = "\x02\x21\x7d", [0x1e11] = "\x01\x47\x45", + [0x1e12] = "\x01\x47\x46", [0x1e13] = "\x02\x21\x7c", + [0x1e14] = "\x03\x23\x24", [0x1e15] = "\x03\x23\x26", + [0x1e16] = "\x01\x47\x48", [0x1e17] = "\x01\x47\x44", + [0x1e18] = "\x03\x23\x27", [0x1e1c] = "\x02\x23\x2e", + [0x1e1d] = "\x01\x4f\x4f", [0x1e1e] = "\x02\x23\x2f", + [0x1e1f] = "\x03\x24\x5f", [0x1e20] = "\x03\x24\x61", + [0x1e21] = "\x02\x23\x30", [0x1e22] = "\x04\x23\x40", + [0x1e23] = "\x03\x24\x5c", [0x1e24] = "\x01\x49\x32", + [0x1e25] = "\x01\x49\x31", [0x1e26] = "\x03\x24\x5e", + [0x1e27] = "\x03\x24\x5d", [0x1e28] = "\x01\x49\x35", + [0x1e29] = "\x01\x49\x33", [0x1e2a] = "\x01\x49\x34", + [0x1e2b] = "\x03\x24\x60", [0x1e2e] = "\x01\x4c\x30", + [0x1e2f] = "\x03\x27\x5b", [0x1e30] = "\x01\x4c\x2f", + [0x1e31] = "\x02\x25\x54", [0x1e32] = "\x02\x25\x51", + [0x1e33] = "\x02\x25\x52", [0x1e34] = "\x03\x27\x5e", + [0x1e35] = "\x02\x25\x50", [0x1e36] = "\x01\x4c\x31", + [0x1e37] = "\x01\x4c\x2d", [0x1e38] = "\x01\x4c\x2c", + [0x1e39] = "\x03\x27\x5f", [0x1e3a] = "\x01\x4c\x2e", + [0x1e3b] = "\x01\x4c\x2b", [0x1e3c] = "\x03\x27\x5d", + [0x1e3d] = "\x04\x25\x4e", [0x1e3e] = "\x03\x64\x4f", + [0x1e41] = "\x01\x4c\x32", [0x1e43] = "\x01\x50\x27", + [0x1e44] = "\x02\x29\x32", [0x1e45] = "\x03\x2b\x3f", + [0x1e46] = "\x02\x25\x53", [0x1e47] = "\x01\x50\x2c", + [0x1e48] = "\x03\x2b\x40", [0x1e49] = "\x02\x29\x33", + [0x1e4a] = "\x01\x50\x28", [0x1e4b] = "\x01\x50\x2b", + [0x1e4c] = "\x01\x50\x2a", [0x1e4d] = "\x01\x50\x29", + [0x1e4e] = "\x01\x50\x26", [0x1e4f] = "\x03\x2b\x43", + [0x1e52] = "\x02\x2e\x2b", [0x1e53] = "\x03\x2f\x68", + [0x1e54] = "\x01\x54\x4a", [0x1e55] = "\x02\x2e\x2e", + [0x1e56] = "\x01\x54\x48", [0x1e57] = "\x03\x2f\x65", + [0x1e58] = "\x04\x2b\x6e", [0x1e59] = "\x03\x2f\x62", + [0x1e5a] = "\x02\x2e\x2a", [0x1e5b] = "\x01\x54\x4b", + [0x1e5c] = "\x01\x54\x49", [0x1e5d] = "\x01\x54\x4c", + [0x1e5e] = "\x02\x2e\x2c", [0x1e5f] = "\x02\x2e\x2d", + [0x1e60] = "\x03\x2f\x60", [0x1e61] = "\x02\x2e\x29", + [0x1e62] = "\x02\x2e\x2f", [0x1e63] = "\x03\x2f\x66", + [0x1e64] = "\x03\x2f\x61", [0x1e65] = "\x03\x2f\x63", + [0x1e66] = "\x0f\x2e\x2d", [0x1e67] = "\x03\x2f\x64", + [0x1e68] = "\x03\x34\x50", [0x1e69] = "\x01\x5e\x37", + [0x1e6a] = "\x01\x59\x2a", [0x1e6b] = "\x02\x33\x6c", + [0x1e6c] = "\x02\x33\x6e", [0x1e6d] = "\x02\x33\x6d", + [0x1e6e] = "\x02\x33\x6f", [0x1e6f] = "\x01\x59\x2b", + [0x1e70] = "\x03\x3a\x23", [0x1e72] = "\x01\x5e\x34", + [0x1e73] = "\x03\x3a\x21", [0x1e74] = "\x01\x5e\x35", + [0x1e75] = "\x01\x5e\x36", [0x1e76] = "\x03\x34\x51", + [0x1e77] = "\x01\x63\x37", [0x1e78] = "\x02\x41\x6c", + [0x1e79] = "\x03\x40\x41", [0x1e7a] = "\x02\x41\x6b", + [0x1e7b] = "\x02\x41\x6d", [0x1e7c] = "\x02\x41\x6e", + [0x1e7d] = "\x01\x63\x38", [0x1e7e] = "\x03\x40\x40", + [0x1e7f] = "\x01\x63\x36", [0x1e80] = "\x02\x49\x28", + [0x1e81] = "\x02\x49\x29", [0x1e82] = "\x01\x68\x23", + [0x1e83] = "\x01\x68\x22", [0x1e84] = "\x02\x4c\x61", + [0x1e85] = "\x04\x49\x25", [0x1e86] = "\x03\x4b\x31", + [0x1e87] = "\x01\x6c\x2a", [0x1e88] = "\x01\x6c\x2b", + [0x1e89] = "\x01\x6c\x2c", [0x1e8a] = "\x01\x6c\x2e", + [0x1e8b] = "\x02\x4f\x5a", [0x1e8c] = "\x02\x4f\x5b", + [0x1e8d] = "\x01\x6c\x2d", [0x1e8e] = "\x03\x4b\x32", + [0x1e90] = "\x03\x50\x36", [0x1e91] = "\x01\x70\x38", + [0x1e92] = "\x04\x4f\x64", [0x1e93] = "\x01\x70\x39", + [0x1e94] = "\x03\x50\x37", [0x1e95] = "\x04\x55\x6d", + [0x1e96] = "\x02\x65\x39", [0x1e97] = "\x02\x6b\x51", + [0x1e98] = "\x02\x6b\x50", [0x1e99] = "\x02\x6e\x7e", + [0x1e9a] = "\x03\x60\x2c", [0x1e9b] = "\x01\x44\x30", + [0x1e9c] = "\x03\x21\x37", [0x1e9d] = "\x03\x21\x54", + [0x1e9e] = "\x03\x21\x53", [0x1e9f] = "\x01\x45\x7c", + [0x1ea0] = "\x01\x45\x7b", [0x1ea3] = "\x01\x47\x49", + [0x1ea4] = "\x04\x22\x42", [0x1ea5] = "\x04\x22\x3f", + [0x1ea6] = "\x02\x21\x7e", [0x1ea7] = "\x04\x22\x41", + [0x1ea8] = "\x03\x23\x28", [0x1ea9] = "\x01\x49\x37", + [0x1eaa] = "\x01\x49\x38", [0x1eab] = "\x01\x49\x36", + [0x1eac] = "\x01\x49\x39", [0x1ead] = "\x02\x23\x31", + [0x1eae] = "\x02\x23\x32", [0x1eaf] = "\x04\x23\x46", + [0x1eb0] = "\x04\x23\x47", [0x1eb1] = "\x04\x23\x48", + [0x1eb3] = "\x03\x24\x63", [0x1eb4] = "\x03\x24\x62", + [0x1eb5] = "\x03\x27\x61", [0x1eb6] = "\x05\x25\x3a", + [0x1eb7] = "\x05\x25\x37", [0x1eb8] = "\x05\x25\x38", + [0x1eb9] = "\x03\x27\x60", [0x1eba] = "\x05\x25\x3b", + [0x1ebb] = "\x01\x4c\x34", [0x1ebc] = "\x02\x25\x55", + [0x1ebd] = "\x04\x25\x50", [0x1ebe] = "\x01\x4c\x33", + [0x1ebf] = "\x03\x27\x62", [0x1ec0] = "\x02\x29\x34", + [0x1ec1] = "\x01\x50\x30", [0x1ec2] = "\x02\x29\x35", + [0x1ec3] = "\x01\x50\x2f", [0x1ec4] = "\x03\x2b\x48", + [0x1ec5] = "\x03\x2b\x46", [0x1ec6] = "\x04\x28\x49", + [0x1ec7] = "\x01\x50\x2d", [0x1ec8] = "\x04\x28\x4b", + [0x1ec9] = "\x01\x50\x2e", [0x1eca] = "\x03\x2b\x47", + [0x1ecc] = "\x03\x2f\x6f", [0x1ecd] = "\x02\x2e\x30", + [0x1ece] = "\x03\x2f\x6c", [0x1ecf] = "\x03\x2f\x6a", + [0x1ed0] = "\x03\x2f\x6d", [0x1ed1] = "\x03\x2f\x6e", + [0x1ed2] = "\x01\x59\x2c", [0x1ed3] = "\x02\x33\x71", + [0x1ed4] = "\x03\x34\x52", [0x1ed5] = "\x01\x59\x2f", + [0x1ed6] = "\x02\x33\x70", [0x1ed7] = "\x01\x5b\x2b", + [0x1ed8] = "\x01\x59\x2e", [0x1ed9] = "\x01\x59\x2d", + [0x1edb] = "\x01\x5e\x3a", [0x1edc] = "\x05\x36\x6a", + [0x1edd] = "\x01\x5e\x39", [0x1ede] = "\x01\x5e\x38", + [0x1edf] = "\x01\x63\x39", [0x1ee0] = "\x03\x40\x45", + [0x1ee1] = "\x03\x40\x44", [0x1ee2] = "\x01\x63\x3c", + [0x1ee3] = "\x01\x63\x3d", [0x1ee4] = "\x01\x63\x3b", + [0x1ee5] = "\x04\x3c\x3c", [0x1ee6] = "\x01\x63\x3a", + [0x1ee7] = "\x03\x40\x46", [0x1ee8] = "\x05\x44\x67", + [0x1ee9] = "\x02\x49\x2a", [0x1eea] = "\x03\x46\x21", + [0x1eeb] = "\x02\x49\x2b", [0x1eec] = "\x05\x44\x63", + [0x1eed] = "\x03\x45\x7e", [0x1eee] = "\x03\x4b\x33", + [0x1eef] = "\x02\x4f\x5d", [0x1ef0] = "\x01\x6c\x2f", + [0x1ef1] = "\x02\x4f\x5c", [0x1ef2] = "\x03\x4d\x2c", + [0x1ef3] = "\x01\x70\x3a", [0x1ef4] = "\x02\x5c\x4b", + [0x1ef5] = "\x01\x73\x44", [0x1ef6] = "\x05\x53\x62", + [0x1ef7] = "\x02\x65\x3a", [0x1ef8] = "\x01\x79\x61", + [0x1ef9] = "\x01\x27\x34", [0x1efa] = "\x01\x44\x44", + [0x1efb] = "\x01\x45\x24", [0x1efc] = "\x02\x21\x36", + [0x1efd] = "\x03\x21\x55", [0x1efe] = "\x01\x45\x25", + [0x1eff] = "\x01\x45\x26", [0x1f00] = "\x03\x21\x56", + [0x1f01] = "\x0f\x21\x30", [0x1f03] = "\x03\x22\x23", + [0x1f04] = "\x03\x22\x22", [0x1f05] = "\x01\x45\x7d", + [0x1f06] = "\x01\x45\x7e", [0x1f07] = "\x03\x22\x24", + [0x1f08] = "\x01\x47\x4a", [0x1f09] = "\x02\x23\x33", + [0x1f0a] = "\x02\x25\x56", [0x1f0b] = "\x02\x25\x57", + [0x1f0c] = "\x04\x25\x51", [0x1f0d] = "\x01\x50\x31", + [0x1f0e] = "\x02\x2e\x31", [0x1f0f] = "\x01\x59\x31", + [0x1f10] = "\x01\x59\x30", [0x1f11] = "\x02\x3a\x47", + [0x1f12] = "\x02\x3a\x46", [0x1f13] = "\x06\x50\x74", + [0x1f14] = "\x03\x50\x38", [0x1f15] = "\x01\x44\x31", + [0x1f16] = "\x01\x45\x27", [0x1f17] = "\x01\x46\x21", + [0x1f18] = "\x04\x30\x5e", [0x1f19] = "\x01\x59\x32", + [0x1f1a] = "\x02\x21\x24", [0x1f1b] = "\x04\x21\x65", + [0x1f1c] = "\x02\x21\x4d", [0x1f1d] = "\x01\x46\x22", + [0x1f1e] = "\x03\x22\x26", [0x1f1f] = "\x02\x22\x22", + [0x1f20] = "\x01\x47\x4c", [0x1f21] = "\x01\x47\x4b", + [0x1f22] = "\x02\x22\x21", [0x1f23] = "\x01\x49\x3a", + [0x1f24] = "\x03\x64\x50", [0x1f25] = "\x03\x24\x65", + [0x1f27] = "\x03\x2b\x49", [0x1f28] = "\x04\x28\x4e", + [0x1f29] = "\x04\x28\x50", [0x1f2a] = "\x01\x54\x4d", + [0x1f2b] = "\x04\x2b\x78", [0x1f2c] = "\x04\x30\x5f", + [0x1f2d] = "\x02\x33\x72", [0x1f2f] = "\x01\x63\x3e", + [0x1f30] = "\x02\x49\x2c", [0x1f31] = "\x01\x68\x24", + [0x1f32] = "\x03\x46\x23", [0x1f33] = "\x03\x4b\x34", + [0x1f34] = "\x02\x56\x45", [0x1f35] = "\x03\x54\x44", + [0x1f36] = "\x03\x5c\x34", [0x1f37] = "\x02\x68\x6a", + [0x1f38] = "\x03\x21\x29", [0x1f39] = "\x01\x45\x28", + [0x1f3a] = "\x03\x21\x57", [0x1f3b] = "\x03\x24\x66", + [0x1f3c] = "\x02\x25\x58", [0x1f3d] = "\x02\x29\x36", + [0x1f3e] = "\x01\x59\x35", [0x1f3f] = "\x01\x59\x33", + [0x1f40] = "\x01\x59\x34", [0x1f41] = "\x01\x44\x32", + [0x1f42] = "\x04\x21\x30", [0x1f43] = "\x01\x44\x45", + [0x1f44] = "\x01\x24\x3f", /* [0x1f44] = "\x03\x21\x38", */ + [0x1f45] = "\x01\x45\x2b", [0x1f46] = "\x03\x21\x59", + [0x1f47] = "\x01\x45\x2a", [0x1f48] = "\x01\x45\x29", + [0x1f49] = "\x01\x46\x25", [0x1f4a] = "\x01\x46\x24", + [0x1f4b] = "\x03\x23\x2a", [0x1f4c] = "\x02\x21\x4e", + [0x1f4d] = "\x02\x22\x23", [0x1f4e] = "\x0f\x22\x2c", + [0x1f4f] = "\x03\x23\x2b", [0x1f50] = "\x03\x23\x2d", + [0x1f51] = "\x01\x4c\x38", [0x1f52] = "\x01\x4c\x35", + [0x1f53] = "\x01\x4c\x37", [0x1f54] = "\x01\x4c\x36", + [0x1f55] = "\x03\x27\x63", [0x1f57] = "\x01\x50\x32", + [0x1f58] = "\x03\x2b\x4a", [0x1f59] = "\x04\x30\x60", + [0x1f5a] = "\x01\x5e\x3b", [0x1f5b] = "\x04\x66\x30", + [0x1f5c] = "\x01\x44\x33", [0x1f5d] = "\x03\x21\x5a", + [0x1f5e] = "\x01\x45\x2c", [0x1f5f] = "\x03\x22\x27", + [0x1f60] = "\x01\x46\x27", [0x1f61] = "\x01\x46\x26", + [0x1f63] = "\x02\x23\x34", [0x1f64] = "\x04\x23\x4d", + [0x1f65] = "\x03\x64\x51", [0x1f66] = "\x01\x4c\x39", + [0x1f67] = "\x03\x2a\x5c", [0x1f68] = "\x04\x30\x64", + [0x1f69] = "\x03\x21\x2a", [0x1f6a] = "\x04\x21\x31", + [0x1f6c] = "\x02\x21\x37", [0x1f6d] = "\x03\x22\x28", + [0x1f6e] = "\x01\x46\x29", [0x1f6f] = "\x01\x46\x28", + [0x1f70] = "\x01\x47\x4d", [0x1f71] = "\x01\x47\x4e", + [0x1f72] = "\x02\x23\x35", [0x1f73] = "\x01\x49\x3b", + [0x1f74] = "\x03\x24\x67", [0x1f75] = "\x01\x49\x3c", + [0x1f76] = "\x03\x27\x65", [0x1f77] = "\x01\x4c\x3a", + [0x1f78] = "\x01\x4c\x3b", [0x1f79] = "\x01\x4c\x3c", + [0x1f7a] = "\x03\x27\x66", [0x1f7b] = "\x01\x50\x33", + [0x1f7c] = "\x02\x29\x37", [0x1f7d] = "\x03\x2b\x4b", + [0x1f7e] = "\x04\x30\x65", [0x1f7f] = "\x01\x54\x4e", + [0x1f80] = "\x03\x40\x47", [0x1f82] = "\x02\x21\x25", + [0x1f83] = "\x04\x21\x44", [0x1f84] = "\x01\x45\x2d", + [0x1f86] = "\x03\x21\x5b", [0x1f87] = "\x04\x21\x67", + [0x1f88] = "\x04\x21\x66", [0x1f89] = "\x03\x22\x29", + [0x1f8a] = "\x02\x22\x24", [0x1f8b] = "\x03\x23\x2f", + [0x1f8e] = "\x02\x23\x36", [0x1f8f] = "\x02\x23\x37", + [0x1f92] = "\x02\x25\x59", [0x1f93] = "\x03\x27\x67", + [0x1f94] = "\x02\x25\x5a", [0x1f96] = "\x02\x29\x39", + [0x1f97] = "\x02\x29\x38", [0x1f98] = "\x02\x29\x3b", + [0x1f99] = "\x02\x29\x3a", [0x1f9a] = "\x01\x50\x34", + [0x1f9b] = "\x03\x64\x52", [0x1f9c] = "\x02\x33\x73", + [0x1f9d] = "\x01\x54\x50", [0x1f9e] = "\x02\x2e\x32", + [0x1f9f] = "\x01\x54\x4f", [0x1fa0] = "\x03\x34\x54", + [0x1fa1] = "\x04\x30\x68", [0x1fa4] = "\x02\x3a\x48", + [0x1fa5] = "\x01\x5e\x3c", [0x1fa6] = "\x03\x3a\x28", + [0x1fa7] = "\x02\x3a\x49", [0x1fa8] = "\x03\x3a\x27", + [0x1fa9] = "\x03\x40\x4a", [0x1faa] = "\x03\x40\x49", + [0x1fab] = "\x03\x40\x48", [0x1fac] = "\x02\x49\x2d", + [0x1fad] = "\x01\x68\x25", [0x1fae] = "\x03\x46\x25", + [0x1faf] = "\x04\x3c\x40", [0x1fb0] = "\x03\x46\x26", + [0x1fb1] = "\x03\x4b\x35", [0x1fb2] = "\x01\x6c\x30", + [0x1fb3] = "\x03\x54\x45", [0x1fb4] = "\x02\x65\x3b", + [0x1fb5] = "\x0f\x6d\x2e", [0x1fb6] = "\x03\x21\x2b", + [0x1fb7] = "\x03\x21\x5c", [0x1fb8] = "\x04\x21\x45", + [0x1fb9] = "\x02\x21\x38", [0x1fba] = "\x03\x22\x2a", + [0x1fbb] = "\x01\x46\x2a", [0x1fbd] = "\x04\x22\x48", + [0x1fbe] = "\x03\x23\x31", [0x1fc0] = "\x04\x25\x59", + [0x1fc1] = "\x03\x27\x69", [0x1fc2] = "\x03\x27\x6a", + [0x1fc3] = "\x01\x59\x36", [0x1fc4] = "\x03\x34\x55", + [0x1fc5] = "\x03\x3a\x29", [0x1fc8] = "\x01\x44\x34", + [0x1fc9] = "\x01\x44\x46", [0x1fca] = "\x01\x45\x2f", + [0x1fcb] = "\x01\x45\x2e", [0x1fcc] = "\x03\x21\x5e", + [0x1fcd] = "\x01\x45\x30", [0x1fce] = "\x03\x21\x60", + [0x1fcf] = "\x04\x21\x69", [0x1fd0] = "\x03\x22\x2b", + [0x1fd2] = "\x03\x23\x33", [0x1fd3] = "\x04\x23\x4f", + [0x1fd4] = "\x01\x4c\x3e", [0x1fd5] = "\x03\x27\x6b", + [0x1fd6] = "\x01\x4c\x3d", [0x1fd7] = "\x01\x4c\x3f", + [0x1fd9] = "\x03\x2b\x50", [0x1fda] = "\x03\x2b\x4f", + [0x1fdb] = "\x01\x50\x35", [0x1fdc] = "\x03\x2b\x4e", + [0x1fdd] = "\x03\x2b\x4d", [0x1fde] = "\x06\x35\x78", + [0x1fdf] = "\x01\x54\x51", [0x1fe0] = "\x03\x40\x4b", + [0x1fe1] = "\x02\x56\x46", [0x1fe2] = "\x01\x76\x3b", + [0x1fe3] = "\x01\x44\x47", [0x1fe4] = "\x01\x46\x2c", + [0x1fe5] = "\x01\x46\x3b", [0x1fe6] = "\x01\x46\x36", + [0x1fe7] = "\x04\x21\x6c", [0x1fe8] = "\x01\x46\x31", + [0x1fe9] = "\x01\x46\x30", [0x1fea] = "\x01\x46\x37", + [0x1feb] = "\x01\x46\x35", [0x1fec] = "\x01\x46\x2e", + [0x1fed] = "\x01\x46\x3c", [0x1fee] = "\x01\x46\x2f", + [0x1fef] = "\x01\x46\x2b", [0x1ff0] = "\x01\x46\x3a", + [0x1ff1] = "\x01\x46\x39", [0x1ff2] = "\x01\x46\x38", + [0x1ff3] = "\x01\x46\x2d", [0x1ff4] = "\x03\x22\x31", + [0x1ff5] = "\x01\x46\x34", [0x1ff6] = "\x03\x22\x2d", + [0x1ff7] = "\x03\x22\x2e", [0x1ff8] = "\x01\x46\x33", + [0x1ff9] = "\x03\x22\x2f", [0x1ffa] = "\x0f\x21\x50", + [0x1ffb] = "\x01\x46\x3d", [0x1ffc] = "\x01\x46\x32", + [0x1ffd] = "\x04\x21\x6a", [0x1fff] = "\x03\x23\x35", + [0x2000] = "\x03\x23\x37", [0x2001] = "\x01\x47\x54", + [0x2002] = "\x04\x22\x4c", [0x2003] = "\x01\x47\x5a", + [0x2004] = "\x01\x47\x56", [0x2005] = "\x03\x23\x39", + [0x2006] = "\x01\x47\x5c", [0x2007] = "\x02\x22\x25", + [0x2008] = "\x01\x47\x59", [0x2009] = "\x01\x47\x4f", + [0x200a] = "\x01\x47\x52", [0x200b] = "\x01\x47\x55", + [0x200c] = "\x01\x47\x51", [0x200d] = "\x01\x47\x58", + [0x200e] = "\x01\x47\x5b", [0x200f] = "\x01\x47\x50", + [0x2010] = "\x01\x47\x53", [0x2011] = "\x01\x47\x57", + [0x2012] = "\x01\x47\x5d", [0x2013] = "\x03\x23\x3a", + [0x2015] = "\x03\x23\x3b", [0x2016] = "\x03\x23\x34", + [0x2018] = "\x02\x23\x40", [0x2019] = "\x02\x23\x3d", + [0x201a] = "\x03\x24\x76", [0x201b] = "\x01\x49\x49", + [0x201c] = "\x02\x23\x3e", [0x201d] = "\x01\x49\x3d", + [0x201e] = "\x01\x49\x3f", [0x201f] = "\x01\x49\x57", + [0x2020] = "\x01\x49\x52", [0x2021] = "\x03\x24\x79", + [0x2022] = "\x03\x24\x7e", [0x2023] = "\x03\x24\x75", + [0x2024] = "\x02\x23\x45", [0x2025] = "\x02\x23\x3f", + [0x2026] = "\x01\x49\x41", [0x2027] = "\x01\x49\x43", + [0x2028] = "\x02\x23\x44", [0x2029] = "\x01\x49\x4a", + [0x202a] = "\x02\x23\x3a", [0x202b] = "\x01\x49\x56", + [0x202c] = "\x01\x49\x58", [0x202d] = "\x01\x49\x3e", + [0x202e] = "\x01\x49\x4f", [0x202f] = "\x03\x25\x24", + [0x2030] = "\x02\x23\x38", [0x2031] = "\x01\x49\x55", + [0x2032] = "\x03\x24\x77", [0x2033] = "\x01\x49\x46", + [0x2034] = "\x03\x24\x7b", [0x2035] = "\x01\x49\x50", + [0x2036] = "\x01\x49\x51", [0x2037] = "\x02\x23\x39", + [0x2038] = "\x01\x49\x4e", [0x2039] = "\x01\x49\x4c", + [0x203a] = "\x03\x24\x70", [0x203b] = "\x01\x49\x4d", + [0x203c] = "\x01\x49\x53", [0x203d] = "\x02\x23\x41", + [0x203e] = "\x01\x49\x40", [0x203f] = "\x03\x25\x21", + [0x2040] = "\x01\x49\x54", [0x2041] = "\x02\x23\x43", + [0x2042] = "\x01\x49\x48", [0x2043] = "\x01\x49\x45", + [0x2044] = "\x03\x24\x73", [0x2045] = "\x02\x23\x3c", + [0x2046] = "\x01\x49\x44", [0x2047] = "\x02\x23\x46", + [0x2048] = "\x01\x49\x47", [0x2049] = "\x03\x24\x7c", + [0x204a] = "\x01\x49\x4b", [0x204b] = "\x03\x24\x78", + [0x204c] = "\x03\x24\x74", [0x204d] = "\x03\x24\x6d", + [0x204e] = "\x01\x49\x42", [0x204f] = "\x02\x23\x42", + [0x2050] = "\x03\x24\x7d", [0x2051] = "\x03\x25\x22", + [0x2054] = "\x02\x23\x3b", [0x205a] = "\x03\x25\x23", + [0x205d] = "\x04\x25\x64", [0x205e] = "\x04\x25\x63", + [0x205f] = "\x03\x27\x6e", [0x2060] = "\x02\x25\x6b", + [0x2061] = "\x02\x25\x6a", [0x2062] = "\x01\x4c\x51", + [0x2063] = "\x02\x25\x6d", [0x2064] = "\x02\x25\x6f", + [0x2065] = "\x02\x25\x64", [0x2066] = "\x02\x25\x67", + [0x2067] = "\x02\x25\x6e", [0x2068] = "\x01\x4c\x52", + [0x2069] = "\x03\x27\x74", [0x206a] = "\x03\x27\x78", + [0x206b] = "\x02\x25\x61", [0x206c] = "\x02\x25\x65", + [0x206d] = "\x03\x27\x75", [0x206e] = "\x04\x25\x5f", + [0x206f] = "\x02\x25\x69", [0x2070] = "\x02\x29\x4a", + [0x2071] = "\x01\x4c\x4d", [0x2072] = "\x02\x29\x4e", + [0x2073] = "\x01\x4c\x40", [0x2074] = "\x02\x25\x66", + [0x2075] = "\x01\x4c\x41", [0x2076] = "\x01\x4c\x4e", + [0x2077] = "\x01\x4c\x47", [0x2078] = "\x01\x4c\x43", + [0x2079] = "\x03\x27\x71", [0x207a] = "\x02\x25\x62", + [0x207b] = "\x01\x4c\x46", [0x207c] = "\x01\x4c\x4b", + [0x207d] = "\x01\x4c\x54", [0x207e] = "\x02\x25\x63", + [0x207f] = "\x02\x25\x5c", [0x2080] = "\x01\x4c\x45", + [0x2081] = "\x02\x25\x5d", [0x2082] = "\x02\x25\x5f", + [0x2083] = "\x04\x25\x60", [0x2084] = "\x01\x4c\x48", + [0x2085] = "\x03\x27\x6c", [0x2086] = "\x01\x4c\x4a", + [0x2087] = "\x02\x25\x5b", [0x2088] = "\x02\x25\x60", + [0x2089] = "\x03\x27\x70", [0x208a] = "\x03\x27\x79", + [0x208b] = "\x01\x4c\x53", [0x208c] = "\x01\x4c\x4f", + [0x208d] = "\x02\x25\x68", [0x208e] = "\x01\x4c\x55", + [0x208f] = "\x03\x27\x73", [0x2090] = "\x01\x4c\x4c", + [0x2091] = "\x02\x25\x5e", [0x2092] = "\x01\x4c\x49", + [0x2093] = "\x03\x27\x6f", [0x2094] = "\x03\x27\x77", + [0x2095] = "\x01\x4c\x44", [0x2096] = "\x01\x4c\x42", + [0x2098] = "\x02\x25\x6c", [0x209a] = "\x01\x4c\x50", + [0x209c] = "\x0f\x25\x71", [0x209e] = "\x03\x2b\x5c", + [0x209f] = "\x03\x2b\x5d", [0x20a0] = "\x02\x29\x49", + [0x20a1] = "\x02\x29\x3d", [0x20a2] = "\x02\x29\x4c", + [0x20a3] = "\x03\x2b\x57", [0x20a4] = "\x03\x2b\x59", + [0x20a5] = "\x02\x29\x3f", [0x20a6] = "\x01\x50\x3c", + [0x20a7] = "\x01\x50\x4a", [0x20a8] = "\x01\x50\x38", + [0x20a9] = "\x01\x50\x49", [0x20aa] = "\x01\x50\x41", + [0x20ab] = "\x01\x50\x46", [0x20ac] = "\x01\x50\x36", + [0x20ad] = "\x02\x29\x3e", [0x20ae] = "\x02\x29\x44", + [0x20af] = "\x01\x50\x45", [0x20b0] = "\x02\x29\x50", + [0x20b1] = "\x01\x50\x47", [0x20b2] = "\x03\x2b\x5b", + [0x20b3] = "\x01\x50\x3d", [0x20b4] = "\x03\x2b\x54", + [0x20b5] = "\x03\x2b\x5e", [0x20b6] = "\x02\x29\x46", + [0x20b7] = "\x02\x29\x43", [0x20b8] = "\x01\x50\x3b", + [0x20b9] = "\x03\x2b\x51", [0x20ba] = "\x02\x29\x3c", + [0x20bb] = "\x01\x50\x48", [0x20bc] = "\x02\x29\x4b", + [0x20bd] = "\x01\x50\x40", [0x20be] = "\x02\x29\x4d", + [0x20bf] = "\x01\x50\x4b", [0x20c0] = "\x01\x50\x37", + [0x20c1] = "\x01\x50\x42", [0x20c2] = "\x01\x50\x3f", + [0x20c3] = "\x02\x29\x41", [0x20c4] = "\x01\x50\x43", + [0x20c5] = "\x02\x29\x47", [0x20c6] = "\x02\x29\x48", + [0x20c7] = "\x01\x50\x3e", [0x20c8] = "\x01\x50\x44", + [0x20c9] = "\x01\x50\x3a", [0x20ca] = "\x03\x2b\x55", + [0x20cb] = "\x03\x64\x54", [0x20cc] = "\x03\x2b\x63", + [0x20cd] = "\x03\x2b\x61", [0x20ce] = "\x01\x50\x39", + [0x20cf] = "\x02\x29\x40", [0x20d0] = "\x03\x2b\x53", + [0x20d6] = "\x02\x29\x45", [0x20da] = "\x03\x2b\x58", + [0x20de] = "\x02\x29\x4f", [0x20e0] = "\x02\x2e\x46", + [0x20e1] = "\x01\x54\x5e", [0x20e2] = "\x02\x2e\x34", + [0x20e3] = "\x04\x2c\x2d", [0x20e4] = "\x02\x2e\x39", + [0x20e5] = "\x01\x54\x57", [0x20e6] = "\x01\x54\x62", + [0x20e7] = "\x02\x2e\x37", [0x20e8] = "\x01\x54\x52", + [0x20e9] = "\x01\x54\x5c", [0x20ea] = "\x01\x54\x61", + [0x20eb] = "\x02\x2e\x3e", [0x20ec] = "\x04\x2c\x26", + [0x20ed] = "\x01\x54\x5d", [0x20ee] = "\x01\x54\x60", + [0x20ef] = "\x03\x2f\x77", [0x20f0] = "\x03\x30\x21", + [0x20f1] = "\x02\x2e\x41", [0x20f2] = "\x01\x54\x58", + [0x20f3] = "\x02\x2e\x38", [0x20f4] = "\x03\x2f\x74", + [0x20f5] = "\x03\x2f\x78", [0x20f6] = "\x03\x30\x22", + [0x20f7] = "\x02\x2e\x44", [0x20f8] = "\x02\x2e\x45", + [0x20f9] = "\x03\x2f\x79", [0x20fa] = "\x01\x54\x5a", + [0x20fb] = "\x02\x2e\x43", [0x20fc] = "\x01\x54\x56", + [0x20fd] = "\x01\x54\x65", [0x20fe] = "\x04\x2c\x29", + [0x20ff] = "\x02\x2e\x3b", [0x2100] = "\x03\x2f\x7b", + [0x2101] = "\x01\x54\x54", [0x2102] = "\x03\x2f\x7a", + [0x2103] = "\x02\x2e\x48", [0x2104] = "\x02\x2e\x3c", + [0x2105] = "\x02\x2e\x40", [0x2106] = "\x01\x54\x59", + [0x2107] = "\x01\x54\x64", [0x2108] = "\x02\x2e\x3d", + [0x2109] = "\x01\x54\x5f", [0x210a] = "\x02\x2e\x42", + [0x210b] = "\x02\x2e\x49", [0x210c] = "\x02\x34\x24", + [0x210d] = "\x03\x2f\x73", [0x210e] = "\x02\x2e\x47", + [0x210f] = "\x01\x54\x66", [0x2110] = "\x01\x54\x53", + [0x2111] = "\x02\x2e\x3f", [0x2112] = "\x02\x2e\x36", + [0x2113] = "\x03\x2f\x76", [0x2114] = "\x01\x54\x5b", + [0x2115] = "\x04\x2c\x28", [0x2116] = "\x04\x2c\x2e", + [0x2117] = "\x02\x2e\x35", [0x2118] = "\x03\x2f\x7e", + [0x2119] = "\x03\x30\x25", [0x211a] = "\x02\x2e\x3a", + [0x211b] = "\x0f\x29\x54", [0x2120] = "\x0f\x2e\x42", + [0x2121] = "\x0f\x2e\x4a", [0x2126] = "\x02\x2e\x33", + [0x2127] = "\x01\x54\x63", [0x2128] = "\x03\x67\x21", + [0x2129] = "\x03\x34\x5f", [0x212a] = "\x02\x33\x7a", + [0x212b] = "\x03\x34\x68", [0x212c] = "\x01\x59\x49", + [0x212d] = "\x02\x34\x2a", [0x212e] = "\x01\x59\x47", + [0x212f] = "\x01\x59\x44", [0x2130] = "\x02\x34\x21", + [0x2131] = "\x01\x59\x40", [0x2132] = "\x02\x34\x25", + [0x2133] = "\x01\x59\x4b", [0x2134] = "\x02\x33\x79", + [0x2135] = "\x02\x33\x7e", [0x2136] = "\x02\x33\x7d", + [0x2137] = "\x01\x54\x55", [0x2138] = "\x01\x59\x46", + [0x2139] = "\x02\x34\x28", [0x213a] = "\x03\x34\x66", + [0x213b] = "\x02\x34\x2b", [0x213c] = "\x02\x33\x76", + [0x213d] = "\x04\x30\x77", [0x213e] = "\x01\x5e\x4e", + [0x213f] = "\x03\x34\x67", [0x2140] = "\x02\x34\x2c", + [0x2141] = "\x01\x59\x4c", [0x2142] = "\x04\x30\x72", + [0x2143] = "\x01\x59\x3e", [0x2144] = "\x01\x59\x3b", + [0x2145] = "\x02\x34\x23", [0x2146] = "\x01\x59\x38", + [0x2147] = "\x04\x30\x74", [0x2148] = "\x02\x34\x29", + [0x2149] = "\x03\x34\x5b", [0x214a] = "\x01\x59\x3f", + [0x214b] = "\x02\x34\x2d", [0x214c] = "\x03\x34\x58", + [0x214d] = "\x02\x33\x77", [0x214e] = "\x02\x34\x27", + [0x214f] = "\x01\x59\x42", [0x2150] = "\x02\x33\x78", + [0x2151] = "\x02\x33\x7b", [0x2152] = "\x02\x34\x22", + [0x2153] = "\x03\x34\x62", [0x2154] = "\x03\x34\x61", + [0x2155] = "\x01\x59\x43", [0x2156] = "\x01\x59\x41", + [0x2157] = "\x01\x59\x4d", [0x2158] = "\x03\x34\x57", + [0x2159] = "\x03\x3a\x36", [0x215a] = "\x03\x34\x64", + [0x215b] = "\x04\x30\x6b", [0x215c] = "\x01\x59\x48", + [0x215d] = "\x03\x34\x5e", [0x215e] = "\x01\x59\x3c", + [0x215f] = "\x01\x5a\x76", [0x2160] = "\x04\x30\x7a", + [0x2161] = "\x01\x59\x3d", [0x2162] = "\x02\x33\x7c", + [0x2163] = "\x01\x59\x4a", [0x2164] = "\x01\x59\x45", + [0x2165] = "\x02\x34\x26", [0x2166] = "\x01\x59\x3a", + [0x2168] = "\x03\x34\x59", [0x216a] = "\x01\x59\x39", + [0x216b] = "\x03\x64\x57", [0x2171] = "\x03\x64\x56", + [0x2172] = "\x03\x67\x22", [0x2173] = "\x03\x64\x55", + [0x2175] = "\x02\x33\x74", [0x2176] = "\x02\x33\x75", + [0x2177] = "\x02\x3a\x4e", [0x217a] = "\x03\x3a\x3c", + [0x217b] = "\x01\x5e\x3d", [0x217c] = "\x01\x5e\x40", + [0x217d] = "\x02\x3a\x59", [0x217e] = "\x01\x5e\x54", + [0x217f] = "\x02\x3a\x5c", [0x2180] = "\x01\x5e\x3e", + [0x2181] = "\x02\x3a\x55", [0x2182] = "\x01\x5e\x44", + [0x2183] = "\x01\x5e\x4a", [0x2184] = "\x01\x61\x43", + [0x2185] = "\x03\x3a\x31", [0x2186] = "\x03\x3a\x38", + [0x2187] = "\x01\x5e\x48", [0x2188] = "\x02\x3a\x52", + [0x2189] = "\x01\x5e\x55", [0x218a] = "\x01\x5e\x41", + [0x218b] = "\x01\x5e\x49", [0x218c] = "\x02\x3a\x5a", + [0x218d] = "\x02\x41\x7c", [0x218e] = "\x02\x3a\x5f", + [0x218f] = "\x02\x3a\x53", [0x2190] = "\x04\x36\x5c", + [0x2191] = "\x02\x3a\x4a", [0x2192] = "\x02\x3a\x57", + [0x2193] = "\x02\x3a\x51", [0x2194] = "\x01\x5e\x47", + [0x2195] = "\x02\x3a\x5d", [0x2196] = "\x03\x3a\x2e", + [0x2197] = "\x03\x3a\x2a", [0x2198] = "\x01\x5e\x43", + [0x2199] = "\x01\x5e\x57", [0x219a] = "\x01\x5e\x50", + [0x219b] = "\x03\x3a\x33", [0x219c] = "\x01\x5e\x45", + [0x219d] = "\x01\x5e\x42", [0x219e] = "\x03\x3a\x40", + [0x219f] = "\x01\x5e\x4d", [0x21a0] = "\x03\x3a\x34", + [0x21a1] = "\x02\x3a\x5e", [0x21a2] = "\x02\x3a\x50", + [0x21a3] = "\x02\x3a\x56", [0x21a4] = "\x02\x3a\x58", + [0x21a5] = "\x02\x3a\x4c", [0x21a6] = "\x02\x3a\x5b", + [0x21a7] = "\x01\x5e\x3f", [0x21a8] = "\x02\x3a\x4b", + [0x21a9] = "\x03\x3a\x42", [0x21aa] = "\x01\x5e\x46", + [0x21ab] = "\x01\x5e\x56", [0x21ac] = "\x01\x5e\x52", + [0x21ad] = "\x02\x3a\x4d", [0x21ae] = "\x01\x5e\x4c", + [0x21af] = "\x03\x3a\x3b", [0x21b0] = "\x0f\x39\x71", + [0x21b1] = "\x01\x5e\x53", [0x21b2] = "\x01\x5e\x4f", + [0x21b3] = "\x01\x5e\x4b", [0x21b4] = "\x03\x3a\x2f", + [0x21b5] = "\x02\x3a\x54", [0x21b6] = "\x06\x47\x29", + [0x21ba] = "\x03\x67\x23", [0x21bb] = "\x01\x5e\x51", + [0x21bf] = "\x02\x41\x7a", [0x21c0] = "\x02\x41\x76", + [0x21c1] = "\x03\x40\x51", [0x21c2] = "\x02\x42\x27", + [0x21c3] = "\x02\x41\x6f", [0x21c4] = "\x02\x41\x78", + [0x21c5] = "\x01\x63\x4c", [0x21c6] = "\x01\x63\x4d", + [0x21c7] = "\x01\x63\x45", [0x21c8] = "\x02\x42\x23", + [0x21c9] = "\x01\x63\x4f", [0x21ca] = "\x02\x41\x74", + [0x21cb] = "\x02\x41\x73", [0x21cc] = "\x02\x41\x71", + [0x21cd] = "\x02\x42\x25", [0x21ce] = "\x01\x63\x43", + [0x21cf] = "\x02\x41\x7d", [0x21d0] = "\x02\x41\x72", + [0x21d1] = "\x01\x63\x46", [0x21d2] = "\x02\x41\x7b", + [0x21d3] = "\x01\x63\x41", [0x21d4] = "\x02\x41\x77", + [0x21d5] = "\x02\x41\x7e", [0x21d6] = "\x02\x42\x22", + [0x21d7] = "\x03\x40\x4e", [0x21d8] = "\x04\x3c\x4b", + [0x21d9] = "\x02\x42\x26", [0x21da] = "\x01\x63\x4a", + [0x21db] = "\x02\x41\x70", [0x21dc] = "\x01\x63\x44", + [0x21dd] = "\x02\x41\x75", [0x21de] = "\x03\x3a\x2b", + [0x21df] = "\x01\x63\x3f", [0x21e0] = "\x06\x51\x43", + [0x21e1] = "\x01\x63\x4b", [0x21e2] = "\x02\x42\x21", + [0x21e3] = "\x01\x63\x47", [0x21e4] = "\x01\x63\x48", + [0x21e5] = "\x01\x63\x4e", [0x21e6] = "\x01\x63\x42", + [0x21e7] = "\x01\x23\x21", [0x21e8] = "\x01\x63\x40", + [0x21e9] = "\x02\x41\x79", [0x21ea] = "\x03\x40\x4c", + [0x21ee] = "\x03\x67\x25", [0x21ef] = "\x01\x63\x49", + [0x21f0] = "\x03\x67\x24", [0x21f1] = "\x0f\x40\x62", + [0x21f2] = "\x02\x42\x24", [0x21f4] = "\x03\x64\x58", + [0x21f6] = "\x01\x68\x35", [0x21f7] = "\x01\x68\x30", + [0x21f8] = "\x03\x46\x2e", [0x21f9] = "\x02\x49\x3c", + [0x21fa] = "\x02\x49\x38", [0x21fb] = "\x03\x46\x28", + [0x21fc] = "\x02\x49\x32", [0x21fd] = "\x01\x68\x2a", + [0x21fe] = "\x01\x68\x26", [0x21ff] = "\x02\x49\x3b", + [0x2200] = "\x01\x68\x27", [0x2201] = "\x02\x49\x35", + [0x2202] = "\x02\x49\x37", [0x2203] = "\x03\x46\x29", + [0x2204] = "\x02\x49\x3a", [0x2205] = "\x03\x46\x36", + [0x2206] = "\x01\x68\x2c", [0x2207] = "\x03\x46\x2c", + [0x2208] = "\x01\x68\x33", [0x2209] = "\x01\x68\x2d", + [0x220a] = "\x04\x42\x57", [0x220b] = "\x03\x46\x2a", + [0x220c] = "\x02\x49\x30", [0x220d] = "\x01\x68\x2e", + [0x220e] = "\x01\x68\x2f", [0x220f] = "\x02\x49\x33", + [0x2210] = "\x01\x68\x34", [0x2211] = "\x03\x46\x34", + [0x2212] = "\x02\x49\x31", [0x2213] = "\x02\x49\x36", + [0x2214] = "\x01\x68\x2b", [0x2215] = "\x02\x49\x2f", + [0x2216] = "\x01\x68\x31", [0x2217] = "\x01\x68\x29", + [0x2218] = "\x03\x46\x33", [0x2219] = "\x04\x42\x4b", + [0x221b] = "\x01\x68\x28", [0x221c] = "\x02\x49\x34", + [0x221d] = "\x02\x49\x39", [0x221e] = "\x03\x46\x31", + [0x221f] = "\x01\x68\x32", [0x2220] = "\x03\x64\x5a", + [0x2222] = "\x03\x64\x59", [0x2226] = "\x03\x46\x50", + [0x2227] = "\x02\x49\x2e", [0x2228] = "\x03\x46\x30", + [0x2229] = "\x01\x6c\x37", [0x222a] = "\x02\x4f\x6e", + [0x222b] = "\x03\x4b\x41", [0x222c] = "\x02\x4f\x6b", + [0x222d] = "\x03\x4b\x38", [0x222e] = "\x01\x6c\x31", + [0x222f] = "\x01\x6c\x3d", [0x2230] = "\x01\x6c\x3e", + [0x2231] = "\x03\x4b\x3d", [0x2232] = "\x01\x6c\x34", + [0x2233] = "\x02\x4f\x69", [0x2234] = "\x01\x6c\x36", + [0x2235] = "\x02\x4f\x61", [0x2236] = "\x01\x6c\x3c", + [0x2237] = "\x03\x4b\x44", [0x2238] = "\x02\x4f\x6d", + [0x2239] = "\x01\x6c\x33", [0x223a] = "\x02\x4f\x6f", + [0x223b] = "\x01\x6c\x32", [0x223c] = "\x04\x49\x31", + [0x223d] = "\x02\x4f\x6a", [0x223e] = "\x02\x4f\x6c", + [0x223f] = "\x01\x6c\x35", [0x2240] = "\x02\x4f\x68", + [0x2241] = "\x02\x4f\x62", [0x2242] = "\x02\x4f\x5f", + [0x2243] = "\x04\x49\x2e", [0x2244] = "\x03\x4b\x3e", + [0x2245] = "\x02\x3a\x4f", [0x2246] = "\x02\x4f\x65", + [0x2247] = "\x03\x4b\x37", [0x2248] = "\x02\x4f\x5e", + [0x2249] = "\x02\x4f\x64", [0x224a] = "\x02\x4f\x63", + [0x224b] = "\x03\x4b\x3b", [0x224c] = "\x02\x4f\x60", + [0x224d] = "\x03\x4b\x43", [0x224e] = "\x01\x6c\x39", + [0x224f] = "\x03\x4b\x45", [0x2250] = "\x03\x4b\x40", + [0x2251] = "\x03\x46\x35", [0x2252] = "\x03\x4b\x3c", + [0x2253] = "\x01\x6c\x38", [0x2254] = "\x03\x4b\x39", + [0x2255] = "\x07\x21\x63", [0x2256] = "\x03\x4b\x3f", + [0x2257] = "\x01\x6c\x3a", [0x2258] = "\x02\x4f\x66", + [0x2259] = "\x01\x70\x3b", [0x225a] = "\x02\x4f\x67", + [0x225e] = "\x02\x56\x4f", [0x225f] = "\x03\x50\x3f", + [0x2260] = "\x02\x56\x48", [0x2261] = "\x03\x50\x40", + [0x2262] = "\x01\x70\x47", [0x2263] = "\x02\x56\x4c", + [0x2264] = "\x01\x70\x3f", [0x2265] = "\x01\x70\x43", + [0x2266] = "\x02\x56\x4b", [0x2267] = "\x03\x50\x3b", + [0x2268] = "\x01\x70\x42", [0x2269] = "\x01\x70\x3e", + [0x226a] = "\x01\x70\x41", [0x226b] = "\x01\x70\x3c", + [0x226c] = "\x01\x70\x46", [0x226d] = "\x02\x56\x4d", + [0x226e] = "\x02\x56\x49", [0x226f] = "\x01\x70\x45", + [0x2270] = "\x02\x56\x47", [0x2271] = "\x01\x70\x44", + [0x2272] = "\x02\x56\x4e", [0x2273] = "\x02\x56\x4a", + [0x2274] = "\x01\x6c\x3b", [0x2275] = "\x04\x4f\x71", + [0x2276] = "\x01\x70\x48", [0x2277] = "\x02\x56\x50", + [0x2278] = "\x01\x70\x40", [0x2279] = "\x01\x70\x3d", + [0x227a] = "\x0f\x53\x5d", [0x227b] = "\x03\x50\x3d", + [0x227d] = "\x03\x54\x48", [0x227e] = "\x02\x5c\x52", + [0x227f] = "\x02\x5c\x54", [0x2280] = "\x01\x73\x46", + [0x2281] = "\x02\x5c\x55", [0x2282] = "\x02\x5c\x53", + [0x2283] = "\x02\x5c\x51", [0x2284] = "\x02\x5c\x50", + [0x2285] = "\x01\x73\x48", [0x2286] = "\x02\x5c\x4f", + [0x2287] = "\x01\x73\x49", [0x2288] = "\x04\x55\x74", + [0x2289] = "\x03\x54\x49", [0x228a] = "\x03\x54\x47", + [0x228b] = "\x04\x55\x78", [0x228c] = "\x02\x5c\x4d", + [0x228d] = "\x02\x5c\x4e", [0x228e] = "\x01\x73\x45", + [0x228f] = "\x01\x73\x4a", [0x2290] = "\x01\x73\x47", + [0x2291] = "\x03\x64\x5d", [0x2292] = "\x03\x64\x5b", + [0x2293] = "\x02\x5c\x4c", [0x2294] = "\x03\x57\x5b", + [0x2295] = "\x01\x76\x3c", [0x2296] = "\x03\x57\x5a", + [0x2297] = "\x02\x61\x48", [0x2298] = "\x02\x61\x46", + [0x2299] = "\x02\x61\x4b", [0x229a] = "\x02\x61\x49", + [0x229b] = "\x03\x57\x58", [0x229c] = "\x02\x61\x47", + [0x229d] = "\x02\x61\x4a", [0x229e] = "\x03\x57\x59", + [0x229f] = "\x03\x57\x57", [0x22a0] = "\x03\x57\x5c", + [0x22a5] = "\x01\x78\x2c", [0x22a6] = "\x02\x65\x3e", + [0x22a7] = "\x02\x65\x3f", [0x22a8] = "\x01\x78\x2d", + [0x22a9] = "\x04\x5f\x4d", [0x22aa] = "\x02\x65\x40", + [0x22ab] = "\x02\x65\x3c", [0x22ac] = "\x02\x65\x41", + [0x22ad] = "\x02\x65\x3d", [0x22ae] = "\x01\x76\x3d", + [0x22af] = "\x03\x5a\x2d", [0x22b0] = "\x03\x64\x5e", + [0x22b1] = "\x04\x63\x31", [0x22b2] = "\x02\x68\x6b", + [0x22b3] = "\x02\x68\x6d", [0x22b4] = "\x01\x79\x64", + [0x22b5] = "\x02\x68\x6c", [0x22b6] = "\x01\x79\x63", + [0x22b7] = "\x01\x79\x62", [0x22b8] = "\x03\x67\x26", + [0x22b9] = "\x03\x67\x27", [0x22ba] = "\x03\x64\x5c", + [0x22bb] = "\x03\x5e\x26", [0x22bc] = "\x01\x79\x65", + [0x22bd] = "\x02\x6b\x53", [0x22be] = "\x02\x6b\x54", + [0x22bf] = "\x04\x66\x34", [0x22c0] = "\x01\x7a\x65", + [0x22c1] = "\x01\x7a\x64", [0x22c2] = "\x01\x7a\x66", + [0x22c3] = "\x02\x6b\x52", [0x22c4] = "\x03\x67\x28", + [0x22c5] = "\x02\x6d\x46", [0x22c6] = "\x02\x6d\x45", + [0x22c7] = "\x03\x5f\x40", [0x22c8] = "\x01\x7b\x59", + [0x22c9] = "\x01\x7b\x5b", [0x22ca] = "\x01\x7b\x5a", + [0x22cb] = "\x02\x6d\x47", [0x22cc] = "\x01\x7c\x34", + [0x22cd] = "\x02\x70\x34", [0x22cf] = "\x04\x6a\x44", + [0x22d0] = "\x04\x6a\x43", [0x22d1] = "\x01\x7c\x5d", + [0x22d2] = "\x03\x60\x71", [0x22d3] = "\x02\x70\x33", + [0x22d4] = "\x02\x70\x7c", [0x22d7] = "\x02\x21\x2a", + [0x22d8] = "\x03\x21\x77", [0x22d9] = "\x04\x21\x6f", + [0x22da] = "\x01\x46\x3f", [0x22db] = "\x01\x46\x3e", + [0x22dc] = "\x04\x21\x6d", [0x22dd] = "\x01\x47\x60", + [0x22de] = "\x01\x47\x5f", [0x22df] = "\x02\x22\x27", + [0x22e0] = "\x01\x47\x5e", [0x22e1] = "\x02\x22\x26", + [0x22e3] = "\x03\x23\x3e", [0x22e4] = "\x01\x49\x5b", + [0x22e5] = "\x02\x23\x49", [0x22e6] = "\x03\x25\x2c", + [0x22e7] = "\x02\x23\x48", [0x22e8] = "\x0f\x23\x50", + [0x22e9] = "\x03\x25\x26", [0x22ea] = "\x01\x49\x59", + [0x22eb] = "\x01\x49\x5c", [0x22ec] = "\x03\x25\x2b", + [0x22ed] = "\x03\x25\x2a", [0x22ee] = "\x02\x23\x47", + [0x22ef] = "\x03\x25\x29", [0x22f0] = "\x01\x49\x5a", + [0x22f1] = "\x03\x25\x48", [0x22f2] = "\x03\x25\x27", + [0x22f3] = "\x03\x25\x28", [0x22f6] = "\x03\x28\x22", + [0x22f7] = "\x02\x25\x70", [0x22f8] = "\x03\x27\x7d", + [0x22f9] = "\x02\x25\x71", [0x22fa] = "\x01\x4c\x56", + [0x22fb] = "\x03\x27\x7c", [0x22fc] = "\x03\x28\x21", + [0x22fd] = "\x03\x27\x7b", [0x22ff] = "\x01\x50\x4c", + [0x2300] = "\x03\x2b\x65", [0x2301] = "\x02\x2e\x4a", + [0x2302] = "\x02\x2e\x4b", [0x2303] = "\x01\x54\x67", + [0x2304] = "\x01\x54\x68", [0x2305] = "\x03\x30\x27", + [0x2307] = "\x02\x34\x2f", [0x2308] = "\x01\x59\x4e", + [0x2309] = "\x01\x59\x50", [0x230a] = "\x02\x34\x2e", + [0x230b] = "\x01\x59\x4f", [0x230c] = "\x02\x3a\x60", + [0x230d] = "\x01\x5e\x58", [0x230e] = "\x03\x3a\x44", + [0x230f] = "\x03\x3a\x43", [0x2310] = "\x04\x36\x68", + [0x2311] = "\x04\x3c\x52", [0x2312] = "\x01\x63\x50", + [0x2313] = "\x01\x63\x51", [0x2314] = "\x02\x42\x28", + [0x2315] = "\x03\x40\x52", [0x2316] = "\x01\x68\x37", + [0x2317] = "\x03\x46\x37", [0x2318] = "\x01\x68\x36", + [0x231a] = "\x02\x4f\x70", [0x231b] = "\x02\x56\x52", + [0x231c] = "\x02\x56\x51", [0x231d] = "\x03\x5f\x41", + [0x231e] = "\x02\x71\x5a", [0x231f] = "\x01\x44\x48", + [0x2320] = "\x02\x21\x39", [0x2321] = "\x03\x21\x61", + [0x2322] = "\x02\x21\x4f", [0x2323] = "\x02\x21\x50", + [0x2324] = "\x03\x22\x34", [0x2325] = "\x04\x21\x70", + [0x2327] = "\x04\x21\x71", [0x2328] = "\x01\x47\x63", + [0x2329] = "\x01\x47\x67", [0x232a] = "\x02\x22\x29", + [0x232b] = "\x04\x22\x51", [0x232c] = "\x01\x47\x65", + [0x232d] = "\x01\x47\x64", [0x232e] = "\x02\x22\x28", + [0x232f] = "\x01\x47\x66", [0x2330] = "\x01\x47\x62", + [0x2331] = "\x03\x23\x41", [0x2332] = "\x03\x23\x42", + [0x2333] = "\x01\x47\x61", [0x2334] = "\x02\x22\x2a", + [0x2335] = "\x03\x23\x3f", [0x2336] = "\x03\x23\x40", + [0x233b] = "\x01\x49\x66", [0x233c] = "\x03\x25\x31", + [0x233d] = "\x03\x25\x3e", [0x233e] = "\x01\x49\x63", + [0x233f] = "\x03\x25\x30", [0x2340] = "\x01\x49\x5f", + [0x2341] = "\x02\x23\x4a", [0x2342] = "\x03\x25\x40", + [0x2343] = "\x03\x25\x36", [0x2344] = "\x03\x25\x2f", + [0x2345] = "\x02\x23\x4b", [0x2346] = "\x03\x25\x3c", + [0x2347] = "\x01\x49\x61", [0x2348] = "\x03\x25\x2d", + [0x2349] = "\x02\x23\x4d", [0x234a] = "\x01\x49\x5d", + [0x234b] = "\x02\x23\x4e", [0x234c] = "\x02\x23\x4c", + [0x234d] = "\x01\x49\x60", [0x234e] = "\x01\x49\x62", + [0x234f] = "\x01\x49\x65", [0x2350] = "\x01\x49\x64", + [0x2351] = "\x01\x49\x5e", [0x2352] = "\x02\x23\x4f", + [0x2353] = "\x03\x25\x32", [0x2354] = "\x03\x25\x41", + [0x2355] = "\x03\x25\x42", [0x2356] = "\x03\x25\x33", + [0x2357] = "\x03\x25\x38", [0x2358] = "\x03\x25\x37", + [0x2359] = "\x03\x64\x5f", [0x235b] = "\x0f\x23\x52", + [0x235f] = "\x03\x25\x35", [0x2361] = "\x01\x4c\x5b", + [0x2362] = "\x02\x25\x7e", [0x2363] = "\x03\x28\x25", + [0x2364] = "\x01\x4c\x5d", [0x2365] = "\x03\x28\x23", + [0x2366] = "\x01\x4c\x5c", [0x2367] = "\x03\x28\x26", + [0x2368] = "\x02\x26\x21", [0x2369] = "\x01\x4c\x5a", + [0x236a] = "\x01\x4c\x59", [0x236b] = "\x02\x25\x75", + [0x236c] = "\x04\x25\x69", [0x236d] = "\x02\x25\x74", + [0x236e] = "\x03\x28\x28", [0x236f] = "\x02\x25\x72", + [0x2370] = "\x02\x25\x77", [0x2371] = "\x02\x25\x76", + [0x2372] = "\x02\x25\x73", [0x2373] = "\x02\x25\x7c", + [0x2374] = "\x02\x25\x7d", [0x2375] = "\x02\x25\x7a", + [0x2376] = "\x02\x25\x78", [0x2377] = "\x01\x4c\x58", + [0x2378] = "\x03\x28\x29", [0x2379] = "\x04\x25\x66", + [0x237a] = "\x04\x25\x68", [0x237b] = "\x02\x25\x7b", + [0x237c] = "\x01\x4c\x5e", [0x237d] = "\x02\x26\x22", + [0x237e] = "\x04\x25\x65", [0x237f] = "\x03\x28\x2a", + [0x2380] = "\x02\x25\x79", [0x2381] = "\x03\x28\x24", + [0x2382] = "\x01\x50\x4d", [0x2383] = "\x01\x4c\x57", + [0x2387] = "\x04\x25\x6e", [0x2388] = "\x0f\x26\x33", + [0x238a] = "\x03\x64\x60", [0x238b] = "\x01\x50\x4e", + [0x238c] = "\x02\x29\x55", [0x238d] = "\x03\x2b\x69", + [0x238e] = "\x03\x2b\x68", [0x238f] = "\x02\x29\x5b", + [0x2390] = "\x03\x2b\x6c", [0x2391] = "\x03\x2b\x67", + [0x2392] = "\x03\x2b\x6a", [0x2393] = "\x01\x50\x54", + [0x2394] = "\x02\x29\x59", [0x2395] = "\x02\x29\x5f", + [0x2396] = "\x03\x2b\x71", [0x2397] = "\x02\x29\x56", + [0x2398] = "\x02\x29\x5a", [0x2399] = "\x02\x29\x5c", + [0x239a] = "\x02\x29\x5e", [0x239b] = "\x02\x29\x58", + [0x239c] = "\x03\x2b\x70", [0x239d] = "\x02\x29\x57", + [0x239e] = "\x02\x29\x52", [0x239f] = "\x02\x29\x53", + [0x23a0] = "\x01\x50\x4f", [0x23a1] = "\x03\x2b\x6b", + [0x23a2] = "\x01\x50\x51", [0x23a3] = "\x01\x50\x50", + [0x23a4] = "\x02\x29\x54", [0x23a5] = "\x02\x29\x5d", + [0x23a6] = "\x03\x2b\x6d", [0x23a7] = "\x03\x2b\x72", + [0x23a8] = "\x03\x2b\x6e", [0x23a9] = "\x04\x28\x60", + [0x23aa] = "\x0f\x29\x6a", [0x23ab] = "\x0f\x29\x71", + [0x23ac] = "\x03\x2b\x66", [0x23ae] = "\x01\x50\x53", + [0x23b4] = "\x04\x28\x5e", [0x23b5] = "\x02\x29\x51", + [0x23b6] = "\x02\x2e\x55", [0x23b7] = "\x03\x30\x2a", + [0x23b8] = "\x02\x2e\x54", [0x23b9] = "\x02\x2e\x59", + [0x23ba] = "\x02\x2e\x50", [0x23bb] = "\x03\x30\x30", + [0x23bc] = "\x02\x2e\x53", [0x23bd] = "\x02\x2e\x52", + [0x23be] = "\x03\x30\x2f", [0x23bf] = "\x02\x2e\x56", + [0x23c0] = "\x03\x30\x38", [0x23c1] = "\x02\x2e\x5a", + [0x23c2] = "\x01\x54\x69", [0x23c3] = "\x01\x54\x6c", + [0x23c4] = "\x03\x30\x34", [0x23c5] = "\x03\x30\x35", + [0x23c6] = "\x02\x2e\x51", [0x23c7] = "\x02\x2e\x57", + [0x23c8] = "\x03\x30\x33", [0x23c9] = "\x03\x30\x28", + [0x23ca] = "\x03\x30\x37", [0x23cb] = "\x01\x54\x6b", + [0x23cc] = "\x02\x2e\x4c", [0x23cd] = "\x03\x30\x2b", + [0x23ce] = "\x01\x50\x52", [0x23cf] = "\x02\x34\x3d", + [0x23d0] = "\x02\x2e\x58", [0x23d1] = "\x03\x30\x36", + [0x23d2] = "\x02\x2e\x4f", [0x23d3] = "\x04\x2c\x33", + [0x23d4] = "\x01\x54\x6a", [0x23d5] = "\x02\x2e\x4e", + [0x23d7] = "\x0f\x2e\x5c", [0x23db] = "\x03\x30\x32", + [0x23dc] = "\x02\x34\x34", [0x23dd] = "\x03\x34\x6e", + [0x23de] = "\x03\x34\x71", [0x23df] = "\x01\x59\x51", + [0x23e0] = "\x01\x59\x55", [0x23e1] = "\x02\x34\x44", + [0x23e2] = "\x02\x34\x32", [0x23e3] = "\x02\x34\x40", + [0x23e4] = "\x01\x59\x56", [0x23e5] = "\x02\x34\x42", + [0x23e6] = "\x03\x34\x72", [0x23e7] = "\x02\x34\x48", + [0x23e8] = "\x03\x34\x74", [0x23e9] = "\x02\x34\x4c", + [0x23ea] = "\x03\x34\x69", [0x23eb] = "\x04\x30\x7b", + [0x23ec] = "\x02\x34\x43", [0x23ed] = "\x02\x34\x37", + [0x23ee] = "\x02\x34\x3f", [0x23ef] = "\x03\x34\x6b", + [0x23f0] = "\x02\x34\x4d", [0x23f1] = "\x02\x34\x4b", + [0x23f2] = "\x02\x34\x41", [0x23f3] = "\x02\x34\x3c", + [0x23f4] = "\x02\x34\x35", [0x23f5] = "\x02\x3a\x68", + [0x23f6] = "\x02\x34\x33", [0x23f7] = "\x01\x59\x5a", + [0x23f8] = "\x02\x34\x3a", [0x23f9] = "\x01\x59\x5b", + [0x23fa] = "\x01\x59\x57", [0x23fb] = "\x02\x34\x30", + [0x23fc] = "\x02\x34\x46", [0x23fd] = "\x02\x34\x38", + [0x23fe] = "\x03\x34\x6f", [0x23ff] = "\x03\x34\x75", + [0x2400] = "\x02\x34\x36", [0x2401] = "\x02\x34\x49", + [0x2402] = "\x01\x59\x58", [0x2403] = "\x03\x34\x76", + [0x2404] = "\x02\x34\x4f", [0x2405] = "\x01\x59\x52", + [0x2406] = "\x01\x59\x54", [0x2407] = "\x02\x34\x3e", + [0x2408] = "\x02\x34\x39", [0x2409] = "\x01\x54\x6d", + [0x240a] = "\x01\x59\x53", [0x240b] = "\x02\x34\x3b", + [0x240c] = "\x02\x34\x4a", [0x240d] = "\x02\x34\x4e", + [0x240e] = "\x02\x34\x45", [0x240f] = "\x03\x64\x61", + [0x2410] = "\x02\x34\x47", [0x2412] = "\x03\x64\x62", + [0x2413] = "\x03\x64\x63", [0x2414] = "\x02\x34\x31", + [0x2417] = "\x04\x36\x69", [0x2418] = "\x03\x3a\x4a", + [0x2419] = "\x02\x3a\x63", [0x241a] = "\x03\x3a\x45", + [0x241b] = "\x02\x3a\x6c", [0x241c] = "\x02\x3a\x6b", + [0x241d] = "\x01\x5e\x60", [0x241e] = "\x02\x3a\x64", + [0x241f] = "\x03\x3a\x47", [0x2420] = "\x01\x5e\x61", + [0x2421] = "\x01\x5e\x5f", [0x2422] = "\x03\x3a\x50", + [0x2423] = "\x02\x3a\x66", [0x2424] = "\x01\x5e\x5c", + [0x2425] = "\x02\x3a\x6a", [0x2426] = "\x03\x3a\x4c", + [0x2427] = "\x02\x3a\x65", [0x2428] = "\x02\x3a\x67", + [0x2429] = "\x02\x3a\x61", [0x242a] = "\x01\x5e\x5a", + [0x242b] = "\x04\x36\x6f", [0x242c] = "\x02\x3a\x74", + [0x242d] = "\x02\x3a\x73", [0x242e] = "\x02\x3a\x70", + [0x242f] = "\x01\x5e\x59", [0x2430] = "\x01\x5e\x5d", + [0x2431] = "\x01\x5e\x5e", [0x2432] = "\x02\x2e\x4d", + [0x2433] = "\x02\x3a\x6d", [0x2434] = "\x01\x5e\x5b", + [0x2435] = "\x01\x59\x59", [0x2436] = "\x02\x3a\x6f", + [0x2437] = "\x02\x3a\x62", [0x2438] = "\x02\x3a\x72", + [0x2439] = "\x02\x3a\x71", [0x243a] = "\x03\x3a\x4e", + [0x243b] = "\x02\x3a\x75", [0x243c] = "\x03\x3a\x49", + [0x243d] = "\x02\x42\x36", [0x243e] = "\x03\x3a\x4b", + [0x243f] = "\x02\x3a\x6e", [0x2440] = "\x0f\x39\x7d", + [0x2442] = "\x0f\x39\x7e", [0x2443] = "\x04\x3c\x57", + [0x2444] = "\x04\x36\x6d", [0x2445] = "\x04\x36\x71", + [0x2447] = "\x03\x64\x64", [0x2448] = "\x02\x3a\x69", + [0x2449] = "\x02\x42\x2e", [0x244a] = "\x01\x63\x5b", + [0x244b] = "\x01\x63\x5e", [0x244c] = "\x01\x63\x59", + [0x244d] = "\x02\x42\x2d", [0x244e] = "\x02\x42\x31", + [0x244f] = "\x02\x42\x2c", [0x2450] = "\x03\x40\x57", + [0x2451] = "\x01\x63\x53", [0x2452] = "\x01\x63\x5d", + [0x2453] = "\x02\x42\x29", [0x2454] = "\x01\x63\x57", + [0x2455] = "\x02\x42\x30", [0x2456] = "\x03\x40\x5b", + [0x2457] = "\x01\x63\x55", [0x2458] = "\x01\x63\x54", + [0x2459] = "\x02\x42\x33", [0x245a] = "\x01\x63\x56", + [0x245b] = "\x02\x42\x35", [0x245c] = "\x03\x40\x56", + [0x245d] = "\x02\x42\x32", [0x245e] = "\x01\x63\x52", + [0x245f] = "\x03\x40\x5e", [0x2460] = "\x03\x40\x5c", + [0x2461] = "\x03\x40\x58", [0x2462] = "\x01\x63\x5c", + [0x2463] = "\x02\x42\x37", [0x2464] = "\x02\x42\x2b", + [0x2465] = "\x02\x42\x34", [0x2466] = "\x03\x40\x5d", + [0x2467] = "\x04\x3c\x53", [0x2468] = "\x02\x42\x2a", + [0x2469] = "\x03\x40\x5a", [0x246a] = "\x03\x40\x59", + [0x246b] = "\x01\x63\x58", [0x246c] = "\x03\x40\x54", + [0x246d] = "\x01\x63\x5a", [0x246f] = "\x02\x42\x2f", + [0x2471] = "\x02\x42\x38", [0x2472] = "\x03\x46\x43", + [0x2473] = "\x03\x46\x3e", [0x2474] = "\x02\x49\x44", + [0x2475] = "\x01\x68\x38", [0x2476] = "\x02\x49\x4a", + [0x2477] = "\x03\x46\x42", [0x2478] = "\x03\x46\x3c", + [0x2479] = "\x01\x68\x3d", [0x247a] = "\x02\x49\x46", + [0x247b] = "\x02\x49\x4d", [0x247c] = "\x02\x49\x3e", + [0x247d] = "\x01\x68\x3f", [0x247e] = "\x01\x68\x39", + [0x247f] = "\x02\x49\x43", [0x2480] = "\x01\x6c\x3f", + [0x2481] = "\x02\x49\x42", [0x2482] = "\x02\x49\x4b", + [0x2483] = "\x01\x68\x3a", [0x2484] = "\x03\x46\x3d", + [0x2485] = "\x01\x68\x3e", [0x2486] = "\x02\x49\x41", + [0x2487] = "\x02\x49\x47", [0x2488] = "\x02\x49\x4c", + [0x2489] = "\x02\x49\x3d", [0x248a] = "\x01\x68\x3c", + [0x248b] = "\x02\x49\x45", [0x248c] = "\x03\x46\x3a", + [0x248d] = "\x03\x46\x45", [0x248e] = "\x02\x49\x49", + [0x248f] = "\x02\x49\x4f", [0x2490] = "\x02\x49\x3f", + [0x2491] = "\x02\x49\x48", [0x2492] = "\x03\x46\x38", + [0x2493] = "\x01\x68\x3b", [0x2494] = "\x02\x49\x4e", + [0x2495] = "\x03\x46\x41", [0x2496] = "\x03\x46\x44", + [0x2497] = "\x03\x46\x40", [0x2498] = "\x02\x49\x40", + [0x249a] = "\x04\x42\x59", [0x249b] = "\x03\x64\x65", + [0x249c] = "\x01\x6c\x43", [0x249d] = "\x02\x4f\x72", + [0x249e] = "\x01\x6c\x41", [0x249f] = "\x01\x6c\x40", + [0x24a0] = "\x02\x4f\x74", [0x24a1] = "\x02\x4f\x79", + [0x24a2] = "\x03\x4b\x46", [0x24a3] = "\x02\x4f\x75", + [0x24a4] = "\x03\x4b\x50", [0x24a5] = "\x02\x4f\x78", + [0x24a6] = "\x01\x6c\x46", [0x24a7] = "\x03\x4b\x51", + [0x24a8] = "\x01\x70\x2e", [0x24a9] = "\x01\x6c\x45", + [0x24aa] = "\x03\x4b\x4b", [0x24ab] = "\x02\x4f\x71", + [0x24ac] = "\x02\x4f\x77", [0x24ad] = "\x03\x46\x3f", + [0x24ae] = "\x01\x6c\x44", [0x24af] = "\x02\x4f\x76", + [0x24b0] = "\x03\x4b\x4d", [0x24b1] = "\x02\x4f\x73", + [0x24b2] = "\x03\x4b\x49", [0x24b3] = "\x01\x6c\x42", + [0x24b4] = "\x03\x4b\x4f", [0x24b5] = "\x03\x4b\x4c", + [0x24b7] = "\x03\x4b\x47", [0x24ba] = "\x02\x56\x57", + [0x24bb] = "\x03\x50\x4a", [0x24bc] = "\x02\x56\x59", + [0x24bd] = "\x02\x56\x54", [0x24be] = "\x01\x70\x4a", + [0x24bf] = "\x02\x56\x56", [0x24c0] = "\x03\x50\x4b", + [0x24c1] = "\x01\x70\x49", [0x24c2] = "\x02\x56\x58", + [0x24c3] = "\x03\x50\x48", [0x24c4] = "\x03\x50\x4c", + [0x24c5] = "\x01\x70\x4c", [0x24c6] = "\x02\x56\x5a", + [0x24c7] = "\x01\x70\x4b", [0x24c8] = "\x02\x56\x53", + [0x24c9] = "\x02\x56\x55", [0x24ca] = "\x03\x50\x49", + [0x24cd] = "\x03\x54\x4b", [0x24ce] = "\x01\x73\x4e", + [0x24cf] = "\x02\x5c\x58", [0x24d0] = "\x03\x54\x4c", + [0x24d1] = "\x01\x73\x4d", [0x24d2] = "\x02\x5c\x59", + [0x24d3] = "\x01\x73\x4c", [0x24d4] = "\x02\x5c\x57", + [0x24d5] = "\x01\x73\x4b", [0x24d6] = "\x02\x5c\x56", + [0x24d8] = "\x01\x76\x3f", [0x24d9] = "\x01\x76\x3e", + [0x24da] = "\x02\x65\x42", [0x24db] = "\x02\x65\x44", + [0x24dc] = "\x03\x5a\x2f", [0x24dd] = "\x02\x65\x43", + [0x24de] = "\x01\x78\x2e", [0x24df] = "\x01\x78\x2f", + [0x24e0] = "\x03\x5a\x2e", [0x24e1] = "\x07\x46\x45", + [0x24e2] = "\x01\x78\x30", [0x24e3] = "\x02\x68\x6e", + [0x24e4] = "\x01\x79\x66", [0x24e6] = "\x03\x5e\x28", + [0x24e7] = "\x02\x6f\x22", [0x24e8] = "\x02\x6f\x21", + [0x24e9] = "\x01\x7c\x5e", [0x24eb] = "\x01\x44\x49", + [0x24ec] = "\x01\x45\x31", [0x24ee] = "\x03\x23\x43", + [0x24ef] = "\x01\x49\x67", [0x24f0] = "\x03\x25\x45", + [0x24f1] = "\x03\x25\x43", [0x24f2] = "\x03\x25\x44", + [0x24f3] = "\x03\x28\x2d", [0x24f4] = "\x02\x29\x60", + [0x24f5] = "\x03\x2b\x77", [0x24f7] = "\x03\x34\x77", + [0x24f9] = "\x01\x5e\x62", [0x24fa] = "\x01\x5e\x63", + [0x24fb] = "\x03\x3a\x52", [0x24fc] = "\x02\x42\x39", + [0x24fd] = "\x01\x68\x40", [0x24fe] = "\x02\x49\x50", + [0x24ff] = "\x02\x4f\x7a", [0x2500] = "\x03\x64\x66", + [0x2501] = "\x03\x50\x4d", [0x2502] = "\x03\x21\x39", + [0x2503] = "\x02\x21\x3a", [0x2504] = "\x03\x22\x35", + [0x2505] = "\x03\x23\x44", [0x2506] = "\x02\x23\x50", + [0x2508] = "\x03\x2b\x7a", [0x2509] = "\x03\x2b\x79", + [0x250a] = "\x03\x21\x3a", [0x250b] = "\x03\x25\x46", + [0x250c] = "\x02\x26\x23", [0x250d] = "\x02\x29\x61", + [0x250e] = "\x02\x2e\x5b", [0x250f] = "\x01\x54\x6e", + [0x2510] = "\x03\x46\x46", [0x2511] = "\x03\x65\x60", + [0x2512] = "\x02\x65\x45", [0x2513] = "\x04\x5f\x52", + [0x2514] = "\x01\x7a\x67", [0x2515] = "\x01\x44\x4a", + [0x2516] = "\x01\x46\x40", [0x2517] = "\x02\x21\x51", + [0x2518] = "\x03\x22\x36", [0x2519] = "\x01\x47\x68", + [0x251a] = "\x01\x47\x69", [0x251b] = "\x04\x22\x52", + [0x251c] = "\x01\x4c\x5f", [0x251d] = "\x04\x25\x70", + [0x251f] = "\x03\x34\x79", [0x2520] = "\x01\x59\x5c", + [0x2521] = "\x05\x37\x3d", [0x2522] = "\x01\x68\x42", + [0x2523] = "\x03\x40\x5f", [0x2524] = "\x01\x68\x43", + [0x2525] = "\x01\x68\x41", [0x2526] = "\x03\x4b\x53", + [0x2527] = "\x01\x44\x4b", [0x2528] = "\x04\x21\x49", + [0x2529] = "\x01\x45\x32", [0x252a] = "\x01\x45\x34", + [0x252b] = "\x01\x45\x33", [0x252c] = "\x02\x21\x3b", + [0x252d] = "\x01\x45\x35", [0x252e] = "\x01\x46\x41", + [0x252f] = "\x02\x21\x52", [0x2530] = "\x03\x22\x38", + [0x2531] = "\x01\x46\x42", [0x2532] = "\x03\x22\x37", + [0x2533] = "\x04\x21\x72", [0x2534] = "\x03\x22\x39", + [0x2535] = "\x04\x22\x53", [0x2536] = "\x03\x23\x47", + [0x2537] = "\x01\x47\x6a", [0x2538] = "\x01\x47\x6b", + [0x253c] = "\x02\x22\x2b", [0x253d] = "\x03\x25\x49", + [0x253e] = "\x01\x49\x68", [0x253f] = "\x04\x23\x62", + [0x2540] = "\x02\x23\x51", [0x2543] = "\x04\x25\x75", + [0x2544] = "\x01\x4c\x63", [0x2545] = "\x02\x26\x24", + [0x2546] = "\x04\x25\x72", [0x2547] = "\x01\x4c\x61", + [0x2548] = "\x01\x4c\x62", [0x2549] = "\x01\x4c\x60", + [0x254a] = "\x02\x2e\x5c", [0x254b] = "\x03\x28\x2e", + [0x254c] = "\x03\x28\x2f", [0x254d] = "\x03\x64\x67", + [0x254e] = "\x01\x50\x58", [0x254f] = "\x01\x50\x57", + [0x2550] = "\x01\x50\x59", [0x2551] = "\x01\x50\x56", + [0x2552] = "\x03\x2b\x7c", [0x2553] = "\x02\x29\x62", + [0x2554] = "\x01\x4c\x64", [0x2555] = "\x01\x50\x55", + [0x2557] = "\x01\x54\x6f", [0x2558] = "\x01\x54\x70", + [0x2559] = "\x04\x2c\x38", [0x255a] = "\x01\x54\x71", + [0x255b] = "\x03\x34\x7b", [0x255c] = "\x02\x34\x50", + [0x255d] = "\x03\x34\x7c", [0x255e] = "\x03\x34\x7d", + [0x255f] = "\x04\x31\x26", [0x2560] = "\x01\x5e\x64", + [0x2561] = "\x02\x3a\x76", [0x2562] = "\x01\x59\x5d", + [0x2563] = "\x03\x3a\x53", [0x2564] = "\x03\x3a\x54", + [0x2565] = "\x04\x36\x79", [0x2566] = "\x03\x40\x60", + [0x2567] = "\x01\x63\x5f", [0x2568] = "\x03\x40\x61", + [0x2569] = "\x01\x68\x45", [0x256a] = "\x01\x68\x44", + [0x256b] = "\x02\x49\x51", [0x256c] = "\x03\x46\x48", + [0x256d] = "\x01\x6c\x47", [0x256e] = "\x01\x70\x4d", + [0x256f] = "\x04\x4f\x7b", [0x2570] = "\x02\x61\x4c", + [0x2571] = "\x02\x6d\x48", [0x2572] = "\x02\x6f\x23", + [0x2573] = "\x01\x44\x4c", [0x2574] = "\x01\x46\x43", + [0x2575] = "\x03\x22\x3b", [0x2576] = "\x01\x46\x44", + [0x2577] = "\x02\x22\x31", [0x2578] = "\x01\x47\x6d", + [0x2579] = "\x01\x47\x70", [0x257a] = "\x03\x23\x4b", + [0x257b] = "\x02\x22\x2f", [0x257c] = "\x02\x22\x2d", + [0x257d] = "\x01\x47\x6f", [0x257e] = "\x02\x22\x30", + [0x257f] = "\x02\x22\x32", [0x2580] = "\x02\x22\x2c", + [0x2581] = "\x01\x47\x72", [0x2582] = "\x01\x47\x71", + [0x2583] = "\x01\x47\x6e", [0x2584] = "\x01\x47\x6c", + [0x2585] = "\x02\x22\x2e", [0x2586] = "\x03\x23\x4d", + [0x2589] = "\x03\x25\x55", [0x258a] = "\x01\x49\x73", + [0x258b] = "\x04\x23\x67", [0x258c] = "\x03\x25\x4c", + [0x258d] = "\x01\x49\x70", [0x258e] = "\x02\x23\x56", + [0x258f] = "\x02\x23\x59", [0x2590] = "\x02\x23\x58", + [0x2591] = "\x04\x23\x69", [0x2592] = "\x01\x49\x6a", + [0x2593] = "\x01\x49\x72", [0x2594] = "\x03\x25\x4b", + [0x2595] = "\x04\x23\x6a", [0x2596] = "\x01\x49\x6f", + [0x2597] = "\x02\x23\x55", [0x2598] = "\x02\x23\x53", + [0x2599] = "\x01\x49\x6e", [0x259a] = "\x03\x25\x56", + [0x259b] = "\x03\x25\x53", [0x259c] = "\x03\x25\x4e", + [0x259d] = "\x01\x49\x69", [0x259e] = "\x01\x49\x6c", + [0x259f] = "\x03\x25\x51", [0x25a0] = "\x02\x23\x54", + [0x25a1] = "\x02\x23\x5b", [0x25a2] = "\x02\x23\x57", + [0x25a3] = "\x01\x49\x6d", [0x25a4] = "\x01\x49\x71", + [0x25a5] = "\x01\x49\x74", [0x25a6] = "\x02\x23\x52", + [0x25a7] = "\x02\x23\x5a", [0x25a8] = "\x01\x49\x6b", + [0x25ac] = "\x03\x28\x41", [0x25ad] = "\x03\x28\x33", + [0x25ae] = "\x01\x4c\x69", [0x25af] = "\x01\x4c\x71", + [0x25b0] = "\x03\x28\x38", [0x25b1] = "\x02\x26\x30", + [0x25b2] = "\x02\x26\x29", [0x25b3] = "\x01\x4c\x72", + [0x25b4] = "\x02\x26\x34", [0x25b5] = "\x02\x26\x25", + [0x25b6] = "\x02\x26\x2c", [0x25b7] = "\x03\x28\x45", + [0x25b8] = "\x03\x28\x40", [0x25b9] = "\x01\x4c\x68", + [0x25ba] = "\x02\x26\x26", [0x25bb] = "\x01\x4c\x66", + [0x25bc] = "\x02\x26\x2d", [0x25bd] = "\x02\x26\x31", + [0x25be] = "\x01\x4c\x65", [0x25bf] = "\x03\x28\x3d", + [0x25c0] = "\x02\x26\x32", [0x25c1] = "\x02\x26\x2b", + [0x25c2] = "\x03\x28\x37", [0x25c3] = "\x02\x26\x2e", + [0x25c4] = "\x03\x28\x35", [0x25c5] = "\x01\x4c\x74", + [0x25c6] = "\x01\x4c\x6b", [0x25c7] = "\x02\x26\x35", + [0x25c8] = "\x02\x26\x33", [0x25c9] = "\x03\x28\x3f", + [0x25ca] = "\x01\x4c\x70", [0x25cb] = "\x01\x4c\x6e", + [0x25cc] = "\x02\x26\x2a", [0x25cd] = "\x01\x4c\x6d", + [0x25ce] = "\x02\x26\x28", [0x25cf] = "\x02\x26\x27", + [0x25d0] = "\x01\x4c\x6c", [0x25d1] = "\x01\x4c\x6a", + [0x25d2] = "\x01\x4c\x73", [0x25d3] = "\x01\x4c\x6f", + [0x25d4] = "\x01\x4c\x67", [0x25d5] = "\x03\x2c\x26", + [0x25d6] = "\x02\x26\x2f", [0x25d7] = "\x03\x28\x46", + [0x25d8] = "\x01\x50\x5b", [0x25d9] = "\x03\x2c\x2d", + [0x25da] = "\x01\x50\x62", [0x25db] = "\x02\x29\x70", + [0x25dc] = "\x01\x50\x5a", [0x25dd] = "\x02\x29\x68", + [0x25de] = "\x02\x29\x64", [0x25df] = "\x03\x2c\x21", + [0x25e0] = "\x02\x29\x74", [0x25e1] = "\x02\x29\x63", + [0x25e2] = "\x03\x2c\x2c", [0x25e3] = "\x01\x50\x5d", + [0x25e4] = "\x02\x29\x6d", [0x25e5] = "\x01\x50\x60", + [0x25e6] = "\x01\x50\x63", [0x25e7] = "\x03\x2c\x2e", + [0x25e8] = "\x01\x50\x5e", [0x25e9] = "\x02\x29\x71", + [0x25ea] = "\x01\x50\x61", [0x25eb] = "\x03\x2c\x23", + [0x25ec] = "\x01\x54\x78", [0x25ed] = "\x02\x29\x77", + [0x25ee] = "\x02\x29\x65", [0x25ef] = "\x03\x2c\x24", + [0x25f0] = "\x03\x2c\x25", [0x25f1] = "\x02\x29\x67", + [0x25f2] = "\x02\x29\x6e", [0x25f3] = "\x02\x29\x72", + [0x25f4] = "\x02\x29\x76", [0x25f5] = "\x02\x29\x73", + [0x25f6] = "\x02\x29\x6c", [0x25f7] = "\x02\x29\x6f", + [0x25f8] = "\x03\x2c\x2b", [0x25f9] = "\x03\x2c\x29", + [0x25fa] = "\x02\x29\x69", [0x25fb] = "\x01\x50\x65", + [0x25fc] = "\x02\x29\x6b", [0x25fd] = "\x02\x29\x6a", + [0x25fe] = "\x02\x29\x75", [0x25ff] = "\x01\x50\x5c", + [0x2600] = "\x02\x29\x66", [0x2601] = "\x01\x50\x64", + [0x2602] = "\x03\x2c\x2a", [0x2603] = "\x01\x50\x5f", + [0x2604] = "\x03\x2c\x28", [0x2609] = "\x01\x54\x7e", + [0x260a] = "\x02\x2e\x64", [0x260b] = "\x03\x30\x40", + [0x260c] = "\x01\x54\x7d", [0x260d] = "\x03\x2c\x27", + [0x260e] = "\x04\x2c\x40", [0x260f] = "\x02\x2e\x62", + [0x2610] = "\x04\x2c\x3e", [0x2611] = "\x01\x54\x72", + [0x2612] = "\x03\x30\x4f", [0x2613] = "\x01\x54\x77", + [0x2614] = "\x03\x30\x4a", [0x2615] = "\x02\x2e\x61", + [0x2616] = "\x02\x2e\x5e", [0x2617] = "\x02\x2e\x63", + [0x2618] = "\x01\x54\x73", [0x2619] = "\x02\x2e\x5d", + [0x261a] = "\x03\x30\x4e", [0x261b] = "\x01\x54\x76", + [0x261c] = "\x01\x54\x74", [0x261d] = "\x03\x30\x3e", + [0x261e] = "\x02\x2e\x65", [0x261f] = "\x01\x54\x75", + [0x2620] = "\x01\x54\x79", [0x2621] = "\x03\x30\x3b", + [0x2622] = "\x03\x30\x45", [0x2623] = "\x01\x54\x7a", + [0x2624] = "\x03\x30\x48", [0x2625] = "\x01\x54\x7c", + [0x2626] = "\x03\x30\x52", [0x2627] = "\x04\x2c\x39", + [0x2628] = "\x04\x2c\x3d", [0x2629] = "\x01\x54\x7b", + [0x262a] = "\x03\x30\x3c", [0x262b] = "\x03\x35\x22", + [0x262c] = "\x03\x35\x38", [0x262d] = "\x02\x2e\x5f", + [0x262e] = "\x02\x2e\x60", [0x262f] = "\x03\x30\x4d", + [0x2630] = "\x06\x36\x57", [0x2631] = "\x03\x30\x4b", + [0x2633] = "\x02\x2e\x66", [0x2635] = "\x02\x34\x57", + [0x2636] = "\x01\x59\x5e", [0x2637] = "\x02\x3b\x26", + [0x2638] = "\x02\x34\x56", [0x2639] = "\x02\x34\x69", + [0x263a] = "\x03\x35\x28", [0x263b] = "\x03\x35\x24", + [0x263c] = "\x01\x59\x64", [0x263d] = "\x03\x35\x31", + [0x263e] = "\x02\x34\x67", [0x263f] = "\x03\x35\x33", + [0x2640] = "\x01\x59\x63", [0x2641] = "\x01\x59\x5f", + [0x2642] = "\x02\x34\x70", [0x2643] = "\x02\x34\x60", + [0x2644] = "\x02\x34\x63", [0x2645] = "\x03\x35\x2e", + [0x2646] = "\x01\x59\x67", [0x2647] = "\x02\x34\x6d", + [0x2648] = "\x02\x34\x65", [0x2649] = "\x01\x59\x60", + [0x264a] = "\x01\x59\x68", [0x264b] = "\x03\x35\x2a", + [0x264c] = "\x02\x34\x6a", [0x264d] = "\x02\x34\x68", + [0x264e] = "\x03\x35\x2f", [0x264f] = "\x03\x35\x3b", + [0x2650] = "\x02\x34\x59", [0x2651] = "\x02\x34\x6e", + [0x2652] = "\x02\x34\x62", [0x2653] = "\x02\x34\x5d", + [0x2654] = "\x03\x35\x3a", [0x2655] = "\x02\x34\x53", + [0x2656] = "\x02\x34\x6f", [0x2657] = "\x02\x34\x5f", + [0x2658] = "\x02\x34\x52", [0x2659] = "\x03\x35\x39", + [0x265a] = "\x01\x59\x66", [0x265b] = "\x02\x34\x64", + [0x265c] = "\x02\x34\x71", [0x265d] = "\x02\x34\x61", + [0x265e] = "\x02\x34\x55", [0x265f] = "\x02\x34\x5a", + [0x2660] = "\x02\x34\x51", [0x2661] = "\x03\x35\x27", + [0x2662] = "\x01\x59\x65", [0x2663] = "\x03\x35\x3c", + [0x2664] = "\x02\x34\x5e", [0x2665] = "\x02\x34\x5b", + [0x2666] = "\x01\x59\x61", [0x2667] = "\x02\x34\x54", + [0x2668] = "\x03\x35\x30", [0x2669] = "\x02\x34\x6c", + [0x266a] = "\x01\x59\x62", [0x266b] = "\x03\x35\x2b", + [0x266c] = "\x02\x34\x5c", [0x266d] = "\x02\x34\x58", + [0x266e] = "\x03\x35\x29", [0x266f] = "\x03\x35\x34", + [0x2670] = "\x02\x34\x6b", [0x2671] = "\x03\x35\x32", + [0x2672] = "\x0f\x33\x73", [0x2673] = "\x03\x35\x37", + [0x2675] = "\x03\x35\x35", [0x2677] = "\x01\x5e\x65", + [0x2678] = "\x02\x3a\x7d", [0x2679] = "\x03\x3a\x75", + [0x267a] = "\x02\x3a\x7a", [0x267b] = "\x02\x3b\x2d", + [0x267c] = "\x02\x3b\x21", [0x267d] = "\x02\x3b\x2e", + [0x267e] = "\x03\x3a\x7c", [0x267f] = "\x01\x5e\x67", + [0x2680] = "\x03\x3a\x63", [0x2681] = "\x03\x3a\x61", + [0x2682] = "\x03\x3a\x58", [0x2683] = "\x02\x3b\x2a", + [0x2684] = "\x02\x3b\x27", [0x2685] = "\x03\x3a\x5b", + [0x2686] = "\x03\x3a\x77", [0x2687] = "\x03\x3a\x72", + [0x2688] = "\x03\x3a\x59", [0x2689] = "\x03\x3a\x60", + [0x268a] = "\x02\x3b\x28", [0x268b] = "\x02\x3b\x2b", + [0x268c] = "\x02\x3b\x2f", [0x268d] = "\x03\x3a\x7b", + [0x268e] = "\x02\x34\x66", [0x268f] = "\x02\x3b\x31", + [0x2690] = "\x02\x42\x4d", [0x2691] = "\x03\x3a\x66", + [0x2692] = "\x01\x5e\x68", [0x2693] = "\x02\x3b\x32", + [0x2694] = "\x02\x3a\x78", [0x2695] = "\x02\x3b\x24", + [0x2696] = "\x03\x3a\x62", [0x2697] = "\x02\x3b\x29", + [0x2698] = "\x03\x3a\x5c", [0x2699] = "\x03\x3a\x5e", + [0x269a] = "\x01\x5e\x66", [0x269b] = "\x01\x5e\x69", + [0x269c] = "\x02\x3b\x30", [0x269d] = "\x02\x3b\x33", + [0x269e] = "\x02\x3a\x7c", [0x269f] = "\x02\x3a\x79", + [0x26a0] = "\x03\x3a\x73", [0x26a1] = "\x03\x3a\x5a", + [0x26a2] = "\x02\x3a\x7b", [0x26a3] = "\x03\x3a\x57", + [0x26a4] = "\x03\x3a\x7a", [0x26a5] = "\x02\x3b\x22", + [0x26a6] = "\x02\x3a\x7e", [0x26a7] = "\x01\x5e\x6a", + [0x26a8] = "\x03\x3a\x56", [0x26a9] = "\x02\x3b\x2c", + [0x26aa] = "\x03\x3a\x79", [0x26ab] = "\x03\x3a\x78", + [0x26ac] = "\x02\x3b\x23", [0x26ae] = "\x02\x3b\x25", + [0x26af] = "\x02\x3a\x77", [0x26b0] = "\x02\x42\x41", + [0x26b1] = "\x02\x42\x3f", [0x26b2] = "\x01\x63\x68", + [0x26b3] = "\x01\x63\x66", [0x26b4] = "\x02\x42\x49", + [0x26b5] = "\x02\x42\x40", [0x26b6] = "\x02\x42\x4a", + [0x26b7] = "\x02\x42\x46", [0x26b8] = "\x02\x42\x3e", + [0x26b9] = "\x02\x42\x4c", [0x26ba] = "\x02\x42\x3d", + [0x26bb] = "\x02\x42\x44", [0x26bc] = "\x01\x63\x65", + [0x26bd] = "\x01\x63\x64", [0x26be] = "\x01\x63\x63", + [0x26bf] = "\x02\x42\x42", [0x26c0] = "\x02\x42\x47", + [0x26c1] = "\x01\x63\x60", [0x26c2] = "\x01\x63\x67", + [0x26c3] = "\x03\x40\x67", [0x26c4] = "\x02\x42\x3b", + [0x26c5] = "\x03\x40\x66", [0x26c6] = "\x02\x42\x45", + [0x26c7] = "\x02\x42\x3a", [0x26c8] = "\x02\x42\x43", + [0x26c9] = "\x01\x63\x61", [0x26ca] = "\x02\x42\x48", + [0x26cb] = "\x02\x42\x3c", [0x26cc] = "\x01\x63\x62", + [0x26cd] = "\x02\x42\x4b", [0x26ce] = "\x03\x40\x64", + [0x26cf] = "\x03\x3a\x6b", [0x26d0] = "\x03\x40\x6a", + [0x26d1] = "\x03\x64\x68", [0x26d3] = "\x03\x64\x69", + [0x26d5] = "\x02\x49\x55", [0x26d6] = "\x01\x68\x4a", + [0x26d7] = "\x01\x68\x49", [0x26d8] = "\x01\x68\x4b", + [0x26d9] = "\x02\x49\x61", [0x26da] = "\x02\x49\x57", + [0x26db] = "\x02\x49\x5d", [0x26dc] = "\x02\x49\x52", + [0x26dd] = "\x02\x49\x60", [0x26de] = "\x02\x49\x5f", + [0x26df] = "\x02\x49\x63", [0x26e0] = "\x02\x49\x5c", + [0x26e1] = "\x01\x68\x46", [0x26e2] = "\x02\x49\x5b", + [0x26e3] = "\x01\x68\x4c", [0x26e4] = "\x03\x46\x4c", + [0x26e5] = "\x02\x49\x54", [0x26e6] = "\x01\x68\x47", + [0x26e7] = "\x03\x46\x4a", [0x26e8] = "\x02\x49\x62", + [0x26e9] = "\x01\x68\x48", [0x26ea] = "\x02\x49\x56", + [0x26eb] = "\x02\x49\x59", [0x26ec] = "\x02\x49\x5e", + [0x26ed] = "\x02\x49\x58", [0x26ee] = "\x02\x49\x53", + [0x26ef] = "\x03\x46\x4f", [0x26f0] = "\x03\x46\x53", + [0x26f3] = "\x02\x49\x5a", [0x26f4] = "\x02\x4f\x7c", + [0x26f5] = "\x01\x6c\x4b", [0x26f6] = "\x02\x50\x21", + [0x26f7] = "\x02\x4f\x7e", [0x26f8] = "\x02\x50\x23", + [0x26f9] = "\x02\x50\x25", [0x26fa] = "\x03\x4b\x5c", + [0x26fb] = "\x01\x6c\x49", [0x26fc] = "\x03\x4b\x58", + [0x26fd] = "\x02\x4f\x7d", [0x26fe] = "\x03\x4b\x54", + [0x26ff] = "\x02\x4f\x7b", [0x2700] = "\x03\x4b\x5e", + [0x2701] = "\x02\x50\x26", [0x2702] = "\x02\x50\x24", + [0x2703] = "\x02\x50\x22", [0x2704] = "\x03\x4b\x56", + [0x2705] = "\x02\x50\x28", [0x2706] = "\x03\x4b\x5a", + [0x2707] = "\x02\x50\x27", [0x2708] = "\x01\x6c\x4d", + [0x2709] = "\x01\x6c\x48", [0x270a] = "\x03\x4b\x5b", + [0x270b] = "\x01\x6c\x4a", [0x270c] = "\x01\x6c\x4c", + [0x270d] = "\x03\x4b\x5d", [0x270e] = "\x03\x4b\x5f", + [0x270f] = "\x02\x50\x29", [0x2710] = "\x02\x56\x61", + [0x2711] = "\x03\x50\x50", [0x2712] = "\x03\x50\x53", + [0x2713] = "\x02\x56\x60", [0x2714] = "\x02\x56\x5f", + [0x2715] = "\x03\x50\x51", [0x2716] = "\x02\x56\x62", + [0x2717] = "\x02\x56\x5b", [0x2718] = "\x03\x50\x4f", + [0x2719] = "\x02\x56\x5c", [0x271a] = "\x02\x56\x64", + [0x271b] = "\x02\x56\x5d", [0x271c] = "\x03\x50\x54", + [0x271d] = "\x01\x70\x4e", [0x271e] = "\x02\x56\x66", + [0x271f] = "\x03\x50\x4e", [0x2720] = "\x02\x56\x65", + [0x2721] = "\x02\x56\x5e", [0x2722] = "\x03\x50\x56", + [0x2723] = "\x02\x5c\x5d", [0x2724] = "\x01\x73\x51", + [0x2725] = "\x02\x5c\x5b", [0x2726] = "\x02\x5c\x60", + [0x2727] = "\x02\x5c\x5f", [0x2728] = "\x02\x56\x63", + [0x2729] = "\x03\x54\x50", [0x272a] = "\x01\x73\x50", + [0x272b] = "\x03\x54\x4e", [0x272c] = "\x02\x5c\x5e", + [0x272d] = "\x02\x5c\x5a", [0x272e] = "\x02\x5c\x62", + [0x272f] = "\x02\x5c\x61", [0x2730] = "\x01\x73\x4f", + [0x2731] = "\x03\x54\x52", [0x2732] = "\x02\x5c\x5c", + [0x2733] = "\x03\x54\x4f", [0x2734] = "\x01\x70\x4f", + [0x2735] = "\x03\x54\x51", [0x2737] = "\x03\x54\x53", + [0x2738] = "\x01\x76\x40", [0x2739] = "\x03\x5a\x31", + [0x273a] = "\x03\x57\x61", [0x273b] = "\x03\x57\x5e", + [0x273c] = "\x02\x61\x4d", [0x273d] = "\x02\x65\x46", + [0x273e] = "\x02\x65\x47", [0x273f] = "\x02\x65\x48", + [0x2740] = "\x01\x79\x67", [0x2741] = "\x04\x63\x34", + [0x2742] = "\x03\x5c\x36", [0x2743] = "\x01\x79\x68", + [0x2744] = "\x03\x5c\x39", [0x2745] = "\x02\x68\x6f", + [0x2746] = "\x03\x5c\x3a", [0x2747] = "\x02\x6b\x56", + [0x2748] = "\x02\x6b\x55", [0x2749] = "\x03\x5e\x29", + [0x274a] = "\x03\x5f\x42", [0x274b] = "\x02\x6d\x49", + [0x274c] = "\x02\x6d\x4a", [0x274d] = "\x02\x6f\x24", + [0x274e] = "\x02\x70\x35", [0x274f] = "\x03\x60\x73", + [0x2750] = "\x01\x44\x4d", [0x2751] = "\x01\x44\x4e", + [0x2752] = "\x04\x21\x32", [0x2753] = "\x01\x44\x4f", + [0x2754] = "\x01\x45\x36", [0x2755] = "\x01\x46\x45", + [0x2756] = "\x02\x22\x33", [0x2757] = "\x01\x47\x73", + [0x2758] = "\x01\x47\x74", [0x275a] = "\x01\x49\x77", + [0x275b] = "\x01\x49\x78", [0x275c] = "\x01\x49\x76", + [0x275d] = "\x01\x49\x75", [0x275f] = "\x01\x4c\x75", + [0x2760] = "\x03\x28\x48", [0x2761] = "\x04\x26\x22", + [0x2762] = "\x02\x26\x36", [0x2763] = "\x01\x4c\x77", + [0x2764] = "\x01\x4c\x76", [0x2765] = "\x02\x26\x37", + [0x2766] = "\x04\x26\x23", [0x2767] = "\x03\x64\x6a", + [0x2768] = "\x04\x28\x6e", [0x2769] = "\x01\x50\x66", + [0x276a] = "\x03\x2c\x2f", [0x276b] = "\x01\x55\x21", + [0x276c] = "\x02\x2e\x67", [0x276e] = "\x02\x34\x73", + [0x276f] = "\x04\x31\x2c", [0x2770] = "\x01\x59\x69", + [0x2771] = "\x01\x5e\x6c", [0x2772] = "\x02\x34\x72", + [0x2773] = "\x01\x5e\x6b", [0x2774] = "\x03\x40\x71", + [0x2775] = "\x01\x68\x4d", [0x2776] = "\x03\x40\x72", + [0x2777] = "\x02\x49\x64", [0x2778] = "\x01\x70\x50", + [0x2779] = "\x03\x50\x57", [0x277a] = "\x01\x73\x52", + [0x277b] = "\x02\x5c\x63", [0x277c] = "\x03\x5a\x34", + [0x277d] = "\x01\x79\x69", [0x277e] = "\x03\x5c\x3b", + [0x277f] = "\x01\x7b\x5c", [0x2780] = "\x03\x21\x3b", + [0x2781] = "\x02\x21\x53", [0x2782] = "\x03\x22\x3d", + [0x2783] = "\x01\x46\x46", [0x2784] = "\x02\x21\x54", + [0x2785] = "\x01\x47\x77", [0x2786] = "\x03\x23\x50", + [0x2787] = "\x01\x47\x75", [0x2788] = "\x01\x47\x76", + [0x2789] = "\x01\x47\x78", [0x278a] = "\x04\x23\x6f", + [0x278b] = "\x01\x49\x7a", [0x278c] = "\x01\x49\x79", + [0x278d] = "\x03\x25\x5a", [0x278e] = "\x02\x23\x5c", + [0x278f] = "\x01\x49\x7b", [0x2790] = "\x04\x26\x25", + [0x2792] = "\x02\x23\x5d", [0x2793] = "\x02\x26\x38", + [0x2794] = "\x03\x28\x4c", [0x2795] = "\x02\x26\x39", + [0x2796] = "\x03\x28\x4a", [0x2797] = "\x01\x4c\x78", + [0x2798] = "\x01\x4c\x7a", [0x2799] = "\x01\x4c\x7c", + [0x279a] = "\x01\x4c\x79", [0x279b] = "\x01\x4c\x7d", + [0x279c] = "\x01\x4c\x7b", [0x279d] = "\x03\x28\x4e", + [0x279e] = "\x03\x28\x4b", [0x279f] = "\x03\x28\x4d", + [0x27a2] = "\x01\x50\x6a", [0x27a3] = "\x01\x50\x67", + [0x27a4] = "\x01\x50\x69", [0x27a5] = "\x01\x50\x6b", + [0x27a6] = "\x01\x50\x68", [0x27a7] = "\x02\x2e\x68", + [0x27a8] = "\x02\x29\x78", [0x27a9] = "\x0f\x2a\x39", + [0x27ab] = "\x03\x2c\x32", [0x27ac] = "\x02\x2e\x6a", + [0x27ad] = "\x02\x2e\x69", [0x27ae] = "\x01\x55\x27", + [0x27af] = "\x04\x2c\x46", [0x27b0] = "\x01\x55\x23", + [0x27b1] = "\x04\x2c\x49", [0x27b2] = "\x06\x36\x66", + [0x27b3] = "\x01\x55\x24", [0x27b4] = "\x01\x55\x26", + [0x27b5] = "\x01\x55\x28", [0x27b6] = "\x01\x55\x25", + [0x27b7] = "\x03\x30\x57", [0x27b8] = "\x01\x55\x2a", + [0x27b9] = "\x01\x55\x29", [0x27ba] = "\x04\x2c\x48", + [0x27bb] = "\x03\x30\x56", [0x27bc] = "\x03\x30\x55", + [0x27be] = "\x0f\x2e\x7e", [0x27bf] = "\x01\x59\x6e", + [0x27c0] = "\x02\x34\x75", [0x27c1] = "\x02\x34\x74", + [0x27c2] = "\x01\x59\x6d", [0x27c3] = "\x03\x35\x41", + [0x27c4] = "\x01\x59\x6c", [0x27c5] = "\x01\x59\x6b", + [0x27c6] = "\x01\x59\x6f", [0x27c7] = "\x01\x59\x6a", + [0x27c8] = "\x03\x35\x3f", [0x27ca] = "\x02\x3b\x39", + [0x27cb] = "\x02\x3b\x36", [0x27cc] = "\x01\x5e\x6e", + [0x27cd] = "\x02\x3b\x35", [0x27ce] = "\x02\x3b\x3a", + [0x27cf] = "\x04\x37\x24", [0x27d0] = "\x01\x5e\x70", + [0x27d1] = "\x02\x3b\x38", [0x27d2] = "\x01\x5e\x6d", + [0x27d3] = "\x01\x5e\x6f", [0x27d4] = "\x02\x3b\x37", + [0x27d5] = "\x03\x3a\x7e", [0x27d6] = "\x02\x42\x4e", + [0x27d7] = "\x03\x40\x74", [0x27d8] = "\x02\x42\x4f", + [0x27d9] = "\x02\x42\x50", [0x27da] = "\x03\x40\x75", + [0x27db] = "\x03\x40\x76", [0x27dc] = "\x03\x40\x73", + [0x27dd] = "\x04\x3c\x6e", [0x27de] = "\x01\x68\x4e", + [0x27df] = "\x01\x68\x56", [0x27e0] = "\x02\x49\x65", + [0x27e1] = "\x01\x68\x50", [0x27e2] = "\x01\x68\x54", + [0x27e3] = "\x02\x49\x66", [0x27e4] = "\x01\x68\x55", + [0x27e5] = "\x01\x68\x51", [0x27e6] = "\x01\x68\x52", + [0x27e7] = "\x01\x68\x4f", [0x27e8] = "\x01\x68\x53", + [0x27e9] = "\x01\x6c\x50", [0x27ea] = "\x02\x3b\x34", + [0x27eb] = "\x01\x6c\x51", [0x27ec] = "\x01\x6c\x4f", + [0x27ed] = "\x04\x49\x44", [0x27ee] = "\x01\x6c\x4e", + [0x27ef] = "\x02\x56\x67", [0x27f0] = "\x01\x70\x51", + [0x27f1] = "\x02\x5c\x64", [0x27f2] = "\x02\x5c\x65", + [0x27f3] = "\x03\x5a\x35", [0x27f4] = "\x04\x5f\x55", + [0x27f5] = "\x01\x78\x31", [0x27f6] = "\x01\x79\x6a", + [0x27f7] = "\x03\x5e\x2a", [0x27f8] = "\x01\x44\x50", + [0x27f9] = "\x03\x22\x3e", [0x27fa] = "\x01\x47\x79", + [0x27fd] = "\x03\x25\x5e", [0x27fe] = "\x03\x25\x5c", + [0x27ff] = "\x03\x25\x5d", [0x2800] = "\x03\x28\x50", + [0x2801] = "\x01\x50\x6c", [0x2803] = "\x02\x2e\x6b", + [0x2804] = "\x01\x55\x2b", [0x2805] = "\x03\x30\x58", + [0x2806] = "\x03\x30\x59", [0x2807] = "\x01\x59\x72", + [0x2808] = "\x01\x59\x71", [0x2809] = "\x01\x59\x70", + [0x280a] = "\x01\x5e\x71", [0x280b] = "\x01\x5e\x72", + [0x280c] = "\x02\x3b\x3b", [0x280d] = "\x01\x68\x57", + [0x280e] = "\x01\x70\x52", [0x280f] = "\x01\x44\x51", + [0x2810] = "\x02\x21\x3c", [0x2811] = "\x01\x45\x37", + [0x2812] = "\x02\x21\x55", [0x2813] = "\x04\x21\x73", + [0x2814] = "\x03\x22\x3f", [0x2815] = "\x02\x22\x34", + [0x2816] = "\x01\x47\x7a", [0x2817] = "\x04\x22\x5c", + [0x2818] = "\x03\x23\x52", [0x2819] = "\x03\x28\x51", + [0x281a] = "\x01\x4c\x7e", [0x281b] = "\x03\x2c\x34", + [0x281e] = "\x03\x3b\x24", [0x281f] = "\x02\x42\x51", + [0x2820] = "\x03\x40\x78", [0x2821] = "\x03\x65\x25", + [0x2822] = "\x01\x44\x52", [0x2823] = "\x04\x21\x4b", + [0x2824] = "\x01\x45\x38", [0x2825] = "\x02\x22\x35", + [0x2828] = "\x02\x23\x5e", [0x2829] = "\x04\x26\x29", + [0x282a] = "\x02\x23\x5f", [0x282b] = "\x03\x25\x5f", + [0x282c] = "\x01\x49\x7c", [0x282d] = "\x0f\x25\x54", + [0x282f] = "\x03\x2c\x35", [0x2830] = "\x02\x3b\x3c", + [0x2831] = "\x01\x5e\x73", [0x2833] = "\x02\x42\x52", + [0x2835] = "\x04\x49\x49", [0x2836] = "\x03\x54\x54", + [0x2837] = "\x01\x73\x53", [0x2838] = "\x01\x44\x53", + [0x2839] = "\x01\x44\x67", [0x283a] = "\x01\x45\x39", + [0x283b] = "\x02\x21\x56", [0x283c] = "\x01\x46\x47", + [0x283d] = "\x03\x23\x54", [0x283e] = "\x01\x4a\x22", + [0x283f] = "\x01\x4a\x21", [0x2840] = "\x01\x49\x7d", + [0x2841] = "\x01\x49\x7e", [0x2844] = "\x02\x26\x3a", + [0x2845] = "\x01\x4d\x22", [0x2846] = "\x01\x4d\x23", + [0x2847] = "\x02\x26\x3b", [0x2848] = "\x01\x4d\x21", + [0x2849] = "\x03\x28\x54", [0x284a] = "\x03\x28\x55", + [0x284b] = "\x01\x50\x70", [0x284c] = "\x02\x29\x79", + [0x284d] = "\x01\x50\x6f", [0x284e] = "\x01\x50\x6d", + [0x284f] = "\x01\x50\x6e", [0x2850] = "\x01\x55\x2e", + [0x2851] = "\x01\x55\x2c", [0x2852] = "\x03\x30\x5a", + [0x2853] = "\x03\x30\x5b", [0x2854] = "\x02\x2e\x6d", + [0x2855] = "\x01\x55\x2d", [0x2856] = "\x02\x2e\x6c", + [0x2857] = "\x03\x64\x6b", [0x2858] = "\x01\x55\x22", + [0x2859] = "\x02\x34\x76", [0x285a] = "\x04\x31\x35", + [0x285b] = "\x03\x35\x43", [0x285c] = "\x01\x59\x74", + [0x285d] = "\x01\x59\x75", [0x285e] = "\x03\x3b\x26", + [0x285f] = "\x03\x3b\x25", [0x2860] = "\x01\x59\x73", + [0x2861] = "\x03\x35\x44", [0x2862] = "\x01\x68\x58", + [0x2863] = "\x02\x49\x67", [0x2864] = "\x01\x6c\x52", + [0x2865] = "\x01\x6c\x53", [0x2867] = "\x02\x50\x2a", + [0x2868] = "\x01\x73\x54", [0x2869] = "\x02\x61\x4e", + [0x286a] = "\x02\x61\x4f", [0x286b] = "\x03\x5a\x38", + [0x286c] = "\x01\x7a\x68", [0x286d] = "\x02\x70\x36", + [0x286e] = "\x02\x21\x2b", [0x286f] = "\x01\x45\x3a", + [0x2870] = "\x04\x22\x5f", [0x2871] = "\x01\x44\x54", + [0x2873] = "\x02\x21\x58", [0x2874] = "\x02\x21\x57", + [0x2875] = "\x04\x21\x76", [0x2877] = "\x03\x64\x6c", + [0x2878] = "\x03\x23\x55", [0x2879] = "\x01\x47\x7b", + [0x287a] = "\x02\x22\x37", [0x287b] = "\x02\x22\x38", + [0x287c] = "\x02\x22\x36", [0x287d] = "\x04\x22\x60", + [0x287e] = "\x02\x22\x39", [0x2880] = "\x03\x23\x5a", + [0x2881] = "\x0f\x22\x47", [0x2884] = "\x03\x25\x61", + [0x2885] = "\x03\x25\x66", [0x2886] = "\x02\x23\x67", + [0x2887] = "\x04\x23\x7a", [0x2888] = "\x02\x23\x62", + [0x2889] = "\x02\x23\x64", [0x288a] = "\x02\x23\x66", + [0x288b] = "\x02\x23\x63", [0x288c] = "\x01\x4a\x26", + [0x288d] = "\x02\x23\x60", [0x288e] = "\x03\x25\x62", + [0x288f] = "\x02\x23\x61", [0x2890] = "\x01\x4a\x23", + [0x2891] = "\x01\x4a\x24", [0x2892] = "\x02\x23\x65", + [0x2893] = "\x02\x23\x68", [0x2894] = "\x01\x4a\x25", + [0x2895] = "\x02\x23\x69", [0x2897] = "\x0f\x23\x7c", + [0x289c] = "\x03\x25\x63", [0x289d] = "\x02\x26\x49", + [0x289e] = "\x03\x28\x5d", [0x289f] = "\x02\x26\x43", + [0x28a0] = "\x02\x26\x3e", [0x28a1] = "\x01\x4d\x25", + [0x28a2] = "\x02\x26\x46", [0x28a3] = "\x02\x26\x44", + [0x28a4] = "\x02\x26\x3d", [0x28a5] = "\x02\x26\x4a", + [0x28a6] = "\x02\x26\x4d", [0x28a7] = "\x02\x26\x48", + [0x28a8] = "\x02\x26\x41", [0x28a9] = "\x01\x4d\x27", + [0x28aa] = "\x02\x26\x47", [0x28ab] = "\x01\x4d\x28", + [0x28ac] = "\x02\x26\x42", [0x28ad] = "\x02\x26\x45", + [0x28ae] = "\x02\x26\x3c", [0x28af] = "\x02\x26\x40", + [0x28b0] = "\x02\x26\x4c", [0x28b1] = "\x01\x4d\x29", + [0x28b2] = "\x04\x26\x2f", [0x28b3] = "\x01\x4d\x2a", + [0x28b4] = "\x03\x28\x5e", [0x28b5] = "\x02\x26\x3f", + [0x28b6] = "\x02\x26\x4b", [0x28b7] = "\x01\x4d\x24", + [0x28b8] = "\x01\x4d\x26", [0x28b9] = "\x03\x28\x5c", + [0x28ba] = "\x03\x28\x5f", [0x28bb] = "\x03\x28\x57", + [0x28c0] = "\x04\x26\x34", [0x28c1] = "\x03\x28\x58", + [0x28c6] = "\x02\x2a\x2c", [0x28c7] = "\x02\x2a\x25", + [0x28c8] = "\x02\x2a\x2b", [0x28c9] = "\x02\x2a\x24", + [0x28ca] = "\x02\x2a\x26", [0x28cb] = "\x02\x29\x7e", + [0x28cc] = "\x02\x29\x7c", [0x28cd] = "\x03\x2c\x3f", + [0x28ce] = "\x02\x2a\x2d", [0x28cf] = "\x02\x2a\x2a", + [0x28d0] = "\x02\x29\x7a", [0x28d1] = "\x03\x2c\x3b", + [0x28d2] = "\x01\x50\x72", [0x28d3] = "\x02\x2a\x28", + [0x28d4] = "\x02\x2a\x29", [0x28d5] = "\x03\x64\x6d", + [0x28d6] = "\x02\x2a\x27", [0x28d7] = "\x02\x29\x7d", + [0x28d8] = "\x02\x29\x7b", [0x28d9] = "\x01\x50\x71", + [0x28da] = "\x02\x2a\x23", [0x28db] = "\x02\x2a\x21", + [0x28dc] = "\x03\x2c\x3c", [0x28dd] = "\x03\x2c\x42", + [0x28de] = "\x02\x2a\x22", [0x28df] = "\x02\x2a\x2e", + [0x28e1] = "\x03\x2c\x3e", [0x28e2] = "\x03\x2c\x41", + [0x28e5] = "\x03\x2c\x43", [0x28e6] = "\x03\x2c\x3d", + [0x28e8] = "\x01\x55\x33", [0x28e9] = "\x03\x30\x63", + [0x28ea] = "\x01\x55\x32", [0x28eb] = "\x03\x30\x5f", + [0x28ec] = "\x02\x2e\x6e", [0x28ed] = "\x01\x55\x2f", + [0x28ee] = "\x02\x2e\x70", [0x28ef] = "\x03\x30\x64", + [0x28f0] = "\x01\x55\x34", [0x28f1] = "\x02\x2e\x71", + [0x28f2] = "\x04\x2c\x60", [0x28f3] = "\x03\x30\x61", + [0x28f4] = "\x01\x55\x37", [0x28f5] = "\x03\x30\x62", + [0x28f6] = "\x01\x55\x35", [0x28f7] = "\x02\x2e\x72", + [0x28f8] = "\x02\x2a\x2f", [0x28f9] = "\x02\x2e\x74", + [0x28fa] = "\x03\x30\x5e", [0x28fb] = "\x01\x55\x31", + [0x28fc] = "\x04\x2c\x5c", [0x28fd] = "\x01\x55\x30", + [0x28fe] = "\x04\x2c\x61", [0x28ff] = "\x02\x2e\x6f", + [0x2900] = "\x02\x2e\x73", [0x2901] = "\x01\x55\x36", + [0x2906] = "\x01\x59\x77", [0x2907] = "\x01\x59\x76", + [0x2908] = "\x03\x35\x4b", [0x2909] = "\x03\x35\x48", + [0x290a] = "\x03\x35\x47", [0x290b] = "\x02\x34\x78", + [0x290c] = "\x02\x34\x7c", [0x290d] = "\x02\x34\x7e", + [0x290e] = "\x01\x59\x78", [0x290f] = "\x02\x35\x23", + [0x2910] = "\x03\x35\x51", [0x2911] = "\x01\x59\x7c", + [0x2912] = "\x02\x35\x25", [0x2913] = "\x03\x35\x52", + [0x2914] = "\x01\x59\x7e", [0x2915] = "\x03\x35\x4f", + [0x2916] = "\x01\x59\x7a", [0x2917] = "\x01\x5a\x24", + [0x2918] = "\x03\x35\x55", [0x2919] = "\x01\x5a\x21", + [0x291a] = "\x02\x34\x7a", [0x291b] = "\x01\x59\x79", + [0x291c] = "\x03\x3b\x2b", [0x291d] = "\x02\x34\x79", + [0x291e] = "\x02\x34\x77", [0x291f] = "\x02\x35\x27", + [0x2920] = "\x02\x34\x7b", [0x2921] = "\x03\x35\x46", + [0x2922] = "\x01\x59\x7b", [0x2923] = "\x02\x35\x26", + [0x2924] = "\x01\x5a\x22", [0x2925] = "\x02\x35\x22", + [0x2926] = "\x02\x35\x21", [0x2927] = "\x01\x5a\x23", + [0x2928] = "\x02\x34\x7d", [0x2929] = "\x01\x59\x7d", + [0x292a] = "\x03\x35\x4e", [0x292c] = "\x03\x35\x4a", + [0x292e] = "\x02\x35\x28", [0x292f] = "\x03\x35\x54", + [0x2930] = "\x02\x35\x24", [0x2931] = "\x02\x3b\x4b", + [0x2932] = "\x02\x3b\x52", [0x2933] = "\x02\x3b\x47", + [0x2934] = "\x01\x5e\x76", [0x2935] = "\x02\x3b\x43", + [0x2936] = "\x02\x3b\x53", [0x2937] = "\x02\x3b\x3d", + [0x2938] = "\x02\x3b\x50", [0x2939] = "\x02\x3b\x4e", + [0x293a] = "\x02\x3b\x48", [0x293b] = "\x03\x3b\x36", + [0x293c] = "\x02\x3b\x51", [0x293d] = "\x02\x3b\x4a", + [0x293e] = "\x03\x3b\x28", [0x293f] = "\x02\x3b\x42", + [0x2940] = "\x02\x3b\x54", [0x2941] = "\x02\x3b\x40", + [0x2942] = "\x02\x3b\x4d", [0x2943] = "\x02\x3b\x3e", + [0x2944] = "\x03\x3b\x27", [0x2945] = "\x02\x3b\x55", + [0x2946] = "\x03\x3b\x37", [0x2947] = "\x01\x5e\x77", + [0x2948] = "\x03\x3b\x2a", [0x2949] = "\x02\x3b\x4f", + [0x294a] = "\x02\x42\x55", [0x294b] = "\x02\x3b\x41", + [0x294c] = "\x01\x5e\x74", [0x294d] = "\x03\x3b\x2e", + [0x294e] = "\x02\x3b\x45", [0x294f] = "\x03\x3b\x34", + [0x2950] = "\x01\x5e\x75", [0x2951] = "\x02\x3b\x44", + [0x2952] = "\x02\x3b\x49", [0x2953] = "\x03\x3b\x33", + [0x2954] = "\x04\x37\x35", [0x2955] = "\x02\x3b\x46", + [0x2956] = "\x04\x37\x2f", [0x2957] = "\x03\x3b\x31", + [0x2959] = "\x02\x3b\x4c", [0x295b] = "\x03\x3b\x2d", + [0x295e] = "\x02\x42\x59", [0x295f] = "\x04\x3c\x79", + [0x2960] = "\x03\x41\x21", [0x2961] = "\x04\x3c\x7b", + [0x2962] = "\x02\x42\x5c", [0x2963] = "\x02\x42\x54", + [0x2964] = "\x03\x40\x7c", [0x2965] = "\x02\x42\x56", + [0x2966] = "\x03\x40\x7a", [0x2967] = "\x02\x42\x5b", + [0x2968] = "\x02\x42\x5a", [0x2969] = "\x01\x63\x69", + [0x296a] = "\x04\x3c\x75", [0x296b] = "\x02\x3b\x3f", + [0x296c] = "\x02\x42\x58", [0x296d] = "\x03\x40\x79", + [0x296e] = "\x03\x40\x7d", [0x296f] = "\x01\x63\x6a", + [0x2970] = "\x04\x3c\x74", [0x2971] = "\x02\x42\x53", + [0x2972] = "\x02\x42\x57", [0x2973] = "\x04\x3c\x7c", + [0x2974] = "\x04\x3c\x78", [0x2975] = "\x03\x64\x6e", + [0x2977] = "\x02\x49\x6e", [0x2978] = "\x03\x46\x5c", + [0x2979] = "\x02\x49\x75", [0x297a] = "\x02\x49\x6c", + [0x297b] = "\x03\x46\x54", [0x297c] = "\x02\x49\x73", + [0x297d] = "\x02\x49\x6a", [0x297e] = "\x02\x49\x72", + [0x297f] = "\x02\x49\x76", [0x2980] = "\x02\x49\x69", + [0x2981] = "\x02\x49\x6d", [0x2982] = "\x02\x49\x68", + [0x2983] = "\x03\x46\x56", [0x2984] = "\x01\x68\x59", + [0x2985] = "\x04\x43\x2c", [0x2986] = "\x02\x49\x6b", + [0x2987] = "\x01\x68\x5a", [0x2988] = "\x02\x49\x71", + [0x2989] = "\x02\x49\x70", [0x298a] = "\x02\x49\x6f", + [0x298b] = "\x03\x46\x59", [0x298c] = "\x03\x46\x5a", + [0x298d] = "\x02\x49\x74", [0x298e] = "\x03\x64\x6f", + [0x298f] = "\x03\x4b\x65", [0x2990] = "\x03\x4b\x66", + [0x2991] = "\x03\x4b\x63", [0x2992] = "\x02\x50\x2e", + [0x2993] = "\x02\x50\x30", [0x2994] = "\x01\x6c\x55", + [0x2995] = "\x02\x50\x31", [0x2996] = "\x03\x4b\x6b", + [0x2997] = "\x02\x50\x2c", [0x2998] = "\x03\x4b\x67", + [0x2999] = "\x02\x50\x2b", [0x299a] = "\x02\x50\x35", + [0x299b] = "\x03\x4b\x69", [0x299c] = "\x02\x50\x33", + [0x299d] = "\x01\x6c\x54", [0x299e] = "\x02\x50\x36", + [0x299f] = "\x02\x50\x2d", [0x29a0] = "\x02\x50\x32", + [0x29a1] = "\x02\x50\x34", [0x29a2] = "\x02\x50\x2f", + [0x29a3] = "\x03\x4b\x6a", [0x29a4] = "\x03\x4b\x68", + [0x29a5] = "\x03\x64\x70", [0x29a6] = "\x03\x50\x58", + [0x29a7] = "\x02\x56\x6b", [0x29a8] = "\x02\x56\x70", + [0x29a9] = "\x02\x56\x6a", [0x29aa] = "\x02\x56\x6f", + [0x29ab] = "\x03\x50\x5b", [0x29ac] = "\x02\x56\x68", + [0x29ad] = "\x02\x56\x72", [0x29ae] = "\x02\x56\x6e", + [0x29af] = "\x02\x56\x73", [0x29b0] = "\x02\x56\x6d", + [0x29b1] = "\x02\x56\x69", [0x29b2] = "\x02\x56\x71", + [0x29b3] = "\x03\x50\x5a", [0x29b4] = "\x02\x56\x74", + [0x29b5] = "\x02\x56\x6c", [0x29b6] = "\x03\x64\x71", + [0x29b7] = "\x02\x5c\x66", [0x29b8] = "\x01\x73\x58", + [0x29b9] = "\x03\x54\x57", [0x29ba] = "\x01\x73\x56", + [0x29bb] = "\x03\x54\x59", [0x29bc] = "\x01\x73\x55", + [0x29bd] = "\x01\x73\x57", [0x29be] = "\x03\x54\x55", + [0x29bf] = "\x03\x64\x72", [0x29c0] = "\x02\x61\x50", + [0x29c1] = "\x03\x57\x62", [0x29c2] = "\x02\x64\x3e", + [0x29c3] = "\x02\x65\x49", [0x29c4] = "\x03\x5a\x39", + [0x29c6] = "\x02\x68\x70", [0x29c7] = "\x02\x68\x71", + [0x29c8] = "\x03\x5c\x3d", [0x29c9] = "\x01\x79\x6b", + [0x29ca] = "\x03\x5c\x3c", [0x29cb] = "\x02\x6b\x57", + [0x29cc] = "\x03\x5c\x3e", [0x29cd] = "\x01\x7a\x69", + [0x29ce] = "\x04\x66\x3b", [0x29cf] = "\x02\x6b\x58", + [0x29d0] = "\x03\x5e\x2d", [0x29d1] = "\x02\x6d\x4c", + [0x29d2] = "\x01\x7b\x5e", [0x29d3] = "\x03\x5f\x43", + [0x29d4] = "\x01\x7b\x5d", [0x29d5] = "\x02\x6d\x4b", + [0x29d6] = "\x01\x7c\x35", [0x29d7] = "\x03\x60\x30", + [0x29d8] = "\x02\x6f\x25", [0x29d9] = "\x04\x6b\x68", + [0x29da] = "\x04\x6a\x46", [0x29db] = "\x03\x21\x3c", + [0x29dc] = "\x04\x21\x2c", [0x29dd] = "\x01\x44\x55", + [0x29de] = "\x01\x47\x7c", [0x29df] = "\x02\x22\x3a", + [0x29e0] = "\x02\x23\x6a", [0x29e1] = "\x01\x4b\x56", + [0x29e2] = "\x01\x5a\x25", [0x29e3] = "\x03\x35\x57", + [0x29e4] = "\x03\x4b\x6c", [0x29e5] = "\x01\x44\x56", + [0x29e6] = "\x01\x46\x4a", [0x29e7] = "\x01\x46\x49", + [0x29e8] = "\x01\x46\x48", [0x29e9] = "\x04\x22\x63", + [0x29eb] = "\x01\x4a\x27", [0x29ee] = "\x01\x55\x38", + [0x29f0] = "\x02\x42\x5d", [0x29f1] = "\x01\x44\x57", + [0x29f2] = "\x01\x44\x58", [0x29f3] = "\x01\x44\x59", + [0x29f4] = "\x01\x45\x3b", [0x29f5] = "\x03\x25\x67", + [0x29f6] = "\x03\x28\x60", [0x29f7] = "\x01\x50\x73", + [0x29f8] = "\x04\x2c\x64", [0x29f9] = "\x02\x2a\x30", + [0x29fa] = "\x03\x2c\x45", [0x29fb] = "\x03\x2c\x44", + [0x29fd] = "\x01\x5e\x78", [0x29fe] = "\x01\x44\x5a", + [0x29ff] = "\x02\x21\x3d", [0x2a00] = "\x03\x21\x63", + [0x2a01] = "\x04\x21\x4c", [0x2a02] = "\x01\x46\x4b", + [0x2a03] = "\x01\x46\x4c", [0x2a04] = "\x02\x21\x59", + [0x2a06] = "\x01\x47\x7d", [0x2a07] = "\x05\x22\x5c", + [0x2a08] = "\x03\x23\x5c", [0x2a09] = "\x03\x25\x68", + [0x2a0a] = "\x02\x23\x6b", [0x2a0b] = "\x03\x25\x6b", + [0x2a0c] = "\x01\x4a\x28", [0x2a0d] = "\x04\x24\x23", + [0x2a0e] = "\x02\x23\x6c", [0x2a11] = "\x01\x4d\x30", + [0x2a12] = "\x03\x28\x62", [0x2a13] = "\x03\x28\x61", + [0x2a14] = "\x02\x26\x4f", [0x2a15] = "\x01\x4d\x2e", + [0x2a16] = "\x01\x4d\x2d", [0x2a17] = "\x02\x26\x4e", + [0x2a18] = "\x01\x4d\x2b", [0x2a19] = "\x02\x26\x50", + [0x2a1a] = "\x01\x4d\x2c", [0x2a1b] = "\x01\x4d\x2f", + [0x2a1d] = "\x01\x50\x74", [0x2a1e] = "\x03\x2c\x46", + [0x2a1f] = "\x01\x50\x76", [0x2a20] = "\x02\x2a\x34", + [0x2a21] = "\x02\x2a\x31", [0x2a22] = "\x02\x2a\x32", + [0x2a23] = "\x02\x2a\x33", [0x2a24] = "\x02\x2a\x35", + [0x2a25] = "\x01\x50\x75", [0x2a28] = "\x02\x2e\x76", + [0x2a29] = "\x02\x2e\x75", [0x2a2a] = "\x03\x30\x66", + [0x2a2b] = "\x01\x55\x3a", [0x2a2c] = "\x03\x30\x69", + [0x2a2d] = "\x01\x55\x39", [0x2a2e] = "\x03\x30\x68", + [0x2a2f] = "\x03\x30\x6a", [0x2a30] = "\x03\x30\x67", + [0x2a32] = "\x03\x35\x5b", [0x2a33] = "\x01\x5a\x28", + [0x2a34] = "\x02\x35\x2a", [0x2a35] = "\x03\x35\x59", + [0x2a36] = "\x01\x5a\x27", [0x2a37] = "\x01\x5a\x29", + [0x2a38] = "\x01\x5a\x26", [0x2a39] = "\x03\x35\x58", + [0x2a3a] = "\x03\x35\x5a", [0x2a3d] = "\x01\x5e\x7a", + [0x2a3e] = "\x02\x35\x29", [0x2a3f] = "\x05\x37\x7c", + [0x2a40] = "\x01\x5e\x7b", [0x2a41] = "\x02\x3b\x57", + [0x2a42] = "\x03\x39\x79", [0x2a43] = "\x01\x5e\x7c", + [0x2a44] = "\x02\x3b\x56", [0x2a45] = "\x01\x5e\x79", + [0x2a46] = "\x03\x3b\x3a", [0x2a47] = "\x03\x3b\x3b", + [0x2a48] = "\x03\x3b\x3d", [0x2a4a] = "\x02\x42\x60", + [0x2a4b] = "\x02\x42\x62", [0x2a4c] = "\x01\x63\x6b", + [0x2a4d] = "\x02\x42\x61", [0x2a4e] = "\x02\x42\x5f", + [0x2a4f] = "\x02\x42\x5e", [0x2a50] = "\x04\x3d\x2a", + [0x2a51] = "\x04\x43\x35", [0x2a52] = "\x03\x46\x5d", + [0x2a53] = "\x02\x49\x79", [0x2a54] = "\x01\x68\x5f", + [0x2a55] = "\x01\x68\x5d", [0x2a56] = "\x04\x43\x30", + [0x2a57] = "\x01\x68\x5e", [0x2a58] = "\x02\x49\x77", + [0x2a59] = "\x02\x49\x78", [0x2a5a] = "\x03\x4b\x6d", + [0x2a5b] = "\x01\x68\x5b", [0x2a5c] = "\x02\x50\x3a", + [0x2a5d] = "\x02\x50\x38", [0x2a5e] = "\x03\x4b\x70", + [0x2a5f] = "\x01\x6c\x57", [0x2a60] = "\x02\x50\x39", + [0x2a61] = "\x01\x6c\x58", [0x2a62] = "\x01\x6c\x56", + [0x2a63] = "\x01\x68\x5c", [0x2a64] = "\x0f\x4e\x5e", + [0x2a65] = "\x03\x64\x73", [0x2a66] = "\x02\x56\x77", + [0x2a67] = "\x02\x56\x75", [0x2a68] = "\x02\x56\x76", + [0x2a69] = "\x02\x50\x37", [0x2a6a] = "\x02\x5c\x68", + [0x2a6b] = "\x01\x73\x59", [0x2a6c] = "\x02\x5c\x67", + [0x2a6d] = "\x02\x61\x51", [0x2a6e] = "\x02\x61\x52", + [0x2a6f] = "\x02\x56\x78", [0x2a70] = "\x02\x65\x4a", + [0x2a71] = "\x03\x66\x77", [0x2a72] = "\x01\x44\x5b", + [0x2a73] = "\x01\x46\x4d", [0x2a74] = "\x01\x48\x21", + [0x2a75] = "\x02\x22\x3b", [0x2a76] = "\x01\x47\x7e", + [0x2a77] = "\x03\x28\x63", [0x2a78] = "\x01\x4d\x31", + [0x2a79] = "\x01\x63\x6c", [0x2a7a] = "\x03\x21\x3d", + [0x2a7b] = "\x01\x45\x3c", [0x2a7c] = "\x01\x46\x4e", + [0x2a7d] = "\x01\x50\x77", [0x2a7e] = "\x01\x5e\x7d", + [0x2a7f] = "\x03\x21\x3e", [0x2a80] = "\x02\x21\x5a", + [0x2a81] = "\x03\x22\x47", [0x2a82] = "\x02\x21\x5b", + [0x2a83] = "\x03\x22\x48", [0x2a84] = "\x02\x22\x3c", + [0x2a85] = "\x03\x66\x78", [0x2a87] = "\x01\x4a\x2a", + [0x2a88] = "\x02\x23\x70", [0x2a89] = "\x02\x23\x6e", + [0x2a8a] = "\x01\x4a\x2b", [0x2a8b] = "\x02\x23\x6d", + [0x2a8c] = "\x02\x23\x6f", [0x2a8d] = "\x02\x23\x71", + [0x2a8e] = "\x04\x24\x28", [0x2a8f] = "\x01\x4a\x29", + [0x2a90] = "\x03\x25\x6e", [0x2a92] = "\x03\x25\x6d", + [0x2a95] = "\x01\x4d\x35", [0x2a96] = "\x01\x4d\x36", + [0x2a97] = "\x01\x4d\x33", [0x2a98] = "\x03\x28\x65", + [0x2a99] = "\x03\x28\x67", [0x2a9a] = "\x01\x4d\x32", + [0x2a9b] = "\x02\x2a\x39", [0x2a9c] = "\x01\x4d\x34", + [0x2a9d] = "\x03\x28\x68", [0x2aa0] = "\x01\x50\x78", + [0x2aa1] = "\x03\x2c\x48", [0x2aa2] = "\x02\x2a\x38", + [0x2aa3] = "\x02\x2a\x3a", [0x2aa4] = "\x02\x2a\x37", + [0x2aa5] = "\x02\x2a\x3b", [0x2aa6] = "\x01\x50\x79", + [0x2aa7] = "\x01\x55\x3d", [0x2aa8] = "\x02\x2e\x77", + [0x2aa9] = "\x03\x30\x6c", [0x2aaa] = "\x02\x2e\x79", + [0x2aab] = "\x01\x55\x3b", [0x2aac] = "\x02\x2e\x7a", + [0x2aad] = "\x01\x55\x3c", [0x2aae] = "\x02\x2e\x78", + [0x2aaf] = "\x03\x30\x6b", [0x2ab0] = "\x02\x2a\x36", + [0x2ab1] = "\x02\x35\x2b", [0x2ab2] = "\x02\x35\x2e", + [0x2ab3] = "\x02\x35\x2f", [0x2ab4] = "\x02\x35\x2c", + [0x2ab5] = "\x01\x5a\x2d", [0x2ab6] = "\x01\x5a\x2c", + [0x2ab7] = "\x01\x5a\x2a", [0x2ab8] = "\x01\x5a\x2b", + [0x2ab9] = "\x02\x35\x2d", [0x2aba] = "\x03\x35\x61", + [0x2abb] = "\x03\x35\x60", [0x2abd] = "\x03\x3b\x3f", + [0x2abe] = "\x01\x5a\x2e", [0x2abf] = "\x03\x3b\x40", + [0x2ac0] = "\x03\x3b\x3e", [0x2ac1] = "\x01\x5f\x21", + [0x2ac2] = "\x01\x5f\x22", [0x2ac3] = "\x06\x48\x45", + [0x2ac4] = "\x01\x5f\x23", [0x2ac5] = "\x02\x42\x63", + [0x2ac6] = "\x02\x42\x65", [0x2ac7] = "\x02\x42\x67", + [0x2ac8] = "\x01\x63\x6e", [0x2ac9] = "\x01\x63\x6d", + [0x2aca] = "\x01\x5e\x7e", [0x2acb] = "\x02\x42\x66", + [0x2acc] = "\x02\x42\x64", [0x2acd] = "\x03\x64\x74", + [0x2ace] = "\x02\x49\x7d", [0x2acf] = "\x03\x46\x61", + [0x2ad0] = "\x03\x46\x60", [0x2ad1] = "\x02\x49\x7b", + [0x2ad2] = "\x02\x4a\x23", [0x2ad3] = "\x01\x68\x60", + [0x2ad4] = "\x02\x4a\x24", [0x2ad5] = "\x02\x4a\x21", + [0x2ad6] = "\x01\x68\x61", [0x2ad7] = "\x02\x49\x7c", + [0x2ad8] = "\x02\x49\x7a", [0x2ad9] = "\x02\x4a\x22", + [0x2ada] = "\x01\x6c\x5a", [0x2adb] = "\x02\x50\x3c", + [0x2adc] = "\x02\x49\x7e", [0x2add] = "\x01\x6c\x5c", + [0x2ade] = "\x02\x50\x3d", [0x2adf] = "\x01\x6c\x5b", + [0x2ae0] = "\x01\x6c\x5e", [0x2ae1] = "\x02\x50\x3e", + [0x2ae2] = "\x01\x6c\x59", [0x2ae3] = "\x01\x6c\x5d", + [0x2ae5] = "\x02\x56\x7d", [0x2ae6] = "\x02\x56\x7b", + [0x2ae7] = "\x02\x56\x7a", [0x2ae8] = "\x02\x56\x7c", + [0x2ae9] = "\x02\x56\x79", [0x2aea] = "\x03\x50\x5c", + [0x2aeb] = "\x04\x5b\x21", [0x2aec] = "\x01\x78\x33", + [0x2aed] = "\x03\x64\x75", [0x2aee] = "\x02\x68\x72", + [0x2aef] = "\x02\x68\x73", [0x2af0] = "\x03\x5c\x3f", + [0x2af1] = "\x02\x6b\x59", [0x2af2] = "\x02\x6d\x4d", + [0x2af3] = "\x01\x7d\x22", [0x2af4] = "\x03\x21\x3f", + [0x2af5] = "\x03\x23\x61", [0x2af6] = "\x01\x4d\x37", + [0x2af7] = "\x01\x4a\x2c", [0x2af8] = "\x03\x28\x69", + [0x2af9] = "\x03\x28\x6b", [0x2afa] = "\x01\x50\x7a", + [0x2afb] = "\x03\x2c\x4c", [0x2afc] = "\x03\x2c\x4b", + [0x2afd] = "\x03\x30\x6e", [0x2afe] = "\x01\x44\x5c", + [0x2aff] = "\x01\x45\x3d", [0x2b00] = "\x04\x21\x4d", + [0x2b01] = "\x01\x46\x4f", [0x2b02] = "\x02\x22\x3d", + [0x2b03] = "\x03\x25\x6f", [0x2b04] = "\x01\x4a\x2d", + [0x2b05] = "\x02\x23\x72", [0x2b06] = "\x03\x28\x6d", + [0x2b07] = "\x02\x2a\x3c", [0x2b08] = "\x01\x50\x7b", + [0x2b0a] = "\x01\x68\x62", [0x2b0b] = "\x01\x44\x5d", + [0x2b0c] = "\x03\x21\x64", [0x2b0d] = "\x03\x22\x49", + [0x2b0e] = "\x03\x23\x62", [0x2b0f] = "\x01\x48\x22", + [0x2b10] = "\x0f\x22\x4e", [0x2b11] = "\x03\x3b\x42", + [0x2b12] = "\x01\x63\x6f", [0x2b13] = "\x01\x44\x5e", + [0x2b14] = "\x01\x45\x3e", [0x2b15] = "\x01\x45\x3f", + [0x2b17] = "\x01\x46\x51", [0x2b18] = "\x01\x46\x50", + [0x2b19] = "\x04\x22\x6b", [0x2b1a] = "\x02\x22\x3e", + [0x2b1b] = "\x01\x48\x23", [0x2b1c] = "\x04\x22\x6c", + [0x2b1d] = "\x02\x23\x73", [0x2b1e] = "\x03\x25\x71", + [0x2b1f] = "\x01\x4a\x2e", [0x2b21] = "\x03\x28\x6e", + [0x2b22] = "\x02\x26\x52", [0x2b23] = "\x02\x26\x53", + [0x2b24] = "\x02\x26\x54", [0x2b25] = "\x03\x28\x70", + [0x2b26] = "\x01\x4d\x38", [0x2b27] = "\x01\x4d\x39", + [0x2b28] = "\x02\x26\x51", [0x2b29] = "\x01\x4d\x3a", + [0x2b2b] = "\x04\x29\x2c", [0x2b2c] = "\x04\x2c\x70", + [0x2b2d] = "\x01\x50\x7c", [0x2b2e] = "\x02\x2a\x3d", + [0x2b2f] = "\x03\x2c\x4d", [0x2b30] = "\x02\x2e\x7c", + [0x2b31] = "\x01\x55\x3e", [0x2b32] = "\x03\x30\x6f", + [0x2b33] = "\x02\x2e\x7b", [0x2b34] = "\x03\x35\x62", + [0x2b35] = "\x01\x5a\x2f", [0x2b36] = "\x02\x35\x30", + [0x2b37] = "\x01\x5a\x30", [0x2b38] = "\x02\x35\x31", + [0x2b39] = "\x03\x35\x63", [0x2b3a] = "\x03\x3b\x47", + [0x2b3b] = "\x03\x3b\x45", [0x2b3c] = "\x01\x5f\x24", + [0x2b3d] = "\x04\x37\x45", [0x2b3e] = "\x03\x3b\x44", + [0x2b3f] = "\x04\x3d\x30", [0x2b40] = "\x02\x42\x68", + [0x2b41] = "\x0f\x41\x3f", [0x2b42] = "\x03\x41\x22", + [0x2b43] = "\x02\x4a\x26", [0x2b44] = "\x02\x4a\x25", + [0x2b46] = "\x01\x68\x63", [0x2b47] = "\x04\x49\x5e", + [0x2b48] = "\x01\x6c\x5f", [0x2b49] = "\x02\x50\x3f", + [0x2b4a] = "\x01\x70\x53", [0x2b4b] = "\x02\x56\x7e", + [0x2b4c] = "\x01\x73\x5a", [0x2b4d] = "\x03\x57\x63", + [0x2b4e] = "\x01\x7b\x5f", [0x2b4f] = "\x02\x6f\x27", + [0x2b50] = "\x03\x21\x40", [0x2b51] = "\x03\x21\x41", + [0x2b52] = "\x03\x22\x4a", [0x2b53] = "\x03\x23\x51", + [0x2b54] = "\x02\x26\x55", [0x2b55] = "\x03\x28\x71", + [0x2b56] = "\x02\x2a\x3e", [0x2b57] = "\x01\x5a\x31", + [0x2b58] = "\x02\x3b\x58", [0x2b59] = "\x01\x63\x70", + [0x2b5a] = "\x03\x41\x23", [0x2b5b] = "\x03\x50\x5e", + [0x2b5c] = "\x0f\x54\x43", [0x2b5d] = "\x03\x57\x64", + [0x2b5e] = "\x01\x76\x41", [0x2b60] = "\x03\x61\x64", + [0x2b61] = "\x03\x21\x42", [0x2b62] = "\x01\x4a\x30", + [0x2b63] = "\x03\x25\x72", [0x2b64] = "\x01\x4a\x2f", + [0x2b65] = "\x01\x50\x7d", [0x2b66] = "\x03\x2c\x50", + [0x2b67] = "\x02\x2e\x7d", [0x2b69] = "\x01\x5a\x33", + [0x2b6a] = "\x01\x5d\x29", [0x2b6b] = "\x01\x5a\x34", + [0x2b6c] = "\x01\x5a\x32", [0x2b6d] = "\x01\x5f\x25", + [0x2b6e] = "\x03\x41\x24", [0x2b6f] = "\x02\x4a\x27", + [0x2b70] = "\x01\x68\x64", [0x2b71] = "\x01\x6c\x60", + [0x2b72] = "\x03\x5f\x45", [0x2b73] = "\x02\x21\x2c", + [0x2b74] = "\x02\x22\x3f", [0x2b75] = "\x04\x22\x6d", + [0x2b76] = "\x02\x23\x75", [0x2b77] = "\x01\x4a\x31", + [0x2b78] = "\x02\x23\x74", [0x2b79] = "\x01\x4a\x32", + [0x2b7a] = "\x04\x24\x2c", [0x2b7c] = "\x01\x4d\x3e", + [0x2b7d] = "\x02\x26\x58", [0x2b7e] = "\x02\x26\x57", + [0x2b7f] = "\x01\x4d\x3d", [0x2b80] = "\x01\x4d\x3b", + [0x2b81] = "\x01\x4d\x3c", [0x2b82] = "\x02\x26\x56", + [0x2b83] = "\x03\x28\x76", [0x2b84] = "\x03\x28\x75", + [0x2b85] = "\x01\x51\x21", [0x2b86] = "\x02\x2a\x3f", + [0x2b87] = "\x01\x51\x24", [0x2b88] = "\x01\x50\x7e", + [0x2b89] = "\x01\x51\x26", [0x2b8a] = "\x01\x51\x22", + [0x2b8b] = "\x01\x51\x23", [0x2b8c] = "\x01\x51\x25", + [0x2b8d] = "\x04\x29\x31", [0x2b8e] = "\x03\x30\x70", + [0x2b8f] = "\x03\x30\x72", [0x2b90] = "\x01\x55\x41", + [0x2b91] = "\x01\x55\x40", [0x2b92] = "\x01\x55\x3f", + [0x2b93] = "\x03\x30\x71", [0x2b94] = "\x03\x64\x76", + [0x2b96] = "\x02\x35\x33", [0x2b97] = "\x01\x5a\x35", + [0x2b98] = "\x01\x5a\x38", [0x2b99] = "\x01\x5a\x36", + [0x2b9a] = "\x03\x64\x77", [0x2b9b] = "\x02\x35\x32", + [0x2b9c] = "\x01\x5a\x3b", [0x2b9d] = "\x04\x31\x53", + [0x2b9e] = "\x01\x5a\x37", [0x2b9f] = "\x02\x35\x34", + [0x2ba0] = "\x01\x5a\x3a", [0x2ba1] = "\x01\x5a\x39", + [0x2ba2] = "\x04\x31\x52", [0x2ba3] = "\x04\x31\x57", + [0x2ba4] = "\x04\x37\x4a", [0x2ba5] = "\x02\x3b\x5a", + [0x2ba6] = "\x02\x3b\x59", [0x2ba7] = "\x03\x3b\x4b", + [0x2ba8] = "\x01\x5f\x28", [0x2ba9] = "\x01\x5f\x26", + [0x2baa] = "\x01\x5f\x27", [0x2bab] = "\x02\x3b\x5b", + [0x2bac] = "\x01\x63\x71", [0x2bad] = "\x02\x42\x6a", + [0x2bae] = "\x01\x63\x72", [0x2baf] = "\x02\x42\x69", + [0x2bb0] = "\x04\x3d\x34", [0x2bb1] = "\x04\x43\x3f", + [0x2bb2] = "\x02\x50\x40", [0x2bb3] = "\x03\x46\x63", + [0x2bb4] = "\x03\x46\x64", [0x2bb5] = "\x01\x6c\x62", + [0x2bb6] = "\x02\x4a\x28", [0x2bb7] = "\x01\x6c\x61", + [0x2bb8] = "\x03\x4b\x72", [0x2bb9] = "\x01\x68\x65", + [0x2bba] = "\x03\x64\x78", [0x2bbb] = "\x02\x57\x22", + [0x2bbc] = "\x02\x57\x21", [0x2bbd] = "\x01\x73\x5b", + [0x2bbe] = "\x02\x5c\x69", [0x2bbf] = "\x02\x65\x4b", + [0x2bc0] = "\x02\x68\x74", [0x2bc1] = "\x02\x68\x75", + [0x2bc2] = "\x03\x5e\x2f", [0x2bc3] = "\x01\x45\x40", + [0x2bc4] = "\x04\x21\x36", [0x2bc5] = "\x01\x46\x52", + [0x2bc7] = "\x03\x22\x4d", [0x2bc8] = "\x04\x22\x71", + [0x2bc9] = "\x02\x21\x5c", [0x2bca] = "\x03\x22\x4c", + [0x2bcb] = "\x05\x22\x66", [0x2bcc] = "\x01\x4a\x34", + [0x2bcd] = "\x01\x4a\x36", [0x2bce] = "\x03\x25\x78", + [0x2bcf] = "\x02\x22\x42", [0x2bd0] = "\x02\x23\x78", + [0x2bd1] = "\x02\x23\x77", [0x2bd2] = "\x02\x23\x76", + [0x2bd3] = "\x03\x23\x66", [0x2bd4] = "\x02\x22\x41", + [0x2bd5] = "\x02\x22\x40", [0x2bd6] = "\x01\x48\x25", + [0x2bd7] = "\x01\x4a\x35", [0x2bd8] = "\x01\x4a\x33", + [0x2bd9] = "\x01\x48\x24", [0x2bda] = "\x03\x23\x67", + [0x2bdb] = "\x03\x23\x69", [0x2bdc] = "\x03\x25\x77", + [0x2bdd] = "\x01\x4d\x3f", [0x2bde] = "\x02\x26\x59", + [0x2bdf] = "\x03\x25\x7b", [0x2be0] = "\x01\x4d\x40", + [0x2be1] = "\x02\x23\x7d", [0x2be2] = "\x04\x26\x50", + [0x2be3] = "\x02\x24\x21", [0x2be4] = "\x02\x23\x7e", + [0x2be5] = "\x02\x26\x5a", [0x2be6] = "\x03\x25\x76", + [0x2be7] = "\x03\x25\x74", [0x2be8] = "\x02\x23\x7a", + [0x2be9] = "\x03\x28\x7e", [0x2bea] = "\x01\x4a\x3a", + [0x2beb] = "\x01\x4a\x38", [0x2bec] = "\x03\x25\x7c", + [0x2bed] = "\x02\x23\x79", [0x2bee] = "\x02\x23\x7b", + [0x2bef] = "\x02\x24\x23", [0x2bf0] = "\x03\x26\x22", + [0x2bf1] = "\x01\x4a\x37", [0x2bf2] = "\x03\x26\x21", + [0x2bf3] = "\x02\x23\x7c", [0x2bf4] = "\x02\x24\x27", + [0x2bf5] = "\x01\x4d\x42", [0x2bf6] = "\x03\x25\x7d", + [0x2bf7] = "\x02\x24\x24", [0x2bf8] = "\x01\x4a\x39", + [0x2bf9] = "\x03\x26\x23", [0x2bfa] = "\x02\x24\x22", + [0x2bfb] = "\x02\x24\x25", [0x2bfc] = "\x03\x25\x7a", + [0x2bfd] = "\x01\x4d\x41", [0x2bfe] = "\x03\x25\x75", + [0x2bff] = "\x01\x4d\x43", [0x2c00] = "\x02\x24\x26", + [0x2c07] = "\x03\x28\x78", [0x2c08] = "\x03\x29\x22", + [0x2c09] = "\x02\x26\x6e", [0x2c0a] = "\x02\x26\x61", + [0x2c0b] = "\x02\x26\x5f", [0x2c0c] = "\x02\x26\x6d", + [0x2c0d] = "\x02\x26\x68", [0x2c0e] = "\x01\x51\x2b", + [0x2c0f] = "\x01\x4d\x44", [0x2c10] = "\x02\x26\x69", + [0x2c11] = "\x02\x26\x6c", [0x2c12] = "\x01\x51\x27", + [0x2c13] = "\x02\x26\x6b", [0x2c14] = "\x01\x4d\x45", + [0x2c15] = "\x01\x4d\x4a", [0x2c16] = "\x01\x4d\x48", + [0x2c17] = "\x02\x26\x62", [0x2c18] = "\x04\x29\x36", + [0x2c19] = "\x02\x26\x5d", [0x2c1a] = "\x02\x26\x64", + [0x2c1b] = "\x01\x4d\x4f", [0x2c1c] = "\x02\x26\x6f", + [0x2c1d] = "\x01\x51\x28", [0x2c1e] = "\x02\x26\x65", + [0x2c1f] = "\x04\x26\x4f", [0x2c20] = "\x01\x51\x29", + [0x2c21] = "\x01\x4d\x4b", [0x2c22] = "\x02\x26\x67", + [0x2c23] = "\x03\x2c\x5a", [0x2c24] = "\x02\x2a\x4e", + [0x2c25] = "\x01\x51\x2a", [0x2c26] = "\x02\x26\x5c", + [0x2c27] = "\x01\x4d\x4c", [0x2c28] = "\x01\x51\x2c", + [0x2c29] = "\x01\x4d\x4d", [0x2c2a] = "\x01\x4d\x49", + [0x2c2b] = "\x01\x4d\x4e", [0x2c2c] = "\x02\x26\x66", + [0x2c2d] = "\x02\x26\x5b", [0x2c2e] = "\x02\x26\x6a", + [0x2c2f] = "\x01\x4d\x46", [0x2c30] = "\x03\x28\x77", + [0x2c31] = "\x03\x2c\x5b", [0x2c32] = "\x02\x26\x5e", + [0x2c33] = "\x02\x26\x63", [0x2c34] = "\x02\x26\x60", + [0x2c35] = "\x01\x4d\x47", [0x2c36] = "\x03\x28\x7a", + [0x2c37] = "\x02\x2a\x40", [0x2c38] = "\x04\x29\x45", + [0x2c39] = "\x02\x2a\x41", [0x2c3d] = "\x03\x29\x21", + [0x2c40] = "\x02\x2a\x4b", [0x2c41] = "\x02\x2f\x23", + [0x2c42] = "\x02\x2a\x4c", [0x2c43] = "\x01\x51\x32", + [0x2c44] = "\x02\x2a\x4f", [0x2c45] = "\x02\x2a\x45", + [0x2c46] = "\x01\x51\x31", [0x2c47] = "\x02\x2a\x47", + [0x2c48] = "\x04\x29\x3f", [0x2c49] = "\x02\x2a\x48", + [0x2c4a] = "\x03\x2c\x60", [0x2c4b] = "\x03\x30\x79", + [0x2c4c] = "\x02\x2a\x4a", [0x2c4d] = "\x01\x51\x2d", + [0x2c4e] = "\x03\x2c\x56", [0x2c4f] = "\x03\x30\x73", + [0x2c50] = "\x01\x55\x45", [0x2c51] = "\x03\x2c\x57", + [0x2c52] = "\x03\x2c\x5d", [0x2c53] = "\x02\x2a\x46", + [0x2c54] = "\x02\x2a\x42", [0x2c55] = "\x01\x55\x46", + [0x2c56] = "\x03\x30\x7e", [0x2c57] = "\x04\x29\x3e", + [0x2c58] = "\x02\x2a\x50", [0x2c59] = "\x01\x55\x42", + [0x2c5a] = "\x02\x2f\x21", [0x2c5b] = "\x02\x2a\x49", + [0x2c5c] = "\x03\x2c\x54", [0x2c5d] = "\x02\x2e\x7e", + [0x2c5e] = "\x02\x2a\x44", [0x2c5f] = "\x02\x2a\x4d", + [0x2c60] = "\x03\x2c\x5f", [0x2c61] = "\x03\x2c\x61", + [0x2c62] = "\x01\x51\x30", [0x2c63] = "\x01\x55\x43", + [0x2c64] = "\x01\x51\x36", [0x2c65] = "\x01\x55\x44", + [0x2c66] = "\x02\x2a\x51", [0x2c67] = "\x02\x2f\x22", + [0x2c68] = "\x01\x51\x2f", [0x2c69] = "\x01\x55\x48", + [0x2c6a] = "\x01\x51\x35", [0x2c6b] = "\x01\x51\x34", + [0x2c6c] = "\x01\x51\x33", [0x2c6d] = "\x01\x55\x47", + [0x2c6e] = "\x02\x2a\x52", [0x2c6f] = "\x01\x55\x49", + [0x2c70] = "\x01\x51\x2e", [0x2c71] = "\x04\x29\x4b", + [0x2c72] = "\x02\x2a\x43", [0x2c73] = "\x03\x30\x7a", + [0x2c74] = "\x03\x30\x78", [0x2c75] = "\x03\x30\x7b", + [0x2c7c] = "\x03\x2c\x5c", [0x2c7e] = "\x03\x30\x76", + [0x2c7f] = "\x01\x5a\x3c", [0x2c80] = "\x02\x2f\x26", + [0x2c81] = "\x02\x2f\x28", [0x2c82] = "\x04\x2d\x25", + [0x2c83] = "\x02\x2f\x2a", [0x2c84] = "\x01\x55\x4a", + [0x2c85] = "\x01\x55\x50", [0x2c86] = "\x02\x35\x37", + [0x2c87] = "\x02\x2f\x2e", [0x2c88] = "\x02\x2f\x25", + [0x2c89] = "\x01\x5a\x3e", [0x2c8a] = "\x02\x35\x35", + [0x2c8b] = "\x03\x31\x22", [0x2c8c] = "\x01\x55\x4f", + [0x2c8d] = "\x01\x55\x4d", [0x2c8e] = "\x02\x2f\x30", + [0x2c8f] = "\x04\x2d\x2d", [0x2c90] = "\x02\x35\x36", + [0x2c91] = "\x04\x2d\x2c", [0x2c92] = "\x02\x2f\x27", + [0x2c93] = "\x03\x31\x25", [0x2c94] = "\x01\x55\x4e", + [0x2c95] = "\x02\x2f\x2b", [0x2c96] = "\x01\x55\x51", + [0x2c97] = "\x02\x2f\x2d", [0x2c98] = "\x03\x35\x68", + [0x2c99] = "\x03\x30\x74", [0x2c9a] = "\x01\x55\x4c", + [0x2c9b] = "\x02\x2f\x2c", [0x2c9c] = "\x02\x2f\x2f", + [0x2c9d] = "\x02\x2f\x29", [0x2c9e] = "\x03\x31\x27", + [0x2c9f] = "\x01\x55\x4b", [0x2ca0] = "\x01\x5a\x3f", + [0x2ca1] = "\x03\x35\x71", [0x2ca2] = "\x02\x2f\x24", + [0x2ca3] = "\x01\x5a\x3d", [0x2ca4] = "\x03\x35\x72", + [0x2ca5] = "\x04\x31\x6b", [0x2ca6] = "\x03\x31\x23", + [0x2ca7] = "\x03\x31\x28", [0x2ca8] = "\x01\x5a\x40", + [0x2ca9] = "\x03\x31\x21", [0x2caa] = "\x03\x35\x6f", + [0x2cae] = "\x03\x31\x26", [0x2cb0] = "\x02\x35\x39", + [0x2cb1] = "\x02\x35\x42", [0x2cb2] = "\x01\x5f\x2b", + [0x2cb3] = "\x03\x3b\x54", [0x2cb4] = "\x01\x5a\x42", + [0x2cb5] = "\x01\x5a\x47", [0x2cb6] = "\x01\x5f\x2c", + [0x2cb7] = "\x02\x35\x44", [0x2cb8] = "\x01\x5a\x4e", + [0x2cb9] = "\x02\x3b\x5d", [0x2cba] = "\x02\x35\x3a", + [0x2cbb] = "\x01\x5a\x46", [0x2cbc] = "\x01\x5a\x49", + [0x2cbd] = "\x01\x5a\x44", [0x2cbe] = "\x02\x35\x38", + [0x2cbf] = "\x02\x35\x46", [0x2cc0] = "\x02\x35\x49", + [0x2cc1] = "\x02\x3b\x6c", [0x2cc2] = "\x04\x31\x68", + [0x2cc3] = "\x02\x35\x47", [0x2cc4] = "\x02\x3b\x61", + [0x2cc5] = "\x01\x5a\x45", [0x2cc6] = "\x01\x5a\x4c", + [0x2cc7] = "\x01\x5a\x50", [0x2cc8] = "\x02\x35\x41", + [0x2cc9] = "\x02\x3b\x5c", [0x2cca] = "\x02\x35\x45", + [0x2ccb] = "\x01\x5a\x41", [0x2ccc] = "\x02\x3b\x5e", + [0x2ccd] = "\x02\x35\x48", [0x2cce] = "\x02\x3b\x60", + [0x2ccf] = "\x02\x35\x3d", [0x2cd0] = "\x03\x35\x6a", + [0x2cd1] = "\x01\x5f\x29", [0x2cd2] = "\x03\x3b\x56", + [0x2cd3] = "\x02\x35\x3b", [0x2cd4] = "\x02\x35\x3c", + [0x2cd5] = "\x01\x5a\x4b", [0x2cd6] = "\x03\x3b\x55", + [0x2cd7] = "\x03\x35\x6e", [0x2cd8] = "\x01\x5a\x4a", + [0x2cd9] = "\x02\x35\x3f", [0x2cda] = "\x01\x5a\x4f", + [0x2cdb] = "\x02\x35\x43", [0x2cdc] = "\x01\x5a\x48", + [0x2cdd] = "\x02\x35\x40", [0x2cde] = "\x03\x35\x79", + [0x2cdf] = "\x01\x5a\x4d", [0x2ce0] = "\x01\x5f\x2d", + [0x2ce1] = "\x01\x5f\x2a", [0x2ce2] = "\x02\x3b\x5f", + [0x2ce3] = "\x03\x3b\x58", [0x2ce4] = "\x02\x35\x3e", + [0x2ce5] = "\x03\x3b\x59", [0x2ce6] = "\x01\x5a\x43", + [0x2ce7] = "\x03\x35\x76", [0x2ce8] = "\x03\x35\x78", + [0x2ce9] = "\x03\x3b\x5a", [0x2cea] = "\x03\x3b\x4d", + [0x2cee] = "\x03\x35\x74", [0x2cf0] = "\x01\x5f\x32", + [0x2cf1] = "\x01\x5f\x36", [0x2cf2] = "\x02\x3b\x63", + [0x2cf3] = "\x01\x63\x77", [0x2cf4] = "\x01\x5f\x34", + [0x2cf5] = "\x02\x3b\x67", [0x2cf6] = "\x01\x5f\x38", + [0x2cf7] = "\x02\x42\x6b", [0x2cf8] = "\x02\x3b\x69", + [0x2cf9] = "\x01\x63\x79", [0x2cfa] = "\x01\x5f\x30", + [0x2cfb] = "\x01\x5f\x33", [0x2cfc] = "\x02\x3b\x6a", + [0x2cfd] = "\x03\x3b\x5e", [0x2cfe] = "\x02\x3b\x6b", + [0x2cff] = "\x02\x3b\x71", [0x2d00] = "\x01\x5f\x3a", + [0x2d01] = "\x01\x63\x7a", [0x2d02] = "\x04\x3d\x3d", + [0x2d03] = "\x02\x3b\x6d", [0x2d04] = "\x02\x3b\x72", + [0x2d05] = "\x02\x3b\x66", [0x2d06] = "\x01\x64\x26", + [0x2d07] = "\x03\x3b\x4f", [0x2d08] = "\x01\x63\x7b", + [0x2d09] = "\x01\x5f\x39", [0x2d0a] = "\x02\x3b\x64", + [0x2d0b] = "\x02\x3b\x73", [0x2d0c] = "\x03\x3b\x51", + [0x2d0d] = "\x01\x64\x25", [0x2d0e] = "\x01\x5f\x37", + [0x2d0f] = "\x01\x63\x74", [0x2d10] = "\x02\x3b\x70", + [0x2d11] = "\x03\x3b\x5d", [0x2d12] = "\x01\x5f\x3b", + [0x2d13] = "\x02\x3b\x68", [0x2d14] = "\x02\x3b\x62", + [0x2d15] = "\x01\x5f\x31", [0x2d16] = "\x02\x3b\x65", + [0x2d17] = "\x05\x3f\x30", [0x2d18] = "\x02\x3b\x6e", + [0x2d19] = "\x03\x41\x2b", [0x2d1a] = "\x01\x63\x73", + [0x2d1b] = "\x01\x63\x78", [0x2d1c] = "\x01\x5f\x2e", + [0x2d1d] = "\x02\x3b\x6f", [0x2d1e] = "\x03\x3b\x61", + [0x2d1f] = "\x01\x63\x76", [0x2d20] = "\x03\x3b\x62", + [0x2d21] = "\x03\x3b\x63", [0x2d22] = "\x03\x3b\x50", + [0x2d23] = "\x01\x5f\x2f", [0x2d25] = "\x03\x64\x79", + [0x2d27] = "\x01\x64\x24", [0x2d28] = "\x02\x4a\x2a", + [0x2d29] = "\x02\x42\x76", [0x2d2a] = "\x03\x41\x29", + [0x2d2b] = "\x02\x42\x6e", [0x2d2c] = "\x02\x4a\x29", + [0x2d2d] = "\x04\x3d\x39", [0x2d2e] = "\x02\x42\x72", + [0x2d2f] = "\x02\x42\x74", [0x2d30] = "\x03\x41\x27", + [0x2d31] = "\x03\x41\x2c", [0x2d32] = "\x02\x42\x71", + [0x2d33] = "\x03\x46\x6f", [0x2d34] = "\x01\x64\x23", + [0x2d35] = "\x04\x3d\x38", [0x2d36] = "\x02\x42\x70", + [0x2d37] = "\x01\x64\x27", [0x2d38] = "\x03\x46\x6e", + [0x2d39] = "\x06\x52\x64", [0x2d3a] = "\x03\x41\x28", + [0x2d3b] = "\x02\x4a\x39", [0x2d3c] = "\x03\x46\x6c", + [0x2d3d] = "\x03\x41\x2e", [0x2d3e] = "\x01\x64\x22", + [0x2d3f] = "\x01\x68\x67", [0x2d40] = "\x02\x42\x77", + [0x2d41] = "\x02\x4a\x2b", [0x2d42] = "\x03\x46\x6d", + [0x2d43] = "\x03\x41\x2a", [0x2d44] = "\x01\x63\x7e", + [0x2d45] = "\x02\x42\x6f", [0x2d46] = "\x02\x42\x73", + [0x2d47] = "\x01\x68\x66", [0x2d48] = "\x01\x63\x75", + [0x2d49] = "\x02\x42\x6c", [0x2d4a] = "\x02\x42\x6d", + [0x2d4b] = "\x01\x68\x68", [0x2d4c] = "\x01\x63\x7d", + [0x2d4d] = "\x01\x64\x21", [0x2d4e] = "\x01\x63\x7c", + [0x2d4f] = "\x02\x42\x75", [0x2d50] = "\x03\x64\x7a", + [0x2d52] = "\x02\x4a\x2f", [0x2d53] = "\x02\x4a\x30", + [0x2d54] = "\x02\x4a\x35", [0x2d55] = "\x01\x6c\x67", + [0x2d56] = "\x02\x4a\x3c", [0x2d57] = "\x03\x4b\x73", + [0x2d58] = "\x01\x68\x6e", [0x2d59] = "\x03\x4b\x7e", + [0x2d5a] = "\x01\x68\x6d", [0x2d5b] = "\x02\x4a\x37", + [0x2d5c] = "\x03\x4b\x74", [0x2d5d] = "\x01\x6c\x66", + [0x2d5e] = "\x02\x4a\x2c", [0x2d5f] = "\x01\x68\x6c", + [0x2d60] = "\x03\x46\x71", [0x2d61] = "\x02\x4a\x3b", + [0x2d62] = "\x01\x68\x6a", [0x2d63] = "\x01\x68\x6b", + [0x2d64] = "\x03\x4b\x7c", [0x2d65] = "\x02\x4a\x38", + [0x2d66] = "\x02\x50\x51", [0x2d67] = "\x01\x6c\x64", + [0x2d68] = "\x01\x5f\x35", [0x2d69] = "\x03\x46\x72", + [0x2d6a] = "\x02\x4a\x3a", [0x2d6b] = "\x01\x6c\x6b", + [0x2d6c] = "\x02\x4a\x32", [0x2d6d] = "\x04\x49\x6f", + [0x2d6e] = "\x01\x6c\x65", [0x2d6f] = "\x03\x46\x6a", + [0x2d70] = "\x01\x6c\x6a", [0x2d71] = "\x02\x4a\x2d", + [0x2d72] = "\x02\x4a\x31", [0x2d73] = "\x02\x4a\x2e", + [0x2d74] = "\x02\x4a\x34", [0x2d75] = "\x01\x68\x6f", + [0x2d76] = "\x01\x6c\x63", [0x2d77] = "\x01\x68\x69", + [0x2d78] = "\x03\x4c\x21", [0x2d79] = "\x02\x50\x43", + [0x2d7a] = "\x02\x4a\x36", [0x2d7b] = "\x03\x46\x68", + [0x2d7c] = "\x01\x6c\x69", [0x2d7d] = "\x03\x46\x73", + [0x2d7e] = "\x01\x6c\x6c", [0x2d7f] = "\x07\x22\x71", + [0x2d80] = "\x02\x4a\x33", [0x2d81] = "\x03\x46\x6b", + [0x2d82] = "\x01\x6c\x68", [0x2d83] = "\x02\x50\x42", + [0x2d85] = "\x03\x4c\x23", [0x2d86] = "\x03\x46\x74", + [0x2d87] = "\x03\x4c\x24", [0x2d88] = "\x03\x4b\x77", + [0x2d89] = "\x02\x50\x47", [0x2d8a] = "\x01\x70\x57", + [0x2d8b] = "\x02\x50\x41", [0x2d8c] = "\x02\x57\x2e", + [0x2d8d] = "\x02\x50\x50", [0x2d8e] = "\x01\x6c\x70", + [0x2d8f] = "\x03\x4b\x7a", [0x2d90] = "\x01\x6c\x6e", + [0x2d91] = "\x01\x70\x55", [0x2d92] = "\x02\x50\x4d", + [0x2d93] = "\x02\x50\x49", [0x2d94] = "\x01\x6c\x74", + [0x2d95] = "\x03\x4b\x76", [0x2d96] = "\x02\x57\x25", + [0x2d97] = "\x03\x50\x68", [0x2d98] = "\x03\x4c\x28", + [0x2d99] = "\x03\x50\x67", [0x2d9a] = "\x01\x6c\x72", + [0x2d9b] = "\x02\x50\x48", [0x2d9c] = "\x03\x4c\x29", + [0x2d9d] = "\x02\x57\x23", [0x2d9e] = "\x03\x4c\x25", + [0x2d9f] = "\x02\x50\x4c", [0x2da0] = "\x04\x50\x3b", + [0x2da1] = "\x02\x50\x4f", [0x2da2] = "\x02\x50\x46", + [0x2da3] = "\x03\x4b\x79", [0x2da4] = "\x01\x6c\x73", + [0x2da5] = "\x04\x50\x37", [0x2da6] = "\x03\x4b\x75", + [0x2da7] = "\x01\x6c\x6d", [0x2da8] = "\x02\x57\x24", + [0x2da9] = "\x01\x70\x56", [0x2daa] = "\x02\x50\x4e", + [0x2dab] = "\x01\x6c\x6f", [0x2dac] = "\x01\x6c\x71", + [0x2dad] = "\x02\x50\x4b", [0x2dae] = "\x01\x6c\x75", + [0x2daf] = "\x02\x50\x4a", [0x2db0] = "\x02\x50\x45", + [0x2db1] = "\x02\x50\x44", [0x2db2] = "\x01\x70\x54", + [0x2db3] = "\x02\x50\x52", [0x2db4] = "\x02\x57\x27", + [0x2db5] = "\x02\x5c\x6b", [0x2db6] = "\x01\x70\x59", + [0x2db7] = "\x03\x50\x61", [0x2db8] = "\x02\x57\x2d", + [0x2db9] = "\x03\x50\x63", [0x2dba] = "\x02\x57\x2b", + [0x2dbb] = "\x03\x50\x6a", [0x2dbc] = "\x02\x5c\x6c", + [0x2dbd] = "\x03\x50\x64", [0x2dbe] = "\x01\x70\x5a", + [0x2dbf] = "\x02\x57\x2c", [0x2dc0] = "\x03\x50\x66", + [0x2dc1] = "\x02\x57\x29", [0x2dc2] = "\x01\x73\x5d", + [0x2dc3] = "\x02\x5c\x6a", [0x2dc4] = "\x03\x50\x6c", + [0x2dc5] = "\x02\x57\x26", [0x2dc6] = "\x02\x57\x28", + [0x2dc7] = "\x01\x73\x5e", [0x2dc8] = "\x01\x70\x5c", + [0x2dc9] = "\x01\x73\x5c", [0x2dca] = "\x01\x70\x5b", + [0x2dcb] = "\x01\x73\x60", [0x2dcc] = "\x02\x57\x2a", + [0x2dcd] = "\x01\x70\x58", [0x2dce] = "\x03\x50\x62", + [0x2dcf] = "\x03\x50\x65", [0x2dd0] = "\x03\x50\x6b", + [0x2dd3] = "\x03\x66\x79", [0x2dd5] = "\x04\x5b\x2b", + [0x2dd6] = "\x02\x61\x5b", [0x2dd7] = "\x04\x56\x33", + [0x2dd8] = "\x02\x61\x53", [0x2dd9] = "\x03\x54\x61", + [0x2dda] = "\x03\x54\x5f", [0x2ddb] = "\x03\x54\x5c", + [0x2ddc] = "\x03\x54\x5e", [0x2ddd] = "\x03\x54\x5d", + [0x2dde] = "\x02\x5c\x72", [0x2ddf] = "\x02\x61\x54", + [0x2de0] = "\x02\x5c\x6e", [0x2de1] = "\x04\x56\x32", + [0x2de2] = "\x03\x54\x5b", [0x2de3] = "\x01\x76\x42", + [0x2de4] = "\x02\x5c\x70", [0x2de5] = "\x02\x5c\x6f", + [0x2de6] = "\x01\x73\x5f", [0x2de7] = "\x02\x5c\x6d", + [0x2de8] = "\x02\x5c\x71", [0x2de9] = "\x02\x61\x5c", + [0x2dea] = "\x02\x61\x58", [0x2deb] = "\x02\x61\x5a", + [0x2dec] = "\x04\x5f\x60", [0x2ded] = "\x02\x61\x55", + [0x2dee] = "\x02\x61\x56", [0x2def] = "\x04\x5f\x61", + [0x2df0] = "\x02\x61\x59", [0x2df1] = "\x02\x61\x57", + [0x2df2] = "\x01\x78\x34", [0x2df3] = "\x03\x57\x65", + [0x2df5] = "\x01\x78\x37", [0x2df6] = "\x01\x78\x36", + [0x2df7] = "\x01\x78\x35", [0x2df8] = "\x01\x79\x6c", + [0x2df9] = "\x02\x68\x76", [0x2dfa] = "\x01\x79\x6d", + [0x2dfb] = "\x02\x65\x4c", [0x2dfc] = "\x01\x7a\x6a", + [0x2dfd] = "\x02\x6b\x5a", [0x2dfe] = "\x01\x7a\x6b", + [0x2dff] = "\x01\x7b\x60", [0x2e00] = "\x01\x7c\x36", + [0x2e01] = "\x02\x6f\x28", [0x2e02] = "\x03\x5f\x46", + [0x2e03] = "\x02\x6f\x29", [0x2e04] = "\x02\x6f\x2a", + [0x2e05] = "\x03\x61\x3e", [0x2e07] = "\x02\x72\x2a", + [0x2e08] = "\x01\x45\x41", [0x2e09] = "\x02\x21\x5d", + [0x2e0a] = "\x01\x46\x53", [0x2e0c] = "\x01\x48\x27", + [0x2e0d] = "\x01\x48\x28", [0x2e0e] = "\x01\x48\x26", + [0x2e0f] = "\x03\x23\x6b", [0x2e10] = "\x01\x48\x29", + [0x2e11] = "\x01\x4a\x3c", [0x2e12] = "\x01\x4a\x3b", + [0x2e13] = "\x03\x26\x25", [0x2e14] = "\x02\x26\x70", + [0x2e15] = "\x01\x4d\x51", [0x2e16] = "\x01\x4d\x50", + [0x2e18] = "\x03\x2c\x63", [0x2e19] = "\x02\x2f\x31", + [0x2e1a] = "\x01\x5a\x51", [0x2e1b] = "\x01\x5a\x52", + [0x2e1c] = "\x04\x31\x6e", [0x2e1d] = "\x04\x31\x70", + [0x2e1e] = "\x03\x3b\x64", [0x2e1f] = "\x01\x5f\x3c", + [0x2e20] = "\x02\x42\x78", [0x2e21] = "\x01\x64\x28", + [0x2e22] = "\x01\x64\x29", [0x2e23] = "\x02\x42\x7a", + [0x2e24] = "\x02\x42\x7c", [0x2e25] = "\x02\x42\x7b", + [0x2e26] = "\x04\x3d\x43", [0x2e27] = "\x02\x4a\x3e", + [0x2e28] = "\x03\x46\x76", [0x2e29] = "\x02\x4a\x3d", + [0x2e2a] = "\x01\x68\x70", [0x2e2b] = "\x02\x4a\x3f", + [0x2e2c] = "\x03\x46\x75", [0x2e2d] = "\x02\x50\x53", + [0x2e2e] = "\x01\x6c\x76", [0x2e2f] = "\x03\x4c\x2c", + [0x2e30] = "\x01\x70\x5d", [0x2e31] = "\x03\x50\x6d", + [0x2e32] = "\x01\x73\x61", [0x2e33] = "\x01\x76\x43", + [0x2e34] = "\x01\x73\x62", [0x2e35] = "\x03\x5f\x48", + [0x2e36] = "\x01\x45\x42", [0x2e37] = "\x03\x21\x65", + [0x2e38] = "\x03\x21\x66", [0x2e39] = "\x03\x22\x4e", + [0x2e3a] = "\x02\x24\x28", [0x2e3b] = "\x03\x26\x28", + [0x2e3c] = "\x03\x26\x29", [0x2e3d] = "\x02\x26\x71", + [0x2e3e] = "\x01\x4d\x53", [0x2e3f] = "\x01\x4d\x52", + [0x2e40] = "\x01\x4d\x54", [0x2e41] = "\x01\x51\x37", + [0x2e42] = "\x02\x2a\x53", [0x2e43] = "\x02\x2a\x54", + [0x2e45] = "\x03\x31\x29", [0x2e46] = "\x02\x2f\x32", + [0x2e47] = "\x01\x55\x52", [0x2e48] = "\x01\x5a\x53", + [0x2e49] = "\x01\x5f\x3d", [0x2e4a] = "\x02\x3b\x74", + [0x2e4b] = "\x01\x45\x43", [0x2e4c] = "\x04\x21\x37", + [0x2e4d] = "\x01\x44\x5f", [0x2e4e] = "\x01\x45\x44", + [0x2e4f] = "\x03\x22\x50", [0x2e50] = "\x02\x21\x5e", + [0x2e51] = "\x01\x46\x57", [0x2e52] = "\x01\x46\x56", + [0x2e53] = "\x01\x46\x54", [0x2e54] = "\x01\x46\x55", + [0x2e57] = "\x03\x23\x6f", [0x2e58] = "\x01\x48\x2c", + [0x2e59] = "\x02\x22\x49", [0x2e5a] = "\x02\x22\x4b", + [0x2e5b] = "\x01\x48\x2b", [0x2e5c] = "\x02\x22\x43", + [0x2e5d] = "\x03\x23\x6c", [0x2e5e] = "\x02\x22\x44", + [0x2e5f] = "\x03\x23\x6d", [0x2e60] = "\x02\x22\x4a", + [0x2e61] = "\x02\x22\x46", [0x2e62] = "\x02\x22\x48", + [0x2e63] = "\x01\x48\x2a", [0x2e64] = "\x02\x22\x45", + [0x2e65] = "\x02\x22\x4c", [0x2e66] = "\x02\x22\x47", + [0x2e67] = "\x03\x23\x6e", [0x2e68] = "\x0f\x22\x51", + [0x2e6d] = "\x01\x4a\x43", [0x2e6e] = "\x01\x4a\x4c", + [0x2e6f] = "\x01\x4a\x4a", [0x2e70] = "\x02\x24\x32", + [0x2e71] = "\x02\x24\x2f", [0x2e72] = "\x02\x24\x37", + [0x2e73] = "\x01\x4a\x48", [0x2e74] = "\x02\x24\x38", + [0x2e75] = "\x03\x26\x39", [0x2e76] = "\x01\x4a\x41", + [0x2e77] = "\x02\x24\x35", [0x2e78] = "\x03\x26\x2e", + [0x2e79] = "\x01\x4a\x47", [0x2e7a] = "\x02\x24\x31", + [0x2e7b] = "\x02\x24\x30", [0x2e7c] = "\x01\x4a\x45", + [0x2e7d] = "\x02\x24\x36", [0x2e7e] = "\x01\x4a\x46", + [0x2e7f] = "\x01\x4d\x55", [0x2e80] = "\x01\x4a\x40", + [0x2e81] = "\x02\x24\x33", [0x2e82] = "\x03\x26\x2a", + [0x2e83] = "\x02\x24\x29", [0x2e84] = "\x01\x4a\x3d", + [0x2e85] = "\x03\x26\x37", [0x2e86] = "\x01\x4a\x50", + [0x2e87] = "\x02\x24\x2e", [0x2e88] = "\x02\x24\x34", + [0x2e89] = "\x01\x4a\x42", [0x2e8a] = "\x01\x4a\x44", + [0x2e8b] = "\x03\x26\x2f", [0x2e8c] = "\x02\x24\x2a", + [0x2e8d] = "\x03\x26\x36", [0x2e8e] = "\x02\x24\x2b", + [0x2e8f] = "\x02\x24\x2c", [0x2e90] = "\x04\x24\x39", + [0x2e91] = "\x01\x4a\x4f", [0x2e92] = "\x01\x4a\x49", + [0x2e93] = "\x01\x4a\x4e", [0x2e94] = "\x02\x24\x2d", + [0x2e95] = "\x01\x4a\x4d", [0x2e96] = "\x01\x4a\x3f", + [0x2e97] = "\x01\x4a\x3e", [0x2e98] = "\x01\x4a\x4b", + [0x2e99] = "\x03\x26\x35", [0x2e9a] = "\x04\x24\x3c", + [0x2e9b] = "\x03\x26\x33", [0x2e9c] = "\x03\x26\x34", + [0x2e9d] = "\x03\x26\x38", [0x2e9e] = "\x03\x26\x31", + [0x2ea3] = "\x03\x64\x7b", [0x2ea4] = "\x0f\x24\x39", + [0x2ea5] = "\x03\x26\x32", [0x2ea6] = "\x03\x29\x31", + [0x2ea7] = "\x03\x29\x2a", [0x2ea8] = "\x01\x4d\x63", + [0x2ea9] = "\x02\x26\x7d", [0x2eaa] = "\x02\x26\x76", + [0x2eab] = "\x01\x4d\x5e", [0x2eac] = "\x01\x4d\x71", + [0x2ead] = "\x02\x26\x72", [0x2eae] = "\x02\x26\x79", + [0x2eaf] = "\x02\x26\x7b", [0x2eb0] = "\x02\x26\x7e", + [0x2eb1] = "\x01\x4d\x6c", [0x2eb2] = "\x03\x29\x26", + [0x2eb3] = "\x02\x26\x7a", [0x2eb4] = "\x02\x26\x73", + [0x2eb5] = "\x01\x4d\x6a", [0x2eb6] = "\x02\x26\x77", + [0x2eb7] = "\x03\x29\x28", [0x2eb8] = "\x02\x27\x21", + [0x2eb9] = "\x01\x4d\x5b", [0x2eba] = "\x03\x29\x25", + [0x2ebb] = "\x02\x26\x7c", [0x2ebc] = "\x01\x4d\x65", + [0x2ebd] = "\x01\x4d\x64", [0x2ebe] = "\x02\x26\x75", + [0x2ebf] = "\x01\x4d\x59", [0x2ec0] = "\x03\x29\x34", + [0x2ec1] = "\x03\x29\x32", [0x2ec2] = "\x01\x4d\x5a", + [0x2ec3] = "\x0f\x27\x30", [0x2ec4] = "\x01\x4d\x58", + [0x2ec5] = "\x03\x29\x33", [0x2ec6] = "\x01\x4d\x70", + [0x2ec7] = "\x01\x4d\x68", [0x2ec8] = "\x01\x4d\x62", + [0x2ec9] = "\x01\x4d\x56", [0x2eca] = "\x02\x26\x78", + [0x2ecb] = "\x01\x4d\x61", [0x2ecc] = "\x01\x4d\x57", + [0x2ecd] = "\x01\x4d\x69", [0x2ece] = "\x01\x4d\x72", + [0x2ecf] = "\x02\x2a\x55", [0x2ed0] = "\x01\x4d\x66", + [0x2ed1] = "\x02\x26\x74", [0x2ed2] = "\x01\x4d\x5c", + [0x2ed3] = "\x01\x4d\x5f", [0x2ed4] = "\x01\x4d\x60", + [0x2ed5] = "\x03\x29\x2e", [0x2ed6] = "\x01\x4d\x6e", + [0x2ed7] = "\x01\x4d\x6f", [0x2ed8] = "\x01\x4d\x6d", + [0x2ed9] = "\x01\x4d\x67", [0x2eda] = "\x01\x4d\x6b", + [0x2edb] = "\x01\x4d\x5d", [0x2edc] = "\x01\x51\x38", + [0x2edd] = "\x03\x29\x30", [0x2ede] = "\x03\x29\x37", + [0x2edf] = "\x03\x29\x35", [0x2ee0] = "\x03\x29\x36", + [0x2ee1] = "\x03\x29\x2f", [0x2ee4] = "\x03\x29\x29", + [0x2eea] = "\x03\x2c\x6d", [0x2eeb] = "\x02\x2a\x5b", + [0x2eec] = "\x01\x51\x44", [0x2eed] = "\x01\x51\x3c", + [0x2eee] = "\x01\x51\x3e", [0x2eef] = "\x01\x51\x43", + [0x2ef0] = "\x02\x2a\x67", [0x2ef1] = "\x01\x51\x41", + [0x2ef2] = "\x02\x2f\x33", [0x2ef3] = "\x01\x55\x53", + [0x2ef4] = "\x01\x51\x46", [0x2ef5] = "\x02\x2a\x58", + [0x2ef6] = "\x02\x2a\x60", [0x2ef7] = "\x01\x51\x42", + [0x2ef8] = "\x02\x2a\x5f", [0x2ef9] = "\x02\x2a\x5c", + [0x2efa] = "\x02\x2a\x64", [0x2efb] = "\x02\x2a\x66", + [0x2efc] = "\x01\x51\x3b", [0x2efd] = "\x01\x51\x3f", + [0x2efe] = "\x01\x51\x45", [0x2eff] = "\x01\x55\x55", + [0x2f00] = "\x02\x2a\x61", [0x2f01] = "\x01\x51\x3d", + [0x2f02] = "\x01\x51\x48", [0x2f03] = "\x02\x2a\x5a", + [0x2f04] = "\x03\x2c\x6f", [0x2f05] = "\x03\x2c\x70", + [0x2f06] = "\x05\x29\x45", [0x2f07] = "\x01\x51\x40", + [0x2f08] = "\x01\x55\x54", [0x2f09] = "\x01\x51\x3a", + [0x2f0a] = "\x04\x29\x59", [0x2f0b] = "\x02\x2a\x57", + [0x2f0c] = "\x02\x2a\x5e", [0x2f0d] = "\x02\x2a\x56", + [0x2f0e] = "\x02\x2a\x59", [0x2f0f] = "\x02\x2a\x5d", + [0x2f10] = "\x02\x2f\x34", [0x2f11] = "\x01\x51\x47", + [0x2f12] = "\x04\x29\x51", [0x2f13] = "\x02\x2a\x62", + [0x2f14] = "\x02\x2a\x63", [0x2f15] = "\x02\x2a\x65", + [0x2f16] = "\x01\x51\x39", [0x2f17] = "\x03\x2c\x6c", + [0x2f19] = "\x03\x31\x32", [0x2f1b] = "\x03\x31\x33", + [0x2f1f] = "\x03\x2c\x6b", [0x2f21] = "\x03\x2c\x6e", + [0x2f23] = "\x04\x29\x5b", [0x2f28] = "\x01\x55\x63", + [0x2f29] = "\x02\x2f\x40", [0x2f2a] = "\x01\x55\x61", + [0x2f2b] = "\x01\x55\x62", [0x2f2c] = "\x02\x2f\x36", + [0x2f2d] = "\x02\x2f\x46", [0x2f2e] = "\x03\x31\x2c", + [0x2f2f] = "\x01\x55\x58", [0x2f30] = "\x03\x31\x2f", + [0x2f31] = "\x03\x31\x35", [0x2f32] = "\x02\x35\x4a", + [0x2f33] = "\x02\x2f\x48", [0x2f34] = "\x02\x2f\x42", + [0x2f35] = "\x03\x31\x38", [0x2f36] = "\x02\x2f\x39", + [0x2f37] = "\x03\x31\x37", [0x2f38] = "\x02\x2f\x4b", + [0x2f39] = "\x02\x2f\x3c", [0x2f3a] = "\x01\x55\x5e", + [0x2f3b] = "\x02\x35\x61", [0x2f3c] = "\x02\x2f\x3f", + [0x2f3d] = "\x01\x55\x60", [0x2f3e] = "\x01\x55\x57", + [0x2f3f] = "\x03\x31\x3c", [0x2f40] = "\x02\x2f\x4d", + [0x2f41] = "\x02\x2f\x41", [0x2f42] = "\x01\x55\x5a", + [0x2f43] = "\x02\x2f\x3a", [0x2f44] = "\x02\x2f\x37", + [0x2f45] = "\x02\x2f\x38", [0x2f46] = "\x01\x55\x5b", + [0x2f47] = "\x02\x2f\x47", [0x2f48] = "\x02\x2f\x4e", + [0x2f49] = "\x01\x55\x5d", [0x2f4a] = "\x02\x2f\x3e", + [0x2f4b] = "\x02\x2f\x3d", [0x2f4c] = "\x01\x55\x65", + [0x2f4d] = "\x01\x55\x64", [0x2f4e] = "\x01\x55\x56", + [0x2f4f] = "\x01\x55\x5c", [0x2f50] = "\x01\x55\x5f", + [0x2f51] = "\x02\x2f\x4a", [0x2f52] = "\x03\x31\x2e", + [0x2f53] = "\x03\x31\x39", [0x2f54] = "\x02\x2f\x44", + [0x2f55] = "\x01\x55\x59", [0x2f56] = "\x02\x2f\x35", + [0x2f57] = "\x02\x2f\x4c", [0x2f58] = "\x02\x2f\x43", + [0x2f59] = "\x02\x2f\x45", [0x2f5a] = "\x02\x2f\x49", + [0x2f5b] = "\x03\x31\x30", [0x2f5c] = "\x03\x31\x3b", + [0x2f5d] = "\x03\x31\x36", [0x2f60] = "\x03\x64\x7c", + [0x2f64] = "\x03\x64\x7d", [0x2f65] = "\x02\x35\x4b", + [0x2f66] = "\x03\x36\x31", [0x2f67] = "\x01\x5a\x5b", + [0x2f68] = "\x01\x5a\x6f", [0x2f69] = "\x01\x5a\x6e", + [0x2f6a] = "\x03\x36\x27", [0x2f6b] = "\x01\x5a\x63", + [0x2f6c] = "\x03\x36\x29", [0x2f6d] = "\x02\x35\x5d", + [0x2f6e] = "\x02\x35\x59", [0x2f6f] = "\x02\x35\x56", + [0x2f70] = "\x02\x35\x68", [0x2f71] = "\x01\x5a\x5e", + [0x2f72] = "\x01\x5a\x56", [0x2f73] = "\x03\x36\x26", + [0x2f74] = "\x03\x36\x32", [0x2f75] = "\x02\x35\x5b", + [0x2f76] = "\x01\x5f\x4d", [0x2f77] = "\x01\x5a\x5a", + [0x2f78] = "\x02\x35\x63", [0x2f79] = "\x03\x36\x22", + [0x2f7a] = "\x01\x5a\x70", [0x2f7b] = "\x01\x5a\x6d", + [0x2f7c] = "\x02\x35\x5f", [0x2f7d] = "\x02\x35\x4e", + [0x2f7e] = "\x03\x35\x7c", [0x2f7f] = "\x03\x36\x2b", + [0x2f80] = "\x01\x5a\x6c", [0x2f81] = "\x02\x35\x65", + [0x2f82] = "\x02\x35\x4d", [0x2f83] = "\x01\x5a\x61", + [0x2f84] = "\x01\x5a\x65", [0x2f85] = "\x02\x35\x64", + [0x2f86] = "\x03\x36\x23", [0x2f87] = "\x02\x35\x57", + [0x2f88] = "\x01\x5a\x66", [0x2f89] = "\x01\x5a\x60", + [0x2f8a] = "\x02\x35\x4c", [0x2f8b] = "\x03\x35\x7d", + [0x2f8c] = "\x01\x5f\x3f", [0x2f8d] = "\x02\x35\x67", + [0x2f8e] = "\x02\x35\x55", [0x2f8f] = "\x01\x5a\x6b", + [0x2f90] = "\x02\x35\x58", [0x2f91] = "\x02\x35\x66", + [0x2f92] = "\x01\x5a\x6a", [0x2f93] = "\x03\x36\x24", + [0x2f94] = "\x02\x3b\x75", [0x2f95] = "\x04\x31\x77", + [0x2f96] = "\x01\x5a\x57", [0x2f97] = "\x02\x35\x53", + [0x2f98] = "\x01\x5a\x5c", [0x2f99] = "\x01\x5a\x67", + [0x2f9a] = "\x04\x31\x78", [0x2f9b] = "\x01\x5a\x62", + [0x2f9c] = "\x02\x35\x5c", [0x2f9d] = "\x02\x35\x52", + [0x2f9e] = "\x02\x35\x50", [0x2f9f] = "\x02\x35\x62", + [0x2fa0] = "\x01\x5a\x54", [0x2fa1] = "\x01\x5a\x68", + [0x2fa2] = "\x01\x5a\x58", [0x2fa3] = "\x01\x5f\x3e", + [0x2fa4] = "\x02\x35\x60", [0x2fa5] = "\x01\x5a\x59", + [0x2fa6] = "\x04\x32\x23", [0x2fa7] = "\x01\x5a\x55", + [0x2fa8] = "\x01\x5a\x64", [0x2fa9] = "\x01\x5a\x5f", + [0x2faa] = "\x01\x5a\x5d", [0x2fab] = "\x02\x35\x54", + [0x2fac] = "\x01\x5a\x69", [0x2fad] = "\x02\x35\x51", + [0x2fae] = "\x02\x35\x5e", [0x2faf] = "\x02\x35\x5a", + [0x2fb0] = "\x02\x3b\x77", [0x2fb1] = "\x02\x3b\x76", + [0x2fb2] = "\x03\x36\x2d", [0x2fb6] = "\x03\x64\x7e", + [0x2fba] = "\x03\x36\x2e", [0x2fbd] = "\x02\x35\x4f", + [0x2fbe] = "\x02\x3c\x29", [0x2fbf] = "\x03\x3b\x71", + [0x2fc0] = "\x01\x5f\x41", [0x2fc1] = "\x03\x3b\x70", + [0x2fc2] = "\x02\x3c\x2f", [0x2fc3] = "\x02\x3b\x7c", + [0x2fc4] = "\x02\x3c\x2c", [0x2fc5] = "\x02\x42\x7d", + [0x2fc6] = "\x01\x5f\x44", [0x2fc7] = "\x02\x3c\x30", + [0x2fc8] = "\x02\x3c\x33", [0x2fc9] = "\x01\x5f\x43", + [0x2fca] = "\x02\x3c\x21", [0x2fcb] = "\x02\x3c\x32", + [0x2fcc] = "\x02\x3c\x31", [0x2fcd] = "\x01\x5f\x45", + [0x2fce] = "\x02\x3b\x78", [0x2fcf] = "\x01\x5f\x40", + [0x2fd0] = "\x01\x5f\x48", [0x2fd1] = "\x03\x3b\x73", + [0x2fd2] = "\x01\x5f\x46", [0x2fd3] = "\x02\x3c\x2e", + [0x2fd4] = "\x04\x37\x71", [0x2fd5] = "\x02\x3c\x24", + [0x2fd6] = "\x01\x5f\x4a", [0x2fd7] = "\x02\x3c\x35", + [0x2fd8] = "\x02\x3c\x2d", [0x2fd9] = "\x02\x3c\x36", + [0x2fda] = "\x01\x5f\x52", [0x2fdb] = "\x01\x5f\x50", + [0x2fdc] = "\x02\x3c\x2b", [0x2fdd] = "\x02\x3c\x2a", + [0x2fde] = "\x03\x3b\x67", [0x2fdf] = "\x02\x3c\x28", + [0x2fe0] = "\x02\x3c\x22", [0x2fe1] = "\x01\x5f\x49", + [0x2fe2] = "\x03\x3b\x66", [0x2fe3] = "\x01\x5f\x47", + [0x2fe4] = "\x02\x2f\x3b", [0x2fe5] = "\x02\x3b\x79", + [0x2fe6] = "\x03\x3b\x68", [0x2fe7] = "\x02\x43\x3d", + [0x2fe8] = "\x02\x3b\x7a", [0x2fe9] = "\x01\x5f\x42", + [0x2fea] = "\x01\x5f\x4f", [0x2feb] = "\x02\x43\x21", + [0x2fec] = "\x04\x37\x60", [0x2fed] = "\x01\x5f\x4b", + [0x2fee] = "\x01\x5f\x4c", [0x2fef] = "\x02\x3b\x7b", + [0x2ff0] = "\x02\x3c\x34", [0x2ff1] = "\x02\x42\x7e", + [0x2ff2] = "\x02\x3c\x25", [0x2ff3] = "\x02\x3b\x7e", + [0x2ff4] = "\x01\x5f\x4e", [0x2ff5] = "\x02\x3c\x26", + [0x2ff6] = "\x02\x3c\x23", [0x2ff7] = "\x03\x3b\x72", + [0x2ff8] = "\x03\x3b\x6d", [0x2ff9] = "\x01\x5f\x53", + [0x2ffa] = "\x04\x37\x6f", [0x2ffe] = "\x03\x3b\x6f", + [0x3003] = "\x03\x65\x21", [0x3006] = "\x01\x64\x38", + [0x3007] = "\x03\x41\x49", [0x3008] = "\x03\x41\x32", + [0x3009] = "\x02\x43\x24", [0x300a] = "\x02\x43\x37", + [0x300b] = "\x02\x43\x3c", [0x300c] = "\x02\x43\x30", + [0x300d] = "\x01\x64\x34", [0x300e] = "\x02\x43\x41", + [0x300f] = "\x01\x64\x31", [0x3010] = "\x02\x43\x22", + [0x3011] = "\x03\x41\x3a", [0x3012] = "\x02\x43\x23", + [0x3013] = "\x01\x64\x2a", [0x3014] = "\x01\x64\x33", + [0x3015] = "\x02\x43\x2a", [0x3016] = "\x01\x64\x36", + [0x3017] = "\x01\x64\x37", [0x3018] = "\x02\x43\x2b", + [0x3019] = "\x03\x41\x38", [0x301a] = "\x02\x43\x38", + [0x301b] = "\x02\x43\x3e", [0x301c] = "\x01\x64\x32", + [0x301d] = "\x03\x41\x3e", [0x301e] = "\x01\x64\x2c", + [0x301f] = "\x02\x43\x29", [0x3020] = "\x02\x43\x25", + [0x3021] = "\x02\x43\x40", [0x3022] = "\x02\x43\x2e", + [0x3023] = "\x02\x43\x2f", [0x3024] = "\x02\x43\x26", + [0x3025] = "\x02\x43\x3a", [0x3026] = "\x02\x43\x31", + [0x3027] = "\x02\x43\x3b", [0x3028] = "\x02\x43\x33", + [0x3029] = "\x03\x41\x3d", [0x302a] = "\x01\x64\x2d", + [0x302b] = "\x02\x4a\x40", [0x302c] = "\x01\x64\x30", + [0x302d] = "\x01\x64\x2e", [0x302e] = "\x02\x43\x3f", + [0x302f] = "\x02\x43\x36", [0x3030] = "\x02\x43\x32", + [0x3031] = "\x03\x41\x36", [0x3032] = "\x03\x41\x33", + [0x3033] = "\x02\x43\x27", [0x3034] = "\x01\x68\x7a", + [0x3035] = "\x02\x43\x35", [0x3036] = "\x01\x64\x35", + [0x3037] = "\x02\x43\x2d", [0x3038] = "\x03\x41\x34", + [0x3039] = "\x02\x43\x2c", [0x303a] = "\x03\x41\x48", + [0x303b] = "\x03\x47\x25", [0x303c] = "\x03\x41\x42", + [0x303d] = "\x01\x64\x2f", [0x303e] = "\x01\x64\x2b", + [0x303f] = "\x02\x4a\x55", [0x3040] = "\x02\x43\x39", + [0x3041] = "\x02\x43\x34", [0x3043] = "\x02\x43\x28", + [0x3046] = "\x03\x41\x44", [0x3047] = "\x03\x41\x45", + [0x3049] = "\x03\x66\x76", [0x304b] = "\x02\x4a\x50", + [0x304c] = "\x03\x46\x78", [0x304d] = "\x02\x4a\x41", + [0x304e] = "\x02\x4a\x4c", [0x304f] = "\x03\x47\x28", + [0x3050] = "\x02\x4a\x53", [0x3051] = "\x01\x68\x78", + [0x3052] = "\x01\x5f\x51", [0x3053] = "\x02\x4a\x51", + [0x3054] = "\x01\x68\x73", [0x3055] = "\x03\x46\x7e", + [0x3056] = "\x03\x47\x24", [0x3057] = "\x03\x46\x7a", + [0x3058] = "\x01\x68\x72", [0x3059] = "\x02\x4a\x58", + [0x305a] = "\x04\x43\x5d", [0x305b] = "\x02\x4a\x42", + [0x305c] = "\x02\x4a\x4f", [0x305d] = "\x02\x4a\x43", + [0x305e] = "\x02\x4a\x4e", [0x305f] = "\x01\x68\x76", + [0x3060] = "\x02\x4a\x52", [0x3061] = "\x02\x3c\x27", + [0x3062] = "\x03\x47\x21", [0x3063] = "\x04\x43\x5e", + [0x3064] = "\x03\x47\x2a", [0x3065] = "\x02\x4a\x59", + [0x3066] = "\x02\x4a\x4a", [0x3067] = "\x01\x68\x79", + [0x3068] = "\x02\x50\x61", [0x3069] = "\x01\x6c\x77", + [0x306a] = "\x03\x47\x23", [0x306b] = "\x02\x4a\x57", + [0x306c] = "\x02\x4a\x56", [0x306d] = "\x01\x68\x7b", + [0x306e] = "\x02\x50\x54", [0x306f] = "\x01\x6c\x78", + [0x3070] = "\x02\x50\x55", [0x3071] = "\x03\x47\x22", + [0x3072] = "\x02\x4a\x46", [0x3073] = "\x02\x4a\x47", + [0x3074] = "\x02\x4a\x44", [0x3075] = "\x02\x4a\x49", + [0x3076] = "\x02\x4a\x45", [0x3077] = "\x02\x4a\x5a", + [0x3078] = "\x01\x68\x75", [0x3079] = "\x01\x6c\x79", + [0x307a] = "\x01\x68\x77", [0x307b] = "\x01\x68\x7c", + [0x307c] = "\x03\x46\x7b", [0x307d] = "\x02\x4a\x48", + [0x307e] = "\x03\x47\x29", [0x307f] = "\x02\x4a\x54", + [0x3080] = "\x03\x4c\x2d", [0x3081] = "\x03\x47\x26", + [0x3082] = "\x02\x4a\x4d", [0x3083] = "\x03\x4c\x35", + [0x3085] = "\x02\x50\x58", [0x3086] = "\x03\x4c\x38", + [0x3087] = "\x01\x68\x71", [0x3088] = "\x01\x6c\x7c", + [0x3089] = "\x02\x57\x35", [0x308a] = "\x02\x50\x5d", + [0x308b] = "\x02\x50\x5c", [0x308c] = "\x02\x50\x5e", + [0x308d] = "\x03\x4c\x30", [0x308e] = "\x03\x4c\x2f", + [0x308f] = "\x02\x50\x5b", [0x3090] = "\x01\x6c\x7d", + [0x3091] = "\x03\x4c\x3b", [0x3092] = "\x01\x6d\x25", + [0x3093] = "\x01\x6d\x22", [0x3094] = "\x03\x4c\x31", + [0x3095] = "\x01\x6d\x23", [0x3096] = "\x02\x50\x56", + [0x3097] = "\x02\x50\x59", [0x3098] = "\x02\x50\x63", + [0x3099] = "\x01\x6d\x2b", [0x309a] = "\x01\x6d\x29", + [0x309b] = "\x03\x4c\x2e", [0x309c] = "\x02\x50\x5a", + [0x309d] = "\x02\x3b\x7d", [0x309e] = "\x01\x6c\x7a", + [0x309f] = "\x02\x50\x60", [0x30a0] = "\x02\x50\x57", + [0x30a1] = "\x03\x4c\x3e", [0x30a2] = "\x01\x6d\x2c", + [0x30a3] = "\x02\x50\x5f", [0x30a4] = "\x01\x68\x74", + [0x30a5] = "\x01\x6d\x21", [0x30a6] = "\x02\x4a\x4b", + [0x30a7] = "\x03\x4c\x3f", [0x30a8] = "\x03\x4c\x34", + [0x30a9] = "\x01\x6d\x24", [0x30aa] = "\x03\x4c\x3d", + [0x30ab] = "\x01\x6d\x28", [0x30ac] = "\x01\x6d\x2a", + [0x30ad] = "\x01\x6d\x27", [0x30ae] = "\x01\x6d\x26", + [0x30af] = "\x03\x4c\x3a", [0x30b0] = "\x01\x6c\x7e", + [0x30b1] = "\x02\x50\x62", [0x30b2] = "\x01\x6c\x7b", + [0x30b3] = "\x01\x6d\x2d", [0x30b4] = "\x03\x4c\x39", + [0x30b6] = "\x03\x65\x22", [0x30b9] = "\x03\x4c\x37", + [0x30bb] = "\x01\x70\x61", [0x30bc] = "\x01\x70\x62", + [0x30bd] = "\x02\x57\x34", [0x30be] = "\x01\x70\x6b", + [0x30bf] = "\x01\x70\x68", [0x30c0] = "\x03\x50\x70", + [0x30c1] = "\x01\x70\x5f", [0x30c2] = "\x01\x70\x66", + [0x30c3] = "\x02\x57\x36", [0x30c4] = "\x01\x70\x64", + [0x30c5] = "\x01\x70\x5e", [0x30c6] = "\x03\x4c\x32", + [0x30c7] = "\x01\x70\x65", [0x30c8] = "\x03\x50\x77", + [0x30c9] = "\x02\x57\x33", [0x30ca] = "\x01\x73\x64", + [0x30cb] = "\x01\x70\x60", [0x30cc] = "\x05\x54\x5e", + [0x30cd] = "\x01\x70\x67", [0x30ce] = "\x01\x73\x63", + [0x30cf] = "\x02\x57\x32", [0x30d0] = "\x02\x57\x31", + [0x30d1] = "\x03\x50\x76", [0x30d2] = "\x01\x70\x69", + [0x30d3] = "\x03\x50\x6f", [0x30d4] = "\x01\x70\x6a", + [0x30d5] = "\x03\x50\x79", [0x30d6] = "\x02\x57\x30", + [0x30d7] = "\x02\x57\x2f", [0x30d8] = "\x01\x73\x65", + [0x30d9] = "\x02\x57\x39", [0x30da] = "\x01\x70\x63", + [0x30db] = "\x02\x57\x37", [0x30dc] = "\x03\x50\x75", + [0x30df] = "\x03\x54\x64", [0x30e0] = "\x01\x73\x66", + [0x30e1] = "\x03\x54\x67", [0x30e2] = "\x01\x73\x6b", + [0x30e3] = "\x02\x5c\x75", [0x30e4] = "\x02\x5c\x77", + [0x30e5] = "\x03\x57\x6b", [0x30e6] = "\x01\x73\x68", + [0x30e7] = "\x03\x57\x6d", [0x30e8] = "\x02\x5c\x78", + [0x30e9] = "\x02\x5c\x74", [0x30ea] = "\x03\x57\x6c", + [0x30eb] = "\x02\x5c\x76", [0x30ec] = "\x01\x73\x69", + [0x30ed] = "\x01\x73\x6c", [0x30ee] = "\x03\x54\x69", + [0x30ef] = "\x02\x5c\x73", [0x30f0] = "\x01\x73\x67", + [0x30f1] = "\x01\x73\x6a", [0x30f2] = "\x01\x76\x45", + [0x30f3] = "\x02\x57\x38", [0x30f4] = "\x01\x76\x44", + [0x30f5] = "\x07\x3f\x62", [0x30f6] = "\x03\x57\x6a", + [0x30f7] = "\x01\x76\x4a", [0x30f8] = "\x02\x61\x60", + [0x30f9] = "\x03\x57\x70", [0x30fa] = "\x01\x76\x48", + [0x30fb] = "\x01\x76\x49", [0x30fc] = "\x02\x61\x63", + [0x30fd] = "\x02\x61\x5f", [0x30fe] = "\x01\x76\x46", + [0x30ff] = "\x02\x61\x5d", [0x3100] = "\x01\x78\x38", + [0x3101] = "\x02\x61\x61", [0x3102] = "\x04\x5b\x36", + [0x3103] = "\x02\x61\x62", [0x3104] = "\x02\x61\x5e", + [0x3105] = "\x03\x57\x6e", [0x3106] = "\x01\x76\x47", + [0x3107] = "\x02\x65\x4d", [0x3108] = "\x03\x5a\x3b", + [0x3109] = "\x02\x65\x50", [0x310a] = "\x03\x5a\x3c", + [0x310b] = "\x03\x5a\x3a", [0x310c] = "\x02\x65\x51", + [0x310d] = "\x02\x65\x4f", [0x310e] = "\x02\x65\x52", + [0x310f] = "\x01\x78\x39", [0x3110] = "\x02\x65\x4e", + [0x3111] = "\x03\x5e\x31", [0x3113] = "\x02\x68\x7a", + [0x3114] = "\x01\x79\x6f", [0x3115] = "\x02\x68\x79", + [0x3116] = "\x02\x68\x78", [0x3117] = "\x02\x68\x77", + [0x3118] = "\x01\x79\x6e", [0x3119] = "\x01\x79\x70", + [0x311a] = "\x03\x65\x23", [0x311b] = "\x02\x6b\x5b", + [0x311c] = "\x01\x7a\x6d", [0x311d] = "\x01\x7a\x6c", + [0x311e] = "\x03\x5f\x4a", [0x311f] = "\x03\x5f\x4b", + [0x3120] = "\x02\x6d\x4f", [0x3121] = "\x02\x6d\x4e", + [0x3122] = "\x02\x6d\x51", [0x3123] = "\x01\x7c\x37", + [0x3124] = "\x01\x7b\x61", [0x3125] = "\x02\x6f\x2c", + [0x3126] = "\x02\x6d\x50", [0x3127] = "\x03\x5f\x49", + [0x3128] = "\x03\x60\x32", [0x3129] = "\x02\x6f\x2b", + [0x312a] = "\x01\x7c\x39", [0x312b] = "\x01\x7c\x38", + [0x312c] = "\x01\x7c\x5f", [0x312d] = "\x02\x70\x37", + [0x312e] = "\x02\x70\x7d", [0x312f] = "\x01\x45\x45", + [0x3130] = "\x06\x23\x6c", [0x3131] = "\x03\x2c\x72", + [0x3132] = "\x02\x3c\x37", [0x3133] = "\x02\x57\x3a", + [0x3134] = "\x03\x21\x67", [0x3135] = "\x03\x21\x68", + [0x3136] = "\x01\x48\x2d", [0x3137] = "\x02\x22\x4d", + [0x3138] = "\x01\x4a\x53", [0x3139] = "\x01\x4a\x51", + [0x313a] = "\x04\x24\x3f", [0x313b] = "\x01\x4a\x52", + [0x313c] = "\x04\x24\x3e", [0x313d] = "\x02\x27\x22", + [0x313e] = "\x01\x4d\x73", [0x313f] = "\x01\x51\x49", + [0x3140] = "\x03\x2c\x74", [0x3141] = "\x02\x2a\x68", + [0x3142] = "\x03\x2c\x76", [0x3143] = "\x02\x2a\x69", + [0x3144] = "\x03\x2c\x73", [0x3145] = "\x01\x51\x4a", + [0x3146] = "\x02\x2f\x50", [0x3147] = "\x04\x2d\x43", + [0x3148] = "\x01\x55\x66", [0x3149] = "\x01\x55\x67", + [0x314a] = "\x02\x2f\x4f", [0x314b] = "\x03\x31\x3d", + [0x314c] = "\x04\x2d\x44", [0x314d] = "\x03\x36\x37", + [0x314e] = "\x03\x36\x36", [0x314f] = "\x01\x5a\x77", + [0x3150] = "\x04\x32\x2b", [0x3151] = "\x01\x5a\x73", + [0x3152] = "\x04\x32\x2f", [0x3153] = "\x02\x35\x69", + [0x3154] = "\x01\x5a\x7a", [0x3155] = "\x01\x5a\x79", + [0x3156] = "\x01\x5a\x72", [0x3157] = "\x01\x5a\x75", + [0x3158] = "\x01\x5a\x78", [0x3159] = "\x01\x5a\x74", + [0x315a] = "\x03\x36\x34", [0x315c] = "\x02\x3c\x3b", + [0x315d] = "\x01\x5a\x71", [0x315e] = "\x01\x5f\x54", + [0x315f] = "\x03\x3b\x74", [0x3160] = "\x03\x3b\x75", + [0x3161] = "\x03\x3b\x76", [0x3162] = "\x01\x5f\x56", + [0x3163] = "\x01\x5f\x57", [0x3164] = "\x02\x3c\x3a", + [0x3165] = "\x02\x3c\x3d", [0x3166] = "\x01\x5f\x55", + [0x3167] = "\x02\x3c\x38", [0x3168] = "\x02\x3c\x3c", + [0x316a] = "\x02\x3c\x39", [0x316b] = "\x03\x41\x4b", + [0x316c] = "\x01\x64\x39", [0x316d] = "\x03\x41\x4e", + [0x316e] = "\x04\x3d\x5d", [0x316f] = "\x02\x43\x42", + [0x3170] = "\x03\x41\x4d", [0x3171] = "\x03\x47\x30", + [0x3172] = "\x01\x68\x7d", [0x3173] = "\x02\x4a\x5b", + [0x3174] = "\x01\x70\x6c", [0x3175] = "\x01\x6d\x2e", + [0x3176] = "\x02\x50\x64", [0x3177] = "\x01\x6d\x2f", + [0x3178] = "\x01\x6d\x30", [0x3179] = "\x02\x50\x66", + [0x317a] = "\x02\x50\x65", [0x317b] = "\x02\x50\x67", + [0x317c] = "\x02\x57\x3c", [0x317f] = "\x02\x57\x3b", + [0x3180] = "\x02\x5c\x7a", [0x3181] = "\x02\x5c\x79", + [0x3182] = "\x01\x73\x6d", [0x3183] = "\x01\x73\x6e", + [0x3184] = "\x02\x65\x53", [0x3185] = "\x03\x5c\x41", + [0x3187] = "\x01\x45\x46", [0x3188] = "\x03\x25\x58", + [0x3189] = "\x03\x29\x39", [0x318a] = "\x04\x2d\x47", + [0x318b] = "\x03\x31\x40", [0x318c] = "\x02\x3c\x3e", + [0x318d] = "\x03\x36\x38", [0x318e] = "\x03\x36\x39", + [0x3190] = "\x01\x5f\x59", [0x3191] = "\x01\x5f\x58", + [0x3192] = "\x02\x43\x43", [0x3194] = "\x02\x61\x64", + [0x3195] = "\x01\x7a\x6e", [0x3196] = "\x02\x6f\x2d", + [0x3197] = "\x01\x45\x47", [0x3198] = "\x04\x24\x41", + [0x3199] = "\x01\x55\x68", [0x319a] = "\x03\x31\x42", + [0x319b] = "\x01\x5a\x7c", [0x319c] = "\x01\x5a\x7b", + [0x319d] = "\x02\x3c\x3f", [0x319e] = "\x02\x3c\x40", + [0x319f] = "\x01\x64\x3a", [0x31a0] = "\x02\x4a\x5c", + [0x31a1] = "\x01\x68\x7e", [0x31a2] = "\x02\x57\x3d", + [0x31a3] = "\x04\x56\x3f", [0x31a4] = "\x01\x45\x48", + [0x31a5] = "\x01\x46\x58", [0x31a6] = "\x03\x29\x3b", + [0x31a7] = "\x01\x4d\x74", [0x31a8] = "\x02\x27\x23", + [0x31aa] = "\x02\x2a\x6a", [0x31ab] = "\x01\x51\x4b", + [0x31ac] = "\x01\x5a\x7d", [0x31ad] = "\x03\x36\x3a", + [0x31ae] = "\x02\x3c\x41", [0x31af] = "\x01\x5f\x5a", + [0x31b0] = "\x01\x64\x3b", [0x31b1] = "\x04\x3d\x63", + [0x31b2] = "\x02\x50\x68", [0x31b3] = "\x02\x50\x69", + [0x31b4] = "\x04\x50\x4e", [0x31b5] = "\x03\x54\x6b", + [0x31b6] = "\x02\x5c\x7b", [0x31b7] = "\x01\x76\x4b", + [0x31b8] = "\x02\x70\x7e", [0x31b9] = "\x01\x45\x49", + [0x31ba] = "\x03\x29\x3c", [0x31bb] = "\x02\x27\x24", + [0x31bc] = "\x01\x4d\x75", [0x31bd] = "\x01\x51\x4c", + [0x31be] = "\x03\x2c\x77", [0x31bf] = "\x02\x2a\x6b", + [0x31c1] = "\x01\x55\x69", [0x31c2] = "\x02\x2f\x54", + [0x31c3] = "\x02\x2f\x52", [0x31c4] = "\x02\x2f\x53", + [0x31c5] = "\x01\x55\x6a", [0x31c6] = "\x02\x2f\x51", + [0x31c7] = "\x03\x36\x3c", [0x31c8] = "\x04\x32\x34", + [0x31c9] = "\x03\x36\x3f", [0x31ca] = "\x03\x36\x3d", + [0x31cb] = "\x01\x5b\x21", [0x31cc] = "\x01\x5b\x22", + [0x31cd] = "\x02\x35\x6a", [0x31ce] = "\x01\x5b\x23", + [0x31cf] = "\x01\x5a\x7e", [0x31d0] = "\x02\x3c\x42", + [0x31d1] = "\x03\x3b\x79", [0x31d2] = "\x02\x3c\x43", + [0x31d3] = "\x02\x43\x44", [0x31d4] = "\x04\x3d\x64", + [0x31d6] = "\x01\x69\x22", [0x31d7] = "\x01\x69\x21", + [0x31d8] = "\x04\x50\x4f", [0x31d9] = "\x0f\x54\x64", + [0x31da] = "\x02\x5c\x7c", [0x31db] = "\x02\x61\x65", + [0x31dc] = "\x03\x5a\x3f", [0x31dd] = "\x02\x65\x55", + [0x31de] = "\x02\x65\x54", [0x31df] = "\x02\x68\x7b", + [0x31e0] = "\x03\x21\x69", [0x31e1] = "\x02\x21\x3e", + [0x31e2] = "\x01\x51\x4d", [0x31e3] = "\x03\x36\x41", + [0x31e4] = "\x03\x41\x50", [0x31e5] = "\x01\x45\x4a", + [0x31e6] = "\x01\x46\x59", [0x31e7] = "\x03\x22\x51", + [0x31e8] = "\x01\x48\x2f", [0x31e9] = "\x01\x48\x2e", + [0x31ea] = "\x03\x23\x73", [0x31eb] = "\x03\x23\x72", + [0x31ec] = "\x01\x48\x30", [0x31ed] = "\x01\x48\x31", + [0x31ee] = "\x02\x22\x4f", [0x31ef] = "\x02\x22\x4e", + [0x31f0] = "\x02\x24\x39", [0x31f1] = "\x01\x4a\x54", + [0x31f2] = "\x02\x24\x3c", [0x31f3] = "\x02\x24\x3b", + [0x31f4] = "\x02\x24\x3a", [0x31f5] = "\x02\x24\x3d", + [0x31f6] = "\x03\x26\x3d", [0x31f9] = "\x04\x26\x62", + [0x31fa] = "\x01\x4d\x76", [0x31fb] = "\x02\x27\x2a", + [0x31fc] = "\x02\x27\x26", [0x31fd] = "\x02\x27\x2f", + [0x31fe] = "\x03\x29\x43", [0x31ff] = "\x03\x29\x3e", + [0x3200] = "\x01\x4d\x7d", [0x3201] = "\x03\x29\x42", + [0x3202] = "\x01\x4d\x7b", [0x3203] = "\x02\x27\x2b", + [0x3204] = "\x02\x27\x27", [0x3205] = "\x02\x27\x2e", + [0x3206] = "\x01\x4d\x7a", [0x3207] = "\x01\x4e\x23", + [0x3208] = "\x02\x27\x29", [0x3209] = "\x02\x27\x25", + [0x320a] = "\x01\x4e\x22", [0x320b] = "\x02\x27\x2c", + [0x320c] = "\x01\x4d\x79", [0x320d] = "\x02\x27\x2d", + [0x320e] = "\x01\x4d\x7c", [0x320f] = "\x01\x4d\x7e", + [0x3210] = "\x02\x27\x31", [0x3211] = "\x02\x27\x30", + [0x3212] = "\x02\x27\x28", [0x3213] = "\x01\x4d\x78", + [0x3214] = "\x01\x4d\x77", [0x3215] = "\x01\x4e\x21", + [0x3216] = "\x04\x26\x61", [0x3217] = "\x03\x29\x40", + [0x3218] = "\x03\x29\x41", [0x3219] = "\x0f\x27\x3e", + [0x321a] = "\x03\x2c\x7e", [0x321b] = "\x03\x2c\x7a", + [0x321c] = "\x02\x2a\x70", [0x321d] = "\x02\x2a\x76", + [0x321e] = "\x03\x2d\x23", [0x321f] = "\x01\x51\x53", + [0x3220] = "\x01\x51\x50", [0x3221] = "\x02\x2a\x6d", + [0x3222] = "\x02\x2a\x72", [0x3223] = "\x03\x2c\x7c", + [0x3224] = "\x01\x51\x56", [0x3225] = "\x01\x51\x4e", + [0x3226] = "\x02\x2a\x71", [0x3227] = "\x01\x51\x51", + [0x3228] = "\x01\x51\x54", [0x3229] = "\x03\x2c\x79", + [0x322a] = "\x04\x29\x67", [0x322b] = "\x02\x2a\x74", + [0x322c] = "\x03\x2c\x7d", [0x322d] = "\x01\x51\x4f", + [0x322e] = "\x02\x2a\x79", [0x322f] = "\x01\x51\x52", + [0x3230] = "\x03\x2d\x21", [0x3231] = "\x01\x51\x55", + [0x3232] = "\x02\x2a\x6e", [0x3233] = "\x02\x2a\x73", + [0x3234] = "\x02\x2a\x77", [0x3235] = "\x02\x2a\x6f", + [0x3236] = "\x02\x2a\x6c", [0x3237] = "\x03\x2d\x24", + [0x3238] = "\x03\x2d\x25", [0x3239] = "\x02\x2a\x78", + [0x323a] = "\x02\x2a\x75", [0x323b] = "\x03\x2d\x22", + [0x323c] = "\x03\x2c\x37", [0x3240] = "\x03\x31\x46", + [0x3241] = "\x01\x55\x72", [0x3242] = "\x01\x55\x6b", + [0x3243] = "\x01\x55\x6e", [0x3244] = "\x03\x31\x4c", + [0x3245] = "\x01\x55\x71", [0x3246] = "\x03\x31\x44", + [0x3247] = "\x02\x2f\x57", [0x3248] = "\x03\x31\x49", + [0x3249] = "\x01\x55\x6c", [0x324a] = "\x02\x2f\x55", + [0x324b] = "\x03\x31\x48", [0x324c] = "\x01\x55\x70", + [0x324d] = "\x03\x31\x4d", [0x324e] = "\x03\x31\x45", + [0x324f] = "\x01\x55\x6d", [0x3250] = "\x03\x31\x43", + [0x3251] = "\x02\x2f\x58", [0x3252] = "\x01\x55\x6f", + [0x3257] = "\x03\x36\x42", [0x3258] = "\x04\x32\x39", + [0x3259] = "\x02\x35\x6e", [0x325a] = "\x01\x5b\x25", + [0x325b] = "\x02\x35\x6d", [0x325c] = "\x02\x35\x6f", + [0x325d] = "\x01\x5b\x24", [0x325e] = "\x01\x5b\x29", + [0x325f] = "\x02\x2f\x56", [0x3260] = "\x03\x31\x4b", + [0x3261] = "\x02\x35\x6c", [0x3262] = "\x02\x35\x70", + [0x3263] = "\x03\x36\x44", [0x3264] = "\x01\x5b\x26", + [0x3265] = "\x02\x35\x6b", [0x3266] = "\x01\x5b\x28", + [0x3267] = "\x03\x36\x45", [0x3268] = "\x01\x5b\x27", + [0x3269] = "\x03\x3c\x26", [0x326a] = "\x02\x3c\x4a", + [0x326b] = "\x03\x3b\x7d", [0x326c] = "\x02\x3c\x45", + [0x326d] = "\x03\x3c\x25", [0x326e] = "\x01\x5f\x5b", + [0x326f] = "\x01\x5f\x5f", [0x3270] = "\x01\x5f\x5c", + [0x3271] = "\x02\x3c\x48", [0x3272] = "\x02\x3c\x4b", + [0x3273] = "\x03\x3c\x23", [0x3274] = "\x01\x5f\x5d", + [0x3275] = "\x04\x38\x24", [0x3276] = "\x01\x5f\x5e", + [0x3277] = "\x01\x5f\x63", [0x3278] = "\x02\x43\x4d", + [0x3279] = "\x02\x3c\x49", [0x327a] = "\x01\x5f\x61", + [0x327b] = "\x02\x3c\x46", [0x327c] = "\x02\x3c\x44", + [0x327d] = "\x03\x3b\x7c", [0x327e] = "\x01\x5f\x62", + [0x327f] = "\x03\x3b\x7e", [0x3280] = "\x02\x3c\x47", + [0x3281] = "\x03\x3c\x24", [0x3284] = "\x01\x64\x41", + [0x3285] = "\x04\x3d\x69", [0x3286] = "\x02\x43\x45", + [0x3287] = "\x01\x64\x3e", [0x3288] = "\x01\x64\x3f", + [0x3289] = "\x01\x64\x3d", [0x328a] = "\x02\x43\x4a", + [0x328b] = "\x02\x43\x49", [0x328c] = "\x02\x43\x46", + [0x328d] = "\x01\x64\x43", [0x328e] = "\x03\x41\x5b", + [0x328f] = "\x03\x41\x56", [0x3290] = "\x02\x43\x48", + [0x3291] = "\x01\x5f\x60", [0x3292] = "\x03\x41\x59", + [0x3293] = "\x03\x41\x51", [0x3294] = "\x02\x43\x4c", + [0x3295] = "\x02\x43\x47", [0x3296] = "\x01\x64\x40", + [0x3297] = "\x01\x64\x3c", [0x3298] = "\x01\x64\x42", + [0x3299] = "\x02\x43\x4b", [0x329a] = "\x03\x47\x34", + [0x329b] = "\x04\x43\x6b", [0x329c] = "\x03\x47\x35", + [0x329d] = "\x01\x69\x25", [0x329e] = "\x04\x43\x6f", + [0x329f] = "\x02\x4a\x5f", [0x32a0] = "\x02\x4a\x5e", + [0x32a1] = "\x02\x4a\x5d", [0x32a2] = "\x01\x69\x23", + [0x32a3] = "\x04\x43\x6d", [0x32a4] = "\x03\x47\x39", + [0x32a5] = "\x03\x47\x33", [0x32a6] = "\x03\x47\x37", + [0x32a8] = "\x01\x69\x24", [0x32a9] = "\x02\x50\x6c", + [0x32aa] = "\x02\x50\x6f", [0x32ab] = "\x01\x6d\x32", + [0x32ac] = "\x03\x4c\x44", [0x32ad] = "\x03\x4c\x46", + [0x32ae] = "\x01\x6d\x31", [0x32af] = "\x02\x50\x70", + [0x32b0] = "\x02\x50\x6b", [0x32b1] = "\x01\x6d\x34", + [0x32b2] = "\x02\x50\x6d", [0x32b3] = "\x03\x4c\x41", + [0x32b4] = "\x01\x6d\x33", [0x32b5] = "\x02\x50\x6a", + [0x32b6] = "\x03\x4c\x40", [0x32b7] = "\x02\x50\x6e", + [0x32b8] = "\x01\x70\x72", [0x32b9] = "\x01\x70\x6f", + [0x32ba] = "\x02\x57\x46", [0x32bb] = "\x02\x57\x45", + [0x32bc] = "\x03\x4c\x43", [0x32bd] = "\x02\x57\x44", + [0x32be] = "\x02\x57\x3f", [0x32bf] = "\x03\x50\x7d", + [0x32c0] = "\x02\x57\x40", [0x32c1] = "\x03\x51\x23", + [0x32c2] = "\x04\x50\x50", [0x32c3] = "\x03\x50\x7a", + [0x32c4] = "\x01\x70\x70", [0x32c5] = "\x03\x50\x7e", + [0x32c6] = "\x01\x70\x6d", [0x32c7] = "\x01\x70\x71", + [0x32c8] = "\x02\x57\x3e", [0x32c9] = "\x01\x70\x6e", + [0x32ca] = "\x02\x57\x41", [0x32cb] = "\x02\x57\x42", + [0x32cc] = "\x02\x57\x47", [0x32cd] = "\x03\x51\x22", + [0x32ce] = "\x03\x54\x71", [0x32cf] = "\x02\x57\x43", + [0x32d0] = "\x03\x54\x6f", [0x32d1] = "\x03\x54\x70", + [0x32d2] = "\x02\x5c\x7d", [0x32d3] = "\x04\x56\x41", + [0x32d4] = "\x03\x54\x6c", [0x32d5] = "\x03\x54\x6d", + [0x32d6] = "\x01\x73\x70", [0x32d7] = "\x03\x54\x72", + [0x32d8] = "\x02\x61\x68", [0x32d9] = "\x01\x73\x6f", + [0x32da] = "\x02\x61\x66", [0x32db] = "\x02\x61\x67", + [0x32dc] = "\x01\x76\x4c", [0x32dd] = "\x01\x78\x3b", + [0x32de] = "\x02\x65\x56", [0x32df] = "\x03\x5a\x43", + [0x32e0] = "\x01\x78\x3a", [0x32e1] = "\x03\x5a\x42", + [0x32e2] = "\x03\x65\x26", [0x32e3] = "\x02\x68\x7d", + [0x32e4] = "\x02\x68\x7e", [0x32e5] = "\x03\x5c\x42", + [0x32e6] = "\x01\x79\x71", [0x32e7] = "\x03\x5c\x43", + [0x32e8] = "\x02\x68\x7c", [0x32e9] = "\x01\x7a\x6f", + [0x32ea] = "\x04\x6a\x4c", [0x32eb] = "\x02\x6f\x2e", + [0x32ec] = "\x01\x7c\x3a", [0x32ed] = "\x02\x70\x38", + [0x32ee] = "\x02\x70\x39", [0x32ef] = "\x03\x61\x3f", + [0x32f0] = "\x01\x45\x4b", [0x32f1] = "\x04\x21\x7c", + [0x32f2] = "\x01\x48\x32", [0x32f3] = "\x01\x48\x33", + [0x32f4] = "\x01\x4a\x55", [0x32f5] = "\x03\x26\x41", + [0x32f6] = "\x02\x27\x32", [0x32f7] = "\x01\x51\x57", + [0x32f8] = "\x01\x55\x73", [0x32f9] = "\x01\x5b\x2a", + [0x32fa] = "\x0f\x32\x73", [0x32fc] = "\x01\x59\x37", + [0x32fe] = "\x01\x5f\x64", [0x32ff] = "\x01\x5f\x65", + [0x3300] = "\x01\x5e\x32", [0x3301] = "\x02\x3c\x4c", + [0x3302] = "\x03\x65\x27", [0x3303] = "\x01\x64\x44", + [0x3304] = "\x02\x4a\x61", [0x3305] = "\x02\x4a\x60", + [0x3306] = "\x03\x51\x24", [0x3307] = "\x07\x53\x47", + [0x3308] = "\x01\x45\x4c", [0x3309] = "\x01\x48\x34", + [0x330a] = "\x02\x27\x33", [0x330b] = "\x01\x4e\x25", + [0x330c] = "\x03\x29\x45", [0x330d] = "\x01\x4e\x24", + [0x330e] = "\x03\x2d\x27", [0x330f] = "\x02\x2a\x7a", + [0x3310] = "\x02\x2a\x7b", [0x3311] = "\x03\x66\x32", + [0x3312] = "\x02\x2f\x59", [0x3313] = "\x02\x2f\x5a", + [0x3314] = "\x01\x55\x74", [0x3315] = "\x01\x55\x75", + [0x3316] = "\x03\x36\x48", [0x3317] = "\x01\x55\x76", + [0x3318] = "\x02\x35\x71", [0x3319] = "\x03\x36\x47", + [0x331a] = "\x03\x36\x46", [0x331b] = "\x01\x5b\x2c", + [0x331c] = "\x04\x38\x29", [0x331d] = "\x01\x5f\x67", + [0x331e] = "\x03\x3c\x29", [0x331f] = "\x01\x5f\x66", + [0x3320] = "\x02\x43\x4e", [0x3321] = "\x02\x46\x41", + [0x3322] = "\x02\x4a\x62", [0x3323] = "\x02\x57\x48", + [0x3324] = "\x03\x51\x26", [0x3325] = "\x03\x66\x33", + [0x3326] = "\x01\x76\x4d", [0x3327] = "\x01\x79\x72", + [0x3328] = "\x01\x45\x4d", [0x3329] = "\x05\x21\x48", + [0x332a] = "\x01\x46\x5c", [0x332b] = "\x01\x46\x5d", + [0x332c] = "\x01\x46\x5b", [0x332d] = "\x01\x46\x5e", + [0x332e] = "\x01\x46\x5a", [0x332f] = "\x03\x22\x52", + [0x3331] = "\x01\x48\x37", [0x3332] = "\x03\x23\x77", + [0x3333] = "\x02\x22\x57", [0x3334] = "\x01\x48\x36", + [0x3335] = "\x01\x48\x38", [0x3336] = "\x03\x23\x78", + [0x3337] = "\x03\x23\x75", [0x3338] = "\x02\x22\x52", + [0x3339] = "\x02\x22\x51", [0x333a] = "\x02\x22\x54", + [0x333b] = "\x02\x22\x53", [0x333c] = "\x02\x22\x56", + [0x333d] = "\x01\x48\x35", [0x333e] = "\x02\x22\x50", + [0x333f] = "\x02\x22\x55", [0x3340] = "\x0f\x22\x58", + [0x3342] = "\x0f\x22\x57", [0x3344] = "\x03\x26\x48", + [0x3345] = "\x02\x24\x3e", [0x3346] = "\x01\x4a\x5f", + [0x3347] = "\x02\x24\x3f", [0x3348] = "\x02\x24\x43", + [0x3349] = "\x01\x4a\x5e", [0x334a] = "\x03\x26\x49", + [0x334b] = "\x02\x24\x47", [0x334c] = "\x02\x24\x42", + [0x334d] = "\x02\x24\x45", [0x334e] = "\x01\x4a\x57", + [0x334f] = "\x01\x4a\x58", [0x3350] = "\x01\x4a\x59", + [0x3351] = "\x01\x4a\x5a", [0x3352] = "\x03\x26\x45", + [0x3353] = "\x01\x4a\x61", [0x3354] = "\x03\x26\x44", + [0x3355] = "\x02\x24\x41", [0x3356] = "\x01\x4a\x5c", + [0x3357] = "\x01\x4a\x62", [0x3358] = "\x03\x26\x47", + [0x3359] = "\x02\x24\x40", [0x335a] = "\x02\x24\x46", + [0x335b] = "\x03\x26\x42", [0x335c] = "\x01\x4a\x5b", + [0x335d] = "\x02\x24\x44", [0x335e] = "\x01\x4a\x5d", + [0x335f] = "\x01\x4a\x56", [0x3360] = "\x01\x4a\x60", + [0x3361] = "\x03\x26\x4a", [0x3362] = "\x0f\x24\x22", + [0x3365] = "\x04\x24\x46", [0x3366] = "\x0f\x24\x53", + [0x336a] = "\x01\x4e\x3a", [0x336b] = "\x03\x29\x47", + [0x336c] = "\x02\x27\x35", [0x336d] = "\x01\x4e\x26", + [0x336e] = "\x04\x26\x69", [0x336f] = "\x01\x4e\x30", + [0x3370] = "\x01\x4e\x31", [0x3371] = "\x01\x4e\x29", + [0x3372] = "\x01\x4e\x3b", [0x3373] = "\x01\x4e\x2b", + [0x3374] = "\x02\x27\x3d", [0x3375] = "\x01\x4e\x36", + [0x3376] = "\x02\x27\x38", [0x3377] = "\x01\x4e\x2c", + [0x3378] = "\x02\x27\x47", [0x3379] = "\x02\x27\x48", + [0x337a] = "\x02\x27\x40", [0x337b] = "\x02\x27\x39", + [0x337c] = "\x01\x4e\x39", [0x337d] = "\x02\x27\x45", + [0x337e] = "\x01\x4e\x34", [0x337f] = "\x01\x4e\x32", + [0x3380] = "\x03\x29\x52", [0x3381] = "\x02\x27\x46", + [0x3382] = "\x03\x29\x49", [0x3383] = "\x02\x27\x44", + [0x3384] = "\x02\x27\x3c", [0x3385] = "\x02\x27\x34", + [0x3386] = "\x02\x27\x3b", [0x3387] = "\x01\x4e\x2d", + [0x3388] = "\x04\x26\x65", [0x3389] = "\x01\x4e\x33", + [0x338a] = "\x03\x29\x4a", [0x338b] = "\x01\x4e\x27", + [0x338c] = "\x02\x27\x3f", [0x338d] = "\x02\x27\x3e", + [0x338e] = "\x02\x27\x36", [0x338f] = "\x03\x29\x4f", + [0x3390] = "\x01\x4e\x35", [0x3391] = "\x02\x27\x42", + [0x3392] = "\x02\x27\x37", [0x3393] = "\x01\x4e\x38", + [0x3394] = "\x02\x27\x49", [0x3395] = "\x01\x4e\x28", + [0x3396] = "\x03\x29\x48", [0x3397] = "\x01\x4e\x2f", + [0x3398] = "\x02\x27\x3a", [0x3399] = "\x02\x27\x43", + [0x339a] = "\x01\x4e\x37", [0x339b] = "\x04\x26\x67", + [0x339c] = "\x01\x4e\x2a", [0x339d] = "\x01\x4e\x2e", + [0x339e] = "\x04\x26\x6a", [0x339f] = "\x02\x27\x41", + [0x33a1] = "\x0f\x27\x4e", [0x33a2] = "\x03\x29\x4e", + [0x33a3] = "\x03\x29\x4c", [0x33a4] = "\x03\x65\x28", + [0x33a6] = "\x0f\x27\x50", [0x33ac] = "\x03\x65\x29", + [0x33ae] = "\x02\x2b\x3d", [0x33af] = "\x01\x51\x5f", + [0x33b0] = "\x01\x51\x6c", [0x33b1] = "\x03\x2d\x36", + [0x33b2] = "\x02\x2b\x38", [0x33b3] = "\x02\x2b\x2e", + [0x33b4] = "\x01\x51\x65", [0x33b5] = "\x02\x2b\x2c", + [0x33b6] = "\x01\x51\x5e", [0x33b7] = "\x02\x2b\x27", + [0x33b8] = "\x01\x51\x68", [0x33b9] = "\x02\x2b\x34", + [0x33ba] = "\x02\x2b\x21", [0x33bb] = "\x02\x2b\x23", + [0x33bc] = "\x03\x2d\x2e", [0x33bd] = "\x04\x2d\x59", + [0x33be] = "\x04\x29\x6e", [0x33bf] = "\x03\x2d\x30", + [0x33c0] = "\x02\x2b\x26", [0x33c1] = "\x02\x2a\x7c", + [0x33c2] = "\x02\x2b\x33", [0x33c3] = "\x02\x2b\x43", + [0x33c4] = "\x01\x51\x63", [0x33c5] = "\x02\x2b\x28", + [0x33c6] = "\x02\x2b\x3a", [0x33c7] = "\x03\x2d\x2d", + [0x33c8] = "\x02\x2a\x7e", [0x33c9] = "\x02\x2b\x41", + [0x33ca] = "\x02\x2b\x42", [0x33cb] = "\x02\x2b\x45", + [0x33cc] = "\x02\x2b\x3c", [0x33cd] = "\x02\x2b\x2d", + [0x33ce] = "\x02\x2b\x35", [0x33cf] = "\x01\x51\x69", + [0x33d0] = "\x01\x51\x5c", [0x33d1] = "\x01\x51\x64", + [0x33d2] = "\x01\x51\x70", [0x33d3] = "\x01\x51\x59", + [0x33d4] = "\x01\x51\x5b", [0x33d5] = "\x03\x2d\x31", + [0x33d6] = "\x03\x2d\x2b", [0x33d7] = "\x03\x2d\x3a", + [0x33d8] = "\x02\x2b\x25", [0x33d9] = "\x01\x51\x6d", + [0x33da] = "\x01\x51\x66", [0x33db] = "\x02\x2b\x3f", + [0x33dc] = "\x02\x2b\x22", [0x33dd] = "\x01\x51\x6f", + [0x33de] = "\x01\x51\x6a", [0x33df] = "\x02\x2b\x2b", + [0x33e0] = "\x04\x29\x6d", [0x33e1] = "\x04\x2d\x4e", + [0x33e2] = "\x01\x51\x6e", [0x33e3] = "\x02\x2b\x32", + [0x33e4] = "\x02\x2b\x2a", [0x33e5] = "\x01\x51\x67", + [0x33e6] = "\x02\x2b\x3e", [0x33e7] = "\x02\x2b\x36", + [0x33e8] = "\x03\x2d\x2a", [0x33e9] = "\x01\x51\x61", + [0x33ea] = "\x02\x2b\x44", [0x33eb] = "\x02\x2b\x29", + [0x33ec] = "\x01\x51\x5d", [0x33ed] = "\x02\x2b\x3b", + [0x33ee] = "\x02\x2b\x31", [0x33ef] = "\x01\x51\x62", + [0x33f0] = "\x02\x2b\x37", [0x33f1] = "\x01\x51\x5a", + [0x33f2] = "\x02\x2a\x7d", [0x33f3] = "\x01\x51\x6b", + [0x33f4] = "\x01\x56\x27", [0x33f5] = "\x01\x51\x60", + [0x33f6] = "\x02\x2b\x30", [0x33f7] = "\x02\x2b\x2f", + [0x33f8] = "\x02\x2b\x24", [0x33f9] = "\x03\x29\x51", + [0x33fa] = "\x02\x2b\x40", [0x33fb] = "\x03\x2d\x34", + [0x33fc] = "\x02\x2b\x39", [0x33fe] = "\x03\x2d\x32", + [0x33ff] = "\x01\x51\x58", [0x3400] = "\x03\x2d\x39", + [0x3401] = "\x03\x2d\x37", [0x3404] = "\x06\x31\x72", + [0x3405] = "\x03\x2d\x38", [0x3406] = "\x03\x65\x2b", + [0x3410] = "\x03\x65\x2a", [0x3411] = "\x0f\x2b\x48", + [0x3412] = "\x02\x2f\x6e", [0x3413] = "\x01\x56\x2e", + [0x3414] = "\x02\x2f\x6f", [0x3415] = "\x03\x31\x5d", + [0x3416] = "\x02\x2f\x63", [0x3417] = "\x01\x56\x23", + [0x3418] = "\x01\x56\x2f", [0x3419] = "\x03\x31\x57", + [0x341a] = "\x02\x2f\x5c", [0x341b] = "\x03\x31\x53", + [0x341c] = "\x02\x2f\x65", [0x341d] = "\x02\x2f\x6d", + [0x341e] = "\x03\x31\x5b", [0x341f] = "\x02\x2f\x5b", + [0x3420] = "\x02\x2f\x76", [0x3421] = "\x01\x55\x77", + [0x3422] = "\x03\x31\x5e", [0x3423] = "\x03\x31\x64", + [0x3424] = "\x03\x31\x50", [0x3425] = "\x02\x2f\x75", + [0x3426] = "\x02\x2f\x70", [0x3427] = "\x03\x31\x5f", + [0x3428] = "\x02\x2f\x71", [0x3429] = "\x01\x56\x21", + [0x342a] = "\x01\x56\x2c", [0x342b] = "\x02\x2f\x67", + [0x342c] = "\x03\x31\x56", [0x342d] = "\x02\x2f\x68", + [0x342e] = "\x02\x2f\x72", [0x342f] = "\x02\x2f\x69", + [0x3430] = "\x03\x31\x63", [0x3431] = "\x02\x2f\x64", + [0x3432] = "\x02\x2f\x5e", [0x3433] = "\x02\x2f\x5f", + [0x3434] = "\x02\x2f\x6c", [0x3435] = "\x02\x2f\x66", + [0x3436] = "\x03\x31\x54", [0x3437] = "\x03\x31\x4f", + [0x3438] = "\x01\x55\x78", [0x3439] = "\x01\x55\x7c", + [0x343a] = "\x02\x2f\x74", [0x343b] = "\x02\x2f\x60", + [0x343c] = "\x01\x56\x2a", [0x343d] = "\x01\x56\x26", + [0x343e] = "\x03\x31\x5a", [0x343f] = "\x04\x2d\x55", + [0x3440] = "\x01\x56\x29", [0x3441] = "\x01\x56\x30", + [0x3442] = "\x01\x55\x7d", [0x3443] = "\x01\x56\x2b", + [0x3444] = "\x02\x2f\x6b", [0x3445] = "\x01\x56\x2d", + [0x3446] = "\x01\x55\x7a", [0x3447] = "\x03\x31\x59", + [0x3448] = "\x01\x55\x79", [0x3449] = "\x02\x2f\x5d", + [0x344a] = "\x04\x2d\x4f", [0x344b] = "\x02\x2f\x61", + [0x344c] = "\x01\x56\x24", [0x344d] = "\x02\x2f\x73", + [0x344e] = "\x02\x2f\x6a", [0x344f] = "\x02\x2f\x62", + [0x3450] = "\x01\x56\x28", [0x3451] = "\x01\x56\x25", + [0x3452] = "\x03\x2d\x2f", [0x3453] = "\x01\x55\x7b", + [0x3454] = "\x01\x55\x7e", [0x3455] = "\x03\x31\x62", + [0x3456] = "\x03\x31\x58", [0x3457] = "\x0f\x30\x24", + [0x3458] = "\x03\x31\x61", [0x3459] = "\x03\x31\x60", + [0x345a] = "\x03\x65\x2d", [0x345e] = "\x03\x65\x2c", + [0x346b] = "\x02\x36\x28", [0x346c] = "\x03\x36\x55", + [0x346d] = "\x02\x35\x76", [0x346e] = "\x02\x35\x77", + [0x346f] = "\x02\x35\x7b", [0x3470] = "\x03\x36\x60", + [0x3471] = "\x02\x36\x2c", [0x3472] = "\x02\x36\x29", + [0x3473] = "\x03\x36\x4e", [0x3474] = "\x02\x36\x22", + [0x3475] = "\x02\x36\x21", [0x3476] = "\x01\x5b\x33", + [0x3477] = "\x02\x36\x25", [0x3478] = "\x02\x36\x34", + [0x3479] = "\x02\x35\x72", [0x347a] = "\x03\x36\x5b", + [0x347b] = "\x02\x36\x35", [0x347c] = "\x02\x36\x27", + [0x347d] = "\x02\x36\x39", [0x347e] = "\x02\x36\x2d", + [0x347f] = "\x01\x5b\x32", [0x3480] = "\x02\x36\x2b", + [0x3481] = "\x01\x5b\x2d", [0x3482] = "\x01\x5b\x42", + [0x3483] = "\x01\x5b\x38", [0x3484] = "\x03\x36\x57", + [0x3485] = "\x01\x5b\x3c", [0x3486] = "\x01\x5b\x3b", + [0x3487] = "\x02\x35\x73", [0x3488] = "\x04\x32\x3f", + [0x3489] = "\x02\x36\x32", [0x348a] = "\x02\x36\x38", + [0x348b] = "\x02\x36\x30", [0x348c] = "\x02\x36\x37", + [0x348e] = "\x03\x36\x51", [0x348f] = "\x02\x36\x24", + [0x3490] = "\x02\x35\x74", [0x3491] = "\x02\x36\x36", + [0x3492] = "\x02\x36\x26", [0x3493] = "\x01\x5b\x30", + [0x3494] = "\x01\x5b\x3d", [0x3495] = "\x03\x36\x5a", + [0x3496] = "\x02\x36\x2f", [0x3497] = "\x01\x5b\x36", + [0x3498] = "\x03\x36\x4d", [0x3499] = "\x03\x36\x5c", + [0x349a] = "\x03\x36\x50", [0x349b] = "\x02\x36\x2e", + [0x349c] = "\x02\x35\x75", [0x349d] = "\x01\x5b\x3e", + [0x349e] = "\x03\x36\x4b", [0x349f] = "\x01\x5b\x40", + [0x34a0] = "\x02\x36\x31", [0x34a1] = "\x01\x5b\x41", + [0x34a2] = "\x01\x5b\x2f", [0x34a3] = "\x02\x35\x7c", + [0x34a4] = "\x02\x36\x33", [0x34a5] = "\x03\x36\x54", + [0x34a6] = "\x03\x34\x78", [0x34a7] = "\x01\x5b\x35", + [0x34a8] = "\x01\x5b\x3f", [0x34a9] = "\x02\x35\x7e", + [0x34aa] = "\x02\x36\x2a", [0x34ab] = "\x02\x35\x79", + [0x34ac] = "\x02\x35\x7d", [0x34ad] = "\x01\x5b\x3a", + [0x34ae] = "\x02\x35\x78", [0x34af] = "\x01\x5b\x2e", + [0x34b0] = "\x01\x5b\x37", [0x34b1] = "\x01\x5b\x34", + [0x34b2] = "\x02\x36\x23", [0x34b3] = "\x01\x56\x22", + [0x34b4] = "\x02\x3c\x63", [0x34b5] = "\x01\x5b\x31", + [0x34b6] = "\x03\x36\x4c", [0x34b7] = "\x03\x36\x52", + [0x34b8] = "\x03\x36\x5e", [0x34b9] = "\x03\x36\x5f", + [0x34bd] = "\x0f\x35\x57", [0x34c1] = "\x03\x36\x56", + [0x34c3] = "\x03\x3c\x45", [0x34c4] = "\x01\x5b\x39", + [0x34c5] = "\x03\x3c\x41", [0x34c6] = "\x02\x3c\x66", + [0x34c7] = "\x02\x3c\x7c", [0x34c8] = "\x02\x3c\x71", + [0x34c9] = "\x01\x5f\x7b", [0x34ca] = "\x03\x3c\x38", + [0x34cb] = "\x01\x5f\x76", [0x34cc] = "\x02\x3c\x60", + [0x34cd] = "\x01\x5f\x77", [0x34ce] = "\x02\x3c\x70", + [0x34cf] = "\x03\x3c\x3e", [0x34d0] = "\x02\x3c\x69", + [0x34d1] = "\x02\x3c\x76", [0x34d2] = "\x01\x5f\x73", + [0x34d3] = "\x02\x3c\x4e", [0x34d4] = "\x02\x3c\x78", + [0x34d5] = "\x01\x5f\x69", [0x34d6] = "\x02\x3c\x56", + [0x34d7] = "\x01\x5f\x6c", [0x34d8] = "\x01\x5f\x6b", + [0x34d9] = "\x04\x38\x32", [0x34da] = "\x01\x5f\x7c", + [0x34db] = "\x03\x36\x53", [0x34dc] = "\x02\x3c\x50", + [0x34dd] = "\x02\x3c\x72", [0x34de] = "\x02\x3c\x73", + [0x34df] = "\x01\x5f\x6e", [0x34e0] = "\x01\x5f\x6a", + [0x34e1] = "\x02\x3c\x5e", [0x34e2] = "\x03\x3c\x3d", + [0x34e3] = "\x01\x5f\x75", [0x34e4] = "\x02\x3c\x59", + [0x34e5] = "\x03\x3c\x32", [0x34e6] = "\x02\x3c\x74", + [0x34e7] = "\x01\x5f\x71", [0x34e8] = "\x02\x3c\x6c", + [0x34e9] = "\x02\x3c\x79", [0x34ea] = "\x02\x3c\x53", + [0x34eb] = "\x02\x3c\x58", [0x34ec] = "\x02\x3c\x52", + [0x34ed] = "\x03\x3c\x2a", [0x34ee] = "\x01\x5f\x70", + [0x34ef] = "\x02\x3c\x65", [0x34f0] = "\x02\x43\x64", + [0x34f1] = "\x02\x3c\x54", [0x34f2] = "\x01\x5f\x74", + [0x34f3] = "\x02\x3c\x5d", [0x34f4] = "\x02\x3c\x75", + [0x34f5] = "\x01\x5f\x6f", [0x34f6] = "\x02\x3c\x5a", + [0x34f7] = "\x02\x3c\x57", [0x34f8] = "\x02\x3c\x68", + [0x34f9] = "\x01\x5f\x72", [0x34fa] = "\x01\x5f\x68", + [0x34fb] = "\x01\x5f\x7e", [0x34fc] = "\x02\x3c\x6b", + [0x34fd] = "\x02\x3c\x6a", [0x34fe] = "\x03\x3c\x31", + [0x34ff] = "\x03\x3c\x42", [0x3500] = "\x03\x3c\x39", + [0x3501] = "\x03\x3c\x3b", [0x3502] = "\x03\x3c\x34", + [0x3503] = "\x03\x3c\x2f", [0x3504] = "\x02\x3c\x4f", + [0x3505] = "\x01\x5f\x6d", [0x3506] = "\x02\x3c\x77", + [0x3507] = "\x02\x3c\x5f", [0x3508] = "\x02\x3c\x61", + [0x3509] = "\x03\x3c\x37", [0x350a] = "\x02\x3c\x6e", + [0x350b] = "\x02\x3c\x6d", [0x350c] = "\x02\x3c\x4d", + [0x350d] = "\x01\x5f\x78", [0x350e] = "\x01\x5f\x7a", + [0x350f] = "\x02\x3c\x55", [0x3510] = "\x02\x3c\x5c", + [0x3511] = "\x02\x3c\x64", [0x3512] = "\x01\x5f\x79", + [0x3513] = "\x02\x3c\x5b", [0x3514] = "\x02\x3c\x67", + [0x3515] = "\x02\x3c\x7a", [0x3516] = "\x0f\x3b\x70", + [0x3517] = "\x02\x3c\x6f", [0x3518] = "\x03\x3c\x3c", + [0x351b] = "\x0f\x3c\x21", [0x351c] = "\x03\x3c\x44", + [0x351e] = "\x03\x3c\x33", [0x3525] = "\x02\x3c\x7b", + [0x3527] = "\x0f\x3c\x29", [0x3529] = "\x03\x65\x2f", + [0x352a] = "\x02\x3c\x51", [0x352b] = "\x0f\x3b\x6e", + [0x352c] = "\x03\x65\x2e", [0x352e] = "\x03\x3c\x40", + [0x352f] = "\x02\x43\x78", [0x3530] = "\x01\x64\x4c", + [0x3531] = "\x03\x41\x65", [0x3532] = "\x02\x43\x76", + [0x3533] = "\x02\x43\x61", [0x3534] = "\x02\x43\x66", + [0x3535] = "\x02\x43\x5f", [0x3536] = "\x03\x41\x77", + [0x3537] = "\x02\x43\x72", [0x3538] = "\x02\x43\x51", + [0x3539] = "\x02\x43\x58", [0x353a] = "\x04\x3d\x71", + [0x353b] = "\x02\x43\x70", [0x353c] = "\x02\x43\x7a", + [0x353d] = "\x02\x43\x62", [0x353e] = "\x03\x41\x68", + [0x353f] = "\x02\x43\x55", [0x3540] = "\x02\x43\x68", + [0x3541] = "\x02\x43\x6d", [0x3542] = "\x02\x43\x59", + [0x3543] = "\x03\x41\x6b", [0x3544] = "\x02\x43\x6a", + [0x3545] = "\x02\x43\x56", [0x3546] = "\x03\x41\x5d", + [0x3547] = "\x03\x41\x75", [0x3548] = "\x02\x43\x5d", + [0x3549] = "\x02\x43\x5e", [0x354a] = "\x01\x64\x4e", + [0x354b] = "\x02\x43\x71", [0x354c] = "\x02\x43\x6f", + [0x354d] = "\x03\x41\x73", [0x354e] = "\x02\x43\x52", + [0x354f] = "\x02\x43\x74", [0x3550] = "\x03\x41\x74", + [0x3551] = "\x02\x43\x75", [0x3552] = "\x02\x43\x77", + [0x3553] = "\x01\x64\x52", [0x3554] = "\x01\x64\x4a", + [0x3555] = "\x03\x41\x6f", [0x3556] = "\x02\x35\x7a", + [0x3557] = "\x02\x43\x5a", [0x3558] = "\x02\x43\x6c", + [0x3559] = "\x02\x43\x5b", [0x355a] = "\x01\x64\x47", + [0x355b] = "\x01\x64\x57", [0x355c] = "\x02\x43\x73", + [0x355d] = "\x01\x64\x55", [0x355e] = "\x01\x64\x51", + [0x355f] = "\x02\x43\x50", [0x3560] = "\x01\x64\x49", + [0x3561] = "\x03\x41\x79", [0x3562] = "\x02\x43\x53", + [0x3563] = "\x01\x64\x56", [0x3564] = "\x03\x41\x78", + [0x3565] = "\x02\x43\x63", [0x3566] = "\x02\x43\x4f", + [0x3567] = "\x03\x41\x76", [0x3568] = "\x01\x64\x4f", + [0x3569] = "\x02\x43\x67", [0x356a] = "\x02\x43\x57", + [0x356b] = "\x01\x64\x50", [0x356c] = "\x02\x43\x60", + [0x356d] = "\x01\x64\x46", [0x356e] = "\x01\x5f\x7d", + [0x356f] = "\x02\x43\x69", [0x3570] = "\x02\x3c\x62", + [0x3571] = "\x02\x43\x54", [0x3572] = "\x04\x3d\x6c", + [0x3573] = "\x03\x41\x6d", [0x3574] = "\x02\x43\x6e", + [0x3575] = "\x01\x64\x4b", [0x3576] = "\x02\x43\x6b", + [0x3577] = "\x01\x64\x48", [0x3578] = "\x02\x43\x65", + [0x3579] = "\x01\x64\x53", [0x357a] = "\x02\x43\x5c", + [0x357b] = "\x02\x43\x79", [0x357c] = "\x03\x41\x6a", + [0x357d] = "\x03\x41\x7b", [0x357f] = "\x0f\x42\x49", + [0x3580] = "\x0f\x42\x47", [0x3582] = "\x01\x64\x4d", + [0x3583] = "\x02\x45\x2c", [0x3585] = "\x03\x41\x72", + [0x3586] = "\x01\x64\x54", [0x358a] = "\x0f\x42\x28", + [0x358c] = "\x0f\x42\x3c", [0x358d] = "\x02\x4a\x70", + [0x358e] = "\x02\x4a\x6e", [0x358f] = "\x03\x47\x3a", + [0x3590] = "\x02\x4b\x26", [0x3591] = "\x02\x4a\x6c", + [0x3592] = "\x03\x47\x3d", [0x3593] = "\x02\x4a\x7e", + [0x3594] = "\x01\x64\x45", [0x3595] = "\x01\x69\x28", + [0x3596] = "\x02\x4a\x68", [0x3597] = "\x02\x4b\x25", + [0x3598] = "\x03\x47\x51", [0x3599] = "\x02\x4a\x6d", + [0x359a] = "\x02\x4a\x7b", [0x359b] = "\x01\x69\x2d", + [0x359c] = "\x01\x69\x26", [0x359d] = "\x03\x47\x4e", + [0x359e] = "\x02\x4b\x23", [0x359f] = "\x03\x47\x46", + [0x35a0] = "\x02\x4a\x66", [0x35a1] = "\x02\x4b\x22", + [0x35a2] = "\x03\x47\x47", [0x35a3] = "\x01\x69\x38", + [0x35a4] = "\x02\x4a\x77", [0x35a5] = "\x02\x4b\x29", + [0x35a6] = "\x01\x69\x36", [0x35a7] = "\x02\x4a\x6f", + [0x35a8] = "\x01\x69\x27", [0x35a9] = "\x02\x4a\x71", + [0x35aa] = "\x02\x4b\x21", [0x35ab] = "\x01\x69\x30", + [0x35ac] = "\x02\x4a\x6a", [0x35ad] = "\x01\x69\x34", + [0x35ae] = "\x01\x69\x2a", [0x35af] = "\x02\x4a\x73", + [0x35b0] = "\x02\x4a\x69", [0x35b1] = "\x02\x4a\x63", + [0x35b2] = "\x03\x47\x3e", [0x35b3] = "\x02\x4a\x7d", + [0x35b4] = "\x01\x69\x31", [0x35b5] = "\x02\x4b\x28", + [0x35b6] = "\x02\x4a\x64", [0x35b7] = "\x01\x69\x2e", + [0x35b8] = "\x04\x43\x77", [0x35b9] = "\x02\x4a\x79", + [0x35ba] = "\x04\x43\x79", [0x35bb] = "\x01\x69\x2f", + [0x35bc] = "\x02\x4a\x6b", [0x35bd] = "\x02\x4a\x76", + [0x35be] = "\x02\x4a\x72", [0x35bf] = "\x02\x4a\x74", + [0x35c0] = "\x03\x47\x43", [0x35c1] = "\x01\x69\x29", + [0x35c2] = "\x02\x4b\x27", [0x35c3] = "\x01\x69\x37", + [0x35c4] = "\x02\x4a\x75", [0x35c5] = "\x03\x47\x3b", + [0x35c6] = "\x02\x4b\x2a", [0x35c7] = "\x04\x44\x27", + [0x35c8] = "\x03\x47\x3c", [0x35c9] = "\x02\x4a\x65", + [0x35ca] = "\x02\x4a\x7a", [0x35cb] = "\x01\x69\x2c", + [0x35cc] = "\x01\x69\x35", [0x35cd] = "\x01\x69\x33", + [0x35ce] = "\x02\x4a\x67", [0x35cf] = "\x02\x4a\x7c", + [0x35d0] = "\x01\x69\x32", [0x35d1] = "\x03\x47\x45", + [0x35d2] = "\x03\x47\x48", [0x35d3] = "\x01\x69\x2b", + [0x35d4] = "\x02\x4a\x78", [0x35d5] = "\x03\x47\x4d", + [0x35d6] = "\x03\x47\x44", [0x35d7] = "\x04\x44\x28", + [0x35d8] = "\x03\x4c\x54", [0x35d9] = "\x02\x4b\x24", + [0x35e1] = "\x03\x47\x4c", [0x35e2] = "\x02\x50\x7c", + [0x35e3] = "\x03\x47\x42", [0x35e4] = "\x02\x50\x78", + [0x35e5] = "\x02\x50\x74", [0x35e6] = "\x02\x51\x2a", + [0x35e7] = "\x02\x51\x27", [0x35e8] = "\x01\x6d\x37", + [0x35e9] = "\x03\x4c\x64", [0x35ea] = "\x03\x4c\x60", + [0x35eb] = "\x02\x51\x2e", [0x35ec] = "\x02\x50\x7b", + [0x35ed] = "\x01\x6d\x42", [0x35ee] = "\x02\x51\x24", + [0x35ef] = "\x03\x4c\x4f", [0x35f0] = "\x03\x4c\x51", + [0x35f1] = "\x02\x50\x77", [0x35f2] = "\x02\x51\x23", + [0x35f3] = "\x01\x6d\x3f", [0x35f4] = "\x02\x51\x37", + [0x35f5] = "\x04\x4a\x3d", [0x35f6] = "\x02\x51\x34", + [0x35f7] = "\x02\x51\x26", [0x35f8] = "\x02\x50\x75", + [0x35f9] = "\x03\x4c\x5f", [0x35fa] = "\x03\x4c\x57", + [0x35fb] = "\x02\x51\x2b", [0x35fc] = "\x02\x51\x2d", + [0x35fd] = "\x01\x6d\x3b", [0x35fe] = "\x02\x51\x21", + [0x35ff] = "\x02\x50\x7a", [0x3600] = "\x02\x50\x71", + [0x3601] = "\x01\x6d\x38", [0x3602] = "\x01\x6d\x40", + [0x3603] = "\x04\x4a\x48", [0x3604] = "\x02\x51\x30", + [0x3605] = "\x01\x6d\x41", [0x3606] = "\x02\x50\x72", + [0x3607] = "\x02\x51\x36", [0x3608] = "\x02\x51\x29", + [0x3609] = "\x02\x51\x2f", [0x360a] = "\x01\x6d\x3e", + [0x360b] = "\x03\x4c\x4d", [0x360c] = "\x03\x4c\x50", + [0x360d] = "\x02\x51\x2c", [0x360e] = "\x03\x4c\x47", + [0x360f] = "\x02\x51\x33", [0x3610] = "\x03\x4c\x5b", + [0x3611] = "\x01\x6d\x43", [0x3612] = "\x03\x4c\x56", + [0x3613] = "\x01\x6d\x3d", [0x3614] = "\x02\x51\x25", + [0x3615] = "\x02\x50\x76", [0x3616] = "\x02\x51\x38", + [0x3617] = "\x02\x50\x73", [0x3618] = "\x02\x51\x31", + [0x3619] = "\x01\x6d\x3a", [0x361a] = "\x03\x4c\x4a", + [0x361b] = "\x02\x50\x7d", [0x361c] = "\x03\x4c\x49", + [0x361d] = "\x02\x50\x7e", [0x361e] = "\x01\x6d\x39", + [0x361f] = "\x01\x6d\x36", [0x3620] = "\x02\x50\x79", + [0x3621] = "\x01\x6d\x3c", [0x3622] = "\x03\x4c\x52", + [0x3623] = "\x01\x6d\x35", [0x3624] = "\x03\x4c\x62", + [0x3625] = "\x02\x51\x32", [0x3626] = "\x02\x51\x35", + [0x3627] = "\x02\x51\x22", [0x3628] = "\x02\x57\x55", + [0x3629] = "\x03\x4c\x5e", [0x362a] = "\x03\x4c\x59", + [0x362b] = "\x0f\x4f\x42", [0x362c] = "\x03\x4c\x61", + [0x362d] = "\x03\x65\x30", [0x3632] = "\x02\x57\x4d", + [0x3633] = "\x03\x51\x2c", [0x3634] = "\x02\x57\x49", + [0x3635] = "\x01\x71\x21", [0x3636] = "\x03\x51\x3c", + [0x3637] = "\x03\x51\x38", [0x3638] = "\x01\x70\x74", + [0x3639] = "\x01\x70\x79", [0x363a] = "\x01\x70\x75", + [0x363b] = "\x02\x57\x57", [0x363c] = "\x02\x57\x62", + [0x363d] = "\x01\x70\x73", [0x363e] = "\x02\x57\x4f", + [0x363f] = "\x02\x57\x58", [0x3640] = "\x02\x51\x28", + [0x3641] = "\x02\x57\x59", [0x3642] = "\x03\x51\x28", + [0x3643] = "\x03\x51\x2b", [0x3644] = "\x01\x70\x7a", + [0x3645] = "\x03\x51\x40", [0x3646] = "\x02\x57\x68", + [0x3647] = "\x01\x70\x7e", [0x3648] = "\x01\x71\x23", + [0x3649] = "\x02\x57\x4b", [0x364a] = "\x03\x51\x3b", + [0x364b] = "\x01\x70\x7d", [0x364c] = "\x03\x51\x31", + [0x364d] = "\x02\x57\x66", [0x364e] = "\x02\x57\x67", + [0x364f] = "\x02\x57\x5d", [0x3650] = "\x02\x57\x5c", + [0x3651] = "\x02\x57\x54", [0x3652] = "\x03\x51\x29", + [0x3653] = "\x03\x51\x3e", [0x3654] = "\x02\x57\x5e", + [0x3655] = "\x02\x57\x65", [0x3656] = "\x02\x57\x64", + [0x3657] = "\x03\x51\x2f", [0x3658] = "\x01\x70\x78", + [0x3659] = "\x01\x70\x76", [0x365a] = "\x02\x57\x56", + [0x365b] = "\x02\x57\x53", [0x365c] = "\x03\x51\x44", + [0x365d] = "\x02\x57\x50", [0x365e] = "\x02\x57\x63", + [0x365f] = "\x01\x71\x22", [0x3660] = "\x02\x57\x61", + [0x3661] = "\x01\x70\x7c", [0x3662] = "\x01\x70\x7b", + [0x3663] = "\x03\x51\x27", [0x3664] = "\x02\x57\x5b", + [0x3665] = "\x04\x4a\x4b", [0x3666] = "\x02\x57\x4a", + [0x3667] = "\x02\x57\x4c", [0x3668] = "\x02\x57\x4e", + [0x3669] = "\x02\x57\x60", [0x366a] = "\x02\x57\x5a", + [0x366b] = "\x01\x70\x77", [0x366c] = "\x03\x51\x2e", + [0x366d] = "\x02\x57\x51", [0x366e] = "\x03\x51\x32", + [0x366f] = "\x02\x57\x5f", [0x3670] = "\x03\x51\x41", + [0x3671] = "\x03\x51\x3a", [0x3672] = "\x0f\x54\x7b", + [0x3676] = "\x02\x57\x52", [0x3677] = "\x03\x65\x31", + [0x3678] = "\x0f\x55\x29", [0x367a] = "\x03\x65\x32", + [0x367d] = "\x03\x54\x75", [0x367e] = "\x01\x73\x78", + [0x367f] = "\x02\x5d\x31", [0x3680] = "\x01\x73\x71", + [0x3681] = "\x02\x5d\x22", [0x3682] = "\x03\x54\x7b", + [0x3683] = "\x02\x5d\x2d", [0x3684] = "\x01\x73\x73", + [0x3685] = "\x02\x5d\x34", [0x3686] = "\x03\x55\x21", + [0x3687] = "\x02\x5d\x29", [0x3688] = "\x03\x54\x7c", + [0x3689] = "\x02\x5d\x24", [0x368a] = "\x03\x54\x76", + [0x368b] = "\x04\x56\x45", [0x368c] = "\x02\x5d\x35", + [0x368d] = "\x02\x5c\x7e", [0x368e] = "\x02\x5d\x2b", + [0x368f] = "\x03\x55\x27", [0x3690] = "\x01\x73\x7a", + [0x3691] = "\x02\x5d\x30", [0x3692] = "\x02\x5d\x36", + [0x3693] = "\x02\x5d\x2a", [0x3694] = "\x01\x73\x72", + [0x3695] = "\x02\x5d\x2c", [0x3696] = "\x02\x5d\x21", + [0x3697] = "\x01\x73\x79", [0x3698] = "\x03\x55\x23", + [0x3699] = "\x03\x54\x7a", [0x369a] = "\x02\x5d\x33", + [0x369b] = "\x02\x5d\x26", [0x369c] = "\x01\x73\x75", + [0x369d] = "\x03\x55\x24", [0x369e] = "\x02\x5d\x28", + [0x369f] = "\x02\x5d\x25", [0x36a0] = "\x01\x73\x7b", + [0x36a1] = "\x02\x5d\x27", [0x36a2] = "\x01\x73\x74", + [0x36a3] = "\x01\x73\x77", [0x36a4] = "\x02\x5d\x2f", + [0x36a5] = "\x02\x5d\x23", [0x36a6] = "\x02\x5d\x32", + [0x36a7] = "\x03\x54\x78", [0x36a8] = "\x02\x5d\x2e", + [0x36aa] = "\x03\x55\x29", [0x36ab] = "\x03\x57\x74", + [0x36ac] = "\x01\x76\x4f", [0x36ad] = "\x02\x61\x73", + [0x36ae] = "\x01\x76\x54", [0x36af] = "\x01\x76\x55", + [0x36b0] = "\x03\x57\x77", [0x36b1] = "\x03\x58\x21", + [0x36b2] = "\x03\x57\x76", [0x36b3] = "\x01\x76\x4e", + [0x36b4] = "\x02\x61\x72", [0x36b5] = "\x03\x57\x78", + [0x36b6] = "\x02\x61\x6f", [0x36b7] = "\x02\x61\x70", + [0x36b8] = "\x01\x76\x52", [0x36b9] = "\x02\x61\x6a", + [0x36ba] = "\x02\x61\x6e", [0x36bb] = "\x01\x76\x51", + [0x36bc] = "\x03\x57\x7e", [0x36bd] = "\x02\x61\x6b", + [0x36be] = "\x03\x57\x79", [0x36bf] = "\x03\x58\x23", + [0x36c0] = "\x03\x57\x7d", [0x36c1] = "\x03\x57\x7a", + [0x36c2] = "\x01\x76\x53", [0x36c3] = "\x01\x76\x50", + [0x36c4] = "\x03\x58\x22", [0x36c5] = "\x02\x61\x69", + [0x36c6] = "\x02\x61\x6d", [0x36c7] = "\x02\x61\x71", + [0x36c8] = "\x03\x57\x7b", [0x36ca] = "\x03\x65\x33", + [0x36cb] = "\x02\x65\x5c", [0x36cc] = "\x02\x65\x59", + [0x36cd] = "\x02\x65\x62", [0x36ce] = "\x03\x5a\x44", + [0x36cf] = "\x02\x65\x61", [0x36d0] = "\x02\x65\x5f", + [0x36d1] = "\x02\x65\x5a", [0x36d2] = "\x03\x5a\x4f", + [0x36d3] = "\x01\x78\x3f", [0x36d4] = "\x03\x5a\x45", + [0x36d5] = "\x03\x5a\x4e", [0x36d6] = "\x04\x5f\x71", + [0x36d7] = "\x03\x5a\x47", [0x36d8] = "\x03\x5a\x4d", + [0x36d9] = "\x02\x65\x5b", [0x36da] = "\x01\x78\x3e", + [0x36db] = "\x01\x73\x76", [0x36dc] = "\x02\x65\x5e", + [0x36dd] = "\x01\x78\x3d", [0x36de] = "\x02\x65\x63", + [0x36df] = "\x02\x65\x5d", [0x36e0] = "\x02\x65\x58", + [0x36e1] = "\x02\x61\x6c", [0x36e2] = "\x03\x5a\x48", + [0x36e3] = "\x03\x5a\x46", [0x36e5] = "\x01\x78\x3c", + [0x36e6] = "\x03\x65\x34", [0x36e7] = "\x02\x65\x57", + [0x36e8] = "\x02\x69\x24", [0x36e9] = "\x03\x5c\x49", + [0x36ea] = "\x02\x69\x23", [0x36eb] = "\x02\x65\x60", + [0x36ec] = "\x01\x79\x73", [0x36ed] = "\x03\x57\x75", + [0x36ee] = "\x02\x69\x27", [0x36ef] = "\x02\x69\x28", + [0x36f0] = "\x02\x69\x22", [0x36f1] = "\x02\x69\x26", + [0x36f2] = "\x04\x63\x50", [0x36f3] = "\x02\x69\x21", + [0x36f4] = "\x03\x5c\x47", [0x36f5] = "\x03\x65\x35", + [0x36f6] = "\x04\x63\x4e", [0x36f8] = "\x02\x6b\x5f", + [0x36f9] = "\x02\x69\x25", [0x36fa] = "\x01\x7a\x72", + [0x36fb] = "\x01\x7a\x70", [0x36fc] = "\x02\x6b\x5d", + [0x36fd] = "\x03\x5e\x35", [0x36fe] = "\x03\x5e\x34", + [0x36ff] = "\x03\x5e\x33", [0x3700] = "\x02\x6b\x60", + [0x3701] = "\x03\x5e\x37", [0x3702] = "\x02\x6b\x5c", + [0x3703] = "\x02\x6b\x5e", [0x3704] = "\x01\x7a\x71", + [0x3706] = "\x03\x5f\x4f", [0x3707] = "\x03\x5f\x4e", + [0x3708] = "\x02\x6d\x53", [0x3709] = "\x02\x6d\x54", + [0x370a] = "\x01\x7b\x62", [0x370b] = "\x02\x6d\x52", + [0x370c] = "\x0f\x69\x4c", [0x370d] = "\x03\x65\x36", + [0x370e] = "\x03\x65\x37", [0x370f] = "\x02\x6f\x31", + [0x3710] = "\x01\x7c\x3b", [0x3711] = "\x02\x6f\x2f", + [0x3712] = "\x02\x6f\x30", [0x3713] = "\x02\x70\x3a", + [0x3714] = "\x03\x60\x74", [0x3715] = "\x0f\x6b\x51", + [0x3716] = "\x01\x7d\x23", [0x3717] = "\x02\x71\x23", + [0x3718] = "\x02\x71\x21", [0x3719] = "\x02\x71\x22", + [0x371a] = "\x02\x71\x24", [0x371b] = "\x03\x61\x40", + [0x371c] = "\x03\x61\x65", [0x371d] = "\x03\x61\x41", + [0x371e] = "\x02\x72\x2b", [0x3720] = "\x01\x45\x4e", + [0x3721] = "\x01\x48\x39", [0x3722] = "\x03\x23\x79", + [0x3723] = "\x01\x4e\x3c", [0x3724] = "\x04\x26\x71", + [0x3725] = "\x02\x27\x4a", [0x3726] = "\x03\x29\x53", + [0x3727] = "\x03\x29\x54", [0x3728] = "\x02\x2b\x46", + [0x3729] = "\x04\x29\x72", [0x372a] = "\x03\x2d\x3c", + [0x372b] = "\x03\x31\x66", [0x372c] = "\x02\x2f\x77", + [0x372d] = "\x02\x2f\x79", [0x372e] = "\x03\x31\x65", + [0x372f] = "\x02\x2f\x78", [0x3730] = "\x03\x31\x67", + [0x3731] = "\x02\x2f\x7a", [0x3732] = "\x01\x5b\x43", + [0x3733] = "\x02\x36\x3b", [0x3734] = "\x02\x2f\x7b", + [0x3735] = "\x03\x36\x62", [0x3736] = "\x02\x36\x3a", + [0x3737] = "\x02\x36\x3c", [0x3738] = "\x02\x36\x3d", + [0x3739] = "\x02\x3c\x7d", [0x373a] = "\x01\x60\x22", + [0x373b] = "\x02\x3c\x7e", [0x373c] = "\x02\x3d\x22", + [0x373d] = "\x01\x60\x23", [0x373e] = "\x01\x60\x21", + [0x373f] = "\x02\x3d\x21", [0x3740] = "\x03\x41\x7d", + [0x3741] = "\x02\x44\x22", [0x3742] = "\x02\x43\x7e", + [0x3743] = "\x02\x43\x7d", [0x3744] = "\x03\x41\x7c", + [0x3745] = "\x02\x43\x7c", [0x3746] = "\x02\x43\x7b", + [0x3747] = "\x01\x64\x58", [0x3748] = "\x02\x44\x21", + [0x3749] = "\x01\x69\x39", [0x374a] = "\x02\x4b\x2b", + [0x374b] = "\x02\x4b\x2d", [0x374c] = "\x01\x69\x3a", + [0x374d] = "\x02\x4b\x2c", [0x374e] = "\x01\x6d\x45", + [0x374f] = "\x03\x4c\x66", [0x3750] = "\x01\x6d\x44", + [0x3751] = "\x02\x51\x39", [0x3752] = "\x03\x4c\x65", + [0x3753] = "\x03\x4c\x67", [0x3754] = "\x02\x57\x6a", + [0x3755] = "\x02\x57\x69", [0x3756] = "\x02\x57\x6b", + [0x3757] = "\x03\x51\x46", [0x3758] = "\x03\x51\x45", + [0x3759] = "\x01\x71\x24", [0x375a] = "\x0f\x55\x39", + [0x375b] = "\x02\x5d\x37", [0x375c] = "\x01\x73\x7c", + [0x375d] = "\x03\x55\x2b", [0x375e] = "\x02\x61\x74", + [0x375f] = "\x01\x76\x56", [0x3760] = "\x02\x65\x64", + [0x3761] = "\x01\x7b\x63", [0x3762] = "\x01\x45\x4f", + [0x3763] = "\x01\x46\x5f", [0x3764] = "\x01\x48\x3a", + [0x3765] = "\x01\x4a\x63", [0x3766] = "\x01\x4e\x3d", + [0x3767] = "\x01\x4e\x3e", [0x3768] = "\x03\x29\x55", + [0x3769] = "\x03\x29\x56", [0x376a] = "\x01\x51\x71", + [0x376b] = "\x03\x2d\x3d", [0x376c] = "\x03\x31\x68", + [0x376d] = "\x02\x2f\x7c", [0x376e] = "\x03\x3c\x49", + [0x376f] = "\x03\x3c\x47", [0x3770] = "\x04\x44\x2d", + [0x3771] = "\x03\x41\x7e", [0x3772] = "\x01\x64\x59", + [0x3773] = "\x03\x42\x21", [0x3774] = "\x03\x47\x53", + [0x3775] = "\x04\x4a\x4e", [0x3776] = "\x02\x52\x59", + [0x3777] = "\x01\x71\x25", [0x3778] = "\x01\x76\x57", + [0x3779] = "\x01\x45\x50", [0x377a] = "\x03\x22\x53", + [0x377b] = "\x01\x48\x3b", [0x377d] = "\x04\x26\x76", + [0x377e] = "\x02\x27\x4c", [0x377f] = "\x01\x4e\x3f", + [0x3780] = "\x02\x27\x4b", [0x3781] = "\x03\x29\x58", + [0x3782] = "\x02\x2b\x47", [0x3783] = "\x01\x51\x72", + [0x3784] = "\x02\x2b\x48", [0x3785] = "\x05\x29\x69", + [0x3786] = "\x01\x51\x73", [0x3788] = "\x02\x2f\x7e", + [0x3789] = "\x01\x56\x32", [0x378a] = "\x01\x56\x31", + [0x378b] = "\x03\x31\x6a", [0x378c] = "\x02\x36\x42", + [0x378d] = "\x02\x36\x40", [0x378e] = "\x02\x36\x41", + [0x378f] = "\x02\x36\x3f", [0x3790] = "\x03\x36\x64", + [0x3791] = "\x02\x36\x3e", [0x3794] = "\x02\x3d\x23", + [0x3795] = "\x02\x3d\x26", [0x3796] = "\x01\x60\x25", + [0x3797] = "\x02\x3d\x24", [0x3798] = "\x01\x60\x24", + [0x3799] = "\x02\x3d\x25", [0x379b] = "\x02\x44\x23", + [0x379c] = "\x03\x42\x22", [0x379d] = "\x04\x44\x31", + [0x379e] = "\x02\x4b\x2e", [0x379f] = "\x02\x4b\x2f", + [0x37a0] = "\x02\x4b\x30", [0x37a1] = "\x03\x47\x54", + [0x37a2] = "\x02\x51\x3c", [0x37a3] = "\x02\x51\x3b", + [0x37a4] = "\x01\x6d\x46", [0x37a5] = "\x02\x51\x3a", + [0x37a6] = "\x02\x51\x3d", [0x37a7] = "\x02\x57\x6c", + [0x37a8] = "\x04\x50\x6d", [0x37aa] = "\x02\x57\x6d", + [0x37ab] = "\x02\x57\x6e", [0x37ac] = "\x04\x56\x52", + [0x37ad] = "\x02\x5d\x38", [0x37ae] = "\x01\x73\x7d", + [0x37af] = "\x01\x76\x58", [0x37b0] = "\x02\x65\x65", + [0x37b2] = "\x01\x7a\x73", [0x37b3] = "\x02\x21\x3f", + [0x37b4] = "\x03\x29\x59", [0x37b5] = "\x01\x51\x74", + [0x37b6] = "\x02\x2b\x49", [0x37b7] = "\x01\x56\x33", + [0x37b8] = "\x04\x32\x4e", [0x37b9] = "\x04\x32\x50", + [0x37ba] = "\x01\x5b\x44", [0x37bb] = "\x03\x36\x65", + [0x37bc] = "\x01\x60\x26", [0x37bd] = "\x02\x3d\x27", + [0x37be] = "\x03\x3c\x4b", [0x37bf] = "\x01\x64\x5b", + [0x37c0] = "\x01\x64\x5a", [0x37c1] = "\x03\x42\x26", + [0x37c3] = "\x02\x4b\x31", [0x37c4] = "\x02\x4b\x32", + [0x37c5] = "\x01\x6d\x47", [0x37c6] = "\x01\x6d\x48", + [0x37c7] = "\x02\x57\x70", [0x37c8] = "\x02\x57\x6f", + [0x37c9] = "\x02\x61\x75", [0x37ca] = "\x02\x6f\x32", + [0x37cb] = "\x01\x45\x51", [0x37cc] = "\x02\x21\x40", + [0x37cd] = "\x01\x46\x60", [0x37ce] = "\x03\x23\x7a", + [0x37cf] = "\x01\x4a\x64", [0x37d0] = "\x02\x24\x48", + [0x37d1] = "\x03\x29\x5a", [0x37d2] = "\x01\x51\x75", + [0x37d3] = "\x01\x64\x5c", [0x37d4] = "\x01\x45\x52", + [0x37d6] = "\x02\x2b\x4a", [0x37d7] = "\x01\x51\x76", + [0x37d8] = "\x02\x2b\x4b", [0x37da] = "\x01\x73\x7e", + [0x37db] = "\x01\x45\x53", [0x37dc] = "\x03\x65\x38", + [0x37dd] = "\x03\x65\x39", [0x37de] = "\x02\x27\x4d", + [0x37e0] = "\x02\x2b\x4c", [0x37e1] = "\x03\x2d\x42", + [0x37e2] = "\x02\x30\x25", [0x37e3] = "\x02\x30\x24", + [0x37e4] = "\x02\x30\x22", [0x37e5] = "\x03\x31\x6e", + [0x37e6] = "\x02\x30\x21", [0x37e7] = "\x02\x30\x26", + [0x37e8] = "\x02\x30\x23", [0x37e9] = "\x03\x31\x6c", + [0x37ea] = "\x03\x31\x6d", [0x37eb] = "\x01\x5b\x45", + [0x37ec] = "\x01\x5b\x46", [0x37ed] = "\x03\x36\x66", + [0x37ef] = "\x01\x60\x27", [0x37f0] = "\x02\x3d\x28", + [0x37f1] = "\x04\x38\x4e", [0x37f2] = "\x02\x3d\x29", + [0x37f3] = "\x02\x3d\x2a", [0x37f4] = "\x03\x3c\x4d", + [0x37f5] = "\x0f\x3c\x3c", [0x37f6] = "\x03\x65\x3a", + [0x37f7] = "\x02\x44\x27", [0x37f8] = "\x02\x44\x28", + [0x37f9] = "\x02\x44\x26", [0x37fa] = "\x03\x42\x28", + [0x37fb] = "\x02\x44\x24", [0x37fc] = "\x02\x44\x25", + [0x37fd] = "\x01\x64\x5d", [0x37fe] = "\x02\x4b\x33", + [0x37ff] = "\x02\x51\x40", [0x3800] = "\x02\x51\x3f", + [0x3801] = "\x02\x51\x3e", [0x3802] = "\x02\x51\x41", + [0x3803] = "\x02\x57\x72", [0x3804] = "\x02\x57\x71", + [0x3805] = "\x01\x71\x26", [0x3806] = "\x02\x57\x73", + [0x3808] = "\x01\x74\x21", [0x3809] = "\x02\x5d\x39", + [0x380a] = "\x03\x55\x2d", [0x380b] = "\x02\x61\x76", + [0x380c] = "\x02\x65\x66", [0x380d] = "\x02\x6d\x55", + [0x380f] = "\x01\x45\x54", [0x3810] = "\x01\x46\x62", + [0x3811] = "\x01\x46\x61", [0x3812] = "\x04\x23\x21", + [0x3813] = "\x01\x4e\x40", [0x3814] = "\x02\x21\x41", + [0x3815] = "\x02\x21\x5f", [0x3816] = "\x01\x48\x3c", + [0x3818] = "\x02\x22\x58", [0x3819] = "\x02\x24\x49", + [0x381a] = "\x02\x24\x4a", [0x381b] = "\x01\x4e\x41", + [0x381c] = "\x03\x29\x5d", [0x381d] = "\x02\x27\x4e", + [0x381e] = "\x03\x65\x3b", [0x381f] = "\x01\x51\x77", + [0x3820] = "\x02\x2b\x4d", [0x3821] = "\x02\x2b\x4e", + [0x3823] = "\x01\x56\x34", [0x3824] = "\x01\x56\x38", + [0x3825] = "\x02\x30\x27", [0x3826] = "\x01\x56\x37", + [0x3827] = "\x01\x56\x35", [0x3828] = "\x01\x56\x36", + [0x382a] = "\x02\x36\x43", [0x382b] = "\x01\x5b\x47", + [0x382c] = "\x01\x60\x2a", [0x382d] = "\x03\x3c\x4e", + [0x382e] = "\x01\x60\x28", [0x382f] = "\x01\x60\x29", + [0x3830] = "\x02\x3d\x2b", [0x3831] = "\x03\x42\x29", + [0x3832] = "\x03\x42\x2a", [0x3833] = "\x01\x69\x3b", + [0x3834] = "\x01\x45\x55", [0x3836] = "\x02\x21\x60", + [0x3837] = "\x03\x22\x57", [0x3838] = "\x01\x46\x63", + [0x3839] = "\x03\x22\x54", [0x383b] = "\x02\x21\x63", + [0x383c] = "\x03\x24\x21", [0x383e] = "\x01\x46\x66", + [0x383f] = "\x02\x21\x62", [0x3840] = "\x01\x46\x65", + [0x3841] = "\x01\x46\x64", [0x3842] = "\x01\x4a\x65", + [0x3843] = "\x02\x21\x61", [0x3844] = "\x03\x22\x58", + [0x3845] = "\x03\x22\x59", [0x3846] = "\x02\x22\x59", + [0x3849] = "\x0f\x21\x66", [0x384a] = "\x02\x22\x5d", + [0x384b] = "\x02\x22\x5f", [0x384c] = "\x02\x22\x60", + [0x384d] = "\x01\x48\x46", [0x384e] = "\x01\x48\x47", + [0x384f] = "\x02\x22\x5c", [0x3850] = "\x01\x48\x42", + [0x3851] = "\x03\x23\x7d", [0x3852] = "\x02\x22\x5a", + [0x3853] = "\x03\x24\x25", [0x3854] = "\x02\x22\x5e", + [0x3855] = "\x01\x48\x43", [0x3856] = "\x03\x26\x55", + [0x3857] = "\x01\x48\x3e", [0x3858] = "\x03\x23\x7c", + [0x3859] = "\x01\x48\x3f", [0x385a] = "\x03\x24\x23", + [0x385b] = "\x01\x48\x45", [0x385c] = "\x02\x22\x5b", + [0x385d] = "\x01\x48\x3d", [0x385e] = "\x01\x4a\x66", + [0x385f] = "\x01\x48\x40", [0x3860] = "\x01\x48\x41", + [0x3861] = "\x01\x48\x44", [0x3862] = "\x0f\x22\x5d", + [0x3863] = "\x03\x65\x3c", [0x3865] = "\x02\x24\x5b", + [0x3866] = "\x02\x24\x59", [0x3867] = "\x02\x24\x4c", + [0x3868] = "\x01\x4a\x72", [0x3869] = "\x02\x24\x53", + [0x386a] = "\x01\x4a\x6d", [0x386b] = "\x02\x24\x4d", + [0x386c] = "\x03\x29\x64", [0x386d] = "\x02\x24\x55", + [0x386e] = "\x03\x26\x50", [0x386f] = "\x02\x24\x52", + [0x3870] = "\x01\x4a\x70", [0x3871] = "\x02\x24\x51", + [0x3872] = "\x01\x4a\x77", [0x3873] = "\x02\x24\x5a", + [0x3874] = "\x01\x4a\x79", [0x3875] = "\x03\x26\x53", + [0x3876] = "\x01\x4a\x7b", [0x3877] = "\x03\x23\x7e", + [0x3878] = "\x02\x24\x4b", [0x3879] = "\x03\x26\x57", + [0x387a] = "\x01\x4a\x6e", [0x387b] = "\x02\x24\x5c", + [0x387c] = "\x03\x26\x51", [0x387d] = "\x01\x4a\x75", + [0x387e] = "\x01\x4a\x78", [0x387f] = "\x03\x26\x4c", + [0x3880] = "\x02\x27\x65", [0x3881] = "\x01\x4a\x68", + [0x3882] = "\x01\x4b\x21", [0x3883] = "\x01\x4a\x76", + [0x3884] = "\x02\x24\x4e", [0x3885] = "\x01\x4a\x6b", + [0x3886] = "\x01\x4a\x7a", [0x3887] = "\x02\x24\x56", + [0x3888] = "\x01\x4a\x69", [0x3889] = "\x01\x4a\x6a", + [0x388a] = "\x02\x27\x63", [0x388b] = "\x02\x24\x4f", + [0x388c] = "\x01\x4a\x71", [0x388d] = "\x01\x4a\x7c", + [0x388e] = "\x02\x24\x5d", [0x388f] = "\x02\x24\x50", + [0x3890] = "\x01\x4a\x6f", [0x3891] = "\x03\x26\x4d", + [0x3892] = "\x01\x4a\x74", [0x3893] = "\x02\x27\x4f", + [0x3894] = "\x01\x4a\x7d", [0x3895] = "\x02\x24\x57", + [0x3896] = "\x01\x4a\x73", [0x3897] = "\x03\x29\x63", + [0x3898] = "\x01\x4a\x7e", [0x3899] = "\x01\x4a\x67", + [0x389a] = "\x02\x24\x54", [0x389b] = "\x01\x4a\x6c", + [0x389c] = "\x02\x24\x58", [0x389d] = "\x02\x27\x64", + [0x389e] = "\x03\x26\x4e", [0x389f] = "\x03\x26\x52", + [0x38a0] = "\x03\x26\x5c", [0x38a1] = "\x03\x26\x59", + [0x38a2] = "\x03\x26\x56", [0x38a3] = "\x0f\x24\x68", + [0x38aa] = "\x03\x26\x5b", [0x38ab] = "\x01\x4e\x4d", + [0x38ac] = "\x01\x4e\x5d", [0x38ad] = "\x02\x27\x56", + [0x38ae] = "\x01\x4e\x54", [0x38af] = "\x03\x2d\x4e", + [0x38b0] = "\x02\x27\x6b", [0x38b1] = "\x01\x4e\x45", + [0x38b2] = "\x03\x29\x6b", [0x38b3] = "\x01\x4e\x48", + [0x38b4] = "\x02\x27\x62", [0x38b5] = "\x04\x27\x26", + [0x38b6] = "\x02\x27\x54", [0x38b7] = "\x02\x27\x58", + [0x38b8] = "\x01\x4e\x50", [0x38b9] = "\x01\x4e\x52", + [0x38ba] = "\x02\x27\x5b", [0x38bb] = "\x01\x4e\x59", + [0x38bc] = "\x01\x4e\x4b", [0x38bd] = "\x01\x4e\x49", + [0x38be] = "\x01\x4e\x4a", [0x38bf] = "\x01\x4e\x58", + [0x38c0] = "\x02\x27\x67", [0x38c1] = "\x01\x4e\x53", + [0x38c2] = "\x02\x27\x5a", [0x38c3] = "\x02\x27\x5c", + [0x38c4] = "\x01\x4e\x51", [0x38c5] = "\x01\x4e\x56", + [0x38c6] = "\x02\x27\x5d", [0x38c7] = "\x02\x27\x6a", + [0x38c8] = "\x03\x29\x6d", [0x38c9] = "\x01\x51\x78", + [0x38ca] = "\x01\x4e\x5c", [0x38cb] = "\x04\x26\x7d", + [0x38cc] = "\x01\x4e\x46", [0x38cd] = "\x02\x27\x69", + [0x38ce] = "\x03\x29\x6c", [0x38cf] = "\x02\x27\x6d", + [0x38d0] = "\x02\x27\x59", [0x38d1] = "\x02\x27\x6f", + [0x38d2] = "\x02\x27\x60", [0x38d3] = "\x01\x4e\x4f", + [0x38d4] = "\x02\x27\x55", [0x38d5] = "\x01\x4e\x4e", + [0x38d6] = "\x01\x4e\x60", [0x38d7] = "\x01\x4e\x55", + [0x38d8] = "\x03\x29\x6a", [0x38d9] = "\x02\x27\x53", + [0x38da] = "\x02\x2b\x57", [0x38db] = "\x01\x4e\x5b", + [0x38dc] = "\x01\x4e\x5f", [0x38dd] = "\x02\x27\x61", + [0x38de] = "\x02\x27\x66", [0x38df] = "\x03\x29\x65", + [0x38e0] = "\x01\x4e\x61", [0x38e1] = "\x01\x4e\x5a", + [0x38e2] = "\x01\x4e\x4c", [0x38e3] = "\x01\x4e\x42", + [0x38e4] = "\x03\x29\x69", [0x38e5] = "\x01\x4e\x47", + [0x38e6] = "\x04\x26\x7b", [0x38e7] = "\x02\x27\x57", + [0x38e8] = "\x01\x4e\x43", [0x38e9] = "\x02\x27\x6e", + [0x38ea] = "\x03\x29\x67", [0x38eb] = "\x02\x27\x51", + [0x38ec] = "\x02\x27\x50", [0x38ed] = "\x02\x27\x5e", + [0x38ee] = "\x02\x27\x52", [0x38ef] = "\x01\x4e\x5e", + [0x38f0] = "\x01\x56\x39", [0x38f1] = "\x01\x4e\x57", + [0x38f2] = "\x02\x27\x5f", [0x38f3] = "\x01\x4e\x44", + [0x38f4] = "\x03\x2d\x4f", [0x38f5] = "\x01\x52\x29", + [0x38f9] = "\x02\x27\x6c", [0x38ff] = "\x03\x2d\x46", + [0x3900] = "\x02\x2b\x5e", [0x3901] = "\x02\x2b\x61", + [0x3902] = "\x03\x2d\x50", [0x3903] = "\x02\x2b\x64", + [0x3904] = "\x02\x2b\x59", [0x3905] = "\x03\x2d\x48", + [0x3906] = "\x03\x2d\x4a", [0x3907] = "\x02\x2b\x67", + [0x3908] = "\x02\x2b\x6a", [0x3909] = "\x02\x2b\x6c", + [0x390a] = "\x02\x2b\x56", [0x390b] = "\x01\x51\x79", + [0x390c] = "\x01\x51\x7e", [0x390d] = "\x02\x30\x2c", + [0x390e] = "\x01\x52\x30", [0x390f] = "\x02\x2b\x65", + [0x3910] = "\x02\x2b\x6d", [0x3911] = "\x02\x2b\x5d", + [0x3912] = "\x02\x2b\x55", [0x3913] = "\x03\x2d\x49", + [0x3914] = "\x03\x2d\x47", [0x3915] = "\x03\x2d\x4d", + [0x3916] = "\x02\x30\x47", [0x3917] = "\x01\x52\x23", + [0x3918] = "\x02\x2b\x62", [0x3919] = "\x02\x2b\x5a", + [0x391a] = "\x02\x2b\x5c", [0x391b] = "\x01\x52\x28", + [0x391c] = "\x03\x31\x7a", [0x391d] = "\x02\x2b\x5f", + [0x391e] = "\x01\x52\x22", [0x391f] = "\x02\x2b\x52", + [0x3920] = "\x02\x2b\x68", [0x3921] = "\x03\x2d\x4b", + [0x3922] = "\x02\x2b\x6b", [0x3923] = "\x03\x2d\x45", + [0x3924] = "\x03\x2d\x57", [0x3925] = "\x01\x51\x7d", + [0x3926] = "\x03\x2d\x53", [0x3927] = "\x01\x52\x2b", + [0x3928] = "\x02\x2b\x4f", [0x3929] = "\x01\x52\x2d", + [0x392a] = "\x01\x51\x7b", [0x392b] = "\x01\x52\x31", + [0x392c] = "\x02\x2b\x69", [0x392d] = "\x02\x2b\x51", + [0x392e] = "\x01\x52\x2e", [0x392f] = "\x02\x30\x41", + [0x3930] = "\x02\x27\x68", [0x3931] = "\x01\x52\x21", + [0x3932] = "\x01\x51\x7a", [0x3933] = "\x02\x2b\x58", + [0x3934] = "\x02\x2b\x50", [0x3935] = "\x01\x52\x2f", + [0x3936] = "\x01\x52\x27", [0x3937] = "\x02\x2b\x63", + [0x3938] = "\x01\x52\x2c", [0x3939] = "\x01\x52\x2a", + [0x393a] = "\x02\x2b\x5b", [0x393b] = "\x01\x52\x24", + [0x393c] = "\x02\x2b\x53", [0x393d] = "\x01\x52\x25", + [0x393e] = "\x01\x52\x26", [0x393f] = "\x02\x2b\x54", + [0x3940] = "\x02\x2b\x66", [0x3941] = "\x01\x51\x7c", + [0x3942] = "\x02\x2b\x60", [0x3943] = "\x04\x2a\x21", + [0x3944] = "\x03\x2d\x55", [0x3945] = "\x03\x2d\x51", + [0x3956] = "\x03\x31\x77", [0x3957] = "\x03\x31\x73", + [0x3958] = "\x02\x30\x2f", [0x3959] = "\x01\x56\x41", + [0x395a] = "\x01\x56\x46", [0x395b] = "\x03\x31\x79", + [0x395c] = "\x03\x32\x26", [0x395d] = "\x03\x31\x76", + [0x395e] = "\x02\x30\x38", [0x395f] = "\x02\x30\x3e", + [0x3960] = "\x02\x30\x3a", [0x3961] = "\x02\x30\x2d", + [0x3962] = "\x02\x30\x30", [0x3963] = "\x02\x30\x29", + [0x3964] = "\x02\x30\x2a", [0x3965] = "\x01\x56\x4d", + [0x3966] = "\x01\x56\x3e", [0x3967] = "\x02\x30\x39", + [0x3968] = "\x02\x30\x42", [0x3969] = "\x01\x56\x48", + [0x396a] = "\x01\x56\x3a", [0x396b] = "\x03\x31\x6f", + [0x396c] = "\x01\x56\x43", [0x396d] = "\x02\x30\x31", + [0x396e] = "\x01\x56\x45", [0x396f] = "\x02\x30\x32", + [0x3970] = "\x02\x30\x3c", [0x3971] = "\x03\x32\x22", + [0x3972] = "\x03\x32\x25", [0x3973] = "\x03\x31\x72", + [0x3974] = "\x01\x56\x47", [0x3975] = "\x02\x30\x4b", + [0x3976] = "\x02\x30\x2b", [0x3977] = "\x01\x56\x40", + [0x3978] = "\x01\x56\x3f", [0x3979] = "\x01\x56\x4b", + [0x397a] = "\x02\x30\x28", [0x397b] = "\x02\x30\x49", + [0x397c] = "\x02\x30\x3d", [0x397d] = "\x02\x30\x4a", + [0x397e] = "\x02\x30\x44", [0x397f] = "\x02\x30\x36", + [0x3980] = "\x02\x30\x45", [0x3981] = "\x03\x32\x21", + [0x3982] = "\x02\x30\x3f", [0x3983] = "\x02\x30\x48", + [0x3984] = "\x02\x30\x46", [0x3985] = "\x01\x56\x4c", + [0x3986] = "\x02\x30\x37", [0x3987] = "\x01\x56\x3d", + [0x3988] = "\x01\x56\x3c", [0x3989] = "\x01\x56\x44", + [0x398a] = "\x01\x56\x4a", [0x398b] = "\x02\x30\x43", + [0x398c] = "\x01\x56\x49", [0x398d] = "\x02\x30\x34", + [0x398e] = "\x01\x5b\x48", [0x398f] = "\x03\x31\x78", + [0x3990] = "\x02\x30\x4c", [0x3991] = "\x02\x30\x33", + [0x3992] = "\x02\x30\x2e", [0x3993] = "\x01\x56\x42", + [0x3994] = "\x01\x56\x4e", [0x3995] = "\x01\x56\x3b", + [0x3996] = "\x03\x32\x27", [0x3997] = "\x02\x30\x3b", + [0x3998] = "\x02\x30\x40", [0x3999] = "\x03\x31\x7d", + [0x399a] = "\x03\x31\x7b", [0x399b] = "\x03\x31\x7c", + [0x39a5] = "\x03\x65\x3d", [0x39aa] = "\x01\x5b\x6a", + [0x39ab] = "\x02\x36\x45", [0x39ac] = "\x02\x36\x49", + [0x39ad] = "\x03\x36\x6f", [0x39ae] = "\x01\x5b\x57", + [0x39af] = "\x01\x5b\x55", [0x39b0] = "\x03\x36\x7a", + [0x39b1] = "\x03\x37\x21", [0x39b2] = "\x01\x5b\x4c", + [0x39b3] = "\x02\x36\x47", [0x39b4] = "\x02\x36\x46", + [0x39b5] = "\x01\x5b\x60", [0x39b6] = "\x03\x3c\x50", + [0x39b7] = "\x02\x36\x4c", [0x39b8] = "\x01\x5b\x5a", + [0x39b9] = "\x03\x36\x72", [0x39ba] = "\x02\x36\x5e", + [0x39bb] = "\x02\x36\x6a", [0x39bc] = "\x01\x5b\x49", + [0x39bd] = "\x02\x36\x5b", [0x39be] = "\x02\x36\x54", + [0x39bf] = "\x01\x5b\x6c", [0x39c0] = "\x02\x36\x44", + [0x39c1] = "\x03\x36\x6a", [0x39c2] = "\x02\x36\x60", + [0x39c3] = "\x03\x36\x6b", [0x39c4] = "\x01\x5b\x69", + [0x39c5] = "\x01\x5b\x5d", [0x39c6] = "\x01\x5b\x68", + [0x39c7] = "\x01\x5b\x53", [0x39c8] = "\x02\x36\x50", + [0x39c9] = "\x02\x36\x62", [0x39ca] = "\x02\x36\x5a", + [0x39cb] = "\x01\x5b\x54", [0x39cc] = "\x01\x5b\x4e", + [0x39cd] = "\x02\x36\x68", [0x39ce] = "\x03\x36\x6c", + [0x39cf] = "\x02\x36\x61", [0x39d0] = "\x02\x36\x63", + [0x39d1] = "\x01\x5b\x56", [0x39d2] = "\x01\x5b\x5e", + [0x39d3] = "\x02\x36\x65", [0x39d4] = "\x02\x36\x4e", + [0x39d5] = "\x02\x36\x5f", [0x39d6] = "\x02\x36\x53", + [0x39d7] = "\x02\x36\x67", [0x39d8] = "\x01\x5b\x63", + [0x39d9] = "\x01\x5b\x4b", [0x39da] = "\x01\x5b\x61", + [0x39db] = "\x02\x36\x58", [0x39dc] = "\x02\x36\x56", + [0x39dd] = "\x02\x36\x57", [0x39de] = "\x01\x5b\x58", + [0x39df] = "\x02\x36\x52", [0x39e0] = "\x02\x36\x51", + [0x39e1] = "\x01\x5b\x4d", [0x39e2] = "\x02\x36\x4b", + [0x39e3] = "\x02\x36\x69", [0x39e4] = "\x01\x5b\x4f", + [0x39e5] = "\x02\x36\x55", [0x39e6] = "\x01\x5b\x6d", + [0x39e7] = "\x03\x36\x74", [0x39e8] = "\x01\x5b\x67", + [0x39e9] = "\x02\x36\x4a", [0x39ea] = "\x01\x5b\x64", + [0x39eb] = "\x01\x5b\x62", [0x39ec] = "\x01\x5b\x6b", + [0x39ed] = "\x02\x36\x5c", [0x39ee] = "\x01\x5b\x66", + [0x39ef] = "\x02\x30\x35", [0x39f0] = "\x02\x36\x5d", + [0x39f1] = "\x01\x5b\x65", [0x39f2] = "\x02\x36\x64", + [0x39f3] = "\x01\x5b\x4a", [0x39f4] = "\x02\x36\x59", + [0x39f5] = "\x01\x5b\x5c", [0x39f6] = "\x02\x36\x4d", + [0x39f7] = "\x01\x5b\x5b", [0x39f8] = "\x03\x36\x7c", + [0x39f9] = "\x01\x5b\x59", [0x39fa] = "\x01\x5b\x51", + [0x39fb] = "\x01\x5b\x50", [0x39fc] = "\x02\x3d\x2c", + [0x39fd] = "\x02\x36\x66", [0x39fe] = "\x03\x3c\x5d", + [0x39ff] = "\x03\x37\x28", [0x3a00] = "\x02\x36\x4f", + [0x3a01] = "\x03\x37\x26", [0x3a02] = "\x03\x37\x23", + [0x3a03] = "\x02\x3d\x41", [0x3a04] = "\x03\x36\x70", + [0x3a05] = "\x01\x5b\x52", [0x3a06] = "\x03\x36\x77", + [0x3a07] = "\x03\x37\x24", [0x3a08] = "\x03\x36\x76", + [0x3a09] = "\x03\x37\x25", [0x3a0a] = "\x03\x36\x79", + [0x3a0b] = "\x04\x32\x6d", [0x3a0c] = "\x03\x36\x7d", + [0x3a0f] = "\x03\x65\x3e", [0x3a12] = "\x03\x37\x29", + [0x3a15] = "\x0f\x36\x29", [0x3a17] = "\x03\x37\x27", + [0x3a18] = "\x03\x3c\x54", [0x3a19] = "\x01\x60\x47", + [0x3a1a] = "\x01\x5b\x5f", [0x3a1b] = "\x01\x60\x35", + [0x3a1c] = "\x02\x3d\x3b", [0x3a1d] = "\x01\x60\x43", + [0x3a1e] = "\x03\x3c\x52", [0x3a1f] = "\x02\x3d\x2f", + [0x3a20] = "\x01\x60\x32", [0x3a21] = "\x01\x60\x2e", + [0x3a22] = "\x02\x3d\x4d", [0x3a23] = "\x01\x60\x34", + [0x3a24] = "\x01\x60\x38", [0x3a25] = "\x01\x60\x33", + [0x3a26] = "\x01\x60\x3c", [0x3a27] = "\x02\x3d\x51", + [0x3a28] = "\x02\x3d\x48", [0x3a29] = "\x03\x3c\x6b", + [0x3a2a] = "\x03\x3c\x6d", [0x3a2b] = "\x02\x3d\x36", + [0x3a2c] = "\x01\x60\x41", [0x3a2d] = "\x01\x60\x3b", + [0x3a2e] = "\x02\x3d\x42", [0x3a2f] = "\x01\x60\x2b", + [0x3a30] = "\x02\x3d\x4e", [0x3a31] = "\x02\x3d\x47", + [0x3a32] = "\x01\x60\x2f", [0x3a33] = "\x02\x3d\x3c", + [0x3a34] = "\x01\x60\x3e", [0x3a35] = "\x02\x3d\x59", + [0x3a36] = "\x02\x3d\x5a", [0x3a37] = "\x04\x38\x5b", + [0x3a38] = "\x01\x60\x2c", [0x3a39] = "\x02\x3d\x4c", + [0x3a3a] = "\x01\x60\x40", [0x3a3b] = "\x02\x3d\x40", + [0x3a3c] = "\x02\x3d\x32", [0x3a3d] = "\x02\x3d\x33", + [0x3a3e] = "\x01\x60\x44", [0x3a3f] = "\x02\x3d\x37", + [0x3a40] = "\x02\x3d\x3e", [0x3a41] = "\x02\x3d\x38", + [0x3a42] = "\x03\x3c\x5a", [0x3a43] = "\x01\x60\x42", + [0x3a44] = "\x01\x60\x4a", [0x3a45] = "\x02\x3d\x34", + [0x3a46] = "\x02\x3d\x2d", [0x3a47] = "\x02\x3d\x2e", + [0x3a48] = "\x03\x3c\x56", [0x3a49] = "\x02\x3d\x30", + [0x3a4a] = "\x01\x60\x31", [0x3a4b] = "\x02\x3d\x3d", + [0x3a4c] = "\x03\x3c\x6e", [0x3a4d] = "\x01\x60\x3f", + [0x3a4e] = "\x01\x60\x48", [0x3a4f] = "\x03\x3c\x58", + [0x3a50] = "\x03\x3c\x69", [0x3a51] = "\x02\x3d\x3f", + [0x3a52] = "\x02\x3d\x57", [0x3a53] = "\x02\x3d\x4f", + [0x3a54] = "\x01\x60\x2d", [0x3a55] = "\x02\x3d\x55", + [0x3a56] = "\x01\x60\x39", [0x3a57] = "\x03\x3c\x66", + [0x3a58] = "\x01\x60\x37", [0x3a59] = "\x03\x3c\x64", + [0x3a5a] = "\x02\x3d\x5b", [0x3a5b] = "\x01\x60\x36", + [0x3a5c] = "\x02\x3d\x45", [0x3a5d] = "\x02\x3d\x39", + [0x3a5e] = "\x02\x3d\x43", [0x3a5f] = "\x01\x60\x4d", + [0x3a60] = "\x02\x3d\x49", [0x3a61] = "\x02\x3d\x46", + [0x3a62] = "\x02\x3d\x35", [0x3a63] = "\x01\x60\x49", + [0x3a64] = "\x02\x3d\x53", [0x3a65] = "\x02\x3d\x50", + [0x3a66] = "\x02\x3d\x58", [0x3a67] = "\x01\x60\x30", + [0x3a68] = "\x02\x3d\x44", [0x3a69] = "\x01\x60\x4c", + [0x3a6a] = "\x03\x3c\x5b", [0x3a6b] = "\x02\x3d\x4b", + [0x3a6c] = "\x03\x42\x3a", [0x3a6d] = "\x03\x3c\x60", + [0x3a6e] = "\x01\x60\x3a", [0x3a6f] = "\x01\x60\x3d", + [0x3a70] = "\x03\x3c\x5c", [0x3a71] = "\x02\x3d\x4a", + [0x3a72] = "\x01\x60\x4b", [0x3a73] = "\x02\x3d\x3a", + [0x3a74] = "\x02\x36\x48", [0x3a75] = "\x03\x3c\x51", + [0x3a76] = "\x03\x3c\x6c", [0x3a77] = "\x02\x3d\x54", + [0x3a78] = "\x02\x3d\x52", [0x3a79] = "\x02\x3d\x56", + [0x3a7a] = "\x0f\x3c\x5d", [0x3a7b] = "\x03\x3c\x62", + [0x3a7c] = "\x03\x65\x42", [0x3a7d] = "\x04\x38\x5e", + [0x3a7e] = "\x03\x3c\x63", [0x3a80] = "\x03\x3c\x68", + [0x3a82] = "\x0f\x3c\x47", [0x3a84] = "\x03\x65\x40", + [0x3a86] = "\x04\x38\x5f", [0x3a88] = "\x02\x3d\x31", + [0x3a89] = "\x01\x60\x46", [0x3a8a] = "\x03\x65\x3f", + [0x3a8b] = "\x03\x65\x41", [0x3a8d] = "\x02\x44\x47", + [0x3a8e] = "\x02\x44\x46", [0x3a8f] = "\x02\x44\x2c", + [0x3a90] = "\x01\x64\x63", [0x3a91] = "\x03\x42\x30", + [0x3a92] = "\x02\x44\x45", [0x3a93] = "\x02\x44\x2f", + [0x3a94] = "\x02\x44\x30", [0x3a95] = "\x04\x3e\x3f", + [0x3a96] = "\x01\x64\x6d", [0x3a97] = "\x02\x44\x4e", + [0x3a98] = "\x01\x64\x68", [0x3a99] = "\x02\x44\x44", + [0x3a9a] = "\x03\x42\x33", [0x3a9b] = "\x02\x44\x29", + [0x3a9c] = "\x01\x64\x6e", [0x3a9d] = "\x01\x64\x64", + [0x3a9e] = "\x02\x44\x38", [0x3a9f] = "\x02\x44\x2e", + [0x3aa0] = "\x02\x44\x31", [0x3aa1] = "\x02\x44\x49", + [0x3aa2] = "\x01\x64\x5e", [0x3aa3] = "\x02\x44\x50", + [0x3aa4] = "\x02\x44\x48", [0x3aa5] = "\x01\x64\x67", + [0x3aa6] = "\x02\x44\x3d", [0x3aa7] = "\x01\x64\x72", + [0x3aa8] = "\x03\x42\x2e", [0x3aa9] = "\x03\x42\x36", + [0x3aaa] = "\x01\x64\x71", [0x3aab] = "\x01\x64\x6b", + [0x3aac] = "\x03\x42\x40", [0x3aad] = "\x04\x3e\x36", + [0x3aae] = "\x02\x44\x4f", [0x3aaf] = "\x01\x64\x5f", + [0x3ab0] = "\x02\x44\x3b", [0x3ab1] = "\x02\x44\x32", + [0x3ab2] = "\x02\x44\x3f", [0x3ab3] = "\x02\x44\x4b", + [0x3ab4] = "\x01\x64\x73", [0x3ab5] = "\x03\x42\x39", + [0x3ab6] = "\x01\x64\x61", [0x3ab7] = "\x02\x44\x3a", + [0x3ab8] = "\x03\x42\x2d", [0x3ab9] = "\x02\x44\x33", + [0x3aba] = "\x01\x64\x6a", [0x3abb] = "\x03\x42\x31", + [0x3abc] = "\x01\x64\x69", [0x3abd] = "\x02\x44\x36", + [0x3abe] = "\x02\x44\x40", [0x3abf] = "\x02\x44\x4a", + [0x3ac0] = "\x02\x44\x2d", [0x3ac1] = "\x02\x44\x37", + [0x3ac2] = "\x01\x64\x62", [0x3ac3] = "\x02\x44\x41", + [0x3ac4] = "\x01\x64\x6f", [0x3ac5] = "\x01\x64\x66", + [0x3ac6] = "\x02\x44\x34", [0x3ac7] = "\x01\x64\x65", + [0x3ac8] = "\x02\x44\x2b", [0x3ac9] = "\x02\x44\x39", + [0x3aca] = "\x02\x44\x4d", [0x3acb] = "\x01\x60\x45", + [0x3acc] = "\x01\x69\x57", [0x3acd] = "\x02\x44\x3c", + [0x3ace] = "\x02\x4b\x34", [0x3acf] = "\x02\x44\x3e", + [0x3ad0] = "\x02\x44\x4c", [0x3ad1] = "\x01\x64\x6c", + [0x3ad2] = "\x02\x44\x35", [0x3ad3] = "\x01\x64\x60", + [0x3ad4] = "\x01\x64\x70", [0x3ad5] = "\x01\x6d\x5a", + [0x3ad6] = "\x02\x44\x2a", [0x3ad7] = "\x06\x54\x4e", + [0x3ad8] = "\x02\x44\x43", [0x3ad9] = "\x03\x42\x44", + [0x3ada] = "\x03\x42\x3e", [0x3adb] = "\x03\x42\x47", + [0x3adc] = "\x02\x44\x42", [0x3add] = "\x03\x42\x3d", + [0x3ae3] = "\x03\x42\x45", [0x3ae6] = "\x03\x42\x3f", + [0x3ae8] = "\x03\x42\x3b", [0x3ae9] = "\x03\x42\x46", + [0x3aeb] = "\x02\x4b\x50", [0x3aec] = "\x01\x69\x54", + [0x3aed] = "\x02\x4b\x45", [0x3aee] = "\x02\x4b\x4a", + [0x3aef] = "\x01\x69\x49", [0x3af0] = "\x03\x47\x56", + [0x3af1] = "\x02\x4b\x36", [0x3af2] = "\x01\x69\x56", + [0x3af3] = "\x03\x47\x57", [0x3af4] = "\x01\x69\x40", + [0x3af5] = "\x02\x4b\x35", [0x3af6] = "\x02\x4b\x56", + [0x3af7] = "\x01\x69\x58", [0x3af8] = "\x02\x4b\x39", + [0x3af9] = "\x02\x4b\x49", [0x3afa] = "\x03\x47\x65", + [0x3afb] = "\x02\x4b\x3b", [0x3afc] = "\x02\x4b\x59", + [0x3afd] = "\x02\x4b\x55", [0x3afe] = "\x01\x69\x3e", + [0x3aff] = "\x01\x69\x48", [0x3b00] = "\x02\x51\x5b", + [0x3b01] = "\x01\x69\x55", [0x3b02] = "\x01\x69\x46", + [0x3b03] = "\x02\x4b\x37", [0x3b04] = "\x03\x47\x63", + [0x3b05] = "\x02\x4b\x54", [0x3b06] = "\x01\x69\x4a", + [0x3b07] = "\x02\x4b\x51", [0x3b08] = "\x02\x4b\x5e", + [0x3b09] = "\x02\x4b\x3d", [0x3b0a] = "\x02\x4b\x46", + [0x3b0b] = "\x03\x4c\x78", [0x3b0c] = "\x03\x47\x5b", + [0x3b0d] = "\x02\x4b\x5c", [0x3b0e] = "\x02\x4b\x52", + [0x3b0f] = "\x01\x69\x45", [0x3b10] = "\x03\x4c\x6a", + [0x3b11] = "\x03\x47\x64", [0x3b12] = "\x02\x4b\x44", + [0x3b13] = "\x01\x69\x3f", [0x3b14] = "\x01\x69\x3d", + [0x3b15] = "\x01\x69\x4f", [0x3b16] = "\x04\x44\x43", + [0x3b17] = "\x03\x47\x5f", [0x3b18] = "\x02\x4b\x42", + [0x3b19] = "\x02\x4b\x3f", [0x3b1a] = "\x02\x4b\x40", + [0x3b1b] = "\x03\x47\x5a", [0x3b1c] = "\x02\x4b\x58", + [0x3b1d] = "\x03\x47\x5c", [0x3b1e] = "\x02\x4b\x5d", + [0x3b1f] = "\x02\x4b\x5b", [0x3b20] = "\x01\x69\x43", + [0x3b21] = "\x02\x4b\x5f", [0x3b22] = "\x01\x69\x47", + [0x3b23] = "\x01\x69\x4e", [0x3b24] = "\x04\x44\x44", + [0x3b25] = "\x02\x4b\x38", [0x3b26] = "\x02\x51\x43", + [0x3b27] = "\x02\x4b\x41", [0x3b28] = "\x03\x47\x5e", + [0x3b29] = "\x01\x69\x41", [0x3b2a] = "\x01\x69\x53", + [0x3b2b] = "\x01\x69\x50", [0x3b2c] = "\x01\x69\x44", + [0x3b2d] = "\x02\x4b\x4b", [0x3b2e] = "\x02\x4b\x3c", + [0x3b2f] = "\x01\x69\x51", [0x3b30] = "\x02\x4b\x4d", + [0x3b31] = "\x01\x69\x4b", [0x3b32] = "\x01\x69\x4d", + [0x3b33] = "\x01\x69\x3c", [0x3b34] = "\x03\x47\x5d", + [0x3b35] = "\x02\x4b\x4f", [0x3b36] = "\x02\x4b\x47", + [0x3b37] = "\x02\x4b\x3a", [0x3b38] = "\x01\x69\x4c", + [0x3b39] = "\x02\x4b\x57", [0x3b3a] = "\x02\x4b\x5a", + [0x3b3b] = "\x02\x4b\x43", [0x3b3c] = "\x02\x4b\x4e", + [0x3b3d] = "\x03\x4c\x74", [0x3b3e] = "\x01\x69\x42", + [0x3b3f] = "\x01\x6d\x49", [0x3b40] = "\x02\x4b\x4c", + [0x3b41] = "\x02\x51\x42", [0x3b42] = "\x03\x47\x62", + [0x3b43] = "\x02\x4b\x53", [0x3b44] = "\x03\x47\x61", + [0x3b45] = "\x04\x44\x52", [0x3b46] = "\x0f\x4f\x79", + [0x3b48] = "\x03\x65\x44", [0x3b49] = "\x03\x65\x45", + [0x3b4a] = "\x03\x47\x66", [0x3b4c] = "\x03\x65\x43", + [0x3b4e] = "\x02\x4b\x3e", [0x3b4f] = "\x02\x51\x4c", + [0x3b50] = "\x02\x51\x56", [0x3b51] = "\x01\x6d\x4c", + [0x3b52] = "\x02\x51\x55", [0x3b53] = "\x02\x51\x61", + [0x3b54] = "\x01\x6d\x4e", [0x3b55] = "\x02\x51\x53", + [0x3b56] = "\x04\x4a\x58", [0x3b57] = "\x02\x51\x57", + [0x3b58] = "\x01\x6d\x59", [0x3b59] = "\x03\x4c\x7d", + [0x3b5a] = "\x02\x51\x4e", [0x3b5b] = "\x01\x6d\x51", + [0x3b5c] = "\x03\x4c\x73", [0x3b5d] = "\x02\x51\x5a", + [0x3b5e] = "\x02\x57\x7b", [0x3b5f] = "\x01\x6d\x5d", + [0x3b60] = "\x01\x6d\x5c", [0x3b61] = "\x02\x51\x5c", + [0x3b62] = "\x02\x51\x4b", [0x3b63] = "\x02\x51\x66", + [0x3b64] = "\x01\x6d\x57", [0x3b65] = "\x03\x4c\x6b", + [0x3b66] = "\x01\x6d\x4d", [0x3b67] = "\x02\x51\x5f", + [0x3b68] = "\x04\x4a\x69", [0x3b69] = "\x02\x51\x63", + [0x3b6a] = "\x02\x51\x68", [0x3b6b] = "\x02\x51\x5d", + [0x3b6c] = "\x02\x51\x51", [0x3b6d] = "\x01\x6d\x50", + [0x3b6e] = "\x01\x6d\x53", [0x3b6f] = "\x01\x6d\x5b", + [0x3b70] = "\x01\x6d\x56", [0x3b71] = "\x03\x4c\x75", + [0x3b72] = "\x02\x51\x54", [0x3b73] = "\x02\x4b\x48", + [0x3b74] = "\x03\x4c\x7e", [0x3b75] = "\x03\x4c\x6c", + [0x3b76] = "\x02\x51\x50", [0x3b77] = "\x02\x51\x67", + [0x3b78] = "\x01\x6d\x52", [0x3b79] = "\x03\x4c\x79", + [0x3b7a] = "\x01\x6d\x55", [0x3b7b] = "\x02\x51\x69", + [0x3b7c] = "\x01\x6d\x4a", [0x3b7d] = "\x02\x51\x5e", + [0x3b7e] = "\x02\x51\x44", [0x3b7f] = "\x02\x51\x64", + [0x3b80] = "\x01\x74\x2a", [0x3b81] = "\x03\x4c\x7a", + [0x3b82] = "\x02\x51\x52", [0x3b83] = "\x04\x50\x75", + [0x3b84] = "\x01\x6d\x4b", [0x3b85] = "\x02\x51\x4d", + [0x3b86] = "\x01\x6d\x4f", [0x3b87] = "\x02\x51\x45", + [0x3b88] = "\x01\x69\x52", [0x3b89] = "\x02\x51\x49", + [0x3b8a] = "\x04\x4a\x57", [0x3b8b] = "\x02\x51\x62", + [0x3b8c] = "\x02\x51\x4a", [0x3b8d] = "\x02\x51\x48", + [0x3b8e] = "\x01\x6d\x54", [0x3b8f] = "\x03\x4c\x7b", + [0x3b90] = "\x02\x51\x60", [0x3b91] = "\x03\x4c\x77", + [0x3b92] = "\x02\x51\x47", [0x3b93] = "\x02\x51\x59", + [0x3b94] = "\x02\x51\x58", [0x3b95] = "\x02\x51\x65", + [0x3b96] = "\x02\x51\x4f", [0x3b97] = "\x01\x6d\x58", + [0x3b98] = "\x04\x4a\x64", [0x3b99] = "\x03\x65\x47", + [0x3b9a] = "\x0f\x4f\x7d", [0x3b9d] = "\x03\x65\x46", + [0x3b9e] = "\x02\x57\x7e", [0x3b9f] = "\x03\x51\x56", + [0x3ba0] = "\x01\x71\x33", [0x3ba1] = "\x01\x71\x29", + [0x3ba2] = "\x02\x58\x2c", [0x3ba3] = "\x02\x57\x76", + [0x3ba4] = "\x01\x71\x2b", [0x3ba5] = "\x02\x58\x24", + [0x3ba6] = "\x01\x71\x32", [0x3ba7] = "\x01\x71\x2d", + [0x3ba8] = "\x02\x58\x22", [0x3ba9] = "\x02\x5d\x3b", + [0x3baa] = "\x02\x58\x28", [0x3bab] = "\x02\x58\x2e", + [0x3bac] = "\x02\x58\x27", [0x3bad] = "\x02\x57\x74", + [0x3bae] = "\x02\x58\x25", [0x3baf] = "\x02\x58\x30", + [0x3bb0] = "\x02\x58\x32", [0x3bb1] = "\x01\x71\x28", + [0x3bb2] = "\x02\x58\x31", [0x3bb3] = "\x01\x71\x2e", + [0x3bb4] = "\x01\x71\x34", [0x3bb5] = "\x03\x51\x54", + [0x3bb6] = "\x01\x71\x31", [0x3bb7] = "\x03\x51\x58", + [0x3bb8] = "\x02\x58\x2b", [0x3bb9] = "\x01\x71\x30", + [0x3bba] = "\x02\x58\x26", [0x3bbb] = "\x03\x51\x4d", + [0x3bbc] = "\x02\x57\x78", [0x3bbd] = "\x02\x57\x7d", + [0x3bbe] = "\x03\x51\x50", [0x3bbf] = "\x02\x58\x2a", + [0x3bc0] = "\x01\x71\x2f", [0x3bc1] = "\x01\x71\x2c", + [0x3bc2] = "\x01\x71\x27", [0x3bc3] = "\x01\x71\x2a", + [0x3bc4] = "\x02\x57\x7c", [0x3bc5] = "\x04\x51\x22", + [0x3bc6] = "\x02\x51\x46", [0x3bc7] = "\x02\x57\x77", + [0x3bc8] = "\x02\x57\x7a", [0x3bc9] = "\x02\x58\x2d", + [0x3bca] = "\x02\x58\x21", [0x3bcb] = "\x02\x57\x75", + [0x3bcc] = "\x02\x5d\x3a", [0x3bcd] = "\x02\x58\x2f", + [0x3bce] = "\x02\x57\x79", [0x3bcf] = "\x02\x58\x29", + [0x3bd0] = "\x03\x4c\x71", [0x3bd3] = "\x03\x51\x55", + [0x3bd4] = "\x02\x5d\x3d", [0x3bd5] = "\x01\x74\x2e", + [0x3bd6] = "\x03\x55\x30", [0x3bd7] = "\x03\x55\x2f", + [0x3bd8] = "\x01\x74\x22", [0x3bd9] = "\x03\x55\x35", + [0x3bda] = "\x03\x55\x36", [0x3bdb] = "\x01\x74\x26", + [0x3bdc] = "\x02\x5d\x3f", [0x3bdd] = "\x02\x5d\x45", + [0x3bde] = "\x02\x5d\x43", [0x3bdf] = "\x01\x74\x24", + [0x3be0] = "\x01\x74\x25", [0x3be1] = "\x01\x74\x2c", + [0x3be2] = "\x02\x5d\x46", [0x3be3] = "\x02\x5d\x3e", + [0x3be4] = "\x01\x74\x27", [0x3be5] = "\x03\x55\x31", + [0x3be6] = "\x02\x5d\x42", [0x3be7] = "\x02\x5d\x41", + [0x3be8] = "\x02\x5d\x47", [0x3be9] = "\x01\x74\x2d", + [0x3bea] = "\x03\x55\x37", [0x3beb] = "\x01\x74\x28", + [0x3bec] = "\x01\x74\x2b", [0x3bed] = "\x02\x5d\x40", + [0x3bee] = "\x01\x74\x2f", [0x3bef] = "\x01\x74\x29", + [0x3bf0] = "\x01\x74\x30", [0x3bf1] = "\x01\x74\x23", + [0x3bf2] = "\x02\x5d\x44", [0x3bf3] = "\x03\x5a\x55", + [0x3bf4] = "\x02\x5d\x3c", [0x3bf5] = "\x03\x51\x59", + [0x3bf6] = "\x03\x55\x39", [0x3bf7] = "\x02\x62\x25", + [0x3bf8] = "\x03\x65\x48", [0x3bfa] = "\x01\x76\x5d", + [0x3bfb] = "\x02\x62\x22", [0x3bfc] = "\x02\x62\x24", + [0x3bfd] = "\x03\x58\x28", [0x3bfe] = "\x01\x76\x5b", + [0x3bff] = "\x02\x61\x7e", [0x3c00] = "\x02\x62\x21", + [0x3c01] = "\x02\x61\x7a", [0x3c02] = "\x03\x58\x2a", + [0x3c03] = "\x03\x58\x27", [0x3c04] = "\x02\x58\x23", + [0x3c05] = "\x02\x61\x7b", [0x3c06] = "\x01\x76\x5c", + [0x3c07] = "\x02\x61\x77", [0x3c08] = "\x03\x58\x26", + [0x3c09] = "\x01\x76\x59", [0x3c0a] = "\x02\x62\x26", + [0x3c0b] = "\x01\x76\x5a", [0x3c0c] = "\x02\x61\x78", + [0x3c0d] = "\x02\x61\x79", [0x3c0e] = "\x02\x61\x7d", + [0x3c0f] = "\x01\x76\x5f", [0x3c10] = "\x03\x58\x29", + [0x3c11] = "\x01\x76\x5e", [0x3c12] = "\x04\x5b\x5e", + [0x3c13] = "\x03\x58\x2b", [0x3c14] = "\x02\x61\x7c", + [0x3c15] = "\x01\x78\x45", [0x3c16] = "\x02\x65\x6a", + [0x3c17] = "\x02\x65\x70", [0x3c18] = "\x01\x78\x46", + [0x3c19] = "\x02\x65\x67", [0x3c1a] = "\x01\x78\x43", + [0x3c1b] = "\x01\x78\x40", [0x3c1c] = "\x02\x65\x72", + [0x3c1d] = "\x01\x78\x44", [0x3c1e] = "\x03\x5a\x52", + [0x3c1f] = "\x01\x78\x41", [0x3c20] = "\x02\x65\x69", + [0x3c21] = "\x02\x65\x6c", [0x3c22] = "\x02\x65\x6d", + [0x3c23] = "\x02\x65\x6e", [0x3c24] = "\x02\x65\x71", + [0x3c25] = "\x03\x5a\x54", [0x3c26] = "\x02\x62\x23", + [0x3c27] = "\x02\x65\x68", [0x3c28] = "\x01\x78\x42", + [0x3c29] = "\x02\x65\x6f", [0x3c2a] = "\x02\x69\x34", + [0x3c2b] = "\x02\x65\x6b", [0x3c2c] = "\x03\x5a\x53", + [0x3c2d] = "\x03\x65\x4a", [0x3c2e] = "\x03\x65\x49", + [0x3c2f] = "\x02\x69\x2b", [0x3c30] = "\x01\x79\x75", + [0x3c31] = "\x02\x69\x2e", [0x3c32] = "\x01\x79\x76", + [0x3c33] = "\x02\x69\x37", [0x3c34] = "\x02\x69\x2d", + [0x3c35] = "\x02\x69\x2a", [0x3c36] = "\x03\x5c\x51", + [0x3c37] = "\x02\x69\x2c", [0x3c38] = "\x02\x69\x30", + [0x3c39] = "\x02\x69\x33", [0x3c3a] = "\x02\x69\x32", + [0x3c3b] = "\x02\x69\x36", [0x3c3c] = "\x02\x69\x29", + [0x3c3d] = "\x03\x5c\x4f", [0x3c3e] = "\x01\x79\x74", + [0x3c3f] = "\x02\x69\x31", [0x3c40] = "\x02\x69\x35", + [0x3c41] = "\x02\x69\x38", [0x3c42] = "\x02\x69\x2f", + [0x3c43] = "\x02\x6b\x61", [0x3c44] = "\x02\x6b\x62", + [0x3c45] = "\x02\x6b\x66", [0x3c46] = "\x02\x6b\x67", + [0x3c47] = "\x03\x5e\x3c", [0x3c48] = "\x02\x6b\x64", + [0x3c49] = "\x02\x6b\x65", [0x3c4a] = "\x02\x6b\x63", + [0x3c4b] = "\x03\x5e\x3a", [0x3c4c] = "\x01\x7a\x74", + [0x3c4d] = "\x03\x5e\x3b", [0x3c51] = "\x01\x7b\x64", + [0x3c52] = "\x02\x6d\x59", [0x3c53] = "\x03\x60\x36", + [0x3c54] = "\x03\x5f\x52", [0x3c55] = "\x02\x6d\x56", + [0x3c56] = "\x02\x6d\x57", [0x3c57] = "\x02\x6d\x58", + [0x3c58] = "\x01\x7b\x65", [0x3c59] = "\x03\x60\x37", + [0x3c5a] = "\x02\x6f\x34", [0x3c5b] = "\x02\x6f\x33", + [0x3c5c] = "\x03\x65\x4b", [0x3c5d] = "\x02\x70\x3d", + [0x3c5e] = "\x01\x7c\x60", [0x3c5f] = "\x02\x70\x3b", + [0x3c60] = "\x02\x70\x3e", [0x3c61] = "\x02\x70\x3c", + [0x3c62] = "\x02\x71\x25", [0x3c63] = "\x01\x7d\x24", + [0x3c64] = "\x01\x7d\x32", [0x3c65] = "\x02\x71\x71", + [0x3c66] = "\x02\x71\x5b", [0x3c67] = "\x03\x61\x79", + [0x3c68] = "\x02\x71\x70", [0x3c69] = "\x02\x72\x3e", + [0x3c6a] = "\x02\x72\x3f", [0x3c6b] = "\x01\x45\x56", + [0x3c6c] = "\x04\x21\x50", [0x3c6e] = "\x03\x24\x28", + [0x3c6f] = "\x03\x24\x26", [0x3c70] = "\x01\x48\x48", + [0x3c71] = "\x02\x22\x61", [0x3c72] = "\x03\x24\x27", + [0x3c73] = "\x03\x24\x2b", [0x3c74] = "\x02\x24\x5e", + [0x3c75] = "\x03\x26\x62", [0x3c76] = "\x01\x4b\x22", + [0x3c77] = "\x03\x26\x5f", [0x3c78] = "\x01\x4b\x25", + [0x3c79] = "\x03\x26\x5e", [0x3c7a] = "\x02\x24\x5f", + [0x3c7b] = "\x03\x26\x63", [0x3c7c] = "\x01\x4b\x23", + [0x3c7d] = "\x01\x4b\x24", [0x3c7e] = "\x03\x26\x60", + [0x3c7f] = "\x0f\x24\x71", [0x3c81] = "\x03\x29\x77", + [0x3c82] = "\x02\x27\x78", [0x3c83] = "\x02\x27\x7a", + [0x3c84] = "\x02\x27\x75", [0x3c85] = "\x02\x27\x72", + [0x3c86] = "\x02\x27\x74", [0x3c87] = "\x03\x29\x74", + [0x3c88] = "\x03\x29\x70", [0x3c89] = "\x03\x29\x75", + [0x3c8a] = "\x01\x4e\x65", [0x3c8b] = "\x03\x29\x6f", + [0x3c8c] = "\x03\x29\x79", [0x3c8d] = "\x03\x29\x76", + [0x3c8e] = "\x01\x4e\x63", [0x3c8f] = "\x03\x29\x72", + [0x3c90] = "\x03\x29\x71", [0x3c91] = "\x02\x27\x76", + [0x3c92] = "\x01\x4e\x64", [0x3c93] = "\x02\x27\x73", + [0x3c94] = "\x02\x27\x70", [0x3c95] = "\x01\x4e\x62", + [0x3c96] = "\x02\x27\x77", [0x3c97] = "\x04\x27\x29", + [0x3c98] = "\x02\x27\x71", [0x3c99] = "\x01\x4e\x66", + [0x3c9a] = "\x02\x27\x79", [0x3c9b] = "\x04\x27\x2b", + [0x3c9f] = "\x02\x2b\x6f", [0x3ca0] = "\x03\x2d\x5e", + [0x3ca1] = "\x02\x2b\x73", [0x3ca2] = "\x03\x2d\x5c", + [0x3ca3] = "\x03\x2d\x5a", [0x3ca4] = "\x01\x52\x3a", + [0x3ca5] = "\x03\x2d\x58", [0x3ca6] = "\x04\x2a\x26", + [0x3ca7] = "\x03\x2d\x65", [0x3ca8] = "\x03\x2d\x62", + [0x3ca9] = "\x02\x2b\x76", [0x3caa] = "\x03\x2d\x5f", + [0x3cab] = "\x01\x52\x32", [0x3cac] = "\x01\x52\x35", + [0x3cad] = "\x01\x52\x37", [0x3cae] = "\x01\x52\x39", + [0x3caf] = "\x01\x52\x36", [0x3cb0] = "\x02\x2b\x72", + [0x3cb1] = "\x02\x2b\x71", [0x3cb2] = "\x03\x2d\x64", + [0x3cb3] = "\x01\x52\x34", [0x3cb4] = "\x02\x2b\x74", + [0x3cb5] = "\x02\x2b\x75", [0x3cb6] = "\x03\x2d\x63", + [0x3cb7] = "\x02\x2b\x6e", [0x3cb8] = "\x01\x52\x38", + [0x3cb9] = "\x03\x2d\x68", [0x3cba] = "\x01\x52\x33", + [0x3cbb] = "\x03\x2d\x5d", [0x3cbe] = "\x02\x2b\x70", + [0x3cbf] = "\x03\x65\x4d", [0x3cc0] = "\x04\x2a\x28", + [0x3cc4] = "\x03\x32\x28", [0x3cc5] = "\x02\x30\x5a", + [0x3cc6] = "\x02\x30\x5b", [0x3cc7] = "\x02\x30\x5c", + [0x3cc8] = "\x01\x56\x53", [0x3cc9] = "\x04\x2d\x75", + [0x3cca] = "\x01\x56\x4f", [0x3ccb] = "\x02\x30\x51", + [0x3ccc] = "\x03\x32\x2a", [0x3ccd] = "\x02\x30\x59", + [0x3cce] = "\x02\x30\x5e", [0x3ccf] = "\x01\x56\x54", + [0x3cd0] = "\x03\x32\x2b", [0x3cd1] = "\x02\x30\x4f", + [0x3cd2] = "\x02\x30\x55", [0x3cd3] = "\x02\x30\x4e", + [0x3cd4] = "\x02\x30\x58", [0x3cd5] = "\x03\x32\x31", + [0x3cd6] = "\x03\x32\x2f", [0x3cd7] = "\x02\x30\x54", + [0x3cd8] = "\x01\x56\x50", [0x3cd9] = "\x01\x56\x52", + [0x3cda] = "\x02\x30\x5d", [0x3cdb] = "\x03\x32\x29", + [0x3cdc] = "\x02\x30\x4d", [0x3cdd] = "\x02\x30\x50", + [0x3cde] = "\x02\x30\x56", [0x3cdf] = "\x03\x32\x2d", + [0x3ce0] = "\x02\x30\x57", [0x3ce1] = "\x02\x30\x5f", + [0x3ce2] = "\x02\x30\x53", [0x3ce3] = "\x03\x32\x2c", + [0x3ce4] = "\x01\x56\x51", [0x3ce5] = "\x03\x65\x4f", + [0x3cea] = "\x03\x65\x4e", [0x3cee] = "\x03\x32\x30", + [0x3cef] = "\x01\x5b\x72", [0x3cf0] = "\x02\x36\x71", + [0x3cf1] = "\x03\x37\x30", [0x3cf2] = "\x03\x37\x32", + [0x3cf3] = "\x02\x36\x73", [0x3cf4] = "\x02\x36\x6f", + [0x3cf5] = "\x03\x37\x2f", [0x3cf6] = "\x02\x36\x7b", + [0x3cf7] = "\x02\x36\x6d", [0x3cf8] = "\x02\x36\x7a", + [0x3cf9] = "\x01\x5b\x6e", [0x3cfa] = "\x02\x36\x6b", + [0x3cfb] = "\x02\x3d\x5f", [0x3cfc] = "\x02\x36\x75", + [0x3cfd] = "\x01\x5b\x71", [0x3cfe] = "\x03\x37\x35", + [0x3cff] = "\x02\x36\x76", [0x3d00] = "\x02\x36\x79", + [0x3d01] = "\x03\x37\x2e", [0x3d02] = "\x02\x36\x7d", + [0x3d03] = "\x03\x37\x2c", [0x3d04] = "\x02\x36\x72", + [0x3d05] = "\x04\x32\x72", [0x3d06] = "\x02\x36\x77", + [0x3d07] = "\x03\x37\x2d", [0x3d08] = "\x03\x37\x31", + [0x3d09] = "\x01\x5b\x6f", [0x3d0a] = "\x01\x5b\x70", + [0x3d0b] = "\x02\x36\x7c", [0x3d0c] = "\x02\x36\x70", + [0x3d0d] = "\x02\x36\x6c", [0x3d0e] = "\x02\x36\x7e", + [0x3d0f] = "\x03\x37\x33", [0x3d10] = "\x02\x36\x74", + [0x3d11] = "\x03\x65\x50", [0x3d12] = "\x03\x65\x51", + [0x3d13] = "\x02\x36\x78", [0x3d17] = "\x02\x36\x6e", + [0x3d19] = "\x01\x60\x4e", [0x3d1a] = "\x01\x60\x4f", + [0x3d1b] = "\x02\x3d\x69", [0x3d1c] = "\x01\x60\x55", + [0x3d1d] = "\x03\x3c\x74", [0x3d1e] = "\x02\x3d\x5d", + [0x3d1f] = "\x02\x3d\x66", [0x3d20] = "\x02\x3d\x5c", + [0x3d21] = "\x01\x60\x52", [0x3d22] = "\x02\x3d\x64", + [0x3d23] = "\x02\x3d\x62", [0x3d24] = "\x03\x3c\x7d", + [0x3d25] = "\x02\x3d\x63", [0x3d26] = "\x01\x60\x50", + [0x3d27] = "\x03\x3c\x7c", [0x3d28] = "\x02\x3d\x67", + [0x3d29] = "\x0f\x3c\x7e", [0x3d2a] = "\x03\x3c\x6f", + [0x3d2b] = "\x03\x3c\x7a", [0x3d2c] = "\x03\x3c\x72", + [0x3d2d] = "\x03\x3d\x21", [0x3d2e] = "\x02\x3d\x60", + [0x3d2f] = "\x02\x3d\x5e", [0x3d30] = "\x01\x60\x51", + [0x3d31] = "\x02\x3d\x61", [0x3d32] = "\x02\x3d\x65", + [0x3d33] = "\x03\x3c\x7b", [0x3d34] = "\x03\x3c\x79", + [0x3d35] = "\x03\x3c\x71", [0x3d36] = "\x01\x60\x53", + [0x3d37] = "\x03\x3c\x73", [0x3d38] = "\x03\x3c\x77", + [0x3d39] = "\x03\x65\x53", [0x3d3a] = "\x02\x3d\x68", + [0x3d3b] = "\x03\x65\x54", [0x3d3d] = "\x03\x65\x55", + [0x3d3f] = "\x03\x65\x52", [0x3d41] = "\x02\x44\x56", + [0x3d42] = "\x02\x44\x5d", [0x3d43] = "\x02\x44\x5f", + [0x3d44] = "\x02\x44\x65", [0x3d45] = "\x03\x42\x57", + [0x3d46] = "\x01\x65\x22", [0x3d47] = "\x02\x44\x51", + [0x3d48] = "\x03\x42\x4c", [0x3d49] = "\x01\x64\x78", + [0x3d4a] = "\x03\x42\x4e", [0x3d4b] = "\x02\x44\x60", + [0x3d4c] = "\x01\x64\x7d", [0x3d4d] = "\x02\x44\x66", + [0x3d4e] = "\x01\x64\x74", [0x3d4f] = "\x03\x42\x51", + [0x3d50] = "\x02\x44\x63", [0x3d51] = "\x03\x42\x58", + [0x3d52] = "\x02\x44\x53", [0x3d53] = "\x02\x44\x64", + [0x3d54] = "\x02\x44\x52", [0x3d56] = "\x01\x65\x24", + [0x3d57] = "\x03\x42\x52", [0x3d58] = "\x02\x44\x5e", + [0x3d59] = "\x01\x64\x75", [0x3d5a] = "\x02\x44\x67", + [0x3d5b] = "\x03\x48\x3c", [0x3d5c] = "\x01\x64\x7a", + [0x3d5d] = "\x02\x44\x57", [0x3d5e] = "\x01\x65\x21", + [0x3d5f] = "\x02\x44\x62", [0x3d60] = "\x02\x44\x55", + [0x3d61] = "\x02\x44\x5c", [0x3d62] = "\x02\x44\x58", + [0x3d63] = "\x02\x44\x54", [0x3d64] = "\x01\x64\x77", + [0x3d65] = "\x01\x64\x7e", [0x3d66] = "\x01\x64\x7c", + [0x3d67] = "\x01\x64\x79", [0x3d68] = "\x01\x65\x23", + [0x3d69] = "\x01\x64\x76", [0x3d6a] = "\x02\x44\x5b", + [0x3d6b] = "\x03\x42\x4f", [0x3d6c] = "\x01\x64\x7b", + [0x3d6d] = "\x03\x42\x59", [0x3d6e] = "\x01\x60\x54", + [0x3d6f] = "\x03\x42\x49", [0x3d70] = "\x02\x44\x61", + [0x3d71] = "\x03\x65\x59", [0x3d72] = "\x02\x44\x59", + [0x3d74] = "\x03\x42\x53", [0x3d75] = "\x03\x65\x57", + [0x3d76] = "\x03\x65\x58", [0x3d77] = "\x03\x65\x56", + [0x3d78] = "\x02\x44\x5a", [0x3d79] = "\x04\x44\x57", + [0x3d7a] = "\x04\x44\x5b", [0x3d7b] = "\x02\x4b\x67", + [0x3d7c] = "\x03\x47\x6f", [0x3d7d] = "\x01\x69\x5b", + [0x3d7e] = "\x03\x47\x6e", [0x3d7f] = "\x03\x47\x6c", + [0x3d80] = "\x02\x4b\x63", [0x3d81] = "\x02\x4b\x69", + [0x3d82] = "\x02\x4b\x65", [0x3d83] = "\x03\x47\x70", + [0x3d84] = "\x01\x69\x5d", [0x3d85] = "\x02\x4b\x64", + [0x3d86] = "\x02\x4b\x68", [0x3d87] = "\x02\x4b\x60", + [0x3d88] = "\x03\x47\x72", [0x3d89] = "\x02\x4b\x62", + [0x3d8a] = "\x01\x69\x5c", [0x3d8b] = "\x03\x47\x6a", + [0x3d8c] = "\x03\x47\x6d", [0x3d8d] = "\x03\x47\x6b", + [0x3d8e] = "\x03\x47\x68", [0x3d8f] = "\x02\x4b\x66", + [0x3d90] = "\x02\x4b\x61", [0x3d91] = "\x03\x47\x67", + [0x3d92] = "\x01\x69\x5e", [0x3d93] = "\x03\x65\x5b", + [0x3d94] = "\x01\x69\x59", [0x3d95] = "\x0f\x49\x4b", + [0x3d96] = "\x03\x65\x5a", [0x3d97] = "\x02\x4b\x6a", + [0x3d98] = "\x0f\x49\x5f", [0x3d99] = "\x01\x69\x5a", + [0x3d9a] = "\x02\x51\x6f", [0x3d9b] = "\x02\x51\x6c", + [0x3d9c] = "\x02\x51\x78", [0x3d9d] = "\x02\x51\x72", + [0x3d9e] = "\x02\x51\x74", [0x3d9f] = "\x01\x6d\x5e", + [0x3da0] = "\x02\x51\x6e", [0x3da1] = "\x02\x51\x76", + [0x3da2] = "\x03\x4d\x2a", [0x3da3] = "\x03\x4d\x24", + [0x3da4] = "\x02\x51\x75", [0x3da5] = "\x02\x51\x73", + [0x3da6] = "\x03\x4d\x29", [0x3da7] = "\x02\x51\x79", + [0x3da8] = "\x01\x6d\x61", [0x3da9] = "\x02\x51\x70", + [0x3daa] = "\x02\x51\x77", [0x3dab] = "\x03\x4d\x28", + [0x3dac] = "\x01\x6d\x5f", [0x3dad] = "\x03\x4d\x25", + [0x3dae] = "\x03\x4d\x22", [0x3daf] = "\x02\x51\x6b", + [0x3db0] = "\x02\x51\x6d", [0x3db1] = "\x01\x6d\x60", + [0x3db2] = "\x02\x51\x6a", [0x3db3] = "\x02\x51\x7a", + [0x3db4] = "\x03\x65\x5c", [0x3db5] = "\x02\x51\x71", + [0x3db6] = "\x03\x51\x62", [0x3db7] = "\x03\x51\x5a", + [0x3db8] = "\x02\x58\x36", [0x3db9] = "\x01\x71\x3b", + [0x3dba] = "\x03\x51\x60", [0x3dbb] = "\x03\x51\x5c", + [0x3dbc] = "\x02\x58\x41", [0x3dbd] = "\x02\x58\x3f", + [0x3dbe] = "\x01\x71\x35", [0x3dbf] = "\x02\x58\x35", + [0x3dc0] = "\x02\x58\x38", [0x3dc1] = "\x02\x58\x39", + [0x3dc2] = "\x02\x58\x34", [0x3dc3] = "\x01\x71\x3f", + [0x3dc4] = "\x01\x71\x40", [0x3dc5] = "\x02\x58\x33", + [0x3dc6] = "\x02\x58\x42", [0x3dc7] = "\x02\x58\x3d", + [0x3dc8] = "\x01\x71\x39", [0x3dc9] = "\x01\x71\x36", + [0x3dca] = "\x02\x58\x3c", [0x3dcb] = "\x02\x58\x3a", + [0x3dcc] = "\x03\x51\x63", [0x3dcd] = "\x04\x51\x23", + [0x3dce] = "\x01\x71\x3c", [0x3dcf] = "\x02\x58\x3e", + [0x3dd0] = "\x01\x71\x37", [0x3dd1] = "\x03\x51\x5e", + [0x3dd2] = "\x01\x71\x38", [0x3dd3] = "\x03\x51\x66", + [0x3dd4] = "\x02\x58\x3b", [0x3dd5] = "\x01\x71\x3a", + [0x3dd6] = "\x02\x58\x37", [0x3dd7] = "\x07\x2f\x4f", + [0x3dd8] = "\x02\x58\x40", [0x3dd9] = "\x01\x71\x3d", + [0x3dda] = "\x02\x58\x43", [0x3ddb] = "\x02\x58\x44", + [0x3ddc] = "\x01\x71\x3e", [0x3ddd] = "\x03\x65\x5d", + [0x3dde] = "\x03\x65\x5e", [0x3ddf] = "\x01\x74\x32", + [0x3de0] = "\x01\x74\x39", [0x3de1] = "\x02\x5d\x48", + [0x3de2] = "\x02\x5d\x4e", [0x3de3] = "\x03\x55\x3c", + [0x3de4] = "\x02\x5d\x4c", [0x3de5] = "\x01\x74\x35", + [0x3de6] = "\x01\x74\x34", [0x3de7] = "\x01\x74\x31", + [0x3de8] = "\x02\x5d\x4a", [0x3de9] = "\x03\x55\x3e", + [0x3dea] = "\x03\x55\x43", [0x3deb] = "\x03\x55\x40", + [0x3dec] = "\x01\x74\x37", [0x3ded] = "\x01\x74\x36", + [0x3dee] = "\x01\x74\x33", [0x3def] = "\x03\x55\x41", + [0x3df0] = "\x02\x5d\x4d", [0x3df1] = "\x02\x5d\x49", + [0x3df2] = "\x02\x5d\x4b", [0x3df3] = "\x03\x55\x42", + [0x3df4] = "\x01\x74\x38", [0x3df5] = "\x0f\x5a\x73", + [0x3df8] = "\x01\x76\x63", [0x3df9] = "\x02\x62\x29", + [0x3dfa] = "\x03\x58\x2d", [0x3dfb] = "\x01\x76\x60", + [0x3dfc] = "\x01\x76\x61", [0x3dfd] = "\x02\x62\x2b", + [0x3dfe] = "\x01\x76\x62", [0x3dff] = "\x02\x62\x28", + [0x3e00] = "\x03\x58\x2e", [0x3e01] = "\x02\x62\x27", + [0x3e02] = "\x02\x65\x76", [0x3e03] = "\x02\x62\x2a", + [0x3e04] = "\x03\x5a\x56", [0x3e05] = "\x02\x65\x77", + [0x3e06] = "\x01\x78\x47", [0x3e07] = "\x02\x65\x75", + [0x3e08] = "\x03\x5a\x57", [0x3e09] = "\x04\x5f\x7e", + [0x3e0a] = "\x02\x65\x74", [0x3e0b] = "\x03\x5c\x59", + [0x3e0c] = "\x02\x65\x73", [0x3e0d] = "\x01\x78\x48", + [0x3e0e] = "\x03\x65\x5f", [0x3e0f] = "\x03\x5c\x56", + [0x3e10] = "\x01\x79\x77", [0x3e11] = "\x03\x5c\x58", + [0x3e12] = "\x03\x5c\x55", [0x3e13] = "\x02\x69\x39", + [0x3e14] = "\x02\x69\x3a", [0x3e15] = "\x03\x5a\x58", + [0x3e16] = "\x03\x5c\x53", [0x3e17] = "\x03\x5c\x57", + [0x3e18] = "\x03\x65\x61", [0x3e19] = "\x02\x6b\x6a", + [0x3e1a] = "\x02\x6b\x69", [0x3e1b] = "\x01\x7a\x75", + [0x3e1c] = "\x03\x5f\x53", [0x3e1d] = "\x02\x6b\x68", + [0x3e1e] = "\x02\x6d\x5a", [0x3e1f] = "\x02\x6d\x5b", + [0x3e20] = "\x03\x5f\x54", [0x3e21] = "\x03\x60\x39", + [0x3e22] = "\x02\x6f\x35", [0x3e23] = "\x02\x70\x3f", + [0x3e24] = "\x03\x61\x43", [0x3e25] = "\x03\x61\x42", + [0x3e26] = "\x02\x71\x26", [0x3e27] = "\x02\x72\x2c", + [0x3e28] = "\x01\x7d\x46", [0x3e29] = "\x02\x72\x40", + [0x3e2a] = "\x01\x45\x57", [0x3e2b] = "\x04\x21\x51", + [0x3e2c] = "\x01\x4e\x67", [0x3e2d] = "\x01\x4e\x68", + [0x3e2e] = "\x03\x2d\x69", [0x3e2f] = "\x04\x2a\x2a", + [0x3e30] = "\x01\x52\x3b", [0x3e32] = "\x03\x3d\x22", + [0x3e34] = "\x04\x4a\x6c", [0x3e35] = "\x01\x74\x3a", + [0x3e36] = "\x01\x45\x58", [0x3e38] = "\x01\x4e\x69", + [0x3e39] = "\x01\x56\x55", [0x3e3a] = "\x01\x65\x25", + [0x3e3b] = "\x01\x45\x59", [0x3e3c] = "\x03\x2d\x6b", + [0x3e3d] = "\x01\x5b\x73", [0x3e3e] = "\x01\x69\x5f", + [0x3e3f] = "\x02\x21\x42", [0x3e40] = "\x03\x29\x7c", + [0x3e41] = "\x02\x2b\x77", [0x3e42] = "\x02\x30\x60", + [0x3e43] = "\x04\x3e\x4c", [0x3e44] = "\x02\x4b\x6b", + [0x3e45] = "\x04\x4a\x6d", [0x3e46] = "\x01\x74\x3b", + [0x3e47] = "\x01\x45\x5a", [0x3e48] = "\x01\x4e\x6a", + [0x3e49] = "\x02\x2b\x78", [0x3e4a] = "\x02\x2b\x79", + [0x3e4b] = "\x02\x3d\x6a", [0x3e4c] = "\x01\x60\x56", + [0x3e4e] = "\x03\x42\x5d", [0x3e4f] = "\x02\x44\x68", + [0x3e50] = "\x03\x42\x5c", [0x3e51] = "\x03\x42\x5b", + [0x3e52] = "\x01\x65\x26", [0x3e53] = "\x02\x4b\x6c", + [0x3e54] = "\x04\x44\x5e", [0x3e55] = "\x03\x4d\x2e", + [0x3e56] = "\x01\x6d\x62", [0x3e57] = "\x03\x4d\x2d", + [0x3e58] = "\x01\x78\x49", [0x3e59] = "\x01\x45\x5b", + [0x3e5a] = "\x02\x3d\x6b", [0x3e5b] = "\x01\x45\x5c", + [0x3e5d] = "\x01\x48\x4a", [0x3e5e] = "\x02\x22\x62", + [0x3e5f] = "\x01\x48\x49", [0x3e60] = "\x01\x4b\x28", + [0x3e61] = "\x01\x4b\x27", [0x3e62] = "\x01\x4b\x26", + [0x3e63] = "\x02\x24\x60", [0x3e64] = "\x03\x26\x64", + [0x3e65] = "\x03\x2a\x21", [0x3e66] = "\x03\x2a\x22", + [0x3e67] = "\x01\x4e\x6b", [0x3e68] = "\x03\x2a\x23", + [0x3e69] = "\x01\x4e\x6c", [0x3e6a] = "\x02\x27\x7b", + [0x3e6b] = "\x04\x27\x31", [0x3e6c] = "\x02\x2b\x7a", + [0x3e6d] = "\x03\x2d\x6d", [0x3e6e] = "\x02\x2b\x7d", + [0x3e6f] = "\x01\x52\x3d", [0x3e70] = "\x02\x2b\x7b", + [0x3e71] = "\x04\x2a\x2f", [0x3e72] = "\x01\x52\x3c", + [0x3e73] = "\x02\x2b\x7c", [0x3e74] = "\x01\x52\x3e", + [0x3e76] = "\x02\x30\x63", [0x3e77] = "\x02\x30\x62", + [0x3e78] = "\x02\x30\x61", [0x3e79] = "\x01\x56\x56", + [0x3e7a] = "\x03\x32\x36", [0x3e7b] = "\x02\x37\x22", + [0x3e7c] = "\x02\x37\x23", [0x3e7d] = "\x01\x5b\x74", + [0x3e7e] = "\x02\x37\x21", [0x3e7f] = "\x02\x37\x24", + [0x3e80] = "\x01\x60\x58", [0x3e81] = "\x01\x5b\x75", + [0x3e82] = "\x03\x3d\x24", [0x3e83] = "\x03\x3d\x23", + [0x3e84] = "\x01\x60\x57", [0x3e85] = "\x02\x3d\x6f", + [0x3e86] = "\x02\x3d\x6e", [0x3e87] = "\x03\x3d\x25", + [0x3e88] = "\x02\x3d\x6c", [0x3e89] = "\x02\x3d\x6d", + [0x3e8b] = "\x02\x3d\x70", [0x3e8c] = "\x02\x44\x6a", + [0x3e8d] = "\x02\x44\x69", [0x3e8e] = "\x02\x44\x6d", + [0x3e8f] = "\x04\x3e\x4f", [0x3e90] = "\x02\x44\x6c", + [0x3e91] = "\x02\x44\x6b", [0x3e92] = "\x01\x69\x60", + [0x3e93] = "\x02\x4b\x6f", [0x3e94] = "\x03\x47\x75", + [0x3e95] = "\x02\x4b\x6e", [0x3e96] = "\x01\x69\x61", + [0x3e97] = "\x02\x4b\x6d", [0x3e98] = "\x02\x51\x7b", + [0x3e99] = "\x03\x4d\x2f", [0x3e9a] = "\x02\x51\x7c", + [0x3e9b] = "\x01\x6d\x63", [0x3e9c] = "\x04\x51\x2d", + [0x3e9d] = "\x02\x58\x45", [0x3e9e] = "\x02\x58\x46", + [0x3e9f] = "\x05\x4e\x37", [0x3ea1] = "\x02\x65\x7c", + [0x3ea2] = "\x01\x78\x4a", [0x3ea3] = "\x02\x65\x7b", + [0x3ea4] = "\x02\x65\x7a", [0x3ea5] = "\x02\x65\x78", + [0x3ea6] = "\x02\x65\x79", [0x3ea7] = "\x01\x7a\x76", + [0x3ea8] = "\x02\x69\x3b", [0x3ea9] = "\x02\x6d\x5c", + [0x3eaa] = "\x02\x71\x27", [0x3eab] = "\x03\x61\x7b", + [0x3eac] = "\x01\x45\x5d", [0x3ead] = "\x04\x21\x38", + [0x3eae] = "\x02\x21\x64", [0x3eaf] = "\x01\x46\x67", + [0x3eb0] = "\x02\x21\x65", [0x3eb1] = "\x03\x24\x2c", + [0x3eb2] = "\x03\x24\x2d", [0x3eb3] = "\x04\x23\x27", + [0x3eb4] = "\x02\x22\x63", [0x3eb5] = "\x02\x22\x64", + [0x3eb6] = "\x03\x26\x6b", [0x3eb9] = "\x03\x26\x69", + [0x3eba] = "\x02\x24\x66", [0x3ebb] = "\x03\x26\x66", + [0x3ebc] = "\x03\x26\x67", [0x3ebd] = "\x02\x24\x62", + [0x3ebe] = "\x03\x26\x6a", [0x3ebf] = "\x02\x24\x61", + [0x3ec0] = "\x01\x4e\x6d", [0x3ec1] = "\x02\x24\x65", + [0x3ec2] = "\x01\x4b\x2a", [0x3ec3] = "\x02\x24\x63", + [0x3ec4] = "\x01\x4b\x29", [0x3ec5] = "\x02\x24\x67", + [0x3ec6] = "\x02\x24\x64", [0x3ec7] = "\x03\x26\x68", + [0x3ec9] = "\x02\x28\x21", [0x3eca] = "\x02\x2b\x7e", + [0x3ecb] = "\x02\x27\x7d", [0x3ecc] = "\x02\x28\x26", + [0x3ecd] = "\x03\x2a\x26", [0x3ece] = "\x01\x4e\x6e", + [0x3ecf] = "\x03\x2a\x2a", [0x3ed0] = "\x01\x4e\x71", + [0x3ed1] = "\x02\x28\x27", [0x3ed2] = "\x02\x28\x23", + [0x3ed3] = "\x03\x2a\x27", [0x3ed4] = "\x02\x28\x24", + [0x3ed5] = "\x04\x27\x36", [0x3ed6] = "\x02\x27\x7c", + [0x3ed7] = "\x01\x4e\x70", [0x3ed8] = "\x02\x27\x7e", + [0x3ed9] = "\x01\x4e\x6f", [0x3eda] = "\x02\x28\x25", + [0x3edb] = "\x03\x2a\x28", [0x3edc] = "\x02\x28\x22", + [0x3edd] = "\x06\x2c\x7e", [0x3edf] = "\x02\x2c\x24", + [0x3ee0] = "\x01\x52\x40", [0x3ee1] = "\x01\x52\x41", + [0x3ee2] = "\x03\x2d\x75", [0x3ee3] = "\x02\x2c\x27", + [0x3ee4] = "\x02\x2c\x21", [0x3ee5] = "\x03\x2d\x74", + [0x3ee6] = "\x02\x2c\x26", [0x3ee7] = "\x03\x2d\x70", + [0x3ee8] = "\x02\x2c\x22", [0x3ee9] = "\x01\x52\x3f", + [0x3eea] = "\x02\x2c\x25", [0x3eeb] = "\x02\x2c\x23", + [0x3eec] = "\x03\x2d\x73", [0x3eed] = "\x03\x2d\x71", + [0x3ef3] = "\x02\x30\x69", [0x3ef4] = "\x02\x30\x66", + [0x3ef5] = "\x03\x32\x38", [0x3ef6] = "\x02\x30\x68", + [0x3ef7] = "\x01\x56\x5b", [0x3ef8] = "\x01\x56\x5a", + [0x3ef9] = "\x01\x56\x58", [0x3efa] = "\x02\x30\x65", + [0x3efb] = "\x02\x30\x6a", [0x3efc] = "\x01\x56\x57", + [0x3efd] = "\x01\x56\x59", [0x3efe] = "\x02\x30\x67", + [0x3eff] = "\x02\x37\x2c", [0x3f00] = "\x02\x30\x64", + [0x3f01] = "\x02\x30\x6b", [0x3f02] = "\x03\x32\x39", + [0x3f04] = "\x04\x33\x23", [0x3f05] = "\x04\x33\x2a", + [0x3f06] = "\x03\x3d\x26", [0x3f07] = "\x02\x37\x27", + [0x3f08] = "\x02\x37\x2b", [0x3f09] = "\x05\x33\x54", + [0x3f0a] = "\x02\x37\x2a", [0x3f0b] = "\x02\x3d\x72", + [0x3f0c] = "\x02\x3d\x7d", [0x3f0d] = "\x04\x33\x2d", + [0x3f0e] = "\x03\x37\x3b", [0x3f0f] = "\x02\x37\x2d", + [0x3f10] = "\x03\x37\x3a", [0x3f11] = "\x02\x37\x28", + [0x3f12] = "\x02\x3d\x71", [0x3f13] = "\x01\x5b\x79", + [0x3f14] = "\x04\x33\x22", [0x3f15] = "\x04\x33\x2c", + [0x3f16] = "\x01\x5b\x78", [0x3f17] = "\x02\x37\x26", + [0x3f18] = "\x02\x37\x29", [0x3f19] = "\x01\x5b\x7a", + [0x3f1a] = "\x03\x37\x39", [0x3f1b] = "\x01\x5b\x77", + [0x3f1c] = "\x01\x5b\x76", [0x3f1d] = "\x02\x37\x25", + [0x3f1e] = "\x02\x37\x2e", [0x3f22] = "\x02\x3d\x74", + [0x3f23] = "\x02\x3d\x7b", [0x3f24] = "\x03\x3d\x27", + [0x3f25] = "\x01\x60\x5a", [0x3f26] = "\x02\x3d\x7a", + [0x3f27] = "\x02\x3d\x77", [0x3f28] = "\x03\x3d\x2e", + [0x3f29] = "\x01\x60\x5c", [0x3f2a] = "\x03\x3d\x29", + [0x3f2b] = "\x03\x3d\x2b", [0x3f2c] = "\x03\x3d\x2a", + [0x3f2d] = "\x02\x3d\x79", [0x3f2e] = "\x03\x42\x61", + [0x3f2f] = "\x03\x3d\x2d", [0x3f30] = "\x02\x3d\x73", + [0x3f31] = "\x02\x3d\x75", [0x3f32] = "\x02\x3d\x78", + [0x3f33] = "\x02\x3d\x76", [0x3f34] = "\x01\x60\x5b", + [0x3f35] = "\x02\x3d\x7c", [0x3f36] = "\x01\x60\x59", + [0x3f37] = "\x01\x65\x27", [0x3f38] = "\x03\x3d\x28", + [0x3f3a] = "\x02\x44\x71", [0x3f3b] = "\x02\x44\x70", + [0x3f3c] = "\x02\x44\x6e", [0x3f3d] = "\x06\x54\x7c", + [0x3f3e] = "\x01\x65\x2a", [0x3f3f] = "\x01\x65\x29", + [0x3f40] = "\x02\x44\x72", [0x3f41] = "\x03\x42\x5f", + [0x3f42] = "\x02\x44\x6f", [0x3f43] = "\x02\x4b\x70", + [0x3f44] = "\x01\x69\x62", [0x3f45] = "\x01\x65\x28", + [0x3f46] = "\x03\x42\x62", [0x3f47] = "\x03\x65\x62", + [0x3f48] = "\x03\x65\x63", [0x3f49] = "\x02\x44\x74", + [0x3f4a] = "\x02\x44\x73", [0x3f4b] = "\x03\x4d\x30", + [0x3f4c] = "\x02\x4b\x73", [0x3f4d] = "\x02\x4b\x71", + [0x3f4e] = "\x01\x6d\x64", [0x3f4f] = "\x03\x47\x79", + [0x3f50] = "\x01\x69\x63", [0x3f51] = "\x02\x4b\x72", + [0x3f52] = "\x02\x51\x7e", [0x3f53] = "\x03\x47\x78", + [0x3f54] = "\x03\x47\x7a", [0x3f55] = "\x03\x47\x77", + [0x3f56] = "\x04\x4a\x77", [0x3f57] = "\x01\x6d\x65", + [0x3f58] = "\x02\x51\x7d", [0x3f59] = "\x02\x52\x28", + [0x3f5a] = "\x02\x52\x27", [0x3f5b] = "\x02\x52\x25", + [0x3f5c] = "\x04\x4a\x75", [0x3f5d] = "\x02\x52\x24", + [0x3f5e] = "\x02\x52\x21", [0x3f5f] = "\x02\x52\x22", + [0x3f60] = "\x02\x52\x23", [0x3f61] = "\x02\x52\x26", + [0x3f62] = "\x02\x52\x29", [0x3f65] = "\x02\x58\x4b", + [0x3f66] = "\x02\x58\x48", [0x3f67] = "\x02\x58\x49", + [0x3f68] = "\x01\x71\x41", [0x3f69] = "\x02\x58\x47", + [0x3f6a] = "\x02\x58\x4d", [0x3f6b] = "\x02\x58\x4c", + [0x3f6c] = "\x02\x58\x4a", [0x3f6e] = "\x02\x5d\x50", + [0x3f6f] = "\x02\x5d\x51", [0x3f70] = "\x01\x74\x3c", + [0x3f71] = "\x03\x55\x49", [0x3f72] = "\x01\x74\x3d", + [0x3f73] = "\x02\x5d\x4f", [0x3f74] = "\x04\x56\x6c", + [0x3f75] = "\x01\x76\x65", [0x3f76] = "\x02\x62\x2c", + [0x3f77] = "\x01\x76\x64", [0x3f78] = "\x01\x78\x4b", + [0x3f79] = "\x04\x60\x25", [0x3f7a] = "\x01\x78\x4c", + [0x3f7b] = "\x01\x79\x78", [0x3f7c] = "\x02\x69\x3d", + [0x3f7d] = "\x02\x69\x3c", [0x3f7e] = "\x02\x6b\x6b", + [0x3f7f] = "\x02\x6d\x5d", [0x3f80] = "\x01\x7b\x66", + [0x3f81] = "\x02\x6f\x37", [0x3f82] = "\x02\x6f\x36", + [0x3f83] = "\x02\x6f\x38", [0x3f84] = "\x01\x46\x68", + [0x3f85] = "\x02\x2c\x28", [0x3f86] = "\x01\x56\x5c", + [0x3f87] = "\x01\x5b\x7b", [0x3f88] = "\x02\x37\x2f", + [0x3f89] = "\x01\x46\x69", [0x3f8a] = "\x02\x21\x66", + [0x3f8b] = "\x01\x45\x5e", [0x3f8c] = "\x03\x22\x5a", + [0x3f8d] = "\x03\x21\x6b", [0x3f8e] = "\x02\x22\x65", + [0x3f8f] = "\x03\x24\x2f", [0x3f90] = "\x04\x23\x2a", + [0x3f91] = "\x0f\x22\x66", [0x3f92] = "\x02\x24\x6c", + [0x3f93] = "\x02\x24\x6a", [0x3f94] = "\x02\x24\x6b", + [0x3f95] = "\x02\x24\x68", [0x3f96] = "\x01\x4b\x2b", + [0x3f97] = "\x02\x24\x69", [0x3f98] = "\x03\x26\x6e", + [0x3f9c] = "\x03\x2a\x33", [0x3f9d] = "\x02\x28\x2f", + [0x3f9e] = "\x03\x2a\x2d", [0x3f9f] = "\x01\x4e\x74", + [0x3fa0] = "\x02\x28\x2d", [0x3fa1] = "\x02\x28\x29", + [0x3fa2] = "\x02\x28\x2c", [0x3fa3] = "\x03\x2a\x2c", + [0x3fa4] = "\x02\x28\x28", [0x3fa5] = "\x01\x4e\x76", + [0x3fa6] = "\x02\x28\x2b", [0x3fa7] = "\x03\x2a\x2b", + [0x3fa8] = "\x01\x4e\x73", [0x3fa9] = "\x01\x4e\x72", + [0x3faa] = "\x03\x2a\x32", [0x3fab] = "\x01\x4e\x75", + [0x3fac] = "\x02\x28\x2e", [0x3fad] = "\x02\x28\x2a", + [0x3faf] = "\x03\x2a\x2f", [0x3fb2] = "\x01\x52\x45", + [0x3fb3] = "\x01\x52\x48", [0x3fb4] = "\x02\x2c\x30", + [0x3fb5] = "\x02\x2c\x2f", [0x3fb6] = "\x02\x2c\x2e", + [0x3fb7] = "\x01\x52\x42", [0x3fb8] = "\x02\x2c\x37", + [0x3fb9] = "\x02\x2c\x2d", [0x3fba] = "\x04\x2e\x2a", + [0x3fbb] = "\x01\x52\x44", [0x3fbc] = "\x02\x30\x70", + [0x3fbd] = "\x03\x2d\x78", [0x3fbe] = "\x02\x2c\x34", + [0x3fbf] = "\x02\x2c\x32", [0x3fc0] = "\x01\x52\x47", + [0x3fc1] = "\x03\x2d\x7b", [0x3fc2] = "\x02\x2c\x2a", + [0x3fc3] = "\x02\x2c\x35", [0x3fc4] = "\x03\x2d\x77", + [0x3fc5] = "\x02\x2c\x2c", [0x3fc6] = "\x02\x2c\x36", + [0x3fc7] = "\x02\x2c\x33", [0x3fc8] = "\x02\x2c\x2b", + [0x3fc9] = "\x03\x2d\x7a", [0x3fca] = "\x01\x52\x43", + [0x3fcb] = "\x02\x2c\x38", [0x3fcc] = "\x02\x2c\x29", + [0x3fcd] = "\x01\x52\x46", [0x3fce] = "\x03\x2d\x7e", + [0x3fcf] = "\x03\x2d\x79", [0x3fd0] = "\x03\x2d\x7c", + [0x3fd2] = "\x02\x30\x75", [0x3fd3] = "\x02\x30\x6c", + [0x3fd4] = "\x02\x30\x77", [0x3fd5] = "\x03\x32\x3e", + [0x3fd6] = "\x02\x30\x6f", [0x3fd7] = "\x02\x30\x7a", + [0x3fd8] = "\x02\x30\x7b", [0x3fd9] = "\x02\x30\x6d", + [0x3fda] = "\x02\x30\x79", [0x3fdb] = "\x02\x30\x76", + [0x3fdc] = "\x02\x30\x74", [0x3fdd] = "\x02\x30\x78", + [0x3fde] = "\x01\x56\x62", [0x3fdf] = "\x03\x32\x40", + [0x3fe0] = "\x01\x56\x60", [0x3fe1] = "\x03\x32\x47", + [0x3fe2] = "\x03\x32\x3c", [0x3fe3] = "\x02\x30\x72", + [0x3fe4] = "\x03\x32\x46", [0x3fe5] = "\x02\x30\x6e", + [0x3fe6] = "\x03\x32\x41", [0x3fe7] = "\x02\x30\x71", + [0x3fe8] = "\x02\x30\x7c", [0x3fe9] = "\x02\x30\x73", + [0x3fea] = "\x01\x56\x61", [0x3feb] = "\x02\x2c\x31", + [0x3fec] = "\x03\x32\x3d", [0x3fed] = "\x01\x56\x5d", + [0x3fee] = "\x01\x56\x5f", [0x3fef] = "\x03\x65\x64", + [0x3ff3] = "\x03\x37\x3d", [0x3ff4] = "\x02\x37\x3d", + [0x3ff5] = "\x02\x37\x32", [0x3ff6] = "\x02\x37\x30", + [0x3ff7] = "\x03\x3d\x38", [0x3ff8] = "\x02\x37\x31", + [0x3ff9] = "\x03\x32\x3f", [0x3ffa] = "\x02\x37\x38", + [0x3ffb] = "\x03\x37\x40", [0x3ffc] = "\x02\x37\x39", + [0x3ffd] = "\x02\x37\x35", [0x3ffe] = "\x01\x5c\x22", + [0x3fff] = "\x02\x37\x3a", [0x4000] = "\x02\x37\x37", + [0x4001] = "\x02\x37\x34", [0x4002] = "\x03\x37\x3c", + [0x4003] = "\x01\x5b\x7e", [0x4004] = "\x02\x37\x33", + [0x4005] = "\x01\x5b\x7c", [0x4006] = "\x01\x5c\x21", + [0x4007] = "\x02\x37\x36", [0x4008] = "\x02\x37\x3e", + [0x4009] = "\x01\x56\x5e", [0x400a] = "\x01\x5b\x7d", + [0x400b] = "\x02\x37\x3c", [0x400c] = "\x02\x37\x3b", + [0x400d] = "\x01\x5c\x23", [0x4012] = "\x03\x65\x65", + [0x4013] = "\x0f\x36\x57", [0x4014] = "\x03\x3d\x36", + [0x4015] = "\x03\x3d\x3a", [0x4016] = "\x02\x3e\x24", + [0x4017] = "\x03\x3d\x2f", [0x4018] = "\x03\x3d\x3b", + [0x4019] = "\x03\x3d\x32", [0x401a] = "\x02\x3e\x25", + [0x401b] = "\x01\x60\x66", [0x401c] = "\x03\x3d\x39", + [0x401d] = "\x02\x3e\x2b", [0x401e] = "\x03\x42\x6d", + [0x401f] = "\x03\x3d\x35", [0x4020] = "\x02\x3e\x2d", + [0x4021] = "\x02\x3e\x26", [0x4022] = "\x01\x60\x60", + [0x4023] = "\x02\x3e\x2a", [0x4024] = "\x02\x3e\x29", + [0x4025] = "\x01\x60\x61", [0x4026] = "\x01\x60\x67", + [0x4027] = "\x03\x42\x64", [0x4028] = "\x01\x60\x68", + [0x4029] = "\x02\x3e\x2c", [0x402a] = "\x01\x60\x5e", + [0x402b] = "\x02\x3e\x23", [0x402c] = "\x02\x3e\x21", + [0x402d] = "\x02\x3e\x27", [0x402e] = "\x02\x3d\x7e", + [0x402f] = "\x01\x60\x65", [0x4030] = "\x02\x3e\x22", + [0x4031] = "\x02\x3e\x28", [0x4032] = "\x02\x3e\x2e", + [0x4033] = "\x01\x60\x5f", [0x4034] = "\x01\x60\x64", + [0x4035] = "\x01\x60\x62", [0x4036] = "\x01\x60\x63", + [0x4038] = "\x03\x3d\x33", [0x4039] = "\x03\x3d\x3c", + [0x403a] = "\x01\x60\x5d", [0x403b] = "\x03\x65\x66", + [0x403c] = "\x03\x3d\x37", [0x403d] = "\x03\x42\x68", + [0x403e] = "\x03\x42\x75", [0x403f] = "\x01\x65\x31", + [0x4040] = "\x02\x44\x7b", [0x4041] = "\x01\x65\x30", + [0x4042] = "\x02\x45\x21", [0x4043] = "\x03\x42\x6f", + [0x4044] = "\x02\x44\x75", [0x4045] = "\x03\x42\x74", + [0x4046] = "\x02\x45\x22", [0x4047] = "\x03\x42\x6e", + [0x4048] = "\x03\x42\x66", [0x4049] = "\x03\x42\x71", + [0x404a] = "\x02\x44\x76", [0x404b] = "\x02\x44\x77", + [0x404c] = "\x03\x42\x73", [0x404d] = "\x02\x45\x23", + [0x404e] = "\x02\x44\x7e", [0x404f] = "\x02\x44\x7c", + [0x4050] = "\x02\x44\x7d", [0x4051] = "\x02\x44\x79", + [0x4052] = "\x02\x44\x78", [0x4053] = "\x03\x42\x67", + [0x4054] = "\x02\x45\x24", [0x4055] = "\x01\x65\x2d", + [0x4056] = "\x03\x42\x6b", [0x4057] = "\x02\x44\x7a", + [0x4058] = "\x03\x42\x70", [0x4059] = "\x01\x65\x32", + [0x405a] = "\x01\x65\x2c", [0x405b] = "\x01\x65\x33", + [0x405c] = "\x01\x65\x34", [0x405d] = "\x03\x42\x6a", + [0x405e] = "\x01\x65\x2f", [0x405f] = "\x01\x65\x2e", + [0x4060] = "\x03\x48\x25", [0x4061] = "\x03\x47\x7e", + [0x4062] = "\x02\x4b\x74", [0x4063] = "\x01\x69\x65", + [0x4064] = "\x01\x69\x64", [0x4065] = "\x03\x47\x7c", + [0x4066] = "\x03\x47\x7d", [0x4067] = "\x02\x4b\x79", + [0x4068] = "\x03\x48\x22", [0x4069] = "\x01\x6d\x66", + [0x406a] = "\x01\x69\x66", [0x406b] = "\x03\x48\x21", + [0x406c] = "\x03\x47\x7b", [0x406d] = "\x01\x69\x68", + [0x406e] = "\x02\x4b\x7a", [0x406f] = "\x01\x65\x2b", + [0x4070] = "\x01\x69\x67", [0x4071] = "\x02\x4b\x76", + [0x4072] = "\x02\x4b\x78", [0x4073] = "\x02\x4b\x75", + [0x4074] = "\x03\x48\x27", [0x4075] = "\x02\x4b\x77", + [0x4076] = "\x03\x48\x23", [0x4078] = "\x0f\x49\x76", + [0x4079] = "\x02\x52\x33", [0x407a] = "\x03\x4d\x31", + [0x407b] = "\x03\x4d\x3b", [0x407c] = "\x02\x52\x32", + [0x407d] = "\x02\x52\x2f", [0x407e] = "\x01\x6d\x69", + [0x407f] = "\x02\x58\x4e", [0x4080] = "\x01\x6d\x6a", + [0x4081] = "\x02\x52\x2e", [0x4082] = "\x03\x4d\x39", + [0x4083] = "\x01\x6d\x68", [0x4084] = "\x03\x4d\x36", + [0x4085] = "\x02\x52\x30", [0x4086] = "\x02\x52\x2d", + [0x4087] = "\x02\x52\x2a", [0x4088] = "\x02\x52\x31", + [0x4089] = "\x02\x52\x2b", [0x408a] = "\x02\x52\x2c", + [0x408b] = "\x01\x6d\x67", [0x408c] = "\x03\x4d\x35", + [0x408d] = "\x03\x65\x68", [0x4090] = "\x02\x5d\x55", + [0x4092] = "\x02\x58\x52", [0x4093] = "\x03\x4d\x3a", + [0x4094] = "\x02\x58\x51", [0x4095] = "\x02\x58\x53", + [0x4096] = "\x03\x51\x6a", [0x4097] = "\x02\x5d\x52", + [0x4098] = "\x01\x71\x44", [0x4099] = "\x04\x51\x38", + [0x409a] = "\x02\x58\x4f", [0x409b] = "\x03\x51\x67", + [0x409c] = "\x01\x71\x42", [0x409d] = "\x03\x51\x6c", + [0x409e] = "\x01\x71\x46", [0x409f] = "\x01\x71\x45", + [0x40a0] = "\x02\x58\x50", [0x40a1] = "\x02\x58\x54", + [0x40a2] = "\x03\x51\x6b", [0x40a3] = "\x01\x71\x43", + [0x40a4] = "\x03\x65\x67", [0x40a5] = "\x02\x5d\x59", + [0x40a6] = "\x01\x74\x40", [0x40a7] = "\x01\x76\x66", + [0x40a8] = "\x01\x74\x41", [0x40a9] = "\x01\x74\x3e", + [0x40aa] = "\x02\x5d\x56", [0x40ab] = "\x02\x5d\x54", + [0x40ac] = "\x03\x55\x4f", [0x40ad] = "\x02\x5d\x57", + [0x40ae] = "\x03\x55\x4b", [0x40af] = "\x02\x5d\x5a", + [0x40b0] = "\x01\x74\x3f", [0x40b1] = "\x02\x5d\x58", + [0x40b2] = "\x02\x5d\x53", [0x40b3] = "\x03\x55\x4d", + [0x40b4] = "\x03\x65\x69", [0x40b5] = "\x02\x62\x2f", + [0x40b6] = "\x02\x62\x32", [0x40b7] = "\x02\x66\x21", + [0x40b8] = "\x02\x62\x2d", [0x40b9] = "\x03\x58\x2f", + [0x40ba] = "\x02\x69\x3e", [0x40bb] = "\x02\x62\x33", + [0x40bc] = "\x03\x58\x30", [0x40bd] = "\x01\x78\x4d", + [0x40be] = "\x02\x62\x31", [0x40bf] = "\x01\x76\x67", + [0x40c0] = "\x02\x62\x2e", [0x40c1] = "\x02\x62\x30", + [0x40c2] = "\x02\x62\x34", [0x40c3] = "\x02\x66\x22", + [0x40c4] = "\x03\x5a\x5a", [0x40c5] = "\x02\x65\x7e", + [0x40c6] = "\x04\x60\x27", [0x40c7] = "\x03\x5a\x5c", + [0x40c8] = "\x03\x5a\x5d", [0x40c9] = "\x03\x5a\x5b", + [0x40ca] = "\x01\x78\x4e", [0x40cb] = "\x02\x65\x7d", + [0x40cc] = "\x03\x5c\x5e", [0x40cd] = "\x03\x5c\x5c", + [0x40ce] = "\x03\x5c\x5f", [0x40cf] = "\x01\x79\x79", + [0x40d0] = "\x03\x5c\x5d", [0x40d1] = "\x03\x5c\x60", + [0x40d3] = "\x03\x5e\x3d", [0x40d4] = "\x01\x7a\x78", + [0x40d5] = "\x02\x6d\x5f", [0x40d6] = "\x01\x7a\x77", + [0x40d7] = "\x02\x6d\x61", [0x40d8] = "\x02\x6d\x5e", + [0x40d9] = "\x02\x6d\x60", [0x40da] = "\x01\x7c\x3c", + [0x40db] = "\x02\x70\x40", [0x40dc] = "\x01\x46\x6a", + [0x40dd] = "\x02\x28\x30", [0x40de] = "\x02\x30\x7d", + [0x40df] = "\x02\x30\x7e", [0x40e0] = "\x01\x5c\x24", + [0x40e1] = "\x02\x45\x25", [0x40e2] = "\x01\x71\x47", + [0x40e3] = "\x01\x78\x4f", [0x40e4] = "\x01\x7b\x67", + [0x40e5] = "\x02\x70\x41", [0x40e6] = "\x01\x46\x6b", + [0x40e8] = "\x02\x28\x31", [0x40e9] = "\x01\x23\x22", + [0x40ea] = "\x04\x2a\x3c", [0x40eb] = "\x03\x2e\x22", + [0x40ec] = "\x02\x2c\x39", [0x40ed] = "\x03\x2e\x21", + [0x40ee] = "\x02\x2c\x3a", [0x40ef] = "\x03\x2e\x24", + [0x40f3] = "\x03\x32\x48", [0x40f4] = "\x02\x31\x21", + [0x40f5] = "\x02\x31\x22", [0x40f6] = "\x01\x5c\x25", + [0x40f7] = "\x01\x5c\x26", [0x40f8] = "\x0f\x36\x67", + [0x40f9] = "\x03\x3d\x3d", [0x40fa] = "\x04\x39\x25", + [0x40fb] = "\x02\x3e\x2f", [0x40fd] = "\x02\x45\x28", + [0x40fe] = "\x02\x45\x27", [0x40ff] = "\x02\x45\x26", + [0x4100] = "\x02\x4b\x7b", [0x4101] = "\x03\x42\x77", + [0x4102] = "\x02\x4b\x7c", [0x4103] = "\x02\x4b\x7d", + [0x4104] = "\x01\x69\x69", [0x4106] = "\x03\x48\x28", + [0x4107] = "\x02\x52\x35", [0x4108] = "\x02\x52\x34", + [0x4109] = "\x03\x4d\x3d", [0x410a] = "\x03\x51\x6d", + [0x410b] = "\x02\x58\x55", [0x410c] = "\x01\x71\x48", + [0x410d] = "\x01\x71\x49", [0x410e] = "\x03\x51\x6e", + [0x410f] = "\x02\x5d\x5e", [0x4110] = "\x02\x5d\x5b", + [0x4111] = "\x02\x5d\x5c", [0x4112] = "\x02\x5d\x5d", + [0x4113] = "\x02\x62\x36", [0x4114] = "\x02\x62\x35", + [0x4115] = "\x01\x76\x68", [0x4116] = "\x02\x66\x23", + [0x4117] = "\x02\x6b\x6c", [0x4118] = "\x01\x46\x6c", + [0x411a] = "\x01\x52\x49", [0x411b] = "\x03\x37\x44", + [0x411c] = "\x01\x5c\x27", [0x411d] = "\x02\x45\x29", + [0x411e] = "\x03\x42\x78", [0x411f] = "\x01\x46\x6d", + [0x4120] = "\x04\x2a\x40", [0x4121] = "\x02\x31\x23", + [0x4122] = "\x01\x5c\x28", [0x4123] = "\x03\x37\x45", + [0x4124] = "\x03\x3d\x3e", [0x4125] = "\x01\x60\x69", + [0x4126] = "\x01\x60\x6a", [0x4127] = "\x05\x47\x49", + [0x4128] = "\x01\x46\x6e", [0x4129] = "\x01\x46\x6f", + [0x412a] = "\x02\x22\x66", [0x412b] = "\x01\x4b\x2d", + [0x412c] = "\x01\x4b\x2c", [0x412d] = "\x01\x52\x4a", + [0x412e] = "\x02\x2c\x3b", [0x412f] = "\x02\x3e\x30", + [0x4130] = "\x01\x46\x70", [0x4131] = "\x01\x46\x71", + [0x4132] = "\x01\x46\x72", [0x4133] = "\x01\x46\x73", + [0x4136] = "\x04\x23\x2b", [0x4137] = "\x01\x4b\x2e", + [0x4138] = "\x01\x4b\x2f", [0x4139] = "\x02\x24\x6e", + [0x413a] = "\x02\x24\x6d", [0x413b] = "\x03\x2a\x37", + [0x413d] = "\x01\x4e\x77", [0x413e] = "\x02\x28\x34", + [0x413f] = "\x02\x28\x32", [0x4140] = "\x02\x28\x33", + [0x4141] = "\x03\x2a\x38", [0x4142] = "\x03\x2a\x35", + [0x4143] = "\x04\x27\x40", [0x4144] = "\x03\x2a\x36", + [0x4146] = "\x03\x2e\x27", [0x4147] = "\x02\x2c\x3c", + [0x4148] = "\x02\x2c\x3d", [0x4149] = "\x03\x2e\x25", + [0x414a] = "\x03\x2e\x28", [0x414b] = "\x01\x52\x4e", + [0x414c] = "\x01\x52\x4c", [0x414d] = "\x03\x2e\x2a", + [0x414e] = "\x01\x52\x4d", [0x414f] = "\x01\x52\x4b", + [0x4150] = "\x03\x2e\x26", [0x4151] = "\x0f\x2b\x7a", + [0x4153] = "\x0f\x2c\x4a", [0x4154] = "\x01\x56\x63", + [0x4155] = "\x03\x32\x4e", [0x4156] = "\x03\x32\x4d", + [0x4157] = "\x03\x32\x50", [0x4158] = "\x03\x32\x4f", + [0x4159] = "\x01\x56\x67", [0x415a] = "\x01\x56\x66", + [0x415b] = "\x02\x31\x24", [0x415c] = "\x01\x56\x65", + [0x415d] = "\x01\x56\x64", [0x415e] = "\x03\x32\x51", + [0x415f] = "\x02\x31\x25", [0x4161] = "\x03\x37\x46", + [0x4162] = "\x01\x5c\x2b", [0x4163] = "\x02\x37\x40", + [0x4164] = "\x02\x37\x3f", [0x4165] = "\x01\x5c\x29", + [0x4166] = "\x01\x5c\x2a", [0x4167] = "\x03\x37\x49", + [0x4168] = "\x03\x37\x47", [0x416a] = "\x01\x60\x6c", + [0x416b] = "\x01\x60\x6b", [0x416c] = "\x02\x3e\x32", + [0x416d] = "\x03\x3d\x43", [0x416e] = "\x03\x3d\x42", + [0x416f] = "\x02\x3e\x31", [0x4170] = "\x01\x5c\x2c", + [0x4171] = "\x03\x3d\x44", [0x4172] = "\x04\x39\x2c", + [0x4175] = "\x04\x3e\x6b", [0x4176] = "\x01\x65\x35", + [0x4177] = "\x02\x45\x2b", [0x4178] = "\x01\x65\x36", + [0x4179] = "\x02\x45\x2a", [0x417a] = "\x03\x42\x7b", + [0x417b] = "\x04\x44\x7c", [0x417c] = "\x04\x44\x7b", + [0x417d] = "\x02\x4b\x7e", [0x417e] = "\x02\x52\x36", + [0x417f] = "\x01\x6d\x6b", [0x4180] = "\x02\x58\x56", + [0x4181] = "\x03\x51\x70", [0x4183] = "\x03\x55\x52", + [0x4184] = "\x02\x5d\x5f", [0x4185] = "\x04\x5b\x74", + [0x4186] = "\x01\x78\x51", [0x4187] = "\x01\x78\x50", + [0x4188] = "\x04\x63\x68", [0x4189] = "\x03\x5c\x62", + [0x418a] = "\x01\x7b\x68", [0x418b] = "\x01\x46\x74", + [0x418c] = "\x02\x28\x35", [0x418e] = "\x03\x3d\x45", + [0x418f] = "\x01\x5c\x2d", [0x4190] = "\x02\x4c\x21", + [0x4191] = "\x01\x69\x6a", [0x4192] = "\x03\x22\x5b", + [0x4193] = "\x03\x26\x73", [0x4194] = "\x02\x24\x6f", + [0x4195] = "\x02\x24\x70", [0x4198] = "\x02\x28\x36", + [0x4199] = "\x01\x4e\x79", [0x419a] = "\x01\x4e\x7a", + [0x419b] = "\x03\x2a\x3a", [0x419c] = "\x04\x27\x43", + [0x419d] = "\x01\x4e\x78", [0x419e] = "\x03\x2a\x3b", + [0x41a2] = "\x01\x52\x52", [0x41a3] = "\x01\x52\x53", + [0x41a4] = "\x01\x52\x50", [0x41a5] = "\x01\x52\x51", + [0x41a6] = "\x03\x2e\x2b", [0x41a7] = "\x02\x2c\x3e", + [0x41a8] = "\x03\x2e\x2f", [0x41a9] = "\x04\x2a\x4a", + [0x41aa] = "\x02\x2c\x3f", [0x41ab] = "\x01\x52\x4f", + [0x41b0] = "\x02\x31\x26", [0x41b1] = "\x03\x32\x57", + [0x41b2] = "\x01\x56\x6b", [0x41b3] = "\x01\x56\x6c", + [0x41b4] = "\x03\x32\x55", [0x41b5] = "\x01\x5c\x30", + [0x41b6] = "\x02\x31\x2c", [0x41b7] = "\x04\x2e\x40", + [0x41b8] = "\x01\x56\x71", [0x41b9] = "\x01\x56\x6f", + [0x41ba] = "\x02\x31\x2d", [0x41bb] = "\x02\x31\x28", + [0x41bc] = "\x01\x56\x6e", [0x41bd] = "\x01\x56\x6d", + [0x41be] = "\x01\x56\x68", [0x41bf] = "\x02\x31\x2b", + [0x41c0] = "\x02\x31\x2a", [0x41c1] = "\x02\x31\x27", + [0x41c2] = "\x01\x56\x70", [0x41c3] = "\x03\x32\x52", + [0x41c4] = "\x02\x31\x29", [0x41c5] = "\x01\x56\x69", + [0x41c6] = "\x04\x2e\x34", [0x41c7] = "\x01\x56\x6a", + [0x41ca] = "\x01\x5c\x31", [0x41cb] = "\x02\x37\x44", + [0x41cc] = "\x02\x37\x45", [0x41cd] = "\x01\x5c\x32", + [0x41ce] = "\x02\x37\x41", [0x41cf] = "\x02\x37\x43", + [0x41d0] = "\x02\x37\x47", [0x41d1] = "\x02\x37\x46", + [0x41d2] = "\x02\x37\x42", [0x41d3] = "\x03\x37\x4a", + [0x41d4] = "\x01\x5c\x2e", [0x41d5] = "\x01\x5c\x2f", + [0x41d7] = "\x02\x3e\x3a", [0x41d8] = "\x01\x60\x71", + [0x41d9] = "\x01\x60\x70", [0x41da] = "\x02\x3e\x34", + [0x41db] = "\x01\x60\x6e", [0x41dc] = "\x04\x39\x34", + [0x41dd] = "\x02\x3e\x37", [0x41de] = "\x01\x60\x72", + [0x41df] = "\x02\x3e\x38", [0x41e0] = "\x01\x60\x73", + [0x41e1] = "\x02\x3e\x35", [0x41e2] = "\x01\x60\x6d", + [0x41e3] = "\x01\x60\x6f", [0x41e4] = "\x02\x3e\x39", + [0x41e5] = "\x03\x3d\x47", [0x41e6] = "\x02\x3e\x36", + [0x41e7] = "\x02\x3e\x33", [0x41ec] = "\x04\x3e\x77", + [0x41ed] = "\x02\x45\x38", [0x41ee] = "\x03\x42\x7c", + [0x41ef] = "\x02\x45\x2d", [0x41f0] = "\x01\x65\x38", + [0x41f1] = "\x01\x65\x3b", [0x41f2] = "\x01\x65\x3a", + [0x41f3] = "\x01\x65\x3f", [0x41f4] = "\x01\x65\x3e", + [0x41f5] = "\x02\x45\x39", [0x41f6] = "\x02\x45\x37", + [0x41f7] = "\x02\x45\x30", [0x41f8] = "\x02\x45\x34", + [0x41f9] = "\x02\x45\x33", [0x41fa] = "\x01\x65\x3c", + [0x41fb] = "\x02\x45\x36", [0x41fc] = "\x02\x45\x32", + [0x41fd] = "\x02\x45\x3a", [0x41fe] = "\x02\x45\x31", + [0x41ff] = "\x01\x65\x3d", [0x4200] = "\x01\x65\x37", + [0x4201] = "\x01\x65\x39", [0x4202] = "\x03\x42\x7d", + [0x4203] = "\x02\x45\x2f", [0x4207] = "\x03\x48\x2b", + [0x4208] = "\x02\x4c\x23", [0x4209] = "\x01\x69\x6e", + [0x420a] = "\x02\x4c\x27", [0x420b] = "\x01\x69\x6d", + [0x420c] = "\x02\x4c\x24", [0x420d] = "\x01\x69\x6c", + [0x420e] = "\x03\x48\x29", [0x420f] = "\x02\x45\x2e", + [0x4210] = "\x02\x45\x35", [0x4211] = "\x02\x4c\x26", + [0x4212] = "\x04\x44\x7e", [0x4213] = "\x01\x69\x6f", + [0x4214] = "\x02\x4c\x28", [0x4215] = "\x02\x4c\x25", + [0x4216] = "\x02\x4c\x22", [0x4219] = "\x02\x52\x39", + [0x421a] = "\x02\x52\x3d", [0x421b] = "\x02\x52\x3f", + [0x421c] = "\x02\x52\x3b", [0x421d] = "\x02\x52\x3a", + [0x421e] = "\x02\x52\x38", [0x421f] = "\x01\x6d\x6e", + [0x4220] = "\x01\x6d\x6c", [0x4221] = "\x01\x6d\x71", + [0x4222] = "\x01\x6d\x72", [0x4223] = "\x02\x52\x3c", + [0x4224] = "\x01\x6d\x6f", [0x4225] = "\x02\x52\x37", + [0x4226] = "\x01\x6d\x70", [0x4227] = "\x01\x69\x6b", + [0x4228] = "\x02\x52\x3e", [0x4229] = "\x01\x6d\x6d", + [0x422c] = "\x03\x51\x71", [0x422d] = "\x02\x58\x58", + [0x422e] = "\x04\x51\x4f", [0x422f] = "\x02\x58\x57", + [0x4230] = "\x02\x58\x5f", [0x4231] = "\x02\x58\x59", + [0x4232] = "\x02\x58\x5e", [0x4233] = "\x02\x58\x5b", + [0x4234] = "\x01\x71\x4a", [0x4235] = "\x02\x58\x5d", + [0x4236] = "\x03\x51\x73", [0x4237] = "\x03\x51\x72", + [0x4238] = "\x01\x71\x4b", [0x4239] = "\x04\x51\x4d", + [0x423a] = "\x01\x71\x4c", [0x423b] = "\x03\x51\x74", + [0x423c] = "\x02\x58\x5c", [0x423d] = "\x02\x58\x5a", + [0x4240] = "\x04\x57\x21", [0x4241] = "\x04\x57\x24", + [0x4242] = "\x01\x74\x43", [0x4243] = "\x02\x5d\x60", + [0x4244] = "\x03\x55\x55", [0x4245] = "\x03\x55\x53", + [0x4246] = "\x01\x74\x42", [0x4247] = "\x02\x5d\x63", + [0x4248] = "\x02\x5d\x61", [0x4249] = "\x02\x5d\x62", + [0x424a] = "\x05\x55\x69", [0x424b] = "\x05\x5c\x36", + [0x424c] = "\x01\x74\x44", [0x424e] = "\x03\x55\x54", + [0x424f] = "\x03\x58\x34", [0x4250] = "\x02\x62\x3a", + [0x4251] = "\x03\x58\x33", [0x4252] = "\x01\x76\x6b", + [0x4253] = "\x02\x62\x3b", [0x4254] = "\x04\x5b\x75", + [0x4255] = "\x04\x5b\x79", [0x4256] = "\x01\x76\x69", + [0x4257] = "\x02\x62\x3c", [0x4258] = "\x01\x76\x6a", + [0x4259] = "\x02\x62\x39", [0x425a] = "\x02\x62\x3d", + [0x425b] = "\x03\x58\x32", [0x425c] = "\x02\x62\x37", + [0x425f] = "\x01\x78\x52", [0x4260] = "\x02\x66\x24", + [0x4261] = "\x01\x78\x53", [0x4262] = "\x01\x79\x7a", + [0x4264] = "\x02\x62\x38", [0x4265] = "\x01\x79\x7b", + [0x4267] = "\x03\x5e\x3f", [0x4268] = "\x03\x5e\x3e", + [0x4269] = "\x01\x7a\x79", [0x426a] = "\x02\x6b\x6d", + [0x426c] = "\x01\x7b\x6a", [0x426d] = "\x02\x6d\x62", + [0x426e] = "\x01\x7b\x69", [0x426f] = "\x03\x60\x3b", + [0x4270] = "\x02\x6f\x39", [0x4271] = "\x01\x7c\x61", + [0x4272] = "\x01\x7c\x62", [0x4273] = "\x03\x65\x6a", + [0x4274] = "\x07\x64\x52", [0x4275] = "\x02\x72\x3a", + [0x4276] = "\x03\x22\x5c", [0x4277] = "\x03\x65\x6b", + [0x4278] = "\x01\x52\x54", [0x4279] = "\x02\x2c\x40", + [0x427b] = "\x01\x60\x74", [0x427c] = "\x01\x60\x75", + [0x427d] = "\x01\x46\x75", [0x427e] = "\x01\x48\x4b", + [0x427f] = "\x02\x22\x67", [0x4280] = "\x03\x26\x74", + [0x4281] = "\x02\x24\x71", [0x4282] = "\x01\x4b\x30", + [0x4283] = "\x03\x26\x76", [0x4284] = "\x01\x4e\x7b", + [0x4285] = "\x04\x2a\x4c", [0x4286] = "\x01\x52\x55", + [0x4287] = "\x01\x52\x56", [0x4288] = "\x01\x52\x57", + [0x4289] = "\x02\x37\x49", [0x428a] = "\x02\x31\x2e", + [0x428b] = "\x01\x56\x72", [0x428c] = "\x04\x2e\x41", + [0x428d] = "\x04\x2e\x43", [0x428e] = "\x01\x5c\x33", + [0x428f] = "\x02\x37\x48", [0x4290] = "\x03\x37\x4d", + [0x4292] = "\x02\x3e\x3c", [0x4293] = "\x01\x60\x77", + [0x4294] = "\x03\x3d\x4c", [0x4295] = "\x02\x3e\x3b", + [0x4296] = "\x01\x60\x76", [0x4297] = "\x03\x42\x7e", + [0x4298] = "\x03\x43\x21", [0x4299] = "\x02\x45\x3b", + [0x429a] = "\x01\x6d\x73", [0x429b] = "\x02\x52\x43", + [0x429c] = "\x02\x52\x40", [0x429d] = "\x02\x52\x41", + [0x429e] = "\x02\x52\x42", [0x429f] = "\x04\x51\x54", + [0x42a0] = "\x04\x51\x55", [0x42a1] = "\x03\x51\x76", + [0x42a2] = "\x05\x5c\x43", [0x42a3] = "\x03\x55\x56", + [0x42a4] = "\x02\x5d\x64", [0x42a5] = "\x03\x55\x57", + [0x42a6] = "\x02\x62\x3e", [0x42a7] = "\x04\x5b\x7c", + [0x42a8] = "\x04\x5b\x7d", [0x42a9] = "\x03\x5a\x5e", + [0x42aa] = "\x02\x69\x40", [0x42ab] = "\x02\x69\x3f", + [0x42ac] = "\x04\x66\x5a", [0x42ad] = "\x02\x6d\x63", + [0x42ae] = "\x01\x46\x76", [0x42af] = "\x02\x28\x37", + [0x42b0] = "\x01\x56\x73", [0x42b3] = "\x03\x3d\x4d", + [0x42b4] = "\x01\x60\x78", [0x42b5] = "\x02\x45\x3c", + [0x42b6] = "\x04\x45\x34", [0x42b7] = "\x03\x48\x30", + [0x42b8] = "\x02\x4c\x29", [0x42b9] = "\x03\x48\x2e", + [0x42ba] = "\x01\x6d\x74", [0x42bb] = "\x02\x58\x60", + [0x42bc] = "\x03\x65\x6c", [0x42bd] = "\x02\x62\x3f", + [0x42be] = "\x02\x69\x41", [0x42bf] = "\x01\x46\x77", + [0x42c0] = "\x03\x26\x77", [0x42c1] = "\x03\x26\x78", + [0x42c2] = "\x01\x4e\x7c", [0x42c3] = "\x01\x52\x5a", + [0x42c4] = "\x02\x2c\x41", [0x42c5] = "\x01\x52\x5b", + [0x42c6] = "\x01\x52\x59", [0x42c7] = "\x03\x2e\x32", + [0x42c8] = "\x01\x52\x58", [0x42c9] = "\x02\x31\x2f", + [0x42ca] = "\x01\x56\x74", [0x42cb] = "\x03\x32\x5a", + [0x42cc] = "\x03\x32\x5b", [0x42cd] = "\x01\x56\x75", + [0x42ce] = "\x01\x56\x76", [0x42d2] = "\x01\x5c\x35", + [0x42d3] = "\x02\x37\x4a", [0x42d4] = "\x01\x5c\x34", + [0x42d5] = "\x03\x37\x50", [0x42d6] = "\x03\x37\x52", + [0x42d7] = "\x03\x37\x51", [0x42d8] = "\x0f\x37\x23", + [0x42d9] = "\x03\x3d\x4f", [0x42da] = "\x02\x3e\x3d", + [0x42db] = "\x01\x5c\x36", [0x42dc] = "\x01\x60\x79", + [0x42dd] = "\x02\x45\x3d", [0x42de] = "\x01\x65\x40", + [0x42df] = "\x01\x65\x41", [0x42e0] = "\x04\x45\x35", + [0x42e1] = "\x01\x69\x70", [0x42e2] = "\x03\x48\x31", + [0x42e3] = "\x01\x69\x71", [0x42e4] = "\x01\x6d\x75", + [0x42e5] = "\x01\x71\x4e", [0x42e6] = "\x02\x58\x61", + [0x42e7] = "\x01\x71\x4d", [0x42e8] = "\x04\x57\x2d", + [0x42e9] = "\x02\x5d\x65", [0x42ea] = "\x01\x74\x45", + [0x42eb] = "\x03\x58\x35", [0x42ec] = "\x02\x62\x40", + [0x42ed] = "\x02\x69\x42", [0x42ee] = "\x01\x46\x78", + [0x42ef] = "\x01\x4b\x31", [0x42f0] = "\x02\x28\x3a", + [0x42f1] = "\x02\x28\x39", [0x42f2] = "\x01\x4e\x7d", + [0x42f3] = "\x02\x28\x38", [0x42f4] = "\x01\x4e\x7e", + [0x42f5] = "\x02\x28\x3b", [0x42f6] = "\x04\x2a\x55", + [0x42f7] = "\x02\x2c\x47", [0x42f8] = "\x01\x52\x5e", + [0x42f9] = "\x01\x52\x5d", [0x42fa] = "\x02\x2c\x49", + [0x42fb] = "\x02\x2c\x48", [0x42fc] = "\x01\x52\x62", + [0x42fd] = "\x03\x2e\x35", [0x42fe] = "\x01\x52\x61", + [0x42ff] = "\x03\x2e\x33", [0x4300] = "\x04\x2a\x59", + [0x4301] = "\x01\x52\x5c", [0x4302] = "\x04\x2a\x5d", + [0x4303] = "\x02\x2c\x43", [0x4304] = "\x02\x2c\x44", + [0x4305] = "\x02\x2c\x45", [0x4306] = "\x04\x2a\x52", + [0x4307] = "\x01\x52\x63", [0x4308] = "\x02\x2c\x42", + [0x4309] = "\x01\x52\x5f", [0x430a] = "\x02\x2c\x46", + [0x430b] = "\x01\x52\x60", [0x430e] = "\x03\x32\x64", + [0x430f] = "\x03\x32\x5f", [0x4310] = "\x02\x31\x32", + [0x4311] = "\x02\x31\x36", [0x4312] = "\x02\x31\x34", + [0x4313] = "\x02\x31\x33", [0x4314] = "\x04\x2e\x55", + [0x4315] = "\x02\x31\x37", [0x4316] = "\x03\x32\x5e", + [0x4317] = "\x04\x2e\x4f", [0x4318] = "\x03\x32\x68", + [0x4319] = "\x02\x31\x38", [0x431a] = "\x02\x31\x39", + [0x431b] = "\x02\x31\x31", [0x431c] = "\x04\x2e\x51", + [0x431d] = "\x02\x31\x30", [0x431e] = "\x03\x37\x59", + [0x431f] = "\x01\x56\x78", [0x4320] = "\x01\x56\x79", + [0x4321] = "\x03\x32\x67", [0x4322] = "\x02\x31\x3a", + [0x4323] = "\x02\x31\x35", [0x4324] = "\x03\x32\x65", + [0x4325] = "\x02\x37\x53", [0x4326] = "\x03\x37\x55", + [0x4327] = "\x02\x31\x3b", [0x4328] = "\x01\x56\x7a", + [0x4329] = "\x01\x56\x77", [0x432a] = "\x03\x32\x5c", + [0x432b] = "\x03\x32\x63", [0x432d] = "\x02\x37\x4d", + [0x432e] = "\x04\x33\x4f", [0x432f] = "\x02\x37\x4c", + [0x4330] = "\x03\x37\x53", [0x4331] = "\x02\x37\x4e", + [0x4332] = "\x02\x37\x4f", [0x4333] = "\x02\x37\x51", + [0x4334] = "\x02\x37\x50", [0x4335] = "\x02\x37\x55", + [0x4336] = "\x01\x5c\x3a", [0x4337] = "\x01\x5c\x37", + [0x4338] = "\x01\x5c\x3b", [0x4339] = "\x02\x37\x4b", + [0x433a] = "\x01\x5c\x3c", [0x433b] = "\x02\x37\x54", + [0x433c] = "\x01\x5c\x39", [0x433d] = "\x02\x37\x52", + [0x433e] = "\x01\x5c\x38", [0x433f] = "\x03\x32\x62", + [0x4340] = "\x03\x37\x57", [0x4341] = "\x04\x33\x56", + [0x4342] = "\x03\x3d\x56", [0x4343] = "\x03\x3d\x53", + [0x4344] = "\x02\x3e\x40", [0x4345] = "\x02\x3e\x42", + [0x4346] = "\x02\x3e\x3e", [0x4347] = "\x02\x3e\x3f", + [0x4348] = "\x03\x3d\x51", [0x4349] = "\x03\x3d\x52", + [0x434a] = "\x02\x3e\x43", [0x434b] = "\x02\x3e\x45", + [0x434c] = "\x02\x3e\x46", [0x434d] = "\x02\x3e\x41", + [0x434e] = "\x02\x3e\x44", [0x434f] = "\x01\x60\x7a", + [0x4352] = "\x02\x45\x41", [0x4353] = "\x03\x43\x27", + [0x4354] = "\x02\x45\x46", [0x4355] = "\x02\x45\x3e", + [0x4356] = "\x02\x45\x42", [0x4357] = "\x04\x3f\x29", + [0x4358] = "\x03\x43\x28", [0x4359] = "\x02\x45\x47", + [0x435a] = "\x02\x45\x43", [0x435b] = "\x01\x65\x42", + [0x435c] = "\x01\x65\x4a", [0x435d] = "\x03\x43\x25", + [0x435e] = "\x01\x65\x45", [0x435f] = "\x02\x45\x3f", + [0x4360] = "\x02\x45\x40", [0x4361] = "\x01\x69\x75", + [0x4362] = "\x01\x65\x4d", [0x4363] = "\x01\x65\x46", + [0x4364] = "\x03\x43\x26", [0x4365] = "\x01\x65\x4b", + [0x4366] = "\x01\x65\x44", [0x4367] = "\x02\x45\x45", + [0x4368] = "\x01\x65\x4c", [0x4369] = "\x02\x45\x44", + [0x436a] = "\x01\x65\x48", [0x436b] = "\x01\x65\x43", + [0x436c] = "\x01\x65\x49", [0x436d] = "\x02\x45\x48", + [0x436e] = "\x02\x4c\x2e", [0x436f] = "\x02\x4c\x30", + [0x4370] = "\x04\x45\x42", [0x4371] = "\x03\x48\x39", + [0x4372] = "\x04\x45\x40", [0x4373] = "\x04\x45\x3d", + [0x4374] = "\x03\x48\x33", [0x4375] = "\x03\x48\x36", + [0x4376] = "\x03\x48\x35", [0x4377] = "\x03\x48\x34", + [0x4378] = "\x03\x48\x38", [0x4379] = "\x01\x65\x47", + [0x437a] = "\x03\x48\x3b", [0x437b] = "\x03\x48\x3d", + [0x437c] = "\x02\x4c\x2b", [0x437d] = "\x01\x69\x73", + [0x437e] = "\x02\x4c\x31", [0x437f] = "\x01\x69\x74", + [0x4380] = "\x02\x4c\x2f", [0x4381] = "\x02\x4c\x2a", + [0x4382] = "\x02\x4c\x2d", [0x4383] = "\x02\x4c\x32", + [0x4384] = "\x01\x69\x72", [0x4385] = "\x02\x4c\x2c", + [0x4387] = "\x01\x6d\x77", [0x4388] = "\x02\x52\x47", + [0x4389] = "\x02\x52\x46", [0x438a] = "\x03\x4d\x44", + [0x438b] = "\x01\x6d\x7a", [0x438c] = "\x01\x6d\x78", + [0x438d] = "\x02\x52\x44", [0x438e] = "\x01\x6d\x76", + [0x438f] = "\x02\x52\x45", [0x4390] = "\x03\x4d\x46", + [0x4391] = "\x01\x6d\x79", [0x4394] = "\x04\x51\x5f", + [0x4395] = "\x02\x58\x69", [0x4396] = "\x03\x51\x7b", + [0x4397] = "\x02\x58\x6b", [0x4398] = "\x03\x51\x79", + [0x4399] = "\x02\x58\x6a", [0x439a] = "\x02\x58\x62", + [0x439b] = "\x02\x58\x66", [0x439c] = "\x02\x58\x65", + [0x439d] = "\x02\x58\x63", [0x439e] = "\x01\x71\x50", + [0x439f] = "\x01\x71\x51", [0x43a0] = "\x01\x71\x4f", + [0x43a1] = "\x02\x58\x64", [0x43a2] = "\x02\x58\x67", + [0x43a3] = "\x02\x58\x68", [0x43a4] = "\x03\x55\x59", + [0x43a5] = "\x01\x71\x52", [0x43a6] = "\x03\x55\x58", + [0x43a7] = "\x01\x74\x4a", [0x43a8] = "\x02\x5d\x6d", + [0x43a9] = "\x03\x55\x5b", [0x43aa] = "\x01\x74\x47", + [0x43ab] = "\x02\x5d\x67", [0x43ac] = "\x01\x74\x49", + [0x43ad] = "\x01\x74\x4b", [0x43ae] = "\x04\x51\x61", + [0x43af] = "\x03\x55\x5c", [0x43b0] = "\x01\x74\x48", + [0x43b1] = "\x02\x5d\x6c", [0x43b2] = "\x02\x5d\x68", + [0x43b3] = "\x01\x74\x46", [0x43b4] = "\x02\x5d\x6b", + [0x43b5] = "\x02\x5d\x66", [0x43b6] = "\x02\x5d\x6a", + [0x43b7] = "\x02\x5d\x69", [0x43b8] = "\x03\x58\x36", + [0x43b9] = "\x03\x58\x38", [0x43ba] = "\x02\x62\x42", + [0x43bb] = "\x01\x76\x6e", [0x43bc] = "\x01\x76\x6f", + [0x43bd] = "\x01\x76\x6c", [0x43be] = "\x03\x58\x3b", + [0x43bf] = "\x01\x76\x6d", [0x43c0] = "\x03\x58\x3a", + [0x43c1] = "\x03\x58\x39", [0x43c2] = "\x02\x62\x41", + [0x43c3] = "\x04\x60\x39", [0x43c4] = "\x02\x66\x27", + [0x43c5] = "\x03\x5a\x60", [0x43c6] = "\x03\x5a\x5f", + [0x43c7] = "\x01\x78\x54", [0x43c9] = "\x02\x66\x25", + [0x43ca] = "\x02\x66\x26", [0x43cc] = "\x02\x69\x43", + [0x43cd] = "\x02\x69\x46", [0x43ce] = "\x02\x69\x44", + [0x43cf] = "\x02\x69\x45", [0x43d0] = "\x02\x6b\x6e", + [0x43d1] = "\x03\x5e\x42", [0x43d2] = "\x04\x66\x5e", + [0x43d3] = "\x01\x7a\x7a", [0x43d4] = "\x02\x6f\x3a", + [0x43d5] = "\x02\x70\x42", [0x43d6] = "\x04\x6b\x74", + [0x43d7] = "\x01\x7c\x63", [0x43d8] = "\x02\x71\x28", + [0x43d9] = "\x02\x71\x29", [0x43da] = "\x01\x7d\x33", + [0x43db] = "\x01\x46\x79", [0x43dc] = "\x01\x52\x64", + [0x43dd] = "\x03\x32\x69", [0x43de] = "\x02\x3e\x47", + [0x43df] = "\x03\x3d\x57", [0x43e0] = "\x02\x45\x49", + [0x43e1] = "\x04\x6c\x76", [0x43e2] = "\x01\x46\x7a", + [0x43e3] = "\x01\x4b\x32", [0x43e4] = "\x04\x27\x52", + [0x43e5] = "\x01\x4f\x21", [0x43e6] = "\x03\x2e\x36", + [0x43e7] = "\x02\x2c\x4a", [0x43e8] = "\x02\x2c\x4b", + [0x43e9] = "\x01\x56\x7b", [0x43ea] = "\x04\x33\x5b", + [0x43ec] = "\x02\x3e\x48", [0x43ed] = "\x01\x60\x7b", + [0x43ee] = "\x01\x65\x4e", [0x43ef] = "\x01\x74\x4c", + [0x43f0] = "\x02\x5d\x6e", [0x43f1] = "\x02\x66\x28", + [0x43f2] = "\x02\x69\x47", [0x43f3] = "\x01\x46\x7b", + [0x43f4] = "\x03\x26\x7b", [0x43f5] = "\x03\x26\x7c", + [0x43f6] = "\x0f\x25\x23", [0x43f7] = "\x02\x28\x41", + [0x43f8] = "\x02\x28\x3c", [0x43f9] = "\x02\x28\x3e", + [0x43fa] = "\x02\x28\x40", [0x43fb] = "\x02\x28\x3f", + [0x43fc] = "\x02\x28\x3d", [0x43fd] = "\x01\x4f\x22", + [0x43fe] = "\x0f\x28\x34", [0x4402] = "\x01\x52\x65", + [0x4403] = "\x02\x2c\x54", [0x4404] = "\x03\x2e\x39", + [0x4405] = "\x02\x2c\x4f", [0x4406] = "\x02\x2c\x4c", + [0x4407] = "\x03\x2e\x3b", [0x4408] = "\x03\x2e\x3e", + [0x4409] = "\x02\x2c\x53", [0x440a] = "\x03\x2e\x37", + [0x440b] = "\x03\x2e\x3a", [0x440c] = "\x01\x52\x67", + [0x440d] = "\x01\x52\x68", [0x440e] = "\x02\x2c\x52", + [0x440f] = "\x02\x2c\x51", [0x4410] = "\x02\x2c\x50", + [0x4411] = "\x02\x2c\x4d", [0x4412] = "\x02\x2c\x4e", + [0x4413] = "\x02\x2c\x55", [0x4414] = "\x01\x52\x66", + [0x4415] = "\x03\x2e\x3d", [0x4418] = "\x0f\x2c\x5c", + [0x4419] = "\x03\x65\x6d", [0x441b] = "\x03\x65\x6e", + [0x441d] = "\x01\x57\x21", [0x441e] = "\x03\x66\x7c", + [0x441f] = "\x01\x57\x27", [0x4420] = "\x01\x57\x26", + [0x4421] = "\x02\x31\x44", [0x4422] = "\x02\x31\x3e", + [0x4423] = "\x02\x31\x3c", [0x4424] = "\x03\x32\x6c", + [0x4425] = "\x01\x57\x24", [0x4426] = "\x02\x37\x5c", + [0x4427] = "\x01\x56\x7d", [0x4428] = "\x02\x31\x41", + [0x4429] = "\x02\x31\x45", [0x442a] = "\x02\x31\x47", + [0x442b] = "\x02\x31\x43", [0x442c] = "\x02\x31\x3d", + [0x442d] = "\x01\x57\x25", [0x442e] = "\x02\x31\x42", + [0x442f] = "\x02\x31\x40", [0x4430] = "\x01\x56\x7c", + [0x4431] = "\x02\x31\x48", [0x4432] = "\x01\x57\x28", + [0x4433] = "\x02\x31\x46", [0x4434] = "\x01\x57\x22", + [0x4435] = "\x02\x31\x3f", [0x4436] = "\x03\x32\x6d", + [0x4437] = "\x01\x57\x23", [0x4438] = "\x01\x56\x7e", + [0x443d] = "\x03\x65\x6f", [0x4442] = "\x03\x37\x62", + [0x4443] = "\x01\x5c\x3e", [0x4444] = "\x04\x33\x5d", + [0x4445] = "\x02\x37\x5d", [0x4446] = "\x03\x37\x63", + [0x4447] = "\x03\x37\x5d", [0x4448] = "\x02\x37\x56", + [0x4449] = "\x02\x37\x58", [0x444a] = "\x02\x37\x5a", + [0x444b] = "\x03\x37\x5f", [0x444c] = "\x02\x37\x5b", + [0x444d] = "\x02\x37\x59", [0x444e] = "\x01\x5c\x3f", + [0x444f] = "\x03\x37\x61", [0x4450] = "\x02\x37\x5e", + [0x4451] = "\x03\x37\x60", [0x4452] = "\x02\x37\x57", + [0x4453] = "\x03\x65\x70", [0x4454] = "\x03\x65\x71", + [0x4458] = "\x03\x65\x72", [0x445c] = "\x02\x3e\x4c", + [0x445d] = "\x01\x60\x7c", [0x445e] = "\x02\x3e\x54", + [0x445f] = "\x03\x3d\x5c", [0x4460] = "\x02\x3e\x49", + [0x4461] = "\x06\x4c\x2f", [0x4462] = "\x02\x3e\x55", + [0x4463] = "\x03\x3d\x59", [0x4464] = "\x02\x3e\x4a", + [0x4465] = "\x02\x3e\x4b", [0x4466] = "\x03\x3d\x5d", + [0x4467] = "\x04\x39\x54", [0x4468] = "\x02\x3e\x53", + [0x4469] = "\x02\x3e\x52", [0x446a] = "\x02\x3e\x4f", + [0x446b] = "\x01\x5c\x3d", [0x446c] = "\x01\x60\x7d", + [0x446d] = "\x02\x3e\x4d", [0x446e] = "\x02\x3e\x50", + [0x446f] = "\x01\x60\x7e", [0x4470] = "\x02\x3e\x51", + [0x4471] = "\x02\x3e\x4e", [0x4476] = "\x03\x3d\x5a", + [0x4478] = "\x03\x43\x31", [0x4479] = "\x02\x45\x54", + [0x447a] = "\x03\x43\x2d", [0x447b] = "\x02\x45\x58", + [0x447c] = "\x01\x65\x55", [0x447d] = "\x03\x43\x2e", + [0x447e] = "\x02\x4c\x38", [0x447f] = "\x01\x65\x58", + [0x4480] = "\x02\x45\x56", [0x4481] = "\x03\x43\x37", + [0x4482] = "\x03\x43\x29", [0x4483] = "\x02\x45\x53", + [0x4484] = "\x02\x45\x4e", [0x4485] = "\x02\x45\x50", + [0x4486] = "\x02\x45\x51", [0x4487] = "\x02\x45\x4a", + [0x4488] = "\x03\x43\x35", [0x4489] = "\x01\x65\x54", + [0x448a] = "\x03\x43\x2b", [0x448b] = "\x03\x43\x30", + [0x448c] = "\x01\x65\x53", [0x448d] = "\x03\x43\x34", + [0x448e] = "\x01\x65\x4f", [0x448f] = "\x02\x45\x4d", + [0x4490] = "\x03\x43\x2a", [0x4491] = "\x01\x65\x56", + [0x4492] = "\x03\x43\x36", [0x4493] = "\x01\x65\x57", + [0x4494] = "\x02\x45\x4c", [0x4495] = "\x02\x45\x4f", + [0x4496] = "\x02\x45\x57", [0x4497] = "\x01\x65\x51", + [0x4498] = "\x01\x65\x52", [0x4499] = "\x02\x45\x55", + [0x449a] = "\x02\x45\x4b", [0x449c] = "\x0f\x44\x25", + [0x449d] = "\x04\x45\x53", [0x449e] = "\x02\x4c\x3a", + [0x449f] = "\x01\x69\x77", [0x44a0] = "\x02\x4c\x3c", + [0x44a1] = "\x02\x45\x52", [0x44a2] = "\x02\x4c\x3e", + [0x44a3] = "\x01\x69\x7b", [0x44a4] = "\x02\x4c\x3f", + [0x44a5] = "\x02\x4c\x3b", [0x44a6] = "\x03\x48\x3e", + [0x44a7] = "\x01\x69\x78", [0x44a8] = "\x02\x4c\x37", + [0x44a9] = "\x01\x69\x7a", [0x44aa] = "\x02\x4c\x34", + [0x44ab] = "\x02\x4c\x39", [0x44ac] = "\x02\x4c\x3d", + [0x44ad] = "\x02\x4c\x36", [0x44ae] = "\x03\x48\x3f", + [0x44af] = "\x03\x48\x45", [0x44b0] = "\x01\x65\x50", + [0x44b1] = "\x03\x48\x44", [0x44b2] = "\x02\x4c\x33", + [0x44b3] = "\x01\x69\x79", [0x44b4] = "\x02\x4c\x35", + [0x44b7] = "\x03\x65\x73", [0x44b8] = "\x03\x48\x40", + [0x44b9] = "\x0f\x4a\x3f", [0x44ba] = "\x01\x6d\x7d", + [0x44bb] = "\x02\x52\x49", [0x44bc] = "\x01\x6e\x23", + [0x44bd] = "\x04\x4b\x59", [0x44be] = "\x01\x6e\x21", + [0x44bf] = "\x04\x4b\x57", [0x44c0] = "\x03\x4d\x4a", + [0x44c1] = "\x01\x69\x76", [0x44c2] = "\x03\x4d\x4d", + [0x44c3] = "\x02\x52\x50", [0x44c4] = "\x02\x52\x51", + [0x44c5] = "\x01\x6d\x7c", [0x44c6] = "\x03\x4d\x48", + [0x44c7] = "\x03\x4d\x4c", [0x44c8] = "\x02\x52\x4f", + [0x44c9] = "\x02\x52\x52", [0x44ca] = "\x01\x6d\x7e", + [0x44cb] = "\x01\x6d\x7b", [0x44cc] = "\x02\x52\x4b", + [0x44cd] = "\x02\x52\x48", [0x44ce] = "\x02\x52\x4d", + [0x44cf] = "\x02\x52\x4a", [0x44d0] = "\x01\x6e\x24", + [0x44d1] = "\x02\x52\x4c", [0x44d2] = "\x03\x4d\x4b", + [0x44d3] = "\x03\x4d\x49", [0x44d4] = "\x02\x52\x4e", + [0x44d5] = "\x01\x6e\x22", [0x44d6] = "\x03\x52\x21", + [0x44d8] = "\x03\x65\x74", [0x44da] = "\x01\x71\x54", + [0x44db] = "\x02\x58\x72", [0x44dc] = "\x03\x52\x24", + [0x44dd] = "\x02\x58\x6c", [0x44de] = "\x02\x58\x70", + [0x44df] = "\x02\x58\x76", [0x44e0] = "\x02\x58\x77", + [0x44e1] = "\x02\x58\x73", [0x44e2] = "\x02\x58\x74", + [0x44e3] = "\x02\x58\x71", [0x44e4] = "\x04\x4b\x5d", + [0x44e5] = "\x02\x58\x6e", [0x44e6] = "\x04\x51\x6e", + [0x44e7] = "\x01\x71\x56", [0x44e8] = "\x01\x71\x53", + [0x44e9] = "\x02\x58\x6d", [0x44ea] = "\x02\x58\x6f", + [0x44eb] = "\x03\x52\x22", [0x44ec] = "\x01\x71\x55", + [0x44ed] = "\x02\x58\x75", [0x44ee] = "\x03\x65\x75", + [0x44ef] = "\x01\x74\x50", [0x44f0] = "\x03\x55\x60", + [0x44f1] = "\x03\x55\x62", [0x44f2] = "\x02\x5d\x75", + [0x44f3] = "\x02\x5d\x6f", [0x44f4] = "\x01\x74\x4f", + [0x44f6] = "\x04\x57\x3e", [0x44f7] = "\x01\x74\x4d", + [0x44f8] = "\x03\x55\x61", [0x44f9] = "\x02\x5d\x77", + [0x44fa] = "\x01\x74\x4e", [0x44fb] = "\x02\x5d\x72", + [0x44fc] = "\x02\x5d\x73", [0x44fd] = "\x02\x5d\x70", + [0x44fe] = "\x02\x5d\x78", [0x44ff] = "\x02\x5d\x74", + [0x4500] = "\x04\x57\x40", [0x4501] = "\x01\x74\x51", + [0x4502] = "\x02\x5d\x71", [0x4504] = "\x02\x5d\x79", + [0x4505] = "\x02\x5d\x76", [0x4506] = "\x03\x58\x43", + [0x4507] = "\x03\x58\x3e", [0x4508] = "\x03\x58\x40", + [0x4509] = "\x02\x62\x46", [0x450a] = "\x03\x58\x3f", + [0x450b] = "\x03\x58\x3c", [0x450c] = "\x02\x62\x43", + [0x450d] = "\x03\x58\x42", [0x450e] = "\x01\x76\x70", + [0x450f] = "\x04\x5c\x32", [0x4510] = "\x02\x62\x47", + [0x4511] = "\x02\x62\x49", [0x4512] = "\x02\x62\x48", + [0x4513] = "\x02\x62\x44", [0x4514] = "\x02\x62\x45", + [0x4515] = "\x03\x58\x44", [0x4517] = "\x02\x66\x2d", + [0x4518] = "\x03\x5a\x61", [0x4519] = "\x01\x78\x55", + [0x451a] = "\x03\x5a\x62", [0x451b] = "\x02\x66\x2a", + [0x451c] = "\x02\x66\x2c", [0x451d] = "\x02\x66\x29", + [0x451e] = "\x02\x66\x2e", [0x451f] = "\x04\x60\x42", + [0x4520] = "\x03\x5a\x63", [0x4521] = "\x02\x66\x2b", + [0x4522] = "\x03\x65\x76", [0x4523] = "\x02\x69\x49", + [0x4524] = "\x02\x69\x4c", [0x4525] = "\x02\x69\x48", + [0x4526] = "\x01\x79\x7c", [0x4527] = "\x02\x69\x4a", + [0x4528] = "\x02\x69\x4b", [0x4529] = "\x02\x69\x4d", + [0x452a] = "\x01\x79\x7d", [0x452b] = "\x01\x7a\x21", + [0x452c] = "\x01\x79\x7e", [0x452d] = "\x02\x6b\x6f", + [0x452e] = "\x03\x5e\x45", [0x452f] = "\x02\x6b\x71", + [0x4530] = "\x03\x5e\x43", [0x4531] = "\x02\x6b\x70", + [0x4532] = "\x03\x5e\x44", [0x4535] = "\x02\x6d\x64", + [0x4536] = "\x0f\x6a\x66", [0x4537] = "\x03\x60\x3c", + [0x4538] = "\x02\x70\x43", [0x4539] = "\x02\x71\x2a", + [0x453a] = "\x01\x46\x7c", [0x453c] = "\x03\x24\x33", + [0x453d] = "\x02\x24\x72", [0x453e] = "\x01\x4f\x23", + [0x453f] = "\x02\x28\x43", [0x4540] = "\x01\x4f\x24", + [0x4541] = "\x01\x4f\x25", [0x4542] = "\x02\x28\x42", + [0x4544] = "\x02\x2c\x5a", [0x4545] = "\x02\x2c\x59", + [0x4546] = "\x01\x52\x69", [0x4547] = "\x01\x52\x6c", + [0x4548] = "\x01\x52\x6b", [0x4549] = "\x01\x52\x6a", + [0x454a] = "\x02\x2c\x56", [0x454b] = "\x02\x2c\x58", + [0x454c] = "\x02\x2c\x57", [0x454d] = "\x03\x65\x77", + [0x454f] = "\x02\x31\x4b", [0x4550] = "\x01\x57\x2a", + [0x4551] = "\x02\x31\x4f", [0x4552] = "\x02\x31\x4e", + [0x4553] = "\x02\x31\x4d", [0x4554] = "\x02\x31\x49", + [0x4555] = "\x01\x57\x29", [0x4556] = "\x01\x57\x2d", + [0x4557] = "\x01\x57\x30", [0x4558] = "\x03\x32\x6f", + [0x4559] = "\x03\x32\x70", [0x455a] = "\x01\x57\x31", + [0x455b] = "\x02\x31\x4a", [0x455c] = "\x02\x31\x4c", + [0x455d] = "\x01\x57\x2f", [0x455e] = "\x01\x57\x2e", + [0x455f] = "\x01\x57\x2c", [0x4560] = "\x01\x57\x2b", + [0x4561] = "\x02\x37\x65", [0x4562] = "\x03\x32\x72", + [0x4563] = "\x02\x37\x63", [0x4564] = "\x02\x37\x5f", + [0x4565] = "\x01\x5c\x40", [0x4566] = "\x03\x3d\x5e", + [0x4567] = "\x02\x37\x60", [0x4568] = "\x01\x5c\x41", + [0x4569] = "\x02\x37\x61", [0x456a] = "\x02\x37\x62", + [0x456b] = "\x02\x37\x64", [0x456c] = "\x03\x37\x66", + [0x456d] = "\x01\x5c\x42", [0x456e] = "\x03\x37\x65", + [0x4570] = "\x02\x3e\x59", [0x4571] = "\x03\x3d\x5f", + [0x4572] = "\x02\x3e\x58", [0x4573] = "\x02\x3e\x57", + [0x4574] = "\x02\x3e\x56", [0x4575] = "\x03\x3d\x64", + [0x4576] = "\x03\x3d\x62", [0x4577] = "\x04\x39\x5a", + [0x4579] = "\x02\x45\x5c", [0x457a] = "\x01\x65\x59", + [0x457b] = "\x04\x3f\x46", [0x457c] = "\x02\x45\x59", + [0x457d] = "\x02\x45\x5b", [0x457e] = "\x03\x43\x38", + [0x457f] = "\x01\x65\x5a", [0x4580] = "\x03\x43\x3d", + [0x4581] = "\x01\x65\x5b", [0x4582] = "\x02\x45\x5a", + [0x4583] = "\x03\x43\x39", [0x4584] = "\x03\x3d\x63", + [0x4586] = "\x03\x65\x78", [0x4587] = "\x03\x48\x48", + [0x4588] = "\x02\x4c\x48", [0x4589] = "\x03\x48\x47", + [0x458a] = "\x02\x4c\x41", [0x458b] = "\x02\x4c\x42", + [0x458c] = "\x05\x47\x7e", [0x458d] = "\x01\x69\x7e", + [0x458e] = "\x01\x69\x7c", [0x458f] = "\x01\x69\x7d", + [0x4590] = "\x02\x4c\x4a", [0x4591] = "\x05\x48\x22", + [0x4592] = "\x02\x4c\x49", [0x4593] = "\x02\x4c\x46", + [0x4594] = "\x02\x4c\x45", [0x4595] = "\x02\x4c\x44", + [0x4596] = "\x02\x4c\x43", [0x4597] = "\x02\x4c\x47", + [0x4598] = "\x02\x4c\x40", [0x4599] = "\x03\x65\x79", + [0x459a] = "\x02\x52\x53", [0x459b] = "\x02\x52\x58", + [0x459c] = "\x02\x52\x56", [0x459d] = "\x03\x4d\x50", + [0x459e] = "\x03\x4d\x51", [0x459f] = "\x03\x4d\x4f", + [0x45a0] = "\x02\x52\x55", [0x45a1] = "\x02\x52\x54", + [0x45a2] = "\x02\x52\x57", [0x45a3] = "\x03\x65\x7a", + [0x45a4] = "\x02\x58\x78", [0x45a5] = "\x03\x52\x26", + [0x45a6] = "\x01\x71\x57", [0x45a7] = "\x01\x74\x52", + [0x45a8] = "\x02\x5d\x7b", [0x45a9] = "\x03\x52\x27", + [0x45aa] = "\x01\x74\x53", [0x45ab] = "\x02\x5d\x7a", + [0x45ac] = "\x02\x62\x4b", [0x45ad] = "\x02\x62\x4a", + [0x45ae] = "\x01\x76\x71", [0x45af] = "\x03\x58\x45", + [0x45b0] = "\x02\x66\x2f", [0x45b1] = "\x01\x78\x56", + [0x45b2] = "\x02\x69\x4e", [0x45b3] = "\x01\x7b\x6b", + [0x45b4] = "\x02\x6d\x65", [0x45b5] = "\x03\x60\x3d", + [0x45b6] = "\x02\x70\x45", [0x45b7] = "\x02\x70\x44", + [0x45b8] = "\x02\x21\x67", [0x45b9] = "\x01\x52\x6d", + [0x45ba] = "\x01\x52\x6e", [0x45bb] = "\x02\x37\x66", + [0x45bc] = "\x03\x65\x7b", [0x45bd] = "\x01\x65\x5d", + [0x45be] = "\x01\x46\x7d", [0x45bf] = "\x01\x4b\x35", + [0x45c0] = "\x01\x4b\x34", [0x45c1] = "\x01\x4b\x33", + [0x45c2] = "\x04\x24\x68", [0x45c3] = "\x03\x2a\x3e", + [0x45c4] = "\x03\x2a\x3d", [0x45c5] = "\x02\x28\x44", + [0x45c6] = "\x03\x2a\x3f", [0x45c7] = "\x03\x2a\x42", + [0x45c8] = "\x01\x4f\x27", [0x45c9] = "\x01\x4f\x26", + [0x45ca] = "\x03\x2a\x44", [0x45cb] = "\x01\x52\x71", + [0x45cc] = "\x03\x65\x4c", [0x45cd] = "\x02\x2c\x5c", + [0x45ce] = "\x02\x2c\x5f", [0x45cf] = "\x02\x2c\x5d", + [0x45d0] = "\x03\x2e\x42", [0x45d1] = "\x01\x52\x6f", + [0x45d2] = "\x01\x52\x70", [0x45d3] = "\x03\x2e\x40", + [0x45d4] = "\x03\x2e\x41", [0x45d5] = "\x02\x2c\x5b", + [0x45d6] = "\x02\x2c\x5e", [0x45d7] = "\x03\x2e\x43", + [0x45d8] = "\x01\x57\x38", [0x45d9] = "\x03\x32\x74", + [0x45da] = "\x03\x32\x73", [0x45db] = "\x03\x32\x79", + [0x45dc] = "\x02\x31\x56", [0x45dd] = "\x02\x31\x58", + [0x45de] = "\x02\x31\x57", [0x45df] = "\x01\x57\x35", + [0x45e0] = "\x02\x31\x52", [0x45e1] = "\x03\x32\x76", + [0x45e2] = "\x03\x32\x7b", [0x45e3] = "\x01\x57\x33", + [0x45e4] = "\x01\x57\x32", [0x45e5] = "\x03\x32\x77", + [0x45e6] = "\x01\x57\x36", [0x45e7] = "\x01\x57\x34", + [0x45e8] = "\x03\x32\x78", [0x45e9] = "\x01\x57\x37", + [0x45ea] = "\x02\x31\x55", [0x45eb] = "\x02\x31\x50", + [0x45ec] = "\x02\x31\x51", [0x45ed] = "\x02\x31\x54", + [0x45ee] = "\x02\x31\x53", [0x45f0] = "\x03\x32\x7c", + [0x45f1] = "\x03\x37\x69", [0x45f2] = "\x03\x37\x67", + [0x45f3] = "\x03\x37\x6b", [0x45f5] = "\x03\x37\x6a", + [0x45f6] = "\x02\x37\x69", [0x45f7] = "\x02\x37\x6a", + [0x45f8] = "\x02\x37\x68", [0x45f9] = "\x03\x37\x6c", + [0x45fa] = "\x02\x37\x67", [0x45fb] = "\x01\x5c\x43", + [0x45fc] = "\x0f\x37\x3f", [0x45ff] = "\x03\x3d\x65", + [0x4600] = "\x01\x61\x25", [0x4601] = "\x06\x4c\x48", + [0x4602] = "\x02\x3e\x5a", [0x4603] = "\x02\x3e\x5c", + [0x4604] = "\x02\x3e\x5e", [0x4605] = "\x01\x61\x24", + [0x4607] = "\x03\x3d\x66", [0x4608] = "\x01\x61\x22", + [0x4609] = "\x03\x3d\x69", [0x460a] = "\x02\x3e\x5b", + [0x460b] = "\x01\x61\x23", [0x460c] = "\x02\x3e\x5d", + [0x460d] = "\x01\x61\x21", [0x460e] = "\x03\x3d\x68", + [0x460f] = "\x03\x43\x41", [0x4610] = "\x02\x45\x66", + [0x4611] = "\x02\x45\x5d", [0x4612] = "\x02\x45\x60", + [0x4613] = "\x02\x45\x64", [0x4614] = "\x01\x65\x61", + [0x4615] = "\x02\x45\x62", [0x4616] = "\x04\x3f\x50", + [0x4617] = "\x02\x45\x61", [0x4618] = "\x02\x45\x5e", + [0x4619] = "\x02\x45\x5f", [0x461a] = "\x01\x65\x5f", + [0x461b] = "\x02\x45\x65", [0x461c] = "\x01\x65\x5e", + [0x461d] = "\x03\x43\x44", [0x461e] = "\x01\x65\x63", + [0x461f] = "\x01\x65\x62", [0x4620] = "\x01\x65\x60", + [0x4621] = "\x04\x3f\x4a", [0x4622] = "\x02\x45\x63", + [0x4625] = "\x03\x65\x24", [0x4626] = "\x02\x4c\x50", + [0x4627] = "\x04\x45\x5d", [0x4628] = "\x02\x4c\x4f", + [0x4629] = "\x03\x48\x4b", [0x462a] = "\x03\x48\x4d", + [0x462b] = "\x02\x4c\x4b", [0x462c] = "\x03\x48\x50", + [0x462d] = "\x03\x48\x4f", [0x462e] = "\x01\x6a\x21", + [0x462f] = "\x02\x4c\x4e", [0x4630] = "\x02\x4c\x4d", + [0x4631] = "\x01\x6a\x22", [0x4632] = "\x03\x48\x52", + [0x4633] = "\x0f\x4a\x64", [0x4634] = "\x04\x4b\x63", + [0x4635] = "\x04\x45\x5e", [0x4636] = "\x04\x4b\x6b", + [0x4637] = "\x01\x6e\x29", [0x4638] = "\x03\x4d\x55", + [0x4639] = "\x02\x52\x5a", [0x463a] = "\x03\x4d\x56", + [0x463b] = "\x01\x6e\x2a", [0x463c] = "\x01\x6e\x26", + [0x463d] = "\x01\x6e\x28", [0x463e] = "\x03\x4d\x5a", + [0x463f] = "\x01\x6e\x25", [0x4640] = "\x01\x6e\x27", + [0x4641] = "\x03\x4d\x53", [0x4642] = "\x03\x4d\x57", + [0x4644] = "\x02\x58\x79", [0x4645] = "\x03\x52\x2a", + [0x4646] = "\x01\x71\x5a", [0x4647] = "\x02\x58\x7b", + [0x4648] = "\x02\x58\x7a", [0x4649] = "\x03\x55\x64", + [0x464a] = "\x02\x4c\x4c", [0x464b] = "\x01\x71\x5c", + [0x464c] = "\x01\x71\x5b", [0x464d] = "\x01\x71\x58", + [0x464e] = "\x01\x71\x59", [0x464f] = "\x03\x52\x2c", + [0x4650] = "\x0f\x5b\x59", [0x4653] = "\x03\x52\x29", + [0x4654] = "\x02\x5e\x22", [0x4655] = "\x04\x57\x49", + [0x4656] = "\x02\x5d\x7e", [0x4657] = "\x01\x74\x54", + [0x4658] = "\x02\x5e\x21", [0x4659] = "\x04\x57\x48", + [0x465a] = "\x02\x5e\x23", [0x465b] = "\x02\x5d\x7d", + [0x465c] = "\x02\x5d\x7c", [0x465f] = "\x02\x62\x4c", + [0x4660] = "\x01\x76\x74", [0x4661] = "\x01\x76\x72", + [0x4662] = "\x01\x76\x73", [0x4664] = "\x03\x5a\x66", + [0x4665] = "\x04\x60\x45", [0x4666] = "\x03\x5a\x65", + [0x4667] = "\x02\x66\x30", [0x4668] = "\x02\x66\x31", + [0x4669] = "\x01\x78\x58", [0x466a] = "\x03\x5a\x67", + [0x466b] = "\x01\x78\x57", [0x466c] = "\x02\x69\x50", + [0x466d] = "\x02\x69\x51", [0x466e] = "\x02\x69\x4f", + [0x466f] = "\x03\x5c\x64", [0x4670] = "\x02\x6d\x66", + [0x4671] = "\x02\x6d\x67", [0x4672] = "\x03\x60\x76", + [0x4673] = "\x03\x60\x77", [0x4674] = "\x01\x46\x7e", + [0x4675] = "\x02\x22\x68", [0x4676] = "\x01\x4b\x36", + [0x4678] = "\x02\x28\x45", [0x4679] = "\x01\x4f\x29", + [0x467a] = "\x01\x4f\x28", [0x467b] = "\x02\x28\x46", + [0x467c] = "\x03\x2e\x44", [0x467d] = "\x03\x2e\x47", + [0x467e] = "\x02\x2c\x61", [0x467f] = "\x01\x52\x72", + [0x4680] = "\x02\x2c\x60", [0x4681] = "\x01\x52\x73", + [0x4682] = "\x03\x2e\x49", [0x4683] = "\x03\x2e\x48", + [0x4684] = "\x01\x57\x39", [0x4685] = "\x02\x31\x5b", + [0x4686] = "\x02\x31\x59", [0x4687] = "\x02\x31\x5f", + [0x4688] = "\x01\x57\x3a", [0x4689] = "\x02\x31\x5a", + [0x468a] = "\x02\x31\x5e", [0x468b] = "\x02\x31\x5c", + [0x468c] = "\x02\x31\x5d", [0x468f] = "\x02\x37\x6b", + [0x4690] = "\x02\x37\x6d", [0x4691] = "\x03\x37\x72", + [0x4692] = "\x01\x5c\x44", [0x4693] = "\x03\x37\x71", + [0x4694] = "\x02\x37\x6c", [0x4695] = "\x01\x5c\x45", + [0x4696] = "\x01\x61\x28", [0x4697] = "\x01\x61\x27", + [0x4698] = "\x01\x61\x26", [0x4699] = "\x02\x3e\x5f", + [0x469a] = "\x03\x37\x70", [0x469b] = "\x04\x39\x65", + [0x469e] = "\x02\x45\x69", [0x469f] = "\x01\x65\x64", + [0x46a0] = "\x01\x65\x65", [0x46a1] = "\x03\x43\x46", + [0x46a2] = "\x02\x45\x68", [0x46a3] = "\x02\x45\x67", + [0x46a4] = "\x03\x43\x47", [0x46a7] = "\x03\x65\x7c", + [0x46a8] = "\x02\x4c\x51", [0x46a9] = "\x01\x6a\x24", + [0x46aa] = "\x01\x6a\x23", [0x46ab] = "\x02\x4c\x52", + [0x46ac] = "\x02\x4c\x53", [0x46ae] = "\x01\x6e\x2c", + [0x46af] = "\x01\x6e\x2b", [0x46b0] = "\x03\x4d\x5b", + [0x46b1] = "\x02\x59\x21", [0x46b2] = "\x02\x52\x5b", + [0x46b3] = "\x02\x52\x5d", [0x46b4] = "\x02\x52\x5c", + [0x46b5] = "\x02\x58\x7e", [0x46b6] = "\x02\x58\x7c", + [0x46b7] = "\x02\x59\x22", [0x46b8] = "\x02\x58\x7d", + [0x46b9] = "\x05\x56\x52", [0x46ba] = "\x01\x71\x5d", + [0x46bb] = "\x03\x52\x2f", [0x46bc] = "\x04\x52\x27", + [0x46bd] = "\x03\x52\x2e", [0x46be] = "\x02\x5e\x24", + [0x46bf] = "\x01\x74\x55", [0x46c0] = "\x02\x5e\x25", + [0x46c1] = "\x02\x5e\x26", [0x46c2] = "\x03\x55\x68", + [0x46c4] = "\x01\x76\x75", [0x46c5] = "\x01\x76\x76", + [0x46c6] = "\x04\x60\x4b", [0x46c7] = "\x01\x7a\x22", + [0x46c8] = "\x03\x5e\x49", [0x46c9] = "\x03\x5e\x48", + [0x46ca] = "\x01\x7c\x3d", [0x46cb] = "\x01\x47\x21", + [0x46cc] = "\x03\x26\x7e", [0x46cd] = "\x03\x27\x21", + [0x46ce] = "\x04\x27\x5b", [0x46cf] = "\x03\x2a\x47", + [0x46d0] = "\x03\x2e\x4e", [0x46d1] = "\x02\x2c\x62", + [0x46d2] = "\x03\x2e\x4f", [0x46d3] = "\x03\x2e\x4d", + [0x46d4] = "\x03\x2e\x4b", [0x46d5] = "\x03\x2e\x4c", + [0x46d7] = "\x0f\x2c\x76", [0x46d8] = "\x02\x31\x60", + [0x46d9] = "\x01\x57\x3b", [0x46da] = "\x03\x33\x23", + [0x46db] = "\x03\x33\x26", [0x46dc] = "\x03\x33\x27", + [0x46dd] = "\x03\x33\x24", [0x46df] = "\x01\x5d\x7e", + [0x46e0] = "\x01\x5d\x7d", [0x46e1] = "\x03\x37\x73", + [0x46e2] = "\x03\x3d\x71", [0x46e3] = "\x01\x61\x2a", + [0x46e4] = "\x02\x3e\x61", [0x46e5] = "\x01\x61\x29", + [0x46e6] = "\x02\x3e\x60", [0x46e7] = "\x03\x3d\x70", + [0x46e8] = "\x04\x3f\x57", [0x46e9] = "\x03\x43\x49", + [0x46ea] = "\x03\x43\x4a", [0x46eb] = "\x02\x45\x6a", + [0x46ec] = "\x03\x48\x54", [0x46ed] = "\x01\x6a\x25", + [0x46ee] = "\x02\x4c\x54", [0x46ef] = "\x01\x6a\x26", + [0x46f0] = "\x03\x48\x55", [0x46f1] = "\x03\x52\x30", + [0x46f2] = "\x03\x55\x69", [0x46f3] = "\x03\x55\x6a", + [0x46f4] = "\x04\x57\x50", [0x46f5] = "\x03\x58\x49", + [0x46f6] = "\x01\x7a\x23", [0x46f7] = "\x02\x69\x52", + [0x46f8] = "\x03\x5f\x55", [0x46f9] = "\x01\x48\x4c", + [0x46fa] = "\x01\x4f\x2a", [0x46fb] = "\x02\x28\x47", + [0x46fc] = "\x03\x2e\x51", [0x46fd] = "\x01\x52\x75", + [0x46fe] = "\x03\x2e\x50", [0x46ff] = "\x01\x52\x74", + [0x4700] = "\x02\x2c\x63", [0x4701] = "\x02\x2c\x64", + [0x4704] = "\x02\x31\x62", [0x4705] = "\x02\x31\x64", + [0x4706] = "\x01\x57\x3c", [0x4708] = "\x02\x31\x66", + [0x4709] = "\x02\x31\x69", [0x470a] = "\x02\x31\x67", + [0x470b] = "\x03\x33\x2b", [0x470c] = "\x04\x2e\x71", + [0x470d] = "\x03\x33\x2a", [0x470e] = "\x02\x31\x68", + [0x470f] = "\x02\x31\x65", [0x4710] = "\x02\x31\x61", + [0x4711] = "\x01\x57\x3d", [0x4712] = "\x02\x31\x6a", + [0x4713] = "\x02\x31\x63", [0x4714] = "\x03\x33\x2c", + [0x4716] = "\x03\x37\x78", [0x4717] = "\x03\x37\x79", + [0x4718] = "\x02\x37\x76", [0x4719] = "\x01\x5c\x4b", + [0x471a] = "\x02\x38\x21", [0x471b] = "\x01\x5c\x48", + [0x471c] = "\x03\x37\x77", [0x471d] = "\x02\x37\x78", + [0x471e] = "\x01\x5c\x4c", [0x471f] = "\x03\x37\x7b", + [0x4720] = "\x01\x5c\x46", [0x4721] = "\x03\x37\x76", + [0x4722] = "\x02\x37\x73", [0x4723] = "\x02\x38\x22", + [0x4724] = "\x02\x37\x74", [0x4725] = "\x02\x37\x71", + [0x4726] = "\x01\x5c\x4a", [0x4727] = "\x04\x33\x7c", + [0x4728] = "\x01\x5c\x47", [0x4729] = "\x04\x33\x7a", + [0x472a] = "\x02\x37\x77", [0x472b] = "\x02\x37\x7a", + [0x472c] = "\x01\x5c\x49", [0x472d] = "\x02\x37\x7b", + [0x472e] = "\x01\x5c\x4d", [0x472f] = "\x02\x37\x7c", + [0x4730] = "\x02\x37\x72", [0x4731] = "\x02\x37\x79", + [0x4732] = "\x02\x37\x7d", [0x4733] = "\x02\x37\x75", + [0x4734] = "\x02\x37\x70", [0x4735] = "\x02\x37\x6e", + [0x4736] = "\x03\x37\x7a", [0x4737] = "\x03\x65\x7d", + [0x4738] = "\x02\x37\x7e", [0x4739] = "\x0f\x37\x4d", + [0x473b] = "\x02\x37\x6f", [0x473d] = "\x0f\x36\x7e", + [0x473f] = "\x05\x3b\x24", [0x4740] = "\x02\x3e\x68", + [0x4741] = "\x03\x3d\x7b", [0x4742] = "\x03\x3d\x78", + [0x4743] = "\x03\x3d\x75", [0x4744] = "\x02\x3e\x64", + [0x4745] = "\x02\x3e\x6a", [0x4746] = "\x01\x61\x2d", + [0x4747] = "\x02\x3e\x63", [0x4748] = "\x02\x3e\x65", + [0x4749] = "\x01\x61\x2b", [0x474a] = "\x02\x3e\x62", + [0x474b] = "\x01\x61\x32", [0x474c] = "\x02\x3e\x66", + [0x474d] = "\x01\x61\x31", [0x474e] = "\x02\x3e\x67", + [0x474f] = "\x01\x61\x33", [0x4750] = "\x01\x61\x2e", + [0x4751] = "\x01\x61\x34", [0x4752] = "\x01\x61\x2f", + [0x4753] = "\x03\x3d\x79", [0x4754] = "\x01\x61\x30", + [0x4755] = "\x03\x3d\x72", [0x4756] = "\x01\x61\x2c", + [0x4757] = "\x03\x3d\x76", [0x4758] = "\x02\x3e\x69", + [0x4759] = "\x03\x65\x7e", [0x475e] = "\x03\x43\x4f", + [0x475f] = "\x04\x3f\x67", [0x4760] = "\x01\x65\x68", + [0x4761] = "\x02\x45\x75", [0x4762] = "\x03\x43\x4c", + [0x4763] = "\x02\x45\x78", [0x4764] = "\x02\x45\x6c", + [0x4765] = "\x02\x45\x71", [0x4766] = "\x02\x45\x6b", + [0x4767] = "\x01\x65\x6a", [0x4768] = "\x03\x43\x55", + [0x4769] = "\x02\x45\x6f", [0x476a] = "\x04\x3f\x5e", + [0x476b] = "\x03\x43\x4d", [0x476c] = "\x03\x3d\x77", + [0x476d] = "\x02\x45\x6d", [0x476e] = "\x01\x65\x69", + [0x476f] = "\x03\x43\x54", [0x4770] = "\x02\x45\x74", + [0x4771] = "\x02\x45\x73", [0x4772] = "\x02\x45\x70", + [0x4773] = "\x02\x45\x72", [0x4774] = "\x02\x45\x6e", + [0x4775] = "\x01\x6a\x2a", [0x4776] = "\x02\x45\x77", + [0x4777] = "\x01\x65\x66", [0x4778] = "\x02\x45\x76", + [0x4779] = "\x03\x43\x51", [0x477b] = "\x0f\x44\x45", + [0x4781] = "\x03\x48\x56", [0x4782] = "\x02\x4c\x64", + [0x4783] = "\x03\x48\x58", [0x4784] = "\x01\x6a\x31", + [0x4785] = "\x02\x4c\x5f", [0x4786] = "\x03\x48\x60", + [0x4787] = "\x01\x6a\x30", [0x4788] = "\x02\x4c\x55", + [0x4789] = "\x04\x45\x6b", [0x478a] = "\x02\x4c\x57", + [0x478b] = "\x01\x6a\x29", [0x478c] = "\x02\x4c\x5c", + [0x478d] = "\x02\x4c\x5b", [0x478e] = "\x02\x4c\x5e", + [0x478f] = "\x01\x6a\x2e", [0x4790] = "\x02\x4c\x59", + [0x4791] = "\x02\x4c\x58", [0x4792] = "\x03\x48\x5a", + [0x4793] = "\x03\x48\x5e", [0x4794] = "\x01\x6a\x2d", + [0x4795] = "\x01\x6a\x28", [0x4796] = "\x02\x4c\x5a", + [0x4797] = "\x01\x6a\x2b", [0x4798] = "\x02\x4c\x60", + [0x4799] = "\x02\x4c\x62", [0x479b] = "\x02\x4c\x5d", + [0x479c] = "\x02\x4c\x56", [0x479d] = "\x01\x6a\x2c", + [0x479e] = "\x03\x48\x57", [0x479f] = "\x03\x48\x5d", + [0x47a0] = "\x01\x6e\x34", [0x47a1] = "\x01\x6a\x27", + [0x47a2] = "\x04\x45\x64", [0x47a3] = "\x03\x48\x5c", + [0x47a4] = "\x02\x4c\x63", [0x47a5] = "\x04\x45\x70", + [0x47ac] = "\x02\x52\x61", [0x47ad] = "\x01\x6e\x2d", + [0x47ae] = "\x03\x4d\x5c", [0x47af] = "\x02\x52\x63", + [0x47b0] = "\x04\x4c\x2b", [0x47b1] = "\x01\x6e\x2e", + [0x47b2] = "\x03\x4d\x65", [0x47b3] = "\x03\x4d\x5d", + [0x47b4] = "\x01\x6e\x30", [0x47b5] = "\x02\x52\x66", + [0x47b6] = "\x04\x4b\x7a", [0x47b7] = "\x02\x52\x5e", + [0x47b8] = "\x01\x6a\x2f", [0x47b9] = "\x02\x52\x64", + [0x47ba] = "\x04\x4b\x73", [0x47bb] = "\x04\x4c\x31", + [0x47bc] = "\x04\x4b\x74", [0x47bd] = "\x04\x4c\x2a", + [0x47be] = "\x02\x52\x60", [0x47bf] = "\x03\x4d\x60", + [0x47c0] = "\x01\x65\x67", [0x47c1] = "\x01\x6e\x33", + [0x47c2] = "\x04\x4c\x21", [0x47c3] = "\x04\x4b\x78", + [0x47c4] = "\x01\x6e\x2f", [0x47c5] = "\x04\x4c\x26", + [0x47c6] = "\x01\x6e\x31", [0x47c7] = "\x01\x6e\x32", + [0x47c8] = "\x04\x4b\x76", [0x47c9] = "\x01\x71\x60", + [0x47ca] = "\x02\x52\x65", [0x47cb] = "\x02\x52\x5f", + [0x47cc] = "\x01\x6e\x35", [0x47cd] = "\x03\x4d\x63", + [0x47ce] = "\x02\x52\x62", [0x47d0] = "\x03\x66\x21", + [0x47d4] = "\x02\x59\x2c", [0x47d5] = "\x02\x59\x27", + [0x47d6] = "\x04\x52\x2d", [0x47d7] = "\x05\x56\x69", + [0x47d8] = "\x02\x59\x31", [0x47d9] = "\x01\x71\x5e", + [0x47da] = "\x02\x59\x29", [0x47db] = "\x01\x71\x62", + [0x47dc] = "\x02\x59\x2f", [0x47dd] = "\x02\x59\x26", + [0x47de] = "\x02\x59\x23", [0x47df] = "\x02\x59\x32", + [0x47e0] = "\x01\x74\x5b", [0x47e1] = "\x01\x71\x63", + [0x47e2] = "\x02\x59\x2e", [0x47e3] = "\x02\x59\x24", + [0x47e4] = "\x01\x71\x61", [0x47e5] = "\x02\x59\x28", + [0x47e6] = "\x01\x71\x65", [0x47e7] = "\x02\x59\x25", + [0x47e8] = "\x02\x59\x2a", [0x47e9] = "\x01\x71\x64", + [0x47ea] = "\x02\x59\x2d", [0x47eb] = "\x02\x59\x30", + [0x47ec] = "\x03\x52\x33", [0x47ed] = "\x03\x52\x34", + [0x47f0] = "\x02\x5e\x38", [0x47f1] = "\x02\x5e\x39", + [0x47f2] = "\x02\x5e\x29", [0x47f3] = "\x02\x5e\x30", + [0x47f4] = "\x02\x5e\x2e", [0x47f5] = "\x04\x57\x5f", + [0x47f6] = "\x03\x55\x6d", [0x47f7] = "\x01\x74\x59", + [0x47f8] = "\x02\x5e\x35", [0x47f9] = "\x02\x59\x2b", + [0x47fa] = "\x03\x55\x6b", [0x47fb] = "\x02\x5e\x2c", + [0x47fc] = "\x03\x55\x6e", [0x47fd] = "\x02\x5e\x36", + [0x47fe] = "\x01\x74\x58", [0x47ff] = "\x02\x5e\x2b", + [0x4800] = "\x02\x5e\x2a", [0x4801] = "\x02\x5e\x34", + [0x4802] = "\x02\x5e\x31", [0x4803] = "\x02\x5e\x33", + [0x4804] = "\x04\x57\x54", [0x4805] = "\x02\x5e\x27", + [0x4806] = "\x02\x5e\x37", [0x4807] = "\x01\x74\x56", + [0x4808] = "\x03\x55\x70", [0x4809] = "\x02\x5e\x32", + [0x480a] = "\x02\x5e\x3b", [0x480b] = "\x02\x5e\x2f", + [0x480c] = "\x01\x74\x5a", [0x480d] = "\x01\x74\x57", + [0x480e] = "\x02\x5e\x2d", [0x480f] = "\x02\x5e\x28", + [0x4810] = "\x02\x5e\x3a", [0x4811] = "\x01\x71\x5f", + [0x4812] = "\x03\x55\x71", [0x4815] = "\x04\x57\x57", + [0x4818] = "\x03\x55\x6f", [0x4819] = "\x02\x62\x4f", + [0x481a] = "\x03\x58\x50", [0x481b] = "\x03\x58\x4e", + [0x481c] = "\x02\x62\x4d", [0x481d] = "\x02\x62\x53", + [0x481e] = "\x01\x76\x7a", [0x481f] = "\x02\x62\x51", + [0x4820] = "\x02\x62\x50", [0x4821] = "\x01\x76\x7c", + [0x4822] = "\x02\x62\x56", [0x4823] = "\x01\x76\x7b", + [0x4824] = "\x03\x58\x51", [0x4825] = "\x02\x62\x57", + [0x4826] = "\x02\x62\x54", [0x4827] = "\x01\x76\x78", + [0x4828] = "\x02\x62\x55", [0x4829] = "\x02\x62\x4e", + [0x482a] = "\x01\x76\x79", [0x482b] = "\x01\x76\x77", + [0x482c] = "\x02\x66\x35", [0x482d] = "\x02\x62\x52", + [0x482e] = "\x03\x58\x4c", [0x482f] = "\x03\x66\x22", + [0x4830] = "\x02\x62\x58", [0x4832] = "\x03\x66\x23", + [0x4833] = "\x02\x66\x32", [0x4834] = "\x03\x5a\x6f", + [0x4835] = "\x03\x5a\x6e", [0x4836] = "\x04\x60\x4e", + [0x4837] = "\x01\x78\x5d", [0x4838] = "\x01\x78\x5b", + [0x4839] = "\x02\x66\x34", [0x483a] = "\x04\x60\x4c", + [0x483b] = "\x02\x66\x36", [0x483c] = "\x02\x66\x33", + [0x483d] = "\x01\x78\x5c", [0x483e] = "\x01\x78\x59", + [0x483f] = "\x01\x78\x5a", [0x4840] = "\x01\x78\x5e", + [0x4842] = "\x03\x66\x24", [0x4843] = "\x01\x7a\x25", + [0x4844] = "\x03\x5c\x66", [0x4845] = "\x02\x69\x57", + [0x4846] = "\x05\x6c\x79", [0x4847] = "\x02\x69\x56", + [0x4848] = "\x02\x69\x54", [0x4849] = "\x02\x69\x53", + [0x484a] = "\x02\x69\x55", [0x484b] = "\x03\x5c\x65", + [0x484c] = "\x01\x7a\x24", [0x484d] = "\x01\x7a\x26", + [0x484e] = "\x03\x66\x25", [0x484f] = "\x0f\x65\x67", + [0x4850] = "\x01\x7a\x7b", [0x4851] = "\x03\x5e\x4c", + [0x4852] = "\x04\x66\x6f", [0x4853] = "\x02\x6b\x73", + [0x4854] = "\x02\x6b\x72", [0x4855] = "\x03\x5c\x67", + [0x4856] = "\x03\x5e\x4b", [0x4857] = "\x02\x6d\x68", + [0x4858] = "\x03\x5f\x58", [0x4859] = "\x02\x6d\x6a", + [0x485a] = "\x02\x6d\x6c", [0x485b] = "\x02\x6d\x6b", + [0x485c] = "\x02\x6d\x69", [0x485d] = "\x03\x5f\x57", + [0x485e] = "\x03\x60\x3f", [0x485f] = "\x01\x7b\x6d", + [0x4860] = "\x01\x7b\x6c", [0x4862] = "\x03\x60\x3e", + [0x4863] = "\x01\x7c\x3f", [0x4864] = "\x01\x7c\x3e", + [0x4865] = "\x01\x7c\x40", [0x4866] = "\x02\x6f\x3c", + [0x4867] = "\x02\x6f\x3b", [0x4868] = "\x03\x66\x26", + [0x4869] = "\x02\x71\x2b", [0x486a] = "\x02\x70\x46", + [0x486b] = "\x02\x71\x2c", [0x486c] = "\x01\x7d\x25", + [0x486d] = "\x03\x61\x44", [0x486e] = "\x01\x7d\x26", + [0x486f] = "\x02\x71\x5c", [0x4870] = "\x04\x6d\x5b", + [0x4871] = "\x03\x62\x3a", [0x4872] = "\x01\x7d\x4b", + [0x4873] = "\x01\x48\x4d", [0x4874] = "\x03\x2a\x49", + [0x4875] = "\x02\x28\x48", [0x4876] = "\x03\x2a\x48", + [0x4877] = "\x03\x2e\x52", [0x4878] = "\x02\x2c\x66", + [0x4879] = "\x02\x2c\x67", [0x487a] = "\x02\x2c\x65", + [0x487b] = "\x03\x2e\x54", [0x487c] = "\x03\x2e\x53", + [0x487d] = "\x01\x52\x76", [0x487e] = "\x0f\x2d\x21", + [0x487f] = "\x02\x2c\x68", [0x4880] = "\x02\x2c\x69", + [0x4881] = "\x02\x2c\x6a", [0x4883] = "\x03\x33\x31", + [0x4884] = "\x02\x31\x6b", [0x4885] = "\x02\x31\x71", + [0x4886] = "\x03\x33\x2e", [0x4887] = "\x03\x33\x30", + [0x4888] = "\x02\x31\x6f", [0x4889] = "\x01\x57\x3e", + [0x488a] = "\x02\x31\x6d", [0x488b] = "\x03\x33\x32", + [0x488c] = "\x02\x31\x6e", [0x488d] = "\x02\x31\x70", + [0x488e] = "\x03\x33\x2d", [0x4891] = "\x02\x31\x6c", + [0x4892] = "\x01\x5c\x4e", [0x4893] = "\x03\x37\x7d", + [0x4894] = "\x02\x38\x23", [0x4895] = "\x01\x5c\x50", + [0x4896] = "\x02\x38\x25", [0x4897] = "\x01\x5c\x4f", + [0x4898] = "\x02\x38\x24", [0x4899] = "\x03\x37\x7e", + [0x489a] = "\x03\x38\x21", [0x489b] = "\x03\x38\x3e", + [0x489c] = "\x03\x38\x22", [0x489d] = "\x04\x34\x22", + [0x489e] = "\x02\x3e\x6c", [0x489f] = "\x01\x61\x35", + [0x48a0] = "\x03\x3e\x21", [0x48a1] = "\x02\x3e\x6e", + [0x48a2] = "\x02\x3e\x6b", [0x48a3] = "\x02\x38\x26", + [0x48a4] = "\x03\x3e\x23", [0x48a5] = "\x01\x61\x36", + [0x48a6] = "\x03\x3e\x22", [0x48a7] = "\x03\x3d\x7e", + [0x48a8] = "\x02\x3e\x6d", [0x48a9] = "\x03\x66\x27", + [0x48ab] = "\x0f\x3e\x21", [0x48ac] = "\x0f\x3e\x23", + [0x48ae] = "\x03\x43\x58", [0x48af] = "\x02\x45\x7b", + [0x48b0] = "\x03\x43\x5c", [0x48b1] = "\x01\x65\x6b", + [0x48b2] = "\x02\x45\x79", [0x48b3] = "\x01\x65\x6c", + [0x48b4] = "\x02\x45\x7a", [0x48b5] = "\x01\x65\x6d", + [0x48b6] = "\x04\x45\x74", [0x48b7] = "\x03\x48\x62", + [0x48b8] = "\x03\x48\x61", [0x48b9] = "\x01\x6a\x32", + [0x48ba] = "\x02\x4c\x68", [0x48bb] = "\x02\x4c\x65", + [0x48bc] = "\x02\x4c\x67", [0x48bd] = "\x01\x6a\x33", + [0x48be] = "\x01\x6a\x34", [0x48bf] = "\x02\x4c\x66", + [0x48c0] = "\x0f\x4b\x27", [0x48c1] = "\x0f\x4b\x2b", + [0x48c2] = "\x03\x4d\x6f", [0x48c3] = "\x03\x4d\x71", + [0x48c4] = "\x03\x4d\x6d", [0x48c5] = "\x02\x52\x67", + [0x48c6] = "\x03\x4d\x70", [0x48c7] = "\x03\x4d\x73", + [0x48c8] = "\x02\x52\x68", [0x48c9] = "\x03\x4d\x72", + [0x48ca] = "\x01\x6e\x36", [0x48cb] = "\x02\x52\x6a", + [0x48cc] = "\x02\x52\x69", [0x48cd] = "\x03\x4d\x6e", + [0x48ce] = "\x01\x23\x23", [0x48cf] = "\x04\x52\x44", + [0x48d0] = "\x02\x59\x36", [0x48d1] = "\x02\x59\x37", + [0x48d2] = "\x02\x59\x33", [0x48d3] = "\x03\x52\x37", + [0x48d4] = "\x02\x59\x34", [0x48d5] = "\x01\x71\x66", + [0x48d6] = "\x01\x71\x67", [0x48d7] = "\x02\x59\x35", + [0x48d9] = "\x01\x74\x61", [0x48da] = "\x03\x55\x75", + [0x48db] = "\x03\x55\x74", [0x48dc] = "\x01\x74\x5d", + [0x48dd] = "\x01\x74\x62", [0x48de] = "\x01\x74\x5e", + [0x48df] = "\x01\x74\x60", [0x48e0] = "\x01\x74\x5c", + [0x48e1] = "\x03\x52\x39", [0x48e2] = "\x01\x74\x5f", + [0x48e3] = "\x03\x58\x55", [0x48e4] = "\x04\x5c\x5a", + [0x48e5] = "\x04\x5c\x5b", [0x48e6] = "\x03\x58\x54", + [0x48e7] = "\x01\x76\x7d", [0x48e8] = "\x02\x5e\x3c", + [0x48e9] = "\x07\x48\x57", [0x48ea] = "\x02\x66\x38", + [0x48eb] = "\x04\x60\x5a", [0x48ec] = "\x02\x66\x37", + [0x48ed] = "\x03\x66\x28", [0x48ee] = "\x02\x69\x58", + [0x48ef] = "\x01\x7a\x27", [0x48f0] = "\x01\x7a\x28", + [0x48f1] = "\x02\x6d\x6e", [0x48f2] = "\x02\x6b\x74", + [0x48f3] = "\x03\x61\x69", [0x48f4] = "\x02\x6d\x6d", + [0x48f5] = "\x03\x60\x40", [0x48f6] = "\x02\x71\x2d", + [0x48f7] = "\x02\x71\x72", [0x48f8] = "\x01\x48\x4e", + [0x48fa] = "\x03\x27\x22", [0x48fb] = "\x01\x4b\x37", + [0x48fc] = "\x03\x2a\x4b", [0x48fd] = "\x02\x28\x49", + [0x48fe] = "\x01\x4f\x2b", [0x48ff] = "\x03\x2a\x4a", + [0x4900] = "\x01\x52\x79", [0x4901] = "\x02\x2c\x6d", + [0x4902] = "\x01\x52\x77", [0x4903] = "\x02\x2c\x6b", + [0x4904] = "\x01\x52\x7c", [0x4905] = "\x01\x52\x78", + [0x4906] = "\x01\x52\x7d", [0x4907] = "\x01\x52\x7b", + [0x4908] = "\x02\x2c\x6c", [0x4909] = "\x01\x52\x7a", + [0x490a] = "\x01\x57\x42", [0x490b] = "\x01\x57\x41", + [0x490c] = "\x02\x31\x7c", [0x490d] = "\x01\x57\x4a", + [0x490e] = "\x02\x31\x75", [0x490f] = "\x02\x31\x7b", + [0x4910] = "\x01\x57\x46", [0x4911] = "\x02\x31\x74", + [0x4912] = "\x02\x31\x7a", [0x4913] = "\x02\x31\x78", + [0x4914] = "\x01\x57\x45", [0x4915] = "\x01\x57\x47", + [0x4916] = "\x02\x31\x77", [0x4917] = "\x01\x57\x40", + [0x4918] = "\x02\x31\x76", [0x4919] = "\x01\x57\x4b", + [0x491a] = "\x01\x57\x48", [0x491b] = "\x01\x57\x4c", + [0x491c] = "\x01\x57\x49", [0x491d] = "\x02\x31\x73", + [0x491e] = "\x02\x31\x72", [0x491f] = "\x02\x31\x79", + [0x4920] = "\x01\x57\x43", [0x4921] = "\x01\x57\x3f", + [0x4922] = "\x01\x57\x44", [0x4923] = "\x04\x2f\x25", + [0x4924] = "\x03\x33\x37", [0x4925] = "\x03\x33\x3b", + [0x4928] = "\x02\x38\x35", [0x4929] = "\x02\x38\x2e", + [0x492a] = "\x04\x3a\x26", [0x492b] = "\x01\x61\x3b", + [0x492c] = "\x02\x38\x2d", [0x492d] = "\x03\x38\x29", + [0x492e] = "\x01\x5c\x54", [0x492f] = "\x01\x5c\x5b", + [0x4930] = "\x01\x5c\x58", [0x4931] = "\x01\x5c\x5e", + [0x4932] = "\x01\x5c\x5d", [0x4933] = "\x01\x5c\x59", + [0x4934] = "\x03\x38\x26", [0x4935] = "\x02\x38\x27", + [0x4936] = "\x02\x38\x2a", [0x4937] = "\x03\x38\x27", + [0x4938] = "\x02\x38\x29", [0x4939] = "\x01\x5c\x55", + [0x493a] = "\x02\x38\x2b", [0x493b] = "\x02\x38\x34", + [0x493c] = "\x01\x5c\x56", [0x493d] = "\x02\x38\x28", + [0x493e] = "\x02\x38\x31", [0x493f] = "\x02\x38\x32", + [0x4940] = "\x01\x5c\x57", [0x4941] = "\x02\x38\x2f", + [0x4942] = "\x01\x5c\x5c", [0x4943] = "\x01\x5c\x52", + [0x4944] = "\x01\x5c\x5a", [0x4945] = "\x02\x38\x2c", + [0x4946] = "\x01\x5c\x51", [0x4947] = "\x02\x38\x30", + [0x4948] = "\x03\x38\x2e", [0x4949] = "\x03\x38\x24", + [0x494a] = "\x02\x38\x33", [0x494b] = "\x0f\x37\x54", + [0x494c] = "\x03\x38\x2b", [0x494d] = "\x03\x3e\x34", + [0x494e] = "\x02\x3f\x21", [0x494f] = "\x02\x3e\x76", + [0x4950] = "\x01\x61\x38", [0x4951] = "\x02\x3e\x7d", + [0x4952] = "\x02\x3e\x7a", [0x4953] = "\x02\x3e\x72", + [0x4954] = "\x02\x3e\x7b", [0x4955] = "\x01\x61\x3a", + [0x4956] = "\x02\x3e\x73", [0x4957] = "\x03\x3e\x29", + [0x4958] = "\x02\x3e\x6f", [0x4959] = "\x03\x3e\x26", + [0x495a] = "\x03\x3e\x2e", [0x495b] = "\x01\x65\x73", + [0x495c] = "\x02\x3e\x78", [0x495d] = "\x03\x3e\x2f", + [0x495e] = "\x01\x61\x37", [0x495f] = "\x02\x3e\x7e", + [0x4960] = "\x03\x3e\x28", [0x4961] = "\x01\x61\x3e", + [0x4962] = "\x01\x61\x40", [0x4963] = "\x02\x3e\x71", + [0x4964] = "\x03\x3e\x2c", [0x4965] = "\x04\x3a\x27", + [0x4966] = "\x01\x61\x3f", [0x4967] = "\x02\x3e\x74", + [0x4968] = "\x01\x61\x39", [0x4969] = "\x02\x3e\x7c", + [0x496a] = "\x02\x3e\x75", [0x496b] = "\x02\x3e\x79", + [0x496c] = "\x03\x3e\x2a", [0x496d] = "\x02\x3e\x77", + [0x496e] = "\x01\x61\x3c", [0x496f] = "\x02\x3e\x70", + [0x4970] = "\x01\x61\x41", [0x4971] = "\x01\x5c\x53", + [0x4972] = "\x01\x61\x3d", [0x4973] = "\x01\x61\x42", + [0x4974] = "\x03\x3e\x24", [0x4975] = "\x03\x3e\x35", + [0x4976] = "\x03\x3e\x33", [0x4978] = "\x03\x43\x67", + [0x4979] = "\x01\x65\x6f", [0x497a] = "\x02\x46\x24", + [0x497b] = "\x02\x46\x26", [0x497c] = "\x02\x46\x28", + [0x497d] = "\x02\x46\x2c", [0x497e] = "\x03\x3e\x2b", + [0x497f] = "\x02\x46\x22", [0x4980] = "\x02\x45\x7e", + [0x4981] = "\x01\x65\x71", [0x4982] = "\x04\x3f\x71", + [0x4983] = "\x02\x46\x27", [0x4984] = "\x02\x46\x2b", + [0x4985] = "\x02\x46\x23", [0x4986] = "\x02\x45\x7d", + [0x4987] = "\x03\x43\x66", [0x4988] = "\x02\x45\x7c", + [0x4989] = "\x03\x43\x69", [0x498a] = "\x03\x43\x60", + [0x498b] = "\x03\x43\x62", [0x498c] = "\x02\x46\x29", + [0x498d] = "\x02\x46\x21", [0x498e] = "\x02\x46\x25", + [0x498f] = "\x01\x65\x72", [0x4990] = "\x03\x43\x5e", + [0x4991] = "\x01\x65\x70", [0x4992] = "\x02\x46\x2d", + [0x4993] = "\x01\x65\x6e", [0x4994] = "\x02\x46\x2a", + [0x4995] = "\x03\x43\x64", [0x4996] = "\x02\x4c\x79", + [0x4997] = "\x03\x43\x68", [0x4998] = "\x03\x43\x6a", + [0x4999] = "\x03\x43\x63", [0x499c] = "\x01\x6a\x37", + [0x499d] = "\x02\x4c\x71", [0x499e] = "\x01\x6e\x43", + [0x499f] = "\x02\x4c\x7b", [0x49a0] = "\x01\x6a\x3a", + [0x49a1] = "\x02\x4d\x21", [0x49a2] = "\x01\x6a\x40", + [0x49a3] = "\x02\x4c\x6c", [0x49a4] = "\x03\x48\x74", + [0x49a5] = "\x04\x45\x7b", [0x49a6] = "\x02\x4c\x7c", + [0x49a7] = "\x02\x4c\x69", [0x49a8] = "\x03\x48\x6d", + [0x49a9] = "\x02\x4c\x7e", [0x49aa] = "\x02\x4c\x6d", + [0x49ab] = "\x03\x48\x6e", [0x49ac] = "\x01\x6a\x47", + [0x49ad] = "\x01\x6a\x44", [0x49ae] = "\x02\x4c\x7d", + [0x49af] = "\x02\x4c\x77", [0x49b0] = "\x01\x6a\x36", + [0x49b1] = "\x01\x6a\x3e", [0x49b2] = "\x01\x6a\x3d", + [0x49b3] = "\x03\x48\x70", [0x49b4] = "\x01\x6a\x3c", + [0x49b5] = "\x01\x6a\x42", [0x49b6] = "\x03\x48\x69", + [0x49b7] = "\x02\x4c\x6a", [0x49b8] = "\x01\x6a\x43", + [0x49b9] = "\x02\x4c\x78", [0x49ba] = "\x01\x6a\x3f", + [0x49bb] = "\x01\x6a\x35", [0x49bc] = "\x02\x4c\x7a", + [0x49bd] = "\x01\x6a\x38", [0x49be] = "\x01\x6a\x39", + [0x49bf] = "\x01\x6a\x41", [0x49c0] = "\x02\x4c\x6f", + [0x49c1] = "\x02\x4c\x6e", [0x49c2] = "\x02\x4c\x6b", + [0x49c3] = "\x04\x45\x7c", [0x49c4] = "\x02\x4c\x73", + [0x49c5] = "\x02\x4c\x70", [0x49c6] = "\x02\x4c\x74", + [0x49c7] = "\x01\x6a\x46", [0x49c8] = "\x03\x48\x68", + [0x49c9] = "\x02\x4d\x22", [0x49ca] = "\x01\x6a\x3b", + [0x49cb] = "\x02\x4c\x75", [0x49cc] = "\x02\x4c\x76", + [0x49cd] = "\x03\x48\x71", [0x49ce] = "\x02\x4c\x72", + [0x49cf] = "\x03\x48\x73", [0x49d0] = "\x03\x66\x29", + [0x49d1] = "\x03\x48\x6b", [0x49d2] = "\x01\x6a\x45", + [0x49d3] = "\x03\x66\x2b", [0x49d6] = "\x03\x4e\x22", + [0x49d7] = "\x02\x52\x6f", [0x49d8] = "\x01\x6e\x3b", + [0x49d9] = "\x01\x6e\x44", [0x49da] = "\x01\x6e\x40", + [0x49db] = "\x02\x52\x6c", [0x49dc] = "\x03\x4d\x7c", + [0x49dd] = "\x01\x6e\x3d", [0x49de] = "\x01\x6e\x41", + [0x49df] = "\x02\x52\x78", [0x49e0] = "\x01\x6e\x37", + [0x49e1] = "\x02\x52\x70", [0x49e2] = "\x03\x4d\x78", + [0x49e3] = "\x01\x6e\x3f", [0x49e4] = "\x03\x4e\x24", + [0x49e5] = "\x03\x4e\x2f", [0x49e6] = "\x02\x52\x73", + [0x49e7] = "\x02\x52\x6e", [0x49e8] = "\x01\x6e\x3e", + [0x49e9] = "\x01\x6e\x42", [0x49ea] = "\x02\x52\x6d", + [0x49eb] = "\x03\x4e\x2e", [0x49ec] = "\x01\x6e\x3c", + [0x49ed] = "\x03\x4d\x77", [0x49ee] = "\x02\x52\x77", + [0x49ef] = "\x01\x6e\x39", [0x49f0] = "\x02\x52\x76", + [0x49f1] = "\x02\x52\x75", [0x49f2] = "\x01\x6e\x45", + [0x49f3] = "\x02\x50\x3b", [0x49f4] = "\x01\x6e\x38", + [0x49f5] = "\x03\x4e\x2b", [0x49f6] = "\x02\x52\x74", + [0x49f7] = "\x02\x52\x6b", [0x49f8] = "\x03\x4d\x75", + [0x49f9] = "\x01\x6e\x46", [0x49fa] = "\x02\x52\x72", + [0x49fb] = "\x01\x6e\x3a", [0x49fc] = "\x03\x4e\x28", + [0x49fd] = "\x03\x4e\x29", [0x49fe] = "\x03\x4e\x25", + [0x49ff] = "\x03\x4e\x2c", [0x4a00] = "\x03\x4e\x27", + [0x4a01] = "\x03\x4d\x7e", [0x4a02] = "\x03\x4d\x7d", + [0x4a03] = "\x02\x52\x71", [0x4a04] = "\x04\x4c\x45", + [0x4a07] = "\x03\x66\x2a", [0x4a08] = "\x01\x71\x6a", + [0x4a09] = "\x01\x71\x6f", [0x4a0a] = "\x01\x71\x68", + [0x4a0b] = "\x02\x59\x44", [0x4a0c] = "\x02\x59\x3b", + [0x4a0d] = "\x02\x59\x47", [0x4a0e] = "\x02\x59\x3f", + [0x4a0f] = "\x02\x59\x45", [0x4a10] = "\x01\x71\x70", + [0x4a11] = "\x01\x71\x69", [0x4a12] = "\x02\x59\x38", + [0x4a13] = "\x02\x59\x3e", [0x4a14] = "\x02\x59\x48", + [0x4a15] = "\x02\x59\x41", [0x4a16] = "\x02\x59\x46", + [0x4a17] = "\x02\x59\x3a", [0x4a18] = "\x04\x52\x4c", + [0x4a19] = "\x03\x52\x3b", [0x4a1a] = "\x02\x59\x42", + [0x4a1b] = "\x01\x71\x6b", [0x4a1c] = "\x02\x59\x40", + [0x4a1d] = "\x01\x71\x6e", [0x4a1e] = "\x01\x71\x6d", + [0x4a1f] = "\x02\x59\x3c", [0x4a20] = "\x02\x59\x3d", + [0x4a21] = "\x02\x59\x39", [0x4a22] = "\x02\x59\x43", + [0x4a23] = "\x01\x71\x6c", [0x4a24] = "\x02\x59\x4a", + [0x4a25] = "\x02\x59\x49", [0x4a26] = "\x03\x52\x40", + [0x4a27] = "\x03\x52\x3f", [0x4a29] = "\x02\x5e\x47", + [0x4a2a] = "\x02\x5e\x43", [0x4a2b] = "\x01\x74\x69", + [0x4a2c] = "\x03\x55\x79", [0x4a2d] = "\x02\x5e\x3d", + [0x4a2e] = "\x01\x74\x63", [0x4a2f] = "\x01\x74\x73", + [0x4a30] = "\x02\x5e\x49", [0x4a31] = "\x01\x74\x6b", + [0x4a32] = "\x01\x74\x67", [0x4a33] = "\x02\x5e\x40", + [0x4a34] = "\x01\x74\x6e", [0x4a35] = "\x01\x74\x71", + [0x4a36] = "\x02\x5e\x4b", [0x4a37] = "\x01\x74\x66", + [0x4a38] = "\x02\x5e\x42", [0x4a39] = "\x01\x74\x6f", + [0x4a3a] = "\x02\x5e\x4d", [0x4a3b] = "\x02\x5e\x4a", + [0x4a3c] = "\x02\x5e\x3e", [0x4a3d] = "\x01\x74\x6a", + [0x4a3e] = "\x01\x74\x64", [0x4a3f] = "\x01\x74\x72", + [0x4a40] = "\x02\x5e\x45", [0x4a41] = "\x01\x74\x6d", + [0x4a42] = "\x02\x5e\x3f", [0x4a43] = "\x01\x74\x68", + [0x4a44] = "\x02\x5e\x4c", [0x4a45] = "\x01\x74\x6c", + [0x4a46] = "\x01\x74\x65", [0x4a47] = "\x02\x5e\x46", + [0x4a48] = "\x01\x74\x70", [0x4a49] = "\x02\x5e\x44", + [0x4a4c] = "\x02\x5e\x48", [0x4a4d] = "\x03\x55\x7a", + [0x4a4e] = "\x04\x5c\x5f", [0x4a4f] = "\x03\x58\x59", + [0x4a50] = "\x02\x62\x5a", [0x4a51] = "\x02\x62\x60", + [0x4a52] = "\x01\x77\x25", [0x4a53] = "\x02\x62\x63", + [0x4a54] = "\x01\x76\x7e", [0x4a55] = "\x01\x77\x21", + [0x4a56] = "\x02\x62\x5b", [0x4a57] = "\x02\x62\x62", + [0x4a58] = "\x02\x62\x5d", [0x4a59] = "\x01\x77\x26", + [0x4a5a] = "\x01\x77\x23", [0x4a5b] = "\x03\x58\x5b", + [0x4a5c] = "\x02\x62\x59", [0x4a5d] = "\x03\x58\x58", + [0x4a5e] = "\x01\x77\x22", [0x4a5f] = "\x02\x62\x5f", + [0x4a60] = "\x02\x62\x61", [0x4a61] = "\x01\x77\x24", + [0x4a62] = "\x02\x62\x5e", [0x4a63] = "\x02\x62\x5c", + [0x4a64] = "\x03\x66\x2c", [0x4a65] = "\x04\x5c\x5e", + [0x4a66] = "\x03\x58\x5a", [0x4a68] = "\x02\x66\x42", + [0x4a69] = "\x01\x78\x62", [0x4a6a] = "\x01\x78\x63", + [0x4a6b] = "\x01\x78\x5f", [0x4a6c] = "\x03\x5a\x72", + [0x4a6d] = "\x01\x78\x60", [0x4a6e] = "\x03\x5a\x74", + [0x4a6f] = "\x02\x66\x3e", [0x4a70] = "\x02\x66\x3c", + [0x4a71] = "\x03\x5a\x75", [0x4a72] = "\x02\x66\x40", + [0x4a73] = "\x01\x78\x64", [0x4a74] = "\x02\x66\x41", + [0x4a75] = "\x02\x66\x3a", [0x4a76] = "\x02\x66\x39", + [0x4a77] = "\x02\x66\x3d", [0x4a78] = "\x02\x66\x3b", + [0x4a79] = "\x01\x78\x61", [0x4a7a] = "\x02\x66\x3f", + [0x4a7b] = "\x02\x69\x59", [0x4a7c] = "\x01\x7a\x2b", + [0x4a7d] = "\x01\x7a\x2a", [0x4a7e] = "\x02\x69\x5a", + [0x4a7f] = "\x03\x5c\x6c", [0x4a80] = "\x02\x69\x5c", + [0x4a81] = "\x02\x69\x5b", [0x4a82] = "\x01\x7a\x2c", + [0x4a84] = "\x03\x5e\x53", [0x4a85] = "\x03\x5e\x50", + [0x4a86] = "\x02\x6b\x79", [0x4a87] = "\x02\x6b\x76", + [0x4a88] = "\x02\x6b\x77", [0x4a89] = "\x03\x5e\x51", + [0x4a8a] = "\x02\x6b\x75", [0x4a8b] = "\x02\x6b\x78", + [0x4a8c] = "\x01\x7a\x7d", [0x4a8d] = "\x02\x6b\x7a", + [0x4a8e] = "\x03\x5e\x52", [0x4a8f] = "\x01\x7a\x7c", + [0x4a91] = "\x02\x6d\x6f", [0x4a92] = "\x03\x5f\x5a", + [0x4a93] = "\x01\x7c\x41", [0x4a94] = "\x01\x7c\x43", + [0x4a95] = "\x02\x6f\x3d", [0x4a96] = "\x01\x7c\x42", + [0x4a97] = "\x02\x70\x47", [0x4a98] = "\x02\x71\x2f", + [0x4a99] = "\x02\x71\x31", [0x4a9a] = "\x02\x71\x2e", + [0x4a9b] = "\x02\x71\x30", [0x4a9c] = "\x01\x7d\x39", + [0x4a9d] = "\x04\x6d\x78", [0x4a9e] = "\x03\x62\x35", + [0x4b36] = "\x01\x48\x4f", [0x4b37] = "\x04\x25\x57", + [0x4b38] = "\x01\x52\x7e", [0x4b39] = "\x02\x30\x52", + [0x4b3a] = "\x01\x57\x4d", [0x4b3b] = "\x03\x38\x31", + [0x4b3c] = "\x0f\x31\x78", [0x4b3d] = "\x01\x5c\x5f", + [0x4b3e] = "\x02\x3f\x22", [0x4b3f] = "\x02\x3f\x23", + [0x4b40] = "\x03\x66\x2d", [0x4b41] = "\x03\x48\x77", + [0x4b43] = "\x02\x59\x4b", [0x4b44] = "\x01\x74\x74", + [0x4b45] = "\x02\x5e\x4e", [0x4b46] = "\x03\x55\x7d", + [0x4b47] = "\x03\x58\x5c", [0x4b48] = "\x01\x77\x27", + [0x4b4a] = "\x02\x66\x44", [0x4b4b] = "\x02\x66\x43", + [0x4b4c] = "\x01\x7a\x2d", [0x4b4d] = "\x02\x6b\x7b", + [0x4b4e] = "\x03\x5f\x5b", [0x4b4f] = "\x02\x6d\x70", + [0x4b50] = "\x01\x7c\x64", [0x4b51] = "\x02\x22\x69", + [0x4b52] = "\x04\x22\x21", [0x4b54] = "\x01\x4f\x2c", + [0x4b55] = "\x01\x4b\x38", [0x4b57] = "\x0f\x28\x4a", + [0x4b58] = "\x02\x2c\x6e", [0x4b59] = "\x03\x2a\x4e", + [0x4b5b] = "\x02\x32\x24", [0x4b5c] = "\x02\x31\x7d", + [0x4b5d] = "\x02\x32\x23", [0x4b5e] = "\x02\x32\x21", + [0x4b5f] = "\x01\x57\x4e", [0x4b60] = "\x02\x32\x22", + [0x4b61] = "\x02\x31\x7e", [0x4b62] = "\x03\x33\x3c", + [0x4b63] = "\x02\x38\x36", [0x4b64] = "\x04\x3a\x2b", + [0x4b65] = "\x02\x3f\x24", [0x4b66] = "\x02\x3f\x25", + [0x4b67] = "\x02\x46\x30", [0x4b68] = "\x02\x46\x31", + [0x4b69] = "\x01\x65\x75", [0x4b6a] = "\x01\x65\x76", + [0x4b6b] = "\x02\x46\x2f", [0x4b6c] = "\x02\x46\x32", + [0x4b6d] = "\x02\x46\x2e", [0x4b6e] = "\x01\x65\x74", + [0x4b6f] = "\x03\x48\x78", [0x4b70] = "\x01\x6a\x48", + [0x4b71] = "\x03\x48\x79", [0x4b72] = "\x01\x65\x77", + [0x4b73] = "\x02\x4d\x23", [0x4b75] = "\x01\x6e\x47", + [0x4b76] = "\x02\x52\x79", [0x4b77] = "\x01\x6e\x48", + [0x4b78] = "\x03\x4e\x30", [0x4b79] = "\x01\x71\x71", + [0x4b7a] = "\x02\x59\x4e", [0x4b7b] = "\x02\x59\x4c", + [0x4b7c] = "\x02\x59\x4d", [0x4b7d] = "\x02\x5e\x51", + [0x4b7e] = "\x02\x5e\x50", [0x4b7f] = "\x02\x5e\x4f", + [0x4b80] = "\x07\x41\x61", [0x4b82] = "\x04\x5c\x68", + [0x4b83] = "\x02\x66\x45", [0x4b84] = "\x04\x60\x6f", + [0x4b85] = "\x01\x78\x65", [0x4b86] = "\x02\x66\x46", + [0x4b87] = "\x02\x6d\x71", [0x4b88] = "\x01\x7c\x65", + [0x4b89] = "\x02\x70\x48", [0x4b8a] = "\x01\x48\x50", + [0x4b8b] = "\x01\x4f\x2e", [0x4b8c] = "\x01\x4f\x2d", + [0x4b8d] = "\x02\x2c\x70", [0x4b8e] = "\x01\x53\x21", + [0x4b8f] = "\x03\x2e\x5d", [0x4b90] = "\x04\x2f\x30", + [0x4b91] = "\x02\x2c\x6f", [0x4b92] = "\x02\x32\x26", + [0x4b93] = "\x03\x33\x3d", [0x4b94] = "\x01\x57\x4f", + [0x4b95] = "\x02\x38\x37", [0x4b96] = "\x02\x32\x25", + [0x4b97] = "\x03\x33\x3f", [0x4b98] = "\x04\x2f\x2f", + [0x4b99] = "\x03\x33\x3e", [0x4b9a] = "\x01\x5c\x61", + [0x4b9b] = "\x02\x38\x3a", [0x4b9c] = "\x02\x38\x38", + [0x4b9d] = "\x02\x38\x39", [0x4b9e] = "\x01\x5c\x60", + [0x4ba0] = "\x02\x3f\x27", [0x4ba1] = "\x02\x3f\x28", + [0x4ba2] = "\x02\x3f\x26", [0x4ba3] = "\x03\x43\x6e", + [0x4ba4] = "\x01\x65\x7a", [0x4ba5] = "\x02\x46\x34", + [0x4ba6] = "\x02\x46\x33", [0x4ba7] = "\x02\x46\x35", + [0x4ba8] = "\x01\x65\x79", [0x4ba9] = "\x01\x65\x78", + [0x4bab] = "\x04\x46\x26", [0x4bac] = "\x02\x52\x7a", + [0x4bad] = "\x02\x52\x7c", [0x4bae] = "\x03\x4e\x31", + [0x4baf] = "\x01\x6e\x49", [0x4bb0] = "\x02\x52\x7b", + [0x4bb1] = "\x02\x59\x4f", [0x4bb2] = "\x01\x71\x72", + [0x4bb3] = "\x02\x62\x65", [0x4bb4] = "\x03\x58\x5d", + [0x4bb5] = "\x02\x62\x64", [0x4bb6] = "\x01\x78\x66", + [0x4bb7] = "\x02\x66\x47", [0x4bb8] = "\x01\x78\x68", + [0x4bb9] = "\x01\x78\x67", [0x4bba] = "\x02\x69\x5d", + [0x4bbb] = "\x02\x6b\x7c", [0x4bbc] = "\x01\x7a\x7e", + [0x4bbd] = "\x01\x48\x51", [0x4bbe] = "\x02\x2c\x71", + [0x4bbf] = "\x01\x53\x22", [0x4bc0] = "\x02\x32\x29", + [0x4bc1] = "\x01\x57\x51", [0x4bc2] = "\x02\x32\x28", + [0x4bc3] = "\x02\x32\x27", [0x4bc4] = "\x03\x33\x42", + [0x4bc5] = "\x01\x57\x50", [0x4bc6] = "\x03\x33\x43", + [0x4bc7] = "\x02\x38\x40", [0x4bc8] = "\x04\x34\x3d", + [0x4bc9] = "\x02\x38\x42", [0x4bca] = "\x02\x38\x3b", + [0x4bcb] = "\x02\x38\x3c", [0x4bcc] = "\x01\x5c\x62", + [0x4bcd] = "\x02\x38\x3d", [0x4bce] = "\x01\x5c\x63", + [0x4bcf] = "\x02\x38\x41", [0x4bd0] = "\x02\x38\x3e", + [0x4bd1] = "\x02\x38\x3f", [0x4bd2] = "\x01\x5c\x64", + [0x4bd3] = "\x03\x3e\x37", [0x4bd4] = "\x01\x61\x44", + [0x4bd5] = "\x01\x61\x45", [0x4bd6] = "\x03\x3e\x38", + [0x4bd7] = "\x02\x3f\x29", [0x4bdb] = "\x02\x46\x36", + [0x4bdc] = "\x02\x46\x37", [0x4bdd] = "\x03\x43\x72", + [0x4bde] = "\x02\x4d\x27", [0x4bdf] = "\x01\x6a\x4b", + [0x4be0] = "\x01\x6a\x49", [0x4be1] = "\x01\x6a\x4a", + [0x4be2] = "\x02\x4d\x24", [0x4be3] = "\x02\x4d\x25", + [0x4be4] = "\x06\x60\x58", [0x4be5] = "\x02\x4d\x26", + [0x4be6] = "\x02\x53\x23", [0x4be7] = "\x03\x4e\x32", + [0x4be8] = "\x02\x53\x24", [0x4be9] = "\x01\x6e\x4a", + [0x4bea] = "\x02\x53\x21", [0x4beb] = "\x02\x52\x7e", + [0x4bec] = "\x02\x53\x22", [0x4bed] = "\x02\x52\x7d", + [0x4bee] = "\x01\x71\x75", [0x4bef] = "\x02\x59\x50", + [0x4bf0] = "\x01\x71\x73", [0x4bf1] = "\x01\x71\x74", + [0x4bf2] = "\x02\x5e\x53", [0x4bf3] = "\x01\x74\x75", + [0x4bf4] = "\x02\x5e\x52", [0x4bf5] = "\x02\x61\x34", + [0x4bf6] = "\x03\x55\x7e", [0x4bf7] = "\x02\x62\x66", + [0x4bf8] = "\x02\x62\x67", [0x4bf9] = "\x01\x77\x28", + [0x4bfa] = "\x03\x58\x61", [0x4bfb] = "\x01\x77\x29", + [0x4bfc] = "\x01\x74\x76", [0x4bfd] = "\x02\x66\x48", + [0x4bfe] = "\x02\x66\x49", [0x4bff] = "\x02\x69\x5e", + [0x4c00] = "\x01\x7a\x2e", [0x4c01] = "\x01\x48\x52", + [0x4c02] = "\x03\x66\x7b", [0x4c03] = "\x01\x48\x53", + [0x4c04] = "\x01\x57\x53", [0x4c05] = "\x01\x4f\x2f", + [0x4c06] = "\x01\x57\x52", [0x4c07] = "\x02\x2c\x72", + [0x4c08] = "\x03\x38\x36", [0x4c09] = "\x04\x2b\x25", + [0x4c0a] = "\x03\x33\x44", [0x4c0b] = "\x01\x61\x46", + [0x4c0c] = "\x01\x48\x54", [0x4c0d] = "\x01\x53\x24", + [0x4c0e] = "\x02\x2c\x73", [0x4c0f] = "\x02\x2c\x74", + [0x4c10] = "\x01\x53\x23", [0x4c11] = "\x01\x53\x25", + [0x4c12] = "\x01\x48\x55", [0x4c13] = "\x04\x27\x61", + [0x4c14] = "\x02\x2c\x75", [0x4c15] = "\x01\x57\x55", + [0x4c16] = "\x02\x32\x2a", [0x4c17] = "\x01\x57\x57", + [0x4c18] = "\x01\x57\x54", [0x4c19] = "\x01\x57\x56", + [0x4c1a] = "\x03\x38\x37", [0x4c1b] = "\x02\x38\x45", + [0x4c1c] = "\x01\x5c\x65", [0x4c1d] = "\x03\x38\x39", + [0x4c1e] = "\x02\x38\x44", [0x4c1f] = "\x02\x38\x43", + [0x4c20] = "\x04\x3a\x38", [0x4c21] = "\x02\x46\x38", + [0x4c23] = "\x03\x49\x22", [0x4c24] = "\x02\x4d\x28", + [0x4c25] = "\x04\x46\x2c", [0x4c26] = "\x01\x6e\x4b", + [0x4c28] = "\x01\x71\x76", [0x4c29] = "\x02\x59\x52", + [0x4c2a] = "\x02\x59\x51", [0x4c2b] = "\x03\x56\x21", + [0x4c2c] = "\x02\x5e\x54", [0x4c2d] = "\x04\x5c\x71", + [0x4c2e] = "\x03\x58\x62", [0x4c2f] = "\x03\x5c\x6f", + [0x4c30] = "\x02\x6b\x7d", [0x4c31] = "\x04\x69\x2e", + [0x4c32] = "\x04\x69\x2d", [0x4c33] = "\x01\x48\x56", + [0x4c34] = "\x02\x24\x73", [0x4c35] = "\x02\x28\x4a", + [0x4c36] = "\x01\x53\x26", [0x4c37] = "\x02\x2c\x76", + [0x4c38] = "\x06\x3b\x21", [0x4c39] = "\x02\x32\x2c", + [0x4c3a] = "\x04\x2f\x3a", [0x4c3b] = "\x03\x33\x49", + [0x4c3c] = "\x03\x33\x48", [0x4c3d] = "\x01\x57\x58", + [0x4c3e] = "\x02\x32\x2b", [0x4c3f] = "\x01\x57\x59", + [0x4c40] = "\x03\x33\x47", [0x4c41] = "\x03\x66\x2f", + [0x4c43] = "\x02\x38\x47", [0x4c44] = "\x03\x38\x3d", + [0x4c45] = "\x03\x38\x3c", [0x4c46] = "\x01\x5c\x67", + [0x4c47] = "\x02\x38\x46", [0x4c48] = "\x02\x38\x48", + [0x4c49] = "\x03\x38\x3b", [0x4c4a] = "\x01\x5c\x66", + [0x4c4e] = "\x03\x3e\x3c", [0x4c4f] = "\x02\x3f\x2b", + [0x4c50] = "\x02\x3f\x2c", [0x4c51] = "\x02\x3f\x2a", + [0x4c52] = "\x01\x61\x47", [0x4c53] = "\x03\x67\x29", + [0x4c55] = "\x04\x3f\x7c", [0x4c56] = "\x01\x65\x7b", + [0x4c57] = "\x03\x43\x73", [0x4c58] = "\x01\x65\x7c", + [0x4c59] = "\x04\x46\x33", [0x4c5a] = "\x01\x6a\x4d", + [0x4c5b] = "\x03\x49\x23", [0x4c5c] = "\x02\x4d\x2a", + [0x4c5d] = "\x02\x4d\x29", [0x4c5e] = "\x01\x6a\x4c", + [0x4c5f] = "\x03\x49\x26", [0x4c60] = "\x03\x3e\x3b", + [0x4c61] = "\x03\x49\x25", [0x4c63] = "\x03\x66\x30", + [0x4c64] = "\x02\x53\x25", [0x4c65] = "\x03\x4e\x34", + [0x4c66] = "\x03\x4e\x36", [0x4c67] = "\x02\x53\x26", + [0x4c68] = "\x03\x4e\x37", [0x4c6a] = "\x03\x4e\x35", + [0x4c6b] = "\x03\x4e\x38", [0x4c6c] = "\x02\x59\x53", + [0x4c6d] = "\x04\x52\x5c", [0x4c6e] = "\x03\x52\x43", + [0x4c6f] = "\x01\x74\x7a", [0x4c70] = "\x01\x74\x79", + [0x4c71] = "\x01\x74\x77", [0x4c72] = "\x01\x74\x78", + [0x4c73] = "\x01\x74\x7b", [0x4c74] = "\x03\x56\x22", + [0x4c75] = "\x02\x62\x68", [0x4c76] = "\x01\x77\x2b", + [0x4c77] = "\x01\x77\x2a", [0x4c78] = "\x02\x66\x4a", + [0x4c79] = "\x02\x69\x5f", [0x4c7a] = "\x03\x5c\x70", + [0x4c7b] = "\x03\x5c\x71", [0x4c7c] = "\x03\x5c\x72", + [0x4c7d] = "\x01\x7b\x6f", [0x4c7e] = "\x01\x7b\x6e", + [0x4c7f] = "\x01\x48\x57", [0x4c81] = "\x06\x3b\x24", + [0x4c82] = "\x02\x2f\x7d", [0x4c84] = "\x01\x65\x7e", + [0x4c85] = "\x01\x61\x48", [0x4c86] = "\x01\x65\x7d", + [0x4c87] = "\x01\x6a\x4e", [0x4c88] = "\x06\x60\x60", + [0x4c89] = "\x01\x48\x58", [0x4c8a] = "\x02\x21\x68", + [0x4c8b] = "\x01\x48\x59", [0x4c8c] = "\x01\x48\x5a", + [0x4c8d] = "\x03\x24\x35", [0x4c8e] = "\x03\x24\x36", + [0x4c8f] = "\x02\x28\x4b", [0x4c90] = "\x02\x24\x76", + [0x4c91] = "\x03\x27\x24", [0x4c92] = "\x02\x24\x77", + [0x4c93] = "\x01\x4b\x3a", [0x4c94] = "\x03\x27\x26", + [0x4c95] = "\x02\x24\x74", [0x4c96] = "\x01\x4b\x39", + [0x4c97] = "\x03\x27\x25", [0x4c98] = "\x01\x4b\x3c", + [0x4c99] = "\x02\x24\x75", [0x4c9a] = "\x01\x4b\x3e", + [0x4c9b] = "\x01\x4b\x3d", [0x4c9c] = "\x02\x24\x78", + [0x4c9d] = "\x01\x4b\x3b", [0x4c9e] = "\x04\x24\x70", + [0x4c9f] = "\x03\x27\x23", [0x4ca1] = "\x01\x4f\x34", + [0x4ca2] = "\x01\x4f\x32", [0x4ca3] = "\x02\x28\x4d", + [0x4ca4] = "\x03\x2a\x56", [0x4ca5] = "\x01\x4f\x31", + [0x4ca6] = "\x03\x2a\x5b", [0x4ca7] = "\x03\x2a\x58", + [0x4ca8] = "\x03\x2a\x4f", [0x4ca9] = "\x01\x4f\x36", + [0x4caa] = "\x01\x4f\x38", [0x4cab] = "\x01\x4f\x35", + [0x4cac] = "\x03\x2a\x59", [0x4cad] = "\x02\x28\x50", + [0x4cae] = "\x02\x28\x4c", [0x4caf] = "\x01\x4f\x39", + [0x4cb0] = "\x03\x2a\x52", [0x4cb1] = "\x01\x4f\x33", + [0x4cb2] = "\x01\x4b\x3f", [0x4cb3] = "\x03\x2a\x54", + [0x4cb4] = "\x01\x4f\x37", [0x4cb5] = "\x02\x28\x4f", + [0x4cb6] = "\x03\x2a\x57", [0x4cb7] = "\x04\x27\x64", + [0x4cb8] = "\x02\x28\x4e", [0x4cb9] = "\x04\x27\x69", + [0x4cba] = "\x01\x4f\x30", [0x4cbb] = "\x03\x66\x31", + [0x4cc2] = "\x02\x2c\x7c", [0x4cc3] = "\x01\x53\x2a", + [0x4cc4] = "\x01\x53\x2b", [0x4cc5] = "\x02\x2c\x7e", + [0x4cc6] = "\x03\x2e\x66", [0x4cc7] = "\x02\x2c\x78", + [0x4cc8] = "\x02\x2c\x7b", [0x4cc9] = "\x02\x2d\x26", + [0x4cca] = "\x02\x2d\x24", [0x4ccb] = "\x03\x2e\x60", + [0x4ccc] = "\x01\x53\x2c", [0x4ccd] = "\x02\x2d\x2a", + [0x4cce] = "\x01\x53\x2f", [0x4ccf] = "\x02\x2d\x27", + [0x4cd0] = "\x02\x2c\x7d", [0x4cd1] = "\x02\x2c\x7a", + [0x4cd2] = "\x03\x2e\x61", [0x4cd3] = "\x03\x2e\x5e", + [0x4cd4] = "\x02\x3f\x2e", [0x4cd5] = "\x02\x2d\x25", + [0x4cd6] = "\x01\x53\x27", [0x4cd7] = "\x02\x2d\x28", + [0x4cd8] = "\x02\x2c\x77", [0x4cd9] = "\x02\x2d\x22", + [0x4cda] = "\x01\x53\x29", [0x4cdb] = "\x01\x53\x2e", + [0x4cdc] = "\x02\x2d\x23", [0x4cdd] = "\x01\x53\x32", + [0x4cde] = "\x01\x53\x30", [0x4cdf] = "\x03\x2e\x65", + [0x4ce0] = "\x02\x2c\x79", [0x4ce1] = "\x01\x53\x2d", + [0x4ce2] = "\x03\x2e\x64", [0x4ce3] = "\x02\x2d\x21", + [0x4ce4] = "\x01\x53\x31", [0x4ce5] = "\x01\x53\x28", + [0x4ce6] = "\x02\x2d\x29", [0x4ced] = "\x01\x57\x5e", + [0x4cee] = "\x03\x33\x4c", [0x4cef] = "\x01\x57\x67", + [0x4cf0] = "\x01\x57\x5c", [0x4cf1] = "\x01\x57\x5a", + [0x4cf2] = "\x02\x32\x2e", [0x4cf3] = "\x01\x57\x62", + [0x4cf4] = "\x01\x57\x5f", [0x4cf5] = "\x02\x32\x30", + [0x4cf6] = "\x03\x33\x4a", [0x4cf7] = "\x03\x33\x52", + [0x4cf8] = "\x01\x57\x61", [0x4cf9] = "\x02\x32\x2f", + [0x4cfa] = "\x02\x32\x2d", [0x4cfb] = "\x02\x32\x32", + [0x4cfc] = "\x01\x57\x66", [0x4cfd] = "\x01\x57\x64", + [0x4cfe] = "\x02\x3f\x2d", [0x4cff] = "\x03\x33\x4b", + [0x4d00] = "\x02\x32\x33", [0x4d01] = "\x02\x32\x31", + [0x4d02] = "\x01\x57\x5b", [0x4d03] = "\x03\x33\x4e", + [0x4d04] = "\x03\x33\x4d", [0x4d05] = "\x01\x57\x5d", + [0x4d06] = "\x01\x57\x60", [0x4d07] = "\x03\x33\x4f", + [0x4d08] = "\x01\x57\x63", [0x4d09] = "\x03\x2e\x63", + [0x4d0a] = "\x01\x57\x65", [0x4d14] = "\x03\x3e\x44", + [0x4d15] = "\x02\x38\x52", [0x4d16] = "\x01\x5c\x69", + [0x4d17] = "\x03\x38\x49", [0x4d18] = "\x02\x38\x49", + [0x4d19] = "\x02\x38\x4b", [0x4d1a] = "\x03\x38\x47", + [0x4d1b] = "\x02\x38\x4c", [0x4d1c] = "\x04\x34\x4d", + [0x4d1d] = "\x02\x38\x54", [0x4d1e] = "\x02\x38\x50", + [0x4d1f] = "\x02\x38\x4e", [0x4d20] = "\x04\x3a\x3b", + [0x4d21] = "\x02\x38\x51", [0x4d22] = "\x02\x38\x55", + [0x4d23] = "\x01\x5c\x6a", [0x4d24] = "\x01\x5c\x6e", + [0x4d25] = "\x02\x38\x4a", [0x4d26] = "\x04\x34\x47", + [0x4d27] = "\x02\x38\x53", [0x4d28] = "\x04\x34\x50", + [0x4d29] = "\x01\x5c\x6c", [0x4d2a] = "\x03\x38\x41", + [0x4d2b] = "\x01\x5c\x6b", [0x4d2c] = "\x02\x38\x4f", + [0x4d2d] = "\x02\x38\x4d", [0x4d2e] = "\x03\x38\x42", + [0x4d2f] = "\x01\x5c\x68", [0x4d30] = "\x01\x5c\x6d", + [0x4d31] = "\x03\x38\x45", [0x4d34] = "\x03\x38\x48", + [0x4d39] = "\x01\x61\x4e", [0x4d3a] = "\x02\x3f\x36", + [0x4d3b] = "\x03\x3e\x3e", [0x4d3c] = "\x04\x3a\x3e", + [0x4d3d] = "\x02\x3f\x34", [0x4d3e] = "\x01\x61\x50", + [0x4d3f] = "\x04\x3a\x47", [0x4d40] = "\x03\x3e\x43", + [0x4d41] = "\x03\x3e\x45", [0x4d42] = "\x03\x3e\x41", + [0x4d43] = "\x02\x3f\x2f", [0x4d44] = "\x02\x46\x46", + [0x4d45] = "\x03\x3e\x3d", [0x4d46] = "\x01\x61\x4f", + [0x4d47] = "\x02\x3f\x33", [0x4d48] = "\x03\x3e\x40", + [0x4d49] = "\x03\x3e\x42", [0x4d4a] = "\x02\x3f\x30", + [0x4d4b] = "\x01\x61\x4b", [0x4d4c] = "\x01\x61\x51", + [0x4d4d] = "\x02\x3f\x35", [0x4d4e] = "\x01\x61\x4d", + [0x4d4f] = "\x02\x3f\x32", [0x4d50] = "\x01\x6a\x4f", + [0x4d51] = "\x01\x61\x4c", [0x4d52] = "\x02\x3f\x31", + [0x4d53] = "\x01\x61\x52", [0x4d54] = "\x01\x61\x4a", + [0x4d55] = "\x01\x61\x49", [0x4d58] = "\x06\x43\x5a", + [0x4d5b] = "\x02\x46\x3e", [0x4d5c] = "\x02\x46\x3c", + [0x4d5d] = "\x03\x43\x7b", [0x4d5e] = "\x02\x46\x42", + [0x4d5f] = "\x03\x43\x7e", [0x4d60] = "\x02\x46\x3a", + [0x4d61] = "\x02\x46\x47", [0x4d62] = "\x02\x46\x3f", + [0x4d63] = "\x03\x43\x75", [0x4d64] = "\x02\x46\x39", + [0x4d65] = "\x01\x66\x24", [0x4d66] = "\x01\x66\x2a", + [0x4d67] = "\x02\x46\x44", [0x4d68] = "\x04\x40\x29", + [0x4d69] = "\x02\x46\x3d", [0x4d6a] = "\x03\x43\x76", + [0x4d6b] = "\x01\x66\x27", [0x4d6c] = "\x03\x43\x77", + [0x4d6d] = "\x03\x44\x23", [0x4d6e] = "\x01\x66\x25", + [0x4d6f] = "\x02\x46\x45", [0x4d70] = "\x01\x66\x22", + [0x4d71] = "\x01\x66\x21", [0x4d72] = "\x02\x46\x40", + [0x4d73] = "\x01\x66\x26", [0x4d74] = "\x01\x61\x53", + [0x4d75] = "\x03\x43\x7c", [0x4d76] = "\x02\x46\x43", + [0x4d77] = "\x02\x46\x3b", [0x4d78] = "\x01\x66\x23", + [0x4d79] = "\x01\x66\x28", [0x4d7a] = "\x01\x66\x29", + [0x4d7d] = "\x03\x44\x22", [0x4d7f] = "\x01\x6a\x54", + [0x4d80] = "\x01\x6a\x50", [0x4d81] = "\x03\x49\x27", + [0x4d82] = "\x01\x6a\x55", [0x4d83] = "\x02\x4d\x2d", + [0x4d84] = "\x03\x49\x2a", [0x4d85] = "\x04\x46\x39", + [0x4d86] = "\x02\x4d\x2c", [0x4d87] = "\x02\x4d\x2e", + [0x4d88] = "\x01\x6a\x52", [0x4d89] = "\x02\x4d\x2b", + [0x4d8a] = "\x01\x6a\x53", [0x4d8b] = "\x02\x4d\x31", + [0x4d8c] = "\x02\x4d\x30", [0x4d8d] = "\x02\x4d\x2f", + [0x4d8e] = "\x04\x46\x46", [0x4d8f] = "\x01\x6a\x51", + [0x4d90] = "\x04\x52\x67", [0x4d92] = "\x03\x4e\x3b", + [0x4d93] = "\x03\x4e\x3d", [0x4d94] = "\x03\x4e\x39", + [0x4d95] = "\x02\x53\x2a", [0x4d96] = "\x03\x4e\x3c", + [0x4d97] = "\x02\x53\x2d", [0x4d98] = "\x01\x6e\x51", + [0x4d99] = "\x02\x53\x2c", [0x4d9a] = "\x01\x6e\x50", + [0x4d9b] = "\x01\x6e\x4c", [0x4d9c] = "\x01\x6e\x4d", + [0x4d9d] = "\x01\x6e\x4e", [0x4d9e] = "\x02\x53\x29", + [0x4d9f] = "\x02\x53\x28", [0x4da0] = "\x01\x6e\x4f", + [0x4da1] = "\x03\x4e\x3a", [0x4da2] = "\x02\x53\x2b", + [0x4da3] = "\x02\x53\x27", [0x4da6] = "\x02\x59\x55", + [0x4da7] = "\x02\x59\x5f", [0x4da8] = "\x01\x71\x79", + [0x4da9] = "\x01\x71\x78", [0x4daa] = "\x03\x52\x49", + [0x4dab] = "\x02\x59\x59", [0x4dac] = "\x02\x59\x5b", + [0x4dad] = "\x03\x52\x47", [0x4dae] = "\x02\x59\x56", + [0x4daf] = "\x03\x52\x44", [0x4db0] = "\x02\x59\x5a", + [0x4db1] = "\x02\x59\x54", [0x4db2] = "\x02\x59\x5d", + [0x4db3] = "\x01\x71\x77", [0x4db4] = "\x02\x59\x5c", + [0x4db5] = "\x02\x59\x58", [0x4db7] = "\x02\x59\x5e", + [0x4db8] = "\x03\x56\x23", [0x4db9] = "\x02\x59\x57", + [0x4dba] = "\x01\x74\x7e", [0x4dbb] = "\x02\x5e\x55", + [0x4dbc] = "\x02\x5e\x5b", [0x4dbd] = "\x01\x75\x24", + [0x4dbe] = "\x01\x75\x26", [0x4dbf] = "\x01\x75\x23", + [0x4dc0] = "\x01\x75\x22", [0x4dc1] = "\x04\x58\x27", + [0x4dc2] = "\x01\x75\x21", [0x4dc3] = "\x01\x74\x7d", + [0x4dc4] = "\x02\x5e\x56", [0x4dc5] = "\x02\x5e\x59", + [0x4dc6] = "\x01\x74\x7c", [0x4dc7] = "\x02\x5e\x5a", + [0x4dc8] = "\x03\x56\x24", [0x4dc9] = "\x01\x75\x25", + [0x4dca] = "\x02\x5e\x58", [0x4dcb] = "\x07\x48\x7c", + [0x4dcc] = "\x02\x5e\x57", [0x4dcd] = "\x01\x77\x2c", + [0x4dce] = "\x03\x58\x65", [0x4dcf] = "\x01\x77\x2d", + [0x4dd0] = "\x02\x62\x6b", [0x4dd1] = "\x02\x62\x69", + [0x4dd2] = "\x02\x62\x6a", [0x4dd4] = "\x03\x5a\x77", + [0x4dd5] = "\x02\x66\x4c", [0x4dd6] = "\x03\x5a\x78", + [0x4dd7] = "\x02\x66\x4b", [0x4dd8] = "\x01\x78\x69", + [0x4dd9] = "\x02\x69\x61", [0x4dda] = "\x01\x7a\x2f", + [0x4ddb] = "\x02\x69\x60", [0x4ddd] = "\x02\x6b\x7e", + [0x4dde] = "\x02\x6d\x72", [0x4ddf] = "\x01\x7b\x70", + [0x4de0] = "\x02\x71\x32", [0x4de1] = "\x02\x71\x33", + [0x4de2] = "\x01\x7c\x44", [0x4de3] = "\x01\x48\x5b", + [0x4de4] = "\x04\x27\x6c", [0x4de5] = "\x01\x4f\x3a", + [0x4de6] = "\x02\x3f\x37", [0x4de7] = "\x01\x6a\x56", + [0x4de8] = "\x01\x75\x27", [0x4de9] = "\x02\x5e\x5c", + [0x4dea] = "\x01\x48\x5c", [0x4deb] = "\x04\x24\x73", + [0x4dec] = "\x01\x57\x69", [0x4ded] = "\x01\x57\x68", + [0x4dee] = "\x02\x3f\x38", [0x4def] = "\x03\x3e\x47", + [0x4df0] = "\x04\x3a\x4c", [0x4df1] = "\x04\x4c\x62", + [0x4df2] = "\x02\x59\x60", [0x4df3] = "\x01\x48\x5d", + [0x4df4] = "\x01\x53\x33", [0x4df5] = "\x04\x3a\x4d", + [0x4df6] = "\x03\x3e\x48", [0x4df7] = "\x02\x3f\x39", + [0x4df8] = "\x02\x3f\x3a", [0x4df9] = "\x02\x3f\x3b", + [0x4dfa] = "\x01\x6a\x57", [0x4dfb] = "\x01\x71\x7a", + [0x4dfc] = "\x01\x48\x5e", [0x4dfd] = "\x04\x27\x6d", + [0x4dfe] = "\x01\x4f\x3b", [0x4dff] = "\x02\x2d\x2b", + [0x4e00] = "\x01\x57\x6a", [0x4e01] = "\x02\x32\x34", + [0x4e02] = "\x01\x5c\x6f", [0x4e03] = "\x03\x3e\x49", + [0x4e04] = "\x02\x3f\x3c", [0x4e05] = "\x01\x66\x2b", + [0x4e07] = "\x01\x6a\x58", [0x4e08] = "\x01\x71\x7b", + [0x4e09] = "\x01\x75\x28", [0x4e0a] = "\x01\x77\x2e", + [0x4e0b] = "\x02\x66\x4d", [0x4e0c] = "\x01\x48\x5f", + [0x4e0d] = "\x01\x4f\x3c", [0x4e0e] = "\x03\x2a\x5d", + [0x4e0f] = "\x04\x27\x6e", [0x4e10] = "\x01\x57\x6b", + [0x4e11] = "\x02\x38\x56", [0x4e12] = "\x01\x61\x54", + [0x4e13] = "\x03\x49\x2b", [0x4e14] = "\x01\x6a\x59", + [0x4e15] = "\x02\x4d\x32", [0x4e16] = "\x02\x53\x2e", + [0x4e18] = "\x03\x52\x4a", [0x4e19] = "\x03\x58\x68", + [0x4e1a] = "\x03\x5a\x79", [0x4e1b] = "\x01\x48\x60", + [0x4e1c] = "\x01\x61\x55", [0x4e1d] = "\x02\x46\x48", + [0x4e1e] = "\x01\x6a\x5a", [0x4e1f] = "\x01\x48\x61", + [0x4e20] = "\x02\x28\x51", [0x4e21] = "\x02\x2d\x2c", + [0x4e22] = "\x01\x53\x34", [0x4e24] = "\x03\x2e\x68", + [0x4e25] = "\x02\x32\x36", [0x4e26] = "\x04\x2f\x4f", + [0x4e27] = "\x03\x33\x57", [0x4e28] = "\x01\x57\x6e", + [0x4e29] = "\x03\x33\x58", [0x4e2a] = "\x01\x57\x6c", + [0x4e2b] = "\x01\x57\x6d", [0x4e2c] = "\x01\x57\x6f", + [0x4e2d] = "\x03\x33\x55", [0x4e2f] = "\x02\x32\x35", + [0x4e32] = "\x02\x38\x5b", [0x4e33] = "\x02\x38\x58", + [0x4e34] = "\x02\x38\x5a", [0x4e35] = "\x01\x5c\x70", + [0x4e36] = "\x01\x5c\x72", [0x4e37] = "\x01\x5c\x71", + [0x4e38] = "\x02\x38\x57", [0x4e39] = "\x01\x5c\x73", + [0x4e3a] = "\x02\x38\x59", [0x4e3c] = "\x02\x3f\x3d", + [0x4e3d] = "\x02\x3f\x3e", [0x4e3f] = "\x02\x3f\x3f", + [0x4e40] = "\x02\x46\x4b", [0x4e41] = "\x03\x44\x26", + [0x4e42] = "\x02\x46\x4c", [0x4e43] = "\x04\x40\x2e", + [0x4e44] = "\x02\x46\x4a", [0x4e45] = "\x02\x46\x4d", + [0x4e46] = "\x04\x40\x2d", [0x4e47] = "\x01\x66\x2c", + [0x4e48] = "\x03\x66\x34", [0x4e49] = "\x02\x46\x49", + [0x4e4a] = "\x03\x49\x2d", [0x4e4b] = "\x01\x6a\x5b", + [0x4e4c] = "\x03\x49\x2e", [0x4e4e] = "\x02\x53\x33", + [0x4e4f] = "\x02\x53\x2f", [0x4e50] = "\x02\x53\x32", + [0x4e51] = "\x02\x53\x34", [0x4e52] = "\x02\x53\x31", + [0x4e53] = "\x02\x53\x30", [0x4e55] = "\x02\x59\x61", + [0x4e56] = "\x02\x59\x62", [0x4e57] = "\x02\x59\x63", + [0x4e58] = "\x01\x71\x7c", [0x4e59] = "\x01\x71\x7d", + [0x4e5a] = "\x02\x5e\x5e", [0x4e5b] = "\x02\x5e\x5d", + [0x4e5c] = "\x02\x5e\x5f", [0x4e5e] = "\x02\x62\x6d", + [0x4e5f] = "\x02\x62\x6c", [0x4e61] = "\x02\x66\x4f", + [0x4e62] = "\x03\x5a\x7a", [0x4e63] = "\x02\x66\x50", + [0x4e64] = "\x02\x66\x4e", [0x4e65] = "\x03\x5a\x7b", + [0x4e66] = "\x01\x7a\x30", [0x4e67] = "\x04\x64\x2c", + [0x4e68] = "\x02\x69\x62", [0x4e69] = "\x02\x69\x63", + [0x4e6a] = "\x03\x5e\x55", [0x4e6b] = "\x02\x6d\x73", + [0x4e6c] = "\x02\x6f\x3e", [0x4e6d] = "\x02\x70\x49", + [0x4e6e] = "\x01\x48\x62", [0x4e6f] = "\x01\x4b\x40", + [0x4e71] = "\x01\x75\x29", [0x4e72] = "\x01\x48\x63", + [0x4e73] = "\x0f\x32\x32", [0x4e74] = "\x02\x38\x5c", + [0x4e75] = "\x02\x3f\x40", [0x4e76] = "\x03\x5a\x7c", + [0x4e77] = "\x01\x7c\x6c", [0x4e78] = "\x02\x22\x6a", + [0x4e79] = "\x04\x21\x53", [0x4e7b] = "\x03\x24\x38", + [0x4e7c] = "\x02\x22\x6b", [0x4e7d] = "\x02\x22\x6d", + [0x4e7e] = "\x01\x48\x64", [0x4e7f] = "\x02\x22\x6e", + [0x4e80] = "\x02\x22\x6c", [0x4e81] = "\x04\x23\x2f", + [0x4e83] = "\x02\x25\x22", [0x4e84] = "\x02\x25\x23", + [0x4e85] = "\x02\x24\x7b", [0x4e86] = "\x03\x27\x28", + [0x4e87] = "\x04\x24\x7b", [0x4e89] = "\x04\x24\x75", + [0x4e8a] = "\x02\x25\x21", [0x4e8b] = "\x01\x4b\x42", + [0x4e8c] = "\x03\x27\x29", [0x4e8d] = "\x01\x4b\x43", + [0x4e8e] = "\x02\x24\x7c", [0x4e8f] = "\x02\x24\x7a", + [0x4e90] = "\x02\x24\x79", [0x4e91] = "\x02\x24\x7d", + [0x4e92] = "\x01\x4b\x41", [0x4e93] = "\x02\x24\x7e", + [0x4e94] = "\x02\x2d\x2d", [0x4e95] = "\x03\x27\x2b", + [0x4e96] = "\x04\x24\x79", [0x4e98] = "\x02\x28\x56", + [0x4e99] = "\x01\x4f\x3f", [0x4e9a] = "\x02\x28\x55", + [0x4e9b] = "\x02\x28\x57", [0x4e9c] = "\x03\x2a\x60", + [0x4e9d] = "\x01\x4f\x3e", [0x4e9e] = "\x02\x28\x5c", + [0x4e9f] = "\x01\x4f\x42", [0x4ea0] = "\x02\x28\x52", + [0x4ea1] = "\x02\x28\x60", [0x4ea2] = "\x02\x28\x66", + [0x4ea3] = "\x01\x4f\x49", [0x4ea4] = "\x02\x28\x63", + [0x4ea5] = "\x01\x4f\x46", [0x4ea6] = "\x03\x2a\x6b", + [0x4ea7] = "\x02\x28\x59", [0x4ea8] = "\x02\x28\x5f", + [0x4ea9] = "\x02\x28\x61", [0x4eaa] = "\x03\x2a\x66", + [0x4eab] = "\x02\x28\x54", [0x4eac] = "\x01\x4f\x45", + [0x4ead] = "\x01\x4f\x40", [0x4eae] = "\x02\x28\x5a", + [0x4eaf] = "\x01\x4f\x47", [0x4eb0] = "\x01\x4f\x4a", + [0x4eb1] = "\x01\x4f\x44", [0x4eb2] = "\x03\x2a\x6c", + [0x4eb3] = "\x01\x4f\x3d", [0x4eb4] = "\x02\x28\x5e", + [0x4eb5] = "\x02\x28\x58", [0x4eb6] = "\x02\x28\x65", + [0x4eb7] = "\x01\x4f\x4c", [0x4eb8] = "\x01\x4f\x48", + [0x4eb9] = "\x01\x4f\x43", [0x4eba] = "\x02\x28\x5d", + [0x4ebb] = "\x01\x57\x70", [0x4ebc] = "\x02\x28\x5b", + [0x4ebd] = "\x01\x4f\x41", [0x4ebe] = "\x01\x4f\x4b", + [0x4ebf] = "\x04\x27\x7a", [0x4ec0] = "\x02\x28\x53", + [0x4ec1] = "\x04\x27\x7e", [0x4ec2] = "\x02\x28\x62", + [0x4ec3] = "\x02\x28\x64", [0x4ec4] = "\x03\x2a\x5e", + [0x4ec5] = "\x0f\x28\x63", [0x4ec9] = "\x03\x2a\x68", + [0x4eca] = "\x04\x27\x7b", [0x4ed0] = "\x03\x2e\x76", + [0x4ed1] = "\x01\x53\x45", [0x4ed2] = "\x01\x53\x3f", + [0x4ed3] = "\x01\x53\x47", [0x4ed4] = "\x01\x53\x44", + [0x4ed5] = "\x02\x2d\x34", [0x4ed6] = "\x02\x2d\x37", + [0x4ed7] = "\x01\x53\x40", [0x4ed8] = "\x03\x2e\x6a", + [0x4ed9] = "\x02\x2d\x2e", [0x4eda] = "\x04\x2b\x3a", + [0x4edb] = "\x01\x53\x39", [0x4edc] = "\x01\x53\x43", + [0x4edd] = "\x03\x2e\x6b", [0x4ede] = "\x01\x53\x46", + [0x4edf] = "\x01\x53\x48", [0x4ee0] = "\x02\x2d\x43", + [0x4ee1] = "\x02\x2d\x3a", [0x4ee2] = "\x03\x2e\x78", + [0x4ee3] = "\x01\x53\x38", [0x4ee4] = "\x02\x2d\x42", + [0x4ee5] = "\x01\x53\x3c", [0x4ee6] = "\x01\x53\x3a", + [0x4ee7] = "\x01\x53\x35", [0x4ee8] = "\x02\x2d\x32", + [0x4ee9] = "\x03\x2e\x72", [0x4eea] = "\x02\x2d\x41", + [0x4eeb] = "\x02\x2d\x36", [0x4eec] = "\x02\x2d\x39", + [0x4eed] = "\x02\x2d\x46", [0x4eee] = "\x03\x2e\x74", + [0x4eef] = "\x01\x53\x49", [0x4ef0] = "\x02\x2d\x40", + [0x4ef1] = "\x01\x53\x41", [0x4ef2] = "\x02\x2d\x3b", + [0x4ef3] = "\x02\x2d\x45", [0x4ef4] = "\x02\x2d\x38", + [0x4ef5] = "\x02\x2d\x3c", [0x4ef6] = "\x02\x2d\x3f", + [0x4ef7] = "\x03\x2e\x69", [0x4ef8] = "\x03\x2e\x6e", + [0x4ef9] = "\x02\x2d\x30", [0x4efa] = "\x02\x2d\x44", + [0x4efb] = "\x02\x2d\x3e", [0x4efc] = "\x03\x2e\x6f", + [0x4efd] = "\x03\x2e\x7a", [0x4efe] = "\x02\x2d\x2f", + [0x4eff] = "\x06\x34\x3c", [0x4f00] = "\x02\x2d\x33", + [0x4f01] = "\x01\x53\x42", [0x4f02] = "\x01\x53\x3d", + [0x4f03] = "\x01\x53\x36", [0x4f04] = "\x01\x53\x3b", + [0x4f05] = "\x01\x53\x37", [0x4f06] = "\x01\x53\x4a", + [0x4f07] = "\x02\x2d\x31", [0x4f08] = "\x02\x32\x47", + [0x4f09] = "\x01\x53\x3e", [0x4f0a] = "\x04\x2b\x3d", + [0x4f0b] = "\x03\x2e\x79", [0x4f0c] = "\x02\x2d\x3d", + [0x4f0d] = "\x02\x29\x42", [0x4f0e] = "\x03\x2e\x77", + [0x4f10] = "\x03\x66\x35", [0x4f12] = "\x03\x66\x37", + [0x4f16] = "\x02\x32\x4a", [0x4f17] = "\x01\x57\x7e", + [0x4f18] = "\x03\x33\x62", [0x4f19] = "\x02\x32\x3a", + [0x4f1a] = "\x04\x2f\x5d", [0x4f1b] = "\x02\x32\x45", + [0x4f1c] = "\x02\x32\x41", [0x4f1d] = "\x03\x38\x4d", + [0x4f1e] = "\x02\x32\x54", [0x4f1f] = "\x03\x33\x59", + [0x4f20] = "\x02\x32\x4c", [0x4f21] = "\x03\x33\x5f", + [0x4f22] = "\x02\x32\x42", [0x4f23] = "\x03\x38\x5b", + [0x4f24] = "\x02\x32\x4b", [0x4f25] = "\x02\x32\x3c", + [0x4f26] = "\x02\x32\x40", [0x4f27] = "\x02\x32\x57", + [0x4f28] = "\x01\x58\x23", [0x4f29] = "\x02\x32\x4f", + [0x4f2a] = "\x02\x32\x46", [0x4f2b] = "\x01\x57\x71", + [0x4f2c] = "\x02\x32\x55", [0x4f2d] = "\x02\x32\x38", + [0x4f2e] = "\x04\x2f\x5a", [0x4f2f] = "\x02\x32\x4e", + [0x4f30] = "\x04\x2f\x63", [0x4f31] = "\x01\x58\x22", + [0x4f32] = "\x01\x57\x7b", [0x4f33] = "\x02\x32\x37", + [0x4f34] = "\x01\x57\x79", [0x4f35] = "\x01\x57\x78", + [0x4f36] = "\x01\x57\x7d", [0x4f37] = "\x02\x32\x4d", + [0x4f38] = "\x01\x57\x75", [0x4f39] = "\x01\x57\x7c", + [0x4f3a] = "\x02\x2d\x35", [0x4f3b] = "\x02\x3f\x41", + [0x4f3c] = "\x02\x32\x48", [0x4f3d] = "\x04\x2f\x5f", + [0x4f3e] = "\x03\x2a\x5f", [0x4f3f] = "\x02\x32\x3e", + [0x4f40] = "\x01\x58\x21", [0x4f41] = "\x02\x32\x3f", + [0x4f42] = "\x02\x32\x43", [0x4f43] = "\x01\x58\x24", + [0x4f44] = "\x02\x32\x39", [0x4f45] = "\x02\x32\x51", + [0x4f46] = "\x03\x3e\x57", [0x4f47] = "\x02\x32\x50", + [0x4f48] = "\x02\x32\x58", [0x4f49] = "\x01\x57\x77", + [0x4f4a] = "\x01\x57\x74", [0x4f4b] = "\x02\x32\x56", + [0x4f4c] = "\x02\x32\x52", [0x4f4d] = "\x02\x32\x49", + [0x4f4e] = "\x02\x32\x44", [0x4f4f] = "\x01\x57\x7a", + [0x4f50] = "\x01\x57\x76", [0x4f51] = "\x02\x32\x3b", + [0x4f52] = "\x01\x57\x72", [0x4f53] = "\x02\x32\x53", + [0x4f54] = "\x01\x57\x73", [0x4f55] = "\x04\x2f\x5c", + [0x4f56] = "\x02\x32\x3d", [0x4f57] = "\x03\x33\x5a", + [0x4f58] = "\x03\x33\x63", [0x4f62] = "\x03\x66\x36", + [0x4f63] = "\x03\x2d\x33", [0x4f70] = "\x04\x34\x67", + [0x4f71] = "\x03\x38\x4e", [0x4f72] = "\x03\x38\x51", + [0x4f73] = "\x02\x38\x62", [0x4f74] = "\x02\x38\x64", + [0x4f75] = "\x02\x38\x69", [0x4f76] = "\x02\x38\x7d", + [0x4f77] = "\x01\x5d\x23", [0x4f78] = "\x01\x5c\x77", + [0x4f79] = "\x03\x38\x54", [0x4f7a] = "\x02\x38\x61", + [0x4f7b] = "\x01\x5d\x24", [0x4f7c] = "\x01\x5d\x25", + [0x4f7d] = "\x02\x38\x6c", [0x4f7e] = "\x02\x38\x73", + [0x4f7f] = "\x02\x38\x79", [0x4f80] = "\x03\x38\x50", + [0x4f81] = "\x02\x38\x66", [0x4f82] = "\x04\x34\x6d", + [0x4f83] = "\x02\x38\x6d", [0x4f84] = "\x03\x38\x4f", + [0x4f85] = "\x03\x38\x5d", [0x4f86] = "\x01\x5d\x26", + [0x4f87] = "\x02\x38\x7b", [0x4f88] = "\x02\x38\x76", + [0x4f89] = "\x01\x5d\x21", [0x4f8a] = "\x01\x5c\x7d", + [0x4f8b] = "\x02\x38\x72", [0x4f8c] = "\x02\x38\x6e", + [0x4f8d] = "\x02\x38\x60", [0x4f8e] = "\x01\x5c\x74", + [0x4f8f] = "\x02\x38\x65", [0x4f90] = "\x02\x38\x5d", + [0x4f91] = "\x03\x38\x55", [0x4f92] = "\x01\x5c\x7c", + [0x4f93] = "\x01\x5c\x7e", [0x4f94] = "\x02\x38\x6a", + [0x4f95] = "\x02\x38\x67", [0x4f96] = "\x01\x5c\x79", + [0x4f97] = "\x02\x38\x77", [0x4f98] = "\x01\x5c\x76", + [0x4f99] = "\x02\x38\x68", [0x4f9a] = "\x02\x3f\x6a", + [0x4f9b] = "\x02\x38\x70", [0x4f9c] = "\x03\x38\x5e", + [0x4f9d] = "\x02\x38\x6f", [0x4f9e] = "\x01\x5c\x75", + [0x4f9f] = "\x03\x38\x57", [0x4fa0] = "\x01\x5d\x22", + [0x4fa1] = "\x03\x38\x52", [0x4fa2] = "\x01\x5c\x78", + [0x4fa3] = "\x02\x38\x5e", [0x4fa4] = "\x02\x38\x63", + [0x4fa5] = "\x02\x38\x74", [0x4fa6] = "\x02\x38\x7a", + [0x4fa7] = "\x01\x5d\x27", [0x4fa8] = "\x02\x38\x5f", + [0x4fa9] = "\x02\x38\x6b", [0x4faa] = "\x02\x38\x71", + [0x4fab] = "\x01\x5c\x7b", [0x4fac] = "\x04\x34\x6f", + [0x4fad] = "\x03\x38\x58", [0x4fae] = "\x02\x38\x7c", + [0x4faf] = "\x02\x38\x75", [0x4fb0] = "\x02\x38\x78", + [0x4fb7] = "\x03\x38\x5f", [0x4fb9] = "\x0f\x37\x78", + [0x4fbd] = "\x01\x5c\x7a", [0x4fbe] = "\x04\x3a\x68", + [0x4fbf] = "\x02\x3f\x51", [0x4fc0] = "\x02\x3f\x45", + [0x4fc1] = "\x01\x61\x5d", [0x4fc2] = "\x02\x3f\x62", + [0x4fc3] = "\x02\x3f\x6b", [0x4fc4] = "\x02\x3f\x6e", + [0x4fc5] = "\x01\x61\x5b", [0x4fc6] = "\x02\x3f\x4d", + [0x4fc7] = "\x02\x3f\x66", [0x4fc8] = "\x02\x3f\x4e", + [0x4fc9] = "\x02\x3f\x5c", [0x4fca] = "\x01\x61\x68", + [0x4fcb] = "\x02\x3f\x58", [0x4fcc] = "\x01\x61\x65", + [0x4fcd] = "\x03\x3e\x5e", [0x4fce] = "\x02\x3f\x59", + [0x4fcf] = "\x02\x3f\x42", [0x4fd0] = "\x05\x3b\x6f", + [0x4fd1] = "\x02\x3f\x67", [0x4fd2] = "\x03\x3e\x4f", + [0x4fd3] = "\x03\x3e\x59", [0x4fd4] = "\x01\x61\x6e", + [0x4fd5] = "\x02\x3f\x64", [0x4fd6] = "\x02\x3f\x5a", + [0x4fd7] = "\x02\x3f\x70", [0x4fd8] = "\x02\x3f\x55", + [0x4fd9] = "\x02\x46\x6d", [0x4fda] = "\x03\x3e\x4d", + [0x4fdb] = "\x02\x3f\x73", [0x4fdc] = "\x01\x61\x6c", + [0x4fdd] = "\x02\x3f\x53", [0x4fde] = "\x02\x3f\x5f", + [0x4fdf] = "\x01\x61\x6f", [0x4fe0] = "\x01\x61\x5a", + [0x4fe1] = "\x02\x3f\x57", [0x4fe2] = "\x02\x3f\x71", + [0x4fe3] = "\x02\x3f\x50", [0x4fe4] = "\x02\x3f\x49", + [0x4fe5] = "\x02\x3f\x54", [0x4fe6] = "\x03\x3e\x5f", + [0x4fe7] = "\x02\x3f\x48", [0x4fe8] = "\x02\x3f\x46", + [0x4fe9] = "\x01\x61\x56", [0x4fea] = "\x02\x3f\x68", + [0x4feb] = "\x02\x3f\x4f", [0x4fec] = "\x02\x3f\x6c", + [0x4fed] = "\x03\x3e\x4b", [0x4fee] = "\x02\x3f\x6d", + [0x4fef] = "\x01\x61\x5e", [0x4ff0] = "\x01\x61\x63", + [0x4ff1] = "\x01\x61\x5f", [0x4ff2] = "\x01\x61\x67", + [0x4ff3] = "\x02\x3f\x63", [0x4ff4] = "\x01\x61\x60", + [0x4ff5] = "\x02\x3f\x5b", [0x4ff6] = "\x02\x3f\x4b", + [0x4ff7] = "\x0f\x3e\x66", [0x4ff8] = "\x01\x61\x58", + [0x4ff9] = "\x02\x3f\x43", [0x4ffa] = "\x02\x3f\x65", + [0x4ffb] = "\x02\x3f\x6f", [0x4ffc] = "\x02\x3f\x4a", + [0x4ffd] = "\x01\x61\x66", [0x4ffe] = "\x02\x3f\x74", + [0x4fff] = "\x02\x3f\x56", [0x5000] = "\x03\x3e\x52", + [0x5001] = "\x02\x3f\x52", [0x5002] = "\x03\x3e\x5c", + [0x5003] = "\x01\x61\x57", [0x5004] = "\x01\x61\x6b", + [0x5005] = "\x03\x3e\x5a", [0x5006] = "\x02\x3f\x61", + [0x5007] = "\x01\x61\x6d", [0x5008] = "\x03\x3e\x50", + [0x5009] = "\x02\x3f\x5d", [0x500a] = "\x01\x61\x62", + [0x500b] = "\x01\x61\x5c", [0x500c] = "\x01\x61\x64", + [0x500d] = "\x01\x61\x59", [0x500e] = "\x01\x61\x6a", + [0x500f] = "\x02\x3f\x5e", [0x5010] = "\x02\x3f\x4c", + [0x5011] = "\x02\x3f\x60", [0x5012] = "\x02\x3f\x47", + [0x5013] = "\x02\x3f\x69", [0x5014] = "\x03\x3e\x58", + [0x5015] = "\x04\x3a\x67", [0x5016] = "\x03\x3e\x5d", + [0x5017] = "\x03\x3e\x56", [0x5018] = "\x03\x3e\x4e", + [0x501b] = "\x02\x3f\x72", [0x501e] = "\x03\x66\x39", + [0x501f] = "\x03\x3e\x5b", [0x5021] = "\x03\x66\x38", + [0x5023] = "\x02\x3f\x44", [0x5029] = "\x02\x46\x6c", + [0x502a] = "\x03\x44\x2d", [0x502b] = "\x02\x47\x24", + [0x502c] = "\x01\x65\x5c", [0x502d] = "\x02\x46\x71", + [0x502e] = "\x03\x44\x31", [0x502f] = "\x02\x46\x6f", + [0x5030] = "\x02\x46\x5a", [0x5031] = "\x01\x66\x30", + [0x5032] = "\x02\x46\x6a", [0x5033] = "\x02\x46\x7e", + [0x5034] = "\x02\x46\x66", [0x5035] = "\x01\x66\x38", + [0x5036] = "\x02\x46\x7d", [0x5037] = "\x02\x46\x64", + [0x5038] = "\x01\x61\x69", [0x5039] = "\x02\x46\x74", + [0x503a] = "\x02\x46\x65", [0x503b] = "\x02\x46\x7b", + [0x503c] = "\x01\x66\x37", [0x503d] = "\x01\x66\x2f", + [0x503e] = "\x03\x44\x3a", [0x503f] = "\x02\x46\x4f", + [0x5040] = "\x02\x46\x57", [0x5041] = "\x03\x44\x35", + [0x5042] = "\x02\x46\x70", [0x5043] = "\x02\x46\x68", + [0x5044] = "\x02\x47\x23", [0x5045] = "\x02\x46\x6b", + [0x5046] = "\x01\x66\x3d", [0x5047] = "\x02\x46\x7c", + [0x5048] = "\x03\x44\x2c", [0x5049] = "\x01\x66\x34", + [0x504a] = "\x03\x44\x3e", [0x504b] = "\x02\x46\x6e", + [0x504c] = "\x02\x46\x76", [0x504d] = "\x02\x46\x5b", + [0x504e] = "\x02\x46\x75", [0x504f] = "\x03\x44\x27", + [0x5050] = "\x02\x47\x28", [0x5051] = "\x02\x46\x56", + [0x5052] = "\x02\x46\x77", [0x5053] = "\x03\x44\x33", + [0x5054] = "\x02\x47\x26", [0x5055] = "\x03\x44\x3f", + [0x5056] = "\x02\x46\x50", [0x5057] = "\x01\x61\x61", + [0x5058] = "\x03\x44\x40", [0x5059] = "\x02\x46\x5e", + [0x505a] = "\x02\x46\x5d", [0x505b] = "\x01\x66\x36", + [0x505c] = "\x03\x44\x32", [0x505d] = "\x02\x46\x61", + [0x505e] = "\x02\x46\x63", [0x505f] = "\x02\x46\x72", + [0x5060] = "\x02\x47\x25", [0x5061] = "\x01\x66\x39", + [0x5062] = "\x03\x44\x38", [0x5063] = "\x01\x66\x3a", + [0x5064] = "\x03\x44\x30", [0x5065] = "\x02\x46\x55", + [0x5066] = "\x01\x66\x32", [0x5067] = "\x02\x46\x59", + [0x5068] = "\x02\x47\x21", [0x5069] = "\x01\x66\x3b", + [0x506a] = "\x04\x40\x44", [0x506b] = "\x01\x66\x33", + [0x506c] = "\x01\x66\x35", [0x506d] = "\x01\x66\x3c", + [0x506e] = "\x02\x47\x27", [0x506f] = "\x02\x46\x78", + [0x5070] = "\x02\x46\x73", [0x5071] = "\x03\x44\x3c", + [0x5072] = "\x03\x44\x2f", [0x5073] = "\x02\x46\x60", + [0x5074] = "\x02\x46\x5f", [0x5075] = "\x01\x66\x31", + [0x5076] = "\x02\x46\x51", [0x5077] = "\x01\x66\x2e", + [0x5078] = "\x02\x46\x69", [0x5079] = "\x02\x46\x52", + [0x507a] = "\x02\x46\x67", [0x507b] = "\x03\x44\x2e", + [0x507c] = "\x04\x40\x41", [0x507d] = "\x02\x46\x5c", + [0x507e] = "\x02\x47\x22", [0x507f] = "\x03\x44\x2a", + [0x5080] = "\x03\x44\x39", [0x5081] = "\x04\x40\x36", + [0x5082] = "\x01\x66\x2d", [0x5083] = "\x03\x44\x3b", + [0x5084] = "\x03\x44\x28", [0x5086] = "\x02\x46\x58", + [0x5088] = "\x04\x40\x46", [0x508d] = "\x02\x46\x54", + [0x508e] = "\x02\x46\x7a", [0x508f] = "\x02\x46\x53", + [0x5090] = "\x01\x6a\x68", [0x5091] = "\x02\x4d\x5a", + [0x5092] = "\x03\x49\x35", [0x5093] = "\x03\x49\x44", + [0x5094] = "\x02\x4d\x49", [0x5095] = "\x03\x49\x33", + [0x5096] = "\x03\x49\x38", [0x5097] = "\x02\x4d\x33", + [0x5098] = "\x02\x4d\x51", [0x5099] = "\x01\x6a\x60", + [0x509a] = "\x02\x4d\x42", [0x509b] = "\x02\x4d\x4c", + [0x509c] = "\x01\x6a\x63", [0x509d] = "\x02\x4d\x45", + [0x509e] = "\x01\x6a\x61", [0x509f] = "\x02\x4d\x36", + [0x50a0] = "\x02\x4d\x54", [0x50a1] = "\x02\x4d\x35", + [0x50a2] = "\x02\x4d\x48", [0x50a3] = "\x03\x49\x3c", + [0x50a4] = "\x02\x4d\x34", [0x50a5] = "\x03\x49\x39", + [0x50a6] = "\x04\x46\x6c", [0x50a7] = "\x02\x4d\x46", + [0x50a8] = "\x02\x4d\x4f", [0x50a9] = "\x02\x4d\x4d", + [0x50aa] = "\x02\x4d\x41", [0x50ab] = "\x02\x4d\x3c", + [0x50ac] = "\x02\x4d\x3a", [0x50ad] = "\x03\x49\x42", + [0x50ae] = "\x02\x4d\x3b", [0x50af] = "\x02\x4d\x4e", + [0x50b0] = "\x02\x4d\x59", [0x50b1] = "\x02\x4d\x43", + [0x50b2] = "\x01\x6a\x62", [0x50b3] = "\x03\x49\x3b", + [0x50b4] = "\x02\x4d\x3e", [0x50b5] = "\x03\x49\x3a", + [0x50b6] = "\x02\x4d\x52", [0x50b7] = "\x03\x49\x41", + [0x50b8] = "\x01\x6a\x65", [0x50b9] = "\x02\x4d\x3d", + [0x50ba] = "\x02\x4d\x37", [0x50bb] = "\x02\x4d\x47", + [0x50bc] = "\x01\x6a\x69", [0x50bd] = "\x03\x49\x32", + [0x50be] = "\x04\x46\x58", [0x50bf] = "\x01\x6a\x5d", + [0x50c0] = "\x01\x6a\x66", [0x50c1] = "\x02\x4d\x3f", + [0x50c2] = "\x02\x4d\x39", [0x50c3] = "\x03\x49\x36", + [0x50c4] = "\x01\x6a\x5f", [0x50c5] = "\x02\x46\x79", + [0x50c6] = "\x01\x6a\x5e", [0x50c7] = "\x02\x4d\x4a", + [0x50c8] = "\x03\x44\x36", [0x50c9] = "\x01\x6a\x5c", + [0x50ca] = "\x01\x6a\x6b", [0x50cb] = "\x01\x6a\x64", + [0x50cc] = "\x02\x4d\x4b", [0x50cd] = "\x02\x4d\x40", + [0x50ce] = "\x02\x4d\x38", [0x50cf] = "\x02\x4d\x53", + [0x50d0] = "\x02\x4d\x44", [0x50d1] = "\x01\x6a\x6a", + [0x50d2] = "\x02\x4d\x57", [0x50d3] = "\x01\x6a\x67", + [0x50d4] = "\x02\x4d\x56", [0x50d5] = "\x03\x49\x3f", + [0x50d6] = "\x02\x4d\x50", [0x50d7] = "\x02\x4d\x55", + [0x50d8] = "\x03\x49\x3e", [0x50da] = "\x03\x49\x43", + [0x50db] = "\x02\x4d\x58", [0x50de] = "\x03\x66\x3b", + [0x50e1] = "\x03\x66\x3c", [0x50e2] = "\x03\x66\x3a", + [0x50e4] = "\x03\x49\x3d", [0x50e7] = "\x02\x53\x5c", + [0x50e8] = "\x02\x53\x5d", [0x50e9] = "\x02\x53\x50", + [0x50ea] = "\x02\x53\x4f", [0x50eb] = "\x02\x53\x4b", + [0x50ec] = "\x01\x6e\x5d", [0x50ed] = "\x03\x4e\x4f", + [0x50ee] = "\x01\x6e\x55", [0x50ef] = "\x02\x53\x5f", + [0x50f0] = "\x02\x53\x5e", [0x50f1] = "\x02\x46\x4e", + [0x50f2] = "\x02\x53\x48", [0x50f3] = "\x02\x53\x4c", + [0x50f4] = "\x02\x53\x46", [0x50f5] = "\x03\x4e\x44", + [0x50f6] = "\x02\x53\x59", [0x50f7] = "\x02\x53\x4a", + [0x50f8] = "\x03\x4e\x42", [0x50f9] = "\x02\x53\x60", + [0x50fa] = "\x02\x53\x43", [0x50fb] = "\x02\x53\x41", + [0x50fc] = "\x02\x53\x4d", [0x50fd] = "\x02\x53\x57", + [0x50fe] = "\x02\x53\x52", [0x50ff] = "\x01\x6e\x5f", + [0x5100] = "\x02\x53\x38", [0x5101] = "\x03\x4e\x40", + [0x5102] = "\x02\x53\x56", [0x5103] = "\x03\x4e\x4c", + [0x5104] = "\x03\x4e\x46", [0x5105] = "\x03\x4e\x54", + [0x5106] = "\x01\x6e\x60", [0x5107] = "\x02\x46\x62", + [0x5108] = "\x02\x53\x44", [0x5109] = "\x02\x53\x3b", + [0x510a] = "\x02\x53\x3e", [0x510b] = "\x02\x53\x64", + [0x510c] = "\x02\x53\x45", [0x510d] = "\x02\x53\x3c", + [0x510e] = "\x02\x53\x3a", [0x510f] = "\x02\x53\x37", + [0x5110] = "\x04\x4c\x7a", [0x5111] = "\x01\x6e\x59", + [0x5112] = "\x02\x53\x4e", [0x5113] = "\x01\x6e\x58", + [0x5114] = "\x01\x6e\x5c", [0x5115] = "\x02\x53\x49", + [0x5116] = "\x02\x53\x51", [0x5117] = "\x01\x6e\x52", + [0x5118] = "\x02\x53\x61", [0x5119] = "\x02\x53\x65", + [0x511a] = "\x01\x6e\x54", [0x511b] = "\x03\x4e\x4b", + [0x511c] = "\x02\x53\x40", [0x511d] = "\x02\x53\x54", + [0x511e] = "\x02\x53\x58", [0x511f] = "\x02\x53\x3d", + [0x5120] = "\x02\x53\x62", [0x5121] = "\x01\x6e\x5b", + [0x5122] = "\x04\x4c\x6a", [0x5123] = "\x01\x6e\x5a", + [0x5124] = "\x02\x53\x35", [0x5125] = "\x01\x6e\x5e", + [0x5126] = "\x02\x53\x5b", [0x5127] = "\x02\x53\x3f", + [0x5128] = "\x02\x53\x53", [0x5129] = "\x02\x53\x39", + [0x512a] = "\x02\x53\x47", [0x512b] = "\x02\x53\x42", + [0x512c] = "\x01\x6e\x56", [0x512d] = "\x01\x6e\x57", + [0x512e] = "\x02\x53\x55", [0x512f] = "\x02\x53\x66", + [0x5130] = "\x02\x53\x63", [0x5131] = "\x02\x53\x5a", + [0x5132] = "\x04\x4c\x78", [0x5133] = "\x03\x4e\x4d", + [0x5134] = "\x03\x4e\x4e", [0x5135] = "\x03\x4e\x52", + [0x5138] = "\x04\x4c\x74", [0x513b] = "\x02\x53\x36", + [0x513d] = "\x01\x6e\x53", [0x513e] = "\x02\x59\x74", + [0x513f] = "\x03\x52\x5a", [0x5140] = "\x02\x59\x6b", + [0x5141] = "\x02\x59\x6e", [0x5142] = "\x03\x52\x52", + [0x5143] = "\x01\x72\x25", [0x5144] = "\x02\x59\x70", + [0x5145] = "\x02\x59\x65", [0x5146] = "\x02\x59\x6c", + [0x5147] = "\x02\x59\x72", [0x5148] = "\x01\x72\x22", + [0x5149] = "\x01\x72\x26", [0x514a] = "\x01\x71\x7e", + [0x514b] = "\x03\x52\x59", [0x514c] = "\x03\x52\x50", + [0x514d] = "\x02\x59\x67", [0x514e] = "\x02\x59\x77", + [0x514f] = "\x04\x4d\x25", [0x5150] = "\x04\x53\x33", + [0x5151] = "\x02\x59\x71", [0x5152] = "\x04\x53\x24", + [0x5153] = "\x02\x59\x68", [0x5154] = "\x02\x5a\x22", + [0x5155] = "\x02\x59\x7a", [0x5156] = "\x02\x59\x64", + [0x5157] = "\x02\x5e\x72", [0x5158] = "\x02\x59\x6a", + [0x5159] = "\x01\x72\x21", [0x515a] = "\x03\x52\x58", + [0x515b] = "\x02\x59\x75", [0x515c] = "\x03\x52\x54", + [0x515d] = "\x02\x5a\x21", [0x515e] = "\x01\x72\x29", + [0x515f] = "\x03\x52\x56", [0x5160] = "\x02\x59\x7c", + [0x5161] = "\x02\x59\x69", [0x5162] = "\x02\x59\x6f", + [0x5163] = "\x02\x59\x73", [0x5164] = "\x02\x59\x6d", + [0x5165] = "\x02\x5a\x23", [0x5166] = "\x02\x59\x7e", + [0x5167] = "\x02\x59\x7b", [0x5168] = "\x01\x72\x23", + [0x5169] = "\x01\x72\x24", [0x516a] = "\x01\x72\x28", + [0x516b] = "\x02\x59\x66", [0x516c] = "\x02\x5a\x24", + [0x516d] = "\x01\x72\x27", [0x516e] = "\x02\x59\x78", + [0x516f] = "\x03\x52\x4f", [0x5170] = "\x03\x52\x55", + [0x5171] = "\x02\x59\x76", [0x5173] = "\x03\x66\x3d", + [0x5175] = "\x02\x59\x79", [0x5176] = "\x02\x5f\x21", + [0x5177] = "\x02\x5e\x6c", [0x5178] = "\x02\x5e\x71", + [0x5179] = "\x02\x5e\x7e", [0x517a] = "\x02\x5e\x70", + [0x517b] = "\x02\x5e\x68", [0x517c] = "\x02\x5e\x6d", + [0x517d] = "\x04\x58\x3e", [0x517e] = "\x01\x75\x2c", + [0x517f] = "\x03\x56\x2b", [0x5180] = "\x02\x5e\x61", + [0x5181] = "\x02\x5e\x79", [0x5182] = "\x02\x5e\x7b", + [0x5183] = "\x02\x5e\x60", [0x5184] = "\x01\x75\x2b", + [0x5185] = "\x02\x5e\x7d", [0x5186] = "\x02\x5e\x75", + [0x5187] = "\x01\x75\x32", [0x5188] = "\x02\x5e\x7c", + [0x5189] = "\x02\x5e\x6e", [0x518a] = "\x01\x75\x34", + [0x518b] = "\x02\x5e\x66", [0x518c] = "\x02\x59\x7d", + [0x518d] = "\x02\x5e\x76", [0x518e] = "\x02\x5e\x73", + [0x518f] = "\x02\x5e\x62", [0x5190] = "\x02\x5f\x23", + [0x5191] = "\x01\x75\x2e", [0x5192] = "\x03\x56\x28", + [0x5193] = "\x03\x56\x29", [0x5194] = "\x01\x75\x2f", + [0x5195] = "\x02\x5e\x64", [0x5196] = "\x02\x5e\x74", + [0x5197] = "\x03\x56\x2d", [0x5198] = "\x02\x5f\x22", + [0x5199] = "\x02\x5e\x77", [0x519a] = "\x02\x5e\x6a", + [0x519b] = "\x01\x75\x31", [0x519c] = "\x01\x75\x2d", + [0x519d] = "\x02\x5e\x78", [0x519e] = "\x02\x5e\x6b", + [0x519f] = "\x02\x5f\x24", [0x51a0] = "\x02\x5e\x65", + [0x51a1] = "\x02\x5e\x6f", [0x51a2] = "\x02\x5e\x7a", + [0x51a3] = "\x02\x5e\x67", [0x51a4] = "\x02\x5e\x69", + [0x51a5] = "\x04\x58\x40", [0x51a6] = "\x01\x75\x35", + [0x51a7] = "\x02\x5e\x63", [0x51a8] = "\x01\x75\x33", + [0x51a9] = "\x01\x77\x30", [0x51aa] = "\x01\x75\x2a", + [0x51ab] = "\x03\x56\x2c", [0x51ac] = "\x03\x56\x30", + [0x51af] = "\x01\x75\x30", [0x51b0] = "\x01\x77\x34", + [0x51b1] = "\x02\x62\x7d", [0x51b2] = "\x03\x58\x6c", + [0x51b3] = "\x02\x62\x73", [0x51b4] = "\x02\x62\x6e", + [0x51b5] = "\x02\x62\x74", [0x51b6] = "\x02\x62\x7e", + [0x51b7] = "\x02\x63\x24", [0x51b8] = "\x02\x63\x23", + [0x51b9] = "\x01\x77\x36", [0x51ba] = "\x01\x77\x35", + [0x51bb] = "\x03\x58\x6e", [0x51bc] = "\x04\x5d\x2c", + [0x51bd] = "\x02\x62\x75", [0x51be] = "\x02\x63\x25", + [0x51bf] = "\x02\x62\x78", [0x51c0] = "\x02\x62\x70", + [0x51c1] = "\x03\x58\x6f", [0x51c2] = "\x02\x62\x72", + [0x51c3] = "\x02\x62\x71", [0x51c4] = "\x02\x62\x77", + [0x51c5] = "\x02\x62\x7c", [0x51c6] = "\x02\x62\x6f", + [0x51c7] = "\x02\x62\x76", [0x51c8] = "\x02\x62\x7b", + [0x51c9] = "\x01\x77\x33", [0x51ca] = "\x04\x5d\x28", + [0x51cb] = "\x02\x62\x79", [0x51cc] = "\x03\x58\x6b", + [0x51cd] = "\x01\x77\x31", [0x51ce] = "\x02\x62\x7a", + [0x51cf] = "\x01\x77\x2f", [0x51d0] = "\x01\x77\x32", + [0x51d1] = "\x02\x66\x60", [0x51d2] = "\x02\x63\x21", + [0x51d4] = "\x03\x66\x3e", [0x51d5] = "\x01\x78\x6d", + [0x51d6] = "\x03\x5a\x7e", [0x51d7] = "\x02\x66\x58", + [0x51d8] = "\x02\x66\x5c", [0x51d9] = "\x02\x66\x54", + [0x51da] = "\x02\x66\x57", [0x51db] = "\x03\x5a\x7d", + [0x51dc] = "\x02\x66\x5f", [0x51dd] = "\x01\x78\x6b", + [0x51de] = "\x02\x66\x64", [0x51df] = "\x02\x66\x5d", + [0x51e0] = "\x04\x60\x7a", [0x51e1] = "\x02\x66\x55", + [0x51e2] = "\x02\x66\x65", [0x51e3] = "\x02\x66\x5e", + [0x51e4] = "\x01\x78\x6e", [0x51e5] = "\x01\x78\x6f", + [0x51e6] = "\x02\x66\x62", [0x51e7] = "\x03\x5b\x22", + [0x51e8] = "\x02\x66\x56", [0x51e9] = "\x01\x78\x6a", + [0x51ea] = "\x01\x78\x6c", [0x51eb] = "\x02\x66\x51", + [0x51ec] = "\x02\x66\x59", [0x51ed] = "\x02\x66\x53", + [0x51ee] = "\x03\x5c\x7b", [0x51ef] = "\x02\x66\x63", + [0x51f0] = "\x02\x66\x61", [0x51f1] = "\x02\x66\x52", + [0x51f2] = "\x02\x66\x5a", [0x51f3] = "\x04\x60\x7b", + [0x51f4] = "\x03\x5b\x25", [0x51f5] = "\x03\x66\x3f", + [0x51f6] = "\x02\x69\x6a", [0x51f7] = "\x01\x78\x70", + [0x51f8] = "\x02\x66\x5b", [0x51f9] = "\x01\x7a\x32", + [0x51fa] = "\x01\x7a\x34", [0x51fb] = "\x01\x7a\x31", + [0x51fc] = "\x03\x5c\x76", [0x51fd] = "\x02\x69\x6f", + [0x51fe] = "\x02\x69\x67", [0x51ff] = "\x02\x69\x65", + [0x5200] = "\x02\x69\x69", [0x5201] = "\x02\x69\x66", + [0x5202] = "\x03\x5c\x78", [0x5203] = "\x03\x5c\x7c", + [0x5204] = "\x02\x69\x6b", [0x5205] = "\x02\x69\x6d", + [0x5206] = "\x01\x7a\x35", [0x5207] = "\x01\x7a\x37", + [0x5208] = "\x03\x5d\x22", [0x5209] = "\x02\x69\x6c", + [0x520a] = "\x01\x7a\x38", [0x520b] = "\x01\x7a\x36", + [0x520c] = "\x02\x69\x6e", [0x520d] = "\x03\x5c\x7e", + [0x520e] = "\x04\x64\x37", [0x520f] = "\x03\x5d\x23", + [0x5210] = "\x03\x5c\x77", [0x5211] = "\x01\x7a\x33", + [0x5213] = "\x03\x5d\x21", [0x5215] = "\x03\x5e\x5b", + [0x5216] = "\x03\x5e\x5a", [0x5217] = "\x01\x7b\x21", + [0x5218] = "\x02\x6c\x21", [0x5219] = "\x02\x6c\x27", + [0x521a] = "\x01\x7b\x23", [0x521b] = "\x02\x69\x68", + [0x521c] = "\x02\x6c\x26", [0x521d] = "\x03\x5e\x5c", + [0x521e] = "\x02\x6c\x2d", [0x521f] = "\x02\x6c\x24", + [0x5220] = "\x02\x6c\x2b", [0x5221] = "\x02\x6c\x2a", + [0x5222] = "\x02\x69\x64", [0x5223] = "\x02\x6c\x25", + [0x5224] = "\x02\x63\x22", [0x5225] = "\x02\x6c\x2e", + [0x5226] = "\x02\x6c\x23", [0x5227] = "\x02\x6c\x28", + [0x5228] = "\x03\x5e\x58", [0x5229] = "\x02\x6c\x2c", + [0x522a] = "\x02\x6c\x22", [0x522b] = "\x03\x5e\x56", + [0x522c] = "\x02\x6d\x77", [0x522d] = "\x01\x7b\x22", + [0x522e] = "\x02\x6c\x29", [0x522f] = "\x03\x5e\x57", + [0x5231] = "\x02\x6f\x43", [0x5232] = "\x02\x6d\x78", + [0x5233] = "\x02\x6d\x76", [0x5234] = "\x02\x6d\x74", + [0x5235] = "\x02\x6d\x75", [0x5236] = "\x02\x6d\x79", + [0x5237] = "\x03\x66\x40", [0x5238] = "\x01\x7c\x45", + [0x5239] = "\x02\x6f\x41", [0x523a] = "\x02\x6f\x3f", + [0x523b] = "\x02\x6f\x44", [0x523c] = "\x02\x6f\x42", + [0x523d] = "\x03\x60\x43", [0x523e] = "\x02\x6f\x45", + [0x523f] = "\x01\x7c\x46", [0x5240] = "\x02\x6f\x40", + [0x5241] = "\x03\x60\x2f", [0x5242] = "\x03\x61\x46", + [0x5243] = "\x02\x70\x4a", [0x5245] = "\x03\x66\x41", + [0x5246] = "\x02\x71\x34", [0x5247] = "\x02\x71\x35", + [0x5248] = "\x02\x71\x36", [0x5249] = "\x03\x61\x47", + [0x524a] = "\x03\x61\x7c", [0x524b] = "\x02\x72\x35", + [0x524c] = "\x02\x72\x2d", [0x524d] = "\x02\x22\x6f", + [0x524e] = "\x01\x4f\x4d", [0x5250] = "\x01\x53\x4b", + [0x5251] = "\x04\x2f\x68", [0x5252] = "\x02\x32\x5a", + [0x5253] = "\x02\x32\x59", [0x5254] = "\x01\x58\x25", + [0x5255] = "\x01\x5d\x28", [0x5256] = "\x02\x39\x21", + [0x5257] = "\x03\x38\x63", [0x5258] = "\x03\x38\x60", + [0x5259] = "\x02\x38\x7e", [0x525a] = "\x03\x38\x61", + [0x525b] = "\x01\x61\x70", [0x525c] = "\x01\x66\x3f", + [0x525d] = "\x03\x3e\x61", [0x525e] = "\x01\x66\x3e", + [0x525f] = "\x01\x66\x40", [0x5260] = "\x05\x49\x4e", + [0x5261] = "\x02\x4d\x5b", [0x5262] = "\x02\x53\x67", + [0x5263] = "\x02\x5a\x25", [0x5264] = "\x02\x5a\x27", + [0x5265] = "\x02\x5a\x26", [0x5266] = "\x07\x32\x61", + [0x5267] = "\x01\x75\x36", [0x5268] = "\x02\x5f\x25", + [0x5269] = "\x02\x63\x26", [0x526a] = "\x02\x71\x73", + [0x526b] = "\x01\x48\x65", [0x526c] = "\x03\x27\x2d", + [0x526d] = "\x02\x28\x69", [0x526e] = "\x02\x28\x6a", + [0x526f] = "\x02\x28\x68", [0x5270] = "\x02\x28\x67", + [0x5271] = "\x01\x4f\x4e", [0x5272] = "\x03\x66\x42", + [0x5273] = "\x02\x2d\x4a", [0x5274] = "\x02\x2d\x48", + [0x5275] = "\x03\x2f\x23", [0x5276] = "\x03\x2e\x7c", + [0x5277] = "\x02\x2d\x47", [0x5278] = "\x03\x2e\x7e", + [0x5279] = "\x01\x53\x4c", [0x527a] = "\x01\x53\x4e", + [0x527b] = "\x01\x53\x4d", [0x527c] = "\x02\x2d\x49", + [0x527d] = "\x03\x2f\x24", [0x527e] = "\x0f\x2d\x3e", + [0x5284] = "\x03\x33\x69", [0x5285] = "\x02\x32\x66", + [0x5286] = "\x02\x32\x63", [0x5287] = "\x02\x32\x61", + [0x5288] = "\x04\x2f\x6d", [0x5289] = "\x03\x33\x6c", + [0x528a] = "\x01\x58\x26", [0x528b] = "\x02\x32\x64", + [0x528c] = "\x01\x58\x2b", [0x528d] = "\x02\x32\x5e", + [0x528e] = "\x02\x32\x6d", [0x528f] = "\x03\x33\x6f", + [0x5290] = "\x02\x32\x6f", [0x5291] = "\x02\x32\x5f", + [0x5292] = "\x03\x33\x6e", [0x5293] = "\x01\x58\x28", + [0x5294] = "\x02\x32\x70", [0x5295] = "\x02\x32\x6b", + [0x5296] = "\x02\x32\x5d", [0x5297] = "\x02\x32\x62", + [0x5298] = "\x02\x32\x6c", [0x5299] = "\x02\x32\x68", + [0x529a] = "\x02\x32\x65", [0x529b] = "\x03\x33\x6b", + [0x529c] = "\x01\x58\x2d", [0x529d] = "\x02\x32\x6e", + [0x529e] = "\x02\x32\x60", [0x529f] = "\x03\x33\x6a", + [0x52a0] = "\x03\x33\x70", [0x52a1] = "\x02\x32\x69", + [0x52a2] = "\x02\x32\x5b", [0x52a3] = "\x01\x58\x2c", + [0x52a4] = "\x01\x58\x29", [0x52a5] = "\x02\x32\x67", + [0x52a6] = "\x03\x33\x6d", [0x52a7] = "\x02\x32\x6a", + [0x52a8] = "\x02\x32\x5c", [0x52a9] = "\x01\x58\x2a", + [0x52aa] = "\x01\x58\x27", [0x52ad] = "\x04\x34\x7a", + [0x52ae] = "\x03\x38\x66", [0x52af] = "\x01\x5d\x32", + [0x52b0] = "\x02\x39\x28", [0x52b1] = "\x01\x5d\x31", + [0x52b2] = "\x03\x38\x64", [0x52b3] = "\x02\x39\x2b", + [0x52b4] = "\x02\x39\x2e", [0x52b5] = "\x01\x5d\x2e", + [0x52b6] = "\x01\x5d\x2c", [0x52b7] = "\x02\x39\x23", + [0x52b8] = "\x02\x39\x2c", [0x52b9] = "\x02\x39\x2a", + [0x52ba] = "\x02\x39\x27", [0x52bb] = "\x02\x39\x2f", + [0x52bc] = "\x02\x39\x30", [0x52bd] = "\x02\x39\x32", + [0x52be] = "\x02\x39\x33", [0x52bf] = "\x02\x39\x22", + [0x52c0] = "\x01\x5d\x2b", [0x52c1] = "\x02\x39\x25", + [0x52c2] = "\x02\x39\x24", [0x52c3] = "\x02\x39\x31", + [0x52c4] = "\x01\x5d\x2d", [0x52c5] = "\x02\x39\x26", + [0x52c6] = "\x01\x5d\x2f", [0x52c7] = "\x01\x5d\x2a", + [0x52c8] = "\x02\x39\x29", [0x52c9] = "\x01\x5d\x33", + [0x52ca] = "\x04\x35\x26", [0x52cb] = "\x01\x5d\x30", + [0x52cc] = "\x02\x39\x2d", [0x52cf] = "\x0f\x38\x3a", + [0x52d0] = "\x01\x61\x77", [0x52d1] = "\x02\x40\x25", + [0x52d2] = "\x04\x3a\x71", [0x52d3] = "\x02\x3f\x78", + [0x52d4] = "\x01\x61\x74", [0x52d5] = "\x03\x3e\x62", + [0x52d6] = "\x02\x47\x2e", [0x52d7] = "\x02\x40\x23", + [0x52d8] = "\x02\x3f\x75", [0x52d9] = "\x01\x61\x72", + [0x52da] = "\x02\x3f\x7a", [0x52db] = "\x01\x61\x75", + [0x52dc] = "\x02\x3f\x7e", [0x52dd] = "\x02\x3f\x7c", + [0x52de] = "\x01\x61\x78", [0x52df] = "\x01\x61\x71", + [0x52e0] = "\x04\x3a\x76", [0x52e1] = "\x03\x3e\x63", + [0x52e2] = "\x02\x3f\x76", [0x52e3] = "\x02\x3f\x79", + [0x52e4] = "\x01\x61\x76", [0x52e5] = "\x04\x3a\x6f", + [0x52e6] = "\x02\x3f\x77", [0x52e7] = "\x05\x3b\x7b", + [0x52e8] = "\x02\x40\x24", [0x52e9] = "\x02\x40\x22", + [0x52ea] = "\x02\x3f\x7b", [0x52eb] = "\x02\x3f\x7d", + [0x52ec] = "\x02\x40\x21", [0x52ed] = "\x01\x61\x73", + [0x52ee] = "\x03\x3e\x68", [0x52f5] = "\x02\x47\x2f", + [0x52f6] = "\x02\x47\x35", [0x52f7] = "\x02\x47\x2b", + [0x52f8] = "\x02\x47\x31", [0x52f9] = "\x01\x66\x41", + [0x52fa] = "\x02\x47\x2d", [0x52fb] = "\x01\x66\x47", + [0x52fc] = "\x03\x44\x44", [0x52fd] = "\x03\x44\x45", + [0x52fe] = "\x01\x66\x46", [0x52ff] = "\x03\x44\x49", + [0x5300] = "\x01\x66\x45", [0x5301] = "\x02\x47\x34", + [0x5302] = "\x01\x66\x48", [0x5303] = "\x01\x66\x49", + [0x5304] = "\x02\x47\x2a", [0x5305] = "\x02\x47\x37", + [0x5306] = "\x01\x66\x4a", [0x5307] = "\x01\x66\x44", + [0x5308] = "\x01\x66\x43", [0x5309] = "\x02\x47\x33", + [0x530a] = "\x01\x66\x4b", [0x530b] = "\x02\x47\x29", + [0x530c] = "\x02\x47\x2c", [0x530d] = "\x02\x47\x36", + [0x530e] = "\x02\x47\x32", [0x530f] = "\x04\x40\x59", + [0x5310] = "\x04\x40\x52", [0x5311] = "\x02\x4d\x7b", + [0x5312] = "\x02\x4d\x70", [0x5313] = "\x01\x66\x42", + [0x5314] = "\x05\x42\x5d", [0x5315] = "\x03\x44\x46", + [0x5316] = "\x03\x44\x48", [0x5318] = "\x01\x6a\x72", + [0x5319] = "\x02\x4d\x64", [0x531a] = "\x02\x4d\x79", + [0x531b] = "\x02\x4d\x65", [0x531c] = "\x01\x6a\x6d", + [0x531d] = "\x03\x49\x4f", [0x531e] = "\x02\x4d\x62", + [0x531f] = "\x04\x40\x55", [0x5320] = "\x02\x4d\x6b", + [0x5321] = "\x02\x4d\x63", [0x5322] = "\x01\x6a\x6f", + [0x5323] = "\x02\x4d\x5d", [0x5324] = "\x02\x4d\x78", + [0x5325] = "\x01\x6a\x70", [0x5326] = "\x02\x4d\x75", + [0x5327] = "\x02\x4d\x76", [0x5328] = "\x02\x4d\x5e", + [0x5329] = "\x01\x6a\x75", [0x532a] = "\x02\x4d\x6d", + [0x532b] = "\x03\x49\x4a", [0x532c] = "\x02\x4d\x67", + [0x532d] = "\x02\x4d\x6e", [0x532e] = "\x02\x4d\x61", + [0x532f] = "\x04\x46\x7e", [0x5330] = "\x02\x4d\x7a", + [0x5331] = "\x02\x4d\x72", [0x5332] = "\x02\x4d\x6c", + [0x5333] = "\x02\x4d\x5c", [0x5334] = "\x01\x6a\x71", + [0x5335] = "\x02\x4d\x73", [0x5336] = "\x03\x49\x45", + [0x5337] = "\x01\x6a\x74", [0x5338] = "\x02\x4d\x77", + [0x5339] = "\x03\x49\x4c", [0x533a] = "\x02\x4d\x71", + [0x533b] = "\x01\x6a\x6e", [0x533c] = "\x02\x4d\x6f", + [0x533d] = "\x03\x49\x49", [0x533e] = "\x02\x4d\x69", + [0x533f] = "\x01\x6a\x6c", [0x5340] = "\x02\x4d\x60", + [0x5341] = "\x02\x4d\x68", [0x5342] = "\x02\x4d\x74", + [0x5343] = "\x02\x4d\x66", [0x5344] = "\x0f\x4c\x33", + [0x5345] = "\x03\x49\x4e", [0x5346] = "\x02\x4d\x6a", + [0x5347] = "\x03\x49\x4b", [0x534a] = "\x03\x66\x43", + [0x534c] = "\x01\x6e\x6a", [0x534d] = "\x02\x47\x30", + [0x534e] = "\x02\x53\x79", [0x534f] = "\x02\x54\x24", + [0x5350] = "\x02\x53\x78", [0x5351] = "\x02\x53\x74", + [0x5352] = "\x02\x53\x71", [0x5353] = "\x01\x6e\x6b", + [0x5354] = "\x02\x53\x6f", [0x5355] = "\x01\x6a\x73", + [0x5356] = "\x02\x53\x68", [0x5357] = "\x01\x6e\x69", + [0x5358] = "\x02\x53\x6e", [0x5359] = "\x01\x6e\x68", + [0x535a] = "\x02\x53\x73", [0x535b] = "\x02\x53\x70", + [0x535c] = "\x02\x54\x22", [0x535d] = "\x02\x53\x7b", + [0x535e] = "\x02\x53\x75", [0x535f] = "\x02\x53\x7a", + [0x5360] = "\x01\x6e\x64", [0x5361] = "\x02\x53\x72", + [0x5362] = "\x02\x54\x27", [0x5363] = "\x02\x53\x69", + [0x5364] = "\x02\x53\x6a", [0x5365] = "\x02\x54\x23", + [0x5366] = "\x01\x6e\x65", [0x5367] = "\x02\x54\x28", + [0x5368] = "\x01\x6e\x67", [0x5369] = "\x02\x54\x29", + [0x536a] = "\x02\x53\x77", [0x536b] = "\x02\x4d\x5f", + [0x536c] = "\x02\x53\x7d", [0x536d] = "\x02\x53\x76", + [0x536e] = "\x02\x54\x21", [0x536f] = "\x02\x53\x7c", + [0x5370] = "\x05\x50\x55", [0x5371] = "\x03\x4e\x5d", + [0x5372] = "\x04\x4d\x28", [0x5373] = "\x02\x53\x6d", + [0x5374] = "\x01\x6e\x62", [0x5375] = "\x02\x54\x26", + [0x5376] = "\x01\x6e\x63", [0x5377] = "\x02\x53\x6b", + [0x5378] = "\x01\x6e\x66", [0x5379] = "\x02\x5a\x32", + [0x537a] = "\x02\x53\x7e", [0x537b] = "\x02\x54\x25", + [0x537c] = "\x04\x4d\x31", [0x537d] = "\x03\x4e\x59", + [0x5381] = "\x02\x5a\x2f", [0x5382] = "\x01\x6e\x61", + [0x5383] = "\x01\x72\x2a", [0x5384] = "\x02\x5a\x39", + [0x5385] = "\x02\x5a\x35", [0x5386] = "\x04\x53\x3c", + [0x5387] = "\x02\x5a\x33", [0x5388] = "\x02\x5a\x2e", + [0x5389] = "\x02\x5a\x3d", [0x538a] = "\x03\x52\x5b", + [0x538b] = "\x03\x52\x5d", [0x538c] = "\x04\x53\x44", + [0x538d] = "\x01\x72\x2e", [0x538e] = "\x03\x52\x5f", + [0x538f] = "\x02\x5a\x2a", [0x5390] = "\x02\x5a\x36", + [0x5391] = "\x02\x5a\x37", [0x5392] = "\x02\x5a\x2d", + [0x5393] = "\x02\x5a\x2c", [0x5394] = "\x02\x5a\x3a", + [0x5395] = "\x04\x53\x41", [0x5396] = "\x02\x5a\x30", + [0x5397] = "\x02\x5a\x2b", [0x5398] = "\x02\x5a\x31", + [0x5399] = "\x03\x52\x62", [0x539a] = "\x02\x5a\x3c", + [0x539b] = "\x02\x5a\x29", [0x539c] = "\x02\x5a\x3b", + [0x539d] = "\x02\x5a\x38", [0x539e] = "\x01\x72\x2c", + [0x539f] = "\x01\x72\x2b", [0x53a0] = "\x04\x53\x39", + [0x53a1] = "\x03\x52\x5e", [0x53a2] = "\x01\x72\x2d", + [0x53a3] = "\x02\x5a\x34", [0x53a4] = "\x02\x5a\x28", + [0x53a5] = "\x03\x66\x45", [0x53a9] = "\x03\x66\x44", + [0x53aa] = "\x02\x5f\x27", [0x53ab] = "\x01\x75\x3c", + [0x53ac] = "\x02\x5f\x2b", [0x53ad] = "\x02\x5f\x28", + [0x53ae] = "\x02\x5f\x2f", [0x53af] = "\x02\x5f\x35", + [0x53b0] = "\x02\x5f\x2a", [0x53b1] = "\x03\x56\x3a", + [0x53b2] = "\x02\x5f\x3e", [0x53b3] = "\x01\x75\x39", + [0x53b4] = "\x02\x5f\x38", [0x53b5] = "\x02\x5f\x2d", + [0x53b6] = "\x02\x5f\x39", [0x53b7] = "\x02\x5f\x34", + [0x53b8] = "\x02\x5f\x3b", [0x53b9] = "\x02\x5f\x2c", + [0x53ba] = "\x01\x75\x3e", [0x53bb] = "\x01\x75\x3d", + [0x53bc] = "\x02\x5f\x2e", [0x53bd] = "\x02\x5f\x3c", + [0x53be] = "\x02\x5f\x26", [0x53bf] = "\x02\x5f\x3a", + [0x53c0] = "\x01\x75\x37", [0x53c1] = "\x03\x56\x39", + [0x53c2] = "\x02\x5f\x32", [0x53c3] = "\x02\x5f\x31", + [0x53c4] = "\x02\x5f\x36", [0x53c5] = "\x02\x5f\x29", + [0x53c6] = "\x01\x75\x3b", [0x53c7] = "\x03\x56\x3b", + [0x53c8] = "\x01\x75\x3f", [0x53c9] = "\x02\x5f\x30", + [0x53ca] = "\x02\x5f\x37", [0x53cb] = "\x01\x75\x40", + [0x53cc] = "\x02\x5f\x33", [0x53cd] = "\x03\x56\x36", + [0x53ce] = "\x03\x56\x34", [0x53d1] = "\x01\x75\x38", + [0x53d2] = "\x01\x75\x3a", [0x53d3] = "\x02\x63\x33", + [0x53d4] = "\x02\x63\x31", [0x53d5] = "\x03\x5b\x28", + [0x53d6] = "\x03\x58\x76", [0x53d7] = "\x02\x63\x37", + [0x53d8] = "\x02\x63\x35", [0x53d9] = "\x02\x63\x38", + [0x53da] = "\x03\x58\x78", [0x53db] = "\x02\x63\x2a", + [0x53dc] = "\x02\x63\x32", [0x53dd] = "\x02\x63\x3c", + [0x53de] = "\x02\x5f\x3d", [0x53df] = "\x02\x63\x2e", + [0x53e0] = "\x01\x77\x3a", [0x53e1] = "\x02\x53\x6c", + [0x53e2] = "\x02\x63\x29", [0x53e3] = "\x02\x63\x36", + [0x53e4] = "\x02\x63\x30", [0x53e5] = "\x02\x63\x2d", + [0x53e6] = "\x02\x63\x28", [0x53e7] = "\x02\x63\x27", + [0x53e8] = "\x02\x63\x3b", [0x53e9] = "\x03\x58\x73", + [0x53ea] = "\x02\x63\x2c", [0x53eb] = "\x02\x63\x2b", + [0x53ec] = "\x01\x77\x38", [0x53ed] = "\x02\x63\x34", + [0x53ee] = "\x03\x58\x74", [0x53ef] = "\x01\x77\x37", + [0x53f0] = "\x03\x58\x75", [0x53f1] = "\x05\x64\x48", + [0x53f2] = "\x01\x77\x39", [0x53f3] = "\x02\x63\x2f", + [0x53f4] = "\x02\x63\x3a", [0x53f5] = "\x03\x66\x46", + [0x53f6] = "\x02\x66\x69", [0x53f7] = "\x02\x66\x6a", + [0x53f8] = "\x03\x5b\x2c", [0x53f9] = "\x01\x78\x74", + [0x53fa] = "\x02\x66\x67", [0x53fb] = "\x01\x78\x71", + [0x53fc] = "\x02\x66\x6f", [0x53fd] = "\x03\x5b\x27", + [0x53fe] = "\x01\x78\x75", [0x53ff] = "\x02\x66\x71", + [0x5400] = "\x02\x66\x66", [0x5401] = "\x02\x63\x39", + [0x5402] = "\x02\x66\x73", [0x5403] = "\x02\x66\x68", + [0x5404] = "\x05\x69\x43", [0x5405] = "\x01\x78\x72", + [0x5406] = "\x02\x66\x6e", [0x5407] = "\x03\x5b\x29", + [0x5408] = "\x02\x66\x70", [0x5409] = "\x02\x66\x6b", + [0x540a] = "\x02\x66\x72", [0x540b] = "\x02\x66\x6d", + [0x540c] = "\x02\x66\x6c", [0x540d] = "\x01\x78\x73", + [0x540e] = "\x03\x58\x77", [0x540f] = "\x03\x5b\x2b", + [0x5410] = "\x02\x69\x71", [0x5411] = "\x02\x69\x72", + [0x5412] = "\x03\x5d\x25", [0x5413] = "\x02\x69\x74", + [0x5414] = "\x01\x7a\x39", [0x5415] = "\x01\x7a\x3a", + [0x5416] = "\x02\x69\x75", [0x5417] = "\x02\x69\x73", + [0x5418] = "\x03\x5d\x24", [0x5419] = "\x02\x69\x70", + [0x541a] = "\x03\x5e\x5d", [0x541b] = "\x02\x6c\x31", + [0x541c] = "\x02\x6c\x34", [0x541d] = "\x02\x6c\x30", + [0x541e] = "\x04\x61\x26", [0x541f] = "\x01\x7b\x27", + [0x5420] = "\x02\x6c\x32", [0x5421] = "\x01\x7b\x26", + [0x5422] = "\x01\x7b\x25", [0x5423] = "\x01\x7b\x24", + [0x5424] = "\x02\x6c\x33", [0x5425] = "\x02\x6d\x7e", + [0x5426] = "\x02\x6d\x7c", [0x5427] = "\x03\x5f\x5f", + [0x5428] = "\x02\x6d\x7b", [0x5429] = "\x02\x6c\x2f", + [0x542a] = "\x02\x6d\x7d", [0x542b] = "\x02\x6c\x35", + [0x542c] = "\x02\x6d\x7a", [0x542d] = "\x03\x60\x45", + [0x542e] = "\x02\x6f\x48", [0x542f] = "\x02\x6f\x26", + [0x5430] = "\x02\x6f\x46", [0x5431] = "\x01\x7c\x47", + [0x5432] = "\x02\x6f\x47", [0x5433] = "\x02\x6f\x49", + [0x5434] = "\x03\x66\x47", [0x5435] = "\x02\x70\x4d", + [0x5436] = "\x01\x7c\x66", [0x5437] = "\x02\x70\x4c", + [0x5438] = "\x02\x70\x4b", [0x5439] = "\x01\x7c\x67", + [0x543a] = "\x04\x6c\x23", [0x543b] = "\x01\x7d\x27", + [0x543c] = "\x02\x71\x5d", [0x543d] = "\x02\x71\x75", + [0x543e] = "\x02\x71\x74", [0x543f] = "\x02\x71\x76", + [0x5440] = "\x01\x48\x66", [0x5441] = "\x02\x2d\x4b", + [0x5442] = "\x03\x2f\x26", [0x5443] = "\x02\x32\x71", + [0x5444] = "\x02\x32\x72", [0x5445] = "\x03\x38\x6a", + [0x5446] = "\x03\x3e\x6a", [0x5447] = "\x03\x3e\x69", + [0x5448] = "\x02\x40\x26", [0x5449] = "\x06\x4e\x4f", + [0x544a] = "\x02\x6c\x36", [0x544b] = "\x02\x70\x4e", + [0x544c] = "\x01\x48\x67", [0x544d] = "\x01\x53\x4f", + [0x544e] = "\x02\x2d\x4c", [0x544f] = "\x03\x33\x71", + [0x5450] = "\x03\x66\x48", [0x5451] = "\x04\x35\x27", + [0x5452] = "\x02\x39\x34", [0x5453] = "\x01\x5d\x34", + [0x5455] = "\x02\x40\x28", [0x5456] = "\x02\x40\x27", + [0x5457] = "\x01\x61\x79", [0x5458] = "\x03\x44\x4d", + [0x5459] = "\x01\x66\x4c", [0x545a] = "\x02\x54\x2a", + [0x545b] = "\x01\x6e\x6c", [0x545c] = "\x03\x4e\x5f", + [0x545d] = "\x01\x6e\x6d", [0x545e] = "\x03\x52\x63", + [0x545f] = "\x03\x52\x64", [0x5460] = "\x04\x53\x4b", + [0x5461] = "\x01\x72\x2f", [0x5462] = "\x01\x7c\x68", + [0x5463] = "\x01\x48\x68", [0x5466] = "\x03\x2f\x27", + [0x5467] = "\x02\x2d\x4d", [0x5468] = "\x01\x4f\x50", + [0x5469] = "\x02\x2d\x4f", [0x546a] = "\x02\x2d\x4e", + [0x546b] = "\x01\x53\x50", [0x546d] = "\x02\x32\x73", + [0x546e] = "\x03\x33\x74", [0x546f] = "\x02\x32\x7a", + [0x5470] = "\x01\x58\x2e", [0x5471] = "\x02\x32\x78", + [0x5472] = "\x02\x32\x76", [0x5473] = "\x03\x33\x77", + [0x5474] = "\x02\x32\x7d", [0x5475] = "\x02\x32\x74", + [0x5476] = "\x02\x32\x75", [0x5477] = "\x01\x58\x2f", + [0x5478] = "\x03\x33\x72", [0x5479] = "\x01\x58\x33", + [0x547a] = "\x03\x33\x73", [0x547b] = "\x03\x33\x75", + [0x547c] = "\x02\x32\x7e", [0x547d] = "\x01\x58\x32", + [0x547e] = "\x02\x32\x7c", [0x547f] = "\x02\x32\x79", + [0x5480] = "\x02\x32\x77", [0x5481] = "\x01\x58\x30", + [0x5482] = "\x01\x58\x31", [0x5483] = "\x02\x32\x7b", + [0x5484] = "\x03\x33\x76", [0x5487] = "\x03\x66\x49", + [0x5488] = "\x01\x5d\x36", [0x5489] = "\x02\x39\x35", + [0x548a] = "\x03\x38\x72", [0x548b] = "\x01\x5d\x3b", + [0x548c] = "\x02\x39\x45", [0x548d] = "\x01\x5d\x3a", + [0x548e] = "\x02\x39\x47", [0x548f] = "\x03\x38\x6e", + [0x5490] = "\x03\x38\x74", [0x5491] = "\x02\x39\x3b", + [0x5492] = "\x01\x5d\x38", [0x5493] = "\x02\x39\x46", + [0x5494] = "\x03\x38\x6c", [0x5495] = "\x02\x39\x36", + [0x5496] = "\x01\x5d\x39", [0x5497] = "\x02\x39\x42", + [0x5498] = "\x02\x39\x3e", [0x5499] = "\x02\x39\x40", + [0x549a] = "\x02\x39\x3a", [0x549b] = "\x02\x39\x41", + [0x549c] = "\x03\x38\x6b", [0x549d] = "\x04\x35\x2f", + [0x549e] = "\x01\x5d\x35", [0x549f] = "\x02\x39\x3d", + [0x54a0] = "\x03\x38\x73", [0x54a1] = "\x02\x39\x3c", + [0x54a2] = "\x02\x39\x38", [0x54a3] = "\x03\x38\x6d", + [0x54a4] = "\x02\x39\x43", [0x54a5] = "\x03\x38\x6f", + [0x54a6] = "\x03\x38\x71", [0x54a7] = "\x02\x39\x3f", + [0x54a8] = "\x02\x39\x37", [0x54a9] = "\x03\x38\x70", + [0x54aa] = "\x02\x39\x39", [0x54ab] = "\x01\x5d\x37", + [0x54ac] = "\x02\x39\x44", [0x54b1] = "\x01\x61\x7c", + [0x54b2] = "\x02\x40\x33", [0x54b3] = "\x04\x3a\x7b", + [0x54b4] = "\x03\x3e\x70", [0x54b5] = "\x03\x3e\x72", + [0x54b6] = "\x02\x40\x2f", [0x54b7] = "\x02\x40\x31", + [0x54b8] = "\x02\x40\x2c", [0x54b9] = "\x02\x40\x2b", + [0x54ba] = "\x02\x40\x29", [0x54bb] = "\x03\x3e\x6d", + [0x54bc] = "\x02\x40\x30", [0x54bd] = "\x02\x40\x32", + [0x54be] = "\x02\x40\x2e", [0x54bf] = "\x03\x3e\x6f", + [0x54c0] = "\x02\x40\x2d", [0x54c1] = "\x01\x61\x7a", + [0x54c2] = "\x01\x61\x7b", [0x54c9] = "\x02\x40\x35", + [0x54ca] = "\x01\x66\x54", [0x54cb] = "\x02\x47\x39", + [0x54cc] = "\x02\x47\x3f", [0x54cd] = "\x02\x47\x3a", + [0x54ce] = "\x02\x47\x3b", [0x54cf] = "\x03\x44\x4e", + [0x54d0] = "\x02\x47\x40", [0x54d1] = "\x05\x42\x6c", + [0x54d2] = "\x01\x66\x56", [0x54d3] = "\x04\x40\x61", + [0x54d4] = "\x01\x66\x4e", [0x54d5] = "\x01\x66\x55", + [0x54d6] = "\x02\x47\x38", [0x54d7] = "\x02\x40\x2a", + [0x54d8] = "\x01\x66\x51", [0x54d9] = "\x01\x66\x4f", + [0x54da] = "\x02\x47\x3e", [0x54db] = "\x02\x47\x3d", + [0x54dc] = "\x01\x66\x50", [0x54dd] = "\x01\x66\x52", + [0x54de] = "\x02\x47\x3c", [0x54df] = "\x01\x66\x4d", + [0x54e0] = "\x03\x44\x4f", [0x54e1] = "\x01\x66\x53", + [0x54e6] = "\x03\x4e\x60", [0x54e7] = "\x02\x4d\x7d", + [0x54e8] = "\x01\x6a\x7c", [0x54e9] = "\x03\x49\x59", + [0x54ea] = "\x03\x49\x52", [0x54eb] = "\x02\x4e\x2a", + [0x54ec] = "\x02\x4e\x29", [0x54ed] = "\x03\x49\x57", + [0x54ee] = "\x02\x4e\x24", [0x54ef] = "\x01\x6a\x7e", + [0x54f0] = "\x02\x4e\x28", [0x54f1] = "\x02\x4d\x7e", + [0x54f2] = "\x02\x4e\x21", [0x54f3] = "\x01\x6a\x76", + [0x54f4] = "\x01\x6a\x78", [0x54f5] = "\x03\x49\x54", + [0x54f6] = "\x02\x4e\x26", [0x54f7] = "\x02\x4d\x7c", + [0x54f8] = "\x01\x6a\x7a", [0x54f9] = "\x01\x6a\x79", + [0x54fa] = "\x02\x4e\x22", [0x54fb] = "\x02\x4e\x27", + [0x54fc] = "\x02\x4e\x25", [0x54fd] = "\x01\x6a\x7b", + [0x54fe] = "\x02\x4e\x23", [0x54ff] = "\x03\x49\x51", + [0x5500] = "\x03\x49\x56", [0x5501] = "\x02\x40\x34", + [0x5502] = "\x01\x6a\x77", [0x5503] = "\x03\x49\x58", + [0x5505] = "\x02\x54\x2b", [0x5506] = "\x02\x54\x32", + [0x5507] = "\x01\x6e\x6f", [0x5508] = "\x04\x4d\x46", + [0x5509] = "\x02\x54\x36", [0x550a] = "\x01\x6e\x73", + [0x550b] = "\x02\x54\x2e", [0x550c] = "\x02\x54\x2c", + [0x550d] = "\x04\x4d\x3e", [0x550e] = "\x02\x54\x35", + [0x550f] = "\x03\x4e\x61", [0x5510] = "\x01\x6e\x6e", + [0x5511] = "\x02\x54\x34", [0x5512] = "\x01\x6e\x70", + [0x5513] = "\x01\x6e\x71", [0x5514] = "\x02\x54\x2d", + [0x5515] = "\x01\x6e\x72", [0x5516] = "\x02\x54\x33", + [0x5517] = "\x02\x54\x2f", [0x5518] = "\x02\x54\x30", + [0x5519] = "\x02\x54\x31", [0x551a] = "\x01\x6a\x7d", + [0x551b] = "\x03\x4e\x62", [0x551e] = "\x02\x5a\x3e", + [0x551f] = "\x02\x5a\x4a", [0x5520] = "\x04\x53\x53", + [0x5521] = "\x01\x72\x34", [0x5522] = "\x02\x5a\x45", + [0x5523] = "\x02\x5a\x47", [0x5524] = "\x03\x52\x65", + [0x5525] = "\x01\x72\x32", [0x5526] = "\x02\x5a\x3f", + [0x5527] = "\x02\x5a\x43", [0x5528] = "\x04\x53\x50", + [0x5529] = "\x02\x5a\x46", [0x552a] = "\x01\x72\x30", + [0x552b] = "\x01\x72\x33", [0x552c] = "\x02\x5a\x49", + [0x552d] = "\x02\x5a\x41", [0x552e] = "\x02\x5a\x42", + [0x552f] = "\x02\x5a\x48", [0x5530] = "\x02\x5a\x40", + [0x5531] = "\x02\x5a\x44", [0x5532] = "\x01\x72\x31", + [0x5533] = "\x02\x5f\x40", [0x5535] = "\x02\x5f\x3f", + [0x5536] = "\x01\x75\x42", [0x5537] = "\x02\x5f\x45", + [0x5538] = "\x01\x75\x44", [0x5539] = "\x03\x56\x40", + [0x553a] = "\x04\x58\x62", [0x553b] = "\x01\x75\x41", + [0x553c] = "\x02\x5f\x41", [0x553d] = "\x01\x75\x45", + [0x553e] = "\x02\x5f\x42", [0x553f] = "\x03\x56\x3f", + [0x5540] = "\x03\x56\x3d", [0x5541] = "\x02\x5f\x43", + [0x5542] = "\x02\x5f\x46", [0x5543] = "\x03\x56\x42", + [0x5544] = "\x01\x75\x43", [0x5546] = "\x02\x63\x41", + [0x5548] = "\x03\x58\x79", [0x5549] = "\x02\x63\x44", + [0x554a] = "\x03\x58\x7a", [0x554b] = "\x02\x63\x3e", + [0x554c] = "\x02\x63\x40", [0x554d] = "\x03\x58\x7c", + [0x554e] = "\x03\x58\x7b", [0x554f] = "\x02\x63\x3f", + [0x5550] = "\x02\x63\x42", [0x5551] = "\x02\x63\x43", + [0x5552] = "\x02\x5f\x44", [0x5553] = "\x02\x63\x3d", + [0x5554] = "\x03\x66\x4a", [0x5556] = "\x01\x78\x78", + [0x5557] = "\x02\x66\x77", [0x5558] = "\x02\x66\x7a", + [0x5559] = "\x02\x66\x7c", [0x555a] = "\x02\x66\x75", + [0x555b] = "\x02\x66\x76", [0x555c] = "\x02\x66\x79", + [0x555d] = "\x02\x66\x7b", [0x555e] = "\x01\x78\x79", + [0x555f] = "\x01\x78\x77", [0x5560] = "\x01\x78\x76", + [0x5561] = "\x02\x66\x78", [0x5562] = "\x02\x66\x74", + [0x5563] = "\x02\x69\x76", [0x5564] = "\x01\x7a\x3b", + [0x5565] = "\x03\x5d\x29", [0x5566] = "\x02\x69\x77", + [0x5567] = "\x03\x5d\x28", [0x5569] = "\x02\x6c\x38", + [0x556a] = "\x01\x7b\x28", [0x556b] = "\x02\x6c\x3a", + [0x556c] = "\x01\x7b\x29", [0x556d] = "\x02\x6c\x37", + [0x556e] = "\x02\x6c\x39", [0x556f] = "\x01\x7b\x72", + [0x5570] = "\x05\x74\x38", [0x5571] = "\x02\x6e\x21", + [0x5572] = "\x01\x7b\x71", [0x5573] = "\x02\x6f\x4c", + [0x5574] = "\x02\x6f\x4b", [0x5575] = "\x04\x6c\x25", + [0x5576] = "\x02\x6f\x4a", [0x5578] = "\x03\x61\x49", + [0x5579] = "\x02\x71\x37", [0x557a] = "\x02\x71\x38", + [0x557b] = "\x02\x71\x3a", [0x557c] = "\x02\x71\x39", + [0x557d] = "\x03\x61\x7d", [0x557e] = "\x02\x22\x70", + [0x557f] = "\x01\x48\x69", [0x5581] = "\x01\x53\x51", + [0x5582] = "\x02\x39\x48", [0x5583] = "\x01\x61\x7d", + [0x5584] = "\x03\x66\x4b", [0x5585] = "\x02\x47\x41", + [0x5586] = "\x01\x77\x3b", [0x5587] = "\x03\x5b\x2f", + [0x5588] = "\x02\x66\x7d", [0x5589] = "\x03\x60\x46", + [0x558a] = "\x03\x61\x4a", [0x558b] = "\x01\x4b\x44", + [0x558c] = "\x03\x2f\x29", [0x558d] = "\x04\x2f\x76", + [0x558e] = "\x04\x2f\x75", [0x558f] = "\x01\x5d\x3d", + [0x5590] = "\x04\x35\x34", [0x5591] = "\x03\x38\x76", + [0x5592] = "\x03\x38\x75", [0x5593] = "\x01\x5d\x3c", + [0x5594] = "\x03\x38\x77", [0x5595] = "\x02\x40\x36", + [0x5596] = "\x01\x61\x7e", [0x5597] = "\x02\x40\x38", + [0x5598] = "\x02\x40\x37", [0x5599] = "\x06\x4e\x60", + [0x559a] = "\x03\x3e\x74", [0x559b] = "\x02\x47\x42", + [0x559c] = "\x01\x66\x57", [0x559d] = "\x02\x4e\x2b", + [0x559e] = "\x02\x4e\x2e", [0x559f] = "\x02\x4e\x2d", + [0x55a0] = "\x04\x47\x35", [0x55a1] = "\x02\x4e\x2c", + [0x55a2] = "\x02\x54\x37", [0x55a3] = "\x02\x54\x39", + [0x55a4] = "\x02\x54\x38", [0x55a5] = "\x03\x4e\x65", + [0x55a6] = "\x01\x72\x36", [0x55a7] = "\x03\x52\x66", + [0x55a8] = "\x04\x53\x59", [0x55a9] = "\x03\x4e\x64", + [0x55aa] = "\x01\x72\x35", [0x55ab] = "\x03\x56\x46", + [0x55ac] = "\x01\x75\x46", [0x55ad] = "\x02\x5f\x47", + [0x55ae] = "\x02\x5f\x49", [0x55af] = "\x02\x5f\x48", + [0x55b0] = "\x03\x58\x7e", [0x55b1] = "\x03\x58\x7d", + [0x55b2] = "\x01\x77\x3c", [0x55b3] = "\x03\x59\x21", + [0x55b4] = "\x04\x61\x2f", [0x55b5] = "\x03\x5b\x31", + [0x55b6] = "\x02\x67\x21", [0x55b7] = "\x02\x66\x7e", + [0x55b8] = "\x0f\x63\x77", [0x55b9] = "\x02\x69\x78", + [0x55ba] = "\x01\x7a\x3c", [0x55bb] = "\x03\x5d\x2a", + [0x55bc] = "\x03\x5e\x61", [0x55bd] = "\x01\x7b\x2a", + [0x55be] = "\x02\x6e\x23", [0x55bf] = "\x02\x6e\x22", + [0x55c0] = "\x01\x7d\x28", [0x55d2] = "\x01\x4b\x45", + [0x55d3] = "\x02\x2d\x50", [0x55d4] = "\x01\x53\x52", + [0x55d5] = "\x02\x39\x4b", [0x55d6] = "\x02\x39\x49", + [0x55d7] = "\x04\x35\x39", [0x55d8] = "\x04\x35\x38", + [0x55d9] = "\x02\x39\x4a", [0x55da] = "\x02\x40\x3a", + [0x55db] = "\x02\x40\x3b", [0x55dc] = "\x02\x47\x49", + [0x55dd] = "\x02\x40\x39", [0x55df] = "\x02\x47\x43", + [0x55e0] = "\x02\x47\x47", [0x55e1] = "\x02\x47\x46", + [0x55e2] = "\x02\x47\x48", [0x55e3] = "\x01\x66\x58", + [0x55e4] = "\x02\x47\x45", [0x55e5] = "\x02\x47\x44", + [0x55e6] = "\x02\x47\x4a", [0x55e7] = "\x03\x44\x54", + [0x55e8] = "\x02\x4e\x31", [0x55e9] = "\x02\x4e\x2f", + [0x55ea] = "\x03\x49\x5c", [0x55eb] = "\x02\x4e\x30", + [0x55ec] = "\x02\x54\x3c", [0x55ed] = "\x02\x54\x3a", + [0x55ee] = "\x03\x4e\x66", [0x55f0] = "\x02\x54\x3b", + [0x55f1] = "\x02\x5a\x4b", [0x55f2] = "\x02\x5f\x4a", + [0x55f3] = "\x02\x5f\x4b", [0x55f4] = "\x01\x77\x3d", + [0x55f5] = "\x03\x5b\x32", [0x55f6] = "\x02\x67\x22", + [0x55f7] = "\x02\x69\x79", [0x55f8] = "\x01\x7a\x3d", + [0x55f9] = "\x04\x61\x37", [0x55fa] = "\x02\x6c\x3b", + [0x55fb] = "\x02\x6e\x24", [0x55fc] = "\x01\x7b\x73", + [0x55fd] = "\x04\x69\x45", [0x55fe] = "\x02\x6f\x4d", + [0x55ff] = "\x02\x71\x3b", [0x5600] = "\x01\x4b\x46", + [0x5602] = "\x01\x53\x54", [0x5603] = "\x01\x53\x55", + [0x5604] = "\x02\x2d\x51", [0x5605] = "\x03\x2f\x2a", + [0x5606] = "\x03\x2f\x2c", [0x5607] = "\x02\x2d\x52", + [0x5608] = "\x01\x53\x53", [0x5609] = "\x04\x2f\x7c", + [0x560a] = "\x01\x58\x39", [0x560b] = "\x03\x33\x7b", + [0x560c] = "\x01\x58\x37", [0x560d] = "\x03\x33\x7a", + [0x560e] = "\x01\x58\x36", [0x560f] = "\x01\x58\x3d", + [0x5610] = "\x01\x58\x35", [0x5611] = "\x01\x58\x3e", + [0x5612] = "\x02\x33\x21", [0x5613] = "\x01\x58\x3b", + [0x5614] = "\x04\x2f\x7d", [0x5615] = "\x01\x58\x38", + [0x5616] = "\x01\x58\x3c", [0x5617] = "\x01\x58\x3a", + [0x5618] = "\x01\x58\x34", [0x5619] = "\x03\x33\x7c", + [0x561b] = "\x01\x5d\x45", [0x561c] = "\x03\x38\x7e", + [0x561d] = "\x01\x5d\x3f", [0x561e] = "\x02\x39\x4f", + [0x561f] = "\x01\x5d\x44", [0x5620] = "\x03\x39\x23", + [0x5621] = "\x03\x39\x29", [0x5622] = "\x01\x5d\x46", + [0x5623] = "\x01\x5d\x40", [0x5624] = "\x06\x44\x70", + [0x5625] = "\x01\x5d\x41", [0x5626] = "\x03\x38\x79", + [0x5627] = "\x02\x39\x4d", [0x5628] = "\x03\x38\x7b", + [0x5629] = "\x03\x39\x25", [0x562a] = "\x01\x5d\x3e", + [0x562b] = "\x03\x39\x22", [0x562c] = "\x02\x39\x4e", + [0x562d] = "\x01\x5d\x43", [0x562e] = "\x04\x35\x3d", + [0x562f] = "\x05\x35\x5b", [0x5630] = "\x02\x39\x4c", + [0x5631] = "\x01\x5d\x42", [0x5632] = "\x03\x38\x7a", + [0x5634] = "\x01\x62\x2b", [0x5635] = "\x03\x3e\x7c", + [0x5636] = "\x01\x62\x2d", [0x5637] = "\x04\x3b\x2f", + [0x5638] = "\x03\x3e\x7d", [0x5639] = "\x02\x40\x3e", + [0x563a] = "\x01\x62\x2c", [0x563b] = "\x01\x62\x21", + [0x563c] = "\x01\x62\x25", [0x563d] = "\x03\x3f\x24", + [0x563e] = "\x01\x66\x6b", [0x563f] = "\x02\x47\x4f", + [0x5640] = "\x02\x40\x40", [0x5641] = "\x01\x62\x26", + [0x5642] = "\x03\x3e\x7e", [0x5643] = "\x03\x3e\x75", + [0x5644] = "\x02\x40\x43", [0x5645] = "\x02\x40\x44", + [0x5646] = "\x01\x62\x2a", [0x5647] = "\x04\x3b\x30", + [0x5648] = "\x02\x40\x46", [0x5649] = "\x03\x3f\x21", + [0x564a] = "\x02\x40\x48", [0x564b] = "\x03\x3f\x23", + [0x564c] = "\x02\x40\x49", [0x564d] = "\x02\x40\x3d", + [0x564e] = "\x02\x40\x3c", [0x564f] = "\x02\x40\x4a", + [0x5650] = "\x01\x62\x29", [0x5651] = "\x02\x40\x47", + [0x5652] = "\x02\x40\x45", [0x5653] = "\x04\x3b\x2c", + [0x5654] = "\x01\x62\x27", [0x5655] = "\x01\x62\x23", + [0x5656] = "\x01\x62\x2e", [0x5657] = "\x02\x40\x41", + [0x5658] = "\x02\x40\x42", [0x5659] = "\x02\x40\x3f", + [0x565a] = "\x03\x3e\x78", [0x565b] = "\x01\x62\x28", + [0x565c] = "\x04\x3b\x31", [0x565d] = "\x03\x3f\x22", + [0x565e] = "\x01\x62\x24", [0x5660] = "\x01\x62\x22", + [0x5661] = "\x02\x47\x4e", [0x5662] = "\x01\x66\x66", + [0x5663] = "\x01\x66\x61", [0x5664] = "\x03\x44\x60", + [0x5665] = "\x03\x44\x59", [0x5666] = "\x01\x66\x5c", + [0x5667] = "\x03\x44\x63", [0x5668] = "\x01\x66\x6c", + [0x5669] = "\x01\x66\x5d", [0x566a] = "\x03\x44\x55", + [0x566b] = "\x01\x66\x59", [0x566c] = "\x01\x66\x68", + [0x566d] = "\x01\x66\x65", [0x566e] = "\x01\x66\x67", + [0x566f] = "\x03\x44\x58", [0x5670] = "\x01\x66\x5e", + [0x5671] = "\x01\x66\x63", [0x5672] = "\x01\x66\x5a", + [0x5673] = "\x01\x66\x5b", [0x5674] = "\x02\x47\x56", + [0x5675] = "\x02\x47\x53", [0x5676] = "\x02\x47\x4b", + [0x5677] = "\x02\x47\x50", [0x5678] = "\x03\x44\x5b", + [0x5679] = "\x01\x66\x69", [0x567a] = "\x02\x47\x57", + [0x567b] = "\x01\x66\x6a", [0x567c] = "\x01\x66\x60", + [0x567d] = "\x03\x44\x5c", [0x567e] = "\x03\x44\x61", + [0x567f] = "\x02\x47\x4d", [0x5680] = "\x03\x44\x56", + [0x5681] = "\x02\x47\x55", [0x5682] = "\x02\x47\x51", + [0x5683] = "\x02\x47\x54", [0x5684] = "\x02\x47\x52", + [0x5685] = "\x01\x66\x64", [0x5686] = "\x02\x47\x4c", + [0x5687] = "\x01\x66\x5f", [0x5688] = "\x03\x44\x5d", + [0x568b] = "\x02\x4e\x34", [0x568c] = "\x01\x6b\x22", + [0x568d] = "\x01\x6b\x25", [0x568e] = "\x03\x49\x5f", + [0x568f] = "\x02\x4e\x36", [0x5690] = "\x03\x49\x64", + [0x5691] = "\x01\x6b\x2d", [0x5692] = "\x02\x4e\x35", + [0x5693] = "\x01\x6b\x27", [0x5694] = "\x03\x49\x63", + [0x5695] = "\x01\x6e\x78", [0x5696] = "\x02\x4e\x37", + [0x5697] = "\x04\x47\x45", [0x5698] = "\x01\x6b\x2c", + [0x5699] = "\x02\x4e\x33", [0x569a] = "\x01\x6b\x2e", + [0x569b] = "\x03\x49\x5e", [0x569c] = "\x03\x49\x62", + [0x569d] = "\x03\x49\x6b", [0x569e] = "\x01\x6b\x23", + [0x569f] = "\x03\x49\x68", [0x56a0] = "\x01\x66\x62", + [0x56a1] = "\x01\x6b\x26", [0x56a2] = "\x03\x49\x60", + [0x56a3] = "\x01\x6b\x24", [0x56a4] = "\x01\x6b\x28", + [0x56a5] = "\x01\x6b\x2a", [0x56a6] = "\x01\x6b\x21", + [0x56a7] = "\x01\x6b\x2f", [0x56a8] = "\x01\x6b\x2b", + [0x56a9] = "\x03\x49\x65", [0x56aa] = "\x01\x6b\x29", + [0x56ab] = "\x02\x4e\x32", [0x56ac] = "\x03\x49\x66", + [0x56af] = "\x03\x4e\x74", [0x56b0] = "\x01\x6f\x21", + [0x56b1] = "\x03\x4e\x67", [0x56b2] = "\x01\x6e\x7b", + [0x56b3] = "\x03\x4e\x72", [0x56b4] = "\x03\x4e\x70", + [0x56b5] = "\x03\x4e\x6e", [0x56b6] = "\x01\x6f\x24", + [0x56b7] = "\x03\x4e\x6c", [0x56b8] = "\x02\x54\x3f", + [0x56b9] = "\x01\x6f\x25", [0x56ba] = "\x02\x54\x4b", + [0x56bb] = "\x02\x54\x44", [0x56bc] = "\x01\x6e\x74", + [0x56bd] = "\x02\x54\x4c", [0x56be] = "\x02\x54\x46", + [0x56bf] = "\x01\x6e\x7e", [0x56c0] = "\x02\x54\x47", + [0x56c1] = "\x03\x4e\x73", [0x56c2] = "\x01\x6e\x7d", + [0x56c3] = "\x02\x54\x4a", [0x56c4] = "\x01\x6e\x77", + [0x56c5] = "\x02\x54\x48", [0x56c6] = "\x02\x54\x3e", + [0x56c7] = "\x01\x6e\x76", [0x56c8] = "\x02\x5a\x56", + [0x56c9] = "\x01\x6e\x7c", [0x56ca] = "\x03\x4e\x75", + [0x56cb] = "\x01\x6e\x79", [0x56cc] = "\x03\x4e\x69", + [0x56cd] = "\x01\x6f\x23", [0x56ce] = "\x03\x4e\x6a", + [0x56cf] = "\x02\x54\x3d", [0x56d0] = "\x03\x4e\x76", + [0x56d1] = "\x02\x54\x41", [0x56d2] = "\x01\x6e\x75", + [0x56d3] = "\x02\x54\x40", [0x56d4] = "\x02\x54\x42", + [0x56d5] = "\x02\x54\x43", [0x56d6] = "\x01\x6f\x22", + [0x56d7] = "\x02\x54\x45", [0x56d8] = "\x02\x54\x49", + [0x56d9] = "\x02\x54\x4d", [0x56db] = "\x01\x6f\x26", + [0x56dc] = "\x01\x72\x3c", [0x56dd] = "\x02\x5a\x51", + [0x56de] = "\x02\x5a\x57", [0x56df] = "\x02\x5a\x54", + [0x56e0] = "\x02\x5a\x4c", [0x56e1] = "\x02\x5a\x58", + [0x56e2] = "\x02\x5a\x4d", [0x56e3] = "\x03\x52\x6a", + [0x56e4] = "\x02\x5a\x53", [0x56e5] = "\x03\x52\x6b", + [0x56e6] = "\x01\x72\x37", [0x56e7] = "\x01\x72\x3d", + [0x56e8] = "\x02\x5a\x59", [0x56e9] = "\x03\x4e\x6f", + [0x56ea] = "\x03\x52\x67", [0x56eb] = "\x01\x72\x39", + [0x56ec] = "\x03\x52\x6e", [0x56ed] = "\x01\x72\x43", + [0x56ee] = "\x01\x72\x3e", [0x56ef] = "\x02\x5a\x5b", + [0x56f0] = "\x02\x5a\x55", [0x56f1] = "\x01\x72\x3a", + [0x56f2] = "\x02\x5a\x4e", [0x56f3] = "\x01\x72\x44", + [0x56f4] = "\x02\x5a\x4f", [0x56f5] = "\x02\x5a\x50", + [0x56f6] = "\x01\x72\x45", [0x56f7] = "\x01\x72\x42", + [0x56f8] = "\x01\x6e\x7a", [0x56f9] = "\x03\x52\x69", + [0x56fa] = "\x01\x72\x38", [0x56fb] = "\x02\x5a\x5c", + [0x56fc] = "\x01\x72\x46", [0x56fd] = "\x03\x52\x68", + [0x56fe] = "\x01\x72\x3f", [0x56ff] = "\x02\x5a\x5a", + [0x5700] = "\x01\x72\x3b", [0x5701] = "\x01\x72\x40", + [0x5702] = "\x01\x72\x41", [0x5703] = "\x03\x66\x4c", + [0x5704] = "\x01\x75\x4e", [0x5705] = "\x02\x5f\x50", + [0x5706] = "\x02\x5f\x59", [0x5707] = "\x02\x5f\x56", + [0x5708] = "\x02\x5f\x58", [0x5709] = "\x03\x56\x49", + [0x570a] = "\x01\x75\x4b", [0x570b] = "\x02\x5f\x51", + [0x570c] = "\x03\x56\x4a", [0x570d] = "\x02\x5f\x57", + [0x570e] = "\x01\x75\x47", [0x570f] = "\x02\x5f\x53", + [0x5710] = "\x01\x75\x4f", [0x5711] = "\x02\x5f\x4f", + [0x5712] = "\x02\x5f\x54", [0x5713] = "\x02\x5f\x5b", + [0x5714] = "\x02\x5a\x52", [0x5715] = "\x02\x5f\x55", + [0x5716] = "\x02\x5f\x4e", [0x5717] = "\x01\x75\x48", + [0x5718] = "\x02\x5f\x4d", [0x5719] = "\x01\x75\x49", + [0x571a] = "\x02\x5f\x5c", [0x571b] = "\x01\x75\x4a", + [0x571c] = "\x02\x5f\x5a", [0x571d] = "\x01\x75\x4d", + [0x571e] = "\x02\x5f\x4c", [0x571f] = "\x03\x56\x48", + [0x5720] = "\x01\x75\x4c", [0x5722] = "\x02\x5f\x52", + [0x5723] = "\x02\x63\x47", [0x5724] = "\x02\x63\x55", + [0x5725] = "\x02\x63\x50", [0x5726] = "\x02\x63\x52", + [0x5727] = "\x02\x63\x46", [0x5728] = "\x01\x77\x3e", + [0x5729] = "\x03\x59\x2a", [0x572a] = "\x02\x63\x45", + [0x572b] = "\x01\x77\x41", [0x572c] = "\x01\x77\x40", + [0x572d] = "\x03\x59\x26", [0x572e] = "\x02\x63\x54", + [0x572f] = "\x02\x63\x4c", [0x5730] = "\x02\x63\x49", + [0x5731] = "\x02\x63\x4f", [0x5732] = "\x03\x59\x24", + [0x5733] = "\x02\x63\x48", [0x5734] = "\x03\x59\x28", + [0x5735] = "\x02\x63\x4a", [0x5736] = "\x02\x63\x53", + [0x5737] = "\x02\x63\x51", [0x5738] = "\x03\x59\x23", + [0x5739] = "\x01\x77\x3f", [0x573a] = "\x02\x63\x58", + [0x573b] = "\x02\x63\x56", [0x573c] = "\x02\x63\x4d", + [0x573d] = "\x02\x63\x57", [0x573e] = "\x02\x63\x4e", + [0x573f] = "\x03\x5b\x34", [0x5740] = "\x02\x67\x26", + [0x5741] = "\x01\x78\x7a", [0x5742] = "\x02\x67\x2d", + [0x5743] = "\x03\x5b\x35", [0x5744] = "\x04\x61\x3a", + [0x5745] = "\x02\x6c\x3e", [0x5746] = "\x01\x79\x23", + [0x5747] = "\x02\x63\x4b", [0x5748] = "\x02\x67\x24", + [0x5749] = "\x01\x78\x7d", [0x574a] = "\x02\x67\x25", + [0x574b] = "\x02\x67\x2a", [0x574c] = "\x03\x5b\x36", + [0x574d] = "\x03\x5d\x33", [0x574e] = "\x01\x79\x21", + [0x574f] = "\x01\x79\x22", [0x5750] = "\x02\x67\x23", + [0x5751] = "\x02\x67\x2c", [0x5752] = "\x02\x67\x2e", + [0x5753] = "\x02\x67\x27", [0x5754] = "\x02\x67\x29", + [0x5755] = "\x02\x67\x2b", [0x5756] = "\x02\x67\x28", + [0x5757] = "\x02\x67\x2f", [0x5758] = "\x01\x78\x7c", + [0x5759] = "\x01\x79\x24", [0x575a] = "\x01\x78\x7e", + [0x575c] = "\x01\x78\x7b", [0x575d] = "\x02\x69\x7c", + [0x575e] = "\x04\x64\x4d", [0x575f] = "\x01\x7a\x42", + [0x5760] = "\x02\x69\x7a", [0x5761] = "\x03\x5d\x30", + [0x5762] = "\x03\x5d\x2c", [0x5763] = "\x02\x69\x7e", + [0x5764] = "\x03\x5d\x32", [0x5765] = "\x02\x6a\x21", + [0x5766] = "\x01\x7a\x40", [0x5767] = "\x02\x6a\x22", + [0x5768] = "\x02\x69\x7d", [0x5769] = "\x03\x5d\x2b", + [0x576a] = "\x02\x69\x7b", [0x576b] = "\x01\x7a\x43", + [0x576c] = "\x01\x7a\x3f", [0x576d] = "\x02\x6a\x23", + [0x576e] = "\x03\x5d\x2e", [0x576f] = "\x01\x7a\x41", + [0x5770] = "\x01\x7a\x3e", [0x5771] = "\x03\x5c\x6d", + [0x5773] = "\x04\x67\x3b", [0x5774] = "\x01\x7b\x2b", + [0x5775] = "\x03\x5e\x62", [0x5776] = "\x04\x67\x41", + [0x5777] = "\x01\x7b\x2c", [0x5778] = "\x02\x6c\x3d", + [0x5779] = "\x02\x6c\x3c", [0x577a] = "\x02\x6c\x3f", + [0x577b] = "\x02\x6c\x40", [0x577c] = "\x03\x5e\x63", + [0x577d] = "\x01\x7b\x2d", [0x577e] = "\x02\x6e\x25", + [0x577f] = "\x02\x6e\x2a", [0x5780] = "\x01\x7b\x74", + [0x5781] = "\x03\x5f\x61", [0x5782] = "\x02\x6e\x27", + [0x5783] = "\x03\x5f\x62", [0x5784] = "\x02\x6e\x26", + [0x5785] = "\x02\x6e\x29", [0x5786] = "\x02\x6e\x28", + [0x5787] = "\x03\x60\x48", [0x5788] = "\x02\x6f\x51", + [0x5789] = "\x04\x6a\x7c", [0x578a] = "\x01\x7c\x48", + [0x578b] = "\x02\x6f\x50", [0x578c] = "\x02\x6f\x4e", + [0x578d] = "\x03\x60\x47", [0x578e] = "\x02\x6f\x4f", + [0x5790] = "\x03\x60\x49", [0x5791] = "\x03\x60\x7b", + [0x5792] = "\x01\x7c\x6a", [0x5793] = "\x01\x7c\x69", + [0x5794] = "\x02\x70\x4f", [0x5795] = "\x02\x70\x50", + [0x5796] = "\x01\x7c\x6b", [0x5797] = "\x03\x61\x4b", + [0x5798] = "\x02\x71\x3c", [0x5799] = "\x02\x71\x3d", + [0x579a] = "\x01\x7d\x34", [0x579b] = "\x03\x61\x6b", + [0x579c] = "\x01\x7d\x3a", [0x579d] = "\x03\x61\x7e", + [0x579e] = "\x02\x71\x77", [0x579f] = "\x02\x72\x36", + [0x5837] = "\x01\x4b\x47", [0x5838] = "\x05\x30\x46", + [0x5839] = "\x02\x39\x50", [0x583a] = "\x03\x39\x2a", + [0x583b] = "\x02\x39\x51", [0x583c] = "\x02\x47\x58", + [0x583d] = "\x02\x4e\x38", [0x583e] = "\x02\x54\x4e", + [0x583f] = "\x01\x75\x51", [0x5840] = "\x03\x56\x4d", + [0x5841] = "\x01\x75\x50", [0x5842] = "\x02\x63\x59", + [0x5843] = "\x02\x67\x30", [0x5844] = "\x03\x5f\x64", + [0x5845] = "\x02\x6f\x52", [0x5846] = "\x01\x4b\x48", + [0x5847] = "\x02\x33\x22", [0x5848] = "\x01\x58\x3f", + [0x5849] = "\x01\x5d\x47", [0x584a] = "\x02\x47\x5a", + [0x584b] = "\x02\x47\x59", [0x584c] = "\x01\x6f\x27", + [0x584d] = "\x02\x54\x4f", [0x584e] = "\x01\x6f\x28", + [0x584f] = "\x02\x5f\x5d", [0x5850] = "\x01\x77\x42", + [0x5851] = "\x03\x5d\x34", [0x5852] = "\x03\x66\x4d", + [0x5853] = "\x03\x62\x21", [0x5854] = "\x01\x7d\x43", + [0x5855] = "\x01\x4b\x49", [0x5856] = "\x02\x28\x6b", + [0x5857] = "\x02\x33\x23", [0x5858] = "\x03\x39\x2d", + [0x5859] = "\x04\x35\x4d", [0x585a] = "\x01\x5d\x48", + [0x585b] = "\x03\x39\x2c", [0x585c] = "\x02\x39\x52", + [0x585d] = "\x02\x39\x53", [0x585e] = "\x03\x3f\x2a", + [0x585f] = "\x02\x40\x4b", [0x5860] = "\x03\x3f\x29", + [0x5861] = "\x01\x62\x2f", [0x5862] = "\x01\x66\x6d", + [0x5863] = "\x03\x44\x64", [0x5864] = "\x02\x47\x5c", + [0x5865] = "\x02\x47\x5b", [0x5866] = "\x02\x47\x5d", + [0x5867] = "\x03\x49\x6d", [0x5868] = "\x02\x4e\x39", + [0x5869] = "\x02\x4e\x3a", [0x586a] = "\x01\x6b\x30", + [0x586b] = "\x01\x72\x47", [0x586c] = "\x01\x6f\x29", + [0x586d] = "\x01\x72\x48", [0x586f] = "\x02\x5f\x61", + [0x5870] = "\x02\x5f\x5e", [0x5871] = "\x02\x5f\x60", + [0x5872] = "\x02\x5f\x5f", [0x5873] = "\x01\x75\x52", + [0x5874] = "\x03\x59\x2b", [0x5875] = "\x02\x63\x5a", + [0x5876] = "\x02\x67\x32", [0x5877] = "\x02\x67\x31", + [0x5878] = "\x02\x25\x24", [0x5879] = "\x01\x58\x41", + [0x587a] = "\x01\x58\x40", [0x587b] = "\x02\x33\x24", + [0x587c] = "\x03\x39\x2e", [0x587d] = "\x02\x39\x54", + [0x587e] = "\x03\x3f\x2c", [0x587f] = "\x03\x3f\x2b", + [0x5880] = "\x02\x40\x4d", [0x5881] = "\x02\x40\x4c", + [0x5882] = "\x01\x62\x30", [0x5883] = "\x03\x3f\x2d", + [0x5884] = "\x02\x47\x5f", [0x5885] = "\x02\x47\x60", + [0x5886] = "\x02\x47\x5e", [0x5887] = "\x04\x40\x78", + [0x5888] = "\x03\x44\x65", [0x5889] = "\x01\x66\x6f", + [0x588a] = "\x01\x66\x6e", [0x588b] = "\x04\x47\x54", + [0x588c] = "\x01\x6b\x32", [0x588d] = "\x01\x6b\x31", + [0x588e] = "\x03\x4e\x7a", [0x588f] = "\x02\x54\x50", + [0x5890] = "\x02\x5a\x5f", [0x5891] = "\x02\x5a\x5d", + [0x5892] = "\x02\x5a\x5e", [0x5893] = "\x01\x72\x49", + [0x5894] = "\x02\x5f\x63", [0x5895] = "\x02\x5f\x62", + [0x5896] = "\x03\x56\x4f", [0x5897] = "\x02\x63\x5d", + [0x5898] = "\x02\x63\x5c", [0x5899] = "\x02\x63\x5b", + [0x589a] = "\x02\x67\x33", [0x589b] = "\x03\x61\x4d", + [0x589c] = "\x02\x71\x78", [0x589d] = "\x01\x4b\x4a", + [0x589e] = "\x01\x53\x56", [0x589f] = "\x03\x2f\x2e", + [0x58a0] = "\x01\x53\x57", [0x58a1] = "\x01\x58\x42", + [0x58a2] = "\x01\x58\x43", [0x58a3] = "\x02\x33\x26", + [0x58a4] = "\x02\x33\x25", [0x58a5] = "\x02\x39\x55", + [0x58a6] = "\x03\x39\x30", [0x58a7] = "\x01\x5d\x4e", + [0x58a8] = "\x01\x5d\x4c", [0x58a9] = "\x01\x5d\x49", + [0x58aa] = "\x01\x5d\x4d", [0x58ab] = "\x01\x5d\x4b", + [0x58ac] = "\x01\x5d\x4a", [0x58ad] = "\x03\x39\x32", + [0x58ae] = "\x03\x39\x31", [0x58af] = "\x01\x62\x31", + [0x58b0] = "\x02\x40\x50", [0x58b1] = "\x03\x3f\x2f", + [0x58b2] = "\x01\x66\x74", [0x58b3] = "\x01\x62\x33", + [0x58b4] = "\x01\x62\x38", [0x58b5] = "\x02\x40\x52", + [0x58b6] = "\x01\x62\x3a", [0x58b7] = "\x01\x62\x39", + [0x58b8] = "\x01\x62\x3c", [0x58b9] = "\x02\x40\x51", + [0x58ba] = "\x02\x40\x4e", [0x58bb] = "\x01\x62\x36", + [0x58bc] = "\x01\x62\x32", [0x58bd] = "\x01\x62\x34", + [0x58be] = "\x02\x40\x4f", [0x58bf] = "\x01\x62\x3b", + [0x58c0] = "\x01\x62\x37", [0x58c1] = "\x01\x62\x35", + [0x58c2] = "\x01\x66\x76", [0x58c3] = "\x01\x66\x75", + [0x58c4] = "\x01\x66\x73", [0x58c5] = "\x01\x66\x77", + [0x58c6] = "\x04\x40\x7e", [0x58c7] = "\x01\x66\x71", + [0x58c8] = "\x01\x66\x72", [0x58c9] = "\x03\x44\x69", + [0x58ca] = "\x01\x66\x70", [0x58cb] = "\x05\x43\x2d", + [0x58cc] = "\x02\x47\x61", [0x58cd] = "\x03\x44\x67", + [0x58cf] = "\x02\x4e\x3c", [0x58d0] = "\x03\x49\x70", + [0x58d1] = "\x01\x6b\x34", [0x58d2] = "\x01\x6b\x35", + [0x58d3] = "\x01\x6b\x33", [0x58d4] = "\x03\x49\x72", + [0x58d5] = "\x02\x4e\x3b", [0x58d6] = "\x03\x49\x71", + [0x58d7] = "\x02\x4e\x3d", [0x58d8] = "\x03\x66\x4e", + [0x58d9] = "\x02\x54\x53", [0x58da] = "\x02\x54\x55", + [0x58db] = "\x03\x4e\x7e", [0x58dc] = "\x01\x6f\x32", + [0x58dd] = "\x02\x54\x56", [0x58de] = "\x01\x6f\x2b", + [0x58df] = "\x02\x54\x52", [0x58e0] = "\x01\x6f\x2a", + [0x58e1] = "\x01\x6f\x34", [0x58e2] = "\x01\x6f\x30", + [0x58e3] = "\x01\x6f\x31", [0x58e4] = "\x01\x6f\x2d", + [0x58e5] = "\x02\x54\x51", [0x58e6] = "\x01\x6f\x2c", + [0x58e7] = "\x02\x54\x57", [0x58e8] = "\x02\x54\x54", + [0x58e9] = "\x03\x4e\x7d", [0x58ea] = "\x01\x6f\x33", + [0x58eb] = "\x03\x4f\x22", [0x58ec] = "\x01\x6f\x2e", + [0x58ed] = "\x01\x6f\x2f", [0x58ee] = "\x02\x5a\x61", + [0x58ef] = "\x03\x52\x75", [0x58f0] = "\x02\x5a\x63", + [0x58f1] = "\x02\x5a\x62", [0x58f2] = "\x03\x52\x73", + [0x58f3] = "\x02\x5a\x64", [0x58f4] = "\x01\x72\x4a", + [0x58f5] = "\x02\x5a\x60", [0x58f6] = "\x03\x56\x51", + [0x58f7] = "\x03\x56\x52", [0x58f8] = "\x01\x75\x56", + [0x58f9] = "\x02\x5f\x64", [0x58fa] = "\x01\x75\x53", + [0x58fb] = "\x01\x75\x57", [0x58fc] = "\x01\x75\x55", + [0x58fd] = "\x01\x75\x54", [0x58fe] = "\x02\x63\x5e", + [0x58ff] = "\x04\x5d\x69", [0x5900] = "\x02\x63\x61", + [0x5901] = "\x07\x43\x52", [0x5902] = "\x02\x63\x60", + [0x5903] = "\x03\x59\x2e", [0x5904] = "\x02\x63\x5f", + [0x5905] = "\x01\x77\x43", [0x5906] = "\x02\x67\x34", + [0x5907] = "\x02\x67\x35", [0x5908] = "\x01\x79\x25", + [0x5909] = "\x02\x67\x36", [0x590a] = "\x01\x79\x26", + [0x590b] = "\x03\x5b\x38", [0x590c] = "\x03\x66\x4f", + [0x590d] = "\x01\x7a\x45", [0x590e] = "\x04\x64\x4f", + [0x590f] = "\x01\x7a\x44", [0x5910] = "\x02\x6c\x41", + [0x5911] = "\x03\x5e\x65", [0x5912] = "\x03\x5e\x66", + [0x5913] = "\x01\x7b\x2e", [0x5914] = "\x02\x6c\x42", + [0x5915] = "\x02\x6e\x2b", [0x5916] = "\x01\x7b\x75", + [0x5917] = "\x01\x7b\x76", [0x5918] = "\x03\x66\x50", + [0x5919] = "\x02\x6f\x53", [0x591a] = "\x03\x60\x4a", + [0x591b] = "\x01\x7c\x6d", [0x591c] = "\x03\x61\x4e", + [0x5964] = "\x01\x4b\x4b", [0x5965] = "\x03\x39\x33", + [0x5966] = "\x01\x5d\x50", [0x5967] = "\x01\x5d\x4f", + [0x5968] = "\x02\x47\x62", [0x5969] = "\x02\x47\x63", + [0x596b] = "\x01\x6b\x36", [0x596c] = "\x02\x5a\x65", + [0x596d] = "\x01\x6f\x35", [0x596e] = "\x02\x5a\x66", + [0x596f] = "\x02\x5f\x65", [0x5970] = "\x01\x4b\x4c", + [0x5971] = "\x03\x24\x3a", [0x5972] = "\x02\x2d\x53", + [0x5973] = "\x01\x53\x59", [0x5974] = "\x01\x53\x58", + [0x5976] = "\x02\x33\x27", [0x5977] = "\x01\x58\x44", + [0x5978] = "\x02\x33\x28", [0x5979] = "\x02\x39\x58", + [0x597a] = "\x03\x39\x39", [0x597b] = "\x02\x39\x57", + [0x597c] = "\x03\x39\x37", [0x597d] = "\x02\x39\x56", + [0x597e] = "\x03\x39\x35", [0x597f] = "\x03\x39\x38", + [0x5980] = "\x02\x40\x54", [0x5981] = "\x01\x62\x3f", + [0x5982] = "\x03\x3f\x39", [0x5983] = "\x03\x3f\x34", + [0x5984] = "\x02\x40\x53", [0x5985] = "\x01\x62\x3e", + [0x5986] = "\x03\x3f\x37", [0x5987] = "\x03\x3f\x30", + [0x5988] = "\x03\x3f\x33", [0x5989] = "\x02\x40\x55", + [0x598a] = "\x01\x62\x3d", [0x598b] = "\x03\x3f\x38", + [0x598c] = "\x02\x47\x65", [0x598d] = "\x02\x47\x68", + [0x598e] = "\x02\x47\x66", [0x598f] = "\x02\x47\x67", + [0x5990] = "\x02\x47\x6b", [0x5991] = "\x02\x47\x64", + [0x5992] = "\x02\x47\x6c", [0x5993] = "\x02\x47\x69", + [0x5994] = "\x02\x47\x6a", [0x5995] = "\x01\x6b\x38", + [0x5996] = "\x02\x4e\x3e", [0x5997] = "\x03\x49\x75", + [0x5998] = "\x03\x49\x73", [0x5999] = "\x01\x6b\x37", + [0x599a] = "\x03\x49\x74", [0x599b] = "\x02\x54\x5b", + [0x599c] = "\x02\x54\x59", [0x599d] = "\x03\x4f\x26", + [0x599e] = "\x04\x4d\x75", [0x599f] = "\x01\x6f\x36", + [0x59a0] = "\x02\x54\x58", [0x59a1] = "\x02\x54\x5a", + [0x59a2] = "\x03\x4f\x25", [0x59a3] = "\x01\x6f\x37", + [0x59a4] = "\x03\x4f\x23", [0x59a5] = "\x02\x5a\x67", + [0x59a6] = "\x03\x52\x77", [0x59a7] = "\x02\x5a\x68", + [0x59a8] = "\x01\x75\x58", [0x59a9] = "\x03\x59\x31", + [0x59aa] = "\x02\x67\x38", [0x59ab] = "\x02\x67\x3a", + [0x59ac] = "\x02\x67\x37", [0x59ad] = "\x02\x67\x39", + [0x59ae] = "\x02\x6a\x24", [0x59af] = "\x02\x6c\x43", + [0x59b0] = "\x03\x66\x51", [0x59b2] = "\x02\x71\x5e", + [0x59b3] = "\x01\x4b\x4d", [0x59b4] = "\x01\x53\x5a", + [0x59b5] = "\x02\x33\x29", [0x59b6] = "\x02\x33\x2b", + [0x59b7] = "\x02\x33\x2a", [0x59b9] = "\x02\x39\x5b", + [0x59ba] = "\x01\x5d\x52", [0x59bb] = "\x03\x39\x3e", + [0x59bc] = "\x02\x39\x59", [0x59bd] = "\x03\x39\x3a", + [0x59be] = "\x01\x5d\x51", [0x59bf] = "\x02\x39\x5c", + [0x59c0] = "\x03\x39\x3d", [0x59c1] = "\x02\x39\x5d", + [0x59c2] = "\x02\x39\x5a", [0x59c3] = "\x06\x45\x38", + [0x59c5] = "\x02\x40\x61", [0x59c6] = "\x01\x62\x47", + [0x59c7] = "\x02\x40\x59", [0x59c8] = "\x02\x40\x5f", + [0x59c9] = "\x03\x3f\x3f", [0x59ca] = "\x03\x3f\x3a", + [0x59cb] = "\x01\x62\x42", [0x59cc] = "\x01\x62\x45", + [0x59cd] = "\x02\x40\x58", [0x59ce] = "\x01\x62\x40", + [0x59cf] = "\x02\x40\x5c", [0x59d0] = "\x02\x47\x72", + [0x59d1] = "\x01\x62\x44", [0x59d2] = "\x03\x3f\x3b", + [0x59d3] = "\x02\x40\x57", [0x59d4] = "\x03\x3f\x3e", + [0x59d5] = "\x02\x40\x5d", [0x59d6] = "\x02\x40\x5a", + [0x59d7] = "\x02\x40\x60", [0x59d8] = "\x02\x40\x56", + [0x59d9] = "\x02\x40\x5e", [0x59da] = "\x01\x62\x43", + [0x59db] = "\x01\x62\x46", [0x59dc] = "\x02\x40\x5b", + [0x59dd] = "\x01\x62\x41", [0x59df] = "\x01\x66\x79", + [0x59e0] = "\x02\x47\x6e", [0x59e1] = "\x01\x66\x78", + [0x59e2] = "\x02\x47\x75", [0x59e3] = "\x02\x47\x74", + [0x59e4] = "\x01\x67\x21", [0x59e6] = "\x01\x67\x22", + [0x59e7] = "\x02\x47\x76", [0x59e8] = "\x01\x66\x7a", + [0x59e9] = "\x02\x47\x73", [0x59ea] = "\x01\x66\x7e", + [0x59eb] = "\x02\x47\x78", [0x59ec] = "\x02\x47\x6f", + [0x59ed] = "\x03\x44\x6b", [0x59ee] = "\x02\x47\x71", + [0x59ef] = "\x01\x66\x7b", [0x59f0] = "\x02\x47\x6d", + [0x59f1] = "\x02\x47\x70", [0x59f2] = "\x02\x47\x77", + [0x59f3] = "\x01\x66\x7c", [0x59f4] = "\x02\x47\x79", + [0x59fa] = "\x01\x66\x7d", [0x59fc] = "\x01\x6b\x39", + [0x59fd] = "\x02\x4e\x43", [0x59fe] = "\x02\x4e\x49", + [0x59ff] = "\x02\x4e\x41", [0x5a00] = "\x02\x4e\x4a", + [0x5a01] = "\x03\x49\x7b", [0x5a02] = "\x02\x4e\x40", + [0x5a03] = "\x02\x4e\x45", [0x5a04] = "\x02\x4e\x4b", + [0x5a05] = "\x02\x4e\x48", [0x5a06] = "\x02\x4e\x47", + [0x5a07] = "\x02\x4e\x46", [0x5a08] = "\x03\x49\x7a", + [0x5a09] = "\x02\x4e\x3f", [0x5a0a] = "\x02\x4e\x44", + [0x5a0b] = "\x03\x49\x79", [0x5a0d] = "\x02\x4e\x42", + [0x5a0f] = "\x01\x6f\x3c", [0x5a10] = "\x01\x6f\x39", + [0x5a11] = "\x02\x54\x64", [0x5a12] = "\x02\x54\x69", + [0x5a13] = "\x02\x54\x6b", [0x5a14] = "\x02\x54\x68", + [0x5a15] = "\x02\x54\x61", [0x5a16] = "\x02\x54\x63", + [0x5a17] = "\x02\x54\x6d", [0x5a18] = "\x02\x54\x6a", + [0x5a19] = "\x02\x54\x65", [0x5a1a] = "\x02\x54\x6e", + [0x5a1b] = "\x02\x54\x62", [0x5a1c] = "\x02\x54\x6c", + [0x5a1d] = "\x01\x6f\x3a", [0x5a1e] = "\x01\x6f\x40", + [0x5a1f] = "\x01\x6f\x3e", [0x5a20] = "\x02\x54\x5c", + [0x5a21] = "\x01\x6f\x3f", [0x5a22] = "\x01\x6f\x3b", + [0x5a23] = "\x02\x54\x5d", [0x5a24] = "\x02\x54\x5f", + [0x5a25] = "\x02\x54\x5e", [0x5a26] = "\x02\x54\x66", + [0x5a27] = "\x02\x54\x67", [0x5a28] = "\x03\x4f\x2c", + [0x5a29] = "\x01\x6f\x3d", [0x5a2a] = "\x03\x4f\x2b", + [0x5a2b] = "\x01\x6f\x38", [0x5a2e] = "\x02\x54\x60", + [0x5a30] = "\x02\x5a\x72", [0x5a31] = "\x01\x72\x4c", + [0x5a32] = "\x03\x52\x7e", [0x5a33] = "\x02\x5a\x69", + [0x5a34] = "\x01\x72\x4d", [0x5a35] = "\x01\x72\x50", + [0x5a36] = "\x02\x5a\x6e", [0x5a37] = "\x05\x51\x48", + [0x5a38] = "\x02\x5a\x6b", [0x5a39] = "\x01\x72\x4f", + [0x5a3a] = "\x04\x54\x29", [0x5a3b] = "\x03\x52\x7b", + [0x5a3c] = "\x02\x5a\x6f", [0x5a3d] = "\x02\x5a\x70", + [0x5a3e] = "\x02\x5a\x6a", [0x5a3f] = "\x02\x5a\x73", + [0x5a40] = "\x02\x5a\x6c", [0x5a41] = "\x02\x5a\x71", + [0x5a42] = "\x01\x72\x4e", [0x5a43] = "\x03\x52\x7c", + [0x5a44] = "\x01\x72\x4b", [0x5a45] = "\x02\x5a\x6d", + [0x5a46] = "\x03\x56\x54", [0x5a47] = "\x02\x5f\x6b", + [0x5a48] = "\x01\x75\x5b", [0x5a49] = "\x01\x75\x59", + [0x5a4a] = "\x01\x75\x5c", [0x5a4b] = "\x01\x75\x5a", + [0x5a4c] = "\x02\x5f\x6a", [0x5a4d] = "\x02\x5f\x67", + [0x5a4e] = "\x02\x5f\x66", [0x5a4f] = "\x03\x56\x55", + [0x5a50] = "\x02\x5f\x69", [0x5a51] = "\x04\x59\x2d", + [0x5a53] = "\x02\x5f\x68", [0x5a54] = "\x02\x63\x6f", + [0x5a55] = "\x01\x77\x49", [0x5a56] = "\x02\x63\x66", + [0x5a57] = "\x02\x63\x65", [0x5a58] = "\x03\x59\x32", + [0x5a59] = "\x01\x77\x44", [0x5a5a] = "\x02\x63\x6b", + [0x5a5b] = "\x02\x63\x6a", [0x5a5c] = "\x02\x63\x62", + [0x5a5d] = "\x02\x63\x6d", [0x5a5e] = "\x02\x63\x67", + [0x5a5f] = "\x01\x77\x48", [0x5a60] = "\x02\x63\x64", + [0x5a61] = "\x02\x63\x6c", [0x5a62] = "\x02\x63\x63", + [0x5a63] = "\x01\x77\x45", [0x5a64] = "\x01\x77\x47", + [0x5a65] = "\x02\x63\x68", [0x5a66] = "\x01\x77\x46", + [0x5a67] = "\x02\x63\x69", [0x5a68] = "\x03\x5b\x3a", + [0x5a69] = "\x02\x63\x6e", [0x5a6a] = "\x02\x67\x3e", + [0x5a6b] = "\x03\x5b\x39", [0x5a6c] = "\x01\x79\x2b", + [0x5a6d] = "\x02\x67\x3b", [0x5a6e] = "\x04\x61\x52", + [0x5a6f] = "\x02\x67\x3f", [0x5a70] = "\x03\x5b\x3b", + [0x5a71] = "\x04\x61\x4f", [0x5a72] = "\x01\x79\x28", + [0x5a73] = "\x02\x67\x3d", [0x5a74] = "\x01\x79\x2d", + [0x5a75] = "\x03\x5b\x3c", [0x5a76] = "\x01\x79\x2a", + [0x5a77] = "\x03\x5b\x3d", [0x5a78] = "\x02\x67\x3c", + [0x5a79] = "\x04\x61\x54", [0x5a7a] = "\x01\x79\x2c", + [0x5a7b] = "\x02\x67\x40", [0x5a7c] = "\x01\x79\x27", + [0x5a81] = "\x01\x7a\x47", [0x5a82] = "\x01\x7a\x49", + [0x5a83] = "\x03\x5d\x37", [0x5a84] = "\x02\x6a\x27", + [0x5a85] = "\x01\x7a\x48", [0x5a86] = "\x02\x6a\x25", + [0x5a87] = "\x01\x79\x29", [0x5a88] = "\x02\x6a\x26", + [0x5a89] = "\x01\x7a\x46", [0x5a8a] = "\x01\x7b\x2f", + [0x5a8b] = "\x01\x7b\x31", [0x5a8c] = "\x02\x6c\x45", + [0x5a8d] = "\x01\x7b\x30", [0x5a8e] = "\x02\x6c\x44", + [0x5a90] = "\x02\x6e\x30", [0x5a91] = "\x01\x7b\x77", + [0x5a92] = "\x02\x6e\x2f", [0x5a93] = "\x01\x7b\x78", + [0x5a94] = "\x02\x6e\x2d", [0x5a95] = "\x02\x6e\x2c", + [0x5a96] = "\x02\x6e\x31", [0x5a97] = "\x02\x6e\x32", + [0x5a98] = "\x02\x6f\x54", [0x5a99] = "\x03\x60\x4b", + [0x5a9a] = "\x02\x6e\x2e", [0x5a9d] = "\x02\x70\x54", + [0x5a9e] = "\x02\x70\x51", [0x5a9f] = "\x02\x70\x52", + [0x5aa0] = "\x02\x70\x53", [0x5aa1] = "\x01\x7d\x29", + [0x5aa2] = "\x03\x61\x50", [0x5aa3] = "\x02\x71\x40", + [0x5aa4] = "\x02\x71\x3f", [0x5aa5] = "\x02\x71\x3e", + [0x5aa6] = "\x02\x71\x5f", [0x5aa7] = "\x03\x61\x6c", + [0x5aa8] = "\x02\x72\x2e", [0x5aa9] = "\x02\x71\x79", + [0x5aaa] = "\x01\x7d\x3b", [0x5aab] = "\x01\x4b\x4e", + [0x5aac] = "\x01\x58\x45", [0x5aad] = "\x03\x39\x3f", + [0x5aae] = "\x0f\x38\x6c", [0x5aaf] = "\x03\x39\x40", + [0x5ab0] = "\x03\x3f\x40", [0x5ab1] = "\x03\x44\x73", + [0x5ab2] = "\x01\x67\x23", [0x5ab3] = "\x03\x49\x7d", + [0x5ab4] = "\x03\x49\x7c", [0x5ab6] = "\x03\x4f\x30", + [0x5ab7] = "\x03\x4f\x32", [0x5ab8] = "\x03\x4f\x2f", + [0x5ab9] = "\x03\x4f\x31", [0x5aba] = "\x01\x6f\x41", + [0x5abc] = "\x03\x66\x52", [0x5abd] = "\x02\x5a\x74", + [0x5abe] = "\x0f\x58\x33", [0x5abf] = "\x03\x59\x35", + [0x5ac0] = "\x01\x77\x4a", [0x5ac1] = "\x03\x59\x36", + [0x5ac2] = "\x02\x67\x41", [0x5ac3] = "\x03\x5b\x3f", + [0x5ac4] = "\x04\x61\x56", [0x5ac6] = "\x03\x5d\x38", + [0x5ac7] = "\x04\x67\x51", [0x5ac9] = "\x02\x71\x7a", + [0x5aca] = "\x01\x4b\x4f", [0x5acb] = "\x01\x4f\x51", + [0x5acc] = "\x01\x53\x5c", [0x5acd] = "\x01\x53\x5b", + [0x5acf] = "\x01\x58\x48", [0x5ad0] = "\x03\x34\x21", + [0x5ad1] = "\x02\x33\x2c", [0x5ad2] = "\x01\x58\x46", + [0x5ad3] = "\x02\x33\x2d", [0x5ad4] = "\x01\x58\x47", + [0x5ad5] = "\x03\x66\x53", [0x5ad6] = "\x03\x39\x41", + [0x5ad7] = "\x02\x39\x62", [0x5ad8] = "\x02\x39\x5e", + [0x5ad9] = "\x03\x39\x47", [0x5ada] = "\x04\x35\x63", + [0x5adb] = "\x01\x5d\x53", [0x5adc] = "\x02\x39\x61", + [0x5add] = "\x02\x39\x60", [0x5ade] = "\x02\x39\x5f", + [0x5adf] = "\x01\x5d\x54", [0x5ae0] = "\x02\x39\x63", + [0x5ae1] = "\x02\x39\x64", [0x5ae4] = "\x03\x3f\x45", + [0x5ae5] = "\x02\x40\x68", [0x5ae6] = "\x02\x40\x66", + [0x5ae7] = "\x02\x40\x6a", [0x5ae8] = "\x02\x40\x6b", + [0x5ae9] = "\x02\x40\x71", [0x5aea] = "\x03\x3f\x47", + [0x5aeb] = "\x02\x40\x6d", [0x5aec] = "\x02\x40\x6f", + [0x5aed] = "\x05\x43\x50", [0x5aee] = "\x02\x40\x67", + [0x5aef] = "\x02\x40\x62", [0x5af0] = "\x04\x3b\x55", + [0x5af1] = "\x02\x40\x6e", [0x5af2] = "\x03\x3f\x44", + [0x5af3] = "\x03\x3f\x46", [0x5af4] = "\x02\x40\x70", + [0x5af5] = "\x02\x40\x69", [0x5af6] = "\x02\x40\x6c", + [0x5af7] = "\x02\x40\x63", [0x5af8] = "\x01\x62\x49", + [0x5af9] = "\x02\x40\x65", [0x5afa] = "\x02\x40\x64", + [0x5afb] = "\x01\x62\x48", [0x5afc] = "\x01\x62\x4a", + [0x5afd] = "\x03\x3f\x49", [0x5afe] = "\x01\x67\x26", + [0x5aff] = "\x02\x47\x7b", [0x5b00] = "\x02\x47\x7d", + [0x5b01] = "\x02\x47\x7c", [0x5b02] = "\x02\x48\x23", + [0x5b03] = "\x01\x67\x24", [0x5b04] = "\x03\x44\x76", + [0x5b05] = "\x02\x47\x7e", [0x5b06] = "\x02\x47\x7a", + [0x5b07] = "\x02\x48\x21", [0x5b08] = "\x02\x48\x22", + [0x5b09] = "\x01\x67\x25", [0x5b0a] = "\x01\x67\x27", + [0x5b0b] = "\x02\x48\x24", [0x5b0d] = "\x02\x4e\x4f", + [0x5b0e] = "\x02\x4e\x4e", [0x5b0f] = "\x04\x47\x6a", + [0x5b10] = "\x02\x4e\x4c", [0x5b11] = "\x02\x4e\x4d", + [0x5b12] = "\x01\x6b\x3b", [0x5b13] = "\x01\x6b\x3d", + [0x5b14] = "\x01\x6b\x3a", [0x5b15] = "\x01\x6b\x3c", + [0x5b16] = "\x02\x54\x75", [0x5b17] = "\x02\x54\x76", + [0x5b18] = "\x02\x54\x71", [0x5b19] = "\x03\x4f\x36", + [0x5b1a] = "\x02\x54\x72", [0x5b1b] = "\x01\x6f\x43", + [0x5b1c] = "\x01\x6f\x48", [0x5b1d] = "\x01\x6f\x42", + [0x5b1e] = "\x01\x6f\x49", [0x5b1f] = "\x01\x6f\x44", + [0x5b20] = "\x02\x54\x73", [0x5b21] = "\x04\x4e\x2d", + [0x5b22] = "\x03\x4f\x33", [0x5b23] = "\x02\x54\x74", + [0x5b24] = "\x02\x54\x70", [0x5b25] = "\x01\x6f\x4a", + [0x5b26] = "\x01\x6f\x46", [0x5b27] = "\x03\x4f\x35", + [0x5b28] = "\x04\x4e\x2b", [0x5b29] = "\x01\x6f\x45", + [0x5b2a] = "\x01\x6f\x47", [0x5b2b] = "\x03\x4f\x34", + [0x5b2c] = "\x02\x54\x6f", [0x5b2d] = "\x03\x53\x24", + [0x5b2e] = "\x02\x5a\x76", [0x5b2f] = "\x01\x72\x52", + [0x5b30] = "\x03\x53\x22", [0x5b31] = "\x03\x53\x21", + [0x5b32] = "\x02\x5a\x78", [0x5b33] = "\x01\x72\x54", + [0x5b34] = "\x02\x5a\x7b", [0x5b35] = "\x02\x5a\x77", + [0x5b36] = "\x02\x5a\x75", [0x5b37] = "\x02\x5a\x7a", + [0x5b38] = "\x01\x72\x53", [0x5b39] = "\x02\x5a\x79", + [0x5b3a] = "\x07\x34\x32", [0x5b3b] = "\x01\x72\x51", + [0x5b3c] = "\x03\x53\x25", [0x5b3d] = "\x03\x56\x59", + [0x5b3e] = "\x01\x75\x5e", [0x5b3f] = "\x01\x75\x61", + [0x5b40] = "\x02\x5f\x6d", [0x5b41] = "\x03\x56\x5a", + [0x5b42] = "\x01\x75\x5f", [0x5b43] = "\x02\x5f\x6c", + [0x5b44] = "\x01\x75\x5d", [0x5b45] = "\x01\x75\x60", + [0x5b46] = "\x02\x63\x70", [0x5b47] = "\x02\x63\x71", + [0x5b48] = "\x02\x63\x72", [0x5b49] = "\x01\x77\x4b", + [0x5b4a] = "\x03\x59\x37", [0x5b4b] = "\x02\x63\x73", + [0x5b4d] = "\x01\x77\x4c", [0x5b4e] = "\x01\x79\x2f", + [0x5b4f] = "\x02\x67\x44", [0x5b50] = "\x02\x67\x45", + [0x5b51] = "\x02\x67\x43", [0x5b52] = "\x02\x67\x42", + [0x5b53] = "\x02\x67\x46", [0x5b54] = "\x01\x79\x2e", + [0x5b55] = "\x02\x6a\x2b", [0x5b56] = "\x02\x6a\x29", + [0x5b57] = "\x02\x6a\x2a", [0x5b58] = "\x02\x6a\x2c", + [0x5b59] = "\x02\x6a\x28", [0x5b5a] = "\x02\x6a\x2d", + [0x5b5b] = "\x02\x6c\x47", [0x5b5c] = "\x03\x5e\x67", + [0x5b5d] = "\x02\x6c\x48", [0x5b5e] = "\x02\x6c\x46", + [0x5b5f] = "\x01\x7b\x32", [0x5b60] = "\x02\x6e\x33", + [0x5b61] = "\x01\x7b\x79", [0x5b62] = "\x02\x6e\x34", + [0x5b63] = "\x02\x6f\x56", [0x5b64] = "\x02\x6f\x55", + [0x5b65] = "\x03\x62\x22", [0x5b9b] = "\x01\x4b\x50", + [0x5b9c] = "\x01\x62\x4b", [0x5b9d] = "\x03\x3f\x4b", + [0x5b9e] = "\x03\x44\x77", [0x5b9f] = "\x01\x67\x28", + [0x5ba0] = "\x03\x44\x78", [0x5ba1] = "\x03\x4a\x21", + [0x5ba2] = "\x03\x4a\x22", [0x5ba3] = "\x01\x6b\x3e", + [0x5ba4] = "\x03\x4f\x37", [0x5ba5] = "\x03\x53\x27", + [0x5ba6] = "\x01\x72\x56", [0x5ba7] = "\x03\x53\x26", + [0x5ba8] = "\x01\x72\x55", [0x5baa] = "\x03\x66\x54", + [0x5bac] = "\x03\x59\x38", [0x5bad] = "\x01\x79\x30", + [0x5bae] = "\x01\x7a\x29", [0x5baf] = "\x01\x7b\x33", + [0x5bb0] = "\x01\x4b\x51", [0x5bb1] = "\x01\x58\x49", + [0x5bb2] = "\x01\x67\x29", [0x5bb3] = "\x03\x4f\x39", + [0x5bb4] = "\x02\x67\x47", [0x5bb5] = "\x03\x27\x2f", + [0x5bb6] = "\x04\x21\x54", [0x5bb7] = "\x0f\x21\x6a", + [0x5bb8] = "\x04\x23\x30", [0x5bb9] = "\x03\x24\x3b", + [0x5bbb] = "\x0f\x22\x71", [0x5bbc] = "\x0f\x22\x72", + [0x5bbe] = "\x03\x27\x30", [0x5bbf] = "\x02\x25\x26", + [0x5bc0] = "\x04\x25\x21", [0x5bc1] = "\x03\x27\x33", + [0x5bc2] = "\x01\x4b\x52", [0x5bc3] = "\x04\x25\x23", + [0x5bc4] = "\x01\x4b\x55", [0x5bc5] = "\x01\x4b\x54", + [0x5bc6] = "\x01\x4b\x53", [0x5bc7] = "\x03\x27\x31", + [0x5bc8] = "\x0f\x25\x32", [0x5bc9] = "\x02\x25\x25", + [0x5bca] = "\x03\x2a\x72", [0x5bcb] = "\x02\x28\x6d", + [0x5bcc] = "\x03\x2a\x70", [0x5bcd] = "\x02\x28\x6f", + [0x5bce] = "\x01\x4f\x52", [0x5bcf] = "\x03\x2a\x74", + [0x5bd0] = "\x04\x28\x26", [0x5bd1] = "\x01\x4f\x54", + [0x5bd2] = "\x02\x28\x6c", [0x5bd3] = "\x02\x28\x6e", + [0x5bd4] = "\x01\x4f\x53", [0x5bd5] = "\x02\x28\x71", + [0x5bd6] = "\x02\x28\x70", [0x5bd7] = "\x02\x28\x72", + [0x5bd8] = "\x03\x2a\x73", [0x5bd9] = "\x03\x2a\x71", + [0x5bdc] = "\x0f\x28\x71", [0x5bdf] = "\x0f\x28\x6e", + [0x5be0] = "\x02\x2d\x57", [0x5be1] = "\x02\x2d\x55", + [0x5be2] = "\x01\x53\x5f", [0x5be3] = "\x02\x2d\x54", + [0x5be4] = "\x01\x53\x64", [0x5be5] = "\x01\x53\x61", + [0x5be6] = "\x01\x53\x5e", [0x5be7] = "\x03\x2f\x31", + [0x5be8] = "\x01\x53\x65", [0x5be9] = "\x03\x2f\x32", + [0x5bea] = "\x01\x53\x60", [0x5beb] = "\x01\x53\x63", + [0x5bec] = "\x06\x34\x60", [0x5bed] = "\x01\x53\x62", + [0x5bee] = "\x02\x2d\x56", [0x5bef] = "\x03\x2f\x33", + [0x5bf0] = "\x01\x53\x5d", [0x5bf1] = "\x03\x2f\x30", + [0x5bf4] = "\x01\x58\x4f", [0x5bf5] = "\x02\x33\x2f", + [0x5bf6] = "\x02\x33\x35", [0x5bf7] = "\x01\x58\x4c", + [0x5bf8] = "\x01\x58\x53", [0x5bf9] = "\x03\x34\x25", + [0x5bfa] = "\x01\x58\x4e", [0x5bfb] = "\x02\x33\x32", + [0x5bfc] = "\x02\x33\x34", [0x5bfd] = "\x01\x58\x51", + [0x5bfe] = "\x02\x33\x2e", [0x5bff] = "\x02\x33\x31", + [0x5c00] = "\x01\x58\x4d", [0x5c01] = "\x01\x58\x4a", + [0x5c02] = "\x02\x33\x30", [0x5c03] = "\x01\x58\x50", + [0x5c04] = "\x02\x33\x33", [0x5c05] = "\x01\x58\x52", + [0x5c06] = "\x01\x58\x4b", [0x5c07] = "\x04\x30\x2f", + [0x5c08] = "\x03\x34\x27", [0x5c09] = "\x03\x34\x26", + [0x5c0b] = "\x02\x39\x66", [0x5c0c] = "\x02\x39\x69", + [0x5c0d] = "\x01\x5d\x56", [0x5c0e] = "\x03\x39\x4b", + [0x5c0f] = "\x01\x5d\x60", [0x5c10] = "\x01\x5d\x5c", + [0x5c11] = "\x02\x39\x67", [0x5c12] = "\x03\x39\x4a", + [0x5c13] = "\x03\x39\x4e", [0x5c14] = "\x01\x5d\x64", + [0x5c15] = "\x01\x5d\x5d", [0x5c16] = "\x01\x5d\x62", + [0x5c17] = "\x01\x5d\x58", [0x5c18] = "\x04\x35\x68", + [0x5c19] = "\x01\x5d\x55", [0x5c1a] = "\x01\x5d\x57", + [0x5c1b] = "\x01\x5d\x63", [0x5c1c] = "\x02\x39\x68", + [0x5c1d] = "\x01\x5d\x5b", [0x5c1e] = "\x01\x5d\x5e", + [0x5c1f] = "\x01\x5d\x5a", [0x5c20] = "\x01\x5d\x5f", + [0x5c21] = "\x02\x39\x6a", [0x5c22] = "\x01\x5d\x61", + [0x5c23] = "\x01\x5d\x59", [0x5c24] = "\x02\x39\x65", + [0x5c25] = "\x03\x39\x4c", [0x5c28] = "\x03\x3f\x4f", + [0x5c29] = "\x03\x3f\x50", [0x5c2a] = "\x03\x3f\x4d", + [0x5c2b] = "\x03\x3f\x4c", [0x5c2c] = "\x03\x3f\x51", + [0x5c2d] = "\x02\x40\x72", [0x5c2e] = "\x01\x62\x4c", + [0x5c2f] = "\x02\x40\x74", [0x5c30] = "\x03\x3f\x55", + [0x5c31] = "\x01\x62\x4e", [0x5c32] = "\x01\x62\x50", + [0x5c33] = "\x04\x35\x66", [0x5c34] = "\x02\x40\x73", + [0x5c35] = "\x01\x62\x4d", [0x5c36] = "\x01\x62\x51", + [0x5c37] = "\x03\x3f\x56", [0x5c38] = "\x01\x62\x4f", + [0x5c3a] = "\x03\x3f\x54", [0x5c3b] = "\x03\x3f\x57", + [0x5c3c] = "\x01\x67\x2f", [0x5c3d] = "\x02\x48\x29", + [0x5c3e] = "\x01\x67\x37", [0x5c3f] = "\x02\x48\x26", + [0x5c40] = "\x03\x44\x7d", [0x5c41] = "\x01\x67\x38", + [0x5c42] = "\x01\x67\x2d", [0x5c43] = "\x03\x44\x79", + [0x5c44] = "\x02\x48\x27", [0x5c45] = "\x03\x44\x7c", + [0x5c46] = "\x03\x44\x7a", [0x5c47] = "\x01\x67\x32", + [0x5c48] = "\x03\x44\x7b", [0x5c49] = "\x02\x48\x28", + [0x5c4a] = "\x01\x67\x2b", [0x5c4b] = "\x01\x67\x2a", + [0x5c4c] = "\x03\x44\x7e", [0x5c4d] = "\x01\x67\x35", + [0x5c4e] = "\x01\x67\x34", [0x5c4f] = "\x01\x67\x33", + [0x5c50] = "\x01\x67\x31", [0x5c51] = "\x01\x67\x36", + [0x5c52] = "\x02\x48\x25", [0x5c53] = "\x01\x67\x2c", + [0x5c54] = "\x01\x67\x2e", [0x5c55] = "\x01\x67\x30", + [0x5c58] = "\x01\x6b\x40", [0x5c59] = "\x01\x6b\x43", + [0x5c5a] = "\x03\x4a\x24", [0x5c5b] = "\x01\x6b\x47", + [0x5c5c] = "\x01\x6b\x41", [0x5c5d] = "\x01\x6b\x46", + [0x5c5e] = "\x01\x6b\x44", [0x5c5f] = "\x03\x4a\x27", + [0x5c60] = "\x01\x6b\x3f", [0x5c61] = "\x03\x4a\x26", + [0x5c62] = "\x01\x6b\x45", [0x5c63] = "\x01\x6b\x42", + [0x5c64] = "\x0f\x4c\x6b", [0x5c66] = "\x04\x4e\x32", + [0x5c67] = "\x02\x54\x7a", [0x5c68] = "\x01\x6f\x4d", + [0x5c69] = "\x01\x6f\x4b", [0x5c6a] = "\x03\x4f\x3c", + [0x5c6b] = "\x02\x54\x7b", [0x5c6c] = "\x04\x4e\x33", + [0x5c6d] = "\x01\x6f\x4e", [0x5c6e] = "\x01\x6f\x4c", + [0x5c6f] = "\x02\x54\x79", [0x5c70] = "\x02\x54\x78", + [0x5c71] = "\x03\x4f\x3b", [0x5c72] = "\x01\x72\x5a", + [0x5c73] = "\x02\x54\x77", [0x5c74] = "\x01\x72\x58", + [0x5c75] = "\x01\x72\x57", [0x5c76] = "\x02\x5a\x7c", + [0x5c77] = "\x01\x6f\x4f", [0x5c78] = "\x01\x72\x59", + [0x5c79] = "\x02\x5a\x7d", [0x5c7a] = "\x01\x72\x5c", + [0x5c7b] = "\x02\x5a\x7e", [0x5c7c] = "\x01\x72\x5b", + [0x5c7d] = "\x01\x75\x63", [0x5c7e] = "\x02\x5f\x6f", + [0x5c7f] = "\x01\x75\x62", [0x5c80] = "\x01\x75\x67", + [0x5c81] = "\x01\x75\x65", [0x5c82] = "\x01\x75\x66", + [0x5c83] = "\x01\x77\x4e", [0x5c84] = "\x01\x75\x64", + [0x5c85] = "\x02\x5f\x6e", [0x5c86] = "\x02\x5b\x21", + [0x5c87] = "\x01\x77\x4d", [0x5c88] = "\x01\x77\x4f", + [0x5c89] = "\x03\x59\x3a", [0x5c8a] = "\x01\x79\x31", + [0x5c8b] = "\x01\x79\x32", [0x5c8c] = "\x04\x61\x5f", + [0x5c8d] = "\x02\x6a\x2e", [0x5c8e] = "\x04\x69\x52", + [0x5c8f] = "\x01\x7c\x4a", [0x5c90] = "\x01\x7c\x49", + [0x5c91] = "\x01\x4b\x57", [0x5c92] = "\x03\x22\x5e", + [0x5c93] = "\x03\x22\x5d", [0x5c94] = "\x02\x22\x75", + [0x5c95] = "\x01\x58\x54", [0x5c96] = "\x03\x24\x3c", + [0x5c97] = "\x02\x22\x72", [0x5c98] = "\x02\x22\x73", + [0x5c99] = "\x02\x22\x71", [0x5c9a] = "\x03\x24\x3d", + [0x5c9b] = "\x02\x22\x74", [0x5c9c] = "\x03\x66\x55", + [0x5c9e] = "\x02\x25\x2a", [0x5c9f] = "\x02\x25\x27", + [0x5ca0] = "\x02\x25\x2c", [0x5ca1] = "\x02\x25\x28", + [0x5ca2] = "\x01\x4b\x58", [0x5ca3] = "\x01\x4b\x5b", + [0x5ca4] = "\x03\x27\x35", [0x5ca5] = "\x02\x25\x29", + [0x5ca6] = "\x01\x4b\x5a", [0x5ca7] = "\x02\x25\x2b", + [0x5ca8] = "\x03\x27\x39", [0x5ca9] = "\x03\x27\x34", + [0x5caa] = "\x01\x4b\x59", [0x5cab] = "\x03\x39\x51", + [0x5cad] = "\x03\x2a\x77", [0x5cae] = "\x04\x28\x2b", + [0x5caf] = "\x02\x28\x75", [0x5cb0] = "\x02\x28\x77", + [0x5cb1] = "\x01\x4f\x57", [0x5cb2] = "\x02\x28\x73", + [0x5cb3] = "\x02\x28\x76", [0x5cb4] = "\x02\x28\x74", + [0x5cb5] = "\x01\x4f\x55", [0x5cb6] = "\x01\x4f\x58", + [0x5cb7] = "\x03\x2a\x75", [0x5cb8] = "\x01\x4f\x56", + [0x5cb9] = "\x03\x2a\x78", [0x5cbc] = "\x03\x2f\x35", + [0x5cbd] = "\x02\x2d\x59", [0x5cbe] = "\x02\x2d\x5d", + [0x5cbf] = "\x02\x2d\x5a", [0x5cc0] = "\x03\x2f\x38", + [0x5cc1] = "\x01\x53\x68", [0x5cc2] = "\x03\x2f\x34", + [0x5cc3] = "\x01\x53\x69", [0x5cc4] = "\x03\x2f\x3e", + [0x5cc5] = "\x02\x2d\x5c", [0x5cc6] = "\x03\x2f\x37", + [0x5cc7] = "\x02\x2d\x5e", [0x5cc8] = "\x02\x2d\x60", + [0x5cc9] = "\x03\x2f\x3c", [0x5cca] = "\x01\x53\x66", + [0x5ccb] = "\x02\x2d\x5f", [0x5ccc] = "\x04\x41\x39", + [0x5ccd] = "\x03\x2f\x3b", [0x5cce] = "\x01\x53\x67", + [0x5cd2] = "\x0f\x45\x6d", [0x5cd4] = "\x02\x39\x71", + [0x5cd5] = "\x02\x2d\x5b", [0x5cd6] = "\x02\x33\x36", + [0x5cd7] = "\x02\x33\x3f", [0x5cd8] = "\x02\x33\x3d", + [0x5cd9] = "\x02\x33\x38", [0x5cda] = "\x02\x33\x39", + [0x5cdb] = "\x02\x33\x3e", [0x5cdc] = "\x02\x33\x40", + [0x5cdd] = "\x01\x58\x56", [0x5cde] = "\x03\x34\x29", + [0x5cdf] = "\x02\x33\x3b", [0x5ce0] = "\x02\x33\x37", + [0x5ce1] = "\x01\x58\x55", [0x5ce2] = "\x01\x58\x57", + [0x5ce3] = "\x02\x33\x3a", [0x5ce4] = "\x02\x33\x41", + [0x5ce5] = "\x02\x33\x3c", [0x5ce8] = "\x01\x5d\x65", + [0x5ce9] = "\x02\x39\x74", [0x5cea] = "\x02\x39\x6c", + [0x5ceb] = "\x02\x39\x72", [0x5cec] = "\x02\x39\x73", + [0x5ced] = "\x01\x5d\x66", [0x5cee] = "\x03\x39\x4f", + [0x5cef] = "\x02\x39\x6b", [0x5cf0] = "\x02\x39\x6d", + [0x5cf1] = "\x02\x2d\x58", [0x5cf2] = "\x02\x39\x6f", + [0x5cf3] = "\x02\x39\x70", [0x5cf4] = "\x02\x39\x6e", + [0x5cf5] = "\x01\x62\x53", [0x5cf6] = "\x04\x4e\x3b", + [0x5cf7] = "\x03\x39\x52", [0x5cf9] = "\x02\x40\x7b", + [0x5cfa] = "\x02\x5b\x22", [0x5cfb] = "\x02\x40\x7c", + [0x5cfc] = "\x02\x40\x79", [0x5cfd] = "\x01\x5d\x67", + [0x5cfe] = "\x01\x62\x55", [0x5cff] = "\x02\x40\x78", + [0x5d00] = "\x02\x40\x7e", [0x5d01] = "\x02\x40\x7d", + [0x5d02] = "\x01\x62\x52", [0x5d03] = "\x02\x41\x23", + [0x5d04] = "\x02\x40\x77", [0x5d05] = "\x02\x41\x22", + [0x5d06] = "\x02\x40\x75", [0x5d07] = "\x02\x41\x21", + [0x5d08] = "\x02\x40\x7a", [0x5d09] = "\x01\x62\x54", + [0x5d0a] = "\x03\x3f\x59", [0x5d0b] = "\x02\x48\x30", + [0x5d0c] = "\x03\x45\x23", [0x5d0d] = "\x02\x48\x2b", + [0x5d0e] = "\x02\x48\x31", [0x5d0f] = "\x02\x48\x2c", + [0x5d10] = "\x02\x48\x2a", [0x5d11] = "\x02\x48\x2d", + [0x5d12] = "\x01\x67\x39", [0x5d13] = "\x03\x45\x24", + [0x5d14] = "\x02\x48\x2f", [0x5d15] = "\x03\x45\x25", + [0x5d16] = "\x02\x48\x2e", [0x5d17] = "\x01\x67\x3a", + [0x5d18] = "\x01\x6b\x49", [0x5d19] = "\x01\x6b\x48", + [0x5d1a] = "\x02\x4e\x56", [0x5d1b] = "\x02\x4e\x59", + [0x5d1c] = "\x02\x4e\x51", [0x5d1d] = "\x02\x4e\x55", + [0x5d1e] = "\x01\x6b\x4a", [0x5d1f] = "\x02\x4e\x54", + [0x5d20] = "\x02\x4e\x52", [0x5d21] = "\x02\x4e\x58", + [0x5d22] = "\x02\x4e\x53", [0x5d23] = "\x02\x4e\x50", + [0x5d24] = "\x02\x4e\x57", [0x5d25] = "\x03\x4a\x2a", + [0x5d26] = "\x02\x55\x23", [0x5d27] = "\x01\x6f\x52", + [0x5d28] = "\x02\x63\x74", [0x5d29] = "\x02\x54\x7e", + [0x5d2a] = "\x02\x55\x21", [0x5d2b] = "\x02\x54\x7d", + [0x5d2c] = "\x02\x40\x76", [0x5d2d] = "\x01\x6f\x51", + [0x5d2e] = "\x02\x55\x24", [0x5d2f] = "\x02\x54\x7c", + [0x5d30] = "\x01\x6f\x50", [0x5d31] = "\x01\x6f\x53", + [0x5d32] = "\x02\x55\x22", [0x5d33] = "\x02\x5b\x23", + [0x5d34] = "\x01\x72\x5d", [0x5d35] = "\x02\x5b\x24", + [0x5d36] = "\x02\x5b\x25", [0x5d37] = "\x03\x53\x2b", + [0x5d38] = "\x02\x5f\x70", [0x5d39] = "\x01\x75\x68", + [0x5d3a] = "\x02\x63\x75", [0x5d3b] = "\x02\x63\x76", + [0x5d3c] = "\x03\x59\x3c", [0x5d3d] = "\x03\x59\x3b", + [0x5d3e] = "\x02\x63\x77", [0x5d3f] = "\x02\x67\x49", + [0x5d40] = "\x02\x67\x48", [0x5d41] = "\x02\x6a\x30", + [0x5d43] = "\x02\x6a\x2f", [0x5d44] = "\x02\x6c\x4a", + [0x5d45] = "\x02\x6c\x4b", [0x5d46] = "\x02\x6c\x49", + [0x5d47] = "\x02\x6e\x35", [0x5d48] = "\x01\x7b\x7a", + [0x5d49] = "\x01\x4b\x5c", [0x5d4a] = "\x01\x53\x6b", + [0x5d4b] = "\x01\x53\x6a", [0x5d4c] = "\x01\x58\x5a", + [0x5d4d] = "\x01\x58\x59", [0x5d4e] = "\x02\x33\x43", + [0x5d4f] = "\x02\x33\x44", [0x5d50] = "\x02\x33\x42", + [0x5d51] = "\x03\x34\x2a", [0x5d52] = "\x01\x58\x58", + [0x5d53] = "\x02\x39\x78", [0x5d54] = "\x03\x39\x55", + [0x5d55] = "\x02\x39\x79", [0x5d56] = "\x02\x39\x75", + [0x5d57] = "\x01\x5d\x68", [0x5d58] = "\x02\x39\x76", + [0x5d59] = "\x03\x39\x54", [0x5d5a] = "\x02\x39\x77", + [0x5d5c] = "\x03\x66\x57", [0x5d5f] = "\x02\x41\x26", + [0x5d60] = "\x02\x41\x28", [0x5d61] = "\x02\x41\x24", + [0x5d62] = "\x02\x41\x27", [0x5d63] = "\x01\x62\x56", + [0x5d64] = "\x02\x41\x25", [0x5d65] = "\x01\x62\x57", + [0x5d67] = "\x03\x45\x28", [0x5d68] = "\x02\x42\x79", + [0x5d69] = "\x01\x67\x3d", [0x5d6a] = "\x01\x67\x3c", + [0x5d6b] = "\x03\x45\x27", [0x5d6c] = "\x01\x67\x3b", + [0x5d6d] = "\x04\x41\x3a", [0x5d6e] = "\x02\x48\x32", + [0x5d6f] = "\x02\x48\x33", [0x5d70] = "\x04\x41\x3b", + [0x5d72] = "\x02\x4e\x5b", [0x5d73] = "\x02\x4e\x5d", + [0x5d74] = "\x01\x6b\x4e", [0x5d75] = "\x01\x6b\x4b", + [0x5d76] = "\x03\x4a\x2c", [0x5d77] = "\x01\x6b\x4d", + [0x5d78] = "\x01\x6b\x4c", [0x5d79] = "\x02\x4e\x5c", + [0x5d7a] = "\x02\x4e\x5a", [0x5d7b] = "\x03\x4a\x2b", + [0x5d7c] = "\x03\x4a\x2d", [0x5d80] = "\x02\x55\x2b", + [0x5d81] = "\x02\x55\x28", [0x5d82] = "\x02\x55\x29", + [0x5d83] = "\x01\x6f\x57", [0x5d84] = "\x02\x55\x2a", + [0x5d85] = "\x02\x55\x25", [0x5d86] = "\x02\x55\x26", + [0x5d87] = "\x01\x6f\x54", [0x5d88] = "\x03\x4f\x3f", + [0x5d89] = "\x01\x6f\x55", [0x5d8a] = "\x02\x55\x27", + [0x5d8b] = "\x01\x6f\x56", [0x5d8c] = "\x03\x4f\x40", + [0x5d8d] = "\x02\x5b\x29", [0x5d8e] = "\x03\x53\x2d", + [0x5d8f] = "\x02\x5b\x2a", [0x5d90] = "\x02\x5b\x27", + [0x5d91] = "\x02\x5b\x28", [0x5d92] = "\x01\x72\x5e", + [0x5d93] = "\x02\x5b\x26", [0x5d94] = "\x04\x54\x42", + [0x5d95] = "\x03\x53\x2c", [0x5d96] = "\x03\x53\x2f", + [0x5d98] = "\x04\x59\x3f", [0x5d99] = "\x02\x5f\x74", + [0x5d9a] = "\x02\x5f\x71", [0x5d9b] = "\x02\x5f\x73", + [0x5d9c] = "\x01\x75\x6b", [0x5d9d] = "\x02\x5f\x77", + [0x5d9e] = "\x01\x75\x6a", [0x5d9f] = "\x02\x5f\x75", + [0x5da0] = "\x02\x5f\x78", [0x5da1] = "\x02\x5f\x76", + [0x5da2] = "\x02\x5f\x72", [0x5da3] = "\x01\x75\x69", + [0x5da5] = "\x02\x63\x79", [0x5da6] = "\x04\x5e\x24", + [0x5da7] = "\x02\x63\x7a", [0x5da8] = "\x02\x63\x78", + [0x5da9] = "\x03\x59\x3d", [0x5daa] = "\x02\x63\x7c", + [0x5dab] = "\x01\x77\x50", [0x5dac] = "\x01\x77\x51", + [0x5dad] = "\x02\x67\x4b", [0x5dae] = "\x01\x79\x34", + [0x5daf] = "\x02\x63\x7b", [0x5db0] = "\x02\x67\x4a", + [0x5db1] = "\x01\x79\x33", [0x5db2] = "\x02\x6a\x33", + [0x5db3] = "\x02\x6a\x34", [0x5db4] = "\x01\x7a\x4a", + [0x5db5] = "\x02\x6a\x32", [0x5db6] = "\x04\x64\x65", + [0x5db7] = "\x02\x6a\x31", [0x5db9] = "\x02\x6c\x4c", + [0x5dba] = "\x01\x7b\x34", [0x5dbb] = "\x03\x5e\x68", + [0x5dbc] = "\x02\x6f\x57", [0x5dbd] = "\x02\x70\x56", + [0x5dbe] = "\x02\x70\x55", [0x5dbf] = "\x03\x60\x7e", + [0x5dc0] = "\x01\x7c\x6e", [0x5dc1] = "\x01\x7d\x2a", + [0x5dc2] = "\x02\x70\x57", [0x5dc3] = "\x02\x71\x60", + [0x5dc4] = "\x03\x61\x6d", [0x5dc5] = "\x01\x7d\x3c", + [0x5dc6] = "\x01\x4b\x5d", [0x5dc7] = "\x01\x4f\x59", + [0x5dc9] = "\x01\x67\x3e", [0x5dcb] = "\x01\x7a\x4b", + [0x5dcc] = "\x01\x4b\x5e", [0x5dcd] = "\x01\x53\x6c", + [0x5dce] = "\x01\x5d\x69", [0x5dcf] = "\x01\x62\x58", + [0x5dd0] = "\x01\x77\x52", [0x5dd1] = "\x01\x4f\x5a", + [0x5dd3] = "\x02\x2d\x62", [0x5dd4] = "\x02\x2d\x61", + [0x5dd5] = "\x02\x33\x45", [0x5dd6] = "\x03\x34\x30", + [0x5dd7] = "\x01\x58\x5d", [0x5dd8] = "\x01\x58\x5b", + [0x5dd9] = "\x01\x58\x5f", [0x5dda] = "\x02\x33\x47", + [0x5ddb] = "\x03\x34\x2d", [0x5ddc] = "\x01\x58\x5e", + [0x5ddd] = "\x01\x58\x5c", [0x5dde] = "\x03\x34\x2f", + [0x5ddf] = "\x03\x34\x2e", [0x5de0] = "\x03\x34\x31", + [0x5de2] = "\x02\x33\x46", [0x5de3] = "\x01\x5d\x6c", + [0x5de4] = "\x02\x3a\x21", [0x5de5] = "\x03\x39\x58", + [0x5de6] = "\x01\x5d\x6b", [0x5de7] = "\x01\x5d\x6d", + [0x5de8] = "\x02\x3a\x26", [0x5de9] = "\x01\x5d\x6f", + [0x5dea] = "\x02\x3a\x23", [0x5deb] = "\x02\x3a\x24", + [0x5dec] = "\x02\x39\x7a", [0x5ded] = "\x01\x5d\x6e", + [0x5dee] = "\x02\x3a\x27", [0x5def] = "\x04\x35\x7b", + [0x5df0] = "\x03\x39\x57", [0x5df1] = "\x02\x39\x7c", + [0x5df2] = "\x03\x39\x56", [0x5df3] = "\x02\x39\x7d", + [0x5df4] = "\x02\x39\x7b", [0x5df5] = "\x01\x5d\x6a", + [0x5df6] = "\x03\x39\x59", [0x5df7] = "\x02\x3a\x25", + [0x5df8] = "\x02\x39\x7e", [0x5df9] = "\x02\x3a\x22", + [0x5dfd] = "\x02\x41\x34", [0x5dfe] = "\x03\x3f\x5d", + [0x5dff] = "\x02\x41\x33", [0x5e00] = "\x02\x41\x31", + [0x5e01] = "\x02\x41\x29", [0x5e02] = "\x02\x41\x38", + [0x5e03] = "\x02\x41\x2c", [0x5e04] = "\x02\x41\x36", + [0x5e05] = "\x02\x41\x3d", [0x5e06] = "\x02\x41\x35", + [0x5e07] = "\x01\x62\x60", [0x5e08] = "\x03\x3f\x66", + [0x5e09] = "\x01\x62\x5c", [0x5e0a] = "\x02\x41\x2a", + [0x5e0b] = "\x03\x3f\x60", [0x5e0c] = "\x02\x41\x30", + [0x5e0d] = "\x01\x62\x5e", [0x5e0e] = "\x03\x3f\x68", + [0x5e0f] = "\x02\x41\x2f", [0x5e10] = "\x01\x62\x5f", + [0x5e11] = "\x01\x62\x61", [0x5e12] = "\x02\x41\x32", + [0x5e13] = "\x03\x3f\x69", [0x5e14] = "\x01\x62\x59", + [0x5e15] = "\x01\x62\x5a", [0x5e16] = "\x02\x41\x3e", + [0x5e17] = "\x02\x41\x3c", [0x5e18] = "\x03\x3f\x62", + [0x5e19] = "\x02\x41\x3b", [0x5e1a] = "\x02\x41\x2d", + [0x5e1b] = "\x03\x3f\x65", [0x5e1c] = "\x02\x41\x39", + [0x5e1d] = "\x04\x3b\x66", [0x5e1e] = "\x01\x62\x5d", + [0x5e1f] = "\x06\x4f\x6f", [0x5e20] = "\x03\x3f\x5e", + [0x5e21] = "\x03\x66\x59", [0x5e22] = "\x03\x3f\x63", + [0x5e23] = "\x01\x62\x5b", [0x5e24] = "\x02\x41\x3a", + [0x5e25] = "\x02\x41\x2b", [0x5e26] = "\x02\x41\x2e", + [0x5e27] = "\x02\x41\x37", [0x5e2b] = "\x03\x66\x58", + [0x5e2d] = "\x02\x4f\x22", [0x5e2e] = "\x02\x48\x3d", + [0x5e2f] = "\x03\x45\x2e", [0x5e30] = "\x02\x48\x36", + [0x5e31] = "\x02\x48\x49", [0x5e32] = "\x02\x48\x52", + [0x5e33] = "\x02\x48\x39", [0x5e34] = "\x01\x67\x49", + [0x5e35] = "\x03\x45\x2b", [0x5e36] = "\x02\x48\x46", + [0x5e37] = "\x01\x67\x3f", [0x5e38] = "\x01\x67\x41", + [0x5e39] = "\x01\x67\x4d", [0x5e3a] = "\x02\x48\x37", + [0x5e3b] = "\x03\x45\x37", [0x5e3c] = "\x03\x45\x2f", + [0x5e3d] = "\x01\x67\x42", [0x5e3e] = "\x01\x67\x44", + [0x5e3f] = "\x01\x67\x4e", [0x5e40] = "\x01\x67\x43", + [0x5e41] = "\x03\x45\x39", [0x5e42] = "\x04\x41\x41", + [0x5e43] = "\x04\x41\x46", [0x5e44] = "\x03\x45\x38", + [0x5e45] = "\x01\x67\x4c", [0x5e46] = "\x02\x48\x3f", + [0x5e47] = "\x04\x41\x48", [0x5e48] = "\x02\x48\x34", + [0x5e49] = "\x01\x67\x4a", [0x5e4a] = "\x02\x48\x3e", + [0x5e4b] = "\x01\x67\x46", [0x5e4c] = "\x02\x48\x50", + [0x5e4d] = "\x01\x67\x4b", [0x5e4e] = "\x02\x48\x4e", + [0x5e4f] = "\x02\x48\x42", [0x5e50] = "\x02\x48\x4c", + [0x5e51] = "\x01\x67\x48", [0x5e52] = "\x02\x48\x35", + [0x5e53] = "\x02\x48\x4f", [0x5e54] = "\x02\x48\x4a", + [0x5e55] = "\x03\x45\x2a", [0x5e56] = "\x02\x48\x51", + [0x5e57] = "\x01\x67\x40", [0x5e58] = "\x04\x41\x40", + [0x5e59] = "\x03\x45\x2d", [0x5e5a] = "\x01\x67\x4f", + [0x5e5b] = "\x01\x67\x45", [0x5e5c] = "\x03\x45\x31", + [0x5e5d] = "\x03\x45\x29", [0x5e5e] = "\x02\x48\x3b", + [0x5e5f] = "\x03\x45\x34", [0x5e60] = "\x02\x48\x43", + [0x5e61] = "\x02\x48\x47", [0x5e62] = "\x03\x45\x33", + [0x5e63] = "\x02\x48\x4b", [0x5e64] = "\x01\x67\x47", + [0x5e65] = "\x02\x48\x3a", [0x5e66] = "\x02\x48\x38", + [0x5e67] = "\x02\x48\x44", [0x5e68] = "\x04\x41\x42", + [0x5e69] = "\x04\x41\x43", [0x5e6a] = "\x03\x45\x32", + [0x5e6b] = "\x03\x45\x35", [0x5e6c] = "\x02\x48\x41", + [0x5e6d] = "\x02\x48\x40", [0x5e6e] = "\x03\x45\x36", + [0x5e6f] = "\x02\x48\x45", [0x5e70] = "\x02\x48\x48", + [0x5e72] = "\x02\x48\x4d", [0x5e73] = "\x03\x66\x5a", + [0x5e75] = "\x04\x47\x75", [0x5e76] = "\x02\x4e\x60", + [0x5e77] = "\x0f\x4d\x22", [0x5e78] = "\x01\x6b\x4f", + [0x5e79] = "\x02\x4e\x6a", [0x5e7a] = "\x02\x4e\x62", + [0x5e7b] = "\x01\x6b\x55", [0x5e7c] = "\x01\x6b\x59", + [0x5e7d] = "\x02\x4e\x73", [0x5e7e] = "\x02\x4e\x7b", + [0x5e7f] = "\x02\x4e\x6c", [0x5e80] = "\x01\x6b\x51", + [0x5e81] = "\x03\x4a\x34", [0x5e82] = "\x02\x4e\x70", + [0x5e83] = "\x02\x48\x3c", [0x5e84] = "\x03\x4a\x35", + [0x5e85] = "\x01\x6b\x52", [0x5e86] = "\x02\x4e\x77", + [0x5e87] = "\x02\x4e\x7c", [0x5e88] = "\x02\x4e\x74", + [0x5e89] = "\x03\x4a\x2f", [0x5e8a] = "\x02\x4e\x76", + [0x5e8b] = "\x02\x4f\x21", [0x5e8c] = "\x02\x4e\x78", + [0x5e8d] = "\x02\x4e\x66", [0x5e8e] = "\x02\x4e\x6f", + [0x5e8f] = "\x03\x45\x30", [0x5e90] = "\x03\x4a\x38", + [0x5e91] = "\x01\x6b\x5a", [0x5e92] = "\x03\x4a\x33", + [0x5e93] = "\x01\x6b\x56", [0x5e94] = "\x02\x4e\x64", + [0x5e95] = "\x02\x4e\x71", [0x5e96] = "\x01\x6b\x54", + [0x5e97] = "\x02\x4e\x6b", [0x5e98] = "\x01\x6b\x53", + [0x5e99] = "\x02\x4e\x79", [0x5e9a] = "\x02\x4e\x68", + [0x5e9b] = "\x02\x4e\x61", [0x5e9c] = "\x01\x6b\x57", + [0x5e9d] = "\x02\x4e\x7e", [0x5e9e] = "\x03\x4a\x39", + [0x5e9f] = "\x04\x47\x77", [0x5ea0] = "\x02\x4e\x63", + [0x5ea1] = "\x02\x4e\x75", [0x5ea2] = "\x02\x4e\x72", + [0x5ea3] = "\x02\x4e\x6d", [0x5ea4] = "\x02\x4e\x5f", + [0x5ea5] = "\x02\x4e\x5e", [0x5ea6] = "\x02\x4e\x67", + [0x5ea7] = "\x02\x4e\x7a", [0x5ea8] = "\x01\x6b\x58", + [0x5ea9] = "\x02\x4e\x7d", [0x5eaa] = "\x02\x4e\x65", + [0x5eab] = "\x02\x4e\x69", [0x5eac] = "\x01\x6b\x50", + [0x5ead] = "\x03\x4a\x32", [0x5eae] = "\x03\x4a\x37", + [0x5eaf] = "\x0f\x4d\x27", [0x5eb0] = "\x03\x67\x2a", + [0x5eb1] = "\x03\x4a\x31", [0x5eb2] = "\x01\x6f\x63", + [0x5eb3] = "\x01\x6f\x5e", [0x5eb4] = "\x02\x55\x4d", + [0x5eb5] = "\x02\x55\x49", [0x5eb6] = "\x02\x55\x31", + [0x5eb7] = "\x01\x6f\x5a", [0x5eb8] = "\x03\x4f\x42", + [0x5eb9] = "\x03\x4f\x50", [0x5eba] = "\x04\x4e\x45", + [0x5ebb] = "\x01\x6f\x59", [0x5ebc] = "\x01\x6f\x5f", + [0x5ebd] = "\x04\x4e\x47", [0x5ebe] = "\x03\x4f\x43", + [0x5ebf] = "\x03\x4f\x41", [0x5ec0] = "\x02\x55\x2f", + [0x5ec1] = "\x01\x6f\x5d", [0x5ec2] = "\x02\x55\x3b", + [0x5ec3] = "\x02\x55\x2d", [0x5ec4] = "\x02\x55\x2e", + [0x5ec5] = "\x01\x6f\x58", [0x5ec6] = "\x02\x55\x4c", + [0x5ec7] = "\x01\x6f\x61", [0x5ec8] = "\x02\x55\x3e", + [0x5ec9] = "\x02\x55\x43", [0x5eca] = "\x02\x55\x3d", + [0x5ecb] = "\x02\x5b\x3c", [0x5ecc] = "\x02\x55\x39", + [0x5ecd] = "\x02\x55\x41", [0x5ece] = "\x02\x55\x3f", + [0x5ecf] = "\x02\x55\x32", [0x5ed0] = "\x02\x55\x2c", + [0x5ed1] = "\x02\x55\x47", [0x5ed2] = "\x01\x6f\x60", + [0x5ed3] = "\x02\x55\x48", [0x5ed4] = "\x03\x4f\x48", + [0x5ed5] = "\x02\x55\x42", [0x5ed6] = "\x03\x4f\x49", + [0x5ed7] = "\x02\x55\x37", [0x5ed8] = "\x02\x55\x35", + [0x5ed9] = "\x02\x55\x30", [0x5eda] = "\x03\x4f\x4b", + [0x5edb] = "\x03\x4f\x4e", [0x5edc] = "\x03\x4f\x44", + [0x5edd] = "\x02\x55\x38", [0x5ede] = "\x02\x55\x45", + [0x5edf] = "\x02\x55\x34", [0x5ee0] = "\x02\x55\x44", + [0x5ee1] = "\x02\x55\x4a", [0x5ee2] = "\x03\x4f\x51", + [0x5ee3] = "\x04\x4e\x46", [0x5ee4] = "\x01\x6f\x5c", + [0x5ee5] = "\x03\x4f\x45", [0x5ee6] = "\x02\x55\x40", + [0x5ee7] = "\x02\x55\x46", [0x5ee8] = "\x02\x55\x3c", + [0x5ee9] = "\x02\x55\x36", [0x5eea] = "\x01\x6f\x5b", + [0x5eeb] = "\x03\x4f\x52", [0x5eec] = "\x04\x4e\x44", + [0x5eed] = "\x03\x4f\x4c", [0x5eee] = "\x02\x4e\x6e", + [0x5eef] = "\x02\x55\x3a", [0x5ef0] = "\x01\x6f\x62", + [0x5ef1] = "\x02\x55\x33", [0x5ef2] = "\x0f\x52\x6b", + [0x5ef3] = "\x03\x4f\x4d", [0x5ef4] = "\x03\x66\x5b", + [0x5ef5] = "\x03\x66\x5c", [0x5ef6] = "\x03\x4a\x30", + [0x5ef7] = "\x02\x5b\x41", [0x5ef8] = "\x01\x72\x61", + [0x5ef9] = "\x02\x5b\x40", [0x5efa] = "\x02\x5b\x3e", + [0x5efb] = "\x02\x5b\x50", [0x5efc] = "\x01\x72\x65", + [0x5efd] = "\x03\x53\x35", [0x5efe] = "\x02\x5b\x4d", + [0x5eff] = "\x02\x5b\x45", [0x5f00] = "\x02\x5b\x4f", + [0x5f01] = "\x02\x5b\x37", [0x5f02] = "\x02\x5b\x43", + [0x5f03] = "\x03\x53\x3d", [0x5f04] = "\x01\x72\x67", + [0x5f05] = "\x03\x53\x3e", [0x5f06] = "\x02\x5b\x2f", + [0x5f07] = "\x03\x53\x38", [0x5f08] = "\x02\x5b\x2d", + [0x5f09] = "\x02\x5b\x4e", [0x5f0a] = "\x03\x53\x32", + [0x5f0b] = "\x02\x5b\x4c", [0x5f0c] = "\x02\x5b\x4b", + [0x5f0d] = "\x02\x5b\x3b", [0x5f0e] = "\x02\x5b\x3a", + [0x5f0f] = "\x02\x5b\x30", [0x5f10] = "\x01\x72\x69", + [0x5f11] = "\x04\x54\x43", [0x5f12] = "\x02\x5b\x36", + [0x5f13] = "\x02\x5b\x3f", [0x5f14] = "\x02\x5b\x4a", + [0x5f15] = "\x01\x72\x6c", [0x5f16] = "\x02\x5b\x51", + [0x5f17] = "\x03\x53\x36", [0x5f18] = "\x01\x75\x73", + [0x5f19] = "\x01\x72\x6e", [0x5f1a] = "\x01\x72\x68", + [0x5f1b] = "\x02\x5b\x34", [0x5f1c] = "\x03\x53\x37", + [0x5f1d] = "\x02\x5b\x3d", [0x5f1e] = "\x02\x5b\x2c", + [0x5f1f] = "\x02\x5b\x2e", [0x5f20] = "\x01\x72\x5f", + [0x5f21] = "\x01\x72\x6b", [0x5f22] = "\x01\x72\x64", + [0x5f23] = "\x02\x5b\x35", [0x5f24] = "\x02\x5b\x44", + [0x5f25] = "\x02\x55\x4b", [0x5f26] = "\x01\x72\x6a", + [0x5f27] = "\x02\x5b\x2b", [0x5f28] = "\x01\x75\x6e", + [0x5f29] = "\x02\x5b\x46", [0x5f2a] = "\x02\x5b\x49", + [0x5f2b] = "\x01\x72\x66", [0x5f2c] = "\x03\x53\x3b", + [0x5f2d] = "\x02\x5b\x39", [0x5f2e] = "\x01\x72\x6d", + [0x5f2f] = "\x01\x72\x63", [0x5f30] = "\x03\x53\x3c", + [0x5f31] = "\x03\x53\x39", [0x5f32] = "\x03\x53\x3a", + [0x5f33] = "\x01\x72\x62", [0x5f34] = "\x02\x5b\x42", + [0x5f35] = "\x02\x5b\x48", [0x5f36] = "\x01\x72\x60", + [0x5f37] = "\x04\x54\x45", [0x5f38] = "\x02\x5b\x32", + [0x5f39] = "\x02\x5b\x47", [0x5f3a] = "\x0f\x58\x59", + [0x5f3b] = "\x0f\x58\x48", [0x5f3c] = "\x02\x5b\x33", + [0x5f3d] = "\x07\x34\x63", [0x5f3f] = "\x03\x66\x5d", + [0x5f40] = "\x0f\x58\x55", [0x5f42] = "\x03\x66\x5e", + [0x5f43] = "\x04\x54\x49", [0x5f45] = "\x03\x53\x31", + [0x5f46] = "\x02\x5b\x38", [0x5f47] = "\x02\x5f\x7e", + [0x5f48] = "\x03\x56\x65", [0x5f49] = "\x02\x60\x25", + [0x5f4a] = "\x01\x75\x70", [0x5f4b] = "\x01\x75\x72", + [0x5f4c] = "\x02\x60\x2b", [0x5f4d] = "\x01\x75\x6c", + [0x5f4e] = "\x02\x60\x39", [0x5f4f] = "\x02\x60\x31", + [0x5f50] = "\x02\x60\x26", [0x5f51] = "\x02\x60\x27", + [0x5f52] = "\x02\x60\x30", [0x5f53] = "\x03\x56\x66", + [0x5f54] = "\x01\x75\x79", [0x5f55] = "\x02\x60\x2f", + [0x5f56] = "\x02\x5f\x7d", [0x5f57] = "\x02\x60\x2e", + [0x5f58] = "\x02\x60\x22", [0x5f59] = "\x02\x60\x3a", + [0x5f5a] = "\x01\x75\x78", [0x5f5b] = "\x01\x75\x76", + [0x5f5c] = "\x02\x60\x23", [0x5f5d] = "\x03\x56\x5d", + [0x5f5e] = "\x02\x60\x36", [0x5f5f] = "\x03\x56\x67", + [0x5f60] = "\x02\x60\x28", [0x5f61] = "\x02\x60\x35", + [0x5f62] = "\x03\x56\x64", [0x5f63] = "\x02\x60\x37", + [0x5f64] = "\x02\x5f\x7c", [0x5f65] = "\x01\x75\x71", + [0x5f66] = "\x03\x56\x5b", [0x5f67] = "\x02\x60\x38", + [0x5f68] = "\x03\x56\x68", [0x5f69] = "\x03\x56\x5e", + [0x5f6a] = "\x02\x60\x2c", [0x5f6b] = "\x03\x56\x6b", + [0x5f6c] = "\x01\x75\x75", [0x5f6d] = "\x02\x60\x29", + [0x5f6e] = "\x03\x56\x61", [0x5f6f] = "\x04\x59\x49", + [0x5f70] = "\x01\x75\x77", [0x5f71] = "\x02\x60\x32", + [0x5f72] = "\x03\x56\x62", [0x5f73] = "\x03\x56\x63", + [0x5f74] = "\x03\x56\x5f", [0x5f75] = "\x01\x75\x6f", + [0x5f76] = "\x02\x60\x24", [0x5f77] = "\x02\x60\x33", + [0x5f78] = "\x03\x56\x5c", [0x5f79] = "\x02\x60\x2d", + [0x5f7a] = "\x02\x5b\x31", [0x5f7b] = "\x02\x60\x34", + [0x5f7c] = "\x02\x60\x21", [0x5f7d] = "\x03\x56\x60", + [0x5f7e] = "\x01\x75\x74", [0x5f7f] = "\x03\x56\x6a", + [0x5f80] = "\x02\x64\x2f", [0x5f81] = "\x04\x59\x47", + [0x5f82] = "\x01\x75\x6d", [0x5f83] = "\x02\x5f\x7a", + [0x5f84] = "\x04\x59\x46", [0x5f85] = "\x0f\x5d\x41", + [0x5f86] = "\x03\x66\x5f", [0x5f87] = "\x0f\x5d\x39", + [0x5f88] = "\x02\x64\x2c", [0x5f89] = "\x02\x64\x25", + [0x5f8a] = "\x01\x77\x54", [0x5f8b] = "\x03\x59\x43", + [0x5f8c] = "\x02\x63\x7e", [0x5f8d] = "\x02\x64\x30", + [0x5f8e] = "\x02\x64\x27", [0x5f8f] = "\x02\x60\x2a", + [0x5f90] = "\x03\x59\x40", [0x5f91] = "\x02\x64\x32", + [0x5f92] = "\x02\x64\x21", [0x5f93] = "\x03\x59\x42", + [0x5f94] = "\x01\x77\x53", [0x5f95] = "\x02\x64\x2b", + [0x5f96] = "\x01\x77\x55", [0x5f97] = "\x01\x77\x5d", + [0x5f98] = "\x01\x77\x5b", [0x5f99] = "\x02\x64\x2d", + [0x5f9a] = "\x01\x77\x5c", [0x5f9b] = "\x02\x64\x23", + [0x5f9c] = "\x03\x59\x49", [0x5f9d] = "\x02\x64\x24", + [0x5f9e] = "\x02\x64\x29", [0x5f9f] = "\x02\x64\x2e", + [0x5fa0] = "\x03\x59\x3e", [0x5fa1] = "\x02\x5f\x79", + [0x5fa2] = "\x01\x77\x56", [0x5fa3] = "\x02\x64\x37", + [0x5fa4] = "\x02\x64\x34", [0x5fa5] = "\x02\x67\x61", + [0x5fa6] = "\x02\x64\x2a", [0x5fa7] = "\x02\x64\x26", + [0x5fa8] = "\x02\x64\x35", [0x5fa9] = "\x02\x67\x56", + [0x5faa] = "\x02\x64\x28", [0x5fab] = "\x04\x5e\x31", + [0x5fac] = "\x01\x77\x59", [0x5fad] = "\x03\x59\x44", + [0x5fae] = "\x01\x77\x58", [0x5faf] = "\x02\x5f\x7b", + [0x5fb0] = "\x01\x77\x5a", [0x5fb1] = "\x02\x64\x31", + [0x5fb2] = "\x02\x64\x33", [0x5fb3] = "\x01\x77\x57", + [0x5fb4] = "\x02\x64\x36", [0x5fb5] = "\x02\x63\x7d", + [0x5fb6] = "\x04\x5e\x29", [0x5fb7] = "\x02\x64\x22", + [0x5fb8] = "\x03\x59\x46", [0x5fb9] = "\x0f\x61\x33", + [0x5fbb] = "\x03\x59\x45", [0x5fbc] = "\x03\x66\x61", + [0x5fbd] = "\x03\x66\x62", [0x5fbe] = "\x03\x66\x60", + [0x5fbf] = "\x0f\x61\x43", [0x5fc0] = "\x02\x67\x5f", + [0x5fc1] = "\x03\x5b\x50", [0x5fc2] = "\x02\x67\x4f", + [0x5fc3] = "\x01\x79\x38", [0x5fc4] = "\x02\x67\x5d", + [0x5fc5] = "\x03\x5b\x44", [0x5fc6] = "\x03\x5b\x45", + [0x5fc7] = "\x02\x67\x4d", [0x5fc8] = "\x01\x79\x39", + [0x5fc9] = "\x04\x61\x67", [0x5fca] = "\x02\x67\x58", + [0x5fcb] = "\x03\x5b\x43", [0x5fcc] = "\x02\x67\x54", + [0x5fcd] = "\x01\x79\x3e", [0x5fce] = "\x02\x67\x5e", + [0x5fcf] = "\x02\x67\x4e", [0x5fd0] = "\x02\x67\x51", + [0x5fd1] = "\x01\x79\x36", [0x5fd2] = "\x02\x67\x60", + [0x5fd3] = "\x03\x5b\x48", [0x5fd4] = "\x02\x67\x59", + [0x5fd5] = "\x02\x67\x5c", [0x5fd6] = "\x01\x79\x3c", + [0x5fd7] = "\x01\x79\x41", [0x5fd8] = "\x01\x79\x3f", + [0x5fd9] = "\x02\x67\x55", [0x5fda] = "\x02\x67\x50", + [0x5fdb] = "\x03\x5b\x4d", [0x5fdc] = "\x01\x79\x3a", + [0x5fdd] = "\x01\x79\x3b", [0x5fde] = "\x02\x67\x4c", + [0x5fdf] = "\x01\x79\x37", [0x5fe0] = "\x03\x5b\x4f", + [0x5fe1] = "\x01\x79\x35", [0x5fe2] = "\x01\x79\x3d", + [0x5fe3] = "\x02\x67\x5b", [0x5fe4] = "\x01\x79\x40", + [0x5fe5] = "\x03\x5b\x4a", [0x5fe6] = "\x02\x67\x57", + [0x5fe7] = "\x02\x67\x62", [0x5fe8] = "\x01\x79\x42", + [0x5fe9] = "\x03\x5b\x41", [0x5fea] = "\x03\x5b\x42", + [0x5feb] = "\x03\x5b\x4e", [0x5fec] = "\x02\x67\x53", + [0x5fed] = "\x03\x5b\x47", [0x5fee] = "\x02\x67\x5a", + [0x5fef] = "\x03\x66\x65", [0x5ff1] = "\x03\x66\x63", + [0x5ff2] = "\x03\x66\x64", [0x5ff3] = "\x03\x5d\x41", + [0x5ff4] = "\x03\x5e\x6a", [0x5ff5] = "\x02\x6a\x41", + [0x5ff6] = "\x02\x6a\x50", [0x5ff7] = "\x02\x6a\x43", + [0x5ff8] = "\x02\x6a\x4a", [0x5ff9] = "\x02\x67\x52", + [0x5ffa] = "\x02\x6a\x48", [0x5ffb] = "\x02\x6a\x37", + [0x5ffc] = "\x02\x6a\x4e", [0x5ffd] = "\x01\x7a\x4e", + [0x5ffe] = "\x02\x6a\x3b", [0x5fff] = "\x02\x6a\x4d", + [0x6000] = "\x02\x6a\x42", [0x6001] = "\x04\x64\x67", + [0x6002] = "\x03\x5d\x43", [0x6003] = "\x01\x7a\x4d", + [0x6004] = "\x03\x5d\x3c", [0x6005] = "\x03\x5d\x3f", + [0x6006] = "\x02\x6a\x52", [0x6007] = "\x02\x6a\x44", + [0x6008] = "\x03\x5d\x3e", [0x6009] = "\x02\x6a\x49", + [0x600a] = "\x02\x6a\x4c", [0x600b] = "\x02\x6a\x35", + [0x600c] = "\x02\x6a\x4f", [0x600d] = "\x02\x6a\x40", + [0x600e] = "\x02\x6a\x45", [0x600f] = "\x02\x6a\x39", + [0x6010] = "\x02\x6a\x3d", [0x6011] = "\x02\x6a\x51", + [0x6012] = "\x02\x6a\x47", [0x6013] = "\x02\x6a\x36", + [0x6014] = "\x02\x6a\x3a", [0x6015] = "\x02\x6a\x3c", + [0x6016] = "\x02\x6a\x46", [0x6017] = "\x03\x5d\x3d", + [0x6018] = "\x01\x7a\x4c", [0x6019] = "\x02\x6a\x3f", + [0x601a] = "\x03\x5d\x44", [0x601b] = "\x03\x5d\x45", + [0x601c] = "\x03\x5d\x47", [0x601d] = "\x04\x64\x6b", + [0x601e] = "\x03\x5d\x42", [0x601f] = "\x03\x5d\x3a", + [0x6020] = "\x02\x6a\x38", [0x6022] = "\x03\x66\x66", + [0x6023] = "\x03\x66\x67", [0x6024] = "\x03\x66\x68", + [0x6025] = "\x0f\x66\x57", [0x6027] = "\x03\x5d\x46", + [0x6028] = "\x02\x6a\x3e", [0x6029] = "\x02\x6c\x50", + [0x602a] = "\x02\x6c\x54", [0x602b] = "\x01\x7b\x3b", + [0x602c] = "\x02\x6c\x56", [0x602d] = "\x03\x5e\x6d", + [0x602e] = "\x01\x7b\x35", [0x602f] = "\x04\x64\x6f", + [0x6030] = "\x02\x6c\x52", [0x6031] = "\x02\x6c\x58", + [0x6032] = "\x01\x7b\x3a", [0x6033] = "\x01\x7b\x36", + [0x6034] = "\x04\x67\x5c", [0x6035] = "\x01\x7b\x37", + [0x6036] = "\x02\x6c\x4f", [0x6037] = "\x02\x6c\x55", + [0x6038] = "\x01\x7b\x39", [0x6039] = "\x02\x6c\x53", + [0x603a] = "\x01\x7b\x38", [0x603b] = "\x02\x6c\x4e", + [0x603c] = "\x02\x6a\x4b", [0x603d] = "\x02\x6c\x51", + [0x603e] = "\x04\x67\x62", [0x603f] = "\x02\x6c\x4d", + [0x6040] = "\x02\x6c\x57", [0x6042] = "\x03\x5f\x69", + [0x6043] = "\x03\x5f\x6e", [0x6044] = "\x01\x7b\x7b", + [0x6045] = "\x02\x6e\x3c", [0x6046] = "\x02\x6e\x3f", + [0x6047] = "\x02\x6e\x3b", [0x6048] = "\x02\x6e\x3d", + [0x6049] = "\x02\x6e\x3e", [0x604a] = "\x02\x6e\x38", + [0x604b] = "\x02\x6e\x39", [0x604c] = "\x02\x6e\x36", + [0x604d] = "\x03\x5f\x6a", [0x604e] = "\x03\x5f\x6c", + [0x604f] = "\x02\x6e\x3a", [0x6050] = "\x02\x6e\x37", + [0x6051] = "\x01\x7b\x7c", [0x6052] = "\x01\x7b\x7d", + [0x6054] = "\x03\x5f\x6b", [0x6055] = "\x02\x6f\x59", + [0x6056] = "\x03\x60\x52", [0x6057] = "\x02\x6f\x5b", + [0x6058] = "\x04\x6b\x29", [0x6059] = "\x05\x76\x5d", + [0x605a] = "\x03\x60\x55", [0x605b] = "\x03\x60\x54", + [0x605c] = "\x03\x60\x56", [0x605d] = "\x02\x6f\x5a", + [0x605e] = "\x02\x6f\x5c", [0x605f] = "\x03\x60\x4f", + [0x6060] = "\x01\x7c\x4c", [0x6061] = "\x03\x60\x53", + [0x6062] = "\x02\x6f\x58", [0x6063] = "\x01\x7c\x4b", + [0x6064] = "\x01\x7c\x4d", [0x6065] = "\x03\x60\x57", + [0x6066] = "\x03\x66\x6a", [0x6067] = "\x03\x66\x69", + [0x6068] = "\x02\x70\x59", [0x6069] = "\x02\x70\x5a", + [0x606a] = "\x01\x7c\x6f", [0x606b] = "\x02\x70\x58", + [0x606c] = "\x03\x61\x22", [0x606d] = "\x02\x71\x42", + [0x606e] = "\x02\x71\x41", [0x606f] = "\x02\x71\x43", + [0x6070] = "\x01\x7d\x2c", [0x6071] = "\x02\x71\x44", + [0x6072] = "\x01\x7d\x2b", [0x6073] = "\x02\x71\x45", + [0x6074] = "\x02\x71\x61", [0x6075] = "\x02\x71\x64", + [0x6076] = "\x02\x71\x63", [0x6077] = "\x01\x7d\x35", + [0x6078] = "\x02\x71\x62", [0x6079] = "\x04\x6d\x62", + [0x607a] = "\x03\x61\x6f", [0x607b] = "\x03\x62\x23", + [0x607c] = "\x01\x7d\x3f", [0x607d] = "\x01\x7d\x3d", + [0x607e] = "\x01\x7d\x3e", [0x607f] = "\x01\x7d\x44", + [0x6080] = "\x02\x72\x30", [0x6081] = "\x02\x72\x31", + [0x6082] = "\x02\x72\x2f", [0x6083] = "\x02\x72\x37", + [0x6084] = "\x03\x62\x36", [0x6177] = "\x01\x4f\x5b", + [0x6178] = "\x04\x25\x2b", [0x6179] = "\x04\x30\x3a", + [0x617a] = "\x02\x3a\x28", [0x617b] = "\x02\x41\x3f", + [0x617c] = "\x02\x55\x4e", [0x617d] = "\x02\x67\x63", + [0x617e] = "\x05\x71\x56", [0x6180] = "\x01\x4f\x5c", + [0x6181] = "\x03\x2f\x40", [0x6182] = "\x01\x53\x6d", + [0x6183] = "\x01\x58\x60", [0x6184] = "\x04\x30\x3b", + [0x6185] = "\x03\x34\x32", [0x6186] = "\x02\x3a\x29", + [0x6187] = "\x03\x39\x5c", [0x6188] = "\x02\x3a\x2a", + [0x6189] = "\x01\x5d\x70", [0x618b] = "\x01\x62\x64", + [0x618c] = "\x02\x41\x41", [0x618d] = "\x02\x41\x40", + [0x618e] = "\x01\x62\x68", [0x618f] = "\x01\x62\x63", + [0x6190] = "\x02\x41\x42", [0x6191] = "\x01\x62\x65", + [0x6192] = "\x01\x62\x67", [0x6193] = "\x01\x62\x66", + [0x6194] = "\x01\x62\x62", [0x6195] = "\x03\x3f\x6c", + [0x6196] = "\x0f\x3f\x7e", [0x6197] = "\x03\x66\x6b", + [0x6198] = "\x01\x67\x50", [0x6199] = "\x03\x45\x3c", + [0x619a] = "\x03\x45\x3a", [0x619b] = "\x02\x48\x56", + [0x619c] = "\x02\x48\x54", [0x619d] = "\x04\x41\x53", + [0x619e] = "\x02\x48\x55", [0x619f] = "\x02\x48\x53", + [0x61a0] = "\x0f\x45\x7b", [0x61a1] = "\x01\x6b\x5b", + [0x61a2] = "\x03\x4a\x3d", [0x61a3] = "\x01\x6b\x5e", + [0x61a4] = "\x01\x6b\x60", [0x61a5] = "\x01\x6b\x5f", + [0x61a6] = "\x04\x48\x22", [0x61a7] = "\x03\x4a\x3e", + [0x61a8] = "\x01\x6b\x5c", [0x61a9] = "\x01\x6b\x5d", + [0x61ab] = "\x02\x55\x50", [0x61ac] = "\x02\x55\x4f", + [0x61ad] = "\x01\x6f\x64", [0x61ae] = "\x02\x55\x51", + [0x61af] = "\x03\x4f\x53", [0x61b0] = "\x02\x55\x52", + [0x61b1] = "\x01\x6f\x65", [0x61b2] = "\x03\x4f\x55", + [0x61b3] = "\x03\x4f\x56", [0x61b4] = "\x04\x4e\x4a", + [0x61b5] = "\x02\x5b\x59", [0x61b6] = "\x02\x5b\x57", + [0x61b7] = "\x02\x60\x40", [0x61b8] = "\x03\x53\x42", + [0x61b9] = "\x02\x5b\x55", [0x61ba] = "\x02\x5b\x56", + [0x61bb] = "\x01\x72\x6f", [0x61bc] = "\x02\x5b\x52", + [0x61bd] = "\x02\x5b\x5a", [0x61be] = "\x02\x5b\x54", + [0x61bf] = "\x02\x5b\x58", [0x61c0] = "\x02\x60\x3c", + [0x61c1] = "\x03\x53\x44", [0x61c2] = "\x03\x53\x40", + [0x61c3] = "\x02\x60\x3e", [0x61c4] = "\x03\x56\x6d", + [0x61c5] = "\x02\x60\x3f", [0x61c6] = "\x01\x75\x7e", + [0x61c7] = "\x02\x60\x3b", [0x61c8] = "\x01\x75\x7d", + [0x61c9] = "\x02\x60\x3d", [0x61ca] = "\x01\x75\x7a", + [0x61cb] = "\x01\x75\x7b", [0x61cc] = "\x01\x75\x7c", + [0x61cd] = "\x02\x5b\x53", [0x61ce] = "\x03\x66\x6c", + [0x61d0] = "\x01\x77\x60", [0x61d1] = "\x02\x64\x3a", + [0x61d2] = "\x02\x64\x38", [0x61d3] = "\x02\x64\x39", + [0x61d4] = "\x01\x77\x5e", [0x61d5] = "\x01\x77\x61", + [0x61d6] = "\x01\x77\x5f", [0x61d7] = "\x03\x59\x4b", + [0x61d8] = "\x03\x59\x4a", [0x61d9] = "\x07\x4b\x40", + [0x61da] = "\x02\x67\x64", [0x61db] = "\x02\x67\x65", + [0x61dc] = "\x01\x79\x43", [0x61dd] = "\x03\x5b\x53", + [0x61de] = "\x02\x6a\x53", [0x61df] = "\x02\x6a\x55", + [0x61e0] = "\x02\x6a\x54", [0x61e1] = "\x01\x7a\x4f", + [0x61e2] = "\x01\x7b\x3c", [0x61e3] = "\x02\x6c\x5b", + [0x61e4] = "\x02\x6c\x5a", [0x61e5] = "\x02\x6c\x59", + [0x61e6] = "\x0f\x68\x72", [0x61e7] = "\x03\x66\x6d", + [0x621c] = "\x01\x4f\x5d", [0x621d] = "\x03\x21\x43", + [0x621e] = "\x02\x21\x69", [0x6220] = "\x02\x22\x78", + [0x6221] = "\x01\x48\x6a", [0x6222] = "\x02\x22\x76", + [0x6223] = "\x02\x22\x79", [0x6224] = "\x02\x22\x77", + [0x6225] = "\x04\x25\x2e", [0x6226] = "\x03\x27\x3b", + [0x6227] = "\x03\x27\x3a", [0x6228] = "\x02\x25\x2e", + [0x6229] = "\x03\x27\x3f", [0x622a] = "\x01\x4b\x62", + [0x622b] = "\x03\x27\x3c", [0x622c] = "\x01\x4b\x63", + [0x622d] = "\x02\x25\x30", [0x622e] = "\x01\x4b\x60", + [0x622f] = "\x02\x25\x2f", [0x6230] = "\x02\x25\x2d", + [0x6231] = "\x01\x4b\x61", [0x6232] = "\x01\x4b\x5f", + [0x6233] = "\x03\x27\x3d", [0x6234] = "\x03\x27\x3e", + [0x6237] = "\x03\x2a\x79", [0x6238] = "\x04\x28\x33", + [0x6239] = "\x02\x28\x78", [0x623a] = "\x02\x28\x7b", + [0x623b] = "\x01\x4f\x60", [0x623c] = "\x02\x28\x7a", + [0x623d] = "\x02\x28\x79", [0x623e] = "\x03\x2a\x7c", + [0x623f] = "\x01\x4f\x5f", [0x6240] = "\x01\x4f\x5e", + [0x6241] = "\x03\x2a\x7b", [0x6242] = "\x01\x4f\x62", + [0x6243] = "\x02\x28\x7c", [0x6244] = "\x01\x4f\x61", + [0x624a] = "\x02\x2d\x67", [0x624b] = "\x01\x53\x6f", + [0x624c] = "\x01\x53\x70", [0x624d] = "\x01\x53\x71", + [0x624e] = "\x02\x2d\x68", [0x624f] = "\x02\x2d\x64", + [0x6250] = "\x01\x53\x6e", [0x6251] = "\x02\x2d\x65", + [0x6252] = "\x04\x2b\x5d", [0x6253] = "\x02\x2d\x66", + [0x6254] = "\x02\x2d\x63", [0x6255] = "\x04\x2b\x5b", + [0x6256] = "\x03\x34\x36", [0x6257] = "\x04\x30\x3f", + [0x6258] = "\x01\x58\x67", [0x6259] = "\x03\x34\x34", + [0x625a] = "\x03\x39\x5e", [0x625b] = "\x01\x58\x64", + [0x625c] = "\x02\x33\x48", [0x625d] = "\x01\x58\x65", + [0x625e] = "\x01\x58\x68", [0x625f] = "\x02\x33\x49", + [0x6260] = "\x03\x34\x33", [0x6261] = "\x01\x58\x63", + [0x6262] = "\x01\x58\x61", [0x6263] = "\x01\x58\x62", + [0x6264] = "\x01\x58\x66", [0x626a] = "\x01\x5d\x71", + [0x626b] = "\x02\x3a\x2d", [0x626c] = "\x01\x5d\x79", + [0x626d] = "\x02\x3a\x2c", [0x626e] = "\x03\x39\x61", + [0x626f] = "\x02\x3a\x2f", [0x6270] = "\x01\x5d\x75", + [0x6271] = "\x02\x3a\x2e", [0x6272] = "\x01\x62\x70", + [0x6273] = "\x01\x5d\x73", [0x6274] = "\x01\x5d\x76", + [0x6275] = "\x01\x5d\x72", [0x6276] = "\x01\x5d\x77", + [0x6277] = "\x01\x5d\x78", [0x6278] = "\x01\x5d\x74", + [0x6279] = "\x03\x39\x65", [0x627b] = "\x03\x3f\x71", + [0x627c] = "\x02\x3a\x2b", [0x627d] = "\x01\x62\x6c", + [0x627e] = "\x02\x41\x44", [0x627f] = "\x03\x3f\x72", + [0x6280] = "\x02\x41\x48", [0x6281] = "\x03\x3f\x73", + [0x6282] = "\x03\x3f\x75", [0x6283] = "\x02\x41\x47", + [0x6284] = "\x01\x62\x71", [0x6285] = "\x01\x62\x6d", + [0x6286] = "\x01\x62\x6e", [0x6287] = "\x02\x41\x43", + [0x6288] = "\x02\x41\x45", [0x6289] = "\x02\x41\x46", + [0x628a] = "\x01\x62\x69", [0x628b] = "\x01\x62\x6b", + [0x628c] = "\x03\x3f\x70", [0x628d] = "\x01\x62\x6f", + [0x628e] = "\x01\x62\x6a", [0x628f] = "\x03\x45\x40", + [0x6291] = "\x02\x48\x59", [0x6292] = "\x02\x48\x57", + [0x6293] = "\x02\x48\x58", [0x6294] = "\x01\x67\x52", + [0x6295] = "\x01\x67\x53", [0x6296] = "\x03\x45\x42", + [0x6297] = "\x02\x48\x5a", [0x6298] = "\x01\x67\x51", + [0x6299] = "\x01\x6b\x61", [0x629a] = "\x04\x48\x24", + [0x629b] = "\x01\x6b\x63", [0x629c] = "\x01\x6b\x62", + [0x629d] = "\x03\x4a\x45", [0x629e] = "\x02\x4f\x23", + [0x629f] = "\x03\x4a\x46", [0x62a0] = "\x03\x4a\x44", + [0x62a1] = "\x02\x4f\x24", [0x62a2] = "\x02\x55\x54", + [0x62a3] = "\x03\x4f\x5a", [0x62a4] = "\x02\x55\x53", + [0x62a5] = "\x03\x4f\x5b", [0x62a6] = "\x04\x54\x52", + [0x62a7] = "\x01\x72\x70", [0x62a8] = "\x01\x72\x71", + [0x62a9] = "\x02\x5b\x5b", [0x62aa] = "\x01\x72\x72", + [0x62ab] = "\x03\x53\x48", [0x62ac] = "\x02\x60\x43", + [0x62ad] = "\x03\x56\x70", [0x62ae] = "\x02\x60\x41", + [0x62af] = "\x03\x56\x6f", [0x62b0] = "\x02\x60\x42", + [0x62b1] = "\x01\x76\x21", [0x62b2] = "\x03\x56\x71", + [0x62b3] = "\x02\x64\x3b", [0x62b4] = "\x01\x79\x44", + [0x62b5] = "\x03\x5d\x49", [0x62b6] = "\x03\x2a\x7d", + [0x62b7] = "\x03\x53\x49", [0x62b8] = "\x01\x76\x22", + [0x62b9] = "\x01\x4f\x63", [0x62ba] = "\x04\x30\x41", + [0x62bb] = "\x01\x58\x69", [0x62bc] = "\x02\x33\x4a", + [0x62bd] = "\x03\x34\x39", [0x62be] = "\x0f\x32\x6f", + [0x62bf] = "\x02\x3a\x30", [0x62c0] = "\x01\x5d\x7a", + [0x62c1] = "\x01\x62\x72", [0x62c2] = "\x02\x41\x49", + [0x62c3] = "\x02\x41\x4b", [0x62c4] = "\x01\x62\x74", + [0x62c5] = "\x01\x62\x73", [0x62c6] = "\x01\x62\x75", + [0x62c7] = "\x01\x62\x76", [0x62c8] = "\x02\x41\x4a", + [0x62c9] = "\x01\x67\x56", [0x62ca] = "\x01\x67\x57", + [0x62cb] = "\x01\x67\x55", [0x62cc] = "\x01\x6b\x64", + [0x62cd] = "\x01\x67\x54", [0x62ce] = "\x02\x48\x5b", + [0x62cf] = "\x04\x41\x57", [0x62d0] = "\x03\x4a\x47", + [0x62d1] = "\x03\x4a\x49", [0x62d2] = "\x01\x6b\x65", + [0x62d3] = "\x02\x55\x55", [0x62d4] = "\x02\x5b\x5c", + [0x62d5] = "\x01\x72\x73", [0x62d6] = "\x01\x76\x23", + [0x62d7] = "\x02\x64\x3c", [0x62d8] = "\x02\x64\x40", + [0x62d9] = "\x01\x77\x64", [0x62da] = "\x02\x64\x3d", + [0x62db] = "\x01\x77\x65", [0x62dc] = "\x01\x77\x63", + [0x62dd] = "\x02\x64\x41", [0x62de] = "\x01\x77\x66", + [0x62df] = "\x02\x64\x3f", [0x62e1] = "\x02\x67\x66", + [0x62e2] = "\x01\x77\x62", [0x62e3] = "\x01\x79\x45", + [0x62e4] = "\x03\x5e\x70", [0x62e5] = "\x02\x70\x5b", + [0x62e6] = "\x03\x61\x25", [0x62e7] = "\x03\x62\x2f", + [0x62e8] = "\x01\x4f\x64", [0x62e9] = "\x01\x5d\x7c", + [0x62ea] = "\x01\x5d\x7b", [0x62eb] = "\x0f\x39\x2a", + [0x62ec] = "\x03\x3f\x7e", [0x62ed] = "\x03\x3f\x7c", + [0x62ee] = "\x03\x3f\x7b", [0x62ef] = "\x01\x62\x77", + [0x62f0] = "\x02\x41\x4d", [0x62f1] = "\x02\x41\x4c", + [0x62f2] = "\x01\x62\x78", [0x62f4] = "\x03\x45\x46", + [0x62f5] = "\x02\x48\x5f", [0x62f6] = "\x01\x67\x5b", + [0x62f7] = "\x01\x67\x58", [0x62f8] = "\x02\x48\x5e", + [0x62f9] = "\x01\x67\x5a", [0x62fa] = "\x02\x48\x5c", + [0x62fb] = "\x01\x67\x59", [0x62fc] = "\x03\x45\x47", + [0x62fd] = "\x02\x48\x5d", [0x62ff] = "\x02\x4f\x25", + [0x6300] = "\x01\x6b\x66", [0x6302] = "\x02\x55\x58", + [0x6303] = "\x05\x52\x3b", [0x6304] = "\x01\x6f\x66", + [0x6305] = "\x02\x55\x56", [0x6306] = "\x01\x6f\x67", + [0x6307] = "\x01\x6f\x68", [0x6308] = "\x02\x55\x57", + [0x6309] = "\x01\x6f\x69", [0x630a] = "\x03\x4f\x60", + [0x630b] = "\x02\x5b\x5d", [0x630c] = "\x03\x53\x50", + [0x630d] = "\x01\x72\x77", [0x630e] = "\x01\x72\x74", + [0x630f] = "\x01\x72\x79", [0x6310] = "\x02\x5b\x5f", + [0x6311] = "\x01\x72\x75", [0x6312] = "\x02\x5b\x5e", + [0x6313] = "\x01\x72\x78", [0x6314] = "\x03\x53\x4d", + [0x6315] = "\x03\x53\x4c", [0x6316] = "\x01\x72\x76", + [0x6317] = "\x03\x53\x51", [0x6318] = "\x02\x60\x46", + [0x6319] = "\x02\x60\x48", [0x631a] = "\x03\x56\x74", + [0x631b] = "\x03\x56\x75", [0x631c] = "\x01\x76\x24", + [0x631d] = "\x02\x60\x47", [0x631e] = "\x01\x76\x25", + [0x631f] = "\x02\x60\x45", [0x6320] = "\x02\x60\x44", + [0x6321] = "\x04\x5e\x38", [0x6322] = "\x02\x64\x43", + [0x6323] = "\x02\x64\x42", [0x6324] = "\x01\x77\x67", + [0x6325] = "\x02\x64\x44", [0x6326] = "\x02\x67\x6b", + [0x6327] = "\x01\x79\x47", [0x6328] = "\x02\x67\x6a", + [0x6329] = "\x02\x67\x67", [0x632a] = "\x01\x79\x46", + [0x632b] = "\x02\x67\x68", [0x632c] = "\x02\x67\x69", + [0x632e] = "\x02\x6a\x56", [0x632f] = "\x02\x6a\x57", + [0x6330] = "\x01\x7a\x50", [0x6331] = "\x03\x5d\x4f", + [0x6332] = "\x01\x7b\x3f", [0x6333] = "\x03\x5d\x4c", + [0x6334] = "\x03\x5d\x4e", [0x6335] = "\x02\x6c\x5c", + [0x6336] = "\x03\x5e\x72", [0x6337] = "\x03\x5e\x71", + [0x6338] = "\x01\x7b\x3d", [0x6339] = "\x01\x7b\x3e", + [0x633a] = "\x02\x6c\x5d", [0x633b] = "\x03\x66\x6e", + [0x633c] = "\x03\x5f\x71", [0x633d] = "\x01\x7b\x7e", + [0x633e] = "\x01\x7c\x21", [0x633f] = "\x02\x6e\x40", + [0x6340] = "\x03\x5f\x72", [0x6341] = "\x03\x60\x59", + [0x6342] = "\x01\x7c\x70", [0x6343] = "\x02\x70\x5d", + [0x6344] = "\x01\x7c\x72", [0x6345] = "\x03\x61\x26", + [0x6346] = "\x02\x70\x5c", [0x6347] = "\x02\x70\x5e", + [0x6348] = "\x01\x7c\x71", [0x6349] = "\x02\x71\x46", + [0x634a] = "\x04\x6d\x64", [0x634b] = "\x02\x71\x7b", + [0x634d] = "\x03\x66\x6f", [0x6350] = "\x03\x62\x45", + [0x6351] = "\x03\x2a\x7e", [0x6352] = "\x01\x4f\x65", + [0x6355] = "\x03\x45\x49", [0x6356] = "\x01\x67\x5c", + [0x6357] = "\x04\x48\x35", [0x6358] = "\x02\x4f\x26", + [0x6359] = "\x03\x4a\x4c", [0x635a] = "\x02\x55\x59", + [0x635b] = "\x01\x72\x7a", [0x635c] = "\x01\x72\x7b", + [0x635d] = "\x03\x59\x4f", [0x635e] = "\x01\x4f\x66", + [0x635f] = "\x03\x40\x21", [0x6360] = "\x01\x6f\x6a", + [0x6361] = "\x01\x79\x48", [0x6362] = "\x01\x53\x72", + [0x6363] = "\x03\x2b\x21", [0x6364] = "\x03\x4a\x4e", + [0x6366] = "\x01\x72\x7c", [0x6367] = "\x03\x5e\x73", + [0x6368] = "\x01\x7c\x4e", [0x6369] = "\x01\x53\x73", + [0x636a] = "\x02\x3a\x31", [0x636b] = "\x04\x3b\x77", + [0x636c] = "\x02\x41\x4e", [0x636d] = "\x03\x40\x24", + [0x636e] = "\x02\x41\x50", [0x636f] = "\x03\x40\x22", + [0x6370] = "\x02\x41\x4f", [0x6372] = "\x02\x48\x63", + [0x6373] = "\x02\x48\x60", [0x6374] = "\x01\x67\x5d", + [0x6375] = "\x06\x5a\x24", [0x6376] = "\x01\x67\x5e", + [0x6377] = "\x02\x48\x61", [0x6378] = "\x02\x48\x62", + [0x6379] = "\x03\x45\x4b", [0x637a] = "\x02\x4f\x28", + [0x637b] = "\x02\x4f\x2d", [0x637c] = "\x01\x6b\x67", + [0x637d] = "\x02\x4f\x27", [0x637e] = "\x02\x4f\x29", + [0x637f] = "\x02\x4f\x30", [0x6380] = "\x02\x4f\x2b", + [0x6381] = "\x02\x4f\x2f", [0x6382] = "\x02\x4f\x2c", + [0x6383] = "\x02\x4f\x2a", [0x6384] = "\x02\x4f\x2e", + [0x6385] = "\x01\x6b\x68", [0x6387] = "\x03\x4f\x62", + [0x6388] = "\x02\x55\x5c", [0x6389] = "\x03\x4f\x63", + [0x638a] = "\x02\x55\x5a", [0x638b] = "\x01\x6f\x6c", + [0x638c] = "\x03\x4f\x64", [0x638d] = "\x01\x6f\x6b", + [0x638e] = "\x02\x55\x5b", [0x638f] = "\x01\x6f\x6d", + [0x6393] = "\x03\x53\x53", [0x6394] = "\x02\x5b\x62", + [0x6395] = "\x04\x54\x5f", [0x6396] = "\x04\x54\x67", + [0x6397] = "\x02\x5b\x61", [0x6398] = "\x01\x72\x7d", + [0x6399] = "\x02\x5b\x60", [0x639a] = "\x02\x60\x49", + [0x639b] = "\x03\x56\x7a", [0x639c] = "\x02\x60\x4b", + [0x639d] = "\x02\x60\x4d", [0x639e] = "\x02\x60\x4c", + [0x639f] = "\x03\x56\x7b", [0x63a0] = "\x01\x76\x26", + [0x63a1] = "\x02\x60\x4a", [0x63a2] = "\x02\x64\x4b", + [0x63a3] = "\x01\x77\x68", [0x63a4] = "\x02\x64\x49", + [0x63a5] = "\x02\x64\x4c", [0x63a6] = "\x01\x77\x69", + [0x63a7] = "\x04\x5e\x43", [0x63a8] = "\x02\x64\x47", + [0x63a9] = "\x03\x59\x50", [0x63aa] = "\x02\x64\x4a", + [0x63ab] = "\x02\x64\x48", [0x63ac] = "\x02\x64\x45", + [0x63ad] = "\x01\x77\x6a", [0x63ae] = "\x02\x64\x46", + [0x63b0] = "\x04\x61\x7c", [0x63b1] = "\x03\x5b\x5f", + [0x63b2] = "\x03\x5b\x5d", [0x63b3] = "\x02\x67\x6c", + [0x63b4] = "\x03\x5b\x5e", [0x63b5] = "\x03\x5b\x60", + [0x63b6] = "\x02\x67\x6e", [0x63b7] = "\x02\x67\x6d", + [0x63b8] = "\x03\x5d\x50", [0x63b9] = "\x02\x6a\x58", + [0x63ba] = "\x03\x5d\x51", [0x63bb] = "\x02\x6a\x59", + [0x63bc] = "\x04\x67\x71", [0x63bd] = "\x03\x5e\x75", + [0x63be] = "\x03\x5e\x74", [0x63bf] = "\x02\x6c\x5e", + [0x63c0] = "\x03\x5f\x73", [0x63c1] = "\x01\x7c\x23", + [0x63c2] = "\x04\x69\x5e", [0x63c3] = "\x01\x7c\x22", + [0x63c4] = "\x02\x6f\x5d", [0x63c5] = "\x02\x6f\x5e", + [0x63c6] = "\x01\x7c\x73", [0x63c7] = "\x02\x70\x5f", + [0x63c8] = "\x03\x61\x28", [0x63c9] = "\x01\x7d\x36", + [0x63ca] = "\x03\x62\x3b", [0x63cb] = "\x01\x53\x74", + [0x63cc] = "\x01\x62\x79", [0x63cd] = "\x02\x4f\x32", + [0x63ce] = "\x02\x4f\x31", [0x63cf] = "\x02\x55\x5e", + [0x63d0] = "\x02\x55\x5d", [0x63d1] = "\x04\x4e\x57", + [0x63d2] = "\x03\x53\x55", [0x63d3] = "\x01\x76\x27", + [0x63d4] = "\x02\x60\x4f", [0x63d5] = "\x02\x60\x4e", + [0x63d6] = "\x02\x64\x4f", [0x63d7] = "\x02\x64\x4d", + [0x63d8] = "\x02\x64\x50", [0x63d9] = "\x02\x64\x4e", + [0x63da] = "\x03\x59\x51", [0x63db] = "\x04\x65\x29", + [0x63dc] = "\x01\x79\x49", [0x63dd] = "\x02\x67\x6f", + [0x63de] = "\x02\x67\x70", [0x63df] = "\x02\x67\x71", + [0x63e0] = "\x04\x65\x27", [0x63e1] = "\x02\x6c\x5f", + [0x63e2] = "\x03\x5e\x76", [0x63e3] = "\x02\x6e\x41", + [0x63e4] = "\x03\x61\x29", [0x63e5] = "\x02\x70\x60", + [0x63ed] = "\x01\x53\x75", [0x63ee] = "\x03\x45\x4f", + [0x63ef] = "\x03\x4f\x65", [0x63f0] = "\x02\x5b\x63", + [0x63f1] = "\x02\x60\x50", [0x63f2] = "\x03\x5b\x61", + [0x63f3] = "\x01\x53\x76", [0x63f4] = "\x04\x41\x63", + [0x63f5] = "\x03\x45\x50", [0x63f6] = "\x01\x6b\x69", + [0x63f7] = "\x04\x48\x46", [0x63f8] = "\x02\x5b\x64", + [0x63f9] = "\x01\x77\x6b", [0x63fa] = "\x02\x64\x51", + [0x63fb] = "\x01\x79\x4a", [0x63fc] = "\x03\x5d\x53", + [0x63fd] = "\x02\x6a\x5a", [0x63fe] = "\x02\x6a\x5b", + [0x63ff] = "\x01\x7b\x40", [0x6400] = "\x02\x6f\x5f", + [0x6401] = "\x01\x53\x77", [0x6402] = "\x01\x5e\x21", + [0x6403] = "\x01\x5e\x22", [0x6404] = "\x02\x3a\x32", + [0x6405] = "\x01\x62\x7a", [0x6406] = "\x01\x62\x7b", + [0x6407] = "\x02\x41\x51", [0x6408] = "\x01\x62\x7c", + [0x6409] = "\x04\x41\x68", [0x640a] = "\x01\x67\x62", + [0x640b] = "\x03\x45\x52", [0x640c] = "\x01\x67\x64", + [0x640d] = "\x02\x48\x65", [0x640e] = "\x02\x48\x66", + [0x640f] = "\x02\x48\x64", [0x6410] = "\x01\x67\x5f", + [0x6411] = "\x01\x67\x60", [0x6412] = "\x01\x67\x63", + [0x6413] = "\x01\x67\x61", [0x6414] = "\x03\x4a\x54", + [0x6415] = "\x03\x4a\x55", [0x6416] = "\x02\x4f\x33", + [0x6417] = "\x01\x6b\x6a", [0x6418] = "\x01\x6b\x6b", + [0x6419] = "\x03\x4a\x52", [0x641a] = "\x03\x4a\x56", + [0x641b] = "\x02\x55\x65", [0x641c] = "\x01\x6f\x70", + [0x641d] = "\x02\x55\x60", [0x641e] = "\x02\x55\x5f", + [0x641f] = "\x03\x4f\x69", [0x6420] = "\x02\x55\x64", + [0x6421] = "\x01\x6f\x6e", [0x6422] = "\x03\x4f\x67", + [0x6423] = "\x04\x4e\x5a", [0x6424] = "\x01\x73\x26", + [0x6425] = "\x04\x54\x70", [0x6426] = "\x02\x55\x61", + [0x6427] = "\x02\x55\x66", [0x6428] = "\x02\x55\x63", + [0x6429] = "\x02\x55\x62", [0x642a] = "\x03\x4f\x66", + [0x642b] = "\x01\x6f\x6f", [0x642d] = "\x01\x73\x24", + [0x642e] = "\x03\x53\x5c", [0x642f] = "\x02\x5b\x66", + [0x6430] = "\x01\x72\x7e", [0x6431] = "\x03\x53\x59", + [0x6432] = "\x02\x5b\x67", [0x6433] = "\x03\x53\x5a", + [0x6434] = "\x03\x52\x28", [0x6435] = "\x02\x5b\x65", + [0x6436] = "\x03\x53\x58", [0x6437] = "\x01\x73\x23", + [0x6438] = "\x01\x73\x21", [0x6439] = "\x01\x73\x25", + [0x643a] = "\x03\x53\x5d", [0x643b] = "\x01\x73\x22", + [0x643c] = "\x03\x53\x5b", [0x643d] = "\x03\x53\x5f", + [0x643e] = "\x04\x5e\x4f", [0x643f] = "\x03\x59\x5b", + [0x6440] = "\x03\x57\x26", [0x6441] = "\x02\x60\x51", + [0x6442] = "\x04\x59\x70", [0x6443] = "\x02\x60\x56", + [0x6444] = "\x02\x60\x52", [0x6445] = "\x02\x60\x55", + [0x6446] = "\x01\x76\x28", [0x6447] = "\x03\x57\x28", + [0x6448] = "\x02\x5e\x41", [0x6449] = "\x02\x60\x54", + [0x644a] = "\x02\x60\x53", [0x644b] = "\x03\x59\x59", + [0x644c] = "\x01\x77\x6e", [0x644d] = "\x01\x77\x6c", + [0x644e] = "\x01\x77\x6f", [0x644f] = "\x01\x77\x6d", + [0x6450] = "\x02\x64\x52", [0x6451] = "\x02\x64\x53", + [0x6452] = "\x02\x64\x54", [0x6453] = "\x01\x77\x70", + [0x6454] = "\x03\x59\x56", [0x6455] = "\x03\x59\x58", + [0x6456] = "\x03\x5b\x65", [0x6457] = "\x02\x67\x75", + [0x6458] = "\x01\x79\x4c", [0x6459] = "\x02\x67\x73", + [0x645a] = "\x04\x62\x30", [0x645b] = "\x01\x79\x4d", + [0x645c] = "\x02\x67\x72", [0x645d] = "\x02\x67\x74", + [0x645e] = "\x01\x79\x4b", [0x645f] = "\x02\x6a\x5f", + [0x6460] = "\x02\x6a\x5c", [0x6461] = "\x04\x65\x2c", + [0x6462] = "\x02\x6a\x5d", [0x6463] = "\x02\x6a\x5e", + [0x6464] = "\x02\x6c\x60", [0x6465] = "\x01\x7b\x42", + [0x6466] = "\x03\x5e\x78", [0x6467] = "\x01\x7b\x41", + [0x6468] = "\x03\x5e\x77", [0x6469] = "\x02\x6e\x43", + [0x646a] = "\x02\x6e\x42", [0x646b] = "\x01\x7c\x24", + [0x646c] = "\x03\x60\x5d", [0x646d] = "\x03\x60\x5e", + [0x646e] = "\x03\x60\x5c", [0x646f] = "\x01\x7c\x4f", + [0x6470] = "\x01\x7c\x74", [0x6471] = "\x01\x7d\x2d", + [0x6472] = "\x02\x71\x47", [0x6473] = "\x02\x71\x7c", + [0x6474] = "\x02\x71\x7d", [0x64a8] = "\x01\x53\x78", + [0x64a9] = "\x02\x41\x52", [0x64ab] = "\x04\x41\x71", + [0x64ac] = "\x02\x48\x67", [0x64ad] = "\x02\x4f\x34", + [0x64ae] = "\x02\x4f\x35", [0x64af] = "\x01\x6b\x6c", + [0x64b0] = "\x04\x48\x57", [0x64b1] = "\x01\x6b\x6d", + [0x64b2] = "\x02\x55\x67", [0x64b3] = "\x01\x6f\x71", + [0x64b5] = "\x03\x53\x61", [0x64b6] = "\x01\x76\x29", + [0x64b7] = "\x03\x57\x2a", [0x64b8] = "\x02\x64\x55", + [0x64b9] = "\x03\x59\x5c", [0x64ba] = "\x01\x77\x71", + [0x64bb] = "\x02\x67\x78", [0x64bc] = "\x01\x79\x4e", + [0x64bd] = "\x02\x67\x77", [0x64be] = "\x02\x67\x79", + [0x64bf] = "\x02\x67\x76", [0x64c0] = "\x02\x6c\x63", + [0x64c1] = "\x02\x6a\x60", [0x64c2] = "\x02\x6a\x61", + [0x64c3] = "\x03\x5d\x56", [0x64c4] = "\x01\x7a\x51", + [0x64c6] = "\x02\x6c\x62", [0x64c7] = "\x03\x5e\x7b", + [0x64c8] = "\x03\x5e\x79", [0x64c9] = "\x02\x6c\x61", + [0x64ca] = "\x03\x5e\x7a", [0x64cb] = "\x02\x6e\x44", + [0x64cc] = "\x02\x71\x7e", [0x64cd] = "\x03\x62\x25", + [0x64db] = "\x01\x53\x79", [0x64dc] = "\x03\x5e\x7c", + [0x64dd] = "\x03\x62\x26", [0x64df] = "\x01\x53\x7a", + [0x64e1] = "\x03\x39\x67", [0x64e2] = "\x01\x58\x6a", + [0x64e3] = "\x02\x33\x4b", [0x64e4] = "\x03\x66\x70", + [0x64e5] = "\x02\x3a\x33", [0x64e6] = "\x03\x39\x68", + [0x64e7] = "\x01\x62\x7d", [0x64e9] = "\x01\x63\x22", + [0x64ea] = "\x01\x62\x7e", [0x64eb] = "\x02\x41\x53", + [0x64ec] = "\x03\x45\x5b", [0x64ed] = "\x01\x63\x24", + [0x64ef] = "\x01\x63\x21", [0x64f0] = "\x03\x40\x2b", + [0x64f1] = "\x03\x45\x5c", [0x64f2] = "\x01\x63\x23", + [0x64f3] = "\x03\x45\x54", [0x64f4] = "\x01\x67\x66", + [0x64f5] = "\x03\x45\x59", [0x64f6] = "\x02\x48\x68", + [0x64f7] = "\x03\x45\x57", [0x64f8] = "\x03\x4a\x5d", + [0x64f9] = "\x02\x48\x69", [0x64fa] = "\x02\x55\x69", + [0x64fb] = "\x04\x41\x7b", [0x64fc] = "\x01\x67\x65", + [0x64fd] = "\x01\x67\x67", [0x64fe] = "\x01\x67\x68", + [0x64ff] = "\x03\x45\x58", [0x6500] = "\x02\x4f\x37", + [0x6501] = "\x03\x4a\x5e", [0x6502] = "\x02\x4f\x36", + [0x6503] = "\x01\x6b\x6e", [0x6504] = "\x05\x4b\x4c", + [0x6505] = "\x01\x6b\x6f", [0x6506] = "\x03\x4a\x5b", + [0x6507] = "\x02\x4f\x38", [0x6508] = "\x02\x55\x68", + [0x6509] = "\x01\x6b\x71", [0x650a] = "\x01\x6f\x72", + [0x650b] = "\x04\x4e\x63", [0x650c] = "\x01\x6b\x70", + [0x650e] = "\x03\x66\x7a", [0x6510] = "\x01\x73\x27", + [0x6511] = "\x02\x55\x6a", [0x6512] = "\x01\x6f\x74", + [0x6513] = "\x01\x6f\x73", [0x6514] = "\x02\x55\x6b", + [0x6515] = "\x02\x55\x6e", [0x6516] = "\x02\x55\x6c", + [0x6517] = "\x02\x55\x6d", [0x6518] = "\x01\x6f\x75", + [0x6519] = "\x03\x4f\x6b", [0x651a] = "\x01\x73\x2c", + [0x651b] = "\x01\x73\x2a", [0x651c] = "\x03\x53\x65", + [0x651d] = "\x03\x53\x66", [0x651e] = "\x01\x73\x29", + [0x651f] = "\x02\x5b\x69", [0x6520] = "\x03\x53\x64", + [0x6521] = "\x01\x73\x2b", [0x6522] = "\x03\x53\x62", + [0x6523] = "\x03\x53\x63", [0x6524] = "\x02\x5b\x68", + [0x6525] = "\x02\x60\x57", [0x6526] = "\x04\x54\x7e", + [0x6527] = "\x02\x5b\x6a", [0x6528] = "\x01\x73\x28", + [0x6529] = "\x02\x5b\x6b", [0x652a] = "\x02\x60\x5a", + [0x652b] = "\x02\x60\x58", [0x652c] = "\x02\x60\x59", + [0x652d] = "\x02\x60\x5e", [0x652e] = "\x01\x77\x75", + [0x652f] = "\x02\x60\x5d", [0x6530] = "\x02\x60\x60", + [0x6531] = "\x02\x60\x5f", [0x6532] = "\x02\x60\x5c", + [0x6533] = "\x02\x60\x5b", [0x6534] = "\x04\x55\x21", + [0x6535] = "\x01\x76\x2a", [0x6536] = "\x03\x59\x62", + [0x6537] = "\x04\x5a\x29", [0x6538] = "\x03\x59\x61", + [0x6539] = "\x03\x59\x66", [0x653a] = "\x02\x64\x58", + [0x653b] = "\x03\x59\x65", [0x653c] = "\x02\x64\x57", + [0x653d] = "\x01\x77\x74", [0x653e] = "\x01\x77\x72", + [0x653f] = "\x01\x77\x73", [0x6540] = "\x03\x59\x63", + [0x6541] = "\x02\x64\x56", [0x6542] = "\x03\x66\x71", + [0x6543] = "\x02\x67\x7c", [0x6544] = "\x03\x5b\x69", + [0x6545] = "\x01\x79\x4f", [0x6546] = "\x04\x62\x38", + [0x6547] = "\x02\x67\x7b", [0x6548] = "\x02\x67\x7a", + [0x6549] = "\x01\x79\x50", [0x654a] = "\x04\x65\x3a", + [0x654b] = "\x02\x6a\x66", [0x654c] = "\x02\x6a\x65", + [0x654d] = "\x03\x5d\x58", [0x654e] = "\x02\x6a\x63", + [0x654f] = "\x03\x5e\x7e", [0x6550] = "\x02\x6a\x62", + [0x6551] = "\x01\x7a\x53", [0x6552] = "\x01\x7a\x52", + [0x6553] = "\x02\x6a\x67", [0x6554] = "\x02\x6e\x45", + [0x6555] = "\x01\x7c\x25", [0x6556] = "\x02\x6c\x65", + [0x6557] = "\x01\x7b\x43", [0x6558] = "\x02\x6c\x64", + [0x6559] = "\x02\x6a\x64", [0x655a] = "\x03\x5f\x78", + [0x655b] = "\x02\x6e\x46", [0x655c] = "\x01\x7c\x50", + [0x655d] = "\x03\x61\x2a", [0x655e] = "\x01\x7d\x2e", + [0x655f] = "\x02\x71\x48", [0x6560] = "\x04\x6e\x24", + [0x6561] = "\x02\x72\x21", [0x6596] = "\x01\x53\x7b", + [0x6597] = "\x02\x3a\x34", [0x6598] = "\x02\x60\x61", + [0x6599] = "\x01\x53\x7c", [0x659a] = "\x03\x45\x5f", + [0x659b] = "\x05\x4b\x4e", [0x659c] = "\x02\x4f\x3a", + [0x659d] = "\x02\x4f\x39", [0x659e] = "\x02\x5b\x6c", + [0x659f] = "\x05\x5a\x26", [0x65a0] = "\x03\x53\x68", + [0x65a1] = "\x02\x60\x63", [0x65a2] = "\x03\x57\x30", + [0x65a3] = "\x02\x60\x62", [0x65a4] = "\x03\x59\x67", + [0x65a5] = "\x01\x77\x76", [0x65a6] = "\x02\x67\x7d", + [0x65a7] = "\x02\x67\x7e", [0x65a8] = "\x01\x7a\x54", + [0x65a9] = "\x03\x5f\x21", [0x65aa] = "\x03\x60\x60", + [0x65ab] = "\x02\x72\x22", [0x65ac] = "\x01\x58\x6b", + [0x65ad] = "\x01\x63\x26", [0x65ae] = "\x01\x63\x25", + [0x65af] = "\x02\x48\x6a", [0x65b0] = "\x02\x48\x6c", + [0x65b1] = "\x01\x67\x6a", [0x65b2] = "\x02\x48\x6b", + [0x65b3] = "\x01\x67\x69", [0x65b4] = "\x01\x67\x6b", + [0x65b5] = "\x02\x48\x6d", [0x65b6] = "\x03\x4a\x63", + [0x65b7] = "\x03\x4a\x62", [0x65b8] = "\x03\x4a\x66", + [0x65b9] = "\x02\x4f\x3c", [0x65ba] = "\x02\x4f\x3e", + [0x65bb] = "\x02\x4f\x3d", [0x65bc] = "\x03\x4a\x61", + [0x65bd] = "\x02\x4f\x40", [0x65be] = "\x03\x4a\x60", + [0x65bf] = "\x03\x4a\x6c", [0x65c0] = "\x03\x4a\x64", + [0x65c1] = "\x01\x6b\x72", [0x65c2] = "\x02\x4f\x3f", + [0x65c3] = "\x02\x4f\x3b", [0x65c4] = "\x03\x4a\x6a", + [0x65c6] = "\x04\x48\x60", [0x65c7] = "\x02\x4f\x41", + [0x65c8] = "\x03\x4f\x73", [0x65c9] = "\x02\x55\x75", + [0x65ca] = "\x03\x4f\x6d", [0x65cb] = "\x02\x55\x78", + [0x65cc] = "\x02\x55\x7a", [0x65cd] = "\x02\x55\x70", + [0x65ce] = "\x02\x55\x74", [0x65cf] = "\x02\x55\x71", + [0x65d0] = "\x01\x6f\x77", [0x65d1] = "\x01\x6f\x7a", + [0x65d2] = "\x01\x6f\x7c", [0x65d3] = "\x02\x55\x72", + [0x65d4] = "\x02\x55\x73", [0x65d5] = "\x01\x6f\x7b", + [0x65d6] = "\x02\x55\x76", [0x65d7] = "\x02\x55\x79", + [0x65d8] = "\x02\x55\x77", [0x65d9] = "\x01\x6f\x7d", + [0x65da] = "\x03\x4f\x6e", [0x65db] = "\x01\x6f\x79", + [0x65dc] = "\x02\x55\x6f", [0x65dd] = "\x01\x6f\x76", + [0x65de] = "\x03\x4f\x72", [0x65df] = "\x01\x6f\x78", + [0x65e0] = "\x03\x4f\x74", [0x65e1] = "\x03\x53\x70", + [0x65e2] = "\x01\x73\x2e", [0x65e3] = "\x02\x5b\x72", + [0x65e4] = "\x02\x5b\x70", [0x65e5] = "\x02\x5b\x6f", + [0x65e6] = "\x03\x53\x71", [0x65e7] = "\x02\x5b\x75", + [0x65e8] = "\x03\x53\x6b", [0x65e9] = "\x02\x5b\x74", + [0x65ea] = "\x02\x5b\x73", [0x65eb] = "\x03\x53\x6c", + [0x65ec] = "\x02\x5b\x6e", [0x65ed] = "\x01\x73\x2d", + [0x65ee] = "\x02\x5b\x6d", [0x65ef] = "\x03\x53\x6a", + [0x65f0] = "\x02\x5b\x71", [0x65f1] = "\x01\x73\x2f", + [0x65f3] = "\x03\x57\x34", [0x65f4] = "\x02\x60\x66", + [0x65f5] = "\x03\x57\x37", [0x65f6] = "\x02\x60\x6a", + [0x65f7] = "\x02\x60\x67", [0x65f8] = "\x02\x60\x69", + [0x65f9] = "\x02\x60\x68", [0x65fa] = "\x02\x60\x65", + [0x65fb] = "\x02\x60\x6b", [0x65fc] = "\x02\x60\x6e", + [0x65fd] = "\x02\x60\x6c", [0x65fe] = "\x02\x60\x6d", + [0x65ff] = "\x01\x76\x2c", [0x6600] = "\x03\x57\x33", + [0x6601] = "\x01\x76\x2b", [0x6602] = "\x02\x60\x64", + [0x6603] = "\x02\x60\x6f", [0x6604] = "\x02\x64\x5d", + [0x6605] = "\x02\x64\x60", [0x6606] = "\x02\x64\x62", + [0x6607] = "\x02\x64\x61", [0x6608] = "\x03\x59\x6a", + [0x6609] = "\x02\x64\x5b", [0x660a] = "\x02\x64\x5f", + [0x660b] = "\x02\x64\x5a", [0x660c] = "\x03\x59\x6b", + [0x660d] = "\x02\x64\x5c", [0x660e] = "\x01\x77\x77", + [0x660f] = "\x02\x64\x59", [0x6610] = "\x03\x59\x6d", + [0x6611] = "\x02\x64\x5e", [0x6614] = "\x02\x68\x2d", + [0x6615] = "\x02\x68\x22", [0x6616] = "\x01\x79\x51", + [0x6617] = "\x03\x5b\x6f", [0x6618] = "\x03\x5b\x6d", + [0x6619] = "\x01\x79\x52", [0x661a] = "\x02\x68\x21", + [0x661b] = "\x02\x68\x26", [0x661c] = "\x02\x68\x2c", + [0x661d] = "\x02\x68\x24", [0x661e] = "\x02\x68\x2b", + [0x661f] = "\x03\x5b\x6c", [0x6620] = "\x02\x68\x28", + [0x6621] = "\x03\x5b\x6e", [0x6622] = "\x02\x68\x27", + [0x6623] = "\x02\x68\x2a", [0x6624] = "\x02\x68\x25", + [0x6625] = "\x02\x68\x23", [0x6626] = "\x03\x5b\x6b", + [0x6627] = "\x02\x68\x29", [0x6629] = "\x02\x6a\x6e", + [0x662a] = "\x02\x6a\x6c", [0x662b] = "\x01\x7a\x55", + [0x662c] = "\x02\x6a\x6b", [0x662d] = "\x02\x6a\x71", + [0x662e] = "\x02\x6a\x6f", [0x662f] = "\x03\x5d\x5a", + [0x6630] = "\x01\x7a\x56", [0x6631] = "\x02\x6a\x6a", + [0x6632] = "\x02\x6a\x68", [0x6633] = "\x04\x65\x46", + [0x6634] = "\x02\x6a\x69", [0x6635] = "\x01\x7a\x58", + [0x6636] = "\x02\x6a\x6d", [0x6637] = "\x01\x7a\x57", + [0x6638] = "\x02\x6a\x70", [0x6639] = "\x02\x6c\x66", + [0x663a] = "\x02\x6c\x6c", [0x663b] = "\x03\x5f\x24", + [0x663c] = "\x03\x5f\x22", [0x663d] = "\x02\x6c\x67", + [0x663e] = "\x01\x7b\x47", [0x663f] = "\x02\x6c\x6d", + [0x6640] = "\x01\x7b\x46", [0x6641] = "\x02\x6c\x6b", + [0x6642] = "\x02\x6c\x6a", [0x6643] = "\x01\x7b\x45", + [0x6644] = "\x02\x6c\x69", [0x6645] = "\x01\x7b\x44", + [0x6646] = "\x02\x6c\x68", [0x6647] = "\x07\x56\x51", + [0x6648] = "\x02\x6e\x4c", [0x6649] = "\x02\x6e\x4e", + [0x664a] = "\x02\x6e\x4d", [0x664b] = "\x04\x69\x6a", + [0x664c] = "\x02\x6e\x4a", [0x664d] = "\x01\x7c\x27", + [0x664e] = "\x02\x6e\x47", [0x664f] = "\x02\x6e\x4b", + [0x6650] = "\x02\x6e\x50", [0x6651] = "\x03\x5f\x79", + [0x6652] = "\x02\x6e\x4f", [0x6653] = "\x02\x6e\x48", + [0x6654] = "\x02\x6e\x49", [0x6655] = "\x01\x7c\x26", + [0x6656] = "\x02\x6f\x60", [0x6657] = "\x01\x7c\x53", + [0x6658] = "\x03\x60\x62", [0x6659] = "\x02\x6f\x61", + [0x665a] = "\x01\x7c\x51", [0x665b] = "\x01\x7c\x52", + [0x665c] = "\x03\x60\x61", [0x665d] = "\x04\x6c\x3d", + [0x665e] = "\x02\x70\x61", [0x665f] = "\x01\x7c\x75", + [0x6660] = "\x02\x71\x65", [0x6661] = "\x03\x61\x72", + [0x6662] = "\x01\x7d\x37", [0x6663] = "\x03\x61\x73", + [0x6664] = "\x02\x72\x23", [0x6665] = "\x01\x7d\x38", + [0x6666] = "\x02\x72\x24", [0x6667] = "\x02\x72\x25", + [0x6668] = "\x02\x72\x33", [0x6669] = "\x02\x72\x32", + [0x666a] = "\x01\x7d\x47", [0x666b] = "\x02\x72\x3b", + [0x66a8] = "\x01\x58\x6c", [0x66a9] = "\x03\x40\x2f", + [0x66aa] = "\x04\x42\x21", [0x66ab] = "\x02\x48\x6f", + [0x66ac] = "\x04\x41\x7d", [0x66ad] = "\x02\x48\x6e", + [0x66ae] = "\x04\x41\x7e", [0x66af] = "\x01\x6b\x73", + [0x66b0] = "\x01\x6b\x74", [0x66b1] = "\x02\x4f\x42", + [0x66b2] = "\x04\x4e\x74", [0x66b3] = "\x02\x55\x7b", + [0x66b4] = "\x02\x5b\x78", [0x66b5] = "\x03\x4f\x77", + [0x66b6] = "\x03\x4f\x76", [0x66b7] = "\x01\x6f\x7e", + [0x66b8] = "\x01\x73\x30", [0x66b9] = "\x02\x5b\x76", + [0x66ba] = "\x04\x55\x31", [0x66bb] = "\x02\x5b\x79", + [0x66bc] = "\x01\x73\x31", [0x66bd] = "\x03\x57\x3a", + [0x66be] = "\x02\x60\x70", [0x66bf] = "\x02\x5b\x77", + [0x66c0] = "\x02\x64\x63", [0x66c1] = "\x01\x77\x78", + [0x66c2] = "\x02\x68\x2e", [0x66c3] = "\x04\x62\x49", + [0x66c4] = "\x03\x5d\x61", [0x66c6] = "\x02\x6a\x74", + [0x66c7] = "\x02\x6a\x72", [0x66c8] = "\x03\x5d\x60", + [0x66c9] = "\x03\x5d\x5e", [0x66ca] = "\x02\x6a\x73", + [0x66cd] = "\x02\x6c\x6e", [0x66ce] = "\x03\x5f\x25", + [0x66cf] = "\x01\x7b\x48", [0x66d0] = "\x02\x6e\x51", + [0x66d1] = "\x01\x7c\x56", [0x66d2] = "\x01\x7c\x28", + [0x66d3] = "\x01\x7c\x54", [0x66d4] = "\x01\x7c\x55", + [0x66d5] = "\x02\x70\x62", [0x66d6] = "\x01\x7d\x2f", + [0x66d7] = "\x03\x61\x74", [0x66d8] = "\x01\x58\x6d", + [0x66d9] = "\x04\x36\x2d", [0x66da] = "\x03\x4a\x6e", + [0x66db] = "\x04\x4e\x79", [0x66dc] = "\x02\x64\x64", + [0x66dd] = "\x03\x5f\x7b", [0x66de] = "\x03\x60\x63", + [0x66df] = "\x02\x33\x4c", [0x66e0] = "\x03\x40\x32", + [0x66e1] = "\x01\x67\x6c", [0x66e2] = "\x03\x45\x61", + [0x66e3] = "\x02\x4f\x43", [0x66e4] = "\x03\x4a\x6f", + [0x66e5] = "\x03\x4a\x73", [0x66e6] = "\x01\x6b\x75", + [0x66e7] = "\x02\x4f\x44", [0x66e8] = "\x03\x4a\x71", + [0x66e9] = "\x03\x4a\x70", [0x66ea] = "\x03\x4a\x72", + [0x66eb] = "\x02\x55\x7d", [0x66ec] = "\x02\x55\x7c", + [0x66ed] = "\x01\x73\x33", [0x66ee] = "\x01\x70\x21", + [0x66ef] = "\x01\x70\x22", [0x66f0] = "\x04\x4f\x21", + [0x66f1] = "\x02\x56\x22", [0x66f2] = "\x02\x56\x21", + [0x66f3] = "\x02\x55\x7e", [0x66f4] = "\x03\x4f\x79", + [0x66f5] = "\x03\x53\x75", [0x66f6] = "\x02\x5b\x7a", + [0x66f7] = "\x02\x5b\x7d", [0x66f8] = "\x03\x53\x74", + [0x66f9] = "\x02\x5b\x7c", [0x66fa] = "\x02\x5b\x7b", + [0x66fb] = "\x01\x73\x32", [0x66fc] = "\x02\x60\x74", + [0x66fd] = "\x02\x60\x72", [0x66fe] = "\x02\x60\x71", + [0x66ff] = "\x04\x5a\x37", [0x6700] = "\x03\x57\x3b", + [0x6701] = "\x02\x60\x73", [0x6702] = "\x03\x57\x3c", + [0x6703] = "\x01\x77\x79", [0x6704] = "\x02\x64\x66", + [0x6705] = "\x02\x64\x67", [0x6706] = "\x01\x77\x7a", + [0x6707] = "\x03\x59\x6f", [0x6708] = "\x02\x64\x65", + [0x6709] = "\x03\x5b\x71", [0x670a] = "\x02\x68\x30", + [0x670b] = "\x02\x68\x2f", [0x670c] = "\x02\x68\x32", + [0x670d] = "\x01\x79\x53", [0x670e] = "\x02\x68\x31", + [0x670f] = "\x04\x62\x4f", [0x6710] = "\x02\x6a\x75", + [0x6711] = "\x02\x6a\x77", [0x6712] = "\x02\x6a\x76", + [0x6714] = "\x03\x5f\x27", [0x6715] = "\x02\x6c\x6f", + [0x6716] = "\x02\x6c\x72", [0x6717] = "\x02\x6c\x70", + [0x6718] = "\x02\x6c\x71", [0x6719] = "\x02\x6e\x52", + [0x671a] = "\x01\x7c\x29", [0x671b] = "\x04\x69\x74", + [0x671c] = "\x04\x69\x71", [0x671d] = "\x03\x66\x72", + [0x671e] = "\x02\x6f\x62", [0x671f] = "\x02\x6f\x63", + [0x6720] = "\x02\x6f\x64", [0x6721] = "\x03\x61\x2c", + [0x6722] = "\x01\x7c\x76", [0x6723] = "\x01\x7d\x30", + [0x6724] = "\x02\x72\x26", [0x6725] = "\x01\x58\x6e", + [0x6726] = "\x03\x4a\x75", [0x6727] = "\x01\x70\x23", + [0x6728] = "\x01\x73\x34", [0x6729] = "\x02\x64\x68", + [0x672a] = "\x03\x5d\x62", [0x672b] = "\x02\x6e\x53", + [0x672c] = "\x03\x61\x2e", [0x672d] = "\x04\x6d\x37", + [0x672e] = "\x02\x71\x66", [0x672f] = "\x02\x33\x4d", + [0x6730] = "\x03\x62\x28", [0x6731] = "\x01\x7d\x48", + [0x6732] = "\x01\x58\x6f", [0x6733] = "\x02\x5b\x7e", + [0x6734] = "\x03\x57\x3e", [0x6735] = "\x02\x64\x69", + [0x6737] = "\x02\x68\x33", [0x6738] = "\x03\x5d\x63", + [0x6739] = "\x04\x68\x36", [0x673a] = "\x02\x6c\x73", + [0x673b] = "\x02\x6e\x54", [0x673c] = "\x01\x58\x70", + [0x673d] = "\x03\x45\x62", [0x673e] = "\x02\x4f\x45", + [0x673f] = "\x02\x4f\x46", [0x6740] = "\x03\x4a\x78", + [0x6741] = "\x01\x6b\x76", [0x6742] = "\x01\x6b\x77", + [0x6743] = "\x02\x56\x24", [0x6744] = "\x01\x70\x25", + [0x6745] = "\x01\x70\x24", [0x6746] = "\x02\x56\x23", + [0x6748] = "\x02\x60\x75", [0x6749] = "\x03\x57\x3f", + [0x674a] = "\x02\x64\x6a", [0x674b] = "\x02\x64\x6c", + [0x674c] = "\x02\x64\x6b", [0x674d] = "\x01\x77\x7d", + [0x674e] = "\x01\x77\x7c", [0x674f] = "\x01\x77\x7b", + [0x6750] = "\x03\x5d\x64", [0x6751] = "\x01\x7b\x4a", + [0x6752] = "\x02\x6c\x74", [0x6753] = "\x03\x5f\x28", + [0x6754] = "\x01\x7b\x49", [0x6755] = "\x02\x6e\x56", + [0x6756] = "\x02\x6e\x55", [0x6757] = "\x03\x61\x2f", + [0x6758] = "\x01\x7c\x77", [0x6759] = "\x02\x70\x63", + [0x675a] = "\x01\x5e\x23", [0x675b] = "\x02\x48\x70", + [0x675c] = "\x04\x42\x29", [0x675d] = "\x03\x45\x63", + [0x675f] = "\x02\x4f\x49", [0x6760] = "\x02\x4f\x47", + [0x6761] = "\x02\x4f\x48", [0x6762] = "\x04\x48\x6b", + [0x6763] = "\x03\x4f\x7e", [0x6764] = "\x02\x56\x2d", + [0x6765] = "\x04\x4f\x30", [0x6766] = "\x02\x56\x28", + [0x6767] = "\x02\x56\x25", [0x6768] = "\x02\x56\x2c", + [0x6769] = "\x03\x4f\x7c", [0x676a] = "\x04\x4f\x35", + [0x676b] = "\x03\x4f\x7b", [0x676c] = "\x02\x56\x2e", + [0x676d] = "\x04\x4f\x37", [0x676e] = "\x04\x4f\x2c", + [0x676f] = "\x01\x70\x27", [0x6770] = "\x02\x56\x2b", + [0x6771] = "\x02\x56\x27", [0x6772] = "\x03\x4f\x7d", + [0x6773] = "\x04\x4f\x2a", [0x6774] = "\x02\x56\x26", + [0x6775] = "\x02\x56\x2a", [0x6776] = "\x02\x56\x29", + [0x6777] = "\x01\x70\x26", [0x6779] = "\x0f\x53\x3e", + [0x677a] = "\x02\x5c\x2b", [0x677b] = "\x02\x5c\x26", + [0x677c] = "\x02\x5c\x24", [0x677d] = "\x02\x5c\x2d", + [0x677e] = "\x02\x5c\x25", [0x677f] = "\x04\x55\x47", + [0x6780] = "\x02\x5c\x21", [0x6781] = "\x04\x55\x43", + [0x6782] = "\x02\x5c\x27", [0x6783] = "\x03\x53\x78", + [0x6784] = "\x03\x53\x7a", [0x6785] = "\x02\x5c\x22", + [0x6786] = "\x02\x60\x7e", [0x6787] = "\x02\x5c\x23", + [0x6788] = "\x02\x5c\x2e", [0x6789] = "\x03\x54\x23", + [0x678a] = "\x04\x55\x45", [0x678b] = "\x03\x53\x7c", + [0x678c] = "\x03\x54\x21", [0x678d] = "\x05\x5a\x4a", + [0x678e] = "\x03\x54\x25", [0x678f] = "\x03\x53\x7d", + [0x6790] = "\x02\x5c\x2a", [0x6791] = "\x01\x73\x35", + [0x6792] = "\x02\x5c\x29", [0x6793] = "\x02\x5c\x28", + [0x6794] = "\x03\x53\x79", [0x6795] = "\x02\x5c\x2c", + [0x6796] = "\x0f\x59\x38", [0x6798] = "\x03\x66\x73", + [0x6799] = "\x03\x57\x44", [0x679a] = "\x02\x60\x76", + [0x679b] = "\x02\x60\x79", [0x679c] = "\x04\x5a\x49", + [0x679d] = "\x03\x57\x45", [0x679e] = "\x02\x60\x78", + [0x679f] = "\x03\x57\x40", [0x67a0] = "\x02\x61\x22", + [0x67a1] = "\x02\x60\x7b", [0x67a2] = "\x02\x61\x21", + [0x67a3] = "\x03\x57\x42", [0x67a4] = "\x02\x60\x7d", + [0x67a5] = "\x02\x60\x7c", [0x67a6] = "\x02\x60\x7a", + [0x67a7] = "\x04\x5a\x41", [0x67a8] = "\x02\x60\x77", + [0x67a9] = "\x04\x5a\x3f", [0x67aa] = "\x01\x76\x2f", + [0x67ab] = "\x01\x76\x2e", [0x67ac] = "\x04\x5a\x44", + [0x67ad] = "\x01\x76\x30", [0x67ae] = "\x01\x76\x2d", + [0x67af] = "\x02\x61\x23", [0x67b0] = "\x04\x5a\x45", + [0x67b1] = "\x0f\x5d\x76", [0x67b3] = "\x04\x5a\x43", + [0x67b5] = "\x02\x64\x72", [0x67b6] = "\x02\x64\x75", + [0x67b7] = "\x04\x5f\x26", [0x67b8] = "\x02\x64\x73", + [0x67b9] = "\x02\x64\x77", [0x67ba] = "\x05\x66\x79", + [0x67bb] = "\x03\x59\x74", [0x67bc] = "\x04\x5f\x22", + [0x67bd] = "\x02\x64\x78", [0x67be] = "\x04\x5f\x2a", + [0x67bf] = "\x02\x64\x70", [0x67c0] = "\x01\x78\x24", + [0x67c1] = "\x02\x64\x71", [0x67c2] = "\x03\x59\x73", + [0x67c3] = "\x02\x64\x6f", [0x67c4] = "\x02\x64\x76", + [0x67c5] = "\x03\x5b\x74", [0x67c6] = "\x02\x64\x6e", + [0x67c7] = "\x02\x64\x6d", [0x67c8] = "\x01\x78\x23", + [0x67c9] = "\x01\x78\x21", [0x67ca] = "\x01\x77\x7e", + [0x67cb] = "\x03\x59\x76", [0x67cc] = "\x03\x59\x75", + [0x67cd] = "\x03\x57\x43", [0x67cf] = "\x0f\x61\x72", + [0x67d2] = "\x03\x59\x71", [0x67d3] = "\x02\x64\x74", + [0x67d4] = "\x02\x68\x3c", [0x67d5] = "\x02\x68\x42", + [0x67d6] = "\x01\x79\x56", [0x67d7] = "\x02\x68\x3d", + [0x67d8] = "\x05\x6b\x33", [0x67d9] = "\x02\x68\x40", + [0x67da] = "\x02\x68\x44", [0x67db] = "\x01\x79\x57", + [0x67dc] = "\x02\x68\x3f", [0x67dd] = "\x04\x62\x5c", + [0x67de] = "\x02\x68\x37", [0x67df] = "\x03\x5b\x75", + [0x67e0] = "\x02\x68\x36", [0x67e1] = "\x02\x68\x43", + [0x67e2] = "\x02\x68\x3a", [0x67e3] = "\x03\x5b\x77", + [0x67e4] = "\x02\x68\x38", [0x67e5] = "\x02\x68\x41", + [0x67e6] = "\x02\x68\x39", [0x67e7] = "\x01\x79\x55", + [0x67e8] = "\x01\x79\x54", [0x67e9] = "\x03\x5b\x79", + [0x67ea] = "\x02\x68\x34", [0x67eb] = "\x02\x68\x35", + [0x67ec] = "\x02\x68\x3e", [0x67ed] = "\x04\x62\x66", + [0x67ee] = "\x03\x5b\x7a", [0x67ef] = "\x04\x62\x68", + [0x67f0] = "\x02\x68\x3b", [0x67f3] = "\x0f\x64\x6b", + [0x67f4] = "\x04\x62\x55", [0x67f6] = "\x03\x5d\x6f", + [0x67f7] = "\x02\x6a\x7a", [0x67f8] = "\x02\x6a\x7d", + [0x67f9] = "\x03\x5d\x71", [0x67fa] = "\x04\x62\x56", + [0x67fb] = "\x03\x5d\x67", [0x67fc] = "\x03\x5d\x69", + [0x67fd] = "\x01\x78\x22", [0x67fe] = "\x03\x5d\x6a", + [0x67ff] = "\x03\x5d\x74", [0x6800] = "\x03\x5d\x75", + [0x6801] = "\x04\x65\x5a", [0x6802] = "\x03\x5d\x6e", + [0x6803] = "\x04\x65\x59", [0x6804] = "\x03\x5d\x68", + [0x6805] = "\x02\x6a\x7b", [0x6806] = "\x02\x6b\x23", + [0x6807] = "\x02\x6b\x21", [0x6808] = "\x02\x6a\x79", + [0x6809] = "\x02\x6b\x26", [0x680a] = "\x03\x5d\x66", + [0x680b] = "\x02\x6a\x78", [0x680c] = "\x03\x5d\x76", + [0x680d] = "\x01\x7a\x5a", [0x680e] = "\x02\x6b\x22", + [0x680f] = "\x04\x65\x54", [0x6810] = "\x03\x5d\x73", + [0x6811] = "\x04\x65\x57", [0x6812] = "\x02\x6a\x7c", + [0x6813] = "\x01\x7a\x59", [0x6814] = "\x02\x6b\x25", + [0x6815] = "\x03\x5d\x72", [0x6816] = "\x04\x65\x5d", + [0x6817] = "\x02\x6b\x24", [0x681b] = "\x03\x5d\x70", + [0x681c] = "\x02\x6c\x77", [0x681d] = "\x02\x6c\x76", + [0x681e] = "\x05\x72\x51", [0x681f] = "\x03\x5f\x2c", + [0x6820] = "\x05\x72\x4b", [0x6821] = "\x02\x6c\x7d", + [0x6822] = "\x05\x72\x4e", [0x6823] = "\x02\x6c\x79", + [0x6824] = "\x02\x6c\x7c", [0x6825] = "\x01\x7b\x4c", + [0x6826] = "\x04\x68\x3b", [0x6827] = "\x04\x68\x3e", + [0x6828] = "\x02\x6c\x7a", [0x6829] = "\x02\x6c\x7b", + [0x682a] = "\x04\x68\x39", [0x682b] = "\x02\x6c\x75", + [0x682c] = "\x02\x6c\x78", [0x682d] = "\x01\x7b\x4b", + [0x682e] = "\x03\x5f\x2a", [0x682f] = "\x0f\x69\x2a", + [0x6831] = "\x01\x7c\x2b", [0x6832] = "\x02\x6e\x61", + [0x6833] = "\x02\x6e\x5c", [0x6834] = "\x02\x6e\x60", + [0x6835] = "\x03\x60\x25", [0x6836] = "\x02\x6e\x63", + [0x6837] = "\x02\x6e\x5f", [0x6838] = "\x03\x5f\x7e", + [0x6839] = "\x02\x6e\x5b", [0x683a] = "\x03\x60\x23", + [0x683b] = "\x01\x7c\x2d", [0x683c] = "\x02\x6e\x5e", + [0x683d] = "\x02\x6e\x62", [0x683e] = "\x01\x7c\x2c", + [0x683f] = "\x02\x6e\x59", [0x6840] = "\x02\x6a\x7e", + [0x6841] = "\x02\x6e\x5d", [0x6842] = "\x04\x6a\x23", + [0x6843] = "\x05\x75\x2d", [0x6844] = "\x02\x6e\x5a", + [0x6845] = "\x03\x60\x22", [0x6846] = "\x02\x6e\x57", + [0x6847] = "\x0f\x6a\x3e", [0x6848] = "\x02\x6e\x58", + [0x6849] = "\x01\x7c\x2a", [0x684a] = "\x02\x6f\x68", + [0x684b] = "\x02\x6f\x6a", [0x684c] = "\x02\x6f\x6d", + [0x684d] = "\x02\x6f\x69", [0x684e] = "\x02\x6f\x6e", + [0x684f] = "\x03\x60\x65", [0x6850] = "\x02\x6f\x67", + [0x6851] = "\x03\x60\x66", [0x6852] = "\x02\x6f\x65", + [0x6853] = "\x03\x60\x68", [0x6854] = "\x01\x7c\x57", + [0x6855] = "\x02\x6f\x6b", [0x6856] = "\x01\x7c\x59", + [0x6857] = "\x01\x7c\x58", [0x6858] = "\x02\x6f\x66", + [0x6859] = "\x02\x6f\x6c", [0x685d] = "\x03\x61\x32", + [0x685e] = "\x02\x70\x68", [0x685f] = "\x01\x7c\x78", + [0x6860] = "\x02\x70\x69", [0x6861] = "\x03\x61\x33", + [0x6862] = "\x02\x70\x67", [0x6863] = "\x02\x70\x64", + [0x6864] = "\x04\x6c\x4a", [0x6865] = "\x03\x61\x34", + [0x6866] = "\x02\x70\x66", [0x6867] = "\x02\x70\x65", + [0x6868] = "\x02\x71\x49", [0x686c] = "\x03\x61\x59", + [0x686d] = "\x02\x71\x4b", [0x686e] = "\x02\x71\x4a", + [0x686f] = "\x03\x61\x5b", [0x6871] = "\x02\x71\x69", + [0x6872] = "\x05\x7a\x53", [0x6873] = "\x02\x71\x68", + [0x6874] = "\x02\x71\x67", [0x6875] = "\x02\x71\x6a", + [0x6876] = "\x03\x61\x75", [0x6877] = "\x01\x7d\x40", + [0x6878] = "\x01\x7d\x41", [0x6879] = "\x02\x72\x38", + [0x687a] = "\x02\x72\x3c", [0x687b] = "\x03\x62\x41", + [0x68e5] = "\x01\x5e\x24", [0x68e6] = "\x02\x41\x54", + [0x68e7] = "\x02\x48\x73", [0x68e8] = "\x03\x45\x64", + [0x68e9] = "\x01\x67\x6d", [0x68ea] = "\x02\x48\x71", + [0x68eb] = "\x03\x45\x66", [0x68ec] = "\x03\x2f\x42", + [0x68ed] = "\x02\x48\x72", [0x68ee] = "\x03\x45\x68", + [0x68ef] = "\x03\x45\x67", [0x68f1] = "\x02\x4f\x4a", + [0x68f2] = "\x02\x4f\x4b", [0x68f3] = "\x01\x6b\x7a", + [0x68f4] = "\x01\x6b\x78", [0x68f5] = "\x02\x4f\x4c", + [0x68f6] = "\x01\x6b\x79", [0x68f7] = "\x02\x56\x33", + [0x68f8] = "\x03\x50\x27", [0x68f9] = "\x02\x56\x36", + [0x68fa] = "\x02\x56\x30", [0x68fb] = "\x02\x56\x37", + [0x68fc] = "\x02\x56\x2f", [0x68fd] = "\x02\x56\x31", + [0x68fe] = "\x03\x50\x2a", [0x68ff] = "\x02\x56\x32", + [0x6900] = "\x02\x56\x35", [0x6901] = "\x03\x50\x24", + [0x6902] = "\x03\x50\x2b", [0x6903] = "\x01\x70\x2a", + [0x6904] = "\x02\x56\x3a", [0x6905] = "\x02\x56\x39", + [0x6906] = "\x01\x70\x28", [0x6907] = "\x02\x56\x34", + [0x6908] = "\x02\x56\x38", [0x6909] = "\x01\x70\x29", + [0x690a] = "\x03\x54\x2d", [0x690b] = "\x04\x4f\x42", + [0x690c] = "\x03\x50\x25", [0x690d] = "\x03\x50\x22", + [0x690f] = "\x03\x54\x2a", [0x6910] = "\x02\x5c\x38", + [0x6911] = "\x04\x55\x52", [0x6912] = "\x01\x73\x3a", + [0x6913] = "\x03\x54\x2c", [0x6914] = "\x02\x5c\x33", + [0x6915] = "\x01\x73\x36", [0x6916] = "\x03\x54\x36", + [0x6917] = "\x02\x5c\x30", [0x6918] = "\x02\x5c\x36", + [0x6919] = "\x02\x5c\x39", [0x691a] = "\x03\x54\x33", + [0x691b] = "\x01\x73\x3b", [0x691c] = "\x04\x5a\x4e", + [0x691d] = "\x02\x5c\x35", [0x691e] = "\x02\x5c\x32", + [0x691f] = "\x02\x5c\x3a", [0x6920] = "\x02\x5c\x31", + [0x6921] = "\x03\x54\x37", [0x6922] = "\x02\x5c\x37", + [0x6923] = "\x01\x73\x37", [0x6924] = "\x03\x54\x29", + [0x6925] = "\x02\x5c\x2f", [0x6926] = "\x01\x73\x38", + [0x6927] = "\x03\x54\x35", [0x6928] = "\x01\x73\x39", + [0x6929] = "\x02\x5c\x34", [0x692a] = "\x03\x54\x32", + [0x692d] = "\x02\x61\x35", [0x692e] = "\x02\x61\x28", + [0x692f] = "\x02\x61\x29", [0x6930] = "\x02\x61\x2c", + [0x6931] = "\x02\x61\x2a", [0x6932] = "\x04\x5a\x55", + [0x6933] = "\x02\x61\x24", [0x6934] = "\x04\x5a\x56", + [0x6935] = "\x03\x57\x4d", [0x6936] = "\x02\x61\x27", + [0x6937] = "\x02\x61\x31", [0x6938] = "\x02\x61\x2b", + [0x6939] = "\x03\x57\x48", [0x693a] = "\x04\x5a\x4f", + [0x693b] = "\x01\x76\x31", [0x693c] = "\x04\x5a\x4d", + [0x693d] = "\x02\x61\x33", [0x693e] = "\x02\x61\x30", + [0x693f] = "\x01\x76\x32", [0x6940] = "\x02\x61\x32", + [0x6941] = "\x02\x61\x25", [0x6942] = "\x02\x61\x2e", + [0x6943] = "\x02\x61\x2f", [0x6944] = "\x03\x57\x4a", + [0x6945] = "\x02\x61\x2d", [0x6947] = "\x0f\x5e\x24", + [0x6949] = "\x03\x66\x75", [0x694a] = "\x02\x64\x7c", + [0x694b] = "\x02\x64\x7e", [0x694c] = "\x02\x65\x23", + [0x694d] = "\x03\x59\x79", [0x694e] = "\x03\x59\x7b", + [0x694f] = "\x02\x64\x7b", [0x6950] = "\x03\x59\x7d", + [0x6951] = "\x01\x78\x25", [0x6952] = "\x02\x65\x25", + [0x6953] = "\x02\x64\x7a", [0x6954] = "\x02\x65\x26", + [0x6955] = "\x03\x59\x7e", [0x6956] = "\x02\x65\x22", + [0x6957] = "\x02\x65\x24", [0x6958] = "\x02\x65\x28", + [0x6959] = "\x02\x65\x21", [0x695a] = "\x02\x65\x29", + [0x695b] = "\x02\x64\x7d", [0x695c] = "\x02\x64\x79", + [0x695d] = "\x01\x78\x26", [0x695e] = "\x03\x5a\x22", + [0x695f] = "\x02\x65\x27", [0x6960] = "\x01\x78\x27", + [0x6961] = "\x01\x79\x59", [0x6962] = "\x04\x5f\x34", + [0x6963] = "\x03\x59\x7a", [0x6964] = "\x0f\x61\x77", + [0x6966] = "\x03\x5b\x7d", [0x6967] = "\x02\x61\x26", + [0x6968] = "\x02\x68\x5e", [0x6969] = "\x02\x68\x55", + [0x696a] = "\x01\x79\x5b", [0x696b] = "\x02\x68\x51", + [0x696c] = "\x01\x79\x5c", [0x696d] = "\x03\x5c\x27", + [0x696e] = "\x03\x5c\x22", [0x696f] = "\x02\x68\x5a", + [0x6970] = "\x02\x68\x54", [0x6971] = "\x02\x68\x4a", + [0x6972] = "\x01\x79\x5a", [0x6973] = "\x02\x68\x57", + [0x6974] = "\x02\x68\x52", [0x6975] = "\x02\x68\x53", + [0x6976] = "\x03\x5c\x25", [0x6977] = "\x02\x68\x45", + [0x6978] = "\x02\x68\x4c", [0x6979] = "\x02\x68\x5b", + [0x697a] = "\x03\x5b\x7e", [0x697b] = "\x02\x68\x58", + [0x697c] = "\x05\x6b\x3f", [0x697d] = "\x02\x68\x50", + [0x697e] = "\x03\x5c\x26", [0x697f] = "\x02\x68\x5c", + [0x6980] = "\x02\x68\x4b", [0x6981] = "\x02\x68\x46", + [0x6982] = "\x02\x68\x59", [0x6983] = "\x03\x5c\x24", + [0x6984] = "\x02\x68\x48", [0x6985] = "\x02\x68\x56", + [0x6986] = "\x02\x68\x4d", [0x6987] = "\x02\x68\x5d", + [0x6988] = "\x02\x68\x49", [0x6989] = "\x01\x79\x58", + [0x698a] = "\x02\x68\x47", [0x698b] = "\x02\x68\x4e", + [0x698c] = "\x02\x68\x4f", [0x698d] = "\x05\x6f\x3a", + [0x6990] = "\x02\x6b\x2d", [0x6991] = "\x03\x5c\x23", + [0x6992] = "\x02\x6b\x2b", [0x6993] = "\x04\x65\x69", + [0x6994] = "\x02\x6b\x30", [0x6995] = "\x03\x5d\x79", + [0x6996] = "\x02\x6b\x3c", [0x6997] = "\x02\x6b\x33", + [0x6998] = "\x02\x6b\x2c", [0x6999] = "\x02\x6b\x28", + [0x699a] = "\x02\x6b\x35", [0x699b] = "\x02\x6b\x2e", + [0x699c] = "\x02\x6b\x31", [0x699d] = "\x02\x6b\x2a", + [0x699e] = "\x02\x6b\x38", [0x699f] = "\x02\x6b\x27", + [0x69a0] = "\x02\x6b\x2f", [0x69a1] = "\x02\x6b\x34", + [0x69a2] = "\x02\x6b\x36", [0x69a3] = "\x02\x6b\x39", + [0x69a4] = "\x02\x6b\x29", [0x69a5] = "\x03\x5d\x7a", + [0x69a6] = "\x02\x6b\x3d", [0x69a7] = "\x02\x6b\x3e", + [0x69a8] = "\x02\x6b\x37", [0x69a9] = "\x02\x6b\x3b", + [0x69aa] = "\x02\x6b\x32", [0x69ac] = "\x02\x6d\x2f", + [0x69ad] = "\x02\x6d\x32", [0x69ae] = "\x03\x5f\x35", + [0x69af] = "\x01\x7b\x4d", [0x69b0] = "\x03\x5f\x31", + [0x69b1] = "\x02\x6d\x31", [0x69b2] = "\x02\x6d\x36", + [0x69b3] = "\x02\x6d\x34", [0x69b4] = "\x01\x7b\x4e", + [0x69b5] = "\x02\x6d\x2b", [0x69b6] = "\x02\x6d\x21", + [0x69b7] = "\x02\x6c\x7e", [0x69b8] = "\x01\x7b\x50", + [0x69b9] = "\x02\x6d\x2d", [0x69ba] = "\x02\x6d\x2e", + [0x69bb] = "\x02\x6d\x2a", [0x69bc] = "\x02\x6d\x22", + [0x69bd] = "\x03\x5f\x32", [0x69be] = "\x02\x6d\x27", + [0x69bf] = "\x02\x6b\x3a", [0x69c0] = "\x04\x68\x43", + [0x69c1] = "\x02\x6d\x23", [0x69c2] = "\x01\x7b\x4f", + [0x69c3] = "\x02\x6d\x29", [0x69c4] = "\x03\x5f\x36", + [0x69c5] = "\x02\x6d\x28", [0x69c7] = "\x02\x6d\x24", + [0x69c8] = "\x02\x6d\x30", [0x69c9] = "\x04\x68\x44", + [0x69ca] = "\x02\x6d\x25", [0x69cb] = "\x02\x6e\x68", + [0x69cc] = "\x02\x6d\x33", [0x69cd] = "\x02\x6d\x35", + [0x69ce] = "\x02\x6d\x2c", [0x69cf] = "\x02\x6d\x26", + [0x69d0] = "\x02\x6e\x69", [0x69d1] = "\x02\x6e\x6b", + [0x69d2] = "\x02\x6e\x65", [0x69d3] = "\x01\x7c\x2e", + [0x69d4] = "\x04\x6a\x25", [0x69d5] = "\x02\x6e\x72", + [0x69d6] = "\x02\x6e\x70", [0x69d7] = "\x01\x7c\x2f", + [0x69d8] = "\x02\x6e\x6f", [0x69d9] = "\x02\x6e\x6e", + [0x69da] = "\x02\x6e\x67", [0x69db] = "\x02\x6e\x64", + [0x69dc] = "\x02\x6e\x6a", [0x69dd] = "\x02\x6e\x73", + [0x69de] = "\x02\x6e\x66", [0x69df] = "\x02\x6e\x6c", + [0x69e0] = "\x05\x75\x45", [0x69e1] = "\x02\x6f\x77", + [0x69e2] = "\x02\x6f\x7c", [0x69e3] = "\x02\x6f\x72", + [0x69e4] = "\x02\x6f\x75", [0x69e5] = "\x01\x7c\x5a", + [0x69e6] = "\x02\x6f\x79", [0x69e7] = "\x04\x6b\x46", + [0x69e8] = "\x02\x70\x22", [0x69e9] = "\x02\x6e\x6d", + [0x69ea] = "\x04\x6b\x4a", [0x69eb] = "\x02\x6f\x73", + [0x69ec] = "\x02\x6f\x7d", [0x69ed] = "\x02\x70\x23", + [0x69ee] = "\x02\x6f\x78", [0x69ef] = "\x02\x6f\x71", + [0x69f0] = "\x02\x6f\x7b", [0x69f1] = "\x04\x6b\x4b", + [0x69f2] = "\x02\x6f\x7a", [0x69f3] = "\x02\x70\x21", + [0x69f4] = "\x02\x6f\x7e", [0x69f5] = "\x02\x6e\x71", + [0x69f6] = "\x02\x6f\x76", [0x69f7] = "\x02\x6f\x70", + [0x69f8] = "\x02\x6f\x74", [0x69f9] = "\x01\x7c\x79", + [0x69fa] = "\x01\x7c\x7a", [0x69fb] = "\x02\x6f\x6f", + [0x69fc] = "\x03\x60\x6c", [0x69fd] = "\x02\x70\x74", + [0x69fe] = "\x02\x70\x6b", [0x69ff] = "\x02\x70\x73", + [0x6a00] = "\x02\x70\x70", [0x6a01] = "\x02\x70\x71", + [0x6a02] = "\x02\x70\x6a", [0x6a03] = "\x02\x70\x6d", + [0x6a04] = "\x02\x70\x75", [0x6a05] = "\x02\x70\x6f", + [0x6a06] = "\x02\x70\x6e", [0x6a07] = "\x02\x70\x6c", + [0x6a08] = "\x03\x61\x35", [0x6a09] = "\x02\x70\x72", + [0x6a0a] = "\x04\x6c\x56", [0x6a0b] = "\x02\x71\x4c", + [0x6a0c] = "\x04\x6d\x3a", [0x6a0d] = "\x02\x71\x4d", + [0x6a0e] = "\x03\x61\x5d", [0x6a0f] = "\x02\x71\x4f", + [0x6a10] = "\x02\x71\x4e", [0x6a11] = "\x02\x71\x51", + [0x6a12] = "\x02\x71\x50", [0x6a13] = "\x02\x71\x6c", + [0x6a14] = "\x02\x71\x6b", [0x6a15] = "\x02\x72\x27", + [0x6a16] = "\x03\x62\x29", [0x6a17] = "\x02\x72\x28", + [0x6a18] = "\x03\x62\x30", [0x6a19] = "\x02\x72\x34", + [0x6a1a] = "\x01\x7d\x45", [0x6a1b] = "\x01\x7d\x49", + [0x6a1c] = "\x03\x62\x38", [0x6a1d] = "\x02\x72\x3d", + [0x6a1e] = "\x01\x7d\x4a", [0x6a75] = "\x01\x5e\x25", + [0x6a76] = "\x04\x4f\x48", [0x6a77] = "\x05\x5a\x5b", + [0x6a79] = "\x01\x7a\x5b", [0x6a7a] = "\x02\x6d\x37", + [0x6a7b] = "\x03\x5f\x37", [0x6a7c] = "\x01\x7c\x7b", + [0x6a7d] = "\x01\x7c\x7c", [0x6a7f] = "\x01\x5e\x26", + [0x6a80] = "\x02\x48\x74", [0x6a81] = "\x03\x45\x69", + [0x6a82] = "\x01\x67\x6e", [0x6a83] = "\x02\x56\x3b", + [0x6a84] = "\x03\x50\x2c", [0x6a85] = "\x03\x54\x39", + [0x6a86] = "\x02\x5c\x3c", [0x6a87] = "\x02\x5c\x3d", + [0x6a88] = "\x02\x5c\x3b", [0x6a89] = "\x02\x61\x37", + [0x6a8a] = "\x02\x61\x36", [0x6a8b] = "\x01\x76\x33", + [0x6a8c] = "\x02\x65\x2b", [0x6a8d] = "\x02\x61\x38", + [0x6a8e] = "\x02\x65\x2a", [0x6a8f] = "\x04\x5f\x3a", + [0x6a90] = "\x03\x5a\x24", [0x6a91] = "\x02\x68\x60", + [0x6a92] = "\x01\x79\x5d", [0x6a93] = "\x01\x79\x5f", + [0x6a94] = "\x02\x68\x5f", [0x6a95] = "\x03\x5c\x29", + [0x6a96] = "\x04\x62\x75", [0x6a97] = "\x01\x79\x5e", + [0x6a98] = "\x03\x5e\x21", [0x6a99] = "\x02\x6b\x3f", + [0x6a9a] = "\x02\x6b\x41", [0x6a9b] = "\x02\x6b\x40", + [0x6a9c] = "\x02\x6d\x38", [0x6a9d] = "\x01\x7b\x51", + [0x6a9e] = "\x03\x5f\x3a", [0x6a9f] = "\x01\x7c\x5b", + [0x6aa0] = "\x02\x70\x76", [0x6aa1] = "\x02\x71\x52", + [0x6aa2] = "\x03\x62\x31", [0x6aa3] = "\x03\x62\x3f", + [0x6aa4] = "\x02\x72\x41", [0x6aa5] = "\x01\x5e\x27", + [0x6aa6] = "\x03\x25\x47", [0x6aa7] = "\x02\x4f\x4d", + [0x6aa8] = "\x04\x4f\x4c", [0x6aa9] = "\x01\x70\x2b", + [0x6aaa] = "\x03\x50\x2f", [0x6aab] = "\x03\x50\x2e", + [0x6aac] = "\x03\x54\x3a", [0x6aad] = "\x02\x5c\x3f", + [0x6aae] = "\x02\x5c\x3e", [0x6aaf] = "\x03\x57\x50", + [0x6ab0] = "\x02\x61\x39", [0x6ab1] = "\x03\x5a\x26", + [0x6ab2] = "\x03\x5a\x25", [0x6ab3] = "\x04\x62\x7e", + [0x6ab4] = "\x01\x79\x60", [0x6ab5] = "\x01\x7a\x5c", + [0x6ab6] = "\x02\x6e\x74", [0x6ab7] = "\x02\x72\x39", + [0x6abb] = "\x01\x5e\x28", [0x6abc] = "\x01\x6b\x7b", + [0x6abd] = "\x03\x4b\x22", [0x6abe] = "\x01\x70\x2c", + [0x6abf] = "\x0f\x61\x7c", [0x6ac0] = "\x02\x68\x61", + [0x6ac1] = "\x03\x5e\x22", [0x6ac2] = "\x02\x70\x24", + [0x6ac3] = "\x01\x63\x27", [0x6ac4] = "\x03\x39\x6a", + [0x6ac5] = "\x03\x54\x3c", [0x6ac6] = "\x03\x54\x3b", + [0x6ac7] = "\x04\x5a\x5d", [0x6ac8] = "\x02\x61\x3a", + [0x6aca] = "\x03\x5a\x28", [0x6acb] = "\x04\x5f\x3e", + [0x6acc] = "\x01\x7d\x31", [0x6acd] = "\x01\x63\x28", + [0x6ace] = "\x01\x70\x2d", [0x6acf] = "\x01\x76\x34", + [0x6ad0] = "\x02\x70\x25", [0x6ad1] = "\x01\x63\x29", + [0x6ad2] = "\x03\x39\x6b", [0x6ad3] = "\x02\x56\x3c", + [0x6ad4] = "\x01\x73\x3d", [0x6ad5] = "\x02\x5c\x40", + [0x6ad6] = "\x02\x5c\x41", [0x6ad7] = "\x03\x54\x3d", + [0x6ad8] = "\x01\x73\x3c", [0x6ad9] = "\x04\x55\x60", + [0x6ada] = "\x02\x61\x3b", [0x6adb] = "\x01\x76\x38", + [0x6adc] = "\x01\x76\x36", [0x6add] = "\x01\x76\x37", + [0x6ade] = "\x01\x76\x35", [0x6adf] = "\x02\x65\x2c", + [0x6ae0] = "\x01\x78\x28", [0x6ae2] = "\x04\x63\x24", + [0x6ae3] = "\x03\x5c\x2a", [0x6ae4] = "\x02\x6b\x43", + [0x6ae5] = "\x02\x6b\x42", [0x6ae6] = "\x02\x6b\x45", + [0x6ae7] = "\x02\x6b\x44", [0x6ae8] = "\x01\x7a\x5d", + [0x6aeb] = "\x02\x6d\x39", [0x6aec] = "\x04\x68\x56", + [0x6aed] = "\x02\x6d\x3b", [0x6aee] = "\x02\x6d\x3a", + [0x6aef] = "\x01\x7b\x52", [0x6af0] = "\x02\x6e\x75", + [0x6af1] = "\x03\x60\x29", [0x6af2] = "\x02\x70\x26", + [0x6af3] = "\x02\x70\x27", [0x6af4] = "\x01\x7c\x5c", + [0x6af5] = "\x02\x71\x53", [0x6af6] = "\x02\x71\x6d", + [0x6af7] = "\x01\x7d\x42", [0x6af8] = "\x04\x6e\x43", + [0x6af9] = "\x02\x41\x55", [0x6afa] = "\x02\x5c\x42", + [0x6afb] = "\x02\x61\x3c", [0x6afc] = "\x02\x68\x62", + [0x6afd] = "\x02\x48\x75", [0x6afe] = "\x03\x27\x72", + [0x6aff] = "\x02\x61\x3d", [0x6b00] = "\x02\x65\x2e", + [0x6b01] = "\x02\x65\x2d", [0x6b02] = "\x03\x5a\x29", + [0x6b03] = "\x03\x5c\x2d", [0x6b04] = "\x03\x5c\x2e", + [0x6b05] = "\x03\x5f\x3c", [0x6b06] = "\x02\x70\x28", + [0x6b07] = "\x01\x7c\x7d", [0x6b08] = "\x03\x61\x5f", + [0x6b09] = "\x02\x71\x54", [0x6b0a] = "\x02\x71\x6e", + [0x6b0e] = "\x01\x67\x6f", [0x6b0f] = "\x02\x56\x3d", + [0x6b10] = "\x02\x56\x3e", [0x6b11] = "\x04\x4f\x56", + [0x6b12] = "\x02\x5c\x43", [0x6b13] = "\x01\x67\x70", + [0x6b14] = "\x03\x45\x6a", [0x6b15] = "\x01\x78\x29", + [0x6b16] = "\x02\x65\x2f", [0x6b17] = "\x03\x5c\x30", + [0x6b18] = "\x02\x6d\x3d", [0x6b19] = "\x01\x7b\x53", + [0x6b1a] = "\x02\x6d\x3e", [0x6b1b] = "\x02\x6d\x3c", + [0x6b1c] = "\x02\x70\x29", [0x6b1d] = "\x03\x61\x60", + [0x6b1e] = "\x02\x70\x77", [0x6b1f] = "\x04\x6d\x48", + [0x6b20] = "\x01\x67\x71", [0x6b22] = "\x02\x61\x40", + [0x6b23] = "\x02\x61\x3f", [0x6b24] = "\x02\x61\x3e", + [0x6b25] = "\x02\x65\x30", [0x6b26] = "\x03\x5a\x2b", + [0x6b27] = "\x03\x5a\x2a", [0x6b28] = "\x02\x65\x34", + [0x6b29] = "\x02\x65\x33", [0x6b2a] = "\x02\x65\x32", + [0x6b2b] = "\x02\x65\x31", [0x6b2c] = "\x01\x78\x2a", + [0x6b2d] = "\x02\x68\x63", [0x6b2e] = "\x02\x6b\x47", + [0x6b2f] = "\x01\x7a\x5e", [0x6b30] = "\x02\x6b\x46", + [0x6b31] = "\x02\x6d\x3f", [0x6b32] = "\x02\x6e\x78", + [0x6b33] = "\x02\x6e\x77", [0x6b34] = "\x01\x7c\x30", + [0x6b35] = "\x02\x6e\x76", [0x6b36] = "\x02\x70\x2c", + [0x6b37] = "\x02\x70\x2b", [0x6b38] = "\x02\x70\x2a", + [0x6b39] = "\x03\x60\x6d", [0x6b3a] = "\x04\x6e\x44", + [0x6b3b] = "\x01\x6b\x7c", [0x6b3c] = "\x04\x55\x63", + [0x6b3d] = "\x02\x5c\x44", [0x6b3e] = "\x01\x76\x39", + [0x6b3f] = "\x04\x5a\x64", [0x6b40] = "\x02\x68\x64", + [0x6b41] = "\x02\x68\x65", [0x6b42] = "\x02\x6e\x79", + [0x6b43] = "\x02\x70\x2d", [0x6b44] = "\x04\x6b\x5c", + [0x6b45] = "\x03\x61\x3b", [0x6b46] = "\x02\x70\x78", + [0x6b47] = "\x02\x71\x55", [0x6b48] = "\x02\x72\x29", + [0x6b49] = "\x02\x72\x43", [0x6b4a] = "\x01\x6b\x7d", + [0x6b4b] = "\x01\x76\x3a", [0x6b4c] = "\x02\x65\x35", + [0x6b4d] = "\x02\x68\x66", [0x6b4e] = "\x02\x6d\x40", + [0x6b4f] = "\x02\x70\x2e", [0x6b50] = "\x03\x23\x70", + [0x6b52] = "\x01\x70\x2f", [0x6b53] = "\x03\x54\x3e", + [0x6b54] = "\x02\x61\x41", [0x6b55] = "\x02\x65\x36", + [0x6b56] = "\x02\x68\x67", [0x6b57] = "\x02\x68\x68", + [0x6b58] = "\x02\x68\x69", [0x6b59] = "\x02\x6b\x4c", + [0x6b5a] = "\x03\x5e\x24", [0x6b5b] = "\x02\x6b\x48", + [0x6b5c] = "\x01\x7b\x54", [0x6b5d] = "\x02\x6b\x4b", + [0x6b5e] = "\x02\x6b\x4a", [0x6b5f] = "\x01\x7a\x5f", + [0x6b60] = "\x02\x6b\x49", [0x6b61] = "\x01\x7a\x61", + [0x6b63] = "\x01\x7a\x60", [0x6b64] = "\x02\x6d\x42", + [0x6b65] = "\x02\x6d\x41", [0x6b66] = "\x01\x7b\x55", + [0x6b67] = "\x01\x7b\x56", [0x6b68] = "\x04\x68\x60", + [0x6b69] = "\x03\x5f\x3e", [0x6b6a] = "\x01\x7c\x32", + [0x6b6b] = "\x02\x6e\x7a", [0x6b6c] = "\x01\x7c\x31", + [0x6b6d] = "\x04\x6b\x61", [0x6b6e] = "\x02\x70\x31", + [0x6b6f] = "\x02\x70\x32", [0x6b70] = "\x02\x70\x30", + [0x6b71] = "\x02\x70\x2f", [0x6b72] = "\x01\x7d\x21", + [0x6b73] = "\x04\x6c\x64", [0x6b74] = "\x02\x70\x79", + [0x6b75] = "\x02\x70\x7a", [0x6b76] = "\x02\x70\x7b", + [0x6b77] = "\x01\x7c\x7e", [0x6b78] = "\x02\x71\x56", + [0x6b79] = "\x02\x71\x59", [0x6b7a] = "\x02\x71\x58", + [0x6b7b] = "\x02\x71\x57", [0x6b7c] = "\x03\x62\x33", + [0x6b7d] = "\x04\x6e\x45", [0x6b7e] = "\x02\x72\x42", + [0x6b8d] = "\x01\x73\x3e", [0x6b8e] = "\x03\x57\x55", + [0x6b8f] = "\x04\x63\x2d", [0x6b90] = "\x01\x78\x32", + [0x6b91] = "\x02\x6b\x4d", [0x6b92] = "\x02\x6d\x43", + [0x6b93] = "\x03\x60\x2b", [0x6b94] = "\x01\x7c\x33", + [0x6b95] = "\x02\x6e\x7b", [0x6b96] = "\x04\x6e\x55", + [0x6b97] = "\x03\x62\x42", [0x6b98] = "\x02\x72\x44", + [0x6b99] = "\x0f\x21\x59", [0x6b9c] = "\x01\x73\x3f", + [0x6b9d] = "\x03\x5e\x47", [0x6b9e] = "\x04\x6e\x33", + [0x6ba0] = "\x02\x61\x42", [0x6ba1] = "\x03\x5f\x3f", + [0x6ba2] = "\x02\x6e\x7c", [0x6ba3] = "\x03\x61\x61", + [0x6ba4] = "\x02\x71\x6f", [0x6ba5] = "\x03\x61\x77", +}; + +/* CJK Ideographs in the UCS plane 2: range U+20000..U+2A6D6. + The table can be created using - egrep '^0x' .../mappings/eastasia/other/cns11643.txt | - awk '{ print $2, $1 }' | sort | egrep '^0x[4-9]' | perl tab.pl + egrep '^0x' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | egrep '^0x2.... ' | perl tab.pl where tab.pl is @@ -3057,8642 +24649,15101 @@ const uint16_t __cns11643l14_to_ucs4_tab[] = local($c)=hex($cns); printf ("\n ") if ($n % 2 == 0); ++$n; - printf (" [0x%04x] = \"\\x%02x\\x%02x\\x%02x\",", $u - 0x4e00, - $c < 0x10000 ? 0 : int($c/0x10000), - $c < 0x100 ? $c : int(($c&0xff00)/256), $c < 0x100 ? 0 : $c&255); + printf (" [0x%04x] = \"\\x%02x\\x%02x\\x%02x\",", $u - 0x20000, + int($c/0x10000), int(($c&0xff00)/256), $c&255); } printf ("\n"); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -const char __cns11643_from_ucs4_tab[][3] = +const char __cns11643_from_ucs4p2_tab[][3] = { - [0x0000] = "\x01\x44\x21", [0x0001] = "\x01\x44\x23", - [0x0003] = "\x01\x44\x24", [0x0004] = "\x0e\x21\x26", - [0x0005] = "\x0e\x21\x25", [0x0007] = "\x02\x21\x26", - [0x0008] = "\x01\x44\x37", [0x0009] = "\x01\x44\x35", - [0x000a] = "\x01\x44\x38", [0x000b] = "\x01\x44\x36", - [0x000c] = "\x02\x21\x27", [0x000d] = "\x01\x44\x62", - [0x000e] = "\x02\x21\x2f", [0x000f] = "\x02\x21\x2d", - [0x0010] = "\x01\x44\x61", [0x0011] = "\x01\x44\x60", - [0x0014] = "\x01\x45\x62", [0x0015] = "\x01\x45\x61", - [0x0016] = "\x01\x45\x60", [0x0018] = "\x01\x45\x63", - [0x0019] = "\x01\x45\x5f", [0x001e] = "\x01\x47\x22", - [0x001f] = "\x01\x47\x23", [0x0020] = "\x0e\x22\x62", - [0x0021] = "\x0e\x22\x61", [0x0022] = "\x0e\x22\x63", - [0x0024] = "\x0e\x24\x3f", [0x0026] = "\x01\x4b\x64", - [0x0028] = "\x0e\x21\x21", [0x002a] = "\x0e\x21\x2c", - [0x002b] = "\x01\x44\x39", [0x002d] = "\x01\x44\x63", - [0x002e] = "\x02\x21\x30", [0x0030] = "\x01\x44\x64", - [0x0031] = "\x02\x21\x43", [0x0032] = "\x01\x48\x6b", - [0x0033] = "\x02\x25\x31", [0x0036] = "\x0e\x21\x22", - [0x0038] = "\x01\x44\x3a", [0x0039] = "\x01\x44\x65", - [0x003b] = "\x01\x45\x64", [0x003c] = "\x02\x21\x44", - [0x003d] = "\x0e\x27\x40", [0x003f] = "\x0e\x21\x23", - [0x0042] = "\x02\x21\x21", [0x0043] = "\x01\x44\x25", - [0x0045] = "\x01\x44\x3c", [0x0046] = "\x0e\x21\x30", - [0x0047] = "\x02\x21\x28", [0x0048] = "\x01\x44\x3d", - [0x0049] = "\x0e\x21\x2e", [0x004b] = "\x01\x44\x66", - [0x004d] = "\x01\x45\x65", [0x004e] = "\x01\x45\x67", - [0x004f] = "\x01\x45\x66", [0x0052] = "\x01\x47\x24", - [0x0053] = "\x01\x47\x25", [0x0054] = "\x0e\x23\x45", - [0x0056] = "\x01\x4b\x65", [0x0057] = "\x0e\x2b\x22", - [0x0058] = "\x01\x53\x7d", [0x0059] = "\x01\x44\x22", - [0x005c] = "\x02\x21\x22", [0x005d] = "\x01\x44\x26", - [0x005e] = "\x01\x44\x3f", [0x005f] = "\x01\x44\x3e", - [0x0062] = "\x0e\x21\x46", [0x0063] = "\x0e\x21\x45", - [0x0068] = "\x0e\x22\x64", [0x0069] = "\x01\x47\x26", - [0x0071] = "\x0e\x24\x40", [0x0073] = "\x01\x4b\x66", - [0x0079] = "\x0e\x2b\x23", [0x007e] = "\x01\x58\x71", - [0x007f] = "\x02\x33\x4e", [0x0080] = "\x0e\x39\x6c", - [0x0081] = "\x0e\x39\x6e", [0x0082] = "\x01\x63\x2a", - [0x0083] = "\x02\x41\x56", [0x0084] = "\x02\x41\x57", - [0x0085] = "\x0e\x21\x24", [0x0086] = "\x01\x44\x27", - [0x0087] = "\x0e\x21\x2d", [0x0088] = "\x01\x44\x68", - [0x0089] = "\x0e\x22\x65", [0x008b] = "\x01\x4b\x67", - [0x008c] = "\x01\x44\x28", [0x008d] = "\x02\x21\x29", - [0x008e] = "\x01\x44\x40", [0x008f] = "\x0e\x21\x31", - [0x0091] = "\x01\x44\x69", [0x0092] = "\x01\x44\x6b", - [0x0093] = "\x02\x21\x31", [0x0094] = "\x01\x44\x6c", - [0x0095] = "\x01\x44\x6a", [0x0097] = "\x0e\x21\x6c", - [0x0098] = "\x0e\x22\x66", [0x0099] = "\x01\x47\x27", - [0x009b] = "\x01\x4b\x68", [0x009c] = "\x0e\x24\x42", - [0x009d] = "\x0e\x27\x42", [0x009e] = "\x01\x4b\x69", - [0x009f] = "\x01\x4f\x67", [0x00a1] = "\x01\x44\x41", - [0x00a2] = "\x01\x44\x6d", [0x00a3] = "\x0e\x21\x47", - [0x00a4] = "\x01\x47\x28", [0x00a5] = "\x01\x47\x2a", - [0x00a6] = "\x01\x47\x29", [0x00a8] = "\x01\x48\x6c", - [0x00ab] = "\x01\x4b\x6a", [0x00ac] = "\x01\x4b\x6b", - [0x00ad] = "\x01\x4f\x68", [0x00ae] = "\x01\x4f\x69", - [0x00af] = "\x0e\x2b\x26", [0x00b0] = "\x0e\x2b\x25", - [0x00b1] = "\x0e\x2b\x27", [0x00b2] = "\x0e\x2b\x24", - [0x00b3] = "\x01\x53\x7e", [0x00b6] = "\x02\x41\x58", - [0x00b7] = "\x0e\x40\x33", [0x00b9] = "\x02\x6d\x44", - [0x00ba] = "\x01\x44\x29", [0x00bc] = "\x0e\x21\x32", - [0x00be] = "\x0e\x21\x33", [0x00c0] = "\x01\x44\x6f", - [0x00c1] = "\x01\x44\x6e", [0x00c2] = "\x02\x21\x32", - [0x00c3] = "\x01\x44\x70", [0x00c4] = "\x01\x44\x76", - [0x00c5] = "\x0e\x21\x49", [0x00c6] = "\x01\x44\x71", - [0x00c7] = "\x01\x44\x72", [0x00c8] = "\x02\x21\x34", - [0x00c9] = "\x02\x21\x33", [0x00ca] = "\x01\x44\x74", - [0x00cb] = "\x01\x44\x75", [0x00cc] = "\x0e\x21\x4c", - [0x00cd] = "\x01\x44\x73", [0x00ce] = "\x0e\x21\x4b", - [0x00cf] = "\x0e\x21\x4a", [0x00d4] = "\x01\x45\x6a", - [0x00d5] = "\x01\x45\x6b", [0x00d6] = "\x01\x45\x6c", - [0x00d7] = "\x01\x45\x6d", [0x00d8] = "\x01\x45\x69", - [0x00d9] = "\x01\x45\x70", [0x00da] = "\x02\x21\x4a", - [0x00dc] = "\x02\x21\x46", [0x00dd] = "\x02\x21\x49", - [0x00de] = "\x01\x45\x71", [0x00df] = "\x01\x46\x23", - [0x00e0] = "\x0e\x21\x6d", [0x00e1] = "\x02\x21\x48", - [0x00e3] = "\x01\x45\x6e", [0x00e4] = "\x01\x45\x6f", - [0x00e5] = "\x01\x45\x68", [0x00e6] = "\x0e\x21\x72", - [0x00e7] = "\x0e\x21\x70", [0x00e8] = "\x02\x21\x45", - [0x00e9] = "\x02\x21\x47", [0x00ee] = "\x0e\x22\x6f", - [0x00ef] = "\x0e\x22\x68", [0x00f0] = "\x01\x47\x37", - [0x00f1] = "\x02\x21\x6f", [0x00f2] = "\x01\x47\x34", - [0x00f3] = "\x01\x47\x38", [0x00f4] = "\x02\x21\x79", - [0x00f5] = "\x02\x21\x6d", [0x00f6] = "\x01\x47\x35", - [0x00f7] = "\x02\x21\x71", [0x00f8] = "\x0e\x22\x6b", - [0x00f9] = "\x0e\x22\x67", [0x00fa] = "\x0e\x22\x76", - [0x00fb] = "\x01\x47\x36", [0x00fc] = "\x0e\x22\x6e", - [0x00fd] = "\x01\x47\x39", [0x00ff] = "\x01\x47\x2b", - [0x0100] = "\x02\x21\x70", [0x0101] = "\x01\x47\x3a", - [0x0102] = "\x02\x21\x74", [0x0103] = "\x0e\x22\x6d", - [0x0104] = "\x02\x21\x78", [0x0105] = "\x02\x21\x75", - [0x0106] = "\x0e\x22\x6c", [0x0107] = "\x0e\x22\x74", - [0x0108] = "\x02\x21\x72", [0x0109] = "\x01\x47\x2c", - [0x010a] = "\x01\x47\x2e", [0x010b] = "\x01\x47\x3b", - [0x010d] = "\x01\x47\x30", [0x010e] = "\x02\x21\x6a", - [0x010f] = "\x01\x47\x33", [0x0110] = "\x01\x47\x31", - [0x0111] = "\x01\x47\x32", [0x0112] = "\x02\x21\x7a", - [0x0113] = "\x02\x21\x77", [0x0114] = "\x02\x21\x6e", - [0x0115] = "\x01\x47\x2f", [0x0116] = "\x0e\x22\x70", - [0x0117] = "\x0e\x22\x77", [0x0118] = "\x02\x21\x6b", - [0x0119] = "\x01\x47\x2d", [0x011a] = "\x0e\x22\x75", - [0x011c] = "\x0e\x22\x73", [0x011d] = "\x02\x21\x73", - [0x0122] = "\x02\x21\x76", [0x0128] = "\x0e\x22\x72", - [0x012c] = "\x02\x21\x6c", [0x012d] = "\x02\x23\x28", - [0x012f] = "\x01\x49\x24", [0x0130] = "\x01\x48\x75", - [0x0131] = "\x0e\x24\x50", [0x0132] = "\x0e\x24\x48", - [0x0133] = "\x02\x23\x29", [0x0134] = "\x01\x48\x72", - [0x0135] = "\x0e\x24\x4f", [0x0136] = "\x01\x49\x26", - [0x0137] = "\x0e\x24\x46", [0x0138] = "\x01\x48\x7a", - [0x0139] = "\x0e\x24\x45", [0x013a] = "\x01\x48\x79", - [0x013b] = "\x02\x22\x7b", [0x013c] = "\x01\x48\x7d", - [0x013d] = "\x01\x48\x78", [0x013e] = "\x02\x23\x22", - [0x013f] = "\x02\x23\x2a", [0x0140] = "\x0e\x24\x4e", - [0x0141] = "\x02\x23\x26", [0x0142] = "\x0e\x24\x49", - [0x0143] = "\x01\x48\x7b", [0x0144] = "\x0e\x24\x4b", - [0x0145] = "\x0e\x24\x43", [0x0146] = "\x01\x48\x7e", - [0x0147] = "\x01\x48\x6f", [0x0148] = "\x01\x49\x29", - [0x0149] = "\x02\x22\x7d", [0x014a] = "\x0e\x24\x44", - [0x014b] = "\x0e\x24\x4c", [0x014c] = "\x02\x25\x3d", - [0x014d] = "\x01\x48\x6d", [0x014e] = "\x01\x49\x25", - [0x014f] = "\x01\x48\x6e", [0x0150] = "\x01\x48\x76", - [0x0151] = "\x01\x48\x77", [0x0152] = "\x02\x23\x24", - [0x0153] = "\x02\x22\x7e", [0x0154] = "\x01\x48\x7c", - [0x0155] = "\x01\x48\x74", [0x0156] = "\x02\x22\x7a", - [0x0157] = "\x01\x48\x70", [0x0158] = "\x02\x23\x27", - [0x0159] = "\x01\x49\x27", [0x015a] = "\x01\x49\x2a", - [0x015b] = "\x01\x48\x73", [0x015c] = "\x01\x49\x22", - [0x015d] = "\x01\x49\x28", [0x015e] = "\x01\x48\x71", - [0x015f] = "\x02\x23\x25", [0x0160] = "\x01\x49\x23", - [0x0161] = "\x02\x23\x2b", [0x0162] = "\x02\x22\x7c", - [0x0163] = "\x01\x49\x21", [0x0164] = "\x02\x23\x21", - [0x0166] = "\x0e\x64\x48", [0x0167] = "\x02\x23\x23", - [0x0168] = "\x0e\x64\x49", [0x0169] = "\x01\x4b\x79", - [0x016a] = "\x02\x25\x3f", [0x016b] = "\x02\x25\x4b", - [0x016c] = "\x01\x4b\x71", [0x016d] = "\x0e\x27\x47", - [0x016e] = "\x02\x25\x4c", [0x016f] = "\x01\x4b\x6c", - [0x0170] = "\x01\x4b\x76", [0x0172] = "\x0e\x27\x4f", - [0x0173] = "\x01\x4b\x6f", [0x0174] = "\x02\x25\x39", - [0x0175] = "\x01\x4b\x77", [0x0176] = "\x02\x25\x38", - [0x0177] = "\x02\x25\x3c", [0x0178] = "\x02\x25\x43", - [0x0179] = "\x02\x25\x41", [0x017a] = "\x01\x4c\x21", - [0x017b] = "\x01\x4b\x7a", [0x017c] = "\x02\x25\x33", - [0x017d] = "\x02\x25\x35", [0x017e] = "\x01\x4b\x7c", - [0x017f] = "\x01\x4b\x70", [0x0180] = "\x02\x25\x36", - [0x0181] = "\x02\x25\x42", [0x0182] = "\x02\x25\x49", - [0x0183] = "\x01\x4b\x75", [0x0184] = "\x02\x25\x3b", - [0x0185] = "\x02\x25\x34", [0x0186] = "\x01\x4b\x74", - [0x0187] = "\x02\x25\x37", [0x0188] = "\x01\x4b\x78", - [0x0189] = "\x02\x25\x3a", [0x018a] = "\x0e\x27\x44", - [0x018b] = "\x01\x4b\x73", [0x018c] = "\x0e\x27\x51", - [0x018d] = "\x01\x4b\x6e", [0x018e] = "\x0e\x27\x48", - [0x018f] = "\x01\x4b\x7d", [0x0190] = "\x02\x25\x44", - [0x0191] = "\x01\x4b\x7e", [0x0192] = "\x02\x25\x48", - [0x0193] = "\x0e\x27\x43", [0x0194] = "\x02\x25\x46", - [0x0195] = "\x02\x25\x4a", [0x0196] = "\x01\x4b\x7b", - [0x0197] = "\x02\x25\x3e", [0x0198] = "\x02\x25\x32", - [0x019a] = "\x02\x25\x40", [0x019b] = "\x01\x4b\x72", - [0x019c] = "\x02\x25\x45", [0x019d] = "\x01\x4b\x6d", - [0x019e] = "\x02\x25\x47", [0x019f] = "\x0e\x27\x4c", - [0x01a0] = "\x0e\x27\x49", [0x01a1] = "\x0e\x27\x4b", - [0x01a2] = "\x0e\x27\x4a", [0x01a3] = "\x0e\x27\x4d", - [0x01ae] = "\x01\x4f\x78", [0x01af] = "\x01\x4f\x6c", - [0x01b0] = "\x0e\x2b\x2d", [0x01b1] = "\x0e\x2b\x2e", - [0x01b2] = "\x02\x29\x22", [0x01b3] = "\x02\x29\x2a", - [0x01b4] = "\x0e\x2b\x36", [0x01b5] = "\x01\x4f\x6b", - [0x01b6] = "\x01\x4f\x73", [0x01b7] = "\x01\x50\x21", - [0x01b8] = "\x0e\x2b\x2c", [0x01b9] = "\x02\x29\x30", - [0x01ba] = "\x02\x29\x2e", [0x01bb] = "\x02\x29\x29", - [0x01bd] = "\x0e\x62\x63", [0x01be] = "\x0e\x2b\x2b", - [0x01bf] = "\x01\x4f\x6d", [0x01c0] = "\x02\x29\x2f", - [0x01c1] = "\x02\x29\x25", [0x01c2] = "\x01\x4f\x7b", - [0x01c3] = "\x01\x4f\x72", [0x01c4] = "\x01\x4f\x7a", - [0x01c5] = "\x02\x28\x7e", [0x01c6] = "\x0e\x2b\x32", - [0x01c7] = "\x02\x29\x2c", [0x01c8] = "\x0e\x2b\x2f", - [0x01c9] = "\x02\x29\x23", [0x01ca] = "\x01\x4f\x76", - [0x01cb] = "\x02\x29\x24", [0x01cc] = "\x0e\x2b\x33", - [0x01cd] = "\x02\x28\x7d", [0x01ce] = "\x01\x4f\x7d", - [0x01cf] = "\x01\x4f\x70", [0x01d0] = "\x01\x4f\x79", - [0x01d1] = "\x01\x4f\x6f", [0x01d2] = "\x0e\x2b\x28", - [0x01d3] = "\x02\x29\x21", [0x01d4] = "\x02\x29\x26", - [0x01d5] = "\x0e\x2b\x29", [0x01d6] = "\x02\x29\x2d", - [0x01d7] = "\x01\x4f\x77", [0x01d8] = "\x01\x4f\x74", - [0x01d9] = "\x02\x29\x28", [0x01da] = "\x01\x4f\x7c", - [0x01db] = "\x02\x29\x2b", [0x01dc] = "\x02\x29\x27", - [0x01dd] = "\x01\x4f\x71", [0x01de] = "\x01\x4f\x7e", - [0x01df] = "\x01\x4f\x75", [0x01e0] = "\x01\x4f\x6e", - [0x01e1] = "\x01\x4f\x6a", [0x01e3] = "\x0e\x2b\x35", - [0x01e5] = "\x0e\x2b\x34", [0x01e7] = "\x0e\x64\x4a", - [0x01ec] = "\x02\x29\x31", [0x01ee] = "\x01\x54\x3a", - [0x01ef] = "\x01\x54\x24", [0x01f0] = "\x0e\x2f\x48", - [0x01f1] = "\x01\x54\x34", [0x01f2] = "\x0e\x2f\x4d", - [0x01f3] = "\x01\x54\x39", [0x01f4] = "\x02\x2d\x71", - [0x01f5] = "\x02\x2d\x70", [0x01f6] = "\x02\x2d\x75", - [0x01f7] = "\x02\x2d\x76", [0x01f8] = "\x01\x54\x27", - [0x01f9] = "\x0e\x2f\x44", [0x01fa] = "\x01\x54\x30", - [0x01fb] = "\x0e\x2f\x58", [0x01fc] = "\x0e\x2f\x4c", - [0x01fd] = "\x0e\x2f\x56", [0x01fe] = "\x01\x54\x3d", - [0x01ff] = "\x0e\x2f\x46", [0x0200] = "\x01\x54\x31", - [0x0202] = "\x0e\x2f\x4b", [0x0203] = "\x0e\x2f\x49", - [0x0204] = "\x0e\x2f\x47", [0x0205] = "\x02\x2d\x6a", - [0x0206] = "\x01\x54\x2a", [0x0207] = "\x02\x2d\x6b", - [0x0208] = "\x0e\x2f\x4f", [0x0209] = "\x01\x54\x3f", - [0x020b] = "\x01\x54\x36", [0x020c] = "\x01\x54\x21", - [0x020d] = "\x01\x54\x22", [0x020e] = "\x02\x2d\x7e", - [0x020f] = "\x01\x59\x24", [0x0210] = "\x0e\x2f\x53", - [0x0211] = "\x01\x54\x2f", [0x0212] = "\x01\x54\x2e", - [0x0213] = "\x02\x2d\x6c", [0x0214] = "\x01\x54\x32", - [0x0215] = "\x02\x33\x5e", [0x0216] = "\x01\x54\x29", - [0x0217] = "\x02\x2d\x77", [0x0218] = "\x01\x54\x38", - [0x0219] = "\x01\x54\x37", [0x021a] = "\x01\x54\x2d", - [0x021b] = "\x02\x2d\x6f", [0x021c] = "\x02\x2d\x78", - [0x021d] = "\x0e\x2f\x45", [0x021e] = "\x02\x2d\x69", - [0x021f] = "\x01\x54\x2c", [0x0220] = "\x02\x2d\x79", - [0x0221] = "\x01\x54\x35", [0x0222] = "\x02\x2d\x6d", - [0x0223] = "\x01\x54\x23", [0x0224] = "\x0e\x2f\x4e", - [0x0225] = "\x01\x54\x26", [0x0226] = "\x01\x54\x25", - [0x0227] = "\x02\x2d\x7a", [0x0228] = "\x01\x54\x33", - [0x0229] = "\x01\x54\x28", [0x022a] = "\x01\x54\x3c", - [0x022b] = "\x01\x54\x3e", [0x022c] = "\x02\x2d\x74", - [0x022d] = "\x01\x54\x3b", [0x022e] = "\x0e\x2f\x51", - [0x022f] = "\x02\x2d\x7c", [0x0230] = "\x02\x2d\x6e", - [0x0231] = "\x02\x2d\x7d", [0x0232] = "\x0e\x2f\x43", - [0x0233] = "\x02\x2d\x72", [0x0235] = "\x02\x2d\x7b", - [0x0236] = "\x0e\x2f\x50", [0x0237] = "\x02\x2d\x73", - [0x0238] = "\x0e\x2f\x54", [0x0239] = "\x0e\x2f\x55", - [0x023c] = "\x01\x54\x2b", [0x023f] = "\x0e\x64\x4b", - [0x0240] = "\x02\x33\x66", [0x0241] = "\x02\x33\x5a", - [0x0242] = "\x0e\x34\x3c", [0x0243] = "\x01\x58\x76", - [0x0244] = "\x0e\x34\x3f", [0x0245] = "\x02\x33\x5f", - [0x0246] = "\x02\x33\x65", [0x0247] = "\x01\x58\x75", - [0x0248] = "\x02\x33\x58", [0x0249] = "\x01\x58\x79", - [0x024a] = "\x02\x33\x5c", [0x024b] = "\x02\x33\x55", - [0x024c] = "\x01\x58\x77", [0x024d] = "\x02\x33\x59", - [0x024e] = "\x01\x58\x7c", [0x024f] = "\x01\x59\x23", - [0x0250] = "\x0e\x34\x44", [0x0251] = "\x02\x33\x6a", - [0x0252] = "\x0e\x34\x41", [0x0253] = "\x02\x33\x54", - [0x0254] = "\x0e\x34\x42", [0x0255] = "\x01\x58\x7d", - [0x0256] = "\x0e\x2f\x57", [0x0257] = "\x02\x33\x69", - [0x0258] = "\x0e\x34\x47", [0x0259] = "\x0e\x34\x3d", - [0x025a] = "\x01\x58\x78", [0x025b] = "\x02\x33\x5b", - [0x025c] = "\x01\x58\x74", [0x025d] = "\x02\x33\x56", - [0x025e] = "\x02\x33\x52", [0x025f] = "\x02\x33\x60", - [0x0260] = "\x02\x33\x53", [0x0261] = "\x02\x33\x51", - [0x0262] = "\x02\x33\x5d", [0x0263] = "\x02\x33\x63", - [0x0264] = "\x02\x33\x64", [0x0265] = "\x01\x58\x7a", - [0x0266] = "\x0e\x34\x40", [0x0268] = "\x02\x3a\x3f", - [0x0269] = "\x02\x33\x61", [0x026a] = "\x02\x33\x50", - [0x026b] = "\x02\x33\x62", [0x026c] = "\x0e\x34\x4b", - [0x026d] = "\x01\x59\x26", [0x026e] = "\x02\x33\x67", - [0x026f] = "\x01\x59\x25", [0x0270] = "\x02\x33\x4f", - [0x0271] = "\x0e\x34\x43", [0x0272] = "\x02\x33\x57", - [0x0273] = "\x02\x33\x68", [0x0274] = "\x01\x59\x21", - [0x0275] = "\x01\x58\x7e", [0x0276] = "\x01\x58\x7b", - [0x0277] = "\x01\x59\x22", [0x0278] = "\x0e\x34\x4c", - [0x0279] = "\x0e\x34\x4a", [0x027a] = "\x01\x58\x72", - [0x027b] = "\x0e\x34\x45", [0x027c] = "\x0e\x34\x46", - [0x027d] = "\x01\x58\x73", [0x0280] = "\x01\x5e\x2e", - [0x0281] = "\x0e\x39\x75", [0x0282] = "\x02\x3a\x42", - [0x0283] = "\x02\x3a\x3b", [0x0285] = "\x01\x5e\x2b", - [0x0287] = "\x02\x3a\x43", [0x0288] = "\x0e\x39\x71", - [0x0289] = "\x0e\x39\x72", [0x028b] = "\x02\x3a\x39", - [0x028c] = "\x02\x3a\x3c", [0x028d] = "\x01\x5e\x2a", - [0x028e] = "\x02\x3a\x3d", [0x028f] = "\x0e\x39\x6f", - [0x0291] = "\x01\x5e\x2d", [0x0292] = "\x02\x3a\x41", - [0x0294] = "\x02\x3a\x37", [0x0295] = "\x02\x3a\x36", - [0x0296] = "\x01\x5e\x2f", [0x0297] = "\x0e\x39\x70", - [0x0298] = "\x01\x5e\x30", [0x0299] = "\x01\x5e\x2c", - [0x029a] = "\x01\x5e\x31", [0x029b] = "\x02\x3a\x35", - [0x029c] = "\x02\x3a\x40", [0x029d] = "\x02\x3a\x3e", - [0x029e] = "\x02\x3a\x38", [0x02a2] = "\x01\x5e\x29", - [0x02a3] = "\x02\x3a\x3a", [0x02a6] = "\x0e\x64\x4d", - [0x02aa] = "\x0e\x40\x39", [0x02ab] = "\x0e\x40\x3c", - [0x02ac] = "\x01\x63\x31", [0x02ad] = "\x01\x63\x2b", - [0x02ae] = "\x02\x41\x5c", [0x02af] = "\x01\x63\x34", - [0x02b0] = "\x02\x41\x62", [0x02b1] = "\x02\x41\x65", - [0x02b2] = "\x01\x63\x2d", [0x02b3] = "\x01\x63\x2e", - [0x02b4] = "\x02\x41\x5f", [0x02b5] = "\x01\x63\x2c", - [0x02b6] = "\x02\x41\x68", [0x02b7] = "\x01\x63\x32", - [0x02b8] = "\x02\x41\x69", [0x02b9] = "\x0e\x40\x3a", - [0x02ba] = "\x02\x41\x64", [0x02bb] = "\x01\x63\x33", - [0x02bc] = "\x0e\x40\x37", [0x02bd] = "\x02\x41\x59", - [0x02be] = "\x01\x63\x30", [0x02bf] = "\x02\x41\x5a", - [0x02c1] = "\x02\x41\x63", [0x02c2] = "\x02\x41\x61", - [0x02c3] = "\x0e\x40\x3d", [0x02c4] = "\x02\x41\x5d", - [0x02c5] = "\x01\x63\x2f", [0x02c6] = "\x02\x41\x5b", - [0x02c7] = "\x01\x63\x35", [0x02c8] = "\x02\x41\x60", - [0x02c9] = "\x02\x41\x67", [0x02ca] = "\x02\x41\x5e", - [0x02cb] = "\x02\x41\x66", [0x02cc] = "\x0e\x40\x36", - [0x02cd] = "\x0e\x40\x3e", [0x02ce] = "\x01\x67\x7c", - [0x02cf] = "\x01\x67\x79", [0x02d0] = "\x0e\x45\x6b", - [0x02d1] = "\x01\x67\x7a", [0x02d2] = "\x0e\x63\x4c", - [0x02d3] = "\x02\x49\x21", [0x02d4] = "\x02\x48\x77", - [0x02d5] = "\x01\x67\x78", [0x02d6] = "\x01\x67\x75", - [0x02d7] = "\x02\x48\x78", [0x02d8] = "\x0e\x45\x6e", - [0x02d9] = "\x0e\x45\x6c", [0x02da] = "\x01\x67\x77", - [0x02db] = "\x02\x48\x7b", [0x02dc] = "\x0e\x45\x6d", - [0x02dd] = "\x02\x48\x7d", [0x02de] = "\x0e\x45\x76", - [0x02df] = "\x0e\x63\x4d", [0x02e0] = "\x02\x49\x26", - [0x02e1] = "\x0e\x45\x70", [0x02e2] = "\x0e\x45\x75", - [0x02e3] = "\x02\x49\x25", [0x02e4] = "\x02\x48\x7e", - [0x02e5] = "\x01\x67\x74", [0x02e6] = "\x02\x48\x76", - [0x02e7] = "\x01\x67\x72", [0x02e8] = "\x02\x48\x79", - [0x02e9] = "\x01\x67\x7d", [0x02ea] = "\x02\x48\x7c", - [0x02eb] = "\x0e\x45\x71", [0x02ec] = "\x02\x49\x22", - [0x02ed] = "\x01\x67\x76", [0x02ee] = "\x01\x67\x73", - [0x02ef] = "\x02\x49\x24", [0x02f0] = "\x02\x49\x23", - [0x02f1] = "\x01\x67\x7b", [0x02f3] = "\x02\x48\x7a", - [0x02f4] = "\x0e\x45\x74", [0x02f5] = "\x01\x6c\x23", - [0x02f6] = "\x02\x4f\x54", [0x02f7] = "\x0e\x4b\x29", - [0x02f8] = "\x02\x4f\x51", [0x02f9] = "\x01\x6c\x24", - [0x02fb] = "\x01\x6c\x22", [0x02fc] = "\x0e\x4b\x2b", - [0x02fd] = "\x02\x4f\x58", [0x02fe] = "\x02\x4f\x55", - [0x02ff] = "\x02\x4f\x4e", [0x0300] = "\x01\x6c\x21", - [0x0301] = "\x0e\x4b\x2d", [0x0302] = "\x01\x6c\x25", - [0x0303] = "\x02\x4f\x4f", [0x0304] = "\x01\x6b\x7e", - [0x0305] = "\x01\x6c\x28", [0x0306] = "\x02\x4f\x52", - [0x0307] = "\x02\x4f\x53", [0x0308] = "\x01\x6c\x26", - [0x0309] = "\x01\x6c\x27", [0x030a] = "\x02\x4f\x59", - [0x030b] = "\x02\x4f\x56", [0x030c] = "\x02\x4f\x57", - [0x030d] = "\x0e\x4b\x2c", [0x030e] = "\x0e\x4b\x27", - [0x030f] = "\x0e\x64\x4e", [0x0310] = "\x01\x70\x33", - [0x0311] = "\x02\x56\x43", [0x0312] = "\x01\x70\x30", - [0x0313] = "\x02\x56\x40", [0x0314] = "\x01\x70\x32", - [0x0315] = "\x01\x70\x34", [0x0316] = "\x0e\x50\x31", - [0x0317] = "\x02\x56\x41", [0x0318] = "\x01\x70\x31", - [0x031a] = "\x02\x56\x42", [0x031b] = "\x0e\x50\x35", - [0x031c] = "\x02\x56\x3f", [0x031d] = "\x0e\x50\x30", - [0x031e] = "\x0e\x50\x34", [0x031f] = "\x01\x73\x41", - [0x0320] = "\x02\x5c\x49", [0x0321] = "\x01\x73\x42", - [0x0322] = "\x02\x5c\x47", [0x0324] = "\x02\x5c\x48", - [0x0325] = "\x02\x5c\x46", [0x0326] = "\x02\x5c\x45", - [0x0327] = "\x0e\x54\x41", [0x0328] = "\x0e\x54\x40", - [0x0329] = "\x02\x5c\x4a", [0x032a] = "\x01\x73\x40", - [0x032b] = "\x0e\x50\x33", [0x032d] = "\x02\x61\x44", - [0x032e] = "\x02\x61\x45", [0x032f] = "\x0e\x57\x52", - [0x0330] = "\x02\x4f\x50", [0x0331] = "\x02\x61\x43", - [0x0332] = "\x01\x73\x43", [0x0333] = "\x01\x78\x2b", - [0x0334] = "\x02\x65\x37", [0x0335] = "\x02\x65\x38", - [0x0336] = "\x0e\x5c\x32", [0x0337] = "\x01\x7a\x62", - [0x0338] = "\x01\x7a\x63", [0x0339] = "\x02\x6b\x4f", - [0x033a] = "\x02\x6b\x4e", [0x033b] = "\x01\x7b\x58", - [0x033c] = "\x01\x7b\x57", [0x033d] = "\x02\x6e\x7d", - [0x033e] = "\x0e\x60\x6f", [0x033f] = "\x01\x44\x2a", - [0x0340] = "\x01\x44\x42", [0x0341] = "\x01\x44\x78", - [0x0343] = "\x01\x44\x77", [0x0344] = "\x01\x45\x73", - [0x0345] = "\x01\x45\x72", [0x0346] = "\x01\x47\x3e", - [0x0347] = "\x01\x47\x3d", [0x0348] = "\x01\x47\x3f", - [0x0349] = "\x01\x47\x3c", [0x034a] = "\x0e\x22\x78", - [0x034b] = "\x01\x49\x2c", [0x034c] = "\x01\x49\x2b", - [0x034d] = "\x01\x49\x2d", [0x034e] = "\x0e\x24\x54", - [0x0350] = "\x0e\x24\x53", [0x0351] = "\x0e\x24\x51", - [0x0352] = "\x01\x4c\x23", [0x0354] = "\x01\x4c\x22", - [0x0355] = "\x01\x4c\x24", [0x0356] = "\x0e\x27\x52", - [0x0357] = "\x01\x50\x22", [0x0359] = "\x01\x22\x79", - [0x035a] = "\x02\x2e\x21", [0x035b] = "\x01\x22\x7a", - [0x035c] = "\x01\x59\x27", [0x035d] = "\x01\x22\x7c", - [0x035e] = "\x01\x22\x7b", [0x035f] = "\x02\x3a\x44", - [0x0360] = "\x0e\x39\x76", [0x0361] = "\x01\x22\x7d", - [0x0362] = "\x01\x67\x7e", [0x0363] = "\x01\x22\x7e", - [0x0364] = "\x0e\x5e\x25", [0x0365] = "\x01\x44\x2b", - [0x0366] = "\x0e\x21\x34", [0x0367] = "\x01\x44\x79", - [0x0368] = "\x01\x47\x40", [0x0369] = "\x01\x4c\x25", - [0x036a] = "\x0e\x2b\x37", [0x036b] = "\x01\x44\x2c", - [0x036c] = "\x01\x44\x7c", [0x036d] = "\x01\x44\x7a", - [0x036e] = "\x01\x44\x7b", [0x0371] = "\x01\x47\x41", - [0x0372] = "\x0e\x22\x7a", [0x0375] = "\x01\x49\x2e", - [0x0376] = "\x01\x4c\x27", [0x0377] = "\x01\x4c\x26", - [0x0378] = "\x01\x4c\x28", [0x0379] = "\x0e\x2e\x7b", - [0x037c] = "\x01\x54\x40", [0x037e] = "\x0e\x40\x3f", - [0x037f] = "\x0e\x64\x53", [0x0380] = "\x01\x70\x35", - [0x0382] = "\x0e\x21\x27", [0x0384] = "\x0e\x21\x4d", - [0x0385] = "\x0e\x21\x48", [0x0386] = "\x0e\x21\x4e", - [0x0387] = "\x02\x21\x2e", [0x0389] = "\x01\x45\x74", - [0x038a] = "\x01\x45\x75", [0x038b] = "\x0e\x21\x78", - [0x038c] = "\x0e\x21\x79", [0x038d] = "\x01\x47\x42", - [0x038f] = "\x02\x23\x2c", [0x0390] = "\x0e\x27\x55", - [0x0391] = "\x01\x50\x24", [0x0392] = "\x01\x50\x23", - [0x0393] = "\x02\x2e\x23", [0x0394] = "\x02\x2e\x22", - [0x0395] = "\x01\x59\x28", [0x0396] = "\x0e\x21\x28", - [0x0397] = "\x01\x44\x7d", [0x0398] = "\x02\x21\x35", - [0x0399] = "\x0e\x21\x7a", [0x039d] = "\x0e\x24\x57", - [0x039e] = "\x02\x25\x4d", [0x039f] = "\x0e\x2b\x39", - [0x03a0] = "\x01\x50\x25", [0x03a1] = "\x0e\x2f\x5b", - [0x03a2] = "\x01\x54\x43", [0x03a3] = "\x0e\x2f\x59", - [0x03a4] = "\x01\x54\x41", [0x03a5] = "\x01\x54\x42", - [0x03a6] = "\x0e\x2f\x5a", [0x03a8] = "\x0e\x34\x4d", - [0x03aa] = "\x01\x70\x36", [0x03ac] = "\x01\x45\x76", - [0x03b0] = "\x01\x47\x43", [0x03b1] = "\x02\x21\x7b", - [0x03b2] = "\x0e\x22\x7e", [0x03b3] = "\x0e\x22\x7d", - [0x03b4] = "\x0e\x22\x7c", [0x03b5] = "\x0e\x24\x59", - [0x03b6] = "\x01\x49\x2f", [0x03b7] = "\x01\x49\x30", - [0x03b8] = "\x0e\x24\x5a", [0x03b9] = "\x02\x23\x2d", - [0x03bc] = "\x02\x25\x4e", [0x03bd] = "\x01\x4c\x29", - [0x03be] = "\x02\x25\x4f", [0x03c1] = "\x0e\x2b\x3b", - [0x03c2] = "\x0e\x2b\x3d", [0x03c3] = "\x0e\x2b\x3e", - [0x03c4] = "\x02\x2e\x25", [0x03c5] = "\x02\x2e\x26", - [0x03c6] = "\x01\x54\x46", [0x03c7] = "\x0e\x2f\x5e", - [0x03c8] = "\x02\x2e\x27", [0x03c9] = "\x0e\x2f\x5f", - [0x03ca] = "\x02\x2e\x24", [0x03cb] = "\x01\x54\x47", - [0x03cc] = "\x01\x54\x45", [0x03cd] = "\x01\x54\x44", - [0x03ce] = "\x02\x2e\x28", [0x03cf] = "\x0e\x34\x4f", - [0x03d0] = "\x02\x33\x6b", [0x03d1] = "\x0e\x34\x4e", - [0x03d2] = "\x0e\x39\x7d", [0x03d3] = "\x0e\x39\x7a", - [0x03d4] = "\x02\x3a\x45", [0x03d6] = "\x0e\x39\x7e", - [0x03d7] = "\x02\x41\x6a", [0x03d8] = "\x02\x49\x27", - [0x03d9] = "\x0e\x4b\x2f", [0x03da] = "\x0e\x4b\x2e", - [0x03db] = "\x0e\x4b\x30", [0x03dc] = "\x01\x6c\x29", - [0x03dd] = "\x01\x70\x37", [0x03de] = "\x02\x56\x44", - [0x03df] = "\x0e\x54\x42", [0x03e0] = "\x01\x44\x2d", - [0x03e1] = "\x01\x44\x3b", [0x03e2] = "\x0e\x21\x2f", - [0x03e3] = "\x0e\x21\x35", [0x03e4] = "\x0e\x21\x51", - [0x03e5] = "\x0e\x21\x7b", [0x03e8] = "\x0e\x23\x22", - [0x03ec] = "\x0e\x24\x5b", [0x03ed] = "\x0e\x27\x59", - [0x03f0] = "\x01\x59\x29", [0x03f1] = "\x01\x5e\x33", - [0x03f3] = "\x01\x68\x21", [0x03f4] = "\x0e\x45\x7a", - [0x03f5] = "\x02\x21\x23", [0x03f6] = "\x01\x44\x7e", - [0x03f8] = "\x01\x45\x79", [0x03f9] = "\x01\x45\x77", - [0x03fa] = "\x01\x45\x78", [0x03fd] = "\x01\x4c\x2a", - [0x03fe] = "\x0e\x27\x5a", [0x0400] = "\x01\x44\x2e", - [0x0401] = "\x01\x44\x2f", [0x0403] = "\x01\x44\x43", - [0x0404] = "\x0e\x21\x36", [0x0405] = "\x0e\x21\x52", - [0x0406] = "\x01\x45\x21", [0x0407] = "\x01\x45\x22", - [0x0408] = "\x01\x45\x23", [0x0409] = "\x02\x21\x4c", - [0x040a] = "\x01\x45\x7a", [0x040b] = "\x0e\x21\x7d", - [0x040c] = "\x02\x21\x4b", [0x040e] = "\x01\x47\x47", - [0x040f] = "\x0e\x23\x25", [0x0410] = "\x02\x21\x7d", - [0x0411] = "\x01\x47\x45", [0x0412] = "\x01\x47\x46", - [0x0413] = "\x02\x21\x7c", [0x0414] = "\x0e\x23\x24", - [0x0415] = "\x0e\x23\x26", [0x0416] = "\x01\x47\x48", - [0x0417] = "\x01\x47\x44", [0x0418] = "\x0e\x23\x27", - [0x041c] = "\x02\x23\x2e", [0x041d] = "\x01\x4f\x4f", - [0x041e] = "\x02\x23\x2f", [0x041f] = "\x0e\x24\x5f", - [0x0420] = "\x0e\x24\x61", [0x0421] = "\x02\x23\x30", - [0x0423] = "\x0e\x24\x5c", [0x0424] = "\x01\x49\x32", - [0x0425] = "\x01\x49\x31", [0x0426] = "\x0e\x24\x5e", - [0x0427] = "\x0e\x24\x5d", [0x0428] = "\x01\x49\x35", - [0x0429] = "\x01\x49\x33", [0x042a] = "\x01\x49\x34", - [0x042b] = "\x0e\x24\x60", [0x042e] = "\x01\x4c\x30", - [0x042f] = "\x0e\x27\x5b", [0x0430] = "\x01\x4c\x2f", - [0x0431] = "\x02\x25\x54", [0x0432] = "\x02\x25\x51", - [0x0433] = "\x02\x25\x52", [0x0434] = "\x0e\x27\x5e", - [0x0435] = "\x02\x25\x50", [0x0436] = "\x01\x4c\x31", - [0x0437] = "\x01\x4c\x2d", [0x0438] = "\x01\x4c\x2c", - [0x0439] = "\x0e\x27\x5f", [0x043a] = "\x01\x4c\x2e", - [0x043b] = "\x01\x4c\x2b", [0x043c] = "\x0e\x27\x5d", - [0x043e] = "\x0e\x64\x4f", [0x0441] = "\x01\x4c\x32", - [0x0443] = "\x01\x50\x27", [0x0444] = "\x02\x29\x32", - [0x0445] = "\x0e\x2b\x3f", [0x0446] = "\x02\x25\x53", - [0x0447] = "\x01\x50\x2c", [0x0448] = "\x0e\x2b\x40", - [0x0449] = "\x02\x29\x33", [0x044a] = "\x01\x50\x28", - [0x044b] = "\x01\x50\x2b", [0x044c] = "\x01\x50\x2a", - [0x044d] = "\x01\x50\x29", [0x044e] = "\x01\x50\x26", - [0x044f] = "\x0e\x2b\x43", [0x0452] = "\x02\x2e\x2b", - [0x0453] = "\x0e\x2f\x68", [0x0454] = "\x01\x54\x4a", - [0x0455] = "\x02\x2e\x2e", [0x0456] = "\x01\x54\x48", - [0x0457] = "\x0e\x2f\x65", [0x0459] = "\x0e\x2f\x62", - [0x045a] = "\x02\x2e\x2a", [0x045b] = "\x01\x54\x4b", - [0x045c] = "\x01\x54\x49", [0x045d] = "\x01\x54\x4c", - [0x045e] = "\x02\x2e\x2c", [0x045f] = "\x02\x2e\x2d", - [0x0460] = "\x0e\x2f\x60", [0x0461] = "\x02\x2e\x29", - [0x0462] = "\x02\x2e\x2f", [0x0463] = "\x0e\x2f\x66", - [0x0464] = "\x0e\x2f\x61", [0x0465] = "\x0e\x2f\x63", - [0x0467] = "\x0e\x2f\x64", [0x0468] = "\x0e\x34\x50", - [0x0469] = "\x01\x5e\x37", [0x046a] = "\x01\x59\x2a", - [0x046b] = "\x02\x33\x6c", [0x046c] = "\x02\x33\x6e", - [0x046d] = "\x02\x33\x6d", [0x046e] = "\x02\x33\x6f", - [0x046f] = "\x01\x59\x2b", [0x0470] = "\x0e\x3a\x23", - [0x0472] = "\x01\x5e\x34", [0x0473] = "\x0e\x3a\x21", - [0x0474] = "\x01\x5e\x35", [0x0475] = "\x01\x5e\x36", - [0x0476] = "\x0e\x34\x51", [0x0477] = "\x01\x63\x37", - [0x0478] = "\x02\x41\x6c", [0x0479] = "\x0e\x40\x41", - [0x047a] = "\x02\x41\x6b", [0x047b] = "\x02\x41\x6d", - [0x047c] = "\x02\x41\x6e", [0x047d] = "\x01\x63\x38", - [0x047e] = "\x0e\x40\x40", [0x047f] = "\x01\x63\x36", - [0x0480] = "\x02\x49\x28", [0x0481] = "\x02\x49\x29", - [0x0482] = "\x01\x68\x23", [0x0483] = "\x01\x68\x22", - [0x0484] = "\x02\x4c\x61", [0x0486] = "\x0e\x4b\x31", - [0x0487] = "\x01\x6c\x2a", [0x0488] = "\x01\x6c\x2b", - [0x0489] = "\x01\x6c\x2c", [0x048a] = "\x01\x6c\x2e", - [0x048b] = "\x02\x4f\x5a", [0x048c] = "\x02\x4f\x5b", - [0x048d] = "\x01\x6c\x2d", [0x048e] = "\x0e\x4b\x32", - [0x0490] = "\x0e\x50\x36", [0x0491] = "\x01\x70\x38", - [0x0493] = "\x01\x70\x39", [0x0494] = "\x0e\x50\x37", - [0x0496] = "\x02\x65\x39", [0x0497] = "\x02\x6b\x51", - [0x0498] = "\x02\x6b\x50", [0x0499] = "\x02\x6e\x7e", - [0x049a] = "\x0e\x60\x2c", [0x049b] = "\x01\x44\x30", - [0x049c] = "\x0e\x21\x37", [0x049d] = "\x0e\x21\x54", - [0x049e] = "\x0e\x21\x53", [0x049f] = "\x01\x45\x7c", - [0x04a0] = "\x01\x45\x7b", [0x04a3] = "\x01\x47\x49", - [0x04a6] = "\x02\x21\x7e", [0x04a8] = "\x0e\x23\x28", - [0x04a9] = "\x01\x49\x37", [0x04aa] = "\x01\x49\x38", - [0x04ab] = "\x01\x49\x36", [0x04ac] = "\x01\x49\x39", - [0x04ad] = "\x02\x23\x31", [0x04ae] = "\x02\x23\x32", - [0x04b3] = "\x0e\x24\x63", [0x04b4] = "\x0e\x24\x62", - [0x04b5] = "\x0e\x27\x61", [0x04b9] = "\x0e\x27\x60", - [0x04bb] = "\x01\x4c\x34", [0x04bc] = "\x02\x25\x55", - [0x04bd] = "\x0e\x62\x5a", [0x04be] = "\x01\x4c\x33", - [0x04bf] = "\x0e\x27\x62", [0x04c0] = "\x02\x29\x34", - [0x04c1] = "\x01\x50\x30", [0x04c2] = "\x02\x29\x35", - [0x04c3] = "\x01\x50\x2f", [0x04c4] = "\x0e\x2b\x48", - [0x04c5] = "\x0e\x2b\x46", [0x04c7] = "\x01\x50\x2d", - [0x04c9] = "\x01\x50\x2e", [0x04ca] = "\x0e\x2b\x47", - [0x04cc] = "\x0e\x2f\x6f", [0x04cd] = "\x02\x2e\x30", - [0x04ce] = "\x0e\x2f\x6c", [0x04cf] = "\x0e\x2f\x6a", - [0x04d0] = "\x0e\x2f\x6d", [0x04d1] = "\x0e\x2f\x6e", - [0x04d2] = "\x01\x59\x2c", [0x04d3] = "\x02\x33\x71", - [0x04d4] = "\x0e\x34\x52", [0x04d5] = "\x01\x59\x2f", - [0x04d6] = "\x02\x33\x70", [0x04d7] = "\x01\x5b\x2b", - [0x04d8] = "\x01\x59\x2e", [0x04d9] = "\x01\x59\x2d", - [0x04db] = "\x01\x5e\x3a", [0x04dd] = "\x01\x5e\x39", - [0x04de] = "\x01\x5e\x38", [0x04df] = "\x01\x63\x39", - [0x04e0] = "\x0e\x40\x45", [0x04e1] = "\x0e\x40\x44", - [0x04e2] = "\x01\x63\x3c", [0x04e3] = "\x01\x63\x3d", - [0x04e4] = "\x01\x63\x3b", [0x04e6] = "\x01\x63\x3a", - [0x04e7] = "\x0e\x40\x46", [0x04e9] = "\x02\x49\x2a", - [0x04ea] = "\x0e\x46\x21", [0x04eb] = "\x02\x49\x2b", - [0x04ed] = "\x0e\x45\x7e", [0x04ee] = "\x0e\x4b\x33", - [0x04ef] = "\x02\x4f\x5d", [0x04f0] = "\x01\x6c\x2f", - [0x04f1] = "\x02\x4f\x5c", [0x04f2] = "\x0e\x4d\x2c", - [0x04f3] = "\x01\x70\x3a", [0x04f4] = "\x02\x5c\x4b", - [0x04f5] = "\x01\x73\x44", [0x04f7] = "\x02\x65\x3a", - [0x04f8] = "\x01\x79\x61", [0x04fa] = "\x01\x44\x44", - [0x04fb] = "\x01\x45\x24", [0x04fc] = "\x02\x21\x36", - [0x04fd] = "\x0e\x21\x55", [0x04fe] = "\x01\x45\x25", - [0x04ff] = "\x01\x45\x26", [0x0500] = "\x0e\x21\x56", - [0x0503] = "\x0e\x22\x23", [0x0504] = "\x0e\x22\x22", - [0x0505] = "\x01\x45\x7d", [0x0506] = "\x01\x45\x7e", - [0x0507] = "\x0e\x22\x24", [0x0508] = "\x01\x47\x4a", - [0x0509] = "\x02\x23\x33", [0x050a] = "\x02\x25\x56", - [0x050b] = "\x02\x25\x57", [0x050d] = "\x01\x50\x31", - [0x050e] = "\x02\x2e\x31", [0x050f] = "\x01\x59\x31", - [0x0510] = "\x01\x59\x30", [0x0511] = "\x02\x3a\x47", - [0x0512] = "\x02\x3a\x46", [0x0514] = "\x0e\x50\x38", - [0x0515] = "\x01\x44\x31", [0x0516] = "\x01\x45\x27", - [0x0517] = "\x01\x46\x21", [0x0519] = "\x01\x59\x32", - [0x051a] = "\x02\x21\x24", [0x051c] = "\x02\x21\x4d", - [0x051d] = "\x01\x46\x22", [0x051e] = "\x0e\x22\x26", - [0x051f] = "\x02\x22\x22", [0x0520] = "\x01\x47\x4c", - [0x0521] = "\x01\x47\x4b", [0x0522] = "\x02\x22\x21", - [0x0523] = "\x01\x49\x3a", [0x0524] = "\x0e\x64\x50", - [0x0525] = "\x0e\x24\x65", [0x0527] = "\x0e\x2b\x49", - [0x052a] = "\x01\x54\x4d", [0x052d] = "\x02\x33\x72", - [0x052f] = "\x01\x63\x3e", [0x0530] = "\x02\x49\x2c", - [0x0531] = "\x01\x68\x24", [0x0532] = "\x0e\x46\x23", - [0x0533] = "\x0e\x4b\x34", [0x0534] = "\x02\x56\x45", - [0x0535] = "\x0e\x54\x44", [0x0536] = "\x0e\x5c\x34", - [0x0537] = "\x02\x68\x6a", [0x0538] = "\x0e\x21\x29", - [0x0539] = "\x01\x45\x28", [0x053a] = "\x0e\x21\x57", - [0x053b] = "\x0e\x24\x66", [0x053c] = "\x02\x25\x58", - [0x053d] = "\x02\x29\x36", [0x053e] = "\x01\x59\x35", - [0x053f] = "\x01\x59\x33", [0x0540] = "\x01\x59\x34", - [0x0541] = "\x01\x44\x32", [0x0543] = "\x01\x44\x45", - [0x0544] = "\x01\x24\x3f", [0x0545] = "\x01\x45\x2b", - [0x0546] = "\x0e\x21\x59", [0x0547] = "\x01\x45\x2a", - [0x0548] = "\x01\x45\x29", [0x0549] = "\x01\x46\x25", - [0x054a] = "\x01\x46\x24", [0x054b] = "\x0e\x23\x2a", - [0x054c] = "\x02\x21\x4e", [0x054d] = "\x02\x22\x23", - [0x054f] = "\x0e\x23\x2b", [0x0550] = "\x0e\x23\x2d", - [0x0551] = "\x01\x4c\x38", [0x0552] = "\x01\x4c\x35", - [0x0553] = "\x01\x4c\x37", [0x0554] = "\x01\x4c\x36", - [0x0555] = "\x0e\x27\x63", [0x0557] = "\x01\x50\x32", - [0x0558] = "\x0e\x2b\x4a", [0x055a] = "\x01\x5e\x3b", - [0x055c] = "\x01\x44\x33", [0x055d] = "\x0e\x21\x5a", - [0x055e] = "\x01\x45\x2c", [0x055f] = "\x0e\x22\x27", - [0x0560] = "\x01\x46\x27", [0x0561] = "\x01\x46\x26", - [0x0563] = "\x02\x23\x34", [0x0565] = "\x0e\x64\x51", - [0x0566] = "\x01\x4c\x39", [0x0567] = "\x0e\x2a\x5c", - [0x0569] = "\x0e\x21\x2a", [0x056c] = "\x02\x21\x37", - [0x056d] = "\x0e\x22\x28", [0x056e] = "\x01\x46\x29", - [0x056f] = "\x01\x46\x28", [0x0570] = "\x01\x47\x4d", - [0x0571] = "\x01\x47\x4e", [0x0572] = "\x02\x23\x35", - [0x0573] = "\x01\x49\x3b", [0x0574] = "\x0e\x24\x67", - [0x0575] = "\x01\x49\x3c", [0x0576] = "\x0e\x27\x65", - [0x0577] = "\x01\x4c\x3a", [0x0578] = "\x01\x4c\x3b", - [0x0579] = "\x01\x4c\x3c", [0x057a] = "\x0e\x27\x66", - [0x057b] = "\x01\x50\x33", [0x057c] = "\x02\x29\x37", - [0x057d] = "\x0e\x2b\x4b", [0x057f] = "\x01\x54\x4e", - [0x0580] = "\x0e\x40\x47", [0x0582] = "\x02\x21\x25", - [0x0584] = "\x01\x45\x2d", [0x0586] = "\x0e\x21\x5b", - [0x0589] = "\x0e\x22\x29", [0x058a] = "\x02\x22\x24", - [0x058b] = "\x0e\x23\x2f", [0x058e] = "\x02\x23\x36", - [0x058f] = "\x02\x23\x37", [0x0592] = "\x02\x25\x59", - [0x0593] = "\x0e\x27\x67", [0x0594] = "\x02\x25\x5a", - [0x0596] = "\x02\x29\x39", [0x0597] = "\x02\x29\x38", - [0x0598] = "\x02\x29\x3b", [0x0599] = "\x02\x29\x3a", - [0x059a] = "\x01\x50\x34", [0x059b] = "\x0e\x64\x52", - [0x059c] = "\x02\x33\x73", [0x059d] = "\x01\x54\x50", - [0x059e] = "\x02\x2e\x32", [0x059f] = "\x01\x54\x4f", - [0x05a0] = "\x0e\x34\x54", [0x05a4] = "\x02\x3a\x48", - [0x05a5] = "\x01\x5e\x3c", [0x05a6] = "\x0e\x3a\x28", - [0x05a7] = "\x02\x3a\x49", [0x05a8] = "\x0e\x3a\x27", - [0x05a9] = "\x0e\x40\x4a", [0x05aa] = "\x0e\x40\x49", - [0x05ab] = "\x0e\x40\x48", [0x05ac] = "\x02\x49\x2d", - [0x05ad] = "\x01\x68\x25", [0x05ae] = "\x0e\x46\x25", - [0x05b0] = "\x0e\x46\x26", [0x05b1] = "\x0e\x4b\x35", - [0x05b2] = "\x01\x6c\x30", [0x05b3] = "\x0e\x54\x45", - [0x05b4] = "\x02\x65\x3b", [0x05b6] = "\x0e\x21\x2b", - [0x05b7] = "\x0e\x21\x5c", [0x05b9] = "\x02\x21\x38", - [0x05ba] = "\x0e\x22\x2a", [0x05bb] = "\x01\x46\x2a", - [0x05be] = "\x0e\x23\x31", [0x05c1] = "\x0e\x27\x69", - [0x05c2] = "\x0e\x27\x6a", [0x05c3] = "\x01\x59\x36", - [0x05c4] = "\x0e\x34\x55", [0x05c5] = "\x0e\x3a\x29", - [0x05c8] = "\x01\x44\x34", [0x05c9] = "\x01\x44\x46", - [0x05ca] = "\x01\x45\x2f", [0x05cb] = "\x01\x45\x2e", - [0x05cc] = "\x0e\x21\x5e", [0x05cd] = "\x01\x45\x30", - [0x05ce] = "\x0e\x21\x60", [0x05d0] = "\x0e\x22\x2b", - [0x05d2] = "\x0e\x23\x33", [0x05d4] = "\x01\x4c\x3e", - [0x05d5] = "\x0e\x27\x6b", [0x05d6] = "\x01\x4c\x3d", - [0x05d7] = "\x01\x4c\x3f", [0x05d9] = "\x0e\x2b\x50", - [0x05da] = "\x0e\x2b\x4f", [0x05db] = "\x01\x50\x35", - [0x05dc] = "\x0e\x2b\x4e", [0x05dd] = "\x0e\x2b\x4d", - [0x05df] = "\x01\x54\x51", [0x05e0] = "\x0e\x40\x4b", - [0x05e1] = "\x02\x56\x46", [0x05e2] = "\x01\x76\x3b", - [0x05e3] = "\x01\x44\x47", [0x05e4] = "\x01\x46\x2c", - [0x05e5] = "\x01\x46\x3b", [0x05e6] = "\x01\x46\x36", - [0x05e8] = "\x01\x46\x31", [0x05e9] = "\x01\x46\x30", - [0x05ea] = "\x01\x46\x37", [0x05eb] = "\x01\x46\x35", - [0x05ec] = "\x01\x46\x2e", [0x05ed] = "\x01\x46\x3c", - [0x05ee] = "\x01\x46\x2f", [0x05ef] = "\x01\x46\x2b", - [0x05f0] = "\x01\x46\x3a", [0x05f1] = "\x01\x46\x39", - [0x05f2] = "\x01\x46\x38", [0x05f3] = "\x01\x46\x2d", - [0x05f4] = "\x0e\x22\x31", [0x05f5] = "\x01\x46\x34", - [0x05f6] = "\x0e\x22\x2d", [0x05f7] = "\x0e\x22\x2e", - [0x05f8] = "\x01\x46\x33", [0x05f9] = "\x0e\x22\x2f", - [0x05fb] = "\x01\x46\x3d", [0x05fc] = "\x01\x46\x32", - [0x05ff] = "\x0e\x23\x35", [0x0600] = "\x0e\x23\x37", - [0x0601] = "\x01\x47\x54", [0x0603] = "\x01\x47\x5a", - [0x0604] = "\x01\x47\x56", [0x0605] = "\x0e\x23\x39", - [0x0606] = "\x01\x47\x5c", [0x0607] = "\x02\x22\x25", - [0x0608] = "\x01\x47\x59", [0x0609] = "\x01\x47\x4f", - [0x060a] = "\x01\x47\x52", [0x060b] = "\x01\x47\x55", - [0x060c] = "\x01\x47\x51", [0x060d] = "\x01\x47\x58", - [0x060e] = "\x01\x47\x5b", [0x060f] = "\x01\x47\x50", - [0x0610] = "\x01\x47\x53", [0x0611] = "\x01\x47\x57", - [0x0612] = "\x01\x47\x5d", [0x0613] = "\x0e\x23\x3a", - [0x0615] = "\x0e\x23\x3b", [0x0616] = "\x0e\x23\x34", - [0x0618] = "\x02\x23\x40", [0x0619] = "\x02\x23\x3d", - [0x061a] = "\x0e\x24\x76", [0x061b] = "\x01\x49\x49", - [0x061c] = "\x02\x23\x3e", [0x061d] = "\x01\x49\x3d", - [0x061e] = "\x01\x49\x3f", [0x061f] = "\x01\x49\x57", - [0x0620] = "\x01\x49\x52", [0x0621] = "\x0e\x24\x79", - [0x0622] = "\x0e\x24\x7e", [0x0623] = "\x0e\x24\x75", - [0x0624] = "\x02\x23\x45", [0x0625] = "\x02\x23\x3f", - [0x0626] = "\x01\x49\x41", [0x0627] = "\x01\x49\x43", - [0x0628] = "\x02\x23\x44", [0x0629] = "\x01\x49\x4a", - [0x062a] = "\x02\x23\x3a", [0x062b] = "\x01\x49\x56", - [0x062c] = "\x01\x49\x58", [0x062d] = "\x01\x49\x3e", - [0x062e] = "\x01\x49\x4f", [0x062f] = "\x0e\x25\x24", - [0x0630] = "\x02\x23\x38", [0x0631] = "\x01\x49\x55", - [0x0632] = "\x0e\x24\x77", [0x0633] = "\x01\x49\x46", - [0x0634] = "\x0e\x24\x7b", [0x0635] = "\x01\x49\x50", - [0x0636] = "\x01\x49\x51", [0x0637] = "\x02\x23\x39", - [0x0638] = "\x01\x49\x4e", [0x0639] = "\x01\x49\x4c", - [0x063a] = "\x0e\x24\x70", [0x063b] = "\x01\x49\x4d", - [0x063c] = "\x01\x49\x53", [0x063d] = "\x02\x23\x41", - [0x063e] = "\x01\x49\x40", [0x063f] = "\x0e\x25\x21", - [0x0640] = "\x01\x49\x54", [0x0641] = "\x02\x23\x43", - [0x0642] = "\x01\x49\x48", [0x0643] = "\x01\x49\x45", - [0x0644] = "\x0e\x24\x73", [0x0645] = "\x02\x23\x3c", - [0x0646] = "\x01\x49\x44", [0x0647] = "\x02\x23\x46", - [0x0648] = "\x01\x49\x47", [0x0649] = "\x0e\x24\x7c", - [0x064a] = "\x01\x49\x4b", [0x064b] = "\x0e\x24\x78", - [0x064c] = "\x0e\x24\x74", [0x064d] = "\x0e\x24\x6d", - [0x064e] = "\x01\x49\x42", [0x064f] = "\x02\x23\x42", - [0x0650] = "\x0e\x24\x7d", [0x0651] = "\x0e\x25\x22", - [0x0654] = "\x02\x23\x3b", [0x065a] = "\x0e\x25\x23", - [0x065f] = "\x0e\x27\x6e", [0x0660] = "\x02\x25\x6b", - [0x0661] = "\x02\x25\x6a", [0x0662] = "\x01\x4c\x51", - [0x0663] = "\x02\x25\x6d", [0x0664] = "\x02\x25\x6f", - [0x0665] = "\x02\x25\x64", [0x0666] = "\x02\x25\x67", - [0x0667] = "\x02\x25\x6e", [0x0668] = "\x01\x4c\x52", - [0x0669] = "\x0e\x27\x74", [0x066a] = "\x0e\x27\x78", - [0x066b] = "\x02\x25\x61", [0x066c] = "\x02\x25\x65", - [0x066d] = "\x0e\x27\x75", [0x066f] = "\x02\x25\x69", - [0x0670] = "\x02\x29\x4a", [0x0671] = "\x01\x4c\x4d", - [0x0672] = "\x02\x29\x4e", [0x0673] = "\x01\x4c\x40", - [0x0674] = "\x02\x25\x66", [0x0675] = "\x01\x4c\x41", - [0x0676] = "\x01\x4c\x4e", [0x0677] = "\x01\x4c\x47", - [0x0678] = "\x01\x4c\x43", [0x0679] = "\x0e\x27\x71", - [0x067a] = "\x02\x25\x62", [0x067b] = "\x01\x4c\x46", - [0x067c] = "\x01\x4c\x4b", [0x067d] = "\x01\x4c\x54", - [0x067e] = "\x02\x25\x63", [0x067f] = "\x02\x25\x5c", - [0x0680] = "\x01\x4c\x45", [0x0681] = "\x02\x25\x5d", - [0x0682] = "\x02\x25\x5f", [0x0684] = "\x01\x4c\x48", - [0x0685] = "\x0e\x27\x6c", [0x0686] = "\x01\x4c\x4a", - [0x0687] = "\x02\x25\x5b", [0x0688] = "\x02\x25\x60", - [0x0689] = "\x0e\x27\x70", [0x068a] = "\x0e\x27\x79", - [0x068b] = "\x01\x4c\x53", [0x068c] = "\x01\x4c\x4f", - [0x068d] = "\x02\x25\x68", [0x068e] = "\x01\x4c\x55", - [0x068f] = "\x0e\x27\x73", [0x0690] = "\x01\x4c\x4c", - [0x0691] = "\x02\x25\x5e", [0x0692] = "\x01\x4c\x49", - [0x0693] = "\x0e\x27\x6f", [0x0694] = "\x0e\x27\x77", - [0x0695] = "\x01\x4c\x44", [0x0696] = "\x01\x4c\x42", - [0x0698] = "\x02\x25\x6c", [0x069a] = "\x01\x4c\x50", - [0x069e] = "\x0e\x2b\x5c", [0x069f] = "\x0e\x2b\x5d", - [0x06a0] = "\x02\x29\x49", [0x06a1] = "\x02\x29\x3d", - [0x06a2] = "\x02\x29\x4c", [0x06a3] = "\x0e\x2b\x57", - [0x06a4] = "\x0e\x2b\x59", [0x06a5] = "\x02\x29\x3f", - [0x06a6] = "\x01\x50\x3c", [0x06a7] = "\x01\x50\x4a", - [0x06a8] = "\x01\x50\x38", [0x06a9] = "\x01\x50\x49", - [0x06aa] = "\x01\x50\x41", [0x06ab] = "\x01\x50\x46", - [0x06ac] = "\x01\x50\x36", [0x06ad] = "\x02\x29\x3e", - [0x06ae] = "\x02\x29\x44", [0x06af] = "\x01\x50\x45", - [0x06b0] = "\x02\x29\x50", [0x06b1] = "\x01\x50\x47", - [0x06b2] = "\x0e\x2b\x5b", [0x06b3] = "\x01\x50\x3d", - [0x06b4] = "\x0e\x2b\x54", [0x06b5] = "\x0e\x2b\x5e", - [0x06b6] = "\x02\x29\x46", [0x06b7] = "\x02\x29\x43", - [0x06b8] = "\x01\x50\x3b", [0x06b9] = "\x0e\x2b\x51", - [0x06ba] = "\x02\x29\x3c", [0x06bb] = "\x01\x50\x48", - [0x06bc] = "\x02\x29\x4b", [0x06bd] = "\x01\x50\x40", - [0x06be] = "\x02\x29\x4d", [0x06bf] = "\x01\x50\x4b", - [0x06c0] = "\x01\x50\x37", [0x06c1] = "\x01\x50\x42", - [0x06c2] = "\x01\x50\x3f", [0x06c3] = "\x02\x29\x41", - [0x06c4] = "\x01\x50\x43", [0x06c5] = "\x02\x29\x47", - [0x06c6] = "\x02\x29\x48", [0x06c7] = "\x01\x50\x3e", - [0x06c8] = "\x01\x50\x44", [0x06c9] = "\x01\x50\x3a", - [0x06ca] = "\x0e\x2b\x55", [0x06cb] = "\x0e\x64\x54", - [0x06cc] = "\x0e\x2b\x63", [0x06cd] = "\x0e\x2b\x61", - [0x06ce] = "\x01\x50\x39", [0x06cf] = "\x02\x29\x40", - [0x06d0] = "\x0e\x2b\x53", [0x06d6] = "\x02\x29\x45", - [0x06da] = "\x0e\x2b\x58", [0x06de] = "\x02\x29\x4f", - [0x06e0] = "\x02\x2e\x46", [0x06e1] = "\x01\x54\x5e", - [0x06e2] = "\x02\x2e\x34", [0x06e4] = "\x02\x2e\x39", - [0x06e5] = "\x01\x54\x57", [0x06e6] = "\x01\x54\x62", - [0x06e7] = "\x02\x2e\x37", [0x06e8] = "\x01\x54\x52", - [0x06e9] = "\x01\x54\x5c", [0x06ea] = "\x01\x54\x61", - [0x06eb] = "\x02\x2e\x3e", [0x06ed] = "\x01\x54\x5d", - [0x06ee] = "\x01\x54\x60", [0x06ef] = "\x0e\x2f\x77", - [0x06f0] = "\x0e\x30\x21", [0x06f1] = "\x02\x2e\x41", - [0x06f2] = "\x01\x54\x58", [0x06f3] = "\x02\x2e\x38", - [0x06f4] = "\x0e\x2f\x74", [0x06f5] = "\x0e\x2f\x78", - [0x06f6] = "\x0e\x30\x22", [0x06f7] = "\x02\x2e\x44", - [0x06f8] = "\x02\x2e\x45", [0x06f9] = "\x0e\x2f\x79", - [0x06fa] = "\x01\x54\x5a", [0x06fb] = "\x02\x2e\x43", - [0x06fc] = "\x01\x54\x56", [0x06fd] = "\x01\x54\x65", - [0x06ff] = "\x02\x2e\x3b", [0x0700] = "\x0e\x2f\x7b", - [0x0701] = "\x01\x54\x54", [0x0702] = "\x0e\x2f\x7a", - [0x0703] = "\x02\x2e\x48", [0x0704] = "\x02\x2e\x3c", - [0x0705] = "\x02\x2e\x40", [0x0706] = "\x01\x54\x59", - [0x0707] = "\x01\x54\x64", [0x0708] = "\x02\x2e\x3d", - [0x0709] = "\x01\x54\x5f", [0x070a] = "\x02\x2e\x42", - [0x070b] = "\x02\x2e\x49", [0x070c] = "\x02\x34\x24", - [0x070d] = "\x0e\x2f\x73", [0x070e] = "\x02\x2e\x47", - [0x070f] = "\x01\x54\x66", [0x0710] = "\x01\x54\x53", - [0x0711] = "\x02\x2e\x3f", [0x0712] = "\x02\x2e\x36", - [0x0713] = "\x0e\x2f\x76", [0x0714] = "\x01\x54\x5b", - [0x0717] = "\x02\x2e\x35", [0x0718] = "\x0e\x2f\x7e", - [0x0719] = "\x0e\x30\x25", [0x071a] = "\x02\x2e\x3a", - [0x0726] = "\x02\x2e\x33", [0x0727] = "\x01\x54\x63", - [0x0728] = "\x0e\x67\x21", [0x0729] = "\x0e\x34\x5f", - [0x072a] = "\x02\x33\x7a", [0x072b] = "\x0e\x34\x68", - [0x072c] = "\x01\x59\x49", [0x072d] = "\x02\x34\x2a", - [0x072e] = "\x01\x59\x47", [0x072f] = "\x01\x59\x44", - [0x0730] = "\x02\x34\x21", [0x0731] = "\x01\x59\x40", - [0x0732] = "\x02\x34\x25", [0x0733] = "\x01\x59\x4b", - [0x0734] = "\x02\x33\x79", [0x0735] = "\x02\x33\x7e", - [0x0736] = "\x02\x33\x7d", [0x0737] = "\x01\x54\x55", - [0x0738] = "\x01\x59\x46", [0x0739] = "\x02\x34\x28", - [0x073a] = "\x0e\x34\x66", [0x073b] = "\x02\x34\x2b", - [0x073c] = "\x02\x33\x76", [0x073e] = "\x01\x5e\x4e", - [0x073f] = "\x0e\x34\x67", [0x0740] = "\x02\x34\x2c", - [0x0741] = "\x01\x59\x4c", [0x0743] = "\x01\x59\x3e", - [0x0744] = "\x01\x59\x3b", [0x0745] = "\x02\x34\x23", - [0x0746] = "\x01\x59\x38", [0x0748] = "\x02\x34\x29", - [0x0749] = "\x0e\x34\x5b", [0x074a] = "\x01\x59\x3f", - [0x074b] = "\x02\x34\x2d", [0x074c] = "\x0e\x34\x58", - [0x074d] = "\x02\x33\x77", [0x074e] = "\x02\x34\x27", - [0x074f] = "\x01\x59\x42", [0x0750] = "\x02\x33\x78", - [0x0751] = "\x02\x33\x7b", [0x0752] = "\x02\x34\x22", - [0x0753] = "\x0e\x34\x62", [0x0754] = "\x0e\x34\x61", - [0x0755] = "\x01\x59\x43", [0x0756] = "\x01\x59\x41", - [0x0757] = "\x01\x59\x4d", [0x0758] = "\x0e\x34\x57", - [0x0759] = "\x0e\x3a\x36", [0x075a] = "\x0e\x34\x64", - [0x075c] = "\x01\x59\x48", [0x075d] = "\x0e\x34\x5e", - [0x075e] = "\x01\x59\x3c", [0x075f] = "\x01\x5a\x76", - [0x0761] = "\x01\x59\x3d", [0x0762] = "\x02\x33\x7c", - [0x0763] = "\x01\x59\x4a", [0x0764] = "\x01\x59\x45", - [0x0765] = "\x02\x34\x26", [0x0766] = "\x01\x59\x3a", - [0x0768] = "\x0e\x34\x59", [0x076a] = "\x01\x59\x39", - [0x076b] = "\x0e\x64\x57", [0x0771] = "\x0e\x64\x56", - [0x0772] = "\x0e\x67\x22", [0x0773] = "\x0e\x64\x55", - [0x0775] = "\x02\x33\x74", [0x0776] = "\x02\x33\x75", - [0x0777] = "\x02\x3a\x4e", [0x077a] = "\x0e\x3a\x3c", - [0x077b] = "\x01\x5e\x3d", [0x077c] = "\x01\x5e\x40", - [0x077d] = "\x02\x3a\x59", [0x077e] = "\x01\x5e\x54", - [0x077f] = "\x02\x3a\x5c", [0x0780] = "\x01\x5e\x3e", - [0x0781] = "\x02\x3a\x55", [0x0782] = "\x01\x5e\x44", - [0x0783] = "\x01\x5e\x4a", [0x0784] = "\x01\x61\x43", - [0x0785] = "\x0e\x3a\x31", [0x0786] = "\x0e\x3a\x38", - [0x0787] = "\x01\x5e\x48", [0x0788] = "\x02\x3a\x52", - [0x0789] = "\x01\x5e\x55", [0x078a] = "\x01\x5e\x41", - [0x078b] = "\x01\x5e\x49", [0x078c] = "\x02\x3a\x5a", - [0x078d] = "\x02\x41\x7c", [0x078e] = "\x02\x3a\x5f", - [0x078f] = "\x02\x3a\x53", [0x0791] = "\x02\x3a\x4a", - [0x0792] = "\x02\x3a\x57", [0x0793] = "\x02\x3a\x51", - [0x0794] = "\x01\x5e\x47", [0x0795] = "\x02\x3a\x5d", - [0x0796] = "\x0e\x3a\x2e", [0x0797] = "\x0e\x3a\x2a", - [0x0798] = "\x01\x5e\x43", [0x0799] = "\x01\x5e\x57", - [0x079a] = "\x01\x5e\x50", [0x079b] = "\x0e\x3a\x33", - [0x079c] = "\x01\x5e\x45", [0x079d] = "\x01\x5e\x42", - [0x079e] = "\x0e\x3a\x40", [0x079f] = "\x01\x5e\x4d", - [0x07a0] = "\x0e\x3a\x34", [0x07a1] = "\x02\x3a\x5e", - [0x07a2] = "\x02\x3a\x50", [0x07a3] = "\x02\x3a\x56", - [0x07a4] = "\x02\x3a\x58", [0x07a5] = "\x02\x3a\x4c", - [0x07a6] = "\x02\x3a\x5b", [0x07a7] = "\x01\x5e\x3f", - [0x07a8] = "\x02\x3a\x4b", [0x07a9] = "\x0e\x3a\x42", - [0x07aa] = "\x01\x5e\x46", [0x07ab] = "\x01\x5e\x56", - [0x07ac] = "\x01\x5e\x52", [0x07ad] = "\x02\x3a\x4d", - [0x07ae] = "\x01\x5e\x4c", [0x07af] = "\x0e\x3a\x3b", - [0x07b1] = "\x01\x5e\x53", [0x07b2] = "\x01\x5e\x4f", - [0x07b3] = "\x01\x5e\x4b", [0x07b4] = "\x0e\x3a\x2f", - [0x07b5] = "\x02\x3a\x54", [0x07ba] = "\x0e\x67\x23", - [0x07bb] = "\x01\x5e\x51", [0x07bf] = "\x02\x41\x7a", - [0x07c0] = "\x02\x41\x76", [0x07c1] = "\x0e\x40\x51", - [0x07c2] = "\x02\x42\x27", [0x07c3] = "\x02\x41\x6f", - [0x07c4] = "\x02\x41\x78", [0x07c5] = "\x01\x63\x4c", - [0x07c6] = "\x01\x63\x4d", [0x07c7] = "\x01\x63\x45", - [0x07c8] = "\x02\x42\x23", [0x07c9] = "\x01\x63\x4f", - [0x07ca] = "\x02\x41\x74", [0x07cb] = "\x02\x41\x73", - [0x07cc] = "\x02\x41\x71", [0x07cd] = "\x02\x42\x25", - [0x07ce] = "\x01\x63\x43", [0x07cf] = "\x02\x41\x7d", - [0x07d0] = "\x02\x41\x72", [0x07d1] = "\x01\x63\x46", - [0x07d2] = "\x02\x41\x7b", [0x07d3] = "\x01\x63\x41", - [0x07d4] = "\x02\x41\x77", [0x07d5] = "\x02\x41\x7e", - [0x07d6] = "\x02\x42\x22", [0x07d7] = "\x0e\x40\x4e", - [0x07d9] = "\x02\x42\x26", [0x07da] = "\x01\x63\x4a", - [0x07db] = "\x02\x41\x70", [0x07dc] = "\x01\x63\x44", - [0x07dd] = "\x02\x41\x75", [0x07de] = "\x0e\x3a\x2b", - [0x07df] = "\x01\x63\x3f", [0x07e1] = "\x01\x63\x4b", - [0x07e2] = "\x02\x42\x21", [0x07e3] = "\x01\x63\x47", - [0x07e4] = "\x01\x63\x48", [0x07e5] = "\x01\x63\x4e", - [0x07e6] = "\x01\x63\x42", [0x07e7] = "\x01\x23\x21", - [0x07e8] = "\x01\x63\x40", [0x07e9] = "\x02\x41\x79", - [0x07ea] = "\x0e\x40\x4c", [0x07ee] = "\x0e\x67\x25", - [0x07ef] = "\x01\x63\x49", [0x07f0] = "\x0e\x67\x24", - [0x07f2] = "\x02\x42\x24", [0x07f4] = "\x0e\x64\x58", - [0x07f6] = "\x01\x68\x35", [0x07f7] = "\x01\x68\x30", - [0x07f8] = "\x0e\x46\x2e", [0x07f9] = "\x02\x49\x3c", - [0x07fa] = "\x02\x49\x38", [0x07fb] = "\x0e\x46\x28", - [0x07fc] = "\x02\x49\x32", [0x07fd] = "\x01\x68\x2a", - [0x07fe] = "\x01\x68\x26", [0x07ff] = "\x02\x49\x3b", - [0x0800] = "\x01\x68\x27", [0x0801] = "\x02\x49\x35", - [0x0802] = "\x02\x49\x37", [0x0803] = "\x0e\x46\x29", - [0x0804] = "\x02\x49\x3a", [0x0805] = "\x0e\x46\x36", - [0x0806] = "\x01\x68\x2c", [0x0807] = "\x0e\x46\x2c", - [0x0808] = "\x01\x68\x33", [0x0809] = "\x01\x68\x2d", - [0x080b] = "\x0e\x46\x2a", [0x080c] = "\x02\x49\x30", - [0x080d] = "\x01\x68\x2e", [0x080e] = "\x01\x68\x2f", - [0x080f] = "\x02\x49\x33", [0x0810] = "\x01\x68\x34", - [0x0811] = "\x0e\x46\x34", [0x0812] = "\x02\x49\x31", - [0x0813] = "\x02\x49\x36", [0x0814] = "\x01\x68\x2b", - [0x0815] = "\x02\x49\x2f", [0x0816] = "\x01\x68\x31", - [0x0817] = "\x01\x68\x29", [0x0818] = "\x0e\x46\x33", - [0x081b] = "\x01\x68\x28", [0x081c] = "\x02\x49\x34", - [0x081d] = "\x02\x49\x39", [0x081e] = "\x0e\x46\x31", - [0x081f] = "\x01\x68\x32", [0x0820] = "\x0e\x64\x5a", - [0x0822] = "\x0e\x64\x59", [0x0826] = "\x0e\x46\x50", - [0x0827] = "\x02\x49\x2e", [0x0828] = "\x0e\x46\x30", - [0x0829] = "\x01\x6c\x37", [0x082a] = "\x02\x4f\x6e", - [0x082b] = "\x0e\x4b\x41", [0x082c] = "\x02\x4f\x6b", - [0x082d] = "\x0e\x4b\x38", [0x082e] = "\x01\x6c\x31", - [0x082f] = "\x01\x6c\x3d", [0x0830] = "\x01\x6c\x3e", - [0x0831] = "\x0e\x4b\x3d", [0x0832] = "\x01\x6c\x34", - [0x0833] = "\x02\x4f\x69", [0x0834] = "\x01\x6c\x36", - [0x0835] = "\x02\x4f\x61", [0x0836] = "\x01\x6c\x3c", - [0x0837] = "\x0e\x4b\x44", [0x0838] = "\x02\x4f\x6d", - [0x0839] = "\x01\x6c\x33", [0x083a] = "\x02\x4f\x6f", - [0x083b] = "\x01\x6c\x32", [0x083d] = "\x02\x4f\x6a", - [0x083e] = "\x02\x4f\x6c", [0x083f] = "\x01\x6c\x35", - [0x0840] = "\x02\x4f\x68", [0x0841] = "\x02\x4f\x62", - [0x0842] = "\x02\x4f\x5f", [0x0844] = "\x0e\x4b\x3e", - [0x0845] = "\x02\x3a\x4f", [0x0846] = "\x02\x4f\x65", - [0x0847] = "\x0e\x4b\x37", [0x0848] = "\x02\x4f\x5e", - [0x0849] = "\x02\x4f\x64", [0x084a] = "\x02\x4f\x63", - [0x084b] = "\x0e\x4b\x3b", [0x084c] = "\x02\x4f\x60", - [0x084d] = "\x0e\x4b\x43", [0x084e] = "\x01\x6c\x39", - [0x084f] = "\x0e\x4b\x45", [0x0850] = "\x0e\x4b\x40", - [0x0851] = "\x0e\x46\x35", [0x0852] = "\x0e\x4b\x3c", - [0x0853] = "\x01\x6c\x38", [0x0854] = "\x0e\x4b\x39", - [0x0856] = "\x0e\x4b\x3f", [0x0857] = "\x01\x6c\x3a", - [0x0858] = "\x02\x4f\x66", [0x0859] = "\x01\x70\x3b", - [0x085a] = "\x02\x4f\x67", [0x085e] = "\x02\x56\x4f", - [0x085f] = "\x0e\x50\x3f", [0x0860] = "\x02\x56\x48", - [0x0861] = "\x0e\x50\x40", [0x0862] = "\x01\x70\x47", - [0x0863] = "\x02\x56\x4c", [0x0864] = "\x01\x70\x3f", - [0x0865] = "\x01\x70\x43", [0x0866] = "\x02\x56\x4b", - [0x0867] = "\x0e\x50\x3b", [0x0868] = "\x01\x70\x42", - [0x0869] = "\x01\x70\x3e", [0x086a] = "\x01\x70\x41", - [0x086b] = "\x01\x70\x3c", [0x086c] = "\x01\x70\x46", - [0x086d] = "\x02\x56\x4d", [0x086e] = "\x02\x56\x49", - [0x086f] = "\x01\x70\x45", [0x0870] = "\x02\x56\x47", - [0x0871] = "\x01\x70\x44", [0x0872] = "\x02\x56\x4e", - [0x0873] = "\x02\x56\x4a", [0x0874] = "\x01\x6c\x3b", - [0x0876] = "\x01\x70\x48", [0x0877] = "\x02\x56\x50", - [0x0878] = "\x01\x70\x40", [0x0879] = "\x01\x70\x3d", - [0x087b] = "\x0e\x50\x3d", [0x087d] = "\x0e\x54\x48", - [0x087e] = "\x02\x5c\x52", [0x087f] = "\x02\x5c\x54", - [0x0880] = "\x01\x73\x46", [0x0881] = "\x02\x5c\x55", - [0x0882] = "\x02\x5c\x53", [0x0883] = "\x02\x5c\x51", - [0x0884] = "\x02\x5c\x50", [0x0885] = "\x01\x73\x48", - [0x0886] = "\x02\x5c\x4f", [0x0887] = "\x01\x73\x49", - [0x0889] = "\x0e\x54\x49", [0x088a] = "\x0e\x54\x47", - [0x088c] = "\x02\x5c\x4d", [0x088d] = "\x02\x5c\x4e", - [0x088e] = "\x01\x73\x45", [0x088f] = "\x01\x73\x4a", - [0x0890] = "\x01\x73\x47", [0x0891] = "\x0e\x64\x5d", - [0x0892] = "\x0e\x64\x5b", [0x0893] = "\x02\x5c\x4c", - [0x0894] = "\x0e\x57\x5b", [0x0895] = "\x01\x76\x3c", - [0x0896] = "\x0e\x57\x5a", [0x0897] = "\x02\x61\x48", - [0x0898] = "\x02\x61\x46", [0x0899] = "\x02\x61\x4b", - [0x089a] = "\x02\x61\x49", [0x089b] = "\x0e\x57\x58", - [0x089c] = "\x02\x61\x47", [0x089d] = "\x02\x61\x4a", - [0x089e] = "\x0e\x57\x59", [0x089f] = "\x0e\x57\x57", - [0x08a0] = "\x0e\x57\x5c", [0x08a5] = "\x01\x78\x2c", - [0x08a6] = "\x02\x65\x3e", [0x08a7] = "\x02\x65\x3f", - [0x08a8] = "\x01\x78\x2d", [0x08aa] = "\x02\x65\x40", - [0x08ab] = "\x02\x65\x3c", [0x08ac] = "\x02\x65\x41", - [0x08ad] = "\x02\x65\x3d", [0x08ae] = "\x01\x76\x3d", - [0x08af] = "\x0e\x5a\x2d", [0x08b0] = "\x0e\x64\x5e", - [0x08b2] = "\x02\x68\x6b", [0x08b3] = "\x02\x68\x6d", - [0x08b4] = "\x01\x79\x64", [0x08b5] = "\x02\x68\x6c", - [0x08b6] = "\x01\x79\x63", [0x08b7] = "\x01\x79\x62", - [0x08b8] = "\x0e\x67\x26", [0x08b9] = "\x0e\x67\x27", - [0x08ba] = "\x0e\x64\x5c", [0x08bb] = "\x0e\x5e\x26", - [0x08bc] = "\x01\x79\x65", [0x08bd] = "\x02\x6b\x53", - [0x08be] = "\x02\x6b\x54", [0x08c0] = "\x01\x7a\x65", - [0x08c1] = "\x01\x7a\x64", [0x08c2] = "\x01\x7a\x66", - [0x08c3] = "\x02\x6b\x52", [0x08c4] = "\x0e\x67\x28", - [0x08c5] = "\x02\x6d\x46", [0x08c6] = "\x02\x6d\x45", - [0x08c7] = "\x0e\x5f\x40", [0x08c8] = "\x01\x7b\x59", - [0x08c9] = "\x01\x7b\x5b", [0x08ca] = "\x01\x7b\x5a", - [0x08cb] = "\x02\x6d\x47", [0x08cc] = "\x01\x7c\x34", - [0x08cd] = "\x02\x70\x34", [0x08d1] = "\x01\x7c\x5d", - [0x08d2] = "\x0e\x60\x71", [0x08d3] = "\x02\x70\x33", - [0x08d4] = "\x02\x70\x7c", [0x08d7] = "\x02\x21\x2a", - [0x08d8] = "\x0e\x21\x77", [0x08da] = "\x01\x46\x3f", - [0x08db] = "\x01\x46\x3e", [0x08dd] = "\x01\x47\x60", - [0x08de] = "\x01\x47\x5f", [0x08df] = "\x02\x22\x27", - [0x08e0] = "\x01\x47\x5e", [0x08e1] = "\x02\x22\x26", - [0x08e3] = "\x0e\x23\x3e", [0x08e4] = "\x01\x49\x5b", - [0x08e5] = "\x02\x23\x49", [0x08e6] = "\x0e\x25\x2c", - [0x08e7] = "\x02\x23\x48", [0x08e9] = "\x0e\x25\x26", - [0x08ea] = "\x01\x49\x59", [0x08eb] = "\x01\x49\x5c", - [0x08ec] = "\x0e\x25\x2b", [0x08ed] = "\x0e\x25\x2a", - [0x08ee] = "\x02\x23\x47", [0x08ef] = "\x0e\x25\x29", - [0x08f0] = "\x01\x49\x5a", [0x08f1] = "\x0e\x25\x48", - [0x08f2] = "\x0e\x25\x27", [0x08f3] = "\x0e\x25\x28", - [0x08f6] = "\x0e\x28\x22", [0x08f7] = "\x02\x25\x70", - [0x08f8] = "\x0e\x27\x7d", [0x08f9] = "\x02\x25\x71", - [0x08fa] = "\x01\x4c\x56", [0x08fb] = "\x0e\x27\x7c", - [0x08fc] = "\x0e\x28\x21", [0x08fd] = "\x0e\x27\x7b", - [0x08ff] = "\x01\x50\x4c", [0x0900] = "\x0e\x2b\x65", - [0x0901] = "\x02\x2e\x4a", [0x0902] = "\x02\x2e\x4b", - [0x0903] = "\x01\x54\x67", [0x0904] = "\x01\x54\x68", - [0x0905] = "\x0e\x30\x27", [0x0907] = "\x02\x34\x2f", - [0x0908] = "\x01\x59\x4e", [0x0909] = "\x01\x59\x50", - [0x090a] = "\x02\x34\x2e", [0x090b] = "\x01\x59\x4f", - [0x090c] = "\x02\x3a\x60", [0x090d] = "\x01\x5e\x58", - [0x090e] = "\x0e\x3a\x44", [0x090f] = "\x0e\x3a\x43", - [0x0912] = "\x01\x63\x50", [0x0913] = "\x01\x63\x51", - [0x0914] = "\x02\x42\x28", [0x0915] = "\x0e\x40\x52", - [0x0916] = "\x01\x68\x37", [0x0917] = "\x0e\x46\x37", - [0x0918] = "\x01\x68\x36", [0x091a] = "\x02\x4f\x70", - [0x091b] = "\x02\x56\x52", [0x091c] = "\x02\x56\x51", - [0x091d] = "\x0e\x5f\x41", [0x091e] = "\x02\x71\x5a", - [0x091f] = "\x01\x44\x48", [0x0920] = "\x02\x21\x39", - [0x0921] = "\x0e\x21\x61", [0x0922] = "\x02\x21\x4f", - [0x0923] = "\x02\x21\x50", [0x0924] = "\x0e\x22\x34", - [0x0927] = "\x0e\x62\x49", [0x0928] = "\x01\x47\x63", - [0x0929] = "\x01\x47\x67", [0x092a] = "\x02\x22\x29", - [0x092c] = "\x01\x47\x65", [0x092d] = "\x01\x47\x64", - [0x092e] = "\x02\x22\x28", [0x092f] = "\x01\x47\x66", - [0x0930] = "\x01\x47\x62", [0x0931] = "\x0e\x23\x41", - [0x0932] = "\x0e\x23\x42", [0x0933] = "\x01\x47\x61", - [0x0934] = "\x02\x22\x2a", [0x0935] = "\x0e\x23\x3f", - [0x0936] = "\x0e\x23\x40", [0x093b] = "\x01\x49\x66", - [0x093c] = "\x0e\x25\x31", [0x093d] = "\x0e\x25\x3e", - [0x093e] = "\x01\x49\x63", [0x093f] = "\x0e\x25\x30", - [0x0940] = "\x01\x49\x5f", [0x0941] = "\x02\x23\x4a", - [0x0942] = "\x0e\x25\x40", [0x0943] = "\x0e\x25\x36", - [0x0944] = "\x0e\x25\x2f", [0x0945] = "\x02\x23\x4b", - [0x0946] = "\x0e\x25\x3c", [0x0947] = "\x01\x49\x61", - [0x0948] = "\x0e\x25\x2d", [0x0949] = "\x02\x23\x4d", - [0x094a] = "\x01\x49\x5d", [0x094b] = "\x02\x23\x4e", - [0x094c] = "\x02\x23\x4c", [0x094d] = "\x01\x49\x60", - [0x094e] = "\x01\x49\x62", [0x094f] = "\x01\x49\x65", - [0x0950] = "\x01\x49\x64", [0x0951] = "\x01\x49\x5e", - [0x0952] = "\x02\x23\x4f", [0x0953] = "\x0e\x25\x32", - [0x0954] = "\x0e\x25\x41", [0x0955] = "\x0e\x25\x42", - [0x0956] = "\x0e\x25\x33", [0x0957] = "\x0e\x25\x38", - [0x0958] = "\x0e\x25\x37", [0x0959] = "\x0e\x64\x5f", - [0x095f] = "\x0e\x25\x35", [0x0961] = "\x01\x4c\x5b", - [0x0962] = "\x02\x25\x7e", [0x0963] = "\x0e\x28\x25", - [0x0964] = "\x01\x4c\x5d", [0x0965] = "\x0e\x28\x23", - [0x0966] = "\x01\x4c\x5c", [0x0967] = "\x0e\x28\x26", - [0x0968] = "\x02\x26\x21", [0x0969] = "\x01\x4c\x5a", - [0x096a] = "\x01\x4c\x59", [0x096b] = "\x02\x25\x75", - [0x096d] = "\x02\x25\x74", [0x096e] = "\x0e\x28\x28", - [0x096f] = "\x02\x25\x72", [0x0970] = "\x02\x25\x77", - [0x0971] = "\x02\x25\x76", [0x0972] = "\x02\x25\x73", - [0x0973] = "\x02\x25\x7c", [0x0974] = "\x02\x25\x7d", - [0x0975] = "\x02\x25\x7a", [0x0976] = "\x02\x25\x78", - [0x0977] = "\x01\x4c\x58", [0x0978] = "\x0e\x28\x29", - [0x097b] = "\x02\x25\x7b", [0x097c] = "\x01\x4c\x5e", - [0x097d] = "\x02\x26\x22", [0x097f] = "\x0e\x28\x2a", - [0x0980] = "\x02\x25\x79", [0x0981] = "\x0e\x28\x24", - [0x0982] = "\x01\x50\x4d", [0x0983] = "\x01\x4c\x57", - [0x098a] = "\x0e\x64\x60", [0x098b] = "\x01\x50\x4e", - [0x098c] = "\x02\x29\x55", [0x098d] = "\x0e\x2b\x69", - [0x098e] = "\x0e\x2b\x68", [0x098f] = "\x02\x29\x5b", - [0x0990] = "\x0e\x2b\x6c", [0x0991] = "\x0e\x2b\x67", - [0x0992] = "\x0e\x2b\x6a", [0x0993] = "\x01\x50\x54", - [0x0994] = "\x02\x29\x59", [0x0995] = "\x02\x29\x5f", - [0x0996] = "\x0e\x2b\x71", [0x0997] = "\x02\x29\x56", - [0x0998] = "\x02\x29\x5a", [0x0999] = "\x02\x29\x5c", - [0x099a] = "\x02\x29\x5e", [0x099b] = "\x02\x29\x58", - [0x099c] = "\x0e\x2b\x70", [0x099d] = "\x02\x29\x57", - [0x099e] = "\x02\x29\x52", [0x099f] = "\x02\x29\x53", - [0x09a0] = "\x01\x50\x4f", [0x09a1] = "\x0e\x2b\x6b", - [0x09a2] = "\x01\x50\x51", [0x09a3] = "\x01\x50\x50", - [0x09a4] = "\x02\x29\x54", [0x09a5] = "\x02\x29\x5d", - [0x09a6] = "\x0e\x2b\x6d", [0x09a7] = "\x0e\x2b\x72", - [0x09a8] = "\x0e\x2b\x6e", [0x09ac] = "\x0e\x2b\x66", - [0x09ae] = "\x01\x50\x53", [0x09b5] = "\x02\x29\x51", - [0x09b6] = "\x02\x2e\x55", [0x09b7] = "\x0e\x30\x2a", - [0x09b8] = "\x02\x2e\x54", [0x09b9] = "\x02\x2e\x59", - [0x09ba] = "\x02\x2e\x50", [0x09bb] = "\x0e\x30\x30", - [0x09bc] = "\x02\x2e\x53", [0x09bd] = "\x02\x2e\x52", - [0x09be] = "\x0e\x30\x2f", [0x09bf] = "\x02\x2e\x56", - [0x09c0] = "\x0e\x30\x38", [0x09c1] = "\x02\x2e\x5a", - [0x09c2] = "\x01\x54\x69", [0x09c3] = "\x01\x54\x6c", - [0x09c4] = "\x0e\x30\x34", [0x09c5] = "\x0e\x30\x35", - [0x09c6] = "\x02\x2e\x51", [0x09c7] = "\x02\x2e\x57", - [0x09c8] = "\x0e\x30\x33", [0x09c9] = "\x0e\x30\x28", - [0x09ca] = "\x0e\x30\x37", [0x09cb] = "\x01\x54\x6b", - [0x09cc] = "\x02\x2e\x4c", [0x09cd] = "\x0e\x30\x2b", - [0x09ce] = "\x01\x50\x52", [0x09cf] = "\x02\x34\x3d", - [0x09d0] = "\x02\x2e\x58", [0x09d1] = "\x0e\x30\x36", - [0x09d2] = "\x02\x2e\x4f", [0x09d4] = "\x01\x54\x6a", - [0x09d5] = "\x02\x2e\x4e", [0x09db] = "\x0e\x30\x32", - [0x09dc] = "\x02\x34\x34", [0x09dd] = "\x0e\x34\x6e", - [0x09de] = "\x0e\x34\x71", [0x09df] = "\x01\x59\x51", - [0x09e0] = "\x01\x59\x55", [0x09e1] = "\x02\x34\x44", - [0x09e2] = "\x02\x34\x32", [0x09e3] = "\x02\x34\x40", - [0x09e4] = "\x01\x59\x56", [0x09e5] = "\x02\x34\x42", - [0x09e6] = "\x0e\x34\x72", [0x09e7] = "\x02\x34\x48", - [0x09e8] = "\x0e\x34\x74", [0x09e9] = "\x02\x34\x4c", - [0x09ea] = "\x0e\x34\x69", [0x09ec] = "\x02\x34\x43", - [0x09ed] = "\x02\x34\x37", [0x09ee] = "\x02\x34\x3f", - [0x09ef] = "\x0e\x34\x6b", [0x09f0] = "\x02\x34\x4d", - [0x09f1] = "\x02\x34\x4b", [0x09f2] = "\x02\x34\x41", - [0x09f3] = "\x02\x34\x3c", [0x09f4] = "\x02\x34\x35", - [0x09f5] = "\x02\x3a\x68", [0x09f6] = "\x02\x34\x33", - [0x09f7] = "\x01\x59\x5a", [0x09f8] = "\x02\x34\x3a", - [0x09f9] = "\x01\x59\x5b", [0x09fa] = "\x01\x59\x57", - [0x09fb] = "\x02\x34\x30", [0x09fc] = "\x02\x34\x46", - [0x09fd] = "\x02\x34\x38", [0x09fe] = "\x0e\x34\x6f", - [0x09ff] = "\x0e\x34\x75", [0x0a00] = "\x02\x34\x36", - [0x0a01] = "\x02\x34\x49", [0x0a02] = "\x01\x59\x58", - [0x0a03] = "\x0e\x34\x76", [0x0a04] = "\x02\x34\x4f", - [0x0a05] = "\x01\x59\x52", [0x0a06] = "\x01\x59\x54", - [0x0a07] = "\x02\x34\x3e", [0x0a08] = "\x02\x34\x39", - [0x0a09] = "\x01\x54\x6d", [0x0a0a] = "\x01\x59\x53", - [0x0a0b] = "\x02\x34\x3b", [0x0a0c] = "\x02\x34\x4a", - [0x0a0d] = "\x02\x34\x4e", [0x0a0e] = "\x02\x34\x45", - [0x0a0f] = "\x0e\x64\x61", [0x0a10] = "\x02\x34\x47", - [0x0a12] = "\x0e\x64\x62", [0x0a13] = "\x0e\x64\x63", - [0x0a14] = "\x02\x34\x31", [0x0a18] = "\x0e\x3a\x4a", - [0x0a19] = "\x02\x3a\x63", [0x0a1a] = "\x0e\x3a\x45", - [0x0a1b] = "\x02\x3a\x6c", [0x0a1c] = "\x02\x3a\x6b", - [0x0a1d] = "\x01\x5e\x60", [0x0a1e] = "\x02\x3a\x64", - [0x0a1f] = "\x0e\x3a\x47", [0x0a20] = "\x01\x5e\x61", - [0x0a21] = "\x01\x5e\x5f", [0x0a22] = "\x0e\x3a\x50", - [0x0a23] = "\x02\x3a\x66", [0x0a24] = "\x01\x5e\x5c", - [0x0a25] = "\x02\x3a\x6a", [0x0a26] = "\x0e\x3a\x4c", - [0x0a27] = "\x02\x3a\x65", [0x0a28] = "\x02\x3a\x67", - [0x0a29] = "\x02\x3a\x61", [0x0a2a] = "\x01\x5e\x5a", - [0x0a2b] = "\x0e\x63\x36", [0x0a2c] = "\x02\x3a\x74", - [0x0a2d] = "\x02\x3a\x73", [0x0a2e] = "\x02\x3a\x70", - [0x0a2f] = "\x01\x5e\x59", [0x0a30] = "\x01\x5e\x5d", - [0x0a31] = "\x01\x5e\x5e", [0x0a32] = "\x02\x2e\x4d", - [0x0a33] = "\x02\x3a\x6d", [0x0a34] = "\x01\x5e\x5b", - [0x0a35] = "\x01\x59\x59", [0x0a36] = "\x02\x3a\x6f", - [0x0a37] = "\x02\x3a\x62", [0x0a38] = "\x02\x3a\x72", - [0x0a39] = "\x02\x3a\x71", [0x0a3a] = "\x0e\x3a\x4e", - [0x0a3b] = "\x02\x3a\x75", [0x0a3c] = "\x0e\x3a\x49", - [0x0a3d] = "\x02\x42\x36", [0x0a3e] = "\x0e\x3a\x4b", - [0x0a3f] = "\x02\x3a\x6e", [0x0a45] = "\x0e\x63\x37", - [0x0a47] = "\x0e\x64\x64", [0x0a48] = "\x02\x3a\x69", - [0x0a49] = "\x02\x42\x2e", [0x0a4a] = "\x01\x63\x5b", - [0x0a4b] = "\x01\x63\x5e", [0x0a4c] = "\x01\x63\x59", - [0x0a4d] = "\x02\x42\x2d", [0x0a4e] = "\x02\x42\x31", - [0x0a4f] = "\x02\x42\x2c", [0x0a50] = "\x0e\x40\x57", - [0x0a51] = "\x01\x63\x53", [0x0a52] = "\x01\x63\x5d", - [0x0a53] = "\x02\x42\x29", [0x0a54] = "\x01\x63\x57", - [0x0a55] = "\x02\x42\x30", [0x0a56] = "\x0e\x40\x5b", - [0x0a57] = "\x01\x63\x55", [0x0a58] = "\x01\x63\x54", - [0x0a59] = "\x02\x42\x33", [0x0a5a] = "\x01\x63\x56", - [0x0a5b] = "\x02\x42\x35", [0x0a5c] = "\x0e\x40\x56", - [0x0a5d] = "\x02\x42\x32", [0x0a5e] = "\x01\x63\x52", - [0x0a5f] = "\x0e\x40\x5e", [0x0a60] = "\x0e\x40\x5c", - [0x0a61] = "\x0e\x40\x58", [0x0a62] = "\x01\x63\x5c", - [0x0a63] = "\x02\x42\x37", [0x0a64] = "\x02\x42\x2b", - [0x0a65] = "\x02\x42\x34", [0x0a66] = "\x0e\x40\x5d", - [0x0a67] = "\x0e\x63\x43", [0x0a68] = "\x02\x42\x2a", - [0x0a69] = "\x0e\x40\x5a", [0x0a6a] = "\x0e\x40\x59", - [0x0a6b] = "\x01\x63\x58", [0x0a6c] = "\x0e\x40\x54", - [0x0a6d] = "\x01\x63\x5a", [0x0a6f] = "\x02\x42\x2f", - [0x0a71] = "\x02\x42\x38", [0x0a72] = "\x0e\x46\x43", - [0x0a73] = "\x0e\x46\x3e", [0x0a74] = "\x02\x49\x44", - [0x0a75] = "\x01\x68\x38", [0x0a76] = "\x02\x49\x4a", - [0x0a77] = "\x0e\x46\x42", [0x0a78] = "\x0e\x46\x3c", - [0x0a79] = "\x01\x68\x3d", [0x0a7a] = "\x02\x49\x46", - [0x0a7b] = "\x02\x49\x4d", [0x0a7c] = "\x02\x49\x3e", - [0x0a7d] = "\x01\x68\x3f", [0x0a7e] = "\x01\x68\x39", - [0x0a7f] = "\x02\x49\x43", [0x0a80] = "\x01\x6c\x3f", - [0x0a81] = "\x02\x49\x42", [0x0a82] = "\x02\x49\x4b", - [0x0a83] = "\x01\x68\x3a", [0x0a84] = "\x0e\x46\x3d", - [0x0a85] = "\x01\x68\x3e", [0x0a86] = "\x02\x49\x41", - [0x0a87] = "\x02\x49\x47", [0x0a88] = "\x02\x49\x4c", - [0x0a89] = "\x02\x49\x3d", [0x0a8a] = "\x01\x68\x3c", - [0x0a8b] = "\x02\x49\x45", [0x0a8c] = "\x0e\x46\x3a", - [0x0a8d] = "\x0e\x46\x45", [0x0a8e] = "\x02\x49\x49", - [0x0a8f] = "\x02\x49\x4f", [0x0a90] = "\x02\x49\x3f", - [0x0a91] = "\x02\x49\x48", [0x0a92] = "\x0e\x46\x38", - [0x0a93] = "\x01\x68\x3b", [0x0a94] = "\x02\x49\x4e", - [0x0a95] = "\x0e\x46\x41", [0x0a96] = "\x0e\x46\x44", - [0x0a97] = "\x0e\x46\x40", [0x0a98] = "\x02\x49\x40", - [0x0a9b] = "\x0e\x64\x65", [0x0a9c] = "\x01\x6c\x43", - [0x0a9d] = "\x02\x4f\x72", [0x0a9e] = "\x01\x6c\x41", - [0x0a9f] = "\x01\x6c\x40", [0x0aa0] = "\x02\x4f\x74", - [0x0aa1] = "\x02\x4f\x79", [0x0aa2] = "\x0e\x4b\x46", - [0x0aa3] = "\x02\x4f\x75", [0x0aa4] = "\x0e\x4b\x50", - [0x0aa5] = "\x02\x4f\x78", [0x0aa6] = "\x01\x6c\x46", - [0x0aa7] = "\x0e\x4b\x51", [0x0aa8] = "\x01\x70\x2e", - [0x0aa9] = "\x01\x6c\x45", [0x0aaa] = "\x0e\x4b\x4b", - [0x0aab] = "\x02\x4f\x71", [0x0aac] = "\x02\x4f\x77", - [0x0aad] = "\x0e\x46\x3f", [0x0aae] = "\x01\x6c\x44", - [0x0aaf] = "\x02\x4f\x76", [0x0ab0] = "\x0e\x4b\x4d", - [0x0ab1] = "\x02\x4f\x73", [0x0ab2] = "\x0e\x4b\x49", - [0x0ab3] = "\x01\x6c\x42", [0x0ab4] = "\x0e\x4b\x4f", - [0x0ab5] = "\x0e\x4b\x4c", [0x0ab7] = "\x0e\x4b\x47", - [0x0aba] = "\x02\x56\x57", [0x0abb] = "\x0e\x50\x4a", - [0x0abc] = "\x02\x56\x59", [0x0abd] = "\x02\x56\x54", - [0x0abe] = "\x01\x70\x4a", [0x0abf] = "\x02\x56\x56", - [0x0ac0] = "\x0e\x50\x4b", [0x0ac1] = "\x01\x70\x49", - [0x0ac2] = "\x02\x56\x58", [0x0ac3] = "\x0e\x50\x48", - [0x0ac4] = "\x0e\x50\x4c", [0x0ac5] = "\x01\x70\x4c", - [0x0ac6] = "\x02\x56\x5a", [0x0ac7] = "\x01\x70\x4b", - [0x0ac8] = "\x02\x56\x53", [0x0ac9] = "\x02\x56\x55", - [0x0aca] = "\x0e\x50\x49", [0x0acd] = "\x0e\x54\x4b", - [0x0ace] = "\x01\x73\x4e", [0x0acf] = "\x02\x5c\x58", - [0x0ad0] = "\x0e\x54\x4c", [0x0ad1] = "\x01\x73\x4d", - [0x0ad2] = "\x02\x5c\x59", [0x0ad3] = "\x01\x73\x4c", - [0x0ad4] = "\x02\x5c\x57", [0x0ad5] = "\x01\x73\x4b", - [0x0ad6] = "\x02\x5c\x56", [0x0ad8] = "\x01\x76\x3f", - [0x0ad9] = "\x01\x76\x3e", [0x0ada] = "\x02\x65\x42", - [0x0adb] = "\x02\x65\x44", [0x0adc] = "\x0e\x5a\x2f", - [0x0add] = "\x02\x65\x43", [0x0ade] = "\x01\x78\x2e", - [0x0adf] = "\x01\x78\x2f", [0x0ae0] = "\x0e\x5a\x2e", - [0x0ae2] = "\x01\x78\x30", [0x0ae3] = "\x02\x68\x6e", - [0x0ae4] = "\x01\x79\x66", [0x0ae6] = "\x0e\x5e\x28", - [0x0ae7] = "\x02\x6f\x22", [0x0ae8] = "\x02\x6f\x21", - [0x0ae9] = "\x01\x7c\x5e", [0x0aeb] = "\x01\x44\x49", - [0x0aec] = "\x01\x45\x31", [0x0aee] = "\x0e\x23\x43", - [0x0aef] = "\x01\x49\x67", [0x0af0] = "\x0e\x25\x45", - [0x0af1] = "\x0e\x25\x43", [0x0af2] = "\x0e\x25\x44", - [0x0af3] = "\x0e\x28\x2d", [0x0af4] = "\x02\x29\x60", - [0x0af5] = "\x0e\x2b\x77", [0x0af7] = "\x0e\x34\x77", - [0x0af9] = "\x01\x5e\x62", [0x0afa] = "\x01\x5e\x63", - [0x0afb] = "\x0e\x3a\x52", [0x0afc] = "\x02\x42\x39", - [0x0afd] = "\x01\x68\x40", [0x0afe] = "\x02\x49\x50", - [0x0aff] = "\x02\x4f\x7a", [0x0b00] = "\x0e\x64\x66", - [0x0b01] = "\x0e\x50\x4d", [0x0b02] = "\x0e\x21\x39", - [0x0b03] = "\x02\x21\x3a", [0x0b04] = "\x0e\x22\x35", - [0x0b05] = "\x0e\x23\x44", [0x0b06] = "\x02\x23\x50", - [0x0b08] = "\x0e\x2b\x7a", [0x0b09] = "\x0e\x2b\x79", - [0x0b0a] = "\x0e\x21\x3a", [0x0b0b] = "\x0e\x25\x46", - [0x0b0c] = "\x02\x26\x23", [0x0b0d] = "\x02\x29\x61", - [0x0b0e] = "\x02\x2e\x5b", [0x0b0f] = "\x01\x54\x6e", - [0x0b10] = "\x0e\x46\x46", [0x0b11] = "\x0e\x65\x60", - [0x0b12] = "\x02\x65\x45", [0x0b14] = "\x01\x7a\x67", - [0x0b15] = "\x01\x44\x4a", [0x0b16] = "\x01\x46\x40", - [0x0b17] = "\x02\x21\x51", [0x0b18] = "\x0e\x22\x36", - [0x0b19] = "\x01\x47\x68", [0x0b1a] = "\x01\x47\x69", - [0x0b1c] = "\x01\x4c\x5f", [0x0b1f] = "\x0e\x34\x79", - [0x0b20] = "\x01\x59\x5c", [0x0b22] = "\x01\x68\x42", - [0x0b23] = "\x0e\x40\x5f", [0x0b24] = "\x01\x68\x43", - [0x0b25] = "\x01\x68\x41", [0x0b26] = "\x0e\x4b\x53", - [0x0b27] = "\x01\x44\x4b", [0x0b29] = "\x01\x45\x32", - [0x0b2a] = "\x01\x45\x34", [0x0b2b] = "\x01\x45\x33", - [0x0b2c] = "\x02\x21\x3b", [0x0b2d] = "\x01\x45\x35", - [0x0b2e] = "\x01\x46\x41", [0x0b2f] = "\x02\x21\x52", - [0x0b30] = "\x0e\x22\x38", [0x0b31] = "\x01\x46\x42", - [0x0b32] = "\x0e\x22\x37", [0x0b34] = "\x0e\x22\x39", - [0x0b36] = "\x0e\x23\x47", [0x0b37] = "\x01\x47\x6a", - [0x0b38] = "\x01\x47\x6b", [0x0b3c] = "\x02\x22\x2b", - [0x0b3d] = "\x0e\x25\x49", [0x0b3e] = "\x01\x49\x68", - [0x0b40] = "\x02\x23\x51", [0x0b44] = "\x01\x4c\x63", - [0x0b45] = "\x02\x26\x24", [0x0b47] = "\x01\x4c\x61", - [0x0b48] = "\x01\x4c\x62", [0x0b49] = "\x01\x4c\x60", - [0x0b4a] = "\x02\x2e\x5c", [0x0b4b] = "\x0e\x28\x2e", - [0x0b4c] = "\x0e\x28\x2f", [0x0b4d] = "\x0e\x64\x67", - [0x0b4e] = "\x01\x50\x58", [0x0b4f] = "\x01\x50\x57", - [0x0b50] = "\x01\x50\x59", [0x0b51] = "\x01\x50\x56", - [0x0b52] = "\x0e\x2b\x7c", [0x0b53] = "\x02\x29\x62", - [0x0b54] = "\x01\x4c\x64", [0x0b55] = "\x01\x50\x55", - [0x0b57] = "\x01\x54\x6f", [0x0b58] = "\x01\x54\x70", - [0x0b5a] = "\x01\x54\x71", [0x0b5b] = "\x0e\x34\x7b", - [0x0b5c] = "\x02\x34\x50", [0x0b5d] = "\x0e\x34\x7c", - [0x0b5e] = "\x0e\x34\x7d", [0x0b60] = "\x01\x5e\x64", - [0x0b61] = "\x02\x3a\x76", [0x0b62] = "\x01\x59\x5d", - [0x0b63] = "\x0e\x3a\x53", [0x0b64] = "\x0e\x3a\x54", - [0x0b66] = "\x0e\x40\x60", [0x0b67] = "\x01\x63\x5f", - [0x0b68] = "\x0e\x40\x61", [0x0b69] = "\x01\x68\x45", - [0x0b6a] = "\x01\x68\x44", [0x0b6b] = "\x02\x49\x51", - [0x0b6c] = "\x0e\x46\x48", [0x0b6d] = "\x01\x6c\x47", - [0x0b6e] = "\x01\x70\x4d", [0x0b70] = "\x02\x61\x4c", - [0x0b71] = "\x02\x6d\x48", [0x0b72] = "\x02\x6f\x23", - [0x0b73] = "\x01\x44\x4c", [0x0b74] = "\x01\x46\x43", - [0x0b75] = "\x0e\x22\x3b", [0x0b76] = "\x01\x46\x44", - [0x0b77] = "\x02\x22\x31", [0x0b78] = "\x01\x47\x6d", - [0x0b79] = "\x01\x47\x70", [0x0b7a] = "\x0e\x23\x4b", - [0x0b7b] = "\x02\x22\x2f", [0x0b7c] = "\x02\x22\x2d", - [0x0b7d] = "\x01\x47\x6f", [0x0b7e] = "\x02\x22\x30", - [0x0b7f] = "\x02\x22\x32", [0x0b80] = "\x02\x22\x2c", - [0x0b81] = "\x01\x47\x72", [0x0b82] = "\x01\x47\x71", - [0x0b83] = "\x01\x47\x6e", [0x0b84] = "\x01\x47\x6c", - [0x0b85] = "\x02\x22\x2e", [0x0b86] = "\x0e\x23\x4d", - [0x0b89] = "\x0e\x25\x55", [0x0b8a] = "\x01\x49\x73", - [0x0b8c] = "\x0e\x25\x4c", [0x0b8d] = "\x01\x49\x70", - [0x0b8e] = "\x02\x23\x56", [0x0b8f] = "\x02\x23\x59", - [0x0b90] = "\x02\x23\x58", [0x0b92] = "\x01\x49\x6a", - [0x0b93] = "\x01\x49\x72", [0x0b94] = "\x0e\x25\x4b", - [0x0b96] = "\x01\x49\x6f", [0x0b97] = "\x02\x23\x55", - [0x0b98] = "\x02\x23\x53", [0x0b99] = "\x01\x49\x6e", - [0x0b9a] = "\x0e\x25\x56", [0x0b9b] = "\x0e\x25\x53", - [0x0b9c] = "\x0e\x25\x4e", [0x0b9d] = "\x01\x49\x69", - [0x0b9e] = "\x01\x49\x6c", [0x0b9f] = "\x0e\x25\x51", - [0x0ba0] = "\x02\x23\x54", [0x0ba1] = "\x02\x23\x5b", - [0x0ba2] = "\x02\x23\x57", [0x0ba3] = "\x01\x49\x6d", - [0x0ba4] = "\x01\x49\x71", [0x0ba5] = "\x01\x49\x74", - [0x0ba6] = "\x02\x23\x52", [0x0ba7] = "\x02\x23\x5a", - [0x0ba8] = "\x01\x49\x6b", [0x0bac] = "\x0e\x28\x41", - [0x0bad] = "\x0e\x28\x33", [0x0bae] = "\x01\x4c\x69", - [0x0baf] = "\x01\x4c\x71", [0x0bb0] = "\x0e\x28\x38", - [0x0bb1] = "\x02\x26\x30", [0x0bb2] = "\x02\x26\x29", - [0x0bb3] = "\x01\x4c\x72", [0x0bb4] = "\x02\x26\x34", - [0x0bb5] = "\x02\x26\x25", [0x0bb6] = "\x02\x26\x2c", - [0x0bb7] = "\x0e\x28\x45", [0x0bb8] = "\x0e\x28\x40", - [0x0bb9] = "\x01\x4c\x68", [0x0bba] = "\x02\x26\x26", - [0x0bbb] = "\x01\x4c\x66", [0x0bbc] = "\x02\x26\x2d", - [0x0bbd] = "\x02\x26\x31", [0x0bbe] = "\x01\x4c\x65", - [0x0bbf] = "\x0e\x28\x3d", [0x0bc0] = "\x02\x26\x32", - [0x0bc1] = "\x02\x26\x2b", [0x0bc2] = "\x0e\x28\x37", - [0x0bc3] = "\x02\x26\x2e", [0x0bc4] = "\x0e\x28\x35", - [0x0bc5] = "\x01\x4c\x74", [0x0bc6] = "\x01\x4c\x6b", - [0x0bc7] = "\x02\x26\x35", [0x0bc8] = "\x02\x26\x33", - [0x0bc9] = "\x0e\x28\x3f", [0x0bca] = "\x01\x4c\x70", - [0x0bcb] = "\x01\x4c\x6e", [0x0bcc] = "\x02\x26\x2a", - [0x0bcd] = "\x01\x4c\x6d", [0x0bce] = "\x02\x26\x28", - [0x0bcf] = "\x02\x26\x27", [0x0bd0] = "\x01\x4c\x6c", - [0x0bd1] = "\x01\x4c\x6a", [0x0bd2] = "\x01\x4c\x73", - [0x0bd3] = "\x01\x4c\x6f", [0x0bd4] = "\x01\x4c\x67", - [0x0bd5] = "\x0e\x2c\x26", [0x0bd6] = "\x02\x26\x2f", - [0x0bd7] = "\x0e\x28\x46", [0x0bd8] = "\x01\x50\x5b", - [0x0bd9] = "\x0e\x2c\x2d", [0x0bda] = "\x01\x50\x62", - [0x0bdb] = "\x02\x29\x70", [0x0bdc] = "\x01\x50\x5a", - [0x0bdd] = "\x02\x29\x68", [0x0bde] = "\x02\x29\x64", - [0x0bdf] = "\x0e\x2c\x21", [0x0be0] = "\x02\x29\x74", - [0x0be1] = "\x02\x29\x63", [0x0be2] = "\x0e\x2c\x2c", - [0x0be3] = "\x01\x50\x5d", [0x0be4] = "\x02\x29\x6d", - [0x0be5] = "\x01\x50\x60", [0x0be6] = "\x01\x50\x63", - [0x0be7] = "\x0e\x2c\x2e", [0x0be8] = "\x01\x50\x5e", - [0x0be9] = "\x02\x29\x71", [0x0bea] = "\x01\x50\x61", - [0x0beb] = "\x0e\x2c\x23", [0x0bec] = "\x01\x54\x78", - [0x0bed] = "\x02\x29\x77", [0x0bee] = "\x02\x29\x65", - [0x0bef] = "\x0e\x2c\x24", [0x0bf0] = "\x0e\x2c\x25", - [0x0bf1] = "\x02\x29\x67", [0x0bf2] = "\x02\x29\x6e", - [0x0bf3] = "\x02\x29\x72", [0x0bf4] = "\x02\x29\x76", - [0x0bf5] = "\x02\x29\x73", [0x0bf6] = "\x02\x29\x6c", - [0x0bf7] = "\x02\x29\x6f", [0x0bf8] = "\x0e\x2c\x2b", - [0x0bf9] = "\x0e\x2c\x29", [0x0bfa] = "\x02\x29\x69", - [0x0bfb] = "\x01\x50\x65", [0x0bfc] = "\x02\x29\x6b", - [0x0bfd] = "\x02\x29\x6a", [0x0bfe] = "\x02\x29\x75", - [0x0bff] = "\x01\x50\x5c", [0x0c00] = "\x02\x29\x66", - [0x0c01] = "\x01\x50\x64", [0x0c02] = "\x0e\x2c\x2a", - [0x0c03] = "\x01\x50\x5f", [0x0c04] = "\x0e\x2c\x28", - [0x0c09] = "\x01\x54\x7e", [0x0c0a] = "\x02\x2e\x64", - [0x0c0b] = "\x0e\x30\x40", [0x0c0c] = "\x01\x54\x7d", - [0x0c0d] = "\x0e\x2c\x27", [0x0c0f] = "\x02\x2e\x62", - [0x0c10] = "\x0e\x62\x70", [0x0c11] = "\x01\x54\x72", - [0x0c12] = "\x0e\x30\x4f", [0x0c13] = "\x01\x54\x77", - [0x0c14] = "\x0e\x30\x4a", [0x0c15] = "\x02\x2e\x61", - [0x0c16] = "\x02\x2e\x5e", [0x0c17] = "\x02\x2e\x63", - [0x0c18] = "\x01\x54\x73", [0x0c19] = "\x02\x2e\x5d", - [0x0c1a] = "\x0e\x30\x4e", [0x0c1b] = "\x01\x54\x76", - [0x0c1c] = "\x01\x54\x74", [0x0c1d] = "\x0e\x30\x3e", - [0x0c1e] = "\x02\x2e\x65", [0x0c1f] = "\x01\x54\x75", - [0x0c20] = "\x01\x54\x79", [0x0c21] = "\x0e\x30\x3b", - [0x0c22] = "\x0e\x30\x45", [0x0c23] = "\x01\x54\x7a", - [0x0c24] = "\x0e\x30\x48", [0x0c25] = "\x01\x54\x7c", - [0x0c26] = "\x0e\x30\x52", [0x0c29] = "\x01\x54\x7b", - [0x0c2a] = "\x0e\x30\x3c", [0x0c2b] = "\x0e\x35\x22", - [0x0c2c] = "\x0e\x35\x38", [0x0c2d] = "\x02\x2e\x5f", - [0x0c2e] = "\x02\x2e\x60", [0x0c2f] = "\x0e\x30\x4d", - [0x0c31] = "\x0e\x30\x4b", [0x0c33] = "\x02\x2e\x66", - [0x0c35] = "\x02\x34\x57", [0x0c36] = "\x01\x59\x5e", - [0x0c37] = "\x02\x3b\x26", [0x0c38] = "\x02\x34\x56", - [0x0c39] = "\x02\x34\x69", [0x0c3a] = "\x0e\x35\x28", - [0x0c3b] = "\x0e\x35\x24", [0x0c3c] = "\x01\x59\x64", - [0x0c3d] = "\x0e\x35\x31", [0x0c3e] = "\x02\x34\x67", - [0x0c3f] = "\x0e\x35\x33", [0x0c40] = "\x01\x59\x63", - [0x0c41] = "\x01\x59\x5f", [0x0c42] = "\x02\x34\x70", - [0x0c43] = "\x02\x34\x60", [0x0c44] = "\x02\x34\x63", - [0x0c45] = "\x0e\x35\x2e", [0x0c46] = "\x01\x59\x67", - [0x0c47] = "\x02\x34\x6d", [0x0c48] = "\x02\x34\x65", - [0x0c49] = "\x01\x59\x60", [0x0c4a] = "\x01\x59\x68", - [0x0c4b] = "\x0e\x35\x2a", [0x0c4c] = "\x02\x34\x6a", - [0x0c4d] = "\x02\x34\x68", [0x0c4e] = "\x0e\x35\x2f", - [0x0c4f] = "\x0e\x35\x3b", [0x0c50] = "\x02\x34\x59", - [0x0c51] = "\x02\x34\x6e", [0x0c52] = "\x02\x34\x62", - [0x0c53] = "\x02\x34\x5d", [0x0c54] = "\x0e\x35\x3a", - [0x0c55] = "\x02\x34\x53", [0x0c56] = "\x02\x34\x6f", - [0x0c57] = "\x02\x34\x5f", [0x0c58] = "\x02\x34\x52", - [0x0c59] = "\x0e\x35\x39", [0x0c5a] = "\x01\x59\x66", - [0x0c5b] = "\x02\x34\x64", [0x0c5c] = "\x02\x34\x71", - [0x0c5d] = "\x02\x34\x61", [0x0c5e] = "\x02\x34\x55", - [0x0c5f] = "\x02\x34\x5a", [0x0c60] = "\x02\x34\x51", - [0x0c61] = "\x0e\x35\x27", [0x0c62] = "\x01\x59\x65", - [0x0c63] = "\x0e\x35\x3c", [0x0c64] = "\x02\x34\x5e", - [0x0c65] = "\x02\x34\x5b", [0x0c66] = "\x01\x59\x61", - [0x0c67] = "\x02\x34\x54", [0x0c68] = "\x0e\x35\x30", - [0x0c69] = "\x02\x34\x6c", [0x0c6a] = "\x01\x59\x62", - [0x0c6b] = "\x0e\x35\x2b", [0x0c6c] = "\x02\x34\x5c", - [0x0c6d] = "\x02\x34\x58", [0x0c6e] = "\x0e\x35\x29", - [0x0c6f] = "\x0e\x35\x34", [0x0c70] = "\x02\x34\x6b", - [0x0c71] = "\x0e\x35\x32", [0x0c73] = "\x0e\x35\x37", - [0x0c75] = "\x0e\x35\x35", [0x0c77] = "\x01\x5e\x65", - [0x0c78] = "\x02\x3a\x7d", [0x0c79] = "\x0e\x3a\x75", - [0x0c7a] = "\x02\x3a\x7a", [0x0c7b] = "\x02\x3b\x2d", - [0x0c7c] = "\x02\x3b\x21", [0x0c7d] = "\x02\x3b\x2e", - [0x0c7e] = "\x0e\x3a\x7c", [0x0c7f] = "\x01\x5e\x67", - [0x0c80] = "\x0e\x3a\x63", [0x0c81] = "\x0e\x3a\x61", - [0x0c82] = "\x0e\x3a\x58", [0x0c83] = "\x02\x3b\x2a", - [0x0c84] = "\x02\x3b\x27", [0x0c85] = "\x0e\x3a\x5b", - [0x0c86] = "\x0e\x3a\x77", [0x0c87] = "\x0e\x3a\x72", - [0x0c88] = "\x0e\x3a\x59", [0x0c89] = "\x0e\x3a\x60", - [0x0c8a] = "\x02\x3b\x28", [0x0c8b] = "\x02\x3b\x2b", - [0x0c8c] = "\x02\x3b\x2f", [0x0c8d] = "\x0e\x3a\x7b", - [0x0c8e] = "\x02\x34\x66", [0x0c8f] = "\x02\x3b\x31", - [0x0c90] = "\x02\x42\x4d", [0x0c91] = "\x0e\x3a\x66", - [0x0c92] = "\x01\x5e\x68", [0x0c93] = "\x02\x3b\x32", - [0x0c94] = "\x02\x3a\x78", [0x0c95] = "\x02\x3b\x24", - [0x0c96] = "\x0e\x3a\x62", [0x0c97] = "\x02\x3b\x29", - [0x0c98] = "\x0e\x3a\x5c", [0x0c99] = "\x0e\x3a\x5e", - [0x0c9a] = "\x01\x5e\x66", [0x0c9b] = "\x01\x5e\x69", - [0x0c9c] = "\x02\x3b\x30", [0x0c9d] = "\x02\x3b\x33", - [0x0c9e] = "\x02\x3a\x7c", [0x0c9f] = "\x02\x3a\x79", - [0x0ca0] = "\x0e\x3a\x73", [0x0ca1] = "\x0e\x3a\x5a", - [0x0ca2] = "\x02\x3a\x7b", [0x0ca3] = "\x0e\x3a\x57", - [0x0ca4] = "\x0e\x3a\x7a", [0x0ca5] = "\x02\x3b\x22", - [0x0ca6] = "\x02\x3a\x7e", [0x0ca7] = "\x01\x5e\x6a", - [0x0ca8] = "\x0e\x3a\x56", [0x0ca9] = "\x02\x3b\x2c", - [0x0caa] = "\x0e\x3a\x79", [0x0cab] = "\x0e\x3a\x78", - [0x0cac] = "\x02\x3b\x23", [0x0cae] = "\x02\x3b\x25", - [0x0caf] = "\x02\x3a\x77", [0x0cb0] = "\x02\x42\x41", - [0x0cb1] = "\x02\x42\x3f", [0x0cb2] = "\x01\x63\x68", - [0x0cb3] = "\x01\x63\x66", [0x0cb4] = "\x02\x42\x49", - [0x0cb5] = "\x02\x42\x40", [0x0cb6] = "\x02\x42\x4a", - [0x0cb7] = "\x02\x42\x46", [0x0cb8] = "\x02\x42\x3e", - [0x0cb9] = "\x02\x42\x4c", [0x0cba] = "\x02\x42\x3d", - [0x0cbb] = "\x02\x42\x44", [0x0cbc] = "\x01\x63\x65", - [0x0cbd] = "\x01\x63\x64", [0x0cbe] = "\x01\x63\x63", - [0x0cbf] = "\x02\x42\x42", [0x0cc0] = "\x02\x42\x47", - [0x0cc1] = "\x01\x63\x60", [0x0cc2] = "\x01\x63\x67", - [0x0cc3] = "\x0e\x40\x67", [0x0cc4] = "\x02\x42\x3b", - [0x0cc5] = "\x0e\x40\x66", [0x0cc6] = "\x02\x42\x45", - [0x0cc7] = "\x02\x42\x3a", [0x0cc8] = "\x02\x42\x43", - [0x0cc9] = "\x01\x63\x61", [0x0cca] = "\x02\x42\x48", - [0x0ccb] = "\x02\x42\x3c", [0x0ccc] = "\x01\x63\x62", - [0x0ccd] = "\x02\x42\x4b", [0x0cce] = "\x0e\x40\x64", - [0x0ccf] = "\x0e\x3a\x6b", [0x0cd0] = "\x0e\x40\x6a", - [0x0cd1] = "\x0e\x64\x68", [0x0cd3] = "\x0e\x64\x69", - [0x0cd5] = "\x02\x49\x55", [0x0cd6] = "\x01\x68\x4a", - [0x0cd7] = "\x01\x68\x49", [0x0cd8] = "\x01\x68\x4b", - [0x0cd9] = "\x02\x49\x61", [0x0cda] = "\x02\x49\x57", - [0x0cdb] = "\x02\x49\x5d", [0x0cdc] = "\x02\x49\x52", - [0x0cdd] = "\x02\x49\x60", [0x0cde] = "\x02\x49\x5f", - [0x0cdf] = "\x02\x49\x63", [0x0ce0] = "\x02\x49\x5c", - [0x0ce1] = "\x01\x68\x46", [0x0ce2] = "\x02\x49\x5b", - [0x0ce3] = "\x01\x68\x4c", [0x0ce4] = "\x0e\x46\x4c", - [0x0ce5] = "\x02\x49\x54", [0x0ce6] = "\x01\x68\x47", - [0x0ce7] = "\x0e\x46\x4a", [0x0ce8] = "\x02\x49\x62", - [0x0ce9] = "\x01\x68\x48", [0x0cea] = "\x02\x49\x56", - [0x0ceb] = "\x02\x49\x59", [0x0cec] = "\x02\x49\x5e", - [0x0ced] = "\x02\x49\x58", [0x0cee] = "\x02\x49\x53", - [0x0cef] = "\x0e\x46\x4f", [0x0cf0] = "\x0e\x46\x53", - [0x0cf3] = "\x02\x49\x5a", [0x0cf4] = "\x02\x4f\x7c", - [0x0cf5] = "\x01\x6c\x4b", [0x0cf6] = "\x02\x50\x21", - [0x0cf7] = "\x02\x4f\x7e", [0x0cf8] = "\x02\x50\x23", - [0x0cf9] = "\x02\x50\x25", [0x0cfa] = "\x0e\x4b\x5c", - [0x0cfb] = "\x01\x6c\x49", [0x0cfc] = "\x0e\x4b\x58", - [0x0cfd] = "\x02\x4f\x7d", [0x0cfe] = "\x0e\x4b\x54", - [0x0cff] = "\x02\x4f\x7b", [0x0d00] = "\x0e\x4b\x5e", - [0x0d01] = "\x02\x50\x26", [0x0d02] = "\x02\x50\x24", - [0x0d03] = "\x02\x50\x22", [0x0d04] = "\x0e\x4b\x56", - [0x0d05] = "\x02\x50\x28", [0x0d06] = "\x0e\x4b\x5a", - [0x0d07] = "\x02\x50\x27", [0x0d08] = "\x01\x6c\x4d", - [0x0d09] = "\x01\x6c\x48", [0x0d0a] = "\x0e\x4b\x5b", - [0x0d0b] = "\x01\x6c\x4a", [0x0d0c] = "\x01\x6c\x4c", - [0x0d0d] = "\x0e\x4b\x5d", [0x0d0e] = "\x0e\x4b\x5f", - [0x0d0f] = "\x02\x50\x29", [0x0d10] = "\x02\x56\x61", - [0x0d11] = "\x0e\x50\x50", [0x0d12] = "\x0e\x50\x53", - [0x0d13] = "\x02\x56\x60", [0x0d14] = "\x02\x56\x5f", - [0x0d15] = "\x0e\x50\x51", [0x0d16] = "\x02\x56\x62", - [0x0d17] = "\x02\x56\x5b", [0x0d18] = "\x0e\x50\x4f", - [0x0d19] = "\x02\x56\x5c", [0x0d1a] = "\x02\x56\x64", - [0x0d1b] = "\x02\x56\x5d", [0x0d1c] = "\x0e\x50\x54", - [0x0d1d] = "\x01\x70\x4e", [0x0d1e] = "\x02\x56\x66", - [0x0d1f] = "\x0e\x50\x4e", [0x0d20] = "\x02\x56\x65", - [0x0d21] = "\x02\x56\x5e", [0x0d22] = "\x0e\x50\x56", - [0x0d23] = "\x02\x5c\x5d", [0x0d24] = "\x01\x73\x51", - [0x0d25] = "\x02\x5c\x5b", [0x0d26] = "\x02\x5c\x60", - [0x0d27] = "\x02\x5c\x5f", [0x0d28] = "\x02\x56\x63", - [0x0d29] = "\x0e\x54\x50", [0x0d2a] = "\x01\x73\x50", - [0x0d2b] = "\x0e\x54\x4e", [0x0d2c] = "\x02\x5c\x5e", - [0x0d2d] = "\x02\x5c\x5a", [0x0d2e] = "\x02\x5c\x62", - [0x0d2f] = "\x02\x5c\x61", [0x0d30] = "\x01\x73\x4f", - [0x0d31] = "\x0e\x54\x52", [0x0d32] = "\x02\x5c\x5c", - [0x0d33] = "\x0e\x54\x4f", [0x0d34] = "\x01\x70\x4f", - [0x0d35] = "\x0e\x54\x51", [0x0d37] = "\x0e\x54\x53", - [0x0d38] = "\x01\x76\x40", [0x0d39] = "\x0e\x5a\x31", - [0x0d3a] = "\x0e\x57\x61", [0x0d3b] = "\x0e\x57\x5e", - [0x0d3c] = "\x02\x61\x4d", [0x0d3d] = "\x02\x65\x46", - [0x0d3e] = "\x02\x65\x47", [0x0d3f] = "\x02\x65\x48", - [0x0d40] = "\x01\x79\x67", [0x0d42] = "\x0e\x5c\x36", - [0x0d43] = "\x01\x79\x68", [0x0d44] = "\x0e\x5c\x39", - [0x0d45] = "\x02\x68\x6f", [0x0d46] = "\x0e\x5c\x3a", - [0x0d47] = "\x02\x6b\x56", [0x0d48] = "\x02\x6b\x55", - [0x0d49] = "\x0e\x5e\x29", [0x0d4a] = "\x0e\x5f\x42", - [0x0d4b] = "\x02\x6d\x49", [0x0d4c] = "\x02\x6d\x4a", - [0x0d4d] = "\x02\x6f\x24", [0x0d4e] = "\x02\x70\x35", - [0x0d4f] = "\x0e\x60\x73", [0x0d50] = "\x01\x44\x4d", - [0x0d51] = "\x01\x44\x4e", [0x0d53] = "\x01\x44\x4f", - [0x0d54] = "\x01\x45\x36", [0x0d55] = "\x01\x46\x45", - [0x0d56] = "\x02\x22\x33", [0x0d57] = "\x01\x47\x73", - [0x0d58] = "\x01\x47\x74", [0x0d5a] = "\x01\x49\x77", - [0x0d5b] = "\x01\x49\x78", [0x0d5c] = "\x01\x49\x76", - [0x0d5d] = "\x01\x49\x75", [0x0d5f] = "\x01\x4c\x75", - [0x0d60] = "\x0e\x28\x48", [0x0d62] = "\x02\x26\x36", - [0x0d63] = "\x01\x4c\x77", [0x0d64] = "\x01\x4c\x76", - [0x0d65] = "\x02\x26\x37", [0x0d66] = "\x0e\x62\x5c", - [0x0d67] = "\x0e\x64\x6a", [0x0d69] = "\x01\x50\x66", - [0x0d6a] = "\x0e\x2c\x2f", [0x0d6b] = "\x01\x55\x21", - [0x0d6c] = "\x02\x2e\x67", [0x0d6e] = "\x02\x34\x73", - [0x0d70] = "\x01\x59\x69", [0x0d71] = "\x01\x5e\x6c", - [0x0d72] = "\x02\x34\x72", [0x0d73] = "\x01\x5e\x6b", - [0x0d74] = "\x0e\x40\x71", [0x0d75] = "\x01\x68\x4d", - [0x0d76] = "\x0e\x40\x72", [0x0d77] = "\x02\x49\x64", - [0x0d78] = "\x01\x70\x50", [0x0d79] = "\x0e\x50\x57", - [0x0d7a] = "\x01\x73\x52", [0x0d7b] = "\x02\x5c\x63", - [0x0d7c] = "\x0e\x5a\x34", [0x0d7d] = "\x01\x79\x69", - [0x0d7e] = "\x0e\x5c\x3b", [0x0d7f] = "\x01\x7b\x5c", - [0x0d80] = "\x0e\x21\x3b", [0x0d81] = "\x02\x21\x53", - [0x0d82] = "\x0e\x22\x3d", [0x0d83] = "\x01\x46\x46", - [0x0d84] = "\x02\x21\x54", [0x0d85] = "\x01\x47\x77", - [0x0d86] = "\x0e\x23\x50", [0x0d87] = "\x01\x47\x75", - [0x0d88] = "\x01\x47\x76", [0x0d89] = "\x01\x47\x78", - [0x0d8b] = "\x01\x49\x7a", [0x0d8c] = "\x01\x49\x79", - [0x0d8d] = "\x0e\x25\x5a", [0x0d8e] = "\x02\x23\x5c", - [0x0d8f] = "\x01\x49\x7b", [0x0d92] = "\x02\x23\x5d", - [0x0d93] = "\x02\x26\x38", [0x0d94] = "\x0e\x28\x4c", - [0x0d95] = "\x02\x26\x39", [0x0d96] = "\x0e\x28\x4a", - [0x0d97] = "\x01\x4c\x78", [0x0d98] = "\x01\x4c\x7a", - [0x0d99] = "\x01\x4c\x7c", [0x0d9a] = "\x01\x4c\x79", - [0x0d9b] = "\x01\x4c\x7d", [0x0d9c] = "\x01\x4c\x7b", - [0x0d9d] = "\x0e\x28\x4e", [0x0d9e] = "\x0e\x28\x4b", - [0x0d9f] = "\x0e\x28\x4d", [0x0da2] = "\x01\x50\x6a", - [0x0da3] = "\x01\x50\x67", [0x0da4] = "\x01\x50\x69", - [0x0da5] = "\x01\x50\x6b", [0x0da6] = "\x01\x50\x68", - [0x0da7] = "\x02\x2e\x68", [0x0da8] = "\x02\x29\x78", - [0x0dab] = "\x0e\x2c\x32", [0x0dac] = "\x02\x2e\x6a", - [0x0dad] = "\x02\x2e\x69", [0x0dae] = "\x01\x55\x27", - [0x0db0] = "\x01\x55\x23", [0x0db3] = "\x01\x55\x24", - [0x0db4] = "\x01\x55\x26", [0x0db5] = "\x01\x55\x28", - [0x0db6] = "\x01\x55\x25", [0x0db7] = "\x0e\x30\x57", - [0x0db8] = "\x01\x55\x2a", [0x0db9] = "\x01\x55\x29", - [0x0dbb] = "\x0e\x30\x56", [0x0dbc] = "\x0e\x30\x55", - [0x0dbf] = "\x01\x59\x6e", [0x0dc0] = "\x02\x34\x75", - [0x0dc1] = "\x02\x34\x74", [0x0dc2] = "\x01\x59\x6d", - [0x0dc3] = "\x0e\x35\x41", [0x0dc4] = "\x01\x59\x6c", - [0x0dc5] = "\x01\x59\x6b", [0x0dc6] = "\x01\x59\x6f", - [0x0dc7] = "\x01\x59\x6a", [0x0dc8] = "\x0e\x35\x3f", - [0x0dca] = "\x02\x3b\x39", [0x0dcb] = "\x02\x3b\x36", - [0x0dcc] = "\x01\x5e\x6e", [0x0dcd] = "\x02\x3b\x35", - [0x0dce] = "\x02\x3b\x3a", [0x0dd0] = "\x01\x5e\x70", - [0x0dd1] = "\x02\x3b\x38", [0x0dd2] = "\x01\x5e\x6d", - [0x0dd3] = "\x01\x5e\x6f", [0x0dd4] = "\x02\x3b\x37", - [0x0dd5] = "\x0e\x3a\x7e", [0x0dd6] = "\x02\x42\x4e", - [0x0dd7] = "\x0e\x40\x74", [0x0dd8] = "\x02\x42\x4f", - [0x0dd9] = "\x02\x42\x50", [0x0dda] = "\x0e\x40\x75", - [0x0ddb] = "\x0e\x40\x76", [0x0ddc] = "\x0e\x40\x73", - [0x0ddd] = "\x0e\x63\x45", [0x0dde] = "\x01\x68\x4e", - [0x0ddf] = "\x01\x68\x56", [0x0de0] = "\x02\x49\x65", - [0x0de1] = "\x01\x68\x50", [0x0de2] = "\x01\x68\x54", - [0x0de3] = "\x02\x49\x66", [0x0de4] = "\x01\x68\x55", - [0x0de5] = "\x01\x68\x51", [0x0de6] = "\x01\x68\x52", - [0x0de7] = "\x01\x68\x4f", [0x0de8] = "\x01\x68\x53", - [0x0de9] = "\x01\x6c\x50", [0x0dea] = "\x02\x3b\x34", - [0x0deb] = "\x01\x6c\x51", [0x0dec] = "\x01\x6c\x4f", - [0x0dee] = "\x01\x6c\x4e", [0x0def] = "\x02\x56\x67", - [0x0df0] = "\x01\x70\x51", [0x0df1] = "\x02\x5c\x64", - [0x0df2] = "\x02\x5c\x65", [0x0df3] = "\x0e\x5a\x35", - [0x0df5] = "\x01\x78\x31", [0x0df6] = "\x01\x79\x6a", - [0x0df7] = "\x0e\x5e\x2a", [0x0df8] = "\x01\x44\x50", - [0x0df9] = "\x0e\x22\x3e", [0x0dfa] = "\x01\x47\x79", - [0x0dfd] = "\x0e\x25\x5e", [0x0dfe] = "\x0e\x25\x5c", - [0x0dff] = "\x0e\x25\x5d", [0x0e00] = "\x0e\x28\x50", - [0x0e01] = "\x01\x50\x6c", [0x0e03] = "\x02\x2e\x6b", - [0x0e04] = "\x01\x55\x2b", [0x0e05] = "\x0e\x30\x58", - [0x0e06] = "\x0e\x30\x59", [0x0e07] = "\x01\x59\x72", - [0x0e08] = "\x01\x59\x71", [0x0e09] = "\x01\x59\x70", - [0x0e0a] = "\x01\x5e\x71", [0x0e0b] = "\x01\x5e\x72", - [0x0e0c] = "\x02\x3b\x3b", [0x0e0d] = "\x01\x68\x57", - [0x0e0e] = "\x01\x70\x52", [0x0e0f] = "\x01\x44\x51", - [0x0e10] = "\x02\x21\x3c", [0x0e11] = "\x01\x45\x37", - [0x0e12] = "\x02\x21\x55", [0x0e13] = "\x0e\x62\x4a", - [0x0e14] = "\x0e\x22\x3f", [0x0e15] = "\x02\x22\x34", - [0x0e16] = "\x01\x47\x7a", [0x0e18] = "\x0e\x23\x52", - [0x0e19] = "\x0e\x28\x51", [0x0e1a] = "\x01\x4c\x7e", - [0x0e1b] = "\x0e\x2c\x34", [0x0e1e] = "\x0e\x3b\x24", - [0x0e1f] = "\x02\x42\x51", [0x0e20] = "\x0e\x40\x78", - [0x0e21] = "\x0e\x65\x25", [0x0e22] = "\x01\x44\x52", - [0x0e24] = "\x01\x45\x38", [0x0e25] = "\x02\x22\x35", - [0x0e28] = "\x02\x23\x5e", [0x0e2a] = "\x02\x23\x5f", - [0x0e2b] = "\x0e\x25\x5f", [0x0e2c] = "\x01\x49\x7c", - [0x0e2f] = "\x0e\x2c\x35", [0x0e30] = "\x02\x3b\x3c", - [0x0e31] = "\x01\x5e\x73", [0x0e33] = "\x02\x42\x52", - [0x0e36] = "\x0e\x54\x54", [0x0e37] = "\x01\x73\x53", - [0x0e38] = "\x01\x44\x53", [0x0e39] = "\x01\x44\x67", - [0x0e3a] = "\x01\x45\x39", [0x0e3b] = "\x02\x21\x56", - [0x0e3c] = "\x01\x46\x47", [0x0e3d] = "\x0e\x23\x54", - [0x0e3e] = "\x01\x4a\x22", [0x0e3f] = "\x01\x4a\x21", - [0x0e40] = "\x01\x49\x7d", [0x0e41] = "\x01\x49\x7e", - [0x0e44] = "\x02\x26\x3a", [0x0e45] = "\x01\x4d\x22", - [0x0e46] = "\x01\x4d\x23", [0x0e47] = "\x02\x26\x3b", - [0x0e48] = "\x01\x4d\x21", [0x0e49] = "\x0e\x28\x54", - [0x0e4a] = "\x0e\x28\x55", [0x0e4b] = "\x01\x50\x70", - [0x0e4c] = "\x02\x29\x79", [0x0e4d] = "\x01\x50\x6f", - [0x0e4e] = "\x01\x50\x6d", [0x0e4f] = "\x01\x50\x6e", - [0x0e50] = "\x01\x55\x2e", [0x0e51] = "\x01\x55\x2c", - [0x0e52] = "\x0e\x30\x5a", [0x0e53] = "\x0e\x30\x5b", - [0x0e54] = "\x02\x2e\x6d", [0x0e55] = "\x01\x55\x2d", - [0x0e56] = "\x02\x2e\x6c", [0x0e57] = "\x0e\x64\x6b", - [0x0e58] = "\x01\x55\x22", [0x0e59] = "\x02\x34\x76", - [0x0e5b] = "\x0e\x35\x43", [0x0e5c] = "\x01\x59\x74", - [0x0e5d] = "\x01\x59\x75", [0x0e5e] = "\x0e\x3b\x26", - [0x0e5f] = "\x0e\x3b\x25", [0x0e60] = "\x01\x59\x73", - [0x0e61] = "\x0e\x35\x44", [0x0e62] = "\x01\x68\x58", - [0x0e63] = "\x02\x49\x67", [0x0e64] = "\x01\x6c\x52", - [0x0e65] = "\x01\x6c\x53", [0x0e67] = "\x02\x50\x2a", - [0x0e68] = "\x01\x73\x54", [0x0e69] = "\x02\x61\x4e", - [0x0e6a] = "\x02\x61\x4f", [0x0e6b] = "\x0e\x5a\x38", - [0x0e6c] = "\x01\x7a\x68", [0x0e6d] = "\x02\x70\x36", - [0x0e6e] = "\x02\x21\x2b", [0x0e6f] = "\x01\x45\x3a", - [0x0e71] = "\x01\x44\x54", [0x0e73] = "\x02\x21\x58", - [0x0e74] = "\x02\x21\x57", [0x0e77] = "\x0e\x64\x6c", - [0x0e78] = "\x0e\x23\x55", [0x0e79] = "\x01\x47\x7b", - [0x0e7a] = "\x02\x22\x37", [0x0e7b] = "\x02\x22\x38", - [0x0e7c] = "\x02\x22\x36", [0x0e7e] = "\x02\x22\x39", - [0x0e80] = "\x0e\x23\x5a", [0x0e84] = "\x0e\x25\x61", - [0x0e85] = "\x0e\x25\x66", [0x0e86] = "\x02\x23\x67", - [0x0e88] = "\x02\x23\x62", [0x0e89] = "\x02\x23\x64", - [0x0e8a] = "\x02\x23\x66", [0x0e8b] = "\x02\x23\x63", - [0x0e8c] = "\x01\x4a\x26", [0x0e8d] = "\x02\x23\x60", - [0x0e8e] = "\x0e\x25\x62", [0x0e8f] = "\x02\x23\x61", - [0x0e90] = "\x01\x4a\x23", [0x0e91] = "\x01\x4a\x24", - [0x0e92] = "\x02\x23\x65", [0x0e93] = "\x02\x23\x68", - [0x0e94] = "\x01\x4a\x25", [0x0e95] = "\x02\x23\x69", - [0x0e9c] = "\x0e\x25\x63", [0x0e9d] = "\x02\x26\x49", - [0x0e9e] = "\x0e\x28\x5d", [0x0e9f] = "\x02\x26\x43", - [0x0ea0] = "\x02\x26\x3e", [0x0ea1] = "\x01\x4d\x25", - [0x0ea2] = "\x02\x26\x46", [0x0ea3] = "\x02\x26\x44", - [0x0ea4] = "\x02\x26\x3d", [0x0ea5] = "\x02\x26\x4a", - [0x0ea6] = "\x02\x26\x4d", [0x0ea7] = "\x02\x26\x48", - [0x0ea8] = "\x02\x26\x41", [0x0ea9] = "\x01\x4d\x27", - [0x0eaa] = "\x02\x26\x47", [0x0eab] = "\x01\x4d\x28", - [0x0eac] = "\x02\x26\x42", [0x0ead] = "\x02\x26\x45", - [0x0eae] = "\x02\x26\x3c", [0x0eaf] = "\x02\x26\x40", - [0x0eb0] = "\x02\x26\x4c", [0x0eb1] = "\x01\x4d\x29", - [0x0eb3] = "\x01\x4d\x2a", [0x0eb4] = "\x0e\x28\x5e", - [0x0eb5] = "\x02\x26\x3f", [0x0eb6] = "\x02\x26\x4b", - [0x0eb7] = "\x01\x4d\x24", [0x0eb8] = "\x01\x4d\x26", - [0x0eb9] = "\x0e\x28\x5c", [0x0eba] = "\x0e\x28\x5f", - [0x0ebb] = "\x0e\x28\x57", [0x0ec1] = "\x0e\x28\x58", - [0x0ec6] = "\x02\x2a\x2c", [0x0ec7] = "\x02\x2a\x25", - [0x0ec8] = "\x02\x2a\x2b", [0x0ec9] = "\x02\x2a\x24", - [0x0eca] = "\x02\x2a\x26", [0x0ecb] = "\x02\x29\x7e", - [0x0ecc] = "\x02\x29\x7c", [0x0ecd] = "\x0e\x2c\x3f", - [0x0ece] = "\x02\x2a\x2d", [0x0ecf] = "\x02\x2a\x2a", - [0x0ed0] = "\x02\x29\x7a", [0x0ed1] = "\x0e\x2c\x3b", - [0x0ed2] = "\x01\x50\x72", [0x0ed3] = "\x02\x2a\x28", - [0x0ed4] = "\x02\x2a\x29", [0x0ed5] = "\x0e\x64\x6d", - [0x0ed6] = "\x02\x2a\x27", [0x0ed7] = "\x02\x29\x7d", - [0x0ed8] = "\x02\x29\x7b", [0x0ed9] = "\x01\x50\x71", - [0x0eda] = "\x02\x2a\x23", [0x0edb] = "\x02\x2a\x21", - [0x0edc] = "\x0e\x2c\x3c", [0x0edd] = "\x0e\x2c\x42", - [0x0ede] = "\x02\x2a\x22", [0x0edf] = "\x02\x2a\x2e", - [0x0ee1] = "\x0e\x2c\x3e", [0x0ee2] = "\x0e\x2c\x41", - [0x0ee5] = "\x0e\x2c\x43", [0x0ee6] = "\x0e\x2c\x3d", - [0x0ee8] = "\x01\x55\x33", [0x0ee9] = "\x0e\x30\x63", - [0x0eea] = "\x01\x55\x32", [0x0eeb] = "\x0e\x30\x5f", - [0x0eec] = "\x02\x2e\x6e", [0x0eed] = "\x01\x55\x2f", - [0x0eee] = "\x02\x2e\x70", [0x0eef] = "\x0e\x30\x64", - [0x0ef0] = "\x01\x55\x34", [0x0ef1] = "\x02\x2e\x71", - [0x0ef3] = "\x0e\x30\x61", [0x0ef4] = "\x01\x55\x37", - [0x0ef5] = "\x0e\x30\x62", [0x0ef6] = "\x01\x55\x35", - [0x0ef7] = "\x02\x2e\x72", [0x0ef8] = "\x02\x2a\x2f", - [0x0ef9] = "\x02\x2e\x74", [0x0efa] = "\x0e\x30\x5e", - [0x0efb] = "\x01\x55\x31", [0x0efc] = "\x0e\x62\x71", - [0x0efd] = "\x01\x55\x30", [0x0efe] = "\x0e\x62\x72", - [0x0eff] = "\x02\x2e\x6f", [0x0f00] = "\x02\x2e\x73", - [0x0f01] = "\x01\x55\x36", [0x0f06] = "\x01\x59\x77", - [0x0f07] = "\x01\x59\x76", [0x0f08] = "\x0e\x35\x4b", - [0x0f09] = "\x0e\x35\x48", [0x0f0a] = "\x0e\x35\x47", - [0x0f0b] = "\x02\x34\x78", [0x0f0c] = "\x02\x34\x7c", - [0x0f0d] = "\x02\x34\x7e", [0x0f0e] = "\x01\x59\x78", - [0x0f0f] = "\x02\x35\x23", [0x0f10] = "\x0e\x35\x51", - [0x0f11] = "\x01\x59\x7c", [0x0f12] = "\x02\x35\x25", - [0x0f13] = "\x0e\x35\x52", [0x0f14] = "\x01\x59\x7e", - [0x0f15] = "\x0e\x35\x4f", [0x0f16] = "\x01\x59\x7a", - [0x0f17] = "\x01\x5a\x24", [0x0f18] = "\x0e\x35\x55", - [0x0f19] = "\x01\x5a\x21", [0x0f1a] = "\x02\x34\x7a", - [0x0f1b] = "\x01\x59\x79", [0x0f1c] = "\x0e\x3b\x2b", - [0x0f1d] = "\x02\x34\x79", [0x0f1e] = "\x02\x34\x77", - [0x0f1f] = "\x02\x35\x27", [0x0f20] = "\x02\x34\x7b", - [0x0f21] = "\x0e\x35\x46", [0x0f22] = "\x01\x59\x7b", - [0x0f23] = "\x02\x35\x26", [0x0f24] = "\x01\x5a\x22", - [0x0f25] = "\x02\x35\x22", [0x0f26] = "\x02\x35\x21", - [0x0f27] = "\x01\x5a\x23", [0x0f28] = "\x02\x34\x7d", - [0x0f29] = "\x01\x59\x7d", [0x0f2a] = "\x0e\x35\x4e", - [0x0f2c] = "\x0e\x35\x4a", [0x0f2e] = "\x02\x35\x28", - [0x0f2f] = "\x0e\x35\x54", [0x0f30] = "\x02\x35\x24", - [0x0f31] = "\x02\x3b\x4b", [0x0f32] = "\x02\x3b\x52", - [0x0f33] = "\x02\x3b\x47", [0x0f34] = "\x01\x5e\x76", - [0x0f35] = "\x02\x3b\x43", [0x0f36] = "\x02\x3b\x53", - [0x0f37] = "\x02\x3b\x3d", [0x0f38] = "\x02\x3b\x50", - [0x0f39] = "\x02\x3b\x4e", [0x0f3a] = "\x02\x3b\x48", - [0x0f3b] = "\x0e\x3b\x36", [0x0f3c] = "\x02\x3b\x51", - [0x0f3d] = "\x02\x3b\x4a", [0x0f3e] = "\x0e\x3b\x28", - [0x0f3f] = "\x02\x3b\x42", [0x0f40] = "\x02\x3b\x54", - [0x0f41] = "\x02\x3b\x40", [0x0f42] = "\x02\x3b\x4d", - [0x0f43] = "\x02\x3b\x3e", [0x0f44] = "\x0e\x3b\x27", - [0x0f45] = "\x02\x3b\x55", [0x0f46] = "\x0e\x3b\x37", - [0x0f47] = "\x01\x5e\x77", [0x0f48] = "\x0e\x3b\x2a", - [0x0f49] = "\x02\x3b\x4f", [0x0f4a] = "\x02\x42\x55", - [0x0f4b] = "\x02\x3b\x41", [0x0f4c] = "\x01\x5e\x74", - [0x0f4d] = "\x0e\x3b\x2e", [0x0f4e] = "\x02\x3b\x45", - [0x0f4f] = "\x0e\x3b\x34", [0x0f50] = "\x01\x5e\x75", - [0x0f51] = "\x02\x3b\x44", [0x0f52] = "\x02\x3b\x49", - [0x0f53] = "\x0e\x3b\x33", [0x0f55] = "\x02\x3b\x46", - [0x0f57] = "\x0e\x3b\x31", [0x0f59] = "\x02\x3b\x4c", - [0x0f5b] = "\x0e\x3b\x2d", [0x0f5e] = "\x02\x42\x59", - [0x0f60] = "\x0e\x41\x21", [0x0f62] = "\x02\x42\x5c", - [0x0f63] = "\x02\x42\x54", [0x0f64] = "\x0e\x40\x7c", - [0x0f65] = "\x02\x42\x56", [0x0f66] = "\x0e\x40\x7a", - [0x0f67] = "\x02\x42\x5b", [0x0f68] = "\x02\x42\x5a", - [0x0f69] = "\x01\x63\x69", [0x0f6b] = "\x02\x3b\x3f", - [0x0f6c] = "\x02\x42\x58", [0x0f6d] = "\x0e\x40\x79", - [0x0f6e] = "\x0e\x40\x7d", [0x0f6f] = "\x01\x63\x6a", - [0x0f71] = "\x02\x42\x53", [0x0f72] = "\x02\x42\x57", - [0x0f75] = "\x0e\x64\x6e", [0x0f77] = "\x02\x49\x6e", - [0x0f78] = "\x0e\x46\x5c", [0x0f79] = "\x02\x49\x75", - [0x0f7a] = "\x02\x49\x6c", [0x0f7b] = "\x0e\x46\x54", - [0x0f7c] = "\x02\x49\x73", [0x0f7d] = "\x02\x49\x6a", - [0x0f7e] = "\x02\x49\x72", [0x0f7f] = "\x02\x49\x76", - [0x0f80] = "\x02\x49\x69", [0x0f81] = "\x02\x49\x6d", - [0x0f82] = "\x02\x49\x68", [0x0f83] = "\x0e\x46\x56", - [0x0f84] = "\x01\x68\x59", [0x0f86] = "\x02\x49\x6b", - [0x0f87] = "\x01\x68\x5a", [0x0f88] = "\x02\x49\x71", - [0x0f89] = "\x02\x49\x70", [0x0f8a] = "\x02\x49\x6f", - [0x0f8b] = "\x0e\x46\x59", [0x0f8c] = "\x0e\x46\x5a", - [0x0f8d] = "\x02\x49\x74", [0x0f8e] = "\x0e\x64\x6f", - [0x0f8f] = "\x0e\x4b\x65", [0x0f90] = "\x0e\x4b\x66", - [0x0f91] = "\x0e\x4b\x63", [0x0f92] = "\x02\x50\x2e", - [0x0f93] = "\x02\x50\x30", [0x0f94] = "\x01\x6c\x55", - [0x0f95] = "\x02\x50\x31", [0x0f96] = "\x0e\x4b\x6b", - [0x0f97] = "\x02\x50\x2c", [0x0f98] = "\x0e\x4b\x67", - [0x0f99] = "\x02\x50\x2b", [0x0f9a] = "\x02\x50\x35", - [0x0f9b] = "\x0e\x4b\x69", [0x0f9c] = "\x02\x50\x33", - [0x0f9d] = "\x01\x6c\x54", [0x0f9e] = "\x02\x50\x36", - [0x0f9f] = "\x02\x50\x2d", [0x0fa0] = "\x02\x50\x32", - [0x0fa1] = "\x02\x50\x34", [0x0fa2] = "\x02\x50\x2f", - [0x0fa3] = "\x0e\x4b\x6a", [0x0fa4] = "\x0e\x4b\x68", - [0x0fa5] = "\x0e\x64\x70", [0x0fa6] = "\x0e\x50\x58", - [0x0fa7] = "\x02\x56\x6b", [0x0fa8] = "\x02\x56\x70", - [0x0fa9] = "\x02\x56\x6a", [0x0faa] = "\x02\x56\x6f", - [0x0fab] = "\x0e\x50\x5b", [0x0fac] = "\x02\x56\x68", - [0x0fad] = "\x02\x56\x72", [0x0fae] = "\x02\x56\x6e", - [0x0faf] = "\x02\x56\x73", [0x0fb0] = "\x02\x56\x6d", - [0x0fb1] = "\x02\x56\x69", [0x0fb2] = "\x02\x56\x71", - [0x0fb3] = "\x0e\x50\x5a", [0x0fb4] = "\x02\x56\x74", - [0x0fb5] = "\x02\x56\x6c", [0x0fb6] = "\x0e\x64\x71", - [0x0fb7] = "\x02\x5c\x66", [0x0fb8] = "\x01\x73\x58", - [0x0fb9] = "\x0e\x54\x57", [0x0fba] = "\x01\x73\x56", - [0x0fbb] = "\x0e\x54\x59", [0x0fbc] = "\x01\x73\x55", - [0x0fbd] = "\x01\x73\x57", [0x0fbe] = "\x0e\x54\x55", - [0x0fbf] = "\x0e\x64\x72", [0x0fc0] = "\x02\x61\x50", - [0x0fc1] = "\x0e\x57\x62", [0x0fc2] = "\x02\x64\x3e", - [0x0fc3] = "\x02\x65\x49", [0x0fc4] = "\x0e\x5a\x39", - [0x0fc6] = "\x02\x68\x70", [0x0fc7] = "\x02\x68\x71", - [0x0fc8] = "\x0e\x5c\x3d", [0x0fc9] = "\x01\x79\x6b", - [0x0fca] = "\x0e\x5c\x3c", [0x0fcb] = "\x02\x6b\x57", - [0x0fcc] = "\x0e\x5c\x3e", [0x0fcd] = "\x01\x7a\x69", - [0x0fcf] = "\x02\x6b\x58", [0x0fd0] = "\x0e\x5e\x2d", - [0x0fd1] = "\x02\x6d\x4c", [0x0fd2] = "\x01\x7b\x5e", - [0x0fd3] = "\x0e\x5f\x43", [0x0fd4] = "\x01\x7b\x5d", - [0x0fd5] = "\x02\x6d\x4b", [0x0fd6] = "\x01\x7c\x35", - [0x0fd7] = "\x0e\x60\x30", [0x0fd8] = "\x02\x6f\x25", - [0x0fdb] = "\x0e\x21\x3c", [0x0fdd] = "\x01\x44\x55", - [0x0fde] = "\x01\x47\x7c", [0x0fdf] = "\x02\x22\x3a", - [0x0fe0] = "\x02\x23\x6a", [0x0fe1] = "\x01\x4b\x56", - [0x0fe2] = "\x01\x5a\x25", [0x0fe3] = "\x0e\x35\x57", - [0x0fe4] = "\x0e\x4b\x6c", [0x0fe5] = "\x01\x44\x56", - [0x0fe6] = "\x01\x46\x4a", [0x0fe7] = "\x01\x46\x49", - [0x0fe8] = "\x01\x46\x48", [0x0feb] = "\x01\x4a\x27", - [0x0fee] = "\x01\x55\x38", [0x0ff0] = "\x02\x42\x5d", - [0x0ff1] = "\x01\x44\x57", [0x0ff2] = "\x01\x44\x58", - [0x0ff3] = "\x01\x44\x59", [0x0ff4] = "\x01\x45\x3b", - [0x0ff5] = "\x0e\x25\x67", [0x0ff6] = "\x0e\x28\x60", - [0x0ff7] = "\x01\x50\x73", [0x0ff9] = "\x02\x2a\x30", - [0x0ffa] = "\x0e\x2c\x45", [0x0ffb] = "\x0e\x2c\x44", - [0x0ffd] = "\x01\x5e\x78", [0x0ffe] = "\x01\x44\x5a", - [0x0fff] = "\x02\x21\x3d", [0x1000] = "\x0e\x21\x63", - [0x1002] = "\x01\x46\x4b", [0x1003] = "\x01\x46\x4c", - [0x1004] = "\x02\x21\x59", [0x1006] = "\x01\x47\x7d", - [0x1008] = "\x0e\x23\x5c", [0x1009] = "\x0e\x25\x68", - [0x100a] = "\x02\x23\x6b", [0x100b] = "\x0e\x25\x6b", - [0x100c] = "\x01\x4a\x28", [0x100e] = "\x02\x23\x6c", - [0x1011] = "\x01\x4d\x30", [0x1012] = "\x0e\x28\x62", - [0x1013] = "\x0e\x28\x61", [0x1014] = "\x02\x26\x4f", - [0x1015] = "\x01\x4d\x2e", [0x1016] = "\x01\x4d\x2d", - [0x1017] = "\x02\x26\x4e", [0x1018] = "\x01\x4d\x2b", - [0x1019] = "\x02\x26\x50", [0x101a] = "\x01\x4d\x2c", - [0x101b] = "\x01\x4d\x2f", [0x101d] = "\x01\x50\x74", - [0x101e] = "\x0e\x2c\x46", [0x101f] = "\x01\x50\x76", - [0x1020] = "\x02\x2a\x34", [0x1021] = "\x02\x2a\x31", - [0x1022] = "\x02\x2a\x32", [0x1023] = "\x02\x2a\x33", - [0x1024] = "\x02\x2a\x35", [0x1025] = "\x01\x50\x75", - [0x1028] = "\x02\x2e\x76", [0x1029] = "\x02\x2e\x75", - [0x102a] = "\x0e\x30\x66", [0x102b] = "\x01\x55\x3a", - [0x102c] = "\x0e\x30\x69", [0x102d] = "\x01\x55\x39", - [0x102e] = "\x0e\x30\x68", [0x102f] = "\x0e\x30\x6a", - [0x1030] = "\x0e\x30\x67", [0x1032] = "\x0e\x35\x5b", - [0x1033] = "\x01\x5a\x28", [0x1034] = "\x02\x35\x2a", - [0x1035] = "\x0e\x35\x59", [0x1036] = "\x01\x5a\x27", - [0x1037] = "\x01\x5a\x29", [0x1038] = "\x01\x5a\x26", - [0x1039] = "\x0e\x35\x58", [0x103a] = "\x0e\x35\x5a", - [0x103d] = "\x01\x5e\x7a", [0x103e] = "\x02\x35\x29", - [0x1040] = "\x01\x5e\x7b", [0x1041] = "\x02\x3b\x57", - [0x1042] = "\x0e\x39\x79", [0x1043] = "\x01\x5e\x7c", - [0x1044] = "\x02\x3b\x56", [0x1045] = "\x01\x5e\x79", - [0x1046] = "\x0e\x3b\x3a", [0x1047] = "\x0e\x3b\x3b", - [0x1048] = "\x0e\x3b\x3d", [0x104a] = "\x02\x42\x60", - [0x104b] = "\x02\x42\x62", [0x104c] = "\x01\x63\x6b", - [0x104d] = "\x02\x42\x61", [0x104e] = "\x02\x42\x5f", - [0x104f] = "\x02\x42\x5e", [0x1052] = "\x0e\x46\x5d", - [0x1053] = "\x02\x49\x79", [0x1054] = "\x01\x68\x5f", - [0x1055] = "\x01\x68\x5d", [0x1057] = "\x01\x68\x5e", - [0x1058] = "\x02\x49\x77", [0x1059] = "\x02\x49\x78", - [0x105a] = "\x0e\x4b\x6d", [0x105b] = "\x01\x68\x5b", - [0x105c] = "\x02\x50\x3a", [0x105d] = "\x02\x50\x38", - [0x105e] = "\x0e\x4b\x70", [0x105f] = "\x01\x6c\x57", - [0x1060] = "\x02\x50\x39", [0x1061] = "\x01\x6c\x58", - [0x1062] = "\x01\x6c\x56", [0x1063] = "\x01\x68\x5c", - [0x1065] = "\x0e\x64\x73", [0x1066] = "\x02\x56\x77", - [0x1067] = "\x02\x56\x75", [0x1068] = "\x02\x56\x76", - [0x1069] = "\x02\x50\x37", [0x106a] = "\x02\x5c\x68", - [0x106b] = "\x01\x73\x59", [0x106c] = "\x02\x5c\x67", - [0x106d] = "\x02\x61\x51", [0x106e] = "\x02\x61\x52", - [0x106f] = "\x02\x56\x78", [0x1070] = "\x02\x65\x4a", - [0x1071] = "\x0e\x66\x77", [0x1072] = "\x01\x44\x5b", - [0x1073] = "\x01\x46\x4d", [0x1074] = "\x01\x48\x21", - [0x1075] = "\x02\x22\x3b", [0x1076] = "\x01\x47\x7e", - [0x1077] = "\x0e\x28\x63", [0x1078] = "\x01\x4d\x31", - [0x1079] = "\x01\x63\x6c", [0x107a] = "\x0e\x21\x3d", - [0x107b] = "\x01\x45\x3c", [0x107c] = "\x01\x46\x4e", - [0x107d] = "\x01\x50\x77", [0x107e] = "\x01\x5e\x7d", - [0x107f] = "\x0e\x21\x3e", [0x1080] = "\x02\x21\x5a", - [0x1081] = "\x0e\x22\x47", [0x1082] = "\x02\x21\x5b", - [0x1083] = "\x0e\x22\x48", [0x1084] = "\x02\x22\x3c", - [0x1085] = "\x0e\x66\x78", [0x1087] = "\x01\x4a\x2a", - [0x1088] = "\x02\x23\x70", [0x1089] = "\x02\x23\x6e", - [0x108a] = "\x01\x4a\x2b", [0x108b] = "\x02\x23\x6d", - [0x108c] = "\x02\x23\x6f", [0x108d] = "\x02\x23\x71", - [0x108f] = "\x01\x4a\x29", [0x1090] = "\x0e\x25\x6e", - [0x1092] = "\x0e\x25\x6d", [0x1095] = "\x01\x4d\x35", - [0x1096] = "\x01\x4d\x36", [0x1097] = "\x01\x4d\x33", - [0x1098] = "\x0e\x28\x65", [0x1099] = "\x0e\x28\x67", - [0x109a] = "\x01\x4d\x32", [0x109b] = "\x02\x2a\x39", - [0x109c] = "\x01\x4d\x34", [0x109d] = "\x0e\x28\x68", - [0x10a0] = "\x01\x50\x78", [0x10a1] = "\x0e\x2c\x48", - [0x10a2] = "\x02\x2a\x38", [0x10a3] = "\x02\x2a\x3a", - [0x10a4] = "\x02\x2a\x37", [0x10a5] = "\x02\x2a\x3b", - [0x10a6] = "\x01\x50\x79", [0x10a7] = "\x01\x55\x3d", - [0x10a8] = "\x02\x2e\x77", [0x10a9] = "\x0e\x30\x6c", - [0x10aa] = "\x02\x2e\x79", [0x10ab] = "\x01\x55\x3b", - [0x10ac] = "\x02\x2e\x7a", [0x10ad] = "\x01\x55\x3c", - [0x10ae] = "\x02\x2e\x78", [0x10af] = "\x0e\x30\x6b", - [0x10b0] = "\x02\x2a\x36", [0x10b1] = "\x02\x35\x2b", - [0x10b2] = "\x02\x35\x2e", [0x10b3] = "\x02\x35\x2f", - [0x10b4] = "\x02\x35\x2c", [0x10b5] = "\x01\x5a\x2d", - [0x10b6] = "\x01\x5a\x2c", [0x10b7] = "\x01\x5a\x2a", - [0x10b8] = "\x01\x5a\x2b", [0x10b9] = "\x02\x35\x2d", - [0x10ba] = "\x0e\x35\x61", [0x10bb] = "\x0e\x35\x60", - [0x10bd] = "\x0e\x3b\x3f", [0x10be] = "\x01\x5a\x2e", - [0x10bf] = "\x0e\x3b\x40", [0x10c0] = "\x0e\x3b\x3e", - [0x10c1] = "\x01\x5f\x21", [0x10c2] = "\x01\x5f\x22", - [0x10c4] = "\x01\x5f\x23", [0x10c5] = "\x02\x42\x63", - [0x10c6] = "\x02\x42\x65", [0x10c7] = "\x02\x42\x67", - [0x10c8] = "\x01\x63\x6e", [0x10c9] = "\x01\x63\x6d", - [0x10ca] = "\x01\x5e\x7e", [0x10cb] = "\x02\x42\x66", - [0x10cc] = "\x02\x42\x64", [0x10cd] = "\x0e\x64\x74", - [0x10ce] = "\x02\x49\x7d", [0x10cf] = "\x0e\x46\x61", - [0x10d0] = "\x0e\x46\x60", [0x10d1] = "\x02\x49\x7b", - [0x10d2] = "\x02\x4a\x23", [0x10d3] = "\x01\x68\x60", - [0x10d4] = "\x02\x4a\x24", [0x10d5] = "\x02\x4a\x21", - [0x10d6] = "\x01\x68\x61", [0x10d7] = "\x02\x49\x7c", - [0x10d8] = "\x02\x49\x7a", [0x10d9] = "\x02\x4a\x22", - [0x10da] = "\x01\x6c\x5a", [0x10db] = "\x02\x50\x3c", - [0x10dc] = "\x02\x49\x7e", [0x10dd] = "\x01\x6c\x5c", - [0x10de] = "\x02\x50\x3d", [0x10df] = "\x01\x6c\x5b", - [0x10e0] = "\x01\x6c\x5e", [0x10e1] = "\x02\x50\x3e", - [0x10e2] = "\x01\x6c\x59", [0x10e3] = "\x01\x6c\x5d", - [0x10e5] = "\x02\x56\x7d", [0x10e6] = "\x02\x56\x7b", - [0x10e7] = "\x02\x56\x7a", [0x10e8] = "\x02\x56\x7c", - [0x10e9] = "\x02\x56\x79", [0x10ea] = "\x0e\x50\x5c", - [0x10ec] = "\x01\x78\x33", [0x10ed] = "\x0e\x64\x75", - [0x10ee] = "\x02\x68\x72", [0x10ef] = "\x02\x68\x73", - [0x10f0] = "\x0e\x5c\x3f", [0x10f1] = "\x02\x6b\x59", - [0x10f2] = "\x02\x6d\x4d", [0x10f3] = "\x01\x7d\x22", - [0x10f4] = "\x0e\x21\x3f", [0x10f5] = "\x0e\x23\x61", - [0x10f6] = "\x01\x4d\x37", [0x10f7] = "\x01\x4a\x2c", - [0x10f8] = "\x0e\x28\x69", [0x10f9] = "\x0e\x28\x6b", - [0x10fa] = "\x01\x50\x7a", [0x10fb] = "\x0e\x2c\x4c", - [0x10fc] = "\x0e\x2c\x4b", [0x10fd] = "\x0e\x30\x6e", - [0x10fe] = "\x01\x44\x5c", [0x10ff] = "\x01\x45\x3d", - [0x1101] = "\x01\x46\x4f", [0x1102] = "\x02\x22\x3d", - [0x1103] = "\x0e\x25\x6f", [0x1104] = "\x01\x4a\x2d", - [0x1105] = "\x02\x23\x72", [0x1106] = "\x0e\x28\x6d", - [0x1107] = "\x02\x2a\x3c", [0x1108] = "\x01\x50\x7b", - [0x110a] = "\x01\x68\x62", [0x110b] = "\x01\x44\x5d", - [0x110c] = "\x0e\x21\x64", [0x110d] = "\x0e\x22\x49", - [0x110e] = "\x0e\x23\x62", [0x110f] = "\x01\x48\x22", - [0x1111] = "\x0e\x3b\x42", [0x1112] = "\x01\x63\x6f", - [0x1113] = "\x01\x44\x5e", [0x1114] = "\x01\x45\x3e", - [0x1115] = "\x01\x45\x3f", [0x1117] = "\x01\x46\x51", - [0x1118] = "\x01\x46\x50", [0x111a] = "\x02\x22\x3e", - [0x111b] = "\x01\x48\x23", [0x111d] = "\x02\x23\x73", - [0x111e] = "\x0e\x25\x71", [0x111f] = "\x01\x4a\x2e", - [0x1121] = "\x0e\x28\x6e", [0x1122] = "\x02\x26\x52", - [0x1123] = "\x02\x26\x53", [0x1124] = "\x02\x26\x54", - [0x1125] = "\x0e\x28\x70", [0x1126] = "\x01\x4d\x38", - [0x1127] = "\x01\x4d\x39", [0x1128] = "\x02\x26\x51", - [0x1129] = "\x01\x4d\x3a", [0x112d] = "\x01\x50\x7c", - [0x112e] = "\x02\x2a\x3d", [0x112f] = "\x0e\x2c\x4d", - [0x1130] = "\x02\x2e\x7c", [0x1131] = "\x01\x55\x3e", - [0x1132] = "\x0e\x30\x6f", [0x1133] = "\x02\x2e\x7b", - [0x1134] = "\x0e\x35\x62", [0x1135] = "\x01\x5a\x2f", - [0x1136] = "\x02\x35\x30", [0x1137] = "\x01\x5a\x30", - [0x1138] = "\x02\x35\x31", [0x1139] = "\x0e\x35\x63", - [0x113a] = "\x0e\x3b\x47", [0x113b] = "\x0e\x3b\x45", - [0x113c] = "\x01\x5f\x24", [0x113e] = "\x0e\x3b\x44", - [0x1140] = "\x02\x42\x68", [0x1142] = "\x0e\x41\x22", - [0x1143] = "\x02\x4a\x26", [0x1144] = "\x02\x4a\x25", - [0x1146] = "\x01\x68\x63", [0x1148] = "\x01\x6c\x5f", - [0x1149] = "\x02\x50\x3f", [0x114a] = "\x01\x70\x53", - [0x114b] = "\x02\x56\x7e", [0x114c] = "\x01\x73\x5a", - [0x114d] = "\x0e\x57\x63", [0x114e] = "\x01\x7b\x5f", - [0x114f] = "\x02\x6f\x27", [0x1150] = "\x0e\x21\x40", - [0x1151] = "\x0e\x21\x41", [0x1152] = "\x0e\x22\x4a", - [0x1153] = "\x0e\x23\x51", [0x1154] = "\x02\x26\x55", - [0x1155] = "\x0e\x28\x71", [0x1156] = "\x02\x2a\x3e", - [0x1157] = "\x01\x5a\x31", [0x1158] = "\x02\x3b\x58", - [0x1159] = "\x01\x63\x70", [0x115a] = "\x0e\x41\x23", - [0x115b] = "\x0e\x50\x5e", [0x115d] = "\x0e\x57\x64", - [0x115e] = "\x01\x76\x41", [0x1160] = "\x0e\x61\x64", - [0x1161] = "\x0e\x21\x42", [0x1162] = "\x01\x4a\x30", - [0x1163] = "\x0e\x25\x72", [0x1164] = "\x01\x4a\x2f", - [0x1165] = "\x01\x50\x7d", [0x1166] = "\x0e\x2c\x50", - [0x1167] = "\x02\x2e\x7d", [0x1169] = "\x01\x5a\x33", - [0x116a] = "\x01\x5d\x29", [0x116b] = "\x01\x5a\x34", - [0x116c] = "\x01\x5a\x32", [0x116d] = "\x01\x5f\x25", - [0x116e] = "\x0e\x41\x24", [0x116f] = "\x02\x4a\x27", - [0x1170] = "\x01\x68\x64", [0x1171] = "\x01\x6c\x60", - [0x1172] = "\x0e\x5f\x45", [0x1173] = "\x02\x21\x2c", - [0x1174] = "\x02\x22\x3f", [0x1176] = "\x02\x23\x75", - [0x1177] = "\x01\x4a\x31", [0x1178] = "\x02\x23\x74", - [0x1179] = "\x01\x4a\x32", [0x117c] = "\x01\x4d\x3e", - [0x117d] = "\x02\x26\x58", [0x117e] = "\x02\x26\x57", - [0x117f] = "\x01\x4d\x3d", [0x1180] = "\x01\x4d\x3b", - [0x1181] = "\x01\x4d\x3c", [0x1182] = "\x02\x26\x56", - [0x1183] = "\x0e\x28\x76", [0x1184] = "\x0e\x28\x75", - [0x1185] = "\x01\x51\x21", [0x1186] = "\x02\x2a\x3f", - [0x1187] = "\x01\x51\x24", [0x1188] = "\x01\x50\x7e", - [0x1189] = "\x01\x51\x26", [0x118a] = "\x01\x51\x22", - [0x118b] = "\x01\x51\x23", [0x118c] = "\x01\x51\x25", - [0x118d] = "\x0e\x62\x64", [0x118e] = "\x0e\x30\x70", - [0x118f] = "\x0e\x30\x72", [0x1190] = "\x01\x55\x41", - [0x1191] = "\x01\x55\x40", [0x1192] = "\x01\x55\x3f", - [0x1193] = "\x0e\x30\x71", [0x1194] = "\x0e\x64\x76", - [0x1196] = "\x02\x35\x33", [0x1197] = "\x01\x5a\x35", - [0x1198] = "\x01\x5a\x38", [0x1199] = "\x01\x5a\x36", - [0x119a] = "\x0e\x64\x77", [0x119b] = "\x02\x35\x32", - [0x119c] = "\x01\x5a\x3b", [0x119e] = "\x01\x5a\x37", - [0x119f] = "\x02\x35\x34", [0x11a0] = "\x01\x5a\x3a", - [0x11a1] = "\x01\x5a\x39", [0x11a5] = "\x02\x3b\x5a", - [0x11a6] = "\x02\x3b\x59", [0x11a7] = "\x0e\x3b\x4b", - [0x11a8] = "\x01\x5f\x28", [0x11a9] = "\x01\x5f\x26", - [0x11aa] = "\x01\x5f\x27", [0x11ab] = "\x02\x3b\x5b", - [0x11ac] = "\x01\x63\x71", [0x11ad] = "\x02\x42\x6a", - [0x11ae] = "\x01\x63\x72", [0x11af] = "\x02\x42\x69", - [0x11b2] = "\x02\x50\x40", [0x11b3] = "\x0e\x46\x63", - [0x11b4] = "\x0e\x46\x64", [0x11b5] = "\x01\x6c\x62", - [0x11b6] = "\x02\x4a\x28", [0x11b7] = "\x01\x6c\x61", - [0x11b8] = "\x0e\x4b\x72", [0x11b9] = "\x01\x68\x65", - [0x11ba] = "\x0e\x64\x78", [0x11bb] = "\x02\x57\x22", - [0x11bc] = "\x02\x57\x21", [0x11bd] = "\x01\x73\x5b", - [0x11be] = "\x02\x5c\x69", [0x11bf] = "\x02\x65\x4b", - [0x11c0] = "\x02\x68\x74", [0x11c1] = "\x02\x68\x75", - [0x11c2] = "\x0e\x5e\x2f", [0x11c3] = "\x01\x45\x40", - [0x11c5] = "\x01\x46\x52", [0x11c7] = "\x0e\x22\x4d", - [0x11c8] = "\x0e\x62\x51", [0x11c9] = "\x02\x21\x5c", - [0x11ca] = "\x0e\x22\x4c", [0x11cc] = "\x01\x4a\x34", - [0x11cd] = "\x01\x4a\x36", [0x11ce] = "\x0e\x25\x78", - [0x11cf] = "\x02\x22\x42", [0x11d0] = "\x02\x23\x78", - [0x11d1] = "\x02\x23\x77", [0x11d2] = "\x02\x23\x76", - [0x11d3] = "\x0e\x23\x66", [0x11d4] = "\x02\x22\x41", - [0x11d5] = "\x02\x22\x40", [0x11d6] = "\x01\x48\x25", - [0x11d7] = "\x01\x4a\x35", [0x11d8] = "\x01\x4a\x33", - [0x11d9] = "\x01\x48\x24", [0x11da] = "\x0e\x23\x67", - [0x11db] = "\x0e\x23\x69", [0x11dc] = "\x0e\x25\x77", - [0x11dd] = "\x01\x4d\x3f", [0x11de] = "\x02\x26\x59", - [0x11df] = "\x0e\x25\x7b", [0x11e0] = "\x01\x4d\x40", - [0x11e1] = "\x02\x23\x7d", [0x11e3] = "\x02\x24\x21", - [0x11e4] = "\x02\x23\x7e", [0x11e5] = "\x02\x26\x5a", - [0x11e6] = "\x0e\x25\x76", [0x11e7] = "\x0e\x25\x74", - [0x11e8] = "\x02\x23\x7a", [0x11e9] = "\x0e\x28\x7e", - [0x11ea] = "\x01\x4a\x3a", [0x11eb] = "\x01\x4a\x38", - [0x11ec] = "\x0e\x25\x7c", [0x11ed] = "\x02\x23\x79", - [0x11ee] = "\x02\x23\x7b", [0x11ef] = "\x02\x24\x23", - [0x11f0] = "\x0e\x26\x22", [0x11f1] = "\x01\x4a\x37", - [0x11f2] = "\x0e\x26\x21", [0x11f3] = "\x02\x23\x7c", - [0x11f4] = "\x02\x24\x27", [0x11f5] = "\x01\x4d\x42", - [0x11f6] = "\x0e\x25\x7d", [0x11f7] = "\x02\x24\x24", - [0x11f8] = "\x01\x4a\x39", [0x11f9] = "\x0e\x26\x23", - [0x11fa] = "\x02\x24\x22", [0x11fb] = "\x02\x24\x25", - [0x11fc] = "\x0e\x25\x7a", [0x11fd] = "\x01\x4d\x41", - [0x11fe] = "\x0e\x25\x75", [0x11ff] = "\x01\x4d\x43", - [0x1200] = "\x02\x24\x26", [0x1207] = "\x0e\x28\x78", - [0x1208] = "\x0e\x29\x22", [0x1209] = "\x02\x26\x6e", - [0x120a] = "\x02\x26\x61", [0x120b] = "\x02\x26\x5f", - [0x120c] = "\x02\x26\x6d", [0x120d] = "\x02\x26\x68", - [0x120e] = "\x01\x51\x2b", [0x120f] = "\x01\x4d\x44", - [0x1210] = "\x02\x26\x69", [0x1211] = "\x02\x26\x6c", - [0x1212] = "\x01\x51\x27", [0x1213] = "\x02\x26\x6b", - [0x1214] = "\x01\x4d\x45", [0x1215] = "\x01\x4d\x4a", - [0x1216] = "\x01\x4d\x48", [0x1217] = "\x02\x26\x62", - [0x1218] = "\x0e\x62\x66", [0x1219] = "\x02\x26\x5d", - [0x121a] = "\x02\x26\x64", [0x121b] = "\x01\x4d\x4f", - [0x121c] = "\x02\x26\x6f", [0x121d] = "\x01\x51\x28", - [0x121e] = "\x02\x26\x65", [0x1220] = "\x01\x51\x29", - [0x1221] = "\x01\x4d\x4b", [0x1222] = "\x02\x26\x67", - [0x1223] = "\x0e\x2c\x5a", [0x1224] = "\x02\x2a\x4e", - [0x1225] = "\x01\x51\x2a", [0x1226] = "\x02\x26\x5c", - [0x1227] = "\x01\x4d\x4c", [0x1228] = "\x01\x51\x2c", - [0x1229] = "\x01\x4d\x4d", [0x122a] = "\x01\x4d\x49", - [0x122b] = "\x01\x4d\x4e", [0x122c] = "\x02\x26\x66", - [0x122d] = "\x02\x26\x5b", [0x122e] = "\x02\x26\x6a", - [0x122f] = "\x01\x4d\x46", [0x1230] = "\x0e\x28\x77", - [0x1231] = "\x0e\x2c\x5b", [0x1232] = "\x02\x26\x5e", - [0x1233] = "\x02\x26\x63", [0x1234] = "\x02\x26\x60", - [0x1235] = "\x01\x4d\x47", [0x1236] = "\x0e\x28\x7a", - [0x1237] = "\x02\x2a\x40", [0x1239] = "\x02\x2a\x41", - [0x123d] = "\x0e\x29\x21", [0x1240] = "\x02\x2a\x4b", - [0x1241] = "\x02\x2f\x23", [0x1242] = "\x02\x2a\x4c", - [0x1243] = "\x01\x51\x32", [0x1244] = "\x02\x2a\x4f", - [0x1245] = "\x02\x2a\x45", [0x1246] = "\x01\x51\x31", - [0x1247] = "\x02\x2a\x47", [0x1248] = "\x0e\x62\x67", - [0x1249] = "\x02\x2a\x48", [0x124a] = "\x0e\x2c\x60", - [0x124b] = "\x0e\x30\x79", [0x124c] = "\x02\x2a\x4a", - [0x124d] = "\x01\x51\x2d", [0x124e] = "\x0e\x2c\x56", - [0x124f] = "\x0e\x30\x73", [0x1250] = "\x01\x55\x45", - [0x1251] = "\x0e\x2c\x57", [0x1252] = "\x0e\x2c\x5d", - [0x1253] = "\x02\x2a\x46", [0x1254] = "\x02\x2a\x42", - [0x1255] = "\x01\x55\x46", [0x1256] = "\x0e\x30\x7e", - [0x1258] = "\x02\x2a\x50", [0x1259] = "\x01\x55\x42", - [0x125a] = "\x02\x2f\x21", [0x125b] = "\x02\x2a\x49", - [0x125c] = "\x0e\x2c\x54", [0x125d] = "\x02\x2e\x7e", - [0x125e] = "\x02\x2a\x44", [0x125f] = "\x02\x2a\x4d", - [0x1260] = "\x0e\x2c\x5f", [0x1261] = "\x0e\x2c\x61", - [0x1262] = "\x01\x51\x30", [0x1263] = "\x01\x55\x43", - [0x1264] = "\x01\x51\x36", [0x1265] = "\x01\x55\x44", - [0x1266] = "\x02\x2a\x51", [0x1267] = "\x02\x2f\x22", - [0x1268] = "\x01\x51\x2f", [0x1269] = "\x01\x55\x48", - [0x126a] = "\x01\x51\x35", [0x126b] = "\x01\x51\x34", - [0x126c] = "\x01\x51\x33", [0x126d] = "\x01\x55\x47", - [0x126e] = "\x02\x2a\x52", [0x126f] = "\x01\x55\x49", - [0x1270] = "\x01\x51\x2e", [0x1272] = "\x02\x2a\x43", - [0x1273] = "\x0e\x30\x7a", [0x1274] = "\x0e\x30\x78", - [0x1275] = "\x0e\x30\x7b", [0x127c] = "\x0e\x2c\x5c", - [0x127e] = "\x0e\x30\x76", [0x127f] = "\x01\x5a\x3c", - [0x1280] = "\x02\x2f\x26", [0x1281] = "\x02\x2f\x28", - [0x1283] = "\x02\x2f\x2a", [0x1284] = "\x01\x55\x4a", - [0x1285] = "\x01\x55\x50", [0x1286] = "\x02\x35\x37", - [0x1287] = "\x02\x2f\x2e", [0x1288] = "\x02\x2f\x25", - [0x1289] = "\x01\x5a\x3e", [0x128a] = "\x02\x35\x35", - [0x128b] = "\x0e\x31\x22", [0x128c] = "\x01\x55\x4f", - [0x128d] = "\x01\x55\x4d", [0x128e] = "\x02\x2f\x30", - [0x1290] = "\x02\x35\x36", [0x1292] = "\x02\x2f\x27", - [0x1293] = "\x0e\x31\x25", [0x1294] = "\x01\x55\x4e", - [0x1295] = "\x02\x2f\x2b", [0x1296] = "\x01\x55\x51", - [0x1297] = "\x02\x2f\x2d", [0x1298] = "\x0e\x35\x68", - [0x1299] = "\x0e\x30\x74", [0x129a] = "\x01\x55\x4c", - [0x129b] = "\x02\x2f\x2c", [0x129c] = "\x02\x2f\x2f", - [0x129d] = "\x02\x2f\x29", [0x129e] = "\x0e\x31\x27", - [0x129f] = "\x01\x55\x4b", [0x12a0] = "\x01\x5a\x3f", - [0x12a1] = "\x0e\x35\x71", [0x12a2] = "\x02\x2f\x24", - [0x12a3] = "\x01\x5a\x3d", [0x12a4] = "\x0e\x35\x72", - [0x12a6] = "\x0e\x31\x23", [0x12a7] = "\x0e\x31\x28", - [0x12a8] = "\x01\x5a\x40", [0x12a9] = "\x0e\x31\x21", - [0x12aa] = "\x0e\x35\x6f", [0x12ae] = "\x0e\x31\x26", - [0x12b0] = "\x02\x35\x39", [0x12b1] = "\x02\x35\x42", - [0x12b2] = "\x01\x5f\x2b", [0x12b3] = "\x0e\x3b\x54", - [0x12b4] = "\x01\x5a\x42", [0x12b5] = "\x01\x5a\x47", - [0x12b6] = "\x01\x5f\x2c", [0x12b7] = "\x02\x35\x44", - [0x12b8] = "\x01\x5a\x4e", [0x12b9] = "\x02\x3b\x5d", - [0x12ba] = "\x02\x35\x3a", [0x12bb] = "\x01\x5a\x46", - [0x12bc] = "\x01\x5a\x49", [0x12bd] = "\x01\x5a\x44", - [0x12be] = "\x02\x35\x38", [0x12bf] = "\x02\x35\x46", - [0x12c0] = "\x02\x35\x49", [0x12c1] = "\x02\x3b\x6c", - [0x12c3] = "\x02\x35\x47", [0x12c4] = "\x02\x3b\x61", - [0x12c5] = "\x01\x5a\x45", [0x12c6] = "\x01\x5a\x4c", - [0x12c7] = "\x01\x5a\x50", [0x12c8] = "\x02\x35\x41", - [0x12c9] = "\x02\x3b\x5c", [0x12ca] = "\x02\x35\x45", - [0x12cb] = "\x01\x5a\x41", [0x12cc] = "\x02\x3b\x5e", - [0x12cd] = "\x02\x35\x48", [0x12ce] = "\x02\x3b\x60", - [0x12cf] = "\x02\x35\x3d", [0x12d0] = "\x0e\x35\x6a", - [0x12d1] = "\x01\x5f\x29", [0x12d2] = "\x0e\x3b\x56", - [0x12d3] = "\x02\x35\x3b", [0x12d4] = "\x02\x35\x3c", - [0x12d5] = "\x01\x5a\x4b", [0x12d6] = "\x0e\x3b\x55", - [0x12d7] = "\x0e\x35\x6e", [0x12d8] = "\x01\x5a\x4a", - [0x12d9] = "\x02\x35\x3f", [0x12da] = "\x01\x5a\x4f", - [0x12db] = "\x02\x35\x43", [0x12dc] = "\x01\x5a\x48", - [0x12dd] = "\x02\x35\x40", [0x12de] = "\x0e\x35\x79", - [0x12df] = "\x01\x5a\x4d", [0x12e0] = "\x01\x5f\x2d", - [0x12e1] = "\x01\x5f\x2a", [0x12e2] = "\x02\x3b\x5f", - [0x12e3] = "\x0e\x3b\x58", [0x12e4] = "\x02\x35\x3e", - [0x12e5] = "\x0e\x3b\x59", [0x12e6] = "\x01\x5a\x43", - [0x12e7] = "\x0e\x35\x76", [0x12e9] = "\x0e\x3b\x5a", - [0x12ea] = "\x0e\x3b\x4d", [0x12ee] = "\x0e\x35\x74", - [0x12f0] = "\x01\x5f\x32", [0x12f1] = "\x01\x5f\x36", - [0x12f2] = "\x02\x3b\x63", [0x12f3] = "\x01\x63\x77", - [0x12f4] = "\x01\x5f\x34", [0x12f5] = "\x02\x3b\x67", - [0x12f6] = "\x01\x5f\x38", [0x12f7] = "\x02\x42\x6b", - [0x12f8] = "\x02\x3b\x69", [0x12f9] = "\x01\x63\x79", - [0x12fa] = "\x01\x5f\x30", [0x12fb] = "\x01\x5f\x33", - [0x12fc] = "\x02\x3b\x6a", [0x12fd] = "\x0e\x3b\x5e", - [0x12fe] = "\x02\x3b\x6b", [0x12ff] = "\x02\x3b\x71", - [0x1300] = "\x01\x5f\x3a", [0x1301] = "\x01\x63\x7a", - [0x1303] = "\x02\x3b\x6d", [0x1304] = "\x02\x3b\x72", - [0x1305] = "\x02\x3b\x66", [0x1306] = "\x01\x64\x26", - [0x1307] = "\x0e\x3b\x4f", [0x1308] = "\x01\x63\x7b", - [0x1309] = "\x01\x5f\x39", [0x130a] = "\x02\x3b\x64", - [0x130b] = "\x02\x3b\x73", [0x130c] = "\x0e\x3b\x51", - [0x130d] = "\x01\x64\x25", [0x130e] = "\x01\x5f\x37", - [0x130f] = "\x01\x63\x74", [0x1310] = "\x02\x3b\x70", - [0x1311] = "\x0e\x3b\x5d", [0x1312] = "\x01\x5f\x3b", - [0x1313] = "\x02\x3b\x68", [0x1314] = "\x02\x3b\x62", - [0x1315] = "\x01\x5f\x31", [0x1316] = "\x02\x3b\x65", - [0x1318] = "\x02\x3b\x6e", [0x1319] = "\x0e\x41\x2b", - [0x131a] = "\x01\x63\x73", [0x131b] = "\x01\x63\x78", - [0x131c] = "\x01\x5f\x2e", [0x131d] = "\x02\x3b\x6f", - [0x131e] = "\x0e\x3b\x61", [0x131f] = "\x01\x63\x76", - [0x1320] = "\x0e\x3b\x62", [0x1321] = "\x0e\x3b\x63", - [0x1322] = "\x0e\x3b\x50", [0x1323] = "\x01\x5f\x2f", - [0x1325] = "\x0e\x64\x79", [0x1327] = "\x01\x64\x24", - [0x1328] = "\x02\x4a\x2a", [0x1329] = "\x02\x42\x76", - [0x132a] = "\x0e\x41\x29", [0x132b] = "\x02\x42\x6e", - [0x132c] = "\x02\x4a\x29", [0x132e] = "\x02\x42\x72", - [0x132f] = "\x02\x42\x74", [0x1330] = "\x0e\x41\x27", - [0x1331] = "\x0e\x41\x2c", [0x1332] = "\x02\x42\x71", - [0x1333] = "\x0e\x46\x6f", [0x1334] = "\x01\x64\x23", - [0x1336] = "\x02\x42\x70", [0x1337] = "\x01\x64\x27", - [0x1338] = "\x0e\x46\x6e", [0x133a] = "\x0e\x41\x28", - [0x133b] = "\x02\x4a\x39", [0x133c] = "\x0e\x46\x6c", - [0x133d] = "\x0e\x41\x2e", [0x133e] = "\x01\x64\x22", - [0x133f] = "\x01\x68\x67", [0x1340] = "\x02\x42\x77", - [0x1341] = "\x02\x4a\x2b", [0x1342] = "\x0e\x46\x6d", - [0x1343] = "\x0e\x41\x2a", [0x1344] = "\x01\x63\x7e", - [0x1345] = "\x02\x42\x6f", [0x1346] = "\x02\x42\x73", - [0x1347] = "\x01\x68\x66", [0x1348] = "\x01\x63\x75", - [0x1349] = "\x02\x42\x6c", [0x134a] = "\x02\x42\x6d", - [0x134b] = "\x01\x68\x68", [0x134c] = "\x01\x63\x7d", - [0x134d] = "\x01\x64\x21", [0x134e] = "\x01\x63\x7c", - [0x134f] = "\x02\x42\x75", [0x1350] = "\x0e\x64\x7a", - [0x1352] = "\x02\x4a\x2f", [0x1353] = "\x02\x4a\x30", - [0x1354] = "\x02\x4a\x35", [0x1355] = "\x01\x6c\x67", - [0x1356] = "\x02\x4a\x3c", [0x1357] = "\x0e\x4b\x73", - [0x1358] = "\x01\x68\x6e", [0x1359] = "\x0e\x4b\x7e", - [0x135a] = "\x01\x68\x6d", [0x135b] = "\x02\x4a\x37", - [0x135c] = "\x0e\x4b\x74", [0x135d] = "\x01\x6c\x66", - [0x135e] = "\x02\x4a\x2c", [0x135f] = "\x01\x68\x6c", - [0x1360] = "\x0e\x46\x71", [0x1361] = "\x02\x4a\x3b", - [0x1362] = "\x01\x68\x6a", [0x1363] = "\x01\x68\x6b", - [0x1364] = "\x0e\x4b\x7c", [0x1365] = "\x02\x4a\x38", - [0x1366] = "\x02\x50\x51", [0x1367] = "\x01\x6c\x64", - [0x1368] = "\x01\x5f\x35", [0x1369] = "\x0e\x46\x72", - [0x136a] = "\x02\x4a\x3a", [0x136b] = "\x01\x6c\x6b", - [0x136c] = "\x02\x4a\x32", [0x136e] = "\x01\x6c\x65", - [0x136f] = "\x0e\x46\x6a", [0x1370] = "\x01\x6c\x6a", - [0x1371] = "\x02\x4a\x2d", [0x1372] = "\x02\x4a\x31", - [0x1373] = "\x02\x4a\x2e", [0x1374] = "\x02\x4a\x34", - [0x1375] = "\x01\x68\x6f", [0x1376] = "\x01\x6c\x63", - [0x1377] = "\x01\x68\x69", [0x1378] = "\x0e\x4c\x21", - [0x1379] = "\x02\x50\x43", [0x137a] = "\x02\x4a\x36", - [0x137b] = "\x0e\x46\x68", [0x137c] = "\x01\x6c\x69", - [0x137d] = "\x0e\x46\x73", [0x137e] = "\x01\x6c\x6c", - [0x1380] = "\x02\x4a\x33", [0x1381] = "\x0e\x46\x6b", - [0x1382] = "\x01\x6c\x68", [0x1383] = "\x02\x50\x42", - [0x1385] = "\x0e\x4c\x23", [0x1386] = "\x0e\x46\x74", - [0x1387] = "\x0e\x4c\x24", [0x1388] = "\x0e\x4b\x77", - [0x1389] = "\x02\x50\x47", [0x138a] = "\x01\x70\x57", - [0x138b] = "\x02\x50\x41", [0x138c] = "\x02\x57\x2e", - [0x138d] = "\x02\x50\x50", [0x138e] = "\x01\x6c\x70", - [0x138f] = "\x0e\x4b\x7a", [0x1390] = "\x01\x6c\x6e", - [0x1391] = "\x01\x70\x55", [0x1392] = "\x02\x50\x4d", - [0x1393] = "\x02\x50\x49", [0x1394] = "\x01\x6c\x74", - [0x1395] = "\x0e\x4b\x76", [0x1396] = "\x02\x57\x25", - [0x1397] = "\x0e\x50\x68", [0x1398] = "\x0e\x4c\x28", - [0x1399] = "\x0e\x50\x67", [0x139a] = "\x01\x6c\x72", - [0x139b] = "\x02\x50\x48", [0x139c] = "\x0e\x4c\x29", - [0x139d] = "\x02\x57\x23", [0x139e] = "\x0e\x4c\x25", - [0x139f] = "\x02\x50\x4c", [0x13a1] = "\x02\x50\x4f", - [0x13a2] = "\x02\x50\x46", [0x13a3] = "\x0e\x4b\x79", - [0x13a4] = "\x01\x6c\x73", [0x13a6] = "\x0e\x4b\x75", - [0x13a7] = "\x01\x6c\x6d", [0x13a8] = "\x02\x57\x24", - [0x13a9] = "\x01\x70\x56", [0x13aa] = "\x02\x50\x4e", - [0x13ab] = "\x01\x6c\x6f", [0x13ac] = "\x01\x6c\x71", - [0x13ad] = "\x02\x50\x4b", [0x13ae] = "\x01\x6c\x75", - [0x13af] = "\x02\x50\x4a", [0x13b0] = "\x02\x50\x45", - [0x13b1] = "\x02\x50\x44", [0x13b2] = "\x01\x70\x54", - [0x13b3] = "\x02\x50\x52", [0x13b4] = "\x02\x57\x27", - [0x13b5] = "\x02\x5c\x6b", [0x13b6] = "\x01\x70\x59", - [0x13b7] = "\x0e\x50\x61", [0x13b8] = "\x02\x57\x2d", - [0x13b9] = "\x0e\x50\x63", [0x13ba] = "\x02\x57\x2b", - [0x13bb] = "\x0e\x50\x6a", [0x13bc] = "\x02\x5c\x6c", - [0x13bd] = "\x0e\x50\x64", [0x13be] = "\x01\x70\x5a", - [0x13bf] = "\x02\x57\x2c", [0x13c0] = "\x0e\x50\x66", - [0x13c1] = "\x02\x57\x29", [0x13c2] = "\x01\x73\x5d", - [0x13c3] = "\x02\x5c\x6a", [0x13c4] = "\x0e\x50\x6c", - [0x13c5] = "\x02\x57\x26", [0x13c6] = "\x02\x57\x28", - [0x13c7] = "\x01\x73\x5e", [0x13c8] = "\x01\x70\x5c", - [0x13c9] = "\x01\x73\x5c", [0x13ca] = "\x01\x70\x5b", - [0x13cb] = "\x01\x73\x60", [0x13cc] = "\x02\x57\x2a", - [0x13cd] = "\x01\x70\x58", [0x13ce] = "\x0e\x50\x62", - [0x13cf] = "\x0e\x50\x65", [0x13d0] = "\x0e\x50\x6b", - [0x13d3] = "\x0e\x66\x79", [0x13d6] = "\x02\x61\x5b", - [0x13d8] = "\x02\x61\x53", [0x13d9] = "\x0e\x54\x61", - [0x13da] = "\x0e\x54\x5f", [0x13db] = "\x0e\x54\x5c", - [0x13dc] = "\x0e\x54\x5e", [0x13dd] = "\x0e\x54\x5d", - [0x13de] = "\x02\x5c\x72", [0x13df] = "\x02\x61\x54", - [0x13e0] = "\x02\x5c\x6e", [0x13e2] = "\x0e\x54\x5b", - [0x13e3] = "\x01\x76\x42", [0x13e4] = "\x02\x5c\x70", - [0x13e5] = "\x02\x5c\x6f", [0x13e6] = "\x01\x73\x5f", - [0x13e7] = "\x02\x5c\x6d", [0x13e8] = "\x02\x5c\x71", - [0x13e9] = "\x02\x61\x5c", [0x13ea] = "\x02\x61\x58", - [0x13eb] = "\x02\x61\x5a", [0x13ed] = "\x02\x61\x55", - [0x13ee] = "\x02\x61\x56", [0x13f0] = "\x02\x61\x59", - [0x13f1] = "\x02\x61\x57", [0x13f2] = "\x01\x78\x34", - [0x13f3] = "\x0e\x57\x65", [0x13f5] = "\x01\x78\x37", - [0x13f6] = "\x01\x78\x36", [0x13f7] = "\x01\x78\x35", - [0x13f8] = "\x01\x79\x6c", [0x13f9] = "\x02\x68\x76", - [0x13fa] = "\x01\x79\x6d", [0x13fb] = "\x02\x65\x4c", - [0x13fc] = "\x01\x7a\x6a", [0x13fd] = "\x02\x6b\x5a", - [0x13fe] = "\x01\x7a\x6b", [0x13ff] = "\x01\x7b\x60", - [0x1400] = "\x01\x7c\x36", [0x1401] = "\x02\x6f\x28", - [0x1402] = "\x0e\x5f\x46", [0x1403] = "\x02\x6f\x29", - [0x1404] = "\x02\x6f\x2a", [0x1405] = "\x0e\x61\x3e", - [0x1407] = "\x02\x72\x2a", [0x1408] = "\x01\x45\x41", - [0x1409] = "\x02\x21\x5d", [0x140a] = "\x01\x46\x53", - [0x140c] = "\x01\x48\x27", [0x140d] = "\x01\x48\x28", - [0x140e] = "\x01\x48\x26", [0x140f] = "\x0e\x23\x6b", - [0x1410] = "\x01\x48\x29", [0x1411] = "\x01\x4a\x3c", - [0x1412] = "\x01\x4a\x3b", [0x1413] = "\x0e\x26\x25", - [0x1414] = "\x02\x26\x70", [0x1415] = "\x01\x4d\x51", - [0x1416] = "\x01\x4d\x50", [0x1418] = "\x0e\x2c\x63", - [0x1419] = "\x02\x2f\x31", [0x141a] = "\x01\x5a\x51", - [0x141b] = "\x01\x5a\x52", [0x141e] = "\x0e\x3b\x64", - [0x141f] = "\x01\x5f\x3c", [0x1420] = "\x02\x42\x78", - [0x1421] = "\x01\x64\x28", [0x1422] = "\x01\x64\x29", - [0x1423] = "\x02\x42\x7a", [0x1424] = "\x02\x42\x7c", - [0x1425] = "\x02\x42\x7b", [0x1427] = "\x02\x4a\x3e", - [0x1428] = "\x0e\x46\x76", [0x1429] = "\x02\x4a\x3d", - [0x142a] = "\x01\x68\x70", [0x142b] = "\x02\x4a\x3f", - [0x142c] = "\x0e\x46\x75", [0x142d] = "\x02\x50\x53", - [0x142e] = "\x01\x6c\x76", [0x142f] = "\x0e\x4c\x2c", - [0x1430] = "\x01\x70\x5d", [0x1431] = "\x0e\x50\x6d", - [0x1432] = "\x01\x73\x61", [0x1433] = "\x01\x76\x43", - [0x1434] = "\x01\x73\x62", [0x1435] = "\x0e\x5f\x48", - [0x1436] = "\x01\x45\x42", [0x1437] = "\x0e\x21\x65", - [0x1438] = "\x0e\x21\x66", [0x1439] = "\x0e\x22\x4e", - [0x143a] = "\x02\x24\x28", [0x143b] = "\x0e\x26\x28", - [0x143c] = "\x0e\x26\x29", [0x143d] = "\x02\x26\x71", - [0x143e] = "\x01\x4d\x53", [0x143f] = "\x01\x4d\x52", - [0x1440] = "\x01\x4d\x54", [0x1441] = "\x01\x51\x37", - [0x1442] = "\x02\x2a\x53", [0x1443] = "\x02\x2a\x54", - [0x1445] = "\x0e\x31\x29", [0x1446] = "\x02\x2f\x32", - [0x1447] = "\x01\x55\x52", [0x1448] = "\x01\x5a\x53", - [0x1449] = "\x01\x5f\x3d", [0x144a] = "\x02\x3b\x74", - [0x144b] = "\x01\x45\x43", [0x144d] = "\x01\x44\x5f", - [0x144e] = "\x01\x45\x44", [0x144f] = "\x0e\x22\x50", - [0x1450] = "\x02\x21\x5e", [0x1451] = "\x01\x46\x57", - [0x1452] = "\x01\x46\x56", [0x1453] = "\x01\x46\x54", - [0x1454] = "\x01\x46\x55", [0x1457] = "\x0e\x23\x6f", - [0x1458] = "\x01\x48\x2c", [0x1459] = "\x02\x22\x49", - [0x145a] = "\x02\x22\x4b", [0x145b] = "\x01\x48\x2b", - [0x145c] = "\x02\x22\x43", [0x145d] = "\x0e\x23\x6c", - [0x145e] = "\x02\x22\x44", [0x145f] = "\x0e\x23\x6d", - [0x1460] = "\x02\x22\x4a", [0x1461] = "\x02\x22\x46", - [0x1462] = "\x02\x22\x48", [0x1463] = "\x01\x48\x2a", - [0x1464] = "\x02\x22\x45", [0x1465] = "\x02\x22\x4c", - [0x1466] = "\x02\x22\x47", [0x1467] = "\x0e\x23\x6e", - [0x146d] = "\x01\x4a\x43", [0x146e] = "\x01\x4a\x4c", - [0x146f] = "\x01\x4a\x4a", [0x1470] = "\x02\x24\x32", - [0x1471] = "\x02\x24\x2f", [0x1472] = "\x02\x24\x37", - [0x1473] = "\x01\x4a\x48", [0x1474] = "\x02\x24\x38", - [0x1475] = "\x0e\x26\x39", [0x1476] = "\x01\x4a\x41", - [0x1477] = "\x02\x24\x35", [0x1478] = "\x0e\x26\x2e", - [0x1479] = "\x01\x4a\x47", [0x147a] = "\x02\x24\x31", - [0x147b] = "\x02\x24\x30", [0x147c] = "\x01\x4a\x45", - [0x147d] = "\x02\x24\x36", [0x147e] = "\x01\x4a\x46", - [0x147f] = "\x01\x4d\x55", [0x1480] = "\x01\x4a\x40", - [0x1481] = "\x02\x24\x33", [0x1482] = "\x0e\x26\x2a", - [0x1483] = "\x02\x24\x29", [0x1484] = "\x01\x4a\x3d", - [0x1485] = "\x0e\x26\x37", [0x1486] = "\x01\x4a\x50", - [0x1487] = "\x02\x24\x2e", [0x1488] = "\x02\x24\x34", - [0x1489] = "\x01\x4a\x42", [0x148a] = "\x01\x4a\x44", - [0x148b] = "\x0e\x26\x2f", [0x148c] = "\x02\x24\x2a", - [0x148d] = "\x0e\x26\x36", [0x148e] = "\x02\x24\x2b", - [0x148f] = "\x02\x24\x2c", [0x1491] = "\x01\x4a\x4f", - [0x1492] = "\x01\x4a\x49", [0x1493] = "\x01\x4a\x4e", - [0x1494] = "\x02\x24\x2d", [0x1495] = "\x01\x4a\x4d", - [0x1496] = "\x01\x4a\x3f", [0x1497] = "\x01\x4a\x3e", - [0x1498] = "\x01\x4a\x4b", [0x1499] = "\x0e\x26\x35", - [0x149b] = "\x0e\x26\x33", [0x149c] = "\x0e\x26\x34", - [0x149d] = "\x0e\x26\x38", [0x149e] = "\x0e\x26\x31", - [0x14a3] = "\x0e\x64\x7b", [0x14a5] = "\x0e\x26\x32", - [0x14a6] = "\x0e\x29\x31", [0x14a7] = "\x0e\x29\x2a", - [0x14a8] = "\x01\x4d\x63", [0x14a9] = "\x02\x26\x7d", - [0x14aa] = "\x02\x26\x76", [0x14ab] = "\x01\x4d\x5e", - [0x14ac] = "\x01\x4d\x71", [0x14ad] = "\x02\x26\x72", - [0x14ae] = "\x02\x26\x79", [0x14af] = "\x02\x26\x7b", - [0x14b0] = "\x02\x26\x7e", [0x14b1] = "\x01\x4d\x6c", - [0x14b2] = "\x0e\x29\x26", [0x14b3] = "\x02\x26\x7a", - [0x14b4] = "\x02\x26\x73", [0x14b5] = "\x01\x4d\x6a", - [0x14b6] = "\x02\x26\x77", [0x14b7] = "\x0e\x29\x28", - [0x14b8] = "\x02\x27\x21", [0x14b9] = "\x01\x4d\x5b", - [0x14ba] = "\x0e\x29\x25", [0x14bb] = "\x02\x26\x7c", - [0x14bc] = "\x01\x4d\x65", [0x14bd] = "\x01\x4d\x64", - [0x14be] = "\x02\x26\x75", [0x14bf] = "\x01\x4d\x59", - [0x14c0] = "\x0e\x29\x34", [0x14c1] = "\x0e\x29\x32", - [0x14c2] = "\x01\x4d\x5a", [0x14c4] = "\x01\x4d\x58", - [0x14c5] = "\x0e\x29\x33", [0x14c6] = "\x01\x4d\x70", - [0x14c7] = "\x01\x4d\x68", [0x14c8] = "\x01\x4d\x62", - [0x14c9] = "\x01\x4d\x56", [0x14ca] = "\x02\x26\x78", - [0x14cb] = "\x01\x4d\x61", [0x14cc] = "\x01\x4d\x57", - [0x14cd] = "\x01\x4d\x69", [0x14ce] = "\x01\x4d\x72", - [0x14cf] = "\x02\x2a\x55", [0x14d0] = "\x01\x4d\x66", - [0x14d1] = "\x02\x26\x74", [0x14d2] = "\x01\x4d\x5c", - [0x14d3] = "\x01\x4d\x5f", [0x14d4] = "\x01\x4d\x60", - [0x14d5] = "\x0e\x29\x2e", [0x14d6] = "\x01\x4d\x6e", - [0x14d7] = "\x01\x4d\x6f", [0x14d8] = "\x01\x4d\x6d", - [0x14d9] = "\x01\x4d\x67", [0x14da] = "\x01\x4d\x6b", - [0x14db] = "\x01\x4d\x5d", [0x14dc] = "\x01\x51\x38", - [0x14dd] = "\x0e\x29\x30", [0x14de] = "\x0e\x29\x37", - [0x14df] = "\x0e\x29\x35", [0x14e0] = "\x0e\x29\x36", - [0x14e1] = "\x0e\x29\x2f", [0x14e4] = "\x0e\x29\x29", - [0x14ea] = "\x0e\x2c\x6d", [0x14eb] = "\x02\x2a\x5b", - [0x14ec] = "\x01\x51\x44", [0x14ed] = "\x01\x51\x3c", - [0x14ee] = "\x01\x51\x3e", [0x14ef] = "\x01\x51\x43", - [0x14f0] = "\x02\x2a\x67", [0x14f1] = "\x01\x51\x41", - [0x14f2] = "\x02\x2f\x33", [0x14f3] = "\x01\x55\x53", - [0x14f4] = "\x01\x51\x46", [0x14f5] = "\x02\x2a\x58", - [0x14f6] = "\x02\x2a\x60", [0x14f7] = "\x01\x51\x42", - [0x14f8] = "\x02\x2a\x5f", [0x14f9] = "\x02\x2a\x5c", - [0x14fa] = "\x02\x2a\x64", [0x14fb] = "\x02\x2a\x66", - [0x14fc] = "\x01\x51\x3b", [0x14fd] = "\x01\x51\x3f", - [0x14fe] = "\x01\x51\x45", [0x14ff] = "\x01\x55\x55", - [0x1500] = "\x02\x2a\x61", [0x1501] = "\x01\x51\x3d", - [0x1502] = "\x01\x51\x48", [0x1503] = "\x02\x2a\x5a", - [0x1504] = "\x0e\x2c\x6f", [0x1505] = "\x0e\x2c\x70", - [0x1507] = "\x01\x51\x40", [0x1508] = "\x01\x55\x54", - [0x1509] = "\x01\x51\x3a", [0x150b] = "\x02\x2a\x57", - [0x150c] = "\x02\x2a\x5e", [0x150d] = "\x02\x2a\x56", - [0x150e] = "\x02\x2a\x59", [0x150f] = "\x02\x2a\x5d", - [0x1510] = "\x02\x2f\x34", [0x1511] = "\x01\x51\x47", - [0x1513] = "\x02\x2a\x62", [0x1514] = "\x02\x2a\x63", - [0x1515] = "\x02\x2a\x65", [0x1516] = "\x01\x51\x39", - [0x1517] = "\x0e\x2c\x6c", [0x1519] = "\x0e\x31\x32", - [0x151b] = "\x0e\x31\x33", [0x151f] = "\x0e\x2c\x6b", - [0x1521] = "\x0e\x2c\x6e", [0x1528] = "\x01\x55\x63", - [0x1529] = "\x02\x2f\x40", [0x152a] = "\x01\x55\x61", - [0x152b] = "\x01\x55\x62", [0x152c] = "\x02\x2f\x36", - [0x152d] = "\x02\x2f\x46", [0x152e] = "\x0e\x31\x2c", - [0x152f] = "\x01\x55\x58", [0x1530] = "\x0e\x31\x2f", - [0x1531] = "\x0e\x31\x35", [0x1532] = "\x02\x35\x4a", - [0x1533] = "\x02\x2f\x48", [0x1534] = "\x02\x2f\x42", - [0x1535] = "\x0e\x31\x38", [0x1536] = "\x02\x2f\x39", - [0x1537] = "\x0e\x31\x37", [0x1538] = "\x02\x2f\x4b", - [0x1539] = "\x02\x2f\x3c", [0x153a] = "\x01\x55\x5e", - [0x153b] = "\x02\x35\x61", [0x153c] = "\x02\x2f\x3f", - [0x153d] = "\x01\x55\x60", [0x153e] = "\x01\x55\x57", - [0x153f] = "\x0e\x31\x3c", [0x1540] = "\x02\x2f\x4d", - [0x1541] = "\x02\x2f\x41", [0x1542] = "\x01\x55\x5a", - [0x1543] = "\x02\x2f\x3a", [0x1544] = "\x02\x2f\x37", - [0x1545] = "\x02\x2f\x38", [0x1546] = "\x01\x55\x5b", - [0x1547] = "\x02\x2f\x47", [0x1548] = "\x02\x2f\x4e", - [0x1549] = "\x01\x55\x5d", [0x154a] = "\x02\x2f\x3e", - [0x154b] = "\x02\x2f\x3d", [0x154c] = "\x01\x55\x65", - [0x154d] = "\x01\x55\x64", [0x154e] = "\x01\x55\x56", - [0x154f] = "\x01\x55\x5c", [0x1550] = "\x01\x55\x5f", - [0x1551] = "\x02\x2f\x4a", [0x1552] = "\x0e\x31\x2e", - [0x1553] = "\x0e\x31\x39", [0x1554] = "\x02\x2f\x44", - [0x1555] = "\x01\x55\x59", [0x1556] = "\x02\x2f\x35", - [0x1557] = "\x02\x2f\x4c", [0x1558] = "\x02\x2f\x43", - [0x1559] = "\x02\x2f\x45", [0x155a] = "\x02\x2f\x49", - [0x155b] = "\x0e\x31\x30", [0x155c] = "\x0e\x31\x3b", - [0x155d] = "\x0e\x31\x36", [0x1560] = "\x0e\x64\x7c", - [0x1564] = "\x0e\x64\x7d", [0x1565] = "\x02\x35\x4b", - [0x1566] = "\x0e\x36\x31", [0x1567] = "\x01\x5a\x5b", - [0x1568] = "\x01\x5a\x6f", [0x1569] = "\x01\x5a\x6e", - [0x156a] = "\x0e\x36\x27", [0x156b] = "\x01\x5a\x63", - [0x156c] = "\x0e\x36\x29", [0x156d] = "\x02\x35\x5d", - [0x156e] = "\x02\x35\x59", [0x156f] = "\x02\x35\x56", - [0x1570] = "\x02\x35\x68", [0x1571] = "\x01\x5a\x5e", - [0x1572] = "\x01\x5a\x56", [0x1573] = "\x0e\x36\x26", - [0x1574] = "\x0e\x36\x32", [0x1575] = "\x02\x35\x5b", - [0x1576] = "\x01\x5f\x4d", [0x1577] = "\x01\x5a\x5a", - [0x1578] = "\x02\x35\x63", [0x1579] = "\x0e\x36\x22", - [0x157a] = "\x01\x5a\x70", [0x157b] = "\x01\x5a\x6d", - [0x157c] = "\x02\x35\x5f", [0x157d] = "\x02\x35\x4e", - [0x157e] = "\x0e\x35\x7c", [0x157f] = "\x0e\x36\x2b", - [0x1580] = "\x01\x5a\x6c", [0x1581] = "\x02\x35\x65", - [0x1582] = "\x02\x35\x4d", [0x1583] = "\x01\x5a\x61", - [0x1584] = "\x01\x5a\x65", [0x1585] = "\x02\x35\x64", - [0x1586] = "\x0e\x36\x23", [0x1587] = "\x02\x35\x57", - [0x1588] = "\x01\x5a\x66", [0x1589] = "\x01\x5a\x60", - [0x158a] = "\x02\x35\x4c", [0x158b] = "\x0e\x35\x7d", - [0x158c] = "\x01\x5f\x3f", [0x158d] = "\x02\x35\x67", - [0x158e] = "\x02\x35\x55", [0x158f] = "\x01\x5a\x6b", - [0x1590] = "\x02\x35\x58", [0x1591] = "\x02\x35\x66", - [0x1592] = "\x01\x5a\x6a", [0x1593] = "\x0e\x36\x24", - [0x1594] = "\x02\x3b\x75", [0x1596] = "\x01\x5a\x57", - [0x1597] = "\x02\x35\x53", [0x1598] = "\x01\x5a\x5c", - [0x1599] = "\x01\x5a\x67", [0x159b] = "\x01\x5a\x62", - [0x159c] = "\x02\x35\x5c", [0x159d] = "\x02\x35\x52", - [0x159e] = "\x02\x35\x50", [0x159f] = "\x02\x35\x62", - [0x15a0] = "\x01\x5a\x54", [0x15a1] = "\x01\x5a\x68", - [0x15a2] = "\x01\x5a\x58", [0x15a3] = "\x01\x5f\x3e", - [0x15a4] = "\x02\x35\x60", [0x15a5] = "\x01\x5a\x59", - [0x15a7] = "\x01\x5a\x55", [0x15a8] = "\x01\x5a\x64", - [0x15a9] = "\x01\x5a\x5f", [0x15aa] = "\x01\x5a\x5d", - [0x15ab] = "\x02\x35\x54", [0x15ac] = "\x01\x5a\x69", - [0x15ad] = "\x02\x35\x51", [0x15ae] = "\x02\x35\x5e", - [0x15af] = "\x02\x35\x5a", [0x15b0] = "\x02\x3b\x77", - [0x15b1] = "\x02\x3b\x76", [0x15b2] = "\x0e\x36\x2d", - [0x15b6] = "\x0e\x64\x7e", [0x15ba] = "\x0e\x36\x2e", - [0x15bd] = "\x02\x35\x4f", [0x15be] = "\x02\x3c\x29", - [0x15bf] = "\x0e\x3b\x71", [0x15c0] = "\x01\x5f\x41", - [0x15c1] = "\x0e\x3b\x70", [0x15c2] = "\x02\x3c\x2f", - [0x15c3] = "\x02\x3b\x7c", [0x15c4] = "\x02\x3c\x2c", - [0x15c5] = "\x02\x42\x7d", [0x15c6] = "\x01\x5f\x44", - [0x15c7] = "\x02\x3c\x30", [0x15c8] = "\x02\x3c\x33", - [0x15c9] = "\x01\x5f\x43", [0x15ca] = "\x02\x3c\x21", - [0x15cb] = "\x02\x3c\x32", [0x15cc] = "\x02\x3c\x31", - [0x15cd] = "\x01\x5f\x45", [0x15ce] = "\x02\x3b\x78", - [0x15cf] = "\x01\x5f\x40", [0x15d0] = "\x01\x5f\x48", - [0x15d1] = "\x0e\x3b\x73", [0x15d2] = "\x01\x5f\x46", - [0x15d3] = "\x02\x3c\x2e", [0x15d5] = "\x02\x3c\x24", - [0x15d6] = "\x01\x5f\x4a", [0x15d7] = "\x02\x3c\x35", - [0x15d8] = "\x02\x3c\x2d", [0x15d9] = "\x02\x3c\x36", - [0x15da] = "\x01\x5f\x52", [0x15db] = "\x01\x5f\x50", - [0x15dc] = "\x02\x3c\x2b", [0x15dd] = "\x02\x3c\x2a", - [0x15de] = "\x0e\x3b\x67", [0x15df] = "\x02\x3c\x28", - [0x15e0] = "\x02\x3c\x22", [0x15e1] = "\x01\x5f\x49", - [0x15e2] = "\x0e\x3b\x66", [0x15e3] = "\x01\x5f\x47", - [0x15e4] = "\x02\x2f\x3b", [0x15e5] = "\x02\x3b\x79", - [0x15e6] = "\x0e\x3b\x68", [0x15e7] = "\x02\x43\x3d", - [0x15e8] = "\x02\x3b\x7a", [0x15e9] = "\x01\x5f\x42", - [0x15ea] = "\x01\x5f\x4f", [0x15eb] = "\x02\x43\x21", - [0x15ed] = "\x01\x5f\x4b", [0x15ee] = "\x01\x5f\x4c", - [0x15ef] = "\x02\x3b\x7b", [0x15f0] = "\x02\x3c\x34", - [0x15f1] = "\x02\x42\x7e", [0x15f2] = "\x02\x3c\x25", - [0x15f3] = "\x02\x3b\x7e", [0x15f4] = "\x01\x5f\x4e", - [0x15f5] = "\x02\x3c\x26", [0x15f6] = "\x02\x3c\x23", - [0x15f7] = "\x0e\x3b\x72", [0x15f8] = "\x0e\x3b\x6d", - [0x15f9] = "\x01\x5f\x53", [0x15fa] = "\x0e\x63\x39", - [0x15fe] = "\x0e\x3b\x6f", [0x1603] = "\x0e\x65\x21", - [0x1606] = "\x01\x64\x38", [0x1607] = "\x0e\x41\x49", - [0x1608] = "\x0e\x41\x32", [0x1609] = "\x02\x43\x24", - [0x160a] = "\x02\x43\x37", [0x160b] = "\x02\x43\x3c", - [0x160c] = "\x02\x43\x30", [0x160d] = "\x01\x64\x34", - [0x160e] = "\x02\x43\x41", [0x160f] = "\x01\x64\x31", - [0x1610] = "\x02\x43\x22", [0x1611] = "\x0e\x41\x3a", - [0x1612] = "\x02\x43\x23", [0x1613] = "\x01\x64\x2a", - [0x1614] = "\x01\x64\x33", [0x1615] = "\x02\x43\x2a", - [0x1616] = "\x01\x64\x36", [0x1617] = "\x01\x64\x37", - [0x1618] = "\x02\x43\x2b", [0x1619] = "\x0e\x41\x38", - [0x161a] = "\x02\x43\x38", [0x161b] = "\x02\x43\x3e", - [0x161c] = "\x01\x64\x32", [0x161d] = "\x0e\x41\x3e", - [0x161e] = "\x01\x64\x2c", [0x161f] = "\x02\x43\x29", - [0x1620] = "\x02\x43\x25", [0x1621] = "\x02\x43\x40", - [0x1622] = "\x02\x43\x2e", [0x1623] = "\x02\x43\x2f", - [0x1624] = "\x02\x43\x26", [0x1625] = "\x02\x43\x3a", - [0x1626] = "\x02\x43\x31", [0x1627] = "\x02\x43\x3b", - [0x1628] = "\x02\x43\x33", [0x1629] = "\x0e\x41\x3d", - [0x162a] = "\x01\x64\x2d", [0x162b] = "\x02\x4a\x40", - [0x162c] = "\x01\x64\x30", [0x162d] = "\x01\x64\x2e", - [0x162e] = "\x02\x43\x3f", [0x162f] = "\x02\x43\x36", - [0x1630] = "\x02\x43\x32", [0x1631] = "\x0e\x41\x36", - [0x1632] = "\x0e\x41\x33", [0x1633] = "\x02\x43\x27", - [0x1634] = "\x01\x68\x7a", [0x1635] = "\x02\x43\x35", - [0x1636] = "\x01\x64\x35", [0x1637] = "\x02\x43\x2d", - [0x1638] = "\x0e\x41\x34", [0x1639] = "\x02\x43\x2c", - [0x163a] = "\x0e\x41\x48", [0x163b] = "\x0e\x47\x25", - [0x163c] = "\x0e\x41\x42", [0x163d] = "\x01\x64\x2f", - [0x163e] = "\x01\x64\x2b", [0x163f] = "\x02\x4a\x55", - [0x1640] = "\x02\x43\x39", [0x1641] = "\x02\x43\x34", - [0x1643] = "\x02\x43\x28", [0x1646] = "\x0e\x41\x44", - [0x1647] = "\x0e\x41\x45", [0x1649] = "\x0e\x66\x76", - [0x164b] = "\x02\x4a\x50", [0x164c] = "\x0e\x46\x78", - [0x164d] = "\x02\x4a\x41", [0x164e] = "\x02\x4a\x4c", - [0x164f] = "\x0e\x47\x28", [0x1650] = "\x02\x4a\x53", - [0x1651] = "\x01\x68\x78", [0x1652] = "\x01\x5f\x51", - [0x1653] = "\x02\x4a\x51", [0x1654] = "\x01\x68\x73", - [0x1655] = "\x0e\x46\x7e", [0x1656] = "\x0e\x47\x24", - [0x1657] = "\x0e\x46\x7a", [0x1658] = "\x01\x68\x72", - [0x1659] = "\x02\x4a\x58", [0x165b] = "\x02\x4a\x42", - [0x165c] = "\x02\x4a\x4f", [0x165d] = "\x02\x4a\x43", - [0x165e] = "\x02\x4a\x4e", [0x165f] = "\x01\x68\x76", - [0x1660] = "\x02\x4a\x52", [0x1661] = "\x02\x3c\x27", - [0x1662] = "\x0e\x47\x21", [0x1664] = "\x0e\x47\x2a", - [0x1665] = "\x02\x4a\x59", [0x1666] = "\x02\x4a\x4a", - [0x1667] = "\x01\x68\x79", [0x1668] = "\x02\x50\x61", - [0x1669] = "\x01\x6c\x77", [0x166a] = "\x0e\x47\x23", - [0x166b] = "\x02\x4a\x57", [0x166c] = "\x02\x4a\x56", - [0x166d] = "\x01\x68\x7b", [0x166e] = "\x02\x50\x54", - [0x166f] = "\x01\x6c\x78", [0x1670] = "\x02\x50\x55", - [0x1671] = "\x0e\x47\x22", [0x1672] = "\x02\x4a\x46", - [0x1673] = "\x02\x4a\x47", [0x1674] = "\x02\x4a\x44", - [0x1675] = "\x02\x4a\x49", [0x1676] = "\x02\x4a\x45", - [0x1677] = "\x02\x4a\x5a", [0x1678] = "\x01\x68\x75", - [0x1679] = "\x01\x6c\x79", [0x167a] = "\x01\x68\x77", - [0x167b] = "\x01\x68\x7c", [0x167c] = "\x0e\x46\x7b", - [0x167d] = "\x02\x4a\x48", [0x167e] = "\x0e\x47\x29", - [0x167f] = "\x02\x4a\x54", [0x1680] = "\x0e\x4c\x2d", - [0x1681] = "\x0e\x47\x26", [0x1682] = "\x02\x4a\x4d", - [0x1683] = "\x0e\x4c\x35", [0x1685] = "\x02\x50\x58", - [0x1686] = "\x0e\x4c\x38", [0x1687] = "\x01\x68\x71", - [0x1688] = "\x01\x6c\x7c", [0x1689] = "\x02\x57\x35", - [0x168a] = "\x02\x50\x5d", [0x168b] = "\x02\x50\x5c", - [0x168c] = "\x02\x50\x5e", [0x168d] = "\x0e\x4c\x30", - [0x168e] = "\x0e\x4c\x2f", [0x168f] = "\x02\x50\x5b", - [0x1690] = "\x01\x6c\x7d", [0x1691] = "\x0e\x4c\x3b", - [0x1692] = "\x01\x6d\x25", [0x1693] = "\x01\x6d\x22", - [0x1694] = "\x0e\x4c\x31", [0x1695] = "\x01\x6d\x23", - [0x1696] = "\x02\x50\x56", [0x1697] = "\x02\x50\x59", - [0x1698] = "\x02\x50\x63", [0x1699] = "\x01\x6d\x2b", - [0x169a] = "\x01\x6d\x29", [0x169b] = "\x0e\x4c\x2e", - [0x169c] = "\x02\x50\x5a", [0x169d] = "\x02\x3b\x7d", - [0x169e] = "\x01\x6c\x7a", [0x169f] = "\x02\x50\x60", - [0x16a0] = "\x02\x50\x57", [0x16a1] = "\x0e\x4c\x3e", - [0x16a2] = "\x01\x6d\x2c", [0x16a3] = "\x02\x50\x5f", - [0x16a4] = "\x01\x68\x74", [0x16a5] = "\x01\x6d\x21", - [0x16a6] = "\x02\x4a\x4b", [0x16a7] = "\x0e\x4c\x3f", - [0x16a8] = "\x0e\x4c\x34", [0x16a9] = "\x01\x6d\x24", - [0x16aa] = "\x0e\x4c\x3d", [0x16ab] = "\x01\x6d\x28", - [0x16ac] = "\x01\x6d\x2a", [0x16ad] = "\x01\x6d\x27", - [0x16ae] = "\x01\x6d\x26", [0x16af] = "\x0e\x4c\x3a", - [0x16b0] = "\x01\x6c\x7e", [0x16b1] = "\x02\x50\x62", - [0x16b2] = "\x01\x6c\x7b", [0x16b3] = "\x01\x6d\x2d", - [0x16b4] = "\x0e\x4c\x39", [0x16b6] = "\x0e\x65\x22", - [0x16b9] = "\x0e\x4c\x37", [0x16bb] = "\x01\x70\x61", - [0x16bc] = "\x01\x70\x62", [0x16bd] = "\x02\x57\x34", - [0x16be] = "\x01\x70\x6b", [0x16bf] = "\x01\x70\x68", - [0x16c0] = "\x0e\x50\x70", [0x16c1] = "\x01\x70\x5f", - [0x16c2] = "\x01\x70\x66", [0x16c3] = "\x02\x57\x36", - [0x16c4] = "\x01\x70\x64", [0x16c5] = "\x01\x70\x5e", - [0x16c6] = "\x0e\x4c\x32", [0x16c7] = "\x01\x70\x65", - [0x16c8] = "\x0e\x50\x77", [0x16c9] = "\x02\x57\x33", - [0x16ca] = "\x01\x73\x64", [0x16cb] = "\x01\x70\x60", - [0x16cd] = "\x01\x70\x67", [0x16ce] = "\x01\x73\x63", - [0x16cf] = "\x02\x57\x32", [0x16d0] = "\x02\x57\x31", - [0x16d1] = "\x0e\x50\x76", [0x16d2] = "\x01\x70\x69", - [0x16d3] = "\x0e\x50\x6f", [0x16d4] = "\x01\x70\x6a", - [0x16d5] = "\x0e\x50\x79", [0x16d6] = "\x02\x57\x30", - [0x16d7] = "\x02\x57\x2f", [0x16d8] = "\x01\x73\x65", - [0x16d9] = "\x02\x57\x39", [0x16da] = "\x01\x70\x63", - [0x16db] = "\x02\x57\x37", [0x16dc] = "\x0e\x50\x75", - [0x16df] = "\x0e\x54\x64", [0x16e0] = "\x01\x73\x66", - [0x16e1] = "\x0e\x54\x67", [0x16e2] = "\x01\x73\x6b", - [0x16e3] = "\x02\x5c\x75", [0x16e4] = "\x02\x5c\x77", - [0x16e5] = "\x0e\x57\x6b", [0x16e6] = "\x01\x73\x68", - [0x16e7] = "\x0e\x57\x6d", [0x16e8] = "\x02\x5c\x78", - [0x16e9] = "\x02\x5c\x74", [0x16ea] = "\x0e\x57\x6c", - [0x16eb] = "\x02\x5c\x76", [0x16ec] = "\x01\x73\x69", - [0x16ed] = "\x01\x73\x6c", [0x16ee] = "\x0e\x54\x69", - [0x16ef] = "\x02\x5c\x73", [0x16f0] = "\x01\x73\x67", - [0x16f1] = "\x01\x73\x6a", [0x16f2] = "\x01\x76\x45", - [0x16f3] = "\x02\x57\x38", [0x16f4] = "\x01\x76\x44", - [0x16f6] = "\x0e\x57\x6a", [0x16f7] = "\x01\x76\x4a", - [0x16f8] = "\x02\x61\x60", [0x16f9] = "\x0e\x57\x70", - [0x16fa] = "\x01\x76\x48", [0x16fb] = "\x01\x76\x49", - [0x16fc] = "\x02\x61\x63", [0x16fd] = "\x02\x61\x5f", - [0x16fe] = "\x01\x76\x46", [0x16ff] = "\x02\x61\x5d", - [0x1700] = "\x01\x78\x38", [0x1701] = "\x02\x61\x61", - [0x1703] = "\x02\x61\x62", [0x1704] = "\x02\x61\x5e", - [0x1705] = "\x0e\x57\x6e", [0x1706] = "\x01\x76\x47", - [0x1707] = "\x02\x65\x4d", [0x1708] = "\x0e\x5a\x3b", - [0x1709] = "\x02\x65\x50", [0x170a] = "\x0e\x5a\x3c", - [0x170b] = "\x0e\x5a\x3a", [0x170c] = "\x02\x65\x51", - [0x170d] = "\x02\x65\x4f", [0x170e] = "\x02\x65\x52", - [0x170f] = "\x01\x78\x39", [0x1710] = "\x02\x65\x4e", - [0x1711] = "\x0e\x5e\x31", [0x1713] = "\x02\x68\x7a", - [0x1714] = "\x01\x79\x6f", [0x1715] = "\x02\x68\x79", - [0x1716] = "\x02\x68\x78", [0x1717] = "\x02\x68\x77", - [0x1718] = "\x01\x79\x6e", [0x1719] = "\x01\x79\x70", - [0x171a] = "\x0e\x65\x23", [0x171b] = "\x02\x6b\x5b", - [0x171c] = "\x01\x7a\x6d", [0x171d] = "\x01\x7a\x6c", - [0x171e] = "\x0e\x5f\x4a", [0x171f] = "\x0e\x5f\x4b", - [0x1720] = "\x02\x6d\x4f", [0x1721] = "\x02\x6d\x4e", - [0x1722] = "\x02\x6d\x51", [0x1723] = "\x01\x7c\x37", - [0x1724] = "\x01\x7b\x61", [0x1725] = "\x02\x6f\x2c", - [0x1726] = "\x02\x6d\x50", [0x1727] = "\x0e\x5f\x49", - [0x1728] = "\x0e\x60\x32", [0x1729] = "\x02\x6f\x2b", - [0x172a] = "\x01\x7c\x39", [0x172b] = "\x01\x7c\x38", - [0x172c] = "\x01\x7c\x5f", [0x172d] = "\x02\x70\x37", - [0x172e] = "\x02\x70\x7d", [0x172f] = "\x01\x45\x45", - [0x1731] = "\x0e\x2c\x72", [0x1732] = "\x02\x3c\x37", - [0x1733] = "\x02\x57\x3a", [0x1734] = "\x0e\x21\x67", - [0x1735] = "\x0e\x21\x68", [0x1736] = "\x01\x48\x2d", - [0x1737] = "\x02\x22\x4d", [0x1738] = "\x01\x4a\x53", - [0x1739] = "\x01\x4a\x51", [0x173b] = "\x01\x4a\x52", - [0x173d] = "\x02\x27\x22", [0x173e] = "\x01\x4d\x73", - [0x173f] = "\x01\x51\x49", [0x1740] = "\x0e\x2c\x74", - [0x1741] = "\x02\x2a\x68", [0x1742] = "\x0e\x2c\x76", - [0x1743] = "\x02\x2a\x69", [0x1744] = "\x0e\x2c\x73", - [0x1745] = "\x01\x51\x4a", [0x1746] = "\x02\x2f\x50", - [0x1748] = "\x01\x55\x66", [0x1749] = "\x01\x55\x67", - [0x174a] = "\x02\x2f\x4f", [0x174b] = "\x0e\x31\x3d", - [0x174d] = "\x0e\x36\x37", [0x174e] = "\x0e\x36\x36", - [0x174f] = "\x01\x5a\x77", [0x1751] = "\x01\x5a\x73", - [0x1753] = "\x02\x35\x69", [0x1754] = "\x01\x5a\x7a", - [0x1755] = "\x01\x5a\x79", [0x1756] = "\x01\x5a\x72", - [0x1757] = "\x01\x5a\x75", [0x1758] = "\x01\x5a\x78", - [0x1759] = "\x01\x5a\x74", [0x175a] = "\x0e\x36\x34", - [0x175c] = "\x02\x3c\x3b", [0x175d] = "\x01\x5a\x71", - [0x175e] = "\x01\x5f\x54", [0x175f] = "\x0e\x3b\x74", - [0x1760] = "\x0e\x3b\x75", [0x1761] = "\x0e\x3b\x76", - [0x1762] = "\x01\x5f\x56", [0x1763] = "\x01\x5f\x57", - [0x1764] = "\x02\x3c\x3a", [0x1765] = "\x02\x3c\x3d", - [0x1766] = "\x01\x5f\x55", [0x1767] = "\x02\x3c\x38", - [0x1768] = "\x02\x3c\x3c", [0x176a] = "\x02\x3c\x39", - [0x176b] = "\x0e\x41\x4b", [0x176c] = "\x01\x64\x39", - [0x176d] = "\x0e\x41\x4e", [0x176e] = "\x0e\x63\x46", - [0x176f] = "\x02\x43\x42", [0x1770] = "\x0e\x41\x4d", - [0x1771] = "\x0e\x47\x30", [0x1772] = "\x01\x68\x7d", - [0x1773] = "\x02\x4a\x5b", [0x1774] = "\x01\x70\x6c", - [0x1775] = "\x01\x6d\x2e", [0x1776] = "\x02\x50\x64", - [0x1777] = "\x01\x6d\x2f", [0x1778] = "\x01\x6d\x30", - [0x1779] = "\x02\x50\x66", [0x177a] = "\x02\x50\x65", - [0x177b] = "\x02\x50\x67", [0x177c] = "\x02\x57\x3c", - [0x177f] = "\x02\x57\x3b", [0x1780] = "\x02\x5c\x7a", - [0x1781] = "\x02\x5c\x79", [0x1782] = "\x01\x73\x6d", - [0x1783] = "\x01\x73\x6e", [0x1784] = "\x02\x65\x53", - [0x1785] = "\x0e\x5c\x41", [0x1787] = "\x01\x45\x46", - [0x1788] = "\x0e\x25\x58", [0x1789] = "\x0e\x29\x39", - [0x178b] = "\x0e\x31\x40", [0x178c] = "\x02\x3c\x3e", - [0x178d] = "\x0e\x36\x38", [0x178e] = "\x0e\x36\x39", - [0x1790] = "\x01\x5f\x59", [0x1791] = "\x01\x5f\x58", - [0x1792] = "\x02\x43\x43", [0x1794] = "\x02\x61\x64", - [0x1795] = "\x01\x7a\x6e", [0x1796] = "\x02\x6f\x2d", - [0x1797] = "\x01\x45\x47", [0x1799] = "\x01\x55\x68", - [0x179a] = "\x0e\x31\x42", [0x179b] = "\x01\x5a\x7c", - [0x179c] = "\x01\x5a\x7b", [0x179d] = "\x02\x3c\x3f", - [0x179e] = "\x02\x3c\x40", [0x179f] = "\x01\x64\x3a", - [0x17a0] = "\x02\x4a\x5c", [0x17a1] = "\x01\x68\x7e", - [0x17a2] = "\x02\x57\x3d", [0x17a4] = "\x01\x45\x48", - [0x17a5] = "\x01\x46\x58", [0x17a6] = "\x0e\x29\x3b", - [0x17a7] = "\x01\x4d\x74", [0x17a8] = "\x02\x27\x23", - [0x17aa] = "\x02\x2a\x6a", [0x17ab] = "\x01\x51\x4b", - [0x17ac] = "\x01\x5a\x7d", [0x17ad] = "\x0e\x36\x3a", - [0x17ae] = "\x02\x3c\x41", [0x17af] = "\x01\x5f\x5a", - [0x17b0] = "\x01\x64\x3b", [0x17b2] = "\x02\x50\x68", - [0x17b3] = "\x02\x50\x69", [0x17b5] = "\x0e\x54\x6b", - [0x17b6] = "\x02\x5c\x7b", [0x17b7] = "\x01\x76\x4b", - [0x17b8] = "\x02\x70\x7e", [0x17b9] = "\x01\x45\x49", - [0x17ba] = "\x0e\x29\x3c", [0x17bb] = "\x02\x27\x24", - [0x17bc] = "\x01\x4d\x75", [0x17bd] = "\x01\x51\x4c", - [0x17be] = "\x0e\x2c\x77", [0x17bf] = "\x02\x2a\x6b", - [0x17c1] = "\x01\x55\x69", [0x17c2] = "\x02\x2f\x54", - [0x17c3] = "\x02\x2f\x52", [0x17c4] = "\x02\x2f\x53", - [0x17c5] = "\x01\x55\x6a", [0x17c6] = "\x02\x2f\x51", - [0x17c7] = "\x0e\x36\x3c", [0x17c9] = "\x0e\x36\x3f", - [0x17ca] = "\x0e\x36\x3d", [0x17cb] = "\x01\x5b\x21", - [0x17cc] = "\x01\x5b\x22", [0x17cd] = "\x02\x35\x6a", - [0x17ce] = "\x01\x5b\x23", [0x17cf] = "\x01\x5a\x7e", - [0x17d0] = "\x02\x3c\x42", [0x17d1] = "\x0e\x3b\x79", - [0x17d2] = "\x02\x3c\x43", [0x17d3] = "\x02\x43\x44", - [0x17d6] = "\x01\x69\x22", [0x17d7] = "\x01\x69\x21", - [0x17da] = "\x02\x5c\x7c", [0x17db] = "\x02\x61\x65", - [0x17dc] = "\x0e\x5a\x3f", [0x17dd] = "\x02\x65\x55", - [0x17de] = "\x02\x65\x54", [0x17df] = "\x02\x68\x7b", - [0x17e0] = "\x0e\x21\x69", [0x17e1] = "\x02\x21\x3e", - [0x17e2] = "\x01\x51\x4d", [0x17e3] = "\x0e\x36\x41", - [0x17e4] = "\x0e\x41\x50", [0x17e5] = "\x01\x45\x4a", - [0x17e6] = "\x01\x46\x59", [0x17e7] = "\x0e\x22\x51", - [0x17e8] = "\x01\x48\x2f", [0x17e9] = "\x01\x48\x2e", - [0x17ea] = "\x0e\x23\x73", [0x17eb] = "\x0e\x23\x72", - [0x17ec] = "\x01\x48\x30", [0x17ed] = "\x01\x48\x31", - [0x17ee] = "\x02\x22\x4f", [0x17ef] = "\x02\x22\x4e", - [0x17f0] = "\x02\x24\x39", [0x17f1] = "\x01\x4a\x54", - [0x17f2] = "\x02\x24\x3c", [0x17f3] = "\x02\x24\x3b", - [0x17f4] = "\x02\x24\x3a", [0x17f5] = "\x02\x24\x3d", - [0x17f6] = "\x0e\x26\x3d", [0x17f9] = "\x0e\x62\x5e", - [0x17fa] = "\x01\x4d\x76", [0x17fb] = "\x02\x27\x2a", - [0x17fc] = "\x02\x27\x26", [0x17fd] = "\x02\x27\x2f", - [0x17fe] = "\x0e\x29\x43", [0x17ff] = "\x0e\x29\x3e", - [0x1800] = "\x01\x4d\x7d", [0x1801] = "\x0e\x29\x42", - [0x1802] = "\x01\x4d\x7b", [0x1803] = "\x02\x27\x2b", - [0x1804] = "\x02\x27\x27", [0x1805] = "\x02\x27\x2e", - [0x1806] = "\x01\x4d\x7a", [0x1807] = "\x01\x4e\x23", - [0x1808] = "\x02\x27\x29", [0x1809] = "\x02\x27\x25", - [0x180a] = "\x01\x4e\x22", [0x180b] = "\x02\x27\x2c", - [0x180c] = "\x01\x4d\x79", [0x180d] = "\x02\x27\x2d", - [0x180e] = "\x01\x4d\x7c", [0x180f] = "\x01\x4d\x7e", - [0x1810] = "\x02\x27\x31", [0x1811] = "\x02\x27\x30", - [0x1812] = "\x02\x27\x28", [0x1813] = "\x01\x4d\x78", - [0x1814] = "\x01\x4d\x77", [0x1815] = "\x01\x4e\x21", - [0x1817] = "\x0e\x29\x40", [0x1818] = "\x0e\x29\x41", - [0x181a] = "\x0e\x2c\x7e", [0x181b] = "\x0e\x2c\x7a", - [0x181c] = "\x02\x2a\x70", [0x181d] = "\x02\x2a\x76", - [0x181e] = "\x0e\x2d\x23", [0x181f] = "\x01\x51\x53", - [0x1820] = "\x01\x51\x50", [0x1821] = "\x02\x2a\x6d", - [0x1822] = "\x02\x2a\x72", [0x1823] = "\x0e\x2c\x7c", - [0x1824] = "\x01\x51\x56", [0x1825] = "\x01\x51\x4e", - [0x1826] = "\x02\x2a\x71", [0x1827] = "\x01\x51\x51", - [0x1828] = "\x01\x51\x54", [0x1829] = "\x0e\x2c\x79", - [0x182b] = "\x02\x2a\x74", [0x182c] = "\x0e\x2c\x7d", - [0x182d] = "\x01\x51\x4f", [0x182e] = "\x02\x2a\x79", - [0x182f] = "\x01\x51\x52", [0x1830] = "\x0e\x2d\x21", - [0x1831] = "\x01\x51\x55", [0x1832] = "\x02\x2a\x6e", - [0x1833] = "\x02\x2a\x73", [0x1834] = "\x02\x2a\x77", - [0x1835] = "\x02\x2a\x6f", [0x1836] = "\x02\x2a\x6c", - [0x1837] = "\x0e\x2d\x24", [0x1838] = "\x0e\x2d\x25", - [0x1839] = "\x02\x2a\x78", [0x183a] = "\x02\x2a\x75", - [0x183b] = "\x0e\x2d\x22", [0x183c] = "\x0e\x2c\x37", - [0x1840] = "\x0e\x31\x46", [0x1841] = "\x01\x55\x72", - [0x1842] = "\x01\x55\x6b", [0x1843] = "\x01\x55\x6e", - [0x1844] = "\x0e\x31\x4c", [0x1845] = "\x01\x55\x71", - [0x1846] = "\x0e\x31\x44", [0x1847] = "\x02\x2f\x57", - [0x1848] = "\x0e\x31\x49", [0x1849] = "\x01\x55\x6c", - [0x184a] = "\x02\x2f\x55", [0x184b] = "\x0e\x31\x48", - [0x184c] = "\x01\x55\x70", [0x184d] = "\x0e\x31\x4d", - [0x184e] = "\x0e\x31\x45", [0x184f] = "\x01\x55\x6d", - [0x1850] = "\x0e\x31\x43", [0x1851] = "\x02\x2f\x58", - [0x1852] = "\x01\x55\x6f", [0x1857] = "\x0e\x36\x42", - [0x1859] = "\x02\x35\x6e", [0x185a] = "\x01\x5b\x25", - [0x185b] = "\x02\x35\x6d", [0x185c] = "\x02\x35\x6f", - [0x185d] = "\x01\x5b\x24", [0x185e] = "\x01\x5b\x29", - [0x185f] = "\x02\x2f\x56", [0x1860] = "\x0e\x31\x4b", - [0x1861] = "\x02\x35\x6c", [0x1862] = "\x02\x35\x70", - [0x1863] = "\x0e\x36\x44", [0x1864] = "\x01\x5b\x26", - [0x1865] = "\x02\x35\x6b", [0x1866] = "\x01\x5b\x28", - [0x1867] = "\x0e\x36\x45", [0x1868] = "\x01\x5b\x27", - [0x1869] = "\x0e\x3c\x26", [0x186a] = "\x02\x3c\x4a", - [0x186b] = "\x0e\x3b\x7d", [0x186c] = "\x02\x3c\x45", - [0x186d] = "\x0e\x3c\x25", [0x186e] = "\x01\x5f\x5b", - [0x186f] = "\x01\x5f\x5f", [0x1870] = "\x01\x5f\x5c", - [0x1871] = "\x02\x3c\x48", [0x1872] = "\x02\x3c\x4b", - [0x1873] = "\x0e\x3c\x23", [0x1874] = "\x01\x5f\x5d", - [0x1876] = "\x01\x5f\x5e", [0x1877] = "\x01\x5f\x63", - [0x1878] = "\x02\x43\x4d", [0x1879] = "\x02\x3c\x49", - [0x187a] = "\x01\x5f\x61", [0x187b] = "\x02\x3c\x46", - [0x187c] = "\x02\x3c\x44", [0x187d] = "\x0e\x3b\x7c", - [0x187e] = "\x01\x5f\x62", [0x187f] = "\x0e\x3b\x7e", - [0x1880] = "\x02\x3c\x47", [0x1881] = "\x0e\x3c\x24", - [0x1884] = "\x01\x64\x41", [0x1886] = "\x02\x43\x45", - [0x1887] = "\x01\x64\x3e", [0x1888] = "\x01\x64\x3f", - [0x1889] = "\x01\x64\x3d", [0x188a] = "\x02\x43\x4a", - [0x188b] = "\x02\x43\x49", [0x188c] = "\x02\x43\x46", - [0x188d] = "\x01\x64\x43", [0x188e] = "\x0e\x41\x5b", - [0x188f] = "\x0e\x41\x56", [0x1890] = "\x02\x43\x48", - [0x1891] = "\x01\x5f\x60", [0x1892] = "\x0e\x41\x59", - [0x1893] = "\x0e\x41\x51", [0x1894] = "\x02\x43\x4c", - [0x1895] = "\x02\x43\x47", [0x1896] = "\x01\x64\x40", - [0x1897] = "\x01\x64\x3c", [0x1898] = "\x01\x64\x42", - [0x1899] = "\x02\x43\x4b", [0x189a] = "\x0e\x47\x34", - [0x189c] = "\x0e\x47\x35", [0x189d] = "\x01\x69\x25", - [0x189f] = "\x02\x4a\x5f", [0x18a0] = "\x02\x4a\x5e", - [0x18a1] = "\x02\x4a\x5d", [0x18a2] = "\x01\x69\x23", - [0x18a4] = "\x0e\x47\x39", [0x18a5] = "\x0e\x47\x33", - [0x18a6] = "\x0e\x47\x37", [0x18a8] = "\x01\x69\x24", - [0x18a9] = "\x02\x50\x6c", [0x18aa] = "\x02\x50\x6f", - [0x18ab] = "\x01\x6d\x32", [0x18ac] = "\x0e\x4c\x44", - [0x18ad] = "\x0e\x4c\x46", [0x18ae] = "\x01\x6d\x31", - [0x18af] = "\x02\x50\x70", [0x18b0] = "\x02\x50\x6b", - [0x18b1] = "\x01\x6d\x34", [0x18b2] = "\x02\x50\x6d", - [0x18b3] = "\x0e\x4c\x41", [0x18b4] = "\x01\x6d\x33", - [0x18b5] = "\x02\x50\x6a", [0x18b6] = "\x0e\x4c\x40", - [0x18b7] = "\x02\x50\x6e", [0x18b8] = "\x01\x70\x72", - [0x18b9] = "\x01\x70\x6f", [0x18ba] = "\x02\x57\x46", - [0x18bb] = "\x02\x57\x45", [0x18bc] = "\x0e\x4c\x43", - [0x18bd] = "\x02\x57\x44", [0x18be] = "\x02\x57\x3f", - [0x18bf] = "\x0e\x50\x7d", [0x18c0] = "\x02\x57\x40", - [0x18c1] = "\x0e\x51\x23", [0x18c3] = "\x0e\x50\x7a", - [0x18c4] = "\x01\x70\x70", [0x18c5] = "\x0e\x50\x7e", - [0x18c6] = "\x01\x70\x6d", [0x18c7] = "\x01\x70\x71", - [0x18c8] = "\x02\x57\x3e", [0x18c9] = "\x01\x70\x6e", - [0x18ca] = "\x02\x57\x41", [0x18cb] = "\x02\x57\x42", - [0x18cc] = "\x02\x57\x47", [0x18cd] = "\x0e\x51\x22", - [0x18ce] = "\x0e\x54\x71", [0x18cf] = "\x02\x57\x43", - [0x18d0] = "\x0e\x54\x6f", [0x18d1] = "\x0e\x54\x70", - [0x18d2] = "\x02\x5c\x7d", [0x18d4] = "\x0e\x54\x6c", - [0x18d5] = "\x0e\x54\x6d", [0x18d6] = "\x01\x73\x70", - [0x18d7] = "\x0e\x54\x72", [0x18d8] = "\x02\x61\x68", - [0x18d9] = "\x01\x73\x6f", [0x18da] = "\x02\x61\x66", - [0x18db] = "\x02\x61\x67", [0x18dc] = "\x01\x76\x4c", - [0x18dd] = "\x01\x78\x3b", [0x18de] = "\x02\x65\x56", - [0x18df] = "\x0e\x5a\x43", [0x18e0] = "\x01\x78\x3a", - [0x18e1] = "\x0e\x5a\x42", [0x18e2] = "\x0e\x65\x26", - [0x18e3] = "\x02\x68\x7d", [0x18e4] = "\x02\x68\x7e", - [0x18e5] = "\x0e\x5c\x42", [0x18e6] = "\x01\x79\x71", - [0x18e7] = "\x0e\x5c\x43", [0x18e8] = "\x02\x68\x7c", - [0x18e9] = "\x01\x7a\x6f", [0x18eb] = "\x02\x6f\x2e", - [0x18ec] = "\x01\x7c\x3a", [0x18ed] = "\x02\x70\x38", - [0x18ee] = "\x02\x70\x39", [0x18ef] = "\x0e\x61\x3f", - [0x18f0] = "\x01\x45\x4b", [0x18f2] = "\x01\x48\x32", - [0x18f3] = "\x01\x48\x33", [0x18f4] = "\x01\x4a\x55", - [0x18f5] = "\x0e\x26\x41", [0x18f6] = "\x02\x27\x32", - [0x18f7] = "\x01\x51\x57", [0x18f8] = "\x01\x55\x73", - [0x18f9] = "\x01\x5b\x2a", [0x18fc] = "\x01\x59\x37", - [0x18fe] = "\x01\x5f\x64", [0x18ff] = "\x01\x5f\x65", - [0x1900] = "\x01\x5e\x32", [0x1901] = "\x02\x3c\x4c", - [0x1902] = "\x0e\x65\x27", [0x1903] = "\x01\x64\x44", - [0x1904] = "\x02\x4a\x61", [0x1905] = "\x02\x4a\x60", - [0x1906] = "\x0e\x51\x24", [0x1908] = "\x01\x45\x4c", - [0x1909] = "\x01\x48\x34", [0x190a] = "\x02\x27\x33", - [0x190b] = "\x01\x4e\x25", [0x190c] = "\x0e\x29\x45", - [0x190d] = "\x01\x4e\x24", [0x190e] = "\x0e\x2d\x27", - [0x190f] = "\x02\x2a\x7a", [0x1910] = "\x02\x2a\x7b", - [0x1911] = "\x0e\x66\x32", [0x1912] = "\x02\x2f\x59", - [0x1913] = "\x02\x2f\x5a", [0x1914] = "\x01\x55\x74", - [0x1915] = "\x01\x55\x75", [0x1916] = "\x0e\x36\x48", - [0x1917] = "\x01\x55\x76", [0x1918] = "\x02\x35\x71", - [0x1919] = "\x0e\x36\x47", [0x191a] = "\x0e\x36\x46", - [0x191b] = "\x01\x5b\x2c", [0x191d] = "\x01\x5f\x67", - [0x191e] = "\x0e\x3c\x29", [0x191f] = "\x01\x5f\x66", - [0x1920] = "\x02\x43\x4e", [0x1921] = "\x02\x46\x41", - [0x1922] = "\x02\x4a\x62", [0x1923] = "\x02\x57\x48", - [0x1924] = "\x0e\x51\x26", [0x1925] = "\x0e\x66\x33", - [0x1926] = "\x01\x76\x4d", [0x1927] = "\x01\x79\x72", - [0x1928] = "\x01\x45\x4d", [0x192a] = "\x01\x46\x5c", - [0x192b] = "\x01\x46\x5d", [0x192c] = "\x01\x46\x5b", - [0x192d] = "\x01\x46\x5e", [0x192e] = "\x01\x46\x5a", - [0x192f] = "\x0e\x22\x52", [0x1931] = "\x01\x48\x37", - [0x1932] = "\x0e\x23\x77", [0x1933] = "\x02\x22\x57", - [0x1934] = "\x01\x48\x36", [0x1935] = "\x01\x48\x38", - [0x1936] = "\x0e\x23\x78", [0x1937] = "\x0e\x23\x75", - [0x1938] = "\x02\x22\x52", [0x1939] = "\x02\x22\x51", - [0x193a] = "\x02\x22\x54", [0x193b] = "\x02\x22\x53", - [0x193c] = "\x02\x22\x56", [0x193d] = "\x01\x48\x35", - [0x193e] = "\x02\x22\x50", [0x193f] = "\x02\x22\x55", - [0x1944] = "\x0e\x26\x48", [0x1945] = "\x02\x24\x3e", - [0x1946] = "\x01\x4a\x5f", [0x1947] = "\x02\x24\x3f", - [0x1948] = "\x02\x24\x43", [0x1949] = "\x01\x4a\x5e", - [0x194a] = "\x0e\x26\x49", [0x194b] = "\x02\x24\x47", - [0x194c] = "\x02\x24\x42", [0x194d] = "\x02\x24\x45", - [0x194e] = "\x01\x4a\x57", [0x194f] = "\x01\x4a\x58", - [0x1950] = "\x01\x4a\x59", [0x1951] = "\x01\x4a\x5a", - [0x1952] = "\x0e\x26\x45", [0x1953] = "\x01\x4a\x61", - [0x1954] = "\x0e\x26\x44", [0x1955] = "\x02\x24\x41", - [0x1956] = "\x01\x4a\x5c", [0x1957] = "\x01\x4a\x62", - [0x1958] = "\x0e\x26\x47", [0x1959] = "\x02\x24\x40", - [0x195a] = "\x02\x24\x46", [0x195b] = "\x0e\x26\x42", - [0x195c] = "\x01\x4a\x5b", [0x195d] = "\x02\x24\x44", - [0x195e] = "\x01\x4a\x5d", [0x195f] = "\x01\x4a\x56", - [0x1960] = "\x01\x4a\x60", [0x1961] = "\x0e\x26\x4a", - [0x1965] = "\x0e\x62\x57", [0x196a] = "\x01\x4e\x3a", - [0x196b] = "\x0e\x29\x47", [0x196c] = "\x02\x27\x35", - [0x196d] = "\x01\x4e\x26", [0x196f] = "\x01\x4e\x30", - [0x1970] = "\x01\x4e\x31", [0x1971] = "\x01\x4e\x29", - [0x1972] = "\x01\x4e\x3b", [0x1973] = "\x01\x4e\x2b", - [0x1974] = "\x02\x27\x3d", [0x1975] = "\x01\x4e\x36", - [0x1976] = "\x02\x27\x38", [0x1977] = "\x01\x4e\x2c", - [0x1978] = "\x02\x27\x47", [0x1979] = "\x02\x27\x48", - [0x197a] = "\x02\x27\x40", [0x197b] = "\x02\x27\x39", - [0x197c] = "\x01\x4e\x39", [0x197d] = "\x02\x27\x45", - [0x197e] = "\x01\x4e\x34", [0x197f] = "\x01\x4e\x32", - [0x1980] = "\x0e\x29\x52", [0x1981] = "\x02\x27\x46", - [0x1982] = "\x0e\x29\x49", [0x1983] = "\x02\x27\x44", - [0x1984] = "\x02\x27\x3c", [0x1985] = "\x02\x27\x34", - [0x1986] = "\x02\x27\x3b", [0x1987] = "\x01\x4e\x2d", - [0x1988] = "\x0e\x62\x5f", [0x1989] = "\x01\x4e\x33", - [0x198a] = "\x0e\x29\x4a", [0x198b] = "\x01\x4e\x27", - [0x198c] = "\x02\x27\x3f", [0x198d] = "\x02\x27\x3e", - [0x198e] = "\x02\x27\x36", [0x198f] = "\x0e\x29\x4f", - [0x1990] = "\x01\x4e\x35", [0x1991] = "\x02\x27\x42", - [0x1992] = "\x02\x27\x37", [0x1993] = "\x01\x4e\x38", - [0x1994] = "\x02\x27\x49", [0x1995] = "\x01\x4e\x28", - [0x1996] = "\x0e\x29\x48", [0x1997] = "\x01\x4e\x2f", - [0x1998] = "\x02\x27\x3a", [0x1999] = "\x02\x27\x43", - [0x199a] = "\x01\x4e\x37", [0x199c] = "\x01\x4e\x2a", - [0x199d] = "\x01\x4e\x2e", [0x199f] = "\x02\x27\x41", - [0x19a2] = "\x0e\x29\x4e", [0x19a3] = "\x0e\x29\x4c", - [0x19a4] = "\x0e\x65\x28", [0x19ac] = "\x0e\x65\x29", - [0x19ae] = "\x02\x2b\x3d", [0x19af] = "\x01\x51\x5f", - [0x19b0] = "\x01\x51\x6c", [0x19b1] = "\x0e\x2d\x36", - [0x19b2] = "\x02\x2b\x38", [0x19b3] = "\x02\x2b\x2e", - [0x19b4] = "\x01\x51\x65", [0x19b5] = "\x02\x2b\x2c", - [0x19b6] = "\x01\x51\x5e", [0x19b7] = "\x02\x2b\x27", - [0x19b8] = "\x01\x51\x68", [0x19b9] = "\x02\x2b\x34", - [0x19ba] = "\x02\x2b\x21", [0x19bb] = "\x02\x2b\x23", - [0x19bc] = "\x0e\x2d\x2e", [0x19bf] = "\x0e\x2d\x30", - [0x19c0] = "\x02\x2b\x26", [0x19c1] = "\x02\x2a\x7c", - [0x19c2] = "\x02\x2b\x33", [0x19c3] = "\x02\x2b\x43", - [0x19c4] = "\x01\x51\x63", [0x19c5] = "\x02\x2b\x28", - [0x19c6] = "\x02\x2b\x3a", [0x19c7] = "\x0e\x2d\x2d", - [0x19c8] = "\x02\x2a\x7e", [0x19c9] = "\x02\x2b\x41", - [0x19ca] = "\x02\x2b\x42", [0x19cb] = "\x02\x2b\x45", - [0x19cc] = "\x02\x2b\x3c", [0x19cd] = "\x02\x2b\x2d", - [0x19ce] = "\x02\x2b\x35", [0x19cf] = "\x01\x51\x69", - [0x19d0] = "\x01\x51\x5c", [0x19d1] = "\x01\x51\x64", - [0x19d2] = "\x01\x51\x70", [0x19d3] = "\x01\x51\x59", - [0x19d4] = "\x01\x51\x5b", [0x19d5] = "\x0e\x2d\x31", - [0x19d6] = "\x0e\x2d\x2b", [0x19d7] = "\x0e\x2d\x3a", - [0x19d8] = "\x02\x2b\x25", [0x19d9] = "\x01\x51\x6d", - [0x19da] = "\x01\x51\x66", [0x19db] = "\x02\x2b\x3f", - [0x19dc] = "\x02\x2b\x22", [0x19dd] = "\x01\x51\x6f", - [0x19de] = "\x01\x51\x6a", [0x19df] = "\x02\x2b\x2b", - [0x19e2] = "\x01\x51\x6e", [0x19e3] = "\x02\x2b\x32", - [0x19e4] = "\x02\x2b\x2a", [0x19e5] = "\x01\x51\x67", - [0x19e6] = "\x02\x2b\x3e", [0x19e7] = "\x02\x2b\x36", - [0x19e8] = "\x0e\x2d\x2a", [0x19e9] = "\x01\x51\x61", - [0x19ea] = "\x02\x2b\x44", [0x19eb] = "\x02\x2b\x29", - [0x19ec] = "\x01\x51\x5d", [0x19ed] = "\x02\x2b\x3b", - [0x19ee] = "\x02\x2b\x31", [0x19ef] = "\x01\x51\x62", - [0x19f0] = "\x02\x2b\x37", [0x19f1] = "\x01\x51\x5a", - [0x19f2] = "\x02\x2a\x7d", [0x19f3] = "\x01\x51\x6b", - [0x19f4] = "\x01\x56\x27", [0x19f5] = "\x01\x51\x60", - [0x19f6] = "\x02\x2b\x30", [0x19f7] = "\x02\x2b\x2f", - [0x19f8] = "\x02\x2b\x24", [0x19f9] = "\x0e\x29\x51", - [0x19fa] = "\x02\x2b\x40", [0x19fb] = "\x0e\x2d\x34", - [0x19fc] = "\x02\x2b\x39", [0x19fe] = "\x0e\x2d\x32", - [0x19ff] = "\x01\x51\x58", [0x1a00] = "\x0e\x2d\x39", - [0x1a01] = "\x0e\x2d\x37", [0x1a05] = "\x0e\x2d\x38", - [0x1a06] = "\x0e\x65\x2b", [0x1a10] = "\x0e\x65\x2a", - [0x1a12] = "\x02\x2f\x6e", [0x1a13] = "\x01\x56\x2e", - [0x1a14] = "\x02\x2f\x6f", [0x1a15] = "\x0e\x31\x5d", - [0x1a16] = "\x02\x2f\x63", [0x1a17] = "\x01\x56\x23", - [0x1a18] = "\x01\x56\x2f", [0x1a19] = "\x0e\x31\x57", - [0x1a1a] = "\x02\x2f\x5c", [0x1a1b] = "\x0e\x31\x53", - [0x1a1c] = "\x02\x2f\x65", [0x1a1d] = "\x02\x2f\x6d", - [0x1a1e] = "\x0e\x31\x5b", [0x1a1f] = "\x02\x2f\x5b", - [0x1a20] = "\x02\x2f\x76", [0x1a21] = "\x01\x55\x77", - [0x1a22] = "\x0e\x31\x5e", [0x1a23] = "\x0e\x31\x64", - [0x1a24] = "\x0e\x31\x50", [0x1a25] = "\x02\x2f\x75", - [0x1a26] = "\x02\x2f\x70", [0x1a27] = "\x0e\x31\x5f", - [0x1a28] = "\x02\x2f\x71", [0x1a29] = "\x01\x56\x21", - [0x1a2a] = "\x01\x56\x2c", [0x1a2b] = "\x02\x2f\x67", - [0x1a2c] = "\x0e\x31\x56", [0x1a2d] = "\x02\x2f\x68", - [0x1a2e] = "\x02\x2f\x72", [0x1a2f] = "\x02\x2f\x69", - [0x1a30] = "\x0e\x31\x63", [0x1a31] = "\x02\x2f\x64", - [0x1a32] = "\x02\x2f\x5e", [0x1a33] = "\x02\x2f\x5f", - [0x1a34] = "\x02\x2f\x6c", [0x1a35] = "\x02\x2f\x66", - [0x1a36] = "\x0e\x31\x54", [0x1a37] = "\x0e\x31\x4f", - [0x1a38] = "\x01\x55\x78", [0x1a39] = "\x01\x55\x7c", - [0x1a3a] = "\x02\x2f\x74", [0x1a3b] = "\x02\x2f\x60", - [0x1a3c] = "\x01\x56\x2a", [0x1a3d] = "\x01\x56\x26", - [0x1a3e] = "\x0e\x31\x5a", [0x1a40] = "\x01\x56\x29", - [0x1a41] = "\x01\x56\x30", [0x1a42] = "\x01\x55\x7d", - [0x1a43] = "\x01\x56\x2b", [0x1a44] = "\x02\x2f\x6b", - [0x1a45] = "\x01\x56\x2d", [0x1a46] = "\x01\x55\x7a", - [0x1a47] = "\x0e\x31\x59", [0x1a48] = "\x01\x55\x79", - [0x1a49] = "\x02\x2f\x5d", [0x1a4b] = "\x02\x2f\x61", - [0x1a4c] = "\x01\x56\x24", [0x1a4d] = "\x02\x2f\x73", - [0x1a4e] = "\x02\x2f\x6a", [0x1a4f] = "\x02\x2f\x62", - [0x1a50] = "\x01\x56\x28", [0x1a51] = "\x01\x56\x25", - [0x1a52] = "\x0e\x2d\x2f", [0x1a53] = "\x01\x55\x7b", - [0x1a54] = "\x01\x55\x7e", [0x1a55] = "\x0e\x31\x62", - [0x1a56] = "\x0e\x31\x58", [0x1a58] = "\x0e\x31\x61", - [0x1a59] = "\x0e\x31\x60", [0x1a5a] = "\x0e\x65\x2d", - [0x1a5e] = "\x0e\x65\x2c", [0x1a6b] = "\x02\x36\x28", - [0x1a6c] = "\x0e\x36\x55", [0x1a6d] = "\x02\x35\x76", - [0x1a6e] = "\x02\x35\x77", [0x1a6f] = "\x02\x35\x7b", - [0x1a70] = "\x0e\x36\x60", [0x1a71] = "\x02\x36\x2c", - [0x1a72] = "\x02\x36\x29", [0x1a73] = "\x0e\x36\x4e", - [0x1a74] = "\x02\x36\x22", [0x1a75] = "\x02\x36\x21", - [0x1a76] = "\x01\x5b\x33", [0x1a77] = "\x02\x36\x25", - [0x1a78] = "\x02\x36\x34", [0x1a79] = "\x02\x35\x72", - [0x1a7a] = "\x0e\x36\x5b", [0x1a7b] = "\x02\x36\x35", - [0x1a7c] = "\x02\x36\x27", [0x1a7d] = "\x02\x36\x39", - [0x1a7e] = "\x02\x36\x2d", [0x1a7f] = "\x01\x5b\x32", - [0x1a80] = "\x02\x36\x2b", [0x1a81] = "\x01\x5b\x2d", - [0x1a82] = "\x01\x5b\x42", [0x1a83] = "\x01\x5b\x38", - [0x1a84] = "\x0e\x36\x57", [0x1a85] = "\x01\x5b\x3c", - [0x1a86] = "\x01\x5b\x3b", [0x1a87] = "\x02\x35\x73", - [0x1a89] = "\x02\x36\x32", [0x1a8a] = "\x02\x36\x38", - [0x1a8b] = "\x02\x36\x30", [0x1a8c] = "\x02\x36\x37", - [0x1a8e] = "\x0e\x36\x51", [0x1a8f] = "\x02\x36\x24", - [0x1a90] = "\x02\x35\x74", [0x1a91] = "\x02\x36\x36", - [0x1a92] = "\x02\x36\x26", [0x1a93] = "\x01\x5b\x30", - [0x1a94] = "\x01\x5b\x3d", [0x1a95] = "\x0e\x36\x5a", - [0x1a96] = "\x02\x36\x2f", [0x1a97] = "\x01\x5b\x36", - [0x1a98] = "\x0e\x36\x4d", [0x1a99] = "\x0e\x36\x5c", - [0x1a9a] = "\x0e\x36\x50", [0x1a9b] = "\x02\x36\x2e", - [0x1a9c] = "\x02\x35\x75", [0x1a9d] = "\x01\x5b\x3e", - [0x1a9e] = "\x0e\x36\x4b", [0x1a9f] = "\x01\x5b\x40", - [0x1aa0] = "\x02\x36\x31", [0x1aa1] = "\x01\x5b\x41", - [0x1aa2] = "\x01\x5b\x2f", [0x1aa3] = "\x02\x35\x7c", - [0x1aa4] = "\x02\x36\x33", [0x1aa5] = "\x0e\x36\x54", - [0x1aa6] = "\x0e\x34\x78", [0x1aa7] = "\x01\x5b\x35", - [0x1aa8] = "\x01\x5b\x3f", [0x1aa9] = "\x02\x35\x7e", - [0x1aaa] = "\x02\x36\x2a", [0x1aab] = "\x02\x35\x79", - [0x1aac] = "\x02\x35\x7d", [0x1aad] = "\x01\x5b\x3a", - [0x1aae] = "\x02\x35\x78", [0x1aaf] = "\x01\x5b\x2e", - [0x1ab0] = "\x01\x5b\x37", [0x1ab1] = "\x01\x5b\x34", - [0x1ab2] = "\x02\x36\x23", [0x1ab3] = "\x01\x56\x22", - [0x1ab4] = "\x02\x3c\x63", [0x1ab5] = "\x01\x5b\x31", - [0x1ab6] = "\x0e\x36\x4c", [0x1ab7] = "\x0e\x36\x52", - [0x1ab8] = "\x0e\x36\x5e", [0x1ab9] = "\x0e\x36\x5f", - [0x1ac1] = "\x0e\x36\x56", [0x1ac3] = "\x0e\x3c\x45", - [0x1ac4] = "\x01\x5b\x39", [0x1ac5] = "\x0e\x3c\x41", - [0x1ac6] = "\x02\x3c\x66", [0x1ac7] = "\x02\x3c\x7c", - [0x1ac8] = "\x02\x3c\x71", [0x1ac9] = "\x01\x5f\x7b", - [0x1aca] = "\x0e\x3c\x38", [0x1acb] = "\x01\x5f\x76", - [0x1acc] = "\x02\x3c\x60", [0x1acd] = "\x01\x5f\x77", - [0x1ace] = "\x02\x3c\x70", [0x1acf] = "\x0e\x3c\x3e", - [0x1ad0] = "\x02\x3c\x69", [0x1ad1] = "\x02\x3c\x76", - [0x1ad2] = "\x01\x5f\x73", [0x1ad3] = "\x02\x3c\x4e", - [0x1ad4] = "\x02\x3c\x78", [0x1ad5] = "\x01\x5f\x69", - [0x1ad6] = "\x02\x3c\x56", [0x1ad7] = "\x01\x5f\x6c", - [0x1ad8] = "\x01\x5f\x6b", [0x1ada] = "\x01\x5f\x7c", - [0x1adb] = "\x0e\x36\x53", [0x1adc] = "\x02\x3c\x50", - [0x1add] = "\x02\x3c\x72", [0x1ade] = "\x02\x3c\x73", - [0x1adf] = "\x01\x5f\x6e", [0x1ae0] = "\x01\x5f\x6a", - [0x1ae1] = "\x02\x3c\x5e", [0x1ae2] = "\x0e\x3c\x3d", - [0x1ae3] = "\x01\x5f\x75", [0x1ae4] = "\x02\x3c\x59", - [0x1ae5] = "\x0e\x3c\x32", [0x1ae6] = "\x02\x3c\x74", - [0x1ae7] = "\x01\x5f\x71", [0x1ae8] = "\x02\x3c\x6c", - [0x1ae9] = "\x02\x3c\x79", [0x1aea] = "\x02\x3c\x53", - [0x1aeb] = "\x02\x3c\x58", [0x1aec] = "\x02\x3c\x52", - [0x1aed] = "\x0e\x3c\x2a", [0x1aee] = "\x01\x5f\x70", - [0x1aef] = "\x02\x3c\x65", [0x1af0] = "\x02\x43\x64", - [0x1af1] = "\x02\x3c\x54", [0x1af2] = "\x01\x5f\x74", - [0x1af3] = "\x02\x3c\x5d", [0x1af4] = "\x02\x3c\x75", - [0x1af5] = "\x01\x5f\x6f", [0x1af6] = "\x02\x3c\x5a", - [0x1af7] = "\x02\x3c\x57", [0x1af8] = "\x02\x3c\x68", - [0x1af9] = "\x01\x5f\x72", [0x1afa] = "\x01\x5f\x68", - [0x1afb] = "\x01\x5f\x7e", [0x1afc] = "\x02\x3c\x6b", - [0x1afd] = "\x02\x3c\x6a", [0x1afe] = "\x0e\x3c\x31", - [0x1aff] = "\x0e\x3c\x42", [0x1b00] = "\x0e\x3c\x39", - [0x1b01] = "\x0e\x3c\x3b", [0x1b02] = "\x0e\x3c\x34", - [0x1b03] = "\x0e\x3c\x2f", [0x1b04] = "\x02\x3c\x4f", - [0x1b05] = "\x01\x5f\x6d", [0x1b06] = "\x02\x3c\x77", - [0x1b07] = "\x02\x3c\x5f", [0x1b08] = "\x02\x3c\x61", - [0x1b09] = "\x0e\x3c\x37", [0x1b0a] = "\x02\x3c\x6e", - [0x1b0b] = "\x02\x3c\x6d", [0x1b0c] = "\x02\x3c\x4d", - [0x1b0d] = "\x01\x5f\x78", [0x1b0e] = "\x01\x5f\x7a", - [0x1b0f] = "\x02\x3c\x55", [0x1b10] = "\x02\x3c\x5c", - [0x1b11] = "\x02\x3c\x64", [0x1b12] = "\x01\x5f\x79", - [0x1b13] = "\x02\x3c\x5b", [0x1b14] = "\x02\x3c\x67", - [0x1b15] = "\x02\x3c\x7a", [0x1b17] = "\x02\x3c\x6f", - [0x1b18] = "\x0e\x3c\x3c", [0x1b1c] = "\x0e\x3c\x44", - [0x1b1e] = "\x0e\x3c\x33", [0x1b25] = "\x02\x3c\x7b", - [0x1b29] = "\x0e\x65\x2f", [0x1b2a] = "\x02\x3c\x51", - [0x1b2c] = "\x0e\x65\x2e", [0x1b2e] = "\x0e\x3c\x40", - [0x1b2f] = "\x02\x43\x78", [0x1b30] = "\x01\x64\x4c", - [0x1b31] = "\x0e\x41\x65", [0x1b32] = "\x02\x43\x76", - [0x1b33] = "\x02\x43\x61", [0x1b34] = "\x02\x43\x66", - [0x1b35] = "\x02\x43\x5f", [0x1b36] = "\x0e\x41\x77", - [0x1b37] = "\x02\x43\x72", [0x1b38] = "\x02\x43\x51", - [0x1b39] = "\x02\x43\x58", [0x1b3b] = "\x02\x43\x70", - [0x1b3c] = "\x02\x43\x7a", [0x1b3d] = "\x02\x43\x62", - [0x1b3e] = "\x0e\x41\x68", [0x1b3f] = "\x02\x43\x55", - [0x1b40] = "\x02\x43\x68", [0x1b41] = "\x02\x43\x6d", - [0x1b42] = "\x02\x43\x59", [0x1b43] = "\x0e\x41\x6b", - [0x1b44] = "\x02\x43\x6a", [0x1b45] = "\x02\x43\x56", - [0x1b46] = "\x0e\x41\x5d", [0x1b47] = "\x0e\x41\x75", - [0x1b48] = "\x02\x43\x5d", [0x1b49] = "\x02\x43\x5e", - [0x1b4a] = "\x01\x64\x4e", [0x1b4b] = "\x02\x43\x71", - [0x1b4c] = "\x02\x43\x6f", [0x1b4d] = "\x0e\x41\x73", - [0x1b4e] = "\x02\x43\x52", [0x1b4f] = "\x02\x43\x74", - [0x1b50] = "\x0e\x41\x74", [0x1b51] = "\x02\x43\x75", - [0x1b52] = "\x02\x43\x77", [0x1b53] = "\x01\x64\x52", - [0x1b54] = "\x01\x64\x4a", [0x1b55] = "\x0e\x41\x6f", - [0x1b56] = "\x02\x35\x7a", [0x1b57] = "\x02\x43\x5a", - [0x1b58] = "\x02\x43\x6c", [0x1b59] = "\x02\x43\x5b", - [0x1b5a] = "\x01\x64\x47", [0x1b5b] = "\x01\x64\x57", - [0x1b5c] = "\x02\x43\x73", [0x1b5d] = "\x01\x64\x55", - [0x1b5e] = "\x01\x64\x51", [0x1b5f] = "\x02\x43\x50", - [0x1b60] = "\x01\x64\x49", [0x1b61] = "\x0e\x41\x79", - [0x1b62] = "\x02\x43\x53", [0x1b63] = "\x01\x64\x56", - [0x1b64] = "\x0e\x41\x78", [0x1b65] = "\x02\x43\x63", - [0x1b66] = "\x02\x43\x4f", [0x1b67] = "\x0e\x41\x76", - [0x1b68] = "\x01\x64\x4f", [0x1b69] = "\x02\x43\x67", - [0x1b6a] = "\x02\x43\x57", [0x1b6b] = "\x01\x64\x50", - [0x1b6c] = "\x02\x43\x60", [0x1b6d] = "\x01\x64\x46", - [0x1b6e] = "\x01\x5f\x7d", [0x1b6f] = "\x02\x43\x69", - [0x1b70] = "\x02\x3c\x62", [0x1b71] = "\x02\x43\x54", - [0x1b73] = "\x0e\x41\x6d", [0x1b74] = "\x02\x43\x6e", - [0x1b75] = "\x01\x64\x4b", [0x1b76] = "\x02\x43\x6b", - [0x1b77] = "\x01\x64\x48", [0x1b78] = "\x02\x43\x65", - [0x1b79] = "\x01\x64\x53", [0x1b7a] = "\x02\x43\x5c", - [0x1b7b] = "\x02\x43\x79", [0x1b7c] = "\x0e\x41\x6a", - [0x1b7d] = "\x0e\x41\x7b", [0x1b82] = "\x01\x64\x4d", - [0x1b83] = "\x02\x45\x2c", [0x1b85] = "\x0e\x41\x72", - [0x1b86] = "\x01\x64\x54", [0x1b8d] = "\x02\x4a\x70", - [0x1b8e] = "\x02\x4a\x6e", [0x1b8f] = "\x0e\x47\x3a", - [0x1b90] = "\x02\x4b\x26", [0x1b91] = "\x02\x4a\x6c", - [0x1b92] = "\x0e\x47\x3d", [0x1b93] = "\x02\x4a\x7e", - [0x1b94] = "\x01\x64\x45", [0x1b95] = "\x01\x69\x28", - [0x1b96] = "\x02\x4a\x68", [0x1b97] = "\x02\x4b\x25", - [0x1b98] = "\x0e\x47\x51", [0x1b99] = "\x02\x4a\x6d", - [0x1b9a] = "\x02\x4a\x7b", [0x1b9b] = "\x01\x69\x2d", - [0x1b9c] = "\x01\x69\x26", [0x1b9d] = "\x0e\x47\x4e", - [0x1b9e] = "\x02\x4b\x23", [0x1b9f] = "\x0e\x47\x46", - [0x1ba0] = "\x02\x4a\x66", [0x1ba1] = "\x02\x4b\x22", - [0x1ba2] = "\x0e\x47\x47", [0x1ba3] = "\x01\x69\x38", - [0x1ba4] = "\x02\x4a\x77", [0x1ba5] = "\x02\x4b\x29", - [0x1ba6] = "\x01\x69\x36", [0x1ba7] = "\x02\x4a\x6f", - [0x1ba8] = "\x01\x69\x27", [0x1ba9] = "\x02\x4a\x71", - [0x1baa] = "\x02\x4b\x21", [0x1bab] = "\x01\x69\x30", - [0x1bac] = "\x02\x4a\x6a", [0x1bad] = "\x01\x69\x34", - [0x1bae] = "\x01\x69\x2a", [0x1baf] = "\x02\x4a\x73", - [0x1bb0] = "\x02\x4a\x69", [0x1bb1] = "\x02\x4a\x63", - [0x1bb2] = "\x0e\x47\x3e", [0x1bb3] = "\x02\x4a\x7d", - [0x1bb4] = "\x01\x69\x31", [0x1bb5] = "\x02\x4b\x28", - [0x1bb6] = "\x02\x4a\x64", [0x1bb7] = "\x01\x69\x2e", - [0x1bb9] = "\x02\x4a\x79", [0x1bba] = "\x0e\x63\x52", - [0x1bbb] = "\x01\x69\x2f", [0x1bbc] = "\x02\x4a\x6b", - [0x1bbd] = "\x02\x4a\x76", [0x1bbe] = "\x02\x4a\x72", - [0x1bbf] = "\x02\x4a\x74", [0x1bc0] = "\x0e\x47\x43", - [0x1bc1] = "\x01\x69\x29", [0x1bc2] = "\x02\x4b\x27", - [0x1bc3] = "\x01\x69\x37", [0x1bc4] = "\x02\x4a\x75", - [0x1bc5] = "\x0e\x47\x3b", [0x1bc6] = "\x02\x4b\x2a", - [0x1bc8] = "\x0e\x47\x3c", [0x1bc9] = "\x02\x4a\x65", - [0x1bca] = "\x02\x4a\x7a", [0x1bcb] = "\x01\x69\x2c", - [0x1bcc] = "\x01\x69\x35", [0x1bcd] = "\x01\x69\x33", - [0x1bce] = "\x02\x4a\x67", [0x1bcf] = "\x02\x4a\x7c", - [0x1bd0] = "\x01\x69\x32", [0x1bd1] = "\x0e\x47\x45", - [0x1bd2] = "\x0e\x47\x48", [0x1bd3] = "\x01\x69\x2b", - [0x1bd4] = "\x02\x4a\x78", [0x1bd5] = "\x0e\x47\x4d", - [0x1bd6] = "\x0e\x47\x44", [0x1bd8] = "\x0e\x4c\x54", - [0x1bd9] = "\x02\x4b\x24", [0x1be1] = "\x0e\x47\x4c", - [0x1be2] = "\x02\x50\x7c", [0x1be3] = "\x0e\x47\x42", - [0x1be4] = "\x02\x50\x78", [0x1be5] = "\x02\x50\x74", - [0x1be6] = "\x02\x51\x2a", [0x1be7] = "\x02\x51\x27", - [0x1be8] = "\x01\x6d\x37", [0x1be9] = "\x0e\x4c\x64", - [0x1bea] = "\x0e\x4c\x60", [0x1beb] = "\x02\x51\x2e", - [0x1bec] = "\x02\x50\x7b", [0x1bed] = "\x01\x6d\x42", - [0x1bee] = "\x02\x51\x24", [0x1bef] = "\x0e\x4c\x4f", - [0x1bf0] = "\x0e\x4c\x51", [0x1bf1] = "\x02\x50\x77", - [0x1bf2] = "\x02\x51\x23", [0x1bf3] = "\x01\x6d\x3f", - [0x1bf4] = "\x02\x51\x37", [0x1bf6] = "\x02\x51\x34", - [0x1bf7] = "\x02\x51\x26", [0x1bf8] = "\x02\x50\x75", - [0x1bf9] = "\x0e\x4c\x5f", [0x1bfa] = "\x0e\x4c\x57", - [0x1bfb] = "\x02\x51\x2b", [0x1bfc] = "\x02\x51\x2d", - [0x1bfd] = "\x01\x6d\x3b", [0x1bfe] = "\x02\x51\x21", - [0x1bff] = "\x02\x50\x7a", [0x1c00] = "\x02\x50\x71", - [0x1c01] = "\x01\x6d\x38", [0x1c02] = "\x01\x6d\x40", - [0x1c04] = "\x02\x51\x30", [0x1c05] = "\x01\x6d\x41", - [0x1c06] = "\x02\x50\x72", [0x1c07] = "\x02\x51\x36", - [0x1c08] = "\x02\x51\x29", [0x1c09] = "\x02\x51\x2f", - [0x1c0a] = "\x01\x6d\x3e", [0x1c0b] = "\x0e\x4c\x4d", - [0x1c0c] = "\x0e\x4c\x50", [0x1c0d] = "\x02\x51\x2c", - [0x1c0e] = "\x0e\x4c\x47", [0x1c0f] = "\x02\x51\x33", - [0x1c10] = "\x0e\x4c\x5b", [0x1c11] = "\x01\x6d\x43", - [0x1c12] = "\x0e\x4c\x56", [0x1c13] = "\x01\x6d\x3d", - [0x1c14] = "\x02\x51\x25", [0x1c15] = "\x02\x50\x76", - [0x1c16] = "\x02\x51\x38", [0x1c17] = "\x02\x50\x73", - [0x1c18] = "\x02\x51\x31", [0x1c19] = "\x01\x6d\x3a", - [0x1c1a] = "\x0e\x4c\x4a", [0x1c1b] = "\x02\x50\x7d", - [0x1c1c] = "\x0e\x4c\x49", [0x1c1d] = "\x02\x50\x7e", - [0x1c1e] = "\x01\x6d\x39", [0x1c1f] = "\x01\x6d\x36", - [0x1c20] = "\x02\x50\x79", [0x1c21] = "\x01\x6d\x3c", - [0x1c22] = "\x0e\x4c\x52", [0x1c23] = "\x01\x6d\x35", - [0x1c24] = "\x0e\x4c\x62", [0x1c25] = "\x02\x51\x32", - [0x1c26] = "\x02\x51\x35", [0x1c27] = "\x02\x51\x22", - [0x1c28] = "\x02\x57\x55", [0x1c29] = "\x0e\x4c\x5e", - [0x1c2a] = "\x0e\x4c\x59", [0x1c2c] = "\x0e\x4c\x61", - [0x1c2d] = "\x0e\x65\x30", [0x1c32] = "\x02\x57\x4d", - [0x1c33] = "\x0e\x51\x2c", [0x1c34] = "\x02\x57\x49", - [0x1c35] = "\x01\x71\x21", [0x1c36] = "\x0e\x51\x3c", - [0x1c37] = "\x0e\x51\x38", [0x1c38] = "\x01\x70\x74", - [0x1c39] = "\x01\x70\x79", [0x1c3a] = "\x01\x70\x75", - [0x1c3b] = "\x02\x57\x57", [0x1c3c] = "\x02\x57\x62", - [0x1c3d] = "\x01\x70\x73", [0x1c3e] = "\x02\x57\x4f", - [0x1c3f] = "\x02\x57\x58", [0x1c40] = "\x02\x51\x28", - [0x1c41] = "\x02\x57\x59", [0x1c42] = "\x0e\x51\x28", - [0x1c43] = "\x0e\x51\x2b", [0x1c44] = "\x01\x70\x7a", - [0x1c45] = "\x0e\x51\x40", [0x1c46] = "\x02\x57\x68", - [0x1c47] = "\x01\x70\x7e", [0x1c48] = "\x01\x71\x23", - [0x1c49] = "\x02\x57\x4b", [0x1c4a] = "\x0e\x51\x3b", - [0x1c4b] = "\x01\x70\x7d", [0x1c4c] = "\x0e\x51\x31", - [0x1c4d] = "\x02\x57\x66", [0x1c4e] = "\x02\x57\x67", - [0x1c4f] = "\x02\x57\x5d", [0x1c50] = "\x02\x57\x5c", - [0x1c51] = "\x02\x57\x54", [0x1c52] = "\x0e\x51\x29", - [0x1c53] = "\x0e\x51\x3e", [0x1c54] = "\x02\x57\x5e", - [0x1c55] = "\x02\x57\x65", [0x1c56] = "\x02\x57\x64", - [0x1c57] = "\x0e\x51\x2f", [0x1c58] = "\x01\x70\x78", - [0x1c59] = "\x01\x70\x76", [0x1c5a] = "\x02\x57\x56", - [0x1c5b] = "\x02\x57\x53", [0x1c5c] = "\x0e\x51\x44", - [0x1c5d] = "\x02\x57\x50", [0x1c5e] = "\x02\x57\x63", - [0x1c5f] = "\x01\x71\x22", [0x1c60] = "\x02\x57\x61", - [0x1c61] = "\x01\x70\x7c", [0x1c62] = "\x01\x70\x7b", - [0x1c63] = "\x0e\x51\x27", [0x1c64] = "\x02\x57\x5b", - [0x1c66] = "\x02\x57\x4a", [0x1c67] = "\x02\x57\x4c", - [0x1c68] = "\x02\x57\x4e", [0x1c69] = "\x02\x57\x60", - [0x1c6a] = "\x02\x57\x5a", [0x1c6b] = "\x01\x70\x77", - [0x1c6c] = "\x0e\x51\x2e", [0x1c6d] = "\x02\x57\x51", - [0x1c6e] = "\x0e\x51\x32", [0x1c6f] = "\x02\x57\x5f", - [0x1c70] = "\x0e\x51\x41", [0x1c71] = "\x0e\x51\x3a", - [0x1c76] = "\x02\x57\x52", [0x1c77] = "\x0e\x65\x31", - [0x1c7a] = "\x0e\x65\x32", [0x1c7d] = "\x0e\x54\x75", - [0x1c7e] = "\x01\x73\x78", [0x1c7f] = "\x02\x5d\x31", - [0x1c80] = "\x01\x73\x71", [0x1c81] = "\x02\x5d\x22", - [0x1c82] = "\x0e\x54\x7b", [0x1c83] = "\x02\x5d\x2d", - [0x1c84] = "\x01\x73\x73", [0x1c85] = "\x02\x5d\x34", - [0x1c86] = "\x0e\x55\x21", [0x1c87] = "\x02\x5d\x29", - [0x1c88] = "\x0e\x54\x7c", [0x1c89] = "\x02\x5d\x24", - [0x1c8a] = "\x0e\x54\x76", [0x1c8c] = "\x02\x5d\x35", - [0x1c8d] = "\x02\x5c\x7e", [0x1c8e] = "\x02\x5d\x2b", - [0x1c8f] = "\x0e\x55\x27", [0x1c90] = "\x01\x73\x7a", - [0x1c91] = "\x02\x5d\x30", [0x1c92] = "\x02\x5d\x36", - [0x1c93] = "\x02\x5d\x2a", [0x1c94] = "\x01\x73\x72", - [0x1c95] = "\x02\x5d\x2c", [0x1c96] = "\x02\x5d\x21", - [0x1c97] = "\x01\x73\x79", [0x1c98] = "\x0e\x55\x23", - [0x1c99] = "\x0e\x54\x7a", [0x1c9a] = "\x02\x5d\x33", - [0x1c9b] = "\x02\x5d\x26", [0x1c9c] = "\x01\x73\x75", - [0x1c9d] = "\x0e\x55\x24", [0x1c9e] = "\x02\x5d\x28", - [0x1c9f] = "\x02\x5d\x25", [0x1ca0] = "\x01\x73\x7b", - [0x1ca1] = "\x02\x5d\x27", [0x1ca2] = "\x01\x73\x74", - [0x1ca3] = "\x01\x73\x77", [0x1ca4] = "\x02\x5d\x2f", - [0x1ca5] = "\x02\x5d\x23", [0x1ca6] = "\x02\x5d\x32", - [0x1ca7] = "\x0e\x54\x78", [0x1ca8] = "\x02\x5d\x2e", - [0x1caa] = "\x0e\x55\x29", [0x1cab] = "\x0e\x57\x74", - [0x1cac] = "\x01\x76\x4f", [0x1cad] = "\x02\x61\x73", - [0x1cae] = "\x01\x76\x54", [0x1caf] = "\x01\x76\x55", - [0x1cb0] = "\x0e\x57\x77", [0x1cb1] = "\x0e\x58\x21", - [0x1cb2] = "\x0e\x57\x76", [0x1cb3] = "\x01\x76\x4e", - [0x1cb4] = "\x02\x61\x72", [0x1cb5] = "\x0e\x57\x78", - [0x1cb6] = "\x02\x61\x6f", [0x1cb7] = "\x02\x61\x70", - [0x1cb8] = "\x01\x76\x52", [0x1cb9] = "\x02\x61\x6a", - [0x1cba] = "\x02\x61\x6e", [0x1cbb] = "\x01\x76\x51", - [0x1cbc] = "\x0e\x57\x7e", [0x1cbd] = "\x02\x61\x6b", - [0x1cbe] = "\x0e\x57\x79", [0x1cbf] = "\x0e\x58\x23", - [0x1cc0] = "\x0e\x57\x7d", [0x1cc1] = "\x0e\x57\x7a", - [0x1cc2] = "\x01\x76\x53", [0x1cc3] = "\x01\x76\x50", - [0x1cc4] = "\x0e\x58\x22", [0x1cc5] = "\x02\x61\x69", - [0x1cc6] = "\x02\x61\x6d", [0x1cc7] = "\x02\x61\x71", - [0x1cc8] = "\x0e\x57\x7b", [0x1cca] = "\x0e\x65\x33", - [0x1ccb] = "\x02\x65\x5c", [0x1ccc] = "\x02\x65\x59", - [0x1ccd] = "\x02\x65\x62", [0x1cce] = "\x0e\x5a\x44", - [0x1ccf] = "\x02\x65\x61", [0x1cd0] = "\x02\x65\x5f", - [0x1cd1] = "\x02\x65\x5a", [0x1cd2] = "\x0e\x5a\x4f", - [0x1cd3] = "\x01\x78\x3f", [0x1cd4] = "\x0e\x5a\x45", - [0x1cd5] = "\x0e\x5a\x4e", [0x1cd7] = "\x0e\x5a\x47", - [0x1cd8] = "\x0e\x5a\x4d", [0x1cd9] = "\x02\x65\x5b", - [0x1cda] = "\x01\x78\x3e", [0x1cdb] = "\x01\x73\x76", - [0x1cdc] = "\x02\x65\x5e", [0x1cdd] = "\x01\x78\x3d", - [0x1cde] = "\x02\x65\x63", [0x1cdf] = "\x02\x65\x5d", - [0x1ce0] = "\x02\x65\x58", [0x1ce1] = "\x02\x61\x6c", - [0x1ce2] = "\x0e\x5a\x48", [0x1ce3] = "\x0e\x5a\x46", - [0x1ce5] = "\x01\x78\x3c", [0x1ce6] = "\x0e\x65\x34", - [0x1ce7] = "\x02\x65\x57", [0x1ce8] = "\x02\x69\x24", - [0x1ce9] = "\x0e\x5c\x49", [0x1cea] = "\x02\x69\x23", - [0x1ceb] = "\x02\x65\x60", [0x1cec] = "\x01\x79\x73", - [0x1ced] = "\x0e\x57\x75", [0x1cee] = "\x02\x69\x27", - [0x1cef] = "\x02\x69\x28", [0x1cf0] = "\x02\x69\x22", - [0x1cf1] = "\x02\x69\x26", [0x1cf3] = "\x02\x69\x21", - [0x1cf4] = "\x0e\x5c\x47", [0x1cf5] = "\x0e\x65\x35", - [0x1cf8] = "\x02\x6b\x5f", [0x1cf9] = "\x02\x69\x25", - [0x1cfa] = "\x01\x7a\x72", [0x1cfb] = "\x01\x7a\x70", - [0x1cfc] = "\x02\x6b\x5d", [0x1cfd] = "\x0e\x5e\x35", - [0x1cfe] = "\x0e\x5e\x34", [0x1cff] = "\x0e\x5e\x33", - [0x1d00] = "\x02\x6b\x60", [0x1d01] = "\x0e\x5e\x37", - [0x1d02] = "\x02\x6b\x5c", [0x1d03] = "\x02\x6b\x5e", - [0x1d04] = "\x01\x7a\x71", [0x1d06] = "\x0e\x5f\x4f", - [0x1d07] = "\x0e\x5f\x4e", [0x1d08] = "\x02\x6d\x53", - [0x1d09] = "\x02\x6d\x54", [0x1d0a] = "\x01\x7b\x62", - [0x1d0b] = "\x02\x6d\x52", [0x1d0d] = "\x0e\x65\x36", - [0x1d0e] = "\x0e\x65\x37", [0x1d0f] = "\x02\x6f\x31", - [0x1d10] = "\x01\x7c\x3b", [0x1d11] = "\x02\x6f\x2f", - [0x1d12] = "\x02\x6f\x30", [0x1d13] = "\x02\x70\x3a", - [0x1d14] = "\x0e\x60\x74", [0x1d16] = "\x01\x7d\x23", - [0x1d17] = "\x02\x71\x23", [0x1d18] = "\x02\x71\x21", - [0x1d19] = "\x02\x71\x22", [0x1d1a] = "\x02\x71\x24", - [0x1d1b] = "\x0e\x61\x40", [0x1d1c] = "\x0e\x61\x65", - [0x1d1d] = "\x0e\x61\x41", [0x1d1e] = "\x02\x72\x2b", - [0x1d20] = "\x01\x45\x4e", [0x1d21] = "\x01\x48\x39", - [0x1d22] = "\x0e\x23\x79", [0x1d23] = "\x01\x4e\x3c", - [0x1d25] = "\x02\x27\x4a", [0x1d26] = "\x0e\x29\x53", - [0x1d27] = "\x0e\x29\x54", [0x1d28] = "\x02\x2b\x46", - [0x1d29] = "\x0e\x62\x69", [0x1d2a] = "\x0e\x2d\x3c", - [0x1d2b] = "\x0e\x31\x66", [0x1d2c] = "\x02\x2f\x77", - [0x1d2d] = "\x02\x2f\x79", [0x1d2e] = "\x0e\x31\x65", - [0x1d2f] = "\x02\x2f\x78", [0x1d30] = "\x0e\x31\x67", - [0x1d31] = "\x02\x2f\x7a", [0x1d32] = "\x01\x5b\x43", - [0x1d33] = "\x02\x36\x3b", [0x1d34] = "\x02\x2f\x7b", - [0x1d35] = "\x0e\x36\x62", [0x1d36] = "\x02\x36\x3a", - [0x1d37] = "\x02\x36\x3c", [0x1d38] = "\x02\x36\x3d", - [0x1d39] = "\x02\x3c\x7d", [0x1d3a] = "\x01\x60\x22", - [0x1d3b] = "\x02\x3c\x7e", [0x1d3c] = "\x02\x3d\x22", - [0x1d3d] = "\x01\x60\x23", [0x1d3e] = "\x01\x60\x21", - [0x1d3f] = "\x02\x3d\x21", [0x1d40] = "\x0e\x41\x7d", - [0x1d41] = "\x02\x44\x22", [0x1d42] = "\x02\x43\x7e", - [0x1d43] = "\x02\x43\x7d", [0x1d44] = "\x0e\x41\x7c", - [0x1d45] = "\x02\x43\x7c", [0x1d46] = "\x02\x43\x7b", - [0x1d47] = "\x01\x64\x58", [0x1d48] = "\x02\x44\x21", - [0x1d49] = "\x01\x69\x39", [0x1d4a] = "\x02\x4b\x2b", - [0x1d4b] = "\x02\x4b\x2d", [0x1d4c] = "\x01\x69\x3a", - [0x1d4d] = "\x02\x4b\x2c", [0x1d4e] = "\x01\x6d\x45", - [0x1d4f] = "\x0e\x4c\x66", [0x1d50] = "\x01\x6d\x44", - [0x1d51] = "\x02\x51\x39", [0x1d52] = "\x0e\x4c\x65", - [0x1d53] = "\x0e\x4c\x67", [0x1d54] = "\x02\x57\x6a", - [0x1d55] = "\x02\x57\x69", [0x1d56] = "\x02\x57\x6b", - [0x1d57] = "\x0e\x51\x46", [0x1d58] = "\x0e\x51\x45", - [0x1d59] = "\x01\x71\x24", [0x1d5b] = "\x02\x5d\x37", - [0x1d5c] = "\x01\x73\x7c", [0x1d5d] = "\x0e\x55\x2b", - [0x1d5e] = "\x02\x61\x74", [0x1d5f] = "\x01\x76\x56", - [0x1d60] = "\x02\x65\x64", [0x1d61] = "\x01\x7b\x63", - [0x1d62] = "\x01\x45\x4f", [0x1d63] = "\x01\x46\x5f", - [0x1d64] = "\x01\x48\x3a", [0x1d65] = "\x01\x4a\x63", - [0x1d66] = "\x01\x4e\x3d", [0x1d67] = "\x01\x4e\x3e", - [0x1d68] = "\x0e\x29\x55", [0x1d69] = "\x0e\x29\x56", - [0x1d6a] = "\x01\x51\x71", [0x1d6b] = "\x0e\x2d\x3d", - [0x1d6c] = "\x0e\x31\x68", [0x1d6d] = "\x02\x2f\x7c", - [0x1d6e] = "\x0e\x3c\x49", [0x1d6f] = "\x0e\x3c\x47", - [0x1d71] = "\x0e\x41\x7e", [0x1d72] = "\x01\x64\x59", - [0x1d73] = "\x0e\x42\x21", [0x1d74] = "\x0e\x47\x53", - [0x1d76] = "\x02\x52\x59", [0x1d77] = "\x01\x71\x25", - [0x1d78] = "\x01\x76\x57", [0x1d79] = "\x01\x45\x50", - [0x1d7a] = "\x0e\x22\x53", [0x1d7b] = "\x01\x48\x3b", - [0x1d7e] = "\x02\x27\x4c", [0x1d7f] = "\x01\x4e\x3f", - [0x1d80] = "\x02\x27\x4b", [0x1d81] = "\x0e\x29\x58", - [0x1d82] = "\x02\x2b\x47", [0x1d83] = "\x01\x51\x72", - [0x1d84] = "\x02\x2b\x48", [0x1d86] = "\x01\x51\x73", - [0x1d88] = "\x02\x2f\x7e", [0x1d89] = "\x01\x56\x32", - [0x1d8a] = "\x01\x56\x31", [0x1d8b] = "\x0e\x31\x6a", - [0x1d8c] = "\x02\x36\x42", [0x1d8d] = "\x02\x36\x40", - [0x1d8e] = "\x02\x36\x41", [0x1d8f] = "\x02\x36\x3f", - [0x1d90] = "\x0e\x36\x64", [0x1d91] = "\x02\x36\x3e", - [0x1d94] = "\x02\x3d\x23", [0x1d95] = "\x02\x3d\x26", - [0x1d96] = "\x01\x60\x25", [0x1d97] = "\x02\x3d\x24", - [0x1d98] = "\x01\x60\x24", [0x1d99] = "\x02\x3d\x25", - [0x1d9b] = "\x02\x44\x23", [0x1d9c] = "\x0e\x42\x22", - [0x1d9d] = "\x0e\x63\x54", [0x1d9e] = "\x02\x4b\x2e", - [0x1d9f] = "\x02\x4b\x2f", [0x1da0] = "\x02\x4b\x30", - [0x1da1] = "\x0e\x47\x54", [0x1da2] = "\x02\x51\x3c", - [0x1da3] = "\x02\x51\x3b", [0x1da4] = "\x01\x6d\x46", - [0x1da5] = "\x02\x51\x3a", [0x1da6] = "\x02\x51\x3d", - [0x1da7] = "\x02\x57\x6c", [0x1daa] = "\x02\x57\x6d", - [0x1dab] = "\x02\x57\x6e", [0x1dad] = "\x02\x5d\x38", - [0x1dae] = "\x01\x73\x7d", [0x1daf] = "\x01\x76\x58", - [0x1db0] = "\x02\x65\x65", [0x1db2] = "\x01\x7a\x73", - [0x1db3] = "\x02\x21\x3f", [0x1db4] = "\x0e\x29\x59", - [0x1db5] = "\x01\x51\x74", [0x1db6] = "\x02\x2b\x49", - [0x1db7] = "\x01\x56\x33", [0x1dba] = "\x01\x5b\x44", - [0x1dbb] = "\x0e\x36\x65", [0x1dbc] = "\x01\x60\x26", - [0x1dbd] = "\x02\x3d\x27", [0x1dbe] = "\x0e\x3c\x4b", - [0x1dbf] = "\x01\x64\x5b", [0x1dc0] = "\x01\x64\x5a", - [0x1dc1] = "\x0e\x42\x26", [0x1dc3] = "\x02\x4b\x31", - [0x1dc4] = "\x02\x4b\x32", [0x1dc5] = "\x01\x6d\x47", - [0x1dc6] = "\x01\x6d\x48", [0x1dc7] = "\x02\x57\x70", - [0x1dc8] = "\x02\x57\x6f", [0x1dc9] = "\x02\x61\x75", - [0x1dca] = "\x02\x6f\x32", [0x1dcb] = "\x01\x45\x51", - [0x1dcc] = "\x02\x21\x40", [0x1dcd] = "\x01\x46\x60", - [0x1dce] = "\x0e\x23\x7a", [0x1dcf] = "\x01\x4a\x64", - [0x1dd0] = "\x02\x24\x48", [0x1dd1] = "\x0e\x29\x5a", - [0x1dd2] = "\x01\x51\x75", [0x1dd3] = "\x01\x64\x5c", - [0x1dd4] = "\x01\x45\x52", [0x1dd6] = "\x02\x2b\x4a", - [0x1dd7] = "\x01\x51\x76", [0x1dd8] = "\x02\x2b\x4b", - [0x1dda] = "\x01\x73\x7e", [0x1ddb] = "\x01\x45\x53", - [0x1ddc] = "\x0e\x65\x38", [0x1ddd] = "\x0e\x65\x39", - [0x1dde] = "\x02\x27\x4d", [0x1de0] = "\x02\x2b\x4c", - [0x1de1] = "\x0e\x2d\x42", [0x1de2] = "\x02\x30\x25", - [0x1de3] = "\x02\x30\x24", [0x1de4] = "\x02\x30\x22", - [0x1de5] = "\x0e\x31\x6e", [0x1de6] = "\x02\x30\x21", - [0x1de7] = "\x02\x30\x26", [0x1de8] = "\x02\x30\x23", - [0x1de9] = "\x0e\x31\x6c", [0x1dea] = "\x0e\x31\x6d", - [0x1deb] = "\x01\x5b\x45", [0x1dec] = "\x01\x5b\x46", - [0x1ded] = "\x0e\x36\x66", [0x1def] = "\x01\x60\x27", - [0x1df0] = "\x02\x3d\x28", [0x1df2] = "\x02\x3d\x29", - [0x1df3] = "\x02\x3d\x2a", [0x1df4] = "\x0e\x3c\x4d", - [0x1df6] = "\x0e\x65\x3a", [0x1df7] = "\x02\x44\x27", - [0x1df8] = "\x02\x44\x28", [0x1df9] = "\x02\x44\x26", - [0x1dfa] = "\x0e\x42\x28", [0x1dfb] = "\x02\x44\x24", - [0x1dfc] = "\x02\x44\x25", [0x1dfd] = "\x01\x64\x5d", - [0x1dfe] = "\x02\x4b\x33", [0x1dff] = "\x02\x51\x40", - [0x1e00] = "\x02\x51\x3f", [0x1e01] = "\x02\x51\x3e", - [0x1e02] = "\x02\x51\x41", [0x1e03] = "\x02\x57\x72", - [0x1e04] = "\x02\x57\x71", [0x1e05] = "\x01\x71\x26", - [0x1e06] = "\x02\x57\x73", [0x1e08] = "\x01\x74\x21", - [0x1e09] = "\x02\x5d\x39", [0x1e0a] = "\x0e\x55\x2d", - [0x1e0b] = "\x02\x61\x76", [0x1e0c] = "\x02\x65\x66", - [0x1e0d] = "\x02\x6d\x55", [0x1e0f] = "\x01\x45\x54", - [0x1e10] = "\x01\x46\x62", [0x1e11] = "\x01\x46\x61", - [0x1e13] = "\x01\x4e\x40", [0x1e14] = "\x02\x21\x41", - [0x1e15] = "\x02\x21\x5f", [0x1e16] = "\x01\x48\x3c", - [0x1e18] = "\x02\x22\x58", [0x1e19] = "\x02\x24\x49", - [0x1e1a] = "\x02\x24\x4a", [0x1e1b] = "\x01\x4e\x41", - [0x1e1c] = "\x0e\x29\x5d", [0x1e1d] = "\x02\x27\x4e", - [0x1e1e] = "\x0e\x65\x3b", [0x1e1f] = "\x01\x51\x77", - [0x1e20] = "\x02\x2b\x4d", [0x1e21] = "\x02\x2b\x4e", - [0x1e23] = "\x01\x56\x34", [0x1e24] = "\x01\x56\x38", - [0x1e25] = "\x02\x30\x27", [0x1e26] = "\x01\x56\x37", - [0x1e27] = "\x01\x56\x35", [0x1e28] = "\x01\x56\x36", - [0x1e2a] = "\x02\x36\x43", [0x1e2b] = "\x01\x5b\x47", - [0x1e2c] = "\x01\x60\x2a", [0x1e2d] = "\x0e\x3c\x4e", - [0x1e2e] = "\x01\x60\x28", [0x1e2f] = "\x01\x60\x29", - [0x1e30] = "\x02\x3d\x2b", [0x1e31] = "\x0e\x42\x29", - [0x1e32] = "\x0e\x42\x2a", [0x1e33] = "\x01\x69\x3b", - [0x1e34] = "\x01\x45\x55", [0x1e36] = "\x02\x21\x60", - [0x1e37] = "\x0e\x22\x57", [0x1e38] = "\x01\x46\x63", - [0x1e39] = "\x0e\x22\x54", [0x1e3b] = "\x02\x21\x63", - [0x1e3c] = "\x0e\x24\x21", [0x1e3e] = "\x01\x46\x66", - [0x1e3f] = "\x02\x21\x62", [0x1e40] = "\x01\x46\x65", - [0x1e41] = "\x01\x46\x64", [0x1e42] = "\x01\x4a\x65", - [0x1e43] = "\x02\x21\x61", [0x1e44] = "\x0e\x22\x58", - [0x1e45] = "\x0e\x22\x59", [0x1e46] = "\x02\x22\x59", - [0x1e4a] = "\x02\x22\x5d", [0x1e4b] = "\x02\x22\x5f", - [0x1e4c] = "\x02\x22\x60", [0x1e4d] = "\x01\x48\x46", - [0x1e4e] = "\x01\x48\x47", [0x1e4f] = "\x02\x22\x5c", - [0x1e50] = "\x01\x48\x42", [0x1e51] = "\x0e\x23\x7d", - [0x1e52] = "\x02\x22\x5a", [0x1e53] = "\x0e\x24\x25", - [0x1e54] = "\x02\x22\x5e", [0x1e55] = "\x01\x48\x43", - [0x1e56] = "\x0e\x26\x55", [0x1e57] = "\x01\x48\x3e", - [0x1e58] = "\x0e\x23\x7c", [0x1e59] = "\x01\x48\x3f", - [0x1e5a] = "\x0e\x24\x23", [0x1e5b] = "\x01\x48\x45", - [0x1e5c] = "\x02\x22\x5b", [0x1e5d] = "\x01\x48\x3d", - [0x1e5e] = "\x01\x4a\x66", [0x1e5f] = "\x01\x48\x40", - [0x1e60] = "\x01\x48\x41", [0x1e61] = "\x01\x48\x44", - [0x1e63] = "\x0e\x65\x3c", [0x1e65] = "\x02\x24\x5b", - [0x1e66] = "\x02\x24\x59", [0x1e67] = "\x02\x24\x4c", - [0x1e68] = "\x01\x4a\x72", [0x1e69] = "\x02\x24\x53", - [0x1e6a] = "\x01\x4a\x6d", [0x1e6b] = "\x02\x24\x4d", - [0x1e6c] = "\x0e\x29\x64", [0x1e6d] = "\x02\x24\x55", - [0x1e6e] = "\x0e\x26\x50", [0x1e6f] = "\x02\x24\x52", - [0x1e70] = "\x01\x4a\x70", [0x1e71] = "\x02\x24\x51", - [0x1e72] = "\x01\x4a\x77", [0x1e73] = "\x02\x24\x5a", - [0x1e74] = "\x01\x4a\x79", [0x1e75] = "\x0e\x26\x53", - [0x1e76] = "\x01\x4a\x7b", [0x1e77] = "\x0e\x23\x7e", - [0x1e78] = "\x02\x24\x4b", [0x1e79] = "\x0e\x26\x57", - [0x1e7a] = "\x01\x4a\x6e", [0x1e7b] = "\x02\x24\x5c", - [0x1e7c] = "\x0e\x26\x51", [0x1e7d] = "\x01\x4a\x75", - [0x1e7e] = "\x01\x4a\x78", [0x1e7f] = "\x0e\x26\x4c", - [0x1e80] = "\x02\x27\x65", [0x1e81] = "\x01\x4a\x68", - [0x1e82] = "\x01\x4b\x21", [0x1e83] = "\x01\x4a\x76", - [0x1e84] = "\x02\x24\x4e", [0x1e85] = "\x01\x4a\x6b", - [0x1e86] = "\x01\x4a\x7a", [0x1e87] = "\x02\x24\x56", - [0x1e88] = "\x01\x4a\x69", [0x1e89] = "\x01\x4a\x6a", - [0x1e8a] = "\x02\x27\x63", [0x1e8b] = "\x02\x24\x4f", - [0x1e8c] = "\x01\x4a\x71", [0x1e8d] = "\x01\x4a\x7c", - [0x1e8e] = "\x02\x24\x5d", [0x1e8f] = "\x02\x24\x50", - [0x1e90] = "\x01\x4a\x6f", [0x1e91] = "\x0e\x26\x4d", - [0x1e92] = "\x01\x4a\x74", [0x1e93] = "\x02\x27\x4f", - [0x1e94] = "\x01\x4a\x7d", [0x1e95] = "\x02\x24\x57", - [0x1e96] = "\x01\x4a\x73", [0x1e97] = "\x0e\x29\x63", - [0x1e98] = "\x01\x4a\x7e", [0x1e99] = "\x01\x4a\x67", - [0x1e9a] = "\x02\x24\x54", [0x1e9b] = "\x01\x4a\x6c", - [0x1e9c] = "\x02\x24\x58", [0x1e9d] = "\x02\x27\x64", - [0x1e9e] = "\x0e\x26\x4e", [0x1e9f] = "\x0e\x26\x52", - [0x1ea0] = "\x0e\x26\x5c", [0x1ea1] = "\x0e\x26\x59", - [0x1ea2] = "\x0e\x26\x56", [0x1eaa] = "\x0e\x26\x5b", - [0x1eab] = "\x01\x4e\x4d", [0x1eac] = "\x01\x4e\x5d", - [0x1ead] = "\x02\x27\x56", [0x1eae] = "\x01\x4e\x54", - [0x1eaf] = "\x0e\x2d\x4e", [0x1eb0] = "\x02\x27\x6b", - [0x1eb1] = "\x01\x4e\x45", [0x1eb2] = "\x0e\x29\x6b", - [0x1eb3] = "\x01\x4e\x48", [0x1eb4] = "\x02\x27\x62", - [0x1eb6] = "\x02\x27\x54", [0x1eb7] = "\x02\x27\x58", - [0x1eb8] = "\x01\x4e\x50", [0x1eb9] = "\x01\x4e\x52", - [0x1eba] = "\x02\x27\x5b", [0x1ebb] = "\x01\x4e\x59", - [0x1ebc] = "\x01\x4e\x4b", [0x1ebd] = "\x01\x4e\x49", - [0x1ebe] = "\x01\x4e\x4a", [0x1ebf] = "\x01\x4e\x58", - [0x1ec0] = "\x02\x27\x67", [0x1ec1] = "\x01\x4e\x53", - [0x1ec2] = "\x02\x27\x5a", [0x1ec3] = "\x02\x27\x5c", - [0x1ec4] = "\x01\x4e\x51", [0x1ec5] = "\x01\x4e\x56", - [0x1ec6] = "\x02\x27\x5d", [0x1ec7] = "\x02\x27\x6a", - [0x1ec8] = "\x0e\x29\x6d", [0x1ec9] = "\x01\x51\x78", - [0x1eca] = "\x01\x4e\x5c", [0x1ecb] = "\x0e\x62\x61", - [0x1ecc] = "\x01\x4e\x46", [0x1ecd] = "\x02\x27\x69", - [0x1ece] = "\x0e\x29\x6c", [0x1ecf] = "\x02\x27\x6d", - [0x1ed0] = "\x02\x27\x59", [0x1ed1] = "\x02\x27\x6f", - [0x1ed2] = "\x02\x27\x60", [0x1ed3] = "\x01\x4e\x4f", - [0x1ed4] = "\x02\x27\x55", [0x1ed5] = "\x01\x4e\x4e", - [0x1ed6] = "\x01\x4e\x60", [0x1ed7] = "\x01\x4e\x55", - [0x1ed8] = "\x0e\x29\x6a", [0x1ed9] = "\x02\x27\x53", - [0x1eda] = "\x02\x2b\x57", [0x1edb] = "\x01\x4e\x5b", - [0x1edc] = "\x01\x4e\x5f", [0x1edd] = "\x02\x27\x61", - [0x1ede] = "\x02\x27\x66", [0x1edf] = "\x0e\x29\x65", - [0x1ee0] = "\x01\x4e\x61", [0x1ee1] = "\x01\x4e\x5a", - [0x1ee2] = "\x01\x4e\x4c", [0x1ee3] = "\x01\x4e\x42", - [0x1ee4] = "\x0e\x29\x69", [0x1ee5] = "\x01\x4e\x47", - [0x1ee6] = "\x0e\x62\x60", [0x1ee7] = "\x02\x27\x57", - [0x1ee8] = "\x01\x4e\x43", [0x1ee9] = "\x02\x27\x6e", - [0x1eea] = "\x0e\x29\x67", [0x1eeb] = "\x02\x27\x51", - [0x1eec] = "\x02\x27\x50", [0x1eed] = "\x02\x27\x5e", - [0x1eee] = "\x02\x27\x52", [0x1eef] = "\x01\x4e\x5e", - [0x1ef0] = "\x01\x56\x39", [0x1ef1] = "\x01\x4e\x57", - [0x1ef2] = "\x02\x27\x5f", [0x1ef3] = "\x01\x4e\x44", - [0x1ef4] = "\x0e\x2d\x4f", [0x1ef5] = "\x01\x52\x29", - [0x1ef9] = "\x02\x27\x6c", [0x1eff] = "\x0e\x2d\x46", - [0x1f00] = "\x02\x2b\x5e", [0x1f01] = "\x02\x2b\x61", - [0x1f02] = "\x0e\x2d\x50", [0x1f03] = "\x02\x2b\x64", - [0x1f04] = "\x02\x2b\x59", [0x1f05] = "\x0e\x2d\x48", - [0x1f06] = "\x0e\x2d\x4a", [0x1f07] = "\x02\x2b\x67", - [0x1f08] = "\x02\x2b\x6a", [0x1f09] = "\x02\x2b\x6c", - [0x1f0a] = "\x02\x2b\x56", [0x1f0b] = "\x01\x51\x79", - [0x1f0c] = "\x01\x51\x7e", [0x1f0d] = "\x02\x30\x2c", - [0x1f0e] = "\x01\x52\x30", [0x1f0f] = "\x02\x2b\x65", - [0x1f10] = "\x02\x2b\x6d", [0x1f11] = "\x02\x2b\x5d", - [0x1f12] = "\x02\x2b\x55", [0x1f13] = "\x0e\x2d\x49", - [0x1f14] = "\x0e\x2d\x47", [0x1f15] = "\x0e\x2d\x4d", - [0x1f16] = "\x02\x30\x47", [0x1f17] = "\x01\x52\x23", - [0x1f18] = "\x02\x2b\x62", [0x1f19] = "\x02\x2b\x5a", - [0x1f1a] = "\x02\x2b\x5c", [0x1f1b] = "\x01\x52\x28", - [0x1f1c] = "\x0e\x31\x7a", [0x1f1d] = "\x02\x2b\x5f", - [0x1f1e] = "\x01\x52\x22", [0x1f1f] = "\x02\x2b\x52", - [0x1f20] = "\x02\x2b\x68", [0x1f21] = "\x0e\x2d\x4b", - [0x1f22] = "\x02\x2b\x6b", [0x1f23] = "\x0e\x2d\x45", - [0x1f24] = "\x0e\x2d\x57", [0x1f25] = "\x01\x51\x7d", - [0x1f26] = "\x0e\x2d\x53", [0x1f27] = "\x01\x52\x2b", - [0x1f28] = "\x02\x2b\x4f", [0x1f29] = "\x01\x52\x2d", - [0x1f2a] = "\x01\x51\x7b", [0x1f2b] = "\x01\x52\x31", - [0x1f2c] = "\x02\x2b\x69", [0x1f2d] = "\x02\x2b\x51", - [0x1f2e] = "\x01\x52\x2e", [0x1f2f] = "\x02\x30\x41", - [0x1f30] = "\x02\x27\x68", [0x1f31] = "\x01\x52\x21", - [0x1f32] = "\x01\x51\x7a", [0x1f33] = "\x02\x2b\x58", - [0x1f34] = "\x02\x2b\x50", [0x1f35] = "\x01\x52\x2f", - [0x1f36] = "\x01\x52\x27", [0x1f37] = "\x02\x2b\x63", - [0x1f38] = "\x01\x52\x2c", [0x1f39] = "\x01\x52\x2a", - [0x1f3a] = "\x02\x2b\x5b", [0x1f3b] = "\x01\x52\x24", - [0x1f3c] = "\x02\x2b\x53", [0x1f3d] = "\x01\x52\x25", - [0x1f3e] = "\x01\x52\x26", [0x1f3f] = "\x02\x2b\x54", - [0x1f40] = "\x02\x2b\x66", [0x1f41] = "\x01\x51\x7c", - [0x1f42] = "\x02\x2b\x60", [0x1f44] = "\x0e\x2d\x55", - [0x1f45] = "\x0e\x2d\x51", [0x1f56] = "\x0e\x31\x77", - [0x1f57] = "\x0e\x31\x73", [0x1f58] = "\x02\x30\x2f", - [0x1f59] = "\x01\x56\x41", [0x1f5a] = "\x01\x56\x46", - [0x1f5b] = "\x0e\x31\x79", [0x1f5c] = "\x0e\x32\x26", - [0x1f5d] = "\x0e\x31\x76", [0x1f5e] = "\x02\x30\x38", - [0x1f5f] = "\x02\x30\x3e", [0x1f60] = "\x02\x30\x3a", - [0x1f61] = "\x02\x30\x2d", [0x1f62] = "\x02\x30\x30", - [0x1f63] = "\x02\x30\x29", [0x1f64] = "\x02\x30\x2a", - [0x1f65] = "\x01\x56\x4d", [0x1f66] = "\x01\x56\x3e", - [0x1f67] = "\x02\x30\x39", [0x1f68] = "\x02\x30\x42", - [0x1f69] = "\x01\x56\x48", [0x1f6a] = "\x01\x56\x3a", - [0x1f6b] = "\x0e\x31\x6f", [0x1f6c] = "\x01\x56\x43", - [0x1f6d] = "\x02\x30\x31", [0x1f6e] = "\x01\x56\x45", - [0x1f6f] = "\x02\x30\x32", [0x1f70] = "\x02\x30\x3c", - [0x1f71] = "\x0e\x32\x22", [0x1f72] = "\x0e\x32\x25", - [0x1f73] = "\x0e\x31\x72", [0x1f74] = "\x01\x56\x47", - [0x1f75] = "\x02\x30\x4b", [0x1f76] = "\x02\x30\x2b", - [0x1f77] = "\x01\x56\x40", [0x1f78] = "\x01\x56\x3f", - [0x1f79] = "\x01\x56\x4b", [0x1f7a] = "\x02\x30\x28", - [0x1f7b] = "\x02\x30\x49", [0x1f7c] = "\x02\x30\x3d", - [0x1f7d] = "\x02\x30\x4a", [0x1f7e] = "\x02\x30\x44", - [0x1f7f] = "\x02\x30\x36", [0x1f80] = "\x02\x30\x45", - [0x1f81] = "\x0e\x32\x21", [0x1f82] = "\x02\x30\x3f", - [0x1f83] = "\x02\x30\x48", [0x1f84] = "\x02\x30\x46", - [0x1f85] = "\x01\x56\x4c", [0x1f86] = "\x02\x30\x37", - [0x1f87] = "\x01\x56\x3d", [0x1f88] = "\x01\x56\x3c", - [0x1f89] = "\x01\x56\x44", [0x1f8a] = "\x01\x56\x4a", - [0x1f8b] = "\x02\x30\x43", [0x1f8c] = "\x01\x56\x49", - [0x1f8d] = "\x02\x30\x34", [0x1f8e] = "\x01\x5b\x48", - [0x1f8f] = "\x0e\x31\x78", [0x1f90] = "\x02\x30\x4c", - [0x1f91] = "\x02\x30\x33", [0x1f92] = "\x02\x30\x2e", - [0x1f93] = "\x01\x56\x42", [0x1f94] = "\x01\x56\x4e", - [0x1f95] = "\x01\x56\x3b", [0x1f96] = "\x0e\x32\x27", - [0x1f97] = "\x02\x30\x3b", [0x1f98] = "\x02\x30\x40", - [0x1f99] = "\x0e\x31\x7d", [0x1f9a] = "\x0e\x31\x7b", - [0x1f9b] = "\x0e\x31\x7c", [0x1fa5] = "\x0e\x65\x3d", - [0x1faa] = "\x01\x5b\x6a", [0x1fab] = "\x02\x36\x45", - [0x1fac] = "\x02\x36\x49", [0x1fad] = "\x0e\x36\x6f", - [0x1fae] = "\x01\x5b\x57", [0x1faf] = "\x01\x5b\x55", - [0x1fb0] = "\x0e\x36\x7a", [0x1fb1] = "\x0e\x37\x21", - [0x1fb2] = "\x01\x5b\x4c", [0x1fb3] = "\x02\x36\x47", - [0x1fb4] = "\x02\x36\x46", [0x1fb5] = "\x01\x5b\x60", - [0x1fb6] = "\x0e\x3c\x50", [0x1fb7] = "\x02\x36\x4c", - [0x1fb8] = "\x01\x5b\x5a", [0x1fb9] = "\x0e\x36\x72", - [0x1fba] = "\x02\x36\x5e", [0x1fbb] = "\x02\x36\x6a", - [0x1fbc] = "\x01\x5b\x49", [0x1fbd] = "\x02\x36\x5b", - [0x1fbe] = "\x02\x36\x54", [0x1fbf] = "\x01\x5b\x6c", - [0x1fc0] = "\x02\x36\x44", [0x1fc1] = "\x0e\x36\x6a", - [0x1fc2] = "\x02\x36\x60", [0x1fc3] = "\x0e\x36\x6b", - [0x1fc4] = "\x01\x5b\x69", [0x1fc5] = "\x01\x5b\x5d", - [0x1fc6] = "\x01\x5b\x68", [0x1fc7] = "\x01\x5b\x53", - [0x1fc8] = "\x02\x36\x50", [0x1fc9] = "\x02\x36\x62", - [0x1fca] = "\x02\x36\x5a", [0x1fcb] = "\x01\x5b\x54", - [0x1fcc] = "\x01\x5b\x4e", [0x1fcd] = "\x02\x36\x68", - [0x1fce] = "\x0e\x36\x6c", [0x1fcf] = "\x02\x36\x61", - [0x1fd0] = "\x02\x36\x63", [0x1fd1] = "\x01\x5b\x56", - [0x1fd2] = "\x01\x5b\x5e", [0x1fd3] = "\x02\x36\x65", - [0x1fd4] = "\x02\x36\x4e", [0x1fd5] = "\x02\x36\x5f", - [0x1fd6] = "\x02\x36\x53", [0x1fd7] = "\x02\x36\x67", - [0x1fd8] = "\x01\x5b\x63", [0x1fd9] = "\x01\x5b\x4b", - [0x1fda] = "\x01\x5b\x61", [0x1fdb] = "\x02\x36\x58", - [0x1fdc] = "\x02\x36\x56", [0x1fdd] = "\x02\x36\x57", - [0x1fde] = "\x01\x5b\x58", [0x1fdf] = "\x02\x36\x52", - [0x1fe0] = "\x02\x36\x51", [0x1fe1] = "\x01\x5b\x4d", - [0x1fe2] = "\x02\x36\x4b", [0x1fe3] = "\x02\x36\x69", - [0x1fe4] = "\x01\x5b\x4f", [0x1fe5] = "\x02\x36\x55", - [0x1fe6] = "\x01\x5b\x6d", [0x1fe7] = "\x0e\x36\x74", - [0x1fe8] = "\x01\x5b\x67", [0x1fe9] = "\x02\x36\x4a", - [0x1fea] = "\x01\x5b\x64", [0x1feb] = "\x01\x5b\x62", - [0x1fec] = "\x01\x5b\x6b", [0x1fed] = "\x02\x36\x5c", - [0x1fee] = "\x01\x5b\x66", [0x1fef] = "\x02\x30\x35", - [0x1ff0] = "\x02\x36\x5d", [0x1ff1] = "\x01\x5b\x65", - [0x1ff2] = "\x02\x36\x64", [0x1ff3] = "\x01\x5b\x4a", - [0x1ff4] = "\x02\x36\x59", [0x1ff5] = "\x01\x5b\x5c", - [0x1ff6] = "\x02\x36\x4d", [0x1ff7] = "\x01\x5b\x5b", - [0x1ff8] = "\x0e\x36\x7c", [0x1ff9] = "\x01\x5b\x59", - [0x1ffa] = "\x01\x5b\x51", [0x1ffb] = "\x01\x5b\x50", - [0x1ffc] = "\x02\x3d\x2c", [0x1ffd] = "\x02\x36\x66", - [0x1ffe] = "\x0e\x3c\x5d", [0x1fff] = "\x0e\x37\x28", - [0x2000] = "\x02\x36\x4f", [0x2001] = "\x0e\x37\x26", - [0x2002] = "\x0e\x37\x23", [0x2003] = "\x02\x3d\x41", - [0x2004] = "\x0e\x36\x70", [0x2005] = "\x01\x5b\x52", - [0x2006] = "\x0e\x36\x77", [0x2007] = "\x0e\x37\x24", - [0x2008] = "\x0e\x36\x76", [0x2009] = "\x0e\x37\x25", - [0x200a] = "\x0e\x36\x79", [0x200c] = "\x0e\x36\x7d", - [0x200f] = "\x0e\x65\x3e", [0x2012] = "\x0e\x37\x29", - [0x2017] = "\x0e\x37\x27", [0x2018] = "\x0e\x3c\x54", - [0x2019] = "\x01\x60\x47", [0x201a] = "\x01\x5b\x5f", - [0x201b] = "\x01\x60\x35", [0x201c] = "\x02\x3d\x3b", - [0x201d] = "\x01\x60\x43", [0x201e] = "\x0e\x3c\x52", - [0x201f] = "\x02\x3d\x2f", [0x2020] = "\x01\x60\x32", - [0x2021] = "\x01\x60\x2e", [0x2022] = "\x02\x3d\x4d", - [0x2023] = "\x01\x60\x34", [0x2024] = "\x01\x60\x38", - [0x2025] = "\x01\x60\x33", [0x2026] = "\x01\x60\x3c", - [0x2027] = "\x02\x3d\x51", [0x2028] = "\x02\x3d\x48", - [0x2029] = "\x0e\x3c\x6b", [0x202a] = "\x0e\x3c\x6d", - [0x202b] = "\x02\x3d\x36", [0x202c] = "\x01\x60\x41", - [0x202d] = "\x01\x60\x3b", [0x202e] = "\x02\x3d\x42", - [0x202f] = "\x01\x60\x2b", [0x2030] = "\x02\x3d\x4e", - [0x2031] = "\x02\x3d\x47", [0x2032] = "\x01\x60\x2f", - [0x2033] = "\x02\x3d\x3c", [0x2034] = "\x01\x60\x3e", - [0x2035] = "\x02\x3d\x59", [0x2036] = "\x02\x3d\x5a", - [0x2038] = "\x01\x60\x2c", [0x2039] = "\x02\x3d\x4c", - [0x203a] = "\x01\x60\x40", [0x203b] = "\x02\x3d\x40", - [0x203c] = "\x02\x3d\x32", [0x203d] = "\x02\x3d\x33", - [0x203e] = "\x01\x60\x44", [0x203f] = "\x02\x3d\x37", - [0x2040] = "\x02\x3d\x3e", [0x2041] = "\x02\x3d\x38", - [0x2042] = "\x0e\x3c\x5a", [0x2043] = "\x01\x60\x42", - [0x2044] = "\x01\x60\x4a", [0x2045] = "\x02\x3d\x34", - [0x2046] = "\x02\x3d\x2d", [0x2047] = "\x02\x3d\x2e", - [0x2048] = "\x0e\x3c\x56", [0x2049] = "\x02\x3d\x30", - [0x204a] = "\x01\x60\x31", [0x204b] = "\x02\x3d\x3d", - [0x204c] = "\x0e\x3c\x6e", [0x204d] = "\x01\x60\x3f", - [0x204e] = "\x01\x60\x48", [0x204f] = "\x0e\x3c\x58", - [0x2050] = "\x0e\x3c\x69", [0x2051] = "\x02\x3d\x3f", - [0x2052] = "\x02\x3d\x57", [0x2053] = "\x02\x3d\x4f", - [0x2054] = "\x01\x60\x2d", [0x2055] = "\x02\x3d\x55", - [0x2056] = "\x01\x60\x39", [0x2057] = "\x0e\x3c\x66", - [0x2058] = "\x01\x60\x37", [0x2059] = "\x0e\x3c\x64", - [0x205a] = "\x02\x3d\x5b", [0x205b] = "\x01\x60\x36", - [0x205c] = "\x02\x3d\x45", [0x205d] = "\x02\x3d\x39", - [0x205e] = "\x02\x3d\x43", [0x205f] = "\x01\x60\x4d", - [0x2060] = "\x02\x3d\x49", [0x2061] = "\x02\x3d\x46", - [0x2062] = "\x02\x3d\x35", [0x2063] = "\x01\x60\x49", - [0x2064] = "\x02\x3d\x53", [0x2065] = "\x02\x3d\x50", - [0x2066] = "\x02\x3d\x58", [0x2067] = "\x01\x60\x30", - [0x2068] = "\x02\x3d\x44", [0x2069] = "\x01\x60\x4c", - [0x206a] = "\x0e\x3c\x5b", [0x206b] = "\x02\x3d\x4b", - [0x206c] = "\x0e\x42\x3a", [0x206d] = "\x0e\x3c\x60", - [0x206e] = "\x01\x60\x3a", [0x206f] = "\x01\x60\x3d", - [0x2070] = "\x0e\x3c\x5c", [0x2071] = "\x02\x3d\x4a", - [0x2072] = "\x01\x60\x4b", [0x2073] = "\x02\x3d\x3a", - [0x2074] = "\x02\x36\x48", [0x2075] = "\x0e\x3c\x51", - [0x2076] = "\x0e\x3c\x6c", [0x2077] = "\x02\x3d\x54", - [0x2078] = "\x02\x3d\x52", [0x2079] = "\x02\x3d\x56", - [0x207b] = "\x0e\x3c\x62", [0x207c] = "\x0e\x65\x42", - [0x207e] = "\x0e\x3c\x63", [0x2080] = "\x0e\x3c\x68", - [0x2084] = "\x0e\x65\x40", [0x2086] = "\x0e\x63\x3d", - [0x2088] = "\x02\x3d\x31", [0x2089] = "\x01\x60\x46", - [0x208a] = "\x0e\x65\x3f", [0x208b] = "\x0e\x65\x41", - [0x208d] = "\x02\x44\x47", [0x208e] = "\x02\x44\x46", - [0x208f] = "\x02\x44\x2c", [0x2090] = "\x01\x64\x63", - [0x2091] = "\x0e\x42\x30", [0x2092] = "\x02\x44\x45", - [0x2093] = "\x02\x44\x2f", [0x2094] = "\x02\x44\x30", - [0x2096] = "\x01\x64\x6d", [0x2097] = "\x02\x44\x4e", - [0x2098] = "\x01\x64\x68", [0x2099] = "\x02\x44\x44", - [0x209a] = "\x0e\x42\x33", [0x209b] = "\x02\x44\x29", - [0x209c] = "\x01\x64\x6e", [0x209d] = "\x01\x64\x64", - [0x209e] = "\x02\x44\x38", [0x209f] = "\x02\x44\x2e", - [0x20a0] = "\x02\x44\x31", [0x20a1] = "\x02\x44\x49", - [0x20a2] = "\x01\x64\x5e", [0x20a3] = "\x02\x44\x50", - [0x20a4] = "\x02\x44\x48", [0x20a5] = "\x01\x64\x67", - [0x20a6] = "\x02\x44\x3d", [0x20a7] = "\x01\x64\x72", - [0x20a8] = "\x0e\x42\x2e", [0x20a9] = "\x0e\x42\x36", - [0x20aa] = "\x01\x64\x71", [0x20ab] = "\x01\x64\x6b", - [0x20ac] = "\x0e\x42\x40", [0x20ae] = "\x02\x44\x4f", - [0x20af] = "\x01\x64\x5f", [0x20b0] = "\x02\x44\x3b", - [0x20b1] = "\x02\x44\x32", [0x20b2] = "\x02\x44\x3f", - [0x20b3] = "\x02\x44\x4b", [0x20b4] = "\x01\x64\x73", - [0x20b5] = "\x0e\x42\x39", [0x20b6] = "\x01\x64\x61", - [0x20b7] = "\x02\x44\x3a", [0x20b8] = "\x0e\x42\x2d", - [0x20b9] = "\x02\x44\x33", [0x20ba] = "\x01\x64\x6a", - [0x20bb] = "\x0e\x42\x31", [0x20bc] = "\x01\x64\x69", - [0x20bd] = "\x02\x44\x36", [0x20be] = "\x02\x44\x40", - [0x20bf] = "\x02\x44\x4a", [0x20c0] = "\x02\x44\x2d", - [0x20c1] = "\x02\x44\x37", [0x20c2] = "\x01\x64\x62", - [0x20c3] = "\x02\x44\x41", [0x20c4] = "\x01\x64\x6f", - [0x20c5] = "\x01\x64\x66", [0x20c6] = "\x02\x44\x34", - [0x20c7] = "\x01\x64\x65", [0x20c8] = "\x02\x44\x2b", - [0x20c9] = "\x02\x44\x39", [0x20ca] = "\x02\x44\x4d", - [0x20cb] = "\x01\x60\x45", [0x20cc] = "\x01\x69\x57", - [0x20cd] = "\x02\x44\x3c", [0x20ce] = "\x02\x4b\x34", - [0x20cf] = "\x02\x44\x3e", [0x20d0] = "\x02\x44\x4c", - [0x20d1] = "\x01\x64\x6c", [0x20d2] = "\x02\x44\x35", - [0x20d3] = "\x01\x64\x60", [0x20d4] = "\x01\x64\x70", - [0x20d5] = "\x01\x6d\x5a", [0x20d6] = "\x02\x44\x2a", - [0x20d8] = "\x02\x44\x43", [0x20d9] = "\x0e\x42\x44", - [0x20da] = "\x0e\x42\x3e", [0x20db] = "\x0e\x42\x47", - [0x20dc] = "\x02\x44\x42", [0x20dd] = "\x0e\x42\x3d", - [0x20e3] = "\x0e\x42\x45", [0x20e6] = "\x0e\x42\x3f", - [0x20e8] = "\x0e\x42\x3b", [0x20e9] = "\x0e\x42\x46", - [0x20eb] = "\x02\x4b\x50", [0x20ec] = "\x01\x69\x54", - [0x20ed] = "\x02\x4b\x45", [0x20ee] = "\x02\x4b\x4a", - [0x20ef] = "\x01\x69\x49", [0x20f0] = "\x0e\x47\x56", - [0x20f1] = "\x02\x4b\x36", [0x20f2] = "\x01\x69\x56", - [0x20f3] = "\x0e\x47\x57", [0x20f4] = "\x01\x69\x40", - [0x20f5] = "\x02\x4b\x35", [0x20f6] = "\x02\x4b\x56", - [0x20f7] = "\x01\x69\x58", [0x20f8] = "\x02\x4b\x39", - [0x20f9] = "\x02\x4b\x49", [0x20fa] = "\x0e\x47\x65", - [0x20fb] = "\x02\x4b\x3b", [0x20fc] = "\x02\x4b\x59", - [0x20fd] = "\x02\x4b\x55", [0x20fe] = "\x01\x69\x3e", - [0x20ff] = "\x01\x69\x48", [0x2100] = "\x02\x51\x5b", - [0x2101] = "\x01\x69\x55", [0x2102] = "\x01\x69\x46", - [0x2103] = "\x02\x4b\x37", [0x2104] = "\x0e\x47\x63", - [0x2105] = "\x02\x4b\x54", [0x2106] = "\x01\x69\x4a", - [0x2107] = "\x02\x4b\x51", [0x2108] = "\x02\x4b\x5e", - [0x2109] = "\x02\x4b\x3d", [0x210a] = "\x02\x4b\x46", - [0x210b] = "\x0e\x4c\x78", [0x210c] = "\x0e\x47\x5b", - [0x210d] = "\x02\x4b\x5c", [0x210e] = "\x02\x4b\x52", - [0x210f] = "\x01\x69\x45", [0x2110] = "\x0e\x4c\x6a", - [0x2111] = "\x0e\x47\x64", [0x2112] = "\x02\x4b\x44", - [0x2113] = "\x01\x69\x3f", [0x2114] = "\x01\x69\x3d", - [0x2115] = "\x01\x69\x4f", [0x2117] = "\x0e\x47\x5f", - [0x2118] = "\x02\x4b\x42", [0x2119] = "\x02\x4b\x3f", - [0x211a] = "\x02\x4b\x40", [0x211b] = "\x0e\x47\x5a", - [0x211c] = "\x02\x4b\x58", [0x211d] = "\x0e\x47\x5c", - [0x211e] = "\x02\x4b\x5d", [0x211f] = "\x02\x4b\x5b", - [0x2120] = "\x01\x69\x43", [0x2121] = "\x02\x4b\x5f", - [0x2122] = "\x01\x69\x47", [0x2123] = "\x01\x69\x4e", - [0x2125] = "\x02\x4b\x38", [0x2126] = "\x02\x51\x43", - [0x2127] = "\x02\x4b\x41", [0x2128] = "\x0e\x47\x5e", - [0x2129] = "\x01\x69\x41", [0x212a] = "\x01\x69\x53", - [0x212b] = "\x01\x69\x50", [0x212c] = "\x01\x69\x44", - [0x212d] = "\x02\x4b\x4b", [0x212e] = "\x02\x4b\x3c", - [0x212f] = "\x01\x69\x51", [0x2130] = "\x02\x4b\x4d", - [0x2131] = "\x01\x69\x4b", [0x2132] = "\x01\x69\x4d", - [0x2133] = "\x01\x69\x3c", [0x2134] = "\x0e\x47\x5d", - [0x2135] = "\x02\x4b\x4f", [0x2136] = "\x02\x4b\x47", - [0x2137] = "\x02\x4b\x3a", [0x2138] = "\x01\x69\x4c", - [0x2139] = "\x02\x4b\x57", [0x213a] = "\x02\x4b\x5a", - [0x213b] = "\x02\x4b\x43", [0x213c] = "\x02\x4b\x4e", - [0x213d] = "\x0e\x4c\x74", [0x213e] = "\x01\x69\x42", - [0x213f] = "\x01\x6d\x49", [0x2140] = "\x02\x4b\x4c", - [0x2141] = "\x02\x51\x42", [0x2142] = "\x0e\x47\x62", - [0x2143] = "\x02\x4b\x53", [0x2144] = "\x0e\x47\x61", - [0x2148] = "\x0e\x65\x44", [0x2149] = "\x0e\x65\x45", - [0x214a] = "\x0e\x47\x66", [0x214c] = "\x0e\x65\x43", - [0x214e] = "\x02\x4b\x3e", [0x214f] = "\x02\x51\x4c", - [0x2150] = "\x02\x51\x56", [0x2151] = "\x01\x6d\x4c", - [0x2152] = "\x02\x51\x55", [0x2153] = "\x02\x51\x61", - [0x2154] = "\x01\x6d\x4e", [0x2155] = "\x02\x51\x53", - [0x2157] = "\x02\x51\x57", [0x2158] = "\x01\x6d\x59", - [0x2159] = "\x0e\x4c\x7d", [0x215a] = "\x02\x51\x4e", - [0x215b] = "\x01\x6d\x51", [0x215c] = "\x0e\x4c\x73", - [0x215d] = "\x02\x51\x5a", [0x215e] = "\x02\x57\x7b", - [0x215f] = "\x01\x6d\x5d", [0x2160] = "\x01\x6d\x5c", - [0x2161] = "\x02\x51\x5c", [0x2162] = "\x02\x51\x4b", - [0x2163] = "\x02\x51\x66", [0x2164] = "\x01\x6d\x57", - [0x2165] = "\x0e\x4c\x6b", [0x2166] = "\x01\x6d\x4d", - [0x2167] = "\x02\x51\x5f", [0x2169] = "\x02\x51\x63", - [0x216a] = "\x02\x51\x68", [0x216b] = "\x02\x51\x5d", - [0x216c] = "\x02\x51\x51", [0x216d] = "\x01\x6d\x50", - [0x216e] = "\x01\x6d\x53", [0x216f] = "\x01\x6d\x5b", - [0x2170] = "\x01\x6d\x56", [0x2171] = "\x0e\x4c\x75", - [0x2172] = "\x02\x51\x54", [0x2173] = "\x02\x4b\x48", - [0x2174] = "\x0e\x4c\x7e", [0x2175] = "\x0e\x4c\x6c", - [0x2176] = "\x02\x51\x50", [0x2177] = "\x02\x51\x67", - [0x2178] = "\x01\x6d\x52", [0x2179] = "\x0e\x4c\x79", - [0x217a] = "\x01\x6d\x55", [0x217b] = "\x02\x51\x69", - [0x217c] = "\x01\x6d\x4a", [0x217d] = "\x02\x51\x5e", - [0x217e] = "\x02\x51\x44", [0x217f] = "\x02\x51\x64", - [0x2180] = "\x01\x74\x2a", [0x2181] = "\x0e\x4c\x7a", - [0x2182] = "\x02\x51\x52", [0x2184] = "\x01\x6d\x4b", - [0x2185] = "\x02\x51\x4d", [0x2186] = "\x01\x6d\x4f", - [0x2187] = "\x02\x51\x45", [0x2188] = "\x01\x69\x52", - [0x2189] = "\x02\x51\x49", [0x218a] = "\x0e\x63\x63", - [0x218b] = "\x02\x51\x62", [0x218c] = "\x02\x51\x4a", - [0x218d] = "\x02\x51\x48", [0x218e] = "\x01\x6d\x54", - [0x218f] = "\x0e\x4c\x7b", [0x2190] = "\x02\x51\x60", - [0x2191] = "\x0e\x4c\x77", [0x2192] = "\x02\x51\x47", - [0x2193] = "\x02\x51\x59", [0x2194] = "\x02\x51\x58", - [0x2195] = "\x02\x51\x65", [0x2196] = "\x02\x51\x4f", - [0x2197] = "\x01\x6d\x58", [0x2199] = "\x0e\x65\x47", - [0x219d] = "\x0e\x65\x46", [0x219e] = "\x02\x57\x7e", - [0x219f] = "\x0e\x51\x56", [0x21a0] = "\x01\x71\x33", - [0x21a1] = "\x01\x71\x29", [0x21a2] = "\x02\x58\x2c", - [0x21a3] = "\x02\x57\x76", [0x21a4] = "\x01\x71\x2b", - [0x21a5] = "\x02\x58\x24", [0x21a6] = "\x01\x71\x32", - [0x21a7] = "\x01\x71\x2d", [0x21a8] = "\x02\x58\x22", - [0x21a9] = "\x02\x5d\x3b", [0x21aa] = "\x02\x58\x28", - [0x21ab] = "\x02\x58\x2e", [0x21ac] = "\x02\x58\x27", - [0x21ad] = "\x02\x57\x74", [0x21ae] = "\x02\x58\x25", - [0x21af] = "\x02\x58\x30", [0x21b0] = "\x02\x58\x32", - [0x21b1] = "\x01\x71\x28", [0x21b2] = "\x02\x58\x31", - [0x21b3] = "\x01\x71\x2e", [0x21b4] = "\x01\x71\x34", - [0x21b5] = "\x0e\x51\x54", [0x21b6] = "\x01\x71\x31", - [0x21b7] = "\x0e\x51\x58", [0x21b8] = "\x02\x58\x2b", - [0x21b9] = "\x01\x71\x30", [0x21ba] = "\x02\x58\x26", - [0x21bb] = "\x0e\x51\x4d", [0x21bc] = "\x02\x57\x78", - [0x21bd] = "\x02\x57\x7d", [0x21be] = "\x0e\x51\x50", - [0x21bf] = "\x02\x58\x2a", [0x21c0] = "\x01\x71\x2f", - [0x21c1] = "\x01\x71\x2c", [0x21c2] = "\x01\x71\x27", - [0x21c3] = "\x01\x71\x2a", [0x21c4] = "\x02\x57\x7c", - [0x21c6] = "\x02\x51\x46", [0x21c7] = "\x02\x57\x77", - [0x21c8] = "\x02\x57\x7a", [0x21c9] = "\x02\x58\x2d", - [0x21ca] = "\x02\x58\x21", [0x21cb] = "\x02\x57\x75", - [0x21cc] = "\x02\x5d\x3a", [0x21cd] = "\x02\x58\x2f", - [0x21ce] = "\x02\x57\x79", [0x21cf] = "\x02\x58\x29", - [0x21d0] = "\x0e\x4c\x71", [0x21d3] = "\x0e\x51\x55", - [0x21d4] = "\x02\x5d\x3d", [0x21d5] = "\x01\x74\x2e", - [0x21d6] = "\x0e\x55\x30", [0x21d7] = "\x0e\x55\x2f", - [0x21d8] = "\x01\x74\x22", [0x21d9] = "\x0e\x55\x35", - [0x21da] = "\x0e\x55\x36", [0x21db] = "\x01\x74\x26", - [0x21dc] = "\x02\x5d\x3f", [0x21dd] = "\x02\x5d\x45", - [0x21de] = "\x02\x5d\x43", [0x21df] = "\x01\x74\x24", - [0x21e0] = "\x01\x74\x25", [0x21e1] = "\x01\x74\x2c", - [0x21e2] = "\x02\x5d\x46", [0x21e3] = "\x02\x5d\x3e", - [0x21e4] = "\x01\x74\x27", [0x21e5] = "\x0e\x55\x31", - [0x21e6] = "\x02\x5d\x42", [0x21e7] = "\x02\x5d\x41", - [0x21e8] = "\x02\x5d\x47", [0x21e9] = "\x01\x74\x2d", - [0x21ea] = "\x0e\x55\x37", [0x21eb] = "\x01\x74\x28", - [0x21ec] = "\x01\x74\x2b", [0x21ed] = "\x02\x5d\x40", - [0x21ee] = "\x01\x74\x2f", [0x21ef] = "\x01\x74\x29", - [0x21f0] = "\x01\x74\x30", [0x21f1] = "\x01\x74\x23", - [0x21f2] = "\x02\x5d\x44", [0x21f3] = "\x0e\x5a\x55", - [0x21f4] = "\x02\x5d\x3c", [0x21f5] = "\x0e\x51\x59", - [0x21f6] = "\x0e\x55\x39", [0x21f7] = "\x02\x62\x25", - [0x21f8] = "\x0e\x65\x48", [0x21fa] = "\x01\x76\x5d", - [0x21fb] = "\x02\x62\x22", [0x21fc] = "\x02\x62\x24", - [0x21fd] = "\x0e\x58\x28", [0x21fe] = "\x01\x76\x5b", - [0x21ff] = "\x02\x61\x7e", [0x2200] = "\x02\x62\x21", - [0x2201] = "\x02\x61\x7a", [0x2202] = "\x0e\x58\x2a", - [0x2203] = "\x0e\x58\x27", [0x2204] = "\x02\x58\x23", - [0x2205] = "\x02\x61\x7b", [0x2206] = "\x01\x76\x5c", - [0x2207] = "\x02\x61\x77", [0x2208] = "\x0e\x58\x26", - [0x2209] = "\x01\x76\x59", [0x220a] = "\x02\x62\x26", - [0x220b] = "\x01\x76\x5a", [0x220c] = "\x02\x61\x78", - [0x220d] = "\x02\x61\x79", [0x220e] = "\x02\x61\x7d", - [0x220f] = "\x01\x76\x5f", [0x2210] = "\x0e\x58\x29", - [0x2211] = "\x01\x76\x5e", [0x2213] = "\x0e\x58\x2b", - [0x2214] = "\x02\x61\x7c", [0x2215] = "\x01\x78\x45", - [0x2216] = "\x02\x65\x6a", [0x2217] = "\x02\x65\x70", - [0x2218] = "\x01\x78\x46", [0x2219] = "\x02\x65\x67", - [0x221a] = "\x01\x78\x43", [0x221b] = "\x01\x78\x40", - [0x221c] = "\x02\x65\x72", [0x221d] = "\x01\x78\x44", - [0x221e] = "\x0e\x5a\x52", [0x221f] = "\x01\x78\x41", - [0x2220] = "\x02\x65\x69", [0x2221] = "\x02\x65\x6c", - [0x2222] = "\x02\x65\x6d", [0x2223] = "\x02\x65\x6e", - [0x2224] = "\x02\x65\x71", [0x2225] = "\x0e\x5a\x54", - [0x2226] = "\x02\x62\x23", [0x2227] = "\x02\x65\x68", - [0x2228] = "\x01\x78\x42", [0x2229] = "\x02\x65\x6f", - [0x222a] = "\x02\x69\x34", [0x222b] = "\x02\x65\x6b", - [0x222c] = "\x0e\x5a\x53", [0x222d] = "\x0e\x65\x4a", - [0x222e] = "\x0e\x65\x49", [0x222f] = "\x02\x69\x2b", - [0x2230] = "\x01\x79\x75", [0x2231] = "\x02\x69\x2e", - [0x2232] = "\x01\x79\x76", [0x2233] = "\x02\x69\x37", - [0x2234] = "\x02\x69\x2d", [0x2235] = "\x02\x69\x2a", - [0x2236] = "\x0e\x5c\x51", [0x2237] = "\x02\x69\x2c", - [0x2238] = "\x02\x69\x30", [0x2239] = "\x02\x69\x33", - [0x223a] = "\x02\x69\x32", [0x223b] = "\x02\x69\x36", - [0x223c] = "\x02\x69\x29", [0x223d] = "\x0e\x5c\x4f", - [0x223e] = "\x01\x79\x74", [0x223f] = "\x02\x69\x31", - [0x2240] = "\x02\x69\x35", [0x2241] = "\x02\x69\x38", - [0x2242] = "\x02\x69\x2f", [0x2243] = "\x02\x6b\x61", - [0x2244] = "\x02\x6b\x62", [0x2245] = "\x02\x6b\x66", - [0x2246] = "\x02\x6b\x67", [0x2247] = "\x0e\x5e\x3c", - [0x2248] = "\x02\x6b\x64", [0x2249] = "\x02\x6b\x65", - [0x224a] = "\x02\x6b\x63", [0x224b] = "\x0e\x5e\x3a", - [0x224c] = "\x01\x7a\x74", [0x224d] = "\x0e\x5e\x3b", - [0x2251] = "\x01\x7b\x64", [0x2252] = "\x02\x6d\x59", - [0x2253] = "\x0e\x60\x36", [0x2254] = "\x0e\x5f\x52", - [0x2255] = "\x02\x6d\x56", [0x2256] = "\x02\x6d\x57", - [0x2257] = "\x02\x6d\x58", [0x2258] = "\x01\x7b\x65", - [0x2259] = "\x0e\x60\x37", [0x225a] = "\x02\x6f\x34", - [0x225b] = "\x02\x6f\x33", [0x225c] = "\x0e\x65\x4b", - [0x225d] = "\x02\x70\x3d", [0x225e] = "\x01\x7c\x60", - [0x225f] = "\x02\x70\x3b", [0x2260] = "\x02\x70\x3e", - [0x2261] = "\x02\x70\x3c", [0x2262] = "\x02\x71\x25", - [0x2263] = "\x01\x7d\x24", [0x2264] = "\x01\x7d\x32", - [0x2265] = "\x02\x71\x71", [0x2266] = "\x02\x71\x5b", - [0x2267] = "\x0e\x61\x79", [0x2268] = "\x02\x71\x70", - [0x2269] = "\x02\x72\x3e", [0x226a] = "\x02\x72\x3f", - [0x226b] = "\x01\x45\x56", [0x226e] = "\x0e\x24\x28", - [0x226f] = "\x0e\x24\x26", [0x2270] = "\x01\x48\x48", - [0x2271] = "\x02\x22\x61", [0x2272] = "\x0e\x24\x27", - [0x2273] = "\x0e\x24\x2b", [0x2274] = "\x02\x24\x5e", - [0x2275] = "\x0e\x26\x62", [0x2276] = "\x01\x4b\x22", - [0x2277] = "\x0e\x26\x5f", [0x2278] = "\x01\x4b\x25", - [0x2279] = "\x0e\x26\x5e", [0x227a] = "\x02\x24\x5f", - [0x227b] = "\x0e\x26\x63", [0x227c] = "\x01\x4b\x23", - [0x227d] = "\x01\x4b\x24", [0x227e] = "\x0e\x26\x60", - [0x2281] = "\x0e\x29\x77", [0x2282] = "\x02\x27\x78", - [0x2283] = "\x02\x27\x7a", [0x2284] = "\x02\x27\x75", - [0x2285] = "\x02\x27\x72", [0x2286] = "\x02\x27\x74", - [0x2287] = "\x0e\x29\x74", [0x2288] = "\x0e\x29\x70", - [0x2289] = "\x0e\x29\x75", [0x228a] = "\x01\x4e\x65", - [0x228b] = "\x0e\x29\x6f", [0x228c] = "\x0e\x29\x79", - [0x228d] = "\x0e\x29\x76", [0x228e] = "\x01\x4e\x63", - [0x228f] = "\x0e\x29\x72", [0x2290] = "\x0e\x29\x71", - [0x2291] = "\x02\x27\x76", [0x2292] = "\x01\x4e\x64", - [0x2293] = "\x02\x27\x73", [0x2294] = "\x02\x27\x70", - [0x2295] = "\x01\x4e\x62", [0x2296] = "\x02\x27\x77", - [0x2298] = "\x02\x27\x71", [0x2299] = "\x01\x4e\x66", - [0x229a] = "\x02\x27\x79", [0x229f] = "\x02\x2b\x6f", - [0x22a0] = "\x0e\x2d\x5e", [0x22a1] = "\x02\x2b\x73", - [0x22a2] = "\x0e\x2d\x5c", [0x22a3] = "\x0e\x2d\x5a", - [0x22a4] = "\x01\x52\x3a", [0x22a5] = "\x0e\x2d\x58", - [0x22a6] = "\x0e\x62\x6a", [0x22a7] = "\x0e\x2d\x65", - [0x22a8] = "\x0e\x2d\x62", [0x22a9] = "\x02\x2b\x76", - [0x22aa] = "\x0e\x2d\x5f", [0x22ab] = "\x01\x52\x32", - [0x22ac] = "\x01\x52\x35", [0x22ad] = "\x01\x52\x37", - [0x22ae] = "\x01\x52\x39", [0x22af] = "\x01\x52\x36", - [0x22b0] = "\x02\x2b\x72", [0x22b1] = "\x02\x2b\x71", - [0x22b2] = "\x0e\x2d\x64", [0x22b3] = "\x01\x52\x34", - [0x22b4] = "\x02\x2b\x74", [0x22b5] = "\x02\x2b\x75", - [0x22b6] = "\x0e\x2d\x63", [0x22b7] = "\x02\x2b\x6e", - [0x22b8] = "\x01\x52\x38", [0x22b9] = "\x0e\x2d\x68", - [0x22ba] = "\x01\x52\x33", [0x22bb] = "\x0e\x2d\x5d", - [0x22be] = "\x02\x2b\x70", [0x22bf] = "\x0e\x65\x4d", - [0x22c4] = "\x0e\x32\x28", [0x22c5] = "\x02\x30\x5a", - [0x22c6] = "\x02\x30\x5b", [0x22c7] = "\x02\x30\x5c", - [0x22c8] = "\x01\x56\x53", [0x22c9] = "\x0e\x62\x79", - [0x22ca] = "\x01\x56\x4f", [0x22cb] = "\x02\x30\x51", - [0x22cc] = "\x0e\x32\x2a", [0x22cd] = "\x02\x30\x59", - [0x22ce] = "\x02\x30\x5e", [0x22cf] = "\x01\x56\x54", - [0x22d0] = "\x0e\x32\x2b", [0x22d1] = "\x02\x30\x4f", - [0x22d2] = "\x02\x30\x55", [0x22d3] = "\x02\x30\x4e", - [0x22d4] = "\x02\x30\x58", [0x22d5] = "\x0e\x32\x31", - [0x22d6] = "\x0e\x32\x2f", [0x22d7] = "\x02\x30\x54", - [0x22d8] = "\x01\x56\x50", [0x22d9] = "\x01\x56\x52", - [0x22da] = "\x02\x30\x5d", [0x22db] = "\x0e\x32\x29", - [0x22dc] = "\x02\x30\x4d", [0x22dd] = "\x02\x30\x50", - [0x22de] = "\x02\x30\x56", [0x22df] = "\x0e\x32\x2d", - [0x22e0] = "\x02\x30\x57", [0x22e1] = "\x02\x30\x5f", - [0x22e2] = "\x02\x30\x53", [0x22e3] = "\x0e\x32\x2c", - [0x22e4] = "\x01\x56\x51", [0x22e5] = "\x0e\x65\x4f", - [0x22ea] = "\x0e\x65\x4e", [0x22ee] = "\x0e\x32\x30", - [0x22ef] = "\x01\x5b\x72", [0x22f0] = "\x02\x36\x71", - [0x22f1] = "\x0e\x37\x30", [0x22f2] = "\x0e\x37\x32", - [0x22f3] = "\x02\x36\x73", [0x22f4] = "\x02\x36\x6f", - [0x22f5] = "\x0e\x37\x2f", [0x22f6] = "\x02\x36\x7b", - [0x22f7] = "\x02\x36\x6d", [0x22f8] = "\x02\x36\x7a", - [0x22f9] = "\x01\x5b\x6e", [0x22fa] = "\x02\x36\x6b", - [0x22fb] = "\x02\x3d\x5f", [0x22fc] = "\x02\x36\x75", - [0x22fd] = "\x01\x5b\x71", [0x22fe] = "\x0e\x37\x35", - [0x22ff] = "\x02\x36\x76", [0x2300] = "\x02\x36\x79", - [0x2301] = "\x0e\x37\x2e", [0x2302] = "\x02\x36\x7d", - [0x2303] = "\x0e\x37\x2c", [0x2304] = "\x02\x36\x72", - [0x2306] = "\x02\x36\x77", [0x2307] = "\x0e\x37\x2d", - [0x2308] = "\x0e\x37\x31", [0x2309] = "\x01\x5b\x6f", - [0x230a] = "\x01\x5b\x70", [0x230b] = "\x02\x36\x7c", - [0x230c] = "\x02\x36\x70", [0x230d] = "\x02\x36\x6c", - [0x230e] = "\x02\x36\x7e", [0x230f] = "\x0e\x37\x33", - [0x2310] = "\x02\x36\x74", [0x2311] = "\x0e\x65\x50", - [0x2312] = "\x0e\x65\x51", [0x2313] = "\x02\x36\x78", - [0x2317] = "\x02\x36\x6e", [0x2319] = "\x01\x60\x4e", - [0x231a] = "\x01\x60\x4f", [0x231b] = "\x02\x3d\x69", - [0x231c] = "\x01\x60\x55", [0x231d] = "\x0e\x3c\x74", - [0x231e] = "\x02\x3d\x5d", [0x231f] = "\x02\x3d\x66", - [0x2320] = "\x02\x3d\x5c", [0x2321] = "\x01\x60\x52", - [0x2322] = "\x02\x3d\x64", [0x2323] = "\x02\x3d\x62", - [0x2324] = "\x0e\x3c\x7d", [0x2325] = "\x02\x3d\x63", - [0x2326] = "\x01\x60\x50", [0x2327] = "\x0e\x3c\x7c", - [0x2328] = "\x02\x3d\x67", [0x232a] = "\x0e\x3c\x6f", - [0x232b] = "\x0e\x3c\x7a", [0x232c] = "\x0e\x3c\x72", - [0x232d] = "\x0e\x3d\x21", [0x232e] = "\x02\x3d\x60", - [0x232f] = "\x02\x3d\x5e", [0x2330] = "\x01\x60\x51", - [0x2331] = "\x02\x3d\x61", [0x2332] = "\x02\x3d\x65", - [0x2333] = "\x0e\x3c\x7b", [0x2334] = "\x0e\x3c\x79", - [0x2335] = "\x0e\x3c\x71", [0x2336] = "\x01\x60\x53", - [0x2337] = "\x0e\x3c\x73", [0x2338] = "\x0e\x3c\x77", - [0x2339] = "\x0e\x65\x53", [0x233a] = "\x02\x3d\x68", - [0x233b] = "\x0e\x65\x54", [0x233d] = "\x0e\x65\x55", - [0x233f] = "\x0e\x65\x52", [0x2341] = "\x02\x44\x56", - [0x2342] = "\x02\x44\x5d", [0x2343] = "\x02\x44\x5f", - [0x2344] = "\x02\x44\x65", [0x2345] = "\x0e\x42\x57", - [0x2346] = "\x01\x65\x22", [0x2347] = "\x02\x44\x51", - [0x2348] = "\x0e\x42\x4c", [0x2349] = "\x01\x64\x78", - [0x234a] = "\x0e\x42\x4e", [0x234b] = "\x02\x44\x60", - [0x234c] = "\x01\x64\x7d", [0x234d] = "\x02\x44\x66", - [0x234e] = "\x01\x64\x74", [0x234f] = "\x0e\x42\x51", - [0x2350] = "\x02\x44\x63", [0x2351] = "\x0e\x42\x58", - [0x2352] = "\x02\x44\x53", [0x2353] = "\x02\x44\x64", - [0x2354] = "\x02\x44\x52", [0x2356] = "\x01\x65\x24", - [0x2357] = "\x0e\x42\x52", [0x2358] = "\x02\x44\x5e", - [0x2359] = "\x01\x64\x75", [0x235a] = "\x02\x44\x67", - [0x235b] = "\x0e\x48\x3c", [0x235c] = "\x01\x64\x7a", - [0x235d] = "\x02\x44\x57", [0x235e] = "\x01\x65\x21", - [0x235f] = "\x02\x44\x62", [0x2360] = "\x02\x44\x55", - [0x2361] = "\x02\x44\x5c", [0x2362] = "\x02\x44\x58", - [0x2363] = "\x02\x44\x54", [0x2364] = "\x01\x64\x77", - [0x2365] = "\x01\x64\x7e", [0x2366] = "\x01\x64\x7c", - [0x2367] = "\x01\x64\x79", [0x2368] = "\x01\x65\x23", - [0x2369] = "\x01\x64\x76", [0x236a] = "\x02\x44\x5b", - [0x236b] = "\x0e\x42\x4f", [0x236c] = "\x01\x64\x7b", - [0x236d] = "\x0e\x42\x59", [0x236e] = "\x01\x60\x54", - [0x236f] = "\x0e\x42\x49", [0x2370] = "\x02\x44\x61", - [0x2371] = "\x0e\x65\x59", [0x2372] = "\x02\x44\x59", - [0x2374] = "\x0e\x42\x53", [0x2375] = "\x0e\x65\x57", - [0x2376] = "\x0e\x65\x58", [0x2377] = "\x0e\x65\x56", - [0x2378] = "\x02\x44\x5a", [0x237b] = "\x02\x4b\x67", - [0x237c] = "\x0e\x47\x6f", [0x237d] = "\x01\x69\x5b", - [0x237e] = "\x0e\x47\x6e", [0x237f] = "\x0e\x47\x6c", - [0x2380] = "\x02\x4b\x63", [0x2381] = "\x02\x4b\x69", - [0x2382] = "\x02\x4b\x65", [0x2383] = "\x0e\x47\x70", - [0x2384] = "\x01\x69\x5d", [0x2385] = "\x02\x4b\x64", - [0x2386] = "\x02\x4b\x68", [0x2387] = "\x02\x4b\x60", - [0x2388] = "\x0e\x47\x72", [0x2389] = "\x02\x4b\x62", - [0x238a] = "\x01\x69\x5c", [0x238b] = "\x0e\x47\x6a", - [0x238c] = "\x0e\x47\x6d", [0x238d] = "\x0e\x47\x6b", - [0x238e] = "\x0e\x47\x68", [0x238f] = "\x02\x4b\x66", - [0x2390] = "\x02\x4b\x61", [0x2391] = "\x0e\x47\x67", - [0x2392] = "\x01\x69\x5e", [0x2393] = "\x0e\x65\x5b", - [0x2394] = "\x01\x69\x59", [0x2396] = "\x0e\x65\x5a", - [0x2397] = "\x02\x4b\x6a", [0x2399] = "\x01\x69\x5a", - [0x239a] = "\x02\x51\x6f", [0x239b] = "\x02\x51\x6c", - [0x239c] = "\x02\x51\x78", [0x239d] = "\x02\x51\x72", - [0x239e] = "\x02\x51\x74", [0x239f] = "\x01\x6d\x5e", - [0x23a0] = "\x02\x51\x6e", [0x23a1] = "\x02\x51\x76", - [0x23a2] = "\x0e\x4d\x2a", [0x23a3] = "\x0e\x4d\x24", - [0x23a4] = "\x02\x51\x75", [0x23a5] = "\x02\x51\x73", - [0x23a6] = "\x0e\x4d\x29", [0x23a7] = "\x02\x51\x79", - [0x23a8] = "\x01\x6d\x61", [0x23a9] = "\x02\x51\x70", - [0x23aa] = "\x02\x51\x77", [0x23ab] = "\x0e\x4d\x28", - [0x23ac] = "\x01\x6d\x5f", [0x23ad] = "\x0e\x4d\x25", - [0x23ae] = "\x0e\x4d\x22", [0x23af] = "\x02\x51\x6b", - [0x23b0] = "\x02\x51\x6d", [0x23b1] = "\x01\x6d\x60", - [0x23b2] = "\x02\x51\x6a", [0x23b3] = "\x02\x51\x7a", - [0x23b4] = "\x0e\x65\x5c", [0x23b5] = "\x02\x51\x71", - [0x23b6] = "\x0e\x51\x62", [0x23b7] = "\x0e\x51\x5a", - [0x23b8] = "\x02\x58\x36", [0x23b9] = "\x01\x71\x3b", - [0x23ba] = "\x0e\x51\x60", [0x23bb] = "\x0e\x51\x5c", - [0x23bc] = "\x02\x58\x41", [0x23bd] = "\x02\x58\x3f", - [0x23be] = "\x01\x71\x35", [0x23bf] = "\x02\x58\x35", - [0x23c0] = "\x02\x58\x38", [0x23c1] = "\x02\x58\x39", - [0x23c2] = "\x02\x58\x34", [0x23c3] = "\x01\x71\x3f", - [0x23c4] = "\x01\x71\x40", [0x23c5] = "\x02\x58\x33", - [0x23c6] = "\x02\x58\x42", [0x23c7] = "\x02\x58\x3d", - [0x23c8] = "\x01\x71\x39", [0x23c9] = "\x01\x71\x36", - [0x23ca] = "\x02\x58\x3c", [0x23cb] = "\x02\x58\x3a", - [0x23cc] = "\x0e\x51\x63", [0x23cd] = "\x0e\x63\x74", - [0x23ce] = "\x01\x71\x3c", [0x23cf] = "\x02\x58\x3e", - [0x23d0] = "\x01\x71\x37", [0x23d1] = "\x0e\x51\x5e", - [0x23d2] = "\x01\x71\x38", [0x23d3] = "\x0e\x51\x66", - [0x23d4] = "\x02\x58\x3b", [0x23d5] = "\x01\x71\x3a", - [0x23d6] = "\x02\x58\x37", [0x23d8] = "\x02\x58\x40", - [0x23d9] = "\x01\x71\x3d", [0x23da] = "\x02\x58\x43", - [0x23db] = "\x02\x58\x44", [0x23dc] = "\x01\x71\x3e", - [0x23dd] = "\x0e\x65\x5d", [0x23de] = "\x0e\x65\x5e", - [0x23df] = "\x01\x74\x32", [0x23e0] = "\x01\x74\x39", - [0x23e1] = "\x02\x5d\x48", [0x23e2] = "\x02\x5d\x4e", - [0x23e3] = "\x0e\x55\x3c", [0x23e4] = "\x02\x5d\x4c", - [0x23e5] = "\x01\x74\x35", [0x23e6] = "\x01\x74\x34", - [0x23e7] = "\x01\x74\x31", [0x23e8] = "\x02\x5d\x4a", - [0x23e9] = "\x0e\x55\x3e", [0x23ea] = "\x0e\x55\x43", - [0x23eb] = "\x0e\x55\x40", [0x23ec] = "\x01\x74\x37", - [0x23ed] = "\x01\x74\x36", [0x23ee] = "\x01\x74\x33", - [0x23ef] = "\x0e\x55\x41", [0x23f0] = "\x02\x5d\x4d", - [0x23f1] = "\x02\x5d\x49", [0x23f2] = "\x02\x5d\x4b", - [0x23f3] = "\x0e\x55\x42", [0x23f4] = "\x01\x74\x38", - [0x23f8] = "\x01\x76\x63", [0x23f9] = "\x02\x62\x29", - [0x23fa] = "\x0e\x58\x2d", [0x23fb] = "\x01\x76\x60", - [0x23fc] = "\x01\x76\x61", [0x23fd] = "\x02\x62\x2b", - [0x23fe] = "\x01\x76\x62", [0x23ff] = "\x02\x62\x28", - [0x2400] = "\x0e\x58\x2e", [0x2401] = "\x02\x62\x27", - [0x2402] = "\x02\x65\x76", [0x2403] = "\x02\x62\x2a", - [0x2404] = "\x0e\x5a\x56", [0x2405] = "\x02\x65\x77", - [0x2406] = "\x01\x78\x47", [0x2407] = "\x02\x65\x75", - [0x2408] = "\x0e\x5a\x57", [0x240a] = "\x02\x65\x74", - [0x240b] = "\x0e\x5c\x59", [0x240c] = "\x02\x65\x73", - [0x240d] = "\x01\x78\x48", [0x240e] = "\x0e\x65\x5f", - [0x240f] = "\x0e\x5c\x56", [0x2410] = "\x01\x79\x77", - [0x2411] = "\x0e\x5c\x58", [0x2412] = "\x0e\x5c\x55", - [0x2413] = "\x02\x69\x39", [0x2414] = "\x02\x69\x3a", - [0x2415] = "\x0e\x5a\x58", [0x2416] = "\x0e\x5c\x53", - [0x2417] = "\x0e\x5c\x57", [0x2418] = "\x0e\x65\x61", - [0x2419] = "\x02\x6b\x6a", [0x241a] = "\x02\x6b\x69", - [0x241b] = "\x01\x7a\x75", [0x241c] = "\x0e\x5f\x53", - [0x241d] = "\x02\x6b\x68", [0x241e] = "\x02\x6d\x5a", - [0x241f] = "\x02\x6d\x5b", [0x2420] = "\x0e\x5f\x54", - [0x2421] = "\x0e\x60\x39", [0x2422] = "\x02\x6f\x35", - [0x2423] = "\x02\x70\x3f", [0x2424] = "\x0e\x61\x43", - [0x2425] = "\x0e\x61\x42", [0x2426] = "\x02\x71\x26", - [0x2427] = "\x02\x72\x2c", [0x2428] = "\x01\x7d\x46", - [0x2429] = "\x02\x72\x40", [0x242a] = "\x01\x45\x57", - [0x242c] = "\x01\x4e\x67", [0x242d] = "\x01\x4e\x68", - [0x242e] = "\x0e\x2d\x69", [0x2430] = "\x01\x52\x3b", - [0x2432] = "\x0e\x3d\x22", [0x2435] = "\x01\x74\x3a", - [0x2436] = "\x01\x45\x58", [0x2438] = "\x01\x4e\x69", - [0x2439] = "\x01\x56\x55", [0x243a] = "\x01\x65\x25", - [0x243b] = "\x01\x45\x59", [0x243c] = "\x0e\x2d\x6b", - [0x243d] = "\x01\x5b\x73", [0x243e] = "\x01\x69\x5f", - [0x243f] = "\x02\x21\x42", [0x2440] = "\x0e\x29\x7c", - [0x2441] = "\x02\x2b\x77", [0x2442] = "\x02\x30\x60", - [0x2444] = "\x02\x4b\x6b", [0x2446] = "\x01\x74\x3b", - [0x2447] = "\x01\x45\x5a", [0x2448] = "\x01\x4e\x6a", - [0x2449] = "\x02\x2b\x78", [0x244a] = "\x02\x2b\x79", - [0x244b] = "\x02\x3d\x6a", [0x244c] = "\x01\x60\x56", - [0x244e] = "\x0e\x42\x5d", [0x244f] = "\x02\x44\x68", - [0x2450] = "\x0e\x42\x5c", [0x2451] = "\x0e\x42\x5b", - [0x2452] = "\x01\x65\x26", [0x2453] = "\x02\x4b\x6c", - [0x2455] = "\x0e\x4d\x2e", [0x2456] = "\x01\x6d\x62", - [0x2457] = "\x0e\x4d\x2d", [0x2458] = "\x01\x78\x49", - [0x2459] = "\x01\x45\x5b", [0x245a] = "\x02\x3d\x6b", - [0x245b] = "\x01\x45\x5c", [0x245d] = "\x01\x48\x4a", - [0x245e] = "\x02\x22\x62", [0x245f] = "\x01\x48\x49", - [0x2460] = "\x01\x4b\x28", [0x2461] = "\x01\x4b\x27", - [0x2462] = "\x01\x4b\x26", [0x2463] = "\x02\x24\x60", - [0x2464] = "\x0e\x26\x64", [0x2465] = "\x0e\x2a\x21", - [0x2466] = "\x0e\x2a\x22", [0x2467] = "\x01\x4e\x6b", - [0x2468] = "\x0e\x2a\x23", [0x2469] = "\x01\x4e\x6c", - [0x246a] = "\x02\x27\x7b", [0x246c] = "\x02\x2b\x7a", - [0x246d] = "\x0e\x2d\x6d", [0x246e] = "\x02\x2b\x7d", - [0x246f] = "\x01\x52\x3d", [0x2470] = "\x02\x2b\x7b", - [0x2472] = "\x01\x52\x3c", [0x2473] = "\x02\x2b\x7c", - [0x2474] = "\x01\x52\x3e", [0x2476] = "\x02\x30\x63", - [0x2477] = "\x02\x30\x62", [0x2478] = "\x02\x30\x61", - [0x2479] = "\x01\x56\x56", [0x247a] = "\x0e\x32\x36", - [0x247b] = "\x02\x37\x22", [0x247c] = "\x02\x37\x23", - [0x247d] = "\x01\x5b\x74", [0x247e] = "\x02\x37\x21", - [0x247f] = "\x02\x37\x24", [0x2480] = "\x01\x60\x58", - [0x2481] = "\x01\x5b\x75", [0x2482] = "\x0e\x3d\x24", - [0x2483] = "\x0e\x3d\x23", [0x2484] = "\x01\x60\x57", - [0x2485] = "\x02\x3d\x6f", [0x2486] = "\x02\x3d\x6e", - [0x2487] = "\x0e\x3d\x25", [0x2488] = "\x02\x3d\x6c", - [0x2489] = "\x02\x3d\x6d", [0x248b] = "\x02\x3d\x70", - [0x248c] = "\x02\x44\x6a", [0x248d] = "\x02\x44\x69", - [0x248e] = "\x02\x44\x6d", [0x2490] = "\x02\x44\x6c", - [0x2491] = "\x02\x44\x6b", [0x2492] = "\x01\x69\x60", - [0x2493] = "\x02\x4b\x6f", [0x2494] = "\x0e\x47\x75", - [0x2495] = "\x02\x4b\x6e", [0x2496] = "\x01\x69\x61", - [0x2497] = "\x02\x4b\x6d", [0x2498] = "\x02\x51\x7b", - [0x2499] = "\x0e\x4d\x2f", [0x249a] = "\x02\x51\x7c", - [0x249b] = "\x01\x6d\x63", [0x249d] = "\x02\x58\x45", - [0x249e] = "\x02\x58\x46", [0x24a1] = "\x02\x65\x7c", - [0x24a2] = "\x01\x78\x4a", [0x24a3] = "\x02\x65\x7b", - [0x24a4] = "\x02\x65\x7a", [0x24a5] = "\x02\x65\x78", - [0x24a6] = "\x02\x65\x79", [0x24a7] = "\x01\x7a\x76", - [0x24a8] = "\x02\x69\x3b", [0x24a9] = "\x02\x6d\x5c", - [0x24aa] = "\x02\x71\x27", [0x24ab] = "\x0e\x61\x7b", - [0x24ac] = "\x01\x45\x5d", [0x24ae] = "\x02\x21\x64", - [0x24af] = "\x01\x46\x67", [0x24b0] = "\x02\x21\x65", - [0x24b1] = "\x0e\x24\x2c", [0x24b2] = "\x0e\x24\x2d", - [0x24b4] = "\x02\x22\x63", [0x24b5] = "\x02\x22\x64", - [0x24b6] = "\x0e\x26\x6b", [0x24b9] = "\x0e\x26\x69", - [0x24ba] = "\x02\x24\x66", [0x24bb] = "\x0e\x26\x66", - [0x24bc] = "\x0e\x26\x67", [0x24bd] = "\x02\x24\x62", - [0x24be] = "\x0e\x26\x6a", [0x24bf] = "\x02\x24\x61", - [0x24c0] = "\x01\x4e\x6d", [0x24c1] = "\x02\x24\x65", - [0x24c2] = "\x01\x4b\x2a", [0x24c3] = "\x02\x24\x63", - [0x24c4] = "\x01\x4b\x29", [0x24c5] = "\x02\x24\x67", - [0x24c6] = "\x02\x24\x64", [0x24c7] = "\x0e\x26\x68", - [0x24c9] = "\x02\x28\x21", [0x24ca] = "\x02\x2b\x7e", - [0x24cb] = "\x02\x27\x7d", [0x24cc] = "\x02\x28\x26", - [0x24cd] = "\x0e\x2a\x26", [0x24ce] = "\x01\x4e\x6e", - [0x24cf] = "\x0e\x2a\x2a", [0x24d0] = "\x01\x4e\x71", - [0x24d1] = "\x02\x28\x27", [0x24d2] = "\x02\x28\x23", - [0x24d3] = "\x0e\x2a\x27", [0x24d4] = "\x02\x28\x24", - [0x24d6] = "\x02\x27\x7c", [0x24d7] = "\x01\x4e\x70", - [0x24d8] = "\x02\x27\x7e", [0x24d9] = "\x01\x4e\x6f", - [0x24da] = "\x02\x28\x25", [0x24db] = "\x0e\x2a\x28", - [0x24dc] = "\x02\x28\x22", [0x24df] = "\x02\x2c\x24", - [0x24e0] = "\x01\x52\x40", [0x24e1] = "\x01\x52\x41", - [0x24e2] = "\x0e\x2d\x75", [0x24e3] = "\x02\x2c\x27", - [0x24e4] = "\x02\x2c\x21", [0x24e5] = "\x0e\x2d\x74", - [0x24e6] = "\x02\x2c\x26", [0x24e7] = "\x0e\x2d\x70", - [0x24e8] = "\x02\x2c\x22", [0x24e9] = "\x01\x52\x3f", - [0x24ea] = "\x02\x2c\x25", [0x24eb] = "\x02\x2c\x23", - [0x24ec] = "\x0e\x2d\x73", [0x24ed] = "\x0e\x2d\x71", - [0x24f3] = "\x02\x30\x69", [0x24f4] = "\x02\x30\x66", - [0x24f5] = "\x0e\x32\x38", [0x24f6] = "\x02\x30\x68", - [0x24f7] = "\x01\x56\x5b", [0x24f8] = "\x01\x56\x5a", - [0x24f9] = "\x01\x56\x58", [0x24fa] = "\x02\x30\x65", - [0x24fb] = "\x02\x30\x6a", [0x24fc] = "\x01\x56\x57", - [0x24fd] = "\x01\x56\x59", [0x24fe] = "\x02\x30\x67", - [0x24ff] = "\x02\x37\x2c", [0x2500] = "\x02\x30\x64", - [0x2501] = "\x02\x30\x6b", [0x2502] = "\x0e\x32\x39", - [0x2506] = "\x0e\x3d\x26", [0x2507] = "\x02\x37\x27", - [0x2508] = "\x02\x37\x2b", [0x250a] = "\x02\x37\x2a", - [0x250b] = "\x02\x3d\x72", [0x250c] = "\x02\x3d\x7d", - [0x250e] = "\x0e\x37\x3b", [0x250f] = "\x02\x37\x2d", - [0x2510] = "\x0e\x37\x3a", [0x2511] = "\x02\x37\x28", - [0x2512] = "\x02\x3d\x71", [0x2513] = "\x01\x5b\x79", - [0x2516] = "\x01\x5b\x78", [0x2517] = "\x02\x37\x26", - [0x2518] = "\x02\x37\x29", [0x2519] = "\x01\x5b\x7a", - [0x251a] = "\x0e\x37\x39", [0x251b] = "\x01\x5b\x77", - [0x251c] = "\x01\x5b\x76", [0x251d] = "\x02\x37\x25", - [0x251e] = "\x02\x37\x2e", [0x2522] = "\x02\x3d\x74", - [0x2523] = "\x02\x3d\x7b", [0x2524] = "\x0e\x3d\x27", - [0x2525] = "\x01\x60\x5a", [0x2526] = "\x02\x3d\x7a", - [0x2527] = "\x02\x3d\x77", [0x2528] = "\x0e\x3d\x2e", - [0x2529] = "\x01\x60\x5c", [0x252a] = "\x0e\x3d\x29", - [0x252b] = "\x0e\x3d\x2b", [0x252c] = "\x0e\x3d\x2a", - [0x252d] = "\x02\x3d\x79", [0x252e] = "\x0e\x42\x61", - [0x252f] = "\x0e\x3d\x2d", [0x2530] = "\x02\x3d\x73", - [0x2531] = "\x02\x3d\x75", [0x2532] = "\x02\x3d\x78", - [0x2533] = "\x02\x3d\x76", [0x2534] = "\x01\x60\x5b", - [0x2535] = "\x02\x3d\x7c", [0x2536] = "\x01\x60\x59", - [0x2537] = "\x01\x65\x27", [0x2538] = "\x0e\x3d\x28", - [0x253a] = "\x02\x44\x71", [0x253b] = "\x02\x44\x70", - [0x253c] = "\x02\x44\x6e", [0x253e] = "\x01\x65\x2a", - [0x253f] = "\x01\x65\x29", [0x2540] = "\x02\x44\x72", - [0x2541] = "\x0e\x42\x5f", [0x2542] = "\x02\x44\x6f", - [0x2543] = "\x02\x4b\x70", [0x2544] = "\x01\x69\x62", - [0x2545] = "\x01\x65\x28", [0x2546] = "\x0e\x42\x62", - [0x2547] = "\x0e\x65\x62", [0x2548] = "\x0e\x65\x63", - [0x2549] = "\x02\x44\x74", [0x254a] = "\x02\x44\x73", - [0x254b] = "\x0e\x4d\x30", [0x254c] = "\x02\x4b\x73", - [0x254d] = "\x02\x4b\x71", [0x254e] = "\x01\x6d\x64", - [0x254f] = "\x0e\x47\x79", [0x2550] = "\x01\x69\x63", - [0x2551] = "\x02\x4b\x72", [0x2552] = "\x02\x51\x7e", - [0x2553] = "\x0e\x47\x78", [0x2554] = "\x0e\x47\x7a", - [0x2555] = "\x0e\x47\x77", [0x2557] = "\x01\x6d\x65", - [0x2558] = "\x02\x51\x7d", [0x2559] = "\x02\x52\x28", - [0x255a] = "\x02\x52\x27", [0x255b] = "\x02\x52\x25", - [0x255d] = "\x02\x52\x24", [0x255e] = "\x02\x52\x21", - [0x255f] = "\x02\x52\x22", [0x2560] = "\x02\x52\x23", - [0x2561] = "\x02\x52\x26", [0x2562] = "\x02\x52\x29", - [0x2565] = "\x02\x58\x4b", [0x2566] = "\x02\x58\x48", - [0x2567] = "\x02\x58\x49", [0x2568] = "\x01\x71\x41", - [0x2569] = "\x02\x58\x47", [0x256a] = "\x02\x58\x4d", - [0x256b] = "\x02\x58\x4c", [0x256c] = "\x02\x58\x4a", - [0x256e] = "\x02\x5d\x50", [0x256f] = "\x02\x5d\x51", - [0x2570] = "\x01\x74\x3c", [0x2571] = "\x0e\x55\x49", - [0x2572] = "\x01\x74\x3d", [0x2573] = "\x02\x5d\x4f", - [0x2575] = "\x01\x76\x65", [0x2576] = "\x02\x62\x2c", - [0x2577] = "\x01\x76\x64", [0x2578] = "\x01\x78\x4b", - [0x257a] = "\x01\x78\x4c", [0x257b] = "\x01\x79\x78", - [0x257c] = "\x02\x69\x3d", [0x257d] = "\x02\x69\x3c", - [0x257e] = "\x02\x6b\x6b", [0x257f] = "\x02\x6d\x5d", - [0x2580] = "\x01\x7b\x66", [0x2581] = "\x02\x6f\x37", - [0x2582] = "\x02\x6f\x36", [0x2583] = "\x02\x6f\x38", - [0x2584] = "\x01\x46\x68", [0x2585] = "\x02\x2c\x28", - [0x2586] = "\x01\x56\x5c", [0x2587] = "\x01\x5b\x7b", - [0x2588] = "\x02\x37\x2f", [0x2589] = "\x01\x46\x69", - [0x258a] = "\x02\x21\x66", [0x258b] = "\x01\x45\x5e", - [0x258c] = "\x0e\x22\x5a", [0x258d] = "\x0e\x21\x6b", - [0x258e] = "\x02\x22\x65", [0x258f] = "\x0e\x24\x2f", - [0x2592] = "\x02\x24\x6c", [0x2593] = "\x02\x24\x6a", - [0x2594] = "\x02\x24\x6b", [0x2595] = "\x02\x24\x68", - [0x2596] = "\x01\x4b\x2b", [0x2597] = "\x02\x24\x69", - [0x2598] = "\x0e\x26\x6e", [0x259c] = "\x0e\x2a\x33", - [0x259d] = "\x02\x28\x2f", [0x259e] = "\x0e\x2a\x2d", - [0x259f] = "\x01\x4e\x74", [0x25a0] = "\x02\x28\x2d", - [0x25a1] = "\x02\x28\x29", [0x25a2] = "\x02\x28\x2c", - [0x25a3] = "\x0e\x2a\x2c", [0x25a4] = "\x02\x28\x28", - [0x25a5] = "\x01\x4e\x76", [0x25a6] = "\x02\x28\x2b", - [0x25a7] = "\x0e\x2a\x2b", [0x25a8] = "\x01\x4e\x73", - [0x25a9] = "\x01\x4e\x72", [0x25aa] = "\x0e\x2a\x32", - [0x25ab] = "\x01\x4e\x75", [0x25ac] = "\x02\x28\x2e", - [0x25ad] = "\x02\x28\x2a", [0x25af] = "\x0e\x2a\x2f", - [0x25b2] = "\x01\x52\x45", [0x25b3] = "\x01\x52\x48", - [0x25b4] = "\x02\x2c\x30", [0x25b5] = "\x02\x2c\x2f", - [0x25b6] = "\x02\x2c\x2e", [0x25b7] = "\x01\x52\x42", - [0x25b8] = "\x02\x2c\x37", [0x25b9] = "\x02\x2c\x2d", - [0x25bb] = "\x01\x52\x44", [0x25bc] = "\x02\x30\x70", - [0x25bd] = "\x0e\x2d\x78", [0x25be] = "\x02\x2c\x34", - [0x25bf] = "\x02\x2c\x32", [0x25c0] = "\x01\x52\x47", - [0x25c1] = "\x0e\x2d\x7b", [0x25c2] = "\x02\x2c\x2a", - [0x25c3] = "\x02\x2c\x35", [0x25c4] = "\x0e\x2d\x77", - [0x25c5] = "\x02\x2c\x2c", [0x25c6] = "\x02\x2c\x36", - [0x25c7] = "\x02\x2c\x33", [0x25c8] = "\x02\x2c\x2b", - [0x25c9] = "\x0e\x2d\x7a", [0x25ca] = "\x01\x52\x43", - [0x25cb] = "\x02\x2c\x38", [0x25cc] = "\x02\x2c\x29", - [0x25cd] = "\x01\x52\x46", [0x25ce] = "\x0e\x2d\x7e", - [0x25cf] = "\x0e\x2d\x79", [0x25d0] = "\x0e\x2d\x7c", - [0x25d2] = "\x02\x30\x75", [0x25d3] = "\x02\x30\x6c", - [0x25d4] = "\x02\x30\x77", [0x25d5] = "\x0e\x32\x3e", - [0x25d6] = "\x02\x30\x6f", [0x25d7] = "\x02\x30\x7a", - [0x25d8] = "\x02\x30\x7b", [0x25d9] = "\x02\x30\x6d", - [0x25da] = "\x02\x30\x79", [0x25db] = "\x02\x30\x76", - [0x25dc] = "\x02\x30\x74", [0x25dd] = "\x02\x30\x78", - [0x25de] = "\x01\x56\x62", [0x25df] = "\x0e\x32\x40", - [0x25e0] = "\x01\x56\x60", [0x25e1] = "\x0e\x32\x47", - [0x25e2] = "\x0e\x32\x3c", [0x25e3] = "\x02\x30\x72", - [0x25e4] = "\x0e\x32\x46", [0x25e5] = "\x02\x30\x6e", - [0x25e6] = "\x0e\x32\x41", [0x25e7] = "\x02\x30\x71", - [0x25e8] = "\x02\x30\x7c", [0x25e9] = "\x02\x30\x73", - [0x25ea] = "\x01\x56\x61", [0x25eb] = "\x02\x2c\x31", - [0x25ec] = "\x0e\x32\x3d", [0x25ed] = "\x01\x56\x5d", - [0x25ee] = "\x01\x56\x5f", [0x25ef] = "\x0e\x65\x64", - [0x25f3] = "\x0e\x37\x3d", [0x25f4] = "\x02\x37\x3d", - [0x25f5] = "\x02\x37\x32", [0x25f6] = "\x02\x37\x30", - [0x25f7] = "\x0e\x3d\x38", [0x25f8] = "\x02\x37\x31", - [0x25f9] = "\x0e\x32\x3f", [0x25fa] = "\x02\x37\x38", - [0x25fb] = "\x0e\x37\x40", [0x25fc] = "\x02\x37\x39", - [0x25fd] = "\x02\x37\x35", [0x25fe] = "\x01\x5c\x22", - [0x25ff] = "\x02\x37\x3a", [0x2600] = "\x02\x37\x37", - [0x2601] = "\x02\x37\x34", [0x2602] = "\x0e\x37\x3c", - [0x2603] = "\x01\x5b\x7e", [0x2604] = "\x02\x37\x33", - [0x2605] = "\x01\x5b\x7c", [0x2606] = "\x01\x5c\x21", - [0x2607] = "\x02\x37\x36", [0x2608] = "\x02\x37\x3e", - [0x2609] = "\x01\x56\x5e", [0x260a] = "\x01\x5b\x7d", - [0x260b] = "\x02\x37\x3c", [0x260c] = "\x02\x37\x3b", - [0x260d] = "\x01\x5c\x23", [0x2612] = "\x0e\x65\x65", - [0x2614] = "\x0e\x3d\x36", [0x2615] = "\x0e\x3d\x3a", - [0x2616] = "\x02\x3e\x24", [0x2617] = "\x0e\x3d\x2f", - [0x2618] = "\x0e\x3d\x3b", [0x2619] = "\x0e\x3d\x32", - [0x261a] = "\x02\x3e\x25", [0x261b] = "\x01\x60\x66", - [0x261c] = "\x0e\x3d\x39", [0x261d] = "\x02\x3e\x2b", - [0x261e] = "\x0e\x42\x6d", [0x261f] = "\x0e\x3d\x35", - [0x2620] = "\x02\x3e\x2d", [0x2621] = "\x02\x3e\x26", - [0x2622] = "\x01\x60\x60", [0x2623] = "\x02\x3e\x2a", - [0x2624] = "\x02\x3e\x29", [0x2625] = "\x01\x60\x61", - [0x2626] = "\x01\x60\x67", [0x2627] = "\x0e\x42\x64", - [0x2628] = "\x01\x60\x68", [0x2629] = "\x02\x3e\x2c", - [0x262a] = "\x01\x60\x5e", [0x262b] = "\x02\x3e\x23", - [0x262c] = "\x02\x3e\x21", [0x262d] = "\x02\x3e\x27", - [0x262e] = "\x02\x3d\x7e", [0x262f] = "\x01\x60\x65", - [0x2630] = "\x02\x3e\x22", [0x2631] = "\x02\x3e\x28", - [0x2632] = "\x02\x3e\x2e", [0x2633] = "\x01\x60\x5f", - [0x2634] = "\x01\x60\x64", [0x2635] = "\x01\x60\x62", - [0x2636] = "\x01\x60\x63", [0x2638] = "\x0e\x3d\x33", - [0x2639] = "\x0e\x3d\x3c", [0x263a] = "\x01\x60\x5d", - [0x263b] = "\x0e\x65\x66", [0x263c] = "\x0e\x3d\x37", - [0x263d] = "\x0e\x42\x68", [0x263e] = "\x0e\x42\x75", - [0x263f] = "\x01\x65\x31", [0x2640] = "\x02\x44\x7b", - [0x2641] = "\x01\x65\x30", [0x2642] = "\x02\x45\x21", - [0x2643] = "\x0e\x42\x6f", [0x2644] = "\x02\x44\x75", - [0x2645] = "\x0e\x42\x74", [0x2646] = "\x02\x45\x22", - [0x2647] = "\x0e\x42\x6e", [0x2648] = "\x0e\x42\x66", - [0x2649] = "\x0e\x42\x71", [0x264a] = "\x02\x44\x76", - [0x264b] = "\x02\x44\x77", [0x264c] = "\x0e\x42\x73", - [0x264d] = "\x02\x45\x23", [0x264e] = "\x02\x44\x7e", - [0x264f] = "\x02\x44\x7c", [0x2650] = "\x02\x44\x7d", - [0x2651] = "\x02\x44\x79", [0x2652] = "\x02\x44\x78", - [0x2653] = "\x0e\x42\x67", [0x2654] = "\x02\x45\x24", - [0x2655] = "\x01\x65\x2d", [0x2656] = "\x0e\x42\x6b", - [0x2657] = "\x02\x44\x7a", [0x2658] = "\x0e\x42\x70", - [0x2659] = "\x01\x65\x32", [0x265a] = "\x01\x65\x2c", - [0x265b] = "\x01\x65\x33", [0x265c] = "\x01\x65\x34", - [0x265d] = "\x0e\x42\x6a", [0x265e] = "\x01\x65\x2f", - [0x265f] = "\x01\x65\x2e", [0x2660] = "\x0e\x48\x25", - [0x2661] = "\x0e\x47\x7e", [0x2662] = "\x02\x4b\x74", - [0x2663] = "\x01\x69\x65", [0x2664] = "\x01\x69\x64", - [0x2665] = "\x0e\x47\x7c", [0x2666] = "\x0e\x47\x7d", - [0x2667] = "\x02\x4b\x79", [0x2668] = "\x0e\x48\x22", - [0x2669] = "\x01\x6d\x66", [0x266a] = "\x01\x69\x66", - [0x266b] = "\x0e\x48\x21", [0x266c] = "\x0e\x47\x7b", - [0x266d] = "\x01\x69\x68", [0x266e] = "\x02\x4b\x7a", - [0x266f] = "\x01\x65\x2b", [0x2670] = "\x01\x69\x67", - [0x2671] = "\x02\x4b\x76", [0x2672] = "\x02\x4b\x78", - [0x2673] = "\x02\x4b\x75", [0x2674] = "\x0e\x48\x27", - [0x2675] = "\x02\x4b\x77", [0x2676] = "\x0e\x48\x23", - [0x2679] = "\x02\x52\x33", [0x267a] = "\x0e\x4d\x31", - [0x267b] = "\x0e\x4d\x3b", [0x267c] = "\x02\x52\x32", - [0x267d] = "\x02\x52\x2f", [0x267e] = "\x01\x6d\x69", - [0x267f] = "\x02\x58\x4e", [0x2680] = "\x01\x6d\x6a", - [0x2681] = "\x02\x52\x2e", [0x2682] = "\x0e\x4d\x39", - [0x2683] = "\x01\x6d\x68", [0x2684] = "\x0e\x4d\x36", - [0x2685] = "\x02\x52\x30", [0x2686] = "\x02\x52\x2d", - [0x2687] = "\x02\x52\x2a", [0x2688] = "\x02\x52\x31", - [0x2689] = "\x02\x52\x2b", [0x268a] = "\x02\x52\x2c", - [0x268b] = "\x01\x6d\x67", [0x268c] = "\x0e\x4d\x35", - [0x268d] = "\x0e\x65\x68", [0x2690] = "\x02\x5d\x55", - [0x2692] = "\x02\x58\x52", [0x2693] = "\x0e\x4d\x3a", - [0x2694] = "\x02\x58\x51", [0x2695] = "\x02\x58\x53", - [0x2696] = "\x0e\x51\x6a", [0x2697] = "\x02\x5d\x52", - [0x2698] = "\x01\x71\x44", [0x2699] = "\x0e\x63\x75", - [0x269a] = "\x02\x58\x4f", [0x269b] = "\x0e\x51\x67", - [0x269c] = "\x01\x71\x42", [0x269d] = "\x0e\x51\x6c", - [0x269e] = "\x01\x71\x46", [0x269f] = "\x01\x71\x45", - [0x26a0] = "\x02\x58\x50", [0x26a1] = "\x02\x58\x54", - [0x26a2] = "\x0e\x51\x6b", [0x26a3] = "\x01\x71\x43", - [0x26a4] = "\x0e\x65\x67", [0x26a5] = "\x02\x5d\x59", - [0x26a6] = "\x01\x74\x40", [0x26a7] = "\x01\x76\x66", - [0x26a8] = "\x01\x74\x41", [0x26a9] = "\x01\x74\x3e", - [0x26aa] = "\x02\x5d\x56", [0x26ab] = "\x02\x5d\x54", - [0x26ac] = "\x0e\x55\x4f", [0x26ad] = "\x02\x5d\x57", - [0x26ae] = "\x0e\x55\x4b", [0x26af] = "\x02\x5d\x5a", - [0x26b0] = "\x01\x74\x3f", [0x26b1] = "\x02\x5d\x58", - [0x26b2] = "\x02\x5d\x53", [0x26b3] = "\x0e\x55\x4d", - [0x26b4] = "\x0e\x65\x69", [0x26b5] = "\x02\x62\x2f", - [0x26b6] = "\x02\x62\x32", [0x26b7] = "\x02\x66\x21", - [0x26b8] = "\x02\x62\x2d", [0x26b9] = "\x0e\x58\x2f", - [0x26ba] = "\x02\x69\x3e", [0x26bb] = "\x02\x62\x33", - [0x26bc] = "\x0e\x58\x30", [0x26bd] = "\x01\x78\x4d", - [0x26be] = "\x02\x62\x31", [0x26bf] = "\x01\x76\x67", - [0x26c0] = "\x02\x62\x2e", [0x26c1] = "\x02\x62\x30", - [0x26c2] = "\x02\x62\x34", [0x26c3] = "\x02\x66\x22", - [0x26c4] = "\x0e\x5a\x5a", [0x26c5] = "\x02\x65\x7e", - [0x26c7] = "\x0e\x5a\x5c", [0x26c8] = "\x0e\x5a\x5d", - [0x26c9] = "\x0e\x5a\x5b", [0x26ca] = "\x01\x78\x4e", - [0x26cb] = "\x02\x65\x7d", [0x26cc] = "\x0e\x5c\x5e", - [0x26cd] = "\x0e\x5c\x5c", [0x26ce] = "\x0e\x5c\x5f", - [0x26cf] = "\x01\x79\x79", [0x26d0] = "\x0e\x5c\x5d", - [0x26d1] = "\x0e\x5c\x60", [0x26d3] = "\x0e\x5e\x3d", - [0x26d4] = "\x01\x7a\x78", [0x26d5] = "\x02\x6d\x5f", - [0x26d6] = "\x01\x7a\x77", [0x26d7] = "\x02\x6d\x61", - [0x26d8] = "\x02\x6d\x5e", [0x26d9] = "\x02\x6d\x60", - [0x26da] = "\x01\x7c\x3c", [0x26db] = "\x02\x70\x40", - [0x26dc] = "\x01\x46\x6a", [0x26dd] = "\x02\x28\x30", - [0x26de] = "\x02\x30\x7d", [0x26df] = "\x02\x30\x7e", - [0x26e0] = "\x01\x5c\x24", [0x26e1] = "\x02\x45\x25", - [0x26e2] = "\x01\x71\x47", [0x26e3] = "\x01\x78\x4f", - [0x26e4] = "\x01\x7b\x67", [0x26e5] = "\x02\x70\x41", - [0x26e6] = "\x01\x46\x6b", [0x26e8] = "\x02\x28\x31", - [0x26e9] = "\x01\x23\x22", [0x26eb] = "\x0e\x2e\x22", - [0x26ec] = "\x02\x2c\x39", [0x26ed] = "\x0e\x2e\x21", - [0x26ee] = "\x02\x2c\x3a", [0x26ef] = "\x0e\x2e\x24", - [0x26f3] = "\x0e\x32\x48", [0x26f4] = "\x02\x31\x21", - [0x26f5] = "\x02\x31\x22", [0x26f6] = "\x01\x5c\x25", - [0x26f7] = "\x01\x5c\x26", [0x26f9] = "\x0e\x3d\x3d", - [0x26fb] = "\x02\x3e\x2f", [0x26fd] = "\x02\x45\x28", - [0x26fe] = "\x02\x45\x27", [0x26ff] = "\x02\x45\x26", - [0x2700] = "\x02\x4b\x7b", [0x2701] = "\x0e\x42\x77", - [0x2702] = "\x02\x4b\x7c", [0x2703] = "\x02\x4b\x7d", - [0x2704] = "\x01\x69\x69", [0x2706] = "\x0e\x48\x28", - [0x2707] = "\x02\x52\x35", [0x2708] = "\x02\x52\x34", - [0x2709] = "\x0e\x4d\x3d", [0x270a] = "\x0e\x51\x6d", - [0x270b] = "\x02\x58\x55", [0x270c] = "\x01\x71\x48", - [0x270d] = "\x01\x71\x49", [0x270e] = "\x0e\x51\x6e", - [0x270f] = "\x02\x5d\x5e", [0x2710] = "\x02\x5d\x5b", - [0x2711] = "\x02\x5d\x5c", [0x2712] = "\x02\x5d\x5d", - [0x2713] = "\x02\x62\x36", [0x2714] = "\x02\x62\x35", - [0x2715] = "\x01\x76\x68", [0x2716] = "\x02\x66\x23", - [0x2717] = "\x02\x6b\x6c", [0x2718] = "\x01\x46\x6c", - [0x271a] = "\x01\x52\x49", [0x271b] = "\x0e\x37\x44", - [0x271c] = "\x01\x5c\x27", [0x271d] = "\x02\x45\x29", - [0x271e] = "\x0e\x42\x78", [0x271f] = "\x01\x46\x6d", - [0x2721] = "\x02\x31\x23", [0x2722] = "\x01\x5c\x28", - [0x2723] = "\x0e\x37\x45", [0x2724] = "\x0e\x3d\x3e", - [0x2725] = "\x01\x60\x69", [0x2726] = "\x01\x60\x6a", - [0x2728] = "\x01\x46\x6e", [0x2729] = "\x01\x46\x6f", - [0x272a] = "\x02\x22\x66", [0x272b] = "\x01\x4b\x2d", - [0x272c] = "\x01\x4b\x2c", [0x272d] = "\x01\x52\x4a", - [0x272e] = "\x02\x2c\x3b", [0x272f] = "\x02\x3e\x30", - [0x2730] = "\x01\x46\x70", [0x2731] = "\x01\x46\x71", - [0x2732] = "\x01\x46\x72", [0x2733] = "\x01\x46\x73", - [0x2737] = "\x01\x4b\x2e", [0x2738] = "\x01\x4b\x2f", - [0x2739] = "\x02\x24\x6e", [0x273a] = "\x02\x24\x6d", - [0x273b] = "\x0e\x2a\x37", [0x273d] = "\x01\x4e\x77", - [0x273e] = "\x02\x28\x34", [0x273f] = "\x02\x28\x32", - [0x2740] = "\x02\x28\x33", [0x2741] = "\x0e\x2a\x38", - [0x2742] = "\x0e\x2a\x35", [0x2744] = "\x0e\x2a\x36", - [0x2746] = "\x0e\x2e\x27", [0x2747] = "\x02\x2c\x3c", - [0x2748] = "\x02\x2c\x3d", [0x2749] = "\x0e\x2e\x25", - [0x274a] = "\x0e\x2e\x28", [0x274b] = "\x01\x52\x4e", - [0x274c] = "\x01\x52\x4c", [0x274d] = "\x0e\x2e\x2a", - [0x274e] = "\x01\x52\x4d", [0x274f] = "\x01\x52\x4b", - [0x2750] = "\x0e\x2e\x26", [0x2754] = "\x01\x56\x63", - [0x2755] = "\x0e\x32\x4e", [0x2756] = "\x0e\x32\x4d", - [0x2757] = "\x0e\x32\x50", [0x2758] = "\x0e\x32\x4f", - [0x2759] = "\x01\x56\x67", [0x275a] = "\x01\x56\x66", - [0x275b] = "\x02\x31\x24", [0x275c] = "\x01\x56\x65", - [0x275d] = "\x01\x56\x64", [0x275e] = "\x0e\x32\x51", - [0x275f] = "\x02\x31\x25", [0x2761] = "\x0e\x37\x46", - [0x2762] = "\x01\x5c\x2b", [0x2763] = "\x02\x37\x40", - [0x2764] = "\x02\x37\x3f", [0x2765] = "\x01\x5c\x29", - [0x2766] = "\x01\x5c\x2a", [0x2767] = "\x0e\x37\x49", - [0x2768] = "\x0e\x37\x47", [0x276a] = "\x01\x60\x6c", - [0x276b] = "\x01\x60\x6b", [0x276c] = "\x02\x3e\x32", - [0x276d] = "\x0e\x3d\x43", [0x276e] = "\x0e\x3d\x42", - [0x276f] = "\x02\x3e\x31", [0x2770] = "\x01\x5c\x2c", - [0x2771] = "\x0e\x3d\x44", [0x2776] = "\x01\x65\x35", - [0x2777] = "\x02\x45\x2b", [0x2778] = "\x01\x65\x36", - [0x2779] = "\x02\x45\x2a", [0x277a] = "\x0e\x42\x7b", - [0x277d] = "\x02\x4b\x7e", [0x277e] = "\x02\x52\x36", - [0x277f] = "\x01\x6d\x6b", [0x2780] = "\x02\x58\x56", - [0x2781] = "\x0e\x51\x70", [0x2783] = "\x0e\x55\x52", - [0x2784] = "\x02\x5d\x5f", [0x2786] = "\x01\x78\x51", - [0x2787] = "\x01\x78\x50", [0x2789] = "\x0e\x5c\x62", - [0x278a] = "\x01\x7b\x68", [0x278b] = "\x01\x46\x74", - [0x278c] = "\x02\x28\x35", [0x278e] = "\x0e\x3d\x45", - [0x278f] = "\x01\x5c\x2d", [0x2790] = "\x02\x4c\x21", - [0x2791] = "\x01\x69\x6a", [0x2792] = "\x0e\x22\x5b", - [0x2793] = "\x0e\x26\x73", [0x2794] = "\x02\x24\x6f", - [0x2795] = "\x02\x24\x70", [0x2798] = "\x02\x28\x36", - [0x2799] = "\x01\x4e\x79", [0x279a] = "\x01\x4e\x7a", - [0x279b] = "\x0e\x2a\x3a", [0x279d] = "\x01\x4e\x78", - [0x279e] = "\x0e\x2a\x3b", [0x27a2] = "\x01\x52\x52", - [0x27a3] = "\x01\x52\x53", [0x27a4] = "\x01\x52\x50", - [0x27a5] = "\x01\x52\x51", [0x27a6] = "\x0e\x2e\x2b", - [0x27a7] = "\x02\x2c\x3e", [0x27a8] = "\x0e\x2e\x2f", - [0x27aa] = "\x02\x2c\x3f", [0x27ab] = "\x01\x52\x4f", - [0x27b0] = "\x02\x31\x26", [0x27b1] = "\x0e\x32\x57", - [0x27b2] = "\x01\x56\x6b", [0x27b3] = "\x01\x56\x6c", - [0x27b4] = "\x0e\x32\x55", [0x27b5] = "\x01\x5c\x30", - [0x27b6] = "\x02\x31\x2c", [0x27b8] = "\x01\x56\x71", - [0x27b9] = "\x01\x56\x6f", [0x27ba] = "\x02\x31\x2d", - [0x27bb] = "\x02\x31\x28", [0x27bc] = "\x01\x56\x6e", - [0x27bd] = "\x01\x56\x6d", [0x27be] = "\x01\x56\x68", - [0x27bf] = "\x02\x31\x2b", [0x27c0] = "\x02\x31\x2a", - [0x27c1] = "\x02\x31\x27", [0x27c2] = "\x01\x56\x70", - [0x27c3] = "\x0e\x32\x52", [0x27c4] = "\x02\x31\x29", - [0x27c5] = "\x01\x56\x69", [0x27c7] = "\x01\x56\x6a", - [0x27ca] = "\x01\x5c\x31", [0x27cb] = "\x02\x37\x44", - [0x27cc] = "\x02\x37\x45", [0x27cd] = "\x01\x5c\x32", - [0x27ce] = "\x02\x37\x41", [0x27cf] = "\x02\x37\x43", - [0x27d0] = "\x02\x37\x47", [0x27d1] = "\x02\x37\x46", - [0x27d2] = "\x02\x37\x42", [0x27d3] = "\x0e\x37\x4a", - [0x27d4] = "\x01\x5c\x2e", [0x27d5] = "\x01\x5c\x2f", - [0x27d7] = "\x02\x3e\x3a", [0x27d8] = "\x01\x60\x71", - [0x27d9] = "\x01\x60\x70", [0x27da] = "\x02\x3e\x34", - [0x27db] = "\x01\x60\x6e", [0x27dd] = "\x02\x3e\x37", - [0x27de] = "\x01\x60\x72", [0x27df] = "\x02\x3e\x38", - [0x27e0] = "\x01\x60\x73", [0x27e1] = "\x02\x3e\x35", - [0x27e2] = "\x01\x60\x6d", [0x27e3] = "\x01\x60\x6f", - [0x27e4] = "\x02\x3e\x39", [0x27e5] = "\x0e\x3d\x47", - [0x27e6] = "\x02\x3e\x36", [0x27e7] = "\x02\x3e\x33", - [0x27ed] = "\x02\x45\x38", [0x27ee] = "\x0e\x42\x7c", - [0x27ef] = "\x02\x45\x2d", [0x27f0] = "\x01\x65\x38", - [0x27f1] = "\x01\x65\x3b", [0x27f2] = "\x01\x65\x3a", - [0x27f3] = "\x01\x65\x3f", [0x27f4] = "\x01\x65\x3e", - [0x27f5] = "\x02\x45\x39", [0x27f6] = "\x02\x45\x37", - [0x27f7] = "\x02\x45\x30", [0x27f8] = "\x02\x45\x34", - [0x27f9] = "\x02\x45\x33", [0x27fa] = "\x01\x65\x3c", - [0x27fb] = "\x02\x45\x36", [0x27fc] = "\x02\x45\x32", - [0x27fd] = "\x02\x45\x3a", [0x27fe] = "\x02\x45\x31", - [0x27ff] = "\x01\x65\x3d", [0x2800] = "\x01\x65\x37", - [0x2801] = "\x01\x65\x39", [0x2802] = "\x0e\x42\x7d", - [0x2803] = "\x02\x45\x2f", [0x2807] = "\x0e\x48\x2b", - [0x2808] = "\x02\x4c\x23", [0x2809] = "\x01\x69\x6e", - [0x280a] = "\x02\x4c\x27", [0x280b] = "\x01\x69\x6d", - [0x280c] = "\x02\x4c\x24", [0x280d] = "\x01\x69\x6c", - [0x280e] = "\x0e\x48\x29", [0x280f] = "\x02\x45\x2e", - [0x2810] = "\x02\x45\x35", [0x2811] = "\x02\x4c\x26", - [0x2813] = "\x01\x69\x6f", [0x2814] = "\x02\x4c\x28", - [0x2815] = "\x02\x4c\x25", [0x2816] = "\x02\x4c\x22", - [0x2819] = "\x02\x52\x39", [0x281a] = "\x02\x52\x3d", - [0x281b] = "\x02\x52\x3f", [0x281c] = "\x02\x52\x3b", - [0x281d] = "\x02\x52\x3a", [0x281e] = "\x02\x52\x38", - [0x281f] = "\x01\x6d\x6e", [0x2820] = "\x01\x6d\x6c", - [0x2821] = "\x01\x6d\x71", [0x2822] = "\x01\x6d\x72", - [0x2823] = "\x02\x52\x3c", [0x2824] = "\x01\x6d\x6f", - [0x2825] = "\x02\x52\x37", [0x2826] = "\x01\x6d\x70", - [0x2827] = "\x01\x69\x6b", [0x2828] = "\x02\x52\x3e", - [0x2829] = "\x01\x6d\x6d", [0x282c] = "\x0e\x51\x71", - [0x282d] = "\x02\x58\x58", [0x282f] = "\x02\x58\x57", - [0x2830] = "\x02\x58\x5f", [0x2831] = "\x02\x58\x59", - [0x2832] = "\x02\x58\x5e", [0x2833] = "\x02\x58\x5b", - [0x2834] = "\x01\x71\x4a", [0x2835] = "\x02\x58\x5d", - [0x2836] = "\x0e\x51\x73", [0x2837] = "\x0e\x51\x72", - [0x2838] = "\x01\x71\x4b", [0x283a] = "\x01\x71\x4c", - [0x283b] = "\x0e\x51\x74", [0x283c] = "\x02\x58\x5c", - [0x283d] = "\x02\x58\x5a", [0x2842] = "\x01\x74\x43", - [0x2843] = "\x02\x5d\x60", [0x2844] = "\x0e\x55\x55", - [0x2845] = "\x0e\x55\x53", [0x2846] = "\x01\x74\x42", - [0x2847] = "\x02\x5d\x63", [0x2848] = "\x02\x5d\x61", - [0x2849] = "\x02\x5d\x62", [0x284c] = "\x01\x74\x44", - [0x284e] = "\x0e\x55\x54", [0x284f] = "\x0e\x58\x34", - [0x2850] = "\x02\x62\x3a", [0x2851] = "\x0e\x58\x33", - [0x2852] = "\x01\x76\x6b", [0x2853] = "\x02\x62\x3b", - [0x2856] = "\x01\x76\x69", [0x2857] = "\x02\x62\x3c", - [0x2858] = "\x01\x76\x6a", [0x2859] = "\x02\x62\x39", - [0x285a] = "\x02\x62\x3d", [0x285b] = "\x0e\x58\x32", - [0x285c] = "\x02\x62\x37", [0x285f] = "\x01\x78\x52", - [0x2860] = "\x02\x66\x24", [0x2861] = "\x01\x78\x53", - [0x2862] = "\x01\x79\x7a", [0x2864] = "\x02\x62\x38", - [0x2865] = "\x01\x79\x7b", [0x2867] = "\x0e\x5e\x3f", - [0x2868] = "\x0e\x5e\x3e", [0x2869] = "\x01\x7a\x79", - [0x286a] = "\x02\x6b\x6d", [0x286c] = "\x01\x7b\x6a", - [0x286d] = "\x02\x6d\x62", [0x286e] = "\x01\x7b\x69", - [0x286f] = "\x0e\x60\x3b", [0x2870] = "\x02\x6f\x39", - [0x2871] = "\x01\x7c\x61", [0x2872] = "\x01\x7c\x62", - [0x2873] = "\x0e\x65\x6a", [0x2875] = "\x02\x72\x3a", - [0x2876] = "\x0e\x22\x5c", [0x2877] = "\x0e\x65\x6b", - [0x2878] = "\x01\x52\x54", [0x2879] = "\x02\x2c\x40", - [0x287b] = "\x01\x60\x74", [0x287c] = "\x01\x60\x75", - [0x287d] = "\x01\x46\x75", [0x287e] = "\x01\x48\x4b", - [0x287f] = "\x02\x22\x67", [0x2880] = "\x0e\x26\x74", - [0x2881] = "\x02\x24\x71", [0x2882] = "\x01\x4b\x30", - [0x2883] = "\x0e\x26\x76", [0x2884] = "\x01\x4e\x7b", - [0x2886] = "\x01\x52\x55", [0x2887] = "\x01\x52\x56", - [0x2888] = "\x01\x52\x57", [0x2889] = "\x02\x37\x49", - [0x288a] = "\x02\x31\x2e", [0x288b] = "\x01\x56\x72", - [0x288e] = "\x01\x5c\x33", [0x288f] = "\x02\x37\x48", - [0x2890] = "\x0e\x37\x4d", [0x2892] = "\x02\x3e\x3c", - [0x2893] = "\x01\x60\x77", [0x2894] = "\x0e\x3d\x4c", - [0x2895] = "\x02\x3e\x3b", [0x2896] = "\x01\x60\x76", - [0x2897] = "\x0e\x42\x7e", [0x2898] = "\x0e\x43\x21", - [0x2899] = "\x02\x45\x3b", [0x289a] = "\x01\x6d\x73", - [0x289b] = "\x02\x52\x43", [0x289c] = "\x02\x52\x40", - [0x289d] = "\x02\x52\x41", [0x289e] = "\x02\x52\x42", - [0x28a1] = "\x0e\x51\x76", [0x28a3] = "\x0e\x55\x56", - [0x28a4] = "\x02\x5d\x64", [0x28a5] = "\x0e\x55\x57", - [0x28a6] = "\x02\x62\x3e", [0x28a9] = "\x0e\x5a\x5e", - [0x28aa] = "\x02\x69\x40", [0x28ab] = "\x02\x69\x3f", - [0x28ad] = "\x02\x6d\x63", [0x28ae] = "\x01\x46\x76", - [0x28af] = "\x02\x28\x37", [0x28b0] = "\x01\x56\x73", - [0x28b3] = "\x0e\x3d\x4d", [0x28b4] = "\x01\x60\x78", - [0x28b5] = "\x02\x45\x3c", [0x28b7] = "\x0e\x48\x30", - [0x28b8] = "\x02\x4c\x29", [0x28b9] = "\x0e\x48\x2e", - [0x28ba] = "\x01\x6d\x74", [0x28bb] = "\x02\x58\x60", - [0x28bc] = "\x0e\x65\x6c", [0x28bd] = "\x02\x62\x3f", - [0x28be] = "\x02\x69\x41", [0x28bf] = "\x01\x46\x77", - [0x28c0] = "\x0e\x26\x77", [0x28c1] = "\x0e\x26\x78", - [0x28c2] = "\x01\x4e\x7c", [0x28c3] = "\x01\x52\x5a", - [0x28c4] = "\x02\x2c\x41", [0x28c5] = "\x01\x52\x5b", - [0x28c6] = "\x01\x52\x59", [0x28c7] = "\x0e\x2e\x32", - [0x28c8] = "\x01\x52\x58", [0x28c9] = "\x02\x31\x2f", - [0x28ca] = "\x01\x56\x74", [0x28cb] = "\x0e\x32\x5a", - [0x28cc] = "\x0e\x32\x5b", [0x28cd] = "\x01\x56\x75", - [0x28ce] = "\x01\x56\x76", [0x28d2] = "\x01\x5c\x35", - [0x28d3] = "\x02\x37\x4a", [0x28d4] = "\x01\x5c\x34", - [0x28d5] = "\x0e\x37\x50", [0x28d6] = "\x0e\x37\x52", - [0x28d7] = "\x0e\x37\x51", [0x28d9] = "\x0e\x3d\x4f", - [0x28da] = "\x02\x3e\x3d", [0x28db] = "\x01\x5c\x36", - [0x28dc] = "\x01\x60\x79", [0x28dd] = "\x02\x45\x3d", - [0x28de] = "\x01\x65\x40", [0x28df] = "\x01\x65\x41", - [0x28e1] = "\x01\x69\x70", [0x28e2] = "\x0e\x48\x31", - [0x28e3] = "\x01\x69\x71", [0x28e4] = "\x01\x6d\x75", - [0x28e5] = "\x01\x71\x4e", [0x28e6] = "\x02\x58\x61", - [0x28e7] = "\x01\x71\x4d", [0x28e9] = "\x02\x5d\x65", - [0x28ea] = "\x01\x74\x45", [0x28eb] = "\x0e\x58\x35", - [0x28ec] = "\x02\x62\x40", [0x28ed] = "\x02\x69\x42", - [0x28ee] = "\x01\x46\x78", [0x28ef] = "\x01\x4b\x31", - [0x28f0] = "\x02\x28\x3a", [0x28f1] = "\x02\x28\x39", - [0x28f2] = "\x01\x4e\x7d", [0x28f3] = "\x02\x28\x38", - [0x28f4] = "\x01\x4e\x7e", [0x28f5] = "\x02\x28\x3b", - [0x28f7] = "\x02\x2c\x47", [0x28f8] = "\x01\x52\x5e", - [0x28f9] = "\x01\x52\x5d", [0x28fa] = "\x02\x2c\x49", - [0x28fb] = "\x02\x2c\x48", [0x28fc] = "\x01\x52\x62", - [0x28fd] = "\x0e\x2e\x35", [0x28fe] = "\x01\x52\x61", - [0x28ff] = "\x0e\x2e\x33", [0x2901] = "\x01\x52\x5c", - [0x2903] = "\x02\x2c\x43", [0x2904] = "\x02\x2c\x44", - [0x2905] = "\x02\x2c\x45", [0x2906] = "\x0e\x62\x6c", - [0x2907] = "\x01\x52\x63", [0x2908] = "\x02\x2c\x42", - [0x2909] = "\x01\x52\x5f", [0x290a] = "\x02\x2c\x46", - [0x290b] = "\x01\x52\x60", [0x290e] = "\x0e\x32\x64", - [0x290f] = "\x0e\x32\x5f", [0x2910] = "\x02\x31\x32", - [0x2911] = "\x02\x31\x36", [0x2912] = "\x02\x31\x34", - [0x2913] = "\x02\x31\x33", [0x2915] = "\x02\x31\x37", - [0x2916] = "\x0e\x32\x5e", [0x2918] = "\x0e\x32\x68", - [0x2919] = "\x02\x31\x38", [0x291a] = "\x02\x31\x39", - [0x291b] = "\x02\x31\x31", [0x291d] = "\x02\x31\x30", - [0x291e] = "\x0e\x37\x59", [0x291f] = "\x01\x56\x78", - [0x2920] = "\x01\x56\x79", [0x2921] = "\x0e\x32\x67", - [0x2922] = "\x02\x31\x3a", [0x2923] = "\x02\x31\x35", - [0x2924] = "\x0e\x32\x65", [0x2925] = "\x02\x37\x53", - [0x2926] = "\x0e\x37\x55", [0x2927] = "\x02\x31\x3b", - [0x2928] = "\x01\x56\x7a", [0x2929] = "\x01\x56\x77", - [0x292a] = "\x0e\x32\x5c", [0x292b] = "\x0e\x32\x63", - [0x292d] = "\x02\x37\x4d", [0x292f] = "\x02\x37\x4c", - [0x2930] = "\x0e\x37\x53", [0x2931] = "\x02\x37\x4e", - [0x2932] = "\x02\x37\x4f", [0x2933] = "\x02\x37\x51", - [0x2934] = "\x02\x37\x50", [0x2935] = "\x02\x37\x55", - [0x2936] = "\x01\x5c\x3a", [0x2937] = "\x01\x5c\x37", - [0x2938] = "\x01\x5c\x3b", [0x2939] = "\x02\x37\x4b", - [0x293a] = "\x01\x5c\x3c", [0x293b] = "\x02\x37\x54", - [0x293c] = "\x01\x5c\x39", [0x293d] = "\x02\x37\x52", - [0x293e] = "\x01\x5c\x38", [0x293f] = "\x0e\x32\x62", - [0x2940] = "\x0e\x37\x57", [0x2942] = "\x0e\x3d\x56", - [0x2943] = "\x0e\x3d\x53", [0x2944] = "\x02\x3e\x40", - [0x2945] = "\x02\x3e\x42", [0x2946] = "\x02\x3e\x3e", - [0x2947] = "\x02\x3e\x3f", [0x2948] = "\x0e\x3d\x51", - [0x2949] = "\x0e\x3d\x52", [0x294a] = "\x02\x3e\x43", - [0x294b] = "\x02\x3e\x45", [0x294c] = "\x02\x3e\x46", - [0x294d] = "\x02\x3e\x41", [0x294e] = "\x02\x3e\x44", - [0x294f] = "\x01\x60\x7a", [0x2952] = "\x02\x45\x41", - [0x2953] = "\x0e\x43\x27", [0x2954] = "\x02\x45\x46", - [0x2955] = "\x02\x45\x3e", [0x2956] = "\x02\x45\x42", - [0x2958] = "\x0e\x43\x28", [0x2959] = "\x02\x45\x47", - [0x295a] = "\x02\x45\x43", [0x295b] = "\x01\x65\x42", - [0x295c] = "\x01\x65\x4a", [0x295d] = "\x0e\x43\x25", - [0x295e] = "\x01\x65\x45", [0x295f] = "\x02\x45\x3f", - [0x2960] = "\x02\x45\x40", [0x2961] = "\x01\x69\x75", - [0x2962] = "\x01\x65\x4d", [0x2963] = "\x01\x65\x46", - [0x2964] = "\x0e\x43\x26", [0x2965] = "\x01\x65\x4b", - [0x2966] = "\x01\x65\x44", [0x2967] = "\x02\x45\x45", - [0x2968] = "\x01\x65\x4c", [0x2969] = "\x02\x45\x44", - [0x296a] = "\x01\x65\x48", [0x296b] = "\x01\x65\x43", - [0x296c] = "\x01\x65\x49", [0x296d] = "\x02\x45\x48", - [0x296e] = "\x02\x4c\x2e", [0x296f] = "\x02\x4c\x30", - [0x2971] = "\x0e\x48\x39", [0x2974] = "\x0e\x48\x33", - [0x2975] = "\x0e\x48\x36", [0x2976] = "\x0e\x48\x35", - [0x2977] = "\x0e\x48\x34", [0x2978] = "\x0e\x48\x38", - [0x2979] = "\x01\x65\x47", [0x297a] = "\x0e\x48\x3b", - [0x297b] = "\x0e\x48\x3d", [0x297c] = "\x02\x4c\x2b", - [0x297d] = "\x01\x69\x73", [0x297e] = "\x02\x4c\x31", - [0x297f] = "\x01\x69\x74", [0x2980] = "\x02\x4c\x2f", - [0x2981] = "\x02\x4c\x2a", [0x2982] = "\x02\x4c\x2d", - [0x2983] = "\x02\x4c\x32", [0x2984] = "\x01\x69\x72", - [0x2985] = "\x02\x4c\x2c", [0x2987] = "\x01\x6d\x77", - [0x2988] = "\x02\x52\x47", [0x2989] = "\x02\x52\x46", - [0x298a] = "\x0e\x4d\x44", [0x298b] = "\x01\x6d\x7a", - [0x298c] = "\x01\x6d\x78", [0x298d] = "\x02\x52\x44", - [0x298e] = "\x01\x6d\x76", [0x298f] = "\x02\x52\x45", - [0x2990] = "\x0e\x4d\x46", [0x2991] = "\x01\x6d\x79", - [0x2995] = "\x02\x58\x69", [0x2996] = "\x0e\x51\x7b", - [0x2997] = "\x02\x58\x6b", [0x2998] = "\x0e\x51\x79", - [0x2999] = "\x02\x58\x6a", [0x299a] = "\x02\x58\x62", - [0x299b] = "\x02\x58\x66", [0x299c] = "\x02\x58\x65", - [0x299d] = "\x02\x58\x63", [0x299e] = "\x01\x71\x50", - [0x299f] = "\x01\x71\x51", [0x29a0] = "\x01\x71\x4f", - [0x29a1] = "\x02\x58\x64", [0x29a2] = "\x02\x58\x67", - [0x29a3] = "\x02\x58\x68", [0x29a4] = "\x0e\x55\x59", - [0x29a5] = "\x01\x71\x52", [0x29a6] = "\x0e\x55\x58", - [0x29a7] = "\x01\x74\x4a", [0x29a8] = "\x02\x5d\x6d", - [0x29a9] = "\x0e\x55\x5b", [0x29aa] = "\x01\x74\x47", - [0x29ab] = "\x02\x5d\x67", [0x29ac] = "\x01\x74\x49", - [0x29ad] = "\x01\x74\x4b", [0x29af] = "\x0e\x55\x5c", - [0x29b0] = "\x01\x74\x48", [0x29b1] = "\x02\x5d\x6c", - [0x29b2] = "\x02\x5d\x68", [0x29b3] = "\x01\x74\x46", - [0x29b4] = "\x02\x5d\x6b", [0x29b5] = "\x02\x5d\x66", - [0x29b6] = "\x02\x5d\x6a", [0x29b7] = "\x02\x5d\x69", - [0x29b8] = "\x0e\x58\x36", [0x29b9] = "\x0e\x58\x38", - [0x29ba] = "\x02\x62\x42", [0x29bb] = "\x01\x76\x6e", - [0x29bc] = "\x01\x76\x6f", [0x29bd] = "\x01\x76\x6c", - [0x29be] = "\x0e\x58\x3b", [0x29bf] = "\x01\x76\x6d", - [0x29c0] = "\x0e\x58\x3a", [0x29c1] = "\x0e\x58\x39", - [0x29c2] = "\x02\x62\x41", [0x29c4] = "\x02\x66\x27", - [0x29c5] = "\x0e\x5a\x60", [0x29c6] = "\x0e\x5a\x5f", - [0x29c7] = "\x01\x78\x54", [0x29c9] = "\x02\x66\x25", - [0x29ca] = "\x02\x66\x26", [0x29cc] = "\x02\x69\x43", - [0x29cd] = "\x02\x69\x46", [0x29ce] = "\x02\x69\x44", - [0x29cf] = "\x02\x69\x45", [0x29d0] = "\x02\x6b\x6e", - [0x29d1] = "\x0e\x5e\x42", [0x29d3] = "\x01\x7a\x7a", - [0x29d4] = "\x02\x6f\x3a", [0x29d5] = "\x02\x70\x42", - [0x29d6] = "\x0e\x64\x32", [0x29d7] = "\x01\x7c\x63", - [0x29d8] = "\x02\x71\x28", [0x29d9] = "\x02\x71\x29", - [0x29da] = "\x01\x7d\x33", [0x29db] = "\x01\x46\x79", - [0x29dc] = "\x01\x52\x64", [0x29dd] = "\x0e\x32\x69", - [0x29de] = "\x02\x3e\x47", [0x29df] = "\x0e\x3d\x57", - [0x29e0] = "\x02\x45\x49", [0x29e2] = "\x01\x46\x7a", - [0x29e3] = "\x01\x4b\x32", [0x29e5] = "\x01\x4f\x21", - [0x29e6] = "\x0e\x2e\x36", [0x29e7] = "\x02\x2c\x4a", - [0x29e8] = "\x02\x2c\x4b", [0x29e9] = "\x01\x56\x7b", - [0x29ec] = "\x02\x3e\x48", [0x29ed] = "\x01\x60\x7b", - [0x29ee] = "\x01\x65\x4e", [0x29ef] = "\x01\x74\x4c", - [0x29f0] = "\x02\x5d\x6e", [0x29f1] = "\x02\x66\x28", - [0x29f2] = "\x02\x69\x47", [0x29f3] = "\x01\x46\x7b", - [0x29f4] = "\x0e\x26\x7b", [0x29f5] = "\x0e\x26\x7c", - [0x29f7] = "\x02\x28\x41", [0x29f8] = "\x02\x28\x3c", - [0x29f9] = "\x02\x28\x3e", [0x29fa] = "\x02\x28\x40", - [0x29fb] = "\x02\x28\x3f", [0x29fc] = "\x02\x28\x3d", - [0x29fd] = "\x01\x4f\x22", [0x2a02] = "\x01\x52\x65", - [0x2a03] = "\x02\x2c\x54", [0x2a04] = "\x0e\x2e\x39", - [0x2a05] = "\x02\x2c\x4f", [0x2a06] = "\x02\x2c\x4c", - [0x2a07] = "\x0e\x2e\x3b", [0x2a08] = "\x0e\x2e\x3e", - [0x2a09] = "\x02\x2c\x53", [0x2a0a] = "\x0e\x2e\x37", - [0x2a0b] = "\x0e\x2e\x3a", [0x2a0c] = "\x01\x52\x67", - [0x2a0d] = "\x01\x52\x68", [0x2a0e] = "\x02\x2c\x52", - [0x2a0f] = "\x02\x2c\x51", [0x2a10] = "\x02\x2c\x50", - [0x2a11] = "\x02\x2c\x4d", [0x2a12] = "\x02\x2c\x4e", - [0x2a13] = "\x02\x2c\x55", [0x2a14] = "\x01\x52\x66", - [0x2a15] = "\x0e\x2e\x3d", [0x2a19] = "\x0e\x65\x6d", - [0x2a1b] = "\x0e\x65\x6e", [0x2a1d] = "\x01\x57\x21", - [0x2a1e] = "\x0e\x66\x7c", [0x2a1f] = "\x01\x57\x27", - [0x2a20] = "\x01\x57\x26", [0x2a21] = "\x02\x31\x44", - [0x2a22] = "\x02\x31\x3e", [0x2a23] = "\x02\x31\x3c", - [0x2a24] = "\x0e\x32\x6c", [0x2a25] = "\x01\x57\x24", - [0x2a26] = "\x02\x37\x5c", [0x2a27] = "\x01\x56\x7d", - [0x2a28] = "\x02\x31\x41", [0x2a29] = "\x02\x31\x45", - [0x2a2a] = "\x02\x31\x47", [0x2a2b] = "\x02\x31\x43", - [0x2a2c] = "\x02\x31\x3d", [0x2a2d] = "\x01\x57\x25", - [0x2a2e] = "\x02\x31\x42", [0x2a2f] = "\x02\x31\x40", - [0x2a30] = "\x01\x56\x7c", [0x2a31] = "\x02\x31\x48", - [0x2a32] = "\x01\x57\x28", [0x2a33] = "\x02\x31\x46", - [0x2a34] = "\x01\x57\x22", [0x2a35] = "\x02\x31\x3f", - [0x2a36] = "\x0e\x32\x6d", [0x2a37] = "\x01\x57\x23", - [0x2a38] = "\x01\x56\x7e", [0x2a3d] = "\x0e\x65\x6f", - [0x2a42] = "\x0e\x37\x62", [0x2a43] = "\x01\x5c\x3e", - [0x2a45] = "\x02\x37\x5d", [0x2a46] = "\x0e\x37\x63", - [0x2a47] = "\x0e\x37\x5d", [0x2a48] = "\x02\x37\x56", - [0x2a49] = "\x02\x37\x58", [0x2a4a] = "\x02\x37\x5a", - [0x2a4b] = "\x0e\x37\x5f", [0x2a4c] = "\x02\x37\x5b", - [0x2a4d] = "\x02\x37\x59", [0x2a4e] = "\x01\x5c\x3f", - [0x2a4f] = "\x0e\x37\x61", [0x2a50] = "\x02\x37\x5e", - [0x2a51] = "\x0e\x37\x60", [0x2a52] = "\x02\x37\x57", - [0x2a53] = "\x0e\x65\x70", [0x2a54] = "\x0e\x65\x71", - [0x2a58] = "\x0e\x65\x72", [0x2a5c] = "\x02\x3e\x4c", - [0x2a5d] = "\x01\x60\x7c", [0x2a5e] = "\x02\x3e\x54", - [0x2a5f] = "\x0e\x3d\x5c", [0x2a60] = "\x02\x3e\x49", - [0x2a62] = "\x02\x3e\x55", [0x2a63] = "\x0e\x3d\x59", - [0x2a64] = "\x02\x3e\x4a", [0x2a65] = "\x02\x3e\x4b", - [0x2a66] = "\x0e\x3d\x5d", [0x2a68] = "\x02\x3e\x53", - [0x2a69] = "\x02\x3e\x52", [0x2a6a] = "\x02\x3e\x4f", - [0x2a6b] = "\x01\x5c\x3d", [0x2a6c] = "\x01\x60\x7d", - [0x2a6d] = "\x02\x3e\x4d", [0x2a6e] = "\x02\x3e\x50", - [0x2a6f] = "\x01\x60\x7e", [0x2a70] = "\x02\x3e\x51", - [0x2a71] = "\x02\x3e\x4e", [0x2a76] = "\x0e\x3d\x5a", - [0x2a78] = "\x0e\x43\x31", [0x2a79] = "\x02\x45\x54", - [0x2a7a] = "\x0e\x43\x2d", [0x2a7b] = "\x02\x45\x58", - [0x2a7c] = "\x01\x65\x55", [0x2a7d] = "\x0e\x43\x2e", - [0x2a7e] = "\x02\x4c\x38", [0x2a7f] = "\x01\x65\x58", - [0x2a80] = "\x02\x45\x56", [0x2a81] = "\x0e\x43\x37", - [0x2a82] = "\x0e\x43\x29", [0x2a83] = "\x02\x45\x53", - [0x2a84] = "\x02\x45\x4e", [0x2a85] = "\x02\x45\x50", - [0x2a86] = "\x02\x45\x51", [0x2a87] = "\x02\x45\x4a", - [0x2a88] = "\x0e\x43\x35", [0x2a89] = "\x01\x65\x54", - [0x2a8a] = "\x0e\x43\x2b", [0x2a8b] = "\x0e\x43\x30", - [0x2a8c] = "\x01\x65\x53", [0x2a8d] = "\x0e\x43\x34", - [0x2a8e] = "\x01\x65\x4f", [0x2a8f] = "\x02\x45\x4d", - [0x2a90] = "\x0e\x43\x2a", [0x2a91] = "\x01\x65\x56", - [0x2a92] = "\x0e\x43\x36", [0x2a93] = "\x01\x65\x57", - [0x2a94] = "\x02\x45\x4c", [0x2a95] = "\x02\x45\x4f", - [0x2a96] = "\x02\x45\x57", [0x2a97] = "\x01\x65\x51", - [0x2a98] = "\x01\x65\x52", [0x2a99] = "\x02\x45\x55", - [0x2a9a] = "\x02\x45\x4b", [0x2a9e] = "\x02\x4c\x3a", - [0x2a9f] = "\x01\x69\x77", [0x2aa0] = "\x02\x4c\x3c", - [0x2aa1] = "\x02\x45\x52", [0x2aa2] = "\x02\x4c\x3e", - [0x2aa3] = "\x01\x69\x7b", [0x2aa4] = "\x02\x4c\x3f", - [0x2aa5] = "\x02\x4c\x3b", [0x2aa6] = "\x0e\x48\x3e", - [0x2aa7] = "\x01\x69\x78", [0x2aa8] = "\x02\x4c\x37", - [0x2aa9] = "\x01\x69\x7a", [0x2aaa] = "\x02\x4c\x34", - [0x2aab] = "\x02\x4c\x39", [0x2aac] = "\x02\x4c\x3d", - [0x2aad] = "\x02\x4c\x36", [0x2aae] = "\x0e\x48\x3f", - [0x2aaf] = "\x0e\x48\x45", [0x2ab0] = "\x01\x65\x50", - [0x2ab1] = "\x0e\x48\x44", [0x2ab2] = "\x02\x4c\x33", - [0x2ab3] = "\x01\x69\x79", [0x2ab4] = "\x02\x4c\x35", - [0x2ab7] = "\x0e\x65\x73", [0x2ab8] = "\x0e\x48\x40", - [0x2aba] = "\x01\x6d\x7d", [0x2abb] = "\x02\x52\x49", - [0x2abc] = "\x01\x6e\x23", [0x2abe] = "\x01\x6e\x21", - [0x2ac0] = "\x0e\x4d\x4a", [0x2ac1] = "\x01\x69\x76", - [0x2ac2] = "\x0e\x4d\x4d", [0x2ac3] = "\x02\x52\x50", - [0x2ac4] = "\x02\x52\x51", [0x2ac5] = "\x01\x6d\x7c", - [0x2ac6] = "\x0e\x4d\x48", [0x2ac7] = "\x0e\x4d\x4c", - [0x2ac8] = "\x02\x52\x4f", [0x2ac9] = "\x02\x52\x52", - [0x2aca] = "\x01\x6d\x7e", [0x2acb] = "\x01\x6d\x7b", - [0x2acc] = "\x02\x52\x4b", [0x2acd] = "\x02\x52\x48", - [0x2ace] = "\x02\x52\x4d", [0x2acf] = "\x02\x52\x4a", - [0x2ad0] = "\x01\x6e\x24", [0x2ad1] = "\x02\x52\x4c", - [0x2ad2] = "\x0e\x4d\x4b", [0x2ad3] = "\x0e\x4d\x49", - [0x2ad4] = "\x02\x52\x4e", [0x2ad5] = "\x01\x6e\x22", - [0x2ad6] = "\x0e\x52\x21", [0x2ad8] = "\x0e\x65\x74", - [0x2ada] = "\x01\x71\x54", [0x2adb] = "\x02\x58\x72", - [0x2adc] = "\x0e\x52\x24", [0x2add] = "\x02\x58\x6c", - [0x2ade] = "\x02\x58\x70", [0x2adf] = "\x02\x58\x76", - [0x2ae0] = "\x02\x58\x77", [0x2ae1] = "\x02\x58\x73", - [0x2ae2] = "\x02\x58\x74", [0x2ae3] = "\x02\x58\x71", - [0x2ae5] = "\x02\x58\x6e", [0x2ae7] = "\x01\x71\x56", - [0x2ae8] = "\x01\x71\x53", [0x2ae9] = "\x02\x58\x6d", - [0x2aea] = "\x02\x58\x6f", [0x2aeb] = "\x0e\x52\x22", - [0x2aec] = "\x01\x71\x55", [0x2aed] = "\x02\x58\x75", - [0x2aee] = "\x0e\x65\x75", [0x2aef] = "\x01\x74\x50", - [0x2af0] = "\x0e\x55\x60", [0x2af1] = "\x0e\x55\x62", - [0x2af2] = "\x02\x5d\x75", [0x2af3] = "\x02\x5d\x6f", - [0x2af4] = "\x01\x74\x4f", [0x2af7] = "\x01\x74\x4d", - [0x2af8] = "\x0e\x55\x61", [0x2af9] = "\x02\x5d\x77", - [0x2afa] = "\x01\x74\x4e", [0x2afb] = "\x02\x5d\x72", - [0x2afc] = "\x02\x5d\x73", [0x2afd] = "\x02\x5d\x70", - [0x2afe] = "\x02\x5d\x78", [0x2aff] = "\x02\x5d\x74", - [0x2b01] = "\x01\x74\x51", [0x2b02] = "\x02\x5d\x71", - [0x2b04] = "\x02\x5d\x79", [0x2b05] = "\x02\x5d\x76", - [0x2b06] = "\x0e\x58\x43", [0x2b07] = "\x0e\x58\x3e", - [0x2b08] = "\x0e\x58\x40", [0x2b09] = "\x02\x62\x46", - [0x2b0a] = "\x0e\x58\x3f", [0x2b0b] = "\x0e\x58\x3c", - [0x2b0c] = "\x02\x62\x43", [0x2b0d] = "\x0e\x58\x42", - [0x2b0e] = "\x01\x76\x70", [0x2b10] = "\x02\x62\x47", - [0x2b11] = "\x02\x62\x49", [0x2b12] = "\x02\x62\x48", - [0x2b13] = "\x02\x62\x44", [0x2b14] = "\x02\x62\x45", - [0x2b15] = "\x0e\x58\x44", [0x2b17] = "\x02\x66\x2d", - [0x2b18] = "\x0e\x5a\x61", [0x2b19] = "\x01\x78\x55", - [0x2b1a] = "\x0e\x5a\x62", [0x2b1b] = "\x02\x66\x2a", - [0x2b1c] = "\x02\x66\x2c", [0x2b1d] = "\x02\x66\x29", - [0x2b1e] = "\x02\x66\x2e", [0x2b20] = "\x0e\x5a\x63", - [0x2b21] = "\x02\x66\x2b", [0x2b22] = "\x0e\x65\x76", - [0x2b23] = "\x02\x69\x49", [0x2b24] = "\x02\x69\x4c", - [0x2b25] = "\x02\x69\x48", [0x2b26] = "\x01\x79\x7c", - [0x2b27] = "\x02\x69\x4a", [0x2b28] = "\x02\x69\x4b", - [0x2b29] = "\x02\x69\x4d", [0x2b2a] = "\x01\x79\x7d", - [0x2b2b] = "\x01\x7a\x21", [0x2b2c] = "\x01\x79\x7e", - [0x2b2d] = "\x02\x6b\x6f", [0x2b2e] = "\x0e\x5e\x45", - [0x2b2f] = "\x02\x6b\x71", [0x2b30] = "\x0e\x5e\x43", - [0x2b31] = "\x02\x6b\x70", [0x2b32] = "\x0e\x5e\x44", - [0x2b35] = "\x02\x6d\x64", [0x2b37] = "\x0e\x60\x3c", - [0x2b38] = "\x02\x70\x43", [0x2b39] = "\x02\x71\x2a", - [0x2b3a] = "\x01\x46\x7c", [0x2b3c] = "\x0e\x24\x33", - [0x2b3d] = "\x02\x24\x72", [0x2b3e] = "\x01\x4f\x23", - [0x2b3f] = "\x02\x28\x43", [0x2b40] = "\x01\x4f\x24", - [0x2b41] = "\x01\x4f\x25", [0x2b42] = "\x02\x28\x42", - [0x2b44] = "\x02\x2c\x5a", [0x2b45] = "\x02\x2c\x59", - [0x2b46] = "\x01\x52\x69", [0x2b47] = "\x01\x52\x6c", - [0x2b48] = "\x01\x52\x6b", [0x2b49] = "\x01\x52\x6a", - [0x2b4a] = "\x02\x2c\x56", [0x2b4b] = "\x02\x2c\x58", - [0x2b4c] = "\x02\x2c\x57", [0x2b4d] = "\x0e\x65\x77", - [0x2b4f] = "\x02\x31\x4b", [0x2b50] = "\x01\x57\x2a", - [0x2b51] = "\x02\x31\x4f", [0x2b52] = "\x02\x31\x4e", - [0x2b53] = "\x02\x31\x4d", [0x2b54] = "\x02\x31\x49", - [0x2b55] = "\x01\x57\x29", [0x2b56] = "\x01\x57\x2d", - [0x2b57] = "\x01\x57\x30", [0x2b58] = "\x0e\x32\x6f", - [0x2b59] = "\x0e\x32\x70", [0x2b5a] = "\x01\x57\x31", - [0x2b5b] = "\x02\x31\x4a", [0x2b5c] = "\x02\x31\x4c", - [0x2b5d] = "\x01\x57\x2f", [0x2b5e] = "\x01\x57\x2e", - [0x2b5f] = "\x01\x57\x2c", [0x2b60] = "\x01\x57\x2b", - [0x2b61] = "\x02\x37\x65", [0x2b62] = "\x0e\x32\x72", - [0x2b63] = "\x02\x37\x63", [0x2b64] = "\x02\x37\x5f", - [0x2b65] = "\x01\x5c\x40", [0x2b66] = "\x0e\x3d\x5e", - [0x2b67] = "\x02\x37\x60", [0x2b68] = "\x01\x5c\x41", - [0x2b69] = "\x02\x37\x61", [0x2b6a] = "\x02\x37\x62", - [0x2b6b] = "\x02\x37\x64", [0x2b6c] = "\x0e\x37\x66", - [0x2b6d] = "\x01\x5c\x42", [0x2b6e] = "\x0e\x37\x65", - [0x2b70] = "\x02\x3e\x59", [0x2b71] = "\x0e\x3d\x5f", - [0x2b72] = "\x02\x3e\x58", [0x2b73] = "\x02\x3e\x57", - [0x2b74] = "\x02\x3e\x56", [0x2b75] = "\x0e\x3d\x64", - [0x2b76] = "\x0e\x3d\x62", [0x2b79] = "\x02\x45\x5c", - [0x2b7a] = "\x01\x65\x59", [0x2b7c] = "\x02\x45\x59", - [0x2b7d] = "\x02\x45\x5b", [0x2b7e] = "\x0e\x43\x38", - [0x2b7f] = "\x01\x65\x5a", [0x2b80] = "\x0e\x43\x3d", - [0x2b81] = "\x01\x65\x5b", [0x2b82] = "\x02\x45\x5a", - [0x2b83] = "\x0e\x43\x39", [0x2b84] = "\x0e\x3d\x63", - [0x2b86] = "\x0e\x65\x78", [0x2b87] = "\x0e\x48\x48", - [0x2b88] = "\x02\x4c\x48", [0x2b89] = "\x0e\x48\x47", - [0x2b8a] = "\x02\x4c\x41", [0x2b8b] = "\x02\x4c\x42", - [0x2b8d] = "\x01\x69\x7e", [0x2b8e] = "\x01\x69\x7c", - [0x2b8f] = "\x01\x69\x7d", [0x2b90] = "\x02\x4c\x4a", - [0x2b92] = "\x02\x4c\x49", [0x2b93] = "\x02\x4c\x46", - [0x2b94] = "\x02\x4c\x45", [0x2b95] = "\x02\x4c\x44", - [0x2b96] = "\x02\x4c\x43", [0x2b97] = "\x02\x4c\x47", - [0x2b98] = "\x02\x4c\x40", [0x2b99] = "\x0e\x65\x79", - [0x2b9a] = "\x02\x52\x53", [0x2b9b] = "\x02\x52\x58", - [0x2b9c] = "\x02\x52\x56", [0x2b9d] = "\x0e\x4d\x50", - [0x2b9e] = "\x0e\x4d\x51", [0x2b9f] = "\x0e\x4d\x4f", - [0x2ba0] = "\x02\x52\x55", [0x2ba1] = "\x02\x52\x54", - [0x2ba2] = "\x02\x52\x57", [0x2ba3] = "\x0e\x65\x7a", - [0x2ba4] = "\x02\x58\x78", [0x2ba5] = "\x0e\x52\x26", - [0x2ba6] = "\x01\x71\x57", [0x2ba7] = "\x01\x74\x52", - [0x2ba8] = "\x02\x5d\x7b", [0x2ba9] = "\x0e\x52\x27", - [0x2baa] = "\x01\x74\x53", [0x2bab] = "\x02\x5d\x7a", - [0x2bac] = "\x02\x62\x4b", [0x2bad] = "\x02\x62\x4a", - [0x2bae] = "\x01\x76\x71", [0x2baf] = "\x0e\x58\x45", - [0x2bb0] = "\x02\x66\x2f", [0x2bb1] = "\x01\x78\x56", - [0x2bb2] = "\x02\x69\x4e", [0x2bb3] = "\x01\x7b\x6b", - [0x2bb4] = "\x02\x6d\x65", [0x2bb5] = "\x0e\x60\x3d", - [0x2bb6] = "\x02\x70\x45", [0x2bb7] = "\x02\x70\x44", - [0x2bb8] = "\x02\x21\x67", [0x2bb9] = "\x01\x52\x6d", - [0x2bba] = "\x01\x52\x6e", [0x2bbb] = "\x02\x37\x66", - [0x2bbc] = "\x0e\x65\x7b", [0x2bbd] = "\x01\x65\x5d", - [0x2bbe] = "\x01\x46\x7d", [0x2bbf] = "\x01\x4b\x35", - [0x2bc0] = "\x01\x4b\x34", [0x2bc1] = "\x01\x4b\x33", - [0x2bc3] = "\x0e\x2a\x3e", [0x2bc4] = "\x0e\x2a\x3d", - [0x2bc5] = "\x02\x28\x44", [0x2bc6] = "\x0e\x2a\x3f", - [0x2bc7] = "\x0e\x2a\x42", [0x2bc8] = "\x01\x4f\x27", - [0x2bc9] = "\x01\x4f\x26", [0x2bca] = "\x0e\x2a\x44", - [0x2bcb] = "\x01\x52\x71", [0x2bcc] = "\x0e\x65\x4c", - [0x2bcd] = "\x02\x2c\x5c", [0x2bce] = "\x02\x2c\x5f", - [0x2bcf] = "\x02\x2c\x5d", [0x2bd0] = "\x0e\x2e\x42", - [0x2bd1] = "\x01\x52\x6f", [0x2bd2] = "\x01\x52\x70", - [0x2bd3] = "\x0e\x2e\x40", [0x2bd4] = "\x0e\x2e\x41", - [0x2bd5] = "\x02\x2c\x5b", [0x2bd6] = "\x02\x2c\x5e", - [0x2bd7] = "\x0e\x2e\x43", [0x2bd8] = "\x01\x57\x38", - [0x2bd9] = "\x0e\x32\x74", [0x2bda] = "\x0e\x32\x73", - [0x2bdb] = "\x0e\x32\x79", [0x2bdc] = "\x02\x31\x56", - [0x2bdd] = "\x02\x31\x58", [0x2bde] = "\x02\x31\x57", - [0x2bdf] = "\x01\x57\x35", [0x2be0] = "\x02\x31\x52", - [0x2be1] = "\x0e\x32\x76", [0x2be2] = "\x0e\x32\x7b", - [0x2be3] = "\x01\x57\x33", [0x2be4] = "\x01\x57\x32", - [0x2be5] = "\x0e\x32\x77", [0x2be6] = "\x01\x57\x36", - [0x2be7] = "\x01\x57\x34", [0x2be8] = "\x0e\x32\x78", - [0x2be9] = "\x01\x57\x37", [0x2bea] = "\x02\x31\x55", - [0x2beb] = "\x02\x31\x50", [0x2bec] = "\x02\x31\x51", - [0x2bed] = "\x02\x31\x54", [0x2bee] = "\x02\x31\x53", - [0x2bf0] = "\x0e\x32\x7c", [0x2bf1] = "\x0e\x37\x69", - [0x2bf2] = "\x0e\x37\x67", [0x2bf3] = "\x0e\x37\x6b", - [0x2bf5] = "\x0e\x37\x6a", [0x2bf6] = "\x02\x37\x69", - [0x2bf7] = "\x02\x37\x6a", [0x2bf8] = "\x02\x37\x68", - [0x2bf9] = "\x0e\x37\x6c", [0x2bfa] = "\x02\x37\x67", - [0x2bfb] = "\x01\x5c\x43", [0x2bff] = "\x0e\x3d\x65", - [0x2c00] = "\x01\x61\x25", [0x2c02] = "\x02\x3e\x5a", - [0x2c03] = "\x02\x3e\x5c", [0x2c04] = "\x02\x3e\x5e", - [0x2c05] = "\x01\x61\x24", [0x2c07] = "\x0e\x3d\x66", - [0x2c08] = "\x01\x61\x22", [0x2c09] = "\x0e\x3d\x69", - [0x2c0a] = "\x02\x3e\x5b", [0x2c0b] = "\x01\x61\x23", - [0x2c0c] = "\x02\x3e\x5d", [0x2c0d] = "\x01\x61\x21", - [0x2c0e] = "\x0e\x3d\x68", [0x2c0f] = "\x0e\x43\x41", - [0x2c10] = "\x02\x45\x66", [0x2c11] = "\x02\x45\x5d", - [0x2c12] = "\x02\x45\x60", [0x2c13] = "\x02\x45\x64", - [0x2c14] = "\x01\x65\x61", [0x2c15] = "\x02\x45\x62", - [0x2c17] = "\x02\x45\x61", [0x2c18] = "\x02\x45\x5e", - [0x2c19] = "\x02\x45\x5f", [0x2c1a] = "\x01\x65\x5f", - [0x2c1b] = "\x02\x45\x65", [0x2c1c] = "\x01\x65\x5e", - [0x2c1d] = "\x0e\x43\x44", [0x2c1e] = "\x01\x65\x63", - [0x2c1f] = "\x01\x65\x62", [0x2c20] = "\x01\x65\x60", - [0x2c22] = "\x02\x45\x63", [0x2c25] = "\x0e\x65\x24", - [0x2c26] = "\x02\x4c\x50", [0x2c28] = "\x02\x4c\x4f", - [0x2c29] = "\x0e\x48\x4b", [0x2c2a] = "\x0e\x48\x4d", - [0x2c2b] = "\x02\x4c\x4b", [0x2c2c] = "\x0e\x48\x50", - [0x2c2d] = "\x0e\x48\x4f", [0x2c2e] = "\x01\x6a\x21", - [0x2c2f] = "\x02\x4c\x4e", [0x2c30] = "\x02\x4c\x4d", - [0x2c31] = "\x01\x6a\x22", [0x2c32] = "\x0e\x48\x52", - [0x2c37] = "\x01\x6e\x29", [0x2c38] = "\x0e\x4d\x55", - [0x2c39] = "\x02\x52\x5a", [0x2c3a] = "\x0e\x4d\x56", - [0x2c3b] = "\x01\x6e\x2a", [0x2c3c] = "\x01\x6e\x26", - [0x2c3d] = "\x01\x6e\x28", [0x2c3e] = "\x0e\x4d\x5a", - [0x2c3f] = "\x01\x6e\x25", [0x2c40] = "\x01\x6e\x27", - [0x2c41] = "\x0e\x4d\x53", [0x2c42] = "\x0e\x4d\x57", - [0x2c44] = "\x02\x58\x79", [0x2c45] = "\x0e\x52\x2a", - [0x2c46] = "\x01\x71\x5a", [0x2c47] = "\x02\x58\x7b", - [0x2c48] = "\x02\x58\x7a", [0x2c49] = "\x0e\x55\x64", - [0x2c4a] = "\x02\x4c\x4c", [0x2c4b] = "\x01\x71\x5c", - [0x2c4c] = "\x01\x71\x5b", [0x2c4d] = "\x01\x71\x58", - [0x2c4e] = "\x01\x71\x59", [0x2c4f] = "\x0e\x52\x2c", - [0x2c53] = "\x0e\x52\x29", [0x2c54] = "\x02\x5e\x22", - [0x2c56] = "\x02\x5d\x7e", [0x2c57] = "\x01\x74\x54", - [0x2c58] = "\x02\x5e\x21", [0x2c5a] = "\x02\x5e\x23", - [0x2c5b] = "\x02\x5d\x7d", [0x2c5c] = "\x02\x5d\x7c", - [0x2c5f] = "\x02\x62\x4c", [0x2c60] = "\x01\x76\x74", - [0x2c61] = "\x01\x76\x72", [0x2c62] = "\x01\x76\x73", - [0x2c64] = "\x0e\x5a\x66", [0x2c66] = "\x0e\x5a\x65", - [0x2c67] = "\x02\x66\x30", [0x2c68] = "\x02\x66\x31", - [0x2c69] = "\x01\x78\x58", [0x2c6a] = "\x0e\x5a\x67", - [0x2c6b] = "\x01\x78\x57", [0x2c6c] = "\x02\x69\x50", - [0x2c6d] = "\x02\x69\x51", [0x2c6e] = "\x02\x69\x4f", - [0x2c6f] = "\x0e\x5c\x64", [0x2c70] = "\x02\x6d\x66", - [0x2c71] = "\x02\x6d\x67", [0x2c72] = "\x0e\x60\x76", - [0x2c73] = "\x0e\x60\x77", [0x2c74] = "\x01\x46\x7e", - [0x2c75] = "\x02\x22\x68", [0x2c76] = "\x01\x4b\x36", - [0x2c78] = "\x02\x28\x45", [0x2c79] = "\x01\x4f\x29", - [0x2c7a] = "\x01\x4f\x28", [0x2c7b] = "\x02\x28\x46", - [0x2c7c] = "\x0e\x2e\x44", [0x2c7d] = "\x0e\x2e\x47", - [0x2c7e] = "\x02\x2c\x61", [0x2c7f] = "\x01\x52\x72", - [0x2c80] = "\x02\x2c\x60", [0x2c81] = "\x01\x52\x73", - [0x2c82] = "\x0e\x2e\x49", [0x2c83] = "\x0e\x2e\x48", - [0x2c84] = "\x01\x57\x39", [0x2c85] = "\x02\x31\x5b", - [0x2c86] = "\x02\x31\x59", [0x2c87] = "\x02\x31\x5f", - [0x2c88] = "\x01\x57\x3a", [0x2c89] = "\x02\x31\x5a", - [0x2c8a] = "\x02\x31\x5e", [0x2c8b] = "\x02\x31\x5c", - [0x2c8c] = "\x02\x31\x5d", [0x2c8f] = "\x02\x37\x6b", - [0x2c90] = "\x02\x37\x6d", [0x2c91] = "\x0e\x37\x72", - [0x2c92] = "\x01\x5c\x44", [0x2c93] = "\x0e\x37\x71", - [0x2c94] = "\x02\x37\x6c", [0x2c95] = "\x01\x5c\x45", - [0x2c96] = "\x01\x61\x28", [0x2c97] = "\x01\x61\x27", - [0x2c98] = "\x01\x61\x26", [0x2c99] = "\x02\x3e\x5f", - [0x2c9a] = "\x0e\x37\x70", [0x2c9e] = "\x02\x45\x69", - [0x2c9f] = "\x01\x65\x64", [0x2ca0] = "\x01\x65\x65", - [0x2ca1] = "\x0e\x43\x46", [0x2ca2] = "\x02\x45\x68", - [0x2ca3] = "\x02\x45\x67", [0x2ca4] = "\x0e\x43\x47", - [0x2ca7] = "\x0e\x65\x7c", [0x2ca8] = "\x02\x4c\x51", - [0x2ca9] = "\x01\x6a\x24", [0x2caa] = "\x01\x6a\x23", - [0x2cab] = "\x02\x4c\x52", [0x2cac] = "\x02\x4c\x53", - [0x2cae] = "\x01\x6e\x2c", [0x2caf] = "\x01\x6e\x2b", - [0x2cb0] = "\x0e\x4d\x5b", [0x2cb1] = "\x02\x59\x21", - [0x2cb2] = "\x02\x52\x5b", [0x2cb3] = "\x02\x52\x5d", - [0x2cb4] = "\x02\x52\x5c", [0x2cb5] = "\x02\x58\x7e", - [0x2cb6] = "\x02\x58\x7c", [0x2cb7] = "\x02\x59\x22", - [0x2cb8] = "\x02\x58\x7d", [0x2cba] = "\x01\x71\x5d", - [0x2cbb] = "\x0e\x52\x2f", [0x2cbd] = "\x0e\x52\x2e", - [0x2cbe] = "\x02\x5e\x24", [0x2cbf] = "\x01\x74\x55", - [0x2cc0] = "\x02\x5e\x25", [0x2cc1] = "\x02\x5e\x26", - [0x2cc2] = "\x0e\x55\x68", [0x2cc4] = "\x01\x76\x75", - [0x2cc5] = "\x01\x76\x76", [0x2cc7] = "\x01\x7a\x22", - [0x2cc8] = "\x0e\x5e\x49", [0x2cc9] = "\x0e\x5e\x48", - [0x2cca] = "\x01\x7c\x3d", [0x2ccb] = "\x01\x47\x21", - [0x2ccc] = "\x0e\x26\x7e", [0x2ccd] = "\x0e\x27\x21", - [0x2ccf] = "\x0e\x2a\x47", [0x2cd0] = "\x0e\x2e\x4e", - [0x2cd1] = "\x02\x2c\x62", [0x2cd2] = "\x0e\x2e\x4f", - [0x2cd3] = "\x0e\x2e\x4d", [0x2cd4] = "\x0e\x2e\x4b", - [0x2cd5] = "\x0e\x2e\x4c", [0x2cd8] = "\x02\x31\x60", - [0x2cd9] = "\x01\x57\x3b", [0x2cda] = "\x0e\x33\x23", - [0x2cdb] = "\x0e\x33\x26", [0x2cdc] = "\x0e\x33\x27", - [0x2cdd] = "\x0e\x33\x24", [0x2cdf] = "\x01\x5d\x7e", - [0x2ce0] = "\x01\x5d\x7d", [0x2ce1] = "\x0e\x37\x73", - [0x2ce2] = "\x0e\x3d\x71", [0x2ce3] = "\x01\x61\x2a", - [0x2ce4] = "\x02\x3e\x61", [0x2ce5] = "\x01\x61\x29", - [0x2ce6] = "\x02\x3e\x60", [0x2ce7] = "\x0e\x3d\x70", - [0x2ce9] = "\x0e\x43\x49", [0x2cea] = "\x0e\x43\x4a", - [0x2ceb] = "\x02\x45\x6a", [0x2cec] = "\x0e\x48\x54", - [0x2ced] = "\x01\x6a\x25", [0x2cee] = "\x02\x4c\x54", - [0x2cef] = "\x01\x6a\x26", [0x2cf0] = "\x0e\x48\x55", - [0x2cf1] = "\x0e\x52\x30", [0x2cf2] = "\x0e\x55\x69", - [0x2cf3] = "\x0e\x55\x6a", [0x2cf5] = "\x0e\x58\x49", - [0x2cf6] = "\x01\x7a\x23", [0x2cf7] = "\x02\x69\x52", - [0x2cf8] = "\x0e\x5f\x55", [0x2cf9] = "\x01\x48\x4c", - [0x2cfa] = "\x01\x4f\x2a", [0x2cfb] = "\x02\x28\x47", - [0x2cfc] = "\x0e\x2e\x51", [0x2cfd] = "\x01\x52\x75", - [0x2cfe] = "\x0e\x2e\x50", [0x2cff] = "\x01\x52\x74", - [0x2d00] = "\x02\x2c\x63", [0x2d01] = "\x02\x2c\x64", - [0x2d04] = "\x02\x31\x62", [0x2d05] = "\x02\x31\x64", - [0x2d06] = "\x01\x57\x3c", [0x2d08] = "\x02\x31\x66", - [0x2d09] = "\x02\x31\x69", [0x2d0a] = "\x02\x31\x67", - [0x2d0b] = "\x0e\x33\x2b", [0x2d0d] = "\x0e\x33\x2a", - [0x2d0e] = "\x02\x31\x68", [0x2d0f] = "\x02\x31\x65", - [0x2d10] = "\x02\x31\x61", [0x2d11] = "\x01\x57\x3d", - [0x2d12] = "\x02\x31\x6a", [0x2d13] = "\x02\x31\x63", - [0x2d14] = "\x0e\x33\x2c", [0x2d16] = "\x0e\x37\x78", - [0x2d17] = "\x0e\x37\x79", [0x2d18] = "\x02\x37\x76", - [0x2d19] = "\x01\x5c\x4b", [0x2d1a] = "\x02\x38\x21", - [0x2d1b] = "\x01\x5c\x48", [0x2d1c] = "\x0e\x37\x77", - [0x2d1d] = "\x02\x37\x78", [0x2d1e] = "\x01\x5c\x4c", - [0x2d1f] = "\x0e\x37\x7b", [0x2d20] = "\x01\x5c\x46", - [0x2d21] = "\x0e\x37\x76", [0x2d22] = "\x02\x37\x73", - [0x2d23] = "\x02\x38\x22", [0x2d24] = "\x02\x37\x74", - [0x2d25] = "\x02\x37\x71", [0x2d26] = "\x01\x5c\x4a", - [0x2d28] = "\x01\x5c\x47", [0x2d29] = "\x0e\x63\x2d", - [0x2d2a] = "\x02\x37\x77", [0x2d2b] = "\x02\x37\x7a", - [0x2d2c] = "\x01\x5c\x49", [0x2d2d] = "\x02\x37\x7b", - [0x2d2e] = "\x01\x5c\x4d", [0x2d2f] = "\x02\x37\x7c", - [0x2d30] = "\x02\x37\x72", [0x2d31] = "\x02\x37\x79", - [0x2d32] = "\x02\x37\x7d", [0x2d33] = "\x02\x37\x75", - [0x2d34] = "\x02\x37\x70", [0x2d35] = "\x02\x37\x6e", - [0x2d36] = "\x0e\x37\x7a", [0x2d37] = "\x0e\x65\x7d", - [0x2d38] = "\x02\x37\x7e", [0x2d3b] = "\x02\x37\x6f", - [0x2d40] = "\x02\x3e\x68", [0x2d41] = "\x0e\x3d\x7b", - [0x2d42] = "\x0e\x3d\x78", [0x2d43] = "\x0e\x3d\x75", - [0x2d44] = "\x02\x3e\x64", [0x2d45] = "\x02\x3e\x6a", - [0x2d46] = "\x01\x61\x2d", [0x2d47] = "\x02\x3e\x63", - [0x2d48] = "\x02\x3e\x65", [0x2d49] = "\x01\x61\x2b", - [0x2d4a] = "\x02\x3e\x62", [0x2d4b] = "\x01\x61\x32", - [0x2d4c] = "\x02\x3e\x66", [0x2d4d] = "\x01\x61\x31", - [0x2d4e] = "\x02\x3e\x67", [0x2d4f] = "\x01\x61\x33", - [0x2d50] = "\x01\x61\x2e", [0x2d51] = "\x01\x61\x34", - [0x2d52] = "\x01\x61\x2f", [0x2d53] = "\x0e\x3d\x79", - [0x2d54] = "\x01\x61\x30", [0x2d55] = "\x0e\x3d\x72", - [0x2d56] = "\x01\x61\x2c", [0x2d57] = "\x0e\x3d\x76", - [0x2d58] = "\x02\x3e\x69", [0x2d59] = "\x0e\x65\x7e", - [0x2d5e] = "\x0e\x43\x4f", [0x2d60] = "\x01\x65\x68", - [0x2d61] = "\x02\x45\x75", [0x2d62] = "\x0e\x43\x4c", - [0x2d63] = "\x02\x45\x78", [0x2d64] = "\x02\x45\x6c", - [0x2d65] = "\x02\x45\x71", [0x2d66] = "\x02\x45\x6b", - [0x2d67] = "\x01\x65\x6a", [0x2d68] = "\x0e\x43\x55", - [0x2d69] = "\x02\x45\x6f", [0x2d6b] = "\x0e\x43\x4d", - [0x2d6c] = "\x0e\x3d\x77", [0x2d6d] = "\x02\x45\x6d", - [0x2d6e] = "\x01\x65\x69", [0x2d6f] = "\x0e\x43\x54", - [0x2d70] = "\x02\x45\x74", [0x2d71] = "\x02\x45\x73", - [0x2d72] = "\x02\x45\x70", [0x2d73] = "\x02\x45\x72", - [0x2d74] = "\x02\x45\x6e", [0x2d75] = "\x01\x6a\x2a", - [0x2d76] = "\x02\x45\x77", [0x2d77] = "\x01\x65\x66", - [0x2d78] = "\x02\x45\x76", [0x2d79] = "\x0e\x43\x51", - [0x2d81] = "\x0e\x48\x56", [0x2d82] = "\x02\x4c\x64", - [0x2d83] = "\x0e\x48\x58", [0x2d84] = "\x01\x6a\x31", - [0x2d85] = "\x02\x4c\x5f", [0x2d86] = "\x0e\x48\x60", - [0x2d87] = "\x01\x6a\x30", [0x2d88] = "\x02\x4c\x55", - [0x2d8a] = "\x02\x4c\x57", [0x2d8b] = "\x01\x6a\x29", - [0x2d8c] = "\x02\x4c\x5c", [0x2d8d] = "\x02\x4c\x5b", - [0x2d8e] = "\x02\x4c\x5e", [0x2d8f] = "\x01\x6a\x2e", - [0x2d90] = "\x02\x4c\x59", [0x2d91] = "\x02\x4c\x58", - [0x2d92] = "\x0e\x48\x5a", [0x2d93] = "\x0e\x48\x5e", - [0x2d94] = "\x01\x6a\x2d", [0x2d95] = "\x01\x6a\x28", - [0x2d96] = "\x02\x4c\x5a", [0x2d97] = "\x01\x6a\x2b", - [0x2d98] = "\x02\x4c\x60", [0x2d99] = "\x02\x4c\x62", - [0x2d9b] = "\x02\x4c\x5d", [0x2d9c] = "\x02\x4c\x56", - [0x2d9d] = "\x01\x6a\x2c", [0x2d9e] = "\x0e\x48\x57", - [0x2d9f] = "\x0e\x48\x5d", [0x2da0] = "\x01\x6e\x34", - [0x2da1] = "\x01\x6a\x27", [0x2da3] = "\x0e\x48\x5c", - [0x2da4] = "\x02\x4c\x63", [0x2dac] = "\x02\x52\x61", - [0x2dad] = "\x01\x6e\x2d", [0x2dae] = "\x0e\x4d\x5c", - [0x2daf] = "\x02\x52\x63", [0x2db1] = "\x01\x6e\x2e", - [0x2db2] = "\x0e\x4d\x65", [0x2db3] = "\x0e\x4d\x5d", - [0x2db4] = "\x01\x6e\x30", [0x2db5] = "\x02\x52\x66", - [0x2db7] = "\x02\x52\x5e", [0x2db8] = "\x01\x6a\x2f", - [0x2db9] = "\x02\x52\x64", [0x2dbe] = "\x02\x52\x60", - [0x2dbf] = "\x0e\x4d\x60", [0x2dc0] = "\x01\x65\x67", - [0x2dc1] = "\x01\x6e\x33", [0x2dc2] = "\x0e\x63\x67", - [0x2dc3] = "\x0e\x63\x66", [0x2dc4] = "\x01\x6e\x2f", - [0x2dc6] = "\x01\x6e\x31", [0x2dc7] = "\x01\x6e\x32", - [0x2dc9] = "\x01\x71\x60", [0x2dca] = "\x02\x52\x65", - [0x2dcb] = "\x02\x52\x5f", [0x2dcc] = "\x01\x6e\x35", - [0x2dcd] = "\x0e\x4d\x63", [0x2dce] = "\x02\x52\x62", - [0x2dd0] = "\x0e\x66\x21", [0x2dd4] = "\x02\x59\x2c", - [0x2dd5] = "\x02\x59\x27", [0x2dd8] = "\x02\x59\x31", - [0x2dd9] = "\x01\x71\x5e", [0x2dda] = "\x02\x59\x29", - [0x2ddb] = "\x01\x71\x62", [0x2ddc] = "\x02\x59\x2f", - [0x2ddd] = "\x02\x59\x26", [0x2dde] = "\x02\x59\x23", - [0x2ddf] = "\x02\x59\x32", [0x2de0] = "\x01\x74\x5b", - [0x2de1] = "\x01\x71\x63", [0x2de2] = "\x02\x59\x2e", - [0x2de3] = "\x02\x59\x24", [0x2de4] = "\x01\x71\x61", - [0x2de5] = "\x02\x59\x28", [0x2de6] = "\x01\x71\x65", - [0x2de7] = "\x02\x59\x25", [0x2de8] = "\x02\x59\x2a", - [0x2de9] = "\x01\x71\x64", [0x2dea] = "\x02\x59\x2d", - [0x2deb] = "\x02\x59\x30", [0x2dec] = "\x0e\x52\x33", - [0x2ded] = "\x0e\x52\x34", [0x2df0] = "\x02\x5e\x38", - [0x2df1] = "\x02\x5e\x39", [0x2df2] = "\x02\x5e\x29", - [0x2df3] = "\x02\x5e\x30", [0x2df4] = "\x02\x5e\x2e", - [0x2df6] = "\x0e\x55\x6d", [0x2df7] = "\x01\x74\x59", - [0x2df8] = "\x02\x5e\x35", [0x2df9] = "\x02\x59\x2b", - [0x2dfa] = "\x0e\x55\x6b", [0x2dfb] = "\x02\x5e\x2c", - [0x2dfc] = "\x0e\x55\x6e", [0x2dfd] = "\x02\x5e\x36", - [0x2dfe] = "\x01\x74\x58", [0x2dff] = "\x02\x5e\x2b", - [0x2e00] = "\x02\x5e\x2a", [0x2e01] = "\x02\x5e\x34", - [0x2e02] = "\x02\x5e\x31", [0x2e03] = "\x02\x5e\x33", - [0x2e05] = "\x02\x5e\x27", [0x2e06] = "\x02\x5e\x37", - [0x2e07] = "\x01\x74\x56", [0x2e08] = "\x0e\x55\x70", - [0x2e09] = "\x02\x5e\x32", [0x2e0a] = "\x02\x5e\x3b", - [0x2e0b] = "\x02\x5e\x2f", [0x2e0c] = "\x01\x74\x5a", - [0x2e0d] = "\x01\x74\x57", [0x2e0e] = "\x02\x5e\x2d", - [0x2e0f] = "\x02\x5e\x28", [0x2e10] = "\x02\x5e\x3a", - [0x2e11] = "\x01\x71\x5f", [0x2e12] = "\x0e\x55\x71", - [0x2e18] = "\x0e\x55\x6f", [0x2e19] = "\x02\x62\x4f", - [0x2e1a] = "\x0e\x58\x50", [0x2e1b] = "\x0e\x58\x4e", - [0x2e1c] = "\x02\x62\x4d", [0x2e1d] = "\x02\x62\x53", - [0x2e1e] = "\x01\x76\x7a", [0x2e1f] = "\x02\x62\x51", - [0x2e20] = "\x02\x62\x50", [0x2e21] = "\x01\x76\x7c", - [0x2e22] = "\x02\x62\x56", [0x2e23] = "\x01\x76\x7b", - [0x2e24] = "\x0e\x58\x51", [0x2e25] = "\x02\x62\x57", - [0x2e26] = "\x02\x62\x54", [0x2e27] = "\x01\x76\x78", - [0x2e28] = "\x02\x62\x55", [0x2e29] = "\x02\x62\x4e", - [0x2e2a] = "\x01\x76\x79", [0x2e2b] = "\x01\x76\x77", - [0x2e2c] = "\x02\x66\x35", [0x2e2d] = "\x02\x62\x52", - [0x2e2e] = "\x0e\x58\x4c", [0x2e2f] = "\x0e\x66\x22", - [0x2e30] = "\x02\x62\x58", [0x2e32] = "\x0e\x66\x23", - [0x2e33] = "\x02\x66\x32", [0x2e34] = "\x0e\x5a\x6f", - [0x2e35] = "\x0e\x5a\x6e", [0x2e37] = "\x01\x78\x5d", - [0x2e38] = "\x01\x78\x5b", [0x2e39] = "\x02\x66\x34", - [0x2e3b] = "\x02\x66\x36", [0x2e3c] = "\x02\x66\x33", - [0x2e3d] = "\x01\x78\x5c", [0x2e3e] = "\x01\x78\x59", - [0x2e3f] = "\x01\x78\x5a", [0x2e40] = "\x01\x78\x5e", - [0x2e42] = "\x0e\x66\x24", [0x2e43] = "\x01\x7a\x25", - [0x2e44] = "\x0e\x5c\x66", [0x2e45] = "\x02\x69\x57", - [0x2e47] = "\x02\x69\x56", [0x2e48] = "\x02\x69\x54", - [0x2e49] = "\x02\x69\x53", [0x2e4a] = "\x02\x69\x55", - [0x2e4b] = "\x0e\x5c\x65", [0x2e4c] = "\x01\x7a\x24", - [0x2e4d] = "\x01\x7a\x26", [0x2e4e] = "\x0e\x66\x25", - [0x2e50] = "\x01\x7a\x7b", [0x2e51] = "\x0e\x5e\x4c", - [0x2e53] = "\x02\x6b\x73", [0x2e54] = "\x02\x6b\x72", - [0x2e56] = "\x0e\x5e\x4b", [0x2e57] = "\x02\x6d\x68", - [0x2e58] = "\x0e\x5f\x58", [0x2e59] = "\x02\x6d\x6a", - [0x2e5a] = "\x02\x6d\x6c", [0x2e5b] = "\x02\x6d\x6b", - [0x2e5c] = "\x02\x6d\x69", [0x2e5d] = "\x0e\x5f\x57", - [0x2e5e] = "\x0e\x60\x3f", [0x2e5f] = "\x01\x7b\x6d", - [0x2e60] = "\x01\x7b\x6c", [0x2e62] = "\x0e\x60\x3e", - [0x2e63] = "\x01\x7c\x3f", [0x2e64] = "\x01\x7c\x3e", - [0x2e65] = "\x01\x7c\x40", [0x2e66] = "\x02\x6f\x3c", - [0x2e67] = "\x02\x6f\x3b", [0x2e68] = "\x0e\x66\x26", - [0x2e69] = "\x02\x71\x2b", [0x2e6a] = "\x02\x70\x46", - [0x2e6b] = "\x02\x71\x2c", [0x2e6c] = "\x01\x7d\x25", - [0x2e6d] = "\x0e\x61\x44", [0x2e6e] = "\x01\x7d\x26", - [0x2e6f] = "\x02\x71\x5c", [0x2e71] = "\x0e\x62\x3a", - [0x2e72] = "\x01\x7d\x4b", [0x2e73] = "\x01\x48\x4d", - [0x2e74] = "\x0e\x2a\x49", [0x2e75] = "\x02\x28\x48", - [0x2e76] = "\x0e\x2a\x48", [0x2e77] = "\x0e\x2e\x52", - [0x2e78] = "\x02\x2c\x66", [0x2e79] = "\x02\x2c\x67", - [0x2e7a] = "\x02\x2c\x65", [0x2e7b] = "\x0e\x2e\x54", - [0x2e7c] = "\x0e\x2e\x53", [0x2e7d] = "\x01\x52\x76", - [0x2e7f] = "\x02\x2c\x68", [0x2e80] = "\x02\x2c\x69", - [0x2e81] = "\x02\x2c\x6a", [0x2e83] = "\x0e\x33\x31", - [0x2e84] = "\x02\x31\x6b", [0x2e85] = "\x02\x31\x71", - [0x2e86] = "\x0e\x33\x2e", [0x2e87] = "\x0e\x33\x30", - [0x2e88] = "\x02\x31\x6f", [0x2e89] = "\x01\x57\x3e", - [0x2e8a] = "\x02\x31\x6d", [0x2e8b] = "\x0e\x33\x32", - [0x2e8c] = "\x02\x31\x6e", [0x2e8d] = "\x02\x31\x70", - [0x2e8e] = "\x0e\x33\x2d", [0x2e91] = "\x02\x31\x6c", - [0x2e92] = "\x01\x5c\x4e", [0x2e93] = "\x0e\x37\x7d", - [0x2e94] = "\x02\x38\x23", [0x2e95] = "\x01\x5c\x50", - [0x2e96] = "\x02\x38\x25", [0x2e97] = "\x01\x5c\x4f", - [0x2e98] = "\x02\x38\x24", [0x2e99] = "\x0e\x37\x7e", - [0x2e9a] = "\x0e\x38\x21", [0x2e9b] = "\x0e\x38\x3e", - [0x2e9c] = "\x0e\x38\x22", [0x2e9e] = "\x02\x3e\x6c", - [0x2e9f] = "\x01\x61\x35", [0x2ea0] = "\x0e\x3e\x21", - [0x2ea1] = "\x02\x3e\x6e", [0x2ea2] = "\x02\x3e\x6b", - [0x2ea3] = "\x02\x38\x26", [0x2ea4] = "\x0e\x3e\x23", - [0x2ea5] = "\x01\x61\x36", [0x2ea6] = "\x0e\x3e\x22", - [0x2ea7] = "\x0e\x3d\x7e", [0x2ea8] = "\x02\x3e\x6d", - [0x2ea9] = "\x0e\x66\x27", [0x2eae] = "\x0e\x43\x58", - [0x2eaf] = "\x02\x45\x7b", [0x2eb0] = "\x0e\x43\x5c", - [0x2eb1] = "\x01\x65\x6b", [0x2eb2] = "\x02\x45\x79", - [0x2eb3] = "\x01\x65\x6c", [0x2eb4] = "\x02\x45\x7a", - [0x2eb5] = "\x01\x65\x6d", [0x2eb7] = "\x0e\x48\x62", - [0x2eb8] = "\x0e\x48\x61", [0x2eb9] = "\x01\x6a\x32", - [0x2eba] = "\x02\x4c\x68", [0x2ebb] = "\x02\x4c\x65", - [0x2ebc] = "\x02\x4c\x67", [0x2ebd] = "\x01\x6a\x33", - [0x2ebe] = "\x01\x6a\x34", [0x2ebf] = "\x02\x4c\x66", - [0x2ec2] = "\x0e\x4d\x6f", [0x2ec3] = "\x0e\x4d\x71", - [0x2ec4] = "\x0e\x4d\x6d", [0x2ec5] = "\x02\x52\x67", - [0x2ec6] = "\x0e\x4d\x70", [0x2ec7] = "\x0e\x4d\x73", - [0x2ec8] = "\x02\x52\x68", [0x2ec9] = "\x0e\x4d\x72", - [0x2eca] = "\x01\x6e\x36", [0x2ecb] = "\x02\x52\x6a", - [0x2ecc] = "\x02\x52\x69", [0x2ecd] = "\x0e\x4d\x6e", - [0x2ece] = "\x01\x23\x23", [0x2ed0] = "\x02\x59\x36", - [0x2ed1] = "\x02\x59\x37", [0x2ed2] = "\x02\x59\x33", - [0x2ed3] = "\x0e\x52\x37", [0x2ed4] = "\x02\x59\x34", - [0x2ed5] = "\x01\x71\x66", [0x2ed6] = "\x01\x71\x67", - [0x2ed7] = "\x02\x59\x35", [0x2ed9] = "\x01\x74\x61", - [0x2eda] = "\x0e\x55\x75", [0x2edb] = "\x0e\x55\x74", - [0x2edc] = "\x01\x74\x5d", [0x2edd] = "\x01\x74\x62", - [0x2ede] = "\x01\x74\x5e", [0x2edf] = "\x01\x74\x60", - [0x2ee0] = "\x01\x74\x5c", [0x2ee1] = "\x0e\x52\x39", - [0x2ee2] = "\x01\x74\x5f", [0x2ee3] = "\x0e\x58\x55", - [0x2ee6] = "\x0e\x58\x54", [0x2ee7] = "\x01\x76\x7d", - [0x2ee8] = "\x02\x5e\x3c", [0x2eea] = "\x02\x66\x38", - [0x2eec] = "\x02\x66\x37", [0x2eed] = "\x0e\x66\x28", - [0x2eee] = "\x02\x69\x58", [0x2eef] = "\x01\x7a\x27", - [0x2ef0] = "\x01\x7a\x28", [0x2ef1] = "\x02\x6d\x6e", - [0x2ef2] = "\x02\x6b\x74", [0x2ef3] = "\x0e\x61\x69", - [0x2ef4] = "\x02\x6d\x6d", [0x2ef5] = "\x0e\x60\x40", - [0x2ef6] = "\x02\x71\x2d", [0x2ef7] = "\x02\x71\x72", - [0x2ef8] = "\x01\x48\x4e", [0x2efa] = "\x0e\x27\x22", - [0x2efb] = "\x01\x4b\x37", [0x2efc] = "\x0e\x2a\x4b", - [0x2efd] = "\x02\x28\x49", [0x2efe] = "\x01\x4f\x2b", - [0x2eff] = "\x0e\x2a\x4a", [0x2f00] = "\x01\x52\x79", - [0x2f01] = "\x02\x2c\x6d", [0x2f02] = "\x01\x52\x77", - [0x2f03] = "\x02\x2c\x6b", [0x2f04] = "\x01\x52\x7c", - [0x2f05] = "\x01\x52\x78", [0x2f06] = "\x01\x52\x7d", - [0x2f07] = "\x01\x52\x7b", [0x2f08] = "\x02\x2c\x6c", - [0x2f09] = "\x01\x52\x7a", [0x2f0a] = "\x01\x57\x42", - [0x2f0b] = "\x01\x57\x41", [0x2f0c] = "\x02\x31\x7c", - [0x2f0d] = "\x01\x57\x4a", [0x2f0e] = "\x02\x31\x75", - [0x2f0f] = "\x02\x31\x7b", [0x2f10] = "\x01\x57\x46", - [0x2f11] = "\x02\x31\x74", [0x2f12] = "\x02\x31\x7a", - [0x2f13] = "\x02\x31\x78", [0x2f14] = "\x01\x57\x45", - [0x2f15] = "\x01\x57\x47", [0x2f16] = "\x02\x31\x77", - [0x2f17] = "\x01\x57\x40", [0x2f18] = "\x02\x31\x76", - [0x2f19] = "\x01\x57\x4b", [0x2f1a] = "\x01\x57\x48", - [0x2f1b] = "\x01\x57\x4c", [0x2f1c] = "\x01\x57\x49", - [0x2f1d] = "\x02\x31\x73", [0x2f1e] = "\x02\x31\x72", - [0x2f1f] = "\x02\x31\x79", [0x2f20] = "\x01\x57\x43", - [0x2f21] = "\x01\x57\x3f", [0x2f22] = "\x01\x57\x44", - [0x2f24] = "\x0e\x33\x37", [0x2f25] = "\x0e\x33\x3b", - [0x2f28] = "\x02\x38\x35", [0x2f29] = "\x02\x38\x2e", - [0x2f2b] = "\x01\x61\x3b", [0x2f2c] = "\x02\x38\x2d", - [0x2f2d] = "\x0e\x38\x29", [0x2f2e] = "\x01\x5c\x54", - [0x2f2f] = "\x01\x5c\x5b", [0x2f30] = "\x01\x5c\x58", - [0x2f31] = "\x01\x5c\x5e", [0x2f32] = "\x01\x5c\x5d", - [0x2f33] = "\x01\x5c\x59", [0x2f34] = "\x0e\x38\x26", - [0x2f35] = "\x02\x38\x27", [0x2f36] = "\x02\x38\x2a", - [0x2f37] = "\x0e\x38\x27", [0x2f38] = "\x02\x38\x29", - [0x2f39] = "\x01\x5c\x55", [0x2f3a] = "\x02\x38\x2b", - [0x2f3b] = "\x02\x38\x34", [0x2f3c] = "\x01\x5c\x56", - [0x2f3d] = "\x02\x38\x28", [0x2f3e] = "\x02\x38\x31", - [0x2f3f] = "\x02\x38\x32", [0x2f40] = "\x01\x5c\x57", - [0x2f41] = "\x02\x38\x2f", [0x2f42] = "\x01\x5c\x5c", - [0x2f43] = "\x01\x5c\x52", [0x2f44] = "\x01\x5c\x5a", - [0x2f45] = "\x02\x38\x2c", [0x2f46] = "\x01\x5c\x51", - [0x2f47] = "\x02\x38\x30", [0x2f48] = "\x0e\x38\x2e", - [0x2f49] = "\x0e\x38\x24", [0x2f4a] = "\x02\x38\x33", - [0x2f4c] = "\x0e\x38\x2b", [0x2f4d] = "\x0e\x3e\x34", - [0x2f4e] = "\x02\x3f\x21", [0x2f4f] = "\x02\x3e\x76", - [0x2f50] = "\x01\x61\x38", [0x2f51] = "\x02\x3e\x7d", - [0x2f52] = "\x02\x3e\x7a", [0x2f53] = "\x02\x3e\x72", - [0x2f54] = "\x02\x3e\x7b", [0x2f55] = "\x01\x61\x3a", - [0x2f56] = "\x02\x3e\x73", [0x2f57] = "\x0e\x3e\x29", - [0x2f58] = "\x02\x3e\x6f", [0x2f59] = "\x0e\x3e\x26", - [0x2f5a] = "\x0e\x3e\x2e", [0x2f5b] = "\x01\x65\x73", - [0x2f5c] = "\x02\x3e\x78", [0x2f5d] = "\x0e\x3e\x2f", - [0x2f5e] = "\x01\x61\x37", [0x2f5f] = "\x02\x3e\x7e", - [0x2f60] = "\x0e\x3e\x28", [0x2f61] = "\x01\x61\x3e", - [0x2f62] = "\x01\x61\x40", [0x2f63] = "\x02\x3e\x71", - [0x2f64] = "\x0e\x3e\x2c", [0x2f66] = "\x01\x61\x3f", - [0x2f67] = "\x02\x3e\x74", [0x2f68] = "\x01\x61\x39", - [0x2f69] = "\x02\x3e\x7c", [0x2f6a] = "\x02\x3e\x75", - [0x2f6b] = "\x02\x3e\x79", [0x2f6c] = "\x0e\x3e\x2a", - [0x2f6d] = "\x02\x3e\x77", [0x2f6e] = "\x01\x61\x3c", - [0x2f6f] = "\x02\x3e\x70", [0x2f70] = "\x01\x61\x41", - [0x2f71] = "\x01\x5c\x53", [0x2f72] = "\x01\x61\x3d", - [0x2f73] = "\x01\x61\x42", [0x2f74] = "\x0e\x3e\x24", - [0x2f75] = "\x0e\x3e\x35", [0x2f76] = "\x0e\x3e\x33", - [0x2f78] = "\x0e\x43\x67", [0x2f79] = "\x01\x65\x6f", - [0x2f7a] = "\x02\x46\x24", [0x2f7b] = "\x02\x46\x26", - [0x2f7c] = "\x02\x46\x28", [0x2f7d] = "\x02\x46\x2c", - [0x2f7e] = "\x0e\x3e\x2b", [0x2f7f] = "\x02\x46\x22", - [0x2f80] = "\x02\x45\x7e", [0x2f81] = "\x01\x65\x71", - [0x2f83] = "\x02\x46\x27", [0x2f84] = "\x02\x46\x2b", - [0x2f85] = "\x02\x46\x23", [0x2f86] = "\x02\x45\x7d", - [0x2f87] = "\x0e\x43\x66", [0x2f88] = "\x02\x45\x7c", - [0x2f89] = "\x0e\x43\x69", [0x2f8a] = "\x0e\x43\x60", - [0x2f8b] = "\x0e\x43\x62", [0x2f8c] = "\x02\x46\x29", - [0x2f8d] = "\x02\x46\x21", [0x2f8e] = "\x02\x46\x25", - [0x2f8f] = "\x01\x65\x72", [0x2f90] = "\x0e\x43\x5e", - [0x2f91] = "\x01\x65\x70", [0x2f92] = "\x02\x46\x2d", - [0x2f93] = "\x01\x65\x6e", [0x2f94] = "\x02\x46\x2a", - [0x2f95] = "\x0e\x43\x64", [0x2f96] = "\x02\x4c\x79", - [0x2f97] = "\x0e\x43\x68", [0x2f98] = "\x0e\x43\x6a", - [0x2f99] = "\x0e\x43\x63", [0x2f9c] = "\x01\x6a\x37", - [0x2f9d] = "\x02\x4c\x71", [0x2f9e] = "\x01\x6e\x43", - [0x2f9f] = "\x02\x4c\x7b", [0x2fa0] = "\x01\x6a\x3a", - [0x2fa1] = "\x02\x4d\x21", [0x2fa2] = "\x01\x6a\x40", - [0x2fa3] = "\x02\x4c\x6c", [0x2fa4] = "\x0e\x48\x74", - [0x2fa6] = "\x02\x4c\x7c", [0x2fa7] = "\x02\x4c\x69", - [0x2fa8] = "\x0e\x48\x6d", [0x2fa9] = "\x02\x4c\x7e", - [0x2faa] = "\x02\x4c\x6d", [0x2fab] = "\x0e\x48\x6e", - [0x2fac] = "\x01\x6a\x47", [0x2fad] = "\x01\x6a\x44", - [0x2fae] = "\x02\x4c\x7d", [0x2faf] = "\x02\x4c\x77", - [0x2fb0] = "\x01\x6a\x36", [0x2fb1] = "\x01\x6a\x3e", - [0x2fb2] = "\x01\x6a\x3d", [0x2fb3] = "\x0e\x48\x70", - [0x2fb4] = "\x01\x6a\x3c", [0x2fb5] = "\x01\x6a\x42", - [0x2fb6] = "\x0e\x48\x69", [0x2fb7] = "\x02\x4c\x6a", - [0x2fb8] = "\x01\x6a\x43", [0x2fb9] = "\x02\x4c\x78", - [0x2fba] = "\x01\x6a\x3f", [0x2fbb] = "\x01\x6a\x35", - [0x2fbc] = "\x02\x4c\x7a", [0x2fbd] = "\x01\x6a\x38", - [0x2fbe] = "\x01\x6a\x39", [0x2fbf] = "\x01\x6a\x41", - [0x2fc0] = "\x02\x4c\x6f", [0x2fc1] = "\x02\x4c\x6e", - [0x2fc2] = "\x02\x4c\x6b", [0x2fc4] = "\x02\x4c\x73", - [0x2fc5] = "\x02\x4c\x70", [0x2fc6] = "\x02\x4c\x74", - [0x2fc7] = "\x01\x6a\x46", [0x2fc8] = "\x0e\x48\x68", - [0x2fc9] = "\x02\x4d\x22", [0x2fca] = "\x01\x6a\x3b", - [0x2fcb] = "\x02\x4c\x75", [0x2fcc] = "\x02\x4c\x76", - [0x2fcd] = "\x0e\x48\x71", [0x2fce] = "\x02\x4c\x72", - [0x2fcf] = "\x0e\x48\x73", [0x2fd0] = "\x0e\x66\x29", - [0x2fd1] = "\x0e\x48\x6b", [0x2fd2] = "\x01\x6a\x45", - [0x2fd3] = "\x0e\x66\x2b", [0x2fd6] = "\x0e\x4e\x22", - [0x2fd7] = "\x02\x52\x6f", [0x2fd8] = "\x01\x6e\x3b", - [0x2fd9] = "\x01\x6e\x44", [0x2fda] = "\x01\x6e\x40", - [0x2fdb] = "\x02\x52\x6c", [0x2fdc] = "\x0e\x4d\x7c", - [0x2fdd] = "\x01\x6e\x3d", [0x2fde] = "\x01\x6e\x41", - [0x2fdf] = "\x02\x52\x78", [0x2fe0] = "\x01\x6e\x37", - [0x2fe1] = "\x02\x52\x70", [0x2fe2] = "\x0e\x4d\x78", - [0x2fe3] = "\x01\x6e\x3f", [0x2fe4] = "\x0e\x4e\x24", - [0x2fe5] = "\x0e\x4e\x2f", [0x2fe6] = "\x02\x52\x73", - [0x2fe7] = "\x02\x52\x6e", [0x2fe8] = "\x01\x6e\x3e", - [0x2fe9] = "\x01\x6e\x42", [0x2fea] = "\x02\x52\x6d", - [0x2feb] = "\x0e\x4e\x2e", [0x2fec] = "\x01\x6e\x3c", - [0x2fed] = "\x0e\x4d\x77", [0x2fee] = "\x02\x52\x77", - [0x2fef] = "\x01\x6e\x39", [0x2ff0] = "\x02\x52\x76", - [0x2ff1] = "\x02\x52\x75", [0x2ff2] = "\x01\x6e\x45", - [0x2ff3] = "\x02\x50\x3b", [0x2ff4] = "\x01\x6e\x38", - [0x2ff5] = "\x0e\x4e\x2b", [0x2ff6] = "\x02\x52\x74", - [0x2ff7] = "\x02\x52\x6b", [0x2ff8] = "\x0e\x4d\x75", - [0x2ff9] = "\x01\x6e\x46", [0x2ffa] = "\x02\x52\x72", - [0x2ffb] = "\x01\x6e\x3a", [0x2ffc] = "\x0e\x4e\x28", - [0x2ffd] = "\x0e\x4e\x29", [0x2ffe] = "\x0e\x4e\x25", - [0x2fff] = "\x0e\x4e\x2c", [0x3000] = "\x0e\x4e\x27", - [0x3001] = "\x0e\x4d\x7e", [0x3002] = "\x0e\x4d\x7d", - [0x3003] = "\x02\x52\x71", [0x3007] = "\x0e\x66\x2a", - [0x3008] = "\x01\x71\x6a", [0x3009] = "\x01\x71\x6f", - [0x300a] = "\x01\x71\x68", [0x300b] = "\x02\x59\x44", - [0x300c] = "\x02\x59\x3b", [0x300d] = "\x02\x59\x47", - [0x300e] = "\x02\x59\x3f", [0x300f] = "\x02\x59\x45", - [0x3010] = "\x01\x71\x70", [0x3011] = "\x01\x71\x69", - [0x3012] = "\x02\x59\x38", [0x3013] = "\x02\x59\x3e", - [0x3014] = "\x02\x59\x48", [0x3015] = "\x02\x59\x41", - [0x3016] = "\x02\x59\x46", [0x3017] = "\x02\x59\x3a", - [0x3019] = "\x0e\x52\x3b", [0x301a] = "\x02\x59\x42", - [0x301b] = "\x01\x71\x6b", [0x301c] = "\x02\x59\x40", - [0x301d] = "\x01\x71\x6e", [0x301e] = "\x01\x71\x6d", - [0x301f] = "\x02\x59\x3c", [0x3020] = "\x02\x59\x3d", - [0x3021] = "\x02\x59\x39", [0x3022] = "\x02\x59\x43", - [0x3023] = "\x01\x71\x6c", [0x3024] = "\x02\x59\x4a", - [0x3025] = "\x02\x59\x49", [0x3026] = "\x0e\x52\x40", - [0x3027] = "\x0e\x52\x3f", [0x3029] = "\x02\x5e\x47", - [0x302a] = "\x02\x5e\x43", [0x302b] = "\x01\x74\x69", - [0x302c] = "\x0e\x55\x79", [0x302d] = "\x02\x5e\x3d", - [0x302e] = "\x01\x74\x63", [0x302f] = "\x01\x74\x73", - [0x3030] = "\x02\x5e\x49", [0x3031] = "\x01\x74\x6b", - [0x3032] = "\x01\x74\x67", [0x3033] = "\x02\x5e\x40", - [0x3034] = "\x01\x74\x6e", [0x3035] = "\x01\x74\x71", - [0x3036] = "\x02\x5e\x4b", [0x3037] = "\x01\x74\x66", - [0x3038] = "\x02\x5e\x42", [0x3039] = "\x01\x74\x6f", - [0x303a] = "\x02\x5e\x4d", [0x303b] = "\x02\x5e\x4a", - [0x303c] = "\x02\x5e\x3e", [0x303d] = "\x01\x74\x6a", - [0x303e] = "\x01\x74\x64", [0x303f] = "\x01\x74\x72", - [0x3040] = "\x02\x5e\x45", [0x3041] = "\x01\x74\x6d", - [0x3042] = "\x02\x5e\x3f", [0x3043] = "\x01\x74\x68", - [0x3044] = "\x02\x5e\x4c", [0x3045] = "\x01\x74\x6c", - [0x3046] = "\x01\x74\x65", [0x3047] = "\x02\x5e\x46", - [0x3048] = "\x01\x74\x70", [0x3049] = "\x02\x5e\x44", - [0x304c] = "\x02\x5e\x48", [0x304d] = "\x0e\x55\x7a", - [0x304f] = "\x0e\x58\x59", [0x3050] = "\x02\x62\x5a", - [0x3051] = "\x02\x62\x60", [0x3052] = "\x01\x77\x25", - [0x3053] = "\x02\x62\x63", [0x3054] = "\x01\x76\x7e", - [0x3055] = "\x01\x77\x21", [0x3056] = "\x02\x62\x5b", - [0x3057] = "\x02\x62\x62", [0x3058] = "\x02\x62\x5d", - [0x3059] = "\x01\x77\x26", [0x305a] = "\x01\x77\x23", - [0x305b] = "\x0e\x58\x5b", [0x305c] = "\x02\x62\x59", - [0x305d] = "\x0e\x58\x58", [0x305e] = "\x01\x77\x22", - [0x305f] = "\x02\x62\x5f", [0x3060] = "\x02\x62\x61", - [0x3061] = "\x01\x77\x24", [0x3062] = "\x02\x62\x5e", - [0x3063] = "\x02\x62\x5c", [0x3064] = "\x0e\x66\x2c", - [0x3066] = "\x0e\x58\x5a", [0x3068] = "\x02\x66\x42", - [0x3069] = "\x01\x78\x62", [0x306a] = "\x01\x78\x63", - [0x306b] = "\x01\x78\x5f", [0x306c] = "\x0e\x5a\x72", - [0x306d] = "\x01\x78\x60", [0x306e] = "\x0e\x5a\x74", - [0x306f] = "\x02\x66\x3e", [0x3070] = "\x02\x66\x3c", - [0x3071] = "\x0e\x5a\x75", [0x3072] = "\x02\x66\x40", - [0x3073] = "\x01\x78\x64", [0x3074] = "\x02\x66\x41", - [0x3075] = "\x02\x66\x3a", [0x3076] = "\x02\x66\x39", - [0x3077] = "\x02\x66\x3d", [0x3078] = "\x02\x66\x3b", - [0x3079] = "\x01\x78\x61", [0x307a] = "\x02\x66\x3f", - [0x307b] = "\x02\x69\x59", [0x307c] = "\x01\x7a\x2b", - [0x307d] = "\x01\x7a\x2a", [0x307e] = "\x02\x69\x5a", - [0x307f] = "\x0e\x5c\x6c", [0x3080] = "\x02\x69\x5c", - [0x3081] = "\x02\x69\x5b", [0x3082] = "\x01\x7a\x2c", - [0x3084] = "\x0e\x5e\x53", [0x3085] = "\x0e\x5e\x50", - [0x3086] = "\x02\x6b\x79", [0x3087] = "\x02\x6b\x76", - [0x3088] = "\x02\x6b\x77", [0x3089] = "\x0e\x5e\x51", - [0x308a] = "\x02\x6b\x75", [0x308b] = "\x02\x6b\x78", - [0x308c] = "\x01\x7a\x7d", [0x308d] = "\x02\x6b\x7a", - [0x308e] = "\x0e\x5e\x52", [0x308f] = "\x01\x7a\x7c", - [0x3091] = "\x02\x6d\x6f", [0x3092] = "\x0e\x5f\x5a", - [0x3093] = "\x01\x7c\x41", [0x3094] = "\x01\x7c\x43", - [0x3095] = "\x02\x6f\x3d", [0x3096] = "\x01\x7c\x42", - [0x3097] = "\x02\x70\x47", [0x3098] = "\x02\x71\x2f", - [0x3099] = "\x02\x71\x31", [0x309a] = "\x02\x71\x2e", - [0x309b] = "\x02\x71\x30", [0x309c] = "\x01\x7d\x39", - [0x309e] = "\x0e\x62\x35", [0x3136] = "\x01\x48\x4f", - [0x3138] = "\x01\x52\x7e", [0x3139] = "\x02\x30\x52", - [0x313a] = "\x01\x57\x4d", [0x313b] = "\x0e\x38\x31", - [0x313d] = "\x01\x5c\x5f", [0x313e] = "\x02\x3f\x22", - [0x313f] = "\x02\x3f\x23", [0x3140] = "\x0e\x66\x2d", - [0x3141] = "\x0e\x48\x77", [0x3143] = "\x02\x59\x4b", - [0x3144] = "\x01\x74\x74", [0x3145] = "\x02\x5e\x4e", - [0x3146] = "\x0e\x55\x7d", [0x3147] = "\x0e\x58\x5c", - [0x3148] = "\x01\x77\x27", [0x314a] = "\x02\x66\x44", - [0x314b] = "\x02\x66\x43", [0x314c] = "\x01\x7a\x2d", - [0x314d] = "\x02\x6b\x7b", [0x314e] = "\x0e\x5f\x5b", - [0x314f] = "\x02\x6d\x70", [0x3150] = "\x01\x7c\x64", - [0x3151] = "\x02\x22\x69", [0x3154] = "\x01\x4f\x2c", - [0x3155] = "\x01\x4b\x38", [0x3158] = "\x02\x2c\x6e", - [0x3159] = "\x0e\x2a\x4e", [0x315b] = "\x02\x32\x24", - [0x315c] = "\x02\x31\x7d", [0x315d] = "\x02\x32\x23", - [0x315e] = "\x02\x32\x21", [0x315f] = "\x01\x57\x4e", - [0x3160] = "\x02\x32\x22", [0x3161] = "\x02\x31\x7e", - [0x3162] = "\x0e\x33\x3c", [0x3163] = "\x02\x38\x36", - [0x3165] = "\x02\x3f\x24", [0x3166] = "\x02\x3f\x25", - [0x3167] = "\x02\x46\x30", [0x3168] = "\x02\x46\x31", - [0x3169] = "\x01\x65\x75", [0x316a] = "\x01\x65\x76", - [0x316b] = "\x02\x46\x2f", [0x316c] = "\x02\x46\x32", - [0x316d] = "\x02\x46\x2e", [0x316e] = "\x01\x65\x74", - [0x316f] = "\x0e\x48\x78", [0x3170] = "\x01\x6a\x48", - [0x3171] = "\x0e\x48\x79", [0x3172] = "\x01\x65\x77", - [0x3173] = "\x02\x4d\x23", [0x3175] = "\x01\x6e\x47", - [0x3176] = "\x02\x52\x79", [0x3177] = "\x01\x6e\x48", - [0x3178] = "\x0e\x4e\x30", [0x3179] = "\x01\x71\x71", - [0x317a] = "\x02\x59\x4e", [0x317b] = "\x02\x59\x4c", - [0x317c] = "\x02\x59\x4d", [0x317d] = "\x02\x5e\x51", - [0x317e] = "\x02\x5e\x50", [0x317f] = "\x02\x5e\x4f", - [0x3183] = "\x02\x66\x45", [0x3184] = "\x0e\x64\x22", - [0x3185] = "\x01\x78\x65", [0x3186] = "\x02\x66\x46", - [0x3187] = "\x02\x6d\x71", [0x3188] = "\x01\x7c\x65", - [0x3189] = "\x02\x70\x48", [0x318a] = "\x01\x48\x50", - [0x318b] = "\x01\x4f\x2e", [0x318c] = "\x01\x4f\x2d", - [0x318d] = "\x02\x2c\x70", [0x318e] = "\x01\x53\x21", - [0x318f] = "\x0e\x2e\x5d", [0x3191] = "\x02\x2c\x6f", - [0x3192] = "\x02\x32\x26", [0x3193] = "\x0e\x33\x3d", - [0x3194] = "\x01\x57\x4f", [0x3195] = "\x02\x38\x37", - [0x3196] = "\x02\x32\x25", [0x3197] = "\x0e\x33\x3f", - [0x3199] = "\x0e\x33\x3e", [0x319a] = "\x01\x5c\x61", - [0x319b] = "\x02\x38\x3a", [0x319c] = "\x02\x38\x38", - [0x319d] = "\x02\x38\x39", [0x319e] = "\x01\x5c\x60", - [0x31a0] = "\x02\x3f\x27", [0x31a1] = "\x02\x3f\x28", - [0x31a2] = "\x02\x3f\x26", [0x31a3] = "\x0e\x43\x6e", - [0x31a4] = "\x01\x65\x7a", [0x31a5] = "\x02\x46\x34", - [0x31a6] = "\x02\x46\x33", [0x31a7] = "\x02\x46\x35", - [0x31a8] = "\x01\x65\x79", [0x31a9] = "\x01\x65\x78", - [0x31ac] = "\x02\x52\x7a", [0x31ad] = "\x02\x52\x7c", - [0x31ae] = "\x0e\x4e\x31", [0x31af] = "\x01\x6e\x49", - [0x31b0] = "\x02\x52\x7b", [0x31b1] = "\x02\x59\x4f", - [0x31b2] = "\x01\x71\x72", [0x31b3] = "\x02\x62\x65", - [0x31b4] = "\x0e\x58\x5d", [0x31b5] = "\x02\x62\x64", - [0x31b6] = "\x01\x78\x66", [0x31b7] = "\x02\x66\x47", - [0x31b8] = "\x01\x78\x68", [0x31b9] = "\x01\x78\x67", - [0x31ba] = "\x02\x69\x5d", [0x31bb] = "\x02\x6b\x7c", - [0x31bc] = "\x01\x7a\x7e", [0x31bd] = "\x01\x48\x51", - [0x31be] = "\x02\x2c\x71", [0x31bf] = "\x01\x53\x22", - [0x31c0] = "\x02\x32\x29", [0x31c1] = "\x01\x57\x51", - [0x31c2] = "\x02\x32\x28", [0x31c3] = "\x02\x32\x27", - [0x31c4] = "\x0e\x33\x42", [0x31c5] = "\x01\x57\x50", - [0x31c6] = "\x0e\x33\x43", [0x31c7] = "\x02\x38\x40", - [0x31c9] = "\x02\x38\x42", [0x31ca] = "\x02\x38\x3b", - [0x31cb] = "\x02\x38\x3c", [0x31cc] = "\x01\x5c\x62", - [0x31cd] = "\x02\x38\x3d", [0x31ce] = "\x01\x5c\x63", - [0x31cf] = "\x02\x38\x41", [0x31d0] = "\x02\x38\x3e", - [0x31d1] = "\x02\x38\x3f", [0x31d2] = "\x01\x5c\x64", - [0x31d3] = "\x0e\x3e\x37", [0x31d4] = "\x01\x61\x44", - [0x31d5] = "\x01\x61\x45", [0x31d6] = "\x0e\x3e\x38", - [0x31d7] = "\x02\x3f\x29", [0x31db] = "\x02\x46\x36", - [0x31dc] = "\x02\x46\x37", [0x31dd] = "\x0e\x43\x72", - [0x31de] = "\x02\x4d\x27", [0x31df] = "\x01\x6a\x4b", - [0x31e0] = "\x01\x6a\x49", [0x31e1] = "\x01\x6a\x4a", - [0x31e2] = "\x02\x4d\x24", [0x31e3] = "\x02\x4d\x25", - [0x31e5] = "\x02\x4d\x26", [0x31e6] = "\x02\x53\x23", - [0x31e7] = "\x0e\x4e\x32", [0x31e8] = "\x02\x53\x24", - [0x31e9] = "\x01\x6e\x4a", [0x31ea] = "\x02\x53\x21", - [0x31eb] = "\x02\x52\x7e", [0x31ec] = "\x02\x53\x22", - [0x31ed] = "\x02\x52\x7d", [0x31ee] = "\x01\x71\x75", - [0x31ef] = "\x02\x59\x50", [0x31f0] = "\x01\x71\x73", - [0x31f1] = "\x01\x71\x74", [0x31f2] = "\x02\x5e\x53", - [0x31f3] = "\x01\x74\x75", [0x31f4] = "\x02\x5e\x52", - [0x31f5] = "\x02\x61\x34", [0x31f6] = "\x0e\x55\x7e", - [0x31f7] = "\x02\x62\x66", [0x31f8] = "\x02\x62\x67", - [0x31f9] = "\x01\x77\x28", [0x31fa] = "\x0e\x58\x61", - [0x31fb] = "\x01\x77\x29", [0x31fc] = "\x01\x74\x76", - [0x31fd] = "\x02\x66\x48", [0x31fe] = "\x02\x66\x49", - [0x31ff] = "\x02\x69\x5e", [0x3200] = "\x01\x7a\x2e", - [0x3201] = "\x01\x48\x52", [0x3202] = "\x0e\x66\x7b", - [0x3203] = "\x01\x48\x53", [0x3204] = "\x01\x57\x53", - [0x3205] = "\x01\x4f\x2f", [0x3206] = "\x01\x57\x52", - [0x3207] = "\x02\x2c\x72", [0x3208] = "\x0e\x38\x36", - [0x320a] = "\x0e\x33\x44", [0x320b] = "\x01\x61\x46", - [0x320c] = "\x01\x48\x54", [0x320d] = "\x01\x53\x24", - [0x320e] = "\x02\x2c\x73", [0x320f] = "\x02\x2c\x74", - [0x3210] = "\x01\x53\x23", [0x3211] = "\x01\x53\x25", - [0x3212] = "\x01\x48\x55", [0x3214] = "\x02\x2c\x75", - [0x3215] = "\x01\x57\x55", [0x3216] = "\x02\x32\x2a", - [0x3217] = "\x01\x57\x57", [0x3218] = "\x01\x57\x54", - [0x3219] = "\x01\x57\x56", [0x321a] = "\x0e\x38\x37", - [0x321b] = "\x02\x38\x45", [0x321c] = "\x01\x5c\x65", - [0x321d] = "\x0e\x38\x39", [0x321e] = "\x02\x38\x44", - [0x321f] = "\x02\x38\x43", [0x3221] = "\x02\x46\x38", - [0x3223] = "\x0e\x49\x22", [0x3224] = "\x02\x4d\x28", - [0x3226] = "\x01\x6e\x4b", [0x3228] = "\x01\x71\x76", - [0x3229] = "\x02\x59\x52", [0x322a] = "\x02\x59\x51", - [0x322b] = "\x0e\x56\x21", [0x322c] = "\x02\x5e\x54", - [0x322e] = "\x0e\x58\x62", [0x322f] = "\x0e\x5c\x6f", - [0x3230] = "\x02\x6b\x7d", [0x3233] = "\x01\x48\x56", - [0x3234] = "\x02\x24\x73", [0x3235] = "\x02\x28\x4a", - [0x3236] = "\x01\x53\x26", [0x3237] = "\x02\x2c\x76", - [0x3239] = "\x02\x32\x2c", [0x323b] = "\x0e\x33\x49", - [0x323c] = "\x0e\x33\x48", [0x323d] = "\x01\x57\x58", - [0x323e] = "\x02\x32\x2b", [0x323f] = "\x01\x57\x59", - [0x3240] = "\x0e\x33\x47", [0x3241] = "\x0e\x66\x2f", - [0x3243] = "\x02\x38\x47", [0x3244] = "\x0e\x38\x3d", - [0x3245] = "\x0e\x38\x3c", [0x3246] = "\x01\x5c\x67", - [0x3247] = "\x02\x38\x46", [0x3248] = "\x02\x38\x48", - [0x3249] = "\x0e\x38\x3b", [0x324a] = "\x01\x5c\x66", - [0x324e] = "\x0e\x3e\x3c", [0x324f] = "\x02\x3f\x2b", - [0x3250] = "\x02\x3f\x2c", [0x3251] = "\x02\x3f\x2a", - [0x3252] = "\x01\x61\x47", [0x3253] = "\x0e\x67\x29", - [0x3256] = "\x01\x65\x7b", [0x3257] = "\x0e\x43\x73", - [0x3258] = "\x01\x65\x7c", [0x3259] = "\x0e\x63\x56", - [0x325a] = "\x01\x6a\x4d", [0x325b] = "\x0e\x49\x23", - [0x325c] = "\x02\x4d\x2a", [0x325d] = "\x02\x4d\x29", - [0x325e] = "\x01\x6a\x4c", [0x325f] = "\x0e\x49\x26", - [0x3260] = "\x0e\x3e\x3b", [0x3261] = "\x0e\x49\x25", - [0x3263] = "\x0e\x66\x30", [0x3264] = "\x02\x53\x25", - [0x3265] = "\x0e\x4e\x34", [0x3266] = "\x0e\x4e\x36", - [0x3267] = "\x02\x53\x26", [0x3268] = "\x0e\x4e\x37", - [0x326a] = "\x0e\x4e\x35", [0x326b] = "\x0e\x4e\x38", - [0x326c] = "\x02\x59\x53", [0x326e] = "\x0e\x52\x43", - [0x326f] = "\x01\x74\x7a", [0x3270] = "\x01\x74\x79", - [0x3271] = "\x01\x74\x77", [0x3272] = "\x01\x74\x78", - [0x3273] = "\x01\x74\x7b", [0x3274] = "\x0e\x56\x22", - [0x3275] = "\x02\x62\x68", [0x3276] = "\x01\x77\x2b", - [0x3277] = "\x01\x77\x2a", [0x3278] = "\x02\x66\x4a", - [0x3279] = "\x02\x69\x5f", [0x327a] = "\x0e\x5c\x70", - [0x327b] = "\x0e\x5c\x71", [0x327c] = "\x0e\x5c\x72", - [0x327d] = "\x01\x7b\x6f", [0x327e] = "\x01\x7b\x6e", - [0x327f] = "\x01\x48\x57", [0x3282] = "\x02\x2f\x7d", - [0x3284] = "\x01\x65\x7e", [0x3285] = "\x01\x61\x48", - [0x3286] = "\x01\x65\x7d", [0x3287] = "\x01\x6a\x4e", - [0x3289] = "\x01\x48\x58", [0x328a] = "\x02\x21\x68", - [0x328b] = "\x01\x48\x59", [0x328c] = "\x01\x48\x5a", - [0x328d] = "\x0e\x24\x35", [0x328e] = "\x0e\x24\x36", - [0x328f] = "\x02\x28\x4b", [0x3290] = "\x02\x24\x76", - [0x3291] = "\x0e\x27\x24", [0x3292] = "\x02\x24\x77", - [0x3293] = "\x01\x4b\x3a", [0x3294] = "\x0e\x27\x26", - [0x3295] = "\x02\x24\x74", [0x3296] = "\x01\x4b\x39", - [0x3297] = "\x0e\x27\x25", [0x3298] = "\x01\x4b\x3c", - [0x3299] = "\x02\x24\x75", [0x329a] = "\x01\x4b\x3e", - [0x329b] = "\x01\x4b\x3d", [0x329c] = "\x02\x24\x78", - [0x329d] = "\x01\x4b\x3b", [0x329f] = "\x0e\x27\x23", - [0x32a1] = "\x01\x4f\x34", [0x32a2] = "\x01\x4f\x32", - [0x32a3] = "\x02\x28\x4d", [0x32a4] = "\x0e\x2a\x56", - [0x32a5] = "\x01\x4f\x31", [0x32a6] = "\x0e\x2a\x5b", - [0x32a7] = "\x0e\x2a\x58", [0x32a8] = "\x0e\x2a\x4f", - [0x32a9] = "\x01\x4f\x36", [0x32aa] = "\x01\x4f\x38", - [0x32ab] = "\x01\x4f\x35", [0x32ac] = "\x0e\x2a\x59", - [0x32ad] = "\x02\x28\x50", [0x32ae] = "\x02\x28\x4c", - [0x32af] = "\x01\x4f\x39", [0x32b0] = "\x0e\x2a\x52", - [0x32b1] = "\x01\x4f\x33", [0x32b2] = "\x01\x4b\x3f", - [0x32b3] = "\x0e\x2a\x54", [0x32b4] = "\x01\x4f\x37", - [0x32b5] = "\x02\x28\x4f", [0x32b6] = "\x0e\x2a\x57", - [0x32b8] = "\x02\x28\x4e", [0x32ba] = "\x01\x4f\x30", - [0x32bb] = "\x0e\x66\x31", [0x32c2] = "\x02\x2c\x7c", - [0x32c3] = "\x01\x53\x2a", [0x32c4] = "\x01\x53\x2b", - [0x32c5] = "\x02\x2c\x7e", [0x32c6] = "\x0e\x2e\x66", - [0x32c7] = "\x02\x2c\x78", [0x32c8] = "\x02\x2c\x7b", - [0x32c9] = "\x02\x2d\x26", [0x32ca] = "\x02\x2d\x24", - [0x32cb] = "\x0e\x2e\x60", [0x32cc] = "\x01\x53\x2c", - [0x32cd] = "\x02\x2d\x2a", [0x32ce] = "\x01\x53\x2f", - [0x32cf] = "\x02\x2d\x27", [0x32d0] = "\x02\x2c\x7d", - [0x32d1] = "\x02\x2c\x7a", [0x32d2] = "\x0e\x2e\x61", - [0x32d3] = "\x0e\x2e\x5e", [0x32d4] = "\x02\x3f\x2e", - [0x32d5] = "\x02\x2d\x25", [0x32d6] = "\x01\x53\x27", - [0x32d7] = "\x02\x2d\x28", [0x32d8] = "\x02\x2c\x77", - [0x32d9] = "\x02\x2d\x22", [0x32da] = "\x01\x53\x29", - [0x32db] = "\x01\x53\x2e", [0x32dc] = "\x02\x2d\x23", - [0x32dd] = "\x01\x53\x32", [0x32de] = "\x01\x53\x30", - [0x32df] = "\x0e\x2e\x65", [0x32e0] = "\x02\x2c\x79", - [0x32e1] = "\x01\x53\x2d", [0x32e2] = "\x0e\x2e\x64", - [0x32e3] = "\x02\x2d\x21", [0x32e4] = "\x01\x53\x31", - [0x32e5] = "\x01\x53\x28", [0x32e6] = "\x02\x2d\x29", - [0x32ed] = "\x01\x57\x5e", [0x32ee] = "\x0e\x33\x4c", - [0x32ef] = "\x01\x57\x67", [0x32f0] = "\x01\x57\x5c", - [0x32f1] = "\x01\x57\x5a", [0x32f2] = "\x02\x32\x2e", - [0x32f3] = "\x01\x57\x62", [0x32f4] = "\x01\x57\x5f", - [0x32f5] = "\x02\x32\x30", [0x32f6] = "\x0e\x33\x4a", - [0x32f7] = "\x0e\x33\x52", [0x32f8] = "\x01\x57\x61", - [0x32f9] = "\x02\x32\x2f", [0x32fa] = "\x02\x32\x2d", - [0x32fb] = "\x02\x32\x32", [0x32fc] = "\x01\x57\x66", - [0x32fd] = "\x01\x57\x64", [0x32fe] = "\x02\x3f\x2d", - [0x32ff] = "\x0e\x33\x4b", [0x3300] = "\x02\x32\x33", - [0x3301] = "\x02\x32\x31", [0x3302] = "\x01\x57\x5b", - [0x3303] = "\x0e\x33\x4e", [0x3304] = "\x0e\x33\x4d", - [0x3305] = "\x01\x57\x5d", [0x3306] = "\x01\x57\x60", - [0x3307] = "\x0e\x33\x4f", [0x3308] = "\x01\x57\x63", - [0x3309] = "\x0e\x2e\x63", [0x330a] = "\x01\x57\x65", - [0x3314] = "\x0e\x3e\x44", [0x3315] = "\x02\x38\x52", - [0x3316] = "\x01\x5c\x69", [0x3317] = "\x0e\x38\x49", - [0x3318] = "\x02\x38\x49", [0x3319] = "\x02\x38\x4b", - [0x331a] = "\x0e\x38\x47", [0x331b] = "\x02\x38\x4c", - [0x331d] = "\x02\x38\x54", [0x331e] = "\x02\x38\x50", - [0x331f] = "\x02\x38\x4e", [0x3321] = "\x02\x38\x51", - [0x3322] = "\x02\x38\x55", [0x3323] = "\x01\x5c\x6a", - [0x3324] = "\x01\x5c\x6e", [0x3325] = "\x02\x38\x4a", - [0x3327] = "\x02\x38\x53", [0x3328] = "\x0e\x63\x2e", - [0x3329] = "\x01\x5c\x6c", [0x332a] = "\x0e\x38\x41", - [0x332b] = "\x01\x5c\x6b", [0x332c] = "\x02\x38\x4f", - [0x332d] = "\x02\x38\x4d", [0x332e] = "\x0e\x38\x42", - [0x332f] = "\x01\x5c\x68", [0x3330] = "\x01\x5c\x6d", - [0x3331] = "\x0e\x38\x45", [0x3334] = "\x0e\x38\x48", - [0x3339] = "\x01\x61\x4e", [0x333a] = "\x02\x3f\x36", - [0x333b] = "\x0e\x3e\x3e", [0x333d] = "\x02\x3f\x34", - [0x333e] = "\x01\x61\x50", [0x3340] = "\x0e\x3e\x43", - [0x3341] = "\x0e\x3e\x45", [0x3342] = "\x0e\x3e\x41", - [0x3343] = "\x02\x3f\x2f", [0x3344] = "\x02\x46\x46", - [0x3345] = "\x0e\x3e\x3d", [0x3346] = "\x01\x61\x4f", - [0x3347] = "\x02\x3f\x33", [0x3348] = "\x0e\x3e\x40", - [0x3349] = "\x0e\x3e\x42", [0x334a] = "\x02\x3f\x30", - [0x334b] = "\x01\x61\x4b", [0x334c] = "\x01\x61\x51", - [0x334d] = "\x02\x3f\x35", [0x334e] = "\x01\x61\x4d", - [0x334f] = "\x02\x3f\x32", [0x3350] = "\x01\x6a\x4f", - [0x3351] = "\x01\x61\x4c", [0x3352] = "\x02\x3f\x31", - [0x3353] = "\x01\x61\x52", [0x3354] = "\x01\x61\x4a", - [0x3355] = "\x01\x61\x49", [0x335b] = "\x02\x46\x3e", - [0x335c] = "\x02\x46\x3c", [0x335d] = "\x0e\x43\x7b", - [0x335e] = "\x02\x46\x42", [0x335f] = "\x0e\x43\x7e", - [0x3360] = "\x02\x46\x3a", [0x3361] = "\x02\x46\x47", - [0x3362] = "\x02\x46\x3f", [0x3363] = "\x0e\x43\x75", - [0x3364] = "\x02\x46\x39", [0x3365] = "\x01\x66\x24", - [0x3366] = "\x01\x66\x2a", [0x3367] = "\x02\x46\x44", - [0x3369] = "\x02\x46\x3d", [0x336a] = "\x0e\x43\x76", - [0x336b] = "\x01\x66\x27", [0x336c] = "\x0e\x43\x77", - [0x336d] = "\x0e\x44\x23", [0x336e] = "\x01\x66\x25", - [0x336f] = "\x02\x46\x45", [0x3370] = "\x01\x66\x22", - [0x3371] = "\x01\x66\x21", [0x3372] = "\x02\x46\x40", - [0x3373] = "\x01\x66\x26", [0x3374] = "\x01\x61\x53", - [0x3375] = "\x0e\x43\x7c", [0x3376] = "\x02\x46\x43", - [0x3377] = "\x02\x46\x3b", [0x3378] = "\x01\x66\x23", - [0x3379] = "\x01\x66\x28", [0x337a] = "\x01\x66\x29", - [0x337d] = "\x0e\x44\x22", [0x337f] = "\x01\x6a\x54", - [0x3380] = "\x01\x6a\x50", [0x3381] = "\x0e\x49\x27", - [0x3382] = "\x01\x6a\x55", [0x3383] = "\x02\x4d\x2d", - [0x3384] = "\x0e\x49\x2a", [0x3386] = "\x02\x4d\x2c", - [0x3387] = "\x02\x4d\x2e", [0x3388] = "\x01\x6a\x52", - [0x3389] = "\x02\x4d\x2b", [0x338a] = "\x01\x6a\x53", - [0x338b] = "\x02\x4d\x31", [0x338c] = "\x02\x4d\x30", - [0x338d] = "\x02\x4d\x2f", [0x338f] = "\x01\x6a\x51", - [0x3392] = "\x0e\x4e\x3b", [0x3393] = "\x0e\x4e\x3d", - [0x3394] = "\x0e\x4e\x39", [0x3395] = "\x02\x53\x2a", - [0x3396] = "\x0e\x4e\x3c", [0x3397] = "\x02\x53\x2d", - [0x3398] = "\x01\x6e\x51", [0x3399] = "\x02\x53\x2c", - [0x339a] = "\x01\x6e\x50", [0x339b] = "\x01\x6e\x4c", - [0x339c] = "\x01\x6e\x4d", [0x339d] = "\x01\x6e\x4e", - [0x339e] = "\x02\x53\x29", [0x339f] = "\x02\x53\x28", - [0x33a0] = "\x01\x6e\x4f", [0x33a1] = "\x0e\x4e\x3a", - [0x33a2] = "\x02\x53\x2b", [0x33a3] = "\x02\x53\x27", - [0x33a6] = "\x02\x59\x55", [0x33a7] = "\x02\x59\x5f", - [0x33a8] = "\x01\x71\x79", [0x33a9] = "\x01\x71\x78", - [0x33aa] = "\x0e\x52\x49", [0x33ab] = "\x02\x59\x59", - [0x33ac] = "\x02\x59\x5b", [0x33ad] = "\x0e\x52\x47", - [0x33ae] = "\x02\x59\x56", [0x33af] = "\x0e\x52\x44", - [0x33b0] = "\x02\x59\x5a", [0x33b1] = "\x02\x59\x54", - [0x33b2] = "\x02\x59\x5d", [0x33b3] = "\x01\x71\x77", - [0x33b4] = "\x02\x59\x5c", [0x33b5] = "\x02\x59\x58", - [0x33b7] = "\x02\x59\x5e", [0x33b8] = "\x0e\x56\x23", - [0x33b9] = "\x02\x59\x57", [0x33ba] = "\x01\x74\x7e", - [0x33bb] = "\x02\x5e\x55", [0x33bc] = "\x02\x5e\x5b", - [0x33bd] = "\x01\x75\x24", [0x33be] = "\x01\x75\x26", - [0x33bf] = "\x01\x75\x23", [0x33c0] = "\x01\x75\x22", - [0x33c2] = "\x01\x75\x21", [0x33c3] = "\x01\x74\x7d", - [0x33c4] = "\x02\x5e\x56", [0x33c5] = "\x02\x5e\x59", - [0x33c6] = "\x01\x74\x7c", [0x33c7] = "\x02\x5e\x5a", - [0x33c8] = "\x0e\x56\x24", [0x33c9] = "\x01\x75\x25", - [0x33ca] = "\x02\x5e\x58", [0x33cc] = "\x02\x5e\x57", - [0x33cd] = "\x01\x77\x2c", [0x33ce] = "\x0e\x58\x65", - [0x33cf] = "\x01\x77\x2d", [0x33d0] = "\x02\x62\x6b", - [0x33d1] = "\x02\x62\x69", [0x33d2] = "\x02\x62\x6a", - [0x33d4] = "\x0e\x5a\x77", [0x33d5] = "\x02\x66\x4c", - [0x33d6] = "\x0e\x5a\x78", [0x33d7] = "\x02\x66\x4b", - [0x33d8] = "\x01\x78\x69", [0x33d9] = "\x02\x69\x61", - [0x33da] = "\x01\x7a\x2f", [0x33db] = "\x02\x69\x60", - [0x33dd] = "\x02\x6b\x7e", [0x33de] = "\x02\x6d\x72", - [0x33df] = "\x01\x7b\x70", [0x33e0] = "\x02\x71\x32", - [0x33e1] = "\x02\x71\x33", [0x33e2] = "\x01\x7c\x44", - [0x33e3] = "\x01\x48\x5b", [0x33e5] = "\x01\x4f\x3a", - [0x33e6] = "\x02\x3f\x37", [0x33e7] = "\x01\x6a\x56", - [0x33e8] = "\x01\x75\x27", [0x33e9] = "\x02\x5e\x5c", - [0x33ea] = "\x01\x48\x5c", [0x33ec] = "\x01\x57\x69", - [0x33ed] = "\x01\x57\x68", [0x33ee] = "\x02\x3f\x38", - [0x33ef] = "\x0e\x3e\x47", [0x33f2] = "\x02\x59\x60", - [0x33f3] = "\x01\x48\x5d", [0x33f4] = "\x01\x53\x33", - [0x33f6] = "\x0e\x3e\x48", [0x33f7] = "\x02\x3f\x39", - [0x33f8] = "\x02\x3f\x3a", [0x33f9] = "\x02\x3f\x3b", - [0x33fa] = "\x01\x6a\x57", [0x33fb] = "\x01\x71\x7a", - [0x33fc] = "\x01\x48\x5e", [0x33fe] = "\x01\x4f\x3b", - [0x33ff] = "\x02\x2d\x2b", [0x3400] = "\x01\x57\x6a", - [0x3401] = "\x02\x32\x34", [0x3402] = "\x01\x5c\x6f", - [0x3403] = "\x0e\x3e\x49", [0x3404] = "\x02\x3f\x3c", - [0x3405] = "\x01\x66\x2b", [0x3407] = "\x01\x6a\x58", - [0x3408] = "\x01\x71\x7b", [0x3409] = "\x01\x75\x28", - [0x340a] = "\x01\x77\x2e", [0x340b] = "\x02\x66\x4d", - [0x340c] = "\x01\x48\x5f", [0x340d] = "\x01\x4f\x3c", - [0x340e] = "\x0e\x2a\x5d", [0x3410] = "\x01\x57\x6b", - [0x3411] = "\x02\x38\x56", [0x3412] = "\x01\x61\x54", - [0x3413] = "\x0e\x49\x2b", [0x3414] = "\x01\x6a\x59", - [0x3415] = "\x02\x4d\x32", [0x3416] = "\x02\x53\x2e", - [0x3418] = "\x0e\x52\x4a", [0x3419] = "\x0e\x58\x68", - [0x341a] = "\x0e\x5a\x79", [0x341b] = "\x01\x48\x60", - [0x341c] = "\x01\x61\x55", [0x341d] = "\x02\x46\x48", - [0x341e] = "\x01\x6a\x5a", [0x341f] = "\x01\x48\x61", - [0x3420] = "\x02\x28\x51", [0x3421] = "\x02\x2d\x2c", - [0x3422] = "\x01\x53\x34", [0x3424] = "\x0e\x2e\x68", - [0x3425] = "\x02\x32\x36", [0x3427] = "\x0e\x33\x57", - [0x3428] = "\x01\x57\x6e", [0x3429] = "\x0e\x33\x58", - [0x342a] = "\x01\x57\x6c", [0x342b] = "\x01\x57\x6d", - [0x342c] = "\x01\x57\x6f", [0x342d] = "\x0e\x33\x55", - [0x342f] = "\x02\x32\x35", [0x3432] = "\x02\x38\x5b", - [0x3433] = "\x02\x38\x58", [0x3434] = "\x02\x38\x5a", - [0x3435] = "\x01\x5c\x70", [0x3436] = "\x01\x5c\x72", - [0x3437] = "\x01\x5c\x71", [0x3438] = "\x02\x38\x57", - [0x3439] = "\x01\x5c\x73", [0x343a] = "\x02\x38\x59", - [0x343c] = "\x02\x3f\x3d", [0x343d] = "\x02\x3f\x3e", - [0x343f] = "\x02\x3f\x3f", [0x3440] = "\x02\x46\x4b", - [0x3441] = "\x0e\x44\x26", [0x3442] = "\x02\x46\x4c", - [0x3444] = "\x02\x46\x4a", [0x3445] = "\x02\x46\x4d", - [0x3447] = "\x01\x66\x2c", [0x3448] = "\x0e\x66\x34", - [0x3449] = "\x02\x46\x49", [0x344a] = "\x0e\x49\x2d", - [0x344b] = "\x01\x6a\x5b", [0x344c] = "\x0e\x49\x2e", - [0x344e] = "\x02\x53\x33", [0x344f] = "\x02\x53\x2f", - [0x3450] = "\x02\x53\x32", [0x3451] = "\x02\x53\x34", - [0x3452] = "\x02\x53\x31", [0x3453] = "\x02\x53\x30", - [0x3455] = "\x02\x59\x61", [0x3456] = "\x02\x59\x62", - [0x3457] = "\x02\x59\x63", [0x3458] = "\x01\x71\x7c", - [0x3459] = "\x01\x71\x7d", [0x345a] = "\x02\x5e\x5e", - [0x345b] = "\x02\x5e\x5d", [0x345c] = "\x02\x5e\x5f", - [0x345e] = "\x02\x62\x6d", [0x345f] = "\x02\x62\x6c", - [0x3461] = "\x02\x66\x4f", [0x3462] = "\x0e\x5a\x7a", - [0x3463] = "\x02\x66\x50", [0x3464] = "\x02\x66\x4e", - [0x3465] = "\x0e\x5a\x7b", [0x3466] = "\x01\x7a\x30", - [0x3468] = "\x02\x69\x62", [0x3469] = "\x02\x69\x63", - [0x346a] = "\x0e\x5e\x55", [0x346b] = "\x02\x6d\x73", - [0x346c] = "\x02\x6f\x3e", [0x346d] = "\x02\x70\x49", - [0x346e] = "\x01\x48\x62", [0x346f] = "\x01\x4b\x40", - [0x3471] = "\x01\x75\x29", [0x3472] = "\x01\x48\x63", - [0x3474] = "\x02\x38\x5c", [0x3475] = "\x02\x3f\x40", - [0x3476] = "\x0e\x5a\x7c", [0x3477] = "\x01\x7c\x6c", - [0x3478] = "\x02\x22\x6a", [0x347b] = "\x0e\x24\x38", - [0x347c] = "\x02\x22\x6b", [0x347d] = "\x02\x22\x6d", - [0x347e] = "\x01\x48\x64", [0x347f] = "\x02\x22\x6e", - [0x3480] = "\x02\x22\x6c", [0x3483] = "\x02\x25\x22", - [0x3484] = "\x02\x25\x23", [0x3485] = "\x02\x24\x7b", - [0x3486] = "\x0e\x27\x28", [0x348a] = "\x02\x25\x21", - [0x348b] = "\x01\x4b\x42", [0x348c] = "\x0e\x27\x29", - [0x348d] = "\x01\x4b\x43", [0x348e] = "\x02\x24\x7c", - [0x348f] = "\x02\x24\x7a", [0x3490] = "\x02\x24\x79", - [0x3491] = "\x02\x24\x7d", [0x3492] = "\x01\x4b\x41", - [0x3493] = "\x02\x24\x7e", [0x3494] = "\x02\x2d\x2d", - [0x3495] = "\x0e\x27\x2b", [0x3498] = "\x02\x28\x56", - [0x3499] = "\x01\x4f\x3f", [0x349a] = "\x02\x28\x55", - [0x349b] = "\x02\x28\x57", [0x349c] = "\x0e\x2a\x60", - [0x349d] = "\x01\x4f\x3e", [0x349e] = "\x02\x28\x5c", - [0x349f] = "\x01\x4f\x42", [0x34a0] = "\x02\x28\x52", - [0x34a1] = "\x02\x28\x60", [0x34a2] = "\x02\x28\x66", - [0x34a3] = "\x01\x4f\x49", [0x34a4] = "\x02\x28\x63", - [0x34a5] = "\x01\x4f\x46", [0x34a6] = "\x0e\x2a\x6b", - [0x34a7] = "\x02\x28\x59", [0x34a8] = "\x02\x28\x5f", - [0x34a9] = "\x02\x28\x61", [0x34aa] = "\x0e\x2a\x66", - [0x34ab] = "\x02\x28\x54", [0x34ac] = "\x01\x4f\x45", - [0x34ad] = "\x01\x4f\x40", [0x34ae] = "\x02\x28\x5a", - [0x34af] = "\x01\x4f\x47", [0x34b0] = "\x01\x4f\x4a", - [0x34b1] = "\x01\x4f\x44", [0x34b2] = "\x0e\x2a\x6c", - [0x34b3] = "\x01\x4f\x3d", [0x34b4] = "\x02\x28\x5e", - [0x34b5] = "\x02\x28\x58", [0x34b6] = "\x02\x28\x65", - [0x34b7] = "\x01\x4f\x4c", [0x34b8] = "\x01\x4f\x48", - [0x34b9] = "\x01\x4f\x43", [0x34ba] = "\x02\x28\x5d", - [0x34bb] = "\x01\x57\x70", [0x34bc] = "\x02\x28\x5b", - [0x34bd] = "\x01\x4f\x41", [0x34be] = "\x01\x4f\x4b", - [0x34c0] = "\x02\x28\x53", [0x34c2] = "\x02\x28\x62", - [0x34c3] = "\x02\x28\x64", [0x34c4] = "\x0e\x2a\x5e", - [0x34c9] = "\x0e\x2a\x68", [0x34d0] = "\x0e\x2e\x76", - [0x34d1] = "\x01\x53\x45", [0x34d2] = "\x01\x53\x3f", - [0x34d3] = "\x01\x53\x47", [0x34d4] = "\x01\x53\x44", - [0x34d5] = "\x02\x2d\x34", [0x34d6] = "\x02\x2d\x37", - [0x34d7] = "\x01\x53\x40", [0x34d8] = "\x0e\x2e\x6a", - [0x34d9] = "\x02\x2d\x2e", [0x34db] = "\x01\x53\x39", - [0x34dc] = "\x01\x53\x43", [0x34dd] = "\x0e\x2e\x6b", - [0x34de] = "\x01\x53\x46", [0x34df] = "\x01\x53\x48", - [0x34e0] = "\x02\x2d\x43", [0x34e1] = "\x02\x2d\x3a", - [0x34e2] = "\x0e\x2e\x78", [0x34e3] = "\x01\x53\x38", - [0x34e4] = "\x02\x2d\x42", [0x34e5] = "\x01\x53\x3c", - [0x34e6] = "\x01\x53\x3a", [0x34e7] = "\x01\x53\x35", - [0x34e8] = "\x02\x2d\x32", [0x34e9] = "\x0e\x2e\x72", - [0x34ea] = "\x02\x2d\x41", [0x34eb] = "\x02\x2d\x36", - [0x34ec] = "\x02\x2d\x39", [0x34ed] = "\x02\x2d\x46", - [0x34ee] = "\x0e\x2e\x74", [0x34ef] = "\x01\x53\x49", - [0x34f0] = "\x02\x2d\x40", [0x34f1] = "\x01\x53\x41", - [0x34f2] = "\x02\x2d\x3b", [0x34f3] = "\x02\x2d\x45", - [0x34f4] = "\x02\x2d\x38", [0x34f5] = "\x02\x2d\x3c", - [0x34f6] = "\x02\x2d\x3f", [0x34f7] = "\x0e\x2e\x69", - [0x34f8] = "\x0e\x2e\x6e", [0x34f9] = "\x02\x2d\x30", - [0x34fa] = "\x02\x2d\x44", [0x34fb] = "\x02\x2d\x3e", - [0x34fc] = "\x0e\x2e\x6f", [0x34fd] = "\x0e\x2e\x7a", - [0x34fe] = "\x02\x2d\x2f", [0x3500] = "\x02\x2d\x33", - [0x3501] = "\x01\x53\x42", [0x3502] = "\x01\x53\x3d", - [0x3503] = "\x01\x53\x36", [0x3504] = "\x01\x53\x3b", - [0x3505] = "\x01\x53\x37", [0x3506] = "\x01\x53\x4a", - [0x3507] = "\x02\x2d\x31", [0x3508] = "\x02\x32\x47", - [0x3509] = "\x01\x53\x3e", [0x350b] = "\x0e\x2e\x79", - [0x350c] = "\x02\x2d\x3d", [0x350d] = "\x02\x29\x42", - [0x350e] = "\x0e\x2e\x77", [0x3510] = "\x0e\x66\x35", - [0x3512] = "\x0e\x66\x37", [0x3516] = "\x02\x32\x4a", - [0x3517] = "\x01\x57\x7e", [0x3518] = "\x0e\x33\x62", - [0x3519] = "\x02\x32\x3a", [0x351b] = "\x02\x32\x45", - [0x351c] = "\x02\x32\x41", [0x351d] = "\x0e\x38\x4d", - [0x351e] = "\x02\x32\x54", [0x351f] = "\x0e\x33\x59", - [0x3520] = "\x02\x32\x4c", [0x3521] = "\x0e\x33\x5f", - [0x3522] = "\x02\x32\x42", [0x3523] = "\x0e\x38\x5b", - [0x3524] = "\x02\x32\x4b", [0x3525] = "\x02\x32\x3c", - [0x3526] = "\x02\x32\x40", [0x3527] = "\x02\x32\x57", - [0x3528] = "\x01\x58\x23", [0x3529] = "\x02\x32\x4f", - [0x352a] = "\x02\x32\x46", [0x352b] = "\x01\x57\x71", - [0x352c] = "\x02\x32\x55", [0x352d] = "\x02\x32\x38", - [0x352f] = "\x02\x32\x4e", [0x3531] = "\x01\x58\x22", - [0x3532] = "\x01\x57\x7b", [0x3533] = "\x02\x32\x37", - [0x3534] = "\x01\x57\x79", [0x3535] = "\x01\x57\x78", - [0x3536] = "\x01\x57\x7d", [0x3537] = "\x02\x32\x4d", - [0x3538] = "\x01\x57\x75", [0x3539] = "\x01\x57\x7c", - [0x353a] = "\x02\x2d\x35", [0x353b] = "\x02\x3f\x41", - [0x353c] = "\x02\x32\x48", [0x353e] = "\x0e\x2a\x5f", - [0x353f] = "\x02\x32\x3e", [0x3540] = "\x01\x58\x21", - [0x3541] = "\x02\x32\x3f", [0x3542] = "\x02\x32\x43", - [0x3543] = "\x01\x58\x24", [0x3544] = "\x02\x32\x39", - [0x3545] = "\x02\x32\x51", [0x3546] = "\x0e\x3e\x57", - [0x3547] = "\x02\x32\x50", [0x3548] = "\x02\x32\x58", - [0x3549] = "\x01\x57\x77", [0x354a] = "\x01\x57\x74", - [0x354b] = "\x02\x32\x56", [0x354c] = "\x02\x32\x52", - [0x354d] = "\x02\x32\x49", [0x354e] = "\x02\x32\x44", - [0x354f] = "\x01\x57\x7a", [0x3550] = "\x01\x57\x76", - [0x3551] = "\x02\x32\x3b", [0x3552] = "\x01\x57\x72", - [0x3553] = "\x02\x32\x53", [0x3554] = "\x01\x57\x73", - [0x3556] = "\x02\x32\x3d", [0x3557] = "\x0e\x33\x5a", - [0x3558] = "\x0e\x33\x63", [0x3562] = "\x0e\x66\x36", - [0x3563] = "\x0e\x2d\x33", [0x3571] = "\x0e\x38\x4e", - [0x3572] = "\x0e\x38\x51", [0x3573] = "\x02\x38\x62", - [0x3574] = "\x02\x38\x64", [0x3575] = "\x02\x38\x69", - [0x3576] = "\x02\x38\x7d", [0x3577] = "\x01\x5d\x23", - [0x3578] = "\x01\x5c\x77", [0x3579] = "\x0e\x38\x54", - [0x357a] = "\x02\x38\x61", [0x357b] = "\x01\x5d\x24", - [0x357c] = "\x01\x5d\x25", [0x357d] = "\x02\x38\x6c", - [0x357e] = "\x02\x38\x73", [0x357f] = "\x02\x38\x79", - [0x3580] = "\x0e\x38\x50", [0x3581] = "\x02\x38\x66", - [0x3583] = "\x02\x38\x6d", [0x3584] = "\x0e\x38\x4f", - [0x3585] = "\x0e\x38\x5d", [0x3586] = "\x01\x5d\x26", - [0x3587] = "\x02\x38\x7b", [0x3588] = "\x02\x38\x76", - [0x3589] = "\x01\x5d\x21", [0x358a] = "\x01\x5c\x7d", - [0x358b] = "\x02\x38\x72", [0x358c] = "\x02\x38\x6e", - [0x358d] = "\x02\x38\x60", [0x358e] = "\x01\x5c\x74", - [0x358f] = "\x02\x38\x65", [0x3590] = "\x02\x38\x5d", - [0x3591] = "\x0e\x38\x55", [0x3592] = "\x01\x5c\x7c", - [0x3593] = "\x01\x5c\x7e", [0x3594] = "\x02\x38\x6a", - [0x3595] = "\x02\x38\x67", [0x3596] = "\x01\x5c\x79", - [0x3597] = "\x02\x38\x77", [0x3598] = "\x01\x5c\x76", - [0x3599] = "\x02\x38\x68", [0x359a] = "\x02\x3f\x6a", - [0x359b] = "\x02\x38\x70", [0x359c] = "\x0e\x38\x5e", - [0x359d] = "\x02\x38\x6f", [0x359e] = "\x01\x5c\x75", - [0x359f] = "\x0e\x38\x57", [0x35a0] = "\x01\x5d\x22", - [0x35a1] = "\x0e\x38\x52", [0x35a2] = "\x01\x5c\x78", - [0x35a3] = "\x02\x38\x5e", [0x35a4] = "\x02\x38\x63", - [0x35a5] = "\x02\x38\x74", [0x35a6] = "\x02\x38\x7a", - [0x35a7] = "\x01\x5d\x27", [0x35a8] = "\x02\x38\x5f", - [0x35a9] = "\x02\x38\x6b", [0x35aa] = "\x02\x38\x71", - [0x35ab] = "\x01\x5c\x7b", [0x35ad] = "\x0e\x38\x58", - [0x35ae] = "\x02\x38\x7c", [0x35af] = "\x02\x38\x75", - [0x35b0] = "\x02\x38\x78", [0x35b7] = "\x0e\x38\x5f", - [0x35bd] = "\x01\x5c\x7a", [0x35bf] = "\x02\x3f\x51", - [0x35c0] = "\x02\x3f\x45", [0x35c1] = "\x01\x61\x5d", - [0x35c2] = "\x02\x3f\x62", [0x35c3] = "\x02\x3f\x6b", - [0x35c4] = "\x02\x3f\x6e", [0x35c5] = "\x01\x61\x5b", - [0x35c6] = "\x02\x3f\x4d", [0x35c7] = "\x02\x3f\x66", - [0x35c8] = "\x02\x3f\x4e", [0x35c9] = "\x02\x3f\x5c", - [0x35ca] = "\x01\x61\x68", [0x35cb] = "\x02\x3f\x58", - [0x35cc] = "\x01\x61\x65", [0x35cd] = "\x0e\x3e\x5e", - [0x35ce] = "\x02\x3f\x59", [0x35cf] = "\x02\x3f\x42", - [0x35d1] = "\x02\x3f\x67", [0x35d2] = "\x0e\x3e\x4f", - [0x35d3] = "\x0e\x3e\x59", [0x35d4] = "\x01\x61\x6e", - [0x35d5] = "\x02\x3f\x64", [0x35d6] = "\x02\x3f\x5a", - [0x35d7] = "\x02\x3f\x70", [0x35d8] = "\x02\x3f\x55", - [0x35d9] = "\x02\x46\x6d", [0x35da] = "\x0e\x3e\x4d", - [0x35db] = "\x02\x3f\x73", [0x35dc] = "\x01\x61\x6c", - [0x35dd] = "\x02\x3f\x53", [0x35de] = "\x02\x3f\x5f", - [0x35df] = "\x01\x61\x6f", [0x35e0] = "\x01\x61\x5a", - [0x35e1] = "\x02\x3f\x57", [0x35e2] = "\x02\x3f\x71", - [0x35e3] = "\x02\x3f\x50", [0x35e4] = "\x02\x3f\x49", - [0x35e5] = "\x02\x3f\x54", [0x35e6] = "\x0e\x3e\x5f", - [0x35e7] = "\x02\x3f\x48", [0x35e8] = "\x02\x3f\x46", - [0x35e9] = "\x01\x61\x56", [0x35ea] = "\x02\x3f\x68", - [0x35eb] = "\x02\x3f\x4f", [0x35ec] = "\x02\x3f\x6c", - [0x35ed] = "\x0e\x3e\x4b", [0x35ee] = "\x02\x3f\x6d", - [0x35ef] = "\x01\x61\x5e", [0x35f0] = "\x01\x61\x63", - [0x35f1] = "\x01\x61\x5f", [0x35f2] = "\x01\x61\x67", - [0x35f3] = "\x02\x3f\x63", [0x35f4] = "\x01\x61\x60", - [0x35f5] = "\x02\x3f\x5b", [0x35f6] = "\x02\x3f\x4b", - [0x35f8] = "\x01\x61\x58", [0x35f9] = "\x02\x3f\x43", - [0x35fa] = "\x02\x3f\x65", [0x35fb] = "\x02\x3f\x6f", - [0x35fc] = "\x02\x3f\x4a", [0x35fd] = "\x01\x61\x66", - [0x35fe] = "\x02\x3f\x74", [0x35ff] = "\x02\x3f\x56", - [0x3600] = "\x0e\x3e\x52", [0x3601] = "\x02\x3f\x52", - [0x3602] = "\x0e\x3e\x5c", [0x3603] = "\x01\x61\x57", - [0x3604] = "\x01\x61\x6b", [0x3605] = "\x0e\x3e\x5a", - [0x3606] = "\x02\x3f\x61", [0x3607] = "\x01\x61\x6d", - [0x3608] = "\x0e\x3e\x50", [0x3609] = "\x02\x3f\x5d", - [0x360a] = "\x01\x61\x62", [0x360b] = "\x01\x61\x5c", - [0x360c] = "\x01\x61\x64", [0x360d] = "\x01\x61\x59", - [0x360e] = "\x01\x61\x6a", [0x360f] = "\x02\x3f\x5e", - [0x3610] = "\x02\x3f\x4c", [0x3611] = "\x02\x3f\x60", - [0x3612] = "\x02\x3f\x47", [0x3613] = "\x02\x3f\x69", - [0x3614] = "\x0e\x3e\x58", [0x3616] = "\x0e\x3e\x5d", - [0x3617] = "\x0e\x3e\x56", [0x3618] = "\x0e\x3e\x4e", - [0x361b] = "\x02\x3f\x72", [0x361e] = "\x0e\x66\x39", - [0x361f] = "\x0e\x3e\x5b", [0x3621] = "\x0e\x66\x38", - [0x3623] = "\x02\x3f\x44", [0x3629] = "\x02\x46\x6c", - [0x362a] = "\x0e\x44\x2d", [0x362b] = "\x02\x47\x24", - [0x362c] = "\x01\x65\x5c", [0x362d] = "\x02\x46\x71", - [0x362e] = "\x0e\x44\x31", [0x362f] = "\x02\x46\x6f", - [0x3630] = "\x02\x46\x5a", [0x3631] = "\x01\x66\x30", - [0x3632] = "\x02\x46\x6a", [0x3633] = "\x02\x46\x7e", - [0x3634] = "\x02\x46\x66", [0x3635] = "\x01\x66\x38", - [0x3636] = "\x02\x46\x7d", [0x3637] = "\x02\x46\x64", - [0x3638] = "\x01\x61\x69", [0x3639] = "\x02\x46\x74", - [0x363a] = "\x02\x46\x65", [0x363b] = "\x02\x46\x7b", - [0x363c] = "\x01\x66\x37", [0x363d] = "\x01\x66\x2f", - [0x363e] = "\x0e\x44\x3a", [0x363f] = "\x02\x46\x4f", - [0x3640] = "\x02\x46\x57", [0x3641] = "\x0e\x44\x35", - [0x3642] = "\x02\x46\x70", [0x3643] = "\x02\x46\x68", - [0x3644] = "\x02\x47\x23", [0x3645] = "\x02\x46\x6b", - [0x3646] = "\x01\x66\x3d", [0x3647] = "\x02\x46\x7c", - [0x3648] = "\x0e\x44\x2c", [0x3649] = "\x01\x66\x34", - [0x364a] = "\x0e\x44\x3e", [0x364b] = "\x02\x46\x6e", - [0x364c] = "\x02\x46\x76", [0x364d] = "\x02\x46\x5b", - [0x364e] = "\x02\x46\x75", [0x364f] = "\x0e\x44\x27", - [0x3650] = "\x02\x47\x28", [0x3651] = "\x02\x46\x56", - [0x3652] = "\x02\x46\x77", [0x3653] = "\x0e\x44\x33", - [0x3654] = "\x02\x47\x26", [0x3655] = "\x0e\x44\x3f", - [0x3656] = "\x02\x46\x50", [0x3657] = "\x01\x61\x61", - [0x3658] = "\x0e\x44\x40", [0x3659] = "\x02\x46\x5e", - [0x365a] = "\x02\x46\x5d", [0x365b] = "\x01\x66\x36", - [0x365c] = "\x0e\x44\x32", [0x365d] = "\x02\x46\x61", - [0x365e] = "\x02\x46\x63", [0x365f] = "\x02\x46\x72", - [0x3660] = "\x02\x47\x25", [0x3661] = "\x01\x66\x39", - [0x3662] = "\x0e\x44\x38", [0x3663] = "\x01\x66\x3a", - [0x3664] = "\x0e\x44\x30", [0x3665] = "\x02\x46\x55", - [0x3666] = "\x01\x66\x32", [0x3667] = "\x02\x46\x59", - [0x3668] = "\x02\x47\x21", [0x3669] = "\x01\x66\x3b", - [0x366b] = "\x01\x66\x33", [0x366c] = "\x01\x66\x35", - [0x366d] = "\x01\x66\x3c", [0x366e] = "\x02\x47\x27", - [0x366f] = "\x02\x46\x78", [0x3670] = "\x02\x46\x73", - [0x3671] = "\x0e\x44\x3c", [0x3672] = "\x0e\x44\x2f", - [0x3673] = "\x02\x46\x60", [0x3674] = "\x02\x46\x5f", - [0x3675] = "\x01\x66\x31", [0x3676] = "\x02\x46\x51", - [0x3677] = "\x01\x66\x2e", [0x3678] = "\x02\x46\x69", - [0x3679] = "\x02\x46\x52", [0x367a] = "\x02\x46\x67", - [0x367b] = "\x0e\x44\x2e", [0x367d] = "\x02\x46\x5c", - [0x367e] = "\x02\x47\x22", [0x367f] = "\x0e\x44\x2a", - [0x3680] = "\x0e\x44\x39", [0x3682] = "\x01\x66\x2d", - [0x3683] = "\x0e\x44\x3b", [0x3684] = "\x0e\x44\x28", - [0x3686] = "\x02\x46\x58", [0x368d] = "\x02\x46\x54", - [0x368e] = "\x02\x46\x7a", [0x368f] = "\x02\x46\x53", - [0x3690] = "\x01\x6a\x68", [0x3691] = "\x02\x4d\x5a", - [0x3692] = "\x0e\x49\x35", [0x3693] = "\x0e\x49\x44", - [0x3694] = "\x02\x4d\x49", [0x3695] = "\x0e\x49\x33", - [0x3696] = "\x0e\x49\x38", [0x3697] = "\x02\x4d\x33", - [0x3698] = "\x02\x4d\x51", [0x3699] = "\x01\x6a\x60", - [0x369a] = "\x02\x4d\x42", [0x369b] = "\x02\x4d\x4c", - [0x369c] = "\x01\x6a\x63", [0x369d] = "\x02\x4d\x45", - [0x369e] = "\x01\x6a\x61", [0x369f] = "\x02\x4d\x36", - [0x36a0] = "\x02\x4d\x54", [0x36a1] = "\x02\x4d\x35", - [0x36a2] = "\x02\x4d\x48", [0x36a3] = "\x0e\x49\x3c", - [0x36a4] = "\x02\x4d\x34", [0x36a5] = "\x0e\x49\x39", - [0x36a7] = "\x02\x4d\x46", [0x36a8] = "\x02\x4d\x4f", - [0x36a9] = "\x02\x4d\x4d", [0x36aa] = "\x02\x4d\x41", - [0x36ab] = "\x02\x4d\x3c", [0x36ac] = "\x02\x4d\x3a", - [0x36ad] = "\x0e\x49\x42", [0x36ae] = "\x02\x4d\x3b", - [0x36af] = "\x02\x4d\x4e", [0x36b0] = "\x02\x4d\x59", - [0x36b1] = "\x02\x4d\x43", [0x36b2] = "\x01\x6a\x62", - [0x36b3] = "\x0e\x49\x3b", [0x36b4] = "\x02\x4d\x3e", - [0x36b5] = "\x0e\x49\x3a", [0x36b6] = "\x02\x4d\x52", - [0x36b7] = "\x0e\x49\x41", [0x36b8] = "\x01\x6a\x65", - [0x36b9] = "\x02\x4d\x3d", [0x36ba] = "\x02\x4d\x37", - [0x36bb] = "\x02\x4d\x47", [0x36bc] = "\x01\x6a\x69", - [0x36bd] = "\x0e\x49\x32", [0x36bf] = "\x01\x6a\x5d", - [0x36c0] = "\x01\x6a\x66", [0x36c1] = "\x02\x4d\x3f", - [0x36c2] = "\x02\x4d\x39", [0x36c3] = "\x0e\x49\x36", - [0x36c4] = "\x01\x6a\x5f", [0x36c5] = "\x02\x46\x79", - [0x36c6] = "\x01\x6a\x5e", [0x36c7] = "\x02\x4d\x4a", - [0x36c8] = "\x0e\x44\x36", [0x36c9] = "\x01\x6a\x5c", - [0x36ca] = "\x01\x6a\x6b", [0x36cb] = "\x01\x6a\x64", - [0x36cc] = "\x02\x4d\x4b", [0x36cd] = "\x02\x4d\x40", - [0x36ce] = "\x02\x4d\x38", [0x36cf] = "\x02\x4d\x53", - [0x36d0] = "\x02\x4d\x44", [0x36d1] = "\x01\x6a\x6a", - [0x36d2] = "\x02\x4d\x57", [0x36d3] = "\x01\x6a\x67", - [0x36d4] = "\x02\x4d\x56", [0x36d5] = "\x0e\x49\x3f", - [0x36d6] = "\x02\x4d\x50", [0x36d7] = "\x02\x4d\x55", - [0x36d8] = "\x0e\x49\x3e", [0x36da] = "\x0e\x49\x43", - [0x36db] = "\x02\x4d\x58", [0x36de] = "\x0e\x66\x3b", - [0x36e1] = "\x0e\x66\x3c", [0x36e2] = "\x0e\x66\x3a", - [0x36e4] = "\x0e\x49\x3d", [0x36e7] = "\x02\x53\x5c", - [0x36e8] = "\x02\x53\x5d", [0x36e9] = "\x02\x53\x50", - [0x36ea] = "\x02\x53\x4f", [0x36eb] = "\x02\x53\x4b", - [0x36ec] = "\x01\x6e\x5d", [0x36ed] = "\x0e\x4e\x4f", - [0x36ee] = "\x01\x6e\x55", [0x36ef] = "\x02\x53\x5f", - [0x36f0] = "\x02\x53\x5e", [0x36f1] = "\x02\x46\x4e", - [0x36f2] = "\x02\x53\x48", [0x36f3] = "\x02\x53\x4c", - [0x36f4] = "\x02\x53\x46", [0x36f5] = "\x0e\x4e\x44", - [0x36f6] = "\x02\x53\x59", [0x36f7] = "\x02\x53\x4a", - [0x36f8] = "\x0e\x4e\x42", [0x36f9] = "\x02\x53\x60", - [0x36fa] = "\x02\x53\x43", [0x36fb] = "\x02\x53\x41", - [0x36fc] = "\x02\x53\x4d", [0x36fd] = "\x02\x53\x57", - [0x36fe] = "\x02\x53\x52", [0x36ff] = "\x01\x6e\x5f", - [0x3700] = "\x02\x53\x38", [0x3701] = "\x0e\x4e\x40", - [0x3702] = "\x02\x53\x56", [0x3703] = "\x0e\x4e\x4c", - [0x3704] = "\x0e\x4e\x46", [0x3705] = "\x0e\x4e\x54", - [0x3706] = "\x01\x6e\x60", [0x3707] = "\x02\x46\x62", - [0x3708] = "\x02\x53\x44", [0x3709] = "\x02\x53\x3b", - [0x370a] = "\x02\x53\x3e", [0x370b] = "\x02\x53\x64", - [0x370c] = "\x02\x53\x45", [0x370d] = "\x02\x53\x3c", - [0x370e] = "\x02\x53\x3a", [0x370f] = "\x02\x53\x37", - [0x3711] = "\x01\x6e\x59", [0x3712] = "\x02\x53\x4e", - [0x3713] = "\x01\x6e\x58", [0x3714] = "\x01\x6e\x5c", - [0x3715] = "\x02\x53\x49", [0x3716] = "\x02\x53\x51", - [0x3717] = "\x01\x6e\x52", [0x3718] = "\x02\x53\x61", - [0x3719] = "\x02\x53\x65", [0x371a] = "\x01\x6e\x54", - [0x371b] = "\x0e\x4e\x4b", [0x371c] = "\x02\x53\x40", - [0x371d] = "\x02\x53\x54", [0x371e] = "\x02\x53\x58", - [0x371f] = "\x02\x53\x3d", [0x3720] = "\x02\x53\x62", - [0x3721] = "\x01\x6e\x5b", [0x3723] = "\x01\x6e\x5a", - [0x3724] = "\x02\x53\x35", [0x3725] = "\x01\x6e\x5e", - [0x3726] = "\x02\x53\x5b", [0x3727] = "\x02\x53\x3f", - [0x3728] = "\x02\x53\x53", [0x3729] = "\x02\x53\x39", - [0x372a] = "\x02\x53\x47", [0x372b] = "\x02\x53\x42", - [0x372c] = "\x01\x6e\x56", [0x372d] = "\x01\x6e\x57", - [0x372e] = "\x02\x53\x55", [0x372f] = "\x02\x53\x66", - [0x3730] = "\x02\x53\x63", [0x3731] = "\x02\x53\x5a", - [0x3733] = "\x0e\x4e\x4d", [0x3734] = "\x0e\x4e\x4e", - [0x3735] = "\x0e\x4e\x52", [0x373b] = "\x02\x53\x36", - [0x373d] = "\x01\x6e\x53", [0x373e] = "\x02\x59\x74", - [0x373f] = "\x0e\x52\x5a", [0x3740] = "\x02\x59\x6b", - [0x3741] = "\x02\x59\x6e", [0x3742] = "\x0e\x52\x52", - [0x3743] = "\x01\x72\x25", [0x3744] = "\x02\x59\x70", - [0x3745] = "\x02\x59\x65", [0x3746] = "\x02\x59\x6c", - [0x3747] = "\x02\x59\x72", [0x3748] = "\x01\x72\x22", - [0x3749] = "\x01\x72\x26", [0x374a] = "\x01\x71\x7e", - [0x374b] = "\x0e\x52\x59", [0x374c] = "\x0e\x52\x50", - [0x374d] = "\x02\x59\x67", [0x374e] = "\x02\x59\x77", - [0x3751] = "\x02\x59\x71", [0x3753] = "\x02\x59\x68", - [0x3754] = "\x02\x5a\x22", [0x3755] = "\x02\x59\x7a", - [0x3756] = "\x02\x59\x64", [0x3757] = "\x02\x5e\x72", - [0x3758] = "\x02\x59\x6a", [0x3759] = "\x01\x72\x21", - [0x375a] = "\x0e\x52\x58", [0x375b] = "\x02\x59\x75", - [0x375c] = "\x0e\x52\x54", [0x375d] = "\x02\x5a\x21", - [0x375e] = "\x01\x72\x29", [0x375f] = "\x0e\x52\x56", - [0x3760] = "\x02\x59\x7c", [0x3761] = "\x02\x59\x69", - [0x3762] = "\x02\x59\x6f", [0x3763] = "\x02\x59\x73", - [0x3764] = "\x02\x59\x6d", [0x3765] = "\x02\x5a\x23", - [0x3766] = "\x02\x59\x7e", [0x3767] = "\x02\x59\x7b", - [0x3768] = "\x01\x72\x23", [0x3769] = "\x01\x72\x24", - [0x376a] = "\x01\x72\x28", [0x376b] = "\x02\x59\x66", - [0x376c] = "\x02\x5a\x24", [0x376d] = "\x01\x72\x27", - [0x376e] = "\x02\x59\x78", [0x376f] = "\x0e\x52\x4f", - [0x3770] = "\x0e\x52\x55", [0x3771] = "\x02\x59\x76", - [0x3773] = "\x0e\x66\x3d", [0x3775] = "\x02\x59\x79", - [0x3776] = "\x02\x5f\x21", [0x3777] = "\x02\x5e\x6c", - [0x3778] = "\x02\x5e\x71", [0x3779] = "\x02\x5e\x7e", - [0x377a] = "\x02\x5e\x70", [0x377b] = "\x02\x5e\x68", - [0x377c] = "\x02\x5e\x6d", [0x377e] = "\x01\x75\x2c", - [0x377f] = "\x0e\x56\x2b", [0x3780] = "\x02\x5e\x61", - [0x3781] = "\x02\x5e\x79", [0x3782] = "\x02\x5e\x7b", - [0x3783] = "\x02\x5e\x60", [0x3784] = "\x01\x75\x2b", - [0x3785] = "\x02\x5e\x7d", [0x3786] = "\x02\x5e\x75", - [0x3787] = "\x01\x75\x32", [0x3788] = "\x02\x5e\x7c", - [0x3789] = "\x02\x5e\x6e", [0x378a] = "\x01\x75\x34", - [0x378b] = "\x02\x5e\x66", [0x378c] = "\x02\x59\x7d", - [0x378d] = "\x02\x5e\x76", [0x378e] = "\x02\x5e\x73", - [0x378f] = "\x02\x5e\x62", [0x3790] = "\x02\x5f\x23", - [0x3791] = "\x01\x75\x2e", [0x3792] = "\x0e\x56\x28", - [0x3793] = "\x0e\x56\x29", [0x3794] = "\x01\x75\x2f", - [0x3795] = "\x02\x5e\x64", [0x3796] = "\x02\x5e\x74", - [0x3797] = "\x0e\x56\x2d", [0x3798] = "\x02\x5f\x22", - [0x3799] = "\x02\x5e\x77", [0x379a] = "\x02\x5e\x6a", - [0x379b] = "\x01\x75\x31", [0x379c] = "\x01\x75\x2d", - [0x379d] = "\x02\x5e\x78", [0x379e] = "\x02\x5e\x6b", - [0x379f] = "\x02\x5f\x24", [0x37a0] = "\x02\x5e\x65", - [0x37a1] = "\x02\x5e\x6f", [0x37a2] = "\x02\x5e\x7a", - [0x37a3] = "\x02\x5e\x67", [0x37a4] = "\x02\x5e\x69", - [0x37a6] = "\x01\x75\x35", [0x37a7] = "\x02\x5e\x63", - [0x37a8] = "\x01\x75\x33", [0x37a9] = "\x01\x77\x30", - [0x37aa] = "\x01\x75\x2a", [0x37ab] = "\x0e\x56\x2c", - [0x37ac] = "\x0e\x56\x30", [0x37af] = "\x01\x75\x30", - [0x37b0] = "\x01\x77\x34", [0x37b1] = "\x02\x62\x7d", - [0x37b2] = "\x0e\x58\x6c", [0x37b3] = "\x02\x62\x73", - [0x37b4] = "\x02\x62\x6e", [0x37b5] = "\x02\x62\x74", - [0x37b6] = "\x02\x62\x7e", [0x37b7] = "\x02\x63\x24", - [0x37b8] = "\x02\x63\x23", [0x37b9] = "\x01\x77\x36", - [0x37ba] = "\x01\x77\x35", [0x37bb] = "\x0e\x58\x6e", - [0x37bd] = "\x02\x62\x75", [0x37be] = "\x02\x63\x25", - [0x37bf] = "\x02\x62\x78", [0x37c0] = "\x02\x62\x70", - [0x37c1] = "\x0e\x58\x6f", [0x37c2] = "\x02\x62\x72", - [0x37c3] = "\x02\x62\x71", [0x37c4] = "\x02\x62\x77", - [0x37c5] = "\x02\x62\x7c", [0x37c6] = "\x02\x62\x6f", - [0x37c7] = "\x02\x62\x76", [0x37c8] = "\x02\x62\x7b", - [0x37c9] = "\x01\x77\x33", [0x37cb] = "\x02\x62\x79", - [0x37cc] = "\x0e\x58\x6b", [0x37cd] = "\x01\x77\x31", - [0x37ce] = "\x02\x62\x7a", [0x37cf] = "\x01\x77\x2f", - [0x37d0] = "\x01\x77\x32", [0x37d1] = "\x02\x66\x60", - [0x37d2] = "\x02\x63\x21", [0x37d4] = "\x0e\x66\x3e", - [0x37d5] = "\x01\x78\x6d", [0x37d6] = "\x0e\x5a\x7e", - [0x37d7] = "\x02\x66\x58", [0x37d8] = "\x02\x66\x5c", - [0x37d9] = "\x02\x66\x54", [0x37da] = "\x02\x66\x57", - [0x37db] = "\x0e\x5a\x7d", [0x37dc] = "\x02\x66\x5f", - [0x37dd] = "\x01\x78\x6b", [0x37de] = "\x02\x66\x64", - [0x37df] = "\x02\x66\x5d", [0x37e1] = "\x02\x66\x55", - [0x37e2] = "\x02\x66\x65", [0x37e3] = "\x02\x66\x5e", - [0x37e4] = "\x01\x78\x6e", [0x37e5] = "\x01\x78\x6f", - [0x37e6] = "\x02\x66\x62", [0x37e7] = "\x0e\x5b\x22", - [0x37e8] = "\x02\x66\x56", [0x37e9] = "\x01\x78\x6a", - [0x37ea] = "\x01\x78\x6c", [0x37eb] = "\x02\x66\x51", - [0x37ec] = "\x02\x66\x59", [0x37ed] = "\x02\x66\x53", - [0x37ee] = "\x0e\x5c\x7b", [0x37ef] = "\x02\x66\x63", - [0x37f0] = "\x02\x66\x61", [0x37f1] = "\x02\x66\x52", - [0x37f2] = "\x02\x66\x5a", [0x37f4] = "\x0e\x5b\x25", - [0x37f5] = "\x0e\x66\x3f", [0x37f6] = "\x02\x69\x6a", - [0x37f7] = "\x01\x78\x70", [0x37f8] = "\x02\x66\x5b", - [0x37f9] = "\x01\x7a\x32", [0x37fa] = "\x01\x7a\x34", - [0x37fb] = "\x01\x7a\x31", [0x37fc] = "\x0e\x5c\x76", - [0x37fd] = "\x02\x69\x6f", [0x37fe] = "\x02\x69\x67", - [0x37ff] = "\x02\x69\x65", [0x3800] = "\x02\x69\x69", - [0x3801] = "\x02\x69\x66", [0x3802] = "\x0e\x5c\x78", - [0x3803] = "\x0e\x5c\x7c", [0x3804] = "\x02\x69\x6b", - [0x3805] = "\x02\x69\x6d", [0x3806] = "\x01\x7a\x35", - [0x3807] = "\x01\x7a\x37", [0x3808] = "\x0e\x5d\x22", - [0x3809] = "\x02\x69\x6c", [0x380a] = "\x01\x7a\x38", - [0x380b] = "\x01\x7a\x36", [0x380c] = "\x02\x69\x6e", - [0x380d] = "\x0e\x5c\x7e", [0x380f] = "\x0e\x5d\x23", - [0x3810] = "\x0e\x5c\x77", [0x3811] = "\x01\x7a\x33", - [0x3813] = "\x0e\x5d\x21", [0x3815] = "\x0e\x5e\x5b", - [0x3816] = "\x0e\x5e\x5a", [0x3817] = "\x01\x7b\x21", - [0x3818] = "\x02\x6c\x21", [0x3819] = "\x02\x6c\x27", - [0x381a] = "\x01\x7b\x23", [0x381b] = "\x02\x69\x68", - [0x381c] = "\x02\x6c\x26", [0x381d] = "\x0e\x5e\x5c", - [0x381e] = "\x02\x6c\x2d", [0x381f] = "\x02\x6c\x24", - [0x3820] = "\x02\x6c\x2b", [0x3821] = "\x02\x6c\x2a", - [0x3822] = "\x02\x69\x64", [0x3823] = "\x02\x6c\x25", - [0x3824] = "\x02\x63\x22", [0x3825] = "\x02\x6c\x2e", - [0x3826] = "\x02\x6c\x23", [0x3827] = "\x02\x6c\x28", - [0x3828] = "\x0e\x5e\x58", [0x3829] = "\x02\x6c\x2c", - [0x382a] = "\x02\x6c\x22", [0x382b] = "\x0e\x5e\x56", - [0x382c] = "\x02\x6d\x77", [0x382d] = "\x01\x7b\x22", - [0x382e] = "\x02\x6c\x29", [0x382f] = "\x0e\x5e\x57", - [0x3831] = "\x02\x6f\x43", [0x3832] = "\x02\x6d\x78", - [0x3833] = "\x02\x6d\x76", [0x3834] = "\x02\x6d\x74", - [0x3835] = "\x02\x6d\x75", [0x3836] = "\x02\x6d\x79", - [0x3837] = "\x0e\x66\x40", [0x3838] = "\x01\x7c\x45", - [0x3839] = "\x02\x6f\x41", [0x383a] = "\x02\x6f\x3f", - [0x383b] = "\x02\x6f\x44", [0x383c] = "\x02\x6f\x42", - [0x383d] = "\x0e\x60\x43", [0x383e] = "\x02\x6f\x45", - [0x383f] = "\x01\x7c\x46", [0x3840] = "\x02\x6f\x40", - [0x3841] = "\x0e\x60\x2f", [0x3842] = "\x0e\x61\x46", - [0x3843] = "\x02\x70\x4a", [0x3845] = "\x0e\x66\x41", - [0x3846] = "\x02\x71\x34", [0x3847] = "\x02\x71\x35", - [0x3848] = "\x02\x71\x36", [0x3849] = "\x0e\x61\x47", - [0x384a] = "\x0e\x61\x7c", [0x384b] = "\x02\x72\x35", - [0x384c] = "\x02\x72\x2d", [0x384d] = "\x02\x22\x6f", - [0x384e] = "\x01\x4f\x4d", [0x3850] = "\x01\x53\x4b", - [0x3852] = "\x02\x32\x5a", [0x3853] = "\x02\x32\x59", - [0x3854] = "\x01\x58\x25", [0x3855] = "\x01\x5d\x28", - [0x3856] = "\x02\x39\x21", [0x3857] = "\x0e\x38\x63", - [0x3858] = "\x0e\x38\x60", [0x3859] = "\x02\x38\x7e", - [0x385a] = "\x0e\x38\x61", [0x385b] = "\x01\x61\x70", - [0x385c] = "\x01\x66\x3f", [0x385d] = "\x0e\x3e\x61", - [0x385e] = "\x01\x66\x3e", [0x385f] = "\x01\x66\x40", - [0x3861] = "\x02\x4d\x5b", [0x3862] = "\x02\x53\x67", - [0x3863] = "\x02\x5a\x25", [0x3864] = "\x02\x5a\x27", - [0x3865] = "\x02\x5a\x26", [0x3867] = "\x01\x75\x36", - [0x3868] = "\x02\x5f\x25", [0x3869] = "\x02\x63\x26", - [0x386a] = "\x02\x71\x73", [0x386b] = "\x01\x48\x65", - [0x386c] = "\x0e\x27\x2d", [0x386d] = "\x02\x28\x69", - [0x386e] = "\x02\x28\x6a", [0x386f] = "\x02\x28\x68", - [0x3870] = "\x02\x28\x67", [0x3871] = "\x01\x4f\x4e", - [0x3872] = "\x0e\x66\x42", [0x3873] = "\x02\x2d\x4a", - [0x3874] = "\x02\x2d\x48", [0x3875] = "\x0e\x2f\x23", - [0x3876] = "\x0e\x2e\x7c", [0x3877] = "\x02\x2d\x47", - [0x3878] = "\x0e\x2e\x7e", [0x3879] = "\x01\x53\x4c", - [0x387a] = "\x01\x53\x4e", [0x387b] = "\x01\x53\x4d", - [0x387c] = "\x02\x2d\x49", [0x387d] = "\x0e\x2f\x24", - [0x3884] = "\x0e\x33\x69", [0x3885] = "\x02\x32\x66", - [0x3886] = "\x02\x32\x63", [0x3887] = "\x02\x32\x61", - [0x3889] = "\x0e\x33\x6c", [0x388a] = "\x01\x58\x26", - [0x388b] = "\x02\x32\x64", [0x388c] = "\x01\x58\x2b", - [0x388d] = "\x02\x32\x5e", [0x388e] = "\x02\x32\x6d", - [0x388f] = "\x0e\x33\x6f", [0x3890] = "\x02\x32\x6f", - [0x3891] = "\x02\x32\x5f", [0x3892] = "\x0e\x33\x6e", - [0x3893] = "\x01\x58\x28", [0x3894] = "\x02\x32\x70", - [0x3895] = "\x02\x32\x6b", [0x3896] = "\x02\x32\x5d", - [0x3897] = "\x02\x32\x62", [0x3898] = "\x02\x32\x6c", - [0x3899] = "\x02\x32\x68", [0x389a] = "\x02\x32\x65", - [0x389b] = "\x0e\x33\x6b", [0x389c] = "\x01\x58\x2d", - [0x389d] = "\x02\x32\x6e", [0x389e] = "\x02\x32\x60", - [0x389f] = "\x0e\x33\x6a", [0x38a0] = "\x0e\x33\x70", - [0x38a1] = "\x02\x32\x69", [0x38a2] = "\x02\x32\x5b", - [0x38a3] = "\x01\x58\x2c", [0x38a4] = "\x01\x58\x29", - [0x38a5] = "\x02\x32\x67", [0x38a6] = "\x0e\x33\x6d", - [0x38a7] = "\x02\x32\x6a", [0x38a8] = "\x02\x32\x5c", - [0x38a9] = "\x01\x58\x2a", [0x38aa] = "\x01\x58\x27", - [0x38ae] = "\x0e\x38\x66", [0x38af] = "\x01\x5d\x32", - [0x38b0] = "\x02\x39\x28", [0x38b1] = "\x01\x5d\x31", - [0x38b2] = "\x0e\x38\x64", [0x38b3] = "\x02\x39\x2b", - [0x38b4] = "\x02\x39\x2e", [0x38b5] = "\x01\x5d\x2e", - [0x38b6] = "\x01\x5d\x2c", [0x38b7] = "\x02\x39\x23", - [0x38b8] = "\x02\x39\x2c", [0x38b9] = "\x02\x39\x2a", - [0x38ba] = "\x02\x39\x27", [0x38bb] = "\x02\x39\x2f", - [0x38bc] = "\x02\x39\x30", [0x38bd] = "\x02\x39\x32", - [0x38be] = "\x02\x39\x33", [0x38bf] = "\x02\x39\x22", - [0x38c0] = "\x01\x5d\x2b", [0x38c1] = "\x02\x39\x25", - [0x38c2] = "\x02\x39\x24", [0x38c3] = "\x02\x39\x31", - [0x38c4] = "\x01\x5d\x2d", [0x38c5] = "\x02\x39\x26", - [0x38c6] = "\x01\x5d\x2f", [0x38c7] = "\x01\x5d\x2a", - [0x38c8] = "\x02\x39\x29", [0x38c9] = "\x01\x5d\x33", - [0x38cb] = "\x01\x5d\x30", [0x38cc] = "\x02\x39\x2d", - [0x38d0] = "\x01\x61\x77", [0x38d1] = "\x02\x40\x25", - [0x38d3] = "\x02\x3f\x78", [0x38d4] = "\x01\x61\x74", - [0x38d5] = "\x0e\x3e\x62", [0x38d6] = "\x02\x47\x2e", - [0x38d7] = "\x02\x40\x23", [0x38d8] = "\x02\x3f\x75", - [0x38d9] = "\x01\x61\x72", [0x38da] = "\x02\x3f\x7a", - [0x38db] = "\x01\x61\x75", [0x38dc] = "\x02\x3f\x7e", - [0x38dd] = "\x02\x3f\x7c", [0x38de] = "\x01\x61\x78", - [0x38df] = "\x01\x61\x71", [0x38e1] = "\x0e\x3e\x63", - [0x38e2] = "\x02\x3f\x76", [0x38e3] = "\x02\x3f\x79", - [0x38e4] = "\x01\x61\x76", [0x38e6] = "\x02\x3f\x77", - [0x38e8] = "\x02\x40\x24", [0x38e9] = "\x02\x40\x22", - [0x38ea] = "\x02\x3f\x7b", [0x38eb] = "\x02\x3f\x7d", - [0x38ec] = "\x02\x40\x21", [0x38ed] = "\x01\x61\x73", - [0x38ee] = "\x0e\x3e\x68", [0x38f5] = "\x02\x47\x2f", - [0x38f6] = "\x02\x47\x35", [0x38f7] = "\x02\x47\x2b", - [0x38f8] = "\x02\x47\x31", [0x38f9] = "\x01\x66\x41", - [0x38fa] = "\x02\x47\x2d", [0x38fb] = "\x01\x66\x47", - [0x38fc] = "\x0e\x44\x44", [0x38fd] = "\x0e\x44\x45", - [0x38fe] = "\x01\x66\x46", [0x38ff] = "\x0e\x44\x49", - [0x3900] = "\x01\x66\x45", [0x3901] = "\x02\x47\x34", - [0x3902] = "\x01\x66\x48", [0x3903] = "\x01\x66\x49", - [0x3904] = "\x02\x47\x2a", [0x3905] = "\x02\x47\x37", - [0x3906] = "\x01\x66\x4a", [0x3907] = "\x01\x66\x44", - [0x3908] = "\x01\x66\x43", [0x3909] = "\x02\x47\x33", - [0x390a] = "\x01\x66\x4b", [0x390b] = "\x02\x47\x29", - [0x390c] = "\x02\x47\x2c", [0x390d] = "\x02\x47\x36", - [0x390e] = "\x02\x47\x32", [0x3911] = "\x02\x4d\x7b", - [0x3912] = "\x02\x4d\x70", [0x3913] = "\x01\x66\x42", - [0x3915] = "\x0e\x44\x46", [0x3916] = "\x0e\x44\x48", - [0x3918] = "\x01\x6a\x72", [0x3919] = "\x02\x4d\x64", - [0x391a] = "\x02\x4d\x79", [0x391b] = "\x02\x4d\x65", - [0x391c] = "\x01\x6a\x6d", [0x391d] = "\x0e\x49\x4f", - [0x391e] = "\x02\x4d\x62", [0x3920] = "\x02\x4d\x6b", - [0x3921] = "\x02\x4d\x63", [0x3922] = "\x01\x6a\x6f", - [0x3923] = "\x02\x4d\x5d", [0x3924] = "\x02\x4d\x78", - [0x3925] = "\x01\x6a\x70", [0x3926] = "\x02\x4d\x75", - [0x3927] = "\x02\x4d\x76", [0x3928] = "\x02\x4d\x5e", - [0x3929] = "\x01\x6a\x75", [0x392a] = "\x02\x4d\x6d", - [0x392b] = "\x0e\x49\x4a", [0x392c] = "\x02\x4d\x67", - [0x392d] = "\x02\x4d\x6e", [0x392e] = "\x02\x4d\x61", - [0x3930] = "\x02\x4d\x7a", [0x3931] = "\x02\x4d\x72", - [0x3932] = "\x02\x4d\x6c", [0x3933] = "\x02\x4d\x5c", - [0x3934] = "\x01\x6a\x71", [0x3935] = "\x02\x4d\x73", - [0x3936] = "\x0e\x49\x45", [0x3937] = "\x01\x6a\x74", - [0x3938] = "\x02\x4d\x77", [0x3939] = "\x0e\x49\x4c", - [0x393a] = "\x02\x4d\x71", [0x393b] = "\x01\x6a\x6e", - [0x393c] = "\x02\x4d\x6f", [0x393d] = "\x0e\x49\x49", - [0x393e] = "\x02\x4d\x69", [0x393f] = "\x01\x6a\x6c", - [0x3940] = "\x02\x4d\x60", [0x3941] = "\x02\x4d\x68", - [0x3942] = "\x02\x4d\x74", [0x3943] = "\x02\x4d\x66", - [0x3945] = "\x0e\x49\x4e", [0x3946] = "\x02\x4d\x6a", - [0x3947] = "\x0e\x49\x4b", [0x394a] = "\x0e\x66\x43", - [0x394c] = "\x01\x6e\x6a", [0x394d] = "\x02\x47\x30", - [0x394e] = "\x02\x53\x79", [0x394f] = "\x02\x54\x24", - [0x3950] = "\x02\x53\x78", [0x3951] = "\x02\x53\x74", - [0x3952] = "\x02\x53\x71", [0x3953] = "\x01\x6e\x6b", - [0x3954] = "\x02\x53\x6f", [0x3955] = "\x01\x6a\x73", - [0x3956] = "\x02\x53\x68", [0x3957] = "\x01\x6e\x69", - [0x3958] = "\x02\x53\x6e", [0x3959] = "\x01\x6e\x68", - [0x395a] = "\x02\x53\x73", [0x395b] = "\x02\x53\x70", - [0x395c] = "\x02\x54\x22", [0x395d] = "\x02\x53\x7b", - [0x395e] = "\x02\x53\x75", [0x395f] = "\x02\x53\x7a", - [0x3960] = "\x01\x6e\x64", [0x3961] = "\x02\x53\x72", - [0x3962] = "\x02\x54\x27", [0x3963] = "\x02\x53\x69", - [0x3964] = "\x02\x53\x6a", [0x3965] = "\x02\x54\x23", - [0x3966] = "\x01\x6e\x65", [0x3967] = "\x02\x54\x28", - [0x3968] = "\x01\x6e\x67", [0x3969] = "\x02\x54\x29", - [0x396a] = "\x02\x53\x77", [0x396b] = "\x02\x4d\x5f", - [0x396c] = "\x02\x53\x7d", [0x396d] = "\x02\x53\x76", - [0x396e] = "\x02\x54\x21", [0x396f] = "\x02\x53\x7c", - [0x3971] = "\x0e\x4e\x5d", [0x3973] = "\x02\x53\x6d", - [0x3974] = "\x01\x6e\x62", [0x3975] = "\x02\x54\x26", - [0x3976] = "\x01\x6e\x63", [0x3977] = "\x02\x53\x6b", - [0x3978] = "\x01\x6e\x66", [0x3979] = "\x02\x5a\x32", - [0x397a] = "\x02\x53\x7e", [0x397b] = "\x02\x54\x25", - [0x397d] = "\x0e\x4e\x59", [0x3981] = "\x02\x5a\x2f", - [0x3982] = "\x01\x6e\x61", [0x3983] = "\x01\x72\x2a", - [0x3984] = "\x02\x5a\x39", [0x3985] = "\x02\x5a\x35", - [0x3987] = "\x02\x5a\x33", [0x3988] = "\x02\x5a\x2e", - [0x3989] = "\x02\x5a\x3d", [0x398a] = "\x0e\x52\x5b", - [0x398b] = "\x0e\x52\x5d", [0x398d] = "\x01\x72\x2e", - [0x398e] = "\x0e\x52\x5f", [0x398f] = "\x02\x5a\x2a", - [0x3990] = "\x02\x5a\x36", [0x3991] = "\x02\x5a\x37", - [0x3992] = "\x02\x5a\x2d", [0x3993] = "\x02\x5a\x2c", - [0x3994] = "\x02\x5a\x3a", [0x3996] = "\x02\x5a\x30", - [0x3997] = "\x02\x5a\x2b", [0x3998] = "\x02\x5a\x31", - [0x3999] = "\x0e\x52\x62", [0x399a] = "\x02\x5a\x3c", - [0x399b] = "\x02\x5a\x29", [0x399c] = "\x02\x5a\x3b", - [0x399d] = "\x02\x5a\x38", [0x399e] = "\x01\x72\x2c", - [0x399f] = "\x01\x72\x2b", [0x39a1] = "\x0e\x52\x5e", - [0x39a2] = "\x01\x72\x2d", [0x39a3] = "\x02\x5a\x34", - [0x39a4] = "\x02\x5a\x28", [0x39a5] = "\x0e\x66\x45", - [0x39a9] = "\x0e\x66\x44", [0x39aa] = "\x02\x5f\x27", - [0x39ab] = "\x01\x75\x3c", [0x39ac] = "\x02\x5f\x2b", - [0x39ad] = "\x02\x5f\x28", [0x39ae] = "\x02\x5f\x2f", - [0x39af] = "\x02\x5f\x35", [0x39b0] = "\x02\x5f\x2a", - [0x39b1] = "\x0e\x56\x3a", [0x39b2] = "\x02\x5f\x3e", - [0x39b3] = "\x01\x75\x39", [0x39b4] = "\x02\x5f\x38", - [0x39b5] = "\x02\x5f\x2d", [0x39b6] = "\x02\x5f\x39", - [0x39b7] = "\x02\x5f\x34", [0x39b8] = "\x02\x5f\x3b", - [0x39b9] = "\x02\x5f\x2c", [0x39ba] = "\x01\x75\x3e", - [0x39bb] = "\x01\x75\x3d", [0x39bc] = "\x02\x5f\x2e", - [0x39bd] = "\x02\x5f\x3c", [0x39be] = "\x02\x5f\x26", - [0x39bf] = "\x02\x5f\x3a", [0x39c0] = "\x01\x75\x37", - [0x39c1] = "\x0e\x56\x39", [0x39c2] = "\x02\x5f\x32", - [0x39c3] = "\x02\x5f\x31", [0x39c4] = "\x02\x5f\x36", - [0x39c5] = "\x02\x5f\x29", [0x39c6] = "\x01\x75\x3b", - [0x39c7] = "\x0e\x56\x3b", [0x39c8] = "\x01\x75\x3f", - [0x39c9] = "\x02\x5f\x30", [0x39ca] = "\x02\x5f\x37", - [0x39cb] = "\x01\x75\x40", [0x39cc] = "\x02\x5f\x33", - [0x39cd] = "\x0e\x56\x36", [0x39ce] = "\x0e\x56\x34", - [0x39d1] = "\x01\x75\x38", [0x39d2] = "\x01\x75\x3a", - [0x39d3] = "\x02\x63\x33", [0x39d4] = "\x02\x63\x31", - [0x39d5] = "\x0e\x5b\x28", [0x39d6] = "\x0e\x58\x76", - [0x39d7] = "\x02\x63\x37", [0x39d8] = "\x02\x63\x35", - [0x39d9] = "\x02\x63\x38", [0x39da] = "\x0e\x58\x78", - [0x39db] = "\x02\x63\x2a", [0x39dc] = "\x02\x63\x32", - [0x39dd] = "\x02\x63\x3c", [0x39de] = "\x02\x5f\x3d", - [0x39df] = "\x02\x63\x2e", [0x39e0] = "\x01\x77\x3a", - [0x39e1] = "\x02\x53\x6c", [0x39e2] = "\x02\x63\x29", - [0x39e3] = "\x02\x63\x36", [0x39e4] = "\x02\x63\x30", - [0x39e5] = "\x02\x63\x2d", [0x39e6] = "\x02\x63\x28", - [0x39e7] = "\x02\x63\x27", [0x39e8] = "\x02\x63\x3b", - [0x39e9] = "\x0e\x58\x73", [0x39ea] = "\x02\x63\x2c", - [0x39eb] = "\x02\x63\x2b", [0x39ec] = "\x01\x77\x38", - [0x39ed] = "\x02\x63\x34", [0x39ee] = "\x0e\x58\x74", - [0x39ef] = "\x01\x77\x37", [0x39f0] = "\x0e\x58\x75", - [0x39f2] = "\x01\x77\x39", [0x39f3] = "\x02\x63\x2f", - [0x39f4] = "\x02\x63\x3a", [0x39f5] = "\x0e\x66\x46", - [0x39f6] = "\x02\x66\x69", [0x39f7] = "\x02\x66\x6a", - [0x39f8] = "\x0e\x5b\x2c", [0x39f9] = "\x01\x78\x74", - [0x39fa] = "\x02\x66\x67", [0x39fb] = "\x01\x78\x71", - [0x39fc] = "\x02\x66\x6f", [0x39fd] = "\x0e\x5b\x27", - [0x39fe] = "\x01\x78\x75", [0x39ff] = "\x02\x66\x71", - [0x3a00] = "\x02\x66\x66", [0x3a01] = "\x02\x63\x39", - [0x3a02] = "\x02\x66\x73", [0x3a03] = "\x02\x66\x68", - [0x3a05] = "\x01\x78\x72", [0x3a06] = "\x02\x66\x6e", - [0x3a07] = "\x0e\x5b\x29", [0x3a08] = "\x02\x66\x70", - [0x3a09] = "\x02\x66\x6b", [0x3a0a] = "\x02\x66\x72", - [0x3a0b] = "\x02\x66\x6d", [0x3a0c] = "\x02\x66\x6c", - [0x3a0d] = "\x01\x78\x73", [0x3a0e] = "\x0e\x58\x77", - [0x3a0f] = "\x0e\x5b\x2b", [0x3a10] = "\x02\x69\x71", - [0x3a11] = "\x02\x69\x72", [0x3a12] = "\x0e\x5d\x25", - [0x3a13] = "\x02\x69\x74", [0x3a14] = "\x01\x7a\x39", - [0x3a15] = "\x01\x7a\x3a", [0x3a16] = "\x02\x69\x75", - [0x3a17] = "\x02\x69\x73", [0x3a18] = "\x0e\x5d\x24", - [0x3a19] = "\x02\x69\x70", [0x3a1a] = "\x0e\x5e\x5d", - [0x3a1b] = "\x02\x6c\x31", [0x3a1c] = "\x02\x6c\x34", - [0x3a1d] = "\x02\x6c\x30", [0x3a1f] = "\x01\x7b\x27", - [0x3a20] = "\x02\x6c\x32", [0x3a21] = "\x01\x7b\x26", - [0x3a22] = "\x01\x7b\x25", [0x3a23] = "\x01\x7b\x24", - [0x3a24] = "\x02\x6c\x33", [0x3a25] = "\x02\x6d\x7e", - [0x3a26] = "\x02\x6d\x7c", [0x3a27] = "\x0e\x5f\x5f", - [0x3a28] = "\x02\x6d\x7b", [0x3a29] = "\x02\x6c\x2f", - [0x3a2a] = "\x02\x6d\x7d", [0x3a2b] = "\x02\x6c\x35", - [0x3a2c] = "\x02\x6d\x7a", [0x3a2d] = "\x0e\x60\x45", - [0x3a2e] = "\x02\x6f\x48", [0x3a2f] = "\x02\x6f\x26", - [0x3a30] = "\x02\x6f\x46", [0x3a31] = "\x01\x7c\x47", - [0x3a32] = "\x02\x6f\x47", [0x3a33] = "\x02\x6f\x49", - [0x3a34] = "\x0e\x66\x47", [0x3a35] = "\x02\x70\x4d", - [0x3a36] = "\x01\x7c\x66", [0x3a37] = "\x02\x70\x4c", - [0x3a38] = "\x02\x70\x4b", [0x3a39] = "\x01\x7c\x67", - [0x3a3b] = "\x01\x7d\x27", [0x3a3c] = "\x02\x71\x5d", - [0x3a3d] = "\x02\x71\x75", [0x3a3e] = "\x02\x71\x74", - [0x3a3f] = "\x02\x71\x76", [0x3a40] = "\x01\x48\x66", - [0x3a41] = "\x02\x2d\x4b", [0x3a42] = "\x0e\x2f\x26", - [0x3a43] = "\x02\x32\x71", [0x3a44] = "\x02\x32\x72", - [0x3a45] = "\x0e\x38\x6a", [0x3a46] = "\x0e\x3e\x6a", - [0x3a47] = "\x0e\x3e\x69", [0x3a48] = "\x02\x40\x26", - [0x3a4a] = "\x02\x6c\x36", [0x3a4b] = "\x02\x70\x4e", - [0x3a4c] = "\x01\x48\x67", [0x3a4d] = "\x01\x53\x4f", - [0x3a4e] = "\x02\x2d\x4c", [0x3a4f] = "\x0e\x33\x71", - [0x3a50] = "\x0e\x66\x48", [0x3a52] = "\x02\x39\x34", - [0x3a53] = "\x01\x5d\x34", [0x3a55] = "\x02\x40\x28", - [0x3a56] = "\x02\x40\x27", [0x3a57] = "\x01\x61\x79", - [0x3a58] = "\x0e\x44\x4d", [0x3a59] = "\x01\x66\x4c", - [0x3a5a] = "\x02\x54\x2a", [0x3a5b] = "\x01\x6e\x6c", - [0x3a5c] = "\x0e\x4e\x5f", [0x3a5d] = "\x01\x6e\x6d", - [0x3a5e] = "\x0e\x52\x63", [0x3a5f] = "\x0e\x52\x64", - [0x3a61] = "\x01\x72\x2f", [0x3a62] = "\x01\x7c\x68", - [0x3a63] = "\x01\x48\x68", [0x3a66] = "\x0e\x2f\x27", - [0x3a67] = "\x02\x2d\x4d", [0x3a68] = "\x01\x4f\x50", - [0x3a69] = "\x02\x2d\x4f", [0x3a6a] = "\x02\x2d\x4e", - [0x3a6b] = "\x01\x53\x50", [0x3a6d] = "\x02\x32\x73", - [0x3a6e] = "\x0e\x33\x74", [0x3a6f] = "\x02\x32\x7a", - [0x3a70] = "\x01\x58\x2e", [0x3a71] = "\x02\x32\x78", - [0x3a72] = "\x02\x32\x76", [0x3a73] = "\x0e\x33\x77", - [0x3a74] = "\x02\x32\x7d", [0x3a75] = "\x02\x32\x74", - [0x3a76] = "\x02\x32\x75", [0x3a77] = "\x01\x58\x2f", - [0x3a78] = "\x0e\x33\x72", [0x3a79] = "\x01\x58\x33", - [0x3a7a] = "\x0e\x33\x73", [0x3a7b] = "\x0e\x33\x75", - [0x3a7c] = "\x02\x32\x7e", [0x3a7d] = "\x01\x58\x32", - [0x3a7e] = "\x02\x32\x7c", [0x3a7f] = "\x02\x32\x79", - [0x3a80] = "\x02\x32\x77", [0x3a81] = "\x01\x58\x30", - [0x3a82] = "\x01\x58\x31", [0x3a83] = "\x02\x32\x7b", - [0x3a84] = "\x0e\x33\x76", [0x3a87] = "\x0e\x66\x49", - [0x3a88] = "\x01\x5d\x36", [0x3a89] = "\x02\x39\x35", - [0x3a8a] = "\x0e\x38\x72", [0x3a8b] = "\x01\x5d\x3b", - [0x3a8c] = "\x02\x39\x45", [0x3a8d] = "\x01\x5d\x3a", - [0x3a8e] = "\x02\x39\x47", [0x3a8f] = "\x0e\x38\x6e", - [0x3a90] = "\x0e\x38\x74", [0x3a91] = "\x02\x39\x3b", - [0x3a92] = "\x01\x5d\x38", [0x3a93] = "\x02\x39\x46", - [0x3a94] = "\x0e\x38\x6c", [0x3a95] = "\x02\x39\x36", - [0x3a96] = "\x01\x5d\x39", [0x3a97] = "\x02\x39\x42", - [0x3a98] = "\x02\x39\x3e", [0x3a99] = "\x02\x39\x40", - [0x3a9a] = "\x02\x39\x3a", [0x3a9b] = "\x02\x39\x41", - [0x3a9c] = "\x0e\x38\x6b", [0x3a9e] = "\x01\x5d\x35", - [0x3a9f] = "\x02\x39\x3d", [0x3aa0] = "\x0e\x38\x73", - [0x3aa1] = "\x02\x39\x3c", [0x3aa2] = "\x02\x39\x38", - [0x3aa3] = "\x0e\x38\x6d", [0x3aa4] = "\x02\x39\x43", - [0x3aa5] = "\x0e\x38\x6f", [0x3aa6] = "\x0e\x38\x71", - [0x3aa7] = "\x02\x39\x3f", [0x3aa8] = "\x02\x39\x37", - [0x3aa9] = "\x0e\x38\x70", [0x3aaa] = "\x02\x39\x39", - [0x3aab] = "\x01\x5d\x37", [0x3aac] = "\x02\x39\x44", - [0x3ab1] = "\x01\x61\x7c", [0x3ab2] = "\x02\x40\x33", - [0x3ab4] = "\x0e\x3e\x70", [0x3ab5] = "\x0e\x3e\x72", - [0x3ab6] = "\x02\x40\x2f", [0x3ab7] = "\x02\x40\x31", - [0x3ab8] = "\x02\x40\x2c", [0x3ab9] = "\x02\x40\x2b", - [0x3aba] = "\x02\x40\x29", [0x3abb] = "\x0e\x3e\x6d", - [0x3abc] = "\x02\x40\x30", [0x3abd] = "\x02\x40\x32", - [0x3abe] = "\x02\x40\x2e", [0x3abf] = "\x0e\x3e\x6f", - [0x3ac0] = "\x02\x40\x2d", [0x3ac1] = "\x01\x61\x7a", - [0x3ac2] = "\x01\x61\x7b", [0x3ac9] = "\x02\x40\x35", - [0x3aca] = "\x01\x66\x54", [0x3acb] = "\x02\x47\x39", - [0x3acc] = "\x02\x47\x3f", [0x3acd] = "\x02\x47\x3a", - [0x3ace] = "\x02\x47\x3b", [0x3acf] = "\x0e\x44\x4e", - [0x3ad0] = "\x02\x47\x40", [0x3ad2] = "\x01\x66\x56", - [0x3ad4] = "\x01\x66\x4e", [0x3ad5] = "\x01\x66\x55", - [0x3ad6] = "\x02\x47\x38", [0x3ad7] = "\x02\x40\x2a", - [0x3ad8] = "\x01\x66\x51", [0x3ad9] = "\x01\x66\x4f", - [0x3ada] = "\x02\x47\x3e", [0x3adb] = "\x02\x47\x3d", - [0x3adc] = "\x01\x66\x50", [0x3add] = "\x01\x66\x52", - [0x3ade] = "\x02\x47\x3c", [0x3adf] = "\x01\x66\x4d", - [0x3ae0] = "\x0e\x44\x4f", [0x3ae1] = "\x01\x66\x53", - [0x3ae6] = "\x0e\x4e\x60", [0x3ae7] = "\x02\x4d\x7d", - [0x3ae8] = "\x01\x6a\x7c", [0x3ae9] = "\x0e\x49\x59", - [0x3aea] = "\x0e\x49\x52", [0x3aeb] = "\x02\x4e\x2a", - [0x3aec] = "\x02\x4e\x29", [0x3aed] = "\x0e\x49\x57", - [0x3aee] = "\x02\x4e\x24", [0x3aef] = "\x01\x6a\x7e", - [0x3af0] = "\x02\x4e\x28", [0x3af1] = "\x02\x4d\x7e", - [0x3af2] = "\x02\x4e\x21", [0x3af3] = "\x01\x6a\x76", - [0x3af4] = "\x01\x6a\x78", [0x3af5] = "\x0e\x49\x54", - [0x3af6] = "\x02\x4e\x26", [0x3af7] = "\x02\x4d\x7c", - [0x3af8] = "\x01\x6a\x7a", [0x3af9] = "\x01\x6a\x79", - [0x3afa] = "\x02\x4e\x22", [0x3afb] = "\x02\x4e\x27", - [0x3afc] = "\x02\x4e\x25", [0x3afd] = "\x01\x6a\x7b", - [0x3afe] = "\x02\x4e\x23", [0x3aff] = "\x0e\x49\x51", - [0x3b00] = "\x0e\x49\x56", [0x3b01] = "\x02\x40\x34", - [0x3b02] = "\x01\x6a\x77", [0x3b03] = "\x0e\x49\x58", - [0x3b05] = "\x02\x54\x2b", [0x3b06] = "\x02\x54\x32", - [0x3b07] = "\x01\x6e\x6f", [0x3b09] = "\x02\x54\x36", - [0x3b0a] = "\x01\x6e\x73", [0x3b0b] = "\x02\x54\x2e", - [0x3b0c] = "\x02\x54\x2c", [0x3b0e] = "\x02\x54\x35", - [0x3b0f] = "\x0e\x4e\x61", [0x3b10] = "\x01\x6e\x6e", - [0x3b11] = "\x02\x54\x34", [0x3b12] = "\x01\x6e\x70", - [0x3b13] = "\x01\x6e\x71", [0x3b14] = "\x02\x54\x2d", - [0x3b15] = "\x01\x6e\x72", [0x3b16] = "\x02\x54\x33", - [0x3b17] = "\x02\x54\x2f", [0x3b18] = "\x02\x54\x30", - [0x3b19] = "\x02\x54\x31", [0x3b1a] = "\x01\x6a\x7d", - [0x3b1b] = "\x0e\x4e\x62", [0x3b1e] = "\x02\x5a\x3e", - [0x3b1f] = "\x02\x5a\x4a", [0x3b21] = "\x01\x72\x34", - [0x3b22] = "\x02\x5a\x45", [0x3b23] = "\x02\x5a\x47", - [0x3b24] = "\x0e\x52\x65", [0x3b25] = "\x01\x72\x32", - [0x3b26] = "\x02\x5a\x3f", [0x3b27] = "\x02\x5a\x43", - [0x3b29] = "\x02\x5a\x46", [0x3b2a] = "\x01\x72\x30", - [0x3b2b] = "\x01\x72\x33", [0x3b2c] = "\x02\x5a\x49", - [0x3b2d] = "\x02\x5a\x41", [0x3b2e] = "\x02\x5a\x42", - [0x3b2f] = "\x02\x5a\x48", [0x3b30] = "\x02\x5a\x40", - [0x3b31] = "\x02\x5a\x44", [0x3b32] = "\x01\x72\x31", - [0x3b33] = "\x02\x5f\x40", [0x3b35] = "\x02\x5f\x3f", - [0x3b36] = "\x01\x75\x42", [0x3b37] = "\x02\x5f\x45", - [0x3b38] = "\x01\x75\x44", [0x3b39] = "\x0e\x56\x40", - [0x3b3b] = "\x01\x75\x41", [0x3b3c] = "\x02\x5f\x41", - [0x3b3d] = "\x01\x75\x45", [0x3b3e] = "\x02\x5f\x42", - [0x3b3f] = "\x0e\x56\x3f", [0x3b40] = "\x0e\x56\x3d", - [0x3b41] = "\x02\x5f\x43", [0x3b42] = "\x02\x5f\x46", - [0x3b43] = "\x0e\x56\x42", [0x3b44] = "\x01\x75\x43", - [0x3b46] = "\x02\x63\x41", [0x3b48] = "\x0e\x58\x79", - [0x3b49] = "\x02\x63\x44", [0x3b4a] = "\x0e\x58\x7a", - [0x3b4b] = "\x02\x63\x3e", [0x3b4c] = "\x02\x63\x40", - [0x3b4d] = "\x0e\x58\x7c", [0x3b4e] = "\x0e\x58\x7b", - [0x3b4f] = "\x02\x63\x3f", [0x3b50] = "\x02\x63\x42", - [0x3b51] = "\x02\x63\x43", [0x3b52] = "\x02\x5f\x44", - [0x3b53] = "\x02\x63\x3d", [0x3b54] = "\x0e\x66\x4a", - [0x3b56] = "\x01\x78\x78", [0x3b57] = "\x02\x66\x77", - [0x3b58] = "\x02\x66\x7a", [0x3b59] = "\x02\x66\x7c", - [0x3b5a] = "\x02\x66\x75", [0x3b5b] = "\x02\x66\x76", - [0x3b5c] = "\x02\x66\x79", [0x3b5d] = "\x02\x66\x7b", - [0x3b5e] = "\x01\x78\x79", [0x3b5f] = "\x01\x78\x77", - [0x3b60] = "\x01\x78\x76", [0x3b61] = "\x02\x66\x78", - [0x3b62] = "\x02\x66\x74", [0x3b63] = "\x02\x69\x76", - [0x3b64] = "\x01\x7a\x3b", [0x3b65] = "\x0e\x5d\x29", - [0x3b66] = "\x02\x69\x77", [0x3b67] = "\x0e\x5d\x28", - [0x3b69] = "\x02\x6c\x38", [0x3b6a] = "\x01\x7b\x28", - [0x3b6b] = "\x02\x6c\x3a", [0x3b6c] = "\x01\x7b\x29", - [0x3b6d] = "\x02\x6c\x37", [0x3b6e] = "\x02\x6c\x39", - [0x3b6f] = "\x01\x7b\x72", [0x3b71] = "\x02\x6e\x21", - [0x3b72] = "\x01\x7b\x71", [0x3b73] = "\x02\x6f\x4c", - [0x3b74] = "\x02\x6f\x4b", [0x3b76] = "\x02\x6f\x4a", - [0x3b78] = "\x0e\x61\x49", [0x3b79] = "\x02\x71\x37", - [0x3b7a] = "\x02\x71\x38", [0x3b7b] = "\x02\x71\x3a", - [0x3b7c] = "\x02\x71\x39", [0x3b7d] = "\x0e\x61\x7d", - [0x3b7e] = "\x02\x22\x70", [0x3b7f] = "\x01\x48\x69", - [0x3b81] = "\x01\x53\x51", [0x3b82] = "\x02\x39\x48", - [0x3b83] = "\x01\x61\x7d", [0x3b84] = "\x0e\x66\x4b", - [0x3b85] = "\x02\x47\x41", [0x3b86] = "\x01\x77\x3b", - [0x3b87] = "\x0e\x5b\x2f", [0x3b88] = "\x02\x66\x7d", - [0x3b89] = "\x0e\x60\x46", [0x3b8a] = "\x0e\x61\x4a", - [0x3b8b] = "\x01\x4b\x44", [0x3b8c] = "\x0e\x2f\x29", - [0x3b8f] = "\x01\x5d\x3d", [0x3b91] = "\x0e\x38\x76", - [0x3b92] = "\x0e\x38\x75", [0x3b93] = "\x01\x5d\x3c", - [0x3b94] = "\x0e\x38\x77", [0x3b95] = "\x02\x40\x36", - [0x3b96] = "\x01\x61\x7e", [0x3b97] = "\x02\x40\x38", - [0x3b98] = "\x02\x40\x37", [0x3b9a] = "\x0e\x3e\x74", - [0x3b9b] = "\x02\x47\x42", [0x3b9c] = "\x01\x66\x57", - [0x3b9d] = "\x02\x4e\x2b", [0x3b9e] = "\x02\x4e\x2e", - [0x3b9f] = "\x02\x4e\x2d", [0x3ba1] = "\x02\x4e\x2c", - [0x3ba2] = "\x02\x54\x37", [0x3ba3] = "\x02\x54\x39", - [0x3ba4] = "\x02\x54\x38", [0x3ba5] = "\x0e\x4e\x65", - [0x3ba6] = "\x01\x72\x36", [0x3ba7] = "\x0e\x52\x66", - [0x3ba9] = "\x0e\x4e\x64", [0x3baa] = "\x01\x72\x35", - [0x3bab] = "\x0e\x56\x46", [0x3bac] = "\x01\x75\x46", - [0x3bad] = "\x02\x5f\x47", [0x3bae] = "\x02\x5f\x49", - [0x3baf] = "\x02\x5f\x48", [0x3bb0] = "\x0e\x58\x7e", - [0x3bb1] = "\x0e\x58\x7d", [0x3bb2] = "\x01\x77\x3c", - [0x3bb3] = "\x0e\x59\x21", [0x3bb5] = "\x0e\x5b\x31", - [0x3bb6] = "\x02\x67\x21", [0x3bb7] = "\x02\x66\x7e", - [0x3bb9] = "\x02\x69\x78", [0x3bba] = "\x01\x7a\x3c", - [0x3bbb] = "\x0e\x5d\x2a", [0x3bbc] = "\x0e\x5e\x61", - [0x3bbd] = "\x01\x7b\x2a", [0x3bbe] = "\x02\x6e\x23", - [0x3bbf] = "\x02\x6e\x22", [0x3bc0] = "\x01\x7d\x28", - [0x3bd2] = "\x01\x4b\x45", [0x3bd3] = "\x02\x2d\x50", - [0x3bd4] = "\x01\x53\x52", [0x3bd5] = "\x02\x39\x4b", - [0x3bd6] = "\x02\x39\x49", [0x3bd9] = "\x02\x39\x4a", - [0x3bda] = "\x02\x40\x3a", [0x3bdb] = "\x02\x40\x3b", - [0x3bdc] = "\x02\x47\x49", [0x3bdd] = "\x02\x40\x39", - [0x3bdf] = "\x02\x47\x43", [0x3be0] = "\x02\x47\x47", - [0x3be1] = "\x02\x47\x46", [0x3be2] = "\x02\x47\x48", - [0x3be3] = "\x01\x66\x58", [0x3be4] = "\x02\x47\x45", - [0x3be5] = "\x02\x47\x44", [0x3be6] = "\x02\x47\x4a", - [0x3be7] = "\x0e\x44\x54", [0x3be8] = "\x02\x4e\x31", - [0x3be9] = "\x02\x4e\x2f", [0x3bea] = "\x0e\x49\x5c", - [0x3beb] = "\x02\x4e\x30", [0x3bec] = "\x02\x54\x3c", - [0x3bed] = "\x02\x54\x3a", [0x3bee] = "\x0e\x4e\x66", - [0x3bf0] = "\x02\x54\x3b", [0x3bf1] = "\x02\x5a\x4b", - [0x3bf2] = "\x02\x5f\x4a", [0x3bf3] = "\x02\x5f\x4b", - [0x3bf4] = "\x01\x77\x3d", [0x3bf5] = "\x0e\x5b\x32", - [0x3bf6] = "\x02\x67\x22", [0x3bf7] = "\x02\x69\x79", - [0x3bf8] = "\x01\x7a\x3d", [0x3bfa] = "\x02\x6c\x3b", - [0x3bfb] = "\x02\x6e\x24", [0x3bfc] = "\x01\x7b\x73", - [0x3bfe] = "\x02\x6f\x4d", [0x3bff] = "\x02\x71\x3b", - [0x3c00] = "\x01\x4b\x46", [0x3c02] = "\x01\x53\x54", - [0x3c03] = "\x01\x53\x55", [0x3c04] = "\x02\x2d\x51", - [0x3c05] = "\x0e\x2f\x2a", [0x3c06] = "\x0e\x2f\x2c", - [0x3c07] = "\x02\x2d\x52", [0x3c08] = "\x01\x53\x53", - [0x3c0a] = "\x01\x58\x39", [0x3c0b] = "\x0e\x33\x7b", - [0x3c0c] = "\x01\x58\x37", [0x3c0d] = "\x0e\x33\x7a", - [0x3c0e] = "\x01\x58\x36", [0x3c0f] = "\x01\x58\x3d", - [0x3c10] = "\x01\x58\x35", [0x3c11] = "\x01\x58\x3e", - [0x3c12] = "\x02\x33\x21", [0x3c13] = "\x01\x58\x3b", - [0x3c15] = "\x01\x58\x38", [0x3c16] = "\x01\x58\x3c", - [0x3c17] = "\x01\x58\x3a", [0x3c18] = "\x01\x58\x34", - [0x3c19] = "\x0e\x33\x7c", [0x3c1b] = "\x01\x5d\x45", - [0x3c1c] = "\x0e\x38\x7e", [0x3c1d] = "\x01\x5d\x3f", - [0x3c1e] = "\x02\x39\x4f", [0x3c1f] = "\x01\x5d\x44", - [0x3c20] = "\x0e\x39\x23", [0x3c21] = "\x0e\x39\x29", - [0x3c22] = "\x01\x5d\x46", [0x3c23] = "\x01\x5d\x40", - [0x3c25] = "\x01\x5d\x41", [0x3c26] = "\x0e\x38\x79", - [0x3c27] = "\x02\x39\x4d", [0x3c28] = "\x0e\x38\x7b", - [0x3c29] = "\x0e\x39\x25", [0x3c2a] = "\x01\x5d\x3e", - [0x3c2b] = "\x0e\x39\x22", [0x3c2c] = "\x02\x39\x4e", - [0x3c2d] = "\x01\x5d\x43", [0x3c2e] = "\x0e\x63\x30", - [0x3c30] = "\x02\x39\x4c", [0x3c31] = "\x01\x5d\x42", - [0x3c32] = "\x0e\x38\x7a", [0x3c34] = "\x01\x62\x2b", - [0x3c35] = "\x0e\x3e\x7c", [0x3c36] = "\x01\x62\x2d", - [0x3c38] = "\x0e\x3e\x7d", [0x3c39] = "\x02\x40\x3e", - [0x3c3a] = "\x01\x62\x2c", [0x3c3b] = "\x01\x62\x21", - [0x3c3c] = "\x01\x62\x25", [0x3c3d] = "\x0e\x3f\x24", - [0x3c3e] = "\x01\x66\x6b", [0x3c3f] = "\x02\x47\x4f", - [0x3c40] = "\x02\x40\x40", [0x3c41] = "\x01\x62\x26", - [0x3c42] = "\x0e\x3e\x7e", [0x3c43] = "\x0e\x3e\x75", - [0x3c44] = "\x02\x40\x43", [0x3c45] = "\x02\x40\x44", - [0x3c46] = "\x01\x62\x2a", [0x3c48] = "\x02\x40\x46", - [0x3c49] = "\x0e\x3f\x21", [0x3c4a] = "\x02\x40\x48", - [0x3c4b] = "\x0e\x3f\x23", [0x3c4c] = "\x02\x40\x49", - [0x3c4d] = "\x02\x40\x3d", [0x3c4e] = "\x02\x40\x3c", - [0x3c4f] = "\x02\x40\x4a", [0x3c50] = "\x01\x62\x29", - [0x3c51] = "\x02\x40\x47", [0x3c52] = "\x02\x40\x45", - [0x3c54] = "\x01\x62\x27", [0x3c55] = "\x01\x62\x23", - [0x3c56] = "\x01\x62\x2e", [0x3c57] = "\x02\x40\x41", - [0x3c58] = "\x02\x40\x42", [0x3c59] = "\x02\x40\x3f", - [0x3c5a] = "\x0e\x3e\x78", [0x3c5b] = "\x01\x62\x28", - [0x3c5d] = "\x0e\x3f\x22", [0x3c5e] = "\x01\x62\x24", - [0x3c60] = "\x01\x62\x22", [0x3c61] = "\x02\x47\x4e", - [0x3c62] = "\x01\x66\x66", [0x3c63] = "\x01\x66\x61", - [0x3c64] = "\x0e\x44\x60", [0x3c65] = "\x0e\x44\x59", - [0x3c66] = "\x01\x66\x5c", [0x3c67] = "\x0e\x44\x63", - [0x3c68] = "\x01\x66\x6c", [0x3c69] = "\x01\x66\x5d", - [0x3c6a] = "\x0e\x44\x55", [0x3c6b] = "\x01\x66\x59", - [0x3c6c] = "\x01\x66\x68", [0x3c6d] = "\x01\x66\x65", - [0x3c6e] = "\x01\x66\x67", [0x3c6f] = "\x0e\x44\x58", - [0x3c70] = "\x01\x66\x5e", [0x3c71] = "\x01\x66\x63", - [0x3c72] = "\x01\x66\x5a", [0x3c73] = "\x01\x66\x5b", - [0x3c74] = "\x02\x47\x56", [0x3c75] = "\x02\x47\x53", - [0x3c76] = "\x02\x47\x4b", [0x3c77] = "\x02\x47\x50", - [0x3c78] = "\x0e\x44\x5b", [0x3c79] = "\x01\x66\x69", - [0x3c7a] = "\x02\x47\x57", [0x3c7b] = "\x01\x66\x6a", - [0x3c7c] = "\x01\x66\x60", [0x3c7d] = "\x0e\x44\x5c", - [0x3c7e] = "\x0e\x44\x61", [0x3c7f] = "\x02\x47\x4d", - [0x3c80] = "\x0e\x44\x56", [0x3c81] = "\x02\x47\x55", - [0x3c82] = "\x02\x47\x51", [0x3c83] = "\x02\x47\x54", - [0x3c84] = "\x02\x47\x52", [0x3c85] = "\x01\x66\x64", - [0x3c86] = "\x02\x47\x4c", [0x3c87] = "\x01\x66\x5f", - [0x3c88] = "\x0e\x44\x5d", [0x3c8b] = "\x02\x4e\x34", - [0x3c8c] = "\x01\x6b\x22", [0x3c8d] = "\x01\x6b\x25", - [0x3c8e] = "\x0e\x49\x5f", [0x3c8f] = "\x02\x4e\x36", - [0x3c90] = "\x0e\x49\x64", [0x3c91] = "\x01\x6b\x2d", - [0x3c92] = "\x02\x4e\x35", [0x3c93] = "\x01\x6b\x27", - [0x3c94] = "\x0e\x49\x63", [0x3c95] = "\x01\x6e\x78", - [0x3c96] = "\x02\x4e\x37", [0x3c98] = "\x01\x6b\x2c", - [0x3c99] = "\x02\x4e\x33", [0x3c9a] = "\x01\x6b\x2e", - [0x3c9b] = "\x0e\x49\x5e", [0x3c9c] = "\x0e\x49\x62", - [0x3c9d] = "\x0e\x49\x6b", [0x3c9e] = "\x01\x6b\x23", - [0x3c9f] = "\x0e\x49\x68", [0x3ca0] = "\x01\x66\x62", - [0x3ca1] = "\x01\x6b\x26", [0x3ca2] = "\x0e\x49\x60", - [0x3ca3] = "\x01\x6b\x24", [0x3ca4] = "\x01\x6b\x28", - [0x3ca5] = "\x01\x6b\x2a", [0x3ca6] = "\x01\x6b\x21", - [0x3ca7] = "\x01\x6b\x2f", [0x3ca8] = "\x01\x6b\x2b", - [0x3ca9] = "\x0e\x49\x65", [0x3caa] = "\x01\x6b\x29", - [0x3cab] = "\x02\x4e\x32", [0x3cac] = "\x0e\x49\x66", - [0x3caf] = "\x0e\x4e\x74", [0x3cb0] = "\x01\x6f\x21", - [0x3cb1] = "\x0e\x4e\x67", [0x3cb2] = "\x01\x6e\x7b", - [0x3cb3] = "\x0e\x4e\x72", [0x3cb4] = "\x0e\x4e\x70", - [0x3cb5] = "\x0e\x4e\x6e", [0x3cb6] = "\x01\x6f\x24", - [0x3cb7] = "\x0e\x4e\x6c", [0x3cb8] = "\x02\x54\x3f", - [0x3cb9] = "\x01\x6f\x25", [0x3cba] = "\x02\x54\x4b", - [0x3cbb] = "\x02\x54\x44", [0x3cbc] = "\x01\x6e\x74", - [0x3cbd] = "\x02\x54\x4c", [0x3cbe] = "\x02\x54\x46", - [0x3cbf] = "\x01\x6e\x7e", [0x3cc0] = "\x02\x54\x47", - [0x3cc1] = "\x0e\x4e\x73", [0x3cc2] = "\x01\x6e\x7d", - [0x3cc3] = "\x02\x54\x4a", [0x3cc4] = "\x01\x6e\x77", - [0x3cc5] = "\x02\x54\x48", [0x3cc6] = "\x02\x54\x3e", - [0x3cc7] = "\x01\x6e\x76", [0x3cc8] = "\x02\x5a\x56", - [0x3cc9] = "\x01\x6e\x7c", [0x3cca] = "\x0e\x4e\x75", - [0x3ccb] = "\x01\x6e\x79", [0x3ccc] = "\x0e\x4e\x69", - [0x3ccd] = "\x01\x6f\x23", [0x3cce] = "\x0e\x4e\x6a", - [0x3ccf] = "\x02\x54\x3d", [0x3cd0] = "\x0e\x4e\x76", - [0x3cd1] = "\x02\x54\x41", [0x3cd2] = "\x01\x6e\x75", - [0x3cd3] = "\x02\x54\x40", [0x3cd4] = "\x02\x54\x42", - [0x3cd5] = "\x02\x54\x43", [0x3cd6] = "\x01\x6f\x22", - [0x3cd7] = "\x02\x54\x45", [0x3cd8] = "\x02\x54\x49", - [0x3cd9] = "\x02\x54\x4d", [0x3cdb] = "\x01\x6f\x26", - [0x3cdc] = "\x01\x72\x3c", [0x3cdd] = "\x02\x5a\x51", - [0x3cde] = "\x02\x5a\x57", [0x3cdf] = "\x02\x5a\x54", - [0x3ce0] = "\x02\x5a\x4c", [0x3ce1] = "\x02\x5a\x58", - [0x3ce2] = "\x02\x5a\x4d", [0x3ce3] = "\x0e\x52\x6a", - [0x3ce4] = "\x02\x5a\x53", [0x3ce5] = "\x0e\x52\x6b", - [0x3ce6] = "\x01\x72\x37", [0x3ce7] = "\x01\x72\x3d", - [0x3ce8] = "\x02\x5a\x59", [0x3ce9] = "\x0e\x4e\x6f", - [0x3cea] = "\x0e\x52\x67", [0x3ceb] = "\x01\x72\x39", - [0x3cec] = "\x0e\x52\x6e", [0x3ced] = "\x01\x72\x43", - [0x3cee] = "\x01\x72\x3e", [0x3cef] = "\x02\x5a\x5b", - [0x3cf0] = "\x02\x5a\x55", [0x3cf1] = "\x01\x72\x3a", - [0x3cf2] = "\x02\x5a\x4e", [0x3cf3] = "\x01\x72\x44", - [0x3cf4] = "\x02\x5a\x4f", [0x3cf5] = "\x02\x5a\x50", - [0x3cf6] = "\x01\x72\x45", [0x3cf7] = "\x01\x72\x42", - [0x3cf8] = "\x01\x6e\x7a", [0x3cf9] = "\x0e\x52\x69", - [0x3cfa] = "\x01\x72\x38", [0x3cfb] = "\x02\x5a\x5c", - [0x3cfc] = "\x01\x72\x46", [0x3cfd] = "\x0e\x52\x68", - [0x3cfe] = "\x01\x72\x3f", [0x3cff] = "\x02\x5a\x5a", - [0x3d00] = "\x01\x72\x3b", [0x3d01] = "\x01\x72\x40", - [0x3d02] = "\x01\x72\x41", [0x3d03] = "\x0e\x66\x4c", - [0x3d04] = "\x01\x75\x4e", [0x3d05] = "\x02\x5f\x50", - [0x3d06] = "\x02\x5f\x59", [0x3d07] = "\x02\x5f\x56", - [0x3d08] = "\x02\x5f\x58", [0x3d09] = "\x0e\x56\x49", - [0x3d0a] = "\x01\x75\x4b", [0x3d0b] = "\x02\x5f\x51", - [0x3d0c] = "\x0e\x56\x4a", [0x3d0d] = "\x02\x5f\x57", - [0x3d0e] = "\x01\x75\x47", [0x3d0f] = "\x02\x5f\x53", - [0x3d10] = "\x01\x75\x4f", [0x3d11] = "\x02\x5f\x4f", - [0x3d12] = "\x02\x5f\x54", [0x3d13] = "\x02\x5f\x5b", - [0x3d14] = "\x02\x5a\x52", [0x3d15] = "\x02\x5f\x55", - [0x3d16] = "\x02\x5f\x4e", [0x3d17] = "\x01\x75\x48", - [0x3d18] = "\x02\x5f\x4d", [0x3d19] = "\x01\x75\x49", - [0x3d1a] = "\x02\x5f\x5c", [0x3d1b] = "\x01\x75\x4a", - [0x3d1c] = "\x02\x5f\x5a", [0x3d1d] = "\x01\x75\x4d", - [0x3d1e] = "\x02\x5f\x4c", [0x3d1f] = "\x0e\x56\x48", - [0x3d20] = "\x01\x75\x4c", [0x3d22] = "\x02\x5f\x52", - [0x3d23] = "\x02\x63\x47", [0x3d24] = "\x02\x63\x55", - [0x3d25] = "\x02\x63\x50", [0x3d26] = "\x02\x63\x52", - [0x3d27] = "\x02\x63\x46", [0x3d28] = "\x01\x77\x3e", - [0x3d29] = "\x0e\x59\x2a", [0x3d2a] = "\x02\x63\x45", - [0x3d2b] = "\x01\x77\x41", [0x3d2c] = "\x01\x77\x40", - [0x3d2d] = "\x0e\x59\x26", [0x3d2e] = "\x02\x63\x54", - [0x3d2f] = "\x02\x63\x4c", [0x3d30] = "\x02\x63\x49", - [0x3d31] = "\x02\x63\x4f", [0x3d32] = "\x0e\x59\x24", - [0x3d33] = "\x02\x63\x48", [0x3d34] = "\x0e\x59\x28", - [0x3d35] = "\x02\x63\x4a", [0x3d36] = "\x02\x63\x53", - [0x3d37] = "\x02\x63\x51", [0x3d38] = "\x0e\x59\x23", - [0x3d39] = "\x01\x77\x3f", [0x3d3a] = "\x02\x63\x58", - [0x3d3b] = "\x02\x63\x56", [0x3d3c] = "\x02\x63\x4d", - [0x3d3d] = "\x02\x63\x57", [0x3d3e] = "\x02\x63\x4e", - [0x3d3f] = "\x0e\x5b\x34", [0x3d40] = "\x02\x67\x26", - [0x3d41] = "\x01\x78\x7a", [0x3d42] = "\x02\x67\x2d", - [0x3d43] = "\x0e\x5b\x35", [0x3d45] = "\x02\x6c\x3e", - [0x3d46] = "\x01\x79\x23", [0x3d47] = "\x02\x63\x4b", - [0x3d48] = "\x02\x67\x24", [0x3d49] = "\x01\x78\x7d", - [0x3d4a] = "\x02\x67\x25", [0x3d4b] = "\x02\x67\x2a", - [0x3d4c] = "\x0e\x5b\x36", [0x3d4d] = "\x0e\x5d\x33", - [0x3d4e] = "\x01\x79\x21", [0x3d4f] = "\x01\x79\x22", - [0x3d50] = "\x02\x67\x23", [0x3d51] = "\x02\x67\x2c", - [0x3d52] = "\x02\x67\x2e", [0x3d53] = "\x02\x67\x27", - [0x3d54] = "\x02\x67\x29", [0x3d55] = "\x02\x67\x2b", - [0x3d56] = "\x02\x67\x28", [0x3d57] = "\x02\x67\x2f", - [0x3d58] = "\x01\x78\x7c", [0x3d59] = "\x01\x79\x24", - [0x3d5a] = "\x01\x78\x7e", [0x3d5c] = "\x01\x78\x7b", - [0x3d5d] = "\x02\x69\x7c", [0x3d5f] = "\x01\x7a\x42", - [0x3d60] = "\x02\x69\x7a", [0x3d61] = "\x0e\x5d\x30", - [0x3d62] = "\x0e\x5d\x2c", [0x3d63] = "\x02\x69\x7e", - [0x3d64] = "\x0e\x5d\x32", [0x3d65] = "\x02\x6a\x21", - [0x3d66] = "\x01\x7a\x40", [0x3d67] = "\x02\x6a\x22", - [0x3d68] = "\x02\x69\x7d", [0x3d69] = "\x0e\x5d\x2b", - [0x3d6a] = "\x02\x69\x7b", [0x3d6b] = "\x01\x7a\x43", - [0x3d6c] = "\x01\x7a\x3f", [0x3d6d] = "\x02\x6a\x23", - [0x3d6e] = "\x0e\x5d\x2e", [0x3d6f] = "\x01\x7a\x41", - [0x3d70] = "\x01\x7a\x3e", [0x3d71] = "\x0e\x5c\x6d", - [0x3d73] = "\x0e\x64\x2d", [0x3d74] = "\x01\x7b\x2b", - [0x3d75] = "\x0e\x5e\x62", [0x3d77] = "\x01\x7b\x2c", - [0x3d78] = "\x02\x6c\x3d", [0x3d79] = "\x02\x6c\x3c", - [0x3d7a] = "\x02\x6c\x3f", [0x3d7b] = "\x02\x6c\x40", - [0x3d7c] = "\x0e\x5e\x63", [0x3d7d] = "\x01\x7b\x2d", - [0x3d7e] = "\x02\x6e\x25", [0x3d7f] = "\x02\x6e\x2a", - [0x3d80] = "\x01\x7b\x74", [0x3d81] = "\x0e\x5f\x61", - [0x3d82] = "\x02\x6e\x27", [0x3d83] = "\x0e\x5f\x62", - [0x3d84] = "\x02\x6e\x26", [0x3d85] = "\x02\x6e\x29", - [0x3d86] = "\x02\x6e\x28", [0x3d87] = "\x0e\x60\x48", - [0x3d88] = "\x02\x6f\x51", [0x3d8a] = "\x01\x7c\x48", - [0x3d8b] = "\x02\x6f\x50", [0x3d8c] = "\x02\x6f\x4e", - [0x3d8d] = "\x0e\x60\x47", [0x3d8e] = "\x02\x6f\x4f", - [0x3d90] = "\x0e\x60\x49", [0x3d91] = "\x0e\x60\x7b", - [0x3d92] = "\x01\x7c\x6a", [0x3d93] = "\x01\x7c\x69", - [0x3d94] = "\x02\x70\x4f", [0x3d95] = "\x02\x70\x50", - [0x3d96] = "\x01\x7c\x6b", [0x3d97] = "\x0e\x61\x4b", - [0x3d98] = "\x02\x71\x3c", [0x3d99] = "\x02\x71\x3d", - [0x3d9a] = "\x01\x7d\x34", [0x3d9b] = "\x0e\x61\x6b", - [0x3d9c] = "\x01\x7d\x3a", [0x3d9d] = "\x0e\x61\x7e", - [0x3d9e] = "\x02\x71\x77", [0x3d9f] = "\x02\x72\x36", - [0x3e37] = "\x01\x4b\x47", [0x3e39] = "\x02\x39\x50", - [0x3e3a] = "\x0e\x39\x2a", [0x3e3b] = "\x02\x39\x51", - [0x3e3c] = "\x02\x47\x58", [0x3e3d] = "\x02\x4e\x38", - [0x3e3e] = "\x02\x54\x4e", [0x3e3f] = "\x01\x75\x51", - [0x3e40] = "\x0e\x56\x4d", [0x3e41] = "\x01\x75\x50", - [0x3e42] = "\x02\x63\x59", [0x3e43] = "\x02\x67\x30", - [0x3e44] = "\x0e\x5f\x64", [0x3e45] = "\x02\x6f\x52", - [0x3e46] = "\x01\x4b\x48", [0x3e47] = "\x02\x33\x22", - [0x3e48] = "\x01\x58\x3f", [0x3e49] = "\x01\x5d\x47", - [0x3e4a] = "\x02\x47\x5a", [0x3e4b] = "\x02\x47\x59", - [0x3e4c] = "\x01\x6f\x27", [0x3e4d] = "\x02\x54\x4f", - [0x3e4e] = "\x01\x6f\x28", [0x3e4f] = "\x02\x5f\x5d", - [0x3e50] = "\x01\x77\x42", [0x3e51] = "\x0e\x5d\x34", - [0x3e52] = "\x0e\x66\x4d", [0x3e53] = "\x0e\x62\x21", - [0x3e54] = "\x01\x7d\x43", [0x3e55] = "\x01\x4b\x49", - [0x3e56] = "\x02\x28\x6b", [0x3e57] = "\x02\x33\x23", - [0x3e58] = "\x0e\x39\x2d", [0x3e5a] = "\x01\x5d\x48", - [0x3e5b] = "\x0e\x39\x2c", [0x3e5c] = "\x02\x39\x52", - [0x3e5d] = "\x02\x39\x53", [0x3e5e] = "\x0e\x3f\x2a", - [0x3e5f] = "\x02\x40\x4b", [0x3e60] = "\x0e\x3f\x29", - [0x3e61] = "\x01\x62\x2f", [0x3e62] = "\x01\x66\x6d", - [0x3e63] = "\x0e\x44\x64", [0x3e64] = "\x02\x47\x5c", - [0x3e65] = "\x02\x47\x5b", [0x3e66] = "\x02\x47\x5d", - [0x3e67] = "\x0e\x49\x6d", [0x3e68] = "\x02\x4e\x39", - [0x3e69] = "\x02\x4e\x3a", [0x3e6a] = "\x01\x6b\x30", - [0x3e6b] = "\x01\x72\x47", [0x3e6c] = "\x01\x6f\x29", - [0x3e6d] = "\x01\x72\x48", [0x3e6f] = "\x02\x5f\x61", - [0x3e70] = "\x02\x5f\x5e", [0x3e71] = "\x02\x5f\x60", - [0x3e72] = "\x02\x5f\x5f", [0x3e73] = "\x01\x75\x52", - [0x3e74] = "\x0e\x59\x2b", [0x3e75] = "\x02\x63\x5a", - [0x3e76] = "\x02\x67\x32", [0x3e77] = "\x02\x67\x31", - [0x3e78] = "\x02\x25\x24", [0x3e79] = "\x01\x58\x41", - [0x3e7a] = "\x01\x58\x40", [0x3e7b] = "\x02\x33\x24", - [0x3e7c] = "\x0e\x39\x2e", [0x3e7d] = "\x02\x39\x54", - [0x3e7e] = "\x0e\x3f\x2c", [0x3e7f] = "\x0e\x3f\x2b", - [0x3e80] = "\x02\x40\x4d", [0x3e81] = "\x02\x40\x4c", - [0x3e82] = "\x01\x62\x30", [0x3e83] = "\x0e\x3f\x2d", - [0x3e84] = "\x02\x47\x5f", [0x3e85] = "\x02\x47\x60", - [0x3e86] = "\x02\x47\x5e", [0x3e87] = "\x0e\x63\x4a", - [0x3e88] = "\x0e\x44\x65", [0x3e89] = "\x01\x66\x6f", - [0x3e8a] = "\x01\x66\x6e", [0x3e8c] = "\x01\x6b\x32", - [0x3e8d] = "\x01\x6b\x31", [0x3e8e] = "\x0e\x4e\x7a", - [0x3e8f] = "\x02\x54\x50", [0x3e90] = "\x02\x5a\x5f", - [0x3e91] = "\x02\x5a\x5d", [0x3e92] = "\x02\x5a\x5e", - [0x3e93] = "\x01\x72\x49", [0x3e94] = "\x02\x5f\x63", - [0x3e95] = "\x02\x5f\x62", [0x3e96] = "\x0e\x56\x4f", - [0x3e97] = "\x02\x63\x5d", [0x3e98] = "\x02\x63\x5c", - [0x3e99] = "\x02\x63\x5b", [0x3e9a] = "\x02\x67\x33", - [0x3e9b] = "\x0e\x61\x4d", [0x3e9c] = "\x02\x71\x78", - [0x3e9d] = "\x01\x4b\x4a", [0x3e9e] = "\x01\x53\x56", - [0x3e9f] = "\x0e\x2f\x2e", [0x3ea0] = "\x01\x53\x57", - [0x3ea1] = "\x01\x58\x42", [0x3ea2] = "\x01\x58\x43", - [0x3ea3] = "\x02\x33\x26", [0x3ea4] = "\x02\x33\x25", - [0x3ea5] = "\x02\x39\x55", [0x3ea6] = "\x0e\x39\x30", - [0x3ea7] = "\x01\x5d\x4e", [0x3ea8] = "\x01\x5d\x4c", - [0x3ea9] = "\x01\x5d\x49", [0x3eaa] = "\x01\x5d\x4d", - [0x3eab] = "\x01\x5d\x4b", [0x3eac] = "\x01\x5d\x4a", - [0x3ead] = "\x0e\x39\x32", [0x3eae] = "\x0e\x39\x31", - [0x3eaf] = "\x01\x62\x31", [0x3eb0] = "\x02\x40\x50", - [0x3eb1] = "\x0e\x3f\x2f", [0x3eb2] = "\x01\x66\x74", - [0x3eb3] = "\x01\x62\x33", [0x3eb4] = "\x01\x62\x38", - [0x3eb5] = "\x02\x40\x52", [0x3eb6] = "\x01\x62\x3a", - [0x3eb7] = "\x01\x62\x39", [0x3eb8] = "\x01\x62\x3c", - [0x3eb9] = "\x02\x40\x51", [0x3eba] = "\x02\x40\x4e", - [0x3ebb] = "\x01\x62\x36", [0x3ebc] = "\x01\x62\x32", - [0x3ebd] = "\x01\x62\x34", [0x3ebe] = "\x02\x40\x4f", - [0x3ebf] = "\x01\x62\x3b", [0x3ec0] = "\x01\x62\x37", - [0x3ec1] = "\x01\x62\x35", [0x3ec2] = "\x01\x66\x76", - [0x3ec3] = "\x01\x66\x75", [0x3ec4] = "\x01\x66\x73", - [0x3ec5] = "\x01\x66\x77", [0x3ec7] = "\x01\x66\x71", - [0x3ec8] = "\x01\x66\x72", [0x3ec9] = "\x0e\x44\x69", - [0x3eca] = "\x01\x66\x70", [0x3ecc] = "\x02\x47\x61", - [0x3ecd] = "\x0e\x44\x67", [0x3ecf] = "\x02\x4e\x3c", - [0x3ed0] = "\x0e\x49\x70", [0x3ed1] = "\x01\x6b\x34", - [0x3ed2] = "\x01\x6b\x35", [0x3ed3] = "\x01\x6b\x33", - [0x3ed4] = "\x0e\x49\x72", [0x3ed5] = "\x02\x4e\x3b", - [0x3ed6] = "\x0e\x49\x71", [0x3ed7] = "\x02\x4e\x3d", - [0x3ed8] = "\x0e\x66\x4e", [0x3ed9] = "\x02\x54\x53", - [0x3eda] = "\x02\x54\x55", [0x3edb] = "\x0e\x4e\x7e", - [0x3edc] = "\x01\x6f\x32", [0x3edd] = "\x02\x54\x56", - [0x3ede] = "\x01\x6f\x2b", [0x3edf] = "\x02\x54\x52", - [0x3ee0] = "\x01\x6f\x2a", [0x3ee1] = "\x01\x6f\x34", - [0x3ee2] = "\x01\x6f\x30", [0x3ee3] = "\x01\x6f\x31", - [0x3ee4] = "\x01\x6f\x2d", [0x3ee5] = "\x02\x54\x51", - [0x3ee6] = "\x01\x6f\x2c", [0x3ee7] = "\x02\x54\x57", - [0x3ee8] = "\x02\x54\x54", [0x3ee9] = "\x0e\x4e\x7d", - [0x3eea] = "\x01\x6f\x33", [0x3eeb] = "\x0e\x4f\x22", - [0x3eec] = "\x01\x6f\x2e", [0x3eed] = "\x01\x6f\x2f", - [0x3eee] = "\x02\x5a\x61", [0x3eef] = "\x0e\x52\x75", - [0x3ef0] = "\x02\x5a\x63", [0x3ef1] = "\x02\x5a\x62", - [0x3ef2] = "\x0e\x52\x73", [0x3ef3] = "\x02\x5a\x64", - [0x3ef4] = "\x01\x72\x4a", [0x3ef5] = "\x02\x5a\x60", - [0x3ef6] = "\x0e\x56\x51", [0x3ef7] = "\x0e\x56\x52", - [0x3ef8] = "\x01\x75\x56", [0x3ef9] = "\x02\x5f\x64", - [0x3efa] = "\x01\x75\x53", [0x3efb] = "\x01\x75\x57", - [0x3efc] = "\x01\x75\x55", [0x3efd] = "\x01\x75\x54", - [0x3efe] = "\x02\x63\x5e", [0x3f00] = "\x02\x63\x61", - [0x3f02] = "\x02\x63\x60", [0x3f03] = "\x0e\x59\x2e", - [0x3f04] = "\x02\x63\x5f", [0x3f05] = "\x01\x77\x43", - [0x3f06] = "\x02\x67\x34", [0x3f07] = "\x02\x67\x35", - [0x3f08] = "\x01\x79\x25", [0x3f09] = "\x02\x67\x36", - [0x3f0a] = "\x01\x79\x26", [0x3f0b] = "\x0e\x5b\x38", - [0x3f0c] = "\x0e\x66\x4f", [0x3f0d] = "\x01\x7a\x45", - [0x3f0e] = "\x0e\x64\x28", [0x3f0f] = "\x01\x7a\x44", - [0x3f10] = "\x02\x6c\x41", [0x3f11] = "\x0e\x5e\x65", - [0x3f12] = "\x0e\x5e\x66", [0x3f13] = "\x01\x7b\x2e", - [0x3f14] = "\x02\x6c\x42", [0x3f15] = "\x02\x6e\x2b", - [0x3f16] = "\x01\x7b\x75", [0x3f17] = "\x01\x7b\x76", - [0x3f18] = "\x0e\x66\x50", [0x3f19] = "\x02\x6f\x53", - [0x3f1a] = "\x0e\x60\x4a", [0x3f1b] = "\x01\x7c\x6d", - [0x3f1c] = "\x0e\x61\x4e", [0x3f64] = "\x01\x4b\x4b", - [0x3f65] = "\x0e\x39\x33", [0x3f66] = "\x01\x5d\x50", - [0x3f67] = "\x01\x5d\x4f", [0x3f68] = "\x02\x47\x62", - [0x3f69] = "\x02\x47\x63", [0x3f6b] = "\x01\x6b\x36", - [0x3f6c] = "\x02\x5a\x65", [0x3f6d] = "\x01\x6f\x35", - [0x3f6e] = "\x02\x5a\x66", [0x3f6f] = "\x02\x5f\x65", - [0x3f70] = "\x01\x4b\x4c", [0x3f71] = "\x0e\x24\x3a", - [0x3f72] = "\x02\x2d\x53", [0x3f73] = "\x01\x53\x59", - [0x3f74] = "\x01\x53\x58", [0x3f76] = "\x02\x33\x27", - [0x3f77] = "\x01\x58\x44", [0x3f78] = "\x02\x33\x28", - [0x3f79] = "\x02\x39\x58", [0x3f7a] = "\x0e\x39\x39", - [0x3f7b] = "\x02\x39\x57", [0x3f7c] = "\x0e\x39\x37", - [0x3f7d] = "\x02\x39\x56", [0x3f7e] = "\x0e\x39\x35", - [0x3f7f] = "\x0e\x39\x38", [0x3f80] = "\x02\x40\x54", - [0x3f81] = "\x01\x62\x3f", [0x3f82] = "\x0e\x3f\x39", - [0x3f83] = "\x0e\x3f\x34", [0x3f84] = "\x02\x40\x53", - [0x3f85] = "\x01\x62\x3e", [0x3f86] = "\x0e\x3f\x37", - [0x3f87] = "\x0e\x3f\x30", [0x3f88] = "\x0e\x3f\x33", - [0x3f89] = "\x02\x40\x55", [0x3f8a] = "\x01\x62\x3d", - [0x3f8b] = "\x0e\x3f\x38", [0x3f8c] = "\x02\x47\x65", - [0x3f8d] = "\x02\x47\x68", [0x3f8e] = "\x02\x47\x66", - [0x3f8f] = "\x02\x47\x67", [0x3f90] = "\x02\x47\x6b", - [0x3f91] = "\x02\x47\x64", [0x3f92] = "\x02\x47\x6c", - [0x3f93] = "\x02\x47\x69", [0x3f94] = "\x02\x47\x6a", - [0x3f95] = "\x01\x6b\x38", [0x3f96] = "\x02\x4e\x3e", - [0x3f97] = "\x0e\x49\x75", [0x3f98] = "\x0e\x49\x73", - [0x3f99] = "\x01\x6b\x37", [0x3f9a] = "\x0e\x49\x74", - [0x3f9b] = "\x02\x54\x5b", [0x3f9c] = "\x02\x54\x59", - [0x3f9d] = "\x0e\x4f\x26", [0x3f9f] = "\x01\x6f\x36", - [0x3fa0] = "\x02\x54\x58", [0x3fa1] = "\x02\x54\x5a", - [0x3fa2] = "\x0e\x4f\x25", [0x3fa3] = "\x01\x6f\x37", - [0x3fa4] = "\x0e\x4f\x23", [0x3fa5] = "\x02\x5a\x67", - [0x3fa6] = "\x0e\x52\x77", [0x3fa7] = "\x02\x5a\x68", - [0x3fa8] = "\x01\x75\x58", [0x3fa9] = "\x0e\x59\x31", - [0x3faa] = "\x02\x67\x38", [0x3fab] = "\x02\x67\x3a", - [0x3fac] = "\x02\x67\x37", [0x3fad] = "\x02\x67\x39", - [0x3fae] = "\x02\x6a\x24", [0x3faf] = "\x02\x6c\x43", - [0x3fb0] = "\x0e\x66\x51", [0x3fb2] = "\x02\x71\x5e", - [0x3fb3] = "\x01\x4b\x4d", [0x3fb4] = "\x01\x53\x5a", - [0x3fb5] = "\x02\x33\x29", [0x3fb6] = "\x02\x33\x2b", - [0x3fb7] = "\x02\x33\x2a", [0x3fb9] = "\x02\x39\x5b", - [0x3fba] = "\x01\x5d\x52", [0x3fbb] = "\x0e\x39\x3e", - [0x3fbc] = "\x02\x39\x59", [0x3fbd] = "\x0e\x39\x3a", - [0x3fbe] = "\x01\x5d\x51", [0x3fbf] = "\x02\x39\x5c", - [0x3fc0] = "\x0e\x39\x3d", [0x3fc1] = "\x02\x39\x5d", - [0x3fc2] = "\x02\x39\x5a", [0x3fc5] = "\x02\x40\x61", - [0x3fc6] = "\x01\x62\x47", [0x3fc7] = "\x02\x40\x59", - [0x3fc8] = "\x02\x40\x5f", [0x3fc9] = "\x0e\x3f\x3f", - [0x3fca] = "\x0e\x3f\x3a", [0x3fcb] = "\x01\x62\x42", - [0x3fcc] = "\x01\x62\x45", [0x3fcd] = "\x02\x40\x58", - [0x3fce] = "\x01\x62\x40", [0x3fcf] = "\x02\x40\x5c", - [0x3fd0] = "\x02\x47\x72", [0x3fd1] = "\x01\x62\x44", - [0x3fd2] = "\x0e\x3f\x3b", [0x3fd3] = "\x02\x40\x57", - [0x3fd4] = "\x0e\x3f\x3e", [0x3fd5] = "\x02\x40\x5d", - [0x3fd6] = "\x02\x40\x5a", [0x3fd7] = "\x02\x40\x60", - [0x3fd8] = "\x02\x40\x56", [0x3fd9] = "\x02\x40\x5e", - [0x3fda] = "\x01\x62\x43", [0x3fdb] = "\x01\x62\x46", - [0x3fdc] = "\x02\x40\x5b", [0x3fdd] = "\x01\x62\x41", - [0x3fdf] = "\x01\x66\x79", [0x3fe0] = "\x02\x47\x6e", - [0x3fe1] = "\x01\x66\x78", [0x3fe2] = "\x02\x47\x75", - [0x3fe3] = "\x02\x47\x74", [0x3fe4] = "\x01\x67\x21", - [0x3fe6] = "\x01\x67\x22", [0x3fe7] = "\x02\x47\x76", - [0x3fe8] = "\x01\x66\x7a", [0x3fe9] = "\x02\x47\x73", - [0x3fea] = "\x01\x66\x7e", [0x3feb] = "\x02\x47\x78", - [0x3fec] = "\x02\x47\x6f", [0x3fed] = "\x0e\x44\x6b", - [0x3fee] = "\x02\x47\x71", [0x3fef] = "\x01\x66\x7b", - [0x3ff0] = "\x02\x47\x6d", [0x3ff1] = "\x02\x47\x70", - [0x3ff2] = "\x02\x47\x77", [0x3ff3] = "\x01\x66\x7c", - [0x3ff4] = "\x02\x47\x79", [0x3ffa] = "\x01\x66\x7d", - [0x3ffc] = "\x01\x6b\x39", [0x3ffd] = "\x02\x4e\x43", - [0x3ffe] = "\x02\x4e\x49", [0x3fff] = "\x02\x4e\x41", - [0x4000] = "\x02\x4e\x4a", [0x4001] = "\x0e\x49\x7b", - [0x4002] = "\x02\x4e\x40", [0x4003] = "\x02\x4e\x45", - [0x4004] = "\x02\x4e\x4b", [0x4005] = "\x02\x4e\x48", - [0x4006] = "\x02\x4e\x47", [0x4007] = "\x02\x4e\x46", - [0x4008] = "\x0e\x49\x7a", [0x4009] = "\x02\x4e\x3f", - [0x400a] = "\x02\x4e\x44", [0x400b] = "\x0e\x49\x79", - [0x400d] = "\x02\x4e\x42", [0x400f] = "\x01\x6f\x3c", - [0x4010] = "\x01\x6f\x39", [0x4011] = "\x02\x54\x64", - [0x4012] = "\x02\x54\x69", [0x4013] = "\x02\x54\x6b", - [0x4014] = "\x02\x54\x68", [0x4015] = "\x02\x54\x61", - [0x4016] = "\x02\x54\x63", [0x4017] = "\x02\x54\x6d", - [0x4018] = "\x02\x54\x6a", [0x4019] = "\x02\x54\x65", - [0x401a] = "\x02\x54\x6e", [0x401b] = "\x02\x54\x62", - [0x401c] = "\x02\x54\x6c", [0x401d] = "\x01\x6f\x3a", - [0x401e] = "\x01\x6f\x40", [0x401f] = "\x01\x6f\x3e", - [0x4020] = "\x02\x54\x5c", [0x4021] = "\x01\x6f\x3f", - [0x4022] = "\x01\x6f\x3b", [0x4023] = "\x02\x54\x5d", - [0x4024] = "\x02\x54\x5f", [0x4025] = "\x02\x54\x5e", - [0x4026] = "\x02\x54\x66", [0x4027] = "\x02\x54\x67", - [0x4028] = "\x0e\x4f\x2c", [0x4029] = "\x01\x6f\x3d", - [0x402a] = "\x0e\x4f\x2b", [0x402b] = "\x01\x6f\x38", - [0x402e] = "\x02\x54\x60", [0x4030] = "\x02\x5a\x72", - [0x4031] = "\x01\x72\x4c", [0x4032] = "\x0e\x52\x7e", - [0x4033] = "\x02\x5a\x69", [0x4034] = "\x01\x72\x4d", - [0x4035] = "\x01\x72\x50", [0x4036] = "\x02\x5a\x6e", - [0x4038] = "\x02\x5a\x6b", [0x4039] = "\x01\x72\x4f", - [0x403b] = "\x0e\x52\x7b", [0x403c] = "\x02\x5a\x6f", - [0x403d] = "\x02\x5a\x70", [0x403e] = "\x02\x5a\x6a", - [0x403f] = "\x02\x5a\x73", [0x4040] = "\x02\x5a\x6c", - [0x4041] = "\x02\x5a\x71", [0x4042] = "\x01\x72\x4e", - [0x4043] = "\x0e\x52\x7c", [0x4044] = "\x01\x72\x4b", - [0x4045] = "\x02\x5a\x6d", [0x4046] = "\x0e\x56\x54", - [0x4047] = "\x02\x5f\x6b", [0x4048] = "\x01\x75\x5b", - [0x4049] = "\x01\x75\x59", [0x404a] = "\x01\x75\x5c", - [0x404b] = "\x01\x75\x5a", [0x404c] = "\x02\x5f\x6a", - [0x404d] = "\x02\x5f\x67", [0x404e] = "\x02\x5f\x66", - [0x404f] = "\x0e\x56\x55", [0x4050] = "\x02\x5f\x69", - [0x4053] = "\x02\x5f\x68", [0x4054] = "\x02\x63\x6f", - [0x4055] = "\x01\x77\x49", [0x4056] = "\x02\x63\x66", - [0x4057] = "\x02\x63\x65", [0x4058] = "\x0e\x59\x32", - [0x4059] = "\x01\x77\x44", [0x405a] = "\x02\x63\x6b", - [0x405b] = "\x02\x63\x6a", [0x405c] = "\x02\x63\x62", - [0x405d] = "\x02\x63\x6d", [0x405e] = "\x02\x63\x67", - [0x405f] = "\x01\x77\x48", [0x4060] = "\x02\x63\x64", - [0x4061] = "\x02\x63\x6c", [0x4062] = "\x02\x63\x63", - [0x4063] = "\x01\x77\x45", [0x4064] = "\x01\x77\x47", - [0x4065] = "\x02\x63\x68", [0x4066] = "\x01\x77\x46", - [0x4067] = "\x02\x63\x69", [0x4068] = "\x0e\x5b\x3a", - [0x4069] = "\x02\x63\x6e", [0x406a] = "\x02\x67\x3e", - [0x406b] = "\x0e\x5b\x39", [0x406c] = "\x01\x79\x2b", - [0x406d] = "\x02\x67\x3b", [0x406f] = "\x02\x67\x3f", - [0x4070] = "\x0e\x5b\x3b", [0x4072] = "\x01\x79\x28", - [0x4073] = "\x02\x67\x3d", [0x4074] = "\x01\x79\x2d", - [0x4075] = "\x0e\x5b\x3c", [0x4076] = "\x01\x79\x2a", - [0x4077] = "\x0e\x5b\x3d", [0x4078] = "\x02\x67\x3c", - [0x407a] = "\x01\x79\x2c", [0x407b] = "\x02\x67\x40", - [0x407c] = "\x01\x79\x27", [0x4081] = "\x01\x7a\x47", - [0x4082] = "\x01\x7a\x49", [0x4083] = "\x0e\x5d\x37", - [0x4084] = "\x02\x6a\x27", [0x4085] = "\x01\x7a\x48", - [0x4086] = "\x02\x6a\x25", [0x4087] = "\x01\x79\x29", - [0x4088] = "\x02\x6a\x26", [0x4089] = "\x01\x7a\x46", - [0x408a] = "\x01\x7b\x2f", [0x408b] = "\x01\x7b\x31", - [0x408c] = "\x02\x6c\x45", [0x408d] = "\x01\x7b\x30", - [0x408e] = "\x02\x6c\x44", [0x4090] = "\x02\x6e\x30", - [0x4091] = "\x01\x7b\x77", [0x4092] = "\x02\x6e\x2f", - [0x4093] = "\x01\x7b\x78", [0x4094] = "\x02\x6e\x2d", - [0x4095] = "\x02\x6e\x2c", [0x4096] = "\x02\x6e\x31", - [0x4097] = "\x02\x6e\x32", [0x4098] = "\x02\x6f\x54", - [0x4099] = "\x0e\x60\x4b", [0x409a] = "\x02\x6e\x2e", - [0x409d] = "\x02\x70\x54", [0x409e] = "\x02\x70\x51", - [0x409f] = "\x02\x70\x52", [0x40a0] = "\x02\x70\x53", - [0x40a1] = "\x01\x7d\x29", [0x40a2] = "\x0e\x61\x50", - [0x40a3] = "\x02\x71\x40", [0x40a4] = "\x02\x71\x3f", - [0x40a5] = "\x02\x71\x3e", [0x40a6] = "\x02\x71\x5f", - [0x40a7] = "\x0e\x61\x6c", [0x40a8] = "\x02\x72\x2e", - [0x40a9] = "\x02\x71\x79", [0x40aa] = "\x01\x7d\x3b", - [0x40ab] = "\x01\x4b\x4e", [0x40ac] = "\x01\x58\x45", - [0x40ad] = "\x0e\x39\x3f", [0x40af] = "\x0e\x39\x40", - [0x40b0] = "\x0e\x3f\x40", [0x40b1] = "\x0e\x44\x73", - [0x40b2] = "\x01\x67\x23", [0x40b3] = "\x0e\x49\x7d", - [0x40b4] = "\x0e\x49\x7c", [0x40b6] = "\x0e\x4f\x30", - [0x40b7] = "\x0e\x4f\x32", [0x40b8] = "\x0e\x4f\x2f", - [0x40b9] = "\x0e\x4f\x31", [0x40ba] = "\x01\x6f\x41", - [0x40bc] = "\x0e\x66\x52", [0x40bd] = "\x02\x5a\x74", - [0x40bf] = "\x0e\x59\x35", [0x40c0] = "\x01\x77\x4a", - [0x40c1] = "\x0e\x59\x36", [0x40c2] = "\x02\x67\x41", - [0x40c3] = "\x0e\x5b\x3f", [0x40c6] = "\x0e\x5d\x38", - [0x40c9] = "\x02\x71\x7a", [0x40ca] = "\x01\x4b\x4f", - [0x40cb] = "\x01\x4f\x51", [0x40cc] = "\x01\x53\x5c", - [0x40cd] = "\x01\x53\x5b", [0x40cf] = "\x01\x58\x48", - [0x40d1] = "\x02\x33\x2c", [0x40d2] = "\x01\x58\x46", - [0x40d3] = "\x02\x33\x2d", [0x40d4] = "\x01\x58\x47", - [0x40d5] = "\x0e\x66\x53", [0x40d6] = "\x0e\x39\x41", - [0x40d7] = "\x02\x39\x62", [0x40d8] = "\x02\x39\x5e", - [0x40d9] = "\x0e\x39\x47", [0x40db] = "\x01\x5d\x53", - [0x40dc] = "\x02\x39\x61", [0x40dd] = "\x02\x39\x60", - [0x40de] = "\x02\x39\x5f", [0x40df] = "\x01\x5d\x54", - [0x40e0] = "\x02\x39\x63", [0x40e1] = "\x02\x39\x64", - [0x40e4] = "\x0e\x3f\x45", [0x40e5] = "\x02\x40\x68", - [0x40e6] = "\x02\x40\x66", [0x40e7] = "\x02\x40\x6a", - [0x40e8] = "\x02\x40\x6b", [0x40e9] = "\x02\x40\x71", - [0x40ea] = "\x0e\x3f\x47", [0x40eb] = "\x02\x40\x6d", - [0x40ec] = "\x02\x40\x6f", [0x40ee] = "\x02\x40\x67", - [0x40ef] = "\x02\x40\x62", [0x40f1] = "\x02\x40\x6e", - [0x40f2] = "\x0e\x3f\x44", [0x40f3] = "\x0e\x3f\x46", - [0x40f4] = "\x02\x40\x70", [0x40f5] = "\x02\x40\x69", - [0x40f6] = "\x02\x40\x6c", [0x40f7] = "\x02\x40\x63", - [0x40f8] = "\x01\x62\x49", [0x40f9] = "\x02\x40\x65", - [0x40fa] = "\x02\x40\x64", [0x40fb] = "\x01\x62\x48", - [0x40fc] = "\x01\x62\x4a", [0x40fd] = "\x0e\x3f\x49", - [0x40fe] = "\x01\x67\x26", [0x40ff] = "\x02\x47\x7b", - [0x4100] = "\x02\x47\x7d", [0x4101] = "\x02\x47\x7c", - [0x4102] = "\x02\x48\x23", [0x4103] = "\x01\x67\x24", - [0x4104] = "\x0e\x44\x76", [0x4105] = "\x02\x47\x7e", - [0x4106] = "\x02\x47\x7a", [0x4107] = "\x02\x48\x21", - [0x4108] = "\x02\x48\x22", [0x4109] = "\x01\x67\x25", - [0x410a] = "\x01\x67\x27", [0x410b] = "\x02\x48\x24", - [0x410d] = "\x02\x4e\x4f", [0x410e] = "\x02\x4e\x4e", - [0x4110] = "\x02\x4e\x4c", [0x4111] = "\x02\x4e\x4d", - [0x4112] = "\x01\x6b\x3b", [0x4113] = "\x01\x6b\x3d", - [0x4114] = "\x01\x6b\x3a", [0x4115] = "\x01\x6b\x3c", - [0x4116] = "\x02\x54\x75", [0x4117] = "\x02\x54\x76", - [0x4118] = "\x02\x54\x71", [0x4119] = "\x0e\x4f\x36", - [0x411a] = "\x02\x54\x72", [0x411b] = "\x01\x6f\x43", - [0x411c] = "\x01\x6f\x48", [0x411d] = "\x01\x6f\x42", - [0x411e] = "\x01\x6f\x49", [0x411f] = "\x01\x6f\x44", - [0x4120] = "\x02\x54\x73", [0x4122] = "\x0e\x4f\x33", - [0x4123] = "\x02\x54\x74", [0x4124] = "\x02\x54\x70", - [0x4125] = "\x01\x6f\x4a", [0x4126] = "\x01\x6f\x46", - [0x4127] = "\x0e\x4f\x35", [0x4129] = "\x01\x6f\x45", - [0x412a] = "\x01\x6f\x47", [0x412b] = "\x0e\x4f\x34", - [0x412c] = "\x02\x54\x6f", [0x412d] = "\x0e\x53\x24", - [0x412e] = "\x02\x5a\x76", [0x412f] = "\x01\x72\x52", - [0x4130] = "\x0e\x53\x22", [0x4131] = "\x0e\x53\x21", - [0x4132] = "\x02\x5a\x78", [0x4133] = "\x01\x72\x54", - [0x4134] = "\x02\x5a\x7b", [0x4135] = "\x02\x5a\x77", - [0x4136] = "\x02\x5a\x75", [0x4137] = "\x02\x5a\x7a", - [0x4138] = "\x01\x72\x53", [0x4139] = "\x02\x5a\x79", - [0x413b] = "\x01\x72\x51", [0x413c] = "\x0e\x53\x25", - [0x413d] = "\x0e\x56\x59", [0x413e] = "\x01\x75\x5e", - [0x413f] = "\x01\x75\x61", [0x4140] = "\x02\x5f\x6d", - [0x4141] = "\x0e\x56\x5a", [0x4142] = "\x01\x75\x5f", - [0x4143] = "\x02\x5f\x6c", [0x4144] = "\x01\x75\x5d", - [0x4145] = "\x01\x75\x60", [0x4146] = "\x02\x63\x70", - [0x4147] = "\x02\x63\x71", [0x4148] = "\x02\x63\x72", - [0x4149] = "\x01\x77\x4b", [0x414a] = "\x0e\x59\x37", - [0x414b] = "\x02\x63\x73", [0x414d] = "\x01\x77\x4c", - [0x414e] = "\x01\x79\x2f", [0x414f] = "\x02\x67\x44", - [0x4150] = "\x02\x67\x45", [0x4151] = "\x02\x67\x43", - [0x4152] = "\x02\x67\x42", [0x4153] = "\x02\x67\x46", - [0x4154] = "\x01\x79\x2e", [0x4155] = "\x02\x6a\x2b", - [0x4156] = "\x02\x6a\x29", [0x4157] = "\x02\x6a\x2a", - [0x4158] = "\x02\x6a\x2c", [0x4159] = "\x02\x6a\x28", - [0x415a] = "\x02\x6a\x2d", [0x415b] = "\x02\x6c\x47", - [0x415c] = "\x0e\x5e\x67", [0x415d] = "\x02\x6c\x48", - [0x415e] = "\x02\x6c\x46", [0x415f] = "\x01\x7b\x32", - [0x4160] = "\x02\x6e\x33", [0x4161] = "\x01\x7b\x79", - [0x4162] = "\x02\x6e\x34", [0x4163] = "\x02\x6f\x56", - [0x4164] = "\x02\x6f\x55", [0x4165] = "\x0e\x62\x22", - [0x419b] = "\x01\x4b\x50", [0x419c] = "\x01\x62\x4b", - [0x419d] = "\x0e\x3f\x4b", [0x419e] = "\x0e\x44\x77", - [0x419f] = "\x01\x67\x28", [0x41a0] = "\x0e\x44\x78", - [0x41a1] = "\x0e\x4a\x21", [0x41a2] = "\x0e\x4a\x22", - [0x41a3] = "\x01\x6b\x3e", [0x41a4] = "\x0e\x4f\x37", - [0x41a5] = "\x0e\x53\x27", [0x41a6] = "\x01\x72\x56", - [0x41a7] = "\x0e\x53\x26", [0x41a8] = "\x01\x72\x55", - [0x41aa] = "\x0e\x66\x54", [0x41ac] = "\x0e\x59\x38", - [0x41ad] = "\x01\x79\x30", [0x41ae] = "\x01\x7a\x29", - [0x41af] = "\x01\x7b\x33", [0x41b0] = "\x01\x4b\x51", - [0x41b1] = "\x01\x58\x49", [0x41b2] = "\x01\x67\x29", - [0x41b3] = "\x0e\x4f\x39", [0x41b4] = "\x02\x67\x47", - [0x41b5] = "\x0e\x27\x2f", [0x41b9] = "\x0e\x24\x3b", - [0x41be] = "\x0e\x27\x30", [0x41bf] = "\x02\x25\x26", - [0x41c1] = "\x0e\x27\x33", [0x41c2] = "\x01\x4b\x52", - [0x41c4] = "\x01\x4b\x55", [0x41c5] = "\x01\x4b\x54", - [0x41c6] = "\x01\x4b\x53", [0x41c7] = "\x0e\x27\x31", - [0x41c9] = "\x02\x25\x25", [0x41ca] = "\x0e\x2a\x72", - [0x41cb] = "\x02\x28\x6d", [0x41cc] = "\x0e\x2a\x70", - [0x41cd] = "\x02\x28\x6f", [0x41ce] = "\x01\x4f\x52", - [0x41cf] = "\x0e\x2a\x74", [0x41d1] = "\x01\x4f\x54", - [0x41d2] = "\x02\x28\x6c", [0x41d3] = "\x02\x28\x6e", - [0x41d4] = "\x01\x4f\x53", [0x41d5] = "\x02\x28\x71", - [0x41d6] = "\x02\x28\x70", [0x41d7] = "\x02\x28\x72", - [0x41d8] = "\x0e\x2a\x73", [0x41d9] = "\x0e\x2a\x71", - [0x41e0] = "\x02\x2d\x57", [0x41e1] = "\x02\x2d\x55", - [0x41e2] = "\x01\x53\x5f", [0x41e3] = "\x02\x2d\x54", - [0x41e4] = "\x01\x53\x64", [0x41e5] = "\x01\x53\x61", - [0x41e6] = "\x01\x53\x5e", [0x41e7] = "\x0e\x2f\x31", - [0x41e8] = "\x01\x53\x65", [0x41e9] = "\x0e\x2f\x32", - [0x41ea] = "\x01\x53\x60", [0x41eb] = "\x01\x53\x63", - [0x41ed] = "\x01\x53\x62", [0x41ee] = "\x02\x2d\x56", - [0x41ef] = "\x0e\x2f\x33", [0x41f0] = "\x01\x53\x5d", - [0x41f1] = "\x0e\x2f\x30", [0x41f4] = "\x01\x58\x4f", - [0x41f5] = "\x02\x33\x2f", [0x41f6] = "\x02\x33\x35", - [0x41f7] = "\x01\x58\x4c", [0x41f8] = "\x01\x58\x53", - [0x41f9] = "\x0e\x34\x25", [0x41fa] = "\x01\x58\x4e", - [0x41fb] = "\x02\x33\x32", [0x41fc] = "\x02\x33\x34", - [0x41fd] = "\x01\x58\x51", [0x41fe] = "\x02\x33\x2e", - [0x41ff] = "\x02\x33\x31", [0x4200] = "\x01\x58\x4d", - [0x4201] = "\x01\x58\x4a", [0x4202] = "\x02\x33\x30", - [0x4203] = "\x01\x58\x50", [0x4204] = "\x02\x33\x33", - [0x4205] = "\x01\x58\x52", [0x4206] = "\x01\x58\x4b", - [0x4208] = "\x0e\x34\x27", [0x4209] = "\x0e\x34\x26", - [0x420b] = "\x02\x39\x66", [0x420c] = "\x02\x39\x69", - [0x420d] = "\x01\x5d\x56", [0x420e] = "\x0e\x39\x4b", - [0x420f] = "\x01\x5d\x60", [0x4210] = "\x01\x5d\x5c", - [0x4211] = "\x02\x39\x67", [0x4212] = "\x0e\x39\x4a", - [0x4213] = "\x0e\x39\x4e", [0x4214] = "\x01\x5d\x64", - [0x4215] = "\x01\x5d\x5d", [0x4216] = "\x01\x5d\x62", - [0x4217] = "\x01\x5d\x58", [0x4219] = "\x01\x5d\x55", - [0x421a] = "\x01\x5d\x57", [0x421b] = "\x01\x5d\x63", - [0x421c] = "\x02\x39\x68", [0x421d] = "\x01\x5d\x5b", - [0x421e] = "\x01\x5d\x5e", [0x421f] = "\x01\x5d\x5a", - [0x4220] = "\x01\x5d\x5f", [0x4221] = "\x02\x39\x6a", - [0x4222] = "\x01\x5d\x61", [0x4223] = "\x01\x5d\x59", - [0x4224] = "\x02\x39\x65", [0x4225] = "\x0e\x39\x4c", - [0x4228] = "\x0e\x3f\x4f", [0x4229] = "\x0e\x3f\x50", - [0x422a] = "\x0e\x3f\x4d", [0x422b] = "\x0e\x3f\x4c", - [0x422c] = "\x0e\x3f\x51", [0x422d] = "\x02\x40\x72", - [0x422e] = "\x01\x62\x4c", [0x422f] = "\x02\x40\x74", - [0x4230] = "\x0e\x3f\x55", [0x4231] = "\x01\x62\x4e", - [0x4232] = "\x01\x62\x50", [0x4234] = "\x02\x40\x73", - [0x4235] = "\x01\x62\x4d", [0x4236] = "\x01\x62\x51", - [0x4237] = "\x0e\x3f\x56", [0x4238] = "\x01\x62\x4f", - [0x423a] = "\x0e\x3f\x54", [0x423b] = "\x0e\x3f\x57", - [0x423c] = "\x01\x67\x2f", [0x423d] = "\x02\x48\x29", - [0x423e] = "\x01\x67\x37", [0x423f] = "\x02\x48\x26", - [0x4240] = "\x0e\x44\x7d", [0x4241] = "\x01\x67\x38", - [0x4242] = "\x01\x67\x2d", [0x4243] = "\x0e\x44\x79", - [0x4244] = "\x02\x48\x27", [0x4245] = "\x0e\x44\x7c", - [0x4246] = "\x0e\x44\x7a", [0x4247] = "\x01\x67\x32", - [0x4248] = "\x0e\x44\x7b", [0x4249] = "\x02\x48\x28", - [0x424a] = "\x01\x67\x2b", [0x424b] = "\x01\x67\x2a", - [0x424c] = "\x0e\x44\x7e", [0x424d] = "\x01\x67\x35", - [0x424e] = "\x01\x67\x34", [0x424f] = "\x01\x67\x33", - [0x4250] = "\x01\x67\x31", [0x4251] = "\x01\x67\x36", - [0x4252] = "\x02\x48\x25", [0x4253] = "\x01\x67\x2c", - [0x4254] = "\x01\x67\x2e", [0x4255] = "\x01\x67\x30", - [0x4258] = "\x01\x6b\x40", [0x4259] = "\x01\x6b\x43", - [0x425a] = "\x0e\x4a\x24", [0x425b] = "\x01\x6b\x47", - [0x425c] = "\x01\x6b\x41", [0x425d] = "\x01\x6b\x46", - [0x425e] = "\x01\x6b\x44", [0x425f] = "\x0e\x4a\x27", - [0x4260] = "\x01\x6b\x3f", [0x4261] = "\x0e\x4a\x26", - [0x4262] = "\x01\x6b\x45", [0x4263] = "\x01\x6b\x42", - [0x4267] = "\x02\x54\x7a", [0x4268] = "\x01\x6f\x4d", - [0x4269] = "\x01\x6f\x4b", [0x426a] = "\x0e\x4f\x3c", - [0x426b] = "\x02\x54\x7b", [0x426d] = "\x01\x6f\x4e", - [0x426e] = "\x01\x6f\x4c", [0x426f] = "\x02\x54\x79", - [0x4270] = "\x02\x54\x78", [0x4271] = "\x0e\x4f\x3b", - [0x4272] = "\x01\x72\x5a", [0x4273] = "\x02\x54\x77", - [0x4274] = "\x01\x72\x58", [0x4275] = "\x01\x72\x57", - [0x4276] = "\x02\x5a\x7c", [0x4277] = "\x01\x6f\x4f", - [0x4278] = "\x01\x72\x59", [0x4279] = "\x02\x5a\x7d", - [0x427a] = "\x01\x72\x5c", [0x427b] = "\x02\x5a\x7e", - [0x427c] = "\x01\x72\x5b", [0x427d] = "\x01\x75\x63", - [0x427e] = "\x02\x5f\x6f", [0x427f] = "\x01\x75\x62", - [0x4280] = "\x01\x75\x67", [0x4281] = "\x01\x75\x65", - [0x4282] = "\x01\x75\x66", [0x4283] = "\x01\x77\x4e", - [0x4284] = "\x01\x75\x64", [0x4285] = "\x02\x5f\x6e", - [0x4286] = "\x02\x5b\x21", [0x4287] = "\x01\x77\x4d", - [0x4288] = "\x01\x77\x4f", [0x4289] = "\x0e\x59\x3a", - [0x428a] = "\x01\x79\x31", [0x428b] = "\x01\x79\x32", - [0x428d] = "\x02\x6a\x2e", [0x428f] = "\x01\x7c\x4a", - [0x4290] = "\x01\x7c\x49", [0x4291] = "\x01\x4b\x57", - [0x4292] = "\x0e\x22\x5e", [0x4293] = "\x0e\x22\x5d", - [0x4294] = "\x02\x22\x75", [0x4295] = "\x01\x58\x54", - [0x4296] = "\x0e\x24\x3c", [0x4297] = "\x02\x22\x72", - [0x4298] = "\x02\x22\x73", [0x4299] = "\x02\x22\x71", - [0x429a] = "\x0e\x24\x3d", [0x429b] = "\x02\x22\x74", - [0x429c] = "\x0e\x66\x55", [0x429e] = "\x02\x25\x2a", - [0x429f] = "\x02\x25\x27", [0x42a0] = "\x02\x25\x2c", - [0x42a1] = "\x02\x25\x28", [0x42a2] = "\x01\x4b\x58", - [0x42a3] = "\x01\x4b\x5b", [0x42a4] = "\x0e\x27\x35", - [0x42a5] = "\x02\x25\x29", [0x42a6] = "\x01\x4b\x5a", - [0x42a7] = "\x02\x25\x2b", [0x42a8] = "\x0e\x27\x39", - [0x42a9] = "\x0e\x27\x34", [0x42aa] = "\x01\x4b\x59", - [0x42ab] = "\x0e\x39\x51", [0x42ad] = "\x0e\x2a\x77", - [0x42af] = "\x02\x28\x75", [0x42b0] = "\x02\x28\x77", - [0x42b1] = "\x01\x4f\x57", [0x42b2] = "\x02\x28\x73", - [0x42b3] = "\x02\x28\x76", [0x42b4] = "\x02\x28\x74", - [0x42b5] = "\x01\x4f\x55", [0x42b6] = "\x01\x4f\x58", - [0x42b7] = "\x0e\x2a\x75", [0x42b8] = "\x01\x4f\x56", - [0x42b9] = "\x0e\x2a\x78", [0x42bc] = "\x0e\x2f\x35", - [0x42bd] = "\x02\x2d\x59", [0x42be] = "\x02\x2d\x5d", - [0x42bf] = "\x02\x2d\x5a", [0x42c0] = "\x0e\x2f\x38", - [0x42c1] = "\x01\x53\x68", [0x42c2] = "\x0e\x2f\x34", - [0x42c3] = "\x01\x53\x69", [0x42c4] = "\x0e\x2f\x3e", - [0x42c5] = "\x02\x2d\x5c", [0x42c6] = "\x0e\x2f\x37", - [0x42c7] = "\x02\x2d\x5e", [0x42c8] = "\x02\x2d\x60", - [0x42c9] = "\x0e\x2f\x3c", [0x42ca] = "\x01\x53\x66", - [0x42cb] = "\x02\x2d\x5f", [0x42cd] = "\x0e\x2f\x3b", - [0x42ce] = "\x01\x53\x67", [0x42d4] = "\x02\x39\x71", - [0x42d5] = "\x02\x2d\x5b", [0x42d6] = "\x02\x33\x36", - [0x42d7] = "\x02\x33\x3f", [0x42d8] = "\x02\x33\x3d", - [0x42d9] = "\x02\x33\x38", [0x42da] = "\x02\x33\x39", - [0x42db] = "\x02\x33\x3e", [0x42dc] = "\x02\x33\x40", - [0x42dd] = "\x01\x58\x56", [0x42de] = "\x0e\x34\x29", - [0x42df] = "\x02\x33\x3b", [0x42e0] = "\x02\x33\x37", - [0x42e1] = "\x01\x58\x55", [0x42e2] = "\x01\x58\x57", - [0x42e3] = "\x02\x33\x3a", [0x42e4] = "\x02\x33\x41", - [0x42e5] = "\x02\x33\x3c", [0x42e8] = "\x01\x5d\x65", - [0x42e9] = "\x02\x39\x74", [0x42ea] = "\x02\x39\x6c", - [0x42eb] = "\x02\x39\x72", [0x42ec] = "\x02\x39\x73", - [0x42ed] = "\x01\x5d\x66", [0x42ee] = "\x0e\x39\x4f", - [0x42ef] = "\x02\x39\x6b", [0x42f0] = "\x02\x39\x6d", - [0x42f1] = "\x02\x2d\x58", [0x42f2] = "\x02\x39\x6f", - [0x42f3] = "\x02\x39\x70", [0x42f4] = "\x02\x39\x6e", - [0x42f5] = "\x01\x62\x53", [0x42f6] = "\x0e\x63\x6c", - [0x42f7] = "\x0e\x39\x52", [0x42f9] = "\x02\x40\x7b", - [0x42fa] = "\x02\x5b\x22", [0x42fb] = "\x02\x40\x7c", - [0x42fc] = "\x02\x40\x79", [0x42fd] = "\x01\x5d\x67", - [0x42fe] = "\x01\x62\x55", [0x42ff] = "\x02\x40\x78", - [0x4300] = "\x02\x40\x7e", [0x4301] = "\x02\x40\x7d", - [0x4302] = "\x01\x62\x52", [0x4303] = "\x02\x41\x23", - [0x4304] = "\x02\x40\x77", [0x4305] = "\x02\x41\x22", - [0x4306] = "\x02\x40\x75", [0x4307] = "\x02\x41\x21", - [0x4308] = "\x02\x40\x7a", [0x4309] = "\x01\x62\x54", - [0x430a] = "\x0e\x3f\x59", [0x430b] = "\x02\x48\x30", - [0x430c] = "\x0e\x45\x23", [0x430d] = "\x02\x48\x2b", - [0x430e] = "\x02\x48\x31", [0x430f] = "\x02\x48\x2c", - [0x4310] = "\x02\x48\x2a", [0x4311] = "\x02\x48\x2d", - [0x4312] = "\x01\x67\x39", [0x4313] = "\x0e\x45\x24", - [0x4314] = "\x02\x48\x2f", [0x4315] = "\x0e\x45\x25", - [0x4316] = "\x02\x48\x2e", [0x4317] = "\x01\x67\x3a", - [0x4318] = "\x01\x6b\x49", [0x4319] = "\x01\x6b\x48", - [0x431a] = "\x02\x4e\x56", [0x431b] = "\x02\x4e\x59", - [0x431c] = "\x02\x4e\x51", [0x431d] = "\x02\x4e\x55", - [0x431e] = "\x01\x6b\x4a", [0x431f] = "\x02\x4e\x54", - [0x4320] = "\x02\x4e\x52", [0x4321] = "\x02\x4e\x58", - [0x4322] = "\x02\x4e\x53", [0x4323] = "\x02\x4e\x50", - [0x4324] = "\x02\x4e\x57", [0x4325] = "\x0e\x4a\x2a", - [0x4326] = "\x02\x55\x23", [0x4327] = "\x01\x6f\x52", - [0x4328] = "\x02\x63\x74", [0x4329] = "\x02\x54\x7e", - [0x432a] = "\x02\x55\x21", [0x432b] = "\x02\x54\x7d", - [0x432c] = "\x02\x40\x76", [0x432d] = "\x01\x6f\x51", - [0x432e] = "\x02\x55\x24", [0x432f] = "\x02\x54\x7c", - [0x4330] = "\x01\x6f\x50", [0x4331] = "\x01\x6f\x53", - [0x4332] = "\x02\x55\x22", [0x4333] = "\x02\x5b\x23", - [0x4334] = "\x01\x72\x5d", [0x4335] = "\x02\x5b\x24", - [0x4336] = "\x02\x5b\x25", [0x4337] = "\x0e\x53\x2b", - [0x4338] = "\x02\x5f\x70", [0x4339] = "\x01\x75\x68", - [0x433a] = "\x02\x63\x75", [0x433b] = "\x02\x63\x76", - [0x433c] = "\x0e\x59\x3c", [0x433d] = "\x0e\x59\x3b", - [0x433e] = "\x02\x63\x77", [0x433f] = "\x02\x67\x49", - [0x4340] = "\x02\x67\x48", [0x4341] = "\x02\x6a\x30", - [0x4343] = "\x02\x6a\x2f", [0x4344] = "\x02\x6c\x4a", - [0x4345] = "\x02\x6c\x4b", [0x4346] = "\x02\x6c\x49", - [0x4347] = "\x02\x6e\x35", [0x4348] = "\x01\x7b\x7a", - [0x4349] = "\x01\x4b\x5c", [0x434a] = "\x01\x53\x6b", - [0x434b] = "\x01\x53\x6a", [0x434c] = "\x01\x58\x5a", - [0x434d] = "\x01\x58\x59", [0x434e] = "\x02\x33\x43", - [0x434f] = "\x02\x33\x44", [0x4350] = "\x02\x33\x42", - [0x4351] = "\x0e\x34\x2a", [0x4352] = "\x01\x58\x58", - [0x4353] = "\x02\x39\x78", [0x4354] = "\x0e\x39\x55", - [0x4355] = "\x02\x39\x79", [0x4356] = "\x02\x39\x75", - [0x4357] = "\x01\x5d\x68", [0x4358] = "\x02\x39\x76", - [0x4359] = "\x0e\x39\x54", [0x435a] = "\x02\x39\x77", - [0x435c] = "\x0e\x66\x57", [0x435f] = "\x02\x41\x26", - [0x4360] = "\x02\x41\x28", [0x4361] = "\x02\x41\x24", - [0x4362] = "\x02\x41\x27", [0x4363] = "\x01\x62\x56", - [0x4364] = "\x02\x41\x25", [0x4365] = "\x01\x62\x57", - [0x4367] = "\x0e\x45\x28", [0x4368] = "\x02\x42\x79", - [0x4369] = "\x01\x67\x3d", [0x436a] = "\x01\x67\x3c", - [0x436b] = "\x0e\x45\x27", [0x436c] = "\x01\x67\x3b", - [0x436e] = "\x02\x48\x32", [0x436f] = "\x02\x48\x33", - [0x4372] = "\x02\x4e\x5b", [0x4373] = "\x02\x4e\x5d", - [0x4374] = "\x01\x6b\x4e", [0x4375] = "\x01\x6b\x4b", - [0x4376] = "\x0e\x4a\x2c", [0x4377] = "\x01\x6b\x4d", - [0x4378] = "\x01\x6b\x4c", [0x4379] = "\x02\x4e\x5c", - [0x437a] = "\x02\x4e\x5a", [0x437b] = "\x0e\x4a\x2b", - [0x437c] = "\x0e\x4a\x2d", [0x4380] = "\x02\x55\x2b", - [0x4381] = "\x02\x55\x28", [0x4382] = "\x02\x55\x29", - [0x4383] = "\x01\x6f\x57", [0x4384] = "\x02\x55\x2a", - [0x4385] = "\x02\x55\x25", [0x4386] = "\x02\x55\x26", - [0x4387] = "\x01\x6f\x54", [0x4388] = "\x0e\x4f\x3f", - [0x4389] = "\x01\x6f\x55", [0x438a] = "\x02\x55\x27", - [0x438b] = "\x01\x6f\x56", [0x438c] = "\x0e\x4f\x40", - [0x438d] = "\x02\x5b\x29", [0x438e] = "\x0e\x53\x2d", - [0x438f] = "\x02\x5b\x2a", [0x4390] = "\x02\x5b\x27", - [0x4391] = "\x02\x5b\x28", [0x4392] = "\x01\x72\x5e", - [0x4393] = "\x02\x5b\x26", [0x4395] = "\x0e\x53\x2c", - [0x4396] = "\x0e\x53\x2f", [0x4399] = "\x02\x5f\x74", - [0x439a] = "\x02\x5f\x71", [0x439b] = "\x02\x5f\x73", - [0x439c] = "\x01\x75\x6b", [0x439d] = "\x02\x5f\x77", - [0x439e] = "\x01\x75\x6a", [0x439f] = "\x02\x5f\x75", - [0x43a0] = "\x02\x5f\x78", [0x43a1] = "\x02\x5f\x76", - [0x43a2] = "\x02\x5f\x72", [0x43a3] = "\x01\x75\x69", - [0x43a5] = "\x02\x63\x79", [0x43a7] = "\x02\x63\x7a", - [0x43a8] = "\x02\x63\x78", [0x43a9] = "\x0e\x59\x3d", - [0x43aa] = "\x02\x63\x7c", [0x43ab] = "\x01\x77\x50", - [0x43ac] = "\x01\x77\x51", [0x43ad] = "\x02\x67\x4b", - [0x43ae] = "\x01\x79\x34", [0x43af] = "\x02\x63\x7b", - [0x43b0] = "\x02\x67\x4a", [0x43b1] = "\x01\x79\x33", - [0x43b2] = "\x02\x6a\x33", [0x43b3] = "\x02\x6a\x34", - [0x43b4] = "\x01\x7a\x4a", [0x43b5] = "\x02\x6a\x32", - [0x43b7] = "\x02\x6a\x31", [0x43b9] = "\x02\x6c\x4c", - [0x43ba] = "\x01\x7b\x34", [0x43bb] = "\x0e\x5e\x68", - [0x43bc] = "\x02\x6f\x57", [0x43bd] = "\x02\x70\x56", - [0x43be] = "\x02\x70\x55", [0x43bf] = "\x0e\x60\x7e", - [0x43c0] = "\x01\x7c\x6e", [0x43c1] = "\x01\x7d\x2a", - [0x43c2] = "\x02\x70\x57", [0x43c3] = "\x02\x71\x60", - [0x43c4] = "\x0e\x61\x6d", [0x43c5] = "\x01\x7d\x3c", - [0x43c6] = "\x01\x4b\x5d", [0x43c7] = "\x01\x4f\x59", - [0x43c9] = "\x01\x67\x3e", [0x43cb] = "\x01\x7a\x4b", - [0x43cc] = "\x01\x4b\x5e", [0x43cd] = "\x01\x53\x6c", - [0x43ce] = "\x01\x5d\x69", [0x43cf] = "\x01\x62\x58", - [0x43d0] = "\x01\x77\x52", [0x43d1] = "\x01\x4f\x5a", - [0x43d3] = "\x02\x2d\x62", [0x43d4] = "\x02\x2d\x61", - [0x43d5] = "\x02\x33\x45", [0x43d6] = "\x0e\x34\x30", - [0x43d7] = "\x01\x58\x5d", [0x43d8] = "\x01\x58\x5b", - [0x43d9] = "\x01\x58\x5f", [0x43da] = "\x02\x33\x47", - [0x43db] = "\x0e\x34\x2d", [0x43dc] = "\x01\x58\x5e", - [0x43dd] = "\x01\x58\x5c", [0x43de] = "\x0e\x34\x2f", - [0x43df] = "\x0e\x34\x2e", [0x43e0] = "\x0e\x34\x31", - [0x43e2] = "\x02\x33\x46", [0x43e3] = "\x01\x5d\x6c", - [0x43e4] = "\x02\x3a\x21", [0x43e5] = "\x0e\x39\x58", - [0x43e6] = "\x01\x5d\x6b", [0x43e7] = "\x01\x5d\x6d", - [0x43e8] = "\x02\x3a\x26", [0x43e9] = "\x01\x5d\x6f", - [0x43ea] = "\x02\x3a\x23", [0x43eb] = "\x02\x3a\x24", - [0x43ec] = "\x02\x39\x7a", [0x43ed] = "\x01\x5d\x6e", - [0x43ee] = "\x02\x3a\x27", [0x43f0] = "\x0e\x39\x57", - [0x43f1] = "\x02\x39\x7c", [0x43f2] = "\x0e\x39\x56", - [0x43f3] = "\x02\x39\x7d", [0x43f4] = "\x02\x39\x7b", - [0x43f5] = "\x01\x5d\x6a", [0x43f6] = "\x0e\x39\x59", - [0x43f7] = "\x02\x3a\x25", [0x43f8] = "\x02\x39\x7e", - [0x43f9] = "\x02\x3a\x22", [0x43fd] = "\x02\x41\x34", - [0x43fe] = "\x0e\x3f\x5d", [0x43ff] = "\x02\x41\x33", - [0x4400] = "\x02\x41\x31", [0x4401] = "\x02\x41\x29", - [0x4402] = "\x02\x41\x38", [0x4403] = "\x02\x41\x2c", - [0x4404] = "\x02\x41\x36", [0x4405] = "\x02\x41\x3d", - [0x4406] = "\x02\x41\x35", [0x4407] = "\x01\x62\x60", - [0x4408] = "\x0e\x3f\x66", [0x4409] = "\x01\x62\x5c", - [0x440a] = "\x02\x41\x2a", [0x440b] = "\x0e\x3f\x60", - [0x440c] = "\x02\x41\x30", [0x440d] = "\x01\x62\x5e", - [0x440e] = "\x0e\x3f\x68", [0x440f] = "\x02\x41\x2f", - [0x4410] = "\x01\x62\x5f", [0x4411] = "\x01\x62\x61", - [0x4412] = "\x02\x41\x32", [0x4413] = "\x0e\x3f\x69", - [0x4414] = "\x01\x62\x59", [0x4415] = "\x01\x62\x5a", - [0x4416] = "\x02\x41\x3e", [0x4417] = "\x02\x41\x3c", - [0x4418] = "\x0e\x3f\x62", [0x4419] = "\x02\x41\x3b", - [0x441a] = "\x02\x41\x2d", [0x441b] = "\x0e\x3f\x65", - [0x441c] = "\x02\x41\x39", [0x441e] = "\x01\x62\x5d", - [0x4420] = "\x0e\x3f\x5e", [0x4421] = "\x0e\x66\x59", - [0x4422] = "\x0e\x3f\x63", [0x4423] = "\x01\x62\x5b", - [0x4424] = "\x02\x41\x3a", [0x4425] = "\x02\x41\x2b", - [0x4426] = "\x02\x41\x2e", [0x4427] = "\x02\x41\x37", - [0x442b] = "\x0e\x66\x58", [0x442d] = "\x02\x4f\x22", - [0x442e] = "\x02\x48\x3d", [0x442f] = "\x0e\x45\x2e", - [0x4430] = "\x02\x48\x36", [0x4431] = "\x02\x48\x49", - [0x4432] = "\x02\x48\x52", [0x4433] = "\x02\x48\x39", - [0x4434] = "\x01\x67\x49", [0x4435] = "\x0e\x45\x2b", - [0x4436] = "\x02\x48\x46", [0x4437] = "\x01\x67\x3f", - [0x4438] = "\x01\x67\x41", [0x4439] = "\x01\x67\x4d", - [0x443a] = "\x02\x48\x37", [0x443b] = "\x0e\x45\x37", - [0x443c] = "\x0e\x45\x2f", [0x443d] = "\x01\x67\x42", - [0x443e] = "\x01\x67\x44", [0x443f] = "\x01\x67\x4e", - [0x4440] = "\x01\x67\x43", [0x4441] = "\x0e\x45\x39", - [0x4444] = "\x0e\x45\x38", [0x4445] = "\x01\x67\x4c", - [0x4446] = "\x02\x48\x3f", [0x4448] = "\x02\x48\x34", - [0x4449] = "\x01\x67\x4a", [0x444a] = "\x02\x48\x3e", - [0x444b] = "\x01\x67\x46", [0x444c] = "\x02\x48\x50", - [0x444d] = "\x01\x67\x4b", [0x444e] = "\x02\x48\x4e", - [0x444f] = "\x02\x48\x42", [0x4450] = "\x02\x48\x4c", - [0x4451] = "\x01\x67\x48", [0x4452] = "\x02\x48\x35", - [0x4453] = "\x02\x48\x4f", [0x4454] = "\x02\x48\x4a", - [0x4455] = "\x0e\x45\x2a", [0x4456] = "\x02\x48\x51", - [0x4457] = "\x01\x67\x40", [0x4459] = "\x0e\x45\x2d", - [0x445a] = "\x01\x67\x4f", [0x445b] = "\x01\x67\x45", - [0x445c] = "\x0e\x45\x31", [0x445d] = "\x0e\x45\x29", - [0x445e] = "\x02\x48\x3b", [0x445f] = "\x0e\x45\x34", - [0x4460] = "\x02\x48\x43", [0x4461] = "\x02\x48\x47", - [0x4462] = "\x0e\x45\x33", [0x4463] = "\x02\x48\x4b", - [0x4464] = "\x01\x67\x47", [0x4465] = "\x02\x48\x3a", - [0x4466] = "\x02\x48\x38", [0x4467] = "\x02\x48\x44", - [0x446a] = "\x0e\x45\x32", [0x446b] = "\x0e\x45\x35", - [0x446c] = "\x02\x48\x41", [0x446d] = "\x02\x48\x40", - [0x446e] = "\x0e\x45\x36", [0x446f] = "\x02\x48\x45", - [0x4470] = "\x02\x48\x48", [0x4472] = "\x02\x48\x4d", - [0x4473] = "\x0e\x66\x5a", [0x4476] = "\x02\x4e\x60", - [0x4478] = "\x01\x6b\x4f", [0x4479] = "\x02\x4e\x6a", - [0x447a] = "\x02\x4e\x62", [0x447b] = "\x01\x6b\x55", - [0x447c] = "\x01\x6b\x59", [0x447d] = "\x02\x4e\x73", - [0x447e] = "\x02\x4e\x7b", [0x447f] = "\x02\x4e\x6c", - [0x4480] = "\x01\x6b\x51", [0x4481] = "\x0e\x4a\x34", - [0x4482] = "\x02\x4e\x70", [0x4483] = "\x02\x48\x3c", - [0x4484] = "\x0e\x4a\x35", [0x4485] = "\x01\x6b\x52", - [0x4486] = "\x02\x4e\x77", [0x4487] = "\x02\x4e\x7c", - [0x4488] = "\x02\x4e\x74", [0x4489] = "\x0e\x4a\x2f", - [0x448a] = "\x02\x4e\x76", [0x448b] = "\x02\x4f\x21", - [0x448c] = "\x02\x4e\x78", [0x448d] = "\x02\x4e\x66", - [0x448e] = "\x02\x4e\x6f", [0x448f] = "\x0e\x45\x30", - [0x4490] = "\x0e\x4a\x38", [0x4491] = "\x01\x6b\x5a", - [0x4492] = "\x0e\x4a\x33", [0x4493] = "\x01\x6b\x56", - [0x4494] = "\x02\x4e\x64", [0x4495] = "\x02\x4e\x71", - [0x4496] = "\x01\x6b\x54", [0x4497] = "\x02\x4e\x6b", - [0x4498] = "\x01\x6b\x53", [0x4499] = "\x02\x4e\x79", - [0x449a] = "\x02\x4e\x68", [0x449b] = "\x02\x4e\x61", - [0x449c] = "\x01\x6b\x57", [0x449d] = "\x02\x4e\x7e", - [0x449e] = "\x0e\x4a\x39", [0x44a0] = "\x02\x4e\x63", - [0x44a1] = "\x02\x4e\x75", [0x44a2] = "\x02\x4e\x72", - [0x44a3] = "\x02\x4e\x6d", [0x44a4] = "\x02\x4e\x5f", - [0x44a5] = "\x02\x4e\x5e", [0x44a6] = "\x02\x4e\x67", - [0x44a7] = "\x02\x4e\x7a", [0x44a8] = "\x01\x6b\x58", - [0x44a9] = "\x02\x4e\x7d", [0x44aa] = "\x02\x4e\x65", - [0x44ab] = "\x02\x4e\x69", [0x44ac] = "\x01\x6b\x50", - [0x44ad] = "\x0e\x4a\x32", [0x44ae] = "\x0e\x4a\x37", - [0x44b0] = "\x0e\x67\x2a", [0x44b1] = "\x0e\x4a\x31", - [0x44b2] = "\x01\x6f\x63", [0x44b3] = "\x01\x6f\x5e", - [0x44b4] = "\x02\x55\x4d", [0x44b5] = "\x02\x55\x49", - [0x44b6] = "\x02\x55\x31", [0x44b7] = "\x01\x6f\x5a", - [0x44b8] = "\x0e\x4f\x42", [0x44b9] = "\x0e\x4f\x50", - [0x44bb] = "\x01\x6f\x59", [0x44bc] = "\x01\x6f\x5f", - [0x44be] = "\x0e\x4f\x43", [0x44bf] = "\x0e\x4f\x41", - [0x44c0] = "\x02\x55\x2f", [0x44c1] = "\x01\x6f\x5d", - [0x44c2] = "\x02\x55\x3b", [0x44c3] = "\x02\x55\x2d", - [0x44c4] = "\x02\x55\x2e", [0x44c5] = "\x01\x6f\x58", - [0x44c6] = "\x02\x55\x4c", [0x44c7] = "\x01\x6f\x61", - [0x44c8] = "\x02\x55\x3e", [0x44c9] = "\x02\x55\x43", - [0x44ca] = "\x02\x55\x3d", [0x44cb] = "\x02\x5b\x3c", - [0x44cc] = "\x02\x55\x39", [0x44cd] = "\x02\x55\x41", - [0x44ce] = "\x02\x55\x3f", [0x44cf] = "\x02\x55\x32", - [0x44d0] = "\x02\x55\x2c", [0x44d1] = "\x02\x55\x47", - [0x44d2] = "\x01\x6f\x60", [0x44d3] = "\x02\x55\x48", - [0x44d4] = "\x0e\x4f\x48", [0x44d5] = "\x02\x55\x42", - [0x44d6] = "\x0e\x4f\x49", [0x44d7] = "\x02\x55\x37", - [0x44d8] = "\x02\x55\x35", [0x44d9] = "\x02\x55\x30", - [0x44da] = "\x0e\x4f\x4b", [0x44db] = "\x0e\x4f\x4e", - [0x44dc] = "\x0e\x4f\x44", [0x44dd] = "\x02\x55\x38", - [0x44de] = "\x02\x55\x45", [0x44df] = "\x02\x55\x34", - [0x44e0] = "\x02\x55\x44", [0x44e1] = "\x02\x55\x4a", - [0x44e2] = "\x0e\x4f\x51", [0x44e4] = "\x01\x6f\x5c", - [0x44e5] = "\x0e\x4f\x45", [0x44e6] = "\x02\x55\x40", - [0x44e7] = "\x02\x55\x46", [0x44e8] = "\x02\x55\x3c", - [0x44e9] = "\x02\x55\x36", [0x44ea] = "\x01\x6f\x5b", - [0x44eb] = "\x0e\x4f\x52", [0x44ed] = "\x0e\x4f\x4c", - [0x44ee] = "\x02\x4e\x6e", [0x44ef] = "\x02\x55\x3a", - [0x44f0] = "\x01\x6f\x62", [0x44f1] = "\x02\x55\x33", - [0x44f3] = "\x0e\x4f\x4d", [0x44f4] = "\x0e\x66\x5b", - [0x44f5] = "\x0e\x66\x5c", [0x44f6] = "\x0e\x4a\x30", - [0x44f7] = "\x02\x5b\x41", [0x44f8] = "\x01\x72\x61", - [0x44f9] = "\x02\x5b\x40", [0x44fa] = "\x02\x5b\x3e", - [0x44fb] = "\x02\x5b\x50", [0x44fc] = "\x01\x72\x65", - [0x44fd] = "\x0e\x53\x35", [0x44fe] = "\x02\x5b\x4d", - [0x44ff] = "\x02\x5b\x45", [0x4500] = "\x02\x5b\x4f", - [0x4501] = "\x02\x5b\x37", [0x4502] = "\x02\x5b\x43", - [0x4503] = "\x0e\x53\x3d", [0x4504] = "\x01\x72\x67", - [0x4505] = "\x0e\x53\x3e", [0x4506] = "\x02\x5b\x2f", - [0x4507] = "\x0e\x53\x38", [0x4508] = "\x02\x5b\x2d", - [0x4509] = "\x02\x5b\x4e", [0x450a] = "\x0e\x53\x32", - [0x450b] = "\x02\x5b\x4c", [0x450c] = "\x02\x5b\x4b", - [0x450d] = "\x02\x5b\x3b", [0x450e] = "\x02\x5b\x3a", - [0x450f] = "\x02\x5b\x30", [0x4510] = "\x01\x72\x69", - [0x4512] = "\x02\x5b\x36", [0x4513] = "\x02\x5b\x3f", - [0x4514] = "\x02\x5b\x4a", [0x4515] = "\x01\x72\x6c", - [0x4516] = "\x02\x5b\x51", [0x4517] = "\x0e\x53\x36", - [0x4518] = "\x01\x75\x73", [0x4519] = "\x01\x72\x6e", - [0x451a] = "\x01\x72\x68", [0x451b] = "\x02\x5b\x34", - [0x451c] = "\x0e\x53\x37", [0x451d] = "\x02\x5b\x3d", - [0x451e] = "\x02\x5b\x2c", [0x451f] = "\x02\x5b\x2e", - [0x4520] = "\x01\x72\x5f", [0x4521] = "\x01\x72\x6b", - [0x4522] = "\x01\x72\x64", [0x4523] = "\x02\x5b\x35", - [0x4524] = "\x02\x5b\x44", [0x4525] = "\x02\x55\x4b", - [0x4526] = "\x01\x72\x6a", [0x4527] = "\x02\x5b\x2b", - [0x4528] = "\x01\x75\x6e", [0x4529] = "\x02\x5b\x46", - [0x452a] = "\x02\x5b\x49", [0x452b] = "\x01\x72\x66", - [0x452c] = "\x0e\x53\x3b", [0x452d] = "\x02\x5b\x39", - [0x452e] = "\x01\x72\x6d", [0x452f] = "\x01\x72\x63", - [0x4530] = "\x0e\x53\x3c", [0x4531] = "\x0e\x53\x39", - [0x4532] = "\x0e\x53\x3a", [0x4533] = "\x01\x72\x62", - [0x4534] = "\x02\x5b\x42", [0x4535] = "\x02\x5b\x48", - [0x4536] = "\x01\x72\x60", [0x4538] = "\x02\x5b\x32", - [0x4539] = "\x02\x5b\x47", [0x453c] = "\x02\x5b\x33", - [0x453f] = "\x0e\x66\x5d", [0x4542] = "\x0e\x66\x5e", - [0x4545] = "\x0e\x53\x31", [0x4546] = "\x02\x5b\x38", - [0x4547] = "\x02\x5f\x7e", [0x4548] = "\x0e\x56\x65", - [0x4549] = "\x02\x60\x25", [0x454a] = "\x01\x75\x70", - [0x454b] = "\x01\x75\x72", [0x454c] = "\x02\x60\x2b", - [0x454d] = "\x01\x75\x6c", [0x454e] = "\x02\x60\x39", - [0x454f] = "\x02\x60\x31", [0x4550] = "\x02\x60\x26", - [0x4551] = "\x02\x60\x27", [0x4552] = "\x02\x60\x30", - [0x4553] = "\x0e\x56\x66", [0x4554] = "\x01\x75\x79", - [0x4555] = "\x02\x60\x2f", [0x4556] = "\x02\x5f\x7d", - [0x4557] = "\x02\x60\x2e", [0x4558] = "\x02\x60\x22", - [0x4559] = "\x02\x60\x3a", [0x455a] = "\x01\x75\x78", - [0x455b] = "\x01\x75\x76", [0x455c] = "\x02\x60\x23", - [0x455d] = "\x0e\x56\x5d", [0x455e] = "\x02\x60\x36", - [0x455f] = "\x0e\x56\x67", [0x4560] = "\x02\x60\x28", - [0x4561] = "\x02\x60\x35", [0x4562] = "\x0e\x56\x64", - [0x4563] = "\x02\x60\x37", [0x4564] = "\x02\x5f\x7c", - [0x4565] = "\x01\x75\x71", [0x4566] = "\x0e\x56\x5b", - [0x4567] = "\x02\x60\x38", [0x4568] = "\x0e\x56\x68", - [0x4569] = "\x0e\x56\x5e", [0x456a] = "\x02\x60\x2c", - [0x456b] = "\x0e\x56\x6b", [0x456c] = "\x01\x75\x75", - [0x456d] = "\x02\x60\x29", [0x456e] = "\x0e\x56\x61", - [0x4570] = "\x01\x75\x77", [0x4571] = "\x02\x60\x32", - [0x4572] = "\x0e\x56\x62", [0x4573] = "\x0e\x56\x63", - [0x4574] = "\x0e\x56\x5f", [0x4575] = "\x01\x75\x6f", - [0x4576] = "\x02\x60\x24", [0x4577] = "\x02\x60\x33", - [0x4578] = "\x0e\x56\x5c", [0x4579] = "\x02\x60\x2d", - [0x457a] = "\x02\x5b\x31", [0x457b] = "\x02\x60\x34", - [0x457c] = "\x02\x60\x21", [0x457d] = "\x0e\x56\x60", - [0x457e] = "\x01\x75\x74", [0x457f] = "\x0e\x56\x6a", - [0x4580] = "\x02\x64\x2f", [0x4582] = "\x01\x75\x6d", - [0x4583] = "\x02\x5f\x7a", [0x4586] = "\x0e\x66\x5f", - [0x4588] = "\x02\x64\x2c", [0x4589] = "\x02\x64\x25", - [0x458a] = "\x01\x77\x54", [0x458b] = "\x0e\x59\x43", - [0x458c] = "\x02\x63\x7e", [0x458d] = "\x02\x64\x30", - [0x458e] = "\x02\x64\x27", [0x458f] = "\x02\x60\x2a", - [0x4590] = "\x0e\x59\x40", [0x4591] = "\x02\x64\x32", - [0x4592] = "\x02\x64\x21", [0x4593] = "\x0e\x59\x42", - [0x4594] = "\x01\x77\x53", [0x4595] = "\x02\x64\x2b", - [0x4596] = "\x01\x77\x55", [0x4597] = "\x01\x77\x5d", - [0x4598] = "\x01\x77\x5b", [0x4599] = "\x02\x64\x2d", - [0x459a] = "\x01\x77\x5c", [0x459b] = "\x02\x64\x23", - [0x459c] = "\x0e\x59\x49", [0x459d] = "\x02\x64\x24", - [0x459e] = "\x02\x64\x29", [0x459f] = "\x02\x64\x2e", - [0x45a0] = "\x0e\x59\x3e", [0x45a1] = "\x02\x5f\x79", - [0x45a2] = "\x01\x77\x56", [0x45a3] = "\x02\x64\x37", - [0x45a4] = "\x02\x64\x34", [0x45a5] = "\x02\x67\x61", - [0x45a6] = "\x02\x64\x2a", [0x45a7] = "\x02\x64\x26", - [0x45a8] = "\x02\x64\x35", [0x45a9] = "\x02\x67\x56", - [0x45aa] = "\x02\x64\x28", [0x45ac] = "\x01\x77\x59", - [0x45ad] = "\x0e\x59\x44", [0x45ae] = "\x01\x77\x58", - [0x45af] = "\x02\x5f\x7b", [0x45b0] = "\x01\x77\x5a", - [0x45b1] = "\x02\x64\x31", [0x45b2] = "\x02\x64\x33", - [0x45b3] = "\x01\x77\x57", [0x45b4] = "\x02\x64\x36", - [0x45b5] = "\x02\x63\x7d", [0x45b7] = "\x02\x64\x22", - [0x45b8] = "\x0e\x59\x46", [0x45bb] = "\x0e\x59\x45", - [0x45bc] = "\x0e\x66\x61", [0x45bd] = "\x0e\x66\x62", - [0x45be] = "\x0e\x66\x60", [0x45c0] = "\x02\x67\x5f", - [0x45c1] = "\x0e\x5b\x50", [0x45c2] = "\x02\x67\x4f", - [0x45c3] = "\x01\x79\x38", [0x45c4] = "\x02\x67\x5d", - [0x45c5] = "\x0e\x5b\x44", [0x45c6] = "\x0e\x5b\x45", - [0x45c7] = "\x02\x67\x4d", [0x45c8] = "\x01\x79\x39", - [0x45ca] = "\x02\x67\x58", [0x45cb] = "\x0e\x5b\x43", - [0x45cc] = "\x02\x67\x54", [0x45cd] = "\x01\x79\x3e", - [0x45ce] = "\x02\x67\x5e", [0x45cf] = "\x02\x67\x4e", - [0x45d0] = "\x02\x67\x51", [0x45d1] = "\x01\x79\x36", - [0x45d2] = "\x02\x67\x60", [0x45d3] = "\x0e\x5b\x48", - [0x45d4] = "\x02\x67\x59", [0x45d5] = "\x02\x67\x5c", - [0x45d6] = "\x01\x79\x3c", [0x45d7] = "\x01\x79\x41", - [0x45d8] = "\x01\x79\x3f", [0x45d9] = "\x02\x67\x55", - [0x45da] = "\x02\x67\x50", [0x45db] = "\x0e\x5b\x4d", - [0x45dc] = "\x01\x79\x3a", [0x45dd] = "\x01\x79\x3b", - [0x45de] = "\x02\x67\x4c", [0x45df] = "\x01\x79\x37", - [0x45e0] = "\x0e\x5b\x4f", [0x45e1] = "\x01\x79\x35", - [0x45e2] = "\x01\x79\x3d", [0x45e3] = "\x02\x67\x5b", - [0x45e4] = "\x01\x79\x40", [0x45e5] = "\x0e\x5b\x4a", - [0x45e6] = "\x02\x67\x57", [0x45e7] = "\x02\x67\x62", - [0x45e8] = "\x01\x79\x42", [0x45e9] = "\x0e\x5b\x41", - [0x45ea] = "\x0e\x5b\x42", [0x45eb] = "\x0e\x5b\x4e", - [0x45ec] = "\x02\x67\x53", [0x45ed] = "\x0e\x5b\x47", - [0x45ee] = "\x02\x67\x5a", [0x45ef] = "\x0e\x66\x65", - [0x45f1] = "\x0e\x66\x63", [0x45f2] = "\x0e\x66\x64", - [0x45f3] = "\x0e\x5d\x41", [0x45f4] = "\x0e\x5e\x6a", - [0x45f5] = "\x02\x6a\x41", [0x45f6] = "\x02\x6a\x50", - [0x45f7] = "\x02\x6a\x43", [0x45f8] = "\x02\x6a\x4a", - [0x45f9] = "\x02\x67\x52", [0x45fa] = "\x02\x6a\x48", - [0x45fb] = "\x02\x6a\x37", [0x45fc] = "\x02\x6a\x4e", - [0x45fd] = "\x01\x7a\x4e", [0x45fe] = "\x02\x6a\x3b", - [0x45ff] = "\x02\x6a\x4d", [0x4600] = "\x02\x6a\x42", - [0x4602] = "\x0e\x5d\x43", [0x4603] = "\x01\x7a\x4d", - [0x4604] = "\x0e\x5d\x3c", [0x4605] = "\x0e\x5d\x3f", - [0x4606] = "\x02\x6a\x52", [0x4607] = "\x02\x6a\x44", - [0x4608] = "\x0e\x5d\x3e", [0x4609] = "\x02\x6a\x49", - [0x460a] = "\x02\x6a\x4c", [0x460b] = "\x02\x6a\x35", - [0x460c] = "\x02\x6a\x4f", [0x460d] = "\x02\x6a\x40", - [0x460e] = "\x02\x6a\x45", [0x460f] = "\x02\x6a\x39", - [0x4610] = "\x02\x6a\x3d", [0x4611] = "\x02\x6a\x51", - [0x4612] = "\x02\x6a\x47", [0x4613] = "\x02\x6a\x36", - [0x4614] = "\x02\x6a\x3a", [0x4615] = "\x02\x6a\x3c", - [0x4616] = "\x02\x6a\x46", [0x4617] = "\x0e\x5d\x3d", - [0x4618] = "\x01\x7a\x4c", [0x4619] = "\x02\x6a\x3f", - [0x461a] = "\x0e\x5d\x44", [0x461b] = "\x0e\x5d\x45", - [0x461c] = "\x0e\x5d\x47", [0x461e] = "\x0e\x5d\x42", - [0x461f] = "\x0e\x5d\x3a", [0x4620] = "\x02\x6a\x38", - [0x4622] = "\x0e\x66\x66", [0x4623] = "\x0e\x66\x67", - [0x4624] = "\x0e\x66\x68", [0x4627] = "\x0e\x5d\x46", - [0x4628] = "\x02\x6a\x3e", [0x4629] = "\x02\x6c\x50", - [0x462a] = "\x02\x6c\x54", [0x462b] = "\x01\x7b\x3b", - [0x462c] = "\x02\x6c\x56", [0x462d] = "\x0e\x5e\x6d", - [0x462e] = "\x01\x7b\x35", [0x4630] = "\x02\x6c\x52", - [0x4631] = "\x02\x6c\x58", [0x4632] = "\x01\x7b\x3a", - [0x4633] = "\x01\x7b\x36", [0x4635] = "\x01\x7b\x37", - [0x4636] = "\x02\x6c\x4f", [0x4637] = "\x02\x6c\x55", - [0x4638] = "\x01\x7b\x39", [0x4639] = "\x02\x6c\x53", - [0x463a] = "\x01\x7b\x38", [0x463b] = "\x02\x6c\x4e", - [0x463c] = "\x02\x6a\x4b", [0x463d] = "\x02\x6c\x51", - [0x463f] = "\x02\x6c\x4d", [0x4640] = "\x02\x6c\x57", - [0x4642] = "\x0e\x5f\x69", [0x4643] = "\x0e\x5f\x6e", - [0x4644] = "\x01\x7b\x7b", [0x4645] = "\x02\x6e\x3c", - [0x4646] = "\x02\x6e\x3f", [0x4647] = "\x02\x6e\x3b", - [0x4648] = "\x02\x6e\x3d", [0x4649] = "\x02\x6e\x3e", - [0x464a] = "\x02\x6e\x38", [0x464b] = "\x02\x6e\x39", - [0x464c] = "\x02\x6e\x36", [0x464d] = "\x0e\x5f\x6a", - [0x464e] = "\x0e\x5f\x6c", [0x464f] = "\x02\x6e\x3a", - [0x4650] = "\x02\x6e\x37", [0x4651] = "\x01\x7b\x7c", - [0x4652] = "\x01\x7b\x7d", [0x4654] = "\x0e\x5f\x6b", - [0x4655] = "\x02\x6f\x59", [0x4656] = "\x0e\x60\x52", - [0x4657] = "\x02\x6f\x5b", [0x4658] = "\x0e\x64\x31", - [0x465a] = "\x0e\x60\x55", [0x465b] = "\x0e\x60\x54", - [0x465c] = "\x0e\x60\x56", [0x465d] = "\x02\x6f\x5a", - [0x465e] = "\x02\x6f\x5c", [0x465f] = "\x0e\x60\x4f", - [0x4660] = "\x01\x7c\x4c", [0x4661] = "\x0e\x60\x53", - [0x4662] = "\x02\x6f\x58", [0x4663] = "\x01\x7c\x4b", - [0x4664] = "\x01\x7c\x4d", [0x4665] = "\x0e\x60\x57", - [0x4666] = "\x0e\x66\x6a", [0x4667] = "\x0e\x66\x69", - [0x4668] = "\x02\x70\x59", [0x4669] = "\x02\x70\x5a", - [0x466a] = "\x01\x7c\x6f", [0x466b] = "\x02\x70\x58", - [0x466c] = "\x0e\x61\x22", [0x466d] = "\x02\x71\x42", - [0x466e] = "\x02\x71\x41", [0x466f] = "\x02\x71\x43", - [0x4670] = "\x01\x7d\x2c", [0x4671] = "\x02\x71\x44", - [0x4672] = "\x01\x7d\x2b", [0x4673] = "\x02\x71\x45", - [0x4674] = "\x02\x71\x61", [0x4675] = "\x02\x71\x64", - [0x4676] = "\x02\x71\x63", [0x4677] = "\x01\x7d\x35", - [0x4678] = "\x02\x71\x62", [0x467a] = "\x0e\x61\x6f", - [0x467b] = "\x0e\x62\x23", [0x467c] = "\x01\x7d\x3f", - [0x467d] = "\x01\x7d\x3d", [0x467e] = "\x01\x7d\x3e", - [0x467f] = "\x01\x7d\x44", [0x4680] = "\x02\x72\x30", - [0x4681] = "\x02\x72\x31", [0x4682] = "\x02\x72\x2f", - [0x4683] = "\x02\x72\x37", [0x4684] = "\x0e\x62\x36", - [0x4777] = "\x01\x4f\x5b", [0x4779] = "\x0e\x63\x23", - [0x477a] = "\x02\x3a\x28", [0x477b] = "\x02\x41\x3f", - [0x477c] = "\x02\x55\x4e", [0x477d] = "\x02\x67\x63", - [0x4780] = "\x01\x4f\x5c", [0x4781] = "\x0e\x2f\x40", - [0x4782] = "\x01\x53\x6d", [0x4783] = "\x01\x58\x60", - [0x4785] = "\x0e\x34\x32", [0x4786] = "\x02\x3a\x29", - [0x4787] = "\x0e\x39\x5c", [0x4788] = "\x02\x3a\x2a", - [0x4789] = "\x01\x5d\x70", [0x478b] = "\x01\x62\x64", - [0x478c] = "\x02\x41\x41", [0x478d] = "\x02\x41\x40", - [0x478e] = "\x01\x62\x68", [0x478f] = "\x01\x62\x63", - [0x4790] = "\x02\x41\x42", [0x4791] = "\x01\x62\x65", - [0x4792] = "\x01\x62\x67", [0x4793] = "\x01\x62\x66", - [0x4794] = "\x01\x62\x62", [0x4795] = "\x0e\x3f\x6c", - [0x4797] = "\x0e\x66\x6b", [0x4798] = "\x01\x67\x50", - [0x4799] = "\x0e\x45\x3c", [0x479a] = "\x0e\x45\x3a", - [0x479b] = "\x02\x48\x56", [0x479c] = "\x02\x48\x54", - [0x479e] = "\x02\x48\x55", [0x479f] = "\x02\x48\x53", - [0x47a1] = "\x01\x6b\x5b", [0x47a2] = "\x0e\x4a\x3d", - [0x47a3] = "\x01\x6b\x5e", [0x47a4] = "\x01\x6b\x60", - [0x47a5] = "\x01\x6b\x5f", [0x47a7] = "\x0e\x4a\x3e", - [0x47a8] = "\x01\x6b\x5c", [0x47a9] = "\x01\x6b\x5d", - [0x47ab] = "\x02\x55\x50", [0x47ac] = "\x02\x55\x4f", - [0x47ad] = "\x01\x6f\x64", [0x47ae] = "\x02\x55\x51", - [0x47af] = "\x0e\x4f\x53", [0x47b0] = "\x02\x55\x52", - [0x47b1] = "\x01\x6f\x65", [0x47b2] = "\x0e\x4f\x55", - [0x47b3] = "\x0e\x4f\x56", [0x47b5] = "\x02\x5b\x59", - [0x47b6] = "\x02\x5b\x57", [0x47b7] = "\x02\x60\x40", - [0x47b8] = "\x0e\x53\x42", [0x47b9] = "\x02\x5b\x55", - [0x47ba] = "\x02\x5b\x56", [0x47bb] = "\x01\x72\x6f", - [0x47bc] = "\x02\x5b\x52", [0x47bd] = "\x02\x5b\x5a", - [0x47be] = "\x02\x5b\x54", [0x47bf] = "\x02\x5b\x58", - [0x47c0] = "\x02\x60\x3c", [0x47c1] = "\x0e\x53\x44", - [0x47c2] = "\x0e\x53\x40", [0x47c3] = "\x02\x60\x3e", - [0x47c4] = "\x0e\x56\x6d", [0x47c5] = "\x02\x60\x3f", - [0x47c6] = "\x01\x75\x7e", [0x47c7] = "\x02\x60\x3b", - [0x47c8] = "\x01\x75\x7d", [0x47c9] = "\x02\x60\x3d", - [0x47ca] = "\x01\x75\x7a", [0x47cb] = "\x01\x75\x7b", - [0x47cc] = "\x01\x75\x7c", [0x47cd] = "\x02\x5b\x53", - [0x47ce] = "\x0e\x66\x6c", [0x47d0] = "\x01\x77\x60", - [0x47d1] = "\x02\x64\x3a", [0x47d2] = "\x02\x64\x38", - [0x47d3] = "\x02\x64\x39", [0x47d4] = "\x01\x77\x5e", - [0x47d5] = "\x01\x77\x61", [0x47d6] = "\x01\x77\x5f", - [0x47d7] = "\x0e\x59\x4b", [0x47d8] = "\x0e\x59\x4a", - [0x47da] = "\x02\x67\x64", [0x47db] = "\x02\x67\x65", - [0x47dc] = "\x01\x79\x43", [0x47dd] = "\x0e\x5b\x53", - [0x47de] = "\x02\x6a\x53", [0x47df] = "\x02\x6a\x55", - [0x47e0] = "\x02\x6a\x54", [0x47e1] = "\x01\x7a\x4f", - [0x47e2] = "\x01\x7b\x3c", [0x47e3] = "\x02\x6c\x5b", - [0x47e4] = "\x02\x6c\x5a", [0x47e5] = "\x02\x6c\x59", - [0x47e7] = "\x0e\x66\x6d", [0x481c] = "\x01\x4f\x5d", - [0x481d] = "\x0e\x21\x43", [0x481e] = "\x02\x21\x69", - [0x4820] = "\x02\x22\x78", [0x4821] = "\x01\x48\x6a", - [0x4822] = "\x02\x22\x76", [0x4823] = "\x02\x22\x79", - [0x4824] = "\x02\x22\x77", [0x4826] = "\x0e\x27\x3b", - [0x4827] = "\x0e\x27\x3a", [0x4828] = "\x02\x25\x2e", - [0x4829] = "\x0e\x27\x3f", [0x482a] = "\x01\x4b\x62", - [0x482b] = "\x0e\x27\x3c", [0x482c] = "\x01\x4b\x63", - [0x482d] = "\x02\x25\x30", [0x482e] = "\x01\x4b\x60", - [0x482f] = "\x02\x25\x2f", [0x4830] = "\x02\x25\x2d", - [0x4831] = "\x01\x4b\x61", [0x4832] = "\x01\x4b\x5f", - [0x4833] = "\x0e\x27\x3d", [0x4834] = "\x0e\x27\x3e", - [0x4837] = "\x0e\x2a\x79", [0x4839] = "\x02\x28\x78", - [0x483a] = "\x02\x28\x7b", [0x483b] = "\x01\x4f\x60", - [0x483c] = "\x02\x28\x7a", [0x483d] = "\x02\x28\x79", - [0x483e] = "\x0e\x2a\x7c", [0x483f] = "\x01\x4f\x5f", - [0x4840] = "\x01\x4f\x5e", [0x4841] = "\x0e\x2a\x7b", - [0x4842] = "\x01\x4f\x62", [0x4843] = "\x02\x28\x7c", - [0x4844] = "\x01\x4f\x61", [0x484a] = "\x02\x2d\x67", - [0x484b] = "\x01\x53\x6f", [0x484c] = "\x01\x53\x70", - [0x484d] = "\x01\x53\x71", [0x484e] = "\x02\x2d\x68", - [0x484f] = "\x02\x2d\x64", [0x4850] = "\x01\x53\x6e", - [0x4851] = "\x02\x2d\x65", [0x4853] = "\x02\x2d\x66", - [0x4854] = "\x02\x2d\x63", [0x4856] = "\x0e\x34\x36", - [0x4858] = "\x01\x58\x67", [0x4859] = "\x0e\x34\x34", - [0x485a] = "\x0e\x39\x5e", [0x485b] = "\x01\x58\x64", - [0x485c] = "\x02\x33\x48", [0x485d] = "\x01\x58\x65", - [0x485e] = "\x01\x58\x68", [0x485f] = "\x02\x33\x49", - [0x4860] = "\x0e\x34\x33", [0x4861] = "\x01\x58\x63", - [0x4862] = "\x01\x58\x61", [0x4863] = "\x01\x58\x62", - [0x4864] = "\x01\x58\x66", [0x486a] = "\x01\x5d\x71", - [0x486b] = "\x02\x3a\x2d", [0x486c] = "\x01\x5d\x79", - [0x486d] = "\x02\x3a\x2c", [0x486e] = "\x0e\x39\x61", - [0x486f] = "\x02\x3a\x2f", [0x4870] = "\x01\x5d\x75", - [0x4871] = "\x02\x3a\x2e", [0x4872] = "\x01\x62\x70", - [0x4873] = "\x01\x5d\x73", [0x4874] = "\x01\x5d\x76", - [0x4875] = "\x01\x5d\x72", [0x4876] = "\x01\x5d\x77", - [0x4877] = "\x01\x5d\x78", [0x4878] = "\x01\x5d\x74", - [0x4879] = "\x0e\x39\x65", [0x487b] = "\x0e\x3f\x71", - [0x487c] = "\x02\x3a\x2b", [0x487d] = "\x01\x62\x6c", - [0x487e] = "\x02\x41\x44", [0x487f] = "\x0e\x3f\x72", - [0x4880] = "\x02\x41\x48", [0x4881] = "\x0e\x3f\x73", - [0x4882] = "\x0e\x3f\x75", [0x4883] = "\x02\x41\x47", - [0x4884] = "\x01\x62\x71", [0x4885] = "\x01\x62\x6d", - [0x4886] = "\x01\x62\x6e", [0x4887] = "\x02\x41\x43", - [0x4888] = "\x02\x41\x45", [0x4889] = "\x02\x41\x46", - [0x488a] = "\x01\x62\x69", [0x488b] = "\x01\x62\x6b", - [0x488c] = "\x0e\x3f\x70", [0x488d] = "\x01\x62\x6f", - [0x488e] = "\x01\x62\x6a", [0x488f] = "\x0e\x45\x40", - [0x4891] = "\x02\x48\x59", [0x4892] = "\x02\x48\x57", - [0x4893] = "\x02\x48\x58", [0x4894] = "\x01\x67\x52", - [0x4895] = "\x01\x67\x53", [0x4896] = "\x0e\x45\x42", - [0x4897] = "\x02\x48\x5a", [0x4898] = "\x01\x67\x51", - [0x4899] = "\x01\x6b\x61", [0x489b] = "\x01\x6b\x63", - [0x489c] = "\x01\x6b\x62", [0x489d] = "\x0e\x4a\x45", - [0x489e] = "\x02\x4f\x23", [0x489f] = "\x0e\x4a\x46", - [0x48a0] = "\x0e\x4a\x44", [0x48a1] = "\x02\x4f\x24", - [0x48a2] = "\x02\x55\x54", [0x48a3] = "\x0e\x4f\x5a", - [0x48a4] = "\x02\x55\x53", [0x48a5] = "\x0e\x4f\x5b", - [0x48a7] = "\x01\x72\x70", [0x48a8] = "\x01\x72\x71", - [0x48a9] = "\x02\x5b\x5b", [0x48aa] = "\x01\x72\x72", - [0x48ab] = "\x0e\x53\x48", [0x48ac] = "\x02\x60\x43", - [0x48ad] = "\x0e\x56\x70", [0x48ae] = "\x02\x60\x41", - [0x48af] = "\x0e\x56\x6f", [0x48b0] = "\x02\x60\x42", - [0x48b1] = "\x01\x76\x21", [0x48b2] = "\x0e\x56\x71", - [0x48b3] = "\x02\x64\x3b", [0x48b4] = "\x01\x79\x44", - [0x48b5] = "\x0e\x5d\x49", [0x48b6] = "\x0e\x2a\x7d", - [0x48b7] = "\x0e\x53\x49", [0x48b8] = "\x01\x76\x22", - [0x48b9] = "\x01\x4f\x63", [0x48ba] = "\x0e\x63\x25", - [0x48bb] = "\x01\x58\x69", [0x48bc] = "\x02\x33\x4a", - [0x48bd] = "\x0e\x34\x39", [0x48bf] = "\x02\x3a\x30", - [0x48c0] = "\x01\x5d\x7a", [0x48c1] = "\x01\x62\x72", - [0x48c2] = "\x02\x41\x49", [0x48c3] = "\x02\x41\x4b", - [0x48c4] = "\x01\x62\x74", [0x48c5] = "\x01\x62\x73", - [0x48c6] = "\x01\x62\x75", [0x48c7] = "\x01\x62\x76", - [0x48c8] = "\x02\x41\x4a", [0x48c9] = "\x01\x67\x56", - [0x48ca] = "\x01\x67\x57", [0x48cb] = "\x01\x67\x55", - [0x48cc] = "\x01\x6b\x64", [0x48cd] = "\x01\x67\x54", - [0x48ce] = "\x02\x48\x5b", [0x48d0] = "\x0e\x4a\x47", - [0x48d1] = "\x0e\x4a\x49", [0x48d2] = "\x01\x6b\x65", - [0x48d3] = "\x02\x55\x55", [0x48d4] = "\x02\x5b\x5c", - [0x48d5] = "\x01\x72\x73", [0x48d6] = "\x01\x76\x23", - [0x48d7] = "\x02\x64\x3c", [0x48d8] = "\x02\x64\x40", - [0x48d9] = "\x01\x77\x64", [0x48da] = "\x02\x64\x3d", - [0x48db] = "\x01\x77\x65", [0x48dc] = "\x01\x77\x63", - [0x48dd] = "\x02\x64\x41", [0x48de] = "\x01\x77\x66", - [0x48df] = "\x02\x64\x3f", [0x48e1] = "\x02\x67\x66", - [0x48e2] = "\x01\x77\x62", [0x48e3] = "\x01\x79\x45", - [0x48e4] = "\x0e\x5e\x70", [0x48e5] = "\x02\x70\x5b", - [0x48e6] = "\x0e\x61\x25", [0x48e7] = "\x0e\x62\x2f", - [0x48e8] = "\x01\x4f\x64", [0x48e9] = "\x01\x5d\x7c", - [0x48ea] = "\x01\x5d\x7b", [0x48ec] = "\x0e\x3f\x7e", - [0x48ed] = "\x0e\x3f\x7c", [0x48ee] = "\x0e\x3f\x7b", - [0x48ef] = "\x01\x62\x77", [0x48f0] = "\x02\x41\x4d", - [0x48f1] = "\x02\x41\x4c", [0x48f2] = "\x01\x62\x78", - [0x48f4] = "\x0e\x45\x46", [0x48f5] = "\x02\x48\x5f", - [0x48f6] = "\x01\x67\x5b", [0x48f7] = "\x01\x67\x58", - [0x48f8] = "\x02\x48\x5e", [0x48f9] = "\x01\x67\x5a", - [0x48fa] = "\x02\x48\x5c", [0x48fb] = "\x01\x67\x59", - [0x48fc] = "\x0e\x45\x47", [0x48fd] = "\x02\x48\x5d", - [0x48ff] = "\x02\x4f\x25", [0x4900] = "\x01\x6b\x66", - [0x4902] = "\x02\x55\x58", [0x4904] = "\x01\x6f\x66", - [0x4905] = "\x02\x55\x56", [0x4906] = "\x01\x6f\x67", - [0x4907] = "\x01\x6f\x68", [0x4908] = "\x02\x55\x57", - [0x4909] = "\x01\x6f\x69", [0x490a] = "\x0e\x4f\x60", - [0x490b] = "\x02\x5b\x5d", [0x490c] = "\x0e\x53\x50", - [0x490d] = "\x01\x72\x77", [0x490e] = "\x01\x72\x74", - [0x490f] = "\x01\x72\x79", [0x4910] = "\x02\x5b\x5f", - [0x4911] = "\x01\x72\x75", [0x4912] = "\x02\x5b\x5e", - [0x4913] = "\x01\x72\x78", [0x4914] = "\x0e\x53\x4d", - [0x4915] = "\x0e\x53\x4c", [0x4916] = "\x01\x72\x76", - [0x4917] = "\x0e\x53\x51", [0x4918] = "\x02\x60\x46", - [0x4919] = "\x02\x60\x48", [0x491a] = "\x0e\x56\x74", - [0x491b] = "\x0e\x56\x75", [0x491c] = "\x01\x76\x24", - [0x491d] = "\x02\x60\x47", [0x491e] = "\x01\x76\x25", - [0x491f] = "\x02\x60\x45", [0x4920] = "\x02\x60\x44", - [0x4922] = "\x02\x64\x43", [0x4923] = "\x02\x64\x42", - [0x4924] = "\x01\x77\x67", [0x4925] = "\x02\x64\x44", - [0x4926] = "\x02\x67\x6b", [0x4927] = "\x01\x79\x47", - [0x4928] = "\x02\x67\x6a", [0x4929] = "\x02\x67\x67", - [0x492a] = "\x01\x79\x46", [0x492b] = "\x02\x67\x68", - [0x492c] = "\x02\x67\x69", [0x492e] = "\x02\x6a\x56", - [0x492f] = "\x02\x6a\x57", [0x4930] = "\x01\x7a\x50", - [0x4931] = "\x0e\x5d\x4f", [0x4932] = "\x01\x7b\x3f", - [0x4933] = "\x0e\x5d\x4c", [0x4934] = "\x0e\x5d\x4e", - [0x4935] = "\x02\x6c\x5c", [0x4936] = "\x0e\x5e\x72", - [0x4937] = "\x0e\x5e\x71", [0x4938] = "\x01\x7b\x3d", - [0x4939] = "\x01\x7b\x3e", [0x493a] = "\x02\x6c\x5d", - [0x493b] = "\x0e\x66\x6e", [0x493c] = "\x0e\x5f\x71", - [0x493d] = "\x01\x7b\x7e", [0x493e] = "\x01\x7c\x21", - [0x493f] = "\x02\x6e\x40", [0x4940] = "\x0e\x5f\x72", - [0x4941] = "\x0e\x60\x59", [0x4942] = "\x01\x7c\x70", - [0x4943] = "\x02\x70\x5d", [0x4944] = "\x01\x7c\x72", - [0x4945] = "\x0e\x61\x26", [0x4946] = "\x02\x70\x5c", - [0x4947] = "\x02\x70\x5e", [0x4948] = "\x01\x7c\x71", - [0x4949] = "\x02\x71\x46", [0x494b] = "\x02\x71\x7b", - [0x494d] = "\x0e\x66\x6f", [0x4950] = "\x0e\x62\x45", - [0x4951] = "\x0e\x2a\x7e", [0x4952] = "\x01\x4f\x65", - [0x4955] = "\x0e\x45\x49", [0x4956] = "\x01\x67\x5c", - [0x4958] = "\x02\x4f\x26", [0x4959] = "\x0e\x4a\x4c", - [0x495a] = "\x02\x55\x59", [0x495b] = "\x01\x72\x7a", - [0x495c] = "\x01\x72\x7b", [0x495d] = "\x0e\x59\x4f", - [0x495e] = "\x01\x4f\x66", [0x495f] = "\x0e\x40\x21", - [0x4960] = "\x01\x6f\x6a", [0x4961] = "\x01\x79\x48", - [0x4962] = "\x01\x53\x72", [0x4963] = "\x0e\x2b\x21", - [0x4964] = "\x0e\x4a\x4e", [0x4966] = "\x01\x72\x7c", - [0x4967] = "\x0e\x5e\x73", [0x4968] = "\x01\x7c\x4e", - [0x4969] = "\x01\x53\x73", [0x496a] = "\x02\x3a\x31", - [0x496c] = "\x02\x41\x4e", [0x496d] = "\x0e\x40\x24", - [0x496e] = "\x02\x41\x50", [0x496f] = "\x0e\x40\x22", - [0x4970] = "\x02\x41\x4f", [0x4972] = "\x02\x48\x63", - [0x4973] = "\x02\x48\x60", [0x4974] = "\x01\x67\x5d", - [0x4976] = "\x01\x67\x5e", [0x4977] = "\x02\x48\x61", - [0x4978] = "\x02\x48\x62", [0x4979] = "\x0e\x45\x4b", - [0x497a] = "\x02\x4f\x28", [0x497b] = "\x02\x4f\x2d", - [0x497c] = "\x01\x6b\x67", [0x497d] = "\x02\x4f\x27", - [0x497e] = "\x02\x4f\x29", [0x497f] = "\x02\x4f\x30", - [0x4980] = "\x02\x4f\x2b", [0x4981] = "\x02\x4f\x2f", - [0x4982] = "\x02\x4f\x2c", [0x4983] = "\x02\x4f\x2a", - [0x4984] = "\x02\x4f\x2e", [0x4985] = "\x01\x6b\x68", - [0x4987] = "\x0e\x4f\x62", [0x4988] = "\x02\x55\x5c", - [0x4989] = "\x0e\x4f\x63", [0x498a] = "\x02\x55\x5a", - [0x498b] = "\x01\x6f\x6c", [0x498c] = "\x0e\x4f\x64", - [0x498d] = "\x01\x6f\x6b", [0x498e] = "\x02\x55\x5b", - [0x498f] = "\x01\x6f\x6d", [0x4993] = "\x0e\x53\x53", - [0x4994] = "\x02\x5b\x62", [0x4997] = "\x02\x5b\x61", - [0x4998] = "\x01\x72\x7d", [0x4999] = "\x02\x5b\x60", - [0x499a] = "\x02\x60\x49", [0x499b] = "\x0e\x56\x7a", - [0x499c] = "\x02\x60\x4b", [0x499d] = "\x02\x60\x4d", - [0x499e] = "\x02\x60\x4c", [0x499f] = "\x0e\x56\x7b", - [0x49a0] = "\x01\x76\x26", [0x49a1] = "\x02\x60\x4a", - [0x49a2] = "\x02\x64\x4b", [0x49a3] = "\x01\x77\x68", - [0x49a4] = "\x02\x64\x49", [0x49a5] = "\x02\x64\x4c", - [0x49a6] = "\x01\x77\x69", [0x49a8] = "\x02\x64\x47", - [0x49a9] = "\x0e\x59\x50", [0x49aa] = "\x02\x64\x4a", - [0x49ab] = "\x02\x64\x48", [0x49ac] = "\x02\x64\x45", - [0x49ad] = "\x01\x77\x6a", [0x49ae] = "\x02\x64\x46", - [0x49b1] = "\x0e\x5b\x5f", [0x49b2] = "\x0e\x5b\x5d", - [0x49b3] = "\x02\x67\x6c", [0x49b4] = "\x0e\x5b\x5e", - [0x49b5] = "\x0e\x5b\x60", [0x49b6] = "\x02\x67\x6e", - [0x49b7] = "\x02\x67\x6d", [0x49b8] = "\x0e\x5d\x50", - [0x49b9] = "\x02\x6a\x58", [0x49ba] = "\x0e\x5d\x51", - [0x49bb] = "\x02\x6a\x59", [0x49bd] = "\x0e\x5e\x75", - [0x49be] = "\x0e\x5e\x74", [0x49bf] = "\x02\x6c\x5e", - [0x49c0] = "\x0e\x5f\x73", [0x49c1] = "\x01\x7c\x23", - [0x49c3] = "\x01\x7c\x22", [0x49c4] = "\x02\x6f\x5d", - [0x49c5] = "\x02\x6f\x5e", [0x49c6] = "\x01\x7c\x73", - [0x49c7] = "\x02\x70\x5f", [0x49c8] = "\x0e\x61\x28", - [0x49c9] = "\x01\x7d\x36", [0x49ca] = "\x0e\x62\x3b", - [0x49cb] = "\x01\x53\x74", [0x49cc] = "\x01\x62\x79", - [0x49cd] = "\x02\x4f\x32", [0x49ce] = "\x02\x4f\x31", - [0x49cf] = "\x02\x55\x5e", [0x49d0] = "\x02\x55\x5d", - [0x49d2] = "\x0e\x53\x55", [0x49d3] = "\x01\x76\x27", - [0x49d4] = "\x02\x60\x4f", [0x49d5] = "\x02\x60\x4e", - [0x49d6] = "\x02\x64\x4f", [0x49d7] = "\x02\x64\x4d", - [0x49d8] = "\x02\x64\x50", [0x49d9] = "\x02\x64\x4e", - [0x49da] = "\x0e\x59\x51", [0x49dc] = "\x01\x79\x49", - [0x49dd] = "\x02\x67\x6f", [0x49de] = "\x02\x67\x70", - [0x49df] = "\x02\x67\x71", [0x49e1] = "\x02\x6c\x5f", - [0x49e2] = "\x0e\x5e\x76", [0x49e3] = "\x02\x6e\x41", - [0x49e4] = "\x0e\x61\x29", [0x49e5] = "\x02\x70\x60", - [0x49ed] = "\x01\x53\x75", [0x49ee] = "\x0e\x45\x4f", - [0x49ef] = "\x0e\x4f\x65", [0x49f0] = "\x02\x5b\x63", - [0x49f1] = "\x02\x60\x50", [0x49f2] = "\x0e\x5b\x61", - [0x49f3] = "\x01\x53\x76", [0x49f5] = "\x0e\x45\x50", - [0x49f6] = "\x01\x6b\x69", [0x49f8] = "\x02\x5b\x64", - [0x49f9] = "\x01\x77\x6b", [0x49fa] = "\x02\x64\x51", - [0x49fb] = "\x01\x79\x4a", [0x49fc] = "\x0e\x5d\x53", - [0x49fd] = "\x02\x6a\x5a", [0x49fe] = "\x02\x6a\x5b", - [0x49ff] = "\x01\x7b\x40", [0x4a00] = "\x02\x6f\x5f", - [0x4a01] = "\x01\x53\x77", [0x4a02] = "\x01\x5e\x21", - [0x4a03] = "\x01\x5e\x22", [0x4a04] = "\x02\x3a\x32", - [0x4a05] = "\x01\x62\x7a", [0x4a06] = "\x01\x62\x7b", - [0x4a07] = "\x02\x41\x51", [0x4a08] = "\x01\x62\x7c", - [0x4a0a] = "\x01\x67\x62", [0x4a0b] = "\x0e\x45\x52", - [0x4a0c] = "\x01\x67\x64", [0x4a0d] = "\x02\x48\x65", - [0x4a0e] = "\x02\x48\x66", [0x4a0f] = "\x02\x48\x64", - [0x4a10] = "\x01\x67\x5f", [0x4a11] = "\x01\x67\x60", - [0x4a12] = "\x01\x67\x63", [0x4a13] = "\x01\x67\x61", - [0x4a14] = "\x0e\x4a\x54", [0x4a15] = "\x0e\x4a\x55", - [0x4a16] = "\x02\x4f\x33", [0x4a17] = "\x01\x6b\x6a", - [0x4a18] = "\x01\x6b\x6b", [0x4a19] = "\x0e\x4a\x52", - [0x4a1a] = "\x0e\x4a\x56", [0x4a1b] = "\x02\x55\x65", - [0x4a1c] = "\x01\x6f\x70", [0x4a1d] = "\x02\x55\x60", - [0x4a1e] = "\x02\x55\x5f", [0x4a1f] = "\x0e\x4f\x69", - [0x4a20] = "\x02\x55\x64", [0x4a21] = "\x01\x6f\x6e", - [0x4a22] = "\x0e\x4f\x67", [0x4a23] = "\x0e\x63\x6e", - [0x4a24] = "\x01\x73\x26", [0x4a26] = "\x02\x55\x61", - [0x4a27] = "\x02\x55\x66", [0x4a28] = "\x02\x55\x63", - [0x4a29] = "\x02\x55\x62", [0x4a2a] = "\x0e\x4f\x66", - [0x4a2b] = "\x01\x6f\x6f", [0x4a2d] = "\x01\x73\x24", - [0x4a2e] = "\x0e\x53\x5c", [0x4a2f] = "\x02\x5b\x66", - [0x4a30] = "\x01\x72\x7e", [0x4a31] = "\x0e\x53\x59", - [0x4a32] = "\x02\x5b\x67", [0x4a33] = "\x0e\x53\x5a", - [0x4a34] = "\x0e\x52\x28", [0x4a35] = "\x02\x5b\x65", - [0x4a36] = "\x0e\x53\x58", [0x4a37] = "\x01\x73\x23", - [0x4a38] = "\x01\x73\x21", [0x4a39] = "\x01\x73\x25", - [0x4a3a] = "\x0e\x53\x5d", [0x4a3b] = "\x01\x73\x22", - [0x4a3c] = "\x0e\x53\x5b", [0x4a3d] = "\x0e\x53\x5f", - [0x4a3f] = "\x0e\x59\x5b", [0x4a40] = "\x0e\x57\x26", - [0x4a41] = "\x02\x60\x51", [0x4a42] = "\x0e\x63\x7b", - [0x4a43] = "\x02\x60\x56", [0x4a44] = "\x02\x60\x52", - [0x4a45] = "\x02\x60\x55", [0x4a46] = "\x01\x76\x28", - [0x4a47] = "\x0e\x57\x28", [0x4a48] = "\x02\x5e\x41", - [0x4a49] = "\x02\x60\x54", [0x4a4a] = "\x02\x60\x53", - [0x4a4b] = "\x0e\x59\x59", [0x4a4c] = "\x01\x77\x6e", - [0x4a4d] = "\x01\x77\x6c", [0x4a4e] = "\x01\x77\x6f", - [0x4a4f] = "\x01\x77\x6d", [0x4a50] = "\x02\x64\x52", - [0x4a51] = "\x02\x64\x53", [0x4a52] = "\x02\x64\x54", - [0x4a53] = "\x01\x77\x70", [0x4a54] = "\x0e\x59\x56", - [0x4a55] = "\x0e\x59\x58", [0x4a56] = "\x0e\x5b\x65", - [0x4a57] = "\x02\x67\x75", [0x4a58] = "\x01\x79\x4c", - [0x4a59] = "\x02\x67\x73", [0x4a5b] = "\x01\x79\x4d", - [0x4a5c] = "\x02\x67\x72", [0x4a5d] = "\x02\x67\x74", - [0x4a5e] = "\x01\x79\x4b", [0x4a5f] = "\x02\x6a\x5f", - [0x4a60] = "\x02\x6a\x5c", [0x4a61] = "\x0e\x64\x2a", - [0x4a62] = "\x02\x6a\x5d", [0x4a63] = "\x02\x6a\x5e", - [0x4a64] = "\x02\x6c\x60", [0x4a65] = "\x01\x7b\x42", - [0x4a66] = "\x0e\x5e\x78", [0x4a67] = "\x01\x7b\x41", - [0x4a68] = "\x0e\x5e\x77", [0x4a69] = "\x02\x6e\x43", - [0x4a6a] = "\x02\x6e\x42", [0x4a6b] = "\x01\x7c\x24", - [0x4a6c] = "\x0e\x60\x5d", [0x4a6d] = "\x0e\x60\x5e", - [0x4a6e] = "\x0e\x60\x5c", [0x4a6f] = "\x01\x7c\x4f", - [0x4a70] = "\x01\x7c\x74", [0x4a71] = "\x01\x7d\x2d", - [0x4a72] = "\x02\x71\x47", [0x4a73] = "\x02\x71\x7c", - [0x4a74] = "\x02\x71\x7d", [0x4aa8] = "\x01\x53\x78", - [0x4aa9] = "\x02\x41\x52", [0x4aac] = "\x02\x48\x67", - [0x4aad] = "\x02\x4f\x34", [0x4aae] = "\x02\x4f\x35", - [0x4aaf] = "\x01\x6b\x6c", [0x4ab1] = "\x01\x6b\x6d", - [0x4ab2] = "\x02\x55\x67", [0x4ab3] = "\x01\x6f\x71", - [0x4ab5] = "\x0e\x53\x61", [0x4ab6] = "\x01\x76\x29", - [0x4ab7] = "\x0e\x57\x2a", [0x4ab8] = "\x02\x64\x55", - [0x4ab9] = "\x0e\x59\x5c", [0x4aba] = "\x01\x77\x71", - [0x4abb] = "\x02\x67\x78", [0x4abc] = "\x01\x79\x4e", - [0x4abd] = "\x02\x67\x77", [0x4abe] = "\x02\x67\x79", - [0x4abf] = "\x02\x67\x76", [0x4ac0] = "\x02\x6c\x63", - [0x4ac1] = "\x02\x6a\x60", [0x4ac2] = "\x02\x6a\x61", - [0x4ac3] = "\x0e\x5d\x56", [0x4ac4] = "\x01\x7a\x51", - [0x4ac6] = "\x02\x6c\x62", [0x4ac7] = "\x0e\x5e\x7b", - [0x4ac8] = "\x0e\x5e\x79", [0x4ac9] = "\x02\x6c\x61", - [0x4aca] = "\x0e\x5e\x7a", [0x4acb] = "\x02\x6e\x44", - [0x4acc] = "\x02\x71\x7e", [0x4acd] = "\x0e\x62\x25", - [0x4adb] = "\x01\x53\x79", [0x4adc] = "\x0e\x5e\x7c", - [0x4add] = "\x0e\x62\x26", [0x4adf] = "\x01\x53\x7a", - [0x4ae1] = "\x0e\x39\x67", [0x4ae2] = "\x01\x58\x6a", - [0x4ae3] = "\x02\x33\x4b", [0x4ae4] = "\x0e\x66\x70", - [0x4ae5] = "\x02\x3a\x33", [0x4ae6] = "\x0e\x39\x68", - [0x4ae7] = "\x01\x62\x7d", [0x4ae9] = "\x01\x63\x22", - [0x4aea] = "\x01\x62\x7e", [0x4aeb] = "\x02\x41\x53", - [0x4aec] = "\x0e\x45\x5b", [0x4aed] = "\x01\x63\x24", - [0x4aef] = "\x01\x63\x21", [0x4af0] = "\x0e\x40\x2b", - [0x4af1] = "\x0e\x45\x5c", [0x4af2] = "\x01\x63\x23", - [0x4af3] = "\x0e\x45\x54", [0x4af4] = "\x01\x67\x66", - [0x4af5] = "\x0e\x45\x59", [0x4af6] = "\x02\x48\x68", - [0x4af7] = "\x0e\x45\x57", [0x4af8] = "\x0e\x4a\x5d", - [0x4af9] = "\x02\x48\x69", [0x4afa] = "\x02\x55\x69", - [0x4afc] = "\x01\x67\x65", [0x4afd] = "\x01\x67\x67", - [0x4afe] = "\x01\x67\x68", [0x4aff] = "\x0e\x45\x58", - [0x4b00] = "\x02\x4f\x37", [0x4b01] = "\x0e\x4a\x5e", - [0x4b02] = "\x02\x4f\x36", [0x4b03] = "\x01\x6b\x6e", - [0x4b05] = "\x01\x6b\x6f", [0x4b06] = "\x0e\x4a\x5b", - [0x4b07] = "\x02\x4f\x38", [0x4b08] = "\x02\x55\x68", - [0x4b09] = "\x01\x6b\x71", [0x4b0a] = "\x01\x6f\x72", - [0x4b0c] = "\x01\x6b\x70", [0x4b0e] = "\x0e\x66\x7a", - [0x4b10] = "\x01\x73\x27", [0x4b11] = "\x02\x55\x6a", - [0x4b12] = "\x01\x6f\x74", [0x4b13] = "\x01\x6f\x73", - [0x4b14] = "\x02\x55\x6b", [0x4b15] = "\x02\x55\x6e", - [0x4b16] = "\x02\x55\x6c", [0x4b17] = "\x02\x55\x6d", - [0x4b18] = "\x01\x6f\x75", [0x4b19] = "\x0e\x4f\x6b", - [0x4b1a] = "\x01\x73\x2c", [0x4b1b] = "\x01\x73\x2a", - [0x4b1c] = "\x0e\x53\x65", [0x4b1d] = "\x0e\x53\x66", - [0x4b1e] = "\x01\x73\x29", [0x4b1f] = "\x02\x5b\x69", - [0x4b20] = "\x0e\x53\x64", [0x4b21] = "\x01\x73\x2b", - [0x4b22] = "\x0e\x53\x62", [0x4b23] = "\x0e\x53\x63", - [0x4b24] = "\x02\x5b\x68", [0x4b25] = "\x02\x60\x57", - [0x4b27] = "\x02\x5b\x6a", [0x4b28] = "\x01\x73\x28", - [0x4b29] = "\x02\x5b\x6b", [0x4b2a] = "\x02\x60\x5a", - [0x4b2b] = "\x02\x60\x58", [0x4b2c] = "\x02\x60\x59", - [0x4b2d] = "\x02\x60\x5e", [0x4b2e] = "\x01\x77\x75", - [0x4b2f] = "\x02\x60\x5d", [0x4b30] = "\x02\x60\x60", - [0x4b31] = "\x02\x60\x5f", [0x4b32] = "\x02\x60\x5c", - [0x4b33] = "\x02\x60\x5b", [0x4b35] = "\x01\x76\x2a", - [0x4b36] = "\x0e\x59\x62", [0x4b38] = "\x0e\x59\x61", - [0x4b39] = "\x0e\x59\x66", [0x4b3a] = "\x02\x64\x58", - [0x4b3b] = "\x0e\x59\x65", [0x4b3c] = "\x02\x64\x57", - [0x4b3d] = "\x01\x77\x74", [0x4b3e] = "\x01\x77\x72", - [0x4b3f] = "\x01\x77\x73", [0x4b40] = "\x0e\x59\x63", - [0x4b41] = "\x02\x64\x56", [0x4b42] = "\x0e\x66\x71", - [0x4b43] = "\x02\x67\x7c", [0x4b44] = "\x0e\x5b\x69", - [0x4b45] = "\x01\x79\x4f", [0x4b47] = "\x02\x67\x7b", - [0x4b48] = "\x02\x67\x7a", [0x4b49] = "\x01\x79\x50", - [0x4b4b] = "\x02\x6a\x66", [0x4b4c] = "\x02\x6a\x65", - [0x4b4d] = "\x0e\x5d\x58", [0x4b4e] = "\x02\x6a\x63", - [0x4b4f] = "\x0e\x5e\x7e", [0x4b50] = "\x02\x6a\x62", - [0x4b51] = "\x01\x7a\x53", [0x4b52] = "\x01\x7a\x52", - [0x4b53] = "\x02\x6a\x67", [0x4b54] = "\x02\x6e\x45", - [0x4b55] = "\x01\x7c\x25", [0x4b56] = "\x02\x6c\x65", - [0x4b57] = "\x01\x7b\x43", [0x4b58] = "\x02\x6c\x64", - [0x4b59] = "\x02\x6a\x64", [0x4b5a] = "\x0e\x5f\x78", - [0x4b5b] = "\x02\x6e\x46", [0x4b5c] = "\x01\x7c\x50", - [0x4b5d] = "\x0e\x61\x2a", [0x4b5e] = "\x01\x7d\x2e", - [0x4b5f] = "\x02\x71\x48", [0x4b61] = "\x02\x72\x21", - [0x4b96] = "\x01\x53\x7b", [0x4b97] = "\x02\x3a\x34", - [0x4b98] = "\x02\x60\x61", [0x4b99] = "\x01\x53\x7c", - [0x4b9a] = "\x0e\x45\x5f", [0x4b9c] = "\x02\x4f\x3a", - [0x4b9d] = "\x02\x4f\x39", [0x4b9e] = "\x02\x5b\x6c", - [0x4ba0] = "\x0e\x53\x68", [0x4ba1] = "\x02\x60\x63", - [0x4ba2] = "\x0e\x57\x30", [0x4ba3] = "\x02\x60\x62", - [0x4ba4] = "\x0e\x59\x67", [0x4ba5] = "\x01\x77\x76", - [0x4ba6] = "\x02\x67\x7d", [0x4ba7] = "\x02\x67\x7e", - [0x4ba8] = "\x01\x7a\x54", [0x4ba9] = "\x0e\x5f\x21", - [0x4baa] = "\x0e\x60\x60", [0x4bab] = "\x02\x72\x22", - [0x4bac] = "\x01\x58\x6b", [0x4bad] = "\x01\x63\x26", - [0x4bae] = "\x01\x63\x25", [0x4baf] = "\x02\x48\x6a", - [0x4bb0] = "\x02\x48\x6c", [0x4bb1] = "\x01\x67\x6a", - [0x4bb2] = "\x02\x48\x6b", [0x4bb3] = "\x01\x67\x69", - [0x4bb4] = "\x01\x67\x6b", [0x4bb5] = "\x02\x48\x6d", - [0x4bb6] = "\x0e\x4a\x63", [0x4bb7] = "\x0e\x4a\x62", - [0x4bb8] = "\x0e\x4a\x66", [0x4bb9] = "\x02\x4f\x3c", - [0x4bba] = "\x02\x4f\x3e", [0x4bbb] = "\x02\x4f\x3d", - [0x4bbc] = "\x0e\x4a\x61", [0x4bbd] = "\x02\x4f\x40", - [0x4bbe] = "\x0e\x4a\x60", [0x4bbf] = "\x0e\x4a\x6c", - [0x4bc0] = "\x0e\x4a\x64", [0x4bc1] = "\x01\x6b\x72", - [0x4bc2] = "\x02\x4f\x3f", [0x4bc3] = "\x02\x4f\x3b", - [0x4bc4] = "\x0e\x4a\x6a", [0x4bc7] = "\x02\x4f\x41", - [0x4bc8] = "\x0e\x4f\x73", [0x4bc9] = "\x02\x55\x75", - [0x4bca] = "\x0e\x4f\x6d", [0x4bcb] = "\x02\x55\x78", - [0x4bcc] = "\x02\x55\x7a", [0x4bcd] = "\x02\x55\x70", - [0x4bce] = "\x02\x55\x74", [0x4bcf] = "\x02\x55\x71", - [0x4bd0] = "\x01\x6f\x77", [0x4bd1] = "\x01\x6f\x7a", - [0x4bd2] = "\x01\x6f\x7c", [0x4bd3] = "\x02\x55\x72", - [0x4bd4] = "\x02\x55\x73", [0x4bd5] = "\x01\x6f\x7b", - [0x4bd6] = "\x02\x55\x76", [0x4bd7] = "\x02\x55\x79", - [0x4bd8] = "\x02\x55\x77", [0x4bd9] = "\x01\x6f\x7d", - [0x4bda] = "\x0e\x4f\x6e", [0x4bdb] = "\x01\x6f\x79", - [0x4bdc] = "\x02\x55\x6f", [0x4bdd] = "\x01\x6f\x76", - [0x4bde] = "\x0e\x4f\x72", [0x4bdf] = "\x01\x6f\x78", - [0x4be0] = "\x0e\x4f\x74", [0x4be1] = "\x0e\x53\x70", - [0x4be2] = "\x01\x73\x2e", [0x4be3] = "\x02\x5b\x72", - [0x4be4] = "\x02\x5b\x70", [0x4be5] = "\x02\x5b\x6f", - [0x4be6] = "\x0e\x53\x71", [0x4be7] = "\x02\x5b\x75", - [0x4be8] = "\x0e\x53\x6b", [0x4be9] = "\x02\x5b\x74", - [0x4bea] = "\x02\x5b\x73", [0x4beb] = "\x0e\x53\x6c", - [0x4bec] = "\x02\x5b\x6e", [0x4bed] = "\x01\x73\x2d", - [0x4bee] = "\x02\x5b\x6d", [0x4bef] = "\x0e\x53\x6a", - [0x4bf0] = "\x02\x5b\x71", [0x4bf1] = "\x01\x73\x2f", - [0x4bf3] = "\x0e\x57\x34", [0x4bf4] = "\x02\x60\x66", - [0x4bf5] = "\x0e\x57\x37", [0x4bf6] = "\x02\x60\x6a", - [0x4bf7] = "\x02\x60\x67", [0x4bf8] = "\x02\x60\x69", - [0x4bf9] = "\x02\x60\x68", [0x4bfa] = "\x02\x60\x65", - [0x4bfb] = "\x02\x60\x6b", [0x4bfc] = "\x02\x60\x6e", - [0x4bfd] = "\x02\x60\x6c", [0x4bfe] = "\x02\x60\x6d", - [0x4bff] = "\x01\x76\x2c", [0x4c00] = "\x0e\x57\x33", - [0x4c01] = "\x01\x76\x2b", [0x4c02] = "\x02\x60\x64", - [0x4c03] = "\x02\x60\x6f", [0x4c04] = "\x02\x64\x5d", - [0x4c05] = "\x02\x64\x60", [0x4c06] = "\x02\x64\x62", - [0x4c07] = "\x02\x64\x61", [0x4c08] = "\x0e\x59\x6a", - [0x4c09] = "\x02\x64\x5b", [0x4c0a] = "\x02\x64\x5f", - [0x4c0b] = "\x02\x64\x5a", [0x4c0c] = "\x0e\x59\x6b", - [0x4c0d] = "\x02\x64\x5c", [0x4c0e] = "\x01\x77\x77", - [0x4c0f] = "\x02\x64\x59", [0x4c10] = "\x0e\x59\x6d", - [0x4c11] = "\x02\x64\x5e", [0x4c14] = "\x02\x68\x2d", - [0x4c15] = "\x02\x68\x22", [0x4c16] = "\x01\x79\x51", - [0x4c17] = "\x0e\x5b\x6f", [0x4c18] = "\x0e\x5b\x6d", - [0x4c19] = "\x01\x79\x52", [0x4c1a] = "\x02\x68\x21", - [0x4c1b] = "\x02\x68\x26", [0x4c1c] = "\x02\x68\x2c", - [0x4c1d] = "\x02\x68\x24", [0x4c1e] = "\x02\x68\x2b", - [0x4c1f] = "\x0e\x5b\x6c", [0x4c20] = "\x02\x68\x28", - [0x4c21] = "\x0e\x5b\x6e", [0x4c22] = "\x02\x68\x27", - [0x4c23] = "\x02\x68\x2a", [0x4c24] = "\x02\x68\x25", - [0x4c25] = "\x02\x68\x23", [0x4c26] = "\x0e\x5b\x6b", - [0x4c27] = "\x02\x68\x29", [0x4c29] = "\x02\x6a\x6e", - [0x4c2a] = "\x02\x6a\x6c", [0x4c2b] = "\x01\x7a\x55", - [0x4c2c] = "\x02\x6a\x6b", [0x4c2d] = "\x02\x6a\x71", - [0x4c2e] = "\x02\x6a\x6f", [0x4c2f] = "\x0e\x5d\x5a", - [0x4c30] = "\x01\x7a\x56", [0x4c31] = "\x02\x6a\x6a", - [0x4c32] = "\x02\x6a\x68", [0x4c34] = "\x02\x6a\x69", - [0x4c35] = "\x01\x7a\x58", [0x4c36] = "\x02\x6a\x6d", - [0x4c37] = "\x01\x7a\x57", [0x4c38] = "\x02\x6a\x70", - [0x4c39] = "\x02\x6c\x66", [0x4c3a] = "\x02\x6c\x6c", - [0x4c3b] = "\x0e\x5f\x24", [0x4c3c] = "\x0e\x5f\x22", - [0x4c3d] = "\x02\x6c\x67", [0x4c3e] = "\x01\x7b\x47", - [0x4c3f] = "\x02\x6c\x6d", [0x4c40] = "\x01\x7b\x46", - [0x4c41] = "\x02\x6c\x6b", [0x4c42] = "\x02\x6c\x6a", - [0x4c43] = "\x01\x7b\x45", [0x4c44] = "\x02\x6c\x69", - [0x4c45] = "\x01\x7b\x44", [0x4c46] = "\x02\x6c\x68", - [0x4c48] = "\x02\x6e\x4c", [0x4c49] = "\x02\x6e\x4e", - [0x4c4a] = "\x02\x6e\x4d", [0x4c4c] = "\x02\x6e\x4a", - [0x4c4d] = "\x01\x7c\x27", [0x4c4e] = "\x02\x6e\x47", - [0x4c4f] = "\x02\x6e\x4b", [0x4c50] = "\x02\x6e\x50", - [0x4c51] = "\x0e\x5f\x79", [0x4c52] = "\x02\x6e\x4f", - [0x4c53] = "\x02\x6e\x48", [0x4c54] = "\x02\x6e\x49", - [0x4c55] = "\x01\x7c\x26", [0x4c56] = "\x02\x6f\x60", - [0x4c57] = "\x01\x7c\x53", [0x4c58] = "\x0e\x60\x62", - [0x4c59] = "\x02\x6f\x61", [0x4c5a] = "\x01\x7c\x51", - [0x4c5b] = "\x01\x7c\x52", [0x4c5c] = "\x0e\x60\x61", - [0x4c5e] = "\x02\x70\x61", [0x4c5f] = "\x01\x7c\x75", - [0x4c60] = "\x02\x71\x65", [0x4c61] = "\x0e\x61\x72", - [0x4c62] = "\x01\x7d\x37", [0x4c63] = "\x0e\x61\x73", - [0x4c64] = "\x02\x72\x23", [0x4c65] = "\x01\x7d\x38", - [0x4c66] = "\x02\x72\x24", [0x4c67] = "\x02\x72\x25", - [0x4c68] = "\x02\x72\x33", [0x4c69] = "\x02\x72\x32", - [0x4c6a] = "\x01\x7d\x47", [0x4c6b] = "\x02\x72\x3b", - [0x4ca8] = "\x01\x58\x6c", [0x4ca9] = "\x0e\x40\x2f", - [0x4cab] = "\x02\x48\x6f", [0x4cad] = "\x02\x48\x6e", - [0x4caf] = "\x01\x6b\x73", [0x4cb0] = "\x01\x6b\x74", - [0x4cb1] = "\x02\x4f\x42", [0x4cb3] = "\x02\x55\x7b", - [0x4cb4] = "\x02\x5b\x78", [0x4cb5] = "\x0e\x4f\x77", - [0x4cb6] = "\x0e\x4f\x76", [0x4cb7] = "\x01\x6f\x7e", - [0x4cb8] = "\x01\x73\x30", [0x4cb9] = "\x02\x5b\x76", - [0x4cbb] = "\x02\x5b\x79", [0x4cbc] = "\x01\x73\x31", - [0x4cbd] = "\x0e\x57\x3a", [0x4cbe] = "\x02\x60\x70", - [0x4cbf] = "\x02\x5b\x77", [0x4cc0] = "\x02\x64\x63", - [0x4cc1] = "\x01\x77\x78", [0x4cc2] = "\x02\x68\x2e", - [0x4cc4] = "\x0e\x5d\x61", [0x4cc6] = "\x02\x6a\x74", - [0x4cc7] = "\x02\x6a\x72", [0x4cc8] = "\x0e\x5d\x60", - [0x4cc9] = "\x0e\x5d\x5e", [0x4cca] = "\x02\x6a\x73", - [0x4ccd] = "\x02\x6c\x6e", [0x4cce] = "\x0e\x5f\x25", - [0x4ccf] = "\x01\x7b\x48", [0x4cd0] = "\x02\x6e\x51", - [0x4cd1] = "\x01\x7c\x56", [0x4cd2] = "\x01\x7c\x28", - [0x4cd3] = "\x01\x7c\x54", [0x4cd4] = "\x01\x7c\x55", - [0x4cd5] = "\x02\x70\x62", [0x4cd6] = "\x01\x7d\x2f", - [0x4cd7] = "\x0e\x61\x74", [0x4cd8] = "\x01\x58\x6d", - [0x4cd9] = "\x0e\x63\x34", [0x4cda] = "\x0e\x4a\x6e", - [0x4cdc] = "\x02\x64\x64", [0x4cdd] = "\x0e\x5f\x7b", - [0x4cde] = "\x0e\x60\x63", [0x4cdf] = "\x02\x33\x4c", - [0x4ce0] = "\x0e\x40\x32", [0x4ce1] = "\x01\x67\x6c", - [0x4ce2] = "\x0e\x45\x61", [0x4ce3] = "\x02\x4f\x43", - [0x4ce4] = "\x0e\x4a\x6f", [0x4ce5] = "\x0e\x4a\x73", - [0x4ce6] = "\x01\x6b\x75", [0x4ce7] = "\x02\x4f\x44", - [0x4ce8] = "\x0e\x4a\x71", [0x4ce9] = "\x0e\x4a\x70", - [0x4cea] = "\x0e\x4a\x72", [0x4ceb] = "\x02\x55\x7d", - [0x4cec] = "\x02\x55\x7c", [0x4ced] = "\x01\x73\x33", - [0x4cee] = "\x01\x70\x21", [0x4cef] = "\x01\x70\x22", - [0x4cf1] = "\x02\x56\x22", [0x4cf2] = "\x02\x56\x21", - [0x4cf3] = "\x02\x55\x7e", [0x4cf4] = "\x0e\x4f\x79", - [0x4cf5] = "\x0e\x53\x75", [0x4cf6] = "\x02\x5b\x7a", - [0x4cf7] = "\x02\x5b\x7d", [0x4cf8] = "\x0e\x53\x74", - [0x4cf9] = "\x02\x5b\x7c", [0x4cfa] = "\x02\x5b\x7b", - [0x4cfb] = "\x01\x73\x32", [0x4cfc] = "\x02\x60\x74", - [0x4cfd] = "\x02\x60\x72", [0x4cfe] = "\x02\x60\x71", - [0x4d00] = "\x0e\x57\x3b", [0x4d01] = "\x02\x60\x73", - [0x4d02] = "\x0e\x57\x3c", [0x4d03] = "\x01\x77\x79", - [0x4d04] = "\x02\x64\x66", [0x4d05] = "\x02\x64\x67", - [0x4d06] = "\x01\x77\x7a", [0x4d07] = "\x0e\x59\x6f", - [0x4d08] = "\x02\x64\x65", [0x4d09] = "\x0e\x5b\x71", - [0x4d0a] = "\x02\x68\x30", [0x4d0b] = "\x02\x68\x2f", - [0x4d0c] = "\x02\x68\x32", [0x4d0d] = "\x01\x79\x53", - [0x4d0e] = "\x02\x68\x31", [0x4d10] = "\x02\x6a\x75", - [0x4d11] = "\x02\x6a\x77", [0x4d12] = "\x02\x6a\x76", - [0x4d14] = "\x0e\x5f\x27", [0x4d15] = "\x02\x6c\x6f", - [0x4d16] = "\x02\x6c\x72", [0x4d17] = "\x02\x6c\x70", - [0x4d18] = "\x02\x6c\x71", [0x4d19] = "\x02\x6e\x52", - [0x4d1a] = "\x01\x7c\x29", [0x4d1d] = "\x0e\x66\x72", - [0x4d1e] = "\x02\x6f\x62", [0x4d1f] = "\x02\x6f\x63", - [0x4d20] = "\x02\x6f\x64", [0x4d21] = "\x0e\x61\x2c", - [0x4d22] = "\x01\x7c\x76", [0x4d23] = "\x01\x7d\x30", - [0x4d24] = "\x02\x72\x26", [0x4d25] = "\x01\x58\x6e", - [0x4d26] = "\x0e\x4a\x75", [0x4d27] = "\x01\x70\x23", - [0x4d28] = "\x01\x73\x34", [0x4d29] = "\x02\x64\x68", - [0x4d2a] = "\x0e\x5d\x62", [0x4d2b] = "\x02\x6e\x53", - [0x4d2c] = "\x0e\x61\x2e", [0x4d2d] = "\x0e\x64\x33", - [0x4d2e] = "\x02\x71\x66", [0x4d2f] = "\x02\x33\x4d", - [0x4d30] = "\x0e\x62\x28", [0x4d31] = "\x01\x7d\x48", - [0x4d32] = "\x01\x58\x6f", [0x4d33] = "\x02\x5b\x7e", - [0x4d34] = "\x0e\x57\x3e", [0x4d35] = "\x02\x64\x69", - [0x4d37] = "\x02\x68\x33", [0x4d38] = "\x0e\x5d\x63", - [0x4d3a] = "\x02\x6c\x73", [0x4d3b] = "\x02\x6e\x54", - [0x4d3c] = "\x01\x58\x70", [0x4d3d] = "\x0e\x45\x62", - [0x4d3e] = "\x02\x4f\x45", [0x4d3f] = "\x02\x4f\x46", - [0x4d40] = "\x0e\x4a\x78", [0x4d41] = "\x01\x6b\x76", - [0x4d42] = "\x01\x6b\x77", [0x4d43] = "\x02\x56\x24", - [0x4d44] = "\x01\x70\x25", [0x4d45] = "\x01\x70\x24", - [0x4d46] = "\x02\x56\x23", [0x4d48] = "\x02\x60\x75", - [0x4d49] = "\x0e\x57\x3f", [0x4d4a] = "\x02\x64\x6a", - [0x4d4b] = "\x02\x64\x6c", [0x4d4c] = "\x02\x64\x6b", - [0x4d4d] = "\x01\x77\x7d", [0x4d4e] = "\x01\x77\x7c", - [0x4d4f] = "\x01\x77\x7b", [0x4d50] = "\x0e\x5d\x64", - [0x4d51] = "\x01\x7b\x4a", [0x4d52] = "\x02\x6c\x74", - [0x4d53] = "\x0e\x5f\x28", [0x4d54] = "\x01\x7b\x49", - [0x4d55] = "\x02\x6e\x56", [0x4d56] = "\x02\x6e\x55", - [0x4d57] = "\x0e\x61\x2f", [0x4d58] = "\x01\x7c\x77", - [0x4d59] = "\x02\x70\x63", [0x4d5a] = "\x01\x5e\x23", - [0x4d5b] = "\x02\x48\x70", [0x4d5d] = "\x0e\x45\x63", - [0x4d5f] = "\x02\x4f\x49", [0x4d60] = "\x02\x4f\x47", - [0x4d61] = "\x02\x4f\x48", [0x4d63] = "\x0e\x4f\x7e", - [0x4d64] = "\x02\x56\x2d", [0x4d66] = "\x02\x56\x28", - [0x4d67] = "\x02\x56\x25", [0x4d68] = "\x02\x56\x2c", - [0x4d69] = "\x0e\x4f\x7c", [0x4d6b] = "\x0e\x4f\x7b", - [0x4d6c] = "\x02\x56\x2e", [0x4d6f] = "\x01\x70\x27", - [0x4d70] = "\x02\x56\x2b", [0x4d71] = "\x02\x56\x27", - [0x4d72] = "\x0e\x4f\x7d", [0x4d74] = "\x02\x56\x26", - [0x4d75] = "\x02\x56\x2a", [0x4d76] = "\x02\x56\x29", - [0x4d77] = "\x01\x70\x26", [0x4d7a] = "\x02\x5c\x2b", - [0x4d7b] = "\x02\x5c\x26", [0x4d7c] = "\x02\x5c\x24", - [0x4d7d] = "\x02\x5c\x2d", [0x4d7e] = "\x02\x5c\x25", - [0x4d80] = "\x02\x5c\x21", [0x4d82] = "\x02\x5c\x27", - [0x4d83] = "\x0e\x53\x78", [0x4d84] = "\x0e\x53\x7a", - [0x4d85] = "\x02\x5c\x22", [0x4d86] = "\x02\x60\x7e", - [0x4d87] = "\x02\x5c\x23", [0x4d88] = "\x02\x5c\x2e", - [0x4d89] = "\x0e\x54\x23", [0x4d8b] = "\x0e\x53\x7c", - [0x4d8c] = "\x0e\x54\x21", [0x4d8e] = "\x0e\x54\x25", - [0x4d8f] = "\x0e\x53\x7d", [0x4d90] = "\x02\x5c\x2a", - [0x4d91] = "\x01\x73\x35", [0x4d92] = "\x02\x5c\x29", - [0x4d93] = "\x02\x5c\x28", [0x4d94] = "\x0e\x53\x79", - [0x4d95] = "\x02\x5c\x2c", [0x4d98] = "\x0e\x66\x73", - [0x4d99] = "\x0e\x57\x44", [0x4d9a] = "\x02\x60\x76", - [0x4d9b] = "\x02\x60\x79", [0x4d9d] = "\x0e\x57\x45", - [0x4d9e] = "\x02\x60\x78", [0x4d9f] = "\x0e\x57\x40", - [0x4da0] = "\x02\x61\x22", [0x4da1] = "\x02\x60\x7b", - [0x4da2] = "\x02\x61\x21", [0x4da3] = "\x0e\x57\x42", - [0x4da4] = "\x02\x60\x7d", [0x4da5] = "\x02\x60\x7c", - [0x4da6] = "\x02\x60\x7a", [0x4da8] = "\x02\x60\x77", - [0x4daa] = "\x01\x76\x2f", [0x4dab] = "\x01\x76\x2e", - [0x4dad] = "\x01\x76\x30", [0x4dae] = "\x01\x76\x2d", - [0x4daf] = "\x02\x61\x23", [0x4db5] = "\x02\x64\x72", - [0x4db6] = "\x02\x64\x75", [0x4db8] = "\x02\x64\x73", - [0x4db9] = "\x02\x64\x77", [0x4dbb] = "\x0e\x59\x74", - [0x4dbd] = "\x02\x64\x78", [0x4dbf] = "\x02\x64\x70", - [0x4dc0] = "\x01\x78\x24", [0x4dc1] = "\x02\x64\x71", - [0x4dc2] = "\x0e\x59\x73", [0x4dc3] = "\x02\x64\x6f", - [0x4dc4] = "\x02\x64\x76", [0x4dc5] = "\x0e\x5b\x74", - [0x4dc6] = "\x02\x64\x6e", [0x4dc7] = "\x02\x64\x6d", - [0x4dc8] = "\x01\x78\x23", [0x4dc9] = "\x01\x78\x21", - [0x4dca] = "\x01\x77\x7e", [0x4dcb] = "\x0e\x59\x76", - [0x4dcc] = "\x0e\x59\x75", [0x4dcd] = "\x0e\x57\x43", - [0x4dd2] = "\x0e\x59\x71", [0x4dd3] = "\x02\x64\x74", - [0x4dd4] = "\x02\x68\x3c", [0x4dd5] = "\x02\x68\x42", - [0x4dd6] = "\x01\x79\x56", [0x4dd7] = "\x02\x68\x3d", - [0x4dd9] = "\x02\x68\x40", [0x4dda] = "\x02\x68\x44", - [0x4ddb] = "\x01\x79\x57", [0x4ddc] = "\x02\x68\x3f", - [0x4dde] = "\x02\x68\x37", [0x4ddf] = "\x0e\x5b\x75", - [0x4de0] = "\x02\x68\x36", [0x4de1] = "\x02\x68\x43", - [0x4de2] = "\x02\x68\x3a", [0x4de3] = "\x0e\x5b\x77", - [0x4de4] = "\x02\x68\x38", [0x4de5] = "\x02\x68\x41", - [0x4de6] = "\x02\x68\x39", [0x4de7] = "\x01\x79\x55", - [0x4de8] = "\x01\x79\x54", [0x4de9] = "\x0e\x5b\x79", - [0x4dea] = "\x02\x68\x34", [0x4deb] = "\x02\x68\x35", - [0x4dec] = "\x02\x68\x3e", [0x4dee] = "\x0e\x5b\x7a", - [0x4df0] = "\x02\x68\x3b", [0x4df6] = "\x0e\x5d\x6f", - [0x4df7] = "\x02\x6a\x7a", [0x4df8] = "\x02\x6a\x7d", - [0x4df9] = "\x0e\x5d\x71", [0x4dfb] = "\x0e\x5d\x67", - [0x4dfc] = "\x0e\x5d\x69", [0x4dfd] = "\x01\x78\x22", - [0x4dfe] = "\x0e\x5d\x6a", [0x4dff] = "\x0e\x5d\x74", - [0x4e00] = "\x0e\x5d\x75", [0x4e02] = "\x0e\x5d\x6e", - [0x4e04] = "\x0e\x5d\x68", [0x4e05] = "\x02\x6a\x7b", - [0x4e06] = "\x02\x6b\x23", [0x4e07] = "\x02\x6b\x21", - [0x4e08] = "\x02\x6a\x79", [0x4e09] = "\x02\x6b\x26", - [0x4e0a] = "\x0e\x5d\x66", [0x4e0b] = "\x02\x6a\x78", - [0x4e0c] = "\x0e\x5d\x76", [0x4e0d] = "\x01\x7a\x5a", - [0x4e0e] = "\x02\x6b\x22", [0x4e10] = "\x0e\x5d\x73", - [0x4e12] = "\x02\x6a\x7c", [0x4e13] = "\x01\x7a\x59", - [0x4e14] = "\x02\x6b\x25", [0x4e15] = "\x0e\x5d\x72", - [0x4e17] = "\x02\x6b\x24", [0x4e1b] = "\x0e\x5d\x70", - [0x4e1c] = "\x02\x6c\x77", [0x4e1d] = "\x02\x6c\x76", - [0x4e1f] = "\x0e\x5f\x2c", [0x4e21] = "\x02\x6c\x7d", - [0x4e23] = "\x02\x6c\x79", [0x4e24] = "\x02\x6c\x7c", - [0x4e25] = "\x01\x7b\x4c", [0x4e27] = "\x0e\x64\x2f", - [0x4e28] = "\x02\x6c\x7a", [0x4e29] = "\x02\x6c\x7b", - [0x4e2b] = "\x02\x6c\x75", [0x4e2c] = "\x02\x6c\x78", - [0x4e2d] = "\x01\x7b\x4b", [0x4e2e] = "\x0e\x5f\x2a", - [0x4e31] = "\x01\x7c\x2b", [0x4e32] = "\x02\x6e\x61", - [0x4e33] = "\x02\x6e\x5c", [0x4e34] = "\x02\x6e\x60", - [0x4e35] = "\x0e\x60\x25", [0x4e36] = "\x02\x6e\x63", - [0x4e37] = "\x02\x6e\x5f", [0x4e38] = "\x0e\x5f\x7e", - [0x4e39] = "\x02\x6e\x5b", [0x4e3a] = "\x0e\x60\x23", - [0x4e3b] = "\x01\x7c\x2d", [0x4e3c] = "\x02\x6e\x5e", - [0x4e3d] = "\x02\x6e\x62", [0x4e3e] = "\x01\x7c\x2c", - [0x4e3f] = "\x02\x6e\x59", [0x4e40] = "\x02\x6a\x7e", - [0x4e41] = "\x02\x6e\x5d", [0x4e44] = "\x02\x6e\x5a", - [0x4e45] = "\x0e\x60\x22", [0x4e46] = "\x02\x6e\x57", - [0x4e48] = "\x02\x6e\x58", [0x4e49] = "\x01\x7c\x2a", - [0x4e4a] = "\x02\x6f\x68", [0x4e4b] = "\x02\x6f\x6a", - [0x4e4c] = "\x02\x6f\x6d", [0x4e4d] = "\x02\x6f\x69", - [0x4e4e] = "\x02\x6f\x6e", [0x4e4f] = "\x0e\x60\x65", - [0x4e50] = "\x02\x6f\x67", [0x4e51] = "\x0e\x60\x66", - [0x4e52] = "\x02\x6f\x65", [0x4e53] = "\x0e\x60\x68", - [0x4e54] = "\x01\x7c\x57", [0x4e55] = "\x02\x6f\x6b", - [0x4e56] = "\x01\x7c\x59", [0x4e57] = "\x01\x7c\x58", - [0x4e58] = "\x02\x6f\x66", [0x4e59] = "\x02\x6f\x6c", - [0x4e5d] = "\x0e\x61\x32", [0x4e5e] = "\x02\x70\x68", - [0x4e5f] = "\x01\x7c\x78", [0x4e60] = "\x02\x70\x69", - [0x4e61] = "\x0e\x61\x33", [0x4e62] = "\x02\x70\x67", - [0x4e63] = "\x02\x70\x64", [0x4e65] = "\x0e\x61\x34", - [0x4e66] = "\x02\x70\x66", [0x4e67] = "\x02\x70\x65", - [0x4e68] = "\x02\x71\x49", [0x4e6c] = "\x0e\x61\x59", - [0x4e6d] = "\x02\x71\x4b", [0x4e6e] = "\x02\x71\x4a", - [0x4e6f] = "\x0e\x61\x5b", [0x4e71] = "\x02\x71\x69", - [0x4e73] = "\x02\x71\x68", [0x4e74] = "\x02\x71\x67", - [0x4e75] = "\x02\x71\x6a", [0x4e76] = "\x0e\x61\x75", - [0x4e77] = "\x01\x7d\x40", [0x4e78] = "\x01\x7d\x41", - [0x4e79] = "\x02\x72\x38", [0x4e7a] = "\x02\x72\x3c", - [0x4e7b] = "\x0e\x62\x41", [0x4ee5] = "\x01\x5e\x24", - [0x4ee6] = "\x02\x41\x54", [0x4ee7] = "\x02\x48\x73", - [0x4ee8] = "\x0e\x45\x64", [0x4ee9] = "\x01\x67\x6d", - [0x4eea] = "\x02\x48\x71", [0x4eeb] = "\x0e\x45\x66", - [0x4eec] = "\x0e\x2f\x42", [0x4eed] = "\x02\x48\x72", - [0x4eee] = "\x0e\x45\x68", [0x4eef] = "\x0e\x45\x67", - [0x4ef1] = "\x02\x4f\x4a", [0x4ef2] = "\x02\x4f\x4b", - [0x4ef3] = "\x01\x6b\x7a", [0x4ef4] = "\x01\x6b\x78", - [0x4ef5] = "\x02\x4f\x4c", [0x4ef6] = "\x01\x6b\x79", - [0x4ef7] = "\x02\x56\x33", [0x4ef8] = "\x0e\x50\x27", - [0x4ef9] = "\x02\x56\x36", [0x4efa] = "\x02\x56\x30", - [0x4efb] = "\x02\x56\x37", [0x4efc] = "\x02\x56\x2f", - [0x4efd] = "\x02\x56\x31", [0x4efe] = "\x0e\x50\x2a", - [0x4eff] = "\x02\x56\x32", [0x4f00] = "\x02\x56\x35", - [0x4f01] = "\x0e\x50\x24", [0x4f02] = "\x0e\x50\x2b", - [0x4f03] = "\x01\x70\x2a", [0x4f04] = "\x02\x56\x3a", - [0x4f05] = "\x02\x56\x39", [0x4f06] = "\x01\x70\x28", - [0x4f07] = "\x02\x56\x34", [0x4f08] = "\x02\x56\x38", - [0x4f09] = "\x01\x70\x29", [0x4f0a] = "\x0e\x54\x2d", - [0x4f0c] = "\x0e\x50\x25", [0x4f0d] = "\x0e\x50\x22", - [0x4f0f] = "\x0e\x54\x2a", [0x4f10] = "\x02\x5c\x38", - [0x4f12] = "\x01\x73\x3a", [0x4f13] = "\x0e\x54\x2c", - [0x4f14] = "\x02\x5c\x33", [0x4f15] = "\x01\x73\x36", - [0x4f16] = "\x0e\x54\x36", [0x4f17] = "\x02\x5c\x30", - [0x4f18] = "\x02\x5c\x36", [0x4f19] = "\x02\x5c\x39", - [0x4f1a] = "\x0e\x54\x33", [0x4f1b] = "\x01\x73\x3b", - [0x4f1d] = "\x02\x5c\x35", [0x4f1e] = "\x02\x5c\x32", - [0x4f1f] = "\x02\x5c\x3a", [0x4f20] = "\x02\x5c\x31", - [0x4f21] = "\x0e\x54\x37", [0x4f22] = "\x02\x5c\x37", - [0x4f23] = "\x01\x73\x37", [0x4f24] = "\x0e\x54\x29", - [0x4f25] = "\x02\x5c\x2f", [0x4f26] = "\x01\x73\x38", - [0x4f27] = "\x0e\x54\x35", [0x4f28] = "\x01\x73\x39", - [0x4f29] = "\x02\x5c\x34", [0x4f2a] = "\x0e\x54\x32", - [0x4f2d] = "\x02\x61\x35", [0x4f2e] = "\x02\x61\x28", - [0x4f2f] = "\x02\x61\x29", [0x4f30] = "\x02\x61\x2c", - [0x4f31] = "\x02\x61\x2a", [0x4f33] = "\x02\x61\x24", - [0x4f35] = "\x0e\x57\x4d", [0x4f36] = "\x02\x61\x27", - [0x4f37] = "\x02\x61\x31", [0x4f38] = "\x02\x61\x2b", - [0x4f39] = "\x0e\x57\x48", [0x4f3b] = "\x01\x76\x31", - [0x4f3d] = "\x02\x61\x33", [0x4f3e] = "\x02\x61\x30", - [0x4f3f] = "\x01\x76\x32", [0x4f40] = "\x02\x61\x32", - [0x4f41] = "\x02\x61\x25", [0x4f42] = "\x02\x61\x2e", - [0x4f43] = "\x02\x61\x2f", [0x4f44] = "\x0e\x57\x4a", - [0x4f45] = "\x02\x61\x2d", [0x4f49] = "\x0e\x66\x75", - [0x4f4a] = "\x02\x64\x7c", [0x4f4b] = "\x02\x64\x7e", - [0x4f4c] = "\x02\x65\x23", [0x4f4d] = "\x0e\x59\x79", - [0x4f4e] = "\x0e\x59\x7b", [0x4f4f] = "\x02\x64\x7b", - [0x4f50] = "\x0e\x59\x7d", [0x4f51] = "\x01\x78\x25", - [0x4f52] = "\x02\x65\x25", [0x4f53] = "\x02\x64\x7a", - [0x4f54] = "\x02\x65\x26", [0x4f55] = "\x0e\x59\x7e", - [0x4f56] = "\x02\x65\x22", [0x4f57] = "\x02\x65\x24", - [0x4f58] = "\x02\x65\x28", [0x4f59] = "\x02\x65\x21", - [0x4f5a] = "\x02\x65\x29", [0x4f5b] = "\x02\x64\x7d", - [0x4f5c] = "\x02\x64\x79", [0x4f5d] = "\x01\x78\x26", - [0x4f5e] = "\x0e\x5a\x22", [0x4f5f] = "\x02\x65\x27", - [0x4f60] = "\x01\x78\x27", [0x4f61] = "\x01\x79\x59", - [0x4f63] = "\x0e\x59\x7a", [0x4f66] = "\x0e\x5b\x7d", - [0x4f67] = "\x02\x61\x26", [0x4f68] = "\x02\x68\x5e", - [0x4f69] = "\x02\x68\x55", [0x4f6a] = "\x01\x79\x5b", - [0x4f6b] = "\x02\x68\x51", [0x4f6c] = "\x01\x79\x5c", - [0x4f6d] = "\x0e\x5c\x27", [0x4f6e] = "\x0e\x5c\x22", - [0x4f6f] = "\x02\x68\x5a", [0x4f70] = "\x02\x68\x54", - [0x4f71] = "\x02\x68\x4a", [0x4f72] = "\x01\x79\x5a", - [0x4f73] = "\x02\x68\x57", [0x4f74] = "\x02\x68\x52", - [0x4f75] = "\x02\x68\x53", [0x4f76] = "\x0e\x5c\x25", - [0x4f77] = "\x02\x68\x45", [0x4f78] = "\x02\x68\x4c", - [0x4f79] = "\x02\x68\x5b", [0x4f7a] = "\x0e\x5b\x7e", - [0x4f7b] = "\x02\x68\x58", [0x4f7d] = "\x02\x68\x50", - [0x4f7e] = "\x0e\x5c\x26", [0x4f7f] = "\x02\x68\x5c", - [0x4f80] = "\x02\x68\x4b", [0x4f81] = "\x02\x68\x46", - [0x4f82] = "\x02\x68\x59", [0x4f83] = "\x0e\x5c\x24", - [0x4f84] = "\x02\x68\x48", [0x4f85] = "\x02\x68\x56", - [0x4f86] = "\x02\x68\x4d", [0x4f87] = "\x02\x68\x5d", - [0x4f88] = "\x02\x68\x49", [0x4f89] = "\x01\x79\x58", - [0x4f8a] = "\x02\x68\x47", [0x4f8b] = "\x02\x68\x4e", - [0x4f8c] = "\x02\x68\x4f", [0x4f90] = "\x02\x6b\x2d", - [0x4f91] = "\x0e\x5c\x23", [0x4f92] = "\x02\x6b\x2b", - [0x4f94] = "\x02\x6b\x30", [0x4f95] = "\x0e\x5d\x79", - [0x4f96] = "\x02\x6b\x3c", [0x4f97] = "\x02\x6b\x33", - [0x4f98] = "\x02\x6b\x2c", [0x4f99] = "\x02\x6b\x28", - [0x4f9a] = "\x02\x6b\x35", [0x4f9b] = "\x02\x6b\x2e", - [0x4f9c] = "\x02\x6b\x31", [0x4f9d] = "\x02\x6b\x2a", - [0x4f9e] = "\x02\x6b\x38", [0x4f9f] = "\x02\x6b\x27", - [0x4fa0] = "\x02\x6b\x2f", [0x4fa1] = "\x02\x6b\x34", - [0x4fa2] = "\x02\x6b\x36", [0x4fa3] = "\x02\x6b\x39", - [0x4fa4] = "\x02\x6b\x29", [0x4fa5] = "\x0e\x5d\x7a", - [0x4fa6] = "\x02\x6b\x3d", [0x4fa7] = "\x02\x6b\x3e", - [0x4fa8] = "\x02\x6b\x37", [0x4fa9] = "\x02\x6b\x3b", - [0x4faa] = "\x02\x6b\x32", [0x4fac] = "\x02\x6d\x2f", - [0x4fad] = "\x02\x6d\x32", [0x4fae] = "\x0e\x5f\x35", - [0x4faf] = "\x01\x7b\x4d", [0x4fb0] = "\x0e\x5f\x31", - [0x4fb1] = "\x02\x6d\x31", [0x4fb2] = "\x02\x6d\x36", - [0x4fb3] = "\x02\x6d\x34", [0x4fb4] = "\x01\x7b\x4e", - [0x4fb5] = "\x02\x6d\x2b", [0x4fb6] = "\x02\x6d\x21", - [0x4fb7] = "\x02\x6c\x7e", [0x4fb8] = "\x01\x7b\x50", - [0x4fb9] = "\x02\x6d\x2d", [0x4fba] = "\x02\x6d\x2e", - [0x4fbb] = "\x02\x6d\x2a", [0x4fbc] = "\x02\x6d\x22", - [0x4fbd] = "\x0e\x5f\x32", [0x4fbe] = "\x02\x6d\x27", - [0x4fbf] = "\x02\x6b\x3a", [0x4fc1] = "\x02\x6d\x23", - [0x4fc2] = "\x01\x7b\x4f", [0x4fc3] = "\x02\x6d\x29", - [0x4fc4] = "\x0e\x5f\x36", [0x4fc5] = "\x02\x6d\x28", - [0x4fc7] = "\x02\x6d\x24", [0x4fc8] = "\x02\x6d\x30", - [0x4fca] = "\x02\x6d\x25", [0x4fcb] = "\x02\x6e\x68", - [0x4fcc] = "\x02\x6d\x33", [0x4fcd] = "\x02\x6d\x35", - [0x4fce] = "\x02\x6d\x2c", [0x4fcf] = "\x02\x6d\x26", - [0x4fd0] = "\x02\x6e\x69", [0x4fd1] = "\x02\x6e\x6b", - [0x4fd2] = "\x02\x6e\x65", [0x4fd3] = "\x01\x7c\x2e", - [0x4fd5] = "\x02\x6e\x72", [0x4fd6] = "\x02\x6e\x70", - [0x4fd7] = "\x01\x7c\x2f", [0x4fd8] = "\x02\x6e\x6f", - [0x4fd9] = "\x02\x6e\x6e", [0x4fda] = "\x02\x6e\x67", - [0x4fdb] = "\x02\x6e\x64", [0x4fdc] = "\x02\x6e\x6a", - [0x4fdd] = "\x02\x6e\x73", [0x4fde] = "\x02\x6e\x66", - [0x4fdf] = "\x02\x6e\x6c", [0x4fe1] = "\x02\x6f\x77", - [0x4fe2] = "\x02\x6f\x7c", [0x4fe3] = "\x02\x6f\x72", - [0x4fe4] = "\x02\x6f\x75", [0x4fe5] = "\x01\x7c\x5a", - [0x4fe6] = "\x02\x6f\x79", [0x4fe8] = "\x02\x70\x22", - [0x4fe9] = "\x02\x6e\x6d", [0x4feb] = "\x02\x6f\x73", - [0x4fec] = "\x02\x6f\x7d", [0x4fed] = "\x02\x70\x23", - [0x4fee] = "\x02\x6f\x78", [0x4fef] = "\x02\x6f\x71", - [0x4ff0] = "\x02\x6f\x7b", [0x4ff2] = "\x02\x6f\x7a", - [0x4ff3] = "\x02\x70\x21", [0x4ff4] = "\x02\x6f\x7e", - [0x4ff5] = "\x02\x6e\x71", [0x4ff6] = "\x02\x6f\x76", - [0x4ff7] = "\x02\x6f\x70", [0x4ff8] = "\x02\x6f\x74", - [0x4ff9] = "\x01\x7c\x79", [0x4ffa] = "\x01\x7c\x7a", - [0x4ffb] = "\x02\x6f\x6f", [0x4ffc] = "\x0e\x60\x6c", - [0x4ffd] = "\x02\x70\x74", [0x4ffe] = "\x02\x70\x6b", - [0x4fff] = "\x02\x70\x73", [0x5000] = "\x02\x70\x70", - [0x5001] = "\x02\x70\x71", [0x5002] = "\x02\x70\x6a", - [0x5003] = "\x02\x70\x6d", [0x5004] = "\x02\x70\x75", - [0x5005] = "\x02\x70\x6f", [0x5006] = "\x02\x70\x6e", - [0x5007] = "\x02\x70\x6c", [0x5008] = "\x0e\x61\x35", - [0x5009] = "\x02\x70\x72", [0x500b] = "\x02\x71\x4c", - [0x500d] = "\x02\x71\x4d", [0x500e] = "\x0e\x61\x5d", - [0x500f] = "\x02\x71\x4f", [0x5010] = "\x02\x71\x4e", - [0x5011] = "\x02\x71\x51", [0x5012] = "\x02\x71\x50", - [0x5013] = "\x02\x71\x6c", [0x5014] = "\x02\x71\x6b", - [0x5015] = "\x02\x72\x27", [0x5016] = "\x0e\x62\x29", - [0x5017] = "\x02\x72\x28", [0x5018] = "\x0e\x62\x30", - [0x5019] = "\x02\x72\x34", [0x501a] = "\x01\x7d\x45", - [0x501b] = "\x01\x7d\x49", [0x501c] = "\x0e\x62\x38", - [0x501d] = "\x02\x72\x3d", [0x501e] = "\x01\x7d\x4a", - [0x5075] = "\x01\x5e\x25", [0x5079] = "\x01\x7a\x5b", - [0x507a] = "\x02\x6d\x37", [0x507b] = "\x0e\x5f\x37", - [0x507c] = "\x01\x7c\x7b", [0x507d] = "\x01\x7c\x7c", - [0x507f] = "\x01\x5e\x26", [0x5080] = "\x02\x48\x74", - [0x5081] = "\x0e\x45\x69", [0x5082] = "\x01\x67\x6e", - [0x5083] = "\x02\x56\x3b", [0x5084] = "\x0e\x50\x2c", - [0x5085] = "\x0e\x54\x39", [0x5086] = "\x02\x5c\x3c", - [0x5087] = "\x02\x5c\x3d", [0x5088] = "\x02\x5c\x3b", - [0x5089] = "\x02\x61\x37", [0x508a] = "\x02\x61\x36", - [0x508b] = "\x01\x76\x33", [0x508c] = "\x02\x65\x2b", - [0x508d] = "\x02\x61\x38", [0x508e] = "\x02\x65\x2a", - [0x5090] = "\x0e\x5a\x24", [0x5091] = "\x02\x68\x60", - [0x5092] = "\x01\x79\x5d", [0x5093] = "\x01\x79\x5f", - [0x5094] = "\x02\x68\x5f", [0x5095] = "\x0e\x5c\x29", - [0x5097] = "\x01\x79\x5e", [0x5098] = "\x0e\x5e\x21", - [0x5099] = "\x02\x6b\x3f", [0x509a] = "\x02\x6b\x41", - [0x509b] = "\x02\x6b\x40", [0x509c] = "\x02\x6d\x38", - [0x509d] = "\x01\x7b\x51", [0x509e] = "\x0e\x5f\x3a", - [0x509f] = "\x01\x7c\x5b", [0x50a0] = "\x02\x70\x76", - [0x50a1] = "\x02\x71\x52", [0x50a2] = "\x0e\x62\x31", - [0x50a3] = "\x0e\x62\x3f", [0x50a4] = "\x02\x72\x41", - [0x50a5] = "\x01\x5e\x27", [0x50a6] = "\x0e\x25\x47", - [0x50a7] = "\x02\x4f\x4d", [0x50a9] = "\x01\x70\x2b", - [0x50aa] = "\x0e\x50\x2f", [0x50ab] = "\x0e\x50\x2e", - [0x50ac] = "\x0e\x54\x3a", [0x50ad] = "\x02\x5c\x3f", - [0x50ae] = "\x02\x5c\x3e", [0x50af] = "\x0e\x57\x50", - [0x50b0] = "\x02\x61\x39", [0x50b1] = "\x0e\x5a\x26", - [0x50b2] = "\x0e\x5a\x25", [0x50b4] = "\x01\x79\x60", - [0x50b5] = "\x01\x7a\x5c", [0x50b6] = "\x02\x6e\x74", - [0x50b7] = "\x02\x72\x39", [0x50bb] = "\x01\x5e\x28", - [0x50bc] = "\x01\x6b\x7b", [0x50bd] = "\x0e\x4b\x22", - [0x50be] = "\x01\x70\x2c", [0x50c0] = "\x02\x68\x61", - [0x50c1] = "\x0e\x5e\x22", [0x50c2] = "\x02\x70\x24", - [0x50c3] = "\x01\x63\x27", [0x50c4] = "\x0e\x39\x6a", - [0x50c5] = "\x0e\x54\x3c", [0x50c6] = "\x0e\x54\x3b", - [0x50c8] = "\x02\x61\x3a", [0x50ca] = "\x0e\x5a\x28", - [0x50cc] = "\x01\x7d\x31", [0x50cd] = "\x01\x63\x28", - [0x50ce] = "\x01\x70\x2d", [0x50cf] = "\x01\x76\x34", - [0x50d0] = "\x02\x70\x25", [0x50d1] = "\x01\x63\x29", - [0x50d2] = "\x0e\x39\x6b", [0x50d3] = "\x02\x56\x3c", - [0x50d4] = "\x01\x73\x3d", [0x50d5] = "\x02\x5c\x40", - [0x50d6] = "\x02\x5c\x41", [0x50d7] = "\x0e\x54\x3d", - [0x50d8] = "\x01\x73\x3c", [0x50da] = "\x02\x61\x3b", - [0x50db] = "\x01\x76\x38", [0x50dc] = "\x01\x76\x36", - [0x50dd] = "\x01\x76\x37", [0x50de] = "\x01\x76\x35", - [0x50df] = "\x02\x65\x2c", [0x50e0] = "\x01\x78\x28", - [0x50e3] = "\x0e\x5c\x2a", [0x50e4] = "\x02\x6b\x43", - [0x50e5] = "\x02\x6b\x42", [0x50e6] = "\x02\x6b\x45", - [0x50e7] = "\x02\x6b\x44", [0x50e8] = "\x01\x7a\x5d", - [0x50eb] = "\x02\x6d\x39", [0x50ed] = "\x02\x6d\x3b", - [0x50ee] = "\x02\x6d\x3a", [0x50ef] = "\x01\x7b\x52", - [0x50f0] = "\x02\x6e\x75", [0x50f1] = "\x0e\x60\x29", - [0x50f2] = "\x02\x70\x26", [0x50f3] = "\x02\x70\x27", - [0x50f4] = "\x01\x7c\x5c", [0x50f5] = "\x02\x71\x53", - [0x50f6] = "\x02\x71\x6d", [0x50f7] = "\x01\x7d\x42", - [0x50f9] = "\x02\x41\x55", [0x50fa] = "\x02\x5c\x42", - [0x50fb] = "\x02\x61\x3c", [0x50fc] = "\x02\x68\x62", - [0x50fd] = "\x02\x48\x75", [0x50fe] = "\x0e\x27\x72", - [0x50ff] = "\x02\x61\x3d", [0x5100] = "\x02\x65\x2e", - [0x5101] = "\x02\x65\x2d", [0x5102] = "\x0e\x5a\x29", - [0x5103] = "\x0e\x5c\x2d", [0x5104] = "\x0e\x5c\x2e", - [0x5105] = "\x0e\x5f\x3c", [0x5106] = "\x02\x70\x28", - [0x5107] = "\x01\x7c\x7d", [0x5108] = "\x0e\x61\x5f", - [0x5109] = "\x02\x71\x54", [0x510a] = "\x02\x71\x6e", - [0x510e] = "\x01\x67\x6f", [0x510f] = "\x02\x56\x3d", - [0x5110] = "\x02\x56\x3e", [0x5112] = "\x02\x5c\x43", - [0x5113] = "\x01\x67\x70", [0x5114] = "\x0e\x45\x6a", - [0x5115] = "\x01\x78\x29", [0x5116] = "\x02\x65\x2f", - [0x5117] = "\x0e\x5c\x30", [0x5118] = "\x02\x6d\x3d", - [0x5119] = "\x01\x7b\x53", [0x511a] = "\x02\x6d\x3e", - [0x511b] = "\x02\x6d\x3c", [0x511c] = "\x02\x70\x29", - [0x511d] = "\x0e\x61\x60", [0x511e] = "\x02\x70\x77", - [0x5120] = "\x01\x67\x71", [0x5122] = "\x02\x61\x40", - [0x5123] = "\x02\x61\x3f", [0x5124] = "\x02\x61\x3e", - [0x5125] = "\x02\x65\x30", [0x5126] = "\x0e\x5a\x2b", - [0x5127] = "\x0e\x5a\x2a", [0x5128] = "\x02\x65\x34", - [0x5129] = "\x02\x65\x33", [0x512a] = "\x02\x65\x32", - [0x512b] = "\x02\x65\x31", [0x512c] = "\x01\x78\x2a", - [0x512d] = "\x02\x68\x63", [0x512e] = "\x02\x6b\x47", - [0x512f] = "\x01\x7a\x5e", [0x5130] = "\x02\x6b\x46", - [0x5131] = "\x02\x6d\x3f", [0x5132] = "\x02\x6e\x78", - [0x5133] = "\x02\x6e\x77", [0x5134] = "\x01\x7c\x30", - [0x5135] = "\x02\x6e\x76", [0x5136] = "\x02\x70\x2c", - [0x5137] = "\x02\x70\x2b", [0x5138] = "\x02\x70\x2a", - [0x5139] = "\x0e\x60\x6d", [0x513b] = "\x01\x6b\x7c", - [0x513d] = "\x02\x5c\x44", [0x513e] = "\x01\x76\x39", - [0x5140] = "\x02\x68\x64", [0x5141] = "\x02\x68\x65", - [0x5142] = "\x02\x6e\x79", [0x5143] = "\x02\x70\x2d", - [0x5145] = "\x0e\x61\x3b", [0x5146] = "\x02\x70\x78", - [0x5147] = "\x02\x71\x55", [0x5148] = "\x02\x72\x29", - [0x5149] = "\x02\x72\x43", [0x514a] = "\x01\x6b\x7d", - [0x514b] = "\x01\x76\x3a", [0x514c] = "\x02\x65\x35", - [0x514d] = "\x02\x68\x66", [0x514e] = "\x02\x6d\x40", - [0x514f] = "\x02\x70\x2e", [0x5150] = "\x0e\x23\x70", - [0x5152] = "\x01\x70\x2f", [0x5153] = "\x0e\x54\x3e", - [0x5154] = "\x02\x61\x41", [0x5155] = "\x02\x65\x36", - [0x5156] = "\x02\x68\x67", [0x5157] = "\x02\x68\x68", - [0x5158] = "\x02\x68\x69", [0x5159] = "\x02\x6b\x4c", - [0x515a] = "\x0e\x5e\x24", [0x515b] = "\x02\x6b\x48", - [0x515c] = "\x01\x7b\x54", [0x515d] = "\x02\x6b\x4b", - [0x515e] = "\x02\x6b\x4a", [0x515f] = "\x01\x7a\x5f", - [0x5160] = "\x02\x6b\x49", [0x5161] = "\x01\x7a\x61", - [0x5163] = "\x01\x7a\x60", [0x5164] = "\x02\x6d\x42", - [0x5165] = "\x02\x6d\x41", [0x5166] = "\x01\x7b\x55", - [0x5167] = "\x01\x7b\x56", [0x5169] = "\x0e\x5f\x3e", - [0x516a] = "\x01\x7c\x32", [0x516b] = "\x02\x6e\x7a", - [0x516c] = "\x01\x7c\x31", [0x516e] = "\x02\x70\x31", - [0x516f] = "\x02\x70\x32", [0x5170] = "\x02\x70\x30", - [0x5171] = "\x02\x70\x2f", [0x5172] = "\x01\x7d\x21", - [0x5174] = "\x02\x70\x79", [0x5175] = "\x02\x70\x7a", - [0x5176] = "\x02\x70\x7b", [0x5177] = "\x01\x7c\x7e", - [0x5178] = "\x02\x71\x56", [0x5179] = "\x02\x71\x59", - [0x517a] = "\x02\x71\x58", [0x517b] = "\x02\x71\x57", - [0x517c] = "\x0e\x62\x33", [0x517e] = "\x02\x72\x42", - [0x518d] = "\x01\x73\x3e", [0x518e] = "\x0e\x57\x55", - [0x5190] = "\x01\x78\x32", [0x5191] = "\x02\x6b\x4d", - [0x5192] = "\x02\x6d\x43", [0x5193] = "\x0e\x60\x2b", - [0x5194] = "\x01\x7c\x33", [0x5195] = "\x02\x6e\x7b", - [0x5197] = "\x0e\x62\x42", [0x5198] = "\x02\x72\x44", - [0x519c] = "\x01\x73\x3f", [0x519d] = "\x0e\x5e\x47", - [0x51a0] = "\x02\x61\x42", [0x51a1] = "\x0e\x5f\x3f", - [0x51a2] = "\x02\x6e\x7c", [0x51a3] = "\x0e\x61\x61", - [0x51a4] = "\x02\x71\x6f", [0x51a5] = "\x0e\x61\x77", + [0x0000] = "\x05\x21\x25", [0x0002] = "\x0f\x21\x21", + [0x0003] = "\x06\x21\x2f", [0x0004] = "\x06\x21\x2d", + [0x0005] = "\x06\x21\x2e", [0x0007] = "\x06\x21\x42", + [0x0008] = "\x06\x21\x43", [0x0009] = "\x05\x21\x33", + [0x000b] = "\x03\x21\x44", [0x000f] = "\x0f\x21\x3e", + [0x0010] = "\x0f\x21\x3f", [0x0012] = "\x06\x22\x2b", + [0x0014] = "\x05\x21\x4d", [0x0018] = "\x06\x23\x40", + [0x0019] = "\x06\x23\x3e", [0x001a] = "\x06\x23\x3f", + [0x0020] = "\x06\x24\x67", [0x0021] = "\x06\x25\x5f", + [0x0022] = "\x05\x23\x2f", [0x0023] = "\x0f\x22\x74", + [0x0025] = "\x06\x25\x67", [0x0029] = "\x06\x25\x63", + [0x002c] = "\x06\x29\x37", [0x002d] = "\x06\x29\x3a", + [0x002e] = "\x06\x29\x38", [0x0035] = "\x0f\x29\x22", + [0x0036] = "\x0f\x29\x23", [0x003b] = "\x06\x2e\x66", + [0x0041] = "\x05\x30\x72", [0x0043] = "\x05\x33\x23", + [0x0046] = "\x0f\x39\x32", [0x0047] = "\x0f\x39\x33", + [0x0048] = "\x06\x47\x2d", [0x004b] = "\x0f\x3b\x73", + [0x004c] = "\x0f\x40\x35", [0x004d] = "\x0f\x40\x75", + [0x0052] = "\x0f\x47\x42", [0x0053] = "\x0f\x4d\x56", + [0x0055] = "\x07\x21\x21", [0x0056] = "\x0f\x59\x47", + [0x0057] = "\x04\x4f\x7c", [0x005b] = "\x0f\x5a\x3f", + [0x0061] = "\x06\x21\x2c", [0x0062] = "\x06\x21\x22", + [0x0064] = "\x06\x22\x5f", [0x0065] = "\x04\x21\x56", + [0x0066] = "\x06\x23\x41", [0x0067] = "\x06\x25\x60", + [0x0069] = "\x06\x29\x3b", [0x006b] = "\x05\x25\x21", + [0x006d] = "\x05\x27\x7a", [0x006e] = "\x06\x2e\x4a", + [0x006f] = "\x0f\x29\x50", [0x0070] = "\x06\x35\x25", + [0x0071] = "\x06\x35\x26", [0x0072] = "\x06\x45\x7d", + [0x0074] = "\x06\x46\x3f", [0x0076] = "\x0f\x46\x40", + [0x0077] = "\x05\x44\x7e", [0x007d] = "\x06\x21\x32", + [0x007e] = "\x05\x21\x2d", [0x007f] = "\x06\x22\x2d", + [0x0082] = "\x06\x23\x42", [0x0083] = "\x0f\x2d\x61", + [0x0084] = "\x06\x50\x50", [0x0085] = "\x0f\x53\x44", + [0x0086] = "\x04\x21\x21", [0x0087] = "\x05\x21\x26", + [0x0088] = "\x06\x21\x24", [0x008c] = "\x0f\x21\x22", + [0x008d] = "\x06\x21\x33", [0x008f] = "\x06\x21\x44", + [0x0092] = "\x0f\x21\x25", [0x0093] = "\x0f\x21\x26", + [0x0094] = "\x05\x21\x4e", [0x0095] = "\x06\x22\x30", + [0x0097] = "\x0f\x21\x45", [0x0098] = "\x06\x22\x4e", + [0x0099] = "\x06\x22\x2f", [0x009a] = "\x0f\x21\x40", + [0x009b] = "\x0f\x21\x41", [0x009c] = "\x06\x21\x45", + [0x009e] = "\x06\x22\x31", [0x00a0] = "\x06\x22\x2e", + [0x00a2] = "\x04\x22\x26", [0x00a3] = "\x04\x22\x25", + [0x00a4] = "\x05\x22\x24", [0x00a5] = "\x05\x22\x25", + [0x00a8] = "\x06\x23\x43", [0x00a9] = "\x06\x29\x3e", + [0x00ac] = "\x06\x24\x5d", [0x00ae] = "\x06\x25\x56", + [0x00af] = "\x06\x25\x61", [0x00b0] = "\x06\x25\x62", + [0x00b1] = "\x06\x2c\x43", [0x00b2] = "\x06\x29\x3c", + [0x00b3] = "\x06\x3a\x65", [0x00b4] = "\x0f\x29\x25", + [0x00b5] = "\x06\x2d\x2d", [0x00b6] = "\x06\x29\x3d", + [0x00b7] = "\x06\x2e\x4b", [0x00b9] = "\x05\x2b\x67", + [0x00ba] = "\x06\x35\x2a", [0x00bc] = "\x06\x35\x27", + [0x00bd] = "\x06\x39\x64", [0x00be] = "\x06\x35\x29", + [0x00bf] = "\x06\x3c\x7b", [0x00c2] = "\x06\x45\x7e", + [0x00c3] = "\x06\x46\x40", [0x00c4] = "\x06\x46\x41", + [0x00c6] = "\x05\x3d\x56", [0x00c9] = "\x05\x21\x23", + [0x00cb] = "\x05\x21\x22", [0x00cf] = "\x06\x21\x26", + [0x00d0] = "\x06\x21\x25", [0x00d1] = "\x05\x21\x21", + [0x00d2] = "\x05\x21\x2b", [0x00d4] = "\x0f\x21\x23", + [0x00d5] = "\x06\x21\x46", [0x00d6] = "\x05\x21\x34", + [0x00d8] = "\x0f\x21\x27", [0x00d9] = "\x0f\x21\x28", + [0x00de] = "\x06\x22\x33", [0x00df] = "\x06\x22\x32", + [0x00e0] = "\x06\x22\x2a", [0x00e1] = "\x05\x21\x4f", + [0x00e4] = "\x06\x23\x46", [0x00e5] = "\x06\x23\x44", + [0x00e6] = "\x0f\x21\x6e", [0x00e7] = "\x06\x23\x45", + [0x00ea] = "\x0f\x22\x75", [0x00ed] = "\x06\x29\x3f", + [0x00f0] = "\x06\x2d\x2c", [0x00f1] = "\x04\x26\x24", + [0x00f2] = "\x06\x2e\x4d", [0x00f3] = "\x06\x2e\x4e", + [0x00f4] = "\x0f\x25\x40", [0x00f6] = "\x06\x2e\x4c", + [0x00f8] = "\x06\x35\x2b", [0x00fb] = "\x0f\x2d\x60", + [0x00fc] = "\x06\x3c\x7e", [0x00fd] = "\x05\x30\x73", + [0x00fe] = "\x06\x3c\x7d", [0x0102] = "\x0f\x39\x34", + [0x0104] = "\x06\x50\x51", [0x0105] = "\x05\x44\x55", + [0x0106] = "\x0f\x46\x41", [0x0107] = "\x06\x5a\x63", + [0x0108] = "\x06\x5a\x62", [0x0109] = "\x07\x36\x73", + [0x010a] = "\x07\x46\x27", [0x010b] = "\x07\x4d\x3a", + [0x010c] = "\x05\x21\x24", [0x010d] = "\x05\x21\x27", + [0x010e] = "\x04\x21\x28", [0x010f] = "\x05\x21\x28", + [0x0111] = "\x05\x21\x2c", [0x0112] = "\x06\x21\x47", + [0x0113] = "\x06\x21\x48", [0x0114] = "\x06\x21\x49", + [0x0115] = "\x06\x23\x47", [0x0116] = "\x05\x23\x30", + [0x0117] = "\x06\x25\x64", [0x0119] = "\x06\x29\x40", + [0x011a] = "\x05\x30\x74", [0x011b] = "\x06\x46\x42", + [0x011d] = "\x07\x2c\x3c", [0x011e] = "\x06\x21\x27", + [0x011f] = "\x06\x21\x28", [0x0120] = "\x06\x21\x29", + [0x0121] = "\x06\x21\x4a", [0x0122] = "\x06\x25\x65", + [0x0123] = "\x06\x23\x48", [0x0124] = "\x06\x23\x49", + [0x0128] = "\x06\x25\x68", [0x012a] = "\x0f\x22\x76", + [0x012c] = "\x04\x25\x33", [0x012d] = "\x05\x25\x22", + [0x012e] = "\x04\x25\x32", [0x0130] = "\x06\x2e\x50", + [0x0131] = "\x05\x27\x7b", [0x0132] = "\x0f\x29\x27", + [0x0134] = "\x06\x30\x7c", [0x0135] = "\x06\x35\x2d", + [0x0137] = "\x06\x35\x2c", [0x0138] = "\x0f\x2d\x62", + [0x0139] = "\x06\x3d\x21", [0x0140] = "\x0f\x4d\x6e", + [0x0143] = "\x06\x23\x4a", [0x0144] = "\x0f\x21\x6f", + [0x0145] = "\x0f\x21\x70", [0x0147] = "\x0f\x22\x2b", + [0x0148] = "\x05\x23\x31", [0x0149] = "\x0f\x22\x77", + [0x014a] = "\x0f\x22\x78", [0x014b] = "\x0f\x22\x79", + [0x014c] = "\x05\x25\x23", [0x014f] = "\x06\x29\x41", + [0x0151] = "\x0f\x25\x43", [0x0153] = "\x06\x2e\x52", + [0x0154] = "\x06\x2e\x51", [0x0155] = "\x0f\x29\x28", + [0x0156] = "\x06\x35\x2f", [0x0157] = "\x05\x2c\x66", + [0x0158] = "\x04\x2b\x5f", [0x0159] = "\x06\x35\x30", + [0x015d] = "\x0f\x2d\x63", [0x015e] = "\x06\x35\x31", + [0x015f] = "\x06\x46\x43", [0x0160] = "\x06\x3d\x23", + [0x0161] = "\x06\x3d\x22", [0x0162] = "\x04\x30\x44", + [0x0163] = "\x05\x30\x75", [0x0164] = "\x0f\x32\x74", + [0x0165] = "\x0f\x32\x75", [0x0167] = "\x0f\x32\x72", + [0x0169] = "\x06\x46\x45", [0x016a] = "\x06\x46\x44", + [0x016b] = "\x06\x46\x46", [0x016c] = "\x04\x36\x2f", + [0x016d] = "\x0f\x39\x35", [0x016e] = "\x0f\x39\x36", + [0x016f] = "\x0f\x39\x37", [0x0170] = "\x06\x4c\x2d", + [0x0174] = "\x0f\x40\x36", [0x0175] = "\x0f\x40\x37", + [0x0176] = "\x0f\x40\x38", [0x017e] = "\x0f\x46\x42", + [0x0180] = "\x06\x50\x52", [0x0181] = "\x05\x4b\x71", + [0x0182] = "\x07\x21\x22", [0x0183] = "\x0f\x4d\x57", + [0x0184] = "\x0f\x4d\x58", [0x0185] = "\x0f\x4d\x59", + [0x0186] = "\x07\x26\x79", [0x0187] = "\x07\x21\x24", + [0x0189] = "\x07\x21\x23", [0x018a] = "\x07\x21\x46", + [0x018c] = "\x07\x2c\x3f", [0x018e] = "\x05\x53\x53", + [0x018f] = "\x07\x2c\x3e", [0x0192] = "\x07\x2c\x3d", + [0x019c] = "\x07\x46\x23", [0x019d] = "\x07\x46\x28", + [0x01a3] = "\x06\x21\x34", [0x01a4] = "\x06\x21\x35", + [0x01a5] = "\x0f\x21\x24", [0x01a6] = "\x06\x21\x4c", + [0x01a7] = "\x0f\x21\x29", [0x01a8] = "\x06\x21\x4b", + [0x01a9] = "\x03\x21\x6f", [0x01ac] = "\x0f\x21\x43", + [0x01ad] = "\x06\x22\x35", [0x01af] = "\x06\x22\x34", + [0x01b0] = "\x06\x22\x36", [0x01b2] = "\x04\x21\x58", + [0x01b4] = "\x04\x22\x2c", [0x01b5] = "\x04\x22\x2b", + [0x01b6] = "\x04\x22\x29", [0x01b7] = "\x06\x23\x4f", + [0x01b8] = "\x04\x22\x30", [0x01b9] = "\x06\x23\x50", + [0x01ba] = "\x05\x22\x27", [0x01bb] = "\x06\x23\x4d", + [0x01bc] = "\x06\x23\x4c", [0x01c2] = "\x04\x22\x2f", + [0x01c3] = "\x06\x23\x4b", [0x01c4] = "\x0f\x21\x73", + [0x01c5] = "\x0f\x21\x74", [0x01c6] = "\x0f\x21\x75", + [0x01c7] = "\x0f\x21\x76", [0x01c8] = "\x0f\x21\x77", + [0x01c9] = "\x0f\x21\x78", [0x01ca] = "\x0f\x21\x79", + [0x01cb] = "\x05\x22\x28", [0x01cf] = "\x06\x23\x51", + [0x01d0] = "\x05\x22\x26", [0x01d4] = "\x0f\x21\x7a", + [0x01d8] = "\x05\x23\x32", [0x01d9] = "\x06\x25\x6a", + [0x01da] = "\x04\x23\x3a", [0x01db] = "\x06\x25\x6b", + [0x01dc] = "\x06\x25\x74", [0x01dd] = "\x06\x25\x70", + [0x01de] = "\x06\x25\x6c", [0x01df] = "\x0f\x22\x7a", + [0x01e0] = "\x0f\x22\x7b", [0x01e1] = "\x0f\x22\x7c", + [0x01e2] = "\x0f\x22\x7d", [0x01e3] = "\x0f\x23\x21", + [0x01e4] = "\x0f\x23\x22", [0x01e5] = "\x0f\x23\x23", + [0x01e6] = "\x0f\x23\x25", [0x01e7] = "\x0f\x23\x28", + [0x01e8] = "\x0f\x23\x29", [0x01e9] = "\x0f\x23\x2a", + [0x01ea] = "\x0f\x23\x2b", [0x01eb] = "\x0f\x23\x2c", + [0x01f1] = "\x04\x23\x38", [0x01f2] = "\x06\x25\x6d", + [0x01f4] = "\x06\x25\x6f", [0x01f7] = "\x0f\x23\x26", + [0x01fe] = "\x06\x25\x6e", [0x01ff] = "\x06\x25\x69", + [0x0200] = "\x05\x23\x33", [0x0201] = "\x06\x25\x73", + [0x0203] = "\x06\x29\x43", [0x0204] = "\x06\x29\x45", + [0x0205] = "\x04\x25\x3a", [0x0206] = "\x05\x25\x28", + [0x0207] = "\x06\x29\x46", [0x0208] = "\x05\x25\x29", + [0x0209] = "\x03\x27\x4e", [0x020a] = "\x05\x25\x2a", + [0x020b] = "\x04\x25\x37", [0x020c] = "\x04\x25\x35", + [0x020d] = "\x06\x29\x4a", [0x020e] = "\x06\x29\x44", + [0x020f] = "\x06\x29\x4c", [0x0210] = "\x06\x29\x47", + [0x0211] = "\x06\x29\x4e", [0x0215] = "\x05\x25\x26", + [0x0216] = "\x06\x29\x42", [0x0217] = "\x0f\x25\x45", + [0x0218] = "\x0f\x25\x46", [0x0219] = "\x0f\x25\x48", + [0x021a] = "\x0f\x25\x49", [0x021b] = "\x0f\x25\x4b", + [0x021c] = "\x0f\x25\x4c", [0x021d] = "\x0f\x25\x4d", + [0x021e] = "\x0f\x25\x4e", [0x021f] = "\x0f\x25\x4f", + [0x0220] = "\x0f\x25\x50", [0x0221] = "\x0f\x25\x51", + [0x0222] = "\x06\x29\x4d", [0x0227] = "\x06\x29\x48", + [0x0228] = "\x06\x29\x49", [0x0229] = "\x06\x29\x4b", + [0x022a] = "\x05\x25\x24", [0x022c] = "\x05\x25\x27", + [0x022d] = "\x05\x27\x7c", [0x022e] = "\x06\x2e\x64", + [0x022f] = "\x06\x2e\x59", [0x0230] = "\x05\x2b\x72", + [0x0231] = "\x04\x28\x36", [0x0232] = "\x06\x2e\x63", + [0x0233] = "\x06\x2e\x57", [0x0234] = "\x06\x2e\x56", + [0x0235] = "\x05\x28\x23", [0x0236] = "\x04\x28\x3b", + [0x0237] = "\x06\x2e\x5d", [0x0238] = "\x05\x27\x7e", + [0x0239] = "\x05\x27\x7d", [0x023a] = "\x05\x28\x22", + [0x023b] = "\x06\x2e\x62", [0x023c] = "\x06\x2e\x55", + [0x023d] = "\x06\x2e\x54", [0x023e] = "\x06\x2e\x65", + [0x023f] = "\x06\x2e\x5c", [0x0244] = "\x0f\x29\x29", + [0x0245] = "\x0f\x29\x2a", [0x0246] = "\x0f\x29\x2b", + [0x0247] = "\x0f\x29\x2c", [0x0248] = "\x0f\x29\x2e", + [0x0249] = "\x0f\x29\x2f", [0x024a] = "\x0f\x29\x31", + [0x024b] = "\x0f\x29\x32", [0x024c] = "\x0f\x29\x33", + [0x024d] = "\x0f\x29\x34", [0x024e] = "\x0f\x29\x35", + [0x024f] = "\x0f\x29\x36", [0x0250] = "\x0f\x29\x37", + [0x0251] = "\x0f\x29\x38", [0x0252] = "\x06\x2e\x53", + [0x0254] = "\x06\x2e\x58", [0x0255] = "\x06\x2e\x5b", + [0x0256] = "\x06\x2e\x5e", [0x0258] = "\x06\x2e\x60", + [0x025b] = "\x0f\x25\x47", [0x0261] = "\x06\x2e\x5f", + [0x0262] = "\x05\x28\x24", [0x0263] = "\x04\x2b\x63", + [0x0264] = "\x05\x2b\x70", [0x0265] = "\x04\x2b\x67", + [0x0266] = "\x06\x35\x36", [0x0267] = "\x05\x2b\x6b", + [0x0268] = "\x06\x35\x35", [0x0269] = "\x05\x2b\x74", + [0x026a] = "\x04\x2b\x66", [0x026b] = "\x04\x2b\x68", + [0x026c] = "\x05\x2b\x6f", [0x026d] = "\x06\x35\x32", + [0x026e] = "\x05\x2b\x69", [0x0271] = "\x0f\x2d\x64", + [0x0272] = "\x0f\x2d\x6e", [0x0273] = "\x06\x35\x37", + [0x0276] = "\x05\x2b\x6e", [0x0277] = "\x0f\x2d\x66", + [0x0278] = "\x0f\x2d\x67", [0x0279] = "\x0f\x2d\x6a", + [0x027a] = "\x0f\x2d\x6b", [0x027b] = "\x0f\x2d\x6c", + [0x027c] = "\x0f\x2d\x6d", [0x027d] = "\x0f\x2d\x6f", + [0x027e] = "\x0f\x2d\x71", [0x027f] = "\x0f\x2d\x72", + [0x0280] = "\x0f\x2d\x73", [0x0281] = "\x0f\x2d\x74", + [0x0282] = "\x0f\x2d\x75", [0x0283] = "\x0f\x2d\x76", + [0x0284] = "\x0f\x2d\x78", [0x0285] = "\x0f\x2d\x79", + [0x0286] = "\x0f\x2d\x7a", [0x0287] = "\x0f\x2d\x7b", + [0x0288] = "\x0f\x2d\x7c", [0x028a] = "\x06\x35\x21", + [0x028b] = "\x06\x35\x3a", [0x028c] = "\x06\x35\x3b", + [0x0291] = "\x06\x35\x33", [0x0292] = "\x06\x35\x34", + [0x0294] = "\x05\x2b\x68", [0x0296] = "\x06\x35\x39", + [0x029e] = "\x0f\x2d\x77", [0x02a0] = "\x0f\x2d\x70", + [0x02a2] = "\x05\x2b\x6a", [0x02a3] = "\x05\x2b\x6d", + [0x02a4] = "\x05\x2b\x75", [0x02a5] = "\x05\x2b\x71", + [0x02a6] = "\x05\x2b\x73", [0x02a7] = "\x04\x2b\x60", + [0x02a8] = "\x06\x3d\x2b", [0x02a9] = "\x06\x3d\x2d", + [0x02aa] = "\x06\x3d\x2c", [0x02ab] = "\x04\x30\x49", + [0x02ac] = "\x04\x30\x48", [0x02ad] = "\x06\x3d\x30", + [0x02ae] = "\x06\x3d\x28", [0x02b0] = "\x05\x31\x21", + [0x02b1] = "\x06\x3d\x33", [0x02b2] = "\x05\x30\x77", + [0x02b3] = "\x06\x3d\x2e", [0x02b4] = "\x06\x3d\x27", + [0x02b5] = "\x05\x31\x22", [0x02b6] = "\x05\x30\x76", + [0x02b7] = "\x04\x30\x46", [0x02b8] = "\x06\x3d\x2a", + [0x02b9] = "\x06\x3d\x31", [0x02ba] = "\x06\x3d\x37", + [0x02bb] = "\x06\x3d\x32", [0x02be] = "\x06\x3d\x29", + [0x02c1] = "\x04\x30\x4b", [0x02c2] = "\x06\x3d\x34", + [0x02c3] = "\x0f\x2d\x69", [0x02c4] = "\x0f\x32\x77", + [0x02c5] = "\x0f\x32\x78", [0x02c6] = "\x0f\x32\x79", + [0x02c7] = "\x0f\x32\x7a", [0x02c8] = "\x0f\x32\x7b", + [0x02c9] = "\x0f\x32\x7c", [0x02ca] = "\x0f\x32\x7e", + [0x02cb] = "\x0f\x33\x21", [0x02cc] = "\x0f\x33\x23", + [0x02cd] = "\x0f\x33\x24", [0x02ce] = "\x0f\x33\x25", + [0x02cf] = "\x0f\x33\x26", [0x02d0] = "\x0f\x33\x27", + [0x02d1] = "\x06\x46\x37", [0x02d2] = "\x06\x3d\x38", + [0x02d3] = "\x06\x3e\x65", [0x02d4] = "\x06\x3d\x39", + [0x02d5] = "\x06\x3d\x2f", [0x02d6] = "\x05\x30\x7a", + [0x02db] = "\x06\x43\x63", [0x02dd] = "\x05\x30\x7d", + [0x02e1] = "\x05\x31\x23", [0x02e2] = "\x06\x3d\x24", + [0x02e3] = "\x06\x3d\x26", [0x02e5] = "\x0f\x32\x7d", + [0x02e7] = "\x05\x30\x79", [0x02e8] = "\x05\x30\x7e", + [0x02e9] = "\x05\x30\x78", [0x02ea] = "\x06\x3d\x25", + [0x02eb] = "\x06\x3d\x36", [0x02ec] = "\x05\x30\x7c", + [0x02ed] = "\x06\x46\x49", [0x02ee] = "\x06\x46\x4f", + [0x02ef] = "\x05\x36\x56", [0x02f0] = "\x05\x36\x51", + [0x02f1] = "\x06\x46\x4c", [0x02f2] = "\x05\x36\x4e", + [0x02f3] = "\x05\x36\x52", [0x02f4] = "\x05\x36\x63", + [0x02f5] = "\x05\x36\x53", [0x02f6] = "\x06\x46\x48", + [0x02f7] = "\x05\x36\x55", [0x02f8] = "\x05\x36\x50", + [0x02f9] = "\x06\x46\x56", [0x02fa] = "\x04\x36\x35", + [0x02fb] = "\x05\x36\x54", [0x02fc] = "\x06\x46\x52", + [0x02fd] = "\x06\x46\x50", [0x02fe] = "\x06\x46\x4b", + [0x02ff] = "\x06\x46\x4e", [0x0300] = "\x06\x46\x53", + [0x0307] = "\x0f\x32\x76", [0x0308] = "\x06\x46\x58", + [0x0309] = "\x05\x36\x4f", [0x030b] = "\x05\x36\x57", + [0x030c] = "\x06\x46\x47", [0x030d] = "\x0f\x39\x38", + [0x030e] = "\x0f\x39\x39", [0x030f] = "\x0f\x39\x3a", + [0x0310] = "\x0f\x39\x3b", [0x0311] = "\x0f\x39\x3c", + [0x0312] = "\x0f\x39\x3d", [0x0313] = "\x0f\x39\x3e", + [0x0314] = "\x0f\x39\x3f", [0x0317] = "\x06\x46\x4d", + [0x0318] = "\x04\x36\x3b", [0x031c] = "\x06\x46\x51", + [0x0320] = "\x06\x46\x54", [0x0321] = "\x05\x36\x4d", + [0x0329] = "\x06\x46\x4a", [0x032a] = "\x05\x34\x21", + [0x032b] = "\x06\x50\x5a", [0x032c] = "\x04\x42\x38", + [0x032d] = "\x05\x3d\x5a", [0x032e] = "\x05\x3d\x58", + [0x032f] = "\x06\x50\x53", [0x0330] = "\x05\x30\x7b", + [0x0331] = "\x05\x3d\x5e", [0x0332] = "\x05\x3d\x5c", + [0x0333] = "\x06\x50\x58", [0x0334] = "\x05\x3d\x5b", + [0x0335] = "\x06\x50\x5f", [0x0336] = "\x06\x50\x5d", + [0x0337] = "\x04\x3c\x2e", [0x0339] = "\x06\x50\x5c", + [0x033a] = "\x06\x50\x62", [0x033b] = "\x06\x50\x55", + [0x033c] = "\x04\x3c\x2f", [0x033e] = "\x05\x3d\x60", + [0x033f] = "\x06\x50\x54", [0x0340] = "\x05\x3d\x57", + [0x0344] = "\x06\x50\x57", [0x0348] = "\x06\x50\x5e", + [0x0349] = "\x0f\x40\x39", [0x034a] = "\x0f\x40\x3a", + [0x034b] = "\x0f\x40\x3b", [0x034c] = "\x0f\x40\x3c", + [0x034d] = "\x0f\x40\x3d", [0x034e] = "\x0f\x40\x3e", + [0x034f] = "\x0f\x40\x3f", [0x0350] = "\x0f\x40\x40", + [0x0351] = "\x0f\x40\x41", [0x0352] = "\x0f\x40\x42", + [0x0353] = "\x0f\x40\x43", [0x0354] = "\x0f\x40\x44", + [0x0355] = "\x0f\x40\x45", [0x0356] = "\x0f\x40\x46", + [0x0358] = "\x06\x50\x61", [0x035e] = "\x06\x56\x4e", + [0x035f] = "\x06\x50\x59", [0x0362] = "\x06\x50\x56", + [0x0367] = "\x06\x46\x57", [0x0368] = "\x05\x3d\x59", + [0x0369] = "\x05\x3d\x5d", [0x036a] = "\x05\x3d\x5f", + [0x036b] = "\x04\x3c\x2b", [0x036c] = "\x06\x50\x60", + [0x036e] = "\x06\x5a\x71", [0x036f] = "\x05\x3d\x61", + [0x0370] = "\x07\x21\x2e", [0x0371] = "\x04\x42\x34", + [0x0372] = "\x05\x44\x56", [0x0373] = "\x06\x5a\x64", + [0x0374] = "\x06\x5a\x69", [0x0375] = "\x05\x3d\x62", + [0x0376] = "\x06\x5a\x6b", [0x0377] = "\x04\x42\x39", + [0x0378] = "\x06\x5a\x74", [0x0379] = "\x04\x42\x31", + [0x037a] = "\x06\x5a\x75", [0x037b] = "\x06\x5a\x68", + [0x0382] = "\x06\x5a\x67", [0x0383] = "\x06\x5a\x76", + [0x0384] = "\x0f\x46\x43", [0x0385] = "\x0f\x46\x44", + [0x0386] = "\x0f\x46\x45", [0x0387] = "\x0f\x46\x46", + [0x0388] = "\x0f\x46\x47", [0x0389] = "\x0f\x46\x49", + [0x038a] = "\x0f\x46\x4a", [0x038b] = "\x0f\x46\x4b", + [0x038c] = "\x0f\x46\x4c", [0x038d] = "\x0f\x46\x4d", + [0x038e] = "\x0f\x46\x4e", [0x038f] = "\x0f\x46\x4f", + [0x0390] = "\x0f\x46\x51", [0x0391] = "\x0f\x46\x52", + [0x0392] = "\x0f\x46\x53", [0x0393] = "\x0f\x46\x54", + [0x0394] = "\x0f\x46\x56", [0x0395] = "\x0f\x46\x57", + [0x0396] = "\x0f\x46\x58", [0x0397] = "\x0f\x53\x45", + [0x0398] = "\x07\x26\x2d", [0x0399] = "\x05\x44\x58", + [0x039a] = "\x06\x5a\x77", [0x039b] = "\x06\x5e\x57", + [0x039e] = "\x06\x5a\x6d", [0x03a1] = "\x06\x5a\x6f", + [0x03a2] = "\x06\x5a\x65", [0x03a3] = "\x0f\x46\x50", + [0x03a7] = "\x0f\x46\x48", [0x03ac] = "\x0f\x46\x55", + [0x03ae] = "\x04\x42\x30", [0x03af] = "\x06\x5a\x66", + [0x03b0] = "\x06\x5a\x6a", [0x03b1] = "\x06\x5a\x6e", + [0x03b2] = "\x06\x5a\x70", [0x03b3] = "\x04\x42\x36", + [0x03b6] = "\x05\x3f\x46", [0x03b7] = "\x04\x48\x7e", + [0x03b8] = "\x04\x48\x7a", [0x03b9] = "\x06\x5a\x6c", + [0x03ba] = "\x07\x21\x2f", [0x03bb] = "\x07\x21\x31", + [0x03bc] = "\x07\x21\x29", [0x03bd] = "\x07\x21\x26", + [0x03be] = "\x07\x21\x25", [0x03bf] = "\x05\x4b\x77", + [0x03c0] = "\x04\x48\x7c", [0x03c1] = "\x07\x21\x2b", + [0x03c2] = "\x07\x21\x2c", [0x03c3] = "\x05\x4b\x73", + [0x03c4] = "\x07\x21\x2a", [0x03c7] = "\x05\x4b\x79", + [0x03c8] = "\x05\x4b\x78", [0x03ca] = "\x07\x21\x27", + [0x03cc] = "\x0f\x4d\x5a", [0x03cd] = "\x0f\x4d\x5b", + [0x03ce] = "\x0f\x4d\x5c", [0x03cf] = "\x0f\x4d\x5d", + [0x03d0] = "\x0f\x4d\x5e", [0x03d1] = "\x0f\x4d\x60", + [0x03d2] = "\x0f\x4d\x61", [0x03d4] = "\x07\x21\x28", + [0x03d6] = "\x05\x4b\x72", [0x03d7] = "\x07\x21\x2d", + [0x03da] = "\x0f\x4d\x62", [0x03e1] = "\x04\x49\x21", + [0x03e2] = "\x05\x4b\x75", [0x03e3] = "\x07\x21\x30", + [0x03e4] = "\x05\x4b\x74", [0x03e7] = "\x05\x4c\x45", + [0x03e8] = "\x05\x53\x54", [0x03e9] = "\x05\x53\x5a", + [0x03ea] = "\x07\x2c\x40", [0x03eb] = "\x04\x4f\x58", + [0x03ec] = "\x04\x4f\x5f", [0x03ed] = "\x05\x53\x58", + [0x03ee] = "\x04\x4f\x5c", [0x03ef] = "\x04\x4f\x5e", + [0x03f0] = "\x05\x53\x55", [0x03f4] = "\x05\x53\x56", + [0x03f6] = "\x0f\x53\x46", [0x03f7] = "\x0f\x53\x47", + [0x03f8] = "\x0f\x53\x48", [0x03fa] = "\x0f\x53\x49", + [0x03fb] = "\x0f\x53\x4a", [0x0400] = "\x05\x53\x5b", + [0x0406] = "\x05\x53\x57", [0x0408] = "\x07\x36\x78", + [0x0409] = "\x05\x4b\x76", [0x040a] = "\x05\x5a\x6f", + [0x040b] = "\x05\x5a\x70", [0x040c] = "\x04\x55\x67", + [0x040d] = "\x04\x55\x66", [0x040e] = "\x07\x36\x76", + [0x0412] = "\x0f\x59\x48", [0x0415] = "\x0f\x59\x4a", + [0x0416] = "\x0f\x59\x4b", [0x0417] = "\x0f\x59\x4c", + [0x0418] = "\x0f\x59\x4e", [0x041a] = "\x07\x36\x75", + [0x041b] = "\x07\x36\x77", [0x041f] = "\x0f\x59\x49", + [0x0421] = "\x04\x55\x68", [0x0422] = "\x07\x36\x74", + [0x0423] = "\x07\x3e\x76", [0x0424] = "\x04\x5a\x6b", + [0x0425] = "\x04\x5a\x69", [0x0426] = "\x04\x5a\x6a", + [0x0427] = "\x07\x3e\x78", [0x0428] = "\x07\x3e\x77", + [0x042a] = "\x0f\x5e\x30", [0x042b] = "\x0f\x5e\x31", + [0x042e] = "\x0f\x5e\x2c", [0x042f] = "\x0f\x5e\x2e", + [0x0430] = "\x0f\x5e\x2f", [0x0431] = "\x07\x3e\x75", + [0x0432] = "\x05\x61\x31", [0x0433] = "\x04\x5a\x6c", + [0x0435] = "\x05\x61\x2f", [0x0436] = "\x05\x61\x30", + [0x043a] = "\x05\x61\x32", [0x043b] = "\x05\x67\x4a", + [0x043c] = "\x05\x67\x4e", [0x043d] = "\x04\x63\x2e", + [0x043e] = "\x05\x67\x4d", [0x043f] = "\x05\x67\x4f", + [0x0440] = "\x0f\x61\x7e", [0x0441] = "\x0f\x62\x21", + [0x0442] = "\x07\x47\x6f", [0x0444] = "\x05\x67\x4c", + [0x0445] = "\x05\x67\x4b", [0x044c] = "\x05\x69\x7c", + [0x044d] = "\x07\x52\x75", [0x044e] = "\x07\x4d\x3c", + [0x044f] = "\x0f\x64\x7a", [0x0451] = "\x05\x6b\x6b", + [0x0452] = "\x07\x4d\x3b", [0x0453] = "\x07\x4d\x68", + [0x0457] = "\x04\x66\x2f", [0x0458] = "\x04\x66\x2e", + [0x0459] = "\x05\x6f\x68", [0x045a] = "\x07\x57\x4e", + [0x045b] = "\x05\x6b\x6c", [0x045c] = "\x0f\x67\x3f", + [0x045d] = "\x0f\x67\x7e", [0x045f] = "\x04\x66\x2d", + [0x0464] = "\x07\x57\x4d", [0x0466] = "\x0f\x69\x38", + [0x0467] = "\x0f\x69\x3a", [0x0468] = "\x0f\x69\x39", + [0x0469] = "\x05\x73\x31", [0x046a] = "\x04\x6a\x40", + [0x046b] = "\x07\x5b\x45", [0x046d] = "\x0f\x6a\x4b", + [0x046e] = "\x0f\x6b\x41", [0x046f] = "\x05\x75\x62", + [0x0472] = "\x04\x6d\x52", [0x0473] = "\x0f\x6c\x49", + [0x0476] = "\x06\x21\x4d", [0x0477] = "\x04\x21\x5c", + [0x0479] = "\x04\x22\x32", [0x047a] = "\x06\x23\x53", + [0x047b] = "\x06\x23\x54", [0x047d] = "\x06\x25\x75", + [0x047e] = "\x06\x25\x77", [0x047f] = "\x06\x25\x78", + [0x0480] = "\x05\x23\x35", [0x0481] = "\x06\x25\x76", + [0x0483] = "\x06\x29\x51", [0x0484] = "\x06\x29\x50", + [0x0485] = "\x06\x29\x4f", [0x0486] = "\x06\x29\x53", + [0x0488] = "\x0f\x25\x53", [0x048a] = "\x06\x29\x52", + [0x048b] = "\x0f\x25\x52", [0x048c] = "\x06\x2e\x67", + [0x048d] = "\x06\x2e\x68", [0x0490] = "\x05\x2b\x76", + [0x0493] = "\x0f\x2d\x7d", [0x0494] = "\x0f\x2d\x7e", + [0x0495] = "\x0f\x2e\x21", [0x0496] = "\x06\x35\x3c", + [0x0497] = "\x0f\x33\x28", [0x0498] = "\x05\x31\x24", + [0x0499] = "\x05\x31\x25", [0x049a] = "\x0f\x33\x29", + [0x049b] = "\x0f\x33\x2a", [0x049e] = "\x06\x46\x59", + [0x049f] = "\x0f\x39\x40", [0x04a0] = "\x0f\x39\x41", + [0x04a1] = "\x0f\x39\x42", [0x04a2] = "\x05\x36\x58", + [0x04a3] = "\x0f\x39\x43", [0x04a4] = "\x0f\x40\x47", + [0x04a8] = "\x06\x50\x63", [0x04a9] = "\x0f\x40\x48", + [0x04aa] = "\x0f\x46\x59", [0x04ab] = "\x0f\x46\x5a", + [0x04ad] = "\x05\x44\x59", [0x04b0] = "\x07\x21\x34", + [0x04b1] = "\x07\x21\x32", [0x04b2] = "\x05\x4b\x7b", + [0x04b3] = "\x0f\x4d\x63", [0x04b4] = "\x0f\x4d\x64", + [0x04b5] = "\x05\x4b\x7a", [0x04b6] = "\x07\x21\x33", + [0x04b8] = "\x05\x53\x5c", [0x04b9] = "\x07\x2c\x41", + [0x04ba] = "\x0f\x53\x4b", [0x04bb] = "\x0f\x53\x4c", + [0x04bc] = "\x0f\x53\x4d", [0x04bd] = "\x0f\x53\x4e", + [0x04bf] = "\x05\x5a\x71", [0x04c2] = "\x0f\x59\x4f", + [0x04c3] = "\x0f\x59\x50", [0x04c4] = "\x0f\x59\x51", + [0x04c6] = "\x07\x3e\x79", [0x04c8] = "\x05\x61\x33", + [0x04c9] = "\x0f\x5e\x32", [0x04cb] = "\x07\x46\x29", + [0x04cc] = "\x05\x67\x50", [0x04cd] = "\x0f\x64\x7b", + [0x04ce] = "\x05\x67\x51", [0x04cf] = "\x05\x6b\x6d", + [0x04d2] = "\x0f\x67\x41", [0x04d3] = "\x0f\x69\x3b", + [0x04d5] = "\x0f\x6a\x4c", [0x04d7] = "\x05\x77\x53", + [0x04d8] = "\x0f\x6b\x42", [0x04db] = "\x06\x21\x36", + [0x04dc] = "\x05\x21\x36", [0x04dd] = "\x05\x21\x35", + [0x04df] = "\x06\x22\x37", [0x04e0] = "\x06\x23\x56", + [0x04e1] = "\x06\x23\x55", [0x04e4] = "\x05\x23\x36", + [0x04e5] = "\x06\x25\x79", [0x04e7] = "\x05\x23\x38", + [0x04ea] = "\x05\x28\x25", [0x04eb] = "\x05\x28\x26", + [0x04ed] = "\x04\x2b\x6a", [0x04ee] = "\x06\x35\x3d", + [0x04ef] = "\x0f\x2e\x22", [0x04f0] = "\x0f\x2e\x23", + [0x04f1] = "\x06\x3d\x3a", [0x04f3] = "\x06\x46\x5a", + [0x04f4] = "\x06\x50\x64", [0x04f6] = "\x05\x3d\x63", + [0x04f7] = "\x04\x3c\x31", [0x04f8] = "\x06\x5a\x78", + [0x04fd] = "\x05\x5a\x72", [0x0500] = "\x06\x21\x37", + [0x0501] = "\x06\x21\x4e", [0x0502] = "\x05\x21\x37", + [0x0503] = "\x06\x21\x41", [0x0504] = "\x06\x21\x59", + [0x0506] = "\x05\x21\x50", [0x0507] = "\x06\x23\x3b", + [0x0508] = "\x04\x22\x35", [0x0509] = "\x06\x23\x57", + [0x050a] = "\x06\x25\x7c", [0x050b] = "\x06\x25\x7e", + [0x050c] = "\x05\x23\x39", [0x050e] = "\x0f\x23\x2d", + [0x050f] = "\x06\x25\x7a", [0x0510] = "\x06\x29\x54", + [0x0512] = "\x06\x2e\x6b", [0x0513] = "\x06\x2e\x69", + [0x0515] = "\x05\x28\x27", [0x0516] = "\x06\x2e\x6a", + [0x0517] = "\x06\x2e\x4f", [0x0518] = "\x06\x30\x7b", + [0x0519] = "\x06\x35\x40", [0x051a] = "\x06\x35\x3f", + [0x051b] = "\x06\x35\x41", [0x051c] = "\x06\x35\x3e", + [0x051d] = "\x06\x3d\x3b", [0x051f] = "\x06\x46\x5d", + [0x0520] = "\x05\x3d\x64", [0x0521] = "\x0f\x39\x44", + [0x0522] = "\x0f\x39\x45", [0x0525] = "\x06\x46\x5b", + [0x0527] = "\x06\x46\x5c", [0x0528] = "\x05\x3d\x65", + [0x0529] = "\x06\x50\x65", [0x052a] = "\x0f\x40\x49", + [0x052b] = "\x0f\x40\x4a", [0x052f] = "\x04\x42\x3a", + [0x0531] = "\x06\x5a\x79", [0x0533] = "\x0f\x54\x46", + [0x0534] = "\x0f\x53\x4f", [0x0535] = "\x0f\x53\x50", + [0x0536] = "\x05\x61\x34", [0x0537] = "\x0f\x5e\x33", + [0x0538] = "\x07\x46\x2a", [0x0539] = "\x07\x46\x2b", + [0x053c] = "\x04\x21\x2d", [0x053d] = "\x06\x21\x4f", + [0x053e] = "\x06\x21\x51", [0x0541] = "\x06\x22\x39", + [0x0542] = "\x04\x21\x5d", [0x0543] = "\x06\x22\x38", + [0x0544] = "\x05\x21\x52", [0x0546] = "\x0f\x21\x46", + [0x0548] = "\x06\x22\x3a", [0x054a] = "\x05\x21\x51", + [0x054b] = "\x06\x23\x5a", [0x054d] = "\x06\x23\x58", + [0x054e] = "\x06\x25\x47", [0x0550] = "\x06\x26\x23", + [0x0551] = "\x06\x26\x21", [0x0552] = "\x06\x26\x22", + [0x0553] = "\x05\x23\x3a", [0x0554] = "\x06\x28\x7a", + [0x0556] = "\x05\x25\x2c", [0x0558] = "\x06\x29\x55", + [0x055a] = "\x06\x29\x56", [0x055b] = "\x06\x2e\x6c", + [0x055d] = "\x06\x35\x42", [0x055e] = "\x06\x35\x43", + [0x055f] = "\x05\x2b\x77", [0x0560] = "\x05\x2b\x78", + [0x0562] = "\x06\x3d\x3d", [0x0563] = "\x06\x46\x5f", + [0x0564] = "\x03\x39\x77", [0x0565] = "\x06\x46\x5e", + [0x0566] = "\x04\x3c\x33", [0x0567] = "\x05\x3d\x66", + [0x0568] = "\x06\x5a\x7b", [0x0569] = "\x06\x5a\x7a", + [0x056c] = "\x07\x21\x35", [0x056d] = "\x05\x53\x5d", + [0x056e] = "\x07\x2c\x42", [0x056f] = "\x0f\x55\x76", + [0x0570] = "\x04\x5a\x6d", [0x0571] = "\x0f\x67\x42", + [0x0572] = "\x07\x57\x4f", [0x0573] = "\x05\x21\x38", + [0x0575] = "\x06\x22\x3b", [0x0576] = "\x0f\x21\x48", + [0x0577] = "\x0f\x21\x49", [0x0579] = "\x06\x23\x5b", + [0x057a] = "\x04\x22\x37", [0x057b] = "\x05\x22\x29", + [0x057d] = "\x0f\x21\x7b", [0x0580] = "\x0f\x23\x2e", + [0x0581] = "\x0f\x23\x2f", [0x0584] = "\x05\x25\x2d", + [0x0585] = "\x0f\x25\x55", [0x058a] = "\x06\x2e\x6d", + [0x058c] = "\x06\x3d\x3e", [0x058d] = "\x0f\x2e\x25", + [0x058f] = "\x0f\x2e\x26", [0x0590] = "\x0f\x2e\x27", + [0x0591] = "\x0f\x2e\x28", [0x0592] = "\x0f\x2e\x29", + [0x0593] = "\x05\x31\x27", [0x0594] = "\x06\x46\x60", + [0x0595] = "\x0f\x39\x47", [0x0596] = "\x0f\x39\x48", + [0x0597] = "\x06\x46\x61", [0x0599] = "\x0f\x3a\x5d", + [0x059a] = "\x06\x50\x66", [0x059c] = "\x06\x5a\x7c", + [0x059e] = "\x0f\x46\x5b", [0x059f] = "\x05\x4e\x77", + [0x05a0] = "\x07\x2c\x43", [0x05a1] = "\x0f\x59\x52", + [0x05a2] = "\x0f\x53\x51", [0x05a3] = "\x07\x3e\x7a", + [0x05a6] = "\x07\x46\x2c", [0x05a7] = "\x07\x4d\x3f", + [0x05a9] = "\x05\x6f\x69", [0x05ab] = "\x05\x75\x63", + [0x05ae] = "\x0f\x21\x4a", [0x05b1] = "\x06\x23\x5c", + [0x05b2] = "\x0f\x21\x7d", [0x05b4] = "\x0f\x21\x7e", + [0x05b6] = "\x04\x22\x38", [0x05b7] = "\x05\x23\x3b", + [0x05b8] = "\x06\x26\x24", [0x05b9] = "\x04\x23\x3c", + [0x05ba] = "\x0f\x23\x30", [0x05bb] = "\x0f\x23\x31", + [0x05bc] = "\x0f\x23\x32", [0x05bd] = "\x0f\x23\x33", + [0x05c0] = "\x0f\x23\x24", [0x05c1] = "\x0f\x22\x7e", + [0x05c2] = "\x04\x25\x41", [0x05c3] = "\x04\x25\x42", + [0x05c4] = "\x06\x29\x58", [0x05c5] = "\x06\x29\x59", + [0x05c6] = "\x05\x25\x2f", [0x05c7] = "\x0f\x25\x57", + [0x05c8] = "\x05\x28\x29", [0x05c9] = "\x04\x28\x41", + [0x05ca] = "\x04\x28\x42", [0x05cb] = "\x05\x28\x2c", + [0x05cc] = "\x05\x28\x28", [0x05cd] = "\x05\x28\x2a", + [0x05ce] = "\x06\x2e\x6f", [0x05d1] = "\x0f\x29\x3a", + [0x05d2] = "\x0f\x29\x3c", [0x05d3] = "\x0f\x29\x3d", + [0x05d4] = "\x0f\x29\x3e", [0x05d5] = "\x0f\x29\x3f", + [0x05d7] = "\x06\x2e\x6e", [0x05d8] = "\x05\x2b\x7a", + [0x05d9] = "\x04\x2b\x6b", [0x05da] = "\x05\x2b\x79", + [0x05db] = "\x05\x28\x2b", [0x05dc] = "\x06\x35\x45", + [0x05dd] = "\x05\x2b\x7b", [0x05de] = "\x0f\x2e\x2a", + [0x05e1] = "\x0f\x2e\x2b", [0x05e2] = "\x06\x35\x46", + [0x05e5] = "\x05\x31\x28", [0x05e6] = "\x06\x3d\x3f", + [0x05e7] = "\x06\x3d\x40", [0x05e8] = "\x04\x30\x4e", + [0x05ea] = "\x0f\x33\x2b", [0x05ec] = "\x0f\x33\x2c", + [0x05ed] = "\x0f\x33\x2d", [0x05ee] = "\x0f\x33\x2f", + [0x05ef] = "\x0f\x33\x30", [0x05f1] = "\x06\x46\x62", + [0x05f2] = "\x05\x36\x5c", [0x05f3] = "\x05\x36\x5a", + [0x05f4] = "\x05\x36\x5b", [0x05f5] = "\x05\x36\x59", + [0x05f6] = "\x04\x36\x3e", [0x05f7] = "\x0f\x33\x2e", + [0x05fa] = "\x05\x3d\x6c", [0x05fb] = "\x05\x3d\x67", + [0x05fc] = "\x05\x3d\x69", [0x05fd] = "\x05\x3d\x6a", + [0x05fe] = "\x05\x3d\x68", [0x05ff] = "\x05\x3d\x6b", + [0x0600] = "\x06\x50\x67", [0x0604] = "\x06\x5a\x7d", + [0x0605] = "\x05\x4c\x21", [0x0606] = "\x05\x44\x5a", + [0x0607] = "\x07\x21\x37", [0x0608] = "\x0f\x46\x5d", + [0x0609] = "\x0f\x46\x5e", [0x060a] = "\x05\x4b\x7e", + [0x060b] = "\x05\x4b\x7d", [0x060c] = "\x05\x4b\x7c", + [0x060d] = "\x07\x21\x36", [0x060e] = "\x0f\x4d\x67", + [0x0611] = "\x0f\x53\x53", [0x0612] = "\x07\x2c\x45", + [0x0613] = "\x0f\x4d\x66", [0x0614] = "\x0f\x53\x52", + [0x0616] = "\x04\x55\x6a", [0x0617] = "\x07\x2c\x46", + [0x0618] = "\x05\x5a\x73", [0x061b] = "\x0f\x59\x53", + [0x061c] = "\x0f\x59\x54", [0x061d] = "\x05\x61\x36", + [0x061e] = "\x05\x61\x35", [0x061f] = "\x05\x61\x37", + [0x0620] = "\x0f\x5e\x34", [0x0621] = "\x07\x3e\x7b", + [0x0622] = "\x05\x67\x52", [0x0623] = "\x05\x67\x53", + [0x0624] = "\x07\x52\x76", [0x0625] = "\x05\x73\x32", + [0x0627] = "\x04\x21\x29", [0x0629] = "\x06\x21\x52", + [0x062b] = "\x0f\x21\x2a", [0x062c] = "\x0f\x21\x2b", + [0x062d] = "\x0f\x21\x2c", [0x062e] = "\x0f\x21\x2e", + [0x062f] = "\x06\x21\x5c", [0x0630] = "\x0f\x21\x2d", + [0x0631] = "\x05\x21\x53", [0x0632] = "\x06\x22\x3d", + [0x0633] = "\x04\x21\x5f", [0x0635] = "\x06\x23\x5e", + [0x0636] = "\x06\x23\x5d", [0x0637] = "\x06\x23\x5f", + [0x0638] = "\x06\x23\x60", [0x063a] = "\x0f\x21\x4b", + [0x063c] = "\x06\x26\x27", [0x063d] = "\x06\x26\x25", + [0x063e] = "\x06\x26\x26", [0x063f] = "\x0f\x23\x34", + [0x0640] = "\x0f\x23\x35", [0x0646] = "\x04\x25\x46", + [0x0647] = "\x06\x29\x5a", [0x0648] = "\x04\x25\x44", + [0x0649] = "\x06\x29\x5b", [0x064a] = "\x06\x29\x5c", + [0x064b] = "\x06\x29\x5d", [0x064c] = "\x0f\x25\x58", + [0x064d] = "\x0f\x25\x59", [0x064f] = "\x06\x2e\x72", + [0x0650] = "\x06\x2e\x70", [0x0651] = "\x06\x2e\x71", + [0x0652] = "\x06\x35\x47", [0x0653] = "\x0f\x2e\x2c", + [0x0657] = "\x06\x37\x27", [0x0658] = "\x06\x3d\x42", + [0x0659] = "\x06\x3d\x43", [0x065a] = "\x06\x3d\x41", + [0x065b] = "\x0f\x33\x31", [0x065c] = "\x0f\x33\x32", + [0x065d] = "\x0f\x33\x33", [0x065f] = "\x06\x46\x63", + [0x0660] = "\x06\x46\x66", [0x0661] = "\x0f\x39\x49", + [0x0662] = "\x06\x46\x64", [0x0667] = "\x0f\x39\x4a", + [0x0668] = "\x0f\x46\x5f", [0x0669] = "\x0f\x46\x60", + [0x066a] = "\x0f\x46\x61", [0x066b] = "\x0f\x4d\x68", + [0x066d] = "\x07\x2c\x47", [0x066e] = "\x0f\x53\x54", + [0x066f] = "\x0f\x53\x55", [0x0670] = "\x0f\x53\x43", + [0x0671] = "\x0f\x59\x55", [0x0672] = "\x0f\x5e\x35", + [0x0673] = "\x0f\x67\x43", [0x0675] = "\x04\x21\x2e", + [0x0676] = "\x05\x21\x39", [0x0677] = "\x06\x21\x53", + [0x0678] = "\x06\x21\x54", [0x0679] = "\x06\x22\x3f", + [0x067a] = "\x05\x21\x54", [0x067b] = "\x06\x22\x3e", + [0x067d] = "\x0f\x21\x4c", [0x067e] = "\x06\x23\x65", + [0x067f] = "\x06\x23\x61", [0x0680] = "\x06\x23\x62", + [0x0681] = "\x06\x23\x63", [0x0682] = "\x0f\x22\x21", + [0x0686] = "\x05\x22\x2a", [0x0687] = "\x06\x26\x28", + [0x0688] = "\x0f\x23\x36", [0x068b] = "\x06\x29\x60", + [0x068d] = "\x06\x29\x5f", [0x068e] = "\x06\x2e\x73", + [0x068f] = "\x06\x2e\x74", [0x0691] = "\x06\x34\x7a", + [0x0692] = "\x06\x35\x48", [0x0696] = "\x06\x3d\x44", + [0x0697] = "\x06\x3d\x45", [0x0698] = "\x05\x36\x5d", + [0x0699] = "\x06\x5a\x7e", [0x069a] = "\x0f\x46\x62", + [0x069b] = "\x07\x21\x70", [0x069d] = "\x07\x36\x7b", + [0x069e] = "\x05\x5a\x76", [0x069f] = "\x05\x67\x54", + [0x06a1] = "\x07\x4e\x3e", [0x06a3] = "\x06\x21\x39", + [0x06a5] = "\x04\x21\x40", [0x06a6] = "\x06\x21\x55", + [0x06a7] = "\x05\x21\x3a", [0x06a8] = "\x05\x21\x3b", + [0x06a9] = "\x06\x21\x56", [0x06aa] = "\x04\x21\x41", + [0x06ab] = "\x0f\x21\x2f", [0x06ac] = "\x06\x21\x57", + [0x06ad] = "\x05\x21\x55", [0x06ae] = "\x05\x21\x56", + [0x06af] = "\x04\x21\x62", [0x06b0] = "\x06\x22\x44", + [0x06b1] = "\x05\x21\x57", [0x06b2] = "\x06\x22\x43", + [0x06b3] = "\x06\x22\x40", [0x06b4] = "\x06\x22\x45", + [0x06b7] = "\x04\x22\x3a", [0x06b8] = "\x06\x23\x6a", + [0x06b9] = "\x05\x22\x2e", [0x06ba] = "\x05\x22\x2c", + [0x06bb] = "\x05\x22\x2b", [0x06bc] = "\x04\x22\x3b", + [0x06bd] = "\x04\x22\x39", [0x06be] = "\x06\x23\x68", + [0x06bf] = "\x06\x23\x67", [0x06c0] = "\x05\x22\x2f", + [0x06c1] = "\x06\x23\x6b", [0x06c2] = "\x06\x23\x69", + [0x06c3] = "\x05\x22\x2d", [0x06c4] = "\x04\x22\x3d", + [0x06c7] = "\x0f\x22\x22", [0x06c8] = "\x0f\x22\x23", + [0x06c9] = "\x04\x22\x3e", [0x06cd] = "\x06\x23\x66", + [0x06ce] = "\x04\x23\x41", [0x06cf] = "\x06\x26\x2b", + [0x06d0] = "\x04\x23\x43", [0x06d1] = "\x05\x23\x3d", + [0x06d2] = "\x04\x23\x42", [0x06d3] = "\x05\x23\x46", + [0x06d4] = "\x05\x23\x45", [0x06d5] = "\x05\x23\x43", + [0x06d6] = "\x05\x23\x40", [0x06d7] = "\x06\x26\x29", + [0x06d8] = "\x05\x23\x3f", [0x06d9] = "\x05\x23\x42", + [0x06da] = "\x05\x23\x41", [0x06db] = "\x06\x26\x2a", + [0x06e0] = "\x06\x26\x2c", [0x06e5] = "\x05\x23\x3e", + [0x06e6] = "\x05\x23\x44", [0x06e7] = "\x06\x29\x69", + [0x06e8] = "\x05\x25\x33", [0x06e9] = "\x05\x25\x35", + [0x06ea] = "\x04\x25\x49", [0x06eb] = "\x04\x25\x4b", + [0x06ec] = "\x03\x27\x5c", [0x06ed] = "\x06\x29\x66", + [0x06ee] = "\x04\x25\x4d", [0x06ef] = "\x06\x29\x64", + [0x06f0] = "\x06\x29\x65", [0x06f1] = "\x06\x29\x6c", + [0x06f2] = "\x06\x2e\x75", [0x06f4] = "\x06\x29\x6a", + [0x06f5] = "\x05\x25\x30", [0x06f6] = "\x05\x25\x36", + [0x06f7] = "\x06\x29\x6b", [0x06f8] = "\x05\x25\x32", + [0x06f9] = "\x06\x29\x67", [0x06fb] = "\x05\x25\x34", + [0x06fc] = "\x0f\x25\x5a", [0x06fd] = "\x0f\x25\x5b", + [0x06fe] = "\x0f\x25\x5c", [0x06ff] = "\x0f\x25\x5d", + [0x0702] = "\x06\x29\x68", [0x0706] = "\x06\x29\x62", + [0x0707] = "\x06\x29\x61", [0x0709] = "\x05\x25\x31", + [0x070c] = "\x06\x29\x57", [0x0710] = "\x04\x28\x47", + [0x0711] = "\x05\x28\x2d", [0x0712] = "\x04\x28\x45", + [0x0713] = "\x06\x2f\x24", [0x0714] = "\x06\x2e\x7b", + [0x0715] = "\x06\x2f\x22", [0x0716] = "\x04\x28\x48", + [0x0717] = "\x06\x2f\x21", [0x0718] = "\x04\x28\x44", + [0x0719] = "\x04\x28\x46", [0x071a] = "\x06\x2e\x78", + [0x071b] = "\x06\x2e\x7e", [0x071c] = "\x06\x2f\x23", + [0x071d] = "\x06\x2e\x7a", [0x071f] = "\x06\x2e\x7d", + [0x0720] = "\x06\x2e\x7c", [0x0721] = "\x0f\x29\x40", + [0x0722] = "\x0f\x29\x41", [0x0723] = "\x0f\x29\x42", + [0x0725] = "\x06\x2e\x79", [0x0726] = "\x05\x28\x2e", + [0x0728] = "\x06\x2e\x77", [0x0730] = "\x06\x35\x49", + [0x0731] = "\x04\x2b\x70", [0x0732] = "\x04\x2b\x6d", + [0x0733] = "\x05\x2c\x25", [0x0734] = "\x05\x2c\x23", + [0x0735] = "\x04\x2b\x6f", [0x0736] = "\x04\x2b\x73", + [0x0737] = "\x06\x35\x4e", [0x0738] = "\x06\x35\x52", + [0x0739] = "\x05\x2c\x22", [0x073a] = "\x06\x35\x53", + [0x073b] = "\x04\x2b\x6c", [0x073c] = "\x05\x2c\x26", + [0x073d] = "\x06\x35\x51", [0x073e] = "\x04\x2b\x71", + [0x073f] = "\x06\x35\x50", [0x0740] = "\x06\x35\x4f", + [0x0741] = "\x06\x35\x4c", [0x0742] = "\x06\x35\x4b", + [0x0743] = "\x04\x2b\x72", [0x0744] = "\x05\x2c\x24", + [0x0745] = "\x06\x35\x4d", [0x0748] = "\x0f\x2e\x33", + [0x0749] = "\x06\x35\x54", [0x074a] = "\x0f\x2e\x2e", + [0x074b] = "\x0f\x2e\x2f", [0x074c] = "\x0f\x2e\x30", + [0x074d] = "\x0f\x2e\x32", [0x0751] = "\x0f\x2e\x31", + [0x0752] = "\x06\x35\x4a", [0x0758] = "\x05\x2c\x27", + [0x0759] = "\x05\x2b\x7d", [0x075a] = "\x05\x2c\x21", + [0x075b] = "\x05\x2b\x7e", [0x075d] = "\x04\x30\x50", + [0x075e] = "\x05\x31\x2b", [0x075f] = "\x04\x30\x51", + [0x0760] = "\x05\x31\x2a", [0x0761] = "\x06\x3d\x46", + [0x0762] = "\x04\x30\x56", [0x0763] = "\x04\x36\x49", + [0x0764] = "\x04\x30\x55", [0x0765] = "\x06\x3d\x49", + [0x0767] = "\x06\x3d\x47", [0x0768] = "\x05\x36\x5e", + [0x0769] = "\x04\x30\x4f", [0x076a] = "\x05\x2c\x28", + [0x076d] = "\x0f\x33\x34", [0x076e] = "\x0f\x33\x35", + [0x076f] = "\x0f\x33\x37", [0x0771] = "\x06\x3d\x48", + [0x077d] = "\x06\x3d\x4a", [0x077e] = "\x06\x3d\x4b", + [0x077f] = "\x04\x36\x43", [0x0780] = "\x05\x36\x5f", + [0x0781] = "\x06\x46\x6d", [0x0782] = "\x06\x46\x69", + [0x0783] = "\x04\x36\x46", [0x0784] = "\x04\x36\x47", + [0x0785] = "\x05\x36\x60", [0x0786] = "\x05\x36\x64", + [0x0787] = "\x04\x36\x4a", [0x0788] = "\x04\x36\x44", + [0x0789] = "\x04\x36\x41", [0x078a] = "\x04\x36\x40", + [0x078b] = "\x06\x46\x6b", [0x078c] = "\x06\x46\x68", + [0x078d] = "\x06\x46\x6c", [0x078e] = "\x05\x36\x61", + [0x078f] = "\x05\x36\x62", [0x0790] = "\x06\x46\x6a", + [0x0791] = "\x0f\x39\x4b", [0x0792] = "\x0f\x39\x4c", + [0x0793] = "\x0f\x39\x4d", [0x0794] = "\x0f\x39\x4e", + [0x0798] = "\x04\x36\x48", [0x079c] = "\x06\x4c\x46", + [0x079d] = "\x06\x46\x6e", [0x07a4] = "\x05\x36\x65", + [0x07a5] = "\x04\x3c\x39", [0x07a6] = "\x06\x50\x6f", + [0x07a7] = "\x05\x3d\x73", [0x07a8] = "\x06\x50\x6d", + [0x07a9] = "\x04\x3c\x35", [0x07aa] = "\x05\x3d\x74", + [0x07ab] = "\x06\x50\x6e", [0x07ac] = "\x05\x3d\x6d", + [0x07ad] = "\x04\x3c\x37", [0x07ae] = "\x04\x3c\x36", + [0x07af] = "\x05\x3d\x6e", [0x07b0] = "\x04\x3c\x3a", + [0x07b1] = "\x05\x3d\x6f", [0x07b2] = "\x06\x50\x6b", + [0x07b3] = "\x0f\x40\x4b", [0x07b7] = "\x06\x50\x6a", + [0x07bb] = "\x06\x50\x68", [0x07bc] = "\x06\x50\x70", + [0x07bd] = "\x06\x50\x69", [0x07be] = "\x05\x3d\x72", + [0x07bf] = "\x05\x3d\x71", [0x07c1] = "\x0f\x40\x4c", + [0x07c2] = "\x05\x44\x5b", [0x07c3] = "\x04\x42\x3b", + [0x07c4] = "\x06\x5b\x24", [0x07c5] = "\x05\x44\x61", + [0x07c6] = "\x06\x5b\x22", [0x07c7] = "\x06\x5b\x21", + [0x07c8] = "\x04\x3c\x38", [0x07c9] = "\x04\x42\x40", + [0x07ca] = "\x05\x44\x62", [0x07cb] = "\x05\x44\x5c", + [0x07cc] = "\x05\x44\x5f", [0x07cd] = "\x04\x42\x3d", + [0x07ce] = "\x04\x42\x44", [0x07cf] = "\x06\x5b\x2b", + [0x07d0] = "\x06\x5b\x29", [0x07d1] = "\x06\x5b\x28", + [0x07d2] = "\x05\x44\x5e", [0x07d3] = "\x05\x4c\x22", + [0x07d4] = "\x06\x5b\x26", [0x07d5] = "\x05\x44\x5d", + [0x07d6] = "\x06\x5b\x2a", [0x07d7] = "\x05\x44\x60", + [0x07d8] = "\x06\x5b\x25", [0x07d9] = "\x0f\x46\x63", + [0x07da] = "\x0f\x46\x64", [0x07db] = "\x0f\x46\x65", + [0x07dc] = "\x06\x5b\x23", [0x07df] = "\x06\x5b\x27", + [0x07e6] = "\x05\x4c\x23", [0x07e7] = "\x05\x4c\x27", + [0x07e8] = "\x04\x49\x24", [0x07e9] = "\x05\x4c\x24", + [0x07ea] = "\x05\x4c\x26", [0x07eb] = "\x07\x21\x3c", + [0x07ec] = "\x07\x21\x3d", [0x07ed] = "\x07\x21\x3a", + [0x07ee] = "\x07\x21\x3e", [0x07ef] = "\x07\x21\x3b", + [0x07f0] = "\x05\x4c\x25", [0x07f1] = "\x07\x21\x38", + [0x07f3] = "\x07\x22\x5a", [0x07f5] = "\x07\x21\x39", + [0x07fa] = "\x04\x4f\x60", [0x07fb] = "\x07\x2c\x49", + [0x07fc] = "\x05\x5a\x77", [0x07fd] = "\x07\x2c\x4a", + [0x07fe] = "\x07\x2c\x4e", [0x07ff] = "\x07\x2c\x4d", + [0x0800] = "\x07\x2c\x4c", [0x0801] = "\x05\x53\x5f", + [0x0802] = "\x05\x53\x61", [0x0803] = "\x05\x53\x60", + [0x0804] = "\x05\x53\x5e", [0x0805] = "\x07\x2c\x48", + [0x0806] = "\x07\x2c\x4b", [0x0807] = "\x07\x21\x3f", + [0x0808] = "\x0f\x53\x56", [0x080b] = "\x05\x58\x51", + [0x080d] = "\x05\x5a\x7a", [0x080e] = "\x04\x55\x6b", + [0x080f] = "\x05\x5a\x79", [0x0810] = "\x05\x5a\x78", + [0x0812] = "\x07\x36\x7c", [0x0813] = "\x0f\x59\x56", + [0x0817] = "\x04\x55\x6e", [0x081b] = "\x07\x3e\x7c", + [0x081c] = "\x05\x61\x38", [0x081d] = "\x05\x61\x39", + [0x081e] = "\x07\x36\x7d", [0x081f] = "\x0f\x5e\x36", + [0x0820] = "\x05\x61\x3a", [0x0821] = "\x07\x46\x2f", + [0x0822] = "\x07\x46\x2e", [0x0823] = "\x07\x46\x2d", + [0x0826] = "\x07\x4d\x40", [0x0827] = "\x07\x4d\x41", + [0x082a] = "\x05\x6f\x6a", [0x082b] = "\x07\x52\x77", + [0x082c] = "\x0f\x67\x44", [0x082e] = "\x05\x75\x64", + [0x082f] = "\x04\x6b\x65", [0x0830] = "\x07\x62\x2d", + [0x0831] = "\x07\x62\x2c", [0x0832] = "\x06\x21\x3a", + [0x0833] = "\x05\x21\x3c", [0x0834] = "\x06\x21\x58", + [0x0836] = "\x04\x21\x63", [0x0837] = "\x05\x21\x59", + [0x0838] = "\x05\x21\x58", [0x0839] = "\x05\x22\x31", + [0x083b] = "\x05\x22\x32", [0x083c] = "\x0f\x22\x25", + [0x083d] = "\x0f\x22\x26", [0x083e] = "\x0f\x22\x27", + [0x083f] = "\x0f\x22\x28", [0x0841] = "\x05\x22\x33", + [0x0842] = "\x06\x26\x2e", [0x0843] = "\x04\x23\x45", + [0x0844] = "\x05\x23\x47", [0x0846] = "\x0f\x23\x38", + [0x0847] = "\x0f\x23\x3a", [0x0848] = "\x0f\x23\x3b", + [0x084c] = "\x06\x26\x2d", [0x084d] = "\x04\x23\x49", + [0x0851] = "\x05\x25\x3d", [0x0852] = "\x05\x25\x39", + [0x0853] = "\x06\x29\x6d", [0x0854] = "\x05\x25\x3c", + [0x0855] = "\x06\x29\x6e", [0x0856] = "\x0f\x25\x60", + [0x0857] = "\x0f\x25\x61", [0x0858] = "\x0f\x25\x62", + [0x0859] = "\x0f\x25\x63", [0x085e] = "\x05\x28\x30", + [0x085f] = "\x04\x28\x4a", [0x0860] = "\x06\x2f\x26", + [0x0861] = "\x05\x28\x31", [0x0862] = "\x05\x28\x2f", + [0x0866] = "\x06\x2f\x28", [0x0868] = "\x0f\x29\x43", + [0x0869] = "\x0f\x29\x44", [0x086a] = "\x0f\x29\x45", + [0x086b] = "\x06\x35\x55", [0x086c] = "\x06\x35\x59", + [0x086d] = "\x04\x2b\x74", [0x086e] = "\x05\x2c\x2d", + [0x086f] = "\x05\x2c\x29", [0x0870] = "\x05\x2c\x2b", + [0x0871] = "\x05\x2c\x2c", [0x0872] = "\x05\x2c\x2a", + [0x0874] = "\x0f\x2e\x34", [0x0875] = "\x0f\x2e\x35", + [0x0878] = "\x06\x35\x56", [0x0879] = "\x06\x35\x57", + [0x087b] = "\x05\x31\x2d", [0x087c] = "\x06\x3d\x4e", + [0x087d] = "\x06\x3d\x4c", [0x087e] = "\x06\x3d\x4f", + [0x087f] = "\x06\x3d\x50", [0x0880] = "\x06\x3d\x51", + [0x0881] = "\x0f\x33\x38", [0x0882] = "\x0f\x33\x39", + [0x0884] = "\x06\x3d\x4d", [0x0885] = "\x05\x36\x69", + [0x0886] = "\x05\x36\x66", [0x0887] = "\x05\x36\x68", + [0x0888] = "\x05\x36\x6b", [0x0889] = "\x05\x36\x67", + [0x088a] = "\x0f\x39\x4f", [0x088b] = "\x0f\x39\x50", + [0x088e] = "\x06\x46\x6f", [0x088f] = "\x06\x46\x70", + [0x0892] = "\x06\x46\x71", [0x0893] = "\x05\x3d\x76", + [0x0894] = "\x05\x3d\x75", [0x0895] = "\x04\x3c\x3b", + [0x0896] = "\x06\x50\x72", [0x0897] = "\x06\x50\x71", + [0x0898] = "\x0f\x40\x4d", [0x0899] = "\x05\x3d\x77", + [0x08a0] = "\x04\x42\x46", [0x08a1] = "\x05\x44\x66", + [0x08a2] = "\x05\x44\x64", [0x08a3] = "\x05\x44\x65", + [0x08a4] = "\x05\x44\x69", [0x08a5] = "\x04\x42\x45", + [0x08a6] = "\x05\x44\x68", [0x08a7] = "\x06\x5b\x2e", + [0x08a8] = "\x0f\x46\x66", [0x08ad] = "\x06\x5b\x2c", + [0x08af] = "\x06\x5b\x2d", [0x08b0] = "\x05\x4c\x2b", + [0x08b1] = "\x05\x4c\x28", [0x08b2] = "\x04\x49\x26", + [0x08b3] = "\x05\x4c\x29", [0x08b4] = "\x05\x4c\x2a", + [0x08b6] = "\x07\x2c\x4f", [0x08b7] = "\x05\x5a\x7c", + [0x08b8] = "\x0f\x53\x57", [0x08b9] = "\x05\x5a\x7b", + [0x08ba] = "\x05\x5a\x7d", [0x08bb] = "\x07\x36\x7e", + [0x08bc] = "\x07\x37\x22", [0x08bf] = "\x07\x37\x21", + [0x08c0] = "\x05\x61\x3c", [0x08c1] = "\x07\x3e\x7e", + [0x08c3] = "\x07\x3f\x21", [0x08c4] = "\x05\x67\x56", + [0x08c5] = "\x05\x67\x55", [0x08c6] = "\x07\x4d\x42", + [0x08c7] = "\x05\x6f\x6b", [0x08c8] = "\x07\x5b\x46", + [0x08c9] = "\x05\x75\x65", [0x08ca] = "\x04\x6c\x6b", + [0x08cb] = "\x07\x66\x3b", [0x08cc] = "\x05\x21\x3d", + [0x08cd] = "\x06\x22\x47", [0x08ce] = "\x06\x22\x48", + [0x08cf] = "\x05\x22\x35", [0x08d1] = "\x05\x22\x34", + [0x08d2] = "\x05\x22\x36", [0x08d3] = "\x0f\x22\x2a", + [0x08d4] = "\x06\x26\x2f", [0x08d6] = "\x05\x23\x48", + [0x08d7] = "\x05\x23\x49", [0x08d8] = "\x04\x25\x52", + [0x08d9] = "\x06\x29\x71", [0x08da] = "\x06\x29\x70", + [0x08dc] = "\x0f\x25\x64", [0x08dd] = "\x0f\x25\x65", + [0x08de] = "\x06\x2f\x2a", [0x08df] = "\x04\x28\x4c", + [0x08e0] = "\x06\x2f\x2b", [0x08e1] = "\x06\x2f\x2c", + [0x08e2] = "\x0f\x29\x46", [0x08e3] = "\x06\x2f\x29", + [0x08e4] = "\x04\x2b\x76", [0x08e5] = "\x06\x35\x5c", + [0x08e6] = "\x06\x35\x5b", [0x08e7] = "\x06\x35\x5e", + [0x08e8] = "\x06\x35\x5f", [0x08e9] = "\x06\x35\x5a", + [0x08ea] = "\x06\x35\x5d", [0x08eb] = "\x05\x2c\x2f", + [0x08ee] = "\x04\x30\x5d", [0x08ef] = "\x06\x3d\x52", + [0x08f0] = "\x05\x2c\x2e", [0x08f1] = "\x05\x31\x2e", + [0x08f3] = "\x05\x31\x2f", [0x08f4] = "\x06\x3d\x53", + [0x08f5] = "\x04\x36\x4e", [0x08f7] = "\x0f\x39\x51", + [0x08f8] = "\x06\x50\x73", [0x08f9] = "\x04\x30\x5b", + [0x08fa] = "\x05\x3d\x79", [0x08fb] = "\x0f\x40\x4e", + [0x08fc] = "\x0f\x40\x4f", [0x08fd] = "\x06\x5b\x2f", + [0x08fe] = "\x04\x42\x47", [0x08ff] = "\x05\x44\x6a", + [0x0900] = "\x05\x44\x6b", [0x0901] = "\x0f\x46\x67", + [0x0903] = "\x0f\x4d\x69", [0x0904] = "\x04\x4f\x65", + [0x0905] = "\x07\x2c\x50", [0x0907] = "\x07\x2c\x51", + [0x0908] = "\x07\x37\x23", [0x0909] = "\x07\x37\x24", + [0x090a] = "\x05\x5a\x7e", [0x090b] = "\x07\x4d\x43", + [0x090e] = "\x06\x21\x2a", [0x090f] = "\x04\x21\x42", + [0x0910] = "\x06\x22\x4a", [0x0911] = "\x06\x26\x30", + [0x0912] = "\x06\x26\x33", [0x0913] = "\x05\x23\x4a", + [0x0914] = "\x06\x26\x31", [0x0915] = "\x06\x26\x32", + [0x0917] = "\x04\x28\x4d", [0x0918] = "\x06\x2f\x2f", + [0x0919] = "\x06\x2f\x31", [0x091a] = "\x06\x2f\x2d", + [0x091b] = "\x06\x2f\x2e", [0x091c] = "\x06\x2f\x30", + [0x091e] = "\x06\x3d\x54", [0x091f] = "\x06\x35\x60", + [0x0920] = "\x0f\x2e\x36", [0x0921] = "\x0f\x2e\x37", + [0x0922] = "\x06\x35\x24", [0x0923] = "\x06\x46\x72", + [0x0924] = "\x0f\x39\x52", [0x0925] = "\x04\x3c\x3d", + [0x0928] = "\x0f\x46\x68", [0x092a] = "\x07\x3f\x22", + [0x092b] = "\x05\x6d\x32", [0x092c] = "\x06\x21\x2b", + [0x092d] = "\x0f\x21\x31", [0x092e] = "\x05\x22\x37", + [0x092f] = "\x06\x23\x6e", [0x0930] = "\x04\x22\x43", + [0x0931] = "\x06\x23\x6d", [0x0933] = "\x06\x26\x34", + [0x0934] = "\x04\x23\x4a", [0x0935] = "\x06\x26\x35", + [0x0936] = "\x0f\x23\x3c", [0x0938] = "\x06\x29\x73", + [0x0939] = "\x05\x25\x3e", [0x093a] = "\x05\x25\x3f", + [0x093c] = "\x04\x28\x4f", [0x093e] = "\x06\x2f\x34", + [0x093f] = "\x05\x28\x33", [0x0940] = "\x06\x2f\x33", + [0x0941] = "\x05\x28\x32", [0x0942] = "\x06\x2f\x32", + [0x0943] = "\x06\x2f\x37", [0x0944] = "\x06\x2f\x35", + [0x0945] = "\x0f\x29\x47", [0x0949] = "\x05\x2c\x30", + [0x094a] = "\x06\x35\x62", [0x094b] = "\x06\x35\x61", + [0x094c] = "\x05\x2c\x31", [0x094e] = "\x06\x3d\x55", + [0x094f] = "\x0f\x33\x3a", [0x0950] = "\x04\x36\x4f", + [0x0951] = "\x06\x50\x75", [0x0952] = "\x06\x46\x73", + [0x0953] = "\x06\x35\x63", [0x0956] = "\x05\x3d\x7a", + [0x0959] = "\x04\x42\x48", [0x095a] = "\x06\x5b\x31", + [0x095b] = "\x06\x5b\x30", [0x095c] = "\x05\x4c\x2c", + [0x095d] = "\x05\x4c\x2d", [0x095e] = "\x05\x4c\x2e", + [0x0961] = "\x0f\x4d\x6a", [0x0962] = "\x05\x53\x64", + [0x0963] = "\x07\x37\x25", [0x0965] = "\x0f\x5e\x37", + [0x0966] = "\x04\x5f\x4b", [0x0969] = "\x07\x3f\x23", + [0x096a] = "\x07\x4d\x44", [0x096b] = "\x07\x60\x69", + [0x096c] = "\x07\x64\x43", [0x096d] = "\x0f\x21\x32", + [0x096e] = "\x05\x22\x38", [0x096f] = "\x06\x23\x6f", + [0x0970] = "\x05\x23\x4c", [0x0971] = "\x06\x26\x37", + [0x0972] = "\x0f\x23\x3d", [0x0973] = "\x0f\x25\x66", + [0x0974] = "\x06\x2f\x36", [0x0975] = "\x05\x28\x34", + [0x0976] = "\x06\x35\x64", [0x0977] = "\x0f\x46\x69", + [0x0978] = "\x07\x4d\x45", [0x097a] = "\x07\x57\x50", + [0x097b] = "\x06\x21\x5a", [0x097d] = "\x05\x21\x5a", + [0x097e] = "\x05\x21\x5b", [0x0980] = "\x06\x22\x4b", + [0x0982] = "\x06\x23\x70", [0x0983] = "\x04\x22\x44", + [0x0985] = "\x04\x22\x45", [0x0986] = "\x06\x23\x73", + [0x0987] = "\x06\x23\x72", [0x0988] = "\x05\x22\x3a", + [0x098c] = "\x05\x22\x39", [0x098d] = "\x06\x23\x74", + [0x0991] = "\x06\x26\x39", [0x0992] = "\x05\x23\x4d", + [0x0993] = "\x06\x26\x3a", [0x0994] = "\x06\x23\x75", + [0x0995] = "\x06\x26\x3b", [0x0996] = "\x0f\x23\x3e", + [0x0998] = "\x05\x25\x40", [0x0999] = "\x06\x29\x74", + [0x099a] = "\x06\x29\x77", [0x099b] = "\x06\x29\x78", + [0x099c] = "\x06\x29\x76", [0x099d] = "\x0f\x25\x67", + [0x099e] = "\x0f\x25\x69", [0x099f] = "\x0f\x25\x6a", + [0x09a0] = "\x0f\x25\x6b", [0x09a1] = "\x0f\x25\x68", + [0x09a2] = "\x06\x29\x75", [0x09a3] = "\x06\x35\x65", + [0x09a4] = "\x06\x35\x66", [0x09a5] = "\x0f\x2e\x38", + [0x09a6] = "\x0f\x2e\x39", [0x09aa] = "\x04\x30\x63", + [0x09ab] = "\x04\x30\x61", [0x09ac] = "\x04\x30\x62", + [0x09ad] = "\x0f\x33\x3b", [0x09b0] = "\x0f\x39\x53", + [0x09b1] = "\x0f\x39\x54", [0x09b4] = "\x06\x50\x78", + [0x09b5] = "\x06\x50\x77", [0x09b6] = "\x06\x50\x79", + [0x09b7] = "\x06\x50\x7b", [0x09bc] = "\x0f\x40\x50", + [0x09bd] = "\x0f\x46\x6a", [0x09be] = "\x0f\x46\x6b", + [0x09c0] = "\x05\x4c\x2f", [0x09c1] = "\x0f\x4d\x6b", + [0x09c2] = "\x0f\x4d\x6c", [0x09c4] = "\x07\x21\x40", + [0x09c8] = "\x07\x37\x26", [0x09ca] = "\x0f\x5e\x38", + [0x09ce] = "\x07\x46\x30", [0x09cf] = "\x07\x52\x78", + [0x09d0] = "\x07\x60\x6a", [0x09d1] = "\x07\x62\x2e", + [0x09d3] = "\x06\x22\x4c", [0x09d4] = "\x06\x23\x77", + [0x09d7] = "\x06\x23\x76", [0x09d8] = "\x06\x23\x78", + [0x09d9] = "\x04\x23\x4c", [0x09da] = "\x05\x23\x4f", + [0x09db] = "\x05\x23\x4e", [0x09dc] = "\x06\x26\x3c", + [0x09de] = "\x04\x25\x55", [0x09df] = "\x04\x25\x54", + [0x09e0] = "\x06\x29\x7c", [0x09e1] = "\x06\x29\x7b", + [0x09e2] = "\x06\x29\x7d", [0x09e3] = "\x06\x29\x7a", + [0x09e4] = "\x06\x29\x7e", [0x09e5] = "\x06\x29\x79", + [0x09e6] = "\x0f\x25\x6c", [0x09e8] = "\x06\x2a\x22", + [0x09e9] = "\x04\x28\x52", [0x09ea] = "\x04\x28\x51", + [0x09eb] = "\x05\x28\x37", [0x09ec] = "\x0f\x29\x48", + [0x09ed] = "\x0f\x29\x49", [0x09ee] = "\x0f\x29\x4a", + [0x09ef] = "\x0f\x29\x4b", [0x09f2] = "\x06\x2f\x39", + [0x09f3] = "\x06\x35\x68", [0x09f4] = "\x04\x2b\x79", + [0x09f5] = "\x05\x2c\x32", [0x09f6] = "\x06\x35\x67", + [0x09f7] = "\x06\x35\x6a", [0x09f8] = "\x06\x3c\x7a", + [0x09f9] = "\x06\x35\x69", [0x09fa] = "\x06\x3d\x57", + [0x09fb] = "\x06\x3d\x56", [0x09fc] = "\x06\x35\x6b", + [0x09fd] = "\x06\x3d\x58", [0x0a00] = "\x06\x46\x75", + [0x0a01] = "\x06\x46\x76", [0x0a02] = "\x06\x46\x77", + [0x0a03] = "\x05\x37\x3f", [0x0a05] = "\x06\x50\x7c", + [0x0a06] = "\x05\x44\x6d", [0x0a07] = "\x06\x5b\x32", + [0x0a08] = "\x07\x21\x41", [0x0a09] = "\x0f\x53\x58", + [0x0a0b] = "\x07\x63\x4b", [0x0a0d] = "\x05\x21\x3e", + [0x0a0e] = "\x04\x21\x43", [0x0a0f] = "\x0f\x21\x34", + [0x0a10] = "\x06\x21\x5b", [0x0a12] = "\x04\x22\x46", + [0x0a13] = "\x06\x2a\x24", [0x0a14] = "\x06\x23\x7a", + [0x0a16] = "\x06\x23\x79", [0x0a18] = "\x04\x23\x4e", + [0x0a19] = "\x06\x2f\x3b", [0x0a1a] = "\x05\x28\x38", + [0x0a1b] = "\x06\x2f\x3a", [0x0a1c] = "\x04\x28\x53", + [0x0a1d] = "\x06\x35\x6c", [0x0a1e] = "\x06\x2f\x3c", + [0x0a1f] = "\x06\x46\x78", [0x0a20] = "\x05\x2c\x33", + [0x0a22] = "\x05\x3d\x7b", [0x0a23] = "\x06\x50\x7d", + [0x0a25] = "\x05\x44\x6e", [0x0a27] = "\x07\x3f\x24", + [0x0a2c] = "\x05\x21\x3f", [0x0a2d] = "\x05\x21\x5c", + [0x0a2e] = "\x06\x23\x7b", [0x0a2f] = "\x06\x22\x4f", + [0x0a30] = "\x06\x22\x4d", [0x0a31] = "\x06\x22\x50", + [0x0a32] = "\x05\x21\x5d", [0x0a34] = "\x04\x22\x47", + [0x0a35] = "\x05\x22\x3b", [0x0a36] = "\x06\x23\x7c", + [0x0a37] = "\x06\x23\x7d", [0x0a38] = "\x05\x22\x3f", + [0x0a39] = "\x05\x22\x40", [0x0a3a] = "\x05\x22\x3d", + [0x0a3b] = "\x05\x22\x3e", [0x0a3d] = "\x0f\x22\x2d", + [0x0a40] = "\x06\x26\x3e", [0x0a41] = "\x05\x23\x50", + [0x0a42] = "\x06\x26\x3d", [0x0a43] = "\x05\x23\x51", + [0x0a44] = "\x06\x25\x5e", [0x0a47] = "\x0f\x23\x3f", + [0x0a4a] = "\x06\x2a\x27", [0x0a4b] = "\x06\x2a\x26", + [0x0a4c] = "\x06\x2a\x29", [0x0a4d] = "\x06\x2a\x28", + [0x0a4e] = "\x05\x25\x41", [0x0a4f] = "\x04\x25\x58", + [0x0a51] = "\x0f\x25\x6d", [0x0a52] = "\x0f\x25\x6e", + [0x0a56] = "\x06\x2a\x25", [0x0a57] = "\x05\x28\x39", + [0x0a58] = "\x04\x28\x54", [0x0a59] = "\x06\x2f\x46", + [0x0a5a] = "\x06\x2f\x41", [0x0a5b] = "\x06\x2f\x44", + [0x0a5c] = "\x06\x2f\x45", [0x0a5d] = "\x06\x2f\x40", + [0x0a5e] = "\x06\x2f\x3e", [0x0a5f] = "\x06\x2f\x42", + [0x0a60] = "\x06\x2f\x43", [0x0a62] = "\x0f\x29\x4d", + [0x0a63] = "\x0f\x29\x4e", [0x0a64] = "\x04\x28\x55", + [0x0a66] = "\x06\x2f\x3f", [0x0a67] = "\x06\x35\x73", + [0x0a68] = "\x06\x35\x74", [0x0a69] = "\x04\x2b\x7b", + [0x0a6a] = "\x05\x2c\x34", [0x0a6b] = "\x04\x2b\x7c", + [0x0a6c] = "\x06\x35\x6f", [0x0a6d] = "\x06\x35\x6d", + [0x0a6e] = "\x06\x35\x70", [0x0a6f] = "\x06\x35\x72", + [0x0a70] = "\x06\x35\x71", [0x0a71] = "\x06\x35\x6e", + [0x0a72] = "\x05\x2c\x35", [0x0a73] = "\x0f\x2e\x3a", + [0x0a74] = "\x0f\x2e\x3b", [0x0a78] = "\x06\x3d\x60", + [0x0a79] = "\x06\x3d\x5b", [0x0a7a] = "\x04\x30\x67", + [0x0a7b] = "\x06\x3d\x5f", [0x0a7c] = "\x06\x3d\x5c", + [0x0a7d] = "\x06\x3d\x5d", [0x0a7e] = "\x0f\x33\x3d", + [0x0a7f] = "\x05\x31\x30", [0x0a84] = "\x06\x3d\x5e", + [0x0a86] = "\x04\x30\x66", [0x0a87] = "\x04\x36\x52", + [0x0a88] = "\x06\x46\x7c", [0x0a89] = "\x06\x46\x7a", + [0x0a8a] = "\x04\x36\x53", [0x0a8b] = "\x06\x46\x7b", + [0x0a8c] = "\x06\x46\x79", [0x0a8d] = "\x06\x46\x7d", + [0x0a8e] = "\x0f\x39\x55", [0x0a8f] = "\x06\x46\x7e", + [0x0a91] = "\x05\x3d\x7c", [0x0a92] = "\x05\x3d\x7d", + [0x0a93] = "\x06\x51\x24", [0x0a94] = "\x06\x51\x23", + [0x0a95] = "\x06\x50\x7e", [0x0a96] = "\x0f\x40\x51", + [0x0a98] = "\x06\x51\x21", [0x0a99] = "\x04\x3c\x3f", + [0x0a9a] = "\x04\x42\x49", [0x0a9b] = "\x06\x5b\x34", + [0x0a9c] = "\x06\x5b\x37", [0x0a9d] = "\x06\x5b\x33", + [0x0a9e] = "\x06\x5b\x38", [0x0a9f] = "\x05\x44\x6f", + [0x0aa0] = "\x0f\x46\x6d", [0x0aa2] = "\x0f\x46\x6e", + [0x0aa4] = "\x06\x5b\x36", [0x0aa5] = "\x06\x5b\x39", + [0x0aa6] = "\x06\x5b\x3b", [0x0aaa] = "\x06\x5b\x3a", + [0x0aab] = "\x06\x5b\x35", [0x0aad] = "\x07\x21\x43", + [0x0aae] = "\x04\x49\x28", [0x0aaf] = "\x05\x4c\x30", + [0x0ab0] = "\x07\x21\x44", [0x0ab3] = "\x07\x21\x42", + [0x0ab5] = "\x0f\x4d\x6d", [0x0ab9] = "\x07\x25\x48", + [0x0aba] = "\x05\x53\x65", [0x0abb] = "\x07\x2c\x53", + [0x0abc] = "\x07\x2c\x52", [0x0abd] = "\x0f\x53\x59", + [0x0abe] = "\x0f\x53\x5a", [0x0abf] = "\x07\x3b\x4d", + [0x0ac0] = "\x0f\x5e\x39", [0x0ac1] = "\x0f\x5e\x3a", + [0x0ac2] = "\x0f\x5e\x3b", [0x0ac7] = "\x0f\x64\x7c", + [0x0ac8] = "\x07\x4e\x27", [0x0ac9] = "\x07\x52\x79", + [0x0acc] = "\x05\x77\x54", [0x0ace] = "\x07\x5e\x50", + [0x0ad0] = "\x07\x65\x33", [0x0ad2] = "\x07\x66\x33", + [0x0ad3] = "\x05\x21\x2e", [0x0ad4] = "\x06\x21\x3c", + [0x0ad5] = "\x06\x21\x3d", [0x0ad7] = "\x06\x21\x5d", + [0x0ad9] = "\x06\x22\x52", [0x0ada] = "\x06\x22\x51", + [0x0ade] = "\x04\x22\x4a", [0x0adf] = "\x06\x24\x23", + [0x0ae0] = "\x06\x24\x21", [0x0ae2] = "\x0f\x22\x2e", + [0x0ae4] = "\x04\x22\x49", [0x0ae5] = "\x06\x24\x22", + [0x0ae6] = "\x06\x26\x40", [0x0ae7] = "\x0f\x23\x40", + [0x0ae8] = "\x05\x23\x3c", [0x0ae9] = "\x06\x2a\x2c", + [0x0aea] = "\x06\x2a\x2b", [0x0aeb] = "\x06\x2a\x2d", + [0x0aec] = "\x06\x2a\x2e", [0x0af0] = "\x06\x2f\x47", + [0x0af1] = "\x06\x2f\x48", [0x0af3] = "\x04\x28\x56", + [0x0af4] = "\x0f\x29\x4f", [0x0af9] = "\x06\x35\x76", + [0x0afa] = "\x06\x35\x75", [0x0afb] = "\x06\x36\x49", + [0x0afc] = "\x06\x35\x2e", [0x0aff] = "\x05\x36\x6c", + [0x0b00] = "\x06\x47\x22", [0x0b01] = "\x06\x47\x24", + [0x0b02] = "\x06\x4d\x62", [0x0b04] = "\x0f\x39\x56", + [0x0b05] = "\x06\x47\x23", [0x0b06] = "\x05\x3e\x21", + [0x0b07] = "\x06\x51\x25", [0x0b08] = "\x05\x3d\x7e", + [0x0b0a] = "\x0f\x40\x52", [0x0b0e] = "\x06\x5b\x3c", + [0x0b0f] = "\x0f\x46\x6f", [0x0b10] = "\x06\x60\x72", + [0x0b11] = "\x07\x21\x45", [0x0b13] = "\x05\x53\x66", + [0x0b17] = "\x0f\x59\x57", [0x0b18] = "\x07\x4b\x6a", + [0x0b1a] = "\x06\x21\x60", [0x0b1b] = "\x05\x21\x40", + [0x0b1c] = "\x06\x21\x5e", [0x0b1d] = "\x05\x21\x42", + [0x0b1e] = "\x06\x21\x62", [0x0b1f] = "\x06\x21\x5f", + [0x0b21] = "\x06\x22\x55", [0x0b22] = "\x04\x21\x68", + [0x0b23] = "\x05\x21\x5e", [0x0b25] = "\x06\x22\x56", + [0x0b26] = "\x05\x21\x5f", [0x0b27] = "\x06\x22\x53", + [0x0b28] = "\x06\x22\x54", [0x0b29] = "\x06\x24\x25", + [0x0b2a] = "\x04\x22\x4b", [0x0b2b] = "\x06\x24\x24", + [0x0b2c] = "\x05\x22\x42", [0x0b2d] = "\x06\x24\x26", + [0x0b2e] = "\x05\x22\x41", [0x0b2f] = "\x06\x24\x27", + [0x0b31] = "\x06\x26\x44", [0x0b32] = "\x06\x26\x42", + [0x0b33] = "\x05\x23\x52", [0x0b34] = "\x0f\x23\x41", + [0x0b35] = "\x0f\x23\x42", [0x0b36] = "\x0f\x23\x43", + [0x0b37] = "\x0f\x23\x44", [0x0b38] = "\x04\x23\x50", + [0x0b39] = "\x06\x2a\x31", [0x0b3a] = "\x06\x2a\x2f", + [0x0b3b] = "\x06\x2a\x32", [0x0b3c] = "\x06\x2a\x30", + [0x0b3d] = "\x0f\x25\x6f", [0x0b3f] = "\x06\x2f\x4d", + [0x0b40] = "\x06\x2f\x4a", [0x0b41] = "\x06\x2f\x4c", + [0x0b42] = "\x06\x2f\x4b", [0x0b43] = "\x06\x2f\x49", + [0x0b44] = "\x0f\x29\x51", [0x0b45] = "\x0f\x29\x52", + [0x0b47] = "\x06\x32\x72", [0x0b49] = "\x05\x28\x36", + [0x0b4a] = "\x06\x35\x7b", [0x0b4b] = "\x05\x2c\x36", + [0x0b4c] = "\x06\x35\x7c", [0x0b4d] = "\x06\x35\x79", + [0x0b4e] = "\x06\x35\x77", [0x0b4f] = "\x06\x35\x7a", + [0x0b50] = "\x0f\x2e\x3c", [0x0b51] = "\x0f\x2e\x3d", + [0x0b52] = "\x0f\x2e\x3e", [0x0b53] = "\x0f\x2e\x3f", + [0x0b54] = "\x06\x3c\x67", [0x0b55] = "\x06\x3d\x66", + [0x0b56] = "\x06\x3d\x68", [0x0b57] = "\x05\x31\x32", + [0x0b58] = "\x05\x31\x33", [0x0b59] = "\x06\x3d\x65", + [0x0b5a] = "\x06\x3d\x63", [0x0b5b] = "\x06\x3d\x6b", + [0x0b5c] = "\x06\x3d\x64", [0x0b5d] = "\x05\x2c\x37", + [0x0b5e] = "\x06\x3d\x62", [0x0b5f] = "\x06\x3d\x69", + [0x0b60] = "\x06\x3d\x6a", [0x0b61] = "\x06\x3c\x7c", + [0x0b63] = "\x06\x3d\x67", [0x0b65] = "\x04\x36\x54", + [0x0b66] = "\x05\x36\x6d", [0x0b67] = "\x06\x47\x27", + [0x0b68] = "\x06\x47\x25", [0x0b69] = "\x0f\x33\x3e", + [0x0b6a] = "\x0f\x39\x57", [0x0b6b] = "\x0f\x39\x58", + [0x0b6c] = "\x0f\x39\x59", [0x0b6d] = "\x0f\x39\x5a", + [0x0b6e] = "\x06\x47\x26", [0x0b6f] = "\x04\x3c\x43", + [0x0b70] = "\x04\x3c\x42", [0x0b71] = "\x06\x51\x27", + [0x0b72] = "\x06\x51\x28", [0x0b73] = "\x06\x51\x26", + [0x0b74] = "\x04\x3c\x41", [0x0b75] = "\x06\x47\x28", + [0x0b76] = "\x06\x51\x5b", [0x0b78] = "\x06\x51\x29", + [0x0b7b] = "\x06\x5f\x21", [0x0b7c] = "\x06\x5b\x3e", + [0x0b7e] = "\x06\x5b\x3d", [0x0b7f] = "\x05\x44\x70", + [0x0b81] = "\x06\x53\x7b", [0x0b82] = "\x0f\x4d\x55", + [0x0b83] = "\x05\x4c\x33", [0x0b84] = "\x05\x4c\x34", + [0x0b85] = "\x0f\x46\x70", [0x0b86] = "\x05\x4c\x32", + [0x0b87] = "\x07\x2c\x55", [0x0b88] = "\x0f\x53\x5b", + [0x0b89] = "\x03\x50\x39", [0x0b8a] = "\x05\x54\x2e", + [0x0b8b] = "\x07\x2c\x54", [0x0b8d] = "\x07\x37\x29", + [0x0b8e] = "\x07\x37\x28", [0x0b8f] = "\x0f\x59\x58", + [0x0b90] = "\x04\x5a\x6f", [0x0b91] = "\x07\x46\x32", + [0x0b92] = "\x07\x46\x31", [0x0b93] = "\x04\x66\x31", + [0x0b94] = "\x0f\x67\x45", [0x0b95] = "\x07\x57\x51", + [0x0b96] = "\x05\x75\x66", [0x0b97] = "\x07\x5e\x51", + [0x0b98] = "\x07\x5e\x52", [0x0b99] = "\x05\x21\x43", + [0x0b9a] = "\x06\x21\x64", [0x0b9b] = "\x04\x21\x47", + [0x0b9c] = "\x04\x21\x46", [0x0b9d] = "\x0f\x21\x36", + [0x0b9e] = "\x06\x21\x63", [0x0ba0] = "\x05\x21\x61", + [0x0ba1] = "\x06\x22\x59", [0x0ba2] = "\x06\x22\x58", + [0x0ba3] = "\x06\x22\x5e", [0x0ba4] = "\x06\x22\x5a", + [0x0ba5] = "\x06\x22\x5d", [0x0ba6] = "\x06\x22\x57", + [0x0ba7] = "\x06\x22\x42", [0x0ba8] = "\x0f\x21\x4e", + [0x0baa] = "\x06\x22\x5c", [0x0bab] = "\x05\x22\x47", + [0x0bac] = "\x06\x24\x2d", [0x0bad] = "\x05\x22\x45", + [0x0bae] = "\x06\x24\x2e", [0x0baf] = "\x04\x22\x4d", + [0x0bb0] = "\x05\x22\x46", [0x0bb1] = "\x04\x22\x50", + [0x0bb2] = "\x06\x24\x2c", [0x0bb3] = "\x04\x22\x4f", + [0x0bb4] = "\x04\x22\x4e", [0x0bb5] = "\x05\x22\x44", + [0x0bb7] = "\x06\x24\x28", [0x0bb8] = "\x0f\x22\x2f", + [0x0bb9] = "\x0f\x22\x30", [0x0bba] = "\x0f\x22\x32", + [0x0bbb] = "\x0f\x22\x34", [0x0bc1] = "\x06\x24\x2a", + [0x0bc2] = "\x0f\x22\x31", [0x0bc6] = "\x0f\x22\x33", + [0x0bc8] = "\x05\x22\x43", [0x0bc9] = "\x06\x24\x29", + [0x0bca] = "\x06\x24\x2b", [0x0bcb] = "\x04\x23\x56", + [0x0bcc] = "\x06\x26\x4f", [0x0bcd] = "\x06\x26\x46", + [0x0bce] = "\x06\x26\x4d", [0x0bcf] = "\x06\x26\x4c", + [0x0bd0] = "\x05\x23\x56", [0x0bd1] = "\x04\x23\x5a", + [0x0bd2] = "\x04\x23\x5d", [0x0bd3] = "\x05\x23\x5b", + [0x0bd4] = "\x05\x23\x54", [0x0bd5] = "\x06\x26\x48", + [0x0bd6] = "\x04\x23\x57", [0x0bd7] = "\x04\x23\x52", + [0x0bd8] = "\x04\x23\x58", [0x0bd9] = "\x05\x23\x58", + [0x0bda] = "\x06\x26\x49", [0x0bdb] = "\x05\x23\x59", + [0x0bdc] = "\x04\x23\x55", [0x0bdd] = "\x05\x23\x55", + [0x0bde] = "\x06\x26\x47", [0x0be1] = "\x05\x23\x5c", + [0x0be3] = "\x0f\x23\x45", [0x0be4] = "\x0f\x23\x46", + [0x0be5] = "\x0f\x23\x47", [0x0be6] = "\x0f\x23\x4a", + [0x0be7] = "\x0f\x23\x4b", [0x0be8] = "\x0f\x23\x4c", + [0x0beb] = "\x0f\x23\x48", [0x0bec] = "\x06\x26\x4b", + [0x0bee] = "\x06\x26\x4a", [0x0bf3] = "\x06\x26\x50", + [0x0bf5] = "\x06\x26\x45", [0x0bf6] = "\x05\x23\x53", + [0x0c04] = "\x05\x23\x57", [0x0c05] = "\x05\x23\x5a", + [0x0c08] = "\x04\x25\x5c", [0x0c09] = "\x04\x25\x5e", + [0x0c0a] = "\x06\x2a\x36", [0x0c0b] = "\x05\x25\x4c", + [0x0c0c] = "\x05\x25\x44", [0x0c0d] = "\x04\x25\x5b", + [0x0c0e] = "\x06\x2a\x34", [0x0c0f] = "\x05\x25\x4d", + [0x0c10] = "\x05\x25\x45", [0x0c11] = "\x05\x25\x47", + [0x0c12] = "\x04\x25\x61", [0x0c13] = "\x05\x25\x50", + [0x0c14] = "\x06\x2a\x33", [0x0c15] = "\x05\x25\x52", + [0x0c16] = "\x05\x28\x47", [0x0c17] = "\x06\x2a\x3b", + [0x0c18] = "\x05\x25\x48", [0x0c19] = "\x05\x25\x4b", + [0x0c1a] = "\x05\x25\x4a", [0x0c1b] = "\x05\x25\x51", + [0x0c1c] = "\x05\x25\x49", [0x0c1d] = "\x05\x25\x4e", + [0x0c1e] = "\x06\x2a\x3d", [0x0c21] = "\x05\x25\x4f", + [0x0c22] = "\x0f\x25\x70", [0x0c23] = "\x0f\x25\x72", + [0x0c24] = "\x0f\x25\x73", [0x0c25] = "\x0f\x25\x74", + [0x0c26] = "\x0f\x25\x75", [0x0c27] = "\x0f\x25\x76", + [0x0c28] = "\x0f\x25\x77", [0x0c29] = "\x0f\x25\x78", + [0x0c2a] = "\x0f\x25\x79", [0x0c2b] = "\x0f\x25\x7a", + [0x0c2c] = "\x0f\x25\x7d", [0x0c2d] = "\x0f\x25\x7e", + [0x0c2e] = "\x0f\x26\x21", [0x0c2f] = "\x0f\x26\x22", + [0x0c30] = "\x0f\x26\x23", [0x0c32] = "\x05\x25\x46", + [0x0c35] = "\x06\x2a\x35", [0x0c36] = "\x05\x25\x43", + [0x0c38] = "\x06\x2a\x38", [0x0c3f] = "\x06\x2a\x37", + [0x0c40] = "\x0f\x25\x7c", [0x0c4e] = "\x06\x2a\x3a", + [0x0c50] = "\x05\x2c\x38", [0x0c51] = "\x05\x28\x46", + [0x0c52] = "\x05\x28\x52", [0x0c53] = "\x05\x28\x4d", + [0x0c54] = "\x05\x28\x3c", [0x0c55] = "\x05\x28\x51", + [0x0c56] = "\x06\x2f\x54", [0x0c57] = "\x06\x2f\x4e", + [0x0c58] = "\x05\x28\x3f", [0x0c59] = "\x04\x28\x5b", + [0x0c5a] = "\x04\x28\x5a", [0x0c5b] = "\x05\x28\x4f", + [0x0c5c] = "\x05\x28\x45", [0x0c5d] = "\x05\x28\x4b", + [0x0c5e] = "\x05\x28\x4a", [0x0c5f] = "\x05\x28\x4e", + [0x0c60] = "\x05\x28\x48", [0x0c61] = "\x05\x28\x49", + [0x0c62] = "\x05\x28\x3d", [0x0c63] = "\x05\x28\x41", + [0x0c64] = "\x05\x28\x4c", [0x0c65] = "\x04\x25\x62", + [0x0c66] = "\x06\x2f\x59", [0x0c67] = "\x06\x2f\x5a", + [0x0c68] = "\x05\x28\x53", [0x0c69] = "\x06\x2f\x4f", + [0x0c6b] = "\x05\x28\x3a", [0x0c6c] = "\x06\x2f\x57", + [0x0c6d] = "\x06\x2f\x56", [0x0c6e] = "\x05\x28\x50", + [0x0c6f] = "\x06\x2f\x50", [0x0c70] = "\x06\x2f\x58", + [0x0c71] = "\x06\x2f\x52", [0x0c72] = "\x05\x28\x40", + [0x0c73] = "\x05\x28\x42", [0x0c75] = "\x0f\x2b\x33", + [0x0c79] = "\x0f\x29\x53", [0x0c7a] = "\x0f\x29\x55", + [0x0c7b] = "\x0f\x29\x56", [0x0c7c] = "\x0f\x29\x57", + [0x0c7d] = "\x0f\x29\x58", [0x0c7e] = "\x0f\x29\x59", + [0x0c7f] = "\x0f\x29\x5a", [0x0c80] = "\x0f\x29\x5b", + [0x0c81] = "\x0f\x29\x5e", [0x0c82] = "\x0f\x29\x5f", + [0x0c83] = "\x0f\x29\x60", [0x0c84] = "\x0f\x29\x61", + [0x0c85] = "\x0f\x29\x62", [0x0c86] = "\x0f\x29\x63", + [0x0c87] = "\x0f\x29\x64", [0x0c88] = "\x0f\x29\x66", + [0x0c89] = "\x0f\x29\x67", [0x0c8b] = "\x05\x28\x43", + [0x0c8c] = "\x05\x28\x44", [0x0c8e] = "\x04\x28\x5d", + [0x0c8f] = "\x0f\x29\x65", [0x0c90] = "\x06\x2f\x55", + [0x0c93] = "\x06\x2f\x53", [0x0c97] = "\x04\x28\x58", + [0x0ca9] = "\x05\x28\x3b", [0x0caa] = "\x05\x28\x3e", + [0x0cab] = "\x06\x2f\x51", [0x0cad] = "\x06\x36\x29", + [0x0cae] = "\x04\x2c\x24", [0x0caf] = "\x04\x2c\x2b", + [0x0cb0] = "\x04\x2c\x2c", [0x0cb1] = "\x04\x2c\x27", + [0x0cb2] = "\x06\x36\x22", [0x0cb3] = "\x05\x2c\x4e", + [0x0cb4] = "\x05\x2c\x41", [0x0cb5] = "\x05\x2c\x3f", + [0x0cb6] = "\x05\x2c\x4c", [0x0cb7] = "\x05\x2c\x3d", + [0x0cb8] = "\x05\x2c\x46", [0x0cb9] = "\x05\x2c\x56", + [0x0cba] = "\x05\x2c\x49", [0x0cbb] = "\x04\x2c\x2a", + [0x0cbc] = "\x05\x2c\x4d", [0x0cbd] = "\x05\x2c\x54", + [0x0cbe] = "\x05\x2c\x52", [0x0cbf] = "\x04\x2c\x22", + [0x0cc0] = "\x06\x36\x23", [0x0cc1] = "\x06\x36\x24", + [0x0cc2] = "\x05\x2c\x51", [0x0cc3] = "\x04\x2c\x23", + [0x0cc4] = "\x05\x2c\x40", [0x0cc5] = "\x06\x36\x27", + [0x0cc6] = "\x06\x36\x28", [0x0cc7] = "\x05\x2c\x57", + [0x0cc8] = "\x06\x36\x26", [0x0cc9] = "\x05\x2c\x53", + [0x0cca] = "\x05\x2c\x58", [0x0ccb] = "\x05\x2c\x47", + [0x0ccc] = "\x05\x2c\x59", [0x0ccd] = "\x05\x2c\x44", + [0x0cce] = "\x05\x2c\x55", [0x0cdb] = "\x0f\x2e\x40", + [0x0cdc] = "\x0f\x2e\x41", [0x0cdd] = "\x0f\x2e\x43", + [0x0cde] = "\x0f\x2e\x44", [0x0cdf] = "\x0f\x2e\x48", + [0x0ce0] = "\x0f\x2e\x49", [0x0ce1] = "\x0f\x2e\x4b", + [0x0ce2] = "\x0f\x2e\x4c", [0x0ce3] = "\x0f\x2e\x4d", + [0x0ce4] = "\x0f\x2e\x4e", [0x0ce5] = "\x0f\x2e\x4f", + [0x0ce6] = "\x0f\x2e\x50", [0x0ce7] = "\x0f\x2e\x51", + [0x0ce8] = "\x0f\x2e\x52", [0x0ce9] = "\x0f\x2e\x53", + [0x0cea] = "\x0f\x2e\x54", [0x0ceb] = "\x06\x39\x5e", + [0x0cee] = "\x06\x36\x21", [0x0cef] = "\x05\x2c\x42", + [0x0cf0] = "\x05\x2c\x45", [0x0cf1] = "\x05\x2c\x48", + [0x0cf4] = "\x06\x36\x25", [0x0cf7] = "\x05\x2c\x50", + [0x0cf8] = "\x05\x2c\x4b", [0x0cf9] = "\x05\x2c\x39", + [0x0cfa] = "\x05\x2c\x3a", [0x0cfb] = "\x05\x2c\x3b", + [0x0cff] = "\x0f\x2e\x45", [0x0d03] = "\x05\x2c\x4a", + [0x0d21] = "\x05\x2c\x4f", [0x0d22] = "\x05\x2c\x3e", + [0x0d23] = "\x05\x2c\x3c", [0x0d26] = "\x05\x2c\x5a", + [0x0d27] = "\x05\x31\x46", [0x0d28] = "\x04\x30\x69", + [0x0d29] = "\x06\x3d\x77", [0x0d2a] = "\x06\x3d\x74", + [0x0d2b] = "\x04\x30\x78", [0x0d2c] = "\x06\x3d\x6f", + [0x0d2d] = "\x04\x30\x75", [0x0d2e] = "\x05\x31\x51", + [0x0d2f] = "\x05\x31\x49", [0x0d30] = "\x05\x31\x4c", + [0x0d31] = "\x04\x30\x6e", [0x0d32] = "\x04\x30\x79", + [0x0d33] = "\x05\x31\x44", [0x0d34] = "\x06\x3d\x76", + [0x0d35] = "\x05\x31\x36", [0x0d36] = "\x05\x31\x4a", + [0x0d37] = "\x05\x31\x45", [0x0d38] = "\x05\x31\x4e", + [0x0d39] = "\x05\x31\x34", [0x0d3a] = "\x05\x31\x4d", + [0x0d3b] = "\x05\x31\x42", [0x0d3c] = "\x05\x31\x3b", + [0x0d3d] = "\x06\x3d\x71", [0x0d3e] = "\x06\x3d\x75", + [0x0d3f] = "\x06\x3d\x7d", [0x0d40] = "\x06\x3d\x7a", + [0x0d41] = "\x06\x3d\x7e", [0x0d42] = "\x05\x31\x3a", + [0x0d43] = "\x05\x31\x3c", [0x0d4a] = "\x06\x3d\x6c", + [0x0d51] = "\x05\x31\x38", [0x0d52] = "\x06\x3d\x72", + [0x0d53] = "\x06\x3d\x7b", [0x0d54] = "\x0f\x33\x3f", + [0x0d55] = "\x0f\x33\x40", [0x0d56] = "\x0f\x33\x41", + [0x0d57] = "\x0f\x33\x42", [0x0d58] = "\x0f\x33\x44", + [0x0d59] = "\x0f\x33\x45", [0x0d5a] = "\x0f\x33\x46", + [0x0d5b] = "\x0f\x33\x47", [0x0d5c] = "\x0f\x33\x48", + [0x0d5d] = "\x0f\x33\x49", [0x0d5e] = "\x0f\x33\x4c", + [0x0d5f] = "\x0f\x33\x4d", [0x0d60] = "\x05\x31\x37", + [0x0d61] = "\x06\x3d\x73", [0x0d62] = "\x05\x31\x39", + [0x0d65] = "\x06\x3d\x6d", [0x0d6a] = "\x05\x31\x41", + [0x0d70] = "\x05\x31\x48", [0x0d72] = "\x06\x3e\x21", + [0x0d75] = "\x05\x31\x52", [0x0d77] = "\x06\x3d\x70", + [0x0d79] = "\x05\x31\x40", [0x0da7] = "\x05\x31\x35", + [0x0da8] = "\x05\x31\x47", [0x0da9] = "\x05\x31\x3e", + [0x0daa] = "\x05\x31\x43", [0x0dab] = "\x05\x31\x3d", + [0x0dac] = "\x05\x31\x50", [0x0dad] = "\x06\x3d\x79", + [0x0dae] = "\x03\x34\x60", [0x0db0] = "\x05\x31\x53", + [0x0db1] = "\x05\x31\x4f", [0x0db2] = "\x06\x3d\x78", + [0x0db3] = "\x06\x3d\x6e", [0x0db4] = "\x05\x31\x3f", + [0x0db5] = "\x05\x31\x4b", [0x0db7] = "\x04\x36\x55", + [0x0db8] = "\x04\x36\x61", [0x0dba] = "\x06\x47\x32", + [0x0dbb] = "\x05\x37\x24", [0x0dbc] = "\x06\x47\x37", + [0x0dbd] = "\x06\x47\x3e", [0x0dbe] = "\x05\x36\x77", + [0x0dbf] = "\x06\x47\x35", [0x0dc0] = "\x05\x36\x7c", + [0x0dc1] = "\x04\x36\x56", [0x0dc2] = "\x05\x37\x28", + [0x0dc3] = "\x05\x36\x6f", [0x0dc4] = "\x05\x36\x71", + [0x0dc5] = "\x04\x36\x5a", [0x0dc6] = "\x05\x36\x78", + [0x0dc7] = "\x04\x36\x57", [0x0dc8] = "\x05\x37\x29", + [0x0dc9] = "\x05\x36\x7e", [0x0dca] = "\x04\x36\x62", + [0x0dcb] = "\x04\x36\x5b", [0x0dcc] = "\x05\x37\x23", + [0x0dcd] = "\x05\x37\x27", [0x0dce] = "\x04\x36\x66", + [0x0dcf] = "\x05\x37\x30", [0x0dd1] = "\x04\x36\x5d", + [0x0dd2] = "\x05\x37\x2c", [0x0dd3] = "\x05\x37\x2e", + [0x0dd4] = "\x06\x47\x2e", [0x0dd5] = "\x06\x47\x3c", + [0x0dd6] = "\x05\x3e\x22", [0x0dd7] = "\x06\x47\x2b", + [0x0dd8] = "\x06\x47\x2f", [0x0dd9] = "\x06\x47\x38", + [0x0dda] = "\x05\x37\x22", [0x0ddb] = "\x06\x47\x34", + [0x0ddc] = "\x06\x47\x3f", [0x0ddd] = "\x06\x47\x3a", + [0x0dde] = "\x04\x36\x64", [0x0ddf] = "\x05\x37\x26", + [0x0de7] = "\x05\x36\x73", [0x0de8] = "\x0f\x39\x5b", + [0x0de9] = "\x0f\x39\x5d", [0x0dea] = "\x0f\x39\x5e", + [0x0deb] = "\x0f\x39\x61", [0x0dec] = "\x0f\x39\x62", + [0x0ded] = "\x0f\x39\x63", [0x0dee] = "\x0f\x39\x64", + [0x0def] = "\x0f\x39\x65", [0x0df0] = "\x0f\x39\x66", + [0x0df1] = "\x0f\x39\x67", [0x0df2] = "\x0f\x39\x68", + [0x0df3] = "\x0f\x39\x6a", [0x0df4] = "\x0f\x39\x6d", + [0x0df5] = "\x0f\x39\x6e", [0x0df6] = "\x0f\x39\x6f", + [0x0df7] = "\x0f\x39\x70", [0x0df8] = "\x05\x36\x74", + [0x0dfb] = "\x05\x36\x75", [0x0dfc] = "\x05\x36\x7b", + [0x0dfd] = "\x05\x37\x25", [0x0dfe] = "\x05\x37\x21", + [0x0e00] = "\x06\x47\x3b", [0x0e04] = "\x0f\x39\x6b", + [0x0e0c] = "\x0f\x39\x5c", [0x0e0d] = "\x0f\x39\x5f", + [0x0e16] = "\x0f\x39\x69", [0x0e1d] = "\x0f\x39\x6c", + [0x0e2d] = "\x05\x37\x2b", [0x0e2e] = "\x05\x37\x2f", + [0x0e30] = "\x06\x47\x3d", [0x0e31] = "\x05\x37\x2d", + [0x0e32] = "\x05\x37\x2a", [0x0e33] = "\x05\x36\x7d", + [0x0e35] = "\x06\x47\x36", [0x0e36] = "\x06\x51\x39", + [0x0e37] = "\x05\x3e\x23", [0x0e38] = "\x04\x3c\x49", + [0x0e39] = "\x05\x3e\x27", [0x0e3a] = "\x04\x3c\x4e", + [0x0e3b] = "\x05\x36\x72", [0x0e3f] = "\x06\x51\x41", + [0x0e40] = "\x04\x3c\x48", [0x0e41] = "\x04\x3c\x44", + [0x0e42] = "\x06\x5b\x42", [0x0e43] = "\x05\x3e\x2d", + [0x0e44] = "\x06\x51\x33", [0x0e45] = "\x06\x51\x35", + [0x0e46] = "\x05\x3e\x2a", [0x0e47] = "\x05\x3e\x38", + [0x0e48] = "\x06\x51\x3a", [0x0e49] = "\x06\x51\x30", + [0x0e4a] = "\x05\x3e\x2e", [0x0e4b] = "\x05\x3e\x24", + [0x0e4c] = "\x05\x3e\x35", [0x0e4d] = "\x05\x3e\x3f", + [0x0e4e] = "\x06\x51\x3f", [0x0e4f] = "\x06\x51\x37", + [0x0e50] = "\x05\x3e\x34", [0x0e51] = "\x05\x3e\x37", + [0x0e52] = "\x04\x3c\x4d", [0x0e53] = "\x05\x3e\x3a", + [0x0e54] = "\x04\x3c\x45", [0x0e55] = "\x05\x3e\x33", + [0x0e56] = "\x05\x3e\x2c", [0x0e57] = "\x04\x3c\x4f", + [0x0e58] = "\x05\x3e\x2f", [0x0e59] = "\x04\x3c\x51", + [0x0e5a] = "\x05\x3e\x31", [0x0e5b] = "\x05\x3e\x32", + [0x0e5c] = "\x06\x51\x3b", [0x0e5e] = "\x06\x51\x40", + [0x0e5f] = "\x06\x51\x2a", [0x0e60] = "\x06\x51\x3e", + [0x0e61] = "\x06\x51\x3d", [0x0e62] = "\x05\x3e\x3b", + [0x0e63] = "\x06\x51\x38", [0x0e64] = "\x05\x3e\x28", + [0x0e65] = "\x05\x3e\x30", [0x0e66] = "\x05\x3e\x2b", + [0x0e67] = "\x06\x51\x2c", [0x0e68] = "\x06\x51\x44", + [0x0e69] = "\x06\x51\x2e", [0x0e6a] = "\x06\x51\x2b", + [0x0e6b] = "\x06\x51\x2d", [0x0e6e] = "\x0f\x47\x26", + [0x0e7f] = "\x05\x3e\x3e", [0x0e80] = "\x06\x51\x31", + [0x0e81] = "\x0f\x40\x56", [0x0e82] = "\x0f\x40\x57", + [0x0e83] = "\x0f\x40\x58", [0x0e84] = "\x0f\x40\x59", + [0x0e85] = "\x0f\x40\x5a", [0x0e86] = "\x0f\x40\x5b", + [0x0e87] = "\x0f\x40\x5c", [0x0e88] = "\x0f\x40\x5d", + [0x0e89] = "\x0f\x40\x5e", [0x0e8a] = "\x0f\x40\x5f", + [0x0e8b] = "\x0f\x40\x60", [0x0e8c] = "\x0f\x40\x61", + [0x0e8d] = "\x0f\x40\x63", [0x0e8e] = "\x06\x51\x2f", + [0x0e8f] = "\x06\x51\x34", [0x0e93] = "\x06\x51\x3c", + [0x0ea2] = "\x0f\x40\x54", [0x0ea4] = "\x06\x51\x42", + [0x0ecc] = "\x05\x3e\x3c", [0x0ecd] = "\x05\x3e\x36", + [0x0ece] = "\x05\x3e\x25", [0x0ecf] = "\x05\x3e\x29", + [0x0ed0] = "\x05\x3e\x26", [0x0ed1] = "\x0f\x40\x64", + [0x0ed4] = "\x06\x5b\x46", [0x0ed5] = "\x06\x5b\x40", + [0x0ed6] = "\x06\x5b\x4b", [0x0ed7] = "\x04\x42\x4d", + [0x0ed8] = "\x06\x5b\x4f", [0x0ed9] = "\x06\x5b\x45", + [0x0eda] = "\x06\x5b\x51", [0x0edb] = "\x06\x5b\x50", + [0x0edc] = "\x04\x42\x4e", [0x0edd] = "\x06\x5b\x4c", + [0x0ede] = "\x05\x44\x73", [0x0edf] = "\x05\x44\x77", + [0x0ee0] = "\x05\x44\x75", [0x0ee1] = "\x05\x44\x7c", + [0x0ee2] = "\x06\x5b\x43", [0x0ee3] = "\x06\x5b\x47", + [0x0ee4] = "\x04\x42\x4c", [0x0ee5] = "\x04\x42\x54", + [0x0ee6] = "\x05\x44\x7b", [0x0ee7] = "\x04\x42\x50", + [0x0ee8] = "\x05\x44\x76", [0x0ee9] = "\x06\x5b\x41", + [0x0eea] = "\x05\x44\x71", [0x0eeb] = "\x05\x44\x72", + [0x0eec] = "\x05\x44\x79", [0x0eed] = "\x06\x5b\x52", + [0x0eee] = "\x06\x5b\x3f", [0x0eef] = "\x06\x5b\x49", + [0x0ef0] = "\x06\x5b\x4a", [0x0ef1] = "\x05\x44\x78", + [0x0ef6] = "\x06\x5b\x4d", [0x0efe] = "\x0f\x46\x71", + [0x0eff] = "\x0f\x46\x72", [0x0f00] = "\x0f\x46\x73", + [0x0f01] = "\x0f\x46\x74", [0x0f02] = "\x0f\x46\x76", + [0x0f03] = "\x0f\x46\x77", [0x0f04] = "\x0f\x46\x78", + [0x0f05] = "\x0f\x46\x79", [0x0f06] = "\x0f\x46\x7a", + [0x0f07] = "\x0f\x46\x7b", [0x0f08] = "\x0f\x46\x7c", + [0x0f09] = "\x0f\x46\x7e", [0x0f0a] = "\x0f\x47\x21", + [0x0f0b] = "\x0f\x47\x22", [0x0f0c] = "\x0f\x47\x23", + [0x0f0d] = "\x0f\x47\x27", [0x0f0e] = "\x0f\x47\x28", + [0x0f0f] = "\x0f\x47\x29", [0x0f10] = "\x0f\x47\x2a", + [0x0f11] = "\x0f\x47\x2b", [0x0f12] = "\x0f\x47\x2c", + [0x0f13] = "\x0f\x47\x2d", [0x0f14] = "\x0f\x47\x24", + [0x0f15] = "\x06\x5b\x48", [0x0f16] = "\x0f\x46\x75", + [0x0f18] = "\x05\x44\x74", [0x0f1a] = "\x05\x44\x7a", + [0x0f1c] = "\x06\x5b\x4e", [0x0f1e] = "\x05\x45\x21", + [0x0f22] = "\x0f\x46\x7d", [0x0f23] = "\x06\x5b\x44", + [0x0f29] = "\x0f\x47\x25", [0x0f5c] = "\x05\x4c\x35", + [0x0f5d] = "\x05\x44\x7d", [0x0f60] = "\x0f\x46\x6c", + [0x0f62] = "\x07\x21\x51", [0x0f63] = "\x05\x4c\x3b", + [0x0f64] = "\x07\x21\x55", [0x0f65] = "\x07\x21\x52", + [0x0f66] = "\x05\x4c\x39", [0x0f67] = "\x07\x21\x58", + [0x0f68] = "\x07\x21\x4a", [0x0f69] = "\x05\x4c\x40", + [0x0f6a] = "\x05\x4c\x46", [0x0f6b] = "\x05\x4c\x3d", + [0x0f6c] = "\x07\x21\x4f", [0x0f6d] = "\x05\x4c\x3e", + [0x0f6e] = "\x07\x21\x57", [0x0f6f] = "\x07\x21\x50", + [0x0f70] = "\x05\x4c\x36", [0x0f71] = "\x07\x21\x4b", + [0x0f72] = "\x05\x4c\x3f", [0x0f73] = "\x07\x21\x56", + [0x0f74] = "\x07\x21\x59", [0x0f75] = "\x05\x4c\x41", + [0x0f76] = "\x04\x49\x2f", [0x0f78] = "\x07\x21\x5b", + [0x0f79] = "\x05\x4c\x3a", [0x0f7a] = "\x07\x21\x48", + [0x0f7b] = "\x05\x4c\x38", [0x0f7c] = "\x05\x5b\x27", + [0x0f7d] = "\x07\x21\x5a", [0x0f7e] = "\x04\x49\x2b", + [0x0f7f] = "\x07\x21\x54", [0x0f80] = "\x05\x45\x23", + [0x0f81] = "\x07\x21\x53", [0x0f82] = "\x07\x21\x49", + [0x0f83] = "\x07\x21\x47", [0x0f84] = "\x07\x21\x62", + [0x0f85] = "\x07\x21\x5c", [0x0f86] = "\x0f\x4d\x7a", + [0x0f88] = "\x07\x21\x5e", [0x0f89] = "\x05\x4c\x42", + [0x0f8a] = "\x07\x21\x61", [0x0f8b] = "\x07\x2c\x61", + [0x0f8c] = "\x05\x4c\x37", [0x0f96] = "\x04\x49\x32", + [0x0f97] = "\x05\x4c\x47", [0x0f98] = "\x0f\x4d\x6f", + [0x0f99] = "\x0f\x4d\x70", [0x0f9a] = "\x0f\x4d\x71", + [0x0f9b] = "\x0f\x4d\x72", [0x0f9c] = "\x0f\x4d\x73", + [0x0f9d] = "\x0f\x4d\x74", [0x0f9e] = "\x0f\x4d\x75", + [0x0f9f] = "\x0f\x4d\x76", [0x0fa0] = "\x0f\x4d\x78", + [0x0fa1] = "\x0f\x4d\x79", [0x0fa5] = "\x05\x4c\x44", + [0x0fa6] = "\x07\x21\x5f", [0x0fa7] = "\x07\x26\x2b", + [0x0faa] = "\x07\x21\x5d", [0x0faf] = "\x07\x21\x4d", + [0x0fb0] = "\x07\x21\x4c", [0x0fc5] = "\x05\x4c\x3c", + [0x0fc6] = "\x05\x4c\x43", [0x0fc7] = "\x07\x2c\x6a", + [0x0fc8] = "\x04\x4f\x6e", [0x0fc9] = "\x05\x53\x74", + [0x0fca] = "\x07\x2c\x5c", [0x0fcb] = "\x05\x53\x72", + [0x0fcc] = "\x07\x2c\x68", [0x0fcd] = "\x04\x4f\x72", + [0x0fce] = "\x05\x53\x6a", [0x0fcf] = "\x05\x53\x78", + [0x0fd0] = "\x07\x2c\x60", [0x0fd1] = "\x04\x4f\x68", + [0x0fd2] = "\x04\x4f\x73", [0x0fd3] = "\x04\x4f\x66", + [0x0fd4] = "\x05\x53\x71", [0x0fd5] = "\x04\x4f\x70", + [0x0fd6] = "\x05\x53\x6f", [0x0fd7] = "\x05\x53\x68", + [0x0fd8] = "\x07\x2c\x6b", [0x0fd9] = "\x07\x2c\x5b", + [0x0fda] = "\x07\x2c\x64", [0x0fdb] = "\x05\x53\x6e", + [0x0fdc] = "\x07\x2c\x5f", [0x0fdd] = "\x05\x53\x6c", + [0x0fde] = "\x05\x53\x67", [0x0fdf] = "\x05\x53\x75", + [0x0fe0] = "\x05\x53\x70", [0x0fe1] = "\x05\x53\x73", + [0x0fe2] = "\x07\x2c\x59", [0x0fe3] = "\x05\x53\x6b", + [0x0fe4] = "\x05\x53\x69", [0x0fe5] = "\x07\x2c\x67", + [0x0fe6] = "\x07\x2c\x58", [0x0fe7] = "\x07\x2c\x57", + [0x0fee] = "\x0f\x4d\x77", [0x0ffa] = "\x04\x4f\x69", + [0x0ffb] = "\x04\x4f\x74", [0x0ffc] = "\x05\x53\x77", + [0x0ffd] = "\x07\x2c\x66", [0x0ffe] = "\x0f\x53\x5c", + [0x0fff] = "\x0f\x53\x5e", [0x1000] = "\x0f\x53\x5f", + [0x1001] = "\x0f\x53\x60", [0x1002] = "\x0f\x53\x61", + [0x1003] = "\x0f\x53\x62", [0x1004] = "\x0f\x53\x63", + [0x1005] = "\x0f\x53\x64", [0x1006] = "\x0f\x53\x65", + [0x1007] = "\x0f\x53\x67", [0x1008] = "\x0f\x53\x68", + [0x1009] = "\x0f\x53\x69", [0x100a] = "\x0f\x53\x6a", + [0x100b] = "\x0f\x53\x6b", [0x100c] = "\x0f\x53\x6c", + [0x100d] = "\x0f\x53\x6d", [0x100e] = "\x0f\x53\x6e", + [0x100f] = "\x0f\x53\x6f", [0x1010] = "\x07\x2c\x5e", + [0x1012] = "\x07\x2c\x5d", [0x1013] = "\x07\x2c\x62", + [0x1039] = "\x07\x2c\x69", [0x103a] = "\x05\x53\x6d", + [0x103b] = "\x0f\x55\x74", [0x103c] = "\x05\x53\x76", + [0x103d] = "\x04\x55\x7a", [0x103f] = "\x05\x5b\x26", + [0x1041] = "\x05\x5b\x21", [0x1042] = "\x07\x37\x2d", + [0x1043] = "\x07\x37\x2a", [0x1044] = "\x07\x37\x34", + [0x1045] = "\x07\x37\x35", [0x1046] = "\x05\x5b\x23", + [0x1047] = "\x05\x5b\x2b", [0x1048] = "\x04\x55\x71", + [0x1049] = "\x04\x55\x76", [0x104b] = "\x05\x5b\x28", + [0x104c] = "\x04\x55\x77", [0x104d] = "\x07\x37\x2b", + [0x104e] = "\x05\x5b\x29", [0x104f] = "\x04\x55\x79", + [0x1050] = "\x07\x37\x31", [0x1051] = "\x07\x37\x2f", + [0x1052] = "\x07\x37\x2e", [0x1053] = "\x05\x5b\x24", + [0x1055] = "\x04\x55\x75", [0x1056] = "\x07\x37\x32", + [0x1057] = "\x07\x37\x39", [0x105f] = "\x0f\x59\x59", + [0x1060] = "\x0f\x59\x5a", [0x1061] = "\x0f\x59\x5e", + [0x1062] = "\x0f\x59\x5f", [0x1063] = "\x0f\x59\x60", + [0x1064] = "\x0f\x59\x61", [0x1065] = "\x0f\x59\x62", + [0x1068] = "\x07\x37\x38", [0x1069] = "\x07\x37\x30", + [0x106b] = "\x07\x37\x36", [0x106c] = "\x07\x37\x33", + [0x106d] = "\x07\x37\x2c", [0x108a] = "\x05\x5b\x2a", + [0x108b] = "\x05\x5b\x22", [0x108f] = "\x04\x5a\x74", + [0x1090] = "\x07\x3f\x29", [0x1091] = "\x07\x3f\x2f", + [0x1092] = "\x04\x5a\x73", [0x1093] = "\x05\x61\x3e", + [0x1094] = "\x07\x3f\x2b", [0x1095] = "\x04\x5a\x71", + [0x1096] = "\x04\x5a\x76", [0x1097] = "\x05\x61\x46", + [0x1098] = "\x04\x5a\x77", [0x1099] = "\x05\x67\x58", + [0x109a] = "\x05\x61\x3d", [0x109b] = "\x05\x61\x44", + [0x109c] = "\x05\x61\x43", [0x109d] = "\x04\x5a\x78", + [0x109e] = "\x07\x3f\x2a", [0x109f] = "\x04\x5a\x75", + [0x10a0] = "\x04\x5a\x79", [0x10a1] = "\x04\x5a\x72", + [0x10a2] = "\x07\x3f\x2e", [0x10a3] = "\x05\x61\x41", + [0x10a4] = "\x07\x3f\x27", [0x10a5] = "\x07\x3f\x2d", + [0x10a6] = "\x07\x3f\x28", [0x10a7] = "\x07\x3f\x26", + [0x10a8] = "\x07\x3f\x2c", [0x10a9] = "\x05\x61\x42", + [0x10ac] = "\x0f\x59\x5b", [0x10b6] = "\x07\x3f\x25", + [0x10b7] = "\x0f\x5e\x3c", [0x10b8] = "\x0f\x5e\x3d", + [0x10b9] = "\x0f\x5e\x3e", [0x10ba] = "\x0f\x5e\x3f", + [0x10bb] = "\x0f\x5e\x40", [0x10bc] = "\x0f\x5e\x43", + [0x10bd] = "\x0f\x5e\x44", [0x10be] = "\x0f\x5e\x45", + [0x10dd] = "\x05\x61\x3f", [0x10df] = "\x0f\x5e\x4a", + [0x10e0] = "\x07\x46\x34", [0x10e1] = "\x04\x5f\x4e", + [0x10e2] = "\x05\x5b\x25", [0x10e3] = "\x07\x46\x3b", + [0x10e4] = "\x07\x46\x39", [0x10e5] = "\x07\x46\x37", + [0x10e6] = "\x05\x67\x5a", [0x10e7] = "\x05\x67\x5b", + [0x10e8] = "\x04\x5f\x50", [0x10e9] = "\x05\x67\x57", + [0x10ea] = "\x07\x46\x3c", [0x10eb] = "\x07\x46\x3a", + [0x10ec] = "\x07\x46\x33", [0x10ed] = "\x07\x46\x35", + [0x10ee] = "\x07\x46\x38", [0x10ef] = "\x04\x5f\x4f", + [0x10f2] = "\x0f\x5e\x46", [0x10f7] = "\x05\x67\x5c", + [0x1102] = "\x0f\x62\x22", [0x1103] = "\x0f\x62\x23", + [0x1104] = "\x0f\x62\x24", [0x1105] = "\x0f\x62\x25", + [0x1106] = "\x0f\x62\x26", [0x1108] = "\x07\x46\x36", + [0x1109] = "\x07\x47\x6e", [0x110a] = "\x07\x46\x3d", + [0x1111] = "\x05\x6b\x74", [0x1112] = "\x05\x6b\x75", + [0x1113] = "\x05\x6b\x6f", [0x1114] = "\x05\x6b\x71", + [0x1115] = "\x05\x6b\x70", [0x1116] = "\x07\x4d\x47", + [0x1117] = "\x07\x4d\x49", [0x1118] = "\x07\x4d\x4b", + [0x1119] = "\x07\x4d\x48", [0x111a] = "\x07\x4d\x46", + [0x111b] = "\x07\x4d\x4a", [0x111c] = "\x0f\x64\x7d", + [0x111d] = "\x0f\x64\x7e", [0x111e] = "\x0f\x65\x21", + [0x1120] = "\x07\x4d\x4c", [0x1123] = "\x05\x6b\x72", + [0x1131] = "\x07\x52\x7b", [0x1132] = "\x05\x6f\x71", + [0x1133] = "\x05\x6f\x6f", [0x1134] = "\x04\x66\x35", + [0x1135] = "\x05\x6f\x6e", [0x1136] = "\x07\x52\x7a", + [0x1137] = "\x05\x6f\x6d", [0x1138] = "\x07\x52\x7e", + [0x1139] = "\x05\x6f\x70", [0x113a] = "\x07\x52\x7d", + [0x113b] = "\x04\x66\x33", [0x113f] = "\x0f\x67\x47", + [0x1140] = "\x0f\x67\x48", [0x1141] = "\x05\x6f\x6c", + [0x1154] = "\x07\x52\x7c", [0x1157] = "\x07\x57\x59", + [0x1158] = "\x07\x57\x5a", [0x1159] = "\x05\x73\x33", + [0x115a] = "\x07\x57\x55", [0x115c] = "\x07\x57\x56", + [0x115d] = "\x07\x57\x57", [0x115e] = "\x07\x57\x54", + [0x115f] = "\x07\x57\x52", [0x1161] = "\x07\x57\x53", + [0x1163] = "\x0f\x69\x3c", [0x116d] = "\x04\x68\x64", + [0x116e] = "\x07\x57\x58", [0x1170] = "\x07\x5b\x49", + [0x1171] = "\x07\x5b\x4a", [0x1172] = "\x0f\x6a\x4d", + [0x1176] = "\x07\x5b\x48", [0x1178] = "\x07\x5b\x47", + [0x1179] = "\x05\x77\x55", [0x117a] = "\x05\x77\x56", + [0x117b] = "\x04\x6b\x66", [0x117c] = "\x07\x5e\x53", + [0x117d] = "\x07\x5e\x55", [0x117e] = "\x07\x5e\x54", + [0x117f] = "\x07\x5e\x56", [0x1183] = "\x0f\x6b\x43", + [0x1185] = "\x05\x75\x67", [0x1186] = "\x05\x79\x23", + [0x1189] = "\x04\x6c\x6d", [0x118a] = "\x0f\x6c\x22", + [0x118b] = "\x0f\x6c\x23", [0x118e] = "\x07\x60\x6b", + [0x118f] = "\x07\x62\x32", [0x1190] = "\x07\x62\x31", + [0x1191] = "\x07\x62\x34", [0x1192] = "\x07\x62\x30", + [0x1193] = "\x07\x62\x33", [0x119b] = "\x0f\x6c\x79", + [0x119c] = "\x0f\x6c\x7a", [0x11a0] = "\x06\x21\x65", + [0x11a1] = "\x06\x21\x66", [0x11a2] = "\x0f\x21\x37", + [0x11a3] = "\x04\x21\x6e", [0x11a7] = "\x06\x24\x32", + [0x11a8] = "\x06\x24\x30", [0x11a9] = "\x05\x22\x49", + [0x11ad] = "\x0f\x22\x35", [0x11b0] = "\x06\x24\x31", + [0x11b2] = "\x06\x24\x2f", [0x11b3] = "\x05\x22\x48", + [0x11b4] = "\x06\x26\x54", [0x11b5] = "\x06\x2f\x5c", + [0x11b6] = "\x06\x2a\x3e", [0x11b7] = "\x06\x26\x58", + [0x11b8] = "\x06\x26\x56", [0x11b9] = "\x0f\x23\x4f", + [0x11ba] = "\x0f\x23\x51", [0x11bb] = "\x06\x26\x57", + [0x11bc] = "\x06\x26\x59", [0x11be] = "\x06\x26\x5c", + [0x11bf] = "\x06\x26\x5a", [0x11c1] = "\x06\x26\x51", + [0x11c3] = "\x06\x26\x55", [0x11c4] = "\x06\x26\x52", + [0x11c6] = "\x06\x26\x53", [0x11c7] = "\x06\x26\x5b", + [0x11c8] = "\x05\x25\x55", [0x11c9] = "\x06\x2a\x43", + [0x11ca] = "\x06\x2a\x40", [0x11cb] = "\x06\x2a\x41", + [0x11cc] = "\x06\x2a\x42", [0x11cd] = "\x06\x2d\x34", + [0x11ce] = "\x06\x2a\x3f", [0x11d0] = "\x0f\x26\x24", + [0x11d1] = "\x05\x25\x54", [0x11d2] = "\x05\x28\x54", + [0x11d3] = "\x05\x28\x56", [0x11d4] = "\x06\x2f\x60", + [0x11d5] = "\x06\x2f\x5f", [0x11d6] = "\x05\x28\x55", + [0x11d7] = "\x06\x2f\x5b", [0x11d8] = "\x06\x2f\x5e", + [0x11db] = "\x06\x2f\x5d", [0x11e0] = "\x05\x2c\x5c", + [0x11e1] = "\x06\x36\x2d", [0x11e2] = "\x06\x36\x2a", + [0x11e3] = "\x06\x36\x2c", [0x11e4] = "\x05\x2c\x5b", + [0x11ea] = "\x06\x36\x2b", [0x11f0] = "\x05\x2c\x5d", + [0x11f1] = "\x05\x31\x56", [0x11f2] = "\x06\x3e\x25", + [0x11f3] = "\x05\x31\x57", [0x11f4] = "\x06\x3e\x24", + [0x11f5] = "\x06\x3e\x23", [0x11f6] = "\x06\x3e\x22", + [0x11f7] = "\x05\x31\x54", [0x11f9] = "\x06\x3e\x26", + [0x11fc] = "\x05\x37\x33", [0x11fd] = "\x06\x47\x40", + [0x11fe] = "\x06\x47\x41", [0x11ff] = "\x05\x37\x31", + [0x1200] = "\x05\x31\x55", [0x1202] = "\x0f\x39\x72", + [0x1203] = "\x0f\x39\x73", [0x1204] = "\x0f\x39\x74", + [0x1207] = "\x06\x47\x42", [0x1209] = "\x05\x37\x32", + [0x120a] = "\x05\x3e\x40", [0x120b] = "\x06\x51\x45", + [0x120c] = "\x05\x3e\x41", [0x120d] = "\x06\x51\x47", + [0x120e] = "\x06\x51\x48", [0x120f] = "\x05\x3e\x42", + [0x1211] = "\x06\x51\x46", [0x1214] = "\x0f\x40\x65", + [0x1215] = "\x06\x5b\x54", [0x1216] = "\x06\x5b\x58", + [0x1217] = "\x05\x45\x24", [0x1218] = "\x06\x5b\x55", + [0x1219] = "\x06\x5b\x5a", [0x121a] = "\x06\x5b\x56", + [0x121b] = "\x0f\x47\x2e", [0x121c] = "\x0f\x47\x2f", + [0x121d] = "\x0f\x47\x30", [0x121f] = "\x06\x5b\x57", + [0x1222] = "\x07\x21\x65", [0x1223] = "\x07\x21\x66", + [0x1224] = "\x07\x21\x64", [0x1225] = "\x0f\x4d\x7b", + [0x122a] = "\x04\x4f\x75", [0x122c] = "\x0f\x53\x73", + [0x122d] = "\x07\x37\x3c", [0x122e] = "\x07\x37\x3a", + [0x1231] = "\x07\x37\x3b", [0x1233] = "\x04\x5f\x51", + [0x1237] = "\x07\x4d\x4d", [0x1238] = "\x07\x53\x22", + [0x1239] = "\x07\x53\x21", [0x123c] = "\x04\x21\x48", + [0x123e] = "\x05\x21\x44", [0x123f] = "\x06\x22\x60", + [0x1241] = "\x0f\x21\x51", [0x1242] = "\x0f\x21\x52", + [0x1244] = "\x06\x22\x61", [0x124a] = "\x06\x24\x35", + [0x124c] = "\x0f\x22\x36", [0x124d] = "\x0f\x22\x37", + [0x1252] = "\x06\x24\x34", [0x1258] = "\x06\x26\x6a", + [0x1259] = "\x04\x23\x60", [0x125a] = "\x06\x26\x66", + [0x125b] = "\x06\x26\x62", [0x125d] = "\x06\x26\x5e", + [0x125f] = "\x06\x26\x69", [0x1260] = "\x06\x26\x5d", + [0x1261] = "\x06\x26\x65", [0x1262] = "\x06\x26\x67", + [0x1263] = "\x0f\x23\x53", [0x1264] = "\x0f\x23\x54", + [0x1265] = "\x0f\x23\x56", [0x1266] = "\x0f\x23\x58", + [0x1267] = "\x0f\x23\x5a", [0x126c] = "\x06\x26\x60", + [0x1271] = "\x06\x26\x63", [0x1272] = "\x06\x26\x68", + [0x1273] = "\x06\x26\x64", [0x1275] = "\x06\x26\x61", + [0x1276] = "\x06\x26\x5f", [0x1277] = "\x05\x23\x5e", + [0x127c] = "\x0f\x23\x59", [0x1280] = "\x05\x23\x5d", + [0x1281] = "\x05\x23\x5f", [0x1282] = "\x05\x23\x60", + [0x1283] = "\x05\x23\x61", [0x1284] = "\x04\x25\x6a", + [0x1285] = "\x06\x2a\x4f", [0x1286] = "\x06\x2a\x47", + [0x1287] = "\x06\x2a\x4c", [0x1288] = "\x06\x2a\x46", + [0x1289] = "\x04\x25\x67", [0x128a] = "\x06\x2a\x4a", + [0x128b] = "\x04\x25\x6c", [0x128c] = "\x06\x2a\x48", + [0x128d] = "\x05\x25\x56", [0x128e] = "\x06\x2a\x51", + [0x128f] = "\x06\x26\x41", [0x1293] = "\x06\x2a\x49", + [0x1294] = "\x0f\x26\x26", [0x1295] = "\x0f\x26\x27", + [0x1296] = "\x0f\x26\x28", [0x1297] = "\x0f\x26\x29", + [0x1298] = "\x0f\x26\x2a", [0x1299] = "\x0f\x26\x30", + [0x129a] = "\x0f\x26\x31", [0x129b] = "\x0f\x26\x2c", + [0x129c] = "\x0f\x26\x2b", [0x129e] = "\x04\x25\x6b", + [0x12a0] = "\x0f\x26\x2f", [0x12a1] = "\x0f\x26\x2e", + [0x12a3] = "\x06\x2a\x50", [0x12a4] = "\x06\x2a\x4b", + [0x12a5] = "\x06\x2a\x4d", [0x12a6] = "\x06\x2a\x4e", + [0x12a7] = "\x0f\x26\x32", [0x12a8] = "\x0f\x26\x25", + [0x12ac] = "\x06\x2a\x45", [0x12b4] = "\x06\x2a\x44", + [0x12b5] = "\x05\x25\x57", [0x12b6] = "\x05\x28\x5b", + [0x12b7] = "\x06\x2f\x62", [0x12b8] = "\x05\x28\x57", + [0x12b9] = "\x06\x2f\x64", [0x12ba] = "\x06\x2f\x61", + [0x12bb] = "\x05\x28\x58", [0x12bc] = "\x04\x28\x5f", + [0x12bd] = "\x06\x2f\x6b", [0x12be] = "\x06\x2f\x63", + [0x12c4] = "\x0f\x29\x7a", [0x12c5] = "\x0f\x29\x68", + [0x12c6] = "\x0f\x29\x69", [0x12c7] = "\x0f\x29\x6b", + [0x12c8] = "\x0f\x29\x6c", [0x12c9] = "\x0f\x29\x6d", + [0x12ca] = "\x0f\x29\x6e", [0x12cb] = "\x0f\x29\x6f", + [0x12cc] = "\x0f\x29\x70", [0x12cd] = "\x0f\x29\x72", + [0x12ce] = "\x0f\x29\x73", [0x12cf] = "\x0f\x29\x75", + [0x12d0] = "\x0f\x29\x76", [0x12d1] = "\x0f\x29\x77", + [0x12d2] = "\x0f\x29\x78", [0x12d3] = "\x0f\x29\x79", + [0x12d4] = "\x0f\x29\x7b", [0x12d5] = "\x0f\x29\x7c", + [0x12d6] = "\x0f\x29\x7d", [0x12d8] = "\x06\x2f\x6a", + [0x12db] = "\x06\x2f\x6c", [0x12dc] = "\x06\x34\x31", + [0x12dd] = "\x06\x2f\x67", [0x12de] = "\x06\x2f\x68", + [0x12e0] = "\x06\x2f\x66", [0x12e3] = "\x0f\x29\x74", + [0x12e7] = "\x05\x28\x5d", [0x12e8] = "\x05\x28\x5a", + [0x12e9] = "\x05\x28\x5e", [0x12ea] = "\x05\x28\x5c", + [0x12eb] = "\x05\x28\x59", [0x12ec] = "\x05\x2c\x5e", + [0x12ed] = "\x04\x2c\x32", [0x12ee] = "\x06\x36\x34", + [0x12ef] = "\x04\x2c\x30", [0x12f0] = "\x04\x2c\x34", + [0x12f1] = "\x06\x36\x32", [0x12f2] = "\x06\x36\x3c", + [0x12f3] = "\x06\x36\x36", [0x12f4] = "\x06\x36\x3d", + [0x12f5] = "\x06\x36\x3e", [0x12f6] = "\x06\x36\x31", + [0x12f7] = "\x06\x36\x2e", [0x12f8] = "\x06\x36\x3a", + [0x1301] = "\x06\x36\x2f", [0x1306] = "\x06\x36\x40", + [0x1307] = "\x0f\x2e\x55", [0x1308] = "\x0f\x2e\x56", + [0x1309] = "\x0f\x2e\x57", [0x130a] = "\x0f\x2e\x58", + [0x130b] = "\x0f\x2e\x59", [0x130c] = "\x0f\x2e\x5a", + [0x130d] = "\x0f\x2e\x5b", [0x130e] = "\x0f\x2e\x5e", + [0x130f] = "\x0f\x2e\x5f", [0x1310] = "\x0f\x2e\x60", + [0x1312] = "\x06\x36\x30", [0x1313] = "\x06\x36\x3f", + [0x1315] = "\x06\x36\x37", [0x1316] = "\x06\x36\x38", + [0x1317] = "\x06\x36\x39", [0x1318] = "\x05\x2c\x60", + [0x1319] = "\x06\x36\x3b", [0x131a] = "\x0f\x2e\x5d", + [0x131c] = "\x0f\x2e\x61", [0x131f] = "\x06\x36\x33", + [0x1324] = "\x05\x2c\x5f", [0x1325] = "\x05\x2c\x62", + [0x1326] = "\x04\x30\x7d", [0x1327] = "\x06\x3e\x27", + [0x1329] = "\x04\x30\x7c", [0x132a] = "\x05\x31\x5d", + [0x132b] = "\x06\x3e\x34", [0x132c] = "\x06\x3e\x2d", + [0x132d] = "\x05\x31\x5b", [0x132e] = "\x06\x3e\x2a", + [0x132f] = "\x05\x2c\x61", [0x1330] = "\x06\x3e\x33", + [0x1331] = "\x06\x3e\x30", [0x1332] = "\x05\x31\x5a", + [0x1333] = "\x04\x31\x22", [0x1334] = "\x04\x31\x23", + [0x1336] = "\x0f\x33\x4f", [0x1337] = "\x0f\x33\x5b", + [0x1338] = "\x06\x3e\x2e", [0x1339] = "\x06\x3e\x2f", + [0x133b] = "\x0f\x33\x4e", [0x133c] = "\x0f\x33\x50", + [0x133d] = "\x0f\x33\x51", [0x133e] = "\x0f\x33\x52", + [0x133f] = "\x0f\x33\x53", [0x1340] = "\x0f\x33\x54", + [0x1341] = "\x0f\x33\x55", [0x1342] = "\x0f\x33\x56", + [0x1343] = "\x0f\x33\x58", [0x1344] = "\x0f\x33\x59", + [0x1345] = "\x0f\x33\x5a", [0x1346] = "\x0f\x33\x5e", + [0x1347] = "\x0f\x33\x5f", [0x1348] = "\x0f\x33\x60", + [0x1349] = "\x0f\x33\x61", [0x134a] = "\x05\x31\x5c", + [0x134f] = "\x06\x3e\x31", [0x1351] = "\x06\x3e\x35", + [0x1353] = "\x04\x30\x7e", [0x1354] = "\x06\x3e\x28", + [0x1355] = "\x06\x3e\x29", [0x1360] = "\x05\x31\x58", + [0x1361] = "\x05\x31\x59", [0x1364] = "\x03\x3a\x4f", + [0x1365] = "\x06\x51\x4e", [0x1366] = "\x04\x36\x72", + [0x1367] = "\x06\x47\x47", [0x1368] = "\x04\x36\x6a", + [0x1369] = "\x06\x47\x45", [0x136a] = "\x04\x36\x70", + [0x136b] = "\x04\x36\x6c", [0x136c] = "\x06\x47\x4b", + [0x136d] = "\x06\x47\x50", [0x136e] = "\x04\x36\x75", + [0x136f] = "\x06\x47\x44", [0x1370] = "\x06\x47\x46", + [0x1371] = "\x06\x47\x4d", [0x1372] = "\x05\x37\x34", + [0x1373] = "\x06\x3e\x32", [0x1374] = "\x06\x47\x4f", + [0x1375] = "\x04\x3c\x5a", [0x1376] = "\x05\x37\x39", + [0x1377] = "\x04\x36\x73", [0x137a] = "\x06\x4f\x6d", + [0x137b] = "\x05\x37\x38", [0x137c] = "\x0f\x39\x76", + [0x137d] = "\x0f\x39\x78", [0x137e] = "\x0f\x39\x79", + [0x137f] = "\x0f\x39\x7a", [0x1380] = "\x0f\x39\x7b", + [0x1381] = "\x0f\x39\x7c", [0x1382] = "\x0f\x3a\x21", + [0x1383] = "\x0f\x3a\x22", [0x1384] = "\x0f\x3a\x23", + [0x1385] = "\x0f\x3a\x24", [0x1386] = "\x0f\x3a\x25", + [0x1387] = "\x0f\x3a\x26", [0x138e] = "\x06\x47\x51", + [0x1390] = "\x06\x47\x4a", [0x1395] = "\x06\x47\x49", + [0x1396] = "\x04\x36\x74", [0x1397] = "\x06\x47\x4c", + [0x139a] = "\x0f\x39\x75", [0x13a7] = "\x05\x37\x37", + [0x13a8] = "\x05\x37\x3a", [0x13a9] = "\x06\x47\x48", + [0x13aa] = "\x05\x37\x35", [0x13ab] = "\x05\x37\x36", + [0x13ac] = "\x05\x37\x3b", [0x13ae] = "\x05\x3e\x46", + [0x13af] = "\x06\x51\x56", [0x13b0] = "\x06\x51\x4b", + [0x13b1] = "\x06\x51\x55", [0x13b3] = "\x05\x3e\x4d", + [0x13b4] = "\x04\x3c\x54", [0x13b5] = "\x06\x5b\x62", + [0x13b6] = "\x06\x51\x52", [0x13b7] = "\x05\x3e\x4c", + [0x13b8] = "\x06\x51\x51", [0x13b9] = "\x05\x3e\x44", + [0x13ba] = "\x05\x3e\x4b", [0x13bb] = "\x05\x3e\x43", + [0x13bc] = "\x06\x51\x54", [0x13bd] = "\x06\x51\x50", + [0x13be] = "\x05\x3e\x49", [0x13bf] = "\x05\x3e\x4a", + [0x13c0] = "\x04\x3c\x55", [0x13c1] = "\x05\x3e\x47", + [0x13c2] = "\x06\x51\x49", [0x13c3] = "\x06\x51\x4c", + [0x13c5] = "\x0f\x39\x77", [0x13c7] = "\x06\x51\x53", + [0x13c8] = "\x06\x51\x4d", [0x13c9] = "\x0f\x40\x66", + [0x13ca] = "\x0f\x40\x67", [0x13cb] = "\x0f\x40\x68", + [0x13cc] = "\x0f\x40\x6a", [0x13cd] = "\x0f\x40\x6b", + [0x13ce] = "\x0f\x40\x6c", [0x13cf] = "\x0f\x40\x6d", + [0x13d0] = "\x0f\x40\x6e", [0x13d1] = "\x0f\x40\x6f", + [0x13d2] = "\x0f\x40\x70", [0x13d3] = "\x0f\x40\x71", + [0x13d4] = "\x0f\x40\x72", [0x13d5] = "\x0f\x40\x73", + [0x13d7] = "\x06\x51\x4f", [0x13e9] = "\x05\x3e\x4e", + [0x13ea] = "\x05\x3e\x48", [0x13eb] = "\x05\x3e\x45", + [0x13ed] = "\x05\x45\x29", [0x13ee] = "\x05\x45\x28", + [0x13ef] = "\x05\x45\x27", [0x13f0] = "\x06\x5b\x5c", + [0x13f1] = "\x04\x42\x5c", [0x13f2] = "\x06\x5b\x64", + [0x13f3] = "\x06\x5b\x66", [0x13f4] = "\x06\x5b\x61", + [0x13f5] = "\x05\x45\x2a", [0x13f6] = "\x06\x5b\x60", + [0x13f7] = "\x05\x45\x26", [0x13f8] = "\x06\x5b\x67", + [0x13ff] = "\x0f\x47\x32", [0x1400] = "\x0f\x47\x33", + [0x1401] = "\x0f\x47\x34", [0x1402] = "\x0f\x47\x35", + [0x1403] = "\x0f\x47\x36", [0x1404] = "\x0f\x47\x37", + [0x1405] = "\x0f\x47\x39", [0x1406] = "\x0f\x47\x3a", + [0x1407] = "\x0f\x47\x3b", [0x1408] = "\x0f\x47\x3c", + [0x1409] = "\x06\x5b\x5d", [0x140a] = "\x0f\x47\x38", + [0x140e] = "\x06\x5b\x6b", [0x1410] = "\x06\x5b\x63", + [0x1411] = "\x06\x5b\x53", [0x1413] = "\x0f\x47\x31", + [0x1414] = "\x04\x42\x5a", [0x1415] = "\x06\x5b\x65", + [0x141b] = "\x06\x5b\x5e", [0x141d] = "\x05\x45\x25", + [0x141e] = "\x05\x45\x2b", [0x141f] = "\x07\x21\x72", + [0x1420] = "\x04\x49\x34", [0x1421] = "\x04\x49\x35", + [0x1422] = "\x07\x21\x6f", [0x1423] = "\x04\x49\x36", + [0x1424] = "\x05\x4c\x4b", [0x1425] = "\x05\x4c\x4c", + [0x1426] = "\x07\x21\x6b", [0x1428] = "\x07\x21\x78", + [0x1429] = "\x04\x49\x37", [0x142a] = "\x07\x21\x77", + [0x142b] = "\x07\x21\x74", [0x142d] = "\x0f\x4e\x21", + [0x1430] = "\x05\x4c\x4d", [0x1431] = "\x05\x4c\x4f", + [0x1432] = "\x07\x21\x67", [0x1433] = "\x07\x21\x75", + [0x1434] = "\x0f\x4d\x7c", [0x1435] = "\x0f\x4d\x7d", + [0x1436] = "\x0f\x4e\x26", [0x1437] = "\x0f\x4e\x27", + [0x1438] = "\x0f\x4e\x28", [0x1439] = "\x0f\x4e\x29", + [0x143a] = "\x0f\x4e\x2a", [0x143b] = "\x0f\x4e\x2b", + [0x143c] = "\x0f\x4e\x2d", [0x143e] = "\x07\x21\x6c", + [0x1442] = "\x07\x21\x6d", [0x1447] = "\x07\x21\x6e", + [0x1448] = "\x05\x4c\x71", [0x1449] = "\x07\x21\x73", + [0x144a] = "\x07\x21\x71", [0x144f] = "\x07\x21\x69", + [0x1451] = "\x0f\x4d\x7e", [0x1452] = "\x0f\x4e\x24", + [0x1454] = "\x0f\x4e\x23", [0x1458] = "\x05\x4c\x4e", + [0x1459] = "\x05\x4c\x4a", [0x145a] = "\x05\x4c\x48", + [0x145b] = "\x07\x21\x68", [0x145c] = "\x05\x4c\x49", + [0x145e] = "\x07\x2c\x6f", [0x145f] = "\x07\x2c\x71", + [0x1460] = "\x07\x2c\x6c", [0x1461] = "\x04\x4f\x77", + [0x1462] = "\x04\x4f\x7a", [0x1463] = "\x04\x4f\x79", + [0x1464] = "\x07\x2c\x6d", [0x1466] = "\x07\x2c\x70", + [0x1468] = "\x0f\x4e\x2c", [0x146b] = "\x0f\x53\x74", + [0x146c] = "\x0f\x53\x76", [0x146d] = "\x0f\x53\x78", + [0x1476] = "\x05\x53\x7a", [0x1477] = "\x07\x2c\x72", + [0x1478] = "\x05\x53\x7b", [0x1479] = "\x05\x53\x79", + [0x147a] = "\x07\x34\x6f", [0x1482] = "\x07\x2c\x73", + [0x1486] = "\x07\x2c\x6e", [0x1487] = "\x0f\x53\x77", + [0x1488] = "\x04\x4f\x76", [0x1489] = "\x07\x37\x43", + [0x148a] = "\x04\x55\x7d", [0x148b] = "\x07\x37\x3d", + [0x148c] = "\x05\x5b\x2e", [0x148d] = "\x07\x37\x3f", + [0x148e] = "\x07\x37\x44", [0x1490] = "\x07\x37\x42", + [0x1492] = "\x07\x37\x45", [0x1493] = "\x05\x5b\x2c", + [0x1496] = "\x07\x2c\x74", [0x1499] = "\x0f\x59\x64", + [0x149a] = "\x0f\x59\x65", [0x149b] = "\x0f\x59\x66", + [0x149c] = "\x0f\x59\x67", [0x149d] = "\x0f\x59\x68", + [0x149e] = "\x0f\x59\x69", [0x149f] = "\x0f\x59\x6a", + [0x14a0] = "\x0f\x59\x6b", [0x14a1] = "\x07\x3e\x6c", + [0x14a3] = "\x07\x37\x40", [0x14a4] = "\x07\x37\x41", + [0x14a8] = "\x04\x55\x7e", [0x14af] = "\x05\x5b\x2f", + [0x14b0] = "\x07\x3f\x34", [0x14b1] = "\x05\x61\x47", + [0x14b2] = "\x07\x37\x3e", [0x14b3] = "\x05\x61\x49", + [0x14b4] = "\x07\x3f\x33", [0x14b5] = "\x0f\x5e\x47", + [0x14b7] = "\x0f\x5e\x48", [0x14b8] = "\x0f\x5e\x49", + [0x14b9] = "\x0f\x5e\x4b", [0x14ba] = "\x0f\x5e\x4d", + [0x14bb] = "\x0f\x5e\x4e", [0x14bc] = "\x07\x3f\x31", + [0x14bd] = "\x07\x3f\x32", [0x14c9] = "\x05\x5b\x30", + [0x14ca] = "\x05\x61\x48", [0x14cc] = "\x0f\x62\x28", + [0x14cd] = "\x05\x61\x4a", [0x14d0] = "\x07\x46\x42", + [0x14d1] = "\x07\x46\x3f", [0x14d2] = "\x05\x67\x5d", + [0x14d3] = "\x07\x46\x47", [0x14d4] = "\x07\x46\x41", + [0x14d5] = "\x0f\x5e\x4c", [0x14d7] = "\x0f\x62\x27", + [0x14d9] = "\x07\x46\x43", [0x14da] = "\x07\x46\x46", + [0x14db] = "\x07\x4a\x3b", [0x14e3] = "\x07\x46\x40", + [0x14e4] = "\x07\x3f\x35", [0x14e6] = "\x04\x63\x33", + [0x14e7] = "\x0f\x65\x22", [0x14e9] = "\x0f\x65\x23", + [0x14ea] = "\x0f\x65\x24", [0x14eb] = "\x0f\x65\x25", + [0x14ec] = "\x07\x4d\x4e", [0x14f0] = "\x05\x6b\x77", + [0x14f1] = "\x07\x53\x28", [0x14f2] = "\x04\x66\x36", + [0x14f3] = "\x07\x53\x24", [0x14f4] = "\x07\x53\x23", + [0x14f5] = "\x07\x53\x27", [0x14f6] = "\x07\x53\x25", + [0x14f8] = "\x05\x6f\x74", [0x14f9] = "\x0f\x67\x49", + [0x14fa] = "\x0f\x67\x4a", [0x14fb] = "\x0f\x67\x4c", + [0x14fc] = "\x07\x53\x26", [0x14fd] = "\x0f\x67\x4b", + [0x14ff] = "\x05\x6f\x72", [0x1501] = "\x05\x6f\x73", + [0x1502] = "\x07\x57\x5b", [0x1504] = "\x0f\x69\x3d", + [0x1507] = "\x05\x73\x34", [0x1508] = "\x07\x57\x5d", + [0x1509] = "\x05\x73\x35", [0x150a] = "\x07\x5b\x4b", + [0x150b] = "\x07\x57\x5c", [0x150f] = "\x07\x5e\x57", + [0x1515] = "\x05\x77\x57", [0x1517] = "\x05\x7b\x5f", + [0x1518] = "\x07\x65\x5a", [0x1519] = "\x07\x66\x42", + [0x151a] = "\x07\x66\x4f", [0x151b] = "\x06\x22\x62", + [0x151d] = "\x06\x2f\x6d", [0x151e] = "\x06\x26\x6b", + [0x151f] = "\x06\x2a\x52", [0x1520] = "\x0f\x29\x7e", + [0x1521] = "\x0f\x2a\x21", [0x1522] = "\x05\x2c\x64", + [0x1524] = "\x06\x36\x42", [0x1525] = "\x06\x2f\x6e", + [0x1526] = "\x06\x36\x41", [0x1527] = "\x0f\x2e\x62", + [0x1528] = "\x05\x2c\x63", [0x152c] = "\x06\x3e\x36", + [0x152d] = "\x0f\x33\x62", [0x152f] = "\x06\x47\x52", + [0x1530] = "\x06\x51\x59", [0x1535] = "\x06\x51\x58", + [0x1536] = "\x06\x5b\x6a", [0x1537] = "\x06\x64\x7a", + [0x1539] = "\x06\x5b\x68", [0x153a] = "\x0f\x47\x3d", + [0x153b] = "\x06\x5b\x69", [0x153c] = "\x07\x21\x7a", + [0x153d] = "\x07\x21\x79", [0x153e] = "\x07\x2c\x75", + [0x1545] = "\x07\x3f\x36", [0x1546] = "\x07\x43\x3f", + [0x154a] = "\x0f\x5e\x4f", [0x154b] = "\x07\x3f\x37", + [0x154c] = "\x07\x46\x48", [0x154d] = "\x07\x46\x49", + [0x154e] = "\x07\x48\x3b", [0x1551] = "\x07\x57\x5e", + [0x1552] = "\x05\x21\x2f", [0x1553] = "\x06\x22\x63", + [0x1555] = "\x06\x24\x37", [0x1556] = "\x06\x24\x36", + [0x1558] = "\x06\x26\x6c", [0x1559] = "\x0f\x23\x5c", + [0x155a] = "\x06\x36\x43", [0x155b] = "\x06\x3e\x37", + [0x155c] = "\x06\x3e\x38", [0x155d] = "\x06\x51\x5a", + [0x155e] = "\x06\x24\x39", [0x155f] = "\x06\x24\x38", + [0x1560] = "\x05\x23\x64", [0x1561] = "\x05\x23\x63", + [0x1562] = "\x04\x25\x6f", [0x1563] = "\x06\x2a\x53", + [0x1564] = "\x0f\x26\x34", [0x1566] = "\x0f\x2e\x63", + [0x1567] = "\x05\x31\x5e", [0x1568] = "\x06\x3e\x39", + [0x1569] = "\x06\x3e\x3c", [0x156a] = "\x05\x2c\x65", + [0x156b] = "\x06\x3e\x3b", [0x156c] = "\x06\x3e\x3a", + [0x156e] = "\x05\x3e\x4f", [0x156f] = "\x06\x51\x5c", + [0x1571] = "\x0f\x40\x74", [0x1572] = "\x06\x5b\x6c", + [0x1573] = "\x0f\x47\x3e", [0x1574] = "\x06\x5b\x6d", + [0x1576] = "\x05\x4c\x50", [0x1577] = "\x0f\x4e\x2f", + [0x1578] = "\x0f\x53\x79", [0x1579] = "\x07\x2c\x76", + [0x157a] = "\x07\x2c\x77", [0x157b] = "\x07\x37\x46", + [0x157c] = "\x07\x46\x4a", [0x157d] = "\x07\x3f\x3a", + [0x157e] = "\x07\x3f\x38", [0x157f] = "\x07\x3f\x39", + [0x1580] = "\x07\x46\x4b", [0x1581] = "\x07\x4d\x4f", + [0x1584] = "\x06\x22\x64", [0x1586] = "\x06\x22\x65", + [0x1588] = "\x06\x24\x3a", [0x158a] = "\x06\x26\x6e", + [0x158b] = "\x06\x26\x6d", [0x158d] = "\x06\x2a\x54", + [0x158f] = "\x0f\x25\x42", [0x1591] = "\x05\x28\x5f", + [0x1592] = "\x05\x2c\x68", [0x1593] = "\x04\x2c\x35", + [0x1594] = "\x05\x2c\x67", [0x1595] = "\x06\x36\x46", + [0x1597] = "\x06\x36\x45", [0x1598] = "\x0f\x2e\x64", + [0x1599] = "\x0f\x2e\x65", [0x159a] = "\x06\x36\x47", + [0x159c] = "\x05\x2c\x69", [0x159d] = "\x04\x31\x24", + [0x159e] = "\x05\x31\x61", [0x159f] = "\x06\x3e\x3d", + [0x15a2] = "\x05\x31\x5f", [0x15a3] = "\x05\x31\x60", + [0x15a4] = "\x05\x31\x62", [0x15a5] = "\x0f\x33\x63", + [0x15a9] = "\x06\x47\x54", [0x15aa] = "\x05\x37\x3e", + [0x15ab] = "\x05\x37\x42", [0x15ac] = "\x05\x37\x40", + [0x15ad] = "\x05\x37\x41", [0x15ae] = "\x0f\x3a\x27", + [0x15af] = "\x05\x3e\x50", [0x15b0] = "\x06\x51\x5d", + [0x15b2] = "\x05\x3e\x52", [0x15b3] = "\x05\x3e\x51", + [0x15b4] = "\x06\x51\x5f", [0x15b6] = "\x04\x42\x61", + [0x15b7] = "\x06\x5b\x6f", [0x15b8] = "\x06\x5b\x70", + [0x15b9] = "\x06\x5b\x6e", [0x15bd] = "\x05\x45\x2c", + [0x15be] = "\x05\x45\x2e", [0x15bf] = "\x07\x21\x7b", + [0x15c1] = "\x05\x4c\x51", [0x15c3] = "\x07\x3f\x3b", + [0x15c6] = "\x05\x5b\x31", [0x15c8] = "\x05\x5b\x32", + [0x15cc] = "\x07\x46\x4c", [0x15d2] = "\x06\x21\x67", + [0x15d3] = "\x06\x21\x68", [0x15d4] = "\x0f\x21\x38", + [0x15d5] = "\x06\x22\x66", [0x15d8] = "\x0f\x21\x53", + [0x15d9] = "\x0f\x21\x54", [0x15dc] = "\x05\x21\x76", + [0x15dd] = "\x06\x24\x3c", [0x15de] = "\x04\x22\x54", + [0x15df] = "\x06\x24\x3f", [0x15e0] = "\x06\x24\x40", + [0x15e1] = "\x06\x24\x3e", [0x15e2] = "\x06\x24\x3d", + [0x15e3] = "\x0f\x21\x6b", [0x15e5] = "\x04\x23\x63", + [0x15e6] = "\x04\x23\x64", [0x15e8] = "\x04\x23\x66", + [0x15e9] = "\x0f\x23\x5d", [0x15ea] = "\x0f\x23\x5e", + [0x15eb] = "\x0f\x23\x5f", [0x15ec] = "\x0f\x23\x60", + [0x15ed] = "\x0f\x23\x61", [0x15ee] = "\x0f\x23\x62", + [0x15ef] = "\x0f\x23\x63", [0x15f0] = "\x06\x26\x70", + [0x15f4] = "\x06\x26\x6f", [0x15f7] = "\x04\x25\x76", + [0x15f8] = "\x05\x25\x5a", [0x15f9] = "\x04\x25\x74", + [0x15fa] = "\x06\x2a\x55", [0x15fb] = "\x06\x2a\x56", + [0x15fc] = "\x04\x28\x63", [0x15fd] = "\x06\x2a\x5c", + [0x15fe] = "\x06\x2a\x58", [0x15ff] = "\x06\x2a\x59", + [0x1600] = "\x0f\x26\x36", [0x1601] = "\x0f\x26\x37", + [0x1602] = "\x06\x2a\x5a", [0x1604] = "\x06\x2a\x5b", + [0x1605] = "\x06\x2a\x5d", [0x1606] = "\x04\x25\x79", + [0x1609] = "\x06\x2a\x57", [0x160b] = "\x06\x29\x39", + [0x160c] = "\x04\x28\x64", [0x160d] = "\x04\x28\x62", + [0x160e] = "\x05\x28\x61", [0x160f] = "\x05\x28\x62", + [0x1610] = "\x05\x28\x60", [0x1612] = "\x0f\x2a\x23", + [0x1614] = "\x0f\x2a\x24", [0x1615] = "\x0f\x2a\x25", + [0x1616] = "\x0f\x2a\x26", [0x1617] = "\x0f\x2a\x28", + [0x1618] = "\x0f\x2a\x29", [0x1619] = "\x0f\x2a\x27", + [0x161a] = "\x0f\x2a\x22", [0x161d] = "\x05\x2c\x6c", + [0x161f] = "\x06\x36\x48", [0x1620] = "\x06\x36\x4b", + [0x1622] = "\x05\x2c\x6a", [0x1623] = "\x05\x2c\x6d", + [0x1624] = "\x0f\x2e\x67", [0x1625] = "\x0f\x2e\x68", + [0x1626] = "\x0f\x2e\x69", [0x1629] = "\x06\x36\x4a", + [0x162b] = "\x04\x2c\x37", [0x1630] = "\x05\x2c\x6b", + [0x1632] = "\x05\x31\x64", [0x1633] = "\x0f\x2e\x66", + [0x1634] = "\x04\x2c\x36", [0x1635] = "\x06\x3e\x41", + [0x1636] = "\x06\x3e\x44", [0x1637] = "\x03\x34\x7e", + [0x1638] = "\x06\x3e\x3e", [0x1639] = "\x06\x3e\x43", + [0x163a] = "\x06\x3e\x40", [0x163b] = "\x06\x3e\x45", + [0x163c] = "\x06\x3e\x3f", [0x163d] = "\x0f\x33\x64", + [0x163f] = "\x0f\x33\x65", [0x1641] = "\x04\x31\x27", + [0x1644] = "\x05\x31\x63", [0x1647] = "\x04\x3c\x5e", + [0x1648] = "\x06\x47\x58", [0x1649] = "\x06\x47\x5b", + [0x164a] = "\x06\x47\x5d", [0x164c] = "\x06\x47\x5a", + [0x164d] = "\x0f\x3a\x28", [0x164e] = "\x06\x47\x55", + [0x164f] = "\x06\x47\x5c", [0x1650] = "\x05\x37\x43", + [0x1655] = "\x06\x47\x59", [0x1656] = "\x04\x36\x7a", + [0x1657] = "\x04\x36\x78", [0x1658] = "\x05\x37\x44", + [0x165a] = "\x06\x47\x57", [0x165c] = "\x06\x51\x60", + [0x165d] = "\x06\x51\x61", [0x1660] = "\x04\x3c\x5d", + [0x1662] = "\x0f\x40\x76", [0x1668] = "\x05\x3e\x53", + [0x1669] = "\x05\x3e\x54", [0x166a] = "\x05\x3e\x55", + [0x166b] = "\x06\x5b\x72", [0x166c] = "\x04\x42\x63", + [0x166d] = "\x05\x45\x2f", [0x166e] = "\x04\x42\x62", + [0x166f] = "\x0f\x47\x3f", [0x1670] = "\x0f\x47\x40", + [0x1671] = "\x0f\x47\x41", [0x1672] = "\x06\x5b\x71", + [0x1676] = "\x05\x45\x30", [0x1677] = "\x04\x49\x38", + [0x1678] = "\x07\x22\x22", [0x1679] = "\x07\x21\x7c", + [0x167a] = "\x07\x22\x21", [0x167b] = "\x07\x2c\x7c", + [0x167c] = "\x07\x21\x7e", [0x167d] = "\x05\x4c\x53", + [0x167e] = "\x0f\x4e\x31", [0x167f] = "\x0f\x4e\x32", + [0x1680] = "\x07\x21\x7d", [0x1681] = "\x04\x42\x64", + [0x1685] = "\x05\x4c\x52", [0x1686] = "\x07\x2c\x7d", + [0x1687] = "\x05\x53\x7c", [0x1688] = "\x07\x2c\x78", + [0x1689] = "\x07\x2c\x79", [0x168a] = "\x04\x56\x21", + [0x168b] = "\x0f\x53\x7a", [0x168c] = "\x07\x2c\x7a", + [0x168f] = "\x07\x37\x48", [0x1690] = "\x07\x37\x47", + [0x1691] = "\x05\x5b\x33", [0x1696] = "\x04\x56\x2e", + [0x1697] = "\x04\x5a\x7b", [0x1698] = "\x0f\x62\x29", + [0x169b] = "\x05\x6b\x78", [0x169c] = "\x07\x53\x29", + [0x169e] = "\x0f\x69\x3e", [0x16a0] = "\x05\x75\x68", + [0x16a3] = "\x0f\x6b\x44", [0x16a4] = "\x07\x5e\x58", + [0x16a5] = "\x0f\x6c\x5f", [0x16a8] = "\x05\x21\x62", + [0x16aa] = "\x0f\x21\x55", [0x16ab] = "\x0f\x21\x56", + [0x16af] = "\x06\x24\x41", [0x16b0] = "\x04\x22\x58", + [0x16b1] = "\x06\x24\x42", [0x16b2] = "\x0f\x22\x39", + [0x16b3] = "\x0f\x22\x3a", [0x16b4] = "\x0f\x22\x3b", + [0x16b5] = "\x0f\x22\x3c", [0x16b8] = "\x04\x22\x57", + [0x16b9] = "\x05\x22\x4b", [0x16ba] = "\x06\x24\x43", + [0x16bb] = "\x05\x22\x4a", [0x16bc] = "\x06\x26\x74", + [0x16bd] = "\x04\x23\x68", [0x16be] = "\x04\x23\x6b", + [0x16bf] = "\x0f\x23\x64", [0x16c3] = "\x0f\x23\x66", + [0x16c4] = "\x0f\x23\x68", [0x16c5] = "\x0f\x23\x69", + [0x16c6] = "\x0f\x23\x6b", [0x16c7] = "\x0f\x23\x6c", + [0x16c8] = "\x0f\x23\x6d", [0x16c9] = "\x0f\x23\x6e", + [0x16ca] = "\x0f\x23\x6f", [0x16cb] = "\x0f\x23\x65", + [0x16cd] = "\x06\x26\x72", [0x16ce] = "\x06\x26\x73", + [0x16d0] = "\x06\x26\x75", [0x16d2] = "\x06\x26\x71", + [0x16d3] = "\x0f\x23\x6a", [0x16d5] = "\x0f\x23\x67", + [0x16d6] = "\x05\x23\x66", [0x16d7] = "\x05\x23\x67", + [0x16d8] = "\x05\x23\x65", [0x16d9] = "\x04\x25\x7c", + [0x16da] = "\x06\x2a\x61", [0x16db] = "\x06\x2a\x60", + [0x16dc] = "\x05\x25\x60", [0x16dd] = "\x04\x25\x7a", + [0x16de] = "\x05\x25\x5e", [0x16df] = "\x04\x25\x7d", + [0x16e0] = "\x05\x25\x5b", [0x16e1] = "\x05\x25\x5c", + [0x16e2] = "\x04\x25\x7e", [0x16e5] = "\x0f\x26\x3a", + [0x16e9] = "\x0f\x26\x3b", [0x16ea] = "\x0f\x26\x3e", + [0x16eb] = "\x0f\x26\x3f", [0x16ec] = "\x0f\x26\x40", + [0x16ed] = "\x0f\x26\x41", [0x16ee] = "\x0f\x26\x42", + [0x16ef] = "\x0f\x26\x43", [0x16f0] = "\x0f\x26\x45", + [0x16f1] = "\x0f\x26\x46", [0x16f2] = "\x0f\x26\x47", + [0x16f3] = "\x0f\x26\x48", [0x16f4] = "\x0f\x26\x49", + [0x16f7] = "\x06\x2a\x5f", [0x16f9] = "\x06\x2a\x5e", + [0x16fa] = "\x0f\x26\x44", [0x16fb] = "\x0f\x26\x3c", + [0x16fc] = "\x0f\x26\x3d", [0x16fd] = "\x05\x25\x62", + [0x16fe] = "\x05\x25\x5f", [0x1700] = "\x05\x25\x63", + [0x1701] = "\x05\x25\x61", [0x1702] = "\x04\x28\x68", + [0x1703] = "\x05\x28\x64", [0x1704] = "\x06\x2f\x76", + [0x1705] = "\x06\x2f\x78", [0x1706] = "\x06\x2f\x79", + [0x1707] = "\x04\x28\x65", [0x1708] = "\x04\x28\x6b", + [0x1709] = "\x05\x28\x66", [0x170a] = "\x04\x28\x66", + [0x170b] = "\x05\x28\x63", [0x170c] = "\x06\x2f\x70", + [0x170d] = "\x06\x2f\x7b", [0x170e] = "\x06\x2f\x74", + [0x170f] = "\x05\x28\x6b", [0x1711] = "\x06\x2f\x7e", + [0x1712] = "\x0f\x2a\x2d", [0x1713] = "\x0f\x2a\x2e", + [0x1714] = "\x0f\x2a\x2f", [0x1715] = "\x0f\x2a\x30", + [0x1716] = "\x0f\x2a\x31", [0x1717] = "\x0f\x2a\x32", + [0x1718] = "\x0f\x2a\x33", [0x1719] = "\x0f\x2a\x34", + [0x171b] = "\x06\x2f\x73", [0x171c] = "\x06\x2f\x77", + [0x171d] = "\x04\x28\x6c", [0x171f] = "\x06\x2f\x75", + [0x1720] = "\x06\x2f\x7a", [0x1721] = "\x06\x2f\x6f", + [0x1723] = "\x06\x2f\x7d", [0x1725] = "\x05\x28\x69", + [0x1726] = "\x04\x28\x6a", [0x1727] = "\x05\x28\x6a", + [0x1728] = "\x05\x28\x67", [0x1729] = "\x06\x2f\x71", + [0x172a] = "\x06\x2f\x7c", [0x172b] = "\x05\x28\x65", + [0x172c] = "\x05\x28\x68", [0x172d] = "\x06\x2f\x72", + [0x172e] = "\x03\x30\x53", [0x172f] = "\x05\x2c\x70", + [0x1730] = "\x06\x36\x4f", [0x1731] = "\x05\x2c\x72", + [0x1732] = "\x05\x2c\x75", [0x1733] = "\x05\x2c\x6f", + [0x1734] = "\x06\x36\x55", [0x1735] = "\x05\x2c\x6e", + [0x1736] = "\x06\x36\x56", [0x1738] = "\x06\x36\x50", + [0x173d] = "\x06\x36\x51", [0x173e] = "\x0f\x2e\x6c", + [0x173f] = "\x0f\x2e\x6e", [0x1740] = "\x0f\x2e\x70", + [0x1741] = "\x0f\x2e\x71", [0x1742] = "\x0f\x2e\x73", + [0x1743] = "\x0f\x2e\x74", [0x1744] = "\x0f\x2e\x75", + [0x1745] = "\x0f\x2e\x76", [0x1746] = "\x0f\x2e\x77", + [0x1747] = "\x0f\x2e\x79", [0x174a] = "\x06\x36\x54", + [0x174c] = "\x06\x36\x4e", [0x174d] = "\x05\x2c\x71", + [0x174f] = "\x06\x36\x53", [0x1751] = "\x06\x36\x52", + [0x1757] = "\x0f\x2e\x6f", [0x1758] = "\x0f\x2e\x72", + [0x1759] = "\x05\x2c\x77", [0x175a] = "\x05\x2c\x74", + [0x175b] = "\x05\x2c\x73", [0x175c] = "\x05\x2c\x76", + [0x175d] = "\x05\x2c\x78", [0x175e] = "\x06\x3e\x4c", + [0x175f] = "\x06\x3e\x52", [0x1760] = "\x06\x3e\x46", + [0x1761] = "\x06\x3e\x47", [0x1762] = "\x05\x31\x6a", + [0x1763] = "\x06\x3e\x48", [0x1764] = "\x06\x3e\x49", + [0x1765] = "\x06\x3e\x4f", [0x1766] = "\x05\x31\x69", + [0x1767] = "\x05\x31\x6d", [0x1768] = "\x06\x3e\x4d", + [0x1769] = "\x04\x31\x2b", [0x176a] = "\x06\x3e\x4e", + [0x176b] = "\x05\x31\x6b", [0x1772] = "\x06\x3e\x53", + [0x1775] = "\x0f\x33\x68", [0x1776] = "\x0f\x33\x69", + [0x1777] = "\x0f\x33\x6a", [0x1778] = "\x0f\x33\x6b", + [0x1779] = "\x0f\x33\x6c", [0x177a] = "\x0f\x33\x6d", + [0x177b] = "\x0f\x33\x6e", [0x177c] = "\x0f\x33\x6f", + [0x177d] = "\x0f\x33\x71", [0x177e] = "\x0f\x33\x72", + [0x177f] = "\x0f\x33\x74", [0x1780] = "\x0f\x33\x75", + [0x1781] = "\x0f\x33\x76", [0x1782] = "\x0f\x33\x77", + [0x1783] = "\x0f\x33\x78", [0x1784] = "\x0f\x33\x79", + [0x1785] = "\x0f\x33\x7a", [0x1786] = "\x0f\x33\x7b", + [0x1787] = "\x0f\x33\x7c", [0x1788] = "\x0f\x33\x7d", + [0x1789] = "\x0f\x33\x7e", [0x178a] = "\x0f\x34\x21", + [0x178b] = "\x0f\x34\x22", [0x178c] = "\x0f\x34\x23", + [0x178e] = "\x0f\x33\x70", [0x1790] = "\x06\x3e\x51", + [0x1791] = "\x04\x31\x2a", [0x1793] = "\x06\x3e\x4b", + [0x1794] = "\x06\x3e\x4a", [0x1798] = "\x05\x31\x66", + [0x1799] = "\x05\x31\x67", [0x179a] = "\x05\x31\x68", + [0x179b] = "\x05\x31\x65", [0x179c] = "\x04\x36\x7b", + [0x179d] = "\x06\x47\x62", [0x179e] = "\x04\x36\x7c", + [0x179f] = "\x05\x37\x5a", [0x17a0] = "\x06\x47\x5f", + [0x17a1] = "\x04\x37\x21", [0x17a2] = "\x05\x37\x48", + [0x17a3] = "\x05\x37\x59", [0x17a4] = "\x06\x47\x64", + [0x17a6] = "\x06\x47\x66", [0x17a7] = "\x05\x37\x4f", + [0x17a8] = "\x06\x47\x65", [0x17a9] = "\x06\x47\x60", + [0x17aa] = "\x05\x37\x50", [0x17ab] = "\x05\x37\x49", + [0x17ac] = "\x05\x37\x57", [0x17ad] = "\x05\x37\x54", + [0x17ae] = "\x05\x37\x47", [0x17af] = "\x05\x37\x4b", + [0x17b0] = "\x0f\x3a\x29", [0x17b6] = "\x0f\x3a\x2b", + [0x17b7] = "\x0f\x3a\x2c", [0x17b8] = "\x0f\x3a\x2d", + [0x17b9] = "\x0f\x3a\x2e", [0x17ba] = "\x0f\x3a\x2f", + [0x17bb] = "\x0f\x3a\x30", [0x17bc] = "\x0f\x3a\x32", + [0x17bd] = "\x0f\x3a\x33", [0x17be] = "\x0f\x3a\x34", + [0x17bf] = "\x0f\x3a\x36", [0x17c0] = "\x0f\x3a\x37", + [0x17c1] = "\x0f\x3a\x38", [0x17c2] = "\x0f\x3a\x39", + [0x17c3] = "\x0f\x3a\x3a", [0x17c4] = "\x0f\x3a\x3e", + [0x17c5] = "\x0f\x3a\x3f", [0x17c6] = "\x0f\x3a\x41", + [0x17c7] = "\x0f\x3a\x42", [0x17c8] = "\x0f\x3a\x43", + [0x17c9] = "\x0f\x3a\x44", [0x17ca] = "\x0f\x3a\x45", + [0x17ce] = "\x0f\x3a\x3b", [0x17d1] = "\x05\x37\x56", + [0x17d4] = "\x06\x47\x63", [0x17d5] = "\x05\x37\x58", + [0x17d6] = "\x06\x47\x5e", [0x17d9] = "\x0f\x3a\x3d", + [0x17da] = "\x0f\x3a\x40", [0x17db] = "\x0f\x3a\x31", + [0x17dc] = "\x0f\x3a\x2a", [0x17dd] = "\x05\x37\x45", + [0x17de] = "\x05\x3e\x56", [0x17df] = "\x05\x37\x53", + [0x17e0] = "\x05\x37\x4c", [0x17e1] = "\x05\x37\x52", + [0x17e2] = "\x05\x37\x51", [0x17e3] = "\x05\x37\x4a", + [0x17e4] = "\x05\x37\x4d", [0x17e5] = "\x05\x37\x55", + [0x17e6] = "\x06\x47\x67", [0x17e7] = "\x0f\x33\x67", + [0x17e8] = "\x05\x3e\x5f", [0x17e9] = "\x05\x3e\x5a", + [0x17ea] = "\x05\x3e\x5d", [0x17eb] = "\x05\x3e\x57", + [0x17ec] = "\x04\x3c\x65", [0x17ed] = "\x05\x3e\x59", + [0x17ee] = "\x06\x51\x63", [0x17ef] = "\x04\x3c\x62", + [0x17f0] = "\x04\x3c\x60", [0x17f1] = "\x06\x51\x67", + [0x17f2] = "\x06\x51\x65", [0x17f3] = "\x06\x5b\x7c", + [0x17f4] = "\x05\x3e\x5c", [0x17f7] = "\x05\x3e\x5b", + [0x17fd] = "\x06\x51\x66", [0x17fe] = "\x0f\x40\x78", + [0x17ff] = "\x0f\x40\x79", [0x1800] = "\x0f\x40\x7a", + [0x1801] = "\x0f\x40\x7c", [0x1802] = "\x0f\x40\x7d", + [0x1803] = "\x0f\x40\x7e", [0x1804] = "\x0f\x41\x22", + [0x1805] = "\x0f\x41\x23", [0x1808] = "\x06\x51\x62", + [0x180b] = "\x06\x51\x64", [0x180e] = "\x0f\x40\x77", + [0x1810] = "\x06\x51\x68", [0x1811] = "\x05\x3e\x58", + [0x1812] = "\x05\x3e\x5e", [0x1813] = "\x05\x3e\x60", + [0x1814] = "\x06\x51\x6a", [0x1815] = "\x0f\x41\x21", + [0x1817] = "\x04\x42\x70", [0x1819] = "\x05\x45\x32", + [0x181a] = "\x04\x42\x6a", [0x181b] = "\x06\x5b\x7b", + [0x181c] = "\x04\x42\x71", [0x181d] = "\x06\x5b\x73", + [0x181e] = "\x05\x45\x34", [0x181f] = "\x07\x22\x29", + [0x1820] = "\x04\x42\x73", [0x1822] = "\x06\x5b\x75", + [0x1824] = "\x0f\x47\x48", [0x1825] = "\x04\x42\x6f", + [0x1826] = "\x05\x45\x37", [0x1827] = "\x04\x42\x6e", + [0x182b] = "\x0f\x47\x47", [0x182c] = "\x0f\x47\x49", + [0x182d] = "\x0f\x47\x4a", [0x182e] = "\x0f\x47\x4b", + [0x182f] = "\x0f\x47\x4c", [0x1830] = "\x0f\x47\x4d", + [0x1831] = "\x0f\x47\x4e", [0x1832] = "\x0f\x47\x4f", + [0x1833] = "\x0f\x47\x50", [0x1834] = "\x0f\x47\x51", + [0x1835] = "\x0f\x47\x52", [0x1836] = "\x0f\x47\x54", + [0x1837] = "\x06\x5b\x74", [0x1838] = "\x06\x5b\x78", + [0x183d] = "\x04\x42\x72", [0x1842] = "\x04\x42\x65", + [0x1843] = "\x06\x5b\x76", [0x1845] = "\x0f\x47\x53", + [0x1848] = "\x05\x45\x33", [0x1849] = "\x05\x45\x36", + [0x184a] = "\x05\x45\x35", [0x184b] = "\x07\x22\x26", + [0x184c] = "\x05\x45\x31", [0x184d] = "\x06\x5b\x77", + [0x184f] = "\x05\x4c\x5b", [0x1850] = "\x05\x4c\x59", + [0x1851] = "\x04\x49\x39", [0x1852] = "\x05\x4c\x56", + [0x1853] = "\x07\x22\x2f", [0x1854] = "\x05\x4c\x57", + [0x1855] = "\x04\x49\x3f", [0x1856] = "\x04\x49\x3b", + [0x1857] = "\x07\x22\x2c", [0x1859] = "\x04\x49\x3e", + [0x185a] = "\x07\x22\x25", [0x185b] = "\x06\x5b\x79", + [0x185c] = "\x07\x22\x24", [0x185d] = "\x0f\x4e\x3a", + [0x185f] = "\x07\x37\x51", [0x1860] = "\x0f\x47\x45", + [0x1865] = "\x05\x4c\x54", [0x1868] = "\x05\x4c\x5c", + [0x1869] = "\x0f\x4e\x33", [0x186a] = "\x0f\x4e\x34", + [0x186b] = "\x0f\x4e\x35", [0x186c] = "\x0f\x4e\x36", + [0x186d] = "\x0f\x4e\x37", [0x186e] = "\x0f\x4e\x38", + [0x186f] = "\x0f\x4e\x39", [0x1870] = "\x0f\x4e\x3b", + [0x1871] = "\x0f\x4e\x3d", [0x1872] = "\x0f\x4e\x3e", + [0x1873] = "\x0f\x4e\x3f", [0x1874] = "\x0f\x4e\x40", + [0x1875] = "\x0f\x4e\x41", [0x1876] = "\x0f\x4e\x42", + [0x1877] = "\x0f\x4e\x44", [0x1879] = "\x06\x5b\x7a", + [0x187c] = "\x07\x22\x27", [0x187d] = "\x07\x22\x2e", + [0x187e] = "\x07\x22\x2d", [0x187f] = "\x07\x22\x28", + [0x1882] = "\x07\x22\x23", [0x1883] = "\x0f\x4e\x45", + [0x1884] = "\x0f\x4e\x43", [0x1885] = "\x0f\x4e\x3c", + [0x1886] = "\x05\x4c\x5a", [0x1887] = "\x05\x4c\x55", + [0x1888] = "\x04\x49\x3d", [0x1889] = "\x07\x22\x2a", + [0x188a] = "\x05\x4c\x58", [0x188b] = "\x07\x22\x2b", + [0x188d] = "\x0f\x54\x25", [0x1891] = "\x05\x54\x28", + [0x1892] = "\x05\x54\x23", [0x1893] = "\x07\x2d\x25", + [0x1894] = "\x07\x2c\x7e", [0x1895] = "\x05\x54\x29", + [0x1896] = "\x05\x54\x26", [0x1897] = "\x07\x2d\x21", + [0x1898] = "\x04\x4f\x7e", [0x1899] = "\x07\x2d\x28", + [0x189a] = "\x05\x54\x22", [0x189b] = "\x07\x2d\x2b", + [0x189c] = "\x05\x53\x7d", [0x189d] = "\x07\x2d\x2a", + [0x18a3] = "\x07\x2d\x2c", [0x18a4] = "\x0f\x53\x7b", + [0x18a5] = "\x0f\x53\x7c", [0x18a6] = "\x0f\x53\x7d", + [0x18a7] = "\x0f\x53\x7e", [0x18a8] = "\x0f\x54\x22", + [0x18a9] = "\x0f\x54\x23", [0x18aa] = "\x0f\x54\x24", + [0x18ab] = "\x0f\x54\x26", [0x18ac] = "\x0f\x54\x27", + [0x18ad] = "\x0f\x54\x2b", [0x18ae] = "\x0f\x54\x2c", + [0x18b1] = "\x05\x53\x7e", [0x18b2] = "\x07\x2d\x26", + [0x18b4] = "\x07\x2d\x27", [0x18b5] = "\x07\x2d\x23", + [0x18b7] = "\x07\x2d\x22", [0x18b8] = "\x07\x2d\x24", + [0x18be] = "\x0f\x54\x21", [0x18bf] = "\x0f\x54\x28", + [0x18c0] = "\x05\x54\x27", [0x18c1] = "\x05\x54\x21", + [0x18c2] = "\x05\x54\x25", [0x18c3] = "\x07\x2d\x29", + [0x18c5] = "\x07\x37\x4b", [0x18c6] = "\x07\x37\x54", + [0x18c7] = "\x07\x37\x4f", [0x18c8] = "\x04\x4f\x7d", + [0x18c9] = "\x07\x37\x4d", [0x18cb] = "\x04\x56\x23", + [0x18cc] = "\x07\x37\x53", [0x18cd] = "\x07\x37\x4a", + [0x18ce] = "\x05\x5b\x36", [0x18cf] = "\x05\x5b\x34", + [0x18d0] = "\x07\x37\x4c", [0x18d1] = "\x07\x37\x4e", + [0x18d2] = "\x07\x37\x50", [0x18d4] = "\x05\x5b\x35", + [0x18d5] = "\x04\x56\x25", [0x18da] = "\x0f\x59\x6c", + [0x18db] = "\x0f\x59\x6d", [0x18dc] = "\x0f\x59\x6e", + [0x18dd] = "\x0f\x59\x6f", [0x18de] = "\x0f\x59\x70", + [0x18df] = "\x0f\x59\x71", [0x18e1] = "\x07\x37\x52", + [0x18e4] = "\x07\x37\x55", [0x18e9] = "\x07\x37\x49", + [0x18ea] = "\x05\x61\x4b", [0x18eb] = "\x04\x5a\x7c", + [0x18ed] = "\x07\x3f\x3f", [0x18ee] = "\x05\x61\x4c", + [0x18ef] = "\x05\x61\x4d", [0x18f0] = "\x07\x3f\x3e", + [0x18f1] = "\x07\x3f\x40", [0x18f2] = "\x0f\x5e\x50", + [0x18f3] = "\x0f\x5e\x51", [0x18f4] = "\x0f\x5e\x52", + [0x18f5] = "\x0f\x5e\x54", [0x18f7] = "\x07\x3f\x3d", + [0x18f8] = "\x07\x3f\x41", [0x18fa] = "\x0f\x5e\x53", + [0x18fc] = "\x07\x3f\x3c", [0x18fd] = "\x05\x67\x5f", + [0x18fe] = "\x04\x5f\x53", [0x18ff] = "\x07\x46\x4d", + [0x1900] = "\x07\x46\x52", [0x1901] = "\x07\x46\x50", + [0x1902] = "\x0f\x5e\x55", [0x1906] = "\x0f\x62\x2a", + [0x1907] = "\x0f\x62\x2b", [0x1908] = "\x07\x46\x4e", + [0x190b] = "\x05\x67\x61", [0x190c] = "\x05\x67\x60", + [0x190d] = "\x0f\x5f\x73", [0x190f] = "\x07\x4d\x51", + [0x1912] = "\x05\x6b\x79", [0x1915] = "\x0f\x65\x26", + [0x1916] = "\x05\x6b\x7a", [0x1917] = "\x05\x6b\x7b", + [0x1918] = "\x07\x53\x2a", [0x1919] = "\x05\x6f\x76", + [0x191a] = "\x07\x53\x2b", [0x191b] = "\x05\x6f\x75", + [0x191c] = "\x0f\x67\x4d", [0x191d] = "\x0f\x67\x4e", + [0x1921] = "\x07\x57\x62", [0x1922] = "\x05\x73\x36", + [0x1923] = "\x07\x57\x61", [0x1924] = "\x07\x57\x63", + [0x1925] = "\x07\x57\x5f", [0x1926] = "\x0f\x69\x3f", + [0x1928] = "\x07\x57\x60", [0x1929] = "\x07\x57\x64", + [0x192a] = "\x0f\x69\x40", [0x192b] = "\x05\x75\x69", + [0x192c] = "\x07\x5b\x4c", [0x192e] = "\x07\x5e\x5a", + [0x192f] = "\x07\x5e\x5b", [0x1930] = "\x0f\x6b\x45", + [0x1931] = "\x07\x5e\x59", [0x1932] = "\x07\x5e\x5c", + [0x1934] = "\x0f\x6c\x24", [0x1936] = "\x05\x79\x24", + [0x1937] = "\x0f\x6c\x4a", [0x1939] = "\x07\x63\x4d", + [0x193a] = "\x05\x7a\x65", [0x193c] = "\x04\x21\x33", + [0x193e] = "\x06\x22\x68", [0x193f] = "\x05\x21\x63", + [0x1940] = "\x06\x22\x69", [0x1941] = "\x0f\x21\x58", + [0x1942] = "\x0f\x21\x57", [0x1943] = "\x06\x24\x45", + [0x1945] = "\x06\x24\x44", [0x1946] = "\x06\x26\x76", + [0x1947] = "\x06\x26\x77", [0x1948] = "\x05\x23\x6a", + [0x1949] = "\x04\x23\x6c", [0x194a] = "\x0f\x23\x70", + [0x194d] = "\x05\x23\x69", [0x194e] = "\x04\x28\x6f", + [0x194f] = "\x06\x30\x24", [0x1950] = "\x06\x2a\x63", + [0x1951] = "\x06\x2a\x62", [0x1952] = "\x0f\x26\x4a", + [0x1953] = "\x0f\x26\x4b", [0x1954] = "\x0f\x26\x4c", + [0x1955] = "\x0f\x26\x4d", [0x1956] = "\x0f\x26\x4f", + [0x1957] = "\x06\x2a\x64", [0x1958] = "\x0f\x26\x4e", + [0x195b] = "\x06\x30\x23", [0x195c] = "\x06\x30\x21", + [0x195d] = "\x06\x30\x26", [0x195e] = "\x06\x30\x25", + [0x1961] = "\x0f\x2a\x35", [0x1962] = "\x0f\x2a\x36", + [0x1963] = "\x0f\x2a\x37", [0x1966] = "\x06\x30\x22", + [0x1968] = "\x06\x36\x59", [0x1969] = "\x05\x2c\x79", + [0x196a] = "\x06\x36\x58", [0x196b] = "\x0f\x2e\x7a", + [0x196c] = "\x0f\x2e\x7b", [0x196d] = "\x05\x2c\x7a", + [0x196e] = "\x0f\x33\x66", [0x196f] = "\x0f\x34\x24", + [0x1970] = "\x0f\x34\x25", [0x1971] = "\x0f\x34\x26", + [0x1972] = "\x0f\x34\x27", [0x1976] = "\x05\x37\x5c", + [0x1977] = "\x06\x47\x69", [0x1979] = "\x05\x37\x5b", + [0x197a] = "\x06\x47\x6a", [0x197b] = "\x0f\x3a\x47", + [0x197d] = "\x06\x47\x68", [0x197e] = "\x0f\x3a\x46", + [0x1983] = "\x04\x3c\x66", [0x1984] = "\x04\x3c\x68", + [0x1985] = "\x06\x51\x6d", [0x1986] = "\x05\x3e\x62", + [0x1987] = "\x0f\x41\x25", [0x1989] = "\x0f\x41\x26", + [0x198b] = "\x06\x51\x6b", [0x198c] = "\x06\x51\x6c", + [0x198e] = "\x05\x3e\x61", [0x198f] = "\x04\x3c\x69", + [0x1991] = "\x06\x5b\x7d", [0x1992] = "\x0f\x47\x55", + [0x1993] = "\x0f\x47\x56", [0x1995] = "\x05\x45\x38", + [0x1997] = "\x04\x49\x41", [0x1998] = "\x04\x49\x42", + [0x199a] = "\x0f\x4e\x46", [0x199d] = "\x05\x4c\x5d", + [0x199e] = "\x07\x2d\x2f", [0x199f] = "\x07\x2d\x2e", + [0x19a0] = "\x07\x2d\x31", [0x19a1] = "\x07\x2d\x32", + [0x19a2] = "\x05\x54\x2a", [0x19a3] = "\x07\x2d\x30", + [0x19a4] = "\x0f\x54\x2d", [0x19a5] = "\x0f\x54\x2e", + [0x19a9] = "\x07\x37\x56", [0x19ad] = "\x07\x4d\x52", + [0x19af] = "\x0f\x62\x2c", [0x19b0] = "\x0f\x62\x2d", + [0x19b5] = "\x05\x6b\x7c", [0x19b8] = "\x0f\x6c\x60", + [0x19b9] = "\x06\x21\x69", [0x19bc] = "\x05\x21\x64", + [0x19bd] = "\x06\x24\x46", [0x19be] = "\x06\x24\x49", + [0x19bf] = "\x06\x24\x4a", [0x19c2] = "\x04\x22\x5a", + [0x19c3] = "\x0f\x22\x3d", [0x19c4] = "\x0f\x22\x3e", + [0x19c5] = "\x0f\x22\x3f", [0x19c6] = "\x0f\x22\x40", + [0x19c7] = "\x0f\x22\x41", [0x19c8] = "\x06\x24\x47", + [0x19cb] = "\x06\x26\x7e", [0x19cc] = "\x06\x26\x7d", + [0x19cd] = "\x04\x23\x6e", [0x19ce] = "\x06\x26\x7b", + [0x19cf] = "\x06\x26\x7c", [0x19d1] = "\x0f\x23\x72", + [0x19d6] = "\x05\x25\x65", [0x19d7] = "\x05\x25\x64", + [0x19d8] = "\x06\x2a\x66", [0x19d9] = "\x05\x25\x66", + [0x19da] = "\x06\x2a\x67", [0x19dc] = "\x06\x2a\x68", + [0x19dd] = "\x0f\x26\x51", [0x19de] = "\x0f\x26\x52", + [0x19df] = "\x0f\x26\x54", [0x19e0] = "\x0f\x26\x55", + [0x19e2] = "\x06\x2a\x65", [0x19e3] = "\x0f\x26\x53", + [0x19e9] = "\x05\x28\x6c", [0x19ea] = "\x06\x30\x28", + [0x19eb] = "\x06\x30\x2a", [0x19ec] = "\x05\x28\x6d", + [0x19ed] = "\x04\x28\x71", [0x19ee] = "\x04\x28\x72", + [0x19ef] = "\x04\x28\x73", [0x19f0] = "\x06\x30\x2b", + [0x19f1] = "\x06\x30\x27", [0x19f4] = "\x06\x30\x29", + [0x19f5] = "\x0f\x2a\x38", [0x19f6] = "\x0f\x2a\x3a", + [0x19f7] = "\x0f\x2a\x3b", [0x19f8] = "\x0f\x2a\x3c", + [0x19fa] = "\x06\x30\x2c", [0x19fb] = "\x06\x30\x2d", + [0x1a00] = "\x04\x2c\x4a", [0x1a01] = "\x06\x36\x61", + [0x1a02] = "\x04\x2c\x45", [0x1a03] = "\x04\x2c\x44", + [0x1a04] = "\x04\x2c\x43", [0x1a05] = "\x04\x2c\x47", + [0x1a06] = "\x06\x36\x64", [0x1a07] = "\x06\x36\x65", + [0x1a08] = "\x06\x36\x5f", [0x1a09] = "\x06\x36\x5e", + [0x1a0a] = "\x05\x2c\x7d", [0x1a0d] = "\x05\x2d\x22", + [0x1a0e] = "\x06\x36\x5b", [0x1a0f] = "\x06\x36\x62", + [0x1a10] = "\x0f\x2e\x7c", [0x1a11] = "\x0f\x2e\x7d", + [0x1a13] = "\x06\x36\x60", [0x1a14] = "\x06\x36\x63", + [0x1a1c] = "\x06\x36\x5a", [0x1a1e] = "\x06\x36\x5c", + [0x1a1f] = "\x05\x2d\x21", [0x1a20] = "\x05\x2c\x7e", + [0x1a22] = "\x04\x31\x2d", [0x1a23] = "\x05\x31\x6f", + [0x1a24] = "\x06\x3e\x57", [0x1a25] = "\x06\x3e\x59", + [0x1a26] = "\x06\x3e\x58", [0x1a27] = "\x06\x3e\x56", + [0x1a28] = "\x06\x3e\x5b", [0x1a29] = "\x05\x31\x70", + [0x1a2a] = "\x0f\x34\x28", [0x1a2b] = "\x0f\x34\x29", + [0x1a2c] = "\x0f\x34\x2a", [0x1a2d] = "\x0f\x34\x2b", + [0x1a2e] = "\x0f\x34\x2c", [0x1a2f] = "\x0f\x34\x2d", + [0x1a30] = "\x0f\x34\x2e", [0x1a31] = "\x0f\x34\x2f", + [0x1a34] = "\x04\x31\x2f", [0x1a36] = "\x06\x3e\x5c", + [0x1a3b] = "\x05\x31\x6e", [0x1a3c] = "\x06\x3e\x55", + [0x1a3d] = "\x05\x37\x5e", [0x1a3e] = "\x04\x37\x26", + [0x1a3f] = "\x05\x37\x61", [0x1a40] = "\x06\x47\x70", + [0x1a41] = "\x06\x47\x6b", [0x1a42] = "\x04\x37\x23", + [0x1a43] = "\x05\x37\x5d", [0x1a44] = "\x05\x37\x60", + [0x1a45] = "\x06\x47\x6e", [0x1a46] = "\x04\x37\x25", + [0x1a47] = "\x05\x37\x5f", [0x1a48] = "\x06\x47\x6f", + [0x1a49] = "\x06\x47\x6c", [0x1a4e] = "\x0f\x3a\x48", + [0x1a4f] = "\x0f\x3a\x49", [0x1a50] = "\x0f\x3a\x4a", + [0x1a51] = "\x0f\x3a\x4b", [0x1a52] = "\x0f\x3a\x4c", + [0x1a53] = "\x0f\x3a\x4d", [0x1a54] = "\x0f\x3a\x4e", + [0x1a55] = "\x0f\x3a\x4f", [0x1a59] = "\x06\x47\x6d", + [0x1a5b] = "\x05\x37\x62", [0x1a5e] = "\x0f\x3d\x6c", + [0x1a5f] = "\x06\x51\x74", [0x1a60] = "\x06\x51\x70", + [0x1a61] = "\x04\x3c\x6b", [0x1a62] = "\x04\x3c\x70", + [0x1a63] = "\x05\x3e\x63", [0x1a64] = "\x06\x51\x77", + [0x1a65] = "\x05\x3e\x64", [0x1a66] = "\x06\x51\x72", + [0x1a67] = "\x06\x51\x71", [0x1a68] = "\x06\x51\x76", + [0x1a69] = "\x04\x3c\x6d", [0x1a6a] = "\x06\x51\x73", + [0x1a6c] = "\x06\x51\x6f", [0x1a6d] = "\x06\x51\x75", + [0x1a6e] = "\x0f\x41\x27", [0x1a6f] = "\x0f\x41\x28", + [0x1a70] = "\x0f\x41\x29", [0x1a71] = "\x0f\x41\x2a", + [0x1a72] = "\x0f\x41\x2c", [0x1a73] = "\x0f\x41\x2d", + [0x1a74] = "\x0f\x41\x2e", [0x1a7a] = "\x06\x51\x6e", + [0x1a7b] = "\x06\x5b\x7e", [0x1a7c] = "\x06\x5c\x27", + [0x1a7d] = "\x05\x45\x3c", [0x1a7e] = "\x05\x45\x3a", + [0x1a7f] = "\x06\x5c\x24", [0x1a80] = "\x06\x5c\x2c", + [0x1a81] = "\x04\x42\x76", [0x1a82] = "\x06\x5c\x2e", + [0x1a83] = "\x06\x5c\x2b", [0x1a84] = "\x06\x5c\x26", + [0x1a85] = "\x05\x45\x39", [0x1a86] = "\x07\x22\x33", + [0x1a88] = "\x0f\x47\x57", [0x1a89] = "\x0f\x47\x58", + [0x1a8a] = "\x0f\x47\x59", [0x1a8b] = "\x0f\x47\x5a", + [0x1a8e] = "\x06\x5c\x28", [0x1a8f] = "\x06\x5c\x25", + [0x1a90] = "\x06\x5c\x29", [0x1a93] = "\x06\x5c\x2d", + [0x1a94] = "\x06\x5c\x21", [0x1a96] = "\x06\x5c\x23", + [0x1a97] = "\x05\x45\x3b", [0x1a98] = "\x06\x5c\x2a", + [0x1a9a] = "\x0f\x47\x44", [0x1a9b] = "\x06\x62\x67", + [0x1a9f] = "\x07\x22\x30", [0x1aa0] = "\x05\x4c\x5e", + [0x1aa1] = "\x04\x49\x47", [0x1aa2] = "\x07\x22\x37", + [0x1aa3] = "\x04\x49\x48", [0x1aa4] = "\x07\x22\x35", + [0x1aa5] = "\x07\x22\x32", [0x1aa7] = "\x0f\x4e\x47", + [0x1aa8] = "\x0f\x4e\x48", [0x1aa9] = "\x0f\x4e\x49", + [0x1aaa] = "\x0f\x4e\x4a", [0x1aab] = "\x0f\x4e\x4b", + [0x1aac] = "\x0f\x4e\x4c", [0x1aad] = "\x0f\x4e\x4e", + [0x1aae] = "\x0f\x4e\x4f", [0x1ab4] = "\x07\x22\x38", + [0x1ab6] = "\x07\x22\x36", [0x1ab7] = "\x0f\x4e\x4d", + [0x1ab8] = "\x05\x4c\x61", [0x1aba] = "\x05\x4c\x5f", + [0x1abc] = "\x07\x22\x31", [0x1abd] = "\x05\x4c\x60", + [0x1abe] = "\x07\x2d\x35", [0x1abf] = "\x07\x2d\x37", + [0x1ac0] = "\x05\x54\x2c", [0x1ac1] = "\x04\x50\x22", + [0x1ac2] = "\x05\x54\x2d", [0x1ac3] = "\x05\x54\x2b", + [0x1ac4] = "\x07\x2d\x36", [0x1ac5] = "\x07\x2d\x33", + [0x1ac6] = "\x07\x2d\x34", [0x1ac7] = "\x0f\x54\x2f", + [0x1ac8] = "\x0f\x54\x30", [0x1ac9] = "\x0f\x54\x31", + [0x1aca] = "\x0f\x54\x33", [0x1acb] = "\x0f\x54\x34", + [0x1acc] = "\x0f\x54\x35", [0x1acd] = "\x0f\x54\x36", + [0x1ace] = "\x0f\x54\x37", [0x1ad2] = "\x07\x37\x59", + [0x1ad3] = "\x07\x37\x57", [0x1ad4] = "\x05\x5b\x38", + [0x1ad5] = "\x0f\x59\x72", [0x1ad6] = "\x0f\x59\x73", + [0x1ad7] = "\x0f\x59\x74", [0x1ad8] = "\x0f\x59\x75", + [0x1ada] = "\x07\x37\x58", [0x1adb] = "\x07\x37\x5a", + [0x1adc] = "\x07\x22\x34", [0x1add] = "\x05\x5b\x37", + [0x1ade] = "\x07\x46\x58", [0x1adf] = "\x05\x61\x4e", + [0x1ae0] = "\x0f\x59\x76", [0x1ae2] = "\x0f\x5e\x56", + [0x1ae3] = "\x0f\x5e\x57", [0x1ae9] = "\x07\x3f\x42", + [0x1aea] = "\x0f\x62\x2e", [0x1aec] = "\x04\x5f\x57", + [0x1aed] = "\x07\x46\x53", [0x1aee] = "\x07\x46\x55", + [0x1aef] = "\x04\x5f\x56", [0x1af0] = "\x07\x46\x57", + [0x1af1] = "\x07\x46\x56", [0x1af2] = "\x0f\x62\x2f", + [0x1af3] = "\x07\x46\x54", [0x1af7] = "\x04\x63\x36", + [0x1afb] = "\x07\x4d\x53", [0x1afc] = "\x07\x53\x2c", + [0x1afd] = "\x04\x66\x38", [0x1afe] = "\x07\x53\x2d", + [0x1aff] = "\x0f\x67\x4f", [0x1b00] = "\x0f\x67\x50", + [0x1b03] = "\x07\x53\x2e", [0x1b04] = "\x05\x73\x38", + [0x1b05] = "\x04\x68\x66", [0x1b06] = "\x07\x57\x65", + [0x1b07] = "\x05\x73\x37", [0x1b0a] = "\x07\x57\x66", + [0x1b0c] = "\x04\x6a\x45", [0x1b0d] = "\x04\x6b\x67", + [0x1b0f] = "\x0f\x6b\x46", [0x1b11] = "\x07\x60\x6c", + [0x1b12] = "\x07\x64\x45", [0x1b13] = "\x05\x79\x25", + [0x1b14] = "\x0f\x6c\x25", [0x1b16] = "\x04\x6d\x54", + [0x1b18] = "\x05\x7a\x27", [0x1b19] = "\x04\x6d\x71", + [0x1b1a] = "\x07\x63\x4e", [0x1b1b] = "\x07\x65\x34", + [0x1b1d] = "\x06\x21\x6a", [0x1b1f] = "\x06\x2a\x6a", + [0x1b20] = "\x06\x2a\x69", [0x1b22] = "\x0f\x26\x56", + [0x1b23] = "\x0f\x26\x57", [0x1b27] = "\x05\x28\x6f", + [0x1b28] = "\x06\x30\x2e", [0x1b29] = "\x0f\x2a\x3d", + [0x1b2a] = "\x06\x30\x31", [0x1b2c] = "\x06\x30\x2f", + [0x1b2e] = "\x04\x31\x31", [0x1b2f] = "\x06\x43\x67", + [0x1b30] = "\x06\x3e\x5e", [0x1b31] = "\x06\x3e\x5d", + [0x1b33] = "\x04\x37\x27", [0x1b34] = "\x06\x3e\x5f", + [0x1b39] = "\x06\x51\x7a", [0x1b3a] = "\x06\x51\x78", + [0x1b3b] = "\x06\x51\x79", [0x1b3d] = "\x06\x5c\x30", + [0x1b3e] = "\x04\x44\x26", [0x1b3f] = "\x0f\x47\x5b", + [0x1b41] = "\x06\x5c\x31", [0x1b42] = "\x05\x45\x3d", + [0x1b45] = "\x0f\x4e\x51", [0x1b46] = "\x07\x22\x3a", + [0x1b48] = "\x07\x22\x39", [0x1b4a] = "\x07\x2d\x39", + [0x1b4b] = "\x05\x53\x52", [0x1b4c] = "\x07\x2d\x38", + [0x1b4d] = "\x07\x37\x5b", [0x1b4e] = "\x07\x37\x5c", + [0x1b50] = "\x05\x61\x4f", [0x1b51] = "\x07\x46\x59", + [0x1b52] = "\x07\x4d\x54", [0x1b53] = "\x07\x53\x2f", + [0x1b55] = "\x06\x21\x6b", [0x1b56] = "\x0f\x21\x39", + [0x1b59] = "\x06\x24\x4c", [0x1b5a] = "\x05\x22\x4c", + [0x1b5d] = "\x06\x27\x24", [0x1b5e] = "\x04\x23\x72", + [0x1b5f] = "\x06\x27\x23", [0x1b60] = "\x06\x27\x22", + [0x1b61] = "\x0f\x23\x73", [0x1b65] = "\x05\x25\x67", + [0x1b68] = "\x0f\x26\x58", [0x1b69] = "\x06\x2a\x6b", + [0x1b6a] = "\x06\x30\x32", [0x1b6b] = "\x06\x30\x30", + [0x1b6f] = "\x06\x30\x33", [0x1b73] = "\x05\x28\x70", + [0x1b74] = "\x04\x2c\x4b", [0x1b75] = "\x0f\x2f\x21", + [0x1b79] = "\x06\x36\x69", [0x1b7d] = "\x06\x3e\x61", + [0x1b7e] = "\x05\x31\x71", [0x1b7f] = "\x05\x37\x63", + [0x1b80] = "\x06\x3e\x63", [0x1b81] = "\x06\x3e\x60", + [0x1b82] = "\x06\x3e\x62", [0x1b83] = "\x0f\x34\x30", + [0x1b8e] = "\x06\x47\x71", [0x1b8f] = "\x0f\x3a\x50", + [0x1b90] = "\x06\x47\x73", [0x1b95] = "\x06\x47\x72", + [0x1b99] = "\x05\x3e\x65", [0x1b9d] = "\x0f\x41\x2f", + [0x1b9e] = "\x05\x45\x3e", [0x1b9f] = "\x06\x5c\x33", + [0x1ba1] = "\x06\x5c\x32", [0x1ba6] = "\x05\x4c\x62", + [0x1ba7] = "\x07\x22\x3b", [0x1bb0] = "\x05\x54\x2f", + [0x1bb1] = "\x07\x2d\x3a", [0x1bb4] = "\x0f\x59\x77", + [0x1bbb] = "\x05\x61\x50", [0x1bbf] = "\x05\x6f\x77", + [0x1bc2] = "\x04\x21\x4a", [0x1bc3] = "\x0f\x21\x3a", + [0x1bc4] = "\x05\x21\x65", [0x1bc5] = "\x0f\x21\x4d", + [0x1bc6] = "\x0f\x21\x5a", [0x1bc9] = "\x06\x22\x6b", + [0x1bca] = "\x06\x22\x6a", [0x1bcd] = "\x05\x22\x4d", + [0x1bce] = "\x0f\x22\x43", [0x1bcf] = "\x05\x23\x6c", + [0x1bd0] = "\x04\x23\x73", [0x1bd2] = "\x05\x25\x68", + [0x1bd4] = "\x06\x27\x25", [0x1bd6] = "\x05\x23\x6b", + [0x1bd8] = "\x05\x23\x6e", [0x1bd9] = "\x05\x23\x6d", + [0x1bdb] = "\x06\x30\x34", [0x1bdc] = "\x05\x25\x69", + [0x1bdd] = "\x06\x2a\x6c", [0x1bde] = "\x05\x25\x6b", + [0x1bdf] = "\x0f\x26\x59", [0x1be0] = "\x06\x30\x35", + [0x1be1] = "\x05\x25\x6a", [0x1be2] = "\x05\x28\x71", + [0x1be3] = "\x06\x30\x37", [0x1be5] = "\x06\x30\x38", + [0x1be6] = "\x05\x28\x72", [0x1be7] = "\x06\x30\x39", + [0x1be8] = "\x05\x2d\x23", [0x1be9] = "\x06\x36\x6c", + [0x1bea] = "\x06\x36\x6a", [0x1bec] = "\x05\x2d\x24", + [0x1bed] = "\x06\x36\x6b", [0x1bee] = "\x06\x36\x6d", + [0x1bef] = "\x0f\x2f\x22", [0x1bf2] = "\x06\x3e\x66", + [0x1bf3] = "\x05\x31\x72", [0x1bf4] = "\x04\x31\x34", + [0x1bf5] = "\x05\x31\x74", [0x1bf6] = "\x06\x47\x76", + [0x1bf7] = "\x06\x47\x74", [0x1bf8] = "\x06\x47\x75", + [0x1bfa] = "\x04\x37\x2a", [0x1bfb] = "\x06\x47\x77", + [0x1bfc] = "\x0f\x3a\x51", [0x1c02] = "\x06\x51\x7b", + [0x1c03] = "\x06\x51\x7d", [0x1c04] = "\x06\x51\x7c", + [0x1c07] = "\x05\x48\x26", [0x1c09] = "\x04\x42\x7a", + [0x1c0a] = "\x06\x5c\x34", [0x1c0b] = "\x05\x45\x40", + [0x1c0c] = "\x05\x45\x3f", [0x1c0d] = "\x06\x5c\x35", + [0x1c0e] = "\x05\x45\x41", [0x1c10] = "\x07\x2d\x3d", + [0x1c11] = "\x07\x22\x3e", [0x1c12] = "\x07\x22\x3d", + [0x1c14] = "\x07\x22\x3c", [0x1c15] = "\x07\x2d\x3b", + [0x1c16] = "\x05\x54\x30", [0x1c17] = "\x07\x2d\x3c", + [0x1c18] = "\x07\x2d\x3e", [0x1c19] = "\x0f\x54\x38", + [0x1c1c] = "\x07\x37\x5d", [0x1c1d] = "\x04\x66\x39", + [0x1c20] = "\x04\x68\x67", [0x1c22] = "\x05\x79\x26", + [0x1c23] = "\x06\x21\x3e", [0x1c24] = "\x04\x21\x75", + [0x1c25] = "\x04\x21\x74", [0x1c26] = "\x06\x22\x6c", + [0x1c29] = "\x06\x24\x4d", [0x1c2a] = "\x04\x22\x5e", + [0x1c2b] = "\x05\x22\x4e", [0x1c2c] = "\x06\x24\x4e", + [0x1c2d] = "\x06\x24\x50", [0x1c2e] = "\x06\x24\x51", + [0x1c2f] = "\x06\x24\x4f", [0x1c30] = "\x0f\x22\x44", + [0x1c36] = "\x06\x27\x29", [0x1c37] = "\x0f\x23\x74", + [0x1c38] = "\x06\x27\x27", [0x1c3a] = "\x06\x27\x26", + [0x1c3c] = "\x06\x27\x28", [0x1c3d] = "\x05\x23\x6f", + [0x1c3e] = "\x04\x26\x2c", [0x1c3f] = "\x04\x26\x2b", + [0x1c40] = "\x06\x2a\x6d", [0x1c41] = "\x06\x2a\x6e", + [0x1c42] = "\x05\x25\x6c", [0x1c43] = "\x06\x2a\x6f", + [0x1c44] = "\x0f\x26\x5b", [0x1c4b] = "\x05\x25\x6d", + [0x1c4c] = "\x04\x28\x77", [0x1c4d] = "\x06\x30\x3a", + [0x1c4e] = "\x06\x30\x3f", [0x1c4f] = "\x04\x28\x7a", + [0x1c50] = "\x04\x28\x76", [0x1c51] = "\x05\x28\x75", + [0x1c52] = "\x06\x30\x3e", [0x1c53] = "\x06\x30\x3d", + [0x1c54] = "\x06\x30\x3c", [0x1c55] = "\x06\x30\x3b", + [0x1c57] = "\x0f\x2a\x40", [0x1c58] = "\x0f\x2a\x41", + [0x1c59] = "\x0f\x2a\x42", [0x1c5a] = "\x0f\x2a\x43", + [0x1c5b] = "\x0f\x2a\x44", [0x1c5d] = "\x0f\x2a\x3f", + [0x1c60] = "\x06\x30\x40", [0x1c61] = "\x05\x28\x74", + [0x1c62] = "\x06\x36\x72", [0x1c63] = "\x04\x2c\x50", + [0x1c64] = "\x06\x36\x6f", [0x1c65] = "\x04\x2c\x4f", + [0x1c66] = "\x06\x3e\x67", [0x1c67] = "\x06\x36\x70", + [0x1c68] = "\x06\x36\x6e", [0x1c6a] = "\x0f\x2f\x23", + [0x1c6b] = "\x0f\x2f\x24", [0x1c6c] = "\x0f\x2f\x26", + [0x1c6d] = "\x0f\x2f\x27", [0x1c6e] = "\x0f\x2f\x28", + [0x1c70] = "\x05\x2d\x26", [0x1c71] = "\x05\x2d\x27", + [0x1c72] = "\x06\x36\x71", [0x1c74] = "\x06\x36\x73", + [0x1c77] = "\x05\x2d\x25", [0x1c79] = "\x06\x36\x74", + [0x1c7a] = "\x06\x3e\x6d", [0x1c7b] = "\x06\x3e\x69", + [0x1c7c] = "\x05\x31\x78", [0x1c7d] = "\x05\x31\x7a", + [0x1c7e] = "\x05\x31\x77", [0x1c7f] = "\x05\x31\x79", + [0x1c80] = "\x05\x31\x76", [0x1c81] = "\x05\x31\x7b", + [0x1c82] = "\x06\x3e\x70", [0x1c83] = "\x06\x3e\x6a", + [0x1c84] = "\x0f\x34\x31", [0x1c85] = "\x0f\x34\x32", + [0x1c86] = "\x0f\x34\x35", [0x1c87] = "\x0f\x34\x36", + [0x1c88] = "\x0f\x34\x37", [0x1c89] = "\x0f\x34\x38", + [0x1c8a] = "\x0f\x34\x39", [0x1c8b] = "\x0f\x34\x3a", + [0x1c8c] = "\x06\x3e\x68", [0x1c8e] = "\x06\x3e\x6c", + [0x1c91] = "\x06\x3e\x6f", [0x1c92] = "\x06\x3e\x6e", + [0x1c93] = "\x0f\x34\x33", [0x1c94] = "\x06\x48\x23", + [0x1c95] = "\x06\x48\x24", [0x1c96] = "\x06\x48\x22", + [0x1c97] = "\x04\x37\x2c", [0x1c98] = "\x06\x47\x7e", + [0x1c99] = "\x06\x47\x7a", [0x1c9a] = "\x05\x37\x64", + [0x1c9b] = "\x04\x37\x2d", [0x1c9c] = "\x05\x37\x65", + [0x1c9d] = "\x06\x47\x79", [0x1c9e] = "\x06\x47\x78", + [0x1c9f] = "\x06\x48\x25", [0x1ca0] = "\x06\x48\x21", + [0x1ca1] = "\x06\x48\x26", [0x1ca3] = "\x06\x47\x7c", + [0x1ca6] = "\x0f\x3a\x52", [0x1ca7] = "\x0f\x3a\x53", + [0x1ca8] = "\x0f\x3a\x54", [0x1ca9] = "\x06\x47\x7d", + [0x1caa] = "\x04\x37\x2e", [0x1cac] = "\x06\x52\x23", + [0x1cad] = "\x05\x3e\x69", [0x1cae] = "\x05\x3e\x67", + [0x1caf] = "\x06\x52\x26", [0x1cb0] = "\x05\x3e\x68", + [0x1cb1] = "\x06\x52\x25", [0x1cb2] = "\x06\x52\x29", + [0x1cb3] = "\x06\x52\x21", [0x1cb4] = "\x06\x51\x7e", + [0x1cb5] = "\x06\x52\x27", [0x1cb6] = "\x06\x52\x24", + [0x1cb8] = "\x0f\x41\x30", [0x1cb9] = "\x0f\x41\x31", + [0x1cba] = "\x0f\x41\x32", [0x1cbb] = "\x06\x52\x22", + [0x1cbe] = "\x06\x52\x28", [0x1cc2] = "\x05\x3e\x66", + [0x1cc4] = "\x04\x42\x7c", [0x1cc5] = "\x04\x42\x7e", + [0x1cc6] = "\x04\x42\x7b", [0x1cc7] = "\x06\x5c\x38", + [0x1cc8] = "\x06\x5c\x36", [0x1cc9] = "\x06\x5c\x37", + [0x1cca] = "\x0f\x47\x5d", [0x1ccd] = "\x06\x5c\x39", + [0x1ccf] = "\x05\x45\x42", [0x1cd0] = "\x07\x22\x40", + [0x1cd1] = "\x05\x4c\x66", [0x1cd3] = "\x0f\x4e\x52", + [0x1cd4] = "\x0f\x4e\x53", [0x1cd5] = "\x0f\x4e\x54", + [0x1cd6] = "\x0f\x4e\x55", [0x1cd7] = "\x0f\x4e\x56", + [0x1cd8] = "\x05\x4c\x65", [0x1cde] = "\x05\x4c\x64", + [0x1cdf] = "\x07\x2d\x40", [0x1ce0] = "\x07\x2d\x3f", + [0x1ce1] = "\x07\x22\x3f", [0x1ce6] = "\x0f\x54\x39", + [0x1ce7] = "\x07\x30\x2d", [0x1ce8] = "\x07\x37\x5e", + [0x1ceb] = "\x07\x3f\x43", [0x1cec] = "\x04\x5f\x58", + [0x1ced] = "\x05\x67\x62", [0x1cf1] = "\x0f\x65\x27", + [0x1cf2] = "\x0f\x65\x28", [0x1cf4] = "\x05\x6b\x7d", + [0x1cf7] = "\x0f\x67\x51", [0x1cf8] = "\x05\x73\x3a", + [0x1cfe] = "\x05\x21\x30", [0x1cff] = "\x06\x21\x6c", + [0x1d00] = "\x06\x22\x6d", [0x1d01] = "\x06\x24\x54", + [0x1d02] = "\x06\x24\x53", [0x1d04] = "\x06\x24\x52", + [0x1d05] = "\x05\x22\x4f", [0x1d06] = "\x04\x23\x75", + [0x1d08] = "\x06\x27\x2a", [0x1d0b] = "\x04\x26\x2d", + [0x1d0c] = "\x06\x2a\x71", [0x1d0d] = "\x06\x2a\x70", + [0x1d0e] = "\x05\x28\x77", [0x1d0f] = "\x06\x30\x42", + [0x1d11] = "\x06\x30\x43", [0x1d12] = "\x05\x28\x76", + [0x1d13] = "\x06\x30\x44", [0x1d15] = "\x06\x36\x77", + [0x1d16] = "\x06\x36\x78", [0x1d17] = "\x06\x36\x76", + [0x1d18] = "\x06\x35\x28", [0x1d19] = "\x06\x36\x75", + [0x1d1b] = "\x06\x3e\x71", [0x1d1c] = "\x06\x3e\x72", + [0x1d1d] = "\x06\x48\x28", [0x1d1e] = "\x05\x37\x67", + [0x1d1f] = "\x06\x48\x29", [0x1d21] = "\x06\x48\x27", + [0x1d23] = "\x0f\x3a\x55", [0x1d24] = "\x06\x52\x2a", + [0x1d25] = "\x06\x5c\x3a", [0x1d26] = "\x07\x22\x41", + [0x1d27] = "\x07\x2d\x41", [0x1d28] = "\x07\x22\x42", + [0x1d29] = "\x07\x22\x43", [0x1d2b] = "\x07\x53\x30", + [0x1d2c] = "\x07\x5e\x5d", [0x1d2d] = "\x05\x21\x45", + [0x1d2f] = "\x05\x21\x46", [0x1d30] = "\x06\x22\x70", + [0x1d31] = "\x06\x22\x6e", [0x1d32] = "\x06\x22\x72", + [0x1d33] = "\x06\x22\x71", [0x1d35] = "\x0f\x21\x5c", + [0x1d36] = "\x0f\x21\x5d", [0x1d37] = "\x0f\x21\x5e", + [0x1d38] = "\x06\x22\x73", [0x1d3b] = "\x05\x21\x66", + [0x1d3c] = "\x06\x22\x6f", [0x1d3f] = "\x06\x24\x57", + [0x1d40] = "\x06\x24\x55", [0x1d41] = "\x06\x24\x59", + [0x1d46] = "\x03\x23\x59", [0x1d47] = "\x0f\x22\x45", + [0x1d48] = "\x0f\x22\x46", [0x1d4a] = "\x06\x24\x56", + [0x1d4b] = "\x05\x22\x53", [0x1d4e] = "\x06\x24\x5a", + [0x1d4f] = "\x06\x24\x58", [0x1d51] = "\x05\x22\x52", + [0x1d53] = "\x06\x27\x2e", [0x1d54] = "\x05\x23\x71", + [0x1d55] = "\x05\x23\x78", [0x1d56] = "\x05\x23\x79", + [0x1d57] = "\x06\x27\x30", [0x1d58] = "\x05\x23\x76", + [0x1d59] = "\x05\x23\x75", [0x1d5a] = "\x05\x23\x77", + [0x1d5b] = "\x05\x23\x72", [0x1d5c] = "\x05\x23\x73", + [0x1d5d] = "\x06\x27\x31", [0x1d5e] = "\x06\x27\x2c", + [0x1d63] = "\x06\x27\x32", [0x1d64] = "\x0f\x23\x76", + [0x1d66] = "\x0f\x23\x77", [0x1d67] = "\x0f\x23\x79", + [0x1d68] = "\x0f\x23\x7a", [0x1d69] = "\x0f\x23\x7b", + [0x1d6a] = "\x0f\x23\x7e", [0x1d6b] = "\x0f\x24\x21", + [0x1d6e] = "\x06\x27\x2d", [0x1d70] = "\x06\x27\x2f", + [0x1d71] = "\x04\x23\x7d", [0x1d73] = "\x0f\x23\x7d", + [0x1d79] = "\x06\x27\x34", [0x1d7a] = "\x06\x27\x33", + [0x1d7c] = "\x04\x23\x7c", [0x1d7e] = "\x06\x27\x2b", + [0x1d82] = "\x05\x23\x7a", [0x1d83] = "\x04\x26\x30", + [0x1d84] = "\x05\x25\x75", [0x1d85] = "\x06\x2a\x75", + [0x1d86] = "\x04\x26\x33", [0x1d87] = "\x06\x2a\x72", + [0x1d88] = "\x05\x25\x73", [0x1d89] = "\x05\x25\x74", + [0x1d8a] = "\x06\x2a\x7a", [0x1d8b] = "\x05\x25\x71", + [0x1d8c] = "\x06\x2a\x77", [0x1d8d] = "\x06\x2a\x7c", + [0x1d8e] = "\x05\x25\x6f", [0x1d8f] = "\x06\x2a\x79", + [0x1d90] = "\x05\x25\x72", [0x1d91] = "\x05\x25\x70", + [0x1d92] = "\x06\x2a\x74", [0x1d93] = "\x06\x27\x35", + [0x1d94] = "\x0f\x26\x5c", [0x1d95] = "\x0f\x26\x5d", + [0x1d96] = "\x0f\x26\x5e", [0x1d97] = "\x0f\x26\x5f", + [0x1d98] = "\x0f\x26\x60", [0x1d99] = "\x0f\x26\x61", + [0x1d9a] = "\x0f\x26\x63", [0x1d9b] = "\x0f\x26\x64", + [0x1d9d] = "\x0f\x26\x65", [0x1d9e] = "\x0f\x26\x66", + [0x1d9f] = "\x0f\x26\x67", [0x1da0] = "\x0f\x26\x68", + [0x1da2] = "\x06\x2a\x78", [0x1da4] = "\x06\x2d\x2b", + [0x1da9] = "\x06\x2a\x73", [0x1daa] = "\x05\x25\x76", + [0x1dab] = "\x06\x30\x50", [0x1dac] = "\x06\x30\x4a", + [0x1dad] = "\x05\x28\x78", [0x1dae] = "\x06\x30\x4b", + [0x1daf] = "\x05\x28\x79", [0x1db0] = "\x04\x28\x7e", + [0x1db1] = "\x05\x28\x7a", [0x1db3] = "\x06\x30\x46", + [0x1db8] = "\x06\x30\x49", [0x1db9] = "\x06\x30\x52", + [0x1dbb] = "\x0f\x2a\x45", [0x1dbc] = "\x0f\x2a\x47", + [0x1dbd] = "\x0f\x2a\x48", [0x1dbe] = "\x0f\x2a\x4b", + [0x1dbf] = "\x0f\x2a\x4c", [0x1dc0] = "\x0f\x2a\x4d", + [0x1dc1] = "\x0f\x2a\x4e", [0x1dc2] = "\x0f\x2a\x4f", + [0x1dc3] = "\x0f\x2a\x50", [0x1dc4] = "\x0f\x2a\x51", + [0x1dc5] = "\x06\x30\x4d", [0x1dc6] = "\x06\x30\x45", + [0x1dc7] = "\x06\x30\x47", [0x1dc9] = "\x06\x30\x51", + [0x1dcc] = "\x06\x30\x4f", [0x1dcf] = "\x06\x30\x4c", + [0x1dd0] = "\x0f\x2a\x4a", [0x1dd1] = "\x0f\x2a\x46", + [0x1dd2] = "\x06\x30\x48", [0x1dd3] = "\x05\x28\x7b", + [0x1dd4] = "\x04\x28\x7c", [0x1dd5] = "\x05\x2d\x2c", + [0x1dd6] = "\x05\x2d\x29", [0x1dd7] = "\x04\x2c\x52", + [0x1dd8] = "\x04\x2c\x59", [0x1dd9] = "\x05\x2d\x2a", + [0x1dda] = "\x06\x37\x21", [0x1ddb] = "\x04\x2c\x58", + [0x1ddc] = "\x05\x2d\x34", [0x1ddd] = "\x05\x2d\x30", + [0x1dde] = "\x05\x2d\x2b", [0x1ddf] = "\x06\x36\x7d", + [0x1de0] = "\x05\x2d\x31", [0x1de1] = "\x05\x2d\x2d", + [0x1de2] = "\x05\x2d\x2f", [0x1de3] = "\x06\x37\x24", + [0x1de4] = "\x06\x36\x7e", [0x1de5] = "\x04\x2c\x62", + [0x1de6] = "\x06\x36\x79", [0x1de7] = "\x04\x2c\x63", + [0x1de8] = "\x04\x2c\x56", [0x1de9] = "\x06\x37\x25", + [0x1dea] = "\x06\x37\x22", [0x1ded] = "\x06\x37\x23", + [0x1dee] = "\x06\x36\x7b", [0x1def] = "\x0f\x2f\x29", + [0x1df0] = "\x0f\x2f\x2a", [0x1df1] = "\x0f\x2f\x2b", + [0x1df2] = "\x0f\x2f\x2c", [0x1df3] = "\x0f\x2f\x2d", + [0x1df4] = "\x0f\x2f\x2e", [0x1df5] = "\x0f\x2f\x2f", + [0x1df6] = "\x0f\x2f\x31", [0x1df7] = "\x0f\x2f\x33", + [0x1df8] = "\x05\x2d\x28", [0x1dff] = "\x0f\x2f\x30", + [0x1e02] = "\x0f\x2f\x32", [0x1e08] = "\x05\x2d\x33", + [0x1e09] = "\x04\x2c\x5d", [0x1e0a] = "\x05\x2d\x35", + [0x1e0c] = "\x05\x2d\x36", [0x1e0e] = "\x05\x2d\x32", + [0x1e10] = "\x06\x3b\x4e", [0x1e11] = "\x04\x31\x3a", + [0x1e12] = "\x06\x3f\x2b", [0x1e13] = "\x06\x3f\x24", + [0x1e14] = "\x06\x3f\x26", [0x1e15] = "\x04\x31\x3c", + [0x1e16] = "\x04\x31\x3e", [0x1e17] = "\x05\x31\x7e", + [0x1e18] = "\x06\x3e\x79", [0x1e19] = "\x06\x3f\x22", + [0x1e1a] = "\x06\x3e\x7b", [0x1e1b] = "\x05\x32\x28", + [0x1e1c] = "\x04\x31\x38", [0x1e1e] = "\x06\x3f\x27", + [0x1e1f] = "\x06\x3f\x2c", [0x1e20] = "\x06\x3f\x29", + [0x1e21] = "\x06\x3e\x74", [0x1e22] = "\x06\x3f\x2a", + [0x1e23] = "\x04\x31\x40", [0x1e24] = "\x04\x31\x3b", + [0x1e25] = "\x05\x31\x7c", [0x1e26] = "\x05\x32\x26", + [0x1e27] = "\x06\x3e\x73", [0x1e28] = "\x04\x31\x36", + [0x1e29] = "\x05\x31\x7d", [0x1e2a] = "\x05\x32\x24", + [0x1e2c] = "\x06\x3f\x28", [0x1e35] = "\x06\x3f\x23", + [0x1e36] = "\x0f\x34\x3b", [0x1e38] = "\x0f\x34\x3c", + [0x1e39] = "\x0f\x34\x3d", [0x1e3a] = "\x0f\x34\x3e", + [0x1e3b] = "\x0f\x34\x40", [0x1e3c] = "\x0f\x34\x41", + [0x1e3d] = "\x0f\x34\x42", [0x1e3e] = "\x0f\x34\x43", + [0x1e3f] = "\x0f\x34\x44", [0x1e40] = "\x0f\x34\x46", + [0x1e41] = "\x0f\x34\x47", [0x1e42] = "\x0f\x34\x48", + [0x1e43] = "\x06\x3e\x77", [0x1e46] = "\x06\x32\x2a", + [0x1e4a] = "\x06\x3e\x7d", [0x1e4b] = "\x06\x3e\x7c", + [0x1e4d] = "\x06\x3e\x7e", [0x1e4f] = "\x06\x3f\x21", + [0x1e52] = "\x06\x3f\x25", [0x1e54] = "\x04\x31\x3f", + [0x1e62] = "\x05\x32\x29", [0x1e63] = "\x05\x32\x21", + [0x1e64] = "\x05\x32\x27", [0x1e65] = "\x05\x32\x23", + [0x1e67] = "\x05\x32\x22", [0x1e68] = "\x05\x32\x25", + [0x1e69] = "\x05\x32\x2a", [0x1e6a] = "\x05\x37\x69", + [0x1e6b] = "\x06\x48\x33", [0x1e6c] = "\x05\x37\x6e", + [0x1e6d] = "\x06\x48\x2a", [0x1e6e] = "\x06\x48\x34", + [0x1e6f] = "\x05\x37\x6f", [0x1e70] = "\x05\x37\x6c", + [0x1e72] = "\x05\x37\x6b", [0x1e73] = "\x04\x37\x30", + [0x1e75] = "\x05\x37\x70", [0x1e76] = "\x05\x37\x6a", + [0x1e77] = "\x05\x37\x71", [0x1e78] = "\x05\x37\x72", + [0x1e79] = "\x05\x37\x74", [0x1e7a] = "\x06\x48\x2e", + [0x1e7b] = "\x06\x3e\x7a", [0x1e7c] = "\x04\x37\x31", + [0x1e7d] = "\x06\x48\x2f", [0x1e7e] = "\x05\x37\x6d", + [0x1e86] = "\x04\x37\x33", [0x1e88] = "\x05\x37\x68", + [0x1e8a] = "\x05\x37\x73", [0x1e8b] = "\x0f\x3a\x56", + [0x1e8c] = "\x0f\x3a\x58", [0x1e8d] = "\x0f\x3a\x59", + [0x1e8e] = "\x0f\x3a\x5a", [0x1e8f] = "\x0f\x3a\x5b", + [0x1e92] = "\x06\x48\x2d", [0x1e94] = "\x05\x37\x75", + [0x1e99] = "\x06\x48\x32", [0x1e9a] = "\x06\x48\x2c", + [0x1e9d] = "\x06\x48\x31", [0x1ea1] = "\x06\x48\x30", + [0x1ea4] = "\x0f\x3a\x5c", [0x1eab] = "\x05\x3e\x70", + [0x1eac] = "\x06\x52\x2d", [0x1ead] = "\x05\x3e\x6c", + [0x1eae] = "\x04\x3c\x7a", [0x1eaf] = "\x05\x3e\x71", + [0x1eb0] = "\x06\x52\x2e", [0x1eb1] = "\x06\x5c\x3b", + [0x1eb2] = "\x04\x3c\x7d", [0x1eb3] = "\x06\x52\x35", + [0x1eb4] = "\x05\x3e\x6a", [0x1eb5] = "\x05\x3e\x73", + [0x1eb6] = "\x06\x52\x2b", [0x1eb7] = "\x05\x3e\x6f", + [0x1eb9] = "\x06\x52\x2c", [0x1eba] = "\x06\x52\x39", + [0x1ebb] = "\x06\x52\x30", [0x1ebc] = "\x06\x52\x38", + [0x1ebd] = "\x05\x3e\x6e", [0x1ebe] = "\x06\x52\x36", + [0x1ebf] = "\x06\x5c\x40", [0x1ec0] = "\x0f\x41\x37", + [0x1ec1] = "\x05\x3e\x72", [0x1ec2] = "\x0f\x41\x33", + [0x1ec3] = "\x0f\x41\x34", [0x1ec4] = "\x0f\x41\x36", + [0x1ec5] = "\x0f\x41\x38", [0x1ec6] = "\x0f\x41\x39", + [0x1ec7] = "\x06\x52\x3a", [0x1ecb] = "\x06\x52\x32", + [0x1ecd] = "\x06\x52\x37", [0x1ed1] = "\x05\x3e\x6b", + [0x1ed5] = "\x0f\x41\x35", [0x1ed7] = "\x06\x52\x2f", + [0x1ed8] = "\x05\x45\x43", [0x1ed9] = "\x05\x45\x4b", + [0x1eda] = "\x05\x45\x49", [0x1edb] = "\x06\x5c\x41", + [0x1edc] = "\x06\x5c\x3c", [0x1edd] = "\x04\x43\x2b", + [0x1ede] = "\x04\x43\x26", [0x1edf] = "\x04\x43\x25", + [0x1ee0] = "\x05\x45\x44", [0x1ee1] = "\x05\x45\x48", + [0x1ee2] = "\x05\x45\x47", [0x1ee3] = "\x05\x45\x4a", + [0x1ee4] = "\x05\x45\x4e", [0x1ee5] = "\x06\x5c\x3e", + [0x1ee6] = "\x06\x5c\x47", [0x1ee7] = "\x05\x45\x4d", + [0x1ee8] = "\x05\x45\x45", [0x1ee9] = "\x05\x45\x46", + [0x1eea] = "\x06\x5c\x42", [0x1eec] = "\x04\x43\x29", + [0x1eed] = "\x06\x5c\x46", [0x1eee] = "\x04\x43\x27", + [0x1eef] = "\x04\x43\x23", [0x1ef0] = "\x05\x45\x4c", + [0x1ef1] = "\x06\x5c\x45", [0x1ef2] = "\x06\x5c\x43", + [0x1ef4] = "\x06\x5c\x3f", [0x1ef5] = "\x04\x43\x28", + [0x1ef6] = "\x0f\x47\x5e", [0x1ef7] = "\x0f\x47\x5f", + [0x1ef8] = "\x0f\x47\x60", [0x1ef9] = "\x0f\x47\x61", + [0x1efe] = "\x06\x52\x31", [0x1f0a] = "\x04\x49\x4e", + [0x1f0b] = "\x07\x22\x49", [0x1f0c] = "\x04\x49\x52", + [0x1f0d] = "\x07\x22\x45", [0x1f0e] = "\x05\x4c\x69", + [0x1f10] = "\x07\x22\x50", [0x1f11] = "\x07\x22\x4a", + [0x1f12] = "\x05\x4c\x6e", [0x1f13] = "\x05\x4c\x67", + [0x1f14] = "\x07\x22\x47", [0x1f15] = "\x07\x22\x51", + [0x1f16] = "\x05\x4c\x6f", [0x1f17] = "\x07\x22\x4f", + [0x1f18] = "\x07\x22\x4c", [0x1f19] = "\x07\x22\x4d", + [0x1f1a] = "\x05\x4c\x70", [0x1f1b] = "\x05\x4c\x6a", + [0x1f1c] = "\x05\x4c\x6d", [0x1f1d] = "\x07\x2d\x44", + [0x1f25] = "\x07\x22\x46", [0x1f26] = "\x0f\x4e\x57", + [0x1f27] = "\x0f\x4e\x58", [0x1f28] = "\x0f\x4e\x59", + [0x1f29] = "\x0f\x4e\x5b", [0x1f2a] = "\x0f\x4e\x5c", + [0x1f2f] = "\x07\x22\x44", [0x1f30] = "\x07\x22\x4b", + [0x1f36] = "\x07\x22\x4e", [0x1f3a] = "\x05\x4c\x6b", + [0x1f3c] = "\x07\x22\x48", [0x1f3d] = "\x04\x49\x51", + [0x1f3e] = "\x05\x54\x33", [0x1f3f] = "\x04\x50\x23", + [0x1f40] = "\x07\x2d\x4a", [0x1f41] = "\x04\x50\x24", + [0x1f42] = "\x05\x54\x35", [0x1f43] = "\x07\x2d\x42", + [0x1f44] = "\x05\x54\x38", [0x1f45] = "\x05\x54\x34", + [0x1f46] = "\x05\x54\x31", [0x1f47] = "\x07\x2d\x47", + [0x1f48] = "\x07\x2d\x43", [0x1f49] = "\x05\x5b\x39", + [0x1f4a] = "\x05\x54\x32", [0x1f4c] = "\x0f\x54\x3a", + [0x1f4d] = "\x0f\x54\x3b", [0x1f4e] = "\x0f\x54\x3c", + [0x1f50] = "\x07\x2d\x45", [0x1f53] = "\x07\x2d\x49", + [0x1f54] = "\x07\x2d\x48", [0x1f55] = "\x07\x2d\x4b", + [0x1f58] = "\x07\x2d\x46", [0x1f5a] = "\x07\x2d\x4d", + [0x1f5b] = "\x05\x54\x37", [0x1f5c] = "\x04\x56\x29", + [0x1f5d] = "\x05\x5b\x3b", [0x1f5e] = "\x05\x61\x55", + [0x1f5f] = "\x07\x37\x60", [0x1f60] = "\x05\x5b\x3f", + [0x1f61] = "\x07\x37\x66", [0x1f63] = "\x05\x5b\x3a", + [0x1f64] = "\x07\x37\x62", [0x1f65] = "\x07\x37\x64", + [0x1f66] = "\x07\x37\x61", [0x1f67] = "\x05\x5b\x3d", + [0x1f6c] = "\x07\x37\x5f", [0x1f6d] = "\x07\x37\x65", + [0x1f6e] = "\x0f\x59\x79", [0x1f6f] = "\x0f\x59\x7a", + [0x1f70] = "\x0f\x59\x7b", [0x1f75] = "\x04\x56\x2a", + [0x1f78] = "\x07\x37\x63", [0x1f7a] = "\x07\x37\x67", + [0x1f7d] = "\x07\x39\x27", [0x1f80] = "\x05\x5b\x40", + [0x1f82] = "\x07\x46\x5a", [0x1f85] = "\x05\x61\x54", + [0x1f86] = "\x07\x3f\x47", [0x1f87] = "\x04\x5a\x7e", + [0x1f88] = "\x05\x61\x51", [0x1f89] = "\x05\x61\x52", + [0x1f8a] = "\x07\x3f\x49", [0x1f8b] = "\x0f\x5e\x59", + [0x1f8c] = "\x05\x61\x53", [0x1f8d] = "\x07\x3f\x46", + [0x1f8e] = "\x0f\x5e\x58", [0x1f90] = "\x07\x3f\x45", + [0x1f91] = "\x07\x3f\x48", [0x1f94] = "\x05\x61\x56", + [0x1f95] = "\x05\x61\x57", [0x1f98] = "\x07\x46\x5c", + [0x1f99] = "\x04\x5f\x5b", [0x1f9a] = "\x07\x46\x5e", + [0x1f9b] = "\x05\x67\x65", [0x1f9c] = "\x04\x5f\x59", + [0x1f9d] = "\x07\x46\x5d", [0x1f9e] = "\x07\x46\x5f", + [0x1f9f] = "\x07\x46\x60", [0x1fa2] = "\x0f\x62\x30", + [0x1fa3] = "\x0f\x62\x31", [0x1fa4] = "\x0f\x62\x32", + [0x1fa6] = "\x07\x46\x61", [0x1fa7] = "\x07\x46\x62", + [0x1fa9] = "\x07\x46\x5b", [0x1fae] = "\x04\x63\x38", + [0x1faf] = "\x07\x4d\x55", [0x1fb0] = "\x04\x63\x37", + [0x1fb1] = "\x05\x6b\x7e", [0x1fb2] = "\x07\x4d\x57", + [0x1fb6] = "\x0f\x65\x29", [0x1fb7] = "\x07\x4d\x56", + [0x1fbb] = "\x05\x5b\x3e", [0x1fbc] = "\x05\x6f\x78", + [0x1fbd] = "\x05\x6f\x7a", [0x1fbe] = "\x05\x6f\x79", + [0x1fc1] = "\x07\x53\x32", [0x1fc6] = "\x07\x53\x31", + [0x1fc7] = "\x05\x73\x3b", [0x1fc8] = "\x04\x68\x69", + [0x1fc9] = "\x04\x68\x6a", [0x1fca] = "\x07\x57\x67", + [0x1fcb] = "\x07\x57\x69", [0x1fcc] = "\x07\x57\x68", + [0x1fcf] = "\x07\x57\x6a", [0x1fd1] = "\x05\x73\x3c", + [0x1fd4] = "\x07\x5e\x5e", [0x1fd5] = "\x04\x6b\x6a", + [0x1fd6] = "\x04\x6b\x69", [0x1fd8] = "\x07\x5e\x60", + [0x1fdb] = "\x05\x77\x58", [0x1fdc] = "\x07\x5e\x5f", + [0x1fdd] = "\x05\x79\x27", [0x1fdf] = "\x0f\x6c\x26", + [0x1fe0] = "\x05\x7a\x28", [0x1fe1] = "\x05\x7a\x66", + [0x1fe2] = "\x05\x7b\x3c", [0x1fe3] = "\x07\x63\x4f", + [0x1fe5] = "\x05\x7c\x34", [0x1fe7] = "\x06\x21\x6d", + [0x1fe8] = "\x04\x21\x25", [0x1fe9] = "\x04\x22\x62", + [0x1fea] = "\x05\x22\x54", [0x1feb] = "\x06\x24\x5b", + [0x1fec] = "\x06\x24\x5c", [0x1fed] = "\x05\x22\x55", + [0x1fee] = "\x06\x23\x7e", [0x1fef] = "\x04\x23\x7e", + [0x1ff0] = "\x05\x23\x7b", [0x1ff1] = "\x06\x2a\x7d", + [0x1ff2] = "\x0f\x26\x6a", [0x1ff3] = "\x0f\x26\x69", + [0x1ff7] = "\x06\x30\x55", [0x1ff8] = "\x06\x30\x54", + [0x1ff9] = "\x06\x30\x56", [0x1ffb] = "\x06\x30\x53", + [0x1ffd] = "\x06\x37\x26", [0x1ffe] = "\x05\x32\x2b", + [0x1fff] = "\x04\x31\x41", [0x2000] = "\x06\x3f\x2d", + [0x2001] = "\x05\x37\x76", [0x2002] = "\x06\x5c\x48", + [0x2003] = "\x07\x22\x52", [0x2004] = "\x05\x54\x39", + [0x2005] = "\x0f\x4e\x5d", [0x2006] = "\x0f\x54\x3d", + [0x2007] = "\x07\x37\x68", [0x2008] = "\x07\x3f\x4a", + [0x2009] = "\x07\x46\x63", [0x200a] = "\x05\x67\x66", + [0x200e] = "\x07\x5e\x61", [0x2010] = "\x07\x65\x35", + [0x2011] = "\x06\x21\x6f", [0x2012] = "\x06\x21\x71", + [0x2013] = "\x06\x21\x70", [0x2014] = "\x0f\x21\x3b", + [0x2018] = "\x05\x21\x68", [0x2019] = "\x05\x21\x67", + [0x201c] = "\x05\x23\x7c", [0x201d] = "\x06\x27\x37", + [0x201f] = "\x0f\x26\x6b", [0x2020] = "\x06\x30\x57", + [0x2021] = "\x06\x37\x28", [0x2022] = "\x0f\x2f\x34", + [0x2023] = "\x06\x3f\x2e", [0x2024] = "\x0f\x3a\x5e", + [0x2029] = "\x07\x22\x53", [0x202f] = "\x07\x46\x64", + [0x2034] = "\x06\x22\x74", [0x2036] = "\x05\x22\x56", + [0x2037] = "\x06\x2a\x7e", [0x2039] = "\x06\x30\x59", + [0x203b] = "\x06\x30\x58", [0x203f] = "\x04\x2c\x65", + [0x2040] = "\x06\x3f\x2f", [0x2041] = "\x05\x35\x5f", + [0x2042] = "\x05\x32\x2d", [0x2043] = "\x06\x3f\x30", + [0x2044] = "\x05\x32\x2c", [0x2045] = "\x06\x48\x36", + [0x2046] = "\x0f\x3a\x5f", [0x2047] = "\x0f\x3a\x60", + [0x2048] = "\x0f\x3a\x61", [0x204c] = "\x07\x22\x54", + [0x2050] = "\x07\x3f\x4b", [0x2052] = "\x04\x21\x77", + [0x2053] = "\x06\x22\x75", [0x2054] = "\x06\x22\x76", + [0x2055] = "\x05\x22\x59", [0x2056] = "\x05\x22\x58", + [0x2057] = "\x04\x22\x64", [0x2058] = "\x05\x22\x5b", + [0x2059] = "\x06\x24\x61", [0x205a] = "\x06\x24\x60", + [0x205b] = "\x06\x24\x5e", [0x205c] = "\x0f\x22\x48", + [0x205f] = "\x0f\x22\x4a", [0x2062] = "\x05\x22\x57", + [0x2063] = "\x06\x24\x5f", [0x2064] = "\x05\x22\x5a", + [0x2065] = "\x06\x27\x41", [0x2066] = "\x06\x27\x3b", + [0x2067] = "\x05\x24\x22", [0x2068] = "\x06\x27\x38", + [0x2069] = "\x05\x23\x7e", [0x206a] = "\x05\x23\x7d", + [0x206c] = "\x05\x24\x23", [0x206d] = "\x06\x27\x40", + [0x206e] = "\x05\x24\x24", [0x206f] = "\x06\x27\x3c", + [0x2070] = "\x06\x27\x3f", [0x2071] = "\x05\x24\x21", + [0x2072] = "\x0f\x24\x24", [0x2073] = "\x06\x27\x39", + [0x2074] = "\x06\x27\x3a", [0x2075] = "\x06\x27\x3d", + [0x2079] = "\x05\x24\x25", [0x207a] = "\x06\x27\x3e", + [0x207b] = "\x05\x25\x7b", [0x207c] = "\x04\x26\x35", + [0x207d] = "\x05\x25\x79", [0x207e] = "\x05\x25\x7d", + [0x207f] = "\x05\x25\x7a", [0x2080] = "\x05\x25\x7c", + [0x2081] = "\x05\x26\x21", [0x2082] = "\x06\x2b\x23", + [0x2083] = "\x05\x25\x7e", [0x2086] = "\x05\x26\x22", + [0x2087] = "\x06\x2b\x22", [0x2088] = "\x0f\x26\x6c", + [0x208a] = "\x05\x26\x23", [0x208b] = "\x06\x2b\x21", + [0x208d] = "\x05\x25\x77", [0x208f] = "\x05\x25\x78", + [0x2090] = "\x05\x28\x7e", [0x2091] = "\x06\x30\x62", + [0x2092] = "\x05\x28\x7d", [0x2093] = "\x05\x29\x22", + [0x2094] = "\x05\x28\x7c", [0x2095] = "\x05\x29\x23", + [0x2096] = "\x06\x30\x5f", [0x2097] = "\x05\x29\x25", + [0x2098] = "\x05\x29\x24", [0x209a] = "\x06\x30\x5b", + [0x209d] = "\x05\x29\x21", [0x209e] = "\x06\x30\x5a", + [0x209f] = "\x06\x30\x65", [0x20a0] = "\x06\x30\x67", + [0x20a1] = "\x0f\x2a\x53", [0x20a2] = "\x0f\x2a\x54", + [0x20a3] = "\x0f\x2a\x55", [0x20a5] = "\x04\x29\x26", + [0x20a6] = "\x06\x30\x61", [0x20a9] = "\x06\x30\x60", + [0x20aa] = "\x06\x30\x5c", [0x20ab] = "\x06\x30\x5d", + [0x20ac] = "\x06\x30\x66", [0x20ae] = "\x06\x30\x64", + [0x20af] = "\x06\x30\x5e", [0x20b1] = "\x05\x2d\x38", + [0x20b2] = "\x06\x37\x32", [0x20b4] = "\x05\x2d\x37", + [0x20b5] = "\x06\x37\x2e", [0x20b6] = "\x05\x2d\x39", + [0x20b7] = "\x05\x32\x2e", [0x20b8] = "\x06\x37\x2a", + [0x20b9] = "\x04\x2c\x69", [0x20ba] = "\x04\x2c\x6a", + [0x20bb] = "\x06\x37\x2f", [0x20bc] = "\x05\x2d\x3a", + [0x20bd] = "\x06\x37\x2d", [0x20be] = "\x06\x37\x31", + [0x20bf] = "\x06\x37\x30", [0x20c0] = "\x04\x2c\x67", + [0x20c1] = "\x06\x37\x33", [0x20c2] = "\x06\x37\x34", + [0x20c3] = "\x0f\x2f\x36", [0x20c4] = "\x0f\x2f\x35", + [0x20c6] = "\x06\x37\x29", [0x20cb] = "\x06\x37\x2b", + [0x20cc] = "\x06\x3f\x35", [0x20cd] = "\x05\x32\x35", + [0x20ce] = "\x04\x31\x46", [0x20cf] = "\x04\x31\x43", + [0x20d0] = "\x04\x31\x44", [0x20d1] = "\x05\x32\x33", + [0x20d2] = "\x05\x32\x2f", [0x20d3] = "\x06\x3f\x3a", + [0x20d4] = "\x05\x32\x30", [0x20d5] = "\x05\x32\x34", + [0x20d6] = "\x06\x3f\x3c", [0x20d7] = "\x05\x32\x31", + [0x20d8] = "\x05\x32\x36", [0x20d9] = "\x06\x3f\x36", + [0x20da] = "\x06\x3f\x3b", [0x20db] = "\x06\x3f\x32", + [0x20dc] = "\x05\x32\x32", [0x20dd] = "\x06\x3f\x34", + [0x20de] = "\x0f\x34\x49", [0x20df] = "\x0f\x34\x4a", + [0x20e0] = "\x0f\x34\x4b", [0x20e1] = "\x0f\x34\x4c", + [0x20e3] = "\x06\x3f\x39", [0x20e4] = "\x06\x3f\x31", + [0x20e7] = "\x06\x3f\x3d", [0x20e8] = "\x06\x3f\x37", + [0x20ea] = "\x06\x3f\x33", [0x20eb] = "\x06\x48\x39", + [0x20ec] = "\x04\x37\x3e", [0x20ed] = "\x06\x48\x3e", + [0x20ee] = "\x05\x37\x79", [0x20ef] = "\x05\x37\x7a", + [0x20f0] = "\x04\x37\x38", [0x20f1] = "\x05\x37\x78", + [0x20f2] = "\x06\x48\x3a", [0x20f3] = "\x04\x37\x37", + [0x20f4] = "\x05\x38\x21", [0x20f5] = "\x05\x38\x22", + [0x20f6] = "\x06\x3f\x38", [0x20f7] = "\x06\x48\x40", + [0x20f8] = "\x06\x48\x3d", [0x20f9] = "\x06\x48\x3b", + [0x20fa] = "\x05\x37\x7d", [0x20fb] = "\x06\x48\x38", + [0x20fd] = "\x0f\x3a\x62", [0x20fe] = "\x0f\x3a\x63", + [0x2101] = "\x06\x48\x3f", [0x2104] = "\x05\x37\x7b", + [0x2105] = "\x05\x37\x77", [0x2106] = "\x06\x48\x41", + [0x2107] = "\x05\x37\x7e", [0x2108] = "\x0f\x40\x2b", + [0x210a] = "\x05\x3e\x78", [0x210b] = "\x04\x3d\x22", + [0x210c] = "\x05\x45\x52", [0x210d] = "\x04\x3d\x25", + [0x210e] = "\x05\x3e\x75", [0x210f] = "\x05\x3e\x74", + [0x2110] = "\x04\x3d\x24", [0x2113] = "\x05\x3e\x77", + [0x2114] = "\x05\x3e\x7a", [0x2115] = "\x06\x52\x3e", + [0x2116] = "\x06\x52\x3b", [0x2117] = "\x06\x52\x3d", + [0x2118] = "\x06\x5c\x4b", [0x211a] = "\x05\x3e\x7b", + [0x211b] = "\x06\x52\x3c", [0x211c] = "\x05\x3e\x76", + [0x211e] = "\x05\x3e\x79", [0x211f] = "\x06\x5c\x4c", + [0x2120] = "\x06\x5c\x4d", [0x2121] = "\x05\x45\x58", + [0x2122] = "\x04\x43\x34", [0x2123] = "\x05\x45\x4f", + [0x2124] = "\x05\x45\x55", [0x2125] = "\x06\x5c\x4a", + [0x2126] = "\x05\x45\x54", [0x2127] = "\x05\x45\x57", + [0x212b] = "\x0f\x47\x62", [0x2130] = "\x05\x45\x59", + [0x2131] = "\x05\x45\x50", [0x2132] = "\x05\x45\x56", + [0x2133] = "\x05\x45\x51", [0x2134] = "\x07\x22\x57", + [0x2135] = "\x07\x22\x59", [0x2136] = "\x05\x4c\x74", + [0x2137] = "\x05\x4c\x73", [0x2138] = "\x05\x4c\x75", + [0x2139] = "\x04\x49\x57", [0x213a] = "\x05\x4c\x76", + [0x213c] = "\x05\x4c\x78", [0x213d] = "\x04\x49\x56", + [0x213e] = "\x07\x22\x56", [0x213f] = "\x07\x22\x55", + [0x2142] = "\x07\x22\x58", [0x2149] = "\x05\x4c\x77", + [0x214a] = "\x05\x4c\x79", [0x214b] = "\x05\x4c\x72", + [0x214d] = "\x07\x2d\x50", [0x214e] = "\x05\x54\x3e", + [0x214f] = "\x07\x2d\x52", [0x2150] = "\x07\x2d\x58", + [0x2151] = "\x05\x54\x3d", [0x2152] = "\x04\x50\x28", + [0x2153] = "\x07\x2d\x57", [0x2154] = "\x07\x2d\x56", + [0x2155] = "\x05\x54\x3b", [0x2156] = "\x07\x2d\x51", + [0x2157] = "\x05\x54\x3c", [0x2159] = "\x07\x2d\x54", + [0x215a] = "\x05\x54\x3f", [0x215b] = "\x07\x2d\x4f", + [0x215e] = "\x04\x50\x2a", [0x215f] = "\x05\x5b\x41", + [0x2160] = "\x05\x5b\x42", [0x2161] = "\x04\x56\x2c", + [0x2162] = "\x07\x37\x6b", [0x2163] = "\x0f\x59\x7c", + [0x2166] = "\x07\x37\x69", [0x2168] = "\x07\x37\x6a", + [0x2169] = "\x05\x61\x5a", [0x216a] = "\x05\x61\x59", + [0x216b] = "\x05\x61\x58", [0x216d] = "\x07\x46\x66", + [0x216e] = "\x04\x5f\x5d", [0x216f] = "\x05\x67\x67", + [0x2170] = "\x04\x5f\x5c", [0x2171] = "\x07\x46\x65", + [0x2172] = "\x07\x46\x67", [0x2175] = "\x05\x67\x68", + [0x2176] = "\x0f\x62\x33", [0x2178] = "\x07\x4d\x58", + [0x2179] = "\x05\x6c\x21", [0x217b] = "\x07\x53\x33", + [0x217c] = "\x07\x57\x6c", [0x217d] = "\x05\x6f\x7b", + [0x217e] = "\x05\x73\x3d", [0x217f] = "\x07\x57\x6b", + [0x2183] = "\x07\x5e\x62", [0x2184] = "\x07\x5e\x63", + [0x2185] = "\x05\x77\x59", [0x2187] = "\x07\x63\x50", + [0x2188] = "\x07\x63\x75", [0x2189] = "\x04\x21\x78", + [0x218a] = "\x06\x27\x42", [0x218b] = "\x05\x24\x26", + [0x218d] = "\x04\x24\x26", [0x218e] = "\x06\x2b\x24", + [0x218f] = "\x0f\x26\x6d", [0x2190] = "\x0f\x26\x6e", + [0x2191] = "\x06\x30\x69", [0x2192] = "\x06\x30\x68", + [0x2193] = "\x0f\x2a\x56", [0x2199] = "\x06\x37\x35", + [0x219a] = "\x05\x32\x37", [0x219b] = "\x06\x48\x42", + [0x219c] = "\x05\x38\x23", [0x219f] = "\x06\x52\x3f", + [0x21a2] = "\x05\x45\x5a", [0x21a4] = "\x0f\x47\x64", + [0x21ac] = "\x07\x4d\x59", [0x21ae] = "\x0f\x6a\x4e", + [0x21af] = "\x06\x21\x72", [0x21b1] = "\x06\x21\x73", + [0x21b2] = "\x06\x22\x78", [0x21b3] = "\x05\x21\x69", + [0x21b4] = "\x06\x22\x77", [0x21b5] = "\x0f\x21\x62", + [0x21b6] = "\x04\x22\x67", [0x21b7] = "\x04\x24\x27", + [0x21b8] = "\x05\x24\x27", [0x21b9] = "\x0f\x24\x26", + [0x21bb] = "\x06\x29\x5e", [0x21bc] = "\x06\x2b\x25", + [0x21bd] = "\x05\x26\x24", [0x21be] = "\x05\x26\x25", + [0x21bf] = "\x06\x30\x6a", [0x21c0] = "\x06\x30\x41", + [0x21c1] = "\x04\x2f\x27", [0x21c6] = "\x06\x37\x36", + [0x21c7] = "\x04\x31\x4a", [0x21ca] = "\x06\x48\x43", + [0x21cb] = "\x05\x3e\x7c", [0x21cc] = "\x05\x45\x5b", + [0x21cd] = "\x07\x22\x5b", [0x21ce] = "\x0f\x47\x65", + [0x21cf] = "\x06\x5c\x4e", [0x21d0] = "\x0f\x4e\x5f", + [0x21d1] = "\x07\x22\x5c", [0x21d2] = "\x07\x22\x5d", + [0x21d4] = "\x04\x56\x26", [0x21d6] = "\x07\x57\x6d", + [0x21d7] = "\x04\x22\x68", [0x21d8] = "\x05\x22\x5e", + [0x21d9] = "\x06\x24\x64", [0x21da] = "\x05\x22\x5d", + [0x21db] = "\x06\x24\x63", [0x21dc] = "\x06\x24\x62", + [0x21dd] = "\x06\x24\x66", [0x21de] = "\x04\x22\x69", + [0x21e0] = "\x06\x24\x65", [0x21e3] = "\x06\x27\x45", + [0x21e4] = "\x05\x24\x2a", [0x21e5] = "\x05\x24\x2c", + [0x21e6] = "\x05\x24\x2b", [0x21e7] = "\x05\x24\x28", + [0x21e8] = "\x05\x24\x29", [0x21e9] = "\x06\x27\x44", + [0x21ea] = "\x06\x27\x48", [0x21eb] = "\x06\x2b\x28", + [0x21ed] = "\x06\x27\x43", [0x21ef] = "\x06\x27\x46", + [0x21f0] = "\x05\x24\x2d", [0x21f2] = "\x05\x26\x2c", + [0x21f3] = "\x05\x26\x28", [0x21f4] = "\x05\x26\x27", + [0x21f5] = "\x05\x26\x2b", [0x21f6] = "\x05\x26\x2a", + [0x21f7] = "\x04\x26\x39", [0x21f8] = "\x06\x2b\x26", + [0x21f9] = "\x06\x2b\x29", [0x21fa] = "\x06\x2b\x27", + [0x21fb] = "\x04\x26\x3e", [0x21fc] = "\x06\x2b\x2a", + [0x21fd] = "\x0f\x26\x70", [0x21fe] = "\x0f\x26\x71", + [0x21ff] = "\x0f\x26\x72", [0x2200] = "\x0f\x26\x73", + [0x2201] = "\x0f\x26\x74", [0x2202] = "\x05\x26\x29", + [0x2204] = "\x05\x26\x2d", [0x2205] = "\x06\x2b\x2b", + [0x2207] = "\x05\x29\x28", [0x2208] = "\x05\x29\x2a", + [0x2209] = "\x04\x29\x27", [0x220a] = "\x06\x30\x6c", + [0x220b] = "\x05\x29\x29", [0x220c] = "\x06\x30\x6d", + [0x220d] = "\x0f\x2a\x57", [0x220e] = "\x0f\x2a\x59", + [0x220f] = "\x0f\x2a\x58", [0x2210] = "\x0f\x2a\x5a", + [0x2211] = "\x0f\x2a\x5b", [0x2212] = "\x0f\x2a\x5c", + [0x2217] = "\x06\x30\x6b", [0x2219] = "\x05\x2d\x3d", + [0x221a] = "\x05\x2d\x40", [0x221b] = "\x05\x2d\x3e", + [0x221c] = "\x05\x2d\x41", [0x221d] = "\x05\x2d\x3b", + [0x221e] = "\x06\x37\x3a", [0x221f] = "\x06\x37\x3b", + [0x2220] = "\x04\x2c\x6e", [0x2221] = "\x05\x2d\x42", + [0x2222] = "\x05\x2d\x3f", [0x2223] = "\x06\x37\x3c", + [0x2224] = "\x05\x2d\x3c", [0x2225] = "\x06\x37\x39", + [0x2228] = "\x0f\x2f\x37", [0x222c] = "\x06\x37\x37", + [0x222d] = "\x06\x37\x38", [0x2232] = "\x05\x2c\x7b", + [0x2233] = "\x05\x32\x44", [0x2234] = "\x05\x32\x3b", + [0x2235] = "\x05\x32\x39", [0x2236] = "\x04\x31\x4d", + [0x2237] = "\x06\x3f\x43", [0x2238] = "\x05\x32\x42", + [0x2239] = "\x06\x3f\x48", [0x223a] = "\x06\x3f\x3e", + [0x223b] = "\x05\x32\x3d", [0x223c] = "\x05\x32\x3c", + [0x223d] = "\x05\x32\x3f", [0x223e] = "\x05\x32\x3e", + [0x223f] = "\x06\x3f\x3f", [0x2240] = "\x06\x3f\x40", + [0x2241] = "\x05\x32\x41", [0x2242] = "\x05\x32\x38", + [0x2243] = "\x04\x31\x50", [0x2244] = "\x06\x3f\x44", + [0x2245] = "\x05\x32\x43", [0x2246] = "\x05\x38\x28", + [0x2248] = "\x06\x3f\x41", [0x224a] = "\x0f\x34\x4d", + [0x224b] = "\x0f\x34\x4e", [0x224c] = "\x0f\x34\x4f", + [0x224d] = "\x0f\x34\x50", [0x224e] = "\x0f\x34\x51", + [0x224f] = "\x0f\x34\x52", [0x2250] = "\x0f\x34\x53", + [0x2255] = "\x06\x3f\x47", [0x2256] = "\x06\x46\x3d", + [0x2258] = "\x05\x32\x3a", [0x2259] = "\x06\x3f\x42", + [0x225a] = "\x05\x32\x40", [0x225b] = "\x06\x48\x4a", + [0x225c] = "\x04\x31\x4b", [0x225d] = "\x05\x38\x2b", + [0x225e] = "\x05\x38\x2c", [0x225f] = "\x05\x38\x2d", + [0x2260] = "\x06\x48\x4b", [0x2261] = "\x06\x48\x4e", + [0x2262] = "\x05\x38\x27", [0x2263] = "\x06\x48\x4d", + [0x2264] = "\x04\x37\x42", [0x2265] = "\x05\x38\x2a", + [0x2266] = "\x05\x38\x26", [0x2267] = "\x06\x48\x49", + [0x2268] = "\x04\x37\x43", [0x2269] = "\x05\x38\x25", + [0x226a] = "\x06\x52\x44", [0x226b] = "\x06\x48\x46", + [0x226c] = "\x06\x48\x47", [0x226d] = "\x05\x38\x24", + [0x226e] = "\x0f\x3a\x65", [0x226f] = "\x0f\x3a\x67", + [0x2270] = "\x0f\x3a\x68", [0x2271] = "\x0f\x3a\x69", + [0x2272] = "\x0f\x3a\x6a", [0x2274] = "\x06\x48\x48", + [0x2276] = "\x06\x48\x4c", [0x227c] = "\x0f\x3a\x66", + [0x227f] = "\x04\x3d\x2b", [0x2280] = "\x05\x3f\x25", + [0x2281] = "\x04\x3d\x2c", [0x2282] = "\x06\x52\x41", + [0x2283] = "\x06\x52\x42", [0x2284] = "\x05\x3f\x22", + [0x2285] = "\x05\x3f\x23", [0x2286] = "\x06\x52\x47", + [0x2287] = "\x05\x3e\x7d", [0x2289] = "\x06\x52\x45", + [0x228a] = "\x0f\x41\x3a", [0x228b] = "\x0f\x41\x3b", + [0x228c] = "\x0f\x41\x3c", [0x228e] = "\x06\x52\x43", + [0x2290] = "\x06\x52\x48", [0x2292] = "\x05\x3f\x24", + [0x2293] = "\x05\x3e\x7e", [0x2294] = "\x06\x52\x46", + [0x2295] = "\x04\x43\x38", [0x2296] = "\x05\x45\x5c", + [0x2297] = "\x04\x43\x37", [0x2298] = "\x05\x45\x5e", + [0x2299] = "\x06\x5c\x50", [0x229b] = "\x05\x45\x60", + [0x229c] = "\x05\x45\x5f", [0x229d] = "\x06\x5c\x4f", + [0x229e] = "\x0f\x47\x67", [0x229f] = "\x0f\x47\x68", + [0x22a0] = "\x0f\x47\x69", [0x22a1] = "\x0f\x47\x6a", + [0x22a2] = "\x0f\x47\x6b", [0x22a3] = "\x0f\x47\x6c", + [0x22a4] = "\x0f\x47\x6d", [0x22a5] = "\x0f\x47\x6e", + [0x22a6] = "\x0f\x47\x6f", [0x22a8] = "\x06\x5c\x51", + [0x22aa] = "\x06\x60\x31", [0x22ac] = "\x0f\x4a\x54", + [0x22ad] = "\x07\x22\x5e", [0x22ae] = "\x04\x49\x5a", + [0x22af] = "\x04\x37\x3f", [0x22b0] = "\x04\x49\x58", + [0x22b1] = "\x05\x4c\x7a", [0x22b2] = "\x04\x49\x59", + [0x22b3] = "\x07\x2d\x59", [0x22b4] = "\x07\x22\x62", + [0x22b5] = "\x05\x4c\x7c", [0x22b6] = "\x05\x4c\x7e", + [0x22b7] = "\x0f\x4e\x60", [0x22b8] = "\x0f\x4e\x62", + [0x22b9] = "\x0f\x4e\x63", [0x22ba] = "\x07\x22\x5f", + [0x22bb] = "\x07\x22\x61", [0x22bc] = "\x07\x22\x63", + [0x22c1] = "\x07\x22\x60", [0x22c2] = "\x05\x4c\x7b", + [0x22c3] = "\x05\x54\x41", [0x22c4] = "\x05\x4c\x7d", + [0x22c5] = "\x05\x54\x43", [0x22c6] = "\x05\x54\x40", + [0x22c7] = "\x04\x50\x2d", [0x22cc] = "\x05\x54\x44", + [0x22cd] = "\x0f\x54\x3f", [0x22ce] = "\x0f\x54\x40", + [0x22cf] = "\x0f\x54\x41", [0x22d0] = "\x0f\x54\x42", + [0x22d1] = "\x07\x37\x6e", [0x22d2] = "\x05\x5b\x44", + [0x22d3] = "\x07\x37\x6c", [0x22d4] = "\x07\x37\x6d", + [0x22d5] = "\x0f\x59\x7e", [0x22d6] = "\x0f\x5a\x21", + [0x22d7] = "\x0f\x5a\x22", [0x22d8] = "\x0f\x5a\x23", + [0x22da] = "\x05\x5b\x43", [0x22dc] = "\x07\x37\x6f", + [0x22dd] = "\x05\x5b\x45", [0x22e1] = "\x07\x3f\x51", + [0x22e2] = "\x07\x3f\x4e", [0x22e3] = "\x05\x61\x5b", + [0x22e4] = "\x0f\x5e\x5a", [0x22e5] = "\x0f\x5e\x5c", + [0x22e6] = "\x07\x3f\x4d", [0x22e7] = "\x07\x3f\x4f", + [0x22ea] = "\x07\x3f\x4c", [0x22eb] = "\x0f\x5e\x5b", + [0x22ed] = "\x07\x3f\x50", [0x22ef] = "\x07\x46\x68", + [0x22f0] = "\x07\x46\x69", [0x22f1] = "\x05\x61\x5c", + [0x22f2] = "\x05\x67\x69", [0x22f5] = "\x0f\x62\x34", + [0x22f6] = "\x0f\x62\x35", [0x22f7] = "\x0f\x62\x36", + [0x22f8] = "\x05\x67\x6a", [0x22fb] = "\x05\x6c\x24", + [0x22fc] = "\x05\x6c\x23", [0x22fd] = "\x07\x4d\x5d", + [0x22fe] = "\x07\x4d\x5b", [0x22ff] = "\x05\x6c\x22", + [0x2300] = "\x07\x4d\x5a", [0x2302] = "\x07\x4d\x5c", + [0x2303] = "\x07\x4d\x5e", [0x2304] = "\x04\x66\x3c", + [0x2306] = "\x07\x53\x34", [0x2307] = "\x07\x53\x61", + [0x2308] = "\x05\x73\x3e", [0x2309] = "\x07\x57\x6e", + [0x230b] = "\x07\x57\x6f", [0x230d] = "\x05\x75\x6a", + [0x230f] = "\x0f\x6a\x4f", [0x2311] = "\x07\x5b\x4d", + [0x2312] = "\x07\x5e\x64", [0x2313] = "\x07\x62\x36", + [0x2314] = "\x05\x7a\x68", [0x2315] = "\x05\x7a\x67", + [0x2316] = "\x0f\x6c\x7b", [0x2317] = "\x0f\x21\x63", + [0x2318] = "\x0f\x22\x4b", [0x2319] = "\x0f\x22\x4c", + [0x231b] = "\x06\x2b\x2c", [0x231c] = "\x0f\x24\x27", + [0x231d] = "\x06\x2b\x2d", [0x231e] = "\x06\x2b\x2e", + [0x2320] = "\x0f\x2f\x39", [0x2322] = "\x0f\x2f\x3b", + [0x2323] = "\x0f\x2f\x3c", [0x2325] = "\x0f\x2f\x3a", + [0x2326] = "\x05\x32\x45", [0x2327] = "\x0f\x34\x54", + [0x2328] = "\x06\x48\x4f", [0x2329] = "\x0f\x3a\x6b", + [0x232a] = "\x0f\x3a\x6c", [0x232b] = "\x05\x3f\x26", + [0x232c] = "\x06\x21\x3f", [0x232d] = "\x06\x21\x75", + [0x232f] = "\x06\x22\x79", [0x2331] = "\x06\x27\x49", + [0x2333] = "\x04\x24\x2a", [0x2334] = "\x06\x30\x70", + [0x2335] = "\x06\x27\x4d", [0x2336] = "\x0f\x24\x28", + [0x2338] = "\x06\x27\x4b", [0x233a] = "\x06\x27\x4e", + [0x233b] = "\x04\x26\x3f", [0x233c] = "\x06\x2b\x30", + [0x233d] = "\x05\x26\x2e", [0x233e] = "\x06\x2b\x31", + [0x233f] = "\x03\x2a\x39", [0x2341] = "\x04\x27\x41", + [0x2342] = "\x06\x35\x23", [0x2343] = "\x06\x30\x72", + [0x2344] = "\x06\x30\x73", [0x2345] = "\x06\x30\x71", + [0x2346] = "\x06\x30\x6f", [0x234a] = "\x06\x30\x6e", + [0x234d] = "\x06\x37\x3f", [0x234e] = "\x06\x37\x3e", + [0x234f] = "\x04\x2c\x6f", [0x2350] = "\x06\x37\x3d", + [0x2352] = "\x06\x37\x40", [0x2354] = "\x06\x3f\x49", + [0x2355] = "\x06\x3f\x4a", [0x2356] = "\x06\x3f\x4b", + [0x2357] = "\x06\x3f\x4c", [0x2358] = "\x06\x3f\x4d", + [0x2359] = "\x06\x3f\x4e", [0x235a] = "\x04\x37\x44", + [0x235b] = "\x06\x48\x50", [0x235c] = "\x06\x48\x54", + [0x235d] = "\x06\x48\x53", [0x235e] = "\x06\x48\x51", + [0x235f] = "\x0f\x3a\x6d", [0x2360] = "\x06\x48\x52", + [0x2362] = "\x06\x52\x49", [0x2363] = "\x05\x3f\x27", + [0x2364] = "\x0f\x41\x3d", [0x2366] = "\x06\x5c\x53", + [0x2367] = "\x06\x5c\x54", [0x2368] = "\x06\x5c\x52", + [0x236b] = "\x05\x45\x61", [0x236c] = "\x07\x22\x64", + [0x236e] = "\x07\x2d\x5a", [0x236f] = "\x07\x2d\x5c", + [0x2370] = "\x04\x50\x2f", [0x2371] = "\x05\x54\x45", + [0x2372] = "\x07\x37\x71", [0x2373] = "\x07\x37\x70", + [0x2376] = "\x07\x57\x70", [0x2377] = "\x07\x63\x51", + [0x2378] = "\x07\x63\x52", [0x2379] = "\x07\x65\x36", + [0x237a] = "\x06\x21\x40", [0x237b] = "\x06\x21\x76", + [0x237e] = "\x0f\x22\x4d", [0x237f] = "\x04\x24\x2b", + [0x2380] = "\x06\x27\x50", [0x2381] = "\x06\x27\x4f", + [0x2383] = "\x05\x24\x2e", [0x2384] = "\x06\x2b\x32", + [0x2386] = "\x06\x30\x76", [0x2387] = "\x06\x30\x75", + [0x238a] = "\x06\x30\x77", [0x238c] = "\x05\x2e\x68", + [0x238d] = "\x06\x3f\x4f", [0x238e] = "\x05\x38\x2e", + [0x2390] = "\x06\x52\x4a", [0x2391] = "\x06\x5c\x55", + [0x2392] = "\x07\x22\x65", [0x2393] = "\x07\x2d\x5d", + [0x2398] = "\x05\x21\x2a", [0x2399] = "\x05\x21\x47", + [0x239a] = "\x06\x21\x78", [0x239c] = "\x06\x21\x7c", + [0x239d] = "\x06\x21\x77", [0x239f] = "\x06\x21\x7a", + [0x23a0] = "\x06\x21\x7b", [0x23a2] = "\x06\x23\x21", + [0x23a3] = "\x06\x23\x22", [0x23a4] = "\x06\x22\x7c", + [0x23a5] = "\x06\x22\x7a", [0x23a6] = "\x06\x23\x23", + [0x23a7] = "\x06\x22\x7b", [0x23a8] = "\x06\x22\x7d", + [0x23a9] = "\x06\x22\x7e", [0x23aa] = "\x05\x21\x6a", + [0x23ab] = "\x05\x22\x60", [0x23ad] = "\x05\x22\x5f", + [0x23b0] = "\x06\x24\x68", [0x23b1] = "\x06\x24\x69", + [0x23b2] = "\x06\x24\x6a", [0x23b6] = "\x06\x24\x6b", + [0x23b7] = "\x05\x24\x2f", [0x23b8] = "\x06\x27\x51", + [0x23b9] = "\x05\x24\x31", [0x23ba] = "\x06\x27\x53", + [0x23bb] = "\x05\x24\x30", [0x23bc] = "\x0f\x24\x29", + [0x23be] = "\x0f\x24\x2a", [0x23bf] = "\x0f\x24\x2b", + [0x23c0] = "\x0f\x24\x2c", [0x23c1] = "\x06\x27\x52", + [0x23c5] = "\x05\x24\x32", [0x23c6] = "\x05\x26\x2f", + [0x23c7] = "\x06\x2b\x36", [0x23c8] = "\x06\x2b\x33", + [0x23c9] = "\x06\x2b\x34", [0x23d2] = "\x06\x2b\x37", + [0x23d3] = "\x06\x2b\x35", [0x23d4] = "\x06\x30\x7e", + [0x23d5] = "\x05\x29\x2c", [0x23d6] = "\x06\x30\x7d", + [0x23d7] = "\x04\x29\x30", [0x23d8] = "\x06\x30\x79", + [0x23d9] = "\x05\x29\x2b", [0x23da] = "\x06\x30\x78", + [0x23e4] = "\x05\x2d\x44", [0x23e6] = "\x05\x2d\x43", + [0x23e7] = "\x05\x2d\x45", [0x23e8] = "\x06\x37\x43", + [0x23e9] = "\x06\x37\x41", [0x23ea] = "\x05\x2d\x46", + [0x23eb] = "\x0f\x2f\x3d", [0x23ec] = "\x06\x37\x42", + [0x23ee] = "\x05\x32\x4a", [0x23ef] = "\x05\x32\x48", + [0x23f0] = "\x05\x32\x49", [0x23f1] = "\x06\x3f\x56", + [0x23f2] = "\x06\x3f\x50", [0x23f3] = "\x04\x29\x2f", + [0x23f4] = "\x06\x48\x55", [0x23f5] = "\x06\x3f\x52", + [0x23f6] = "\x06\x3f\x53", [0x23f7] = "\x05\x32\x47", + [0x23f8] = "\x06\x3f\x51", [0x23f9] = "\x0f\x34\x55", + [0x23fa] = "\x0f\x34\x56", [0x23fb] = "\x0f\x34\x57", + [0x23fc] = "\x06\x3f\x54", [0x23fd] = "\x06\x3f\x57", + [0x23fe] = "\x06\x3f\x55", [0x2400] = "\x06\x48\x56", + [0x2401] = "\x06\x48\x59", [0x2402] = "\x05\x38\x2f", + [0x2403] = "\x05\x38\x32", [0x2404] = "\x05\x38\x31", + [0x2405] = "\x06\x48\x5a", [0x2406] = "\x05\x38\x30", + [0x2407] = "\x06\x48\x58", [0x2408] = "\x06\x48\x57", + [0x240a] = "\x05\x3f\x28", [0x240b] = "\x04\x3d\x31", + [0x240c] = "\x06\x52\x4b", [0x240d] = "\x0f\x41\x40", + [0x240f] = "\x06\x52\x4c", [0x2412] = "\x05\x45\x62", + [0x2413] = "\x06\x5c\x56", [0x2414] = "\x05\x45\x63", + [0x2415] = "\x06\x5c\x57", [0x2416] = "\x06\x5c\x59", + [0x2418] = "\x0f\x47\x70", [0x2419] = "\x06\x5c\x5a", + [0x241d] = "\x06\x5c\x58", [0x241e] = "\x05\x4d\x21", + [0x241f] = "\x05\x4d\x22", [0x2420] = "\x04\x49\x60", + [0x2421] = "\x07\x22\x66", [0x2422] = "\x0f\x4e\x64", + [0x2423] = "\x0f\x4e\x65", [0x2424] = "\x07\x22\x67", + [0x2425] = "\x07\x2d\x5f", [0x2426] = "\x05\x54\x46", + [0x2427] = "\x04\x50\x30", [0x2428] = "\x07\x2d\x60", + [0x2429] = "\x07\x2d\x5e", [0x242c] = "\x07\x37\x73", + [0x242d] = "\x07\x37\x72", [0x242f] = "\x07\x37\x74", + [0x2430] = "\x0f\x5a\x24", [0x2432] = "\x04\x5b\x22", + [0x2433] = "\x05\x61\x5e", [0x2434] = "\x07\x3f\x52", + [0x2435] = "\x0f\x5e\x5d", [0x2437] = "\x05\x61\x5d", + [0x2438] = "\x07\x46\x6d", [0x2439] = "\x07\x46\x6b", + [0x243a] = "\x07\x46\x6f", [0x243b] = "\x07\x46\x6a", + [0x243c] = "\x07\x46\x6c", [0x243e] = "\x05\x67\x6b", + [0x243f] = "\x05\x6c\x25", [0x2440] = "\x07\x4d\x5f", + [0x2441] = "\x04\x5f\x5f", [0x2442] = "\x07\x4d\x61", + [0x2443] = "\x07\x4d\x60", [0x2444] = "\x05\x6c\x26", + [0x2446] = "\x05\x6f\x7c", [0x2447] = "\x05\x6f\x7d", + [0x2448] = "\x04\x66\x3d", [0x2449] = "\x07\x53\x35", + [0x244a] = "\x05\x73\x3f", [0x244b] = "\x07\x60\x3c", + [0x244c] = "\x07\x60\x6f", [0x244d] = "\x07\x64\x46", + [0x2450] = "\x06\x24\x6e", [0x2451] = "\x06\x24\x6c", + [0x2452] = "\x06\x24\x6d", [0x2453] = "\x05\x24\x33", + [0x2454] = "\x06\x31\x21", [0x2455] = "\x06\x2b\x38", + [0x2456] = "\x06\x2d\x32", [0x2457] = "\x06\x31\x24", + [0x2458] = "\x06\x37\x44", [0x2459] = "\x06\x31\x22", + [0x245a] = "\x06\x31\x23", [0x245b] = "\x06\x37\x46", + [0x245c] = "\x06\x37\x45", [0x245e] = "\x06\x3f\x58", + [0x2461] = "\x06\x4f\x21", [0x2462] = "\x05\x38\x33", + [0x2463] = "\x06\x48\x5c", [0x2464] = "\x06\x48\x5b", + [0x2466] = "\x05\x3f\x2a", [0x2468] = "\x06\x5c\x5c", + [0x2469] = "\x06\x5c\x5f", [0x246a] = "\x06\x5c\x5d", + [0x246b] = "\x06\x5c\x5b", [0x246d] = "\x06\x5c\x5e", + [0x246f] = "\x07\x2d\x61", [0x2470] = "\x07\x2d\x4e", + [0x2471] = "\x04\x50\x32", [0x2472] = "\x07\x37\x75", + [0x2473] = "\x07\x3f\x55", [0x2475] = "\x07\x3f\x54", + [0x2476] = "\x07\x3f\x53", [0x2477] = "\x07\x46\x72", + [0x2478] = "\x07\x46\x70", [0x2479] = "\x07\x46\x71", + [0x247d] = "\x07\x57\x71", [0x247e] = "\x07\x5b\x4e", + [0x247f] = "\x07\x62\x37", [0x2480] = "\x06\x23\x25", + [0x2481] = "\x06\x23\x24", [0x2482] = "\x0f\x21\x64", + [0x2483] = "\x06\x24\x71", [0x2484] = "\x06\x24\x6f", + [0x2487] = "\x0f\x24\x2d", [0x2488] = "\x06\x27\x54", + [0x2489] = "\x05\x26\x30", [0x248a] = "\x06\x2b\x3b", + [0x248c] = "\x06\x2b\x3a", [0x248f] = "\x06\x37\x47", + [0x2490] = "\x04\x2c\x74", [0x2491] = "\x04\x2c\x73", + [0x2494] = "\x05\x35\x60", [0x2495] = "\x06\x3f\x5d", + [0x2496] = "\x06\x3f\x59", [0x2497] = "\x06\x3f\x5a", + [0x2498] = "\x0f\x34\x58", [0x2499] = "\x0f\x34\x59", + [0x249a] = "\x0f\x34\x5a", [0x249b] = "\x06\x3f\x5c", + [0x249c] = "\x06\x3f\x5b", [0x249d] = "\x05\x32\x4b", + [0x249e] = "\x06\x48\x5d", [0x249f] = "\x06\x48\x60", + [0x24a0] = "\x06\x48\x5e", [0x24a1] = "\x06\x48\x5f", + [0x24a2] = "\x0f\x3a\x6e", [0x24a4] = "\x06\x52\x51", + [0x24a5] = "\x06\x52\x4e", [0x24a6] = "\x06\x52\x50", + [0x24a7] = "\x06\x52\x4f", [0x24a8] = "\x0f\x41\x41", + [0x24a9] = "\x04\x43\x3c", [0x24aa] = "\x06\x5c\x60", + [0x24ab] = "\x07\x22\x6b", [0x24ac] = "\x07\x22\x6c", + [0x24ad] = "\x07\x22\x69", [0x24ae] = "\x07\x22\x6a", + [0x24af] = "\x05\x4d\x23", [0x24b0] = "\x04\x50\x33", + [0x24b2] = "\x05\x54\x47", [0x24b3] = "\x07\x2d\x64", + [0x24b4] = "\x07\x37\x76", [0x24b5] = "\x07\x3f\x56", + [0x24b6] = "\x0f\x67\x54", [0x24b7] = "\x07\x4d\x62", + [0x24b8] = "\x07\x53\x36", [0x24b9] = "\x05\x73\x41", + [0x24bb] = "\x0f\x6c\x27", [0x24bd] = "\x06\x21\x7d", + [0x24be] = "\x05\x21\x6b", [0x24bf] = "\x04\x21\x79", + [0x24c0] = "\x05\x22\x61", [0x24c2] = "\x04\x22\x6e", + [0x24c3] = "\x05\x22\x62", [0x24c4] = "\x05\x24\x34", + [0x24c5] = "\x06\x27\x58", [0x24c6] = "\x05\x24\x35", + [0x24c7] = "\x06\x27\x57", [0x24c8] = "\x06\x27\x59", + [0x24c9] = "\x06\x27\x5b", [0x24ca] = "\x06\x27\x56", + [0x24cb] = "\x05\x24\x36", [0x24cf] = "\x06\x27\x55", + [0x24d0] = "\x06\x27\x5a", [0x24d2] = "\x05\x26\x33", + [0x24d3] = "\x06\x2b\x3d", [0x24d4] = "\x05\x26\x31", + [0x24d5] = "\x06\x2b\x3c", [0x24d6] = "\x05\x26\x32", + [0x24d7] = "\x05\x29\x2d", [0x24d8] = "\x06\x2b\x3f", + [0x24dc] = "\x04\x29\x33", [0x24dd] = "\x06\x31\x26", + [0x24de] = "\x05\x29\x30", [0x24df] = "\x05\x29\x2e", + [0x24e0] = "\x06\x31\x28", [0x24e2] = "\x05\x29\x32", + [0x24e3] = "\x05\x29\x31", [0x24e5] = "\x0f\x2a\x5e", + [0x24e9] = "\x06\x31\x27", [0x24ea] = "\x06\x37\x4d", + [0x24eb] = "\x04\x2c\x79", [0x24ec] = "\x04\x2c\x77", + [0x24ed] = "\x04\x2c\x7c", [0x24ee] = "\x04\x2c\x75", + [0x24ef] = "\x05\x2d\x4b", [0x24f0] = "\x05\x2d\x49", + [0x24f1] = "\x04\x2c\x78", [0x24f2] = "\x04\x2c\x7a", + [0x24f3] = "\x04\x2c\x76", [0x24f4] = "\x04\x2c\x7b", + [0x24f5] = "\x05\x2d\x4a", [0x24f6] = "\x06\x37\x49", + [0x24f7] = "\x06\x37\x4f", [0x24f8] = "\x06\x37\x4c", + [0x24f9] = "\x0f\x2f\x3f", [0x24fa] = "\x0f\x2f\x40", + [0x24fc] = "\x06\x37\x4b", [0x24fd] = "\x06\x37\x50", + [0x24fe] = "\x06\x37\x4e", [0x2500] = "\x06\x37\x4a", + [0x2501] = "\x04\x31\x56", [0x2502] = "\x05\x32\x4f", + [0x2503] = "\x06\x3f\x68", [0x2504] = "\x06\x3f\x61", + [0x2506] = "\x05\x32\x4c", [0x2507] = "\x05\x32\x51", + [0x2508] = "\x05\x32\x4e", [0x2509] = "\x06\x3f\x60", + [0x250a] = "\x05\x32\x50", [0x250b] = "\x04\x31\x58", + [0x250c] = "\x06\x3f\x67", [0x250d] = "\x06\x3f\x65", + [0x250e] = "\x06\x3f\x62", [0x250f] = "\x04\x31\x59", + [0x2510] = "\x06\x3f\x66", [0x2511] = "\x05\x32\x4d", + [0x2518] = "\x06\x3f\x64", [0x251a] = "\x06\x3f\x5f", + [0x251c] = "\x06\x3f\x63", [0x251d] = "\x06\x48\x64", + [0x251e] = "\x0f\x34\x5c", [0x251f] = "\x04\x37\x46", + [0x2520] = "\x05\x38\x36", [0x2521] = "\x05\x38\x35", + [0x2522] = "\x05\x38\x3b", [0x2523] = "\x05\x38\x3a", + [0x2524] = "\x05\x38\x37", [0x2525] = "\x04\x37\x47", + [0x2526] = "\x06\x48\x61", [0x2527] = "\x05\x38\x34", + [0x2528] = "\x06\x48\x63", [0x2529] = "\x05\x38\x38", + [0x252a] = "\x04\x31\x55", [0x252b] = "\x0f\x3a\x70", + [0x252d] = "\x06\x48\x62", [0x2530] = "\x0f\x3a\x6f", + [0x2531] = "\x05\x38\x39", [0x2533] = "\x05\x3f\x2c", + [0x2534] = "\x05\x3f\x2b", [0x2535] = "\x06\x52\x52", + [0x2536] = "\x06\x52\x54", [0x2537] = "\x06\x52\x57", + [0x2538] = "\x06\x52\x53", [0x253b] = "\x0f\x41\x42", + [0x253c] = "\x0f\x41\x43", [0x253d] = "\x0f\x41\x44", + [0x253e] = "\x0f\x41\x45", [0x253f] = "\x0f\x41\x46", + [0x2540] = "\x0f\x41\x47", [0x2543] = "\x06\x52\x55", + [0x2547] = "\x06\x52\x56", [0x2548] = "\x06\x56\x6c", + [0x254d] = "\x05\x3f\x2d", [0x254e] = "\x04\x3d\x32", + [0x254f] = "\x06\x5c\x66", [0x2550] = "\x06\x5c\x63", + [0x2551] = "\x05\x45\x66", [0x2552] = "\x06\x5c\x62", + [0x2553] = "\x04\x43\x3e", [0x2554] = "\x05\x45\x65", + [0x2555] = "\x04\x43\x41", [0x2556] = "\x04\x43\x40", + [0x2557] = "\x06\x5c\x61", [0x2558] = "\x05\x45\x68", + [0x2559] = "\x05\x45\x6a", [0x255a] = "\x05\x45\x64", + [0x255b] = "\x06\x5c\x68", [0x255c] = "\x06\x5c\x69", + [0x255d] = "\x06\x5c\x6a", [0x255e] = "\x05\x45\x67", + [0x255f] = "\x06\x5c\x64", [0x2560] = "\x0f\x47\x71", + [0x2561] = "\x0f\x47\x72", [0x2562] = "\x0f\x47\x73", + [0x2563] = "\x0f\x47\x74", [0x2564] = "\x0f\x47\x75", + [0x2567] = "\x06\x5c\x65", [0x256a] = "\x04\x49\x64", + [0x256b] = "\x05\x4d\x24", [0x256c] = "\x05\x5b\x48", + [0x256d] = "\x04\x49\x63", [0x256e] = "\x04\x49\x62", + [0x256f] = "\x05\x4d\x25", [0x2570] = "\x07\x22\x6d", + [0x2571] = "\x07\x22\x6f", [0x2573] = "\x0f\x4e\x66", + [0x2574] = "\x0f\x4e\x67", [0x2576] = "\x07\x22\x6e", + [0x2577] = "\x07\x22\x70", [0x2579] = "\x07\x2d\x65", + [0x257a] = "\x05\x54\x48", [0x257b] = "\x05\x54\x4a", + [0x257c] = "\x07\x2d\x67", [0x257e] = "\x07\x2d\x66", + [0x2581] = "\x0f\x54\x44", [0x2582] = "\x0f\x54\x45", + [0x2583] = "\x07\x2d\x68", [0x2584] = "\x05\x54\x49", + [0x2588] = "\x05\x5b\x47", [0x2589] = "\x07\x37\x77", + [0x258a] = "\x04\x56\x30", [0x258d] = "\x0f\x5c\x5f", + [0x258e] = "\x05\x5b\x46", [0x258f] = "\x05\x61\x60", + [0x2590] = "\x07\x3f\x57", [0x2591] = "\x05\x61\x5f", + [0x2592] = "\x07\x3f\x58", [0x2593] = "\x0f\x5e\x5e", + [0x2597] = "\x05\x61\x61", [0x2598] = "\x07\x46\x73", + [0x2599] = "\x07\x46\x75", [0x259a] = "\x07\x46\x76", + [0x259b] = "\x07\x4d\x22", [0x259c] = "\x07\x46\x74", + [0x259d] = "\x05\x6c\x27", [0x259e] = "\x04\x63\x3e", + [0x259f] = "\x04\x63\x3d", [0x25a0] = "\x0f\x65\x2a", + [0x25a2] = "\x07\x4d\x63", [0x25a3] = "\x07\x53\x37", + [0x25a4] = "\x05\x6f\x7e", [0x25a5] = "\x07\x57\x72", + [0x25a6] = "\x04\x6a\x47", [0x25a7] = "\x05\x79\x28", + [0x25a9] = "\x05\x21\x31", [0x25aa] = "\x06\x22\x21", + [0x25ab] = "\x04\x22\x6f", [0x25ac] = "\x05\x21\x6c", + [0x25ad] = "\x06\x23\x26", [0x25b0] = "\x0f\x22\x4f", + [0x25b2] = "\x06\x24\x75", [0x25b3] = "\x05\x22\x63", + [0x25b4] = "\x06\x27\x60", [0x25b5] = "\x05\x22\x69", + [0x25b6] = "\x06\x27\x5d", [0x25b7] = "\x05\x22\x64", + [0x25b8] = "\x06\x24\x73", [0x25b9] = "\x06\x24\x74", + [0x25ba] = "\x05\x22\x65", [0x25bb] = "\x06\x27\x5c", + [0x25bd] = "\x06\x27\x5e", [0x25c1] = "\x06\x27\x61", + [0x25c3] = "\x06\x24\x72", [0x25c7] = "\x05\x22\x68", + [0x25c8] = "\x05\x24\x37", [0x25c9] = "\x05\x24\x39", + [0x25ca] = "\x04\x26\x45", [0x25cb] = "\x06\x27\x66", + [0x25cc] = "\x06\x27\x64", [0x25cd] = "\x06\x2b\x46", + [0x25ce] = "\x06\x27\x67", [0x25d0] = "\x06\x2b\x40", + [0x25d1] = "\x06\x27\x62", [0x25d2] = "\x06\x27\x63", + [0x25d3] = "\x06\x2b\x44", [0x25d4] = "\x06\x27\x65", + [0x25d5] = "\x06\x27\x68", [0x25d7] = "\x03\x25\x7e", + [0x25d8] = "\x06\x27\x69", [0x25db] = "\x05\x24\x3a", + [0x25dc] = "\x0f\x24\x2e", [0x25dd] = "\x0f\x24\x2f", + [0x25de] = "\x0f\x24\x31", [0x25df] = "\x0f\x24\x32", + [0x25e0] = "\x0f\x24\x34", [0x25e1] = "\x0f\x24\x35", + [0x25e2] = "\x0f\x24\x36", [0x25e3] = "\x0f\x26\x77", + [0x25e4] = "\x0f\x26\x78", [0x25e5] = "\x0f\x26\x79", + [0x25e6] = "\x0f\x26\x7a", [0x25e7] = "\x0f\x26\x7b", + [0x25e8] = "\x0f\x26\x7d", [0x25e9] = "\x0f\x26\x7e", + [0x25ea] = "\x0f\x27\x21", [0x25eb] = "\x0f\x26\x7c", + [0x25ec] = "\x06\x2b\x45", [0x25ee] = "\x06\x2b\x41", + [0x25f1] = "\x06\x2b\x42", [0x25f2] = "\x04\x24\x2d", + [0x25f5] = "\x0f\x24\x30", [0x25f9] = "\x04\x26\x44", + [0x25fa] = "\x05\x26\x34", [0x25fb] = "\x06\x2b\x43", + [0x25ff] = "\x04\x26\x47", [0x2600] = "\x06\x2b\x4c", + [0x2601] = "\x04\x29\x47", [0x2602] = "\x06\x31\x2f", + [0x2603] = "\x04\x26\x4b", [0x2604] = "\x06\x2b\x4d", + [0x2605] = "\x06\x31\x29", [0x2606] = "\x05\x26\x35", + [0x2607] = "\x06\x31\x2c", [0x2608] = "\x06\x2b\x4f", + [0x2609] = "\x04\x26\x4a", [0x260a] = "\x05\x26\x37", + [0x260b] = "\x04\x29\x38", [0x260c] = "\x05\x26\x36", + [0x260d] = "\x04\x29\x43", [0x260e] = "\x06\x2b\x49", + [0x260f] = "\x05\x26\x38", [0x2610] = "\x04\x26\x51", + [0x2611] = "\x04\x29\x44", [0x2612] = "\x06\x31\x2a", + [0x2613] = "\x06\x31\x2b", [0x2614] = "\x06\x2b\x50", + [0x2615] = "\x06\x2b\x47", [0x2616] = "\x06\x31\x2d", + [0x261a] = "\x0f\x26\x75", [0x261d] = "\x0f\x27\x22", + [0x261e] = "\x0f\x2a\x70", [0x2620] = "\x04\x29\x46", + [0x2623] = "\x06\x31\x2e", [0x2626] = "\x06\x2b\x48", + [0x2627] = "\x06\x2b\x4a", [0x2628] = "\x06\x2b\x4e", + [0x262a] = "\x06\x2b\x4b", [0x262b] = "\x0f\x2a\x64", + [0x262f] = "\x0f\x2a\x5f", [0x2630] = "\x0f\x2a\x62", + [0x2631] = "\x0f\x2a\x65", [0x2632] = "\x0f\x2a\x68", + [0x2633] = "\x0f\x2a\x6c", [0x2634] = "\x06\x37\x5b", + [0x2635] = "\x06\x37\x59", [0x2636] = "\x06\x31\x32", + [0x2637] = "\x04\x29\x49", [0x2638] = "\x05\x29\x37", + [0x263a] = "\x04\x29\x42", [0x263b] = "\x04\x2d\x29", + [0x263c] = "\x05\x2d\x4e", [0x263d] = "\x05\x29\x36", + [0x263e] = "\x06\x31\x39", [0x263f] = "\x06\x37\x57", + [0x2640] = "\x06\x31\x33", [0x2641] = "\x04\x2c\x7d", + [0x2642] = "\x05\x2d\x4c", [0x2643] = "\x06\x31\x35", + [0x2644] = "\x06\x37\x53", [0x2645] = "\x04\x2d\x21", + [0x2646] = "\x06\x31\x38", [0x2647] = "\x05\x29\x34", + [0x2648] = "\x04\x2c\x7e", [0x2649] = "\x06\x31\x3a", + [0x264a] = "\x06\x31\x31", [0x264b] = "\x06\x31\x37", + [0x264c] = "\x06\x37\x56", [0x264d] = "\x06\x37\x55", + [0x264e] = "\x04\x2d\x2a", [0x2656] = "\x06\x31\x34", + [0x2657] = "\x0f\x2a\x61", [0x2658] = "\x0f\x2a\x66", + [0x2659] = "\x0f\x2a\x69", [0x265a] = "\x0f\x2a\x6b", + [0x265b] = "\x0f\x2a\x6d", [0x265c] = "\x0f\x2a\x6e", + [0x265d] = "\x0f\x2a\x6f", [0x265e] = "\x0f\x2f\x46", + [0x265f] = "\x0f\x2f\x47", [0x2660] = "\x0f\x2f\x48", + [0x2661] = "\x0f\x2f\x4a", [0x2662] = "\x06\x37\x52", + [0x2663] = "\x0f\x2f\x44", [0x2666] = "\x06\x37\x58", + [0x2668] = "\x0f\x2a\x63", [0x266e] = "\x05\x2d\x4d", + [0x2670] = "\x06\x37\x51", [0x2671] = "\x05\x2d\x52", + [0x2672] = "\x05\x2d\x58", [0x2673] = "\x05\x2d\x5b", + [0x2674] = "\x06\x3f\x6d", [0x2675] = "\x06\x37\x63", + [0x2676] = "\x06\x3f\x6f", [0x2677] = "\x06\x3f\x6b", + [0x2678] = "\x06\x3f\x70", [0x2679] = "\x06\x37\x64", + [0x267a] = "\x05\x2d\x55", [0x267b] = "\x06\x3f\x69", + [0x267c] = "\x04\x2d\x2e", [0x267d] = "\x06\x3f\x73", + [0x267e] = "\x05\x2d\x56", [0x267f] = "\x04\x2d\x26", + [0x2680] = "\x05\x32\x5d", [0x2681] = "\x05\x2d\x51", + [0x2682] = "\x05\x2d\x5c", [0x2683] = "\x06\x37\x62", + [0x2684] = "\x06\x37\x5d", [0x2685] = "\x05\x32\x54", + [0x2686] = "\x06\x37\x5f", [0x2687] = "\x06\x37\x61", + [0x2688] = "\x06\x3f\x6c", [0x2689] = "\x06\x37\x60", + [0x268a] = "\x06\x3f\x71", [0x268b] = "\x04\x2d\x27", + [0x268c] = "\x05\x2d\x50", [0x268d] = "\x06\x37\x5c", + [0x268e] = "\x05\x32\x53", [0x268f] = "\x06\x3f\x72", + [0x2690] = "\x06\x3f\x74", [0x2691] = "\x05\x32\x52", + [0x2697] = "\x05\x2d\x4f", [0x2699] = "\x0f\x2f\x41", + [0x269a] = "\x0f\x2f\x42", [0x269b] = "\x0f\x2f\x43", + [0x269c] = "\x0f\x2f\x49", [0x269d] = "\x0f\x2f\x4b", + [0x269e] = "\x0f\x34\x5d", [0x269f] = "\x0f\x34\x5f", + [0x26a0] = "\x0f\x34\x60", [0x26a1] = "\x0f\x34\x64", + [0x26a2] = "\x0f\x34\x65", [0x26a3] = "\x0f\x34\x66", + [0x26a4] = "\x0f\x34\x67", [0x26a5] = "\x0f\x34\x68", + [0x26a6] = "\x06\x3f\x6a", [0x26af] = "\x06\x37\x65", + [0x26b0] = "\x06\x37\x66", [0x26ba] = "\x05\x2d\x54", + [0x26bb] = "\x05\x2d\x59", [0x26c1] = "\x04\x37\x5a", + [0x26c2] = "\x06\x48\x71", [0x26c3] = "\x04\x37\x4d", + [0x26c4] = "\x05\x32\x59", [0x26c5] = "\x06\x3f\x7c", + [0x26c6] = "\x04\x37\x4b", [0x26c7] = "\x06\x48\x73", + [0x26c8] = "\x06\x48\x69", [0x26c9] = "\x05\x38\x55", + [0x26ca] = "\x06\x3f\x7e", [0x26cb] = "\x06\x48\x72", + [0x26cc] = "\x06\x40\x22", [0x26cd] = "\x04\x31\x65", + [0x26ce] = "\x05\x2d\x53", [0x26cf] = "\x04\x31\x6d", + [0x26d0] = "\x06\x3f\x77", [0x26d1] = "\x06\x48\x6e", + [0x26d2] = "\x04\x31\x61", [0x26d3] = "\x05\x38\x3f", + [0x26d4] = "\x05\x32\x57", [0x26d5] = "\x05\x32\x5a", + [0x26d6] = "\x04\x37\x4c", [0x26d7] = "\x06\x3f\x79", + [0x26d8] = "\x05\x32\x5c", [0x26d9] = "\x06\x3f\x76", + [0x26da] = "\x06\x3f\x6e", [0x26db] = "\x04\x31\x69", + [0x26dc] = "\x05\x38\x3c", [0x26dd] = "\x06\x48\x70", + [0x26de] = "\x05\x32\x5e", [0x26df] = "\x04\x31\x5f", + [0x26e0] = "\x06\x3f\x7d", [0x26e1] = "\x06\x3f\x7b", + [0x26e2] = "\x06\x3f\x7a", [0x26e3] = "\x06\x48\x66", + [0x26e4] = "\x06\x48\x6c", [0x26e5] = "\x05\x38\x3e", + [0x26e6] = "\x05\x38\x41", [0x26e7] = "\x06\x48\x74", + [0x26e8] = "\x05\x32\x55", [0x26e9] = "\x06\x48\x6b", + [0x26ea] = "\x06\x48\x76", [0x26eb] = "\x06\x48\x67", + [0x26ec] = "\x06\x48\x65", [0x26ed] = "\x06\x3f\x75", + [0x26ee] = "\x05\x38\x40", [0x26f0] = "\x0f\x34\x61", + [0x26f7] = "\x0f\x34\x5e", [0x26f8] = "\x0f\x34\x62", + [0x26f9] = "\x0f\x34\x63", [0x26fa] = "\x0f\x34\x69", + [0x26fb] = "\x0f\x34\x6a", [0x26fc] = "\x0f\x34\x6b", + [0x26fd] = "\x0f\x34\x6c", [0x26fe] = "\x0f\x34\x6d", + [0x26ff] = "\x0f\x34\x6f", [0x2700] = "\x0f\x34\x70", + [0x2701] = "\x0f\x34\x72", [0x2702] = "\x0f\x3a\x72", + [0x2703] = "\x0f\x3a\x73", [0x2704] = "\x0f\x3a\x74", + [0x2705] = "\x0f\x3a\x75", [0x2706] = "\x0f\x3a\x76", + [0x2707] = "\x0f\x3a\x77", [0x2708] = "\x0f\x3a\x79", + [0x2709] = "\x0f\x3a\x7a", [0x270a] = "\x0f\x3a\x7c", + [0x270b] = "\x0f\x3a\x7d", [0x270c] = "\x0f\x3a\x7e", + [0x270d] = "\x0f\x3b\x21", [0x270e] = "\x0f\x3b\x22", + [0x270f] = "\x0f\x3b\x25", [0x2710] = "\x0f\x3b\x29", + [0x2711] = "\x0f\x3b\x2a", [0x2712] = "\x0f\x3b\x2c", + [0x2713] = "\x0f\x3b\x2e", [0x2716] = "\x06\x48\x68", + [0x2717] = "\x05\x32\x56", [0x271a] = "\x06\x3f\x78", + [0x271b] = "\x0f\x3b\x27", [0x271f] = "\x0f\x34\x6e", + [0x2723] = "\x06\x49\x24", [0x2724] = "\x06\x48\x6d", + [0x2725] = "\x06\x40\x21", [0x2727] = "\x0f\x3b\x24", + [0x2728] = "\x04\x3d\x3f", [0x2729] = "\x05\x38\x4a", + [0x272a] = "\x05\x38\x4d", [0x272b] = "\x05\x38\x52", + [0x272c] = "\x04\x37\x4f", [0x272d] = "\x04\x37\x57", + [0x272e] = "\x04\x37\x51", [0x272f] = "\x06\x52\x5d", + [0x2730] = "\x06\x49\x23", [0x2731] = "\x05\x38\x50", + [0x2732] = "\x06\x49\x22", [0x2733] = "\x04\x37\x53", + [0x2734] = "\x05\x38\x56", [0x2735] = "\x05\x38\x58", + [0x2736] = "\x05\x38\x43", [0x2737] = "\x06\x52\x61", + [0x2738] = "\x05\x38\x5a", [0x2739] = "\x05\x3f\x33", + [0x273a] = "\x04\x37\x5b", [0x273b] = "\x05\x38\x53", + [0x273c] = "\x06\x49\x21", [0x273d] = "\x05\x38\x46", + [0x273e] = "\x06\x48\x7b", [0x273f] = "\x05\x3f\x34", + [0x2740] = "\x05\x38\x44", [0x2741] = "\x05\x38\x54", + [0x2742] = "\x05\x32\x5f", [0x2743] = "\x06\x52\x58", + [0x2744] = "\x05\x38\x47", [0x2745] = "\x04\x3d\x36", + [0x2746] = "\x04\x37\x58", [0x2747] = "\x05\x38\x59", + [0x2748] = "\x05\x38\x51", [0x2749] = "\x05\x38\x4b", + [0x274a] = "\x05\x3f\x31", [0x274b] = "\x06\x48\x77", + [0x274c] = "\x05\x38\x4f", [0x274d] = "\x05\x38\x3d", + [0x274e] = "\x06\x48\x7e", [0x274f] = "\x06\x52\x62", + [0x2750] = "\x06\x52\x63", [0x2751] = "\x06\x52\x5a", + [0x2752] = "\x06\x48\x7d", [0x2753] = "\x05\x38\x57", + [0x2754] = "\x06\x52\x5e", [0x2755] = "\x06\x52\x60", + [0x2757] = "\x05\x3f\x2f", [0x275d] = "\x04\x3d\x40", + [0x275e] = "\x04\x37\x52", [0x275f] = "\x05\x38\x49", + [0x2760] = "\x06\x48\x79", [0x2761] = "\x0f\x3a\x71", + [0x2762] = "\x0f\x3a\x7b", [0x2763] = "\x0f\x3b\x23", + [0x2764] = "\x0f\x3b\x28", [0x2765] = "\x0f\x3b\x2d", + [0x2766] = "\x0f\x41\x48", [0x2767] = "\x0f\x41\x4e", + [0x2768] = "\x0f\x41\x50", [0x2769] = "\x0f\x41\x51", + [0x276a] = "\x0f\x41\x52", [0x276d] = "\x06\x52\x5c", + [0x276e] = "\x06\x52\x5f", [0x2772] = "\x06\x52\x5b", + [0x277d] = "\x06\x48\x7a", [0x2781] = "\x0f\x3b\x2b", + [0x2787] = "\x05\x38\x4e", [0x2789] = "\x05\x3f\x2e", + [0x278a] = "\x05\x38\x4c", [0x278c] = "\x0f\x34\x71", + [0x278d] = "\x0f\x47\x7d", [0x278e] = "\x05\x3f\x3c", + [0x278f] = "\x05\x3f\x36", [0x2790] = "\x05\x3f\x35", + [0x2791] = "\x06\x52\x6b", [0x2792] = "\x05\x4d\x26", + [0x2793] = "\x05\x3f\x45", [0x2794] = "\x06\x5c\x6f", + [0x2795] = "\x05\x3f\x39", [0x2796] = "\x05\x3f\x3f", + [0x2797] = "\x05\x3f\x44", [0x2798] = "\x06\x5c\x74", + [0x2799] = "\x06\x52\x6f", [0x279a] = "\x05\x45\x6b", + [0x279c] = "\x05\x3f\x3b", [0x279d] = "\x06\x5c\x6c", + [0x279e] = "\x06\x52\x65", [0x279f] = "\x05\x3f\x38", + [0x27a0] = "\x05\x3f\x3d", [0x27a1] = "\x05\x3f\x3a", + [0x27a2] = "\x06\x52\x59", [0x27a3] = "\x04\x49\x6e", + [0x27a4] = "\x06\x5c\x76", [0x27a5] = "\x06\x5c\x79", + [0x27a6] = "\x05\x3f\x43", [0x27a7] = "\x06\x52\x68", + [0x27a8] = "\x06\x5c\x72", [0x27a9] = "\x04\x43\x4f", + [0x27aa] = "\x06\x5c\x78", [0x27ab] = "\x06\x5c\x77", + [0x27ac] = "\x05\x3f\x41", [0x27ad] = "\x05\x45\x6d", + [0x27ae] = "\x05\x3f\x3e", [0x27af] = "\x06\x5c\x71", + [0x27b0] = "\x06\x5c\x6e", [0x27b1] = "\x06\x5c\x6d", + [0x27b2] = "\x05\x3f\x37", [0x27b3] = "\x06\x52\x67", + [0x27b6] = "\x06\x52\x6d", [0x27b7] = "\x0f\x41\x4a", + [0x27b8] = "\x0f\x41\x4b", [0x27b9] = "\x0f\x41\x4c", + [0x27ba] = "\x0f\x41\x4d", [0x27bb] = "\x0f\x41\x4f", + [0x27bc] = "\x0f\x41\x53", [0x27bd] = "\x0f\x47\x76", + [0x27be] = "\x0f\x47\x77", [0x27bf] = "\x0f\x47\x79", + [0x27c0] = "\x0f\x47\x7a", [0x27c1] = "\x0f\x48\x25", + [0x27c2] = "\x0f\x48\x28", [0x27c3] = "\x06\x5c\x70", + [0x27c4] = "\x06\x5c\x75", [0x27ca] = "\x05\x3f\x40", + [0x27cb] = "\x0f\x41\x49", [0x27dc] = "\x06\x5c\x73", + [0x27dd] = "\x06\x52\x6e", [0x27e0] = "\x06\x5d\x23", + [0x27e1] = "\x06\x5d\x27", [0x27e2] = "\x04\x43\x45", + [0x27e3] = "\x04\x43\x44", [0x27e4] = "\x05\x4d\x27", + [0x27e6] = "\x06\x5c\x7c", [0x27e7] = "\x05\x45\x77", + [0x27e8] = "\x05\x45\x76", [0x27e9] = "\x05\x45\x73", + [0x27ea] = "\x04\x3d\x35", [0x27eb] = "\x06\x5c\x7b", + [0x27ec] = "\x07\x22\x72", [0x27ee] = "\x07\x22\x75", + [0x27ef] = "\x05\x4d\x29", [0x27f0] = "\x05\x45\x70", + [0x27f1] = "\x05\x45\x6f", [0x27f2] = "\x05\x45\x6c", + [0x27f3] = "\x05\x45\x71", [0x27f4] = "\x05\x45\x72", + [0x27f5] = "\x05\x45\x79", [0x27f6] = "\x06\x5d\x25", + [0x27f7] = "\x06\x5c\x7d", [0x27f8] = "\x06\x5c\x7e", + [0x27f9] = "\x06\x52\x6a", [0x27fa] = "\x06\x5d\x22", + [0x27fb] = "\x07\x22\x74", [0x27fc] = "\x06\x5d\x21", + [0x27fd] = "\x07\x22\x77", [0x27fe] = "\x05\x45\x74", + [0x27ff] = "\x05\x45\x78", [0x2800] = "\x07\x2d\x6a", + [0x280a] = "\x04\x43\x53", [0x280b] = "\x0f\x47\x78", + [0x280c] = "\x0f\x47\x7c", [0x280d] = "\x0f\x47\x7e", + [0x280e] = "\x0f\x48\x21", [0x280f] = "\x0f\x48\x23", + [0x2810] = "\x0f\x48\x24", [0x2811] = "\x0f\x48\x26", + [0x2812] = "\x0f\x4e\x69", [0x2813] = "\x0f\x4e\x6a", + [0x2814] = "\x0f\x4e\x6b", [0x2815] = "\x0f\x4e\x6c", + [0x2816] = "\x0f\x4e\x6d", [0x2817] = "\x0f\x4e\x6e", + [0x2818] = "\x0f\x4e\x6f", [0x2819] = "\x0f\x4e\x73", + [0x281a] = "\x0f\x4e\x75", [0x281c] = "\x07\x22\x73", + [0x281e] = "\x07\x22\x78", [0x281f] = "\x06\x5c\x6b", + [0x2820] = "\x05\x45\x6e", [0x2821] = "\x06\x5c\x7a", + [0x282c] = "\x05\x4d\x28", [0x282e] = "\x05\x45\x75", + [0x2831] = "\x07\x2d\x71", [0x2832] = "\x04\x49\x66", + [0x2833] = "\x04\x43\x52", [0x2834] = "\x07\x2d\x6b", + [0x2835] = "\x04\x49\x71", [0x2836] = "\x07\x2d\x6d", + [0x2837] = "\x05\x4d\x2f", [0x2838] = "\x07\x2d\x73", + [0x2839] = "\x04\x49\x6a", [0x283a] = "\x05\x4d\x2e", + [0x283b] = "\x07\x22\x79", [0x283c] = "\x05\x4d\x33", + [0x283d] = "\x04\x49\x72", [0x283e] = "\x07\x2d\x75", + [0x283f] = "\x05\x38\x45", [0x2840] = "\x05\x4d\x32", + [0x2841] = "\x05\x4d\x35", [0x2842] = "\x04\x50\x35", + [0x2843] = "\x04\x50\x36", [0x2844] = "\x07\x23\x21", + [0x2845] = "\x05\x4d\x34", [0x2846] = "\x07\x37\x7c", + [0x2847] = "\x05\x4d\x30", [0x2848] = "\x05\x54\x4e", + [0x2849] = "\x04\x56\x34", [0x284a] = "\x07\x22\x7a", + [0x284b] = "\x07\x23\x22", [0x284e] = "\x05\x54\x54", + [0x284f] = "\x05\x4d\x2b", [0x2850] = "\x05\x4d\x2d", + [0x2851] = "\x05\x54\x4d", [0x2852] = "\x05\x4d\x2c", + [0x2853] = "\x07\x2e\x22", [0x2854] = "\x07\x2d\x77", + [0x2855] = "\x07\x2d\x76", [0x2856] = "\x07\x22\x7e", + [0x2857] = "\x04\x50\x3c", [0x2858] = "\x07\x2d\x70", + [0x2859] = "\x07\x2d\x6f", [0x285e] = "\x0f\x48\x22", + [0x2861] = "\x0f\x4e\x70", [0x2862] = "\x07\x2d\x72", + [0x2864] = "\x05\x4d\x31", [0x2865] = "\x07\x2d\x6c", + [0x2866] = "\x0f\x4e\x71", [0x2867] = "\x0f\x4e\x72", + [0x2868] = "\x0f\x4e\x74", [0x2869] = "\x0f\x4e\x76", + [0x286a] = "\x0f\x54\x47", [0x286b] = "\x0f\x54\x48", + [0x286c] = "\x0f\x54\x4a", [0x286d] = "\x0f\x54\x4b", + [0x286e] = "\x0f\x54\x51", [0x286f] = "\x0f\x54\x53", + [0x2873] = "\x07\x2d\x74", [0x2874] = "\x05\x54\x4b", + [0x2878] = "\x07\x30\x50", [0x287d] = "\x07\x22\x7d", + [0x287e] = "\x07\x25\x71", [0x287f] = "\x04\x49\x70", + [0x288c] = "\x05\x54\x4c", [0x288d] = "\x05\x54\x4f", + [0x288f] = "\x0f\x4e\x68", [0x2891] = "\x0f\x54\x4f", + [0x2892] = "\x05\x54\x50", [0x2893] = "\x05\x54\x52", + [0x2894] = "\x07\x2d\x7b", [0x2895] = "\x07\x2d\x78", + [0x2896] = "\x05\x54\x55", [0x2897] = "\x05\x54\x56", + [0x2898] = "\x05\x54\x51", [0x2899] = "\x07\x2d\x7e", + [0x289a] = "\x07\x2d\x7c", [0x289b] = "\x07\x2d\x7d", + [0x289c] = "\x05\x54\x57", [0x289d] = "\x04\x50\x3d", + [0x289e] = "\x05\x5b\x49", [0x289f] = "\x07\x2e\x21", + [0x28a0] = "\x07\x37\x7b", [0x28a1] = "\x07\x37\x7d", + [0x28a2] = "\x07\x37\x7a", [0x28a3] = "\x07\x38\x21", + [0x28a4] = "\x05\x5b\x4b", [0x28a5] = "\x07\x2d\x7a", + [0x28a6] = "\x07\x37\x79", [0x28a7] = "\x07\x2d\x6e", + [0x28ae] = "\x0f\x54\x4d", [0x28b0] = "\x05\x54\x53", + [0x28b1] = "\x07\x38\x22", [0x28b2] = "\x0f\x54\x49", + [0x28b3] = "\x0f\x54\x4e", [0x28b4] = "\x0f\x54\x52", + [0x28b5] = "\x0f\x5a\x25", [0x28b6] = "\x0f\x5a\x26", + [0x28b7] = "\x0f\x5a\x2e", [0x28c1] = "\x0f\x5a\x27", + [0x28c9] = "\x05\x5b\x4a", [0x28ca] = "\x05\x54\x58", + [0x28cb] = "\x0f\x5a\x2a", [0x28cc] = "\x0f\x54\x4c", + [0x28cd] = "\x07\x37\x78", [0x28ce] = "\x05\x5b\x51", + [0x28cf] = "\x04\x56\x35", [0x28d0] = "\x04\x56\x31", + [0x28d1] = "\x04\x5b\x2a", [0x28d2] = "\x05\x5b\x4e", + [0x28d3] = "\x05\x61\x64", [0x28d4] = "\x05\x61\x62", + [0x28d5] = "\x07\x3f\x5b", [0x28d6] = "\x07\x38\x26", + [0x28d8] = "\x04\x5b\x26", [0x28d9] = "\x05\x5b\x4d", + [0x28da] = "\x05\x5b\x4f", [0x28db] = "\x07\x38\x23", + [0x28dc] = "\x07\x38\x25", [0x28dd] = "\x05\x5b\x50", + [0x28de] = "\x05\x61\x63", [0x28df] = "\x07\x3f\x5a", + [0x28e0] = "\x05\x61\x65", [0x28e1] = "\x07\x3f\x59", + [0x28e2] = "\x07\x22\x76", [0x28e8] = "\x0f\x5a\x2b", + [0x28e9] = "\x0f\x5a\x2d", [0x28ea] = "\x0f\x5e\x5f", + [0x28eb] = "\x0f\x5e\x60", [0x28ec] = "\x0f\x5e\x62", + [0x28ed] = "\x0f\x5e\x63", [0x28ee] = "\x0f\x5e\x65", + [0x28ef] = "\x0f\x5e\x66", [0x28f0] = "\x0f\x5e\x67", + [0x28f2] = "\x07\x3f\x5c", [0x28f6] = "\x07\x38\x24", + [0x28f7] = "\x0f\x5a\x28", [0x28fb] = "\x04\x5b\x27", + [0x28fc] = "\x05\x5b\x52", [0x28fd] = "\x07\x46\x79", + [0x28fe] = "\x07\x3f\x5d", [0x28ff] = "\x05\x61\x68", + [0x2900] = "\x07\x4d\x64", [0x2901] = "\x04\x5f\x63", + [0x2902] = "\x04\x5f\x62", [0x2903] = "\x07\x46\x7c", + [0x2904] = "\x05\x61\x69", [0x2905] = "\x07\x4d\x67", + [0x2906] = "\x04\x5b\x28", [0x2907] = "\x05\x61\x6a", + [0x2908] = "\x07\x47\x25", [0x2909] = "\x07\x47\x21", + [0x290a] = "\x07\x46\x78", [0x290b] = "\x05\x61\x67", + [0x290c] = "\x07\x46\x7e", [0x290e] = "\x05\x67\x6d", + [0x290f] = "\x07\x46\x7a", [0x2910] = "\x05\x67\x70", + [0x2911] = "\x07\x46\x77", [0x2912] = "\x07\x47\x22", + [0x2913] = "\x07\x3f\x5e", [0x2915] = "\x07\x46\x7d", + [0x2916] = "\x05\x67\x6e", [0x2917] = "\x0f\x5e\x64", + [0x2918] = "\x05\x67\x6f", [0x2919] = "\x07\x46\x7b", + [0x2924] = "\x05\x67\x6c", [0x2925] = "\x0f\x62\x39", + [0x2926] = "\x07\x47\x2a", [0x2927] = "\x04\x63\x44", + [0x2928] = "\x07\x47\x27", [0x2929] = "\x05\x67\x74", + [0x292a] = "\x07\x47\x24", [0x292b] = "\x05\x6c\x2a", + [0x292c] = "\x07\x47\x29", [0x292d] = "\x07\x47\x26", + [0x292e] = "\x07\x3f\x5f", [0x292f] = "\x05\x67\x75", + [0x2930] = "\x04\x63\x3f", [0x2931] = "\x05\x67\x71", + [0x2932] = "\x05\x6c\x28", [0x2933] = "\x07\x47\x2b", + [0x2934] = "\x07\x47\x23", [0x2935] = "\x07\x4d\x65", + [0x2936] = "\x05\x67\x77", [0x293a] = "\x0f\x62\x3a", + [0x293b] = "\x0f\x62\x38", [0x293c] = "\x0f\x62\x3b", + [0x293d] = "\x0f\x62\x3c", [0x293e] = "\x0f\x62\x3d", + [0x2941] = "\x07\x4d\x66", [0x2943] = "\x05\x61\x66", + [0x2944] = "\x05\x67\x72", [0x294a] = "\x0f\x65\x2b", + [0x294b] = "\x05\x67\x76", [0x294c] = "\x05\x6c\x29", + [0x294d] = "\x07\x53\x39", [0x294e] = "\x07\x4d\x6a", + [0x294f] = "\x04\x63\x41", [0x2950] = "\x07\x4d\x69", + [0x2951] = "\x04\x63\x45", [0x2952] = "\x07\x53\x38", + [0x2953] = "\x07\x4d\x6b", [0x2954] = "\x0f\x67\x55", + [0x2957] = "\x07\x5b\x4f", [0x2958] = "\x04\x66\x3e", + [0x295a] = "\x05\x6c\x2b", [0x295b] = "\x07\x57\x73", + [0x295c] = "\x07\x57\x74", [0x295d] = "\x07\x57\x75", + [0x295e] = "\x07\x53\x3b", [0x295f] = "\x07\x53\x3a", + [0x2961] = "\x07\x53\x3c", [0x2964] = "\x0f\x69\x42", + [0x2965] = "\x07\x57\x76", [0x2966] = "\x07\x5b\x50", + [0x2967] = "\x07\x5b\x52", [0x2968] = "\x07\x5b\x53", + [0x2969] = "\x07\x5b\x51", [0x296b] = "\x0f\x6a\x50", + [0x296c] = "\x0f\x69\x41", [0x296d] = "\x0f\x6a\x51", + [0x296e] = "\x0f\x6a\x52", [0x296f] = "\x07\x5b\x55", + [0x2970] = "\x05\x77\x5a", [0x2971] = "\x07\x5b\x54", + [0x2972] = "\x07\x5e\x65", [0x2978] = "\x0f\x6a\x53", + [0x2979] = "\x0f\x6b\x47", [0x297a] = "\x0f\x6b\x48", + [0x297b] = "\x05\x77\x5b", [0x297c] = "\x07\x5e\x66", + [0x297d] = "\x05\x79\x29", [0x297e] = "\x07\x5e\x67", + [0x297f] = "\x0f\x6c\x28", [0x2981] = "\x0f\x6c\x29", + [0x2985] = "\x04\x6d\x72", [0x2986] = "\x0f\x6c\x7c", + [0x2987] = "\x0f\x6c\x7d", [0x2988] = "\x05\x7b\x3e", + [0x2989] = "\x05\x7b\x60", [0x298b] = "\x0f\x6d\x34", + [0x298e] = "\x05\x22\x6a", [0x298f] = "\x04\x22\x72", + [0x2990] = "\x06\x24\x76", [0x2993] = "\x06\x27\x6b", + [0x2994] = "\x05\x24\x3b", [0x2995] = "\x06\x27\x6a", + [0x2996] = "\x06\x27\x6d", [0x2999] = "\x06\x27\x6c", + [0x299a] = "\x04\x26\x52", [0x299b] = "\x06\x2b\x51", + [0x299c] = "\x06\x2b\x58", [0x299d] = "\x06\x2b\x54", + [0x299e] = "\x06\x2b\x56", [0x299f] = "\x04\x26\x53", + [0x29a0] = "\x06\x2b\x55", [0x29a1] = "\x06\x2b\x53", + [0x29a2] = "\x06\x2b\x57", [0x29a3] = "\x0f\x27\x24", + [0x29a4] = "\x0f\x27\x23", [0x29a6] = "\x06\x31\x3d", + [0x29a7] = "\x06\x31\x3b", [0x29a8] = "\x06\x31\x3e", + [0x29a9] = "\x06\x31\x40", [0x29aa] = "\x04\x29\x4c", + [0x29ab] = "\x06\x31\x41", [0x29ac] = "\x06\x31\x3f", + [0x29ae] = "\x0f\x2a\x71", [0x29af] = "\x0f\x2a\x72", + [0x29b6] = "\x06\x31\x3c", [0x29b7] = "\x06\x37\x67", + [0x29b8] = "\x05\x2d\x5f", [0x29b9] = "\x06\x37\x69", + [0x29ba] = "\x05\x2d\x5e", [0x29bb] = "\x06\x37\x68", + [0x29bf] = "\x05\x32\x61", [0x29c0] = "\x04\x31\x6f", + [0x29c1] = "\x06\x40\x25", [0x29c2] = "\x0f\x34\x73", + [0x29c3] = "\x0f\x34\x74", [0x29c6] = "\x06\x40\x24", + [0x29c7] = "\x05\x32\x60", [0x29c8] = "\x06\x49\x28", + [0x29c9] = "\x06\x49\x27", [0x29ca] = "\x06\x49\x25", + [0x29cb] = "\x06\x49\x26", [0x29cc] = "\x04\x37\x5c", + [0x29cd] = "\x06\x49\x29", [0x29ce] = "\x0f\x3b\x2f", + [0x29d1] = "\x05\x38\x5b", [0x29d2] = "\x05\x38\x5c", + [0x29d3] = "\x0f\x34\x76", [0x29d4] = "\x04\x3d\x44", + [0x29d5] = "\x06\x52\x71", [0x29d6] = "\x05\x3f\x47", + [0x29d8] = "\x05\x3f\x49", [0x29db] = "\x0f\x41\x55", + [0x29dc] = "\x04\x3d\x41", [0x29df] = "\x06\x52\x70", + [0x29e0] = "\x05\x3f\x48", [0x29e2] = "\x06\x5d\x29", + [0x29e4] = "\x06\x5d\x2a", [0x29e5] = "\x05\x45\x7a", + [0x29e6] = "\x05\x45\x7c", [0x29e7] = "\x05\x45\x7b", + [0x29e8] = "\x07\x23\x24", [0x29e9] = "\x05\x45\x7d", + [0x29ea] = "\x0f\x48\x29", [0x29eb] = "\x0f\x48\x2a", + [0x29ec] = "\x06\x5d\x28", [0x29f3] = "\x05\x4d\x36", + [0x29f4] = "\x04\x49\x73", [0x29f5] = "\x04\x49\x74", + [0x29f6] = "\x07\x23\x28", [0x29f7] = "\x07\x23\x27", + [0x29f8] = "\x07\x23\x25", [0x29f9] = "\x06\x5d\x2b", + [0x29fa] = "\x07\x23\x23", [0x29fd] = "\x0f\x4e\x7b", + [0x29fe] = "\x07\x23\x29", [0x29ff] = "\x07\x23\x26", + [0x2a04] = "\x0f\x4e\x77", [0x2a05] = "\x0f\x4e\x78", + [0x2a06] = "\x0f\x4e\x7a", [0x2a07] = "\x07\x23\x2a", + [0x2a08] = "\x07\x2e\x2a", [0x2a09] = "\x07\x2e\x25", + [0x2a0a] = "\x07\x2e\x24", [0x2a0b] = "\x07\x2e\x27", + [0x2a0c] = "\x07\x2e\x26", [0x2a0d] = "\x07\x2e\x29", + [0x2a0e] = "\x07\x2e\x28", [0x2a10] = "\x07\x2c\x63", + [0x2a11] = "\x07\x31\x70", [0x2a12] = "\x07\x2e\x23", + [0x2a13] = "\x07\x38\x27", [0x2a14] = "\x05\x5b\x53", + [0x2a15] = "\x0f\x5a\x2f", [0x2a19] = "\x07\x3f\x60", + [0x2a1a] = "\x07\x47\x2d", [0x2a1b] = "\x04\x5f\x65", + [0x2a1e] = "\x07\x47\x2e", [0x2a1f] = "\x05\x6c\x2c", + [0x2a20] = "\x0f\x65\x2c", [0x2a21] = "\x05\x70\x21", + [0x2a23] = "\x07\x53\x3d", [0x2a24] = "\x06\x23\x27", + [0x2a25] = "\x05\x21\x6d", [0x2a26] = "\x06\x24\x77", + [0x2a29] = "\x06\x24\x78", [0x2a2a] = "\x04\x24\x34", + [0x2a2c] = "\x0f\x24\x37", [0x2a2d] = "\x0f\x24\x38", + [0x2a2f] = "\x05\x26\x39", [0x2a32] = "\x06\x2b\x59", + [0x2a34] = "\x06\x2b\x5a", [0x2a37] = "\x06\x31\x43", + [0x2a38] = "\x06\x31\x42", [0x2a39] = "\x06\x31\x44", + [0x2a3a] = "\x05\x29\x39", [0x2a3b] = "\x0f\x2a\x73", + [0x2a3c] = "\x0f\x2a\x74", [0x2a3d] = "\x0f\x2a\x75", + [0x2a3e] = "\x06\x31\x46", [0x2a41] = "\x06\x31\x45", + [0x2a44] = "\x05\x29\x38", [0x2a45] = "\x06\x37\x6c", + [0x2a46] = "\x06\x37\x6a", [0x2a47] = "\x06\x37\x6b", + [0x2a48] = "\x05\x2d\x61", [0x2a4b] = "\x05\x2d\x60", + [0x2a4d] = "\x06\x40\x26", [0x2a4e] = "\x0f\x34\x77", + [0x2a51] = "\x05\x38\x5d", [0x2a52] = "\x05\x38\x5f", + [0x2a53] = "\x05\x38\x60", [0x2a55] = "\x05\x38\x5e", + [0x2a56] = "\x05\x3f\x4a", [0x2a58] = "\x05\x45\x7e", + [0x2a59] = "\x04\x43\x55", [0x2a5d] = "\x07\x23\x2b", + [0x2a60] = "\x05\x5b\x54", [0x2a62] = "\x05\x70\x22", + [0x2a65] = "\x06\x23\x28", [0x2a66] = "\x05\x21\x6e", + [0x2a68] = "\x06\x23\x29", [0x2a69] = "\x06\x23\x2a", + [0x2a6b] = "\x05\x21\x6f", [0x2a6c] = "\x05\x22\x6c", + [0x2a6d] = "\x04\x22\x76", [0x2a6e] = "\x06\x24\x79", + [0x2a70] = "\x05\x22\x72", [0x2a71] = "\x05\x22\x70", + [0x2a72] = "\x05\x22\x6f", [0x2a73] = "\x05\x22\x6b", + [0x2a74] = "\x05\x22\x6d", [0x2a75] = "\x0f\x22\x50", + [0x2a76] = "\x0f\x22\x52", [0x2a82] = "\x05\x22\x71", + [0x2a83] = "\x04\x24\x37", [0x2a84] = "\x06\x27\x73", + [0x2a85] = "\x06\x27\x76", [0x2a86] = "\x06\x27\x75", + [0x2a87] = "\x04\x26\x57", [0x2a88] = "\x05\x24\x3d", + [0x2a89] = "\x06\x27\x6f", [0x2a8a] = "\x04\x24\x38", + [0x2a8b] = "\x04\x24\x35", [0x2a8c] = "\x06\x27\x77", + [0x2a8d] = "\x05\x24\x3e", [0x2a8e] = "\x04\x24\x3b", + [0x2a8f] = "\x06\x27\x72", [0x2a90] = "\x06\x2b\x5d", + [0x2a91] = "\x06\x27\x71", [0x2a92] = "\x06\x2b\x65", + [0x2a93] = "\x06\x2b\x5b", [0x2a94] = "\x06\x27\x70", + [0x2a95] = "\x05\x24\x3c", [0x2a96] = "\x06\x2b\x5c", + [0x2a97] = "\x06\x27\x74", [0x2a9c] = "\x0f\x24\x3b", + [0x2a9d] = "\x0f\x24\x3c", [0x2a9e] = "\x0f\x24\x3d", + [0x2a9f] = "\x0f\x24\x3e", [0x2aa0] = "\x0f\x24\x3f", + [0x2aa1] = "\x0f\x24\x40", [0x2aa2] = "\x0f\x24\x41", + [0x2aa3] = "\x0f\x24\x43", [0x2aa4] = "\x0f\x24\x44", + [0x2aa7] = "\x0f\x24\x45", [0x2aa9] = "\x0f\x24\x3a", + [0x2ab4] = "\x06\x2b\x5e", [0x2ab5] = "\x06\x2b\x5f", + [0x2ab6] = "\x06\x2b\x61", [0x2ab7] = "\x05\x26\x3b", + [0x2ab8] = "\x05\x29\x3a", [0x2aba] = "\x06\x2b\x64", + [0x2abb] = "\x06\x31\x48", [0x2abc] = "\x05\x26\x3d", + [0x2abd] = "\x06\x31\x4a", [0x2abe] = "\x05\x26\x3c", + [0x2abf] = "\x06\x31\x49", [0x2ac0] = "\x06\x31\x47", + [0x2ac2] = "\x06\x2b\x62", [0x2ac6] = "\x0f\x27\x26", + [0x2ac7] = "\x0f\x27\x27", [0x2ac8] = "\x0f\x27\x28", + [0x2ac9] = "\x0f\x27\x29", [0x2aca] = "\x0f\x27\x2a", + [0x2acb] = "\x0f\x27\x2b", [0x2acc] = "\x0f\x27\x2c", + [0x2acd] = "\x0f\x27\x2d", [0x2ace] = "\x0f\x27\x2f", + [0x2ad4] = "\x0f\x27\x25", [0x2ae2] = "\x05\x26\x3e", + [0x2ae4] = "\x06\x31\x52", [0x2ae5] = "\x06\x31\x54", + [0x2ae6] = "\x04\x29\x58", [0x2ae7] = "\x04\x29\x4f", + [0x2ae8] = "\x04\x29\x50", [0x2ae9] = "\x06\x31\x53", + [0x2aea] = "\x06\x37\x6d", [0x2aeb] = "\x05\x29\x3f", + [0x2aec] = "\x05\x29\x42", [0x2aed] = "\x05\x29\x41", + [0x2aee] = "\x06\x31\x4d", [0x2aef] = "\x05\x29\x47", + [0x2af0] = "\x04\x2d\x34", [0x2af1] = "\x04\x29\x5c", + [0x2af2] = "\x05\x29\x3e", [0x2af3] = "\x05\x29\x3d", + [0x2af4] = "\x05\x2d\x63", [0x2af5] = "\x04\x29\x53", + [0x2af6] = "\x06\x37\x6e", [0x2af7] = "\x05\x29\x48", + [0x2af8] = "\x04\x29\x5a", [0x2af9] = "\x06\x31\x50", + [0x2afa] = "\x05\x29\x40", [0x2afb] = "\x05\x29\x44", + [0x2afc] = "\x06\x31\x4e", [0x2afd] = "\x06\x31\x56", + [0x2afe] = "\x06\x31\x4b", [0x2aff] = "\x05\x29\x43", + [0x2b00] = "\x05\x29\x3c", [0x2b03] = "\x06\x31\x55", + [0x2b06] = "\x06\x31\x51", [0x2b07] = "\x0f\x2a\x76", + [0x2b08] = "\x0f\x2a\x77", [0x2b09] = "\x0f\x2a\x78", + [0x2b0a] = "\x0f\x2a\x79", [0x2b0b] = "\x0f\x2a\x7a", + [0x2b0c] = "\x0f\x2a\x7b", [0x2b0d] = "\x0f\x2a\x7c", + [0x2b0e] = "\x0f\x2a\x7d", [0x2b0f] = "\x0f\x2a\x7e", + [0x2b10] = "\x0f\x2b\x21", [0x2b11] = "\x0f\x2b\x23", + [0x2b12] = "\x0f\x2b\x24", [0x2b13] = "\x0f\x2b\x25", + [0x2b14] = "\x0f\x2b\x26", [0x2b15] = "\x0f\x2b\x27", + [0x2b16] = "\x0f\x2b\x28", [0x2b17] = "\x0f\x2b\x29", + [0x2b18] = "\x0f\x2b\x2a", [0x2b19] = "\x0f\x2f\x53", + [0x2b1a] = "\x0f\x2f\x5c", [0x2b1b] = "\x0f\x2f\x61", + [0x2b1e] = "\x06\x31\x4c", [0x2b22] = "\x0f\x2b\x22", + [0x2b2a] = "\x05\x29\x3b", [0x2b2b] = "\x05\x2d\x62", + [0x2b2c] = "\x05\x2d\x64", [0x2b2f] = "\x04\x2d\x3d", + [0x2b30] = "\x06\x37\x75", [0x2b31] = "\x04\x2d\x38", + [0x2b32] = "\x05\x2d\x6d", [0x2b33] = "\x05\x2d\x6b", + [0x2b34] = "\x04\x2d\x39", [0x2b35] = "\x04\x29\x57", + [0x2b36] = "\x04\x2d\x35", [0x2b37] = "\x05\x2d\x6a", + [0x2b38] = "\x06\x37\x7b", [0x2b39] = "\x06\x37\x70", + [0x2b3a] = "\x06\x37\x7d", [0x2b3b] = "\x06\x37\x73", + [0x2b3c] = "\x05\x2d\x69", [0x2b3d] = "\x06\x37\x72", + [0x2b3e] = "\x06\x37\x77", [0x2b3f] = "\x04\x2d\x36", + [0x2b40] = "\x06\x37\x78", [0x2b41] = "\x05\x2d\x6c", + [0x2b42] = "\x05\x2d\x65", [0x2b43] = "\x04\x2d\x37", + [0x2b44] = "\x05\x2d\x67", [0x2b45] = "\x05\x2d\x68", + [0x2b46] = "\x04\x2d\x3a", [0x2b47] = "\x06\x37\x7a", + [0x2b48] = "\x05\x2d\x66", [0x2b49] = "\x06\x31\x57", + [0x2b4a] = "\x06\x37\x76", [0x2b4b] = "\x06\x40\x27", + [0x2b4c] = "\x06\x37\x79", [0x2b4d] = "\x06\x37\x74", + [0x2b4e] = "\x05\x29\x46", [0x2b52] = "\x06\x37\x7c", + [0x2b53] = "\x06\x37\x7e", [0x2b54] = "\x0f\x2f\x4c", + [0x2b55] = "\x0f\x2f\x4d", [0x2b56] = "\x0f\x2f\x4e", + [0x2b57] = "\x0f\x2f\x4f", [0x2b58] = "\x0f\x2f\x50", + [0x2b59] = "\x0f\x2f\x51", [0x2b5a] = "\x0f\x2f\x52", + [0x2b5b] = "\x0f\x2f\x55", [0x2b5c] = "\x0f\x2f\x56", + [0x2b5d] = "\x0f\x2f\x57", [0x2b5e] = "\x0f\x2f\x5a", + [0x2b5f] = "\x0f\x2f\x5b", [0x2b60] = "\x0f\x2f\x5d", + [0x2b61] = "\x0f\x2f\x5e", [0x2b62] = "\x0f\x2f\x60", + [0x2b63] = "\x0f\x2f\x62", [0x2b64] = "\x06\x40\x28", + [0x2b66] = "\x0f\x2f\x58", [0x2b68] = "\x06\x37\x6f", + [0x2b6a] = "\x0f\x2f\x54", [0x2b81] = "\x04\x31\x72", + [0x2b82] = "\x04\x31\x73", [0x2b83] = "\x04\x37\x5e", + [0x2b84] = "\x05\x32\x69", [0x2b86] = "\x06\x40\x31", + [0x2b87] = "\x05\x2d\x6e", [0x2b88] = "\x06\x40\x37", + [0x2b89] = "\x05\x32\x63", [0x2b8a] = "\x04\x31\x74", + [0x2b8b] = "\x04\x32\x22", [0x2b8c] = "\x04\x31\x76", + [0x2b8d] = "\x05\x32\x62", [0x2b8e] = "\x04\x31\x7d", + [0x2b8f] = "\x05\x38\x61", [0x2b90] = "\x05\x32\x64", + [0x2b91] = "\x06\x40\x34", [0x2b92] = "\x05\x32\x67", + [0x2b93] = "\x06\x40\x35", [0x2b94] = "\x06\x40\x2c", + [0x2b95] = "\x06\x40\x29", [0x2b96] = "\x04\x32\x24", + [0x2b97] = "\x06\x49\x2f", [0x2b98] = "\x06\x49\x2a", + [0x2b99] = "\x06\x40\x2a", [0x2b9a] = "\x05\x32\x65", + [0x2b9c] = "\x06\x49\x2d", [0x2b9d] = "\x04\x37\x5d", + [0x2b9e] = "\x06\x40\x2f", [0x2b9f] = "\x06\x49\x2c", + [0x2ba0] = "\x06\x49\x2b", [0x2ba1] = "\x05\x32\x68", + [0x2ba2] = "\x06\x40\x2d", [0x2ba3] = "\x06\x49\x2e", + [0x2ba4] = "\x06\x40\x33", [0x2ba7] = "\x06\x40\x30", + [0x2ba8] = "\x04\x31\x75", [0x2bae] = "\x06\x40\x2e", + [0x2baf] = "\x0f\x34\x78", [0x2bb0] = "\x0f\x34\x79", + [0x2bb1] = "\x0f\x34\x7a", [0x2bb2] = "\x0f\x34\x7b", + [0x2bb3] = "\x0f\x34\x7c", [0x2bb4] = "\x0f\x34\x7e", + [0x2bb5] = "\x0f\x35\x22", [0x2bb6] = "\x0f\x35\x23", + [0x2bb7] = "\x0f\x35\x24", [0x2bb8] = "\x0f\x35\x25", + [0x2bb9] = "\x0f\x35\x26", [0x2bba] = "\x0f\x35\x27", + [0x2bbb] = "\x0f\x35\x28", [0x2bbc] = "\x0f\x35\x29", + [0x2bbd] = "\x0f\x35\x2a", [0x2bbe] = "\x0f\x35\x2b", + [0x2bbf] = "\x0f\x35\x2c", [0x2bc0] = "\x0f\x35\x2e", + [0x2bc1] = "\x0f\x35\x2d", [0x2bc2] = "\x0f\x35\x2f", + [0x2bc3] = "\x0f\x35\x30", [0x2bc4] = "\x0f\x3b\x31", + [0x2bc6] = "\x0f\x34\x7d", [0x2bc8] = "\x05\x32\x66", + [0x2bcc] = "\x04\x32\x26", [0x2be3] = "\x0f\x3b\x41", + [0x2be9] = "\x05\x38\x6b", [0x2bea] = "\x06\x49\x34", + [0x2beb] = "\x04\x37\x69", [0x2bec] = "\x06\x49\x3b", + [0x2bed] = "\x06\x49\x36", [0x2bee] = "\x05\x38\x6d", + [0x2bef] = "\x06\x49\x41", [0x2bf0] = "\x05\x38\x74", + [0x2bf1] = "\x06\x49\x31", [0x2bf2] = "\x04\x3d\x51", + [0x2bf3] = "\x04\x37\x67", [0x2bf4] = "\x05\x38\x62", + [0x2bf5] = "\x05\x38\x6a", [0x2bf6] = "\x04\x37\x5f", + [0x2bf7] = "\x05\x38\x68", [0x2bf8] = "\x04\x37\x63", + [0x2bf9] = "\x05\x38\x69", [0x2bfa] = "\x04\x37\x6a", + [0x2bfb] = "\x05\x38\x66", [0x2bfc] = "\x04\x37\x6d", + [0x2bfd] = "\x05\x38\x6f", [0x2bfe] = "\x04\x37\x66", + [0x2bff] = "\x06\x49\x42", [0x2c00] = "\x06\x49\x43", + [0x2c01] = "\x06\x49\x3a", [0x2c02] = "\x05\x38\x71", + [0x2c03] = "\x06\x49\x33", [0x2c04] = "\x06\x49\x46", + [0x2c05] = "\x06\x49\x37", [0x2c06] = "\x05\x38\x70", + [0x2c07] = "\x04\x37\x6c", [0x2c08] = "\x06\x49\x47", + [0x2c09] = "\x06\x49\x32", [0x2c0a] = "\x05\x38\x6c", + [0x2c0b] = "\x05\x38\x6e", [0x2c0c] = "\x06\x49\x44", + [0x2c0d] = "\x05\x38\x64", [0x2c0e] = "\x06\x49\x3c", + [0x2c0f] = "\x06\x49\x45", [0x2c10] = "\x06\x49\x40", + [0x2c11] = "\x06\x49\x4c", [0x2c12] = "\x06\x49\x3f", + [0x2c13] = "\x06\x49\x4d", [0x2c14] = "\x06\x49\x48", + [0x2c15] = "\x06\x49\x39", [0x2c16] = "\x05\x38\x72", + [0x2c17] = "\x06\x49\x3d", [0x2c18] = "\x05\x38\x73", + [0x2c19] = "\x05\x38\x67", [0x2c1a] = "\x06\x49\x38", + [0x2c1b] = "\x06\x49\x4b", [0x2c1c] = "\x05\x38\x65", + [0x2c28] = "\x06\x52\x73", [0x2c29] = "\x0f\x3b\x30", + [0x2c2a] = "\x0f\x3b\x32", [0x2c2b] = "\x0f\x3b\x34", + [0x2c2c] = "\x0f\x3b\x35", [0x2c2d] = "\x0f\x3b\x36", + [0x2c2e] = "\x0f\x3b\x37", [0x2c2f] = "\x0f\x3b\x38", + [0x2c30] = "\x0f\x3b\x39", [0x2c31] = "\x0f\x3b\x3a", + [0x2c32] = "\x0f\x3b\x3b", [0x2c33] = "\x0f\x3b\x3c", + [0x2c34] = "\x0f\x3b\x3d", [0x2c35] = "\x0f\x3b\x3f", + [0x2c36] = "\x0f\x3b\x40", [0x2c37] = "\x0f\x3b\x42", + [0x2c38] = "\x0f\x3b\x43", [0x2c39] = "\x0f\x3b\x44", + [0x2c3a] = "\x0f\x3b\x45", [0x2c3b] = "\x0f\x3b\x46", + [0x2c3c] = "\x0f\x3b\x48", [0x2c3d] = "\x0f\x3b\x49", + [0x2c3e] = "\x0f\x3b\x4a", [0x2c40] = "\x06\x52\x74", + [0x2c42] = "\x06\x49\x3e", [0x2c43] = "\x06\x49\x49", + [0x2c45] = "\x06\x49\x35", [0x2c47] = "\x05\x38\x63", + [0x2c4d] = "\x0f\x3b\x47", [0x2c5f] = "\x05\x3f\x52", + [0x2c60] = "\x06\x52\x7b", [0x2c61] = "\x04\x3d\x4b", + [0x2c62] = "\x04\x3d\x49", [0x2c63] = "\x05\x3f\x55", + [0x2c64] = "\x04\x3d\x46", [0x2c65] = "\x06\x52\x78", + [0x2c66] = "\x04\x3d\x4d", [0x2c67] = "\x04\x3d\x53", + [0x2c68] = "\x04\x3d\x47", [0x2c69] = "\x04\x3d\x52", + [0x2c6a] = "\x06\x52\x7e", [0x2c6b] = "\x05\x3f\x51", + [0x2c6c] = "\x05\x46\x21", [0x2c6e] = "\x05\x3f\x4b", + [0x2c6f] = "\x06\x5d\x2c", [0x2c70] = "\x06\x53\x25", + [0x2c71] = "\x06\x52\x75", [0x2c72] = "\x06\x53\x23", + [0x2c73] = "\x06\x53\x22", [0x2c74] = "\x05\x3f\x4d", + [0x2c76] = "\x05\x3f\x53", [0x2c77] = "\x05\x3f\x4e", + [0x2c78] = "\x06\x52\x79", [0x2c79] = "\x06\x53\x21", + [0x2c7a] = "\x05\x3f\x50", [0x2c7b] = "\x06\x53\x24", + [0x2c7c] = "\x06\x52\x7c", [0x2c7e] = "\x05\x3f\x4c", + [0x2c7f] = "\x06\x52\x7a", [0x2c80] = "\x05\x3f\x4f", + [0x2c81] = "\x0f\x41\x56", [0x2c82] = "\x0f\x41\x57", + [0x2c83] = "\x0f\x41\x58", [0x2c84] = "\x0f\x41\x59", + [0x2c85] = "\x0f\x41\x5a", [0x2c86] = "\x0f\x41\x5b", + [0x2c87] = "\x0f\x41\x5c", [0x2c88] = "\x0f\x41\x5d", + [0x2c89] = "\x0f\x41\x5e", [0x2c8a] = "\x0f\x41\x60", + [0x2c8b] = "\x0f\x41\x61", [0x2c8c] = "\x0f\x41\x63", + [0x2c8d] = "\x0f\x41\x64", [0x2c8e] = "\x0f\x41\x65", + [0x2c8f] = "\x0f\x41\x66", [0x2c90] = "\x0f\x41\x67", + [0x2c91] = "\x0f\x41\x69", [0x2c92] = "\x0f\x48\x30", + [0x2c95] = "\x06\x52\x77", [0x2c96] = "\x06\x52\x7d", + [0x2c98] = "\x06\x52\x76", [0x2ca1] = "\x0f\x41\x68", + [0x2cb0] = "\x05\x3f\x54", [0x2cb3] = "\x06\x5d\x36", + [0x2cb4] = "\x05\x4d\x39", [0x2cb5] = "\x05\x46\x27", + [0x2cb6] = "\x05\x46\x2a", [0x2cb7] = "\x04\x43\x62", + [0x2cb8] = "\x04\x43\x5f", [0x2cb9] = "\x06\x5d\x3c", + [0x2cba] = "\x06\x5d\x3d", [0x2cbb] = "\x06\x5d\x2e", + [0x2cbc] = "\x04\x43\x57", [0x2cbd] = "\x06\x5d\x3f", + [0x2cbe] = "\x05\x46\x26", [0x2cc0] = "\x04\x43\x63", + [0x2cc1] = "\x05\x4d\x38", [0x2cc2] = "\x05\x46\x29", + [0x2cc3] = "\x06\x5d\x35", [0x2cc4] = "\x04\x43\x59", + [0x2cc5] = "\x07\x23\x2f", [0x2cc6] = "\x04\x43\x5b", + [0x2cc7] = "\x04\x43\x5a", [0x2cc8] = "\x07\x23\x2e", + [0x2cc9] = "\x07\x23\x31", [0x2ccb] = "\x05\x46\x24", + [0x2ccd] = "\x04\x43\x65", [0x2cce] = "\x06\x5d\x39", + [0x2ccf] = "\x06\x5d\x3e", [0x2cd0] = "\x06\x5d\x3a", + [0x2cd1] = "\x05\x46\x28", [0x2cd2] = "\x06\x5d\x37", + [0x2cd3] = "\x05\x46\x2b", [0x2cd4] = "\x07\x23\x2c", + [0x2cd5] = "\x06\x5d\x3b", [0x2cd6] = "\x06\x5d\x33", + [0x2cd8] = "\x06\x5d\x31", [0x2cd9] = "\x05\x46\x22", + [0x2cda] = "\x04\x43\x60", [0x2ce1] = "\x06\x5d\x2f", + [0x2ce2] = "\x06\x5d\x34", [0x2ce3] = "\x0f\x48\x2b", + [0x2ce4] = "\x0f\x48\x2c", [0x2ce5] = "\x0f\x48\x2d", + [0x2ce6] = "\x0f\x48\x2e", [0x2ce7] = "\x0f\x48\x2f", + [0x2ce8] = "\x0f\x48\x33", [0x2ce9] = "\x0f\x48\x34", + [0x2cea] = "\x0f\x48\x35", [0x2ceb] = "\x0f\x48\x37", + [0x2cec] = "\x0f\x48\x38", [0x2ced] = "\x0f\x48\x3a", + [0x2cee] = "\x0f\x48\x3b", [0x2cef] = "\x0f\x48\x39", + [0x2cf0] = "\x0f\x48\x3c", [0x2cf1] = "\x0f\x48\x3d", + [0x2cf2] = "\x0f\x48\x3e", [0x2cf3] = "\x0f\x48\x3f", + [0x2cf4] = "\x0f\x48\x40", [0x2cf5] = "\x0f\x48\x41", + [0x2cf6] = "\x0f\x48\x42", [0x2cf7] = "\x0f\x48\x43", + [0x2cf8] = "\x0f\x48\x44", [0x2cf9] = "\x0f\x48\x45", + [0x2cfa] = "\x0f\x48\x47", [0x2cfb] = "\x0f\x48\x48", + [0x2cfc] = "\x0f\x48\x49", [0x2cfe] = "\x0f\x48\x46", + [0x2d00] = "\x06\x5d\x30", [0x2d01] = "\x0f\x48\x36", + [0x2d20] = "\x07\x23\x33", [0x2d21] = "\x07\x23\x38", + [0x2d22] = "\x05\x4d\x3c", [0x2d23] = "\x04\x4a\x25", + [0x2d24] = "\x07\x23\x3d", [0x2d25] = "\x07\x23\x37", + [0x2d26] = "\x07\x23\x39", [0x2d27] = "\x04\x49\x7b", + [0x2d28] = "\x04\x49\x78", [0x2d29] = "\x05\x4d\x3d", + [0x2d2a] = "\x05\x4d\x3b", [0x2d2b] = "\x07\x23\x45", + [0x2d2c] = "\x04\x49\x7d", [0x2d2d] = "\x07\x2e\x2f", + [0x2d2e] = "\x04\x4a\x21", [0x2d30] = "\x05\x4d\x41", + [0x2d31] = "\x04\x4a\x26", [0x2d32] = "\x04\x49\x7c", + [0x2d33] = "\x05\x54\x59", [0x2d34] = "\x07\x2e\x3c", + [0x2d35] = "\x07\x23\x35", [0x2d36] = "\x07\x23\x34", + [0x2d37] = "\x07\x2e\x2d", [0x2d38] = "\x07\x2e\x2b", + [0x2d39] = "\x07\x23\x44", [0x2d3a] = "\x07\x2e\x2c", + [0x2d3b] = "\x07\x23\x3c", [0x2d3c] = "\x05\x4d\x40", + [0x2d3d] = "\x07\x2e\x2e", [0x2d3e] = "\x05\x4d\x3f", + [0x2d3f] = "\x07\x23\x3b", [0x2d40] = "\x07\x23\x42", + [0x2d41] = "\x07\x23\x43", [0x2d43] = "\x07\x23\x3e", + [0x2d44] = "\x07\x23\x41", [0x2d48] = "\x04\x49\x77", + [0x2d4a] = "\x0f\x48\x31", [0x2d4d] = "\x07\x23\x32", + [0x2d4e] = "\x07\x23\x3f", [0x2d4f] = "\x07\x23\x40", + [0x2d50] = "\x0f\x4e\x7c", [0x2d51] = "\x0f\x4e\x7d", + [0x2d52] = "\x0f\x4e\x7e", [0x2d53] = "\x0f\x4f\x21", + [0x2d54] = "\x0f\x4f\x22", [0x2d55] = "\x0f\x4f\x23", + [0x2d56] = "\x0f\x4f\x26", [0x2d57] = "\x0f\x4f\x27", + [0x2d58] = "\x0f\x4f\x28", [0x2d59] = "\x0f\x4f\x29", + [0x2d5a] = "\x0f\x4f\x2a", [0x2d5b] = "\x0f\x4f\x2b", + [0x2d5c] = "\x0f\x4f\x2d", [0x2d5d] = "\x0f\x4f\x2e", + [0x2d5e] = "\x0f\x4f\x2f", [0x2d5f] = "\x0f\x4f\x30", + [0x2d60] = "\x0f\x54\x5f", [0x2d63] = "\x0f\x4f\x24", + [0x2d7f] = "\x04\x56\x38", [0x2d80] = "\x04\x50\x41", + [0x2d81] = "\x07\x2e\x35", [0x2d82] = "\x07\x2e\x30", + [0x2d83] = "\x05\x54\x5a", [0x2d84] = "\x05\x54\x5b", + [0x2d85] = "\x07\x2e\x3e", [0x2d86] = "\x07\x2e\x3a", + [0x2d87] = "\x07\x2e\x32", [0x2d88] = "\x07\x23\x36", + [0x2d89] = "\x04\x50\x3e", [0x2d8a] = "\x04\x50\x43", + [0x2d8b] = "\x04\x50\x40", [0x2d8c] = "\x05\x54\x5d", + [0x2d8d] = "\x04\x50\x3f", [0x2d8e] = "\x07\x2e\x3d", + [0x2d8f] = "\x04\x50\x46", [0x2d90] = "\x07\x2e\x3b", + [0x2d91] = "\x04\x50\x48", [0x2d92] = "\x04\x50\x42", + [0x2d93] = "\x04\x50\x47", [0x2d94] = "\x07\x2e\x39", + [0x2d95] = "\x07\x2e\x31", [0x2d96] = "\x07\x2e\x40", + [0x2d97] = "\x07\x38\x29", [0x2d98] = "\x07\x2e\x38", + [0x2d99] = "\x05\x54\x5f", [0x2d9a] = "\x05\x54\x5c", + [0x2d9b] = "\x07\x2e\x37", [0x2d9c] = "\x07\x38\x28", + [0x2d9d] = "\x07\x2e\x33", [0x2da6] = "\x07\x2e\x3f", + [0x2da7] = "\x0f\x54\x55", [0x2da8] = "\x0f\x54\x56", + [0x2da9] = "\x0f\x54\x57", [0x2daa] = "\x0f\x54\x58", + [0x2dab] = "\x0f\x54\x59", [0x2dac] = "\x0f\x54\x5a", + [0x2dad] = "\x0f\x54\x5b", [0x2dae] = "\x0f\x54\x5c", + [0x2daf] = "\x0f\x54\x5d", [0x2db0] = "\x0f\x54\x5e", + [0x2db1] = "\x0f\x54\x60", [0x2db5] = "\x07\x2e\x34", + [0x2dc7] = "\x07\x2e\x36", [0x2dc8] = "\x04\x50\x44", + [0x2dc9] = "\x0f\x54\x54", [0x2dcb] = "\x05\x5b\x56", + [0x2dcc] = "\x07\x38\x31", [0x2dcd] = "\x05\x5b\x57", + [0x2dce] = "\x07\x38\x36", [0x2dcf] = "\x04\x56\x3b", + [0x2dd0] = "\x07\x38\x2f", [0x2dd1] = "\x07\x38\x35", + [0x2dd2] = "\x04\x56\x3a", [0x2dd3] = "\x07\x38\x34", + [0x2dd4] = "\x07\x38\x2c", [0x2dd5] = "\x05\x5b\x58", + [0x2dd6] = "\x04\x56\x37", [0x2dd7] = "\x05\x5b\x55", + [0x2dd8] = "\x07\x38\x2a", [0x2dd9] = "\x07\x38\x37", + [0x2dda] = "\x07\x38\x30", [0x2ddb] = "\x07\x38\x2e", + [0x2ddc] = "\x07\x38\x32", [0x2ddd] = "\x07\x38\x38", + [0x2de4] = "\x07\x38\x2b", [0x2de5] = "\x07\x38\x2d", + [0x2de6] = "\x0f\x5a\x30", [0x2de7] = "\x0f\x5a\x31", + [0x2de8] = "\x0f\x5a\x32", [0x2de9] = "\x0f\x5a\x33", + [0x2dea] = "\x0f\x5a\x34", [0x2deb] = "\x0f\x5a\x35", + [0x2ded] = "\x07\x38\x33", [0x2df6] = "\x04\x5b\x33", + [0x2df7] = "\x04\x5b\x38", [0x2df8] = "\x05\x61\x6e", + [0x2df9] = "\x05\x61\x6b", [0x2dfa] = "\x05\x61\x6c", + [0x2dfb] = "\x05\x61\x6d", [0x2dfc] = "\x07\x3f\x68", + [0x2dfd] = "\x07\x3f\x67", [0x2dfe] = "\x04\x5b\x35", + [0x2dff] = "\x04\x5b\x37", [0x2e00] = "\x05\x67\x7a", + [0x2e01] = "\x05\x6c\x2d", [0x2e02] = "\x07\x3f\x69", + [0x2e03] = "\x07\x3f\x66", [0x2e04] = "\x04\x5b\x34", + [0x2e05] = "\x07\x3f\x63", [0x2e06] = "\x07\x3f\x65", + [0x2e07] = "\x07\x47\x2f", [0x2e08] = "\x07\x3f\x61", + [0x2e09] = "\x07\x3f\x64", [0x2e0e] = "\x0f\x5e\x68", + [0x2e0f] = "\x0f\x5e\x69", [0x2e10] = "\x0f\x5e\x6a", + [0x2e11] = "\x0f\x5e\x6d", [0x2e12] = "\x0f\x5e\x6e", + [0x2e13] = "\x0f\x5e\x6f", [0x2e14] = "\x0f\x5e\x71", + [0x2e15] = "\x0f\x5e\x72", [0x2e16] = "\x0f\x5e\x74", + [0x2e18] = "\x0f\x5e\x6c", [0x2e19] = "\x0f\x5e\x6b", + [0x2e23] = "\x04\x5f\x66", [0x2e24] = "\x04\x5f\x68", + [0x2e25] = "\x04\x5f\x67", [0x2e26] = "\x04\x5f\x69", + [0x2e27] = "\x05\x6c\x2f", [0x2e28] = "\x07\x47\x32", + [0x2e29] = "\x07\x47\x34", [0x2e2a] = "\x07\x47\x36", + [0x2e2b] = "\x05\x67\x7b", [0x2e2c] = "\x07\x47\x30", + [0x2e2d] = "\x05\x6c\x2e", [0x2e2e] = "\x07\x47\x38", + [0x2e2f] = "\x04\x5f\x6b", [0x2e30] = "\x07\x47\x35", + [0x2e31] = "\x07\x47\x33", [0x2e32] = "\x07\x47\x31", + [0x2e33] = "\x04\x5f\x6a", [0x2e34] = "\x05\x67\x79", + [0x2e37] = "\x0f\x62\x3e", [0x2e38] = "\x0f\x62\x3f", + [0x2e39] = "\x0f\x62\x40", [0x2e3a] = "\x0f\x62\x41", + [0x2e3b] = "\x0f\x62\x42", [0x2e3c] = "\x0f\x62\x43", + [0x2e3d] = "\x0f\x62\x44", [0x2e3e] = "\x0f\x62\x45", + [0x2e3f] = "\x0f\x62\x46", [0x2e40] = "\x0f\x62\x49", + [0x2e41] = "\x0f\x65\x2f", [0x2e42] = "\x07\x3f\x6a", + [0x2e44] = "\x07\x47\x37", [0x2e4b] = "\x0f\x62\x47", + [0x2e4d] = "\x05\x6c\x32", [0x2e4f] = "\x04\x66\x3f", + [0x2e50] = "\x07\x4d\x6d", [0x2e51] = "\x04\x63\x48", + [0x2e53] = "\x07\x4d\x6c", [0x2e54] = "\x04\x63\x49", + [0x2e55] = "\x07\x4d\x70", [0x2e56] = "\x04\x63\x4a", + [0x2e57] = "\x07\x4d\x6e", [0x2e58] = "\x05\x6c\x33", + [0x2e59] = "\x05\x6c\x30", [0x2e5a] = "\x05\x6c\x31", + [0x2e5f] = "\x07\x4d\x6f", [0x2e60] = "\x0f\x65\x2d", + [0x2e61] = "\x0f\x65\x2e", [0x2e62] = "\x0f\x65\x30", + [0x2e6c] = "\x07\x53\x44", [0x2e6d] = "\x07\x57\x77", + [0x2e6e] = "\x04\x66\x41", [0x2e6f] = "\x07\x53\x3f", + [0x2e70] = "\x07\x53\x43", [0x2e71] = "\x07\x53\x42", + [0x2e72] = "\x04\x66\x42", [0x2e73] = "\x05\x73\x45", + [0x2e74] = "\x07\x53\x41", [0x2e75] = "\x07\x53\x40", + [0x2e77] = "\x0f\x67\x56", [0x2e79] = "\x0f\x67\x57", + [0x2e7a] = "\x0f\x67\x58", [0x2e7b] = "\x0f\x67\x59", + [0x2e82] = "\x07\x57\x78", [0x2e83] = "\x07\x57\x79", + [0x2e84] = "\x05\x73\x44", [0x2e85] = "\x05\x73\x47", + [0x2e86] = "\x05\x70\x23", [0x2e87] = "\x07\x57\x7a", + [0x2e88] = "\x05\x73\x42", [0x2e89] = "\x05\x73\x46", + [0x2e8a] = "\x07\x57\x7c", [0x2e8b] = "\x07\x5b\x57", + [0x2e8c] = "\x07\x53\x3e", [0x2e8f] = "\x0f\x69\x43", + [0x2e90] = "\x0f\x69\x44", [0x2e91] = "\x05\x73\x43", + [0x2e95] = "\x07\x57\x7b", [0x2e96] = "\x07\x5b\x58", + [0x2e98] = "\x0f\x6a\x54", [0x2e99] = "\x0f\x6a\x55", + [0x2e9a] = "\x0f\x6a\x56", [0x2e9e] = "\x07\x5e\x6a", + [0x2e9f] = "\x05\x77\x5d", [0x2ea0] = "\x07\x5e\x69", + [0x2ea1] = "\x04\x6b\x6b", [0x2ea2] = "\x07\x5e\x6b", + [0x2ea5] = "\x05\x77\x5c", [0x2ea6] = "\x07\x5e\x68", + [0x2ea7] = "\x0f\x6b\x49", [0x2ea8] = "\x0f\x6b\x4a", + [0x2ea9] = "\x0f\x6b\x4b", [0x2eaa] = "\x0f\x6b\x4c", + [0x2eac] = "\x07\x62\x38", [0x2ead] = "\x0f\x6c\x2a", + [0x2eae] = "\x0f\x6c\x2b", [0x2eb0] = "\x04\x6d\x73", + [0x2eb1] = "\x07\x63\x53", [0x2eb2] = "\x0f\x6c\x61", + [0x2eb4] = "\x07\x66\x26", [0x2eb5] = "\x04\x22\x77", + [0x2eb6] = "\x04\x24\x3d", [0x2eb7] = "\x04\x26\x5a", + [0x2eb8] = "\x0f\x27\x31", [0x2eb9] = "\x0f\x27\x32", + [0x2eba] = "\x0f\x27\x33", [0x2ebe] = "\x06\x31\x58", + [0x2ec1] = "\x06\x38\x22", [0x2ec2] = "\x05\x2f\x5c", + [0x2ec3] = "\x04\x2d\x3e", [0x2ec4] = "\x06\x38\x21", + [0x2ec8] = "\x06\x36\x44", [0x2eca] = "\x06\x40\x39", + [0x2ecd] = "\x06\x40\x38", [0x2ece] = "\x06\x49\x4f", + [0x2ecf] = "\x06\x49\x4e", [0x2ed0] = "\x0f\x3b\x4c", + [0x2ed1] = "\x0f\x3b\x4d", [0x2ed4] = "\x05\x38\x75", + [0x2ed5] = "\x06\x53\x26", [0x2ed6] = "\x0f\x41\x6a", + [0x2ed7] = "\x06\x53\x27", [0x2eda] = "\x05\x46\x2d", + [0x2edb] = "\x06\x5d\x40", [0x2edd] = "\x07\x23\x46", + [0x2ede] = "\x07\x23\x47", [0x2ee0] = "\x05\x54\x60", + [0x2ee1] = "\x0f\x54\x61", [0x2ee5] = "\x07\x38\x3b", + [0x2ee6] = "\x07\x38\x3a", [0x2ee7] = "\x05\x5b\x59", + [0x2ee9] = "\x07\x38\x3c", [0x2eea] = "\x07\x4d\x71", + [0x2eec] = "\x05\x24\x3f", [0x2eed] = "\x06\x27\x79", + [0x2eee] = "\x05\x24\x40", [0x2eef] = "\x06\x27\x7a", + [0x2ef1] = "\x05\x24\x41", [0x2ef2] = "\x06\x27\x78", + [0x2ef3] = "\x06\x2b\x68", [0x2ef4] = "\x04\x26\x60", + [0x2ef6] = "\x05\x26\x42", [0x2ef7] = "\x05\x26\x40", + [0x2ef9] = "\x04\x26\x5d", [0x2efa] = "\x06\x2b\x6c", + [0x2efb] = "\x06\x2b\x66", [0x2efd] = "\x06\x2b\x6a", + [0x2efe] = "\x06\x2b\x69", [0x2f05] = "\x06\x2b\x67", + [0x2f06] = "\x05\x26\x3f", [0x2f07] = "\x05\x26\x41", + [0x2f08] = "\x04\x26\x5c", [0x2f09] = "\x04\x29\x60", + [0x2f0a] = "\x06\x31\x59", [0x2f0b] = "\x05\x29\x4c", + [0x2f0c] = "\x05\x29\x4b", [0x2f0d] = "\x06\x31\x5c", + [0x2f0e] = "\x06\x31\x5e", [0x2f0f] = "\x06\x31\x5d", + [0x2f10] = "\x05\x29\x49", [0x2f11] = "\x05\x29\x4a", + [0x2f14] = "\x04\x29\x5e", [0x2f15] = "\x04\x29\x5f", + [0x2f18] = "\x06\x31\x5b", [0x2f1c] = "\x06\x38\x23", + [0x2f1d] = "\x06\x38\x24", [0x2f1e] = "\x06\x38\x26", + [0x2f1f] = "\x05\x2d\x72", [0x2f20] = "\x06\x31\x5f", + [0x2f21] = "\x04\x2d\x45", [0x2f22] = "\x06\x38\x28", + [0x2f23] = "\x05\x2d\x70", [0x2f25] = "\x06\x38\x2a", + [0x2f27] = "\x05\x2d\x6f", [0x2f28] = "\x05\x2d\x74", + [0x2f2a] = "\x06\x38\x25", [0x2f2c] = "\x05\x2d\x73", + [0x2f2d] = "\x05\x2d\x71", [0x2f2e] = "\x06\x38\x29", + [0x2f2f] = "\x06\x38\x27", [0x2f36] = "\x04\x2d\x41", + [0x2f3a] = "\x05\x32\x6d", [0x2f3b] = "\x06\x40\x40", + [0x2f3d] = "\x04\x32\x2e", [0x2f3f] = "\x06\x40\x3a", + [0x2f40] = "\x06\x40\x3b", [0x2f41] = "\x06\x40\x3d", + [0x2f42] = "\x05\x32\x6f", [0x2f43] = "\x05\x32\x70", + [0x2f44] = "\x04\x32\x30", [0x2f45] = "\x06\x40\x3e", + [0x2f46] = "\x06\x40\x3c", [0x2f47] = "\x05\x32\x6b", + [0x2f48] = "\x06\x40\x41", [0x2f49] = "\x04\x32\x31", + [0x2f4a] = "\x04\x32\x2a", [0x2f4b] = "\x04\x32\x2d", + [0x2f4f] = "\x04\x32\x29", [0x2f50] = "\x05\x32\x6e", + [0x2f51] = "\x0f\x35\x31", [0x2f52] = "\x0f\x35\x32", + [0x2f53] = "\x0f\x35\x33", [0x2f54] = "\x0f\x35\x34", + [0x2f55] = "\x0f\x35\x35", [0x2f57] = "\x05\x32\x6a", + [0x2f58] = "\x06\x40\x3f", [0x2f5b] = "\x06\x49\x58", + [0x2f5d] = "\x05\x39\x22", [0x2f5e] = "\x06\x49\x55", + [0x2f5f] = "\x04\x37\x7a", [0x2f60] = "\x04\x37\x7b", + [0x2f61] = "\x06\x49\x59", [0x2f64] = "\x06\x49\x54", + [0x2f65] = "\x06\x49\x5a", [0x2f66] = "\x05\x38\x76", + [0x2f67] = "\x05\x38\x7e", [0x2f68] = "\x05\x39\x21", + [0x2f69] = "\x05\x38\x7d", [0x2f6a] = "\x05\x38\x77", + [0x2f6c] = "\x06\x49\x56", [0x2f6d] = "\x05\x38\x7b", + [0x2f6e] = "\x06\x49\x51", [0x2f6f] = "\x06\x49\x50", + [0x2f70] = "\x06\x49\x53", [0x2f72] = "\x04\x37\x72", + [0x2f73] = "\x04\x37\x73", [0x2f74] = "\x04\x37\x74", + [0x2f75] = "\x05\x38\x78", [0x2f76] = "\x05\x38\x79", + [0x2f77] = "\x05\x32\x6c", [0x2f7a] = "\x06\x49\x52", + [0x2f7f] = "\x06\x53\x2f", [0x2f80] = "\x05\x38\x7a", + [0x2f82] = "\x05\x3f\x57", [0x2f83] = "\x05\x3f\x5a", + [0x2f84] = "\x05\x3f\x5c", [0x2f85] = "\x04\x3d\x57", + [0x2f86] = "\x04\x3d\x5f", [0x2f87] = "\x06\x53\x2b", + [0x2f88] = "\x06\x53\x2e", [0x2f89] = "\x06\x53\x29", + [0x2f8b] = "\x05\x3f\x5b", [0x2f8c] = "\x06\x53\x30", + [0x2f8d] = "\x06\x53\x2d", [0x2f8f] = "\x06\x53\x28", + [0x2f90] = "\x04\x3d\x60", [0x2f92] = "\x05\x3f\x56", + [0x2f93] = "\x06\x53\x31", [0x2f94] = "\x05\x3f\x59", + [0x2f99] = "\x04\x3d\x5e", [0x2f9a] = "\x04\x3d\x55", + [0x2f9b] = "\x04\x3d\x56", [0x2f9c] = "\x04\x3d\x58", + [0x2f9d] = "\x05\x3f\x58", [0x2f9e] = "\x06\x53\x2a", + [0x2f9f] = "\x0f\x41\x6b", [0x2fa0] = "\x06\x53\x2c", + [0x2fa3] = "\x05\x32\x71", [0x2fa4] = "\x04\x3d\x5a", + [0x2fa5] = "\x06\x55\x60", [0x2fa7] = "\x05\x46\x34", + [0x2fa8] = "\x06\x5d\x49", [0x2fa9] = "\x05\x46\x32", + [0x2faa] = "\x06\x5d\x41", [0x2fab] = "\x04\x43\x68", + [0x2fac] = "\x05\x46\x31", [0x2fad] = "\x06\x5d\x42", + [0x2fae] = "\x05\x46\x2f", [0x2faf] = "\x06\x5d\x46", + [0x2fb1] = "\x05\x46\x37", [0x2fb3] = "\x05\x46\x35", + [0x2fb4] = "\x06\x5d\x47", [0x2fb5] = "\x06\x5d\x45", + [0x2fb6] = "\x06\x5d\x44", [0x2fb7] = "\x06\x5d\x48", + [0x2fb8] = "\x06\x5d\x43", [0x2fb9] = "\x06\x5d\x4a", + [0x2fba] = "\x05\x46\x33", [0x2fbc] = "\x04\x43\x67", + [0x2fbd] = "\x05\x46\x36", [0x2fbe] = "\x06\x5d\x4b", + [0x2fc6] = "\x05\x48\x25", [0x2fc7] = "\x05\x4d\x42", + [0x2fc8] = "\x05\x4d\x47", [0x2fc9] = "\x04\x4a\x2c", + [0x2fca] = "\x07\x23\x4e", [0x2fcb] = "\x07\x23\x49", + [0x2fcd] = "\x07\x23\x48", [0x2fce] = "\x05\x4d\x46", + [0x2fd0] = "\x07\x23\x52", [0x2fd1] = "\x07\x23\x4f", + [0x2fd2] = "\x07\x23\x4d", [0x2fd3] = "\x05\x4d\x45", + [0x2fd4] = "\x07\x23\x50", [0x2fd5] = "\x05\x4d\x43", + [0x2fd6] = "\x05\x4d\x44", [0x2fd7] = "\x0f\x4f\x31", + [0x2fd8] = "\x07\x23\x4b", [0x2fd9] = "\x07\x23\x4c", + [0x2fdb] = "\x07\x23\x4a", [0x2fde] = "\x04\x50\x4b", + [0x2fdf] = "\x07\x2e\x42", [0x2fe0] = "\x07\x2e\x46", + [0x2fe1] = "\x07\x2e\x48", [0x2fe3] = "\x0f\x54\x62", + [0x2fe4] = "\x05\x54\x61", [0x2fe5] = "\x07\x2e\x4b", + [0x2fe8] = "\x07\x2e\x47", [0x2fe9] = "\x07\x2e\x49", + [0x2fea] = "\x07\x2e\x41", [0x2feb] = "\x07\x2e\x45", + [0x2fec] = "\x07\x2e\x4c", [0x2fed] = "\x05\x54\x63", + [0x2fee] = "\x07\x2e\x4a", [0x2ff2] = "\x04\x50\x4a", + [0x2ff3] = "\x05\x54\x64", [0x2ff4] = "\x05\x54\x65", + [0x2ff5] = "\x05\x54\x66", [0x2ff6] = "\x0f\x54\x63", + [0x2ff7] = "\x07\x2e\x44", [0x2ff8] = "\x05\x54\x62", + [0x2ff9] = "\x07\x23\x51", [0x2ffd] = "\x05\x54\x67", + [0x2ffe] = "\x07\x38\x3e", [0x2fff] = "\x07\x38\x3d", + [0x3000] = "\x05\x5b\x5a", [0x3001] = "\x05\x5b\x5e", + [0x3002] = "\x05\x5b\x5d", [0x3006] = "\x04\x56\x3c", + [0x3009] = "\x04\x56\x3d", [0x300a] = "\x05\x5b\x5b", + [0x300b] = "\x0f\x5a\x37", [0x300c] = "\x0f\x5a\x38", + [0x300e] = "\x07\x38\x3f", [0x300f] = "\x05\x5b\x5c", + [0x3010] = "\x05\x61\x70", [0x3011] = "\x07\x3f\x6c", + [0x3012] = "\x05\x61\x6f", [0x3014] = "\x04\x5b\x3b", + [0x3015] = "\x07\x3f\x6d", [0x3016] = "\x07\x3f\x6e", + [0x3018] = "\x04\x5b\x39", [0x301a] = "\x07\x3f\x6b", + [0x301d] = "\x05\x68\x21", [0x301e] = "\x05\x67\x7e", + [0x3020] = "\x05\x67\x7c", [0x3021] = "\x05\x67\x7d", + [0x3022] = "\x0f\x62\x4a", [0x3023] = "\x05\x6c\x34", + [0x3024] = "\x04\x63\x4d", [0x3025] = "\x05\x6c\x35", + [0x3026] = "\x07\x4d\x72", [0x3027] = "\x04\x63\x4b", + [0x3028] = "\x07\x4d\x75", [0x302a] = "\x07\x4d\x74", + [0x302b] = "\x05\x6c\x36", [0x302c] = "\x07\x4d\x76", + [0x302d] = "\x07\x4d\x77", [0x302e] = "\x04\x66\x44", + [0x302f] = "\x05\x70\x25", [0x3031] = "\x05\x70\x26", + [0x3033] = "\x05\x73\x48", [0x3034] = "\x0f\x69\x45", + [0x3035] = "\x07\x5b\x59", [0x3036] = "\x05\x75\x6b", + [0x3037] = "\x04\x6a\x4a", [0x303a] = "\x07\x5b\x5a", + [0x303c] = "\x04\x6c\x6f", [0x303d] = "\x0f\x6c\x62", + [0x3041] = "\x0f\x22\x53", [0x3042] = "\x0f\x24\x46", + [0x3043] = "\x06\x2b\x6d", [0x3046] = "\x0f\x2b\x2d", + [0x3047] = "\x0f\x2b\x2e", [0x3048] = "\x0f\x2b\x2f", + [0x304a] = "\x06\x38\x2d", [0x304b] = "\x06\x38\x2e", + [0x304c] = "\x0f\x2f\x65", [0x304e] = "\x06\x40\x42", + [0x304f] = "\x06\x40\x44", [0x3050] = "\x0f\x35\x37", + [0x3051] = "\x0f\x35\x38", [0x3052] = "\x06\x40\x43", + [0x3055] = "\x0f\x3b\x4e", [0x3057] = "\x05\x3f\x5d", + [0x3058] = "\x0f\x41\x6c", [0x3059] = "\x06\x53\x32", + [0x305a] = "\x0f\x35\x36", [0x305c] = "\x05\x4d\x48", + [0x305d] = "\x07\x23\x54", [0x305e] = "\x07\x23\x53", + [0x305f] = "\x05\x4d\x49", [0x3060] = "\x0f\x4f\x33", + [0x3061] = "\x0f\x4f\x34", [0x3062] = "\x05\x4d\x4a", + [0x3063] = "\x07\x2e\x4d", [0x3064] = "\x0f\x5a\x39", + [0x3065] = "\x0f\x5e\x75", [0x3067] = "\x0f\x62\x4b", + [0x3069] = "\x0f\x67\x5a", [0x306b] = "\x07\x5b\x5b", + [0x306c] = "\x06\x22\x22", [0x306e] = "\x0f\x27\x34", + [0x3071] = "\x06\x31\x60", [0x3073] = "\x04\x2d\x48", + [0x3074] = "\x05\x2d\x76", [0x3075] = "\x05\x2d\x75", + [0x3076] = "\x06\x38\x2f", [0x3077] = "\x05\x32\x72", + [0x3078] = "\x0f\x35\x39", [0x307a] = "\x06\x40\x46", + [0x307b] = "\x06\x40\x45", [0x307c] = "\x06\x49\x5d", + [0x307d] = "\x0f\x40\x32", [0x307f] = "\x06\x49\x5b", + [0x3080] = "\x06\x49\x5c", [0x3081] = "\x04\x3d\x61", + [0x3082] = "\x06\x5d\x4c", [0x3084] = "\x05\x3f\x5e", + [0x3085] = "\x0f\x41\x6d", [0x3086] = "\x04\x43\x6a", + [0x3089] = "\x04\x4a\x2d", [0x308a] = "\x07\x23\x55", + [0x308c] = "\x07\x38\x40", [0x308f] = "\x04\x5f\x6c", + [0x3091] = "\x06\x22\x23", [0x3093] = "\x0f\x24\x47", + [0x3094] = "\x06\x2b\x6f", [0x3095] = "\x06\x2b\x6e", + [0x3099] = "\x06\x31\x61", [0x309b] = "\x0f\x2f\x66", + [0x309e] = "\x04\x32\x32", [0x309f] = "\x06\x40\x48", + [0x30a0] = "\x06\x40\x47", [0x30a1] = "\x06\x49\x60", + [0x30a2] = "\x06\x49\x64", [0x30a3] = "\x06\x49\x63", + [0x30a4] = "\x05\x39\x23", [0x30a5] = "\x06\x49\x66", + [0x30a6] = "\x06\x49\x5f", [0x30a7] = "\x06\x49\x5e", + [0x30a8] = "\x06\x49\x62", [0x30aa] = "\x04\x37\x7c", + [0x30ab] = "\x06\x4c\x3e", [0x30ad] = "\x06\x49\x65", + [0x30ae] = "\x04\x3d\x62", [0x30af] = "\x06\x53\x36", + [0x30b1] = "\x06\x53\x34", [0x30b2] = "\x06\x53\x37", + [0x30b5] = "\x05\x3f\x5f", [0x30b6] = "\x06\x5d\x4f", + [0x30b8] = "\x06\x5d\x4e", [0x30b9] = "\x06\x5d\x50", + [0x30ba] = "\x03\x47\x31", [0x30bb] = "\x04\x4a\x2f", + [0x30bc] = "\x06\x5d\x4d", [0x30bd] = "\x05\x4d\x4c", + [0x30bf] = "\x05\x4d\x4d", [0x30c0] = "\x07\x2e\x51", + [0x30c1] = "\x07\x2e\x50", [0x30c2] = "\x07\x2e\x4f", + [0x30c3] = "\x07\x2e\x52", [0x30c6] = "\x07\x2e\x4e", + [0x30c8] = "\x04\x50\x4d", [0x30ca] = "\x07\x38\x41", + [0x30cb] = "\x07\x38\x42", [0x30cc] = "\x07\x3f\x6f", + [0x30cd] = "\x04\x5b\x3c", [0x30cf] = "\x07\x3f\x70", + [0x30d0] = "\x07\x3f\x71", [0x30d1] = "\x07\x47\x39", + [0x30d3] = "\x0f\x62\x4c", [0x30d4] = "\x07\x4d\x78", + [0x30d6] = "\x07\x57\x7d", [0x30d8] = "\x04\x24\x42", + [0x30d9] = "\x06\x27\x7b", [0x30db] = "\x0f\x27\x35", + [0x30dc] = "\x0f\x27\x36", [0x30dd] = "\x05\x29\x4d", + [0x30de] = "\x06\x31\x64", [0x30df] = "\x06\x31\x63", + [0x30e1] = "\x0f\x2b\x30", [0x30e2] = "\x06\x31\x62", + [0x30e6] = "\x04\x2d\x4a", [0x30e7] = "\x05\x2d\x77", + [0x30e8] = "\x06\x38\x31", [0x30e9] = "\x06\x38\x33", + [0x30ea] = "\x06\x38\x35", [0x30eb] = "\x0f\x2f\x67", + [0x30ec] = "\x0f\x2f\x68", [0x30ed] = "\x0f\x2f\x69", + [0x30ee] = "\x0f\x2f\x6a", [0x30ef] = "\x06\x38\x32", + [0x30f3] = "\x04\x32\x33", [0x30f5] = "\x04\x32\x35", + [0x30f7] = "\x06\x40\x4a", [0x30f8] = "\x0f\x35\x3a", + [0x30f9] = "\x0f\x35\x3b", [0x30fb] = "\x06\x40\x49", + [0x30fc] = "\x06\x49\x69", [0x30fd] = "\x05\x39\x25", + [0x30fe] = "\x05\x39\x24", [0x30ff] = "\x06\x49\x68", + [0x3100] = "\x06\x49\x6a", [0x3101] = "\x06\x49\x67", + [0x3102] = "\x0f\x3b\x4f", [0x3104] = "\x0f\x3b\x50", + [0x3108] = "\x06\x53\x38", [0x3109] = "\x05\x3f\x60", + [0x310a] = "\x06\x53\x39", [0x310b] = "\x0f\x41\x6e", + [0x310c] = "\x0f\x41\x6f", [0x310e] = "\x05\x46\x38", + [0x310f] = "\x05\x46\x3a", [0x3110] = "\x06\x5d\x52", + [0x3111] = "\x05\x46\x39", [0x3114] = "\x07\x23\x56", + [0x3117] = "\x0f\x4f\x35", [0x3118] = "\x07\x2e\x53", + [0x3119] = "\x05\x54\x68", [0x311a] = "\x07\x38\x43", + [0x311d] = "\x05\x5b\x5f", [0x311e] = "\x07\x3f\x73", + [0x311f] = "\x05\x61\x71", [0x3120] = "\x04\x5b\x3d", + [0x3121] = "\x07\x3f\x74", [0x3122] = "\x07\x3f\x72", + [0x3124] = "\x07\x47\x3a", [0x3126] = "\x07\x53\x45", + [0x3127] = "\x04\x68\x6d", [0x3128] = "\x07\x57\x7e", + [0x312a] = "\x07\x5e\x6c", [0x312b] = "\x07\x60\x70", + [0x312e] = "\x05\x24\x42", [0x3130] = "\x05\x29\x4e", + [0x3131] = "\x05\x2d\x79", [0x3132] = "\x05\x2d\x78", + [0x3134] = "\x04\x37\x7d", [0x3135] = "\x06\x49\x6b", + [0x3136] = "\x06\x53\x3a", [0x3137] = "\x06\x53\x3b", + [0x3138] = "\x04\x3d\x66", [0x3139] = "\x0f\x4f\x36", + [0x313b] = "\x06\x23\x2c", [0x313c] = "\x06\x23\x2b", + [0x313e] = "\x06\x24\x7b", [0x313f] = "\x05\x22\x73", + [0x3140] = "\x06\x24\x7a", [0x3141] = "\x06\x24\x7c", + [0x3142] = "\x0f\x22\x54", [0x3144] = "\x0f\x24\x4b", + [0x3146] = "\x06\x27\x7c", [0x3147] = "\x06\x27\x7d", + [0x3148] = "\x06\x28\x25", [0x3149] = "\x05\x24\x43", + [0x314a] = "\x06\x28\x22", [0x314b] = "\x06\x27\x7e", + [0x314c] = "\x06\x28\x24", [0x314e] = "\x06\x28\x23", + [0x3150] = "\x06\x28\x21", [0x3151] = "\x0f\x24\x48", + [0x3152] = "\x0f\x24\x4a", [0x3153] = "\x0f\x24\x4c", + [0x3156] = "\x04\x24\x44", [0x315a] = "\x05\x26\x48", + [0x315b] = "\x06\x2b\x74", [0x315c] = "\x06\x2b\x73", + [0x315d] = "\x05\x26\x49", [0x315e] = "\x06\x2b\x7d", + [0x315f] = "\x05\x26\x44", [0x3160] = "\x06\x2b\x79", + [0x3161] = "\x05\x26\x47", [0x3162] = "\x06\x2b\x7a", + [0x3163] = "\x06\x2b\x77", [0x3164] = "\x05\x26\x46", + [0x3165] = "\x05\x26\x45", [0x3166] = "\x06\x2b\x75", + [0x3167] = "\x06\x2b\x78", [0x3168] = "\x0f\x27\x37", + [0x3169] = "\x0f\x27\x38", [0x316a] = "\x0f\x27\x39", + [0x316b] = "\x0f\x27\x3a", [0x316c] = "\x0f\x27\x3b", + [0x316d] = "\x0f\x27\x3c", [0x316e] = "\x0f\x27\x3d", + [0x316f] = "\x06\x2b\x71", [0x3171] = "\x06\x2b\x7b", + [0x3172] = "\x06\x2b\x7c", [0x3173] = "\x06\x2b\x72", + [0x3174] = "\x06\x2b\x76", [0x3177] = "\x05\x29\x51", + [0x3178] = "\x06\x31\x65", [0x3179] = "\x06\x31\x66", + [0x317a] = "\x05\x29\x50", [0x317b] = "\x04\x29\x66", + [0x317c] = "\x06\x31\x68", [0x317d] = "\x06\x31\x69", + [0x317e] = "\x04\x29\x68", [0x3181] = "\x0f\x2b\x31", + [0x3183] = "\x0f\x2b\x32", [0x3184] = "\x06\x31\x6a", + [0x3185] = "\x0f\x2b\x35", [0x3186] = "\x0f\x2b\x36", + [0x3189] = "\x06\x31\x6e", [0x318a] = "\x06\x31\x6c", + [0x318b] = "\x06\x31\x6b", [0x3192] = "\x05\x2d\x7e", + [0x3193] = "\x06\x38\x3a", [0x3194] = "\x05\x2e\x21", + [0x3195] = "\x05\x2e\x22", [0x3196] = "\x05\x2d\x7b", + [0x3197] = "\x05\x2e\x23", [0x3198] = "\x05\x2d\x7c", + [0x3199] = "\x05\x2d\x7a", [0x319a] = "\x06\x38\x3e", + [0x319b] = "\x06\x38\x38", [0x319c] = "\x06\x38\x3c", + [0x319d] = "\x05\x2d\x7d", [0x319e] = "\x06\x38\x39", + [0x31a0] = "\x06\x38\x3d", [0x31a3] = "\x0f\x2f\x6b", + [0x31a6] = "\x0f\x2f\x6d", [0x31a7] = "\x06\x38\x3b", + [0x31a8] = "\x0f\x2f\x6c", [0x31a9] = "\x06\x38\x41", + [0x31ab] = "\x06\x38\x3f", [0x31b2] = "\x05\x32\x73", + [0x31b3] = "\x04\x32\x38", [0x31b4] = "\x04\x38\x21", + [0x31b5] = "\x06\x40\x53", [0x31b6] = "\x04\x32\x3d", + [0x31b7] = "\x06\x40\x4e", [0x31b8] = "\x06\x40\x4b", + [0x31b9] = "\x06\x40\x4c", [0x31ba] = "\x06\x40\x50", + [0x31bb] = "\x06\x40\x4d", [0x31bc] = "\x06\x40\x55", + [0x31bd] = "\x05\x32\x75", [0x31be] = "\x06\x38\x40", + [0x31bf] = "\x06\x40\x54", [0x31c0] = "\x06\x40\x56", + [0x31c6] = "\x0f\x35\x3c", [0x31cb] = "\x0f\x35\x3d", + [0x31cc] = "\x0f\x35\x3e", [0x31cd] = "\x0f\x35\x3f", + [0x31ce] = "\x0f\x35\x40", [0x31cf] = "\x0f\x35\x41", + [0x31d0] = "\x0f\x35\x42", [0x31d1] = "\x0f\x35\x43", + [0x31d2] = "\x0f\x35\x44", [0x31d3] = "\x0f\x35\x45", + [0x31d4] = "\x0f\x35\x46", [0x31d5] = "\x0f\x35\x47", + [0x31da] = "\x06\x40\x52", [0x31e2] = "\x05\x32\x74", + [0x31e3] = "\x06\x49\x71", [0x31e4] = "\x06\x49\x74", + [0x31e5] = "\x04\x32\x3c", [0x31e6] = "\x05\x3f\x61", + [0x31e7] = "\x05\x39\x2a", [0x31e8] = "\x06\x49\x6f", + [0x31e9] = "\x05\x39\x27", [0x31ea] = "\x06\x49\x70", + [0x31eb] = "\x05\x39\x29", [0x31ec] = "\x05\x39\x26", + [0x31ee] = "\x06\x49\x6c", [0x31ef] = "\x06\x49\x6d", + [0x31f0] = "\x04\x38\x23", [0x31f1] = "\x06\x49\x76", + [0x31f2] = "\x05\x39\x2b", [0x31f3] = "\x04\x38\x27", + [0x31f6] = "\x06\x49\x6e", [0x31fa] = "\x06\x49\x75", + [0x31fb] = "\x06\x49\x77", [0x31fc] = "\x0f\x3b\x51", + [0x31fd] = "\x0f\x3b\x53", [0x31fe] = "\x0f\x3b\x54", + [0x31ff] = "\x0f\x3b\x56", [0x3200] = "\x0f\x3b\x57", + [0x3201] = "\x0f\x3b\x59", [0x3202] = "\x0f\x3b\x5a", + [0x3203] = "\x0f\x3b\x5c", [0x3204] = "\x0f\x3b\x5d", + [0x3207] = "\x0f\x3b\x52", [0x3208] = "\x0f\x3b\x58", + [0x320d] = "\x04\x38\x26", [0x320f] = "\x04\x38\x28", + [0x321f] = "\x06\x49\x72", [0x3220] = "\x05\x39\x2c", + [0x3221] = "\x05\x39\x28", [0x3224] = "\x06\x53\x43", + [0x3225] = "\x05\x3f\x63", [0x3226] = "\x06\x53\x41", + [0x3227] = "\x06\x5d\x53", [0x3228] = "\x06\x53\x42", + [0x3229] = "\x06\x53\x3f", [0x322a] = "\x06\x53\x44", + [0x322e] = "\x0f\x46\x39", [0x3235] = "\x0f\x3b\x5b", + [0x3236] = "\x06\x53\x3e", [0x3237] = "\x0f\x41\x70", + [0x3238] = "\x0f\x41\x71", [0x3239] = "\x0f\x41\x73", + [0x323a] = "\x0f\x41\x74", [0x323b] = "\x0f\x41\x75", + [0x323c] = "\x0f\x41\x76", [0x323d] = "\x0f\x41\x77", + [0x323e] = "\x0f\x41\x78", [0x3240] = "\x0f\x41\x79", + [0x3241] = "\x0f\x41\x7a", [0x3242] = "\x0f\x41\x7b", + [0x3243] = "\x0f\x41\x7d", [0x3244] = "\x05\x3d\x55", + [0x3248] = "\x06\x53\x45", [0x324a] = "\x06\x53\x40", + [0x3251] = "\x05\x3f\x64", [0x3252] = "\x05\x46\x3b", + [0x3253] = "\x05\x46\x3f", [0x3254] = "\x05\x46\x3d", + [0x3255] = "\x05\x46\x3e", [0x3256] = "\x06\x5d\x56", + [0x3257] = "\x05\x46\x40", [0x3258] = "\x05\x46\x43", + [0x3259] = "\x05\x46\x44", [0x325a] = "\x04\x43\x6c", + [0x325b] = "\x05\x46\x42", [0x325c] = "\x05\x4d\x4e", + [0x3263] = "\x0f\x48\x4a", [0x3264] = "\x0f\x48\x4b", + [0x3265] = "\x0f\x48\x4c", [0x3266] = "\x0f\x48\x4d", + [0x3267] = "\x0f\x48\x4e", [0x3268] = "\x0f\x48\x4f", + [0x3269] = "\x06\x5d\x54", [0x326a] = "\x05\x46\x3c", + [0x326b] = "\x06\x5d\x57", [0x326c] = "\x06\x5d\x59", + [0x326d] = "\x06\x5d\x5a", [0x3270] = "\x06\x5d\x55", + [0x327a] = "\x06\x5d\x58", [0x327b] = "\x07\x23\x61", + [0x327c] = "\x07\x23\x5c", [0x327d] = "\x07\x23\x5b", + [0x327e] = "\x07\x23\x5e", [0x327f] = "\x05\x4d\x52", + [0x3281] = "\x05\x4d\x55", [0x3282] = "\x07\x23\x5a", + [0x3283] = "\x07\x23\x57", [0x3284] = "\x07\x23\x58", + [0x3286] = "\x07\x23\x62", [0x328f] = "\x0f\x4f\x37", + [0x3290] = "\x0f\x4f\x39", [0x3291] = "\x0f\x4f\x3a", + [0x3294] = "\x05\x4d\x54", [0x3295] = "\x07\x23\x60", + [0x3296] = "\x0f\x4e\x30", [0x3299] = "\x07\x23\x5d", + [0x329a] = "\x07\x23\x5f", [0x329b] = "\x07\x23\x59", + [0x329d] = "\x05\x4d\x51", [0x329e] = "\x05\x54\x69", + [0x329f] = "\x05\x54\x6b", [0x32a0] = "\x07\x2e\x57", + [0x32a1] = "\x04\x50\x55", [0x32a3] = "\x07\x2e\x55", + [0x32a4] = "\x07\x2e\x5b", [0x32a5] = "\x07\x2e\x59", + [0x32a6] = "\x07\x2e\x5d", [0x32a7] = "\x04\x50\x54", + [0x32a8] = "\x07\x2e\x5c", [0x32ae] = "\x07\x2e\x54", + [0x32af] = "\x0f\x54\x65", [0x32b0] = "\x0f\x54\x66", + [0x32b1] = "\x0f\x54\x67", [0x32b2] = "\x0f\x54\x69", + [0x32b3] = "\x0f\x54\x6a", [0x32b4] = "\x07\x2e\x58", + [0x32b6] = "\x05\x4d\x4f", [0x32b8] = "\x07\x2d\x62", + [0x32ba] = "\x0f\x54\x68", [0x32bd] = "\x07\x2e\x43", + [0x32c4] = "\x05\x54\x6a", [0x32c5] = "\x07\x2e\x56", + [0x32c8] = "\x0f\x4f\x38", [0x32c9] = "\x07\x38\x47", + [0x32ca] = "\x05\x5b\x60", [0x32cb] = "\x05\x5b\x61", + [0x32cc] = "\x07\x38\x48", [0x32cd] = "\x05\x5b\x62", + [0x32cf] = "\x07\x38\x45", [0x32d0] = "\x07\x38\x46", + [0x32d3] = "\x07\x38\x49", [0x32d4] = "\x0f\x5a\x3a", + [0x32d5] = "\x0f\x5a\x3b", [0x32d6] = "\x0f\x5a\x3c", + [0x32d7] = "\x07\x38\x44", [0x32d8] = "\x0f\x5a\x3d", + [0x32de] = "\x04\x5b\x3e", [0x32df] = "\x05\x61\x72", + [0x32e3] = "\x05\x61\x73", [0x32e5] = "\x07\x3f\x75", + [0x32ea] = "\x0f\x5e\x76", [0x32eb] = "\x0f\x5e\x77", + [0x32ec] = "\x0f\x5e\x78", [0x32ed] = "\x0f\x5e\x79", + [0x32ee] = "\x0f\x5e\x7b", [0x32ef] = "\x07\x3f\x78", + [0x32f2] = "\x05\x68\x23", [0x32f3] = "\x07\x47\x3d", + [0x32f4] = "\x07\x47\x3c", [0x32f5] = "\x05\x68\x22", + [0x32f6] = "\x05\x68\x24", [0x32f7] = "\x07\x47\x3b", + [0x32f8] = "\x07\x47\x3e", [0x32fa] = "\x0f\x62\x4d", + [0x32ff] = "\x05\x6c\x37", [0x3303] = "\x0f\x65\x31", + [0x3304] = "\x0f\x65\x32", [0x3305] = "\x05\x6b\x6e", + [0x3307] = "\x07\x4d\x79", [0x3308] = "\x07\x53\x46", + [0x330d] = "\x07\x58\x21", [0x330e] = "\x0f\x69\x46", + [0x330f] = "\x05\x73\x39", [0x3313] = "\x05\x73\x49", + [0x3316] = "\x07\x5b\x5c", [0x3317] = "\x05\x77\x5e", + [0x3318] = "\x07\x5e\x6d", [0x3319] = "\x0f\x6b\x4d", + [0x331c] = "\x05\x79\x2b", [0x331f] = "\x07\x64\x47", + [0x3322] = "\x0f\x24\x4d", [0x3323] = "\x06\x2b\x7e", + [0x3324] = "\x0f\x27\x3f", [0x3325] = "\x0f\x27\x40", + [0x3326] = "\x06\x2c\x21", [0x3327] = "\x05\x29\x53", + [0x3328] = "\x05\x29\x52", [0x3329] = "\x06\x31\x70", + [0x332a] = "\x0f\x2b\x37", [0x332b] = "\x0f\x2b\x39", + [0x332c] = "\x06\x31\x6f", [0x332d] = "\x06\x38\x42", + [0x332f] = "\x0f\x2f\x6f", [0x3330] = "\x0f\x2f\x70", + [0x3331] = "\x0f\x2f\x71", [0x3332] = "\x0f\x2f\x72", + [0x3333] = "\x0f\x2f\x73", [0x3337] = "\x0f\x35\x49", + [0x3338] = "\x0f\x35\x4a", [0x333b] = "\x0f\x3b\x5f", + [0x333c] = "\x06\x49\x7a", [0x333d] = "\x06\x49\x79", + [0x333e] = "\x05\x3f\x65", [0x3343] = "\x04\x43\x70", + [0x3344] = "\x06\x53\x46", [0x3346] = "\x05\x4d\x57", + [0x3347] = "\x05\x4d\x56", [0x3348] = "\x07\x23\x63", + [0x334c] = "\x0f\x54\x6b", [0x334f] = "\x05\x5b\x63", + [0x3351] = "\x07\x3f\x7a", [0x3352] = "\x05\x61\x74", + [0x3353] = "\x07\x3f\x79", [0x3354] = "\x07\x3f\x77", + [0x3356] = "\x04\x5f\x6d", [0x3358] = "\x07\x4d\x7a", + [0x3359] = "\x07\x4d\x7b", [0x335b] = "\x05\x7b\x3f", + [0x335c] = "\x07\x66\x3e", [0x335d] = "\x06\x23\x2d", + [0x335e] = "\x06\x24\x7d", [0x335f] = "\x05\x24\x44", + [0x3360] = "\x06\x28\x29", [0x3361] = "\x06\x28\x27", + [0x3362] = "\x06\x28\x28", [0x3363] = "\x06\x28\x26", + [0x3364] = "\x06\x2c\x22", [0x3365] = "\x05\x29\x54", + [0x3366] = "\x04\x29\x69", [0x3367] = "\x04\x29\x6a", + [0x336b] = "\x0f\x2b\x3a", [0x336c] = "\x06\x31\x71", + [0x336e] = "\x06\x38\x43", [0x3373] = "\x0f\x35\x4b", + [0x3374] = "\x05\x32\x76", [0x3375] = "\x06\x40\x59", + [0x3376] = "\x06\x40\x5b", [0x3377] = "\x06\x49\x7d", + [0x3378] = "\x06\x49\x7c", [0x3379] = "\x06\x40\x5a", + [0x337a] = "\x05\x39\x2d", [0x337c] = "\x0f\x39\x46", + [0x3381] = "\x0f\x3b\x61", [0x3382] = "\x0f\x3b\x62", + [0x3384] = "\x06\x53\x47", [0x3385] = "\x05\x3f\x67", + [0x3389] = "\x0f\x3b\x60", [0x338a] = "\x0f\x41\x7e", + [0x338b] = "\x0f\x42\x21", [0x338c] = "\x06\x53\x48", + [0x338d] = "\x06\x5d\x5d", [0x3390] = "\x06\x5d\x5e", + [0x3392] = "\x07\x23\x64", [0x3393] = "\x04\x4a\x34", + [0x3394] = "\x05\x4d\x59", [0x3397] = "\x04\x4a\x33", + [0x3398] = "\x0f\x4f\x3b", [0x3399] = "\x0f\x4f\x3c", + [0x339a] = "\x05\x54\x6e", [0x339b] = "\x05\x54\x6c", + [0x339c] = "\x05\x5b\x64", [0x339f] = "\x05\x54\x6d", + [0x33a0] = "\x0f\x54\x6d", [0x33a1] = "\x0f\x54\x6e", + [0x33a3] = "\x07\x38\x4b", [0x33a4] = "\x07\x38\x4a", + [0x33a5] = "\x0f\x5a\x3e", [0x33a9] = "\x05\x61\x75", + [0x33ac] = "\x0f\x5e\x7c", [0x33ad] = "\x07\x3f\x7b", + [0x33ae] = "\x05\x6c\x38", [0x33b1] = "\x05\x75\x6f", + [0x33b2] = "\x05\x77\x5f", [0x33b3] = "\x05\x21\x48", + [0x33b4] = "\x04\x21\x4e", [0x33b5] = "\x04\x21\x7d", + [0x33b6] = "\x0f\x21\x65", [0x33b8] = "\x05\x22\x75", + [0x33b9] = "\x06\x25\x22", [0x33ba] = "\x05\x22\x74", + [0x33bb] = "\x06\x24\x7e", [0x33bc] = "\x06\x25\x21", + [0x33bd] = "\x0f\x22\x56", [0x33bf] = "\x04\x22\x7b", + [0x33c0] = "\x04\x22\x7a", [0x33c1] = "\x06\x28\x2c", + [0x33c2] = "\x04\x24\x49", [0x33c3] = "\x06\x28\x2a", + [0x33c5] = "\x06\x28\x2b", [0x33c6] = "\x0f\x24\x4e", + [0x33c7] = "\x0f\x24\x4f", [0x33c8] = "\x0f\x24\x54", + [0x33c9] = "\x0f\x24\x50", [0x33ca] = "\x0f\x24\x52", + [0x33cb] = "\x05\x24\x46", [0x33d0] = "\x06\x28\x2d", + [0x33d1] = "\x05\x24\x45", [0x33d2] = "\x04\x24\x45", + [0x33d4] = "\x04\x26\x6b", [0x33d5] = "\x05\x26\x4c", + [0x33d6] = "\x04\x26\x66", [0x33d7] = "\x05\x26\x4b", + [0x33d8] = "\x06\x2c\x2b", [0x33d9] = "\x05\x26\x50", + [0x33da] = "\x05\x26\x52", [0x33db] = "\x06\x2c\x28", + [0x33dc] = "\x06\x2c\x27", [0x33dd] = "\x06\x2c\x26", + [0x33de] = "\x05\x26\x4d", [0x33df] = "\x05\x26\x53", + [0x33e0] = "\x05\x26\x4f", [0x33e1] = "\x05\x26\x4e", + [0x33e5] = "\x0f\x27\x43", [0x33e7] = "\x0f\x27\x45", + [0x33e8] = "\x0f\x27\x46", [0x33e9] = "\x0f\x27\x47", + [0x33ea] = "\x0f\x27\x49", [0x33eb] = "\x0f\x27\x4a", + [0x33ec] = "\x0f\x27\x4b", [0x33ed] = "\x0f\x27\x4d", + [0x33ee] = "\x0f\x27\x4f", [0x33ef] = "\x0f\x27\x51", + [0x33f0] = "\x0f\x27\x54", [0x33f1] = "\x0f\x27\x55", + [0x33f2] = "\x06\x2c\x24", [0x33f3] = "\x06\x2c\x29", + [0x33f6] = "\x05\x26\x54", [0x33f8] = "\x06\x2c\x2c", + [0x33f9] = "\x0f\x27\x44", [0x33fb] = "\x06\x2c\x2d", + [0x33fd] = "\x06\x2c\x2a", [0x33fe] = "\x0f\x27\x48", + [0x3400] = "\x0f\x27\x42", [0x3401] = "\x06\x2c\x25", + [0x3403] = "\x05\x26\x55", [0x3407] = "\x06\x2d\x5c", + [0x3408] = "\x06\x31\x74", [0x3409] = "\x06\x31\x73", + [0x340a] = "\x04\x29\x6b", [0x340b] = "\x05\x29\x56", + [0x340c] = "\x06\x31\x75", [0x340d] = "\x06\x31\x76", + [0x340e] = "\x05\x29\x55", [0x340f] = "\x05\x29\x59", + [0x3410] = "\x06\x31\x77", [0x3411] = "\x05\x2e\x26", + [0x3412] = "\x05\x29\x5a", [0x3413] = "\x05\x29\x58", + [0x3417] = "\x0f\x27\x53", [0x3418] = "\x0f\x2b\x3b", + [0x3419] = "\x0f\x2b\x3c", [0x341a] = "\x0f\x2b\x3d", + [0x341b] = "\x0f\x2b\x3f", [0x341c] = "\x0f\x2b\x40", + [0x341d] = "\x0f\x2b\x41", [0x341e] = "\x0f\x2b\x42", + [0x341f] = "\x0f\x2b\x43", [0x3420] = "\x0f\x2b\x44", + [0x3421] = "\x0f\x2b\x45", [0x3422] = "\x0f\x2b\x46", + [0x3423] = "\x0f\x2b\x47", [0x3424] = "\x0f\x2b\x49", + [0x3425] = "\x0f\x2b\x4a", [0x3426] = "\x0f\x2b\x4b", + [0x3427] = "\x0f\x2b\x4c", [0x3428] = "\x0f\x2b\x4d", + [0x3429] = "\x0f\x2b\x4e", [0x342a] = "\x0f\x2b\x4f", + [0x3430] = "\x05\x29\x5b", [0x3435] = "\x06\x40\x5c", + [0x3436] = "\x06\x38\x4f", [0x3437] = "\x06\x38\x53", + [0x3438] = "\x06\x38\x4b", [0x3439] = "\x06\x38\x4d", + [0x343a] = "\x06\x38\x46", [0x343b] = "\x05\x2e\x27", + [0x343c] = "\x06\x38\x48", [0x343d] = "\x06\x38\x45", + [0x343e] = "\x06\x38\x51", [0x343f] = "\x04\x2d\x50", + [0x3440] = "\x06\x40\x5d", [0x3441] = "\x05\x29\x57", + [0x3442] = "\x05\x2e\x29", [0x3443] = "\x05\x2e\x2a", + [0x3444] = "\x06\x38\x44", [0x344f] = "\x0f\x2f\x74", + [0x3451] = "\x0f\x2f\x75", [0x3452] = "\x0f\x2f\x76", + [0x3453] = "\x0f\x2f\x78", [0x3454] = "\x0f\x2f\x79", + [0x3455] = "\x0f\x2f\x7a", [0x3456] = "\x0f\x2f\x7b", + [0x3457] = "\x0f\x2f\x7c", [0x3458] = "\x0f\x2f\x7d", + [0x3459] = "\x0f\x2f\x7e", [0x345a] = "\x0f\x30\x21", + [0x345b] = "\x0f\x30\x22", [0x345c] = "\x0f\x30\x23", + [0x345d] = "\x0f\x30\x25", [0x345e] = "\x0f\x30\x26", + [0x345f] = "\x0f\x30\x27", [0x3460] = "\x0f\x30\x29", + [0x3461] = "\x0f\x30\x2a", [0x3462] = "\x0f\x30\x2b", + [0x3463] = "\x0f\x30\x2c", [0x3464] = "\x0f\x30\x2e", + [0x3465] = "\x06\x38\x4c", [0x3468] = "\x06\x38\x47", + [0x346a] = "\x06\x38\x49", [0x346b] = "\x04\x2d\x53", + [0x346d] = "\x06\x38\x4e", [0x346e] = "\x0f\x30\x30", + [0x346f] = "\x0f\x30\x28", [0x3471] = "\x04\x2d\x5a", + [0x3472] = "\x0f\x30\x2d", [0x3478] = "\x05\x2e\x2c", + [0x3479] = "\x05\x2e\x28", [0x347d] = "\x0f\x2f\x77", + [0x347e] = "\x06\x38\x52", [0x347f] = "\x06\x40\x68", + [0x3480] = "\x06\x40\x69", [0x3481] = "\x06\x40\x5f", + [0x3482] = "\x05\x32\x77", [0x3483] = "\x05\x33\x21", + [0x3484] = "\x05\x39\x36", [0x3485] = "\x04\x32\x45", + [0x3486] = "\x04\x32\x40", [0x3487] = "\x05\x32\x7d", + [0x3488] = "\x06\x40\x67", [0x3489] = "\x06\x4a\x2e", + [0x348f] = "\x06\x40\x63", [0x3490] = "\x0f\x35\x4c", + [0x3491] = "\x0f\x35\x4d", [0x3492] = "\x0f\x35\x4f", + [0x3493] = "\x0f\x35\x50", [0x3494] = "\x0f\x35\x51", + [0x3495] = "\x0f\x35\x52", [0x3496] = "\x0f\x35\x53", + [0x3497] = "\x0f\x35\x54", [0x3498] = "\x0f\x35\x55", + [0x3499] = "\x0f\x35\x56", [0x349a] = "\x0f\x35\x58", + [0x349b] = "\x0f\x35\x59", [0x349c] = "\x0f\x35\x5a", + [0x349d] = "\x0f\x35\x5b", [0x349e] = "\x0f\x35\x5c", + [0x349f] = "\x0f\x35\x5d", [0x34a0] = "\x0f\x35\x5e", + [0x34a1] = "\x0f\x35\x5f", [0x34a2] = "\x0f\x35\x60", + [0x34a3] = "\x0f\x35\x61", [0x34a4] = "\x0f\x35\x62", + [0x34a5] = "\x0f\x35\x63", [0x34a6] = "\x0f\x35\x65", + [0x34a7] = "\x0f\x35\x66", [0x34a8] = "\x06\x40\x64", + [0x34a9] = "\x06\x40\x66", [0x34aa] = "\x06\x40\x65", + [0x34ab] = "\x04\x32\x47", [0x34ac] = "\x06\x40\x62", + [0x34ad] = "\x06\x40\x60", [0x34af] = "\x06\x40\x61", + [0x34b6] = "\x04\x32\x44", [0x34b7] = "\x05\x33\x22", + [0x34b8] = "\x05\x32\x78", [0x34b9] = "\x05\x32\x7b", + [0x34ba] = "\x05\x32\x7a", [0x34bb] = "\x05\x32\x7c", + [0x34bc] = "\x06\x40\x6a", [0x34bf] = "\x0f\x35\x4e", + [0x34c0] = "\x06\x40\x5e", [0x34c1] = "\x04\x38\x36", + [0x34c2] = "\x06\x4a\x34", [0x34c3] = "\x05\x39\x35", + [0x34c4] = "\x06\x53\x49", [0x34c5] = "\x04\x38\x2e", + [0x34c6] = "\x05\x39\x38", [0x34c7] = "\x06\x4a\x22", + [0x34c8] = "\x05\x39\x32", [0x34c9] = "\x04\x38\x2b", + [0x34ca] = "\x05\x39\x30", [0x34cb] = "\x05\x39\x34", + [0x34cc] = "\x04\x38\x31", [0x34cd] = "\x06\x4a\x2d", + [0x34ce] = "\x06\x4a\x2f", [0x34cf] = "\x05\x39\x3a", + [0x34d0] = "\x06\x4a\x24", [0x34d1] = "\x06\x4a\x21", + [0x34d2] = "\x05\x39\x37", [0x34d3] = "\x06\x4a\x33", + [0x34d4] = "\x05\x39\x3c", [0x34d5] = "\x05\x39\x3b", + [0x34d6] = "\x06\x4a\x26", [0x34d7] = "\x04\x38\x30", + [0x34d8] = "\x06\x4a\x27", [0x34d9] = "\x06\x4a\x2a", + [0x34da] = "\x06\x4a\x31", [0x34db] = "\x05\x39\x40", + [0x34dc] = "\x06\x53\x4a", [0x34dd] = "\x05\x39\x3d", + [0x34de] = "\x06\x4a\x38", [0x34df] = "\x06\x4a\x23", + [0x34e0] = "\x06\x4a\x25", [0x34e1] = "\x06\x4a\x35", + [0x34e7] = "\x04\x38\x33", [0x34e8] = "\x04\x38\x38", + [0x34e9] = "\x06\x4a\x36", [0x34ea] = "\x06\x4a\x37", + [0x34eb] = "\x0f\x3b\x64", [0x34ec] = "\x0f\x3b\x65", + [0x34ed] = "\x0f\x3b\x67", [0x34ee] = "\x0f\x3b\x68", + [0x34ef] = "\x0f\x3b\x69", [0x34f0] = "\x0f\x3b\x6b", + [0x34f1] = "\x0f\x3b\x6c", [0x34f2] = "\x0f\x3b\x6d", + [0x34f3] = "\x0f\x3b\x6f", [0x34f4] = "\x0f\x3b\x71", + [0x34f5] = "\x0f\x3b\x72", [0x34f6] = "\x0f\x3b\x74", + [0x34f7] = "\x0f\x3b\x75", [0x34f8] = "\x0f\x3b\x76", + [0x34f9] = "\x0f\x3b\x77", [0x34fa] = "\x0f\x3b\x78", + [0x34fb] = "\x0f\x3b\x79", [0x34fc] = "\x0f\x3b\x7a", + [0x34fd] = "\x0f\x3b\x7b", [0x34fe] = "\x0f\x3b\x7c", + [0x34ff] = "\x0f\x3b\x7d", [0x3500] = "\x0f\x3b\x7e", + [0x3501] = "\x0f\x3c\x22", [0x3502] = "\x0f\x3c\x23", + [0x3503] = "\x0f\x3c\x24", [0x3504] = "\x0f\x3c\x25", + [0x3505] = "\x0f\x3c\x26", [0x3506] = "\x0f\x3c\x27", + [0x3507] = "\x0f\x3c\x28", [0x3508] = "\x0f\x3c\x2a", + [0x3509] = "\x0f\x3c\x2b", [0x350a] = "\x0f\x3c\x2c", + [0x350b] = "\x0f\x3c\x2d", [0x350c] = "\x0f\x3c\x2e", + [0x350d] = "\x0f\x3c\x2f", [0x350e] = "\x06\x4a\x29", + [0x350f] = "\x06\x4a\x2b", [0x3511] = "\x06\x4a\x2c", + [0x3512] = "\x06\x4a\x32", [0x3513] = "\x05\x39\x42", + [0x3514] = "\x06\x4a\x30", [0x3515] = "\x06\x4a\x39", + [0x3516] = "\x06\x4a\x28", [0x352b] = "\x05\x39\x3e", + [0x352c] = "\x05\x39\x41", [0x352d] = "\x05\x39\x2e", + [0x352e] = "\x05\x39\x2f", [0x352f] = "\x05\x39\x31", + [0x3531] = "\x06\x53\x4e", [0x3532] = "\x06\x53\x58", + [0x3533] = "\x04\x3d\x77", [0x3534] = "\x06\x53\x56", + [0x3535] = "\x04\x3d\x74", [0x3536] = "\x06\x53\x57", + [0x3537] = "\x05\x3f\x6f", [0x3538] = "\x05\x3f\x6a", + [0x3539] = "\x05\x3f\x6e", [0x353a] = "\x05\x3f\x6b", + [0x353b] = "\x04\x3d\x6a", [0x353c] = "\x06\x53\x5b", + [0x353d] = "\x05\x3f\x73", [0x353e] = "\x06\x53\x61", + [0x353f] = "\x05\x3f\x68", [0x3540] = "\x04\x3d\x7a", + [0x3541] = "\x05\x3f\x74", [0x3542] = "\x05\x3f\x69", + [0x3543] = "\x06\x53\x55", [0x3544] = "\x05\x3f\x70", + [0x3545] = "\x05\x3f\x6d", [0x3546] = "\x06\x53\x60", + [0x3547] = "\x04\x3d\x73", [0x3548] = "\x06\x53\x59", + [0x3549] = "\x06\x53\x5a", [0x354a] = "\x06\x53\x5d", + [0x354b] = "\x06\x53\x50", [0x354c] = "\x04\x3d\x70", + [0x354d] = "\x06\x53\x5c", [0x354e] = "\x05\x3f\x6c", + [0x3550] = "\x06\x53\x63", [0x3551] = "\x06\x53\x4f", + [0x3552] = "\x06\x53\x51", [0x3553] = "\x06\x53\x4c", + [0x3559] = "\x0f\x42\x23", [0x355b] = "\x0f\x42\x24", + [0x355c] = "\x0f\x42\x25", [0x355d] = "\x0f\x42\x26", + [0x355e] = "\x0f\x42\x27", [0x355f] = "\x0f\x42\x29", + [0x3560] = "\x0f\x42\x2a", [0x3561] = "\x0f\x42\x2b", + [0x3562] = "\x0f\x42\x2c", [0x3563] = "\x0f\x42\x2d", + [0x3564] = "\x0f\x42\x2e", [0x3565] = "\x0f\x42\x30", + [0x3566] = "\x0f\x42\x31", [0x3567] = "\x0f\x42\x32", + [0x3568] = "\x0f\x42\x33", [0x3569] = "\x0f\x42\x34", + [0x356a] = "\x0f\x42\x35", [0x356b] = "\x0f\x42\x36", + [0x356c] = "\x0f\x42\x38", [0x356d] = "\x0f\x42\x39", + [0x356e] = "\x0f\x42\x3a", [0x356f] = "\x0f\x42\x3b", + [0x3570] = "\x0f\x42\x3d", [0x3571] = "\x0f\x42\x3e", + [0x3572] = "\x0f\x42\x3f", [0x3573] = "\x0f\x42\x40", + [0x3574] = "\x0f\x42\x41", [0x3575] = "\x0f\x42\x42", + [0x3576] = "\x0f\x42\x43", [0x3577] = "\x0f\x42\x44", + [0x3578] = "\x0f\x42\x45", [0x3579] = "\x0f\x42\x46", + [0x357a] = "\x0f\x42\x48", [0x357b] = "\x0f\x42\x4a", + [0x357c] = "\x0f\x42\x4c", [0x357f] = "\x06\x53\x4d", + [0x3580] = "\x06\x53\x52", [0x3581] = "\x06\x53\x54", + [0x3582] = "\x04\x3d\x79", [0x3583] = "\x06\x53\x62", + [0x3587] = "\x06\x53\x4b", [0x358a] = "\x06\x53\x5f", + [0x3590] = "\x0f\x42\x22", [0x3593] = "\x0f\x42\x2f", + [0x3595] = "\x0f\x42\x37", [0x35a3] = "\x05\x39\x3f", + [0x35a4] = "\x05\x3f\x72", [0x35a5] = "\x06\x53\x53", + [0x35a6] = "\x0f\x43\x74", [0x35a8] = "\x05\x46\x4e", + [0x35a9] = "\x0f\x42\x4b", [0x35aa] = "\x05\x46\x50", + [0x35ab] = "\x04\x43\x7b", [0x35ac] = "\x04\x43\x72", + [0x35ad] = "\x05\x46\x4d", [0x35ae] = "\x05\x46\x4f", + [0x35af] = "\x06\x5d\x69", [0x35b0] = "\x05\x46\x55", + [0x35b1] = "\x05\x46\x52", [0x35b2] = "\x07\x23\x65", + [0x35b4] = "\x06\x53\x64", [0x35b5] = "\x05\x46\x47", + [0x35b6] = "\x06\x5d\x5f", [0x35b7] = "\x05\x46\x54", + [0x35b8] = "\x05\x46\x46", [0x35b9] = "\x05\x46\x58", + [0x35ba] = "\x06\x5d\x62", [0x35bb] = "\x05\x46\x4a", + [0x35bc] = "\x05\x46\x53", [0x35bd] = "\x06\x5d\x63", + [0x35be] = "\x04\x43\x76", [0x35bf] = "\x05\x46\x48", + [0x35c1] = "\x05\x46\x49", [0x35c2] = "\x06\x5d\x65", + [0x35c3] = "\x05\x46\x4c", [0x35d0] = "\x05\x46\x51", + [0x35d4] = "\x0f\x48\x57", [0x35d5] = "\x0f\x48\x58", + [0x35d6] = "\x0f\x48\x59", [0x35d7] = "\x0f\x48\x5a", + [0x35d8] = "\x0f\x48\x5b", [0x35d9] = "\x0f\x48\x5c", + [0x35da] = "\x0f\x48\x5d", [0x35db] = "\x0f\x48\x5e", + [0x35dc] = "\x0f\x48\x5f", [0x35dd] = "\x0f\x48\x60", + [0x35de] = "\x0f\x48\x61", [0x35df] = "\x0f\x48\x62", + [0x35e0] = "\x0f\x48\x63", [0x35e1] = "\x0f\x48\x64", + [0x35e2] = "\x0f\x48\x65", [0x35e3] = "\x0f\x48\x66", + [0x35e4] = "\x0f\x48\x67", [0x35e5] = "\x0f\x48\x68", + [0x35e6] = "\x0f\x48\x69", [0x35e7] = "\x0f\x48\x6a", + [0x35e8] = "\x0f\x48\x6b", [0x35e9] = "\x0f\x48\x6c", + [0x35ea] = "\x0f\x48\x6d", [0x35eb] = "\x0f\x48\x6e", + [0x35ec] = "\x0f\x48\x6f", [0x35ed] = "\x0f\x48\x71", + [0x35ee] = "\x0f\x48\x72", [0x35ef] = "\x0f\x48\x73", + [0x35f0] = "\x0f\x48\x75", [0x35f3] = "\x03\x47\x4b", + [0x35f4] = "\x06\x5d\x6a", [0x35f5] = "\x06\x5d\x67", + [0x35f7] = "\x06\x5d\x6b", [0x35f8] = "\x06\x5d\x6c", + [0x35fa] = "\x05\x46\x56", [0x35fb] = "\x05\x46\x57", + [0x3600] = "\x0f\x48\x74", [0x3605] = "\x06\x5d\x64", + [0x3607] = "\x06\x5d\x66", [0x360b] = "\x0f\x48\x50", + [0x360d] = "\x0f\x48\x51", [0x360e] = "\x0f\x48\x53", + [0x360f] = "\x0f\x48\x54", [0x3610] = "\x06\x5d\x60", + [0x3611] = "\x06\x5d\x6d", [0x3612] = "\x06\x5d\x61", + [0x3614] = "\x0f\x48\x56", [0x3615] = "\x07\x23\x68", + [0x3616] = "\x05\x4d\x67", [0x3617] = "\x05\x4d\x5e", + [0x3618] = "\x04\x4a\x3b", [0x3619] = "\x04\x4a\x47", + [0x361a] = "\x05\x4d\x5b", [0x361b] = "\x04\x4a\x40", + [0x361c] = "\x07\x23\x71", [0x361d] = "\x07\x23\x6c", + [0x361e] = "\x07\x23\x74", [0x361f] = "\x05\x4d\x6b", + [0x3620] = "\x05\x4d\x65", [0x3621] = "\x07\x23\x70", + [0x3622] = "\x04\x4a\x46", [0x3623] = "\x05\x4d\x5f", + [0x3624] = "\x04\x4a\x3f", [0x3625] = "\x05\x4d\x64", + [0x3626] = "\x04\x4a\x43", [0x3627] = "\x04\x4a\x3e", + [0x3628] = "\x04\x4a\x35", [0x3629] = "\x07\x23\x73", + [0x362a] = "\x05\x4d\x5c", [0x362b] = "\x04\x4a\x4a", + [0x362c] = "\x05\x4d\x69", [0x362d] = "\x07\x23\x6e", + [0x362e] = "\x05\x4d\x63", [0x362f] = "\x05\x4d\x6a", + [0x3630] = "\x07\x23\x69", [0x3631] = "\x04\x4a\x41", + [0x3632] = "\x05\x4d\x5d", [0x3633] = "\x07\x23\x75", + [0x363b] = "\x04\x4a\x3c", [0x363f] = "\x04\x4a\x45", + [0x3641] = "\x04\x4a\x49", [0x3642] = "\x07\x23\x66", + [0x3643] = "\x07\x23\x6a", [0x3644] = "\x0f\x4f\x3d", + [0x3645] = "\x0f\x4f\x3e", [0x3646] = "\x0f\x4f\x3f", + [0x3647] = "\x0f\x4f\x43", [0x3648] = "\x0f\x4f\x44", + [0x3649] = "\x0f\x4f\x46", [0x364a] = "\x0f\x4f\x47", + [0x364b] = "\x0f\x4f\x48", [0x364c] = "\x0f\x4f\x49", + [0x364d] = "\x0f\x4f\x4a", [0x364e] = "\x0f\x4f\x4b", + [0x364f] = "\x0f\x4f\x4c", [0x3650] = "\x0f\x4f\x4d", + [0x3651] = "\x0f\x4f\x4e", [0x3652] = "\x0f\x4f\x4f", + [0x3653] = "\x0f\x4f\x50", [0x3654] = "\x0f\x4f\x51", + [0x3655] = "\x0f\x4f\x52", [0x3656] = "\x0f\x4f\x53", + [0x3659] = "\x0f\x4f\x40", [0x365b] = "\x07\x23\x6b", + [0x3664] = "\x05\x4d\x6c", [0x3670] = "\x05\x4d\x68", + [0x3671] = "\x05\x4d\x66", [0x3672] = "\x07\x23\x67", + [0x3673] = "\x07\x23\x6d", [0x3674] = "\x05\x4d\x60", + [0x3675] = "\x05\x4d\x5a", [0x3676] = "\x05\x4d\x62", + [0x367b] = "\x04\x50\x5b", [0x367c] = "\x05\x54\x7d", + [0x367d] = "\x07\x2e\x69", [0x367e] = "\x04\x50\x65", + [0x367f] = "\x04\x50\x58", [0x3680] = "\x05\x5b\x65", + [0x3681] = "\x07\x38\x4c", [0x3682] = "\x07\x2e\x60", + [0x3683] = "\x07\x2e\x63", [0x3684] = "\x05\x54\x7b", + [0x3685] = "\x07\x2e\x68", [0x3686] = "\x07\x2e\x72", + [0x3687] = "\x05\x54\x7a", [0x3688] = "\x07\x2e\x6f", + [0x3689] = "\x07\x2e\x62", [0x368a] = "\x04\x50\x62", + [0x368b] = "\x04\x56\x4c", [0x368c] = "\x04\x50\x57", + [0x368d] = "\x07\x2e\x5f", [0x368e] = "\x04\x50\x5f", + [0x368f] = "\x05\x54\x79", [0x3690] = "\x07\x2e\x67", + [0x3691] = "\x07\x2e\x64", [0x3692] = "\x05\x54\x71", + [0x3694] = "\x05\x54\x77", [0x3695] = "\x04\x50\x5c", + [0x3696] = "\x07\x2e\x6e", [0x3697] = "\x07\x2e\x74", + [0x3698] = "\x05\x54\x78", [0x3699] = "\x04\x50\x5d", + [0x369a] = "\x07\x2e\x66", [0x369b] = "\x07\x2e\x6b", + [0x369c] = "\x04\x50\x63", [0x369d] = "\x05\x54\x70", + [0x369e] = "\x07\x2e\x61", [0x369f] = "\x05\x61\x7b", + [0x36a0] = "\x05\x54\x75", [0x36a1] = "\x05\x54\x76", + [0x36a2] = "\x05\x54\x72", [0x36a3] = "\x04\x4a\x44", + [0x36a4] = "\x07\x2e\x73", [0x36a5] = "\x07\x2e\x6c", + [0x36a6] = "\x07\x2e\x65", [0x36a8] = "\x07\x2e\x5e", + [0x36a9] = "\x05\x54\x7c", [0x36aa] = "\x05\x54\x6f", + [0x36af] = "\x05\x54\x73", [0x36b0] = "\x0f\x54\x6f", + [0x36b1] = "\x0f\x54\x70", [0x36b2] = "\x0f\x54\x71", + [0x36b3] = "\x0f\x54\x72", [0x36b4] = "\x0f\x54\x73", + [0x36b5] = "\x0f\x54\x75", [0x36b6] = "\x0f\x54\x76", + [0x36b7] = "\x0f\x54\x77", [0x36b8] = "\x0f\x54\x78", + [0x36b9] = "\x0f\x54\x79", [0x36ba] = "\x0f\x54\x7a", + [0x36bb] = "\x0f\x54\x7c", [0x36bc] = "\x0f\x54\x7d", + [0x36bd] = "\x0f\x54\x7e", [0x36be] = "\x0f\x55\x21", + [0x36bf] = "\x0f\x55\x22", [0x36c0] = "\x0f\x55\x24", + [0x36c1] = "\x0f\x55\x25", [0x36c2] = "\x0f\x55\x26", + [0x36c3] = "\x0f\x55\x27", [0x36c4] = "\x0f\x55\x28", + [0x36c5] = "\x0f\x55\x2b", [0x36c6] = "\x0f\x55\x2c", + [0x36c7] = "\x0f\x55\x2d", [0x36c8] = "\x0f\x55\x2e", + [0x36c9] = "\x0f\x55\x2f", [0x36ca] = "\x0f\x55\x30", + [0x36cb] = "\x0f\x55\x32", [0x36cc] = "\x0f\x55\x33", + [0x36cd] = "\x0f\x55\x34", [0x36ce] = "\x0f\x55\x35", + [0x36cf] = "\x0f\x55\x36", [0x36d0] = "\x0f\x55\x37", + [0x36d1] = "\x0f\x55\x38", [0x36d6] = "\x07\x2e\x70", + [0x36d8] = "\x07\x2e\x71", [0x36da] = "\x04\x50\x61", + [0x36df] = "\x0f\x55\x23", [0x36eb] = "\x05\x54\x74", + [0x36ec] = "\x0f\x48\x70", [0x36ee] = "\x0f\x4f\x41", + [0x36f0] = "\x07\x2e\x6d", [0x36f1] = "\x04\x56\x43", + [0x36f2] = "\x07\x38\x50", [0x36f3] = "\x07\x38\x4e", + [0x36f4] = "\x04\x56\x47", [0x36f5] = "\x07\x38\x52", + [0x36f6] = "\x07\x38\x56", [0x36f7] = "\x05\x5b\x6a", + [0x36f8] = "\x05\x5b\x6b", [0x36f9] = "\x04\x56\x4a", + [0x36fa] = "\x04\x56\x46", [0x36fb] = "\x05\x5b\x6e", + [0x36fc] = "\x07\x38\x53", [0x36fd] = "\x05\x5b\x6c", + [0x36ff] = "\x07\x38\x51", [0x3700] = "\x07\x38\x57", + [0x3701] = "\x05\x61\x7c", [0x3702] = "\x05\x5b\x67", + [0x3703] = "\x04\x56\x4d", [0x3704] = "\x04\x56\x44", + [0x3705] = "\x07\x38\x59", [0x3706] = "\x04\x56\x42", + [0x3707] = "\x05\x5b\x69", [0x3708] = "\x07\x38\x5b", + [0x370d] = "\x05\x5b\x66", [0x370e] = "\x07\x38\x54", + [0x370f] = "\x0f\x5a\x40", [0x3710] = "\x0f\x5a\x41", + [0x3711] = "\x0f\x5a\x43", [0x3712] = "\x0f\x5a\x44", + [0x3713] = "\x0f\x5a\x45", [0x3714] = "\x0f\x5a\x46", + [0x3715] = "\x0f\x5a\x47", [0x3716] = "\x0f\x5a\x48", + [0x3717] = "\x0f\x5a\x49", [0x3718] = "\x0f\x5a\x4a", + [0x3719] = "\x0f\x5a\x4b", [0x371a] = "\x0f\x5a\x4c", + [0x371b] = "\x0f\x5a\x4e", [0x371c] = "\x0f\x5a\x4f", + [0x371d] = "\x0f\x5a\x51", [0x371e] = "\x0f\x5a\x52", + [0x371f] = "\x0f\x5a\x54", [0x3723] = "\x07\x38\x58", + [0x3724] = "\x05\x5b\x6d", [0x3725] = "\x07\x38\x5a", + [0x3726] = "\x07\x38\x4d", [0x3727] = "\x07\x38\x4f", + [0x3728] = "\x07\x37\x27", [0x372c] = "\x0f\x5a\x53", + [0x372f] = "\x0f\x5a\x4d", [0x3739] = "\x05\x5b\x6f", + [0x373a] = "\x05\x5b\x70", [0x373c] = "\x0f\x55\x31", + [0x373f] = "\x0f\x5a\x50", [0x3741] = "\x04\x5b\x47", + [0x3742] = "\x05\x61\x78", [0x3743] = "\x07\x40\x27", + [0x3744] = "\x07\x40\x23", [0x3745] = "\x04\x5b\x42", + [0x3746] = "\x07\x40\x2b", [0x3747] = "\x05\x62\x24", + [0x3748] = "\x05\x61\x7d", [0x3749] = "\x05\x62\x26", + [0x374a] = "\x07\x40\x29", [0x374b] = "\x04\x5b\x45", + [0x374c] = "\x05\x61\x7a", [0x374d] = "\x05\x62\x22", + [0x374e] = "\x05\x62\x27", [0x374f] = "\x05\x61\x7e", + [0x3750] = "\x07\x38\x5c", [0x3751] = "\x05\x62\x2b", + [0x3752] = "\x05\x61\x79", [0x3753] = "\x04\x5b\x43", + [0x3754] = "\x04\x5b\x4c", [0x3755] = "\x04\x5b\x46", + [0x3756] = "\x07\x40\x2d", [0x3757] = "\x07\x40\x28", + [0x3758] = "\x05\x62\x23", [0x3759] = "\x07\x47\x46", + [0x375a] = "\x05\x62\x29", [0x375b] = "\x07\x40\x26", + [0x375c] = "\x04\x5b\x4b", [0x375d] = "\x05\x62\x28", + [0x375e] = "\x05\x62\x25", [0x3765] = "\x05\x61\x76", + [0x3767] = "\x07\x3f\x7c", [0x3768] = "\x07\x3f\x7d", + [0x3769] = "\x0f\x5e\x7e", [0x376a] = "\x0f\x5f\x22", + [0x376b] = "\x0f\x5f\x23", [0x376c] = "\x0f\x5f\x24", + [0x376d] = "\x0f\x5f\x25", [0x376e] = "\x0f\x5f\x26", + [0x376f] = "\x0f\x5f\x27", [0x3770] = "\x0f\x5f\x28", + [0x3771] = "\x0f\x5f\x2a", [0x3772] = "\x0f\x5f\x2b", + [0x3773] = "\x0f\x5f\x2c", [0x3774] = "\x0f\x5f\x2e", + [0x3775] = "\x0f\x5f\x2f", [0x3776] = "\x0f\x5f\x30", + [0x3777] = "\x07\x40\x21", [0x3779] = "\x07\x40\x25", + [0x377b] = "\x07\x40\x2c", [0x377c] = "\x07\x40\x2a", + [0x377e] = "\x05\x62\x21", [0x3781] = "\x0f\x5f\x21", + [0x3786] = "\x05\x62\x2a", [0x3787] = "\x05\x61\x77", + [0x3789] = "\x07\x40\x22", [0x378b] = "\x07\x40\x24", + [0x378c] = "\x0f\x5f\x2d", [0x3790] = "\x05\x68\x25", + [0x3791] = "\x07\x47\x43", [0x3792] = "\x05\x68\x28", + [0x3793] = "\x05\x68\x2b", [0x3794] = "\x05\x68\x29", + [0x3795] = "\x07\x47\x42", [0x3796] = "\x07\x47\x40", + [0x3797] = "\x05\x68\x2d", [0x3798] = "\x07\x47\x41", + [0x3799] = "\x04\x5f\x74", [0x379a] = "\x07\x47\x48", + [0x379b] = "\x07\x47\x49", [0x379c] = "\x05\x68\x27", + [0x379d] = "\x05\x68\x26", [0x379e] = "\x07\x47\x45", + [0x379f] = "\x05\x68\x2f", [0x37a3] = "\x07\x47\x47", + [0x37a4] = "\x07\x3f\x7e", [0x37a5] = "\x0f\x62\x52", + [0x37a6] = "\x0f\x62\x56", [0x37a7] = "\x0f\x62\x58", + [0x37a8] = "\x0f\x62\x59", [0x37a9] = "\x0f\x62\x5a", + [0x37aa] = "\x0f\x62\x5b", [0x37ab] = "\x0f\x62\x5c", + [0x37ac] = "\x0f\x62\x5d", [0x37ad] = "\x0f\x62\x5f", + [0x37ae] = "\x0f\x62\x60", [0x37af] = "\x0f\x62\x61", + [0x37b0] = "\x05\x68\x2e", [0x37b2] = "\x07\x47\x44", + [0x37b5] = "\x07\x47\x3f", [0x37b6] = "\x0f\x62\x54", + [0x37b7] = "\x05\x68\x2c", [0x37bb] = "\x0f\x62\x57", + [0x37bc] = "\x0f\x62\x4f", [0x37bf] = "\x0f\x62\x5e", + [0x37c2] = "\x0f\x5e\x7d", [0x37c4] = "\x04\x63\x53", + [0x37c5] = "\x07\x4d\x7c", [0x37c6] = "\x05\x6c\x3f", + [0x37c7] = "\x07\x4d\x7e", [0x37c8] = "\x05\x6c\x42", + [0x37c9] = "\x05\x68\x30", [0x37ca] = "\x05\x6c\x3a", + [0x37cb] = "\x05\x6c\x39", [0x37cc] = "\x05\x6c\x3d", + [0x37cd] = "\x07\x4d\x7d", [0x37ce] = "\x05\x6c\x3c", + [0x37cf] = "\x05\x6c\x41", [0x37d0] = "\x05\x6c\x3b", + [0x37d1] = "\x05\x68\x2a", [0x37d2] = "\x05\x6c\x40", + [0x37d8] = "\x05\x6c\x3e", [0x37d9] = "\x0f\x65\x33", + [0x37da] = "\x0f\x65\x34", [0x37db] = "\x0f\x65\x35", + [0x37dc] = "\x0f\x65\x36", [0x37dd] = "\x0f\x65\x37", + [0x37de] = "\x0f\x65\x39", [0x37df] = "\x0f\x65\x3a", + [0x37e0] = "\x0f\x65\x3b", [0x37e1] = "\x0f\x65\x3c", + [0x37e2] = "\x0f\x65\x3d", [0x37e3] = "\x0f\x65\x3f", + [0x37e8] = "\x07\x4e\x21", [0x37ec] = "\x04\x63\x52", + [0x37ef] = "\x07\x53\x49", [0x37f0] = "\x07\x53\x48", + [0x37f2] = "\x05\x70\x2b", [0x37f3] = "\x05\x70\x2d", + [0x37f4] = "\x04\x66\x46", [0x37f5] = "\x05\x70\x29", + [0x37f6] = "\x07\x53\x4d", [0x37f8] = "\x05\x70\x28", + [0x37f9] = "\x05\x70\x2a", [0x37fa] = "\x05\x70\x2c", + [0x37fb] = "\x07\x53\x4a", [0x37fc] = "\x04\x66\x45", + [0x37fd] = "\x05\x70\x2f", [0x37fe] = "\x07\x53\x4e", + [0x3801] = "\x05\x70\x32", [0x3802] = "\x0f\x67\x5b", + [0x3803] = "\x0f\x67\x5c", [0x3804] = "\x0f\x67\x5d", + [0x3805] = "\x0f\x67\x5e", [0x3806] = "\x0f\x67\x5f", + [0x3807] = "\x0f\x67\x60", [0x3808] = "\x0f\x67\x61", + [0x3809] = "\x0f\x67\x62", [0x380a] = "\x0f\x67\x63", + [0x380b] = "\x0f\x67\x64", [0x380c] = "\x07\x53\x4c", + [0x380e] = "\x05\x70\x31", [0x380f] = "\x05\x70\x30", + [0x3810] = "\x07\x53\x4b", [0x3814] = "\x05\x70\x2e", + [0x3819] = "\x07\x58\x26", [0x381a] = "\x05\x73\x4e", + [0x381b] = "\x05\x73\x4f", [0x381c] = "\x05\x73\x4c", + [0x381d] = "\x05\x73\x4a", [0x381e] = "\x04\x68\x6f", + [0x381f] = "\x05\x73\x4b", [0x3820] = "\x05\x73\x4d", + [0x3821] = "\x07\x58\x25", [0x3825] = "\x0f\x69\x47", + [0x3826] = "\x0f\x69\x48", [0x3827] = "\x0f\x69\x49", + [0x3828] = "\x0f\x69\x4b", [0x3829] = "\x0f\x69\x4e", + [0x382a] = "\x0f\x69\x4f", [0x382b] = "\x0f\x69\x50", + [0x382c] = "\x0f\x69\x51", [0x382d] = "\x07\x58\x24", + [0x382e] = "\x07\x58\x22", [0x3835] = "\x0f\x67\x65", + [0x3837] = "\x05\x75\x71", [0x3838] = "\x05\x75\x73", + [0x3839] = "\x05\x77\x60", [0x383a] = "\x05\x75\x74", + [0x383b] = "\x07\x5b\x60", [0x383c] = "\x05\x75\x72", + [0x383d] = "\x07\x5b\x61", [0x383e] = "\x05\x75\x75", + [0x383f] = "\x07\x5b\x5f", [0x3840] = "\x05\x77\x61", + [0x3843] = "\x07\x5b\x5d", [0x3844] = "\x0f\x6a\x57", + [0x3845] = "\x0f\x6a\x59", [0x3846] = "\x07\x5b\x5e", + [0x3849] = "\x05\x75\x76", [0x384a] = "\x05\x75\x70", + [0x384c] = "\x04\x6b\x6c", [0x384d] = "\x07\x5e\x6e", + [0x384e] = "\x05\x77\x62", [0x384f] = "\x07\x60\x71", + [0x3850] = "\x0f\x6b\x4e", [0x3851] = "\x0f\x6b\x4f", + [0x3852] = "\x0f\x6b\x50", [0x3853] = "\x0f\x6b\x53", + [0x3854] = "\x0f\x6b\x54", [0x3858] = "\x07\x5e\x6f", + [0x385b] = "\x07\x5e\x70", [0x385c] = "\x0f\x6a\x58", + [0x385e] = "\x07\x60\x72", [0x3860] = "\x05\x79\x2d", + [0x3862] = "\x0f\x6c\x2c", [0x3863] = "\x07\x60\x73", + [0x3865] = "\x05\x79\x2c", [0x3867] = "\x05\x79\x2e", + [0x3868] = "\x0f\x6b\x52", [0x3869] = "\x05\x7a\x29", + [0x386a] = "\x07\x63\x54", [0x386b] = "\x07\x60\x74", + [0x386d] = "\x04\x6d\x55", [0x386e] = "\x0f\x6c\x2d", + [0x3871] = "\x0f\x6c\x4c", [0x3872] = "\x0f\x6c\x63", + [0x3873] = "\x07\x63\x4c", [0x3874] = "\x07\x63\x55", + [0x3876] = "\x05\x7b\x40", [0x3877] = "\x07\x64\x48", + [0x3878] = "\x07\x64\x49", [0x387a] = "\x07\x65\x5b", + [0x387b] = "\x0f\x6d\x2f", [0x387c] = "\x07\x65\x74", + [0x3880] = "\x06\x25\x24", [0x3881] = "\x04\x24\x4b", + [0x3882] = "\x06\x28\x2f", [0x3883] = "\x06\x2c\x2e", + [0x3884] = "\x06\x28\x32", [0x3885] = "\x05\x24\x47", + [0x3886] = "\x06\x28\x31", [0x3887] = "\x04\x24\x4a", + [0x3889] = "\x05\x26\x5c", [0x388a] = "\x05\x26\x5b", + [0x388b] = "\x05\x26\x58", [0x388c] = "\x06\x2c\x2f", + [0x388d] = "\x04\x26\x6f", [0x388e] = "\x06\x2c\x30", + [0x388f] = "\x05\x26\x5d", [0x3890] = "\x04\x26\x6e", + [0x3891] = "\x05\x26\x59", [0x3892] = "\x05\x26\x5a", + [0x3893] = "\x05\x26\x57", [0x3894] = "\x0f\x27\x56", + [0x3897] = "\x05\x29\x5f", [0x3898] = "\x06\x31\x7a", + [0x3899] = "\x06\x38\x54", [0x389a] = "\x06\x31\x7c", + [0x389b] = "\x05\x29\x62", [0x389c] = "\x04\x29\x75", + [0x389d] = "\x05\x29\x61", [0x389e] = "\x05\x29\x5e", + [0x389f] = "\x06\x31\x79", [0x38a0] = "\x05\x29\x5c", + [0x38a1] = "\x05\x29\x60", [0x38a2] = "\x06\x31\x7b", + [0x38a3] = "\x05\x29\x5d", [0x38a6] = "\x0f\x2c\x77", + [0x38a7] = "\x06\x38\x57", [0x38a8] = "\x06\x38\x58", + [0x38a9] = "\x06\x38\x55", [0x38aa] = "\x05\x2e\x33", + [0x38ac] = "\x05\x2e\x2d", [0x38ad] = "\x06\x38\x56", + [0x38ae] = "\x06\x40\x6b", [0x38af] = "\x05\x2e\x32", + [0x38b0] = "\x04\x2d\x5f", [0x38b1] = "\x05\x2e\x2f", + [0x38b2] = "\x05\x2e\x34", [0x38b3] = "\x05\x2e\x31", + [0x38b4] = "\x05\x2e\x30", [0x38b5] = "\x0f\x30\x31", + [0x38ba] = "\x05\x33\x25", [0x38bb] = "\x06\x40\x6c", + [0x38bd] = "\x06\x40\x6d", [0x38bf] = "\x0f\x35\x67", + [0x38c0] = "\x0f\x35\x68", [0x38c1] = "\x0f\x35\x69", + [0x38c2] = "\x0f\x35\x6a", [0x38c3] = "\x0f\x35\x6b", + [0x38c4] = "\x0f\x35\x6c", [0x38c5] = "\x0f\x35\x6d", + [0x38c6] = "\x0f\x35\x6e", [0x38c8] = "\x04\x38\x3d", + [0x38c9] = "\x05\x39\x47", [0x38ca] = "\x05\x3f\x77", + [0x38cb] = "\x04\x38\x3a", [0x38cc] = "\x05\x39\x45", + [0x38cd] = "\x06\x4a\x3c", [0x38ce] = "\x05\x33\x24", + [0x38cf] = "\x05\x39\x48", [0x38d0] = "\x06\x4a\x3d", + [0x38d1] = "\x05\x39\x44", [0x38d2] = "\x05\x39\x49", + [0x38d3] = "\x06\x4a\x3e", [0x38d5] = "\x05\x39\x46", + [0x38d6] = "\x06\x4a\x3b", [0x38d7] = "\x0f\x3c\x30", + [0x38d8] = "\x0f\x3c\x31", [0x38d9] = "\x06\x4a\x3a", + [0x38dd] = "\x06\x53\x6e", [0x38de] = "\x05\x3f\x76", + [0x38df] = "\x05\x3f\x75", [0x38e0] = "\x05\x3f\x7a", + [0x38e1] = "\x06\x53\x6b", [0x38e2] = "\x05\x3f\x79", + [0x38e3] = "\x06\x53\x67", [0x38e4] = "\x06\x53\x66", + [0x38e5] = "\x06\x53\x68", [0x38e6] = "\x06\x53\x69", + [0x38e7] = "\x06\x53\x6a", [0x38e8] = "\x06\x53\x6d", + [0x38e9] = "\x05\x3f\x78", [0x38eb] = "\x0f\x42\x4e", + [0x38ec] = "\x06\x58\x5a", [0x38ef] = "\x06\x53\x6c", + [0x38f0] = "\x06\x53\x65", [0x38f1] = "\x0f\x42\x4d", + [0x38f2] = "\x05\x46\x5c", [0x38f3] = "\x04\x44\x2b", + [0x38f4] = "\x05\x46\x5e", [0x38f5] = "\x06\x5d\x6f", + [0x38f6] = "\x06\x5d\x6e", [0x38f7] = "\x04\x44\x2c", + [0x38f8] = "\x05\x46\x5d", [0x38f9] = "\x04\x44\x29", + [0x38fa] = "\x06\x5d\x75", [0x38fb] = "\x06\x5d\x70", + [0x38fc] = "\x05\x46\x5a", [0x38fd] = "\x06\x5d\x76", + [0x38fe] = "\x06\x5d\x74", [0x38ff] = "\x05\x46\x5b", + [0x3900] = "\x06\x5d\x72", [0x3901] = "\x06\x5d\x71", + [0x3902] = "\x06\x5d\x73", [0x3903] = "\x06\x53\x6f", + [0x3904] = "\x0f\x48\x76", [0x3905] = "\x0f\x48\x78", + [0x3907] = "\x05\x46\x59", [0x3908] = "\x05\x4d\x6e", + [0x3909] = "\x07\x23\x7d", [0x390a] = "\x05\x4d\x70", + [0x390b] = "\x05\x4d\x71", [0x390c] = "\x04\x4a\x4d", + [0x390d] = "\x07\x23\x79", [0x390e] = "\x07\x23\x77", + [0x390f] = "\x07\x23\x7e", [0x3910] = "\x07\x23\x76", + [0x3911] = "\x07\x23\x7a", [0x3912] = "\x07\x23\x7b", + [0x3914] = "\x05\x4d\x6f", [0x3915] = "\x0f\x4f\x54", + [0x3917] = "\x07\x23\x7c", [0x3918] = "\x05\x54\x7e", + [0x3919] = "\x07\x2e\x76", [0x391a] = "\x04\x50\x68", + [0x391c] = "\x07\x2e\x75", [0x391d] = "\x0f\x55\x3a", + [0x391e] = "\x0f\x55\x3b", [0x3920] = "\x07\x38\x5e", + [0x3921] = "\x07\x38\x60", [0x3922] = "\x05\x5b\x71", + [0x3923] = "\x07\x38\x5f", [0x3924] = "\x0f\x5a\x55", + [0x3925] = "\x07\x38\x5d", [0x3929] = "\x05\x62\x2c", + [0x392c] = "\x05\x68\x32", [0x392d] = "\x05\x68\x31", + [0x392e] = "\x0f\x62\x62", [0x3931] = "\x05\x70\x36", + [0x3932] = "\x07\x4e\x23", [0x3934] = "\x05\x70\x35", + [0x3935] = "\x05\x70\x34", [0x3936] = "\x04\x68\x70", + [0x3937] = "\x05\x70\x33", [0x3939] = "\x05\x73\x50", + [0x393a] = "\x07\x58\x29", [0x393b] = "\x07\x58\x27", + [0x393c] = "\x07\x58\x28", [0x393e] = "\x05\x77\x63", + [0x393f] = "\x07\x60\x75", [0x3940] = "\x04\x6c\x70", + [0x3941] = "\x04\x6d\x56", [0x3942] = "\x05\x21\x32", + [0x3943] = "\x05\x21\x70", [0x3944] = "\x06\x23\x2e", + [0x3945] = "\x06\x25\x26", [0x3947] = "\x05\x24\x4a", + [0x3948] = "\x06\x28\x34", [0x3949] = "\x06\x2c\x31", + [0x394a] = "\x05\x24\x49", [0x394b] = "\x05\x24\x4b", + [0x394c] = "\x06\x28\x33", [0x394d] = "\x06\x2c\x3c", + [0x394e] = "\x06\x2c\x34", [0x394f] = "\x06\x2c\x3b", + [0x3950] = "\x06\x2c\x3a", [0x3951] = "\x06\x2c\x36", + [0x3952] = "\x06\x2c\x33", [0x3953] = "\x06\x2c\x38", + [0x3954] = "\x06\x2c\x32", [0x3955] = "\x06\x2c\x37", + [0x3956] = "\x05\x26\x5e", [0x3957] = "\x06\x2c\x39", + [0x3958] = "\x06\x2c\x35", [0x3959] = "\x05\x26\x5f", + [0x395b] = "\x0f\x27\x57", [0x395c] = "\x0f\x27\x58", + [0x395d] = "\x0f\x27\x59", [0x3960] = "\x04\x26\x72", + [0x3962] = "\x04\x29\x76", [0x3963] = "\x05\x29\x63", + [0x3965] = "\x05\x28\x35", [0x3966] = "\x06\x38\x59", + [0x3967] = "\x06\x38\x5c", [0x3968] = "\x05\x2e\x35", + [0x3969] = "\x06\x38\x5a", [0x396a] = "\x06\x38\x5e", + [0x396b] = "\x06\x38\x5d", [0x396d] = "\x06\x38\x5b", + [0x3972] = "\x06\x37\x48", [0x3973] = "\x05\x33\x26", + [0x3974] = "\x06\x40\x70", [0x3975] = "\x0f\x35\x6f", + [0x3978] = "\x06\x40\x6f", [0x3979] = "\x04\x38\x40", + [0x397a] = "\x04\x38\x3e", [0x397b] = "\x05\x39\x4a", + [0x397c] = "\x05\x39\x4b", [0x397d] = "\x06\x4a\x43", + [0x397e] = "\x04\x38\x41", [0x397f] = "\x06\x4a\x42", + [0x3981] = "\x06\x4a\x44", [0x3982] = "\x06\x4a\x40", + [0x3983] = "\x06\x4a\x45", [0x3984] = "\x06\x4a\x46", + [0x3985] = "\x06\x4a\x41", [0x3987] = "\x05\x3f\x7c", + [0x3988] = "\x06\x53\x70", [0x3989] = "\x05\x3f\x7b", + [0x398a] = "\x0f\x42\x4f", [0x398b] = "\x06\x5a\x61", + [0x3994] = "\x07\x24\x22", [0x3995] = "\x07\x24\x25", + [0x3996] = "\x07\x24\x23", [0x3997] = "\x07\x24\x26", + [0x3998] = "\x07\x24\x21", [0x3999] = "\x07\x24\x24", + [0x399a] = "\x0f\x4f\x55", [0x399c] = "\x07\x2e\x7a", + [0x399d] = "\x07\x2e\x79", [0x399e] = "\x07\x2e\x77", + [0x399f] = "\x07\x2e\x78", [0x39a1] = "\x07\x38\x61", + [0x39a2] = "\x04\x56\x50", [0x39a4] = "\x0f\x5a\x56", + [0x39a5] = "\x0f\x5a\x57", [0x39a6] = "\x05\x62\x2d", + [0x39a7] = "\x05\x62\x2e", [0x39a8] = "\x07\x40\x2e", + [0x39af] = "\x05\x73\x51", [0x39b1] = "\x07\x5b\x62", + [0x39b2] = "\x07\x5b\x63", [0x39b5] = "\x05\x21\x71", + [0x39b6] = "\x05\x21\x49", [0x39b7] = "\x05\x22\x76", + [0x39b8] = "\x06\x28\x35", [0x39b9] = "\x04\x22\x7d", + [0x39ba] = "\x06\x25\x27", [0x39bb] = "\x05\x24\x4c", + [0x39bc] = "\x04\x24\x4d", [0x39bd] = "\x06\x25\x28", + [0x39bf] = "\x06\x28\x36", [0x39c0] = "\x06\x28\x3b", + [0x39c1] = "\x06\x28\x37", [0x39c2] = "\x04\x24\x4c", + [0x39c3] = "\x06\x28\x3c", [0x39c4] = "\x05\x24\x4d", + [0x39c5] = "\x06\x28\x39", [0x39c6] = "\x06\x28\x38", + [0x39c7] = "\x06\x28\x3a", [0x39c9] = "\x06\x2c\x3f", + [0x39ca] = "\x05\x26\x60", [0x39cb] = "\x05\x26\x66", + [0x39cc] = "\x05\x26\x61", [0x39cd] = "\x05\x26\x64", + [0x39ce] = "\x04\x26\x73", [0x39cf] = "\x04\x26\x74", + [0x39d0] = "\x05\x26\x63", [0x39d1] = "\x04\x26\x77", + [0x39d2] = "\x06\x2c\x3d", [0x39d3] = "\x06\x2c\x3e", + [0x39d4] = "\x06\x2c\x40", [0x39d5] = "\x06\x31\x7d", + [0x39d6] = "\x05\x26\x65", [0x39dd] = "\x05\x29\x68", + [0x39de] = "\x04\x29\x78", [0x39df] = "\x04\x29\x79", + [0x39e0] = "\x06\x32\x26", [0x39e1] = "\x04\x29\x77", + [0x39e2] = "\x06\x31\x7e", [0x39e3] = "\x05\x29\x64", + [0x39e4] = "\x05\x29\x65", [0x39e5] = "\x05\x29\x6b", + [0x39e6] = "\x05\x29\x66", [0x39e7] = "\x05\x29\x67", + [0x39e8] = "\x06\x32\x25", [0x39e9] = "\x04\x29\x7a", + [0x39ea] = "\x06\x32\x22", [0x39eb] = "\x06\x32\x23", + [0x39ec] = "\x05\x29\x6a", [0x39ed] = "\x06\x32\x24", + [0x39ee] = "\x06\x38\x5f", [0x39ef] = "\x0f\x2b\x50", + [0x39f0] = "\x06\x32\x21", [0x39f1] = "\x05\x29\x6c", + [0x39f2] = "\x05\x2e\x36", [0x39f3] = "\x04\x2d\x63", + [0x39f4] = "\x06\x38\x62", [0x39f5] = "\x05\x2e\x3b", + [0x39f6] = "\x06\x38\x65", [0x39f7] = "\x05\x2e\x3c", + [0x39f8] = "\x05\x2e\x38", [0x39f9] = "\x05\x2e\x39", + [0x39fb] = "\x06\x38\x63", [0x39fc] = "\x06\x38\x66", + [0x39fd] = "\x05\x2e\x3d", [0x39fe] = "\x05\x2e\x37", + [0x39ff] = "\x05\x2e\x3a", [0x3a00] = "\x05\x2e\x3e", + [0x3a01] = "\x06\x38\x60", [0x3a03] = "\x06\x38\x61", + [0x3a05] = "\x05\x33\x2b", [0x3a06] = "\x06\x40\x74", + [0x3a07] = "\x05\x33\x2a", [0x3a08] = "\x06\x40\x73", + [0x3a09] = "\x05\x33\x27", [0x3a0a] = "\x05\x33\x28", + [0x3a0b] = "\x05\x33\x29", [0x3a0c] = "\x06\x40\x71", + [0x3a0d] = "\x04\x32\x4b", [0x3a0e] = "\x05\x33\x2c", + [0x3a0f] = "\x06\x4a\x49", [0x3a10] = "\x06\x40\x75", + [0x3a11] = "\x06\x40\x72", [0x3a12] = "\x0f\x35\x71", + [0x3a16] = "\x06\x53\x72", [0x3a17] = "\x06\x4a\x4a", + [0x3a18] = "\x05\x39\x53", [0x3a19] = "\x04\x38\x48", + [0x3a1a] = "\x06\x4a\x4b", [0x3a1b] = "\x04\x38\x43", + [0x3a1c] = "\x05\x39\x4e", [0x3a1d] = "\x05\x39\x4d", + [0x3a1e] = "\x05\x39\x4f", [0x3a1f] = "\x04\x38\x47", + [0x3a20] = "\x05\x39\x52", [0x3a21] = "\x05\x39\x54", + [0x3a22] = "\x05\x39\x50", [0x3a23] = "\x05\x39\x4c", + [0x3a24] = "\x05\x39\x51", [0x3a25] = "\x06\x4a\x4c", + [0x3a26] = "\x06\x53\x71", [0x3a28] = "\x06\x4a\x48", + [0x3a29] = "\x0f\x3c\x32", [0x3a2f] = "\x06\x53\x74", + [0x3a31] = "\x06\x53\x79", [0x3a32] = "\x05\x3f\x7d", + [0x3a33] = "\x05\x3f\x7e", [0x3a34] = "\x06\x53\x76", + [0x3a35] = "\x06\x53\x78", [0x3a36] = "\x04\x3e\x25", + [0x3a37] = "\x06\x5d\x78", [0x3a38] = "\x06\x53\x7a", + [0x3a39] = "\x06\x53\x75", [0x3a3b] = "\x06\x53\x73", + [0x3a3d] = "\x0f\x42\x50", [0x3a43] = "\x0f\x35\x70", + [0x3a44] = "\x04\x44\x34", [0x3a45] = "\x04\x44\x2e", + [0x3a46] = "\x06\x5d\x7b", [0x3a47] = "\x06\x5d\x7c", + [0x3a48] = "\x04\x44\x2f", [0x3a49] = "\x06\x5d\x79", + [0x3a4b] = "\x06\x5d\x7a", [0x3a4c] = "\x06\x5d\x2d", + [0x3a4d] = "\x07\x24\x29", [0x3a4e] = "\x04\x4a\x51", + [0x3a4f] = "\x05\x4d\x72", [0x3a50] = "\x07\x24\x27", + [0x3a51] = "\x05\x4d\x75", [0x3a52] = "\x07\x24\x28", + [0x3a53] = "\x07\x24\x2b", [0x3a54] = "\x05\x4d\x74", + [0x3a55] = "\x04\x50\x69", [0x3a56] = "\x07\x24\x2c", + [0x3a57] = "\x07\x24\x2a", [0x3a58] = "\x0f\x4f\x56", + [0x3a59] = "\x05\x4d\x73", [0x3a5d] = "\x07\x2e\x7b", + [0x3a5e] = "\x07\x2e\x7c", [0x3a5f] = "\x05\x55\x21", + [0x3a60] = "\x04\x50\x6c", [0x3a61] = "\x05\x55\x23", + [0x3a62] = "\x05\x55\x22", [0x3a63] = "\x07\x2e\x7e", + [0x3a64] = "\x0f\x55\x3c", [0x3a65] = "\x0f\x55\x3d", + [0x3a68] = "\x07\x38\x64", [0x3a69] = "\x07\x38\x62", + [0x3a6a] = "\x05\x5b\x73", [0x3a6b] = "\x07\x38\x65", + [0x3a6c] = "\x07\x38\x63", [0x3a6d] = "\x05\x5b\x74", + [0x3a6f] = "\x05\x62\x30", [0x3a70] = "\x05\x62\x2f", + [0x3a71] = "\x04\x5b\x4d", [0x3a72] = "\x07\x40\x30", + [0x3a73] = "\x07\x2e\x7d", [0x3a74] = "\x05\x5b\x75", + [0x3a76] = "\x07\x40\x2f", [0x3a77] = "\x05\x68\x33", + [0x3a7a] = "\x05\x70\x37", [0x3a7b] = "\x05\x70\x38", + [0x3a7c] = "\x07\x53\x4f", [0x3a7e] = "\x07\x58\x2a", + [0x3a7f] = "\x05\x75\x7a", [0x3a80] = "\x05\x75\x79", + [0x3a82] = "\x05\x26\x68", [0x3a83] = "\x05\x26\x67", + [0x3a85] = "\x06\x32\x27", [0x3a86] = "\x06\x32\x28", + [0x3a88] = "\x05\x2e\x3f", [0x3a8b] = "\x04\x32\x4c", + [0x3a8c] = "\x04\x32\x4d", [0x3a8d] = "\x06\x40\x78", + [0x3a8e] = "\x06\x40\x79", [0x3a8f] = "\x06\x40\x76", + [0x3a90] = "\x06\x40\x77", [0x3a91] = "\x0f\x35\x73", + [0x3a92] = "\x0f\x35\x75", [0x3a93] = "\x0f\x35\x76", + [0x3a94] = "\x0f\x35\x77", [0x3a95] = "\x06\x40\x7b", + [0x3a96] = "\x06\x40\x7a", [0x3a97] = "\x05\x33\x2d", + [0x3a99] = "\x06\x4a\x4f", [0x3a9b] = "\x06\x4a\x4e", + [0x3a9c] = "\x0f\x3c\x33", [0x3a9f] = "\x0f\x35\x72", + [0x3aa0] = "\x06\x54\x21", [0x3aa1] = "\x06\x54\x22", + [0x3aa3] = "\x06\x53\x7d", [0x3aa4] = "\x06\x53\x7e", + [0x3aa5] = "\x06\x54\x24", [0x3aa6] = "\x0f\x42\x51", + [0x3aa7] = "\x0f\x42\x52", [0x3aa9] = "\x06\x54\x23", + [0x3aaa] = "\x06\x53\x7c", [0x3aac] = "\x05\x40\x21", + [0x3aad] = "\x05\x40\x7b", [0x3aae] = "\x05\x46\x61", + [0x3aaf] = "\x04\x44\x36", [0x3ab0] = "\x06\x5e\x21", + [0x3ab1] = "\x04\x44\x37", [0x3ab2] = "\x06\x5d\x7e", + [0x3ab3] = "\x06\x5d\x7d", [0x3ab5] = "\x0f\x48\x7a", + [0x3ab6] = "\x05\x4d\x76", [0x3ab7] = "\x06\x5e\x22", + [0x3ab8] = "\x07\x24\x2d", [0x3ab9] = "\x04\x4a\x52", + [0x3abb] = "\x07\x2f\x25", [0x3abc] = "\x07\x2f\x23", + [0x3abd] = "\x07\x2f\x26", [0x3abe] = "\x07\x2f\x21", + [0x3abf] = "\x07\x2f\x24", [0x3ac0] = "\x05\x55\x24", + [0x3ac1] = "\x07\x2f\x22", [0x3ac5] = "\x0f\x55\x3e", + [0x3ac6] = "\x0f\x55\x3f", [0x3ac7] = "\x0f\x55\x40", + [0x3acc] = "\x07\x38\x66", [0x3acd] = "\x07\x38\x67", + [0x3ad0] = "\x04\x5b\x4e", [0x3ad1] = "\x07\x40\x33", + [0x3ad2] = "\x05\x62\x32", [0x3ad3] = "\x05\x62\x31", + [0x3ad6] = "\x07\x40\x31", [0x3ad8] = "\x07\x40\x32", + [0x3ad9] = "\x04\x5f\x78", [0x3ada] = "\x07\x47\x4c", + [0x3ade] = "\x07\x4e\x25", [0x3adf] = "\x07\x47\x4d", + [0x3ae1] = "\x07\x53\x50", [0x3ae2] = "\x04\x6a\x4d", + [0x3ae3] = "\x05\x75\x7b", [0x3ae4] = "\x07\x5b\x64", + [0x3ae5] = "\x05\x73\x52", [0x3ae6] = "\x07\x5e\x73", + [0x3ae7] = "\x05\x77\x65", [0x3ae8] = "\x05\x77\x64", + [0x3ae9] = "\x07\x60\x76", [0x3aeb] = "\x07\x63\x56", + [0x3aec] = "\x05\x21\x72", [0x3aed] = "\x06\x28\x3d", + [0x3aef] = "\x06\x2c\x41", [0x3af0] = "\x06\x32\x29", + [0x3af4] = "\x06\x38\x67", [0x3af8] = "\x0f\x3c\x34", + [0x3af9] = "\x05\x40\x22", [0x3afa] = "\x04\x4a\x53", + [0x3afc] = "\x0f\x4f\x57", [0x3afd] = "\x0f\x4f\x58", + [0x3afe] = "\x0f\x5a\x59", [0x3aff] = "\x0f\x55\x41", + [0x3b00] = "\x0f\x62\x63", [0x3b01] = "\x0f\x6a\x5a", + [0x3b02] = "\x05\x24\x4f", [0x3b03] = "\x06\x28\x3e", + [0x3b04] = "\x06\x2c\x45", [0x3b05] = "\x06\x2c\x44", + [0x3b06] = "\x05\x26\x69", [0x3b08] = "\x06\x38\x68", + [0x3b09] = "\x06\x38\x6a", [0x3b0a] = "\x06\x38\x69", + [0x3b0b] = "\x06\x40\x7c", [0x3b0c] = "\x06\x40\x7d", + [0x3b0d] = "\x05\x40\x23", [0x3b0e] = "\x04\x3e\x26", + [0x3b0f] = "\x05\x46\x62", [0x3b10] = "\x05\x46\x63", + [0x3b11] = "\x06\x5e\x23", [0x3b12] = "\x07\x24\x2e", + [0x3b13] = "\x07\x2f\x27", [0x3b14] = "\x07\x2f\x28", + [0x3b15] = "\x05\x55\x25", [0x3b16] = "\x07\x47\x4e", + [0x3b17] = "\x05\x6c\x43", [0x3b1a] = "\x05\x79\x30", + [0x3b1b] = "\x05\x21\x4a", [0x3b1c] = "\x04\x22\x7e", + [0x3b1e] = "\x0f\x22\x5a", [0x3b1f] = "\x0f\x22\x5b", + [0x3b21] = "\x06\x28\x40", [0x3b22] = "\x06\x28\x3f", + [0x3b23] = "\x04\x24\x4e", [0x3b24] = "\x0f\x24\x55", + [0x3b25] = "\x0f\x24\x56", [0x3b26] = "\x0f\x24\x57", + [0x3b27] = "\x0f\x24\x59", [0x3b28] = "\x0f\x24\x5a", + [0x3b29] = "\x05\x26\x6d", [0x3b2a] = "\x05\x26\x6a", + [0x3b2b] = "\x05\x26\x6c", [0x3b2c] = "\x05\x26\x6b", + [0x3b2d] = "\x06\x2c\x47", [0x3b2e] = "\x06\x2c\x46", + [0x3b2f] = "\x0f\x27\x5a", [0x3b30] = "\x0f\x27\x5c", + [0x3b31] = "\x0f\x27\x5d", [0x3b32] = "\x0f\x27\x5e", + [0x3b33] = "\x0f\x27\x5f", [0x3b35] = "\x05\x26\x43", + [0x3b38] = "\x06\x32\x2c", [0x3b39] = "\x05\x29\x6e", + [0x3b3a] = "\x05\x29\x6f", [0x3b3b] = "\x05\x29\x6d", + [0x3b3c] = "\x05\x29\x70", [0x3b3d] = "\x05\x29\x71", + [0x3b3e] = "\x06\x32\x2d", [0x3b3f] = "\x05\x29\x73", + [0x3b40] = "\x06\x32\x2f", [0x3b41] = "\x06\x38\x6d", + [0x3b42] = "\x06\x32\x2e", [0x3b44] = "\x05\x29\x74", + [0x3b45] = "\x06\x32\x2b", [0x3b47] = "\x05\x29\x72", + [0x3b49] = "\x0f\x2b\x51", [0x3b4a] = "\x0f\x2b\x52", + [0x3b4b] = "\x0f\x2b\x53", [0x3b4c] = "\x0f\x2b\x54", + [0x3b4d] = "\x0f\x2b\x55", [0x3b4e] = "\x0f\x2b\x56", + [0x3b4f] = "\x0f\x2b\x57", [0x3b50] = "\x0f\x2b\x58", + [0x3b51] = "\x0f\x2b\x59", [0x3b52] = "\x0f\x2b\x5a", + [0x3b53] = "\x0f\x2b\x5b", [0x3b54] = "\x0f\x2b\x5c", + [0x3b55] = "\x0f\x2b\x5e", [0x3b5a] = "\x0f\x2b\x5d", + [0x3b5c] = "\x06\x38\x6f", [0x3b5d] = "\x05\x2e\x41", + [0x3b5e] = "\x06\x38\x6e", [0x3b5f] = "\x04\x2d\x69", + [0x3b60] = "\x05\x2e\x43", [0x3b61] = "\x04\x2d\x68", + [0x3b62] = "\x06\x38\x6c", [0x3b63] = "\x05\x2e\x42", + [0x3b65] = "\x0f\x30\x32", [0x3b66] = "\x0f\x30\x33", + [0x3b67] = "\x0f\x30\x34", [0x3b68] = "\x0f\x30\x35", + [0x3b69] = "\x0f\x30\x36", [0x3b6a] = "\x0f\x30\x37", + [0x3b6b] = "\x0f\x30\x38", [0x3b6c] = "\x0f\x30\x39", + [0x3b6d] = "\x06\x38\x6b", [0x3b6e] = "\x05\x2e\x40", + [0x3b71] = "\x06\x41\x26", [0x3b72] = "\x04\x32\x56", + [0x3b73] = "\x06\x41\x21", [0x3b74] = "\x05\x33\x31", + [0x3b75] = "\x06\x41\x22", [0x3b76] = "\x06\x41\x23", + [0x3b77] = "\x05\x33\x2e", [0x3b78] = "\x06\x41\x25", + [0x3b79] = "\x05\x33\x32", [0x3b7a] = "\x05\x33\x30", + [0x3b7b] = "\x05\x33\x2f", [0x3b7c] = "\x06\x40\x7e", + [0x3b7d] = "\x06\x41\x24", [0x3b7e] = "\x0f\x35\x78", + [0x3b7f] = "\x0f\x35\x79", [0x3b80] = "\x0f\x35\x7a", + [0x3b81] = "\x0f\x35\x7b", [0x3b82] = "\x0f\x35\x7c", + [0x3b88] = "\x05\x39\x55", [0x3b89] = "\x04\x38\x4d", + [0x3b8a] = "\x05\x39\x56", [0x3b8b] = "\x04\x38\x50", + [0x3b8c] = "\x06\x4a\x51", [0x3b8d] = "\x06\x4a\x53", + [0x3b8e] = "\x05\x39\x59", [0x3b8f] = "\x05\x39\x58", + [0x3b90] = "\x05\x39\x5a", [0x3b91] = "\x06\x4a\x56", + [0x3b92] = "\x06\x4a\x50", [0x3b93] = "\x06\x4a\x55", + [0x3b94] = "\x05\x39\x57", [0x3b95] = "\x06\x4a\x52", + [0x3b97] = "\x0f\x3c\x3a", [0x3b98] = "\x0f\x3c\x35", + [0x3b99] = "\x0f\x3c\x37", [0x3b9a] = "\x0f\x3c\x38", + [0x3b9b] = "\x0f\x3c\x39", [0x3b9c] = "\x0f\x3c\x3b", + [0x3b9d] = "\x0f\x3c\x3d", [0x3b9e] = "\x0f\x3c\x3f", + [0x3b9f] = "\x0f\x3c\x40", [0x3ba3] = "\x06\x4a\x54", + [0x3ba4] = "\x0f\x3c\x36", [0x3ba7] = "\x05\x39\x5c", + [0x3ba8] = "\x06\x54\x2e", [0x3ba9] = "\x06\x54\x2c", + [0x3baa] = "\x04\x3e\x2b", [0x3bab] = "\x06\x54\x27", + [0x3bac] = "\x06\x54\x2b", [0x3bad] = "\x04\x3e\x2a", + [0x3bae] = "\x06\x54\x28", [0x3baf] = "\x06\x54\x25", + [0x3bb0] = "\x06\x54\x29", [0x3bb1] = "\x06\x54\x26", + [0x3bb2] = "\x06\x54\x2d", [0x3bb3] = "\x06\x54\x2a", + [0x3bb4] = "\x06\x54\x2f", [0x3bb9] = "\x05\x40\x24", + [0x3bba] = "\x0f\x42\x53", [0x3bbb] = "\x0f\x42\x55", + [0x3bbc] = "\x0f\x42\x56", [0x3bbd] = "\x0f\x42\x57", + [0x3bc2] = "\x06\x54\x30", [0x3bc5] = "\x06\x5e\x29", + [0x3bc6] = "\x05\x46\x66", [0x3bc7] = "\x05\x46\x65", + [0x3bc8] = "\x06\x5e\x2a", [0x3bc9] = "\x06\x5e\x2b", + [0x3bca] = "\x06\x5e\x2d", [0x3bcb] = "\x04\x44\x3d", + [0x3bcc] = "\x06\x5e\x24", [0x3bcd] = "\x04\x44\x3e", + [0x3bce] = "\x05\x46\x67", [0x3bcf] = "\x04\x44\x3b", + [0x3bd1] = "\x06\x5e\x2e", [0x3bd2] = "\x06\x5e\x2f", + [0x3bd3] = "\x06\x5e\x26", [0x3bd5] = "\x06\x5e\x27", + [0x3bd6] = "\x0f\x48\x7c", [0x3bd7] = "\x0f\x48\x7d", + [0x3bd8] = "\x0f\x48\x7e", [0x3bd9] = "\x0f\x49\x21", + [0x3bdb] = "\x06\x5e\x28", [0x3bdc] = "\x05\x46\x69", + [0x3bdd] = "\x06\x5e\x30", [0x3bdf] = "\x06\x5e\x25", + [0x3be2] = "\x06\x5e\x2c", [0x3be4] = "\x04\x4a\x56", + [0x3be5] = "\x07\x24\x33", [0x3be6] = "\x07\x24\x37", + [0x3be7] = "\x07\x24\x35", [0x3be8] = "\x04\x4a\x55", + [0x3be9] = "\x04\x4a\x54", [0x3bea] = "\x05\x4d\x79", + [0x3beb] = "\x07\x24\x34", [0x3bec] = "\x05\x4d\x77", + [0x3bed] = "\x05\x4d\x78", [0x3bee] = "\x07\x24\x31", + [0x3bef] = "\x07\x24\x32", [0x3bf0] = "\x07\x24\x30", + [0x3bf1] = "\x07\x24\x2f", [0x3bf2] = "\x07\x24\x36", + [0x3bf7] = "\x07\x24\x38", [0x3bf8] = "\x07\x2f\x29", + [0x3bf9] = "\x05\x55\x27", [0x3bfa] = "\x07\x2f\x2a", + [0x3bfb] = "\x04\x50\x70", [0x3bfc] = "\x05\x55\x26", + [0x3bfd] = "\x04\x50\x73", [0x3bfe] = "\x07\x2f\x2c", + [0x3bff] = "\x0f\x55\x42", [0x3c00] = "\x0f\x55\x43", + [0x3c01] = "\x0f\x55\x44", [0x3c02] = "\x0f\x55\x45", + [0x3c06] = "\x07\x2f\x2b", [0x3c09] = "\x07\x24\x39", + [0x3c0a] = "\x07\x38\x6a", [0x3c0b] = "\x04\x56\x55", + [0x3c0c] = "\x04\x56\x54", [0x3c0d] = "\x07\x38\x69", + [0x3c0e] = "\x05\x5b\x76", [0x3c10] = "\x07\x38\x68", + [0x3c11] = "\x0f\x5a\x5a", [0x3c12] = "\x0f\x5a\x5b", + [0x3c13] = "\x0f\x5a\x5c", [0x3c14] = "\x07\x38\x6c", + [0x3c16] = "\x07\x38\x6b", [0x3c1a] = "\x05\x62\x35", + [0x3c1b] = "\x05\x62\x34", [0x3c1c] = "\x05\x62\x36", + [0x3c1e] = "\x07\x40\x37", [0x3c1f] = "\x07\x47\x4f", + [0x3c20] = "\x07\x40\x35", [0x3c21] = "\x05\x62\x37", + [0x3c22] = "\x07\x40\x34", [0x3c23] = "\x07\x40\x36", + [0x3c24] = "\x0f\x5f\x31", [0x3c28] = "\x05\x62\x33", + [0x3c2a] = "\x0f\x5f\x32", [0x3c2b] = "\x07\x47\x52", + [0x3c2c] = "\x05\x68\x34", [0x3c2d] = "\x07\x47\x50", + [0x3c2e] = "\x07\x47\x51", [0x3c31] = "\x0f\x65\x41", + [0x3c32] = "\x07\x4e\x26", [0x3c36] = "\x04\x66\x47", + [0x3c37] = "\x05\x70\x39", [0x3c38] = "\x07\x53\x51", + [0x3c39] = "\x0f\x67\x67", [0x3c3b] = "\x07\x58\x2b", + [0x3c3c] = "\x05\x73\x53", [0x3c3e] = "\x0f\x69\x52", + [0x3c3f] = "\x05\x75\x7c", [0x3c40] = "\x07\x5b\x65", + [0x3c44] = "\x07\x64\x4a", [0x3c45] = "\x06\x2c\x48", + [0x3c47] = "\x06\x32\x30", [0x3c48] = "\x05\x29\x75", + [0x3c49] = "\x05\x29\x76", [0x3c4a] = "\x06\x33\x4c", + [0x3c4b] = "\x06\x41\x27", [0x3c4c] = "\x0f\x35\x7d", + [0x3c4e] = "\x06\x41\x28", [0x3c4f] = "\x06\x54\x31", + [0x3c50] = "\x04\x44\x40", [0x3c51] = "\x07\x2f\x2d", + [0x3c52] = "\x07\x38\x6d", [0x3c53] = "\x04\x5b\x51", + [0x3c54] = "\x0f\x5a\x5d", [0x3c55] = "\x06\x25\x2a", + [0x3c56] = "\x06\x25\x29", [0x3c58] = "\x0f\x24\x5c", + [0x3c59] = "\x06\x2c\x4b", [0x3c5a] = "\x06\x2c\x4a", + [0x3c5b] = "\x06\x2c\x49", [0x3c5c] = "\x06\x32\x31", + [0x3c5e] = "\x06\x32\x32", [0x3c5f] = "\x0f\x2b\x5f", + [0x3c60] = "\x05\x29\x77", [0x3c61] = "\x05\x2e\x44", + [0x3c63] = "\x0f\x35\x7e", [0x3c64] = "\x05\x39\x5d", + [0x3c65] = "\x0f\x3c\x41", [0x3c66] = "\x06\x54\x32", + [0x3c6a] = "\x07\x24\x3b", [0x3c6b] = "\x07\x24\x3a", + [0x3c6e] = "\x07\x40\x38", [0x3c6f] = "\x07\x53\x52", + [0x3c72] = "\x0f\x21\x67", [0x3c74] = "\x06\x22\x24", + [0x3c75] = "\x06\x25\x2b", [0x3c76] = "\x05\x21\x73", + [0x3c77] = "\x06\x25\x2c", [0x3c78] = "\x0f\x22\x5e", + [0x3c79] = "\x0f\x24\x69", [0x3c80] = "\x04\x23\x23", + [0x3c81] = "\x06\x25\x2d", [0x3c82] = "\x05\x24\x50", + [0x3c83] = "\x06\x25\x2f", [0x3c84] = "\x06\x25\x31", + [0x3c86] = "\x03\x24\x24", [0x3c87] = "\x0f\x22\x5c", + [0x3c88] = "\x0f\x24\x5f", [0x3c89] = "\x0f\x24\x60", + [0x3c8b] = "\x06\x25\x30", [0x3c8e] = "\x06\x2c\x4d", + [0x3c8f] = "\x05\x24\x52", [0x3c90] = "\x06\x28\x42", + [0x3c91] = "\x05\x24\x51", [0x3c92] = "\x05\x24\x53", + [0x3c93] = "\x04\x24\x50", [0x3c94] = "\x06\x28\x46", + [0x3c95] = "\x06\x28\x47", [0x3c9d] = "\x06\x2c\x4c", + [0x3c9e] = "\x06\x28\x43", [0x3c9f] = "\x06\x28\x41", + [0x3ca0] = "\x06\x28\x45", [0x3ca1] = "\x06\x28\x48", + [0x3ca5] = "\x0f\x24\x61", [0x3ca7] = "\x0f\x24\x5e", + [0x3ca8] = "\x0f\x24\x62", [0x3ca9] = "\x0f\x24\x63", + [0x3caa] = "\x0f\x24\x64", [0x3cab] = "\x0f\x24\x65", + [0x3cac] = "\x0f\x24\x66", [0x3cad] = "\x0f\x24\x67", + [0x3cae] = "\x0f\x27\x63", [0x3caf] = "\x0f\x27\x64", + [0x3cb0] = "\x0f\x27\x65", [0x3cb2] = "\x04\x27\x23", + [0x3cb3] = "\x05\x26\x6f", [0x3cb4] = "\x06\x32\x33", + [0x3cb5] = "\x05\x26\x72", [0x3cb6] = "\x05\x26\x73", + [0x3cb7] = "\x04\x27\x21", [0x3cb8] = "\x06\x2c\x57", + [0x3cb9] = "\x04\x27\x25", [0x3cba] = "\x06\x2c\x50", + [0x3cbb] = "\x04\x27\x24", [0x3cbc] = "\x06\x2c\x4e", + [0x3cbd] = "\x05\x26\x6e", [0x3cbe] = "\x05\x26\x70", + [0x3cbf] = "\x06\x2c\x58", [0x3cc0] = "\x05\x26\x71", + [0x3cc1] = "\x06\x2c\x5a", [0x3cc2] = "\x06\x32\x34", + [0x3cc4] = "\x06\x2c\x56", [0x3cc5] = "\x06\x2c\x5c", + [0x3cca] = "\x04\x26\x7c", [0x3ccb] = "\x06\x2c\x53", + [0x3ccc] = "\x0f\x27\x60", [0x3ccd] = "\x0f\x27\x61", + [0x3cce] = "\x0f\x27\x62", [0x3ccf] = "\x0f\x27\x67", + [0x3cd0] = "\x0f\x27\x68", [0x3cd1] = "\x0f\x27\x69", + [0x3cd2] = "\x0f\x27\x6a", [0x3cd3] = "\x0f\x27\x6b", + [0x3cd4] = "\x0f\x27\x6d", [0x3cd5] = "\x0f\x2b\x64", + [0x3cd6] = "\x0f\x2b\x67", [0x3cd7] = "\x0f\x2b\x6c", + [0x3cd8] = "\x06\x2c\x52", [0x3cd9] = "\x06\x2c\x54", + [0x3cda] = "\x06\x2c\x55", [0x3cdb] = "\x06\x2c\x59", + [0x3cdd] = "\x06\x2c\x4f", [0x3ce3] = "\x05\x29\x78", + [0x3ce4] = "\x04\x29\x7c", [0x3ce5] = "\x06\x32\x36", + [0x3ce6] = "\x05\x2a\x22", [0x3ce7] = "\x06\x32\x3b", + [0x3ce8] = "\x06\x32\x3e", [0x3ce9] = "\x05\x29\x79", + [0x3cea] = "\x04\x2a\x22", [0x3ceb] = "\x04\x2d\x71", + [0x3cec] = "\x05\x2a\x21", [0x3ced] = "\x05\x29\x7e", + [0x3cee] = "\x06\x32\x3a", [0x3cef] = "\x06\x32\x40", + [0x3cf0] = "\x05\x29\x7a", [0x3cf1] = "\x06\x32\x41", + [0x3cf2] = "\x05\x29\x7d", [0x3cf3] = "\x06\x38\x70", + [0x3cf4] = "\x06\x32\x3d", [0x3cf5] = "\x06\x32\x3c", + [0x3cf6] = "\x04\x2a\x23", [0x3cf7] = "\x04\x29\x7d", + [0x3d01] = "\x06\x32\x3f", [0x3d02] = "\x0f\x2b\x60", + [0x3d03] = "\x0f\x2b\x61", [0x3d04] = "\x0f\x2b\x62", + [0x3d05] = "\x0f\x2b\x63", [0x3d06] = "\x0f\x2b\x65", + [0x3d07] = "\x0f\x2b\x66", [0x3d08] = "\x0f\x2b\x68", + [0x3d09] = "\x0f\x2b\x69", [0x3d0a] = "\x0f\x2b\x6a", + [0x3d0b] = "\x0f\x2b\x6b", [0x3d0c] = "\x0f\x2b\x6d", + [0x3d0d] = "\x0f\x2b\x6e", [0x3d0e] = "\x0f\x30\x3a", + [0x3d0f] = "\x0f\x30\x3d", [0x3d10] = "\x0f\x30\x44", + [0x3d11] = "\x06\x32\x38", [0x3d12] = "\x04\x2a\x24", + [0x3d14] = "\x06\x32\x35", [0x3d15] = "\x06\x32\x37", + [0x3d16] = "\x05\x2a\x23", [0x3d1d] = "\x0f\x30\x57", + [0x3d1e] = "\x04\x2d\x6e", [0x3d1f] = "\x05\x2e\x49", + [0x3d20] = "\x06\x39\x30", [0x3d21] = "\x06\x39\x2e", + [0x3d22] = "\x05\x2e\x48", [0x3d23] = "\x05\x2e\x47", + [0x3d24] = "\x06\x38\x7c", [0x3d25] = "\x05\x2e\x4a", + [0x3d26] = "\x06\x38\x71", [0x3d27] = "\x06\x38\x7b", + [0x3d28] = "\x04\x2d\x6d", [0x3d29] = "\x04\x2d\x6f", + [0x3d2a] = "\x06\x39\x25", [0x3d2b] = "\x06\x38\x76", + [0x3d2c] = "\x06\x39\x26", [0x3d2d] = "\x06\x39\x2a", + [0x3d2e] = "\x06\x38\x77", [0x3d2f] = "\x06\x39\x29", + [0x3d30] = "\x06\x38\x7e", [0x3d31] = "\x06\x39\x28", + [0x3d32] = "\x06\x41\x2a", [0x3d33] = "\x06\x41\x29", + [0x3d34] = "\x04\x32\x66", [0x3d35] = "\x06\x39\x24", + [0x3d36] = "\x06\x39\x2c", [0x3d37] = "\x05\x2e\x45", + [0x3d38] = "\x06\x39\x23", [0x3d39] = "\x06\x38\x73", + [0x3d3a] = "\x06\x39\x2b", [0x3d3b] = "\x06\x38\x78", + [0x3d3c] = "\x06\x39\x2f", [0x3d3e] = "\x06\x39\x32", + [0x3d42] = "\x06\x41\x46", [0x3d43] = "\x0f\x30\x3b", + [0x3d44] = "\x0f\x30\x3e", [0x3d45] = "\x0f\x30\x3f", + [0x3d46] = "\x0f\x30\x40", [0x3d47] = "\x0f\x30\x41", + [0x3d48] = "\x0f\x30\x42", [0x3d49] = "\x0f\x30\x43", + [0x3d4a] = "\x0f\x30\x45", [0x3d4b] = "\x0f\x30\x46", + [0x3d4c] = "\x0f\x30\x47", [0x3d4d] = "\x0f\x30\x48", + [0x3d4e] = "\x0f\x30\x4a", [0x3d4f] = "\x0f\x30\x4b", + [0x3d50] = "\x0f\x30\x4c", [0x3d51] = "\x0f\x30\x4d", + [0x3d52] = "\x0f\x30\x4e", [0x3d53] = "\x0f\x30\x4f", + [0x3d54] = "\x0f\x30\x50", [0x3d55] = "\x0f\x30\x51", + [0x3d56] = "\x0f\x30\x52", [0x3d57] = "\x0f\x30\x53", + [0x3d58] = "\x0f\x30\x54", [0x3d59] = "\x0f\x30\x55", + [0x3d5a] = "\x0f\x30\x56", [0x3d5b] = "\x0f\x30\x58", + [0x3d5c] = "\x0f\x30\x59", [0x3d5d] = "\x0f\x30\x5a", + [0x3d5e] = "\x06\x38\x79", [0x3d62] = "\x06\x39\x22", + [0x3d64] = "\x06\x39\x31", [0x3d66] = "\x04\x2d\x72", + [0x3d68] = "\x06\x39\x27", [0x3d69] = "\x06\x38\x7d", + [0x3d6c] = "\x06\x38\x75", [0x3d71] = "\x05\x2e\x46", + [0x3d73] = "\x0f\x36\x2d", [0x3d77] = "\x04\x32\x5d", + [0x3d78] = "\x05\x33\x40", [0x3d79] = "\x04\x32\x5b", + [0x3d7a] = "\x04\x32\x6b", [0x3d7b] = "\x06\x41\x34", + [0x3d7c] = "\x06\x41\x38", [0x3d7d] = "\x06\x41\x3c", + [0x3d7e] = "\x04\x32\x6a", [0x3d7f] = "\x06\x41\x43", + [0x3d80] = "\x04\x32\x61", [0x3d81] = "\x06\x41\x36", + [0x3d82] = "\x04\x32\x65", [0x3d83] = "\x06\x41\x35", + [0x3d84] = "\x06\x41\x45", [0x3d85] = "\x04\x32\x69", + [0x3d86] = "\x05\x33\x33", [0x3d87] = "\x06\x41\x31", + [0x3d88] = "\x04\x32\x60", [0x3d89] = "\x04\x32\x67", + [0x3d8a] = "\x06\x4a\x64", [0x3d8b] = "\x05\x33\x3f", + [0x3d8c] = "\x06\x41\x42", [0x3d8d] = "\x05\x33\x3e", + [0x3d8e] = "\x06\x41\x3f", [0x3d8f] = "\x04\x32\x59", + [0x3d90] = "\x04\x32\x5f", [0x3d91] = "\x06\x41\x2c", + [0x3d92] = "\x04\x25\x2f", [0x3d93] = "\x06\x41\x3b", + [0x3d94] = "\x06\x41\x30", [0x3d95] = "\x06\x4a\x66", + [0x3d96] = "\x05\x33\x38", [0x3d98] = "\x05\x33\x41", + [0x3d99] = "\x06\x4a\x58", [0x3d9a] = "\x06\x4a\x59", + [0x3d9b] = "\x06\x41\x3e", [0x3d9c] = "\x06\x41\x44", + [0x3d9d] = "\x05\x33\x36", [0x3d9e] = "\x04\x32\x62", + [0x3d9f] = "\x06\x41\x40", [0x3da1] = "\x05\x33\x3b", + [0x3da2] = "\x06\x41\x2f", [0x3da3] = "\x06\x41\x32", + [0x3da4] = "\x05\x33\x3a", [0x3da5] = "\x05\x33\x35", + [0x3da6] = "\x04\x32\x6c", [0x3db5] = "\x04\x32\x6e", + [0x3dbe] = "\x05\x33\x37", [0x3dbf] = "\x06\x41\x3d", + [0x3dc0] = "\x0f\x36\x21", [0x3dc1] = "\x0f\x36\x22", + [0x3dc2] = "\x0f\x36\x23", [0x3dc3] = "\x0f\x36\x25", + [0x3dc4] = "\x0f\x36\x26", [0x3dc5] = "\x0f\x36\x27", + [0x3dc6] = "\x0f\x36\x28", [0x3dc7] = "\x0f\x36\x2a", + [0x3dc8] = "\x0f\x36\x2c", [0x3dc9] = "\x0f\x36\x2e", + [0x3dca] = "\x0f\x36\x2f", [0x3dcb] = "\x0f\x36\x30", + [0x3dcc] = "\x0f\x36\x31", [0x3dcd] = "\x0f\x36\x32", + [0x3dce] = "\x0f\x36\x36", [0x3dcf] = "\x0f\x36\x37", + [0x3dd0] = "\x0f\x36\x38", [0x3dd1] = "\x0f\x36\x39", + [0x3dd2] = "\x0f\x36\x3a", [0x3dd3] = "\x0f\x36\x3b", + [0x3dd4] = "\x0f\x36\x3c", [0x3dd5] = "\x0f\x36\x3d", + [0x3dd6] = "\x0f\x3c\x42", [0x3dd7] = "\x0f\x3c\x4b", + [0x3dd8] = "\x0f\x3c\x4d", [0x3dd9] = "\x0f\x3c\x57", + [0x3dda] = "\x0f\x42\x5f", [0x3ddb] = "\x06\x4a\x57", + [0x3ddd] = "\x06\x41\x33", [0x3ddf] = "\x06\x41\x37", + [0x3de1] = "\x05\x33\x39", [0x3de2] = "\x06\x41\x3a", + [0x3de4] = "\x06\x41\x39", [0x3de6] = "\x06\x41\x47", + [0x3de7] = "\x06\x41\x2d", [0x3de9] = "\x06\x41\x2e", + [0x3df5] = "\x05\x33\x34", [0x3df6] = "\x05\x33\x3c", + [0x3dfb] = "\x06\x38\x7a", [0x3dfc] = "\x06\x4a\x62", + [0x3dfd] = "\x06\x4a\x70", [0x3dfe] = "\x04\x38\x54", + [0x3dff] = "\x05\x39\x63", [0x3e00] = "\x04\x38\x55", + [0x3e01] = "\x06\x4a\x5d", [0x3e02] = "\x06\x4a\x5f", + [0x3e03] = "\x05\x39\x67", [0x3e04] = "\x05\x39\x6a", + [0x3e05] = "\x05\x39\x62", [0x3e06] = "\x06\x54\x48", + [0x3e07] = "\x05\x39\x6c", [0x3e08] = "\x06\x4a\x5a", + [0x3e09] = "\x04\x38\x53", [0x3e0a] = "\x05\x33\x42", + [0x3e0b] = "\x04\x38\x58", [0x3e0c] = "\x06\x4a\x6c", + [0x3e0d] = "\x06\x4a\x5c", [0x3e0e] = "\x05\x39\x68", + [0x3e0f] = "\x06\x4a\x71", [0x3e10] = "\x06\x54\x35", + [0x3e11] = "\x06\x4a\x67", [0x3e12] = "\x06\x4a\x68", + [0x3e13] = "\x06\x4a\x6e", [0x3e14] = "\x05\x39\x60", + [0x3e15] = "\x06\x54\x34", [0x3e16] = "\x06\x4a\x6f", + [0x3e17] = "\x04\x3e\x2c", [0x3e18] = "\x05\x39\x5f", + [0x3e19] = "\x05\x39\x66", [0x3e1a] = "\x05\x39\x65", + [0x3e1b] = "\x05\x39\x64", [0x3e1c] = "\x06\x4a\x6a", + [0x3e1d] = "\x05\x39\x61", [0x3e1e] = "\x06\x54\x33", + [0x3e1f] = "\x06\x4a\x72", [0x3e20] = "\x05\x39\x6d", + [0x3e21] = "\x06\x4a\x61", [0x3e32] = "\x0f\x3c\x44", + [0x3e33] = "\x0f\x3c\x45", [0x3e34] = "\x0f\x3c\x46", + [0x3e35] = "\x0f\x3c\x48", [0x3e36] = "\x0f\x3c\x49", + [0x3e37] = "\x0f\x3c\x4a", [0x3e38] = "\x0f\x3c\x4e", + [0x3e39] = "\x0f\x3c\x4f", [0x3e3a] = "\x0f\x3c\x50", + [0x3e3b] = "\x0f\x3c\x51", [0x3e3c] = "\x0f\x3c\x52", + [0x3e3d] = "\x0f\x3c\x53", [0x3e3e] = "\x0f\x3c\x54", + [0x3e3f] = "\x0f\x3c\x55", [0x3e40] = "\x0f\x3c\x56", + [0x3e41] = "\x0f\x3c\x58", [0x3e42] = "\x0f\x3c\x59", + [0x3e43] = "\x0f\x3c\x5b", [0x3e44] = "\x0f\x3c\x5c", + [0x3e46] = "\x06\x4a\x69", [0x3e47] = "\x05\x39\x69", + [0x3e49] = "\x06\x4a\x6b", [0x3e4a] = "\x04\x38\x5d", + [0x3e4c] = "\x06\x4a\x5b", [0x3e4d] = "\x06\x4a\x60", + [0x3e4e] = "\x06\x4a\x5e", [0x3e5a] = "\x05\x39\x6b", + [0x3e5b] = "\x0f\x42\x73", [0x3e5d] = "\x06\x54\x41", + [0x3e5e] = "\x05\x40\x25", [0x3e5f] = "\x04\x3e\x41", + [0x3e60] = "\x06\x54\x38", [0x3e61] = "\x04\x3e\x34", + [0x3e62] = "\x06\x54\x3b", [0x3e63] = "\x06\x54\x43", + [0x3e64] = "\x04\x3e\x3b", [0x3e65] = "\x04\x3e\x43", + [0x3e66] = "\x04\x3e\x3e", [0x3e67] = "\x04\x3e\x2e", + [0x3e68] = "\x06\x54\x4a", [0x3e69] = "\x05\x40\x29", + [0x3e6a] = "\x05\x40\x26", [0x3e6b] = "\x04\x3e\x40", + [0x3e6c] = "\x06\x5e\x31", [0x3e6d] = "\x06\x54\x42", + [0x3e6e] = "\x04\x3e\x3a", [0x3e6f] = "\x05\x40\x2f", + [0x3e71] = "\x05\x40\x2d", [0x3e72] = "\x04\x3e\x31", + [0x3e73] = "\x06\x5e\x32", [0x3e74] = "\x04\x3e\x42", + [0x3e75] = "\x05\x40\x2c", [0x3e76] = "\x05\x40\x2e", + [0x3e77] = "\x06\x54\x3e", [0x3e78] = "\x06\x54\x4c", + [0x3e79] = "\x07\x24\x3c", [0x3e7a] = "\x06\x54\x47", + [0x3e7b] = "\x04\x44\x4b", [0x3e7c] = "\x06\x54\x3f", + [0x3e7d] = "\x06\x54\x46", [0x3e7e] = "\x06\x54\x37", + [0x3e7f] = "\x06\x54\x36", [0x3e80] = "\x05\x40\x2b", + [0x3e81] = "\x05\x40\x28", [0x3e8c] = "\x04\x3e\x3d", + [0x3e8d] = "\x06\x54\x3c", [0x3e8e] = "\x06\x54\x3d", + [0x3e8f] = "\x06\x54\x40", [0x3e90] = "\x06\x54\x45", + [0x3e91] = "\x0f\x42\x58", [0x3e92] = "\x0f\x42\x59", + [0x3e93] = "\x0f\x42\x5a", [0x3e94] = "\x0f\x42\x5b", + [0x3e95] = "\x0f\x42\x5c", [0x3e96] = "\x0f\x42\x5d", + [0x3e97] = "\x0f\x42\x5e", [0x3e98] = "\x0f\x42\x60", + [0x3e99] = "\x0f\x42\x61", [0x3e9a] = "\x0f\x42\x62", + [0x3e9b] = "\x0f\x42\x65", [0x3e9c] = "\x0f\x42\x66", + [0x3e9d] = "\x0f\x42\x67", [0x3e9e] = "\x0f\x42\x68", + [0x3e9f] = "\x0f\x42\x69", [0x3ea0] = "\x0f\x42\x6a", + [0x3ea1] = "\x0f\x42\x6c", [0x3ea2] = "\x0f\x42\x6d", + [0x3ea3] = "\x0f\x42\x6e", [0x3ea4] = "\x0f\x42\x6f", + [0x3ea5] = "\x0f\x42\x70", [0x3ea6] = "\x0f\x42\x71", + [0x3ea7] = "\x0f\x42\x72", [0x3ea8] = "\x0f\x42\x75", + [0x3ea9] = "\x0f\x49\x22", [0x3eaa] = "\x0f\x49\x3e", + [0x3eac] = "\x05\x40\x2a", [0x3eaf] = "\x06\x54\x44", + [0x3eb0] = "\x04\x3e\x35", [0x3eb1] = "\x06\x54\x4d", + [0x3eb2] = "\x06\x54\x3a", [0x3eb4] = "\x06\x54\x4b", + [0x3eb6] = "\x0f\x49\x2f", [0x3ebf] = "\x0f\x42\x6b", + [0x3eca] = "\x0f\x4f\x6c", [0x3ecc] = "\x06\x54\x39", + [0x3ecd] = "\x07\x24\x3d", [0x3ecf] = "\x04\x44\x54", + [0x3ed0] = "\x04\x44\x47", [0x3ed1] = "\x04\x44\x48", + [0x3ed2] = "\x04\x44\x4c", [0x3ed3] = "\x05\x46\x6b", + [0x3ed4] = "\x04\x44\x4e", [0x3ed5] = "\x05\x46\x6a", + [0x3ed6] = "\x05\x46\x74", [0x3ed7] = "\x05\x46\x76", + [0x3ed8] = "\x04\x44\x45", [0x3ed9] = "\x04\x44\x53", + [0x3eda] = "\x06\x5e\x44", [0x3edb] = "\x05\x46\x6f", + [0x3edc] = "\x06\x5e\x41", [0x3edd] = "\x06\x5e\x3a", + [0x3ede] = "\x04\x44\x51", [0x3edf] = "\x04\x44\x50", + [0x3ee0] = "\x05\x46\x75", [0x3ee1] = "\x05\x46\x72", + [0x3ee2] = "\x05\x46\x6d", [0x3ee3] = "\x07\x24\x40", + [0x3ee4] = "\x07\x24\x3f", [0x3ee5] = "\x05\x46\x77", + [0x3ee6] = "\x06\x5e\x45", [0x3ee7] = "\x04\x44\x4f", + [0x3ee8] = "\x06\x5e\x39", [0x3ee9] = "\x06\x5e\x42", + [0x3eea] = "\x05\x46\x70", [0x3eeb] = "\x05\x46\x71", + [0x3eec] = "\x04\x44\x41", [0x3eed] = "\x06\x5e\x3d", + [0x3eee] = "\x05\x4d\x7a", [0x3eef] = "\x07\x24\x3e", + [0x3ef0] = "\x06\x5e\x34", [0x3ef1] = "\x05\x46\x6e", + [0x3ef2] = "\x06\x5e\x3f", [0x3eff] = "\x05\x46\x73", + [0x3f00] = "\x0f\x49\x23", [0x3f01] = "\x0f\x49\x24", + [0x3f02] = "\x0f\x49\x25", [0x3f03] = "\x0f\x49\x26", + [0x3f04] = "\x0f\x49\x27", [0x3f05] = "\x0f\x49\x28", + [0x3f06] = "\x0f\x49\x29", [0x3f07] = "\x0f\x49\x2b", + [0x3f08] = "\x0f\x49\x2c", [0x3f09] = "\x0f\x49\x2d", + [0x3f0a] = "\x0f\x49\x2e", [0x3f0b] = "\x0f\x49\x30", + [0x3f0c] = "\x0f\x49\x31", [0x3f0d] = "\x0f\x49\x34", + [0x3f0e] = "\x0f\x49\x36", [0x3f0f] = "\x0f\x49\x37", + [0x3f10] = "\x0f\x49\x38", [0x3f11] = "\x0f\x49\x39", + [0x3f12] = "\x0f\x49\x3a", [0x3f13] = "\x0f\x49\x3c", + [0x3f14] = "\x0f\x49\x3d", [0x3f15] = "\x0f\x49\x41", + [0x3f16] = "\x0f\x49\x42", [0x3f17] = "\x0f\x49\x43", + [0x3f18] = "\x0f\x4f\x6d", [0x3f19] = "\x07\x22\x68", + [0x3f1a] = "\x04\x44\x42", [0x3f1b] = "\x06\x5e\x3c", + [0x3f1d] = "\x06\x5e\x43", [0x3f1f] = "\x06\x5e\x35", + [0x3f20] = "\x05\x46\x6c", [0x3f21] = "\x06\x5e\x33", + [0x3f22] = "\x06\x5e\x37", [0x3f23] = "\x06\x5e\x38", + [0x3f35] = "\x0f\x49\x3b", [0x3f3b] = "\x06\x5e\x36", + [0x3f3f] = "\x0f\x49\x2a", [0x3f43] = "\x07\x24\x62", + [0x3f44] = "\x07\x24\x52", [0x3f45] = "\x07\x24\x4d", + [0x3f46] = "\x04\x4a\x60", [0x3f47] = "\x07\x24\x5a", + [0x3f48] = "\x07\x24\x54", [0x3f49] = "\x07\x24\x4c", + [0x3f4a] = "\x04\x4a\x65", [0x3f4b] = "\x04\x4a\x67", + [0x3f4c] = "\x05\x4e\x25", [0x3f4e] = "\x07\x24\x63", + [0x3f4f] = "\x07\x24\x4e", [0x3f50] = "\x07\x24\x50", + [0x3f51] = "\x07\x24\x56", [0x3f52] = "\x04\x4a\x5c", + [0x3f53] = "\x07\x24\x57", [0x3f54] = "\x07\x24\x49", + [0x3f55] = "\x05\x4e\x21", [0x3f56] = "\x07\x24\x65", + [0x3f57] = "\x07\x24\x47", [0x3f58] = "\x07\x24\x44", + [0x3f59] = "\x04\x4a\x66", [0x3f5a] = "\x05\x4d\x7b", + [0x3f5b] = "\x05\x4e\x24", [0x3f5c] = "\x07\x24\x64", + [0x3f5d] = "\x04\x4a\x5b", [0x3f5e] = "\x07\x24\x5b", + [0x3f5f] = "\x04\x4a\x5a", [0x3f60] = "\x07\x24\x59", + [0x3f61] = "\x05\x4d\x7e", [0x3f62] = "\x07\x24\x43", + [0x3f63] = "\x07\x24\x67", [0x3f64] = "\x05\x4e\x23", + [0x3f65] = "\x05\x4d\x7d", [0x3f66] = "\x07\x24\x53", + [0x3f67] = "\x07\x24\x42", [0x3f68] = "\x07\x3a\x69", + [0x3f69] = "\x07\x24\x45", [0x3f6a] = "\x07\x24\x68", + [0x3f6b] = "\x05\x4e\x22", [0x3f6c] = "\x07\x24\x41", + [0x3f6d] = "\x07\x24\x5e", [0x3f6e] = "\x07\x24\x66", + [0x3f6f] = "\x05\x4e\x26", [0x3f70] = "\x05\x4e\x28", + [0x3f73] = "\x05\x4d\x7c", [0x3f74] = "\x04\x4a\x5e", + [0x3f75] = "\x07\x24\x5f", [0x3f76] = "\x07\x24\x4b", + [0x3f7d] = "\x07\x24\x51", [0x3f84] = "\x05\x4e\x27", + [0x3f85] = "\x07\x24\x5c", [0x3f86] = "\x0f\x4f\x59", + [0x3f87] = "\x0f\x4f\x5a", [0x3f88] = "\x0f\x4f\x5b", + [0x3f89] = "\x0f\x4f\x5c", [0x3f8a] = "\x0f\x4f\x5d", + [0x3f8b] = "\x0f\x4f\x5e", [0x3f8c] = "\x0f\x4f\x5f", + [0x3f8d] = "\x0f\x4f\x62", [0x3f8e] = "\x0f\x4f\x63", + [0x3f8f] = "\x0f\x4f\x64", [0x3f90] = "\x0f\x4f\x65", + [0x3f91] = "\x0f\x4f\x66", [0x3f92] = "\x0f\x4f\x67", + [0x3f93] = "\x0f\x4f\x68", [0x3f94] = "\x0f\x4f\x6a", + [0x3f95] = "\x0f\x4f\x6b", [0x3f96] = "\x0f\x4f\x6f", + [0x3f97] = "\x0f\x4f\x70", [0x3f98] = "\x0f\x4f\x71", + [0x3f99] = "\x0f\x4f\x72", [0x3f9a] = "\x0f\x4f\x73", + [0x3f9b] = "\x0f\x4f\x74", [0x3f9c] = "\x0f\x4f\x75", + [0x3f9d] = "\x0f\x4f\x76", [0x3f9e] = "\x0f\x4f\x77", + [0x3f9f] = "\x0f\x4f\x78", [0x3fa0] = "\x0f\x4f\x7b", + [0x3fa1] = "\x0f\x4f\x7c", [0x3fa2] = "\x0f\x55\x51", + [0x3fa3] = "\x07\x24\x55", [0x3fa8] = "\x07\x24\x60", + [0x3fa9] = "\x07\x2f\x30", [0x3faa] = "\x04\x4a\x63", + [0x3fab] = "\x07\x24\x46", [0x3fac] = "\x07\x24\x5d", + [0x3fad] = "\x07\x24\x48", [0x3fae] = "\x07\x24\x4a", + [0x3fb0] = "\x0f\x55\x4a", [0x3fb7] = "\x0f\x4f\x7e", + [0x3fc1] = "\x0f\x49\x40", [0x3fc5] = "\x04\x50\x7c", + [0x3fc6] = "\x05\x55\x35", [0x3fc7] = "\x05\x55\x34", + [0x3fc8] = "\x05\x55\x28", [0x3fc9] = "\x05\x55\x29", + [0x3fca] = "\x05\x55\x2b", [0x3fcb] = "\x07\x2f\x33", + [0x3fcc] = "\x05\x55\x30", [0x3fcd] = "\x07\x2f\x47", + [0x3fce] = "\x07\x2f\x40", [0x3fcf] = "\x07\x2f\x3a", + [0x3fd0] = "\x04\x50\x79", [0x3fd1] = "\x07\x2f\x39", + [0x3fd2] = "\x04\x50\x7e", [0x3fd3] = "\x05\x55\x33", + [0x3fd4] = "\x07\x2f\x3d", [0x3fd5] = "\x07\x2f\x31", + [0x3fd6] = "\x07\x2f\x37", [0x3fd7] = "\x07\x2f\x46", + [0x3fd8] = "\x07\x2f\x3b", [0x3fd9] = "\x07\x2f\x38", + [0x3fda] = "\x07\x2f\x43", [0x3fdb] = "\x07\x2f\x36", + [0x3fdc] = "\x07\x2f\x32", [0x3fdd] = "\x05\x55\x31", + [0x3fde] = "\x05\x55\x2a", [0x3fdf] = "\x05\x5b\x77", + [0x3fe0] = "\x07\x2f\x3c", [0x3fe1] = "\x07\x2f\x49", + [0x3fe2] = "\x05\x55\x2c", [0x3fe3] = "\x05\x5b\x79", + [0x3fe4] = "\x05\x55\x32", [0x3ff1] = "\x07\x2f\x2f", + [0x3ff2] = "\x07\x2f\x34", [0x3ff3] = "\x07\x2f\x3e", + [0x3ff4] = "\x07\x2f\x41", [0x3ff5] = "\x0f\x55\x46", + [0x3ff6] = "\x0f\x55\x48", [0x3ff7] = "\x0f\x55\x49", + [0x3ff8] = "\x0f\x55\x4b", [0x3ff9] = "\x0f\x55\x4c", + [0x3ffa] = "\x0f\x55\x4f", [0x3ffb] = "\x0f\x55\x50", + [0x3ffc] = "\x0f\x55\x52", [0x3ffd] = "\x0f\x55\x53", + [0x3ffe] = "\x0f\x55\x54", [0x3fff] = "\x0f\x55\x55", + [0x4000] = "\x0f\x55\x57", [0x4001] = "\x0f\x5a\x6d", + [0x4004] = "\x05\x55\x2f", [0x4005] = "\x07\x2f\x3f", + [0x4006] = "\x07\x2f\x45", [0x4007] = "\x07\x2f\x48", + [0x4008] = "\x07\x2f\x4a", [0x400b] = "\x07\x2f\x2e", + [0x400e] = "\x07\x2f\x44", [0x4011] = "\x04\x51\x21", + [0x401f] = "\x0f\x4f\x61", [0x4020] = "\x0f\x5a\x66", + [0x4021] = "\x0f\x5a\x5f", [0x4022] = "\x05\x54\x3a", + [0x4023] = "\x05\x5b\x7c", [0x4024] = "\x04\x56\x5a", + [0x4025] = "\x04\x56\x5f", [0x4026] = "\x05\x5b\x7a", + [0x4027] = "\x07\x38\x7a", [0x4028] = "\x07\x38\x6e", + [0x4029] = "\x04\x5b\x52", [0x402a] = "\x05\x5b\x7b", + [0x402b] = "\x05\x5b\x78", [0x402c] = "\x07\x38\x70", + [0x402d] = "\x07\x38\x76", [0x402e] = "\x07\x38\x6f", + [0x402f] = "\x07\x38\x79", [0x4030] = "\x07\x38\x74", + [0x4031] = "\x07\x38\x73", [0x4032] = "\x05\x62\x38", + [0x4033] = "\x07\x38\x75", [0x4034] = "\x07\x38\x7b", + [0x4035] = "\x05\x5b\x7d", [0x4036] = "\x07\x38\x77", + [0x4037] = "\x05\x55\x37", [0x4039] = "\x03\x55\x3a", + [0x403e] = "\x07\x38\x78", [0x403f] = "\x0f\x5a\x60", + [0x4040] = "\x0f\x5a\x61", [0x4041] = "\x0f\x5a\x62", + [0x4042] = "\x0f\x5a\x63", [0x4043] = "\x0f\x5a\x64", + [0x4044] = "\x0f\x5a\x65", [0x4045] = "\x0f\x5a\x67", + [0x4046] = "\x0f\x5a\x69", [0x4047] = "\x0f\x5a\x6b", + [0x4048] = "\x0f\x5a\x70", [0x4049] = "\x07\x38\x72", + [0x404a] = "\x05\x5b\x7e", [0x404c] = "\x07\x38\x7c", + [0x404d] = "\x07\x38\x71", [0x4050] = "\x0f\x55\x4e", + [0x4057] = "\x0f\x5a\x6c", [0x405a] = "\x0f\x5a\x6f", + [0x405c] = "\x0f\x55\x47", [0x405d] = "\x0f\x55\x4d", + [0x405e] = "\x0f\x5a\x5e", [0x405f] = "\x07\x2f\x35", + [0x4061] = "\x05\x62\x3f", [0x4062] = "\x05\x62\x46", + [0x4063] = "\x05\x62\x45", [0x4064] = "\x04\x5b\x5d", + [0x4065] = "\x05\x62\x3d", [0x4066] = "\x05\x62\x39", + [0x4067] = "\x05\x62\x42", [0x4068] = "\x07\x40\x40", + [0x4069] = "\x07\x40\x46", [0x406a] = "\x04\x5b\x59", + [0x406b] = "\x05\x62\x4b", [0x406c] = "\x05\x62\x44", + [0x406d] = "\x07\x40\x3c", [0x406e] = "\x05\x62\x41", + [0x406f] = "\x05\x62\x4a", [0x4070] = "\x04\x5b\x58", + [0x4071] = "\x05\x62\x43", [0x4072] = "\x07\x40\x47", + [0x4073] = "\x05\x62\x3b", [0x4074] = "\x07\x40\x41", + [0x4075] = "\x05\x62\x40", [0x4076] = "\x07\x40\x48", + [0x4077] = "\x07\x40\x3a", [0x4078] = "\x04\x5b\x5f", + [0x4079] = "\x04\x5b\x55", [0x407a] = "\x07\x40\x45", + [0x407b] = "\x07\x40\x44", [0x407c] = "\x07\x40\x3e", + [0x407d] = "\x05\x62\x3a", [0x407e] = "\x04\x5b\x53", + [0x407f] = "\x05\x62\x3c", [0x4080] = "\x05\x62\x3e", + [0x4081] = "\x05\x62\x49", [0x4082] = "\x05\x62\x4c", + [0x4083] = "\x05\x62\x47", [0x4084] = "\x07\x40\x3f", + [0x4085] = "\x04\x5b\x5c", [0x4086] = "\x07\x40\x42", + [0x4087] = "\x07\x47\x5f", [0x408a] = "\x05\x62\x4d", + [0x408e] = "\x0f\x5f\x33", [0x408f] = "\x0f\x5f\x35", + [0x4090] = "\x0f\x5f\x36", [0x4091] = "\x0f\x5f\x37", + [0x4092] = "\x0f\x5f\x39", [0x4093] = "\x0f\x5f\x3a", + [0x4094] = "\x0f\x5f\x3b", [0x4095] = "\x0f\x5f\x3c", + [0x4096] = "\x0f\x5f\x3d", [0x4097] = "\x0f\x5f\x3e", + [0x4098] = "\x0f\x5f\x3f", [0x4099] = "\x0f\x5f\x40", + [0x409a] = "\x0f\x5f\x41", [0x409b] = "\x0f\x5f\x42", + [0x409c] = "\x0f\x5f\x43", [0x409d] = "\x0f\x62\x64", + [0x409e] = "\x0f\x62\x65", [0x409f] = "\x0f\x62\x6c", + [0x40a1] = "\x07\x47\x5e", [0x40a2] = "\x07\x40\x3d", + [0x40a3] = "\x07\x40\x39", [0x40a5] = "\x07\x40\x43", + [0x40a6] = "\x07\x40\x3b", [0x40af] = "\x0f\x5f\x34", + [0x40b0] = "\x0f\x5a\x6a", [0x40b1] = "\x0f\x5a\x6e", + [0x40b2] = "\x05\x62\x48", [0x40b3] = "\x07\x47\x65", + [0x40b4] = "\x07\x47\x5c", [0x40b5] = "\x07\x47\x62", + [0x40b6] = "\x04\x5f\x7c", [0x40b7] = "\x04\x5f\x7a", + [0x40b8] = "\x07\x47\x53", [0x40b9] = "\x05\x68\x36", + [0x40ba] = "\x07\x47\x56", [0x40bb] = "\x07\x47\x54", + [0x40bd] = "\x07\x47\x5b", [0x40be] = "\x07\x47\x5a", + [0x40bf] = "\x07\x47\x55", [0x40c0] = "\x05\x68\x35", + [0x40c1] = "\x07\x47\x59", [0x40c2] = "\x07\x47\x5d", + [0x40c4] = "\x05\x6c\x45", [0x40ca] = "\x07\x47\x61", + [0x40cb] = "\x0f\x62\x66", [0x40cc] = "\x0f\x62\x67", + [0x40cd] = "\x0f\x62\x68", [0x40ce] = "\x0f\x62\x69", + [0x40cf] = "\x0f\x62\x6a", [0x40d0] = "\x0f\x62\x6d", + [0x40d1] = "\x0f\x62\x6e", [0x40d2] = "\x0f\x62\x6f", + [0x40d3] = "\x0f\x62\x70", [0x40d4] = "\x0f\x62\x71", + [0x40d5] = "\x07\x47\x57", [0x40d7] = "\x07\x47\x60", + [0x40d8] = "\x07\x47\x66", [0x40d9] = "\x07\x47\x64", + [0x40da] = "\x07\x47\x63", [0x40e3] = "\x07\x47\x58", + [0x40e9] = "\x05\x6c\x47", [0x40ea] = "\x05\x6c\x4a", + [0x40eb] = "\x05\x6c\x4b", [0x40ec] = "\x07\x4e\x2b", + [0x40ed] = "\x04\x63\x59", [0x40ef] = "\x04\x63\x5d", + [0x40f0] = "\x07\x4e\x2a", [0x40f1] = "\x07\x4e\x29", + [0x40f2] = "\x05\x6c\x48", [0x40f4] = "\x04\x63\x5c", + [0x40f5] = "\x07\x4e\x2e", [0x40f6] = "\x04\x63\x57", + [0x40f7] = "\x04\x63\x58", [0x40f8] = "\x04\x63\x56", + [0x40f9] = "\x07\x4e\x2d", [0x40fb] = "\x05\x70\x3b", + [0x40fc] = "\x05\x6c\x49", [0x40fd] = "\x05\x6c\x4c", + [0x40fe] = "\x07\x4e\x2f", [0x4105] = "\x0f\x65\x42", + [0x4106] = "\x0f\x65\x43", [0x4107] = "\x0f\x65\x44", + [0x4109] = "\x07\x4e\x2c", [0x410e] = "\x04\x66\x48", + [0x410f] = "\x05\x70\x40", [0x4110] = "\x07\x53\x56", + [0x4111] = "\x05\x70\x3f", [0x4113] = "\x05\x70\x3d", + [0x4114] = "\x04\x66\x4b", [0x4115] = "\x07\x53\x54", + [0x4116] = "\x05\x70\x3c", [0x4117] = "\x07\x53\x59", + [0x4118] = "\x07\x53\x53", [0x4119] = "\x04\x66\x4d", + [0x411a] = "\x07\x53\x5f", [0x411b] = "\x05\x70\x41", + [0x411c] = "\x07\x53\x55", [0x411d] = "\x07\x53\x5a", + [0x411e] = "\x0f\x67\x68", [0x411f] = "\x0f\x67\x69", + [0x4120] = "\x0f\x67\x6a", [0x4121] = "\x0f\x67\x6b", + [0x4122] = "\x0f\x67\x6d", [0x4123] = "\x0f\x67\x6e", + [0x4124] = "\x0f\x67\x6f", [0x4126] = "\x07\x53\x5b", + [0x4128] = "\x07\x53\x5c", [0x4129] = "\x07\x53\x5d", + [0x412a] = "\x07\x53\x5e", [0x412b] = "\x05\x70\x3a", + [0x412c] = "\x0f\x67\x70", [0x4133] = "\x0f\x69\x55", + [0x4134] = "\x07\x58\x2e", [0x4135] = "\x07\x53\x57", + [0x4136] = "\x07\x58\x2f", [0x4137] = "\x05\x73\x54", + [0x4138] = "\x05\x70\x42", [0x4139] = "\x07\x58\x2d", + [0x413a] = "\x05\x73\x55", [0x413b] = "\x07\x58\x31", + [0x413d] = "\x04\x68\x72", [0x4141] = "\x07\x58\x32", + [0x4142] = "\x0f\x69\x53", [0x4143] = "\x0f\x69\x54", + [0x4145] = "\x07\x58\x33", [0x4146] = "\x07\x58\x30", + [0x4147] = "\x07\x58\x2c", [0x414a] = "\x05\x76\x21", + [0x414b] = "\x05\x76\x22", [0x414c] = "\x07\x5b\x69", + [0x414d] = "\x07\x5b\x68", [0x414e] = "\x05\x75\x7e", + [0x4151] = "\x07\x5b\x67", [0x4152] = "\x05\x75\x7d", + [0x4158] = "\x0f\x6a\x5b", [0x4159] = "\x0f\x6a\x5c", + [0x415a] = "\x0f\x6a\x5d", [0x415b] = "\x07\x5b\x6a", + [0x415d] = "\x07\x5b\x66", [0x4160] = "\x07\x5e\x76", + [0x4161] = "\x05\x77\x67", [0x4162] = "\x07\x5e\x77", + [0x4163] = "\x04\x6c\x71", [0x4164] = "\x07\x5e\x74", + [0x4166] = "\x05\x77\x66", [0x4168] = "\x07\x5e\x75", + [0x4169] = "\x04\x6c\x72", [0x416a] = "\x07\x60\x79", + [0x416b] = "\x07\x60\x78", [0x416d] = "\x07\x60\x77", + [0x416e] = "\x0f\x6c\x2f", [0x4170] = "\x07\x62\x39", + [0x4171] = "\x04\x6d\x58", [0x4172] = "\x05\x7a\x2b", + [0x4173] = "\x05\x7a\x2a", [0x4174] = "\x04\x6d\x59", + [0x4177] = "\x04\x6d\x74", [0x4178] = "\x05\x7a\x69", + [0x4179] = "\x05\x7a\x6a", [0x417b] = "\x07\x63\x57", + [0x417c] = "\x07\x64\x4b", [0x417d] = "\x05\x7b\x41", + [0x417e] = "\x0f\x6d\x26", [0x417f] = "\x07\x65\x5c", + [0x4180] = "\x05\x7c\x3c", [0x4182] = "\x06\x23\x2f", + [0x4183] = "\x06\x25\x33", [0x4184] = "\x04\x23\x24", + [0x4185] = "\x04\x23\x25", [0x4186] = "\x06\x25\x32", + [0x4188] = "\x0f\x22\x5f", [0x4189] = "\x0f\x22\x60", + [0x418a] = "\x0f\x22\x61", [0x418b] = "\x06\x25\x34", + [0x418d] = "\x04\x24\x53", [0x418e] = "\x04\x24\x54", + [0x418f] = "\x05\x24\x54", [0x4190] = "\x06\x28\x4c", + [0x4191] = "\x05\x24\x55", [0x4192] = "\x05\x24\x57", + [0x4194] = "\x0f\x24\x6b", [0x4195] = "\x0f\x24\x6c", + [0x4196] = "\x0f\x24\x6d", [0x4197] = "\x0f\x24\x70", + [0x4198] = "\x0f\x24\x72", [0x419a] = "\x06\x28\x4b", + [0x419d] = "\x05\x26\x74", [0x419e] = "\x04\x27\x28", + [0x419f] = "\x05\x26\x75", [0x41a6] = "\x0f\x27\x6f", + [0x41a7] = "\x0f\x27\x70", [0x41a8] = "\x0f\x27\x71", + [0x41a9] = "\x0f\x27\x73", [0x41aa] = "\x0f\x27\x74", + [0x41ab] = "\x0f\x27\x75", [0x41ac] = "\x0f\x27\x76", + [0x41ad] = "\x0f\x27\x77", [0x41af] = "\x06\x2c\x5f", + [0x41b0] = "\x0f\x27\x72", [0x41b1] = "\x06\x2c\x5e", + [0x41b2] = "\x04\x27\x2a", [0x41b4] = "\x05\x24\x56", + [0x41bc] = "\x05\x2a\x25", [0x41bd] = "\x06\x32\x4c", + [0x41be] = "\x05\x2a\x26", [0x41bf] = "\x06\x32\x44", + [0x41c0] = "\x05\x2a\x27", [0x41c1] = "\x06\x32\x4b", + [0x41c7] = "\x06\x32\x46", [0x41c8] = "\x0f\x2b\x6f", + [0x41c9] = "\x0f\x2b\x70", [0x41ca] = "\x0f\x2b\x71", + [0x41cb] = "\x0f\x2b\x72", [0x41cc] = "\x0f\x2b\x73", + [0x41cd] = "\x0f\x2b\x74", [0x41ce] = "\x0f\x2b\x75", + [0x41cf] = "\x0f\x2b\x76", [0x41d0] = "\x0f\x2b\x77", + [0x41d1] = "\x0f\x2b\x78", [0x41d2] = "\x0f\x2b\x79", + [0x41d3] = "\x0f\x2b\x7b", [0x41d4] = "\x0f\x2b\x7c", + [0x41d5] = "\x0f\x2b\x7d", [0x41d6] = "\x0f\x2b\x7e", + [0x41d7] = "\x0f\x2c\x21", [0x41d8] = "\x0f\x2c\x23", + [0x41d9] = "\x04\x2a\x29", [0x41da] = "\x06\x32\x45", + [0x41db] = "\x06\x32\x43", [0x41dd] = "\x06\x32\x47", + [0x41df] = "\x06\x39\x3a", [0x41e0] = "\x05\x2a\x28", + [0x41e1] = "\x06\x32\x4a", [0x41e2] = "\x0f\x2c\x22", + [0x41eb] = "\x06\x32\x49", [0x41ef] = "\x05\x2e\x4f", + [0x41f0] = "\x05\x2e\x4e", [0x41f1] = "\x06\x39\x36", + [0x41f2] = "\x06\x39\x39", [0x41f3] = "\x0f\x30\x6a", + [0x41f4] = "\x04\x32\x6f", [0x41f5] = "\x06\x39\x37", + [0x41f6] = "\x04\x2d\x74", [0x41f7] = "\x06\x39\x34", + [0x41fd] = "\x05\x2e\x4b", [0x41fe] = "\x0f\x30\x5d", + [0x41ff] = "\x0f\x30\x5e", [0x4200] = "\x0f\x30\x5f", + [0x4201] = "\x0f\x30\x60", [0x4202] = "\x0f\x30\x61", + [0x4203] = "\x0f\x30\x62", [0x4204] = "\x0f\x30\x63", + [0x4205] = "\x0f\x30\x64", [0x4206] = "\x0f\x30\x65", + [0x4207] = "\x0f\x30\x66", [0x4208] = "\x0f\x30\x68", + [0x4209] = "\x0f\x30\x69", [0x420a] = "\x0f\x30\x6b", + [0x420b] = "\x0f\x30\x6c", [0x420c] = "\x0f\x30\x6e", + [0x420d] = "\x0f\x30\x6f", [0x420e] = "\x0f\x30\x70", + [0x420f] = "\x0f\x30\x71", [0x4210] = "\x0f\x30\x72", + [0x4211] = "\x05\x2e\x4c", [0x4212] = "\x06\x39\x35", + [0x4215] = "\x06\x39\x3b", [0x4216] = "\x06\x39\x3c", + [0x4218] = "\x0f\x30\x67", [0x421b] = "\x0f\x30\x6d", + [0x4222] = "\x06\x39\x38", [0x4223] = "\x05\x2e\x4d", + [0x4225] = "\x06\x41\x4b", [0x4226] = "\x04\x32\x74", + [0x4227] = "\x05\x33\x44", [0x4228] = "\x06\x41\x4f", + [0x4229] = "\x04\x32\x73", [0x422a] = "\x04\x32\x75", + [0x422b] = "\x06\x41\x4e", [0x422c] = "\x06\x41\x54", + [0x422d] = "\x06\x41\x51", [0x422e] = "\x06\x41\x4d", + [0x422f] = "\x06\x41\x4c", [0x4230] = "\x06\x4a\x73", + [0x4231] = "\x06\x41\x52", [0x4232] = "\x06\x41\x50", + [0x4239] = "\x06\x41\x53", [0x423a] = "\x0f\x36\x24", + [0x423b] = "\x0f\x36\x3e", [0x423c] = "\x0f\x36\x3f", + [0x423d] = "\x0f\x36\x40", [0x423e] = "\x0f\x36\x41", + [0x423f] = "\x0f\x36\x43", [0x4240] = "\x0f\x36\x44", + [0x4241] = "\x0f\x36\x45", [0x4242] = "\x0f\x36\x46", + [0x4243] = "\x0f\x36\x47", [0x4244] = "\x0f\x36\x49", + [0x4245] = "\x0f\x36\x4a", [0x4246] = "\x0f\x36\x4c", + [0x4247] = "\x0f\x36\x4d", [0x4248] = "\x0f\x36\x4e", + [0x4249] = "\x0f\x36\x50", [0x424a] = "\x06\x41\x49", + [0x4251] = "\x06\x41\x48", [0x4259] = "\x0f\x36\x4b", + [0x425d] = "\x05\x33\x43", [0x425f] = "\x05\x33\x45", + [0x4261] = "\x06\x41\x55", [0x4262] = "\x04\x38\x69", + [0x4263] = "\x06\x4a\x78", [0x4264] = "\x06\x41\x4a", + [0x4265] = "\x05\x39\x71", [0x4266] = "\x05\x39\x6f", + [0x4267] = "\x06\x4a\x7e", [0x4269] = "\x06\x4b\x21", + [0x426a] = "\x05\x39\x6e", [0x426b] = "\x06\x4a\x75", + [0x426c] = "\x04\x38\x66", [0x426d] = "\x06\x4a\x7a", + [0x426e] = "\x06\x4a\x74", [0x426f] = "\x06\x4a\x7d", + [0x4279] = "\x04\x38\x63", [0x427a] = "\x05\x39\x70", + [0x427b] = "\x06\x4a\x77", [0x427c] = "\x0f\x3c\x5e", + [0x427d] = "\x0f\x3c\x5f", [0x427e] = "\x0f\x3c\x60", + [0x427f] = "\x0f\x3c\x61", [0x4280] = "\x0f\x3c\x62", + [0x4281] = "\x0f\x3c\x63", [0x4282] = "\x0f\x3c\x64", + [0x4283] = "\x0f\x3c\x66", [0x4284] = "\x0f\x3c\x67", + [0x4285] = "\x0f\x3c\x68", [0x4286] = "\x0f\x3c\x69", + [0x4287] = "\x0f\x3c\x6b", [0x4288] = "\x0f\x3c\x6c", + [0x4289] = "\x0f\x3c\x6d", [0x428a] = "\x0f\x3c\x6e", + [0x428b] = "\x0f\x3c\x6f", [0x428c] = "\x0f\x3c\x70", + [0x428d] = "\x0f\x3c\x71", [0x428e] = "\x0f\x3c\x72", + [0x428f] = "\x0f\x3c\x75", [0x4290] = "\x0f\x3c\x77", + [0x4291] = "\x0f\x3c\x78", [0x4292] = "\x0f\x3c\x79", + [0x4293] = "\x0f\x3c\x7a", [0x4294] = "\x0f\x3c\x7b", + [0x4295] = "\x0f\x3c\x7c", [0x4296] = "\x0f\x3d\x21", + [0x4297] = "\x06\x4a\x79", [0x4298] = "\x06\x4a\x7c", + [0x4299] = "\x04\x38\x67", [0x429b] = "\x06\x4a\x76", + [0x429c] = "\x06\x4a\x7b", [0x42a5] = "\x0f\x3c\x6a", + [0x42af] = "\x05\x39\x72", [0x42b2] = "\x05\x40\x34", + [0x42b4] = "\x06\x54\x5a", [0x42b5] = "\x06\x54\x58", + [0x42b6] = "\x05\x40\x30", [0x42b7] = "\x06\x54\x56", + [0x42b8] = "\x06\x54\x5d", [0x42b9] = "\x04\x3e\x47", + [0x42ba] = "\x06\x54\x57", [0x42bb] = "\x04\x3e\x44", + [0x42bc] = "\x06\x54\x5b", [0x42bd] = "\x06\x54\x5e", + [0x42be] = "\x04\x3e\x45", [0x42bf] = "\x05\x40\x32", + [0x42c0] = "\x06\x54\x53", [0x42c1] = "\x06\x54\x63", + [0x42c2] = "\x06\x54\x5f", [0x42c3] = "\x06\x54\x64", + [0x42c4] = "\x05\x40\x35", [0x42c6] = "\x06\x54\x5c", + [0x42c7] = "\x06\x54\x62", [0x42cb] = "\x0f\x42\x76", + [0x42cc] = "\x0f\x42\x79", [0x42cd] = "\x0f\x42\x7b", + [0x42ce] = "\x0f\x42\x7c", [0x42cf] = "\x0f\x42\x7d", + [0x42d0] = "\x0f\x43\x21", [0x42d1] = "\x0f\x43\x22", + [0x42d2] = "\x0f\x43\x23", [0x42d3] = "\x0f\x43\x25", + [0x42d4] = "\x0f\x43\x26", [0x42d5] = "\x0f\x43\x27", + [0x42d6] = "\x0f\x43\x28", [0x42d7] = "\x0f\x43\x29", + [0x42d8] = "\x0f\x43\x2a", [0x42d9] = "\x0f\x43\x2b", + [0x42da] = "\x0f\x43\x2d", [0x42db] = "\x0f\x43\x2e", + [0x42dc] = "\x0f\x43\x30", [0x42dd] = "\x0f\x43\x33", + [0x42de] = "\x0f\x43\x34", [0x42df] = "\x0f\x43\x35", + [0x42e0] = "\x0f\x43\x36", [0x42e1] = "\x0f\x43\x37", + [0x42e2] = "\x0f\x43\x38", [0x42e3] = "\x0f\x43\x39", + [0x42e4] = "\x0f\x43\x3a", [0x42e5] = "\x0f\x43\x3b", + [0x42e6] = "\x0f\x43\x3d", [0x42e7] = "\x0f\x43\x3e", + [0x42e8] = "\x06\x54\x51", [0x42e9] = "\x06\x54\x52", + [0x42ea] = "\x06\x54\x55", [0x42ec] = "\x06\x54\x66", + [0x42ef] = "\x04\x3e\x4a", [0x42f0] = "\x06\x54\x61", + [0x42f1] = "\x06\x54\x65", [0x42f3] = "\x06\x5a\x54", + [0x42fa] = "\x0f\x43\x2c", [0x4301] = "\x05\x40\x33", + [0x4303] = "\x05\x40\x31", [0x4307] = "\x0f\x49\x54", + [0x4308] = "\x06\x5e\x51", [0x4309] = "\x06\x5e\x50", + [0x430a] = "\x05\x46\x7e", [0x430b] = "\x06\x5e\x4a", + [0x430c] = "\x05\x47\x22", [0x430d] = "\x04\x44\x55", + [0x430e] = "\x05\x46\x7c", [0x430f] = "\x05\x46\x7b", + [0x4310] = "\x05\x46\x7a", [0x4311] = "\x07\x24\x70", + [0x4312] = "\x07\x24\x6a", [0x4313] = "\x06\x5e\x46", + [0x4314] = "\x05\x47\x21", [0x4315] = "\x06\x5e\x47", + [0x4316] = "\x06\x5e\x48", [0x431b] = "\x05\x46\x79", + [0x431c] = "\x06\x5e\x4b", [0x431d] = "\x06\x5e\x4f", + [0x431e] = "\x0f\x49\x44", [0x431f] = "\x0f\x49\x45", + [0x4320] = "\x0f\x49\x46", [0x4321] = "\x0f\x49\x47", + [0x4322] = "\x0f\x49\x49", [0x4323] = "\x0f\x49\x4a", + [0x4324] = "\x0f\x49\x4c", [0x4325] = "\x0f\x49\x4d", + [0x4326] = "\x0f\x49\x4e", [0x4327] = "\x0f\x49\x4f", + [0x4328] = "\x0f\x49\x50", [0x4329] = "\x0f\x49\x51", + [0x432a] = "\x0f\x49\x52", [0x432b] = "\x0f\x49\x53", + [0x432c] = "\x0f\x49\x55", [0x432d] = "\x0f\x49\x56", + [0x432e] = "\x0f\x49\x57", [0x432f] = "\x0f\x49\x5a", + [0x4330] = "\x0f\x49\x5b", [0x4331] = "\x0f\x49\x5d", + [0x4332] = "\x0f\x49\x5e", [0x4333] = "\x0f\x49\x60", + [0x4334] = "\x0f\x49\x62", [0x4335] = "\x0f\x49\x63", + [0x4336] = "\x0f\x49\x64", [0x4338] = "\x04\x44\x5d", + [0x4339] = "\x05\x46\x7d", [0x433a] = "\x06\x5e\x4c", + [0x433b] = "\x06\x5e\x52", [0x433c] = "\x06\x5e\x49", + [0x433d] = "\x06\x5e\x4d", [0x4348] = "\x0f\x49\x5c", + [0x434d] = "\x06\x54\x60", [0x434e] = "\x0f\x42\x7e", + [0x434f] = "\x0f\x42\x7a", [0x4350] = "\x04\x4a\x6b", + [0x4353] = "\x05\x4e\x2c", [0x4354] = "\x07\x24\x74", + [0x4355] = "\x07\x24\x6d", [0x4356] = "\x07\x24\x69", + [0x4357] = "\x05\x4e\x2a", [0x4358] = "\x07\x24\x6c", + [0x4359] = "\x07\x24\x71", [0x435a] = "\x07\x24\x72", + [0x435b] = "\x07\x24\x75", [0x435c] = "\x07\x24\x6b", + [0x435d] = "\x05\x4e\x29", [0x4362] = "\x0f\x4e\x22", + [0x4366] = "\x05\x4e\x2b", [0x4367] = "\x07\x24\x73", + [0x4368] = "\x0f\x50\x23", [0x4369] = "\x0f\x50\x24", + [0x436a] = "\x0f\x50\x26", [0x436b] = "\x0f\x50\x27", + [0x436c] = "\x0f\x50\x28", [0x436d] = "\x0f\x50\x29", + [0x436e] = "\x0f\x50\x2a", [0x436f] = "\x0f\x50\x2b", + [0x4370] = "\x0f\x50\x2e", [0x4371] = "\x0f\x50\x2f", + [0x4372] = "\x0f\x50\x31", [0x4373] = "\x0f\x50\x32", + [0x4374] = "\x0f\x50\x33", [0x4375] = "\x0f\x50\x34", + [0x4376] = "\x0f\x50\x35", [0x4377] = "\x0f\x50\x37", + [0x4378] = "\x0f\x50\x38", [0x4379] = "\x0f\x50\x39", + [0x437a] = "\x0f\x50\x3a", [0x437b] = "\x0f\x50\x3b", + [0x437c] = "\x0f\x50\x3c", [0x437e] = "\x07\x24\x6e", + [0x437f] = "\x0f\x50\x2c", [0x4382] = "\x07\x2a\x71", + [0x4384] = "\x0f\x50\x2d", [0x4385] = "\x0f\x50\x30", + [0x438c] = "\x0f\x50\x25", [0x4396] = "\x0f\x50\x22", + [0x4397] = "\x05\x4e\x2e", [0x4398] = "\x05\x4e\x2d", + [0x439a] = "\x06\x5e\x4e", [0x439d] = "\x04\x51\x2a", + [0x439e] = "\x07\x2f\x52", [0x439f] = "\x07\x2f\x66", + [0x43a0] = "\x07\x2f\x50", [0x43a1] = "\x07\x2f\x60", + [0x43a2] = "\x07\x2f\x5e", [0x43a3] = "\x05\x55\x3b", + [0x43a4] = "\x04\x51\x27", [0x43a5] = "\x07\x2f\x61", + [0x43a6] = "\x07\x2f\x63", [0x43a7] = "\x07\x2f\x55", + [0x43a8] = "\x07\x24\x6f", [0x43a9] = "\x04\x51\x28", + [0x43aa] = "\x07\x2f\x56", [0x43ab] = "\x07\x2f\x64", + [0x43ac] = "\x07\x2f\x65", [0x43ad] = "\x04\x51\x26", + [0x43ae] = "\x07\x2f\x58", [0x43af] = "\x07\x2f\x54", + [0x43b0] = "\x04\x51\x29", [0x43b1] = "\x07\x2f\x67", + [0x43b2] = "\x05\x55\x3a", [0x43b3] = "\x05\x55\x3c", + [0x43b4] = "\x07\x2f\x62", [0x43b5] = "\x07\x2f\x59", + [0x43b7] = "\x07\x2f\x5d", [0x43b8] = "\x07\x2f\x5a", + [0x43be] = "\x07\x2f\x4b", [0x43bf] = "\x07\x2f\x53", + [0x43c0] = "\x07\x2f\x5c", [0x43c1] = "\x0f\x55\x59", + [0x43c2] = "\x0f\x55\x5a", [0x43c3] = "\x0f\x55\x5b", + [0x43c4] = "\x0f\x55\x5c", [0x43c5] = "\x0f\x55\x5d", + [0x43c6] = "\x0f\x55\x5e", [0x43c7] = "\x0f\x55\x5f", + [0x43c8] = "\x0f\x55\x60", [0x43c9] = "\x0f\x55\x61", + [0x43ca] = "\x0f\x55\x62", [0x43cb] = "\x0f\x55\x63", + [0x43cc] = "\x0f\x55\x66", [0x43cd] = "\x0f\x55\x67", + [0x43ce] = "\x0f\x55\x68", [0x43cf] = "\x0f\x55\x6a", + [0x43d0] = "\x0f\x55\x6b", [0x43d1] = "\x0f\x55\x6d", + [0x43d2] = "\x0f\x55\x6e", [0x43d3] = "\x0f\x55\x70", + [0x43d4] = "\x0f\x55\x71", [0x43d5] = "\x0f\x55\x72", + [0x43d7] = "\x0f\x55\x65", [0x43d8] = "\x05\x55\x38", + [0x43d9] = "\x07\x2f\x4d", [0x43da] = "\x07\x2f\x4e", + [0x43db] = "\x07\x2f\x5b", [0x43dd] = "\x07\x2f\x5f", + [0x43de] = "\x07\x31\x7a", [0x43df] = "\x07\x2f\x51", + [0x43e0] = "\x07\x2c\x7b", [0x43e9] = "\x0f\x55\x6f", + [0x43ed] = "\x05\x55\x3d", [0x43ee] = "\x05\x55\x39", + [0x43ef] = "\x07\x2f\x4c", [0x43f0] = "\x07\x24\x76", + [0x43f4] = "\x07\x2f\x57", [0x43f5] = "\x07\x39\x23", + [0x43f6] = "\x04\x56\x61", [0x43f7] = "\x07\x39\x25", + [0x43f8] = "\x05\x55\x3e", [0x43f9] = "\x07\x39\x29", + [0x43fa] = "\x07\x39\x28", [0x43fb] = "\x04\x56\x63", + [0x43fc] = "\x07\x2f\x68", [0x43fd] = "\x05\x5c\x21", + [0x43fe] = "\x07\x38\x7d", [0x43ff] = "\x05\x5c\x24", + [0x4400] = "\x05\x5c\x22", [0x4404] = "\x0f\x5a\x71", + [0x4405] = "\x0f\x5a\x72", [0x4406] = "\x0f\x5a\x76", + [0x4407] = "\x0f\x5a\x77", [0x4408] = "\x0f\x5a\x78", + [0x4409] = "\x0f\x5a\x79", [0x440a] = "\x0f\x5a\x7a", + [0x440b] = "\x0f\x5a\x7b", [0x440c] = "\x0f\x5a\x7c", + [0x440d] = "\x0f\x5a\x7d", [0x440e] = "\x0f\x5a\x7e", + [0x440f] = "\x0f\x5b\x21", [0x4410] = "\x0f\x5b\x22", + [0x4411] = "\x0f\x5b\x23", [0x4412] = "\x07\x38\x7e", + [0x4415] = "\x07\x39\x24", [0x4417] = "\x07\x39\x22", + [0x441e] = "\x05\x5c\x23", [0x441f] = "\x07\x39\x21", + [0x4422] = "\x0f\x55\x69", [0x4426] = "\x07\x40\x4f", + [0x4427] = "\x04\x5b\x62", [0x4428] = "\x07\x40\x4e", + [0x4429] = "\x05\x62\x4e", [0x442a] = "\x07\x40\x4b", + [0x442b] = "\x07\x40\x53", [0x442c] = "\x07\x40\x51", + [0x442d] = "\x07\x40\x4c", [0x442f] = "\x04\x5b\x63", + [0x4430] = "\x05\x62\x4f", [0x4431] = "\x05\x62\x50", + [0x4432] = "\x04\x5b\x61", [0x4433] = "\x07\x40\x54", + [0x4437] = "\x07\x40\x4a", [0x4438] = "\x07\x40\x52", + [0x4439] = "\x0f\x5f\x44", [0x443a] = "\x0f\x5f\x46", + [0x443b] = "\x0f\x5f\x45", [0x443c] = "\x0f\x5f\x47", + [0x443d] = "\x0f\x5f\x48", [0x443e] = "\x0f\x5f\x49", + [0x443f] = "\x0f\x5f\x4a", [0x4440] = "\x0f\x5f\x4c", + [0x4441] = "\x0f\x5f\x4d", [0x4442] = "\x07\x40\x50", + [0x4443] = "\x07\x42\x22", [0x4445] = "\x07\x40\x55", + [0x4446] = "\x07\x40\x4d", [0x444a] = "\x07\x40\x49", + [0x444b] = "\x07\x39\x2a", [0x444e] = "\x0f\x61\x76", + [0x444f] = "\x0f\x5a\x74", [0x4450] = "\x0f\x5a\x75", + [0x4452] = "\x07\x47\x6c", [0x4453] = "\x05\x68\x37", + [0x4454] = "\x04\x60\x21", [0x4456] = "\x07\x47\x6d", + [0x4457] = "\x04\x60\x22", [0x445c] = "\x07\x47\x6a", + [0x445d] = "\x0f\x62\x74", [0x445e] = "\x0f\x62\x75", + [0x445f] = "\x0f\x62\x76", [0x4460] = "\x0f\x62\x77", + [0x4462] = "\x07\x47\x69", [0x4467] = "\x07\x47\x67", + [0x4468] = "\x07\x47\x6b", [0x4470] = "\x0f\x5f\x4b", + [0x4471] = "\x07\x47\x68", [0x4472] = "\x0f\x65\x45", + [0x4473] = "\x05\x6c\x4f", [0x4474] = "\x07\x4e\x30", + [0x4475] = "\x07\x4e\x33", [0x4476] = "\x07\x4e\x3b", + [0x4477] = "\x05\x6c\x4e", [0x4478] = "\x05\x6c\x4d", + [0x4479] = "\x05\x6c\x51", [0x447a] = "\x04\x60\x23", + [0x447c] = "\x07\x4e\x32", [0x447d] = "\x07\x4e\x38", + [0x447e] = "\x04\x63\x62", [0x447f] = "\x04\x63\x60", + [0x4480] = "\x07\x4e\x3c", [0x4481] = "\x07\x4e\x31", + [0x4482] = "\x07\x4e\x35", [0x4486] = "\x07\x4e\x37", + [0x4488] = "\x0f\x65\x48", [0x4489] = "\x07\x4e\x34", + [0x448a] = "\x0f\x65\x46", [0x448b] = "\x0f\x65\x47", + [0x448c] = "\x0f\x65\x4a", [0x448d] = "\x0f\x65\x4b", + [0x448e] = "\x0f\x65\x4c", [0x448f] = "\x0f\x65\x4d", + [0x4490] = "\x0f\x65\x4e", [0x4493] = "\x07\x4e\x39", + [0x4497] = "\x07\x4e\x36", [0x449c] = "\x07\x4e\x3a", + [0x449e] = "\x05\x6c\x50", [0x44a1] = "\x07\x53\x64", + [0x44a2] = "\x04\x63\x61", [0x44a3] = "\x07\x53\x66", + [0x44a4] = "\x05\x70\x43", [0x44a6] = "\x04\x66\x4f", + [0x44a7] = "\x07\x53\x67", [0x44ab] = "\x07\x53\x62", + [0x44ac] = "\x07\x53\x63", [0x44ae] = "\x07\x53\x65", + [0x44b3] = "\x0f\x67\x71", [0x44b5] = "\x0f\x67\x72", + [0x44b6] = "\x0f\x67\x73", [0x44b7] = "\x0f\x67\x74", + [0x44b8] = "\x0f\x67\x75", [0x44ba] = "\x07\x58\x36", + [0x44bb] = "\x05\x73\x56", [0x44bc] = "\x04\x6a\x4f", + [0x44bd] = "\x07\x58\x37", [0x44be] = "\x07\x58\x38", + [0x44c0] = "\x07\x58\x34", [0x44c1] = "\x0f\x69\x56", + [0x44c2] = "\x0f\x69\x57", [0x44c3] = "\x0f\x69\x58", + [0x44c4] = "\x07\x58\x35", [0x44c5] = "\x07\x5b\x24", + [0x44c8] = "\x07\x5b\x6e", [0x44c9] = "\x07\x5b\x70", + [0x44ca] = "\x07\x5b\x6d", [0x44cf] = "\x07\x5c\x44", + [0x44d0] = "\x07\x5b\x6f", [0x44d2] = "\x07\x5b\x6c", + [0x44d4] = "\x07\x5b\x6b", [0x44d5] = "\x05\x76\x23", + [0x44d6] = "\x0f\x6a\x60", [0x44d7] = "\x07\x5e\x78", + [0x44d9] = "\x0f\x6a\x5f", [0x44da] = "\x05\x77\x68", + [0x44dc] = "\x07\x61\x21", [0x44dd] = "\x07\x60\x7c", + [0x44de] = "\x07\x60\x7e", [0x44df] = "\x07\x61\x38", + [0x44e0] = "\x07\x60\x7b", [0x44e1] = "\x07\x60\x7d", + [0x44e5] = "\x07\x62\x3a", [0x44e6] = "\x05\x7a\x6b", + [0x44e7] = "\x0f\x6c\x64", [0x44e8] = "\x0f\x6c\x65", + [0x44ea] = "\x07\x64\x4d", [0x44eb] = "\x07\x64\x4c", + [0x44ec] = "\x07\x64\x4e", [0x44ed] = "\x07\x65\x37", + [0x44ee] = "\x07\x66\x34", [0x44ef] = "\x05\x21\x4b", + [0x44f1] = "\x06\x23\x30", [0x44f2] = "\x06\x28\x4d", + [0x44f3] = "\x06\x28\x4e", [0x44f4] = "\x05\x24\x58", + [0x44f6] = "\x06\x2c\x62", [0x44f7] = "\x06\x2c\x61", + [0x44f8] = "\x06\x2c\x63", [0x44fb] = "\x0f\x27\x78", + [0x44fc] = "\x0f\x27\x79", [0x44fd] = "\x06\x32\x4e", + [0x44fe] = "\x05\x2a\x2b", [0x4500] = "\x05\x2a\x29", + [0x4501] = "\x06\x32\x4f", [0x4502] = "\x05\x2a\x2a", + [0x4503] = "\x06\x32\x51", [0x4504] = "\x0f\x2c\x24", + [0x4505] = "\x0f\x2c\x25", [0x4506] = "\x0f\x2c\x26", + [0x4507] = "\x06\x32\x4d", [0x450a] = "\x06\x32\x50", + [0x450c] = "\x05\x2e\x51", [0x450e] = "\x05\x2e\x50", + [0x450f] = "\x0f\x30\x73", [0x4510] = "\x06\x41\x57", + [0x4511] = "\x06\x41\x56", [0x4512] = "\x06\x41\x58", + [0x4513] = "\x0f\x36\x51", [0x4514] = "\x04\x38\x6a", + [0x4515] = "\x06\x4b\x22", [0x4517] = "\x06\x47\x43", + [0x4518] = "\x06\x4d\x5d", [0x451c] = "\x06\x54\x68", + [0x4520] = "\x06\x54\x69", [0x4522] = "\x06\x5e\x53", + [0x4523] = "\x05\x47\x23", [0x4524] = "\x06\x5e\x56", + [0x4525] = "\x06\x5e\x55", [0x4526] = "\x06\x5e\x54", + [0x4527] = "\x07\x24\x7a", [0x4528] = "\x05\x4e\x2f", + [0x4529] = "\x07\x24\x77", [0x452a] = "\x07\x24\x79", + [0x452c] = "\x07\x24\x78", [0x452e] = "\x07\x2f\x69", + [0x4530] = "\x07\x2f\x6a", [0x4531] = "\x05\x55\x3f", + [0x4532] = "\x04\x56\x65", [0x4533] = "\x0f\x5b\x24", + [0x4534] = "\x0f\x5b\x25", [0x4535] = "\x0f\x5b\x26", + [0x4538] = "\x0f\x55\x73", [0x4539] = "\x07\x40\x56", + [0x4540] = "\x05\x68\x38", [0x4542] = "\x0f\x65\x4f", + [0x4543] = "\x0f\x65\x50", [0x4545] = "\x07\x4e\x3d", + [0x4548] = "\x07\x53\x68", [0x4549] = "\x07\x5b\x71", + [0x454b] = "\x07\x5e\x79", [0x454d] = "\x07\x61\x22", + [0x454e] = "\x0f\x24\x73", [0x454f] = "\x0f\x24\x74", + [0x4550] = "\x06\x2c\x64", [0x4551] = "\x06\x2c\x65", + [0x4553] = "\x06\x41\x59", [0x4555] = "\x06\x41\x5a", + [0x4556] = "\x0f\x3d\x22", [0x4557] = "\x0f\x3d\x23", + [0x4558] = "\x06\x54\x6a", [0x4559] = "\x0f\x49\x65", + [0x455a] = "\x05\x47\x24", [0x455b] = "\x05\x55\x40", + [0x455c] = "\x0f\x21\x68", [0x455d] = "\x06\x2b\x6b", + [0x455e] = "\x05\x2a\x2c", [0x455f] = "\x04\x2a\x2b", + [0x4560] = "\x04\x2d\x77", [0x4561] = "\x0f\x30\x74", + [0x4562] = "\x05\x31\x6c", [0x4563] = "\x06\x4b\x23", + [0x4564] = "\x06\x54\x6c", [0x4565] = "\x06\x54\x6b", + [0x4566] = "\x05\x55\x41", [0x4567] = "\x07\x24\x7b", + [0x4568] = "\x07\x24\x7c", [0x4569] = "\x05\x55\x42", + [0x456a] = "\x06\x22\x25", [0x456b] = "\x06\x23\x31", + [0x456d] = "\x06\x25\x35", [0x456e] = "\x06\x28\x4f", + [0x456f] = "\x04\x27\x2d", [0x4570] = "\x06\x2c\x67", + [0x4571] = "\x06\x2c\x66", [0x4572] = "\x06\x32\x52", + [0x4573] = "\x04\x2a\x2d", [0x4574] = "\x06\x32\x53", + [0x4575] = "\x06\x32\x54", [0x4576] = "\x06\x39\x3e", + [0x4577] = "\x04\x2d\x78", [0x4579] = "\x0f\x30\x75", + [0x457a] = "\x06\x39\x3d", [0x457b] = "\x06\x41\x5b", + [0x457c] = "\x06\x41\x5e", [0x457d] = "\x06\x41\x5d", + [0x457e] = "\x04\x32\x78", [0x4581] = "\x06\x41\x5c", + [0x4582] = "\x0f\x36\x52", [0x4583] = "\x0f\x36\x53", + [0x4585] = "\x06\x4b\x28", [0x4586] = "\x06\x4b\x24", + [0x4587] = "\x06\x4b\x26", [0x4588] = "\x06\x4b\x27", + [0x4589] = "\x06\x4b\x29", [0x458a] = "\x06\x4b\x25", + [0x458b] = "\x06\x4d\x58", [0x458c] = "\x06\x54\x6d", + [0x458d] = "\x06\x54\x6e", [0x458e] = "\x0f\x43\x3f", + [0x458f] = "\x06\x5e\x58", [0x4590] = "\x06\x5e\x59", + [0x4591] = "\x0f\x49\x66", [0x4593] = "\x07\x24\x7d", + [0x4594] = "\x0f\x50\x3e", [0x4595] = "\x07\x24\x7e", + [0x4596] = "\x05\x55\x43", [0x4597] = "\x05\x62\x51", + [0x4598] = "\x04\x51\x2c", [0x4599] = "\x07\x2f\x6b", + [0x459a] = "\x07\x25\x21", [0x459b] = "\x05\x55\x44", + [0x459c] = "\x07\x39\x2b", [0x459d] = "\x07\x39\x2c", + [0x459e] = "\x05\x5c\x25", [0x45a0] = "\x07\x47\x70", + [0x45a2] = "\x05\x6c\x52", [0x45a3] = "\x07\x58\x39", + [0x45a4] = "\x07\x5b\x72", [0x45a5] = "\x07\x63\x58", + [0x45a6] = "\x05\x7b\x42", [0x45a7] = "\x07\x64\x4f", + [0x45a8] = "\x0f\x21\x69", [0x45a9] = "\x06\x28\x51", + [0x45aa] = "\x05\x24\x59", [0x45ab] = "\x06\x28\x50", + [0x45ac] = "\x04\x27\x2e", [0x45ad] = "\x06\x2c\x6b", + [0x45ae] = "\x06\x2c\x6a", [0x45af] = "\x06\x2c\x69", + [0x45b0] = "\x06\x2c\x68", [0x45b1] = "\x06\x32\x56", + [0x45b2] = "\x06\x32\x55", [0x45b3] = "\x05\x2a\x2d", + [0x45b4] = "\x06\x32\x57", [0x45b7] = "\x05\x2a\x2e", + [0x45ba] = "\x05\x2e\x52", [0x45bb] = "\x04\x2d\x79", + [0x45bc] = "\x04\x2d\x7b", [0x45bd] = "\x06\x39\x41", + [0x45be] = "\x06\x39\x3f", [0x45c0] = "\x05\x33\x46", + [0x45c1] = "\x05\x33\x47", [0x45c2] = "\x06\x41\x5f", + [0x45c4] = "\x06\x41\x62", [0x45c5] = "\x06\x41\x60", + [0x45c7] = "\x06\x4b\x2b", [0x45c8] = "\x04\x38\x6d", + [0x45c9] = "\x06\x4b\x2e", [0x45ca] = "\x06\x4b\x2a", + [0x45cb] = "\x06\x4b\x2c", [0x45cc] = "\x06\x4b\x2d", + [0x45cd] = "\x05\x39\x73", [0x45ce] = "\x05\x39\x76", + [0x45cf] = "\x05\x39\x74", [0x45d1] = "\x05\x39\x75", + [0x45d7] = "\x04\x38\x6e", [0x45d8] = "\x05\x40\x38", + [0x45d9] = "\x06\x54\x6f", [0x45da] = "\x04\x3e\x4d", + [0x45db] = "\x05\x40\x36", [0x45dc] = "\x05\x40\x37", + [0x45e0] = "\x06\x54\x70", [0x45e1] = "\x0f\x3d\x24", + [0x45e2] = "\x05\x47\x25", [0x45e3] = "\x06\x5e\x5b", + [0x45e5] = "\x06\x5e\x5c", [0x45e6] = "\x06\x5e\x5a", + [0x45e7] = "\x0f\x49\x67", [0x45e8] = "\x05\x4e\x32", + [0x45e9] = "\x07\x25\x25", [0x45ea] = "\x05\x4e\x31", + [0x45eb] = "\x05\x4e\x30", [0x45ec] = "\x05\x4e\x33", + [0x45ed] = "\x07\x25\x24", [0x45ee] = "\x07\x25\x22", + [0x45ef] = "\x05\x4e\x34", [0x45f1] = "\x07\x25\x23", + [0x45f3] = "\x05\x55\x46", [0x45f4] = "\x05\x55\x47", + [0x45f5] = "\x05\x55\x48", [0x45f6] = "\x07\x2f\x6d", + [0x45f7] = "\x05\x55\x45", [0x45f8] = "\x07\x2f\x6c", + [0x45fa] = "\x05\x5c\x26", [0x45fb] = "\x04\x56\x66", + [0x45fc] = "\x0f\x5b\x27", [0x45fd] = "\x0f\x5b\x28", + [0x45ff] = "\x05\x62\x53", [0x4600] = "\x05\x62\x52", + [0x4603] = "\x05\x6c\x53", [0x4604] = "\x07\x53\x69", + [0x4605] = "\x05\x23\x68", [0x4608] = "\x06\x39\x43", + [0x4609] = "\x06\x39\x42", [0x460c] = "\x04\x38\x6f", + [0x460d] = "\x06\x4b\x2f", [0x460e] = "\x0f\x3d\x25", + [0x460f] = "\x0f\x3d\x26", [0x4610] = "\x06\x54\x71", + [0x4611] = "\x06\x5e\x5d", [0x4614] = "\x05\x21\x75", + [0x4615] = "\x0f\x22\x63", [0x4616] = "\x06\x25\x36", + [0x4617] = "\x0f\x22\x62", [0x4618] = "\x06\x28\x53", + [0x4619] = "\x0f\x24\x75", [0x461a] = "\x06\x28\x52", + [0x461b] = "\x06\x28\x54", [0x461c] = "\x05\x26\x79", + [0x461d] = "\x05\x27\x22", [0x461e] = "\x05\x26\x78", + [0x461f] = "\x05\x26\x7b", [0x4620] = "\x05\x26\x76", + [0x4621] = "\x05\x26\x7d", [0x4622] = "\x06\x2c\x6e", + [0x4623] = "\x04\x27\x30", [0x4624] = "\x05\x27\x21", + [0x4625] = "\x06\x2c\x6c", [0x4626] = "\x05\x26\x7e", + [0x4627] = "\x05\x27\x23", [0x462b] = "\x05\x26\x7c", + [0x462c] = "\x06\x2c\x6d", [0x462d] = "\x0f\x27\x7b", + [0x462e] = "\x0f\x27\x7c", [0x462f] = "\x0f\x27\x7e", + [0x4630] = "\x0f\x28\x21", [0x4632] = "\x05\x26\x7a", + [0x4633] = "\x06\x2c\x6f", [0x4634] = "\x06\x2c\x70", + [0x4638] = "\x05\x2a\x32", [0x4639] = "\x05\x2a\x30", + [0x463a] = "\x05\x2a\x2f", [0x463b] = "\x06\x32\x5f", + [0x463c] = "\x06\x32\x5c", [0x463d] = "\x05\x2a\x33", + [0x463e] = "\x05\x2a\x31", [0x463f] = "\x04\x2a\x30", + [0x4640] = "\x06\x32\x5a", [0x4642] = "\x06\x32\x59", + [0x4643] = "\x0f\x2c\x28", [0x4644] = "\x0f\x2c\x29", + [0x4649] = "\x06\x32\x5b", [0x464a] = "\x06\x32\x5e", + [0x464c] = "\x06\x32\x58", [0x464d] = "\x06\x32\x5d", + [0x464f] = "\x05\x2a\x34", [0x4650] = "\x0f\x27\x7d", + [0x4651] = "\x05\x2e\x58", [0x4652] = "\x05\x2e\x54", + [0x4653] = "\x05\x2e\x56", [0x4654] = "\x05\x2e\x57", + [0x4655] = "\x05\x2e\x55", [0x4657] = "\x06\x39\x44", + [0x4658] = "\x05\x2e\x59", [0x465b] = "\x04\x32\x7b", + [0x465c] = "\x06\x41\x67", [0x465d] = "\x06\x41\x68", + [0x465e] = "\x05\x33\x49", [0x465f] = "\x05\x39\x77", + [0x4660] = "\x04\x32\x7d", [0x4661] = "\x04\x32\x7c", + [0x4662] = "\x05\x33\x4b", [0x4664] = "\x05\x33\x4c", + [0x4666] = "\x0f\x36\x54", [0x4667] = "\x0f\x36\x55", + [0x4668] = "\x06\x41\x65", [0x466a] = "\x06\x41\x69", + [0x466b] = "\x06\x41\x64", [0x466d] = "\x05\x33\x48", + [0x4670] = "\x04\x38\x71", [0x4671] = "\x04\x38\x74", + [0x4672] = "\x05\x39\x7d", [0x4673] = "\x06\x4b\x34", + [0x4674] = "\x05\x39\x79", [0x4675] = "\x05\x39\x7b", + [0x4677] = "\x05\x39\x78", [0x4678] = "\x06\x4b\x32", + [0x4679] = "\x06\x4b\x35", [0x467a] = "\x0f\x3d\x27", + [0x467b] = "\x0f\x3d\x28", [0x4682] = "\x06\x4b\x33", + [0x4683] = "\x06\x4b\x30", [0x4684] = "\x06\x4b\x31", + [0x4688] = "\x05\x39\x7a", [0x4689] = "\x05\x39\x7c", + [0x468a] = "\x05\x33\x4a", [0x468b] = "\x0f\x3d\x29", + [0x468c] = "\x06\x4b\x36", [0x468d] = "\x05\x47\x2b", + [0x468e] = "\x05\x40\x3e", [0x468f] = "\x05\x40\x3c", + [0x4690] = "\x04\x3e\x50", [0x4691] = "\x06\x5e\x64", + [0x4692] = "\x06\x54\x73", [0x4693] = "\x05\x47\x26", + [0x4694] = "\x06\x54\x72", [0x4695] = "\x06\x54\x75", + [0x4696] = "\x06\x54\x74", [0x4698] = "\x0f\x43\x40", + [0x4699] = "\x0f\x43\x41", [0x469e] = "\x05\x40\x3d", + [0x46a0] = "\x06\x54\x77", [0x46a8] = "\x05\x40\x3b", + [0x46a9] = "\x04\x44\x61", [0x46aa] = "\x05\x47\x2d", + [0x46ab] = "\x05\x47\x28", [0x46ac] = "\x05\x47\x2e", + [0x46ad] = "\x05\x47\x2c", [0x46ae] = "\x06\x5e\x5f", + [0x46af] = "\x06\x5e\x63", [0x46b0] = "\x05\x47\x27", + [0x46b1] = "\x05\x47\x2a", [0x46b2] = "\x06\x5e\x67", + [0x46b3] = "\x06\x5e\x62", [0x46b4] = "\x06\x5e\x61", + [0x46b5] = "\x05\x40\x3a", [0x46b6] = "\x06\x5e\x66", + [0x46b8] = "\x0f\x49\x68", [0x46b9] = "\x0f\x49\x69", + [0x46ba] = "\x0f\x49\x6a", [0x46bb] = "\x0f\x49\x6b", + [0x46bc] = "\x05\x47\x2f", [0x46bd] = "\x05\x47\x29", + [0x46be] = "\x06\x5e\x60", [0x46bf] = "\x06\x54\x76", + [0x46c2] = "\x06\x5e\x65", [0x46c8] = "\x0f\x49\x6c", + [0x46c9] = "\x05\x47\x30", [0x46ca] = "\x05\x4e\x36", + [0x46cb] = "\x07\x25\x26", [0x46cc] = "\x04\x4a\x74", + [0x46cd] = "\x05\x4e\x39", [0x46ce] = "\x05\x4e\x3a", + [0x46cf] = "\x05\x4e\x38", [0x46d0] = "\x04\x4a\x70", + [0x46d1] = "\x05\x4e\x35", [0x46d5] = "\x0f\x50\x3f", + [0x46db] = "\x07\x25\x28", [0x46df] = "\x07\x25\x27", + [0x46e1] = "\x07\x2f\x70", [0x46e2] = "\x05\x55\x49", + [0x46e3] = "\x05\x55\x4e", [0x46e4] = "\x07\x2f\x71", + [0x46e5] = "\x05\x55\x4b", [0x46e6] = "\x05\x55\x4d", + [0x46e7] = "\x05\x55\x4a", [0x46e9] = "\x05\x55\x4c", + [0x46eb] = "\x07\x2f\x6f", [0x46ef] = "\x07\x39\x30", + [0x46f0] = "\x07\x39\x2e", [0x46f1] = "\x05\x5c\x27", + [0x46f2] = "\x04\x56\x68", [0x46f3] = "\x04\x56\x69", + [0x46f4] = "\x07\x2f\x6e", [0x46f6] = "\x07\x39\x2f", + [0x46f9] = "\x07\x40\x57", [0x46fa] = "\x07\x40\x58", + [0x46fb] = "\x05\x68\x3a", [0x46fd] = "\x07\x53\x6a", + [0x46fe] = "\x07\x47\x72", [0x46ff] = "\x07\x47\x73", + [0x4700] = "\x07\x47\x71", [0x4702] = "\x05\x68\x39", + [0x4703] = "\x07\x4e\x3f", [0x4704] = "\x05\x6c\x54", + [0x4705] = "\x05\x6c\x55", [0x4707] = "\x05\x70\x45", + [0x4708] = "\x07\x53\x6c", [0x4709] = "\x05\x70\x44", + [0x470b] = "\x05\x70\x46", [0x470c] = "\x07\x58\x3a", + [0x470d] = "\x05\x73\x59", [0x470f] = "\x07\x5b\x74", + [0x4710] = "\x05\x73\x58", [0x4711] = "\x07\x5b\x75", + [0x4712] = "\x07\x5b\x73", [0x4714] = "\x05\x77\x69", + [0x4716] = "\x07\x61\x23", [0x4717] = "\x0f\x6c\x31", + [0x4719] = "\x07\x64\x50", [0x471a] = "\x0f\x21\x3d", + [0x471b] = "\x06\x23\x32", [0x471c] = "\x05\x21\x77", + [0x471d] = "\x05\x21\x78", [0x4721] = "\x05\x22\x78", + [0x4722] = "\x05\x22\x7b", [0x4723] = "\x05\x22\x77", + [0x4724] = "\x04\x23\x28", [0x4726] = "\x05\x22\x7a", + [0x4728] = "\x06\x25\x37", [0x472b] = "\x05\x22\x79", + [0x472f] = "\x05\x24\x5e", [0x4730] = "\x05\x24\x5f", + [0x4731] = "\x04\x24\x5b", [0x4732] = "\x04\x27\x37", + [0x4733] = "\x06\x28\x58", [0x4734] = "\x04\x24\x5a", + [0x4735] = "\x05\x24\x5a", [0x4736] = "\x06\x28\x5e", + [0x4737] = "\x05\x24\x5b", [0x4738] = "\x06\x28\x5b", + [0x4739] = "\x05\x27\x2f", [0x473a] = "\x06\x2c\x72", + [0x473b] = "\x04\x24\x57", [0x473c] = "\x05\x24\x5d", + [0x473d] = "\x05\x24\x5c", [0x473e] = "\x06\x28\x5a", + [0x473f] = "\x06\x28\x59", [0x4740] = "\x06\x2c\x73", + [0x4741] = "\x0f\x24\x77", [0x4742] = "\x06\x28\x57", + [0x4743] = "\x06\x28\x5c", [0x4746] = "\x06\x28\x5d", + [0x474c] = "\x06\x28\x56", [0x474d] = "\x04\x24\x58", + [0x474f] = "\x06\x2c\x7a", [0x4750] = "\x05\x27\x28", + [0x4751] = "\x06\x2c\x7b", [0x4752] = "\x05\x27\x2c", + [0x4753] = "\x06\x2c\x79", [0x4754] = "\x06\x2c\x7c", + [0x4755] = "\x05\x27\x27", [0x4756] = "\x05\x27\x2a", + [0x4757] = "\x06\x2c\x78", [0x4758] = "\x05\x27\x2d", + [0x4759] = "\x05\x27\x25", [0x475a] = "\x05\x27\x29", + [0x475b] = "\x05\x27\x24", [0x475c] = "\x06\x2c\x77", + [0x475e] = "\x04\x27\x38", [0x475f] = "\x05\x2a\x36", + [0x4760] = "\x06\x28\x55", [0x4761] = "\x06\x32\x60", + [0x4763] = "\x05\x27\x2b", [0x4764] = "\x06\x2c\x76", + [0x4765] = "\x0f\x28\x22", [0x4766] = "\x06\x2c\x7d", + [0x4768] = "\x06\x2c\x74", [0x476c] = "\x04\x27\x35", + [0x476e] = "\x05\x2a\x35", [0x476f] = "\x05\x2a\x3e", + [0x4770] = "\x06\x32\x68", [0x4771] = "\x05\x2a\x39", + [0x4772] = "\x06\x39\x4b", [0x4773] = "\x05\x2a\x3d", + [0x4774] = "\x06\x32\x61", [0x4775] = "\x06\x39\x4c", + [0x4776] = "\x06\x41\x6c", [0x4777] = "\x05\x2a\x3c", + [0x4778] = "\x04\x2a\x31", [0x4779] = "\x05\x2a\x3b", + [0x477a] = "\x06\x32\x64", [0x477b] = "\x05\x2a\x3a", + [0x477c] = "\x06\x32\x66", [0x477d] = "\x04\x2a\x33", + [0x477e] = "\x05\x2a\x40", [0x477f] = "\x06\x32\x63", + [0x4780] = "\x05\x27\x26", [0x4781] = "\x05\x2a\x37", + [0x4782] = "\x05\x2a\x38", [0x4784] = "\x0f\x2c\x2a", + [0x4785] = "\x0f\x2c\x2c", [0x4786] = "\x0f\x2c\x2d", + [0x4788] = "\x06\x32\x65", [0x478f] = "\x0f\x2c\x2b", + [0x4797] = "\x05\x2a\x3f", [0x4799] = "\x06\x39\x4e", + [0x479a] = "\x05\x2e\x5e", [0x479b] = "\x04\x33\x21", + [0x479c] = "\x06\x39\x49", [0x479d] = "\x06\x39\x4d", + [0x479e] = "\x04\x2e\x25", [0x479f] = "\x05\x2e\x5b", + [0x47a0] = "\x05\x2e\x60", [0x47a1] = "\x05\x2e\x5d", + [0x47a2] = "\x04\x2e\x23", [0x47a3] = "\x06\x39\x45", + [0x47a5] = "\x06\x39\x4a", [0x47ac] = "\x0f\x30\x77", + [0x47ad] = "\x0f\x30\x78", [0x47af] = "\x06\x39\x48", + [0x47b0] = "\x05\x2e\x5a", [0x47b2] = "\x04\x2e\x24", + [0x47b8] = "\x06\x39\x47", [0x47b9] = "\x06\x39\x4f", + [0x47be] = "\x05\x2e\x5f", [0x47bf] = "\x06\x39\x46", + [0x47c0] = "\x05\x33\x4e", [0x47c1] = "\x0f\x30\x76", + [0x47c3] = "\x04\x33\x24", [0x47c4] = "\x06\x41\x6e", + [0x47c5] = "\x05\x33\x55", [0x47c6] = "\x05\x39\x7e", + [0x47c7] = "\x05\x33\x52", [0x47c8] = "\x06\x41\x70", + [0x47c9] = "\x06\x41\x73", [0x47ca] = "\x05\x33\x4f", + [0x47cb] = "\x06\x41\x6f", [0x47cc] = "\x06\x4b\x3b", + [0x47cd] = "\x04\x33\x26", [0x47ce] = "\x05\x33\x53", + [0x47cf] = "\x06\x4b\x38", [0x47d0] = "\x06\x4b\x37", + [0x47d1] = "\x05\x33\x50", [0x47d2] = "\x06\x4b\x39", + [0x47d4] = "\x06\x41\x71", [0x47d5] = "\x06\x41\x72", + [0x47d7] = "\x06\x41\x74", [0x47d9] = "\x06\x4b\x3a", + [0x47da] = "\x05\x3a\x28", [0x47dc] = "\x06\x54\x7b", + [0x47dd] = "\x05\x3a\x26", [0x47de] = "\x05\x40\x3f", + [0x47df] = "\x04\x38\x75", [0x47e0] = "\x05\x3a\x22", + [0x47e1] = "\x06\x4b\x44", [0x47e2] = "\x05\x40\x40", + [0x47e3] = "\x05\x3a\x27", [0x47e4] = "\x04\x38\x76", + [0x47e5] = "\x05\x3a\x25", [0x47e6] = "\x05\x3a\x24", + [0x47e7] = "\x04\x38\x78", [0x47e8] = "\x06\x4b\x3f", + [0x47e9] = "\x04\x3e\x51", [0x47ea] = "\x05\x3a\x21", + [0x47eb] = "\x06\x4b\x3c", [0x47ec] = "\x06\x4b\x3e", + [0x47ed] = "\x04\x3e\x57", [0x47f2] = "\x0f\x3d\x2a", + [0x47f3] = "\x0f\x3d\x2b", [0x47f4] = "\x06\x54\x79", + [0x47f5] = "\x06\x52\x72", [0x47f6] = "\x06\x54\x7a", + [0x47f8] = "\x06\x4b\x40", [0x47fa] = "\x06\x4b\x41", + [0x47fb] = "\x06\x4b\x45", [0x47fd] = "\x06\x4b\x3d", + [0x4807] = "\x05\x3a\x23", [0x480a] = "\x0f\x43\x43", + [0x480d] = "\x04\x3e\x56", [0x480e] = "\x05\x40\x48", + [0x480f] = "\x06\x55\x22", [0x4810] = "\x05\x40\x47", + [0x4811] = "\x04\x3e\x55", [0x4812] = "\x06\x55\x27", + [0x4813] = "\x05\x40\x4b", [0x4814] = "\x06\x55\x24", + [0x4815] = "\x06\x54\x7e", [0x4816] = "\x06\x54\x7d", + [0x4817] = "\x06\x55\x26", [0x4818] = "\x05\x40\x46", + [0x4819] = "\x05\x40\x44", [0x481a] = "\x05\x40\x43", + [0x481c] = "\x06\x55\x21", [0x481d] = "\x05\x40\x42", + [0x481e] = "\x06\x55\x28", [0x481f] = "\x05\x40\x4a", + [0x4820] = "\x05\x40\x41", [0x4821] = "\x04\x3e\x58", + [0x4824] = "\x05\x40\x49", [0x4825] = "\x06\x55\x25", + [0x4826] = "\x0f\x43\x45", [0x4827] = "\x0f\x43\x46", + [0x4828] = "\x0f\x49\x70", [0x4829] = "\x0f\x50\x40", + [0x482b] = "\x05\x40\x45", [0x482c] = "\x06\x55\x23", + [0x4835] = "\x05\x40\x4c", [0x4839] = "\x06\x5e\x6d", + [0x483a] = "\x05\x47\x3a", [0x483b] = "\x06\x5e\x69", + [0x483c] = "\x07\x25\x29", [0x483d] = "\x05\x47\x37", + [0x483e] = "\x04\x44\x6b", [0x483f] = "\x05\x47\x35", + [0x4840] = "\x05\x47\x33", [0x4841] = "\x06\x5e\x6c", + [0x4842] = "\x05\x47\x3b", [0x4843] = "\x05\x47\x36", + [0x4844] = "\x05\x47\x34", [0x4845] = "\x06\x5e\x70", + [0x4846] = "\x04\x44\x6c", [0x4847] = "\x05\x47\x31", + [0x484d] = "\x0f\x49\x6d", [0x484e] = "\x07\x25\x2a", + [0x4850] = "\x0f\x49\x6f", [0x4851] = "\x06\x5e\x6b", + [0x4857] = "\x06\x5e\x68", [0x4858] = "\x06\x5e\x6a", + [0x4859] = "\x06\x5e\x6f", [0x485c] = "\x04\x4a\x7d", + [0x485d] = "\x05\x47\x3d", [0x485e] = "\x05\x47\x3c", + [0x485f] = "\x05\x47\x39", [0x4860] = "\x05\x47\x38", + [0x4861] = "\x06\x5e\x71", [0x4862] = "\x05\x47\x32", + [0x4863] = "\x07\x25\x31", [0x4864] = "\x04\x4a\x78", + [0x4865] = "\x04\x4a\x79", [0x4866] = "\x07\x25\x30", + [0x4867] = "\x05\x4e\x3c", [0x4868] = "\x07\x25\x34", + [0x4869] = "\x07\x2f\x73", [0x486a] = "\x05\x4e\x41", + [0x486b] = "\x07\x25\x2f", [0x486c] = "\x07\x25\x2b", + [0x486d] = "\x05\x4e\x3e", [0x486e] = "\x05\x4e\x45", + [0x4870] = "\x05\x4e\x3b", [0x4871] = "\x05\x4e\x44", + [0x4872] = "\x05\x4e\x43", [0x4873] = "\x05\x4e\x3d", + [0x4874] = "\x05\x55\x4f", [0x4875] = "\x07\x2f\x72", + [0x4876] = "\x05\x4e\x3f", [0x4879] = "\x05\x4e\x40", + [0x487a] = "\x05\x4e\x46", [0x487b] = "\x07\x25\x2c", + [0x487c] = "\x07\x25\x2d", [0x487d] = "\x0f\x55\x75", + [0x487f] = "\x05\x55\x50", [0x4883] = "\x07\x25\x2e", + [0x4885] = "\x07\x25\x33", [0x4889] = "\x0f\x49\x6e", + [0x488a] = "\x04\x51\x33", [0x488b] = "\x05\x4e\x42", + [0x488c] = "\x05\x55\x57", [0x488d] = "\x04\x51\x35", + [0x488e] = "\x05\x55\x55", [0x488f] = "\x05\x55\x51", + [0x4890] = "\x05\x55\x52", [0x4891] = "\x07\x2f\x79", + [0x4892] = "\x04\x51\x31", [0x4893] = "\x07\x2f\x78", + [0x4894] = "\x07\x2f\x77", [0x4895] = "\x05\x5c\x28", + [0x4896] = "\x04\x51\x36", [0x4897] = "\x05\x55\x53", + [0x4898] = "\x05\x55\x56", [0x4899] = "\x07\x2f\x75", + [0x489a] = "\x07\x39\x32", [0x489c] = "\x04\x56\x6d", + [0x489d] = "\x07\x39\x31", [0x489e] = "\x07\x2f\x76", + [0x48a0] = "\x07\x25\x32", [0x48a1] = "\x0f\x55\x77", + [0x48a2] = "\x07\x25\x35", [0x48a3] = "\x05\x55\x54", + [0x48a6] = "\x05\x5c\x2a", [0x48a7] = "\x07\x39\x33", + [0x48a8] = "\x05\x5c\x29", [0x48a9] = "\x07\x47\x77", + [0x48aa] = "\x07\x39\x35", [0x48af] = "\x07\x39\x34", + [0x48b0] = "\x0f\x5b\x29", [0x48b1] = "\x0f\x5b\x2a", + [0x48b2] = "\x0f\x5b\x2b", [0x48b3] = "\x0f\x5b\x2c", + [0x48b4] = "\x07\x40\x5d", [0x48b5] = "\x05\x62\x55", + [0x48b6] = "\x05\x62\x54", [0x48b7] = "\x07\x40\x5a", + [0x48b8] = "\x07\x40\x59", [0x48b9] = "\x07\x40\x5c", + [0x48ba] = "\x04\x5b\x68", [0x48bb] = "\x07\x40\x5b", + [0x48c0] = "\x0f\x5f\x4e", [0x48c1] = "\x0f\x5f\x4f", + [0x48c3] = "\x05\x62\x56", [0x48c5] = "\x04\x63\x64", + [0x48c8] = "\x07\x47\x78", [0x48c9] = "\x07\x4e\x40", + [0x48ca] = "\x07\x47\x76", [0x48cb] = "\x07\x47\x74", + [0x48cd] = "\x07\x4e\x41", [0x48ce] = "\x05\x6c\x56", + [0x48d0] = "\x07\x4e\x42", [0x48d1] = "\x05\x70\x48", + [0x48d2] = "\x07\x53\x6d", [0x48d3] = "\x05\x70\x47", + [0x48d7] = "\x04\x68\x74", [0x48d8] = "\x05\x70\x49", + [0x48d9] = "\x07\x58\x3b", [0x48db] = "\x07\x5b\x76", + [0x48dc] = "\x07\x5b\x78", [0x48dd] = "\x07\x5b\x77", + [0x48df] = "\x05\x77\x6a", [0x48e0] = "\x07\x5e\x7a", + [0x48e2] = "\x0f\x6b\x55", [0x48e3] = "\x07\x61\x24", + [0x48e4] = "\x07\x63\x59", [0x48e6] = "\x0f\x28\x23", + [0x48e7] = "\x06\x4b\x46", [0x48e8] = "\x06\x5e\x72", + [0x48e9] = "\x05\x21\x4c", [0x48ea] = "\x06\x25\x38", + [0x48eb] = "\x06\x23\x33", [0x48ee] = "\x06\x28\x5f", + [0x48ef] = "\x05\x24\x61", [0x48f0] = "\x04\x24\x5d", + [0x48f2] = "\x04\x24\x5c", [0x48f4] = "\x06\x28\x61", + [0x48f5] = "\x06\x28\x60", [0x48f7] = "\x0f\x24\x79", + [0x48f8] = "\x05\x24\x60", [0x48f9] = "\x05\x27\x30", + [0x48fa] = "\x06\x2d\x25", [0x48fb] = "\x04\x27\x3c", + [0x48fc] = "\x05\x2a\x41", [0x4902] = "\x0f\x28\x25", + [0x4903] = "\x0f\x28\x26", [0x4904] = "\x0f\x28\x27", + [0x4905] = "\x0f\x28\x28", [0x4906] = "\x0f\x28\x29", + [0x4908] = "\x06\x2d\x23", [0x490b] = "\x0f\x2c\x40", + [0x490c] = "\x0f\x28\x24", [0x490d] = "\x06\x2d\x22", + [0x490e] = "\x0f\x2c\x3c", [0x490f] = "\x06\x32\x69", + [0x4910] = "\x05\x2a\x45", [0x4911] = "\x05\x2a\x42", + [0x4912] = "\x04\x2a\x36", [0x4913] = "\x06\x32\x6b", + [0x4918] = "\x06\x2f\x69", [0x491a] = "\x0f\x2c\x2f", + [0x491b] = "\x0f\x2c\x30", [0x491c] = "\x0f\x2c\x31", + [0x491d] = "\x0f\x2c\x33", [0x491e] = "\x0f\x2c\x34", + [0x491f] = "\x0f\x2c\x35", [0x4920] = "\x0f\x2c\x36", + [0x4921] = "\x0f\x2c\x37", [0x4922] = "\x0f\x2c\x38", + [0x4923] = "\x0f\x2c\x3a", [0x4924] = "\x0f\x2c\x3b", + [0x4925] = "\x0f\x2c\x3d", [0x4928] = "\x06\x32\x6a", + [0x492a] = "\x06\x32\x6c", [0x492b] = "\x0f\x2c\x3e", + [0x492c] = "\x0f\x2c\x3f", [0x492f] = "\x0f\x2c\x2e", + [0x4931] = "\x05\x2a\x44", [0x4932] = "\x05\x2a\x43", + [0x4935] = "\x06\x39\x53", [0x4936] = "\x05\x33\x56", + [0x4937] = "\x05\x2e\x61", [0x4938] = "\x04\x2e\x29", + [0x4939] = "\x06\x39\x51", [0x493a] = "\x04\x2e\x28", + [0x493b] = "\x06\x39\x52", [0x493c] = "\x06\x39\x54", + [0x4943] = "\x0f\x30\x79", [0x4944] = "\x0f\x30\x7a", + [0x4945] = "\x0f\x30\x7b", [0x4946] = "\x0f\x30\x7c", + [0x4947] = "\x0f\x30\x7d", [0x4948] = "\x0f\x30\x7e", + [0x4949] = "\x0f\x31\x21", [0x494a] = "\x0f\x31\x23", + [0x494b] = "\x0f\x31\x24", [0x494c] = "\x0f\x31\x25", + [0x494d] = "\x0f\x31\x26", [0x494e] = "\x06\x39\x50", + [0x494f] = "\x0f\x36\x63", [0x4954] = "\x04\x33\x31", + [0x4955] = "\x06\x39\x55", [0x4956] = "\x06\x41\x7a", + [0x4957] = "\x05\x33\x57", [0x4958] = "\x06\x41\x7b", + [0x4959] = "\x04\x33\x32", [0x495a] = "\x06\x41\x77", + [0x495b] = "\x06\x41\x78", [0x495c] = "\x06\x41\x79", + [0x4964] = "\x0f\x31\x22", [0x4965] = "\x0f\x36\x56", + [0x4966] = "\x0f\x36\x58", [0x4967] = "\x0f\x36\x5c", + [0x4968] = "\x0f\x36\x5f", [0x4969] = "\x0f\x36\x60", + [0x496a] = "\x0f\x36\x61", [0x496b] = "\x0f\x36\x62", + [0x496c] = "\x0f\x36\x64", [0x496d] = "\x0f\x36\x5d", + [0x4971] = "\x06\x41\x7c", [0x4974] = "\x0f\x36\x5b", + [0x4975] = "\x0f\x36\x5a", [0x4976] = "\x0f\x36\x5e", + [0x4977] = "\x05\x33\x58", [0x4978] = "\x06\x41\x76", + [0x4979] = "\x0f\x3d\x3e", [0x497b] = "\x0f\x3d\x34", + [0x497c] = "\x06\x4b\x4b", [0x497d] = "\x05\x3a\x2b", + [0x497e] = "\x05\x3a\x2a", [0x497f] = "\x05\x3a\x2c", + [0x4980] = "\x06\x55\x29", [0x4981] = "\x04\x3e\x5a", + [0x4983] = "\x05\x40\x4d", [0x4985] = "\x0f\x3d\x38", + [0x4990] = "\x04\x38\x7c", [0x4991] = "\x06\x4b\x49", + [0x4992] = "\x06\x4b\x4c", [0x4993] = "\x0f\x3d\x2c", + [0x4994] = "\x0f\x3d\x2d", [0x4995] = "\x0f\x3d\x2e", + [0x4996] = "\x0f\x3d\x2f", [0x4997] = "\x0f\x3d\x30", + [0x4998] = "\x0f\x3d\x32", [0x4999] = "\x0f\x3d\x35", + [0x499a] = "\x0f\x3d\x36", [0x499b] = "\x0f\x3d\x37", + [0x499c] = "\x0f\x3d\x39", [0x499d] = "\x0f\x3d\x3a", + [0x499e] = "\x0f\x3d\x3f", [0x499f] = "\x0f\x43\x50", + [0x49a0] = "\x06\x4b\x4e", [0x49a1] = "\x06\x55\x32", + [0x49a2] = "\x06\x4b\x4d", [0x49a4] = "\x0f\x3d\x40", + [0x49a5] = "\x06\x4b\x48", [0x49a6] = "\x06\x4b\x4a", + [0x49a8] = "\x06\x55\x2a", [0x49ab] = "\x0f\x3d\x33", + [0x49ac] = "\x0f\x3d\x3d", [0x49ad] = "\x0f\x3d\x31", + [0x49ae] = "\x05\x3a\x29", [0x49af] = "\x06\x55\x2b", + [0x49b0] = "\x06\x55\x30", [0x49b1] = "\x04\x3e\x5b", + [0x49b2] = "\x06\x55\x31", [0x49b3] = "\x06\x55\x2f", + [0x49b4] = "\x06\x55\x2e", [0x49bc] = "\x05\x47\x3e", + [0x49bd] = "\x0f\x43\x47", [0x49be] = "\x0f\x43\x4a", + [0x49bf] = "\x0f\x43\x4c", [0x49c0] = "\x0f\x43\x4d", + [0x49c1] = "\x0f\x43\x4e", [0x49c2] = "\x0f\x43\x4f", + [0x49c3] = "\x0f\x43\x51", [0x49c4] = "\x0f\x43\x52", + [0x49c5] = "\x0f\x43\x53", [0x49c6] = "\x0f\x43\x54", + [0x49c7] = "\x0f\x43\x55", [0x49c8] = "\x0f\x43\x57", + [0x49c9] = "\x0f\x43\x58", [0x49ca] = "\x0f\x43\x5a", + [0x49cb] = "\x0f\x43\x5b", [0x49cc] = "\x0f\x43\x5c", + [0x49cd] = "\x0f\x43\x5d", [0x49ce] = "\x0f\x43\x5e", + [0x49cf] = "\x0f\x43\x5f", [0x49d0] = "\x0f\x43\x60", + [0x49d1] = "\x0f\x43\x61", [0x49d2] = "\x0f\x43\x62", + [0x49d3] = "\x0f\x43\x63", [0x49d4] = "\x0f\x43\x65", + [0x49d6] = "\x06\x55\x2c", [0x49d7] = "\x05\x40\x4f", + [0x49d9] = "\x05\x3a\x2e", [0x49de] = "\x0f\x43\x4b", + [0x49df] = "\x0f\x43\x48", [0x49e0] = "\x05\x47\x3f", + [0x49e2] = "\x06\x55\x2d", [0x49e3] = "\x0f\x43\x59", + [0x49e4] = "\x0f\x49\x7a", [0x49e5] = "\x0f\x49\x7b", + [0x49e6] = "\x0f\x4a\x26", [0x49e7] = "\x07\x25\x38", + [0x49ea] = "\x06\x5e\x74", [0x49eb] = "\x05\x47\x41", + [0x49ec] = "\x07\x25\x36", [0x49ed] = "\x04\x44\x6d", + [0x49ee] = "\x05\x47\x40", [0x49ef] = "\x06\x5e\x75", + [0x49f0] = "\x06\x5e\x77", [0x49f2] = "\x06\x5e\x76", + [0x49fa] = "\x06\x5e\x73", [0x49fb] = "\x0f\x49\x71", + [0x49fc] = "\x0f\x49\x72", [0x49fd] = "\x0f\x49\x73", + [0x49fe] = "\x0f\x49\x74", [0x49ff] = "\x0f\x49\x75", + [0x4a00] = "\x0f\x49\x77", [0x4a01] = "\x0f\x49\x78", + [0x4a02] = "\x0f\x49\x79", [0x4a03] = "\x0f\x49\x7c", + [0x4a04] = "\x0f\x49\x7d", [0x4a05] = "\x0f\x49\x7e", + [0x4a06] = "\x0f\x4a\x21", [0x4a07] = "\x0f\x4a\x22", + [0x4a08] = "\x0f\x4a\x24", [0x4a09] = "\x0f\x4a\x25", + [0x4a0a] = "\x0f\x4a\x27", [0x4a0b] = "\x0f\x4a\x28", + [0x4a0c] = "\x0f\x4a\x29", [0x4a0d] = "\x05\x47\x42", + [0x4a0f] = "\x03\x48\x26", [0x4a10] = "\x07\x25\x39", + [0x4a13] = "\x0f\x4a\x23", [0x4a14] = "\x07\x25\x40", + [0x4a15] = "\x04\x4a\x7e", [0x4a16] = "\x05\x4e\x47", + [0x4a17] = "\x07\x2f\x7b", [0x4a18] = "\x07\x25\x3a", + [0x4a19] = "\x07\x2f\x7a", [0x4a1a] = "\x07\x25\x3c", + [0x4a1b] = "\x07\x25\x3f", [0x4a1c] = "\x07\x25\x41", + [0x4a1d] = "\x07\x25\x42", [0x4a2b] = "\x0f\x50\x41", + [0x4a2c] = "\x0f\x50\x42", [0x4a2d] = "\x0f\x50\x43", + [0x4a2e] = "\x0f\x50\x44", [0x4a2f] = "\x0f\x50\x45", + [0x4a30] = "\x0f\x50\x46", [0x4a31] = "\x0f\x50\x48", + [0x4a32] = "\x0f\x50\x49", [0x4a33] = "\x0f\x50\x4a", + [0x4a34] = "\x0f\x50\x4b", [0x4a35] = "\x0f\x50\x4c", + [0x4a38] = "\x07\x25\x3d", [0x4a39] = "\x05\x4e\x48", + [0x4a3a] = "\x07\x25\x3b", [0x4a3b] = "\x05\x4e\x49", + [0x4a3c] = "\x0f\x55\x7c", [0x4a3d] = "\x0f\x56\x2e", + [0x4a3e] = "\x0f\x50\x47", [0x4a40] = "\x07\x30\x22", + [0x4a41] = "\x07\x25\x3e", [0x4a42] = "\x05\x55\x58", + [0x4a43] = "\x05\x55\x5b", [0x4a44] = "\x05\x55\x59", + [0x4a45] = "\x04\x51\x3b", [0x4a46] = "\x07\x30\x24", + [0x4a47] = "\x07\x2f\x7d", [0x4a48] = "\x07\x2f\x7e", + [0x4a49] = "\x07\x2f\x7c", [0x4a4b] = "\x04\x51\x3c", + [0x4a52] = "\x07\x30\x21", [0x4a53] = "\x0f\x55\x78", + [0x4a54] = "\x0f\x55\x79", [0x4a55] = "\x0f\x55\x7b", + [0x4a56] = "\x0f\x55\x7d", [0x4a57] = "\x0f\x56\x23", + [0x4a58] = "\x0f\x56\x24", [0x4a59] = "\x0f\x56\x25", + [0x4a5a] = "\x0f\x56\x26", [0x4a5b] = "\x0f\x56\x27", + [0x4a5c] = "\x0f\x56\x29", [0x4a5d] = "\x0f\x56\x2d", + [0x4a5e] = "\x0f\x56\x2f", [0x4a5f] = "\x07\x30\x25", + [0x4a63] = "\x07\x30\x23", [0x4a64] = "\x07\x39\x36", + [0x4a65] = "\x0f\x56\x30", [0x4a66] = "\x0f\x56\x21", + [0x4a67] = "\x0f\x56\x28", [0x4a68] = "\x05\x55\x5c", + [0x4a69] = "\x05\x55\x5a", [0x4a6a] = "\x0f\x56\x2c", + [0x4a6b] = "\x07\x39\x3b", [0x4a6c] = "\x07\x39\x3d", + [0x4a6d] = "\x05\x5c\x2d", [0x4a6e] = "\x05\x5c\x2b", + [0x4a6f] = "\x07\x40\x5e", [0x4a70] = "\x07\x39\x39", + [0x4a71] = "\x04\x5b\x6a", [0x4a72] = "\x04\x56\x6e", + [0x4a74] = "\x04\x56\x70", [0x4a75] = "\x07\x39\x38", + [0x4a7b] = "\x0f\x5b\x2e", [0x4a7c] = "\x0f\x5b\x2f", + [0x4a7d] = "\x0f\x5b\x30", [0x4a7e] = "\x0f\x5b\x31", + [0x4a7f] = "\x0f\x5b\x32", [0x4a80] = "\x0f\x5b\x33", + [0x4a81] = "\x0f\x5b\x34", [0x4a82] = "\x0f\x5b\x35", + [0x4a83] = "\x05\x5c\x2c", [0x4a84] = "\x07\x39\x3a", + [0x4a85] = "\x07\x39\x3c", [0x4a86] = "\x07\x39\x37", + [0x4a87] = "\x07\x40\x5f", [0x4a8b] = "\x05\x68\x3c", + [0x4a8c] = "\x04\x5b\x6b", [0x4a8d] = "\x05\x62\x57", + [0x4a8e] = "\x04\x60\x26", [0x4a8f] = "\x07\x40\x60", + [0x4a90] = "\x04\x60\x28", [0x4a97] = "\x0f\x5f\x51", + [0x4a98] = "\x0f\x5f\x53", [0x4a99] = "\x0f\x5f\x54", + [0x4a9a] = "\x0f\x5f\x55", [0x4a9b] = "\x0f\x5f\x57", + [0x4a9c] = "\x0f\x5f\x59", [0x4a9d] = "\x0f\x5f\x5a", + [0x4a9e] = "\x0f\x5f\x5b", [0x4a9f] = "\x0f\x5f\x5c", + [0x4aa0] = "\x0f\x5f\x5f", [0x4aa2] = "\x07\x40\x61", + [0x4aa3] = "\x07\x40\x62", [0x4aa4] = "\x0f\x5f\x50", + [0x4aa5] = "\x0f\x5f\x52", [0x4aa6] = "\x0f\x5f\x58", + [0x4aa8] = "\x0f\x63\x23", [0x4aa9] = "\x07\x47\x7c", + [0x4aaa] = "\x07\x47\x7b", [0x4aab] = "\x05\x68\x3e", + [0x4aac] = "\x07\x47\x7a", [0x4aad] = "\x07\x4e\x43", + [0x4aae] = "\x05\x68\x3d", [0x4ab4] = "\x07\x47\x79", + [0x4ab5] = "\x0f\x62\x7c", [0x4ab6] = "\x0f\x62\x7e", + [0x4ab7] = "\x0f\x63\x21", [0x4ab8] = "\x0f\x63\x22", + [0x4ab9] = "\x04\x60\x29", [0x4aba] = "\x0f\x62\x79", + [0x4abc] = "\x0f\x62\x7a", [0x4abd] = "\x0f\x62\x7d", + [0x4abe] = "\x07\x53\x6f", [0x4abf] = "\x05\x6c\x57", + [0x4ac0] = "\x04\x66\x52", [0x4ac1] = "\x0f\x65\x52", + [0x4ac2] = "\x0f\x65\x53", [0x4ac3] = "\x0f\x65\x54", + [0x4ac4] = "\x0f\x65\x55", [0x4ac5] = "\x07\x4e\x44", + [0x4ac6] = "\x07\x53\x6e", [0x4ac8] = "\x0f\x5f\x5e", + [0x4ac9] = "\x04\x66\x51", [0x4aca] = "\x07\x55\x7c", + [0x4acc] = "\x04\x66\x53", [0x4acd] = "\x07\x58\x3c", + [0x4ad0] = "\x0f\x67\x76", [0x4ad4] = "\x07\x5b\x79", + [0x4ad5] = "\x04\x6a\x52", [0x4ad6] = "\x0f\x69\x59", + [0x4ad7] = "\x0f\x69\x5a", [0x4ad8] = "\x05\x76\x24", + [0x4ada] = "\x0f\x6a\x61", [0x4adb] = "\x0f\x6a\x63", + [0x4adc] = "\x0f\x6b\x56", [0x4adf] = "\x0f\x6a\x62", + [0x4ae3] = "\x05\x79\x31", [0x4ae4] = "\x07\x61\x26", + [0x4ae5] = "\x07\x61\x25", [0x4ae6] = "\x0f\x6c\x32", + [0x4ae8] = "\x05\x7a\x2c", [0x4ae9] = "\x04\x6e\x34", + [0x4aea] = "\x06\x2d\x26", [0x4aeb] = "\x05\x2a\x47", + [0x4aec] = "\x05\x2a\x46", [0x4aed] = "\x06\x32\x6d", + [0x4aee] = "\x0f\x2c\x41", [0x4aef] = "\x06\x32\x6e", + [0x4af0] = "\x06\x39\x56", [0x4af1] = "\x05\x2e\x63", + [0x4af2] = "\x05\x2e\x64", [0x4af3] = "\x06\x39\x57", + [0x4af4] = "\x06\x39\x58", [0x4af5] = "\x04\x33\x36", + [0x4af6] = "\x05\x33\x59", [0x4af7] = "\x05\x33\x5a", + [0x4af8] = "\x0f\x36\x65", [0x4afa] = "\x05\x3a\x2f", + [0x4afb] = "\x05\x3a\x30", [0x4afc] = "\x06\x4b\x4f", + [0x4afd] = "\x0f\x3d\x41", [0x4afe] = "\x06\x4b\x50", + [0x4b01] = "\x04\x3e\x5c", [0x4b02] = "\x05\x40\x50", + [0x4b03] = "\x05\x40\x51", [0x4b04] = "\x0f\x43\x66", + [0x4b07] = "\x07\x25\x45", [0x4b08] = "\x06\x5e\x78", + [0x4b09] = "\x05\x47\x43", [0x4b0b] = "\x0f\x4a\x2a", + [0x4b0c] = "\x05\x47\x44", [0x4b0d] = "\x07\x25\x44", + [0x4b0e] = "\x07\x30\x26", [0x4b0f] = "\x04\x51\x3d", + [0x4b10] = "\x05\x4e\x4a", [0x4b11] = "\x0f\x50\x4d", + [0x4b12] = "\x07\x25\x43", [0x4b16] = "\x04\x51\x3e", + [0x4b17] = "\x07\x39\x3e", [0x4b18] = "\x05\x62\x58", + [0x4b19] = "\x0f\x5f\x60", [0x4b1a] = "\x04\x5b\x6d", + [0x4b1b] = "\x04\x66\x54", [0x4b1c] = "\x07\x53\x70", + [0x4b1d] = "\x05\x70\x4a", [0x4b20] = "\x05\x76\x25", + [0x4b21] = "\x07\x5b\x7a", [0x4b22] = "\x07\x5e\x7b", + [0x4b23] = "\x07\x62\x3b", [0x4b24] = "\x07\x62\x3c", + [0x4b26] = "\x05\x24\x62", [0x4b28] = "\x05\x27\x31", + [0x4b29] = "\x04\x27\x3d", [0x4b2a] = "\x06\x2d\x27", + [0x4b2c] = "\x05\x2a\x48", [0x4b2d] = "\x05\x2a\x49", + [0x4b2e] = "\x06\x32\x6f", [0x4b2f] = "\x04\x2a\x3b", + [0x4b30] = "\x04\x2a\x3e", [0x4b34] = "\x05\x2e\x65", + [0x4b35] = "\x05\x2e\x67", [0x4b36] = "\x06\x39\x5c", + [0x4b37] = "\x05\x2e\x66", [0x4b39] = "\x0f\x31\x29", + [0x4b3a] = "\x06\x39\x5b", [0x4b3b] = "\x06\x39\x59", + [0x4b3c] = "\x06\x39\x5a", [0x4b3e] = "\x05\x33\x5d", + [0x4b3f] = "\x06\x42\x22", [0x4b40] = "\x06\x41\x7e", + [0x4b41] = "\x06\x42\x24", [0x4b42] = "\x05\x33\x5e", + [0x4b43] = "\x06\x42\x23", [0x4b44] = "\x05\x33\x5c", + [0x4b45] = "\x0f\x36\x66", [0x4b46] = "\x0f\x36\x68", + [0x4b4c] = "\x04\x39\x22", [0x4b4d] = "\x05\x3a\x31", + [0x4b4e] = "\x06\x55\x36", [0x4b4f] = "\x04\x39\x27", + [0x4b50] = "\x05\x3a\x34", [0x4b51] = "\x05\x3a\x33", + [0x4b52] = "\x05\x33\x5f", [0x4b53] = "\x06\x4b\x52", + [0x4b54] = "\x05\x3a\x32", [0x4b55] = "\x05\x33\x5b", + [0x4b57] = "\x06\x4b\x51", [0x4b58] = "\x06\x4b\x53", + [0x4b5b] = "\x04\x3e\x64", [0x4b5c] = "\x05\x40\x52", + [0x4b5d] = "\x06\x55\x37", [0x4b5e] = "\x04\x3e\x5e", + [0x4b5f] = "\x05\x40\x53", [0x4b60] = "\x06\x55\x33", + [0x4b61] = "\x06\x55\x35", [0x4b62] = "\x04\x3e\x5f", + [0x4b63] = "\x06\x55\x38", [0x4b65] = "\x0f\x43\x67", + [0x4b66] = "\x06\x55\x34", [0x4b67] = "\x05\x47\x47", + [0x4b68] = "\x06\x5e\x7c", [0x4b69] = "\x05\x47\x45", + [0x4b6a] = "\x06\x5e\x7a", [0x4b6c] = "\x04\x44\x72", + [0x4b70] = "\x06\x5e\x79", [0x4b73] = "\x06\x5e\x7b", + [0x4b74] = "\x05\x47\x46", [0x4b79] = "\x04\x4b\x28", + [0x4b7a] = "\x07\x25\x4a", [0x4b7b] = "\x05\x4e\x4c", + [0x4b7c] = "\x05\x4e\x4d", [0x4b7d] = "\x05\x4e\x4e", + [0x4b7e] = "\x07\x25\x46", [0x4b7f] = "\x07\x25\x47", + [0x4b80] = "\x07\x25\x49", [0x4b85] = "\x07\x30\x27", + [0x4b86] = "\x04\x56\x74", [0x4b87] = "\x07\x30\x28", + [0x4b88] = "\x05\x55\x5f", [0x4b89] = "\x05\x55\x61", + [0x4b8a] = "\x04\x51\x40", [0x4b8b] = "\x05\x55\x60", + [0x4b8d] = "\x05\x55\x5e", [0x4b8e] = "\x04\x56\x76", + [0x4b8f] = "\x05\x5c\x2e", [0x4b90] = "\x04\x56\x77", + [0x4b93] = "\x07\x39\x40", [0x4b94] = "\x07\x39\x3f", + [0x4b96] = "\x05\x4e\x4b", [0x4b98] = "\x04\x5b\x70", + [0x4b99] = "\x05\x62\x5b", [0x4b9a] = "\x05\x62\x5a", + [0x4b9b] = "\x07\x40\x64", [0x4b9c] = "\x05\x62\x59", + [0x4b9d] = "\x07\x40\x65", [0x4ba1] = "\x05\x68\x3f", + [0x4ba2] = "\x07\x4e\x45", [0x4ba6] = "\x07\x53\x71", + [0x4ba7] = "\x07\x53\x72", [0x4ba8] = "\x04\x66\x56", + [0x4ba9] = "\x05\x70\x4b", [0x4baa] = "\x04\x66\x55", + [0x4bab] = "\x07\x53\x73", [0x4bad] = "\x04\x68\x76", + [0x4bae] = "\x07\x58\x3d", [0x4baf] = "\x05\x73\x5a", + [0x4bb0] = "\x05\x76\x28", [0x4bb1] = "\x05\x76\x27", + [0x4bb2] = "\x07\x5b\x7b", [0x4bb3] = "\x05\x76\x26", + [0x4bb5] = "\x07\x5c\x6b", [0x4bb8] = "\x05\x7a\x6c", + [0x4bb9] = "\x07\x65\x38", [0x4bba] = "\x06\x23\x34", + [0x4bbb] = "\x06\x2d\x28", [0x4bbc] = "\x05\x27\x33", + [0x4bbd] = "\x04\x27\x3e", [0x4bc0] = "\x0f\x28\x2b", + [0x4bc1] = "\x06\x32\x70", [0x4bc3] = "\x0f\x2c\x43", + [0x4bc7] = "\x05\x40\x54", [0x4bc8] = "\x06\x5e\x7d", + [0x4bc9] = "\x07\x30\x2b", [0x4bcb] = "\x07\x30\x29", + [0x4bcc] = "\x07\x30\x2a", [0x4bcd] = "\x04\x56\x79", + [0x4bce] = "\x07\x40\x66", [0x4bd0] = "\x05\x70\x4c", + [0x4bd3] = "\x06\x23\x35", [0x4bd4] = "\x06\x25\x39", + [0x4bd5] = "\x06\x2d\x29", [0x4bd6] = "\x05\x27\x34", + [0x4bd7] = "\x06\x2d\x2a", [0x4bd8] = "\x0f\x2c\x44", + [0x4bd9] = "\x0f\x2c\x45", [0x4bda] = "\x05\x2a\x4a", + [0x4bdb] = "\x04\x2a\x3f", [0x4bdd] = "\x06\x32\x71", + [0x4bde] = "\x06\x34\x79", [0x4bdf] = "\x05\x2e\x69", + [0x4be0] = "\x06\x42\x26", [0x4be1] = "\x05\x33\x60", + [0x4be2] = "\x06\x42\x25", [0x4be3] = "\x06\x42\x27", + [0x4be4] = "\x0f\x36\x69", [0x4be6] = "\x06\x55\x39", + [0x4be7] = "\x06\x4b\x54", [0x4bea] = "\x0f\x3d\x43", + [0x4beb] = "\x0f\x3d\x42", [0x4bec] = "\x06\x55\x3b", + [0x4bee] = "\x0f\x43\x68", [0x4bef] = "\x06\x55\x3a", + [0x4bf2] = "\x06\x5e\x7e", [0x4bf3] = "\x07\x25\x4b", + [0x4bf4] = "\x0f\x4a\x2b", [0x4bf7] = "\x04\x56\x7a", + [0x4bf9] = "\x0f\x5b\x36", [0x4bfc] = "\x0f\x63\x26", + [0x4bfd] = "\x07\x46\x6e", [0x4bfe] = "\x0f\x63\x25", + [0x4c00] = "\x07\x53\x74", [0x4c03] = "\x06\x25\x3a", + [0x4c04] = "\x0f\x24\x7a", [0x4c05] = "\x05\x27\x35", + [0x4c06] = "\x06\x2d\x2e", [0x4c07] = "\x06\x39\x5d", + [0x4c08] = "\x05\x33\x61", [0x4c0a] = "\x0f\x4a\x2c", + [0x4c0d] = "\x0f\x5f\x61", [0x4c0e] = "\x07\x47\x7d", + [0x4c10] = "\x0f\x6c\x33", [0x4c11] = "\x05\x73\x5b", + [0x4c15] = "\x04\x24\x5f", [0x4c17] = "\x0f\x24\x7c", + [0x4c19] = "\x0f\x24\x7b", [0x4c1b] = "\x06\x28\x63", + [0x4c1d] = "\x04\x27\x42", [0x4c1e] = "\x04\x25\x53", + [0x4c1f] = "\x04\x27\x3f", [0x4c20] = "\x05\x27\x36", + [0x4c21] = "\x06\x2d\x31", [0x4c22] = "\x06\x2d\x30", + [0x4c23] = "\x06\x2d\x33", [0x4c24] = "\x0f\x28\x2c", + [0x4c25] = "\x0f\x28\x2d", [0x4c28] = "\x06\x2d\x2f", + [0x4c29] = "\x04\x2a\x42", [0x4c2a] = "\x05\x2a\x4d", + [0x4c2b] = "\x06\x32\x74", [0x4c2c] = "\x05\x2a\x4c", + [0x4c2d] = "\x06\x32\x73", [0x4c2e] = "\x05\x2a\x4b", + [0x4c2f] = "\x06\x32\x76", [0x4c30] = "\x06\x32\x7a", + [0x4c31] = "\x06\x32\x77", [0x4c32] = "\x06\x39\x65", + [0x4c33] = "\x05\x2a\x4e", [0x4c34] = "\x06\x32\x78", + [0x4c35] = "\x06\x32\x75", [0x4c36] = "\x05\x2e\x6e", + [0x4c38] = "\x0f\x2c\x46", [0x4c39] = "\x0f\x2c\x47", + [0x4c3a] = "\x0f\x2c\x48", [0x4c3b] = "\x0f\x2c\x49", + [0x4c3c] = "\x0f\x2c\x4b", [0x4c3d] = "\x0f\x2c\x4c", + [0x4c3e] = "\x0f\x2c\x4d", [0x4c3f] = "\x0f\x2c\x4e", + [0x4c40] = "\x0f\x2c\x4f", [0x4c4b] = "\x05\x2a\x4f", + [0x4c4c] = "\x05\x2e\x6a", [0x4c4d] = "\x04\x2e\x2e", + [0x4c4e] = "\x05\x2e\x6b", [0x4c4f] = "\x06\x39\x61", + [0x4c50] = "\x06\x39\x60", [0x4c52] = "\x06\x39\x62", + [0x4c55] = "\x06\x39\x5f", [0x4c56] = "\x06\x39\x63", + [0x4c57] = "\x0f\x31\x2a", [0x4c58] = "\x0f\x31\x2b", + [0x4c59] = "\x0f\x31\x2c", [0x4c5a] = "\x0f\x31\x2e", + [0x4c5e] = "\x04\x2e\x30", [0x4c5f] = "\x0f\x31\x2d", + [0x4c63] = "\x05\x2e\x6d", [0x4c64] = "\x05\x2e\x6c", + [0x4c65] = "\x04\x33\x3e", [0x4c66] = "\x06\x42\x28", + [0x4c67] = "\x05\x33\x63", [0x4c68] = "\x05\x33\x62", + [0x4c69] = "\x04\x33\x3d", [0x4c6a] = "\x06\x42\x2c", + [0x4c6b] = "\x06\x42\x2f", [0x4c6c] = "\x06\x42\x2a", + [0x4c6d] = "\x06\x42\x2d", [0x4c6e] = "\x06\x42\x2e", + [0x4c6f] = "\x0f\x36\x6b", [0x4c70] = "\x0f\x36\x6c", + [0x4c71] = "\x06\x42\x2b", [0x4c73] = "\x06\x42\x29", + [0x4c76] = "\x06\x41\x6b", [0x4c7c] = "\x04\x39\x2b", + [0x4c7d] = "\x04\x39\x29", [0x4c7e] = "\x04\x39\x2a", + [0x4c83] = "\x06\x4b\x57", [0x4c84] = "\x06\x4b\x59", + [0x4c85] = "\x0f\x36\x6a", [0x4c86] = "\x0f\x3d\x46", + [0x4c87] = "\x0f\x3d\x47", [0x4c88] = "\x0f\x3d\x48", + [0x4c8b] = "\x06\x4b\x58", [0x4c8d] = "\x04\x39\x2d", + [0x4c8e] = "\x06\x4b\x55", [0x4c8f] = "\x0f\x3d\x44", + [0x4c90] = "\x0f\x3d\x45", [0x4c91] = "\x06\x55\x40", + [0x4c92] = "\x04\x3e\x6a", [0x4c93] = "\x04\x3e\x67", + [0x4c94] = "\x06\x55\x3e", [0x4c95] = "\x06\x55\x3f", + [0x4c96] = "\x04\x3e\x66", [0x4c97] = "\x05\x40\x56", + [0x4c98] = "\x06\x55\x3c", [0x4c99] = "\x06\x55\x42", + [0x4c9a] = "\x05\x40\x55", [0x4c9b] = "\x06\x55\x43", + [0x4c9c] = "\x06\x55\x44", [0x4c9d] = "\x06\x55\x41", + [0x4ca0] = "\x0f\x43\x69", [0x4ca1] = "\x0f\x43\x6a", + [0x4ca3] = "\x05\x40\x57", [0x4ca7] = "\x06\x55\x3d", + [0x4cab] = "\x06\x5f\x23", [0x4cac] = "\x04\x44\x7a", + [0x4cad] = "\x05\x47\x4a", [0x4cae] = "\x06\x5f\x22", + [0x4caf] = "\x06\x5f\x25", [0x4cb0] = "\x06\x5f\x28", + [0x4cb1] = "\x0f\x4a\x2d", [0x4cb2] = "\x06\x5f\x26", + [0x4cb5] = "\x06\x5f\x24", [0x4cb6] = "\x06\x5f\x27", + [0x4cb7] = "\x07\x25\x50", [0x4cb8] = "\x04\x4b\x2c", + [0x4cb9] = "\x07\x25\x4c", [0x4cba] = "\x07\x25\x4e", + [0x4cbb] = "\x07\x25\x4d", [0x4cbd] = "\x07\x25\x4f", + [0x4cbe] = "\x05\x4e\x4f", [0x4cbf] = "\x07\x25\x51", + [0x4cc0] = "\x0f\x50\x4f", [0x4cc5] = "\x04\x4b\x2b", + [0x4cc8] = "\x04\x51\x45", [0x4cc9] = "\x04\x51\x43", + [0x4cca] = "\x04\x51\x46", [0x4ccb] = "\x07\x30\x2c", + [0x4ccc] = "\x05\x55\x62", [0x4ccd] = "\x0f\x56\x32", + [0x4ccf] = "\x07\x2c\x3b", [0x4cd2] = "\x07\x39\x41", + [0x4cd3] = "\x05\x5c\x33", [0x4cd4] = "\x07\x39\x43", + [0x4cd5] = "\x05\x5c\x31", [0x4cd6] = "\x04\x56\x7b", + [0x4cd7] = "\x07\x39\x42", [0x4cd8] = "\x05\x5c\x34", + [0x4cda] = "\x0f\x5b\x37", [0x4cdb] = "\x07\x3c\x76", + [0x4cdf] = "\x05\x5c\x30", [0x4ce0] = "\x05\x5c\x32", + [0x4ce1] = "\x0f\x56\x31", [0x4ce4] = "\x04\x5b\x71", + [0x4ce9] = "\x07\x47\x7e", [0x4cea] = "\x05\x68\x41", + [0x4ceb] = "\x07\x48\x23", [0x4cec] = "\x07\x4e\x46", + [0x4ced] = "\x07\x48\x21", [0x4cee] = "\x07\x48\x24", + [0x4cef] = "\x04\x60\x2d", [0x4cf2] = "\x07\x48\x22", + [0x4cf3] = "\x07\x4e\x48", [0x4cf6] = "\x07\x4e\x47", + [0x4cf9] = "\x07\x53\x77", [0x4cfa] = "\x0f\x67\x77", + [0x4cfb] = "\x07\x53\x75", [0x4cfc] = "\x07\x53\x76", + [0x4cfe] = "\x0f\x67\x52", [0x4cff] = "\x07\x58\x3e", + [0x4d00] = "\x04\x68\x77", [0x4d01] = "\x07\x53\x78", + [0x4d02] = "\x07\x5b\x7d", [0x4d03] = "\x0f\x6a\x64", + [0x4d04] = "\x07\x5b\x7c", [0x4d05] = "\x07\x5e\x7c", + [0x4d07] = "\x07\x62\x3e", [0x4d08] = "\x07\x62\x3d", + [0x4d0b] = "\x07\x63\x5a", [0x4d0c] = "\x07\x63\x5c", + [0x4d0e] = "\x07\x63\x5b", [0x4d10] = "\x07\x66\x29", + [0x4d11] = "\x07\x66\x35", [0x4d12] = "\x07\x66\x46", + [0x4d13] = "\x06\x23\x36", [0x4d15] = "\x06\x25\x3b", + [0x4d16] = "\x0f\x28\x2e", [0x4d17] = "\x04\x2e\x32", + [0x4d18] = "\x05\x2a\x50", [0x4d19] = "\x04\x39\x2e", + [0x4d1c] = "\x06\x55\x46", [0x4d1d] = "\x06\x55\x45", + [0x4d1e] = "\x06\x5f\x29", [0x4d1f] = "\x05\x55\x63", + [0x4d20] = "\x07\x30\x2e", [0x4d21] = "\x07\x25\x52", + [0x4d24] = "\x07\x58\x3f", [0x4d25] = "\x05\x22\x7c", + [0x4d26] = "\x05\x24\x64", [0x4d27] = "\x05\x24\x65", + [0x4d28] = "\x04\x24\x60", [0x4d29] = "\x06\x28\x66", + [0x4d2a] = "\x06\x28\x67", [0x4d2b] = "\x06\x28\x65", + [0x4d2e] = "\x06\x28\x68", [0x4d2f] = "\x04\x27\x45", + [0x4d30] = "\x06\x2d\x35", [0x4d31] = "\x04\x27\x44", + [0x4d32] = "\x0f\x28\x2f", [0x4d33] = "\x05\x27\x38", + [0x4d34] = "\x06\x2d\x36", [0x4d37] = "\x06\x32\x7d", + [0x4d38] = "\x04\x2a\x4b", [0x4d39] = "\x06\x32\x7c", + [0x4d3a] = "\x06\x32\x7b", [0x4d3b] = "\x05\x2a\x52", + [0x4d3c] = "\x05\x2a\x56", [0x4d3d] = "\x04\x2a\x47", + [0x4d3e] = "\x04\x2a\x48", [0x4d3f] = "\x05\x2a\x53", + [0x4d40] = "\x04\x2a\x45", [0x4d41] = "\x05\x2a\x54", + [0x4d42] = "\x05\x2a\x51", [0x4d43] = "\x05\x2a\x55", + [0x4d47] = "\x06\x33\x24", [0x4d48] = "\x0f\x2c\x50", + [0x4d4b] = "\x06\x32\x7e", [0x4d4c] = "\x0f\x2c\x51", + [0x4d4d] = "\x06\x33\x22", [0x4d51] = "\x06\x33\x23", + [0x4d54] = "\x06\x33\x21", [0x4d57] = "\x06\x39\x69", + [0x4d58] = "\x05\x2e\x6f", [0x4d59] = "\x05\x2e\x73", + [0x4d5a] = "\x06\x39\x6f", [0x4d5b] = "\x05\x2e\x71", + [0x4d5c] = "\x06\x39\x70", [0x4d5d] = "\x06\x39\x6a", + [0x4d5e] = "\x05\x2e\x76", [0x4d5f] = "\x05\x2e\x72", + [0x4d60] = "\x05\x2e\x75", [0x4d61] = "\x06\x39\x6d", + [0x4d62] = "\x06\x39\x71", [0x4d63] = "\x06\x39\x66", + [0x4d64] = "\x04\x2e\x3d", [0x4d65] = "\x05\x2e\x74", + [0x4d66] = "\x06\x39\x68", [0x4d67] = "\x04\x2e\x3e", + [0x4d68] = "\x05\x2e\x70", [0x4d69] = "\x06\x39\x6e", + [0x4d6a] = "\x0f\x31\x2f", [0x4d6b] = "\x06\x39\x67", + [0x4d6d] = "\x06\x39\x6c", [0x4d77] = "\x06\x42\x31", + [0x4d78] = "\x06\x42\x37", [0x4d79] = "\x05\x33\x68", + [0x4d7a] = "\x06\x42\x35", [0x4d7b] = "\x05\x33\x6b", + [0x4d7c] = "\x04\x33\x41", [0x4d7d] = "\x05\x33\x6a", + [0x4d7e] = "\x05\x33\x66", [0x4d7f] = "\x06\x42\x33", + [0x4d80] = "\x04\x33\x44", [0x4d81] = "\x05\x33\x69", + [0x4d82] = "\x0f\x36\x6d", [0x4d83] = "\x0f\x36\x6e", + [0x4d84] = "\x0f\x36\x6f", [0x4d85] = "\x06\x42\x36", + [0x4d86] = "\x06\x42\x39", [0x4d89] = "\x06\x42\x34", + [0x4d8a] = "\x06\x42\x38", [0x4d8b] = "\x0f\x36\x70", + [0x4d8c] = "\x06\x42\x30", [0x4d93] = "\x05\x33\x67", + [0x4d94] = "\x05\x33\x6c", [0x4d95] = "\x05\x3a\x36", + [0x4d96] = "\x05\x3a\x3f", [0x4d97] = "\x06\x4b\x61", + [0x4d98] = "\x05\x3a\x35", [0x4d99] = "\x06\x4b\x65", + [0x4d9a] = "\x05\x3a\x39", [0x4d9b] = "\x05\x3a\x3a", + [0x4d9c] = "\x05\x3a\x3c", [0x4d9d] = "\x05\x3a\x37", + [0x4d9e] = "\x06\x4b\x63", [0x4d9f] = "\x06\x4b\x5f", + [0x4da0] = "\x05\x3a\x40", [0x4da1] = "\x06\x4b\x62", + [0x4da2] = "\x06\x4b\x5b", [0x4da3] = "\x06\x4b\x66", + [0x4da4] = "\x05\x3a\x3e", [0x4da5] = "\x06\x4b\x5e", + [0x4da8] = "\x04\x39\x39", [0x4da9] = "\x06\x4b\x5d", + [0x4daa] = "\x06\x4b\x60", [0x4dab] = "\x06\x4b\x64", + [0x4dac] = "\x0f\x3d\x49", [0x4dad] = "\x0f\x3d\x4a", + [0x4db6] = "\x04\x39\x37", [0x4db7] = "\x06\x4b\x5c", + [0x4dc0] = "\x04\x39\x31", [0x4dc1] = "\x05\x3a\x38", + [0x4dc2] = "\x06\x55\x4c", [0x4dc3] = "\x04\x3e\x72", + [0x4dc4] = "\x04\x3e\x70", [0x4dc5] = "\x04\x3e\x7b", + [0x4dc6] = "\x05\x40\x59", [0x4dc7] = "\x04\x3e\x71", + [0x4dc8] = "\x04\x3e\x75", [0x4dc9] = "\x04\x44\x7d", + [0x4dca] = "\x04\x3e\x79", [0x4dcb] = "\x06\x55\x49", + [0x4dcc] = "\x05\x40\x5a", [0x4dcd] = "\x05\x40\x5c", + [0x4dce] = "\x05\x40\x62", [0x4dcf] = "\x04\x3e\x7c", + [0x4dd0] = "\x06\x55\x47", [0x4dd1] = "\x05\x40\x61", + [0x4dd3] = "\x06\x55\x4d", [0x4dd4] = "\x05\x40\x65", + [0x4dd5] = "\x05\x40\x63", [0x4dd6] = "\x05\x40\x5b", + [0x4dd7] = "\x05\x3a\x3d", [0x4dd8] = "\x05\x40\x5f", + [0x4dd9] = "\x05\x40\x5e", [0x4dda] = "\x06\x55\x4b", + [0x4ddb] = "\x06\x55\x4a", [0x4ddc] = "\x04\x3e\x7d", + [0x4ddd] = "\x0f\x43\x6b", [0x4dde] = "\x0f\x43\x6c", + [0x4de0] = "\x06\x55\x48", [0x4de5] = "\x06\x55\x4e", + [0x4df7] = "\x05\x40\x58", [0x4df8] = "\x05\x40\x66", + [0x4df9] = "\x05\x40\x5d", [0x4dfb] = "\x05\x47\x58", + [0x4dfc] = "\x05\x47\x50", [0x4dfd] = "\x04\x45\x25", + [0x4dfe] = "\x04\x45\x2b", [0x4dff] = "\x05\x47\x4b", + [0x4e00] = "\x05\x47\x4f", [0x4e01] = "\x04\x45\x26", + [0x4e02] = "\x06\x5f\x2f", [0x4e03] = "\x06\x5f\x2a", + [0x4e04] = "\x04\x45\x2e", [0x4e05] = "\x04\x45\x2a", + [0x4e06] = "\x06\x5f\x2b", [0x4e07] = "\x06\x5f\x34", + [0x4e08] = "\x05\x47\x4d", [0x4e09] = "\x05\x47\x4e", + [0x4e0a] = "\x05\x47\x53", [0x4e0b] = "\x04\x45\x2c", + [0x4e0c] = "\x06\x5f\x37", [0x4e0d] = "\x06\x5f\x35", + [0x4e0e] = "\x05\x47\x5a", [0x4e0f] = "\x06\x5f\x2e", + [0x4e11] = "\x04\x45\x27", [0x4e12] = "\x04\x45\x22", + [0x4e13] = "\x05\x47\x51", [0x4e14] = "\x05\x47\x52", + [0x4e15] = "\x06\x5f\x33", [0x4e16] = "\x05\x47\x4c", + [0x4e17] = "\x05\x47\x56", [0x4e18] = "\x06\x5f\x31", + [0x4e19] = "\x06\x5f\x30", [0x4e1d] = "\x0f\x4a\x2e", + [0x4e1e] = "\x06\x5f\x38", [0x4e1f] = "\x06\x5f\x2c", + [0x4e20] = "\x04\x45\x2d", [0x4e22] = "\x06\x5f\x32", + [0x4e24] = "\x06\x5f\x36", [0x4e29] = "\x05\x47\x55", + [0x4e2a] = "\x04\x4b\x3a", [0x4e2b] = "\x04\x4b\x36", + [0x4e2c] = "\x04\x4b\x2d", [0x4e2d] = "\x04\x4b\x39", + [0x4e2e] = "\x05\x4e\x53", [0x4e2f] = "\x04\x4b\x34", + [0x4e30] = "\x07\x25\x5d", [0x4e31] = "\x04\x4b\x32", + [0x4e32] = "\x05\x4e\x55", [0x4e33] = "\x05\x4e\x57", + [0x4e34] = "\x05\x4e\x54", [0x4e35] = "\x04\x4b\x31", + [0x4e36] = "\x07\x25\x55", [0x4e37] = "\x04\x4b\x30", + [0x4e38] = "\x05\x4e\x51", [0x4e39] = "\x05\x4e\x52", + [0x4e3a] = "\x07\x25\x53", [0x4e3b] = "\x05\x47\x57", + [0x4e3c] = "\x05\x4e\x58", [0x4e3d] = "\x07\x25\x54", + [0x4e3e] = "\x07\x25\x5b", [0x4e3f] = "\x07\x25\x59", + [0x4e42] = "\x0f\x50\x50", [0x4e43] = "\x0f\x50\x51", + [0x4e44] = "\x0f\x50\x52", [0x4e45] = "\x0f\x50\x53", + [0x4e46] = "\x0f\x50\x54", [0x4e49] = "\x07\x25\x56", + [0x4e4d] = "\x07\x25\x5a", [0x4e4f] = "\x07\x25\x5e", + [0x4e5b] = "\x05\x4e\x56", [0x4e5c] = "\x05\x4e\x50", + [0x4e5d] = "\x04\x51\x4b", [0x4e5e] = "\x05\x55\x65", + [0x4e5f] = "\x07\x30\x2f", [0x4e60] = "\x07\x30\x30", + [0x4e61] = "\x05\x55\x6c", [0x4e62] = "\x05\x55\x6d", + [0x4e63] = "\x04\x51\x4c", [0x4e64] = "\x04\x51\x47", + [0x4e65] = "\x05\x55\x68", [0x4e66] = "\x07\x30\x35", + [0x4e67] = "\x05\x55\x66", [0x4e68] = "\x05\x55\x67", + [0x4e69] = "\x05\x55\x6b", [0x4e6a] = "\x07\x30\x31", + [0x4e6b] = "\x07\x30\x37", [0x4e6c] = "\x05\x55\x6e", + [0x4e6f] = "\x0f\x56\x34", [0x4e70] = "\x0f\x56\x35", + [0x4e71] = "\x07\x30\x34", [0x4e73] = "\x07\x30\x33", + [0x4e74] = "\x05\x55\x6a", [0x4e76] = "\x07\x30\x32", + [0x4e79] = "\x07\x30\x38", [0x4e7b] = "\x07\x30\x39", + [0x4e80] = "\x05\x55\x64", [0x4e81] = "\x07\x25\x57", + [0x4e84] = "\x04\x56\x7c", [0x4e85] = "\x05\x5c\x39", + [0x4e86] = "\x05\x55\x70", [0x4e87] = "\x07\x39\x50", + [0x4e88] = "\x04\x51\x51", [0x4e89] = "\x04\x45\x29", + [0x4e8a] = "\x04\x56\x7e", [0x4e8b] = "\x07\x39\x47", + [0x4e8c] = "\x05\x5c\x35", [0x4e8d] = "\x07\x39\x48", + [0x4e8e] = "\x05\x5c\x3c", [0x4e8f] = "\x05\x5c\x3a", + [0x4e90] = "\x05\x5c\x3d", [0x4e91] = "\x07\x39\x4f", + [0x4e92] = "\x07\x40\x6a", [0x4e93] = "\x05\x55\x6f", + [0x4e94] = "\x05\x5c\x37", [0x4e95] = "\x04\x56\x7d", + [0x4e96] = "\x05\x5c\x38", [0x4e97] = "\x04\x57\x23", + [0x4e98] = "\x07\x39\x49", [0x4e99] = "\x07\x39\x4d", + [0x4e9a] = "\x07\x39\x51", [0x4e9b] = "\x07\x39\x4b", + [0x4e9c] = "\x07\x39\x46", [0x4e9d] = "\x07\x39\x4c", + [0x4ea1] = "\x0f\x5b\x38", [0x4ea6] = "\x07\x39\x44", + [0x4ea7] = "\x07\x39\x45", [0x4ea8] = "\x07\x39\x4e", + [0x4ea9] = "\x05\x5c\x3b", [0x4eb7] = "\x05\x62\x5c", + [0x4eb8] = "\x05\x5c\x3e", [0x4eb9] = "\x07\x39\x4a", + [0x4eba] = "\x04\x5b\x78", [0x4ebb] = "\x05\x5c\x40", + [0x4ebc] = "\x05\x62\x60", [0x4ebd] = "\x07\x40\x68", + [0x4ebe] = "\x05\x62\x65", [0x4ebf] = "\x07\x40\x69", + [0x4ec0] = "\x05\x62\x61", [0x4ec1] = "\x05\x62\x64", + [0x4ec2] = "\x04\x5b\x76", [0x4ec3] = "\x05\x5c\x3f", + [0x4ec4] = "\x05\x62\x5d", [0x4ec5] = "\x05\x62\x62", + [0x4ec6] = "\x05\x62\x5e", [0x4ec7] = "\x05\x62\x5f", + [0x4ec8] = "\x04\x5b\x7a", [0x4ec9] = "\x07\x40\x6d", + [0x4ecd] = "\x05\x62\x63", [0x4ed5] = "\x07\x48\x2b", + [0x4ed6] = "\x04\x60\x33", [0x4ed7] = "\x07\x48\x27", + [0x4ed8] = "\x04\x60\x34", [0x4ed9] = "\x05\x68\x44", + [0x4eda] = "\x04\x60\x35", [0x4edb] = "\x07\x48\x26", + [0x4edc] = "\x05\x68\x43", [0x4edd] = "\x05\x68\x42", + [0x4ede] = "\x04\x60\x36", [0x4ee1] = "\x0f\x63\x27", + [0x4ee2] = "\x04\x60\x31", [0x4ee3] = "\x07\x48\x28", + [0x4ee5] = "\x07\x48\x29", [0x4ee8] = "\x07\x48\x25", + [0x4eee] = "\x07\x48\x2a", [0x4eef] = "\x07\x40\x6c", + [0x4ef1] = "\x04\x63\x6a", [0x4ef2] = "\x04\x63\x6b", + [0x4ef3] = "\x07\x4e\x49", [0x4ef4] = "\x07\x4e\x4d", + [0x4ef5] = "\x07\x4e\x4c", [0x4ef6] = "\x05\x6c\x58", + [0x4ef7] = "\x05\x6c\x59", [0x4ef8] = "\x07\x4e\x4e", + [0x4ef9] = "\x07\x4e\x4b", [0x4efa] = "\x07\x4e\x4a", + [0x4f00] = "\x05\x70\x51", [0x4f01] = "\x05\x70\x50", + [0x4f02] = "\x05\x70\x4e", [0x4f03] = "\x04\x66\x57", + [0x4f04] = "\x07\x53\x7a", [0x4f05] = "\x05\x70\x4f", + [0x4f06] = "\x07\x53\x79", [0x4f07] = "\x0f\x67\x78", + [0x4f0b] = "\x05\x73\x5f", [0x4f0c] = "\x05\x73\x5e", + [0x4f0d] = "\x05\x73\x5d", [0x4f10] = "\x07\x5c\x22", + [0x4f11] = "\x07\x5b\x7e", [0x4f12] = "\x04\x6a\x56", + [0x4f16] = "\x07\x5c\x21", [0x4f17] = "\x05\x76\x29", + [0x4f18] = "\x05\x77\x6b", [0x4f19] = "\x07\x5e\x7d", + [0x4f1a] = "\x07\x5e\x7e", [0x4f1c] = "\x07\x61\x42", + [0x4f1d] = "\x07\x61\x27", [0x4f1f] = "\x07\x62\x3f", + [0x4f20] = "\x07\x62\x40", [0x4f21] = "\x07\x62\x41", + [0x4f22] = "\x05\x7a\x6d", [0x4f23] = "\x07\x64\x51", + [0x4f24] = "\x07\x65\x39", [0x4f25] = "\x04\x24\x63", + [0x4f27] = "\x06\x33\x25", [0x4f28] = "\x0f\x2c\x52", + [0x4f29] = "\x06\x39\x73", [0x4f2a] = "\x06\x39\x72", + [0x4f2b] = "\x0f\x31\x30", [0x4f2c] = "\x06\x42\x3a", + [0x4f2d] = "\x0f\x36\x71", [0x4f2f] = "\x06\x4b\x69", + [0x4f30] = "\x06\x4b\x67", [0x4f31] = "\x05\x3a\x41", + [0x4f32] = "\x06\x4b\x68", [0x4f37] = "\x07\x25\x5f", + [0x4f39] = "\x04\x51\x53", [0x4f3a] = "\x04\x51\x52", + [0x4f3c] = "\x07\x30\x3a", [0x4f3d] = "\x06\x25\x3c", + [0x4f3e] = "\x06\x25\x3d", [0x4f41] = "\x05\x24\x66", + [0x4f42] = "\x05\x27\x3a", [0x4f43] = "\x05\x27\x3b", + [0x4f46] = "\x05\x27\x39", [0x4f47] = "\x05\x27\x3c", + [0x4f48] = "\x04\x2a\x4d", [0x4f49] = "\x05\x2a\x59", + [0x4f4a] = "\x05\x2a\x58", [0x4f4c] = "\x05\x2a\x57", + [0x4f4d] = "\x06\x33\x27", [0x4f4e] = "\x06\x33\x28", + [0x4f50] = "\x06\x33\x26", [0x4f51] = "\x0f\x2c\x53", + [0x4f52] = "\x0f\x2c\x54", [0x4f54] = "\x06\x33\x29", + [0x4f56] = "\x05\x2a\x5a", [0x4f58] = "\x06\x39\x74", + [0x4f59] = "\x04\x2e\x42", [0x4f5a] = "\x06\x39\x75", + [0x4f5b] = "\x06\x42\x3c", [0x4f5d] = "\x0f\x31\x31", + [0x4f5e] = "\x0f\x31\x32", [0x4f5f] = "\x0f\x31\x33", + [0x4f60] = "\x0f\x31\x35", [0x4f61] = "\x0f\x31\x36", + [0x4f64] = "\x0f\x36\x75", [0x4f65] = "\x04\x33\x46", + [0x4f66] = "\x05\x33\x6e", [0x4f67] = "\x06\x42\x3b", + [0x4f68] = "\x0f\x36\x72", [0x4f69] = "\x0f\x36\x73", + [0x4f6a] = "\x0f\x36\x76", [0x4f6c] = "\x06\x4b\x6b", + [0x4f6f] = "\x06\x4b\x6c", [0x4f70] = "\x06\x4b\x6a", + [0x4f77] = "\x0f\x36\x74", [0x4f79] = "\x05\x40\x68", + [0x4f7a] = "\x05\x40\x67", [0x4f7b] = "\x06\x55\x50", + [0x4f7c] = "\x04\x3e\x7e", [0x4f7d] = "\x06\x55\x4f", + [0x4f7f] = "\x05\x40\x69", [0x4f83] = "\x0f\x43\x6d", + [0x4f88] = "\x04\x45\x2f", [0x4f89] = "\x06\x5f\x39", + [0x4f8a] = "\x06\x5f\x3a", [0x4f8b] = "\x0f\x4a\x30", + [0x4f8c] = "\x0f\x4a\x31", [0x4f8d] = "\x0f\x4a\x33", + [0x4f8e] = "\x0f\x4a\x34", [0x4f8f] = "\x0f\x4a\x32", + [0x4f95] = "\x04\x4b\x3c", [0x4f98] = "\x07\x25\x60", + [0x4f99] = "\x07\x25\x61", [0x4f9b] = "\x05\x55\x72", + [0x4f9c] = "\x07\x30\x3c", [0x4f9d] = "\x05\x55\x71", + [0x4f9e] = "\x07\x30\x3b", [0x4fa0] = "\x04\x57\x27", + [0x4fa1] = "\x04\x57\x28", [0x4fa2] = "\x05\x5c\x42", + [0x4fa3] = "\x05\x5c\x44", [0x4fa4] = "\x07\x40\x6e", + [0x4fa5] = "\x05\x5c\x41", [0x4fa6] = "\x07\x39\x52", + [0x4fa7] = "\x05\x62\x66", [0x4fa8] = "\x07\x40\x6f", + [0x4faa] = "\x07\x40\x70", [0x4fab] = "\x05\x68\x45", + [0x4fac] = "\x05\x68\x46", [0x4fad] = "\x05\x68\x47", + [0x4fb2] = "\x05\x68\x48", [0x4fb3] = "\x07\x48\x2c", + [0x4fb4] = "\x07\x4e\x50", [0x4fb6] = "\x07\x4e\x4f", + [0x4fb8] = "\x05\x62\x67", [0x4fbb] = "\x07\x58\x40", + [0x4fbc] = "\x07\x58\x41", [0x4fbd] = "\x0f\x67\x79", + [0x4fbe] = "\x07\x5c\x23", [0x4fc0] = "\x04\x6b\x73", + [0x4fc3] = "\x07\x5f\x21", [0x4fc5] = "\x07\x65\x3a", + [0x4fc6] = "\x05\x24\x67", [0x4fc7] = "\x05\x24\x68", + [0x4fc8] = "\x06\x2d\x39", [0x4fc9] = "\x06\x2d\x37", + [0x4fca] = "\x06\x2d\x38", [0x4fcb] = "\x05\x27\x3d", + [0x4fce] = "\x06\x33\x2b", [0x4fcf] = "\x05\x2a\x5b", + [0x4fd0] = "\x04\x2a\x4f", [0x4fd1] = "\x06\x30\x36", + [0x4fd2] = "\x06\x33\x2a", [0x4fd5] = "\x05\x2e\x77", + [0x4fd6] = "\x05\x2e\x78", [0x4fd7] = "\x06\x39\x76", + [0x4fd8] = "\x06\x39\x7a", [0x4fd9] = "\x05\x33\x6f", + [0x4fda] = "\x04\x2e\x44", [0x4fdb] = "\x06\x39\x77", + [0x4fdc] = "\x06\x39\x78", [0x4fdd] = "\x06\x39\x79", + [0x4fdf] = "\x04\x33\x49", [0x4fe0] = "\x05\x33\x70", + [0x4fe1] = "\x06\x42\x3e", [0x4fe2] = "\x0f\x36\x79", + [0x4fe5] = "\x06\x42\x3d", [0x4fe7] = "\x04\x39\x3c", + [0x4fe8] = "\x06\x4b\x6d", [0x4fe9] = "\x05\x3a\x42", + [0x4fea] = "\x06\x4b\x6f", [0x4feb] = "\x04\x39\x3b", + [0x4fec] = "\x0f\x3d\x4b", [0x4fee] = "\x06\x4b\x6e", + [0x4ff2] = "\x0f\x36\x78", [0x4ff3] = "\x05\x40\x6a", + [0x4ff4] = "\x05\x40\x6d", [0x4ff5] = "\x05\x40\x6b", + [0x4ff6] = "\x05\x40\x6c", [0x4ff7] = "\x05\x40\x6e", + [0x4ff9] = "\x06\x55\x53", [0x4ffa] = "\x0f\x43\x6e", + [0x4fff] = "\x06\x55\x51", [0x5001] = "\x04\x3f\x21", + [0x5002] = "\x04\x45\x31", [0x5003] = "\x04\x45\x33", + [0x5004] = "\x06\x5f\x3e", [0x5006] = "\x0f\x4a\x35", + [0x5007] = "\x06\x5f\x3d", [0x5008] = "\x05\x47\x5c", + [0x5009] = "\x06\x5f\x3f", [0x500a] = "\x06\x5f\x3b", + [0x500b] = "\x06\x5f\x3c", [0x500d] = "\x07\x25\x63", + [0x500e] = "\x05\x4e\x5a", [0x500f] = "\x05\x4e\x5b", + [0x5010] = "\x05\x4e\x5c", [0x5011] = "\x07\x25\x62", + [0x5014] = "\x05\x55\x76", [0x5015] = "\x05\x55\x78", + [0x5016] = "\x05\x55\x74", [0x5017] = "\x04\x51\x58", + [0x5018] = "\x05\x55\x77", [0x5019] = "\x05\x55\x75", + [0x501a] = "\x0f\x56\x36", [0x501b] = "\x05\x55\x73", + [0x501c] = "\x07\x30\x3d", [0x501e] = "\x07\x30\x3e", + [0x501f] = "\x07\x39\x53", [0x5021] = "\x07\x30\x3f", + [0x5022] = "\x04\x57\x29", [0x5023] = "\x05\x62\x68", + [0x5024] = "\x07\x40\x72", [0x5025] = "\x07\x40\x73", + [0x5026] = "\x07\x40\x74", [0x5028] = "\x07\x40\x71", + [0x502b] = "\x05\x68\x4a", [0x502c] = "\x05\x68\x49", + [0x502d] = "\x07\x48\x2d", [0x502f] = "\x04\x63\x6d", + [0x5030] = "\x05\x6c\x5b", [0x5031] = "\x05\x6c\x5a", + [0x5032] = "\x07\x4e\x51", [0x5034] = "\x07\x53\x7c", + [0x5035] = "\x04\x66\x5c", [0x5036] = "\x07\x58\x42", + [0x5039] = "\x05\x77\x6c", [0x503a] = "\x05\x77\x6d", + [0x503c] = "\x07\x63\x44", [0x503d] = "\x07\x65\x58", + [0x503f] = "\x06\x28\x69", [0x5040] = "\x0f\x24\x7d", + [0x5041] = "\x04\x27\x49", [0x5042] = "\x05\x27\x3e", + [0x5043] = "\x04\x27\x47", [0x5044] = "\x06\x2d\x3b", + [0x5045] = "\x05\x27\x3f", [0x5046] = "\x05\x2a\x5e", + [0x5047] = "\x05\x2a\x5c", [0x5048] = "\x05\x2a\x5d", + [0x5049] = "\x06\x33\x2d", [0x504b] = "\x06\x33\x2c", + [0x504c] = "\x0f\x2c\x55", [0x504e] = "\x05\x2e\x79", + [0x504f] = "\x06\x3a\x21", [0x5050] = "\x06\x3a\x23", + [0x5051] = "\x04\x2e\x48", [0x5052] = "\x05\x2e\x7a", + [0x5053] = "\x06\x39\x7e", [0x5054] = "\x06\x39\x7b", + [0x5055] = "\x04\x2e\x4a", [0x5056] = "\x06\x3a\x22", + [0x5058] = "\x0f\x31\x37", [0x5059] = "\x0f\x31\x38", + [0x505a] = "\x06\x3a\x24", [0x505b] = "\x06\x39\x7c", + [0x505c] = "\x06\x39\x7d", [0x505e] = "\x04\x33\x4c", + [0x505f] = "\x05\x33\x72", [0x5060] = "\x04\x33\x4a", + [0x5061] = "\x06\x42\x3f", [0x5063] = "\x0f\x36\x7a", + [0x5064] = "\x0f\x36\x7b", [0x5065] = "\x0f\x36\x7c", + [0x5066] = "\x0f\x36\x7d", [0x5067] = "\x0f\x37\x21", + [0x5068] = "\x0f\x37\x22", [0x5069] = "\x06\x42\x40", + [0x506a] = "\x06\x42\x41", [0x506b] = "\x06\x3a\x25", + [0x506c] = "\x06\x4b\x74", [0x506d] = "\x06\x4b\x70", + [0x506e] = "\x05\x3a\x43", [0x506f] = "\x04\x39\x3d", + [0x5070] = "\x06\x4b\x72", [0x5071] = "\x06\x4b\x73", + [0x5073] = "\x0f\x3d\x4c", [0x5074] = "\x0f\x3d\x4d", + [0x5076] = "\x06\x4b\x71", [0x5077] = "\x06\x55\x54", + [0x5078] = "\x06\x55\x56", [0x5079] = "\x05\x40\x70", + [0x507a] = "\x06\x55\x58", [0x507b] = "\x06\x55\x57", + [0x507c] = "\x06\x55\x55", [0x507f] = "\x0f\x43\x6f", + [0x5080] = "\x0f\x43\x70", [0x5083] = "\x06\x5f\x41", + [0x5084] = "\x06\x5f\x40", [0x5085] = "\x06\x5f\x4b", + [0x5086] = "\x0f\x4a\x36", [0x5087] = "\x05\x4e\x5d", + [0x5088] = "\x07\x25\x64", [0x508a] = "\x07\x25\x65", + [0x508c] = "\x0f\x50\x55", [0x508d] = "\x0f\x50\x56", + [0x508e] = "\x0f\x50\x57", [0x508f] = "\x0f\x50\x58", + [0x5090] = "\x0f\x50\x59", [0x5091] = "\x0f\x50\x5a", + [0x5093] = "\x04\x51\x59", [0x5094] = "\x07\x30\x44", + [0x5095] = "\x04\x51\x5b", [0x5096] = "\x07\x30\x40", + [0x5097] = "\x07\x30\x45", [0x5098] = "\x05\x55\x7a", + [0x5099] = "\x05\x55\x79", [0x509a] = "\x0f\x56\x37", + [0x509b] = "\x0f\x56\x38", [0x509c] = "\x0f\x56\x39", + [0x509e] = "\x0f\x56\x3a", [0x509f] = "\x0f\x56\x3b", + [0x50a0] = "\x07\x30\x43", [0x50a1] = "\x07\x30\x41", + [0x50a4] = "\x04\x57\x2b", [0x50a5] = "\x04\x5c\x23", + [0x50a6] = "\x04\x57\x2a", [0x50a7] = "\x07\x39\x54", + [0x50a8] = "\x05\x5c\x47", [0x50a9] = "\x07\x40\x75", + [0x50ac] = "\x05\x5c\x46", [0x50ad] = "\x0f\x5b\x3b", + [0x50ae] = "\x0f\x5b\x3c", [0x50b1] = "\x07\x39\x55", + [0x50b2] = "\x07\x39\x56", [0x50b3] = "\x07\x36\x79", + [0x50b5] = "\x05\x5c\x45", [0x50b6] = "\x07\x30\x42", + [0x50b7] = "\x07\x39\x57", [0x50b8] = "\x04\x5c\x22", + [0x50b9] = "\x04\x5c\x21", [0x50ba] = "\x07\x40\x76", + [0x50bc] = "\x07\x40\x78", [0x50be] = "\x07\x40\x77", + [0x50bf] = "\x0f\x5f\x62", [0x50c0] = "\x07\x40\x79", + [0x50c1] = "\x07\x48\x2e", [0x50c2] = "\x05\x68\x4b", + [0x50c3] = "\x07\x48\x2f", [0x50c4] = "\x0f\x63\x28", + [0x50c5] = "\x0f\x63\x29", [0x50c7] = "\x05\x6c\x5d", + [0x50c8] = "\x07\x4e\x53", [0x50c9] = "\x05\x6c\x5c", + [0x50ca] = "\x07\x4e\x55", [0x50cb] = "\x0f\x65\x56", + [0x50cd] = "\x07\x4e\x52", [0x50ce] = "\x07\x4e\x54", + [0x50d2] = "\x0f\x67\x7b", [0x50d3] = "\x07\x58\x44", + [0x50d4] = "\x05\x73\x60", [0x50d5] = "\x07\x58\x43", + [0x50d6] = "\x07\x58\x45", [0x50d7] = "\x0f\x67\x7a", + [0x50d8] = "\x07\x5f\x22", [0x50d9] = "\x05\x76\x2a", + [0x50dc] = "\x07\x5f\x23", [0x50e1] = "\x07\x62\x42", + [0x50e4] = "\x05\x22\x7d", [0x50e5] = "\x0f\x22\x67", + [0x50e6] = "\x06\x28\x6a", [0x50e7] = "\x04\x24\x64", + [0x50e8] = "\x05\x24\x6a", [0x50e9] = "\x04\x24\x66", + [0x50ea] = "\x05\x24\x6b", [0x50eb] = "\x05\x24\x69", + [0x50ec] = "\x0f\x24\x7e", [0x50f2] = "\x04\x27\x50", + [0x50f3] = "\x06\x2d\x3c", [0x50f4] = "\x05\x27\x41", + [0x50f5] = "\x04\x27\x4b", [0x50f6] = "\x06\x2d\x40", + [0x50f7] = "\x06\x2d\x42", [0x50f8] = "\x06\x2d\x3e", + [0x50f9] = "\x05\x27\x42", [0x50fa] = "\x05\x27\x43", + [0x50fb] = "\x06\x2d\x41", [0x50fc] = "\x06\x2d\x3f", + [0x50fd] = "\x05\x27\x40", [0x5100] = "\x06\x2d\x43", + [0x5102] = "\x06\x2d\x44", [0x5103] = "\x06\x33\x39", + [0x5104] = "\x06\x33\x35", [0x5105] = "\x06\x33\x2e", + [0x5106] = "\x06\x33\x32", [0x5107] = "\x04\x2a\x5e", + [0x5108] = "\x06\x33\x36", [0x5109] = "\x04\x2a\x5c", + [0x510a] = "\x06\x33\x3c", [0x510b] = "\x05\x2a\x65", + [0x510c] = "\x06\x33\x33", [0x510d] = "\x05\x2a\x69", + [0x510e] = "\x04\x2a\x5b", [0x510f] = "\x06\x33\x2f", + [0x5110] = "\x06\x33\x3b", [0x5111] = "\x05\x2a\x60", + [0x5112] = "\x05\x2a\x67", [0x5113] = "\x05\x2a\x6b", + [0x5114] = "\x05\x2a\x61", [0x5115] = "\x05\x2a\x6a", + [0x5116] = "\x05\x2a\x68", [0x5117] = "\x05\x2a\x63", + [0x5118] = "\x05\x2a\x6c", [0x5119] = "\x06\x33\x30", + [0x511b] = "\x05\x2a\x5f", [0x511c] = "\x05\x2a\x66", + [0x511d] = "\x05\x2a\x62", [0x511e] = "\x05\x2a\x64", + [0x5123] = "\x0f\x2c\x56", [0x5124] = "\x0f\x2c\x58", + [0x5125] = "\x06\x33\x37", [0x5127] = "\x06\x33\x3a", + [0x5129] = "\x06\x33\x34", [0x5131] = "\x04\x2e\x50", + [0x5132] = "\x05\x2f\x24", [0x5133] = "\x03\x2e\x5a", + [0x5134] = "\x04\x2e\x4c", [0x5135] = "\x05\x2e\x7b", + [0x5136] = "\x06\x3a\x26", [0x5137] = "\x04\x2e\x4e", + [0x5138] = "\x05\x2f\x22", [0x5139] = "\x05\x2e\x7c", + [0x513a] = "\x06\x3a\x28", [0x513b] = "\x04\x2e\x4b", + [0x513c] = "\x06\x3a\x29", [0x513d] = "\x05\x2f\x23", + [0x513e] = "\x06\x3a\x2a", [0x513f] = "\x04\x2e\x53", + [0x5140] = "\x06\x3a\x2c", [0x5141] = "\x05\x2e\x7e", + [0x5144] = "\x05\x2f\x25", [0x5149] = "\x06\x3a\x2b", + [0x514a] = "\x0f\x31\x39", [0x514b] = "\x0f\x31\x3a", + [0x514c] = "\x0f\x31\x3b", [0x514d] = "\x0f\x31\x3c", + [0x514e] = "\x0f\x31\x3d", [0x5153] = "\x06\x3a\x27", + [0x5157] = "\x05\x2f\x21", [0x5158] = "\x05\x2e\x7d", + [0x5159] = "\x04\x2e\x54", [0x515a] = "\x04\x33\x55", + [0x515b] = "\x06\x42\x53", [0x515c] = "\x06\x42\x46", + [0x515d] = "\x06\x42\x4d", [0x515e] = "\x05\x33\x74", + [0x515f] = "\x05\x33\x73", [0x5160] = "\x05\x33\x7d", + [0x5161] = "\x04\x33\x54", [0x5162] = "\x06\x42\x47", + [0x5163] = "\x06\x42\x44", [0x5165] = "\x06\x42\x42", + [0x5166] = "\x05\x33\x7a", [0x5167] = "\x05\x33\x7b", + [0x5168] = "\x05\x33\x75", [0x5169] = "\x06\x42\x4a", + [0x516a] = "\x05\x33\x78", [0x516b] = "\x06\x42\x54", + [0x516c] = "\x05\x33\x79", [0x516d] = "\x06\x42\x43", + [0x516e] = "\x06\x42\x4f", [0x5170] = "\x06\x42\x4b", + [0x5171] = "\x06\x42\x50", [0x5172] = "\x0f\x37\x25", + [0x5173] = "\x06\x42\x52", [0x5176] = "\x06\x42\x4c", + [0x5179] = "\x06\x42\x49", [0x517c] = "\x06\x42\x51", + [0x517d] = "\x0f\x37\x26", [0x5185] = "\x05\x33\x7e", + [0x5186] = "\x06\x42\x45", [0x5187] = "\x06\x42\x4e", + [0x5188] = "\x05\x33\x77", [0x5189] = "\x05\x33\x7c", + [0x518b] = "\x05\x3a\x49", [0x518c] = "\x05\x3a\x4c", + [0x518d] = "\x06\x4b\x79", [0x518e] = "\x06\x4c\x23", + [0x518f] = "\x04\x33\x53", [0x5190] = "\x06\x4b\x78", + [0x5191] = "\x05\x3a\x4b", [0x5192] = "\x06\x4b\x7d", + [0x5193] = "\x06\x4c\x21", [0x5194] = "\x05\x3a\x46", + [0x5195] = "\x06\x4c\x26", [0x5196] = "\x06\x4b\x77", + [0x5197] = "\x04\x39\x4f", [0x5198] = "\x05\x3a\x4a", + [0x5199] = "\x05\x3a\x48", [0x519a] = "\x05\x3a\x44", + [0x519b] = "\x04\x39\x4e", [0x519c] = "\x05\x40\x71", + [0x519d] = "\x06\x4c\x25", [0x519e] = "\x05\x40\x7e", + [0x519f] = "\x04\x39\x40", [0x51a0] = "\x06\x4b\x7e", + [0x51a1] = "\x05\x3a\x4d", [0x51a2] = "\x06\x4b\x7b", + [0x51a3] = "\x05\x3a\x4e", [0x51a4] = "\x06\x4c\x28", + [0x51a5] = "\x05\x3a\x45", [0x51a6] = "\x05\x3a\x47", + [0x51aa] = "\x0f\x3d\x4f", [0x51ab] = "\x0f\x3d\x50", + [0x51ac] = "\x0f\x3d\x51", [0x51b0] = "\x06\x4b\x7c", + [0x51b3] = "\x06\x4c\x27", [0x51b5] = "\x06\x4b\x76", + [0x51b6] = "\x06\x4c\x24", [0x51c3] = "\x06\x4c\x22", + [0x51c4] = "\x04\x39\x44", [0x51c5] = "\x04\x39\x50", + [0x51c6] = "\x05\x3a\x4f", [0x51c7] = "\x04\x39\x3e", + [0x51c9] = "\x06\x55\x5b", [0x51ca] = "\x06\x55\x5e", + [0x51cb] = "\x06\x55\x5a", [0x51cc] = "\x04\x3f\x2a", + [0x51cd] = "\x05\x40\x78", [0x51ce] = "\x06\x55\x5c", + [0x51cf] = "\x05\x40\x77", [0x51d0] = "\x06\x55\x5f", + [0x51d1] = "\x05\x40\x75", [0x51d2] = "\x06\x55\x59", + [0x51d3] = "\x04\x3f\x23", [0x51d4] = "\x04\x3f\x28", + [0x51d5] = "\x04\x3f\x31", [0x51d6] = "\x04\x3f\x2e", + [0x51d8] = "\x05\x40\x7a", [0x51d9] = "\x06\x55\x62", + [0x51da] = "\x05\x40\x76", [0x51db] = "\x04\x3f\x2f", + [0x51dc] = "\x04\x3f\x24", [0x51dd] = "\x06\x55\x64", + [0x51de] = "\x05\x40\x79", [0x51df] = "\x05\x40\x72", + [0x51e0] = "\x05\x40\x7c", [0x51e1] = "\x06\x55\x66", + [0x51e4] = "\x06\x55\x5d", [0x51e8] = "\x0f\x43\x71", + [0x51e9] = "\x0f\x43\x72", [0x51ea] = "\x0f\x43\x73", + [0x51eb] = "\x06\x4b\x75", [0x51ee] = "\x06\x55\x63", + [0x51f4] = "\x06\x53\x35", [0x51f5] = "\x05\x40\x73", + [0x51fe] = "\x05\x40\x7d", [0x51ff] = "\x05\x40\x74", + [0x5200] = "\x06\x55\x65", [0x5202] = "\x05\x47\x60", + [0x5203] = "\x04\x45\x45", [0x5205] = "\x06\x5f\x44", + [0x5206] = "\x04\x45\x3e", [0x5207] = "\x05\x47\x63", + [0x5208] = "\x06\x5f\x48", [0x5209] = "\x05\x47\x65", + [0x520a] = "\x05\x47\x66", [0x520b] = "\x06\x5f\x49", + [0x520c] = "\x04\x4b\x4f", [0x520d] = "\x06\x5f\x4e", + [0x520e] = "\x06\x5f\x46", [0x520f] = "\x06\x5f\x4f", + [0x5210] = "\x07\x25\x6c", [0x5211] = "\x06\x5f\x47", + [0x5212] = "\x05\x47\x67", [0x5213] = "\x05\x47\x64", + [0x5214] = "\x06\x5f\x43", [0x5215] = "\x06\x5f\x4a", + [0x5216] = "\x06\x5f\x45", [0x5217] = "\x05\x47\x62", + [0x5218] = "\x06\x5f\x42", [0x5219] = "\x05\x47\x5f", + [0x521a] = "\x05\x47\x5e", [0x521b] = "\x05\x47\x5d", + [0x521c] = "\x07\x25\x66", [0x5222] = "\x0f\x4a\x37", + [0x5223] = "\x0f\x4a\x38", [0x5224] = "\x0f\x4a\x39", + [0x5225] = "\x0f\x4a\x3a", [0x5226] = "\x0f\x4a\x3b", + [0x5227] = "\x0f\x4a\x3c", [0x5228] = "\x0f\x4a\x3d", + [0x5229] = "\x04\x45\x3a", [0x522a] = "\x06\x5f\x4d", + [0x5237] = "\x06\x5f\x4c", [0x5238] = "\x05\x47\x69", + [0x523b] = "\x04\x45\x3b", [0x523c] = "\x04\x4b\x50", + [0x523d] = "\x04\x4b\x4c", [0x523e] = "\x04\x4b\x3e", + [0x523f] = "\x05\x4e\x62", [0x5240] = "\x05\x4e\x67", + [0x5241] = "\x04\x4b\x4e", [0x5242] = "\x07\x25\x6b", + [0x5243] = "\x05\x4e\x6c", [0x5244] = "\x05\x4e\x65", + [0x5245] = "\x04\x4b\x41", [0x5246] = "\x07\x25\x70", + [0x5247] = "\x04\x4b\x40", [0x5248] = "\x04\x51\x65", + [0x5249] = "\x07\x30\x4d", [0x524a] = "\x05\x4e\x64", + [0x524b] = "\x05\x56\x21", [0x524c] = "\x05\x4e\x66", + [0x524d] = "\x07\x25\x6d", [0x524e] = "\x05\x4e\x6a", + [0x524f] = "\x07\x25\x72", [0x5250] = "\x04\x4b\x49", + [0x5251] = "\x04\x4b\x4b", [0x5252] = "\x04\x4b\x46", + [0x5253] = "\x05\x4e\x5f", [0x5254] = "\x05\x4e\x6b", + [0x5255] = "\x07\x25\x67", [0x5256] = "\x07\x25\x68", + [0x5257] = "\x07\x25\x6a", [0x5258] = "\x04\x4b\x4a", + [0x5259] = "\x05\x4e\x63", [0x525a] = "\x07\x25\x6e", + [0x525b] = "\x05\x4e\x5e", [0x525c] = "\x05\x4e\x61", + [0x525d] = "\x05\x55\x7b", [0x525e] = "\x05\x4e\x69", + [0x525f] = "\x05\x4e\x68", [0x5262] = "\x07\x25\x69", + [0x5263] = "\x0f\x50\x5b", [0x5264] = "\x0f\x50\x5c", + [0x5265] = "\x0f\x50\x5d", [0x5266] = "\x07\x25\x6f", + [0x5270] = "\x04\x4b\x48", [0x5274] = "\x05\x56\x2a", + [0x5275] = "\x05\x56\x2b", [0x5276] = "\x04\x51\x5e", + [0x5277] = "\x05\x56\x25", [0x5278] = "\x05\x56\x23", + [0x5279] = "\x05\x56\x27", [0x527a] = "\x05\x55\x7d", + [0x527b] = "\x04\x51\x63", [0x527c] = "\x05\x56\x29", + [0x527d] = "\x05\x55\x7e", [0x527e] = "\x05\x56\x26", + [0x527f] = "\x05\x56\x24", [0x5280] = "\x04\x51\x62", + [0x5281] = "\x07\x30\x46", [0x5282] = "\x07\x30\x4e", + [0x5284] = "\x07\x30\x4f", [0x5285] = "\x07\x30\x4b", + [0x5286] = "\x07\x30\x47", [0x5287] = "\x05\x4e\x6d", + [0x5288] = "\x04\x51\x67", [0x5289] = "\x05\x55\x7c", + [0x528a] = "\x07\x30\x49", [0x528e] = "\x0f\x56\x3d", + [0x5290] = "\x07\x30\x51", [0x5295] = "\x07\x30\x4c", + [0x52a7] = "\x05\x56\x2c", [0x52a8] = "\x04\x51\x66", + [0x52aa] = "\x05\x47\x68", [0x52ab] = "\x05\x56\x28", + [0x52ac] = "\x04\x5c\x2b", [0x52ad] = "\x05\x5c\x48", + [0x52ae] = "\x05\x5c\x4b", [0x52af] = "\x04\x57\x35", + [0x52b0] = "\x04\x57\x36", [0x52b1] = "\x07\x30\x52", + [0x52b2] = "\x07\x39\x5e", [0x52b3] = "\x07\x39\x59", + [0x52b4] = "\x05\x5c\x4a", [0x52b5] = "\x07\x39\x5a", + [0x52b6] = "\x05\x5c\x4c", [0x52b7] = "\x07\x39\x64", + [0x52b8] = "\x05\x5c\x49", [0x52b9] = "\x07\x41\x22", + [0x52ba] = "\x07\x39\x5f", [0x52bb] = "\x07\x39\x60", + [0x52bc] = "\x07\x39\x5d", [0x52bd] = "\x04\x57\x37", + [0x52be] = "\x07\x39\x63", [0x52bf] = "\x05\x5c\x4f", + [0x52c0] = "\x07\x30\x48", [0x52c1] = "\x05\x5c\x4e", + [0x52c2] = "\x07\x39\x61", [0x52c3] = "\x07\x39\x5c", + [0x52c4] = "\x07\x39\x5b", [0x52c8] = "\x0f\x5b\x3e", + [0x52c9] = "\x0f\x5b\x3f", [0x52ca] = "\x0f\x5b\x40", + [0x52cd] = "\x07\x39\x62", [0x52d0] = "\x07\x39\x58", + [0x52d9] = "\x04\x5c\x28", [0x52da] = "\x07\x41\x23", + [0x52db] = "\x07\x40\x7e", [0x52dc] = "\x05\x62\x6e", + [0x52dd] = "\x04\x5c\x2c", [0x52de] = "\x05\x62\x6b", + [0x52df] = "\x07\x40\x7b", [0x52e0] = "\x07\x40\x7c", + [0x52e1] = "\x05\x62\x70", [0x52e2] = "\x04\x5c\x24", + [0x52e3] = "\x05\x62\x6c", [0x52e4] = "\x05\x62\x6f", + [0x52e5] = "\x05\x62\x71", [0x52e8] = "\x05\x62\x6a", + [0x52e9] = "\x0f\x5f\x63", [0x52ea] = "\x0f\x5f\x64", + [0x52eb] = "\x07\x41\x24", [0x52ec] = "\x07\x41\x25", + [0x52ed] = "\x07\x40\x7d", [0x52ef] = "\x05\x62\x6d", + [0x52f0] = "\x07\x40\x7a", [0x52fb] = "\x07\x41\x21", + [0x52ff] = "\x05\x68\x4f", [0x5300] = "\x05\x68\x4c", + [0x5301] = "\x05\x68\x51", [0x5302] = "\x04\x60\x3e", + [0x5303] = "\x05\x68\x50", [0x5304] = "\x04\x60\x3b", + [0x5305] = "\x05\x68\x54", [0x5306] = "\x05\x68\x4e", + [0x5307] = "\x07\x48\x32", [0x5308] = "\x04\x60\x3a", + [0x5309] = "\x07\x48\x34", [0x530a] = "\x04\x60\x3c", + [0x530b] = "\x04\x60\x3d", [0x530c] = "\x07\x48\x30", + [0x530d] = "\x05\x68\x4d", [0x530e] = "\x07\x48\x31", + [0x530f] = "\x05\x68\x53", [0x5310] = "\x05\x68\x52", + [0x5314] = "\x0f\x63\x2a", [0x5315] = "\x07\x4b\x5d", + [0x5316] = "\x07\x48\x35", [0x5317] = "\x07\x48\x33", + [0x531a] = "\x05\x6c\x60", [0x531b] = "\x05\x6c\x62", + [0x531c] = "\x05\x6c\x5e", [0x531d] = "\x07\x4e\x58", + [0x531e] = "\x05\x6c\x61", [0x531f] = "\x05\x6c\x63", + [0x5321] = "\x07\x4e\x57", [0x5322] = "\x0f\x65\x57", + [0x5323] = "\x04\x63\x72", [0x5328] = "\x05\x6c\x5f", + [0x5329] = "\x04\x63\x73", [0x532a] = "\x07\x4e\x56", + [0x532d] = "\x07\x54\x22", [0x532e] = "\x05\x70\x52", + [0x532f] = "\x05\x70\x54", [0x5330] = "\x05\x70\x53", + [0x5331] = "\x05\x70\x55", [0x5332] = "\x07\x53\x7e", + [0x5335] = "\x07\x54\x23", [0x5336] = "\x07\x53\x7d", + [0x533a] = "\x04\x68\x79", [0x533b] = "\x05\x73\x63", + [0x533c] = "\x07\x58\x46", [0x533d] = "\x05\x73\x61", + [0x533e] = "\x05\x73\x62", [0x533f] = "\x07\x58\x47", + [0x5340] = "\x05\x73\x65", [0x5341] = "\x04\x6a\x59", + [0x5342] = "\x07\x54\x21", [0x5343] = "\x05\x73\x64", + [0x5344] = "\x07\x59\x33", [0x5346] = "\x05\x73\x66", + [0x5349] = "\x05\x76\x2b", [0x534a] = "\x07\x5c\x26", + [0x534b] = "\x04\x6a\x58", [0x534c] = "\x07\x5c\x25", + [0x534f] = "\x07\x5f\x24", [0x5353] = "\x04\x6c\x74", + [0x5354] = "\x07\x62\x43", [0x5355] = "\x07\x62\x45", + [0x5357] = "\x07\x62\x44", [0x5359] = "\x0f\x6c\x66", + [0x535a] = "\x05\x7b\x43", [0x535e] = "\x05\x27\x44", + [0x535f] = "\x04\x2a\x60", [0x5360] = "\x04\x2a\x61", + [0x5361] = "\x04\x2e\x56", [0x5362] = "\x05\x2f\x28", + [0x5363] = "\x05\x2f\x27", [0x5364] = "\x06\x3a\x2f", + [0x5365] = "\x06\x3a\x30", [0x5367] = "\x04\x33\x58", + [0x5368] = "\x05\x34\x22", [0x5369] = "\x0f\x37\x27", + [0x536a] = "\x05\x3a\x52", [0x536b] = "\x04\x39\x51", + [0x536c] = "\x05\x3a\x53", [0x536d] = "\x05\x3a\x51", + [0x536e] = "\x05\x3a\x55", [0x536f] = "\x05\x3a\x50", + [0x5370] = "\x06\x4c\x29", [0x5371] = "\x05\x3a\x54", + [0x5372] = "\x05\x41\x23", [0x5373] = "\x05\x41\x22", + [0x5375] = "\x05\x41\x21", [0x5376] = "\x06\x5f\x51", + [0x5377] = "\x06\x5f\x52", [0x5378] = "\x04\x45\x47", + [0x5379] = "\x04\x45\x48", [0x537a] = "\x05\x47\x6c", + [0x537b] = "\x05\x47\x6a", [0x537c] = "\x05\x47\x6b", + [0x537d] = "\x04\x45\x49", [0x537e] = "\x06\x5f\x50", + [0x537f] = "\x04\x45\x4b", [0x5380] = "\x0f\x4d\x3f", + [0x5382] = "\x05\x4e\x6e", [0x5383] = "\x04\x4b\x52", + [0x5384] = "\x07\x25\x75", [0x5385] = "\x05\x4e\x6f", + [0x5386] = "\x04\x4b\x51", [0x5387] = "\x07\x25\x74", + [0x5389] = "\x04\x4b\x53", [0x538a] = "\x04\x51\x69", + [0x538b] = "\x04\x51\x68", [0x538c] = "\x04\x51\x6a", + [0x538d] = "\x05\x56\x2d", [0x538e] = "\x05\x62\x75", + [0x538f] = "\x07\x39\x65", [0x5390] = "\x05\x5a\x75", + [0x5392] = "\x05\x5c\x50", [0x5393] = "\x05\x62\x74", + [0x5394] = "\x05\x62\x73", [0x5395] = "\x05\x62\x72", + [0x5396] = "\x05\x68\x57", [0x5397] = "\x05\x68\x56", + [0x5398] = "\x05\x68\x55", [0x5399] = "\x05\x68\x58", + [0x539a] = "\x07\x48\x36", [0x539c] = "\x07\x48\x37", + [0x53a1] = "\x04\x6a\x5a", [0x53a4] = "\x07\x66\x3f", + [0x53a5] = "\x07\x66\x49", [0x53a6] = "\x06\x26\x3f", + [0x53a7] = "\x06\x28\x6b", [0x53a8] = "\x06\x28\x6c", + [0x53a9] = "\x06\x33\x41", [0x53aa] = "\x06\x33\x3f", + [0x53ab] = "\x06\x33\x40", [0x53ac] = "\x05\x2a\x6e", + [0x53b0] = "\x05\x2f\x2a", [0x53b1] = "\x05\x2f\x2b", + [0x53b2] = "\x06\x3a\x33", [0x53b3] = "\x0f\x31\x3f", + [0x53b4] = "\x0f\x31\x40", [0x53b5] = "\x06\x3a\x31", + [0x53b6] = "\x06\x3a\x32", [0x53b8] = "\x05\x2f\x29", + [0x53b9] = "\x05\x34\x23", [0x53ba] = "\x05\x34\x24", + [0x53bb] = "\x04\x33\x5c", [0x53bc] = "\x06\x42\x59", + [0x53bd] = "\x06\x42\x57", [0x53be] = "\x05\x34\x25", + [0x53bf] = "\x06\x42\x55", [0x53c0] = "\x06\x42\x5b", + [0x53c1] = "\x06\x42\x56", [0x53c2] = "\x06\x42\x5a", + [0x53c9] = "\x06\x42\x58", [0x53ce] = "\x04\x39\x52", + [0x53cf] = "\x06\x4c\x2c", [0x53d1] = "\x0f\x3d\x52", + [0x53d4] = "\x06\x4c\x2a", [0x53d7] = "\x0f\x3d\x53", + [0x53d8] = "\x05\x41\x24", [0x53d9] = "\x04\x3f\x32", + [0x53da] = "\x06\x55\x69", [0x53dc] = "\x04\x3f\x35", + [0x53dd] = "\x04\x3f\x34", [0x53de] = "\x06\x55\x67", + [0x53df] = "\x05\x3a\x56", [0x53e0] = "\x04\x3f\x36", + [0x53e1] = "\x0f\x43\x75", [0x53e2] = "\x06\x55\x68", + [0x53ea] = "\x05\x47\x6d", [0x53eb] = "\x05\x47\x6e", + [0x53ec] = "\x06\x5f\x53", [0x53ef] = "\x05\x47\x6f", + [0x53f0] = "\x05\x47\x70", [0x53f1] = "\x0f\x4a\x3e", + [0x53f2] = "\x07\x25\x78", [0x53f3] = "\x04\x4b\x54", + [0x53f4] = "\x07\x25\x76", [0x53f5] = "\x07\x25\x77", + [0x53f6] = "\x0f\x50\x61", [0x53f7] = "\x07\x25\x79", + [0x53fb] = "\x07\x30\x54", [0x53fc] = "\x04\x51\x6b", + [0x53fd] = "\x0f\x56\x3f", [0x53fe] = "\x07\x30\x53", + [0x5400] = "\x05\x5c\x51", [0x5401] = "\x05\x5c\x52", + [0x5403] = "\x07\x39\x66", [0x5404] = "\x07\x39\x67", + [0x5411] = "\x05\x73\x67", [0x5413] = "\x05\x76\x2c", + [0x5415] = "\x05\x22\x7e", [0x5416] = "\x06\x25\x3e", + [0x5417] = "\x04\x24\x67", [0x5418] = "\x06\x28\x6d", + [0x5419] = "\x05\x24\x6d", [0x541a] = "\x05\x24\x6c", + [0x541b] = "\x0f\x25\x21", [0x541c] = "\x0f\x25\x22", + [0x541d] = "\x05\x27\x45", [0x541e] = "\x04\x27\x54", + [0x5420] = "\x0f\x28\x30", [0x5421] = "\x0f\x28\x31", + [0x5422] = "\x0f\x28\x32", [0x5423] = "\x0f\x28\x33", + [0x5424] = "\x06\x2d\x47", [0x5425] = "\x0f\x28\x35", + [0x5429] = "\x04\x2a\x65", [0x542a] = "\x04\x2a\x63", + [0x542b] = "\x06\x33\x45", [0x542c] = "\x05\x2a\x70", + [0x5431] = "\x0f\x2c\x59", [0x5432] = "\x0f\x2c\x5a", + [0x5433] = "\x0f\x2c\x5b", [0x5434] = "\x0f\x2c\x5d", + [0x5435] = "\x0f\x2c\x5e", [0x5436] = "\x0f\x2c\x5f", + [0x5437] = "\x0f\x2c\x61", [0x5438] = "\x0f\x2c\x63", + [0x543a] = "\x06\x33\x43", [0x543c] = "\x06\x33\x44", + [0x543d] = "\x0f\x2c\x64", [0x5440] = "\x0f\x2c\x60", + [0x5441] = "\x06\x33\x42", [0x5444] = "\x05\x2a\x6f", + [0x5445] = "\x05\x2a\x71", [0x5446] = "\x04\x2e\x60", + [0x5447] = "\x05\x2f\x33", [0x5448] = "\x06\x3a\x34", + [0x5449] = "\x06\x33\x46", [0x544a] = "\x06\x3a\x35", + [0x544b] = "\x05\x2f\x2f", [0x544c] = "\x06\x3a\x39", + [0x544d] = "\x05\x2f\x2c", [0x544e] = "\x05\x2f\x31", + [0x544f] = "\x05\x2f\x30", [0x5450] = "\x04\x2e\x5b", + [0x5451] = "\x04\x2e\x5d", [0x5452] = "\x05\x2f\x36", + [0x5453] = "\x05\x2f\x32", [0x5454] = "\x05\x2f\x35", + [0x5457] = "\x0f\x31\x3e", [0x5458] = "\x04\x2e\x59", + [0x5459] = "\x05\x2f\x37", [0x545a] = "\x06\x3a\x38", + [0x545b] = "\x0f\x31\x42", [0x545c] = "\x0f\x31\x43", + [0x545d] = "\x0f\x31\x45", [0x545e] = "\x0f\x31\x46", + [0x5462] = "\x04\x2e\x5a", [0x5463] = "\x05\x2f\x2d", + [0x5469] = "\x06\x3a\x37", [0x546c] = "\x0f\x31\x48", + [0x546e] = "\x0f\x31\x41", [0x546f] = "\x05\x34\x26", + [0x5470] = "\x05\x2f\x2e", [0x5472] = "\x06\x3a\x36", + [0x5473] = "\x05\x34\x2c", [0x5474] = "\x05\x34\x28", + [0x5475] = "\x06\x42\x61", [0x5476] = "\x06\x42\x5f", + [0x5478] = "\x05\x34\x31", [0x5479] = "\x05\x34\x30", + [0x547a] = "\x05\x34\x2a", [0x547b] = "\x06\x42\x60", + [0x547c] = "\x05\x34\x34", [0x547d] = "\x05\x34\x32", + [0x547e] = "\x05\x2f\x38", [0x547f] = "\x05\x34\x2e", + [0x5480] = "\x05\x34\x27", [0x5481] = "\x05\x34\x29", + [0x5482] = "\x05\x34\x2d", [0x5484] = "\x0f\x37\x28", + [0x5486] = "\x0f\x37\x29", [0x5487] = "\x0f\x37\x2a", + [0x5488] = "\x0f\x37\x2b", [0x5489] = "\x0f\x37\x2e", + [0x548a] = "\x0f\x37\x2f", [0x548b] = "\x0f\x37\x31", + [0x548c] = "\x0f\x37\x32", [0x548d] = "\x0f\x37\x33", + [0x548f] = "\x06\x42\x5e", [0x5492] = "\x06\x42\x5c", + [0x5494] = "\x06\x4c\x2e", [0x5496] = "\x0f\x37\x30", + [0x549c] = "\x05\x34\x2b", [0x549e] = "\x0f\x37\x2c", + [0x54a4] = "\x06\x42\x62", [0x54a7] = "\x05\x34\x2f", + [0x54a8] = "\x05\x34\x33", [0x54a9] = "\x06\x42\x5d", + [0x54aa] = "\x05\x3a\x58", [0x54ab] = "\x05\x3a\x5e", + [0x54ac] = "\x05\x3a\x57", [0x54ad] = "\x05\x3a\x5b", + [0x54ae] = "\x04\x39\x56", [0x54af] = "\x06\x4c\x35", + [0x54b0] = "\x04\x39\x57", [0x54b1] = "\x04\x39\x55", + [0x54b2] = "\x05\x3a\x5c", [0x54b3] = "\x05\x3a\x5d", + [0x54b4] = "\x06\x4c\x31", [0x54b5] = "\x05\x3a\x5a", + [0x54b6] = "\x05\x3a\x5f", [0x54b9] = "\x0f\x3d\x54", + [0x54ba] = "\x0f\x3d\x55", [0x54bb] = "\x0f\x3d\x56", + [0x54bc] = "\x0f\x3d\x57", [0x54bd] = "\x06\x4c\x34", + [0x54c0] = "\x06\x4c\x30", [0x54c1] = "\x06\x4c\x32", + [0x54c6] = "\x05\x3a\x61", [0x54c7] = "\x05\x3a\x60", + [0x54ca] = "\x05\x41\x28", [0x54cb] = "\x06\x55\x71", + [0x54cc] = "\x04\x3f\x37", [0x54cd] = "\x05\x41\x29", + [0x54ce] = "\x06\x55\x6a", [0x54cf] = "\x06\x55\x6c", + [0x54d0] = "\x05\x41\x25", [0x54d1] = "\x06\x55\x6e", + [0x54d2] = "\x04\x3f\x41", [0x54d3] = "\x04\x3f\x43", + [0x54d4] = "\x06\x55\x6f", [0x54d5] = "\x06\x55\x72", + [0x54d6] = "\x05\x41\x26", [0x54d7] = "\x05\x41\x27", + [0x54da] = "\x06\x55\x6d", [0x54db] = "\x0f\x43\x77", + [0x54dc] = "\x0f\x43\x78", [0x54dd] = "\x0f\x43\x79", + [0x54de] = "\x0f\x43\x7a", [0x54df] = "\x0f\x43\x7b", + [0x54e0] = "\x0f\x43\x7c", [0x54e1] = "\x0f\x43\x7d", + [0x54e2] = "\x0f\x43\x7e", [0x54e3] = "\x0f\x44\x21", + [0x54e4] = "\x0f\x44\x22", [0x54e5] = "\x0f\x44\x23", + [0x54e6] = "\x0f\x44\x24", [0x54e7] = "\x0f\x44\x26", + [0x54ed] = "\x06\x55\x70", [0x54f1] = "\x06\x55\x73", + [0x54fa] = "\x06\x5f\x5b", [0x54fb] = "\x05\x47\x78", + [0x54fc] = "\x06\x5f\x54", [0x54fd] = "\x07\x25\x7e", + [0x54fe] = "\x05\x47\x7a", [0x54ff] = "\x06\x5f\x56", + [0x5500] = "\x04\x45\x52", [0x5501] = "\x05\x47\x73", + [0x5502] = "\x05\x47\x72", [0x5503] = "\x06\x5f\x57", + [0x5504] = "\x05\x47\x7b", [0x5505] = "\x06\x5f\x59", + [0x5506] = "\x06\x5f\x5a", [0x5507] = "\x05\x47\x75", + [0x5508] = "\x06\x5f\x55", [0x5509] = "\x05\x47\x71", + [0x550a] = "\x05\x47\x7d", [0x5510] = "\x06\x5f\x58", + [0x5512] = "\x0f\x4a\x41", [0x5513] = "\x0f\x4a\x43", + [0x5514] = "\x0f\x4a\x44", [0x5515] = "\x0f\x4a\x45", + [0x5516] = "\x0f\x4a\x46", [0x5517] = "\x0f\x4a\x47", + [0x5518] = "\x0f\x4a\x48", [0x5519] = "\x0f\x4a\x49", + [0x551a] = "\x0f\x4a\x4b", [0x551b] = "\x0f\x4a\x4c", + [0x551c] = "\x0f\x4a\x4d", [0x551d] = "\x0f\x4a\x4f", + [0x551e] = "\x0f\x4a\x50", [0x551f] = "\x0f\x4a\x51", + [0x5520] = "\x0f\x4a\x52", [0x5522] = "\x04\x45\x54", + [0x5523] = "\x0f\x4a\x40", [0x5528] = "\x05\x47\x77", + [0x5529] = "\x05\x47\x7c", [0x552a] = "\x05\x47\x79", + [0x552b] = "\x05\x47\x74", [0x552c] = "\x0f\x50\x64", + [0x552d] = "\x04\x4b\x5a", [0x552e] = "\x05\x4e\x72", + [0x552f] = "\x05\x4e\x73", [0x5530] = "\x07\x26\x21", + [0x5531] = "\x05\x4e\x70", [0x5532] = "\x04\x45\x50", + [0x5533] = "\x07\x26\x25", [0x5534] = "\x05\x4e\x75", + [0x5535] = "\x07\x25\x7d", [0x5536] = "\x0f\x50\x62", + [0x5537] = "\x0f\x50\x63", [0x5538] = "\x0f\x50\x65", + [0x5539] = "\x0f\x50\x66", [0x553a] = "\x0f\x50\x68", + [0x5543] = "\x07\x26\x22", [0x5545] = "\x07\x25\x7a", + [0x5546] = "\x07\x26\x23", [0x5547] = "\x05\x4e\x71", + [0x5548] = "\x05\x4e\x74", [0x5549] = "\x07\x25\x7c", + [0x554b] = "\x0f\x4a\x4a", [0x554c] = "\x07\x30\x58", + [0x554d] = "\x05\x56\x31", [0x554e] = "\x05\x56\x2e", + [0x554f] = "\x05\x56\x32", [0x5550] = "\x07\x30\x55", + [0x5551] = "\x04\x51\x71", [0x5553] = "\x04\x51\x73", + [0x5554] = "\x05\x56\x34", [0x5555] = "\x04\x51\x72", + [0x5556] = "\x07\x30\x56", [0x5557] = "\x07\x30\x5a", + [0x5558] = "\x04\x51\x6f", [0x555a] = "\x07\x30\x57", + [0x555e] = "\x0f\x56\x41", [0x555f] = "\x0f\x56\x42", + [0x5560] = "\x0f\x56\x43", [0x5561] = "\x05\x56\x30", + [0x5565] = "\x0f\x56\x44", [0x5566] = "\x05\x56\x2f", + [0x5567] = "\x0f\x56\x45", [0x5568] = "\x0f\x56\x46", + [0x5569] = "\x0f\x56\x47", [0x556a] = "\x0f\x56\x49", + [0x556b] = "\x0f\x56\x4b", [0x556c] = "\x0f\x56\x4c", + [0x556d] = "\x0f\x56\x4d", [0x5570] = "\x05\x5c\x56", + [0x5571] = "\x07\x39\x68", [0x5572] = "\x05\x5c\x54", + [0x5573] = "\x07\x39\x6f", [0x5574] = "\x07\x39\x6a", + [0x5575] = "\x05\x5c\x53", [0x5576] = "\x04\x57\x3a", + [0x5577] = "\x07\x39\x69", [0x5578] = "\x05\x5c\x55", + [0x5579] = "\x04\x57\x3d", [0x557a] = "\x07\x39\x6c", + [0x557b] = "\x04\x57\x3c", [0x557c] = "\x05\x56\x35", + [0x557d] = "\x05\x5c\x58", [0x557e] = "\x05\x5c\x57", + [0x557f] = "\x05\x5c\x59", [0x5582] = "\x0f\x5b\x41", + [0x5583] = "\x0f\x5b\x42", [0x5584] = "\x0f\x5b\x43", + [0x5585] = "\x0f\x5b\x44", [0x5586] = "\x0f\x5b\x45", + [0x5587] = "\x0f\x5b\x46", [0x5588] = "\x0f\x5b\x47", + [0x5589] = "\x0f\x5b\x48", [0x558a] = "\x0f\x5b\x49", + [0x558b] = "\x07\x39\x6b", [0x558c] = "\x07\x39\x6e", + [0x558f] = "\x0f\x56\x4a", [0x5597] = "\x07\x41\x29", + [0x5598] = "\x05\x62\x76", [0x5599] = "\x05\x62\x78", + [0x559a] = "\x07\x41\x26", [0x559b] = "\x07\x41\x28", + [0x559c] = "\x05\x62\x77", [0x559d] = "\x04\x5c\x30", + [0x559e] = "\x05\x62\x7a", [0x559f] = "\x07\x41\x27", + [0x55a0] = "\x05\x62\x79", [0x55a1] = "\x07\x41\x2a", + [0x55a2] = "\x0f\x5f\x65", [0x55a3] = "\x0f\x5f\x66", + [0x55a4] = "\x0f\x5f\x67", [0x55a5] = "\x0f\x5f\x68", + [0x55a6] = "\x0f\x5f\x69", [0x55aa] = "\x04\x60\x40", + [0x55ab] = "\x05\x68\x5a", [0x55ac] = "\x05\x68\x59", + [0x55ae] = "\x0f\x63\x2b", [0x55af] = "\x0f\x63\x2c", + [0x55b0] = "\x0f\x63\x2d", [0x55b1] = "\x0f\x63\x2e", + [0x55b3] = "\x07\x48\x3a", [0x55b4] = "\x07\x48\x38", + [0x55b7] = "\x07\x48\x39", [0x55b9] = "\x0f\x63\x2f", + [0x55bb] = "\x05\x6c\x65", [0x55bc] = "\x05\x6c\x66", + [0x55bd] = "\x07\x4e\x59", [0x55be] = "\x07\x4e\x5a", + [0x55bf] = "\x05\x6c\x64", [0x55c0] = "\x05\x6c\x67", + [0x55c1] = "\x04\x60\x41", [0x55c2] = "\x07\x4e\x5b", + [0x55c3] = "\x0f\x65\x5a", [0x55c4] = "\x0f\x65\x5b", + [0x55c5] = "\x0f\x65\x5c", [0x55c6] = "\x0f\x65\x5d", + [0x55c9] = "\x07\x4e\x5d", [0x55d2] = "\x05\x70\x56", + [0x55d3] = "\x05\x70\x57", [0x55d6] = "\x0f\x67\x7d", + [0x55d8] = "\x07\x54\x24", [0x55d9] = "\x04\x66\x62", + [0x55db] = "\x0f\x67\x7c", [0x55dd] = "\x05\x73\x68", + [0x55de] = "\x07\x58\x48", [0x55df] = "\x05\x73\x69", + [0x55e1] = "\x0f\x69\x5b", [0x55e2] = "\x0f\x69\x5c", + [0x55e3] = "\x07\x58\x49", [0x55ea] = "\x05\x73\x6a", + [0x55eb] = "\x05\x76\x2e", [0x55ec] = "\x04\x6a\x5b", + [0x55ed] = "\x05\x76\x2d", [0x55ee] = "\x05\x76\x2f", + [0x55ef] = "\x0f\x6a\x65", [0x55f1] = "\x07\x5c\x28", + [0x55f2] = "\x07\x5c\x27", [0x55f4] = "\x07\x5f\x26", + [0x55f7] = "\x07\x5f\x25", [0x55f8] = "\x07\x5f\x27", + [0x55fa] = "\x07\x62\x46", [0x55fb] = "\x05\x7a\x2d", + [0x55fe] = "\x05\x7a\x6e", [0x55ff] = "\x04\x6d\x75", + [0x5601] = "\x07\x64\x53", [0x5603] = "\x07\x65\x3b", + [0x5604] = "\x05\x7c\x43", [0x5605] = "\x06\x22\x27", + [0x5606] = "\x06\x25\x40", [0x5608] = "\x06\x28\x6e", + [0x5609] = "\x0f\x22\x68", [0x560d] = "\x06\x2d\x48", + [0x560e] = "\x0f\x25\x24", [0x5615] = "\x06\x33\x47", + [0x5616] = "\x06\x33\x49", [0x5619] = "\x0f\x28\x36", + [0x561a] = "\x0f\x28\x38", [0x561b] = "\x0f\x28\x39", + [0x561c] = "\x0f\x28\x3a", [0x561d] = "\x0f\x28\x3b", + [0x561e] = "\x0f\x28\x3d", [0x5624] = "\x0f\x28\x37", + [0x5626] = "\x06\x31\x5a", [0x562b] = "\x05\x2f\x39", + [0x562c] = "\x06\x3a\x3a", [0x562d] = "\x04\x2e\x63", + [0x562e] = "\x05\x2f\x3a", [0x5630] = "\x06\x3a\x3b", + [0x5631] = "\x06\x33\x4b", [0x5638] = "\x0f\x2c\x65", + [0x5639] = "\x0f\x2c\x66", [0x563a] = "\x0f\x2c\x67", + [0x563b] = "\x0f\x2c\x68", [0x563c] = "\x0f\x2c\x69", + [0x563d] = "\x0f\x31\x49", [0x563e] = "\x0f\x31\x4b", + [0x563f] = "\x0f\x31\x4e", [0x5642] = "\x06\x3a\x3e", + [0x5644] = "\x06\x3a\x3f", [0x5649] = "\x06\x3a\x3d", + [0x564a] = "\x06\x3a\x40", [0x564b] = "\x06\x3a\x3c", + [0x564c] = "\x0f\x2c\x6a", [0x564d] = "\x04\x2a\x68", + [0x564e] = "\x05\x34\x36", [0x564f] = "\x06\x3a\x41", + [0x5654] = "\x0f\x31\x4a", [0x5655] = "\x0f\x31\x4c", + [0x5656] = "\x0f\x31\x4d", [0x5657] = "\x0f\x31\x4f", + [0x5658] = "\x0f\x31\x50", [0x5659] = "\x0f\x31\x51", + [0x565a] = "\x0f\x31\x52", [0x565b] = "\x0f\x31\x53", + [0x565c] = "\x0f\x31\x54", [0x565d] = "\x0f\x37\x37", + [0x5664] = "\x06\x42\x63", [0x5668] = "\x05\x34\x35", + [0x566b] = "\x06\x4c\x38", [0x566c] = "\x05\x3a\x62", + [0x566d] = "\x06\x4c\x39", [0x566e] = "\x06\x4c\x3a", + [0x566f] = "\x06\x4c\x3c", [0x5670] = "\x05\x3a\x63", + [0x5671] = "\x06\x4c\x3d", [0x5672] = "\x06\x4c\x3b", + [0x5677] = "\x06\x4c\x36", [0x5678] = "\x06\x4c\x37", + [0x5679] = "\x0f\x37\x34", [0x567a] = "\x0f\x37\x36", + [0x567b] = "\x0f\x37\x38", [0x567c] = "\x0f\x3d\x5b", + [0x5683] = "\x0f\x37\x35", [0x5688] = "\x06\x55\x75", + [0x5689] = "\x05\x41\x2b", [0x568a] = "\x05\x41\x2a", + [0x568b] = "\x05\x41\x2c", [0x568c] = "\x06\x4c\x3f", + [0x568d] = "\x04\x3f\x48", [0x568e] = "\x0f\x3d\x58", + [0x568f] = "\x0f\x3d\x59", [0x5690] = "\x0f\x3d\x5a", + [0x5691] = "\x0f\x3d\x5c", [0x5692] = "\x0f\x3d\x5d", + [0x5693] = "\x0f\x3d\x5e", [0x5694] = "\x0f\x3d\x5f", + [0x5695] = "\x0f\x3d\x62", [0x5696] = "\x0f\x3d\x63", + [0x5697] = "\x0f\x3d\x64", [0x5698] = "\x0f\x44\x28", + [0x5699] = "\x0f\x44\x2a", [0x569a] = "\x0f\x3d\x61", + [0x569c] = "\x06\x55\x74", [0x56a6] = "\x05\x48\x23", + [0x56a7] = "\x06\x5f\x5f", [0x56a8] = "\x06\x5f\x60", + [0x56a9] = "\x04\x45\x56", [0x56aa] = "\x06\x5f\x63", + [0x56ab] = "\x06\x5f\x61", [0x56b0] = "\x0f\x44\x27", + [0x56b1] = "\x0f\x44\x29", [0x56b2] = "\x0f\x44\x2b", + [0x56b3] = "\x0f\x44\x2c", [0x56b4] = "\x0f\x44\x2d", + [0x56b5] = "\x0f\x44\x2e", [0x56b6] = "\x0f\x44\x2f", + [0x56b7] = "\x0f\x44\x30", [0x56b8] = "\x0f\x44\x31", + [0x56b9] = "\x0f\x44\x32", [0x56c0] = "\x06\x5f\x5d", + [0x56c1] = "\x06\x5f\x62", [0x56c2] = "\x05\x48\x21", + [0x56c3] = "\x06\x5f\x5e", [0x56c5] = "\x04\x4b\x5f", + [0x56c6] = "\x07\x26\x26", [0x56c7] = "\x06\x5f\x5c", + [0x56c8] = "\x06\x5f\x64", [0x56ca] = "\x0f\x4a\x53", + [0x56cb] = "\x0f\x4a\x55", [0x56cc] = "\x0f\x4a\x56", + [0x56cd] = "\x0f\x4a\x57", [0x56ce] = "\x0f\x4a\x58", + [0x56cf] = "\x0f\x4a\x5a", [0x56d4] = "\x07\x26\x28", + [0x56d8] = "\x05\x56\x38", [0x56d9] = "\x07\x30\x5c", + [0x56da] = "\x05\x56\x36", [0x56db] = "\x07\x30\x5d", + [0x56dc] = "\x04\x51\x77", [0x56dd] = "\x05\x56\x39", + [0x56de] = "\x05\x56\x37", [0x56df] = "\x05\x56\x3a", + [0x56e0] = "\x07\x26\x2a", [0x56e1] = "\x07\x30\x5b", + [0x56e2] = "\x0f\x50\x6a", [0x56e3] = "\x0f\x50\x69", + [0x56e4] = "\x0f\x56\x51", [0x56ee] = "\x04\x57\x43", + [0x56ef] = "\x05\x5c\x5a", [0x56f0] = "\x07\x39\x73", + [0x56f1] = "\x04\x57\x44", [0x56f2] = "\x07\x39\x76", + [0x56f3] = "\x07\x39\x74", [0x56f4] = "\x07\x30\x5e", + [0x56f5] = "\x0f\x50\x6b", [0x56f7] = "\x0f\x56\x4e", + [0x56f8] = "\x0f\x56\x4f", [0x56f9] = "\x0f\x56\x50", + [0x56fa] = "\x0f\x56\x52", [0x56fb] = "\x07\x39\x71", + [0x56fc] = "\x07\x39\x75", [0x56fd] = "\x07\x39\x72", + [0x56ff] = "\x07\x39\x70", [0x5701] = "\x0f\x5b\x4d", + [0x5702] = "\x0f\x5b\x4f", [0x5703] = "\x04\x5c\x34", + [0x5704] = "\x05\x62\x7b", [0x5705] = "\x07\x41\x2c", + [0x5707] = "\x0f\x5b\x4b", [0x5708] = "\x0f\x5b\x4c", + [0x5709] = "\x0f\x5b\x4e", [0x570a] = "\x0f\x5b\x50", + [0x570b] = "\x0f\x5b\x51", [0x570c] = "\x0f\x5b\x52", + [0x570f] = "\x07\x41\x2b", [0x5711] = "\x04\x5c\x33", + [0x5712] = "\x05\x68\x5b", [0x5713] = "\x07\x48\x3c", + [0x5714] = "\x07\x48\x3d", [0x5715] = "\x0f\x5f\x6a", + [0x5717] = "\x0f\x5f\x6b", [0x571a] = "\x05\x6c\x68", + [0x571b] = "\x04\x63\x77", [0x571e] = "\x0f\x65\x5e", + [0x571f] = "\x07\x4e\x5e", [0x5720] = "\x07\x54\x26", + [0x5723] = "\x07\x54\x25", [0x5725] = "\x0f\x65\x5f", + [0x5726] = "\x04\x68\x7d", [0x5727] = "\x07\x58\x4a", + [0x5729] = "\x07\x58\x4b", [0x572a] = "\x07\x5c\x29", + [0x572b] = "\x0f\x69\x5d", [0x572c] = "\x07\x5c\x2a", + [0x572f] = "\x07\x5c\x2b", [0x5730] = "\x05\x77\x6e", + [0x5731] = "\x07\x5c\x2c", [0x5732] = "\x05\x77\x6f", + [0x5733] = "\x0f\x6a\x67", [0x5734] = "\x05\x79\x32", + [0x5737] = "\x07\x62\x49", [0x5738] = "\x07\x62\x47", + [0x5739] = "\x07\x63\x5d", [0x573a] = "\x0f\x6c\x67", + [0x573b] = "\x0f\x22\x69", [0x573c] = "\x06\x33\x4d", + [0x573d] = "\x06\x42\x64", [0x573e] = "\x04\x39\x5b", + [0x573f] = "\x06\x4c\x40", [0x5741] = "\x06\x55\x76", + [0x5743] = "\x06\x5f\x65", [0x5744] = "\x07\x26\x2c", + [0x5745] = "\x07\x30\x5f", [0x5747] = "\x07\x30\x60", + [0x5748] = "\x07\x41\x2d", [0x574a] = "\x05\x73\x6b", + [0x574b] = "\x07\x61\x28", [0x574c] = "\x04\x21\x7e", + [0x574d] = "\x06\x25\x41", [0x574f] = "\x0f\x22\x6a", + [0x5750] = "\x06\x28\x6f", [0x5752] = "\x0f\x25\x25", + [0x5753] = "\x06\x28\x70", [0x5754] = "\x04\x27\x55", + [0x5755] = "\x05\x27\x48", [0x5756] = "\x04\x27\x57", + [0x5758] = "\x05\x27\x47", [0x575a] = "\x0f\x28\x3e", + [0x575b] = "\x0f\x28\x3f", [0x575c] = "\x0f\x28\x40", + [0x575d] = "\x0f\x28\x41", [0x575e] = "\x0f\x28\x42", + [0x5762] = "\x06\x2d\x4a", [0x5763] = "\x06\x33\x51", + [0x5764] = "\x06\x33\x54", [0x5765] = "\x05\x2a\x74", + [0x5766] = "\x05\x2a\x72", [0x5767] = "\x04\x2a\x70", + [0x5768] = "\x05\x2a\x75", [0x5769] = "\x06\x33\x56", + [0x576a] = "\x06\x33\x50", [0x576b] = "\x06\x33\x52", + [0x576c] = "\x04\x2a\x6d", [0x576d] = "\x06\x33\x4f", + [0x576e] = "\x05\x2a\x73", [0x576f] = "\x06\x33\x57", + [0x5773] = "\x0f\x2c\x6b", [0x5774] = "\x0f\x2c\x6c", + [0x5775] = "\x0f\x2c\x6e", [0x5776] = "\x0f\x2c\x6f", + [0x5779] = "\x0f\x2c\x70", [0x577a] = "\x06\x33\x55", + [0x577b] = "\x06\x33\x53", [0x577c] = "\x06\x33\x4e", + [0x577e] = "\x05\x2f\x3c", [0x577f] = "\x05\x2f\x3b", + [0x5780] = "\x06\x3a\x45", [0x5781] = "\x05\x2f\x3d", + [0x5782] = "\x06\x3a\x46", [0x5783] = "\x05\x2f\x3e", + [0x5784] = "\x05\x2a\x76", [0x5785] = "\x05\x34\x3c", + [0x5786] = "\x06\x3a\x47", [0x5788] = "\x0f\x31\x55", + [0x5789] = "\x0f\x31\x56", [0x5792] = "\x06\x3a\x42", + [0x5797] = "\x06\x3a\x44", [0x5798] = "\x05\x34\x3a", + [0x5799] = "\x06\x42\x69", [0x579a] = "\x05\x34\x3f", + [0x579b] = "\x04\x33\x68", [0x579c] = "\x05\x34\x3d", + [0x579d] = "\x06\x42\x68", [0x579e] = "\x05\x34\x37", + [0x579f] = "\x0f\x37\x3a", [0x57a0] = "\x0f\x37\x3c", + [0x57a1] = "\x0f\x37\x3d", [0x57a2] = "\x0f\x37\x3e", + [0x57a9] = "\x04\x33\x6c", [0x57af] = "\x06\x42\x65", + [0x57b1] = "\x06\x42\x6a", [0x57b2] = "\x04\x39\x5f", + [0x57b3] = "\x05\x3a\x64", [0x57b4] = "\x04\x39\x60", + [0x57b5] = "\x04\x39\x5c", [0x57b6] = "\x06\x4c\x41", + [0x57b7] = "\x06\x4c\x42", [0x57b8] = "\x06\x4c\x45", + [0x57b9] = "\x06\x4c\x47", [0x57ba] = "\x04\x39\x5d", + [0x57bb] = "\x06\x4c\x44", [0x57bc] = "\x04\x3f\x51", + [0x57bd] = "\x0f\x3d\x65", [0x57be] = "\x0f\x3d\x67", + [0x57bf] = "\x0f\x3d\x69", [0x57c5] = "\x05\x34\x3e", + [0x57c7] = "\x0f\x3d\x66", [0x57cd] = "\x05\x41\x36", + [0x57ce] = "\x05\x41\x2f", [0x57cf] = "\x06\x55\x79", + [0x57d0] = "\x06\x55\x77", [0x57d1] = "\x06\x55\x7a", + [0x57d2] = "\x05\x41\x30", [0x57d3] = "\x05\x41\x2d", + [0x57d4] = "\x05\x41\x32", [0x57d5] = "\x05\x41\x34", + [0x57d6] = "\x05\x41\x38", [0x57d7] = "\x05\x41\x33", + [0x57d8] = "\x04\x3f\x4e", [0x57d9] = "\x06\x56\x21", + [0x57da] = "\x05\x41\x2e", [0x57db] = "\x06\x55\x7b", + [0x57dc] = "\x06\x55\x7e", [0x57de] = "\x06\x55\x7c", + [0x57e2] = "\x0f\x44\x33", [0x57e3] = "\x0f\x44\x34", + [0x57e4] = "\x0f\x44\x35", [0x57e5] = "\x0f\x44\x36", + [0x57e6] = "\x0f\x44\x37", [0x57e7] = "\x0f\x44\x38", + [0x57e8] = "\x0f\x44\x39", [0x57e9] = "\x0f\x44\x3a", + [0x57f7] = "\x06\x55\x78", [0x57f8] = "\x06\x55\x7d", + [0x57fa] = "\x05\x41\x37", [0x57fb] = "\x05\x41\x35", + [0x57fd] = "\x05\x48\x28", [0x57fe] = "\x06\x5f\x69", + [0x57ff] = "\x05\x45\x2d", [0x5800] = "\x05\x48\x2d", + [0x5801] = "\x06\x5f\x68", [0x5802] = "\x06\x5f\x66", + [0x5803] = "\x06\x5f\x6a", [0x5804] = "\x04\x45\x5c", + [0x5805] = "\x05\x48\x2e", [0x5806] = "\x05\x48\x29", + [0x5807] = "\x06\x5f\x6e", [0x5808] = "\x06\x5f\x6f", + [0x5809] = "\x05\x48\x2b", [0x580a] = "\x05\x48\x27", + [0x580b] = "\x05\x48\x2c", [0x580c] = "\x06\x5f\x70", + [0x580d] = "\x05\x48\x2a", [0x580e] = "\x06\x5f\x67", + [0x580f] = "\x0f\x4a\x60", [0x5810] = "\x0f\x4a\x5b", + [0x5811] = "\x0f\x4a\x5c", [0x5812] = "\x0f\x4a\x5d", + [0x5813] = "\x0f\x4a\x5e", [0x5814] = "\x0f\x4a\x5f", + [0x5815] = "\x0f\x4a\x61", [0x5816] = "\x0f\x4a\x62", + [0x5817] = "\x0f\x4a\x63", [0x5818] = "\x0f\x4a\x65", + [0x5821] = "\x06\x5f\x6d", [0x5822] = "\x06\x5f\x6c", + [0x5831] = "\x05\x4e\x7b", [0x5832] = "\x05\x4e\x78", + [0x5833] = "\x05\x4e\x7a", [0x5834] = "\x07\x26\x33", + [0x5835] = "\x07\x26\x30", [0x5836] = "\x05\x4e\x79", + [0x5837] = "\x04\x4b\x69", [0x5839] = "\x07\x26\x34", + [0x583a] = "\x07\x26\x31", [0x583c] = "\x07\x26\x38", + [0x583d] = "\x05\x48\x2f", [0x583e] = "\x07\x26\x2f", + [0x583f] = "\x05\x56\x45", [0x5840] = "\x05\x4e\x7c", + [0x5841] = "\x05\x4e\x7d", [0x5843] = "\x04\x4b\x67", + [0x5845] = "\x04\x4b\x6a", [0x5846] = "\x07\x26\x35", + [0x5847] = "\x0f\x50\x6c", [0x5848] = "\x0f\x50\x6e", + [0x5849] = "\x0f\x50\x6f", [0x584a] = "\x0f\x50\x70", + [0x584b] = "\x0f\x50\x71", [0x584c] = "\x0f\x50\x72", + [0x5854] = "\x07\x26\x2e", [0x585a] = "\x07\x26\x36", + [0x585b] = "\x07\x26\x37", [0x585c] = "\x04\x51\x7b", + [0x585d] = "\x07\x30\x6d", [0x585f] = "\x05\x56\x3d", + [0x5860] = "\x05\x56\x40", [0x5861] = "\x07\x30\x69", + [0x5862] = "\x05\x56\x3c", [0x5863] = "\x05\x56\x3f", + [0x5864] = "\x05\x56\x3e", [0x5865] = "\x04\x51\x7e", + [0x5866] = "\x05\x56\x3b", [0x5867] = "\x05\x56\x43", + [0x5868] = "\x07\x30\x63", [0x5869] = "\x07\x30\x64", + [0x586a] = "\x05\x56\x42", [0x586b] = "\x07\x30\x62", + [0x586c] = "\x05\x56\x46", [0x586d] = "\x05\x5c\x5b", + [0x586e] = "\x05\x56\x47", [0x586f] = "\x07\x30\x6b", + [0x5870] = "\x07\x30\x6a", [0x5873] = "\x07\x30\x6c", + [0x5874] = "\x07\x30\x61", [0x5875] = "\x0f\x56\x54", + [0x5876] = "\x0f\x56\x55", [0x5879] = "\x07\x30\x65", + [0x5880] = "\x07\x30\x67", [0x5881] = "\x07\x30\x68", + [0x5887] = "\x05\x56\x44", [0x5888] = "\x05\x56\x41", + [0x588a] = "\x05\x5c\x5e", [0x588b] = "\x05\x5c\x61", + [0x588c] = "\x05\x5c\x62", [0x588d] = "\x05\x5c\x5f", + [0x588e] = "\x05\x5c\x5c", [0x588f] = "\x05\x5c\x5d", + [0x5891] = "\x04\x57\x4a", [0x5892] = "\x07\x39\x77", + [0x5893] = "\x05\x5c\x64", [0x5894] = "\x04\x57\x46", + [0x5895] = "\x05\x5c\x60", [0x5896] = "\x07\x39\x7a", + [0x5898] = "\x0f\x5b\x54", [0x5899] = "\x0f\x5b\x55", + [0x589a] = "\x0f\x5b\x56", [0x589b] = "\x0f\x5b\x57", + [0x589c] = "\x0f\x5b\x58", [0x589d] = "\x0f\x5b\x5a", + [0x589e] = "\x07\x39\x78", [0x58a7] = "\x0f\x5b\x53", + [0x58ad] = "\x05\x56\x48", [0x58ae] = "\x07\x39\x79", + [0x58b0] = "\x05\x5c\x63", [0x58b1] = "\x0f\x56\x53", + [0x58b4] = "\x05\x62\x7d", [0x58b5] = "\x05\x63\x26", + [0x58b6] = "\x05\x63\x24", [0x58b7] = "\x05\x63\x21", + [0x58b8] = "\x05\x63\x22", [0x58b9] = "\x05\x63\x25", + [0x58ba] = "\x07\x41\x30", [0x58bb] = "\x05\x62\x7e", + [0x58bc] = "\x07\x41\x2f", [0x58bd] = "\x05\x63\x23", + [0x58bf] = "\x0f\x5f\x6c", [0x58c0] = "\x0f\x5f\x6d", + [0x58c1] = "\x0f\x5f\x6e", [0x58c2] = "\x0f\x5f\x6f", + [0x58c3] = "\x0f\x5f\x70", [0x58c4] = "\x0f\x5f\x71", + [0x58c5] = "\x0f\x5f\x72", [0x58d3] = "\x05\x62\x7c", + [0x58d6] = "\x05\x68\x5e", [0x58d7] = "\x04\x60\x43", + [0x58d8] = "\x05\x68\x5c", [0x58d9] = "\x04\x60\x44", + [0x58da] = "\x04\x60\x47", [0x58dc] = "\x07\x48\x3f", + [0x58de] = "\x04\x60\x46", [0x58df] = "\x05\x68\x5d", + [0x58e0] = "\x07\x4e\x62", [0x58e5] = "\x07\x48\x41", + [0x58e6] = "\x07\x48\x3e", [0x58e7] = "\x0f\x63\x30", + [0x58e8] = "\x07\x48\x40", [0x58e9] = "\x05\x6c\x6b", + [0x58ea] = "\x04\x63\x7a", [0x58eb] = "\x04\x63\x78", + [0x58ec] = "\x05\x6c\x6a", [0x58ed] = "\x07\x4e\x60", + [0x58ee] = "\x04\x5c\x38", [0x58ef] = "\x05\x6c\x69", + [0x58f0] = "\x05\x6c\x6c", [0x58f1] = "\x07\x4e\x5f", + [0x58f2] = "\x07\x4e\x61", [0x58f3] = "\x0f\x65\x60", + [0x58f4] = "\x0f\x65\x61", [0x58f5] = "\x0f\x65\x63", + [0x58f7] = "\x07\x4e\x63", [0x58fe] = "\x05\x6c\x6d", + [0x5900] = "\x07\x54\x28", [0x5901] = "\x07\x54\x27", + [0x5902] = "\x05\x70\x58", [0x5903] = "\x07\x54\x29", + [0x5905] = "\x07\x58\x4d", [0x5906] = "\x05\x73\x6c", + [0x5907] = "\x07\x58\x4e", [0x590a] = "\x05\x76\x30", + [0x590b] = "\x05\x76\x31", [0x590c] = "\x07\x58\x4f", + [0x590e] = "\x05\x77\x70", [0x5911] = "\x07\x5c\x2d", + [0x5912] = "\x07\x5c\x2e", [0x5913] = "\x07\x5f\x28", + [0x5914] = "\x07\x5e\x71", [0x5915] = "\x0f\x6b\x57", + [0x5916] = "\x0f\x6b\x58", [0x5917] = "\x04\x6c\x77", + [0x5918] = "\x05\x79\x33", [0x5919] = "\x0f\x6c\x34", + [0x591a] = "\x04\x6c\x78", [0x591c] = "\x05\x7a\x2e", + [0x591e] = "\x05\x7b\x61", [0x591f] = "\x05\x7b\x62", + [0x5922] = "\x06\x23\x37", [0x5923] = "\x05\x24\x6f", + [0x5924] = "\x05\x24\x70", [0x5927] = "\x04\x27\x59", + [0x5928] = "\x04\x27\x5a", [0x5929] = "\x04\x27\x58", + [0x592a] = "\x06\x2d\x4d", [0x592b] = "\x06\x2d\x4c", + [0x592d] = "\x06\x2d\x4f", [0x592e] = "\x03\x2a\x45", + [0x5930] = "\x06\x2d\x4b", [0x5931] = "\x0f\x28\x43", + [0x5934] = "\x04\x2a\x74", [0x5935] = "\x06\x33\x59", + [0x5936] = "\x06\x33\x5b", [0x5937] = "\x06\x33\x58", + [0x5938] = "\x05\x2a\x77", [0x5939] = "\x04\x2a\x73", + [0x593a] = "\x05\x2a\x79", [0x593b] = "\x05\x2a\x78", + [0x593c] = "\x06\x33\x5a", [0x593d] = "\x06\x33\x5c", + [0x593e] = "\x06\x33\x5d", [0x593f] = "\x05\x2a\x7a", + [0x5941] = "\x0f\x2c\x71", [0x5942] = "\x0f\x2c\x72", + [0x5943] = "\x0f\x2c\x73", [0x5947] = "\x05\x2f\x3f", + [0x5948] = "\x04\x2e\x66", [0x5949] = "\x04\x2e\x6b", + [0x594a] = "\x04\x2e\x68", [0x594b] = "\x05\x2f\x43", + [0x594c] = "\x05\x2f\x42", [0x594d] = "\x05\x2f\x41", + [0x594e] = "\x06\x3a\x4c", [0x594f] = "\x04\x2e\x69", + [0x5950] = "\x04\x2e\x6a", [0x5951] = "\x04\x2e\x67", + [0x5952] = "\x06\x3a\x4a", [0x5953] = "\x06\x3a\x48", + [0x5954] = "\x05\x2f\x40", [0x5957] = "\x05\x2f\x44", + [0x5958] = "\x0f\x31\x58", [0x5959] = "\x0f\x31\x59", + [0x595a] = "\x0f\x31\x5a", [0x595b] = "\x06\x3a\x4b", + [0x595e] = "\x06\x3a\x49", [0x5960] = "\x05\x34\x44", + [0x5961] = "\x05\x34\x43", [0x5962] = "\x06\x42\x6c", + [0x5963] = "\x06\x42\x6b", [0x5964] = "\x06\x42\x6d", + [0x5965] = "\x05\x34\x41", [0x5966] = "\x04\x33\x6e", + [0x5967] = "\x05\x34\x42", [0x5968] = "\x05\x34\x40", + [0x5969] = "\x06\x42\x6e", [0x596a] = "\x0f\x37\x40", + [0x596b] = "\x0f\x37\x41", [0x596c] = "\x0f\x37\x42", + [0x596d] = "\x0f\x37\x43", [0x596e] = "\x0f\x37\x44", + [0x5976] = "\x05\x3a\x72", [0x5977] = "\x04\x39\x66", + [0x5978] = "\x05\x3a\x74", [0x5979] = "\x06\x4c\x4e", + [0x597a] = "\x06\x4c\x4a", [0x597b] = "\x04\x39\x69", + [0x597c] = "\x06\x4c\x52", [0x597d] = "\x05\x3a\x69", + [0x597e] = "\x05\x3a\x6f", [0x597f] = "\x05\x3a\x71", + [0x5980] = "\x06\x4c\x50", [0x5981] = "\x05\x3a\x67", + [0x5982] = "\x06\x4c\x51", [0x5983] = "\x05\x3a\x68", + [0x5984] = "\x06\x4c\x4b", [0x5985] = "\x05\x3a\x6a", + [0x5986] = "\x04\x39\x68", [0x5987] = "\x05\x3a\x73", + [0x5988] = "\x06\x4c\x4c", [0x598a] = "\x05\x3a\x70", + [0x598b] = "\x06\x4c\x49", [0x598c] = "\x05\x3a\x66", + [0x598d] = "\x05\x3a\x6d", [0x598e] = "\x06\x4c\x4f", + [0x598f] = "\x05\x3a\x6e", [0x5990] = "\x05\x3a\x6b", + [0x5991] = "\x06\x4c\x4d", [0x5993] = "\x0f\x3d\x6b", + [0x599b] = "\x05\x41\x3a", [0x599c] = "\x06\x56\x29", + [0x599d] = "\x05\x41\x3c", [0x599e] = "\x05\x41\x3b", + [0x599f] = "\x05\x41\x3e", [0x59a0] = "\x06\x56\x22", + [0x59a1] = "\x06\x56\x24", [0x59a2] = "\x05\x3a\x6c", + [0x59a4] = "\x05\x41\x3d", [0x59a5] = "\x05\x41\x3f", + [0x59a6] = "\x06\x56\x28", [0x59a7] = "\x06\x56\x2b", + [0x59a8] = "\x05\x41\x40", [0x59a9] = "\x06\x56\x26", + [0x59aa] = "\x06\x56\x25", [0x59ad] = "\x0f\x44\x3b", + [0x59ae] = "\x0f\x44\x3d", [0x59af] = "\x0f\x44\x3e", + [0x59b0] = "\x0f\x44\x3f", [0x59b1] = "\x0f\x44\x40", + [0x59b2] = "\x06\x56\x23", [0x59b5] = "\x06\x56\x2a", + [0x59b6] = "\x06\x57\x26", [0x59b8] = "\x04\x45\x61", + [0x59b9] = "\x06\x5f\x77", [0x59ba] = "\x05\x48\x32", + [0x59bb] = "\x06\x5f\x76", [0x59bc] = "\x06\x5f\x72", + [0x59bd] = "\x06\x5f\x74", [0x59be] = "\x06\x5f\x73", + [0x59bf] = "\x05\x48\x31", [0x59c5] = "\x06\x5f\x79", + [0x59c6] = "\x0f\x4a\x66", [0x59c7] = "\x05\x48\x33", + [0x59ca] = "\x06\x5f\x71", [0x59cf] = "\x0f\x44\x3c", + [0x59d0] = "\x07\x26\x3b", [0x59d2] = "\x05\x4f\x21", + [0x59d3] = "\x05\x4f\x27", [0x59d4] = "\x05\x4f\x2a", + [0x59d5] = "\x05\x48\x30", [0x59d6] = "\x07\x26\x3a", + [0x59d7] = "\x05\x4f\x2b", [0x59d8] = "\x05\x4f\x26", + [0x59d9] = "\x05\x4f\x22", [0x59da] = "\x05\x4f\x2c", + [0x59db] = "\x05\x4f\x25", [0x59dc] = "\x07\x26\x39", + [0x59dd] = "\x05\x4e\x7e", [0x59de] = "\x05\x4f\x28", + [0x59df] = "\x05\x4f\x24", [0x59e0] = "\x05\x4f\x29", + [0x59e2] = "\x07\x27\x2e", [0x59e5] = "\x04\x4b\x6d", + [0x59ec] = "\x05\x56\x4f", [0x59ed] = "\x05\x56\x51", + [0x59ee] = "\x04\x52\x23", [0x59ef] = "\x05\x56\x50", + [0x59f0] = "\x04\x52\x26", [0x59f1] = "\x05\x56\x49", + [0x59f2] = "\x04\x52\x28", [0x59f3] = "\x07\x30\x70", + [0x59f4] = "\x05\x56\x4a", [0x59f5] = "\x05\x56\x4c", + [0x59f6] = "\x05\x56\x4b", [0x59f7] = "\x05\x56\x53", + [0x59f8] = "\x05\x56\x4d", [0x59f9] = "\x05\x56\x54", + [0x59fa] = "\x07\x30\x6e", [0x59fb] = "\x05\x56\x4e", + [0x59fc] = "\x05\x5c\x65", [0x59fd] = "\x05\x56\x55", + [0x59ff] = "\x0f\x56\x56", [0x5a00] = "\x0f\x56\x57", + [0x5a01] = "\x0f\x56\x58", [0x5a02] = "\x0f\x56\x59", + [0x5a03] = "\x0f\x56\x5a", [0x5a0a] = "\x07\x30\x71", + [0x5a0d] = "\x05\x5c\x6a", [0x5a0e] = "\x05\x5c\x67", + [0x5a0f] = "\x07\x3a\x21", [0x5a10] = "\x04\x57\x4e", + [0x5a11] = "\x05\x5c\x69", [0x5a12] = "\x07\x39\x7c", + [0x5a13] = "\x07\x39\x7d", [0x5a14] = "\x07\x39\x7b", + [0x5a15] = "\x05\x5c\x66", [0x5a16] = "\x07\x39\x7e", + [0x5a17] = "\x07\x30\x72", [0x5a18] = "\x05\x5c\x68", + [0x5a1a] = "\x0f\x5b\x5b", [0x5a21] = "\x05\x63\x28", + [0x5a22] = "\x05\x63\x27", [0x5a23] = "\x0f\x5f\x74", + [0x5a2a] = "\x04\x60\x4a", [0x5a2b] = "\x07\x48\x44", + [0x5a2c] = "\x07\x48\x43", [0x5a2d] = "\x05\x68\x5f", + [0x5a2e] = "\x07\x48\x42", [0x5a30] = "\x07\x4e\x64", + [0x5a31] = "\x07\x4e\x66", [0x5a32] = "\x05\x68\x60", + [0x5a33] = "\x04\x63\x7b", [0x5a34] = "\x05\x6c\x6e", + [0x5a35] = "\x07\x54\x2d", [0x5a36] = "\x07\x4e\x67", + [0x5a37] = "\x07\x4e\x65", [0x5a38] = "\x0f\x65\x64", + [0x5a3b] = "\x05\x70\x5b", [0x5a3c] = "\x07\x54\x2b", + [0x5a3d] = "\x04\x66\x67", [0x5a3f] = "\x04\x66\x66", + [0x5a40] = "\x05\x70\x59", [0x5a41] = "\x07\x54\x2c", + [0x5a42] = "\x05\x70\x5a", [0x5a43] = "\x0f\x68\x21", + [0x5a48] = "\x0f\x65\x65", [0x5a4a] = "\x05\x76\x32", + [0x5a4b] = "\x07\x5c\x2f", [0x5a4c] = "\x05\x77\x71", + [0x5a4e] = "\x07\x61\x2a", [0x5a4f] = "\x0f\x6b\x59", + [0x5a50] = "\x07\x5f\x29", [0x5a52] = "\x05\x79\x34", + [0x5a53] = "\x07\x62\x4a", [0x5a54] = "\x05\x7b\x63", + [0x5a55] = "\x06\x28\x72", [0x5a56] = "\x06\x28\x71", + [0x5a57] = "\x05\x27\x49", [0x5a58] = "\x05\x27\x4a", + [0x5a59] = "\x04\x2a\x75", [0x5a5b] = "\x0f\x2c\x74", + [0x5a5c] = "\x0f\x2c\x78", [0x5a60] = "\x04\x2e\x6f", + [0x5a61] = "\x05\x2f\x47", [0x5a62] = "\x05\x2f\x48", + [0x5a63] = "\x04\x2e\x6c", [0x5a64] = "\x05\x2f\x46", + [0x5a65] = "\x05\x2f\x45", [0x5a66] = "\x04\x2e\x6e", + [0x5a67] = "\x0f\x31\x5c", [0x5a68] = "\x0f\x31\x5d", + [0x5a69] = "\x0f\x31\x5e", [0x5a6a] = "\x0f\x31\x5f", + [0x5a6b] = "\x0f\x31\x61", [0x5a6c] = "\x0f\x31\x62", + [0x5a6d] = "\x06\x3a\x4d", [0x5a6e] = "\x06\x3a\x4e", + [0x5a71] = "\x06\x42\x72", [0x5a72] = "\x04\x33\x73", + [0x5a73] = "\x06\x42\x71", [0x5a74] = "\x06\x42\x73", + [0x5a75] = "\x06\x42\x70", [0x5a76] = "\x04\x33\x74", + [0x5a78] = "\x0f\x37\x45", [0x5a79] = "\x0f\x37\x47", + [0x5a7b] = "\x05\x34\x47", [0x5a7c] = "\x0f\x37\x48", + [0x5a7e] = "\x04\x39\x6b", [0x5a7f] = "\x06\x4c\x55", + [0x5a80] = "\x05\x3a\x75", [0x5a81] = "\x05\x3a\x77", + [0x5a82] = "\x05\x3a\x76", [0x5a83] = "\x05\x3a\x78", + [0x5a84] = "\x06\x4c\x54", [0x5a86] = "\x0f\x3d\x6d", + [0x5a87] = "\x0f\x3d\x6e", [0x5a88] = "\x0f\x3d\x6f", + [0x5a89] = "\x0f\x3d\x70", [0x5a8a] = "\x04\x3f\x56", + [0x5a8b] = "\x04\x3f\x58", [0x5a8c] = "\x05\x41\x42", + [0x5a8d] = "\x04\x3f\x59", [0x5a8e] = "\x06\x56\x2c", + [0x5a8f] = "\x05\x41\x41", [0x5a90] = "\x06\x56\x2d", + [0x5a91] = "\x06\x56\x2e", [0x5a92] = "\x0f\x44\x41", + [0x5a93] = "\x0f\x44\x42", [0x5a94] = "\x0f\x44\x43", + [0x5a95] = "\x05\x41\x43", [0x5a98] = "\x05\x48\x34", + [0x5a99] = "\x06\x5f\x7a", [0x5a9a] = "\x05\x48\x35", + [0x5a9b] = "\x04\x45\x62", [0x5a9f] = "\x0f\x4a\x67", + [0x5aa0] = "\x0f\x4a\x68", [0x5aa1] = "\x0f\x4a\x6a", + [0x5aa4] = "\x0f\x4a\x69", [0x5aa5] = "\x07\x26\x3f", + [0x5aa6] = "\x04\x4b\x6e", [0x5aa7] = "\x05\x4f\x2d", + [0x5aa8] = "\x0f\x50\x73", [0x5aa9] = "\x0f\x50\x74", + [0x5aaa] = "\x0f\x50\x75", [0x5aac] = "\x07\x26\x3d", + [0x5aad] = "\x0f\x56\x5c", [0x5aae] = "\x0f\x56\x5b", + [0x5aaf] = "\x04\x57\x51", [0x5ab0] = "\x07\x30\x74", + [0x5ab1] = "\x05\x56\x56", [0x5ab2] = "\x0f\x5b\x5c", + [0x5ab3] = "\x05\x5c\x6c", [0x5ab5] = "\x05\x5d\x63", + [0x5ab6] = "\x07\x3a\x22", [0x5abb] = "\x05\x5c\x6b", + [0x5abc] = "\x05\x63\x2a", [0x5abd] = "\x07\x3a\x23", + [0x5abe] = "\x0f\x5f\x75", [0x5abf] = "\x07\x41\x31", + [0x5ac3] = "\x05\x63\x29", [0x5ac8] = "\x07\x4e\x68", + [0x5ac9] = "\x07\x54\x2e", [0x5aca] = "\x0f\x65\x66", + [0x5acd] = "\x07\x48\x45", [0x5ace] = "\x05\x70\x5c", + [0x5acf] = "\x0f\x68\x22", [0x5ad0] = "\x07\x58\x50", + [0x5ad1] = "\x0f\x69\x5e", [0x5ad2] = "\x0f\x6a\x68", + [0x5ad6] = "\x07\x61\x2b", [0x5ad8] = "\x0f\x25\x26", + [0x5ad9] = "\x05\x27\x4b", [0x5ada] = "\x06\x2d\x50", + [0x5adb] = "\x05\x27\x4d", [0x5adc] = "\x05\x27\x4c", + [0x5add] = "\x05\x2a\x7c", [0x5ade] = "\x05\x2a\x7d", + [0x5adf] = "\x05\x2a\x7b", [0x5ae0] = "\x06\x33\x5f", + [0x5ae1] = "\x06\x33\x5e", [0x5ae2] = "\x05\x2a\x7e", + [0x5ae5] = "\x0f\x2c\x79", [0x5ae6] = "\x0f\x2c\x7a", + [0x5ae7] = "\x0f\x2c\x7b", [0x5ae8] = "\x0f\x2c\x7c", + [0x5aed] = "\x0f\x2c\x7d", [0x5aee] = "\x0f\x29\x24", + [0x5aef] = "\x05\x2f\x4e", [0x5af0] = "\x05\x2f\x49", + [0x5af1] = "\x04\x2e\x74", [0x5af3] = "\x05\x2f\x4a", + [0x5af4] = "\x05\x2f\x4c", [0x5af5] = "\x05\x2f\x4d", + [0x5af6] = "\x06\x3a\x50", [0x5af7] = "\x05\x2f\x51", + [0x5af8] = "\x05\x2f\x4f", [0x5af9] = "\x05\x2f\x4b", + [0x5afa] = "\x06\x3a\x4f", [0x5afb] = "\x06\x3a\x51", + [0x5afc] = "\x05\x2f\x50", [0x5afd] = "\x05\x2f\x52", + [0x5afe] = "\x0f\x31\x63", [0x5aff] = "\x0f\x31\x64", + [0x5b00] = "\x0f\x31\x65", [0x5b01] = "\x0f\x31\x66", + [0x5b02] = "\x0f\x31\x67", [0x5b03] = "\x0f\x31\x68", + [0x5b04] = "\x0f\x31\x69", [0x5b05] = "\x0f\x31\x6a", + [0x5b07] = "\x04\x2e\x76", [0x5b0c] = "\x06\x42\x74", + [0x5b0d] = "\x06\x42\x7a", [0x5b0e] = "\x05\x34\x4a", + [0x5b0f] = "\x04\x33\x79", [0x5b10] = "\x05\x34\x4d", + [0x5b11] = "\x06\x42\x77", [0x5b12] = "\x05\x34\x4c", + [0x5b13] = "\x06\x42\x7c", [0x5b14] = "\x04\x33\x75", + [0x5b15] = "\x05\x34\x4e", [0x5b16] = "\x06\x42\x75", + [0x5b17] = "\x05\x2f\x53", [0x5b19] = "\x05\x34\x49", + [0x5b1a] = "\x06\x42\x79", [0x5b1b] = "\x06\x42\x7b", + [0x5b1d] = "\x05\x34\x50", [0x5b1e] = "\x05\x34\x51", + [0x5b1f] = "\x06\x42\x78", [0x5b21] = "\x0f\x37\x49", + [0x5b22] = "\x0f\x37\x4a", [0x5b23] = "\x0f\x37\x4b", + [0x5b24] = "\x0f\x37\x4c", [0x5b25] = "\x0f\x37\x4e", + [0x5b26] = "\x0f\x37\x4f", [0x5b2a] = "\x05\x3a\x7c", + [0x5b2b] = "\x05\x3b\x22", [0x5b2c] = "\x05\x3a\x7b", + [0x5b2d] = "\x05\x3a\x7e", [0x5b2e] = "\x04\x39\x6c", + [0x5b2f] = "\x04\x39\x6e", [0x5b30] = "\x06\x4c\x5a", + [0x5b31] = "\x05\x34\x4b", [0x5b32] = "\x04\x39\x73", + [0x5b33] = "\x05\x3b\x21", [0x5b34] = "\x05\x3a\x7a", + [0x5b35] = "\x04\x39\x79", [0x5b36] = "\x04\x39\x77", + [0x5b37] = "\x04\x39\x70", [0x5b38] = "\x06\x4c\x5d", + [0x5b39] = "\x04\x39\x78", [0x5b3b] = "\x06\x4c\x57", + [0x5b3c] = "\x05\x3b\x25", [0x5b3d] = "\x06\x4c\x59", + [0x5b3e] = "\x06\x4c\x5c", [0x5b3f] = "\x05\x34\x4f", + [0x5b40] = "\x05\x3a\x7d", [0x5b41] = "\x0f\x3d\x71", + [0x5b42] = "\x0f\x3d\x72", [0x5b43] = "\x0f\x3d\x73", + [0x5b44] = "\x0f\x3d\x74", [0x5b45] = "\x0f\x3d\x75", + [0x5b46] = "\x0f\x3d\x76", [0x5b47] = "\x0f\x3d\x78", + [0x5b48] = "\x0f\x3d\x79", [0x5b49] = "\x0f\x3d\x7a", + [0x5b4a] = "\x0f\x3d\x77", [0x5b4b] = "\x05\x3b\x23", + [0x5b50] = "\x05\x41\x54", [0x5b51] = "\x05\x41\x48", + [0x5b52] = "\x05\x41\x4f", [0x5b53] = "\x04\x3f\x5c", + [0x5b54] = "\x05\x41\x4d", [0x5b55] = "\x05\x41\x45", + [0x5b56] = "\x04\x3f\x64", [0x5b57] = "\x04\x3f\x65", + [0x5b58] = "\x05\x41\x50", [0x5b59] = "\x04\x3f\x5f", + [0x5b5a] = "\x05\x3a\x79", [0x5b5b] = "\x06\x56\x30", + [0x5b5c] = "\x05\x41\x46", [0x5b5d] = "\x05\x41\x55", + [0x5b5e] = "\x05\x41\x4b", [0x5b5f] = "\x05\x41\x52", + [0x5b60] = "\x05\x41\x44", [0x5b61] = "\x05\x41\x49", + [0x5b62] = "\x05\x41\x4c", [0x5b63] = "\x06\x56\x34", + [0x5b64] = "\x06\x56\x32", [0x5b65] = "\x06\x56\x37", + [0x5b66] = "\x06\x56\x3a", [0x5b67] = "\x06\x56\x33", + [0x5b68] = "\x06\x56\x36", [0x5b6a] = "\x06\x56\x38", + [0x5b6b] = "\x06\x5f\x7b", [0x5b6c] = "\x05\x41\x53", + [0x5b6d] = "\x05\x41\x51", [0x5b6e] = "\x05\x41\x4e", + [0x5b6f] = "\x05\x41\x47", [0x5b70] = "\x06\x56\x31", + [0x5b71] = "\x06\x4c\x58", [0x5b77] = "\x06\x56\x35", + [0x5b78] = "\x06\x56\x39", [0x5b79] = "\x0f\x44\x44", + [0x5b7a] = "\x0f\x44\x46", [0x5b7b] = "\x0f\x44\x47", + [0x5b7c] = "\x0f\x44\x48", [0x5b7d] = "\x0f\x44\x49", + [0x5b7e] = "\x0f\x44\x4a", [0x5b7f] = "\x0f\x44\x4b", + [0x5b80] = "\x0f\x44\x4c", [0x5b81] = "\x0f\x44\x4d", + [0x5b82] = "\x0f\x44\x4e", [0x5b83] = "\x0f\x44\x4f", + [0x5b84] = "\x0f\x44\x50", [0x5b85] = "\x06\x56\x2f", + [0x5b8c] = "\x0f\x41\x3e", [0x5b8d] = "\x05\x48\x45", + [0x5b8e] = "\x05\x41\x56", [0x5b8f] = "\x04\x45\x6c", + [0x5b90] = "\x05\x48\x43", [0x5b91] = "\x06\x60\x27", + [0x5b92] = "\x04\x45\x67", [0x5b93] = "\x06\x5f\x7c", + [0x5b94] = "\x06\x5f\x7d", [0x5b95] = "\x05\x48\x3c", + [0x5b96] = "\x05\x48\x3b", [0x5b97] = "\x05\x48\x42", + [0x5b98] = "\x04\x45\x6f", [0x5b99] = "\x06\x60\x28", + [0x5b9a] = "\x05\x48\x40", [0x5b9b] = "\x06\x60\x26", + [0x5b9c] = "\x05\x48\x38", [0x5b9d] = "\x05\x48\x39", + [0x5b9e] = "\x06\x60\x25", [0x5ba0] = "\x06\x60\x21", + [0x5ba2] = "\x05\x48\x3a", [0x5ba3] = "\x05\x48\x41", + [0x5ba4] = "\x05\x48\x37", [0x5ba5] = "\x05\x48\x3d", + [0x5ba6] = "\x06\x60\x22", [0x5ba7] = "\x05\x41\x4a", + [0x5ba8] = "\x05\x48\x47", [0x5ba9] = "\x06\x5f\x7e", + [0x5baa] = "\x05\x48\x3e", [0x5bab] = "\x06\x60\x24", + [0x5bad] = "\x05\x48\x3f", [0x5bae] = "\x04\x45\x71", + [0x5baf] = "\x05\x48\x44", [0x5bb5] = "\x0f\x4a\x6b", + [0x5bb6] = "\x0f\x4a\x6c", [0x5bb7] = "\x0f\x4a\x6d", + [0x5bb8] = "\x0f\x4a\x6e", [0x5bb9] = "\x0f\x4a\x6f", + [0x5bba] = "\x0f\x4a\x70", [0x5bbb] = "\x0f\x4a\x73", + [0x5bbc] = "\x0f\x4a\x74", [0x5bbd] = "\x0f\x4a\x75", + [0x5bbe] = "\x0f\x4a\x76", [0x5bbf] = "\x0f\x4a\x77", + [0x5bc0] = "\x0f\x4a\x78", [0x5bc1] = "\x0f\x4a\x79", + [0x5bc2] = "\x0f\x4a\x7a", [0x5bc6] = "\x0f\x4a\x72", + [0x5bd0] = "\x0f\x4a\x71", [0x5bd1] = "\x05\x4f\x3a", + [0x5bd2] = "\x07\x26\x49", [0x5bd3] = "\x07\x26\x4b", + [0x5bd4] = "\x05\x4f\x44", [0x5bd5] = "\x04\x4c\x2f", + [0x5bd6] = "\x05\x4f\x33", [0x5bd7] = "\x07\x26\x51", + [0x5bd8] = "\x07\x26\x4a", [0x5bd9] = "\x05\x4f\x3e", + [0x5bda] = "\x04\x4b\x71", [0x5bdb] = "\x04\x4b\x6f", + [0x5bdc] = "\x05\x4f\x41", [0x5bdd] = "\x05\x4f\x2f", + [0x5bde] = "\x05\x4f\x34", [0x5bdf] = "\x05\x4f\x43", + [0x5be0] = "\x07\x26\x42", [0x5be1] = "\x05\x4f\x40", + [0x5be2] = "\x05\x4f\x31", [0x5be3] = "\x04\x52\x40", + [0x5be4] = "\x05\x4f\x39", [0x5be5] = "\x05\x4f\x42", + [0x5be6] = "\x04\x4b\x72", [0x5be7] = "\x04\x4c\x29", + [0x5be8] = "\x04\x4c\x23", [0x5be9] = "\x04\x4b\x7d", + [0x5bea] = "\x05\x4f\x38", [0x5beb] = "\x05\x4f\x37", + [0x5bec] = "\x05\x4f\x3c", [0x5bed] = "\x07\x26\x4e", + [0x5bee] = "\x05\x48\x48", [0x5bef] = "\x05\x4f\x35", + [0x5bf0] = "\x07\x26\x50", [0x5bf1] = "\x07\x26\x47", + [0x5bf2] = "\x07\x26\x44", [0x5bf3] = "\x05\x4f\x3f", + [0x5bf4] = "\x07\x26\x40", [0x5bf5] = "\x07\x26\x53", + [0x5bf6] = "\x04\x4c\x24", [0x5bf7] = "\x07\x26\x4f", + [0x5bf8] = "\x04\x4b\x7c", [0x5bf9] = "\x07\x26\x4c", + [0x5bfa] = "\x05\x4f\x3d", [0x5bfc] = "\x07\x26\x45", + [0x5bfd] = "\x07\x26\x43", [0x5bfe] = "\x05\x4f\x2e", + [0x5bff] = "\x07\x26\x48", [0x5c02] = "\x07\x26\x46", + [0x5c05] = "\x05\x4f\x46", [0x5c06] = "\x0f\x50\x78", + [0x5c09] = "\x07\x26\x52", [0x5c0b] = "\x0f\x50\x77", + [0x5c0c] = "\x0f\x50\x7a", [0x5c0d] = "\x0f\x50\x7b", + [0x5c0e] = "\x0f\x50\x7c", [0x5c0f] = "\x0f\x50\x7d", + [0x5c10] = "\x0f\x50\x7e", [0x5c11] = "\x0f\x51\x22", + [0x5c12] = "\x0f\x51\x24", [0x5c13] = "\x0f\x51\x29", + [0x5c14] = "\x0f\x51\x25", [0x5c15] = "\x0f\x51\x26", + [0x5c16] = "\x0f\x51\x27", [0x5c17] = "\x0f\x51\x2a", + [0x5c18] = "\x05\x56\x64", [0x5c19] = "\x04\x52\x41", + [0x5c1a] = "\x04\x52\x3e", [0x5c1b] = "\x05\x56\x58", + [0x5c1c] = "\x05\x56\x5e", [0x5c1d] = "\x05\x56\x66", + [0x5c1e] = "\x07\x31\x2a", [0x5c1f] = "\x05\x56\x5c", + [0x5c20] = "\x04\x52\x2e", [0x5c21] = "\x05\x56\x5d", + [0x5c22] = "\x04\x52\x2c", [0x5c23] = "\x05\x56\x68", + [0x5c24] = "\x07\x26\x41", [0x5c25] = "\x07\x31\x25", + [0x5c26] = "\x04\x52\x32", [0x5c27] = "\x05\x56\x67", + [0x5c28] = "\x04\x52\x31", [0x5c29] = "\x07\x31\x29", + [0x5c2a] = "\x04\x52\x3c", [0x5c2b] = "\x07\x30\x7e", + [0x5c2c] = "\x07\x31\x26", [0x5c2d] = "\x04\x52\x30", + [0x5c2e] = "\x05\x56\x60", [0x5c2f] = "\x07\x30\x7b", + [0x5c30] = "\x04\x52\x3f", [0x5c31] = "\x05\x56\x5f", + [0x5c32] = "\x05\x56\x59", [0x5c33] = "\x07\x30\x7a", + [0x5c34] = "\x07\x31\x28", [0x5c35] = "\x04\x52\x2a", + [0x5c36] = "\x05\x56\x57", [0x5c37] = "\x07\x31\x24", + [0x5c38] = "\x04\x52\x35", [0x5c39] = "\x05\x56\x65", + [0x5c3a] = "\x07\x30\x7d", [0x5c3b] = "\x05\x56\x62", + [0x5c3c] = "\x04\x52\x33", [0x5c3d] = "\x07\x31\x2b", + [0x5c3e] = "\x07\x30\x75", [0x5c3f] = "\x07\x31\x27", + [0x5c40] = "\x05\x4f\x30", [0x5c41] = "\x05\x56\x63", + [0x5c42] = "\x05\x56\x5a", [0x5c44] = "\x07\x30\x78", + [0x5c45] = "\x07\x31\x23", [0x5c46] = "\x07\x30\x76", + [0x5c47] = "\x05\x56\x61", [0x5c4c] = "\x0f\x56\x72", + [0x5c4d] = "\x05\x56\x5b", [0x5c4e] = "\x07\x30\x7c", + [0x5c4f] = "\x07\x30\x77", [0x5c50] = "\x07\x31\x22", + [0x5c51] = "\x0f\x56\x5d", [0x5c52] = "\x0f\x56\x5e", + [0x5c53] = "\x0f\x56\x60", [0x5c54] = "\x0f\x56\x61", + [0x5c55] = "\x0f\x56\x62", [0x5c56] = "\x0f\x56\x63", + [0x5c57] = "\x0f\x56\x64", [0x5c58] = "\x0f\x56\x65", + [0x5c59] = "\x0f\x56\x66", [0x5c5a] = "\x0f\x56\x67", + [0x5c5b] = "\x0f\x56\x68", [0x5c5c] = "\x0f\x56\x69", + [0x5c5d] = "\x0f\x56\x6a", [0x5c5e] = "\x0f\x56\x6b", + [0x5c5f] = "\x0f\x56\x6c", [0x5c60] = "\x0f\x56\x6d", + [0x5c61] = "\x0f\x56\x6e", [0x5c62] = "\x0f\x56\x6f", + [0x5c63] = "\x0f\x56\x70", [0x5c64] = "\x0f\x56\x71", + [0x5c66] = "\x0f\x56\x73", [0x5c69] = "\x07\x30\x79", + [0x5c73] = "\x0f\x50\x79", [0x5c75] = "\x05\x5d\x24", + [0x5c76] = "\x05\x5d\x21", [0x5c77] = "\x04\x57\x5d", + [0x5c78] = "\x05\x5c\x75", [0x5c79] = "\x05\x5d\x2d", + [0x5c7a] = "\x05\x5c\x79", [0x5c7b] = "\x04\x57\x5c", + [0x5c7c] = "\x04\x57\x63", [0x5c7d] = "\x04\x57\x67", + [0x5c7e] = "\x07\x3a\x2c", [0x5c7f] = "\x05\x5d\x2b", + [0x5c80] = "\x04\x57\x60", [0x5c81] = "\x05\x5d\x22", + [0x5c84] = "\x05\x5c\x70", [0x5c85] = "\x05\x5d\x23", + [0x5c86] = "\x05\x5c\x72", [0x5c87] = "\x05\x5d\x31", + [0x5c88] = "\x05\x5c\x7b", [0x5c89] = "\x05\x5d\x2a", + [0x5c8a] = "\x05\x5c\x77", [0x5c8b] = "\x05\x5d\x34", + [0x5c8c] = "\x07\x3a\x24", [0x5c8d] = "\x05\x5c\x76", + [0x5c8e] = "\x05\x5c\x7c", [0x5c8f] = "\x05\x5d\x26", + [0x5c90] = "\x04\x57\x64", [0x5c91] = "\x05\x5d\x27", + [0x5c92] = "\x07\x3a\x29", [0x5c95] = "\x05\x63\x42", + [0x5c96] = "\x05\x5d\x2c", [0x5c97] = "\x05\x5c\x7a", + [0x5c98] = "\x07\x3a\x2f", [0x5c99] = "\x07\x3a\x28", + [0x5c9a] = "\x05\x5c\x6f", [0x5c9b] = "\x05\x5d\x32", + [0x5c9c] = "\x05\x5d\x29", [0x5c9d] = "\x05\x5c\x73", + [0x5c9e] = "\x07\x3a\x2b", [0x5c9f] = "\x05\x5d\x2e", + [0x5ca0] = "\x05\x5c\x71", [0x5ca1] = "\x05\x5c\x6e", + [0x5ca2] = "\x05\x5d\x28", [0x5ca3] = "\x04\x57\x66", + [0x5ca4] = "\x04\x5c\x3c", [0x5ca5] = "\x05\x5d\x33", + [0x5ca6] = "\x05\x5c\x78", [0x5ca7] = "\x05\x5d\x2f", + [0x5ca8] = "\x05\x5d\x25", [0x5ca9] = "\x07\x31\x21", + [0x5caa] = "\x05\x5c\x74", [0x5cab] = "\x07\x3a\x27", + [0x5cac] = "\x07\x3a\x26", [0x5cae] = "\x07\x3a\x25", + [0x5caf] = "\x07\x3a\x2d", [0x5cb0] = "\x0f\x5b\x5d", + [0x5cb1] = "\x0f\x5b\x5e", [0x5cb2] = "\x0f\x5b\x60", + [0x5cb3] = "\x0f\x5b\x61", [0x5cb4] = "\x0f\x5b\x62", + [0x5cb5] = "\x0f\x5b\x63", [0x5cb6] = "\x0f\x5b\x64", + [0x5cb7] = "\x0f\x5b\x66", [0x5cb8] = "\x0f\x5b\x67", + [0x5cb9] = "\x0f\x5b\x68", [0x5cba] = "\x0f\x5b\x69", + [0x5cbb] = "\x07\x3a\x2a", [0x5cbc] = "\x07\x3a\x2e", + [0x5cbd] = "\x04\x57\x68", [0x5cc0] = "\x0f\x5b\x65", + [0x5cc6] = "\x04\x57\x61", [0x5cc7] = "\x05\x63\x4b", + [0x5cc8] = "\x05\x63\x47", [0x5cc9] = "\x05\x5d\x35", + [0x5cca] = "\x04\x5c\x52", [0x5ccb] = "\x05\x63\x45", + [0x5ccc] = "\x05\x63\x38", [0x5ccd] = "\x05\x63\x33", + [0x5cce] = "\x04\x5c\x47", [0x5ccf] = "\x05\x63\x4a", + [0x5cd0] = "\x05\x63\x40", [0x5cd1] = "\x03\x58\x4f", + [0x5cd2] = "\x05\x63\x2e", [0x5cd3] = "\x04\x5c\x4e", + [0x5cd4] = "\x04\x5c\x45", [0x5cd5] = "\x05\x63\x43", + [0x5cd6] = "\x05\x63\x39", [0x5cd7] = "\x05\x63\x4c", + [0x5cd8] = "\x04\x5c\x3d", [0x5cd9] = "\x07\x41\x3b", + [0x5cda] = "\x05\x63\x46", [0x5cdb] = "\x05\x63\x30", + [0x5cdc] = "\x05\x63\x37", [0x5cdd] = "\x04\x5c\x3e", + [0x5cde] = "\x04\x5c\x3f", [0x5cdf] = "\x05\x63\x48", + [0x5ce0] = "\x07\x41\x39", [0x5ce1] = "\x05\x63\x35", + [0x5ce2] = "\x05\x63\x32", [0x5ce3] = "\x05\x63\x3f", + [0x5ce4] = "\x07\x41\x35", [0x5ce5] = "\x05\x63\x2c", + [0x5ce6] = "\x07\x41\x36", [0x5ce7] = "\x04\x5c\x41", + [0x5ce8] = "\x07\x41\x33", [0x5ce9] = "\x04\x5c\x53", + [0x5cea] = "\x05\x63\x3e", [0x5ceb] = "\x07\x41\x38", + [0x5cec] = "\x05\x63\x3d", [0x5ced] = "\x07\x41\x3a", + [0x5cee] = "\x07\x41\x3e", [0x5cef] = "\x07\x41\x34", + [0x5cf0] = "\x05\x63\x31", [0x5cf1] = "\x04\x5c\x4d", + [0x5cf2] = "\x05\x63\x36", [0x5cf3] = "\x05\x63\x3a", + [0x5cf4] = "\x05\x63\x44", [0x5cf5] = "\x05\x63\x49", + [0x5cf6] = "\x05\x63\x3c", [0x5cf7] = "\x05\x63\x2d", + [0x5cf8] = "\x07\x41\x42", [0x5cf9] = "\x07\x41\x41", + [0x5cfa] = "\x05\x63\x3b", [0x5cff] = "\x05\x63\x2b", + [0x5d00] = "\x05\x63\x2f", [0x5d01] = "\x07\x41\x32", + [0x5d02] = "\x07\x41\x37", [0x5d03] = "\x0f\x5f\x76", + [0x5d04] = "\x0f\x5f\x77", [0x5d05] = "\x0f\x5f\x78", + [0x5d06] = "\x0f\x5f\x79", [0x5d07] = "\x0f\x5f\x7a", + [0x5d08] = "\x0f\x5f\x7b", [0x5d09] = "\x0f\x5f\x7c", + [0x5d0a] = "\x0f\x5f\x7d", [0x5d0b] = "\x0f\x5f\x7e", + [0x5d0c] = "\x0f\x60\x21", [0x5d0d] = "\x0f\x60\x23", + [0x5d0e] = "\x0f\x60\x24", [0x5d0f] = "\x0f\x60\x25", + [0x5d13] = "\x07\x41\x40", [0x5d14] = "\x07\x41\x3d", + [0x5d1d] = "\x0f\x5b\x6a", [0x5d1e] = "\x0f\x63\x36", + [0x5d1f] = "\x0f\x63\x37", [0x5d20] = "\x0f\x60\x22", + [0x5d21] = "\x05\x68\x6a", [0x5d22] = "\x05\x68\x6f", + [0x5d23] = "\x07\x48\x4e", [0x5d24] = "\x04\x60\x59", + [0x5d25] = "\x07\x48\x4c", [0x5d26] = "\x05\x68\x63", + [0x5d27] = "\x04\x60\x54", [0x5d28] = "\x04\x60\x55", + [0x5d29] = "\x04\x60\x51", [0x5d2a] = "\x05\x68\x69", + [0x5d2b] = "\x04\x60\x4f", [0x5d2c] = "\x04\x60\x50", + [0x5d2d] = "\x07\x48\x48", [0x5d2e] = "\x04\x60\x52", + [0x5d2f] = "\x05\x68\x62", [0x5d30] = "\x04\x60\x58", + [0x5d31] = "\x04\x60\x4d", [0x5d32] = "\x07\x48\x47", + [0x5d34] = "\x05\x68\x6d", [0x5d35] = "\x05\x68\x68", + [0x5d36] = "\x05\x68\x70", [0x5d37] = "\x05\x68\x6c", + [0x5d38] = "\x05\x68\x6b", [0x5d39] = "\x05\x68\x65", + [0x5d3a] = "\x05\x68\x64", [0x5d3b] = "\x05\x68\x67", + [0x5d3d] = "\x07\x48\x46", [0x5d3e] = "\x07\x48\x4a", + [0x5d3f] = "\x05\x68\x61", [0x5d44] = "\x05\x68\x71", + [0x5d45] = "\x07\x48\x49", [0x5d46] = "\x0f\x63\x31", + [0x5d47] = "\x0f\x63\x33", [0x5d48] = "\x0f\x63\x34", + [0x5d49] = "\x0f\x63\x35", [0x5d4a] = "\x0f\x63\x38", + [0x5d4b] = "\x0f\x63\x39", [0x5d4c] = "\x0f\x63\x3a", + [0x5d4d] = "\x0f\x63\x3b", [0x5d4e] = "\x0f\x63\x3c", + [0x5d50] = "\x07\x48\x4b", [0x5d53] = "\x07\x48\x4d", + [0x5d5c] = "\x05\x6c\x7c", [0x5d5d] = "\x05\x6c\x7b", + [0x5d5e] = "\x05\x6c\x76", [0x5d5f] = "\x04\x60\x57", + [0x5d60] = "\x05\x6c\x74", [0x5d61] = "\x07\x4e\x6c", + [0x5d62] = "\x05\x6c\x7a", [0x5d63] = "\x04\x63\x7d", + [0x5d64] = "\x07\x4e\x74", [0x5d65] = "\x04\x64\x22", + [0x5d66] = "\x05\x6c\x78", [0x5d67] = "\x05\x6c\x73", + [0x5d68] = "\x04\x66\x70", [0x5d69] = "\x07\x4e\x6a", + [0x5d6a] = "\x05\x6c\x6f", [0x5d6b] = "\x05\x6c\x75", + [0x5d6c] = "\x05\x6c\x71", [0x5d6d] = "\x07\x4e\x69", + [0x5d6e] = "\x07\x4e\x75", [0x5d6f] = "\x05\x6c\x77", + [0x5d70] = "\x07\x4e\x6d", [0x5d71] = "\x07\x4e\x6e", + [0x5d72] = "\x05\x6c\x72", [0x5d73] = "\x07\x4e\x6f", + [0x5d74] = "\x07\x54\x38", [0x5d75] = "\x07\x4e\x71", + [0x5d76] = "\x07\x4e\x70", [0x5d78] = "\x07\x4e\x72", + [0x5d79] = "\x07\x4e\x73", [0x5d7a] = "\x0f\x65\x68", + [0x5d7b] = "\x0f\x65\x69", [0x5d7d] = "\x07\x4e\x6b", + [0x5d86] = "\x05\x70\x64", [0x5d87] = "\x05\x70\x68", + [0x5d88] = "\x05\x70\x69", [0x5d8a] = "\x04\x66\x71", + [0x5d8b] = "\x04\x66\x6b", [0x5d8c] = "\x05\x70\x66", + [0x5d8d] = "\x05\x70\x6b", [0x5d8e] = "\x07\x54\x2f", + [0x5d8f] = "\x05\x70\x5e", [0x5d90] = "\x05\x70\x63", + [0x5d91] = "\x05\x70\x60", [0x5d92] = "\x04\x64\x21", + [0x5d93] = "\x05\x70\x67", [0x5d94] = "\x05\x70\x5f", + [0x5d95] = "\x05\x6c\x70", [0x5d96] = "\x07\x54\x35", + [0x5d97] = "\x05\x70\x6a", [0x5d98] = "\x05\x70\x5d", + [0x5d99] = "\x07\x54\x31", [0x5d9a] = "\x05\x70\x65", + [0x5d9b] = "\x04\x69\x27", [0x5d9c] = "\x05\x70\x6c", + [0x5d9d] = "\x07\x54\x36", [0x5d9e] = "\x07\x54\x30", + [0x5d9f] = "\x07\x54\x34", [0x5da3] = "\x0f\x68\x23", + [0x5da4] = "\x0f\x68\x24", [0x5da5] = "\x0f\x68\x25", + [0x5da6] = "\x0f\x68\x26", [0x5da7] = "\x0f\x68\x27", + [0x5da8] = "\x0f\x68\x28", [0x5da9] = "\x0f\x68\x29", + [0x5daa] = "\x07\x54\x33", [0x5dab] = "\x07\x54\x39", + [0x5db4] = "\x07\x54\x32", [0x5db5] = "\x07\x58\x55", + [0x5db6] = "\x04\x69\x24", [0x5db7] = "\x04\x69\x23", + [0x5db8] = "\x05\x73\x70", [0x5db9] = "\x05\x73\x6e", + [0x5dba] = "\x05\x70\x62", [0x5dbb] = "\x05\x73\x71", + [0x5dbc] = "\x07\x58\x52", [0x5dbd] = "\x05\x70\x6d", + [0x5dbe] = "\x07\x58\x51", [0x5dbf] = "\x05\x73\x74", + [0x5dc0] = "\x04\x69\x25", [0x5dc1] = "\x05\x73\x6d", + [0x5dc2] = "\x07\x58\x54", [0x5dc3] = "\x07\x54\x37", + [0x5dc4] = "\x05\x73\x76", [0x5dc5] = "\x05\x73\x73", + [0x5dc6] = "\x05\x73\x6f", [0x5dc7] = "\x05\x73\x75", + [0x5dc8] = "\x05\x73\x72", [0x5dc9] = "\x07\x58\x56", + [0x5dcc] = "\x0f\x69\x5f", [0x5dcd] = "\x0f\x69\x60", + [0x5dce] = "\x0f\x69\x61", [0x5dcf] = "\x0f\x69\x62", + [0x5dd0] = "\x07\x58\x53", [0x5dd1] = "\x07\x59\x34", + [0x5dd4] = "\x04\x6a\x5e", [0x5dd5] = "\x05\x76\x33", + [0x5dd6] = "\x07\x5c\x31", [0x5dd7] = "\x05\x76\x34", + [0x5dd8] = "\x04\x6a\x5f", [0x5dd9] = "\x04\x6a\x60", + [0x5dda] = "\x04\x6a\x62", [0x5ddb] = "\x07\x5c\x30", + [0x5ddc] = "\x05\x76\x36", [0x5ddd] = "\x07\x5c\x32", + [0x5dde] = "\x05\x76\x35", [0x5ddf] = "\x07\x5c\x36", + [0x5de0] = "\x07\x5c\x35", [0x5de1] = "\x0f\x6a\x69", + [0x5de2] = "\x07\x5c\x33", [0x5de3] = "\x07\x5c\x37", + [0x5de4] = "\x07\x5c\x34", [0x5de8] = "\x05\x77\x72", + [0x5de9] = "\x07\x5f\x2b", [0x5dea] = "\x07\x5f\x2e", + [0x5deb] = "\x05\x77\x74", [0x5dec] = "\x05\x77\x75", + [0x5ded] = "\x07\x5f\x2d", [0x5dee] = "\x05\x76\x37", + [0x5def] = "\x07\x5f\x2c", [0x5df0] = "\x07\x5f\x2a", + [0x5df1] = "\x05\x77\x73", [0x5df2] = "\x07\x5f\x31", + [0x5df4] = "\x04\x6b\x77", [0x5df5] = "\x0f\x6b\x5a", + [0x5df6] = "\x0f\x6b\x5b", [0x5df7] = "\x0f\x6b\x5c", + [0x5df8] = "\x07\x5f\x2f", [0x5dfc] = "\x05\x79\x35", + [0x5dfd] = "\x07\x61\x2c", [0x5dfe] = "\x07\x61\x2e", + [0x5dff] = "\x07\x61\x31", [0x5e00] = "\x04\x6c\x79", + [0x5e03] = "\x07\x61\x2f", [0x5e05] = "\x07\x5f\x30", + [0x5e07] = "\x07\x61\x2d", [0x5e08] = "\x05\x7a\x31", + [0x5e09] = "\x05\x7a\x2f", [0x5e0a] = "\x05\x7a\x30", + [0x5e0b] = "\x07\x61\x30", [0x5e0e] = "\x0f\x6c\x4f", + [0x5e0f] = "\x0f\x6c\x4d", [0x5e10] = "\x07\x63\x5e", + [0x5e11] = "\x07\x63\x5f", [0x5e14] = "\x0f\x6c\x68", + [0x5e16] = "\x07\x63\x60", [0x5e17] = "\x05\x7b\x44", + [0x5e18] = "\x05\x7b\x64", [0x5e19] = "\x0f\x6d\x27", + [0x5e1c] = "\x07\x64\x54", [0x5e21] = "\x04\x6e\x4e", + [0x5e22] = "\x05\x7b\x7c", [0x5e23] = "\x05\x7c\x2b", + [0x5e25] = "\x05\x24\x71", [0x5e26] = "\x0f\x25\x27", + [0x5e27] = "\x05\x27\x4e", [0x5e28] = "\x06\x2d\x51", + [0x5e29] = "\x0f\x28\x45", [0x5e2b] = "\x06\x33\x61", + [0x5e2c] = "\x05\x2b\x22", [0x5e2d] = "\x06\x33\x60", + [0x5e2f] = "\x05\x2b\x23", [0x5e30] = "\x0f\x2c\x7e", + [0x5e31] = "\x0f\x2d\x22", [0x5e33] = "\x06\x3a\x52", + [0x5e34] = "\x05\x2f\x54", [0x5e35] = "\x06\x3a\x56", + [0x5e36] = "\x05\x2f\x55", [0x5e37] = "\x06\x3a\x54", + [0x5e38] = "\x05\x2f\x56", [0x5e39] = "\x0f\x31\x6b", + [0x5e3a] = "\x0f\x31\x6c", [0x5e3b] = "\x0f\x31\x6d", + [0x5e3c] = "\x0f\x31\x6e", [0x5e3d] = "\x06\x3a\x53", + [0x5e3e] = "\x06\x3a\x55", [0x5e41] = "\x04\x33\x7e", + [0x5e42] = "\x05\x34\x55", [0x5e43] = "\x04\x34\x24", + [0x5e45] = "\x05\x34\x54", [0x5e46] = "\x04\x34\x21", + [0x5e47] = "\x05\x34\x58", [0x5e48] = "\x05\x34\x53", + [0x5e49] = "\x05\x34\x56", [0x5e4a] = "\x05\x34\x57", + [0x5e4b] = "\x04\x34\x23", [0x5e4c] = "\x05\x34\x5a", + [0x5e4d] = "\x05\x34\x52", [0x5e4e] = "\x06\x42\x7d", + [0x5e4f] = "\x06\x4c\x63", [0x5e50] = "\x06\x43\x21", + [0x5e51] = "\x0f\x37\x50", [0x5e52] = "\x0f\x37\x51", + [0x5e55] = "\x06\x42\x7e", [0x5e56] = "\x0f\x37\x52", + [0x5e5a] = "\x05\x3b\x26", [0x5e5c] = "\x04\x39\x7a", + [0x5e5d] = "\x06\x4c\x61", [0x5e5e] = "\x06\x4c\x5e", + [0x5e5f] = "\x06\x4c\x65", [0x5e60] = "\x05\x3b\x28", + [0x5e61] = "\x04\x3a\x21", [0x5e62] = "\x06\x4c\x64", + [0x5e64] = "\x06\x4c\x5f", [0x5e66] = "\x0f\x3d\x7c", + [0x5e67] = "\x0f\x3d\x7e", [0x5e68] = "\x0f\x3e\x22", + [0x5e6b] = "\x0f\x3d\x7b", [0x5e6d] = "\x06\x4c\x62", + [0x5e72] = "\x05\x41\x57", [0x5e73] = "\x04\x3f\x68", + [0x5e74] = "\x06\x56\x3d", [0x5e75] = "\x05\x41\x59", + [0x5e76] = "\x05\x41\x5a", [0x5e77] = "\x05\x3b\x27", + [0x5e78] = "\x05\x41\x58", [0x5e79] = "\x06\x56\x3f", + [0x5e7a] = "\x06\x56\x3e", [0x5e7b] = "\x04\x39\x7e", + [0x5e7c] = "\x05\x41\x5b", [0x5e7d] = "\x05\x41\x5d", + [0x5e7e] = "\x05\x41\x5c", [0x5e7f] = "\x06\x56\x41", + [0x5e84] = "\x0f\x44\x52", [0x5e85] = "\x0f\x44\x53", + [0x5e86] = "\x0f\x44\x55", [0x5e87] = "\x0f\x44\x56", + [0x5e88] = "\x06\x56\x3b", [0x5e89] = "\x0f\x44\x54", + [0x5e8b] = "\x06\x56\x40", [0x5e97] = "\x0f\x44\x51", + [0x5e98] = "\x06\x60\x2d", [0x5e99] = "\x05\x48\x4a", + [0x5e9a] = "\x06\x60\x2b", [0x5e9b] = "\x06\x60\x2e", + [0x5e9c] = "\x05\x48\x4c", [0x5e9d] = "\x04\x45\x73", + [0x5e9e] = "\x06\x56\x3c", [0x5e9f] = "\x06\x60\x33", + [0x5ea0] = "\x06\x60\x32", [0x5ea1] = "\x05\x48\x4b", + [0x5ea2] = "\x06\x60\x30", [0x5ea3] = "\x05\x48\x49", + [0x5ea4] = "\x05\x48\x4d", [0x5ea7] = "\x0f\x4a\x7c", + [0x5ea8] = "\x0f\x4a\x7d", [0x5ea9] = "\x0f\x4a\x7e", + [0x5eaa] = "\x0f\x4b\x21", [0x5eab] = "\x0f\x4b\x22", + [0x5eac] = "\x0f\x4b\x23", [0x5ead] = "\x0f\x4b\x25", + [0x5eae] = "\x0f\x4b\x26", [0x5eaf] = "\x0f\x4b\x28", + [0x5eb0] = "\x0f\x4b\x29", [0x5eb1] = "\x0f\x4b\x2a", + [0x5eb2] = "\x0f\x4b\x2d", [0x5eb3] = "\x06\x60\x2f", + [0x5eb4] = "\x0f\x4b\x2c", [0x5eb6] = "\x06\x60\x29", + [0x5eb8] = "\x06\x60\x2a", [0x5ebc] = "\x0f\x4b\x24", + [0x5ec1] = "\x07\x26\x58", [0x5ec2] = "\x07\x26\x54", + [0x5ec3] = "\x04\x4c\x36", [0x5ec4] = "\x05\x4f\x4b", + [0x5ec5] = "\x07\x26\x55", [0x5ec6] = "\x07\x26\x59", + [0x5ec7] = "\x04\x4c\x33", [0x5ec8] = "\x05\x4f\x4a", + [0x5ec9] = "\x05\x4f\x4c", [0x5eca] = "\x05\x4f\x50", + [0x5ecb] = "\x05\x48\x4e", [0x5ecc] = "\x05\x4f\x4f", + [0x5ecd] = "\x05\x4f\x4d", [0x5ece] = "\x07\x26\x5b", + [0x5ecf] = "\x07\x26\x56", [0x5ed0] = "\x05\x4f\x49", + [0x5ed1] = "\x04\x4c\x34", [0x5ed2] = "\x05\x4f\x4e", + [0x5ed3] = "\x04\x4c\x32", [0x5ed4] = "\x07\x26\x5a", + [0x5ed5] = "\x05\x4f\x48", [0x5ed6] = "\x05\x4f\x47", + [0x5ed9] = "\x0f\x51\x2b", [0x5eda] = "\x0f\x51\x2c", + [0x5edb] = "\x0f\x51\x2d", [0x5edc] = "\x0f\x51\x2f", + [0x5ee4] = "\x05\x56\x6e", [0x5ee5] = "\x05\x56\x6c", + [0x5ee6] = "\x05\x5d\x3c", [0x5ee7] = "\x04\x52\x43", + [0x5ee8] = "\x05\x56\x6b", [0x5ee9] = "\x04\x52\x42", + [0x5eea] = "\x07\x31\x2f", [0x5eeb] = "\x07\x31\x30", + [0x5eec] = "\x05\x56\x6f", [0x5eed] = "\x07\x31\x2c", + [0x5eee] = "\x05\x56\x6a", [0x5eef] = "\x05\x56\x6d", + [0x5ef0] = "\x05\x56\x70", [0x5ef1] = "\x0f\x56\x74", + [0x5ef2] = "\x0f\x56\x75", [0x5ef3] = "\x07\x31\x2e", + [0x5eff] = "\x05\x5d\x36", [0x5f00] = "\x05\x5d\x38", + [0x5f01] = "\x07\x3a\x30", [0x5f02] = "\x05\x5d\x39", + [0x5f03] = "\x05\x5d\x37", [0x5f04] = "\x05\x5d\x3a", + [0x5f05] = "\x05\x5d\x3b", [0x5f06] = "\x07\x3a\x32", + [0x5f07] = "\x07\x3a\x34", [0x5f08] = "\x07\x3a\x35", + [0x5f09] = "\x07\x3a\x31", [0x5f0c] = "\x0f\x5b\x6b", + [0x5f0d] = "\x0f\x5b\x6c", [0x5f0e] = "\x0f\x5b\x6d", + [0x5f0f] = "\x0f\x5b\x6f", [0x5f10] = "\x0f\x5b\x70", + [0x5f11] = "\x0f\x5b\x71", [0x5f12] = "\x0f\x5b\x72", + [0x5f13] = "\x04\x57\x6c", [0x5f18] = "\x05\x63\x52", + [0x5f19] = "\x07\x41\x45", [0x5f1a] = "\x04\x5c\x57", + [0x5f1b] = "\x05\x63\x53", [0x5f1c] = "\x05\x63\x4f", + [0x5f1d] = "\x07\x48\x56", [0x5f1e] = "\x05\x63\x51", + [0x5f1f] = "\x05\x5d\x3d", [0x5f20] = "\x07\x41\x46", + [0x5f21] = "\x05\x63\x50", [0x5f22] = "\x07\x4e\x78", + [0x5f24] = "\x05\x63\x4d", [0x5f25] = "\x07\x41\x43", + [0x5f26] = "\x0f\x60\x27", [0x5f27] = "\x0f\x60\x28", + [0x5f28] = "\x0f\x60\x29", [0x5f35] = "\x0f\x5b\x6e", + [0x5f36] = "\x05\x68\x74", [0x5f37] = "\x07\x48\x4f", + [0x5f38] = "\x07\x48\x50", [0x5f39] = "\x04\x60\x5e", + [0x5f3a] = "\x04\x60\x5c", [0x5f3b] = "\x05\x68\x73", + [0x5f3c] = "\x05\x70\x6e", [0x5f3d] = "\x07\x48\x52", + [0x5f3e] = "\x07\x48\x53", [0x5f3f] = "\x07\x41\x48", + [0x5f40] = "\x04\x60\x5f", [0x5f41] = "\x04\x5c\x58", + [0x5f42] = "\x05\x68\x75", [0x5f43] = "\x07\x41\x47", + [0x5f45] = "\x05\x68\x72", [0x5f46] = "\x0f\x63\x3e", + [0x5f47] = "\x07\x48\x51", [0x5f49] = "\x07\x48\x54", + [0x5f4a] = "\x07\x48\x55", [0x5f4b] = "\x0f\x63\x3f", + [0x5f4f] = "\x07\x4e\x77", [0x5f50] = "\x05\x6c\x7e", + [0x5f51] = "\x07\x4e\x76", [0x5f55] = "\x0f\x65\x6a", + [0x5f56] = "\x0f\x65\x6b", [0x5f57] = "\x04\x66\x73", + [0x5f58] = "\x04\x66\x72", [0x5f59] = "\x05\x70\x6f", + [0x5f5a] = "\x07\x54\x3d", [0x5f5b] = "\x07\x54\x3c", + [0x5f5d] = "\x0f\x68\x2a", [0x5f5e] = "\x0f\x68\x2b", + [0x5f63] = "\x07\x54\x3b", [0x5f65] = "\x05\x73\x77", + [0x5f66] = "\x07\x58\x57", [0x5f67] = "\x05\x73\x78", + [0x5f6c] = "\x04\x6a\x63", [0x5f6d] = "\x04\x6a\x64", + [0x5f6e] = "\x07\x5c\x38", [0x5f6f] = "\x0f\x6a\x6a", + [0x5f70] = "\x05\x76\x38", [0x5f71] = "\x07\x5c\x39", + [0x5f72] = "\x07\x5f\x32", [0x5f73] = "\x05\x77\x77", + [0x5f74] = "\x05\x77\x76", [0x5f76] = "\x05\x79\x38", + [0x5f77] = "\x07\x61\x33", [0x5f78] = "\x05\x79\x37", + [0x5f79] = "\x05\x79\x36", [0x5f7a] = "\x07\x61\x32", + [0x5f7b] = "\x07\x62\x4c", [0x5f7c] = "\x04\x6d\x5d", + [0x5f7d] = "\x05\x7a\x32", [0x5f7e] = "\x07\x62\x4b", + [0x5f7f] = "\x05\x7a\x33", [0x5f80] = "\x07\x63\x62", + [0x5f81] = "\x07\x63\x61", [0x5f82] = "\x05\x7b\x7d", + [0x5f84] = "\x07\x66\x36", [0x5f85] = "\x05\x27\x4f", + [0x5f86] = "\x06\x2d\x52", [0x5f87] = "\x05\x27\x50", + [0x5f88] = "\x0f\x28\x47", [0x5f89] = "\x0f\x28\x48", + [0x5f8a] = "\x05\x27\x51", [0x5f8c] = "\x05\x2b\x26", + [0x5f8d] = "\x06\x33\x62", [0x5f8e] = "\x06\x33\x65", + [0x5f8f] = "\x05\x2b\x24", [0x5f90] = "\x05\x2b\x25", + [0x5f91] = "\x06\x33\x67", [0x5f92] = "\x06\x33\x63", + [0x5f93] = "\x05\x2b\x27", [0x5f94] = "\x0f\x2d\x23", + [0x5f96] = "\x06\x33\x68", [0x5f99] = "\x06\x3a\x5b", + [0x5f9a] = "\x06\x3a\x57", [0x5f9b] = "\x04\x2e\x79", + [0x5f9c] = "\x06\x3a\x63", [0x5f9d] = "\x04\x2e\x7b", + [0x5f9e] = "\x06\x3a\x5d", [0x5fa0] = "\x06\x3a\x5c", + [0x5fa1] = "\x06\x3a\x5f", [0x5fa2] = "\x05\x2f\x5a", + [0x5fa3] = "\x04\x2e\x7a", [0x5fa4] = "\x04\x2f\x24", + [0x5fa5] = "\x06\x3a\x64", [0x5fa6] = "\x06\x3a\x59", + [0x5fa7] = "\x04\x2f\x23", [0x5fa8] = "\x06\x3a\x5e", + [0x5fa9] = "\x04\x2f\x22", [0x5faa] = "\x06\x3a\x60", + [0x5fab] = "\x06\x3a\x58", [0x5fac] = "\x05\x2f\x59", + [0x5fad] = "\x06\x3a\x61", [0x5fae] = "\x05\x2f\x58", + [0x5faf] = "\x05\x2f\x57", [0x5fb0] = "\x06\x3a\x5a", + [0x5fb2] = "\x0f\x31\x71", [0x5fb3] = "\x0f\x31\x72", + [0x5fb4] = "\x0f\x31\x73", [0x5fb5] = "\x0f\x31\x74", + [0x5fb6] = "\x0f\x31\x75", [0x5fb7] = "\x0f\x31\x76", + [0x5fb8] = "\x0f\x31\x77", [0x5fba] = "\x04\x2f\x26", + [0x5fbb] = "\x06\x3a\x62", [0x5fc3] = "\x05\x34\x5f", + [0x5fc4] = "\x05\x34\x5d", [0x5fc5] = "\x04\x34\x32", + [0x5fc6] = "\x04\x34\x28", [0x5fc7] = "\x04\x34\x2a", + [0x5fc8] = "\x06\x43\x28", [0x5fc9] = "\x04\x34\x2f", + [0x5fca] = "\x05\x34\x5e", [0x5fcb] = "\x04\x34\x31", + [0x5fcc] = "\x06\x43\x29", [0x5fcd] = "\x05\x34\x5b", + [0x5fce] = "\x04\x34\x2c", [0x5fcf] = "\x06\x43\x2b", + [0x5fd0] = "\x06\x43\x2a", [0x5fd1] = "\x06\x43\x25", + [0x5fd2] = "\x06\x43\x23", [0x5fd3] = "\x06\x43\x24", + [0x5fd5] = "\x05\x34\x5c", [0x5fd6] = "\x0f\x37\x58", + [0x5fd7] = "\x0f\x37\x59", [0x5fd8] = "\x0f\x37\x5a", + [0x5fd9] = "\x0f\x37\x5b", [0x5fdc] = "\x06\x43\x27", + [0x5fdf] = "\x06\x43\x2c", [0x5fe1] = "\x0f\x37\x55", + [0x5fe6] = "\x05\x3b\x31", [0x5fe7] = "\x05\x3b\x30", + [0x5fe8] = "\x05\x3b\x2e", [0x5fe9] = "\x05\x3b\x32", + [0x5fea] = "\x06\x4c\x6d", [0x5feb] = "\x04\x3a\x23", + [0x5fec] = "\x06\x4c\x66", [0x5fed] = "\x06\x4c\x6c", + [0x5fee] = "\x04\x3a\x22", [0x5fef] = "\x04\x3a\x24", + [0x5ff0] = "\x06\x4c\x6e", [0x5ff1] = "\x06\x43\x26", + [0x5ff2] = "\x06\x4c\x67", [0x5ff3] = "\x06\x4c\x70", + [0x5ff4] = "\x06\x4c\x68", [0x5ff5] = "\x05\x3b\x2d", + [0x5ff6] = "\x06\x4c\x6a", [0x5ff7] = "\x06\x4c\x69", + [0x5ff8] = "\x06\x4c\x6f", [0x5ff9] = "\x05\x3b\x2a", + [0x5ffa] = "\x05\x3b\x29", [0x5ffc] = "\x05\x3b\x2b", + [0x5ffd] = "\x0f\x3e\x25", [0x5ffe] = "\x0f\x3e\x26", + [0x5fff] = "\x0f\x3e\x27", [0x6000] = "\x0f\x3e\x28", + [0x6001] = "\x0f\x3e\x29", [0x6002] = "\x0f\x3e\x2a", + [0x6003] = "\x0f\x3e\x2b", [0x6004] = "\x0f\x3e\x2c", + [0x6005] = "\x0f\x3e\x2d", [0x6006] = "\x0f\x3e\x2e", + [0x6007] = "\x06\x4c\x6b", [0x6009] = "\x05\x3b\x2f", + [0x6012] = "\x06\x56\x4b", [0x6013] = "\x06\x56\x42", + [0x6014] = "\x05\x41\x5f", [0x6015] = "\x05\x41\x5e", + [0x6016] = "\x04\x3f\x6c", [0x6017] = "\x06\x56\x44", + [0x6018] = "\x04\x3f\x6d", [0x6019] = "\x06\x56\x48", + [0x601a] = "\x06\x56\x45", [0x601b] = "\x04\x3f\x69", + [0x601c] = "\x05\x41\x61", [0x601d] = "\x05\x41\x60", + [0x601e] = "\x06\x56\x43", [0x601f] = "\x06\x56\x49", + [0x6020] = "\x04\x3a\x25", [0x6021] = "\x04\x3f\x6b", + [0x6022] = "\x06\x56\x46", [0x6023] = "\x05\x41\x62", + [0x6024] = "\x06\x56\x4c", [0x6025] = "\x06\x56\x4d", + [0x6026] = "\x04\x3f\x72", [0x6027] = "\x06\x56\x4a", + [0x602c] = "\x0f\x44\x57", [0x602d] = "\x0f\x44\x58", + [0x602e] = "\x0f\x44\x59", [0x602f] = "\x0f\x44\x5a", + [0x6030] = "\x0f\x44\x5b", [0x6031] = "\x0f\x44\x5c", + [0x6032] = "\x0f\x44\x5d", [0x6033] = "\x0f\x44\x5e", + [0x6034] = "\x0f\x44\x5f", [0x6035] = "\x0f\x44\x60", + [0x6036] = "\x0f\x44\x61", [0x6037] = "\x0f\x44\x62", + [0x6043] = "\x06\x56\x47", [0x6044] = "\x04\x3f\x70", + [0x6046] = "\x04\x45\x78", [0x6048] = "\x05\x48\x50", + [0x6049] = "\x04\x45\x76", [0x604a] = "\x05\x48\x52", + [0x604b] = "\x06\x60\x3f", [0x604c] = "\x06\x60\x3e", + [0x604d] = "\x05\x48\x56", [0x604e] = "\x04\x45\x7a", + [0x604f] = "\x05\x48\x55", [0x6050] = "\x04\x45\x77", + [0x6051] = "\x06\x60\x39", [0x6052] = "\x06\x60\x43", + [0x6053] = "\x06\x60\x42", [0x6054] = "\x06\x60\x36", + [0x6055] = "\x04\x45\x7d", [0x6056] = "\x05\x48\x4f", + [0x6057] = "\x05\x41\x63", [0x6058] = "\x06\x60\x41", + [0x6059] = "\x05\x48\x51", [0x605a] = "\x06\x60\x3c", + [0x605b] = "\x06\x60\x34", [0x605c] = "\x05\x48\x53", + [0x605d] = "\x05\x48\x57", [0x605e] = "\x06\x60\x40", + [0x6061] = "\x06\x60\x3b", [0x6064] = "\x04\x46\x22", + [0x6065] = "\x06\x60\x38", [0x6066] = "\x0f\x4b\x2e", + [0x6067] = "\x0f\x4b\x2f", [0x6068] = "\x0f\x4b\x30", + [0x6069] = "\x0f\x4b\x31", [0x606a] = "\x0f\x4b\x32", + [0x606b] = "\x0f\x4b\x33", [0x606c] = "\x0f\x4b\x34", + [0x606d] = "\x0f\x4b\x35", [0x606e] = "\x0f\x4b\x36", + [0x606f] = "\x0f\x4b\x37", [0x6070] = "\x06\x60\x35", + [0x6071] = "\x06\x60\x37", [0x6074] = "\x06\x60\x3d", + [0x6080] = "\x04\x4c\x38", [0x6081] = "\x04\x4c\x43", + [0x6082] = "\x07\x26\x60", [0x6083] = "\x04\x4c\x42", + [0x6084] = "\x04\x4c\x3b", [0x6085] = "\x05\x4f\x5b", + [0x6086] = "\x05\x4f\x59", [0x6087] = "\x04\x52\x48", + [0x6088] = "\x05\x4f\x58", [0x6089] = "\x05\x4f\x5d", + [0x608b] = "\x05\x4f\x55", [0x608c] = "\x04\x4c\x46", + [0x608d] = "\x05\x4f\x5a", [0x608e] = "\x07\x26\x6c", + [0x608f] = "\x07\x26\x5e", [0x6090] = "\x07\x26\x64", + [0x6091] = "\x05\x4f\x5c", [0x6092] = "\x05\x4f\x52", + [0x6093] = "\x07\x26\x61", [0x6094] = "\x07\x26\x66", + [0x6095] = "\x05\x4f\x57", [0x6097] = "\x04\x4c\x41", + [0x6098] = "\x04\x4c\x39", [0x6099] = "\x07\x26\x5d", + [0x609a] = "\x07\x26\x65", [0x609b] = "\x07\x26\x5c", + [0x609c] = "\x07\x26\x67", [0x609d] = "\x06\x60\x3a", + [0x609e] = "\x07\x26\x6d", [0x609f] = "\x07\x26\x6b", + [0x60a0] = "\x05\x4f\x51", [0x60a1] = "\x05\x4f\x56", + [0x60a2] = "\x05\x4f\x5e", [0x60a6] = "\x0f\x51\x30", + [0x60a7] = "\x0f\x51\x31", [0x60a8] = "\x0f\x51\x32", + [0x60a9] = "\x0f\x51\x33", [0x60aa] = "\x0f\x51\x34", + [0x60ab] = "\x0f\x51\x35", [0x60ac] = "\x0f\x51\x38", + [0x60ad] = "\x0f\x51\x39", [0x60ae] = "\x0f\x51\x3a", + [0x60af] = "\x0f\x51\x3d", [0x60b0] = "\x0f\x51\x3e", + [0x60b1] = "\x0f\x51\x3f", [0x60b4] = "\x07\x26\x62", + [0x60b5] = "\x07\x26\x68", [0x60b7] = "\x07\x26\x5f", + [0x60c1] = "\x07\x26\x63", [0x60c3] = "\x07\x31\x46", + [0x60c4] = "\x04\x52\x46", [0x60c5] = "\x07\x31\x43", + [0x60c6] = "\x07\x31\x44", [0x60c7] = "\x04\x52\x4a", + [0x60c8] = "\x07\x31\x40", [0x60c9] = "\x07\x31\x3d", + [0x60ca] = "\x05\x56\x74", [0x60cb] = "\x05\x56\x76", + [0x60cc] = "\x07\x31\x31", [0x60cd] = "\x07\x31\x42", + [0x60ce] = "\x07\x31\x32", [0x60cf] = "\x07\x3a\x36", + [0x60d0] = "\x07\x31\x33", [0x60d1] = "\x07\x31\x36", + [0x60d2] = "\x05\x56\x75", [0x60d3] = "\x05\x56\x77", + [0x60d4] = "\x05\x56\x73", [0x60d5] = "\x05\x5d\x45", + [0x60d6] = "\x04\x52\x45", [0x60d7] = "\x05\x56\x71", + [0x60d8] = "\x05\x56\x72", [0x60d9] = "\x04\x52\x4b", + [0x60db] = "\x07\x31\x3a", [0x60dc] = "\x07\x31\x37", + [0x60dd] = "\x07\x31\x38", [0x60de] = "\x07\x31\x41", + [0x60df] = "\x04\x52\x4d", [0x60e0] = "\x07\x31\x35", + [0x60e2] = "\x05\x56\x79", [0x60e3] = "\x07\x31\x34", + [0x60e4] = "\x07\x31\x45", [0x60e5] = "\x07\x31\x3b", + [0x60e6] = "\x05\x56\x78", [0x60e7] = "\x07\x31\x3f", + [0x60e8] = "\x07\x31\x3e", [0x60f0] = "\x07\x31\x39", + [0x60f1] = "\x07\x31\x3c", [0x60f2] = "\x0f\x56\x76", + [0x60f3] = "\x0f\x56\x77", [0x60f4] = "\x0f\x56\x78", + [0x60f5] = "\x0f\x56\x79", [0x60f6] = "\x0f\x56\x7a", + [0x60f7] = "\x0f\x56\x7b", [0x60f8] = "\x0f\x56\x7c", + [0x60f9] = "\x0f\x56\x7d", [0x60fa] = "\x0f\x56\x7e", + [0x6109] = "\x07\x3a\x44", [0x610a] = "\x07\x3a\x43", + [0x610b] = "\x05\x5d\x43", [0x610c] = "\x05\x5d\x40", + [0x610d] = "\x04\x57\x71", [0x610e] = "\x07\x3a\x37", + [0x610f] = "\x05\x5d\x41", [0x6110] = "\x07\x3a\x42", + [0x6111] = "\x04\x57\x6f", [0x6112] = "\x07\x3a\x3a", + [0x6113] = "\x05\x5d\x44", [0x6114] = "\x05\x5d\x3e", + [0x6115] = "\x07\x3a\x3e", [0x6116] = "\x07\x3a\x3b", + [0x6117] = "\x07\x3a\x3c", [0x6118] = "\x07\x3a\x40", + [0x6119] = "\x05\x5d\x42", [0x611a] = "\x07\x3a\x41", + [0x611b] = "\x07\x3a\x3d", [0x611c] = "\x05\x5d\x47", + [0x6122] = "\x0f\x5b\x73", [0x6123] = "\x0f\x5b\x74", + [0x6124] = "\x0f\x5b\x75", [0x6125] = "\x0f\x5b\x77", + [0x6126] = "\x0f\x5b\x78", [0x6127] = "\x0f\x5b\x79", + [0x6128] = "\x0f\x5b\x7a", [0x6129] = "\x0f\x5b\x7b", + [0x612a] = "\x0f\x5b\x7c", [0x612b] = "\x0f\x5b\x7d", + [0x612c] = "\x0f\x5b\x7e", [0x612d] = "\x0f\x5c\x21", + [0x612e] = "\x0f\x5c\x22", [0x6131] = "\x07\x3a\x3f", + [0x6132] = "\x07\x3a\x38", [0x613c] = "\x04\x5c\x64", + [0x613d] = "\x04\x5c\x5c", [0x613e] = "\x07\x41\x4e", + [0x613f] = "\x04\x5c\x63", [0x6140] = "\x04\x5c\x5d", + [0x6141] = "\x07\x41\x4d", [0x6142] = "\x07\x41\x54", + [0x6143] = "\x04\x5c\x61", [0x6144] = "\x04\x57\x70", + [0x6145] = "\x07\x41\x49", [0x6146] = "\x05\x63\x55", + [0x6147] = "\x05\x63\x58", [0x6148] = "\x05\x63\x57", + [0x6149] = "\x07\x41\x4b", [0x614a] = "\x07\x41\x51", + [0x614b] = "\x05\x63\x56", [0x614c] = "\x07\x41\x4a", + [0x614d] = "\x07\x41\x4f", [0x614e] = "\x07\x41\x52", + [0x614f] = "\x07\x41\x4c", [0x6150] = "\x07\x41\x57", + [0x6151] = "\x07\x41\x55", [0x6152] = "\x07\x41\x50", + [0x6153] = "\x07\x41\x5b", [0x6154] = "\x05\x63\x5a", + [0x6155] = "\x07\x41\x56", [0x615d] = "\x0f\x60\x2a", + [0x615e] = "\x0f\x60\x2b", [0x615f] = "\x0f\x60\x2c", + [0x6160] = "\x0f\x60\x2d", [0x6161] = "\x0f\x60\x2e", + [0x6162] = "\x0f\x60\x2f", [0x6163] = "\x0f\x60\x30", + [0x6164] = "\x0f\x60\x31", [0x6165] = "\x0f\x60\x32", + [0x6167] = "\x05\x63\x59", [0x6168] = "\x07\x41\x5c", + [0x616a] = "\x07\x41\x5a", [0x616c] = "\x07\x41\x58", + [0x6173] = "\x07\x41\x53", [0x6175] = "\x04\x60\x64", + [0x6176] = "\x04\x60\x65", [0x6177] = "\x07\x48\x5f", + [0x6178] = "\x04\x60\x69", [0x6179] = "\x07\x48\x67", + [0x617a] = "\x05\x68\x76", [0x617b] = "\x07\x48\x64", + [0x617c] = "\x04\x60\x67", [0x617d] = "\x07\x48\x66", + [0x617e] = "\x04\x60\x6b", [0x617f] = "\x05\x68\x79", + [0x6180] = "\x04\x60\x60", [0x6181] = "\x05\x68\x7a", + [0x6182] = "\x07\x48\x61", [0x6183] = "\x07\x47\x4b", + [0x6184] = "\x04\x60\x61", [0x6185] = "\x07\x48\x5d", + [0x6186] = "\x05\x68\x77", [0x6188] = "\x07\x48\x63", + [0x6189] = "\x07\x48\x5b", [0x618a] = "\x07\x48\x62", + [0x618b] = "\x05\x68\x78", [0x618c] = "\x07\x48\x59", + [0x618d] = "\x07\x48\x5a", [0x618e] = "\x07\x48\x60", + [0x618f] = "\x07\x48\x5e", [0x6190] = "\x0f\x63\x40", + [0x6191] = "\x0f\x63\x41", [0x6192] = "\x0f\x63\x43", + [0x6193] = "\x0f\x63\x44", [0x6194] = "\x0f\x63\x45", + [0x6195] = "\x07\x4a\x73", [0x6196] = "\x07\x48\x5c", + [0x6197] = "\x07\x48\x65", [0x619b] = "\x04\x60\x6a", + [0x619c] = "\x07\x4e\x7d", [0x619d] = "\x07\x4e\x7c", + [0x619e] = "\x05\x6d\x23", [0x619f] = "\x05\x6d\x21", + [0x61a0] = "\x04\x64\x25", [0x61a1] = "\x07\x4e\x7e", + [0x61a2] = "\x07\x4f\x23", [0x61a3] = "\x07\x4e\x7b", + [0x61a4] = "\x07\x54\x42", [0x61a5] = "\x07\x48\x58", + [0x61a6] = "\x05\x6d\x24", [0x61a7] = "\x07\x4f\x24", + [0x61a9] = "\x07\x4f\x26", [0x61aa] = "\x07\x4e\x7a", + [0x61ab] = "\x04\x66\x79", [0x61ac] = "\x07\x4f\x22", + [0x61af] = "\x07\x4e\x79", [0x61b0] = "\x07\x4f\x25", + [0x61b1] = "\x0f\x65\x6c", [0x61b2] = "\x0f\x65\x6d", + [0x61b3] = "\x0f\x65\x6e", [0x61b4] = "\x0f\x65\x70", + [0x61b5] = "\x0f\x65\x71", [0x61b6] = "\x07\x4f\x21", + [0x61bb] = "\x05\x70\x72", [0x61bc] = "\x04\x66\x75", + [0x61bd] = "\x07\x54\x43", [0x61be] = "\x05\x70\x73", + [0x61bf] = "\x04\x66\x78", [0x61c0] = "\x04\x66\x76", + [0x61c1] = "\x04\x66\x77", [0x61c2] = "\x07\x58\x5e", + [0x61c3] = "\x07\x4f\x27", [0x61c4] = "\x07\x54\x3f", + [0x61c5] = "\x07\x54\x3e", [0x61c8] = "\x07\x54\x41", + [0x61c9] = "\x0f\x68\x2c", [0x61ca] = "\x0f\x68\x2d", + [0x61cb] = "\x0f\x68\x2e", [0x61cc] = "\x0f\x68\x2f", + [0x61ce] = "\x04\x66\x74", [0x61cf] = "\x07\x54\x40", + [0x61d1] = "\x05\x70\x71", [0x61d3] = "\x07\x54\x44", + [0x61d4] = "\x05\x73\x7b", [0x61d5] = "\x07\x58\x59", + [0x61d6] = "\x05\x73\x7c", [0x61d7] = "\x05\x73\x79", + [0x61d8] = "\x04\x69\x29", [0x61d9] = "\x05\x76\x3a", + [0x61da] = "\x07\x58\x5d", [0x61db] = "\x05\x73\x7a", + [0x61dc] = "\x07\x58\x5b", [0x61de] = "\x0f\x69\x63", + [0x61df] = "\x0f\x69\x64", [0x61e0] = "\x0f\x69\x65", + [0x61e1] = "\x0f\x69\x66", [0x61e2] = "\x07\x58\x5a", + [0x61e3] = "\x07\x58\x5c", [0x61e5] = "\x04\x69\x4b", + [0x61e7] = "\x04\x6a\x67", [0x61e8] = "\x07\x58\x5f", + [0x61e9] = "\x07\x5c\x3a", [0x61ea] = "\x07\x5c\x3b", + [0x61eb] = "\x04\x6a\x68", [0x61ec] = "\x04\x6a\x69", + [0x61f0] = "\x04\x6b\x7a", [0x61f1] = "\x05\x77\x78", + [0x61f2] = "\x07\x5f\x37", [0x61f3] = "\x07\x5f\x35", + [0x61f4] = "\x0f\x6b\x5d", [0x61f6] = "\x07\x5f\x36", + [0x61f7] = "\x07\x5f\x38", [0x61f8] = "\x05\x79\x3a", + [0x61f9] = "\x07\x5f\x34", [0x61fa] = "\x05\x79\x39", + [0x61fb] = "\x07\x61\x34", [0x61fc] = "\x07\x62\x4f", + [0x61fd] = "\x07\x62\x4e", [0x61fe] = "\x07\x63\x63", + [0x61ff] = "\x0f\x6c\x69", [0x6200] = "\x07\x63\x65", + [0x6201] = "\x07\x63\x64", [0x6203] = "\x07\x64\x55", + [0x6205] = "\x05\x7b\x65", [0x6206] = "\x0f\x6d\x30", + [0x6207] = "\x07\x65\x75", [0x6222] = "\x06\x25\x42", + [0x6223] = "\x04\x2a\x78", [0x6225] = "\x05\x2b\x28", + [0x6226] = "\x04\x2f\x28", [0x6227] = "\x06\x3a\x66", + [0x6228] = "\x05\x2f\x5b", [0x6229] = "\x05\x34\x61", + [0x622b] = "\x06\x43\x2d", [0x622c] = "\x05\x3b\x34", + [0x622d] = "\x06\x43\x2f", [0x622e] = "\x06\x43\x2e", + [0x622f] = "\x06\x4c\x74", [0x6230] = "\x04\x3a\x29", + [0x6231] = "\x06\x4c\x73", [0x6232] = "\x05\x3b\x33", + [0x6233] = "\x0f\x3e\x2f", [0x6234] = "\x06\x56\x50", + [0x6235] = "\x06\x56\x4f", [0x6236] = "\x04\x3f\x74", + [0x6238] = "\x04\x46\x24", [0x6239] = "\x06\x60\x45", + [0x623a] = "\x05\x48\x58", [0x623b] = "\x06\x60\x44", + [0x623c] = "\x07\x26\x6e", [0x623e] = "\x0f\x4b\x39", + [0x623f] = "\x0f\x4b\x3a", [0x6240] = "\x0f\x4b\x3b", + [0x6241] = "\x07\x26\x70", [0x6242] = "\x04\x4c\x47", + [0x6244] = "\x0f\x51\x40", [0x6245] = "\x0f\x51\x41", + [0x6247] = "\x07\x26\x6f", [0x6248] = "\x05\x56\x7b", + [0x6249] = "\x05\x56\x7a", [0x624b] = "\x0f\x57\x22", + [0x624c] = "\x0f\x57\x21", [0x624e] = "\x05\x5d\x49", + [0x624f] = "\x07\x3a\x45", [0x6250] = "\x05\x5d\x48", + [0x6251] = "\x0f\x5a\x58", [0x6252] = "\x0f\x5c\x23", + [0x6253] = "\x0f\x5c\x24", [0x6255] = "\x07\x41\x5d", + [0x6256] = "\x07\x41\x5e", [0x6257] = "\x0f\x60\x33", + [0x6259] = "\x07\x48\x68", [0x625a] = "\x04\x60\x6c", + [0x625b] = "\x0f\x63\x46", [0x625d] = "\x05\x70\x74", + [0x625e] = "\x04\x64\x27", [0x625f] = "\x04\x66\x7a", + [0x6260] = "\x07\x54\x45", [0x6262] = "\x04\x6a\x6a", + [0x6263] = "\x07\x5c\x3c", [0x6264] = "\x0f\x6a\x6b", + [0x6265] = "\x07\x5f\x3a", [0x6266] = "\x07\x5f\x39", + [0x6267] = "\x05\x7a\x34", [0x6269] = "\x07\x66\x2a", + [0x626a] = "\x06\x22\x29", [0x626b] = "\x06\x22\x28", + [0x626c] = "\x04\x24\x6a", [0x626d] = "\x06\x25\x44", + [0x626e] = "\x06\x25\x45", [0x626f] = "\x06\x28\x73", + [0x6272] = "\x0f\x21\x7c", [0x6273] = "\x06\x25\x43", + [0x6274] = "\x0f\x25\x28", [0x6275] = "\x0f\x25\x2a", + [0x6277] = "\x06\x2d\x53", [0x6278] = "\x06\x33\x6a", + [0x6279] = "\x04\x27\x5d", [0x627b] = "\x06\x33\x69", + [0x627c] = "\x06\x2d\x54", [0x627e] = "\x04\x27\x5e", + [0x627f] = "\x06\x28\x74", [0x6280] = "\x04\x24\x6b", + [0x6281] = "\x06\x33\x6b", [0x6282] = "\x04\x2a\x7a", + [0x6283] = "\x04\x2a\x7c", [0x6287] = "\x0f\x25\x56", + [0x6288] = "\x05\x2b\x29", [0x6289] = "\x0f\x28\x49", + [0x628b] = "\x05\x27\x52", [0x628d] = "\x06\x3a\x67", + [0x628e] = "\x06\x3a\x68", [0x628f] = "\x06\x3a\x69", + [0x6290] = "\x05\x2f\x5f", [0x6291] = "\x06\x3a\x6c", + [0x6292] = "\x06\x3a\x6a", [0x6293] = "\x04\x2f\x2c", + [0x6294] = "\x04\x2f\x2b", [0x6295] = "\x06\x33\x6e", + [0x6296] = "\x06\x33\x6c", [0x6297] = "\x06\x33\x6f", + [0x6298] = "\x06\x43\x35", [0x6299] = "\x0f\x29\x39", + [0x629c] = "\x05\x2f\x5d", [0x629d] = "\x06\x43\x30", + [0x629e] = "\x06\x43\x31", [0x629f] = "\x06\x43\x32", + [0x62a0] = "\x06\x43\x34", [0x62a1] = "\x06\x43\x36", + [0x62a2] = "\x0f\x31\x79", [0x62a3] = "\x06\x33\x6d", + [0x62a4] = "\x06\x36\x7a", [0x62a7] = "\x05\x2b\x2a", + [0x62a8] = "\x04\x2a\x7d", [0x62a9] = "\x06\x43\x33", + [0x62aa] = "\x06\x4c\x77", [0x62ab] = "\x06\x43\x37", + [0x62ad] = "\x06\x3a\x6d", [0x62ae] = "\x06\x4c\x76", + [0x62af] = "\x06\x43\x38", [0x62b3] = "\x05\x2f\x5e", + [0x62b4] = "\x05\x34\x62", [0x62b5] = "\x0f\x37\x5c", + [0x62b6] = "\x06\x4c\x75", [0x62bc] = "\x05\x3b\x36", + [0x62bd] = "\x05\x3b\x35", [0x62be] = "\x04\x3a\x2c", + [0x62bf] = "\x06\x4c\x78", [0x62c2] = "\x0f\x3e\x30", + [0x62c4] = "\x06\x56\x52", [0x62c5] = "\x05\x41\x67", + [0x62c6] = "\x06\x56\x54", [0x62c7] = "\x06\x4c\x7a", + [0x62c8] = "\x05\x41\x64", [0x62c9] = "\x05\x41\x66", + [0x62ca] = "\x06\x56\x53", [0x62cb] = "\x06\x56\x55", + [0x62cc] = "\x06\x4c\x79", [0x62cd] = "\x06\x56\x56", + [0x62d0] = "\x0f\x3e\x31", [0x62d1] = "\x06\x56\x51", + [0x62d2] = "\x0f\x44\x63", [0x62d6] = "\x06\x60\x46", + [0x62d7] = "\x06\x60\x48", [0x62d8] = "\x06\x60\x49", + [0x62d9] = "\x06\x60\x4a", [0x62da] = "\x06\x60\x4b", + [0x62db] = "\x06\x60\x4c", [0x62dc] = "\x06\x60\x4d", + [0x62dd] = "\x06\x60\x50", [0x62de] = "\x05\x48\x5b", + [0x62df] = "\x07\x26\x75", [0x62e0] = "\x06\x60\x4e", + [0x62e1] = "\x05\x48\x5a", [0x62e2] = "\x06\x56\x57", + [0x62e3] = "\x05\x48\x59", [0x62e4] = "\x06\x60\x4f", + [0x62e7] = "\x06\x60\x47", [0x62e8] = "\x0f\x4b\x3c", + [0x62eb] = "\x07\x26\x71", [0x62ec] = "\x07\x26\x72", + [0x62ed] = "\x07\x26\x73", [0x62ee] = "\x07\x26\x74", + [0x62ef] = "\x05\x4f\x62", [0x62f0] = "\x05\x4f\x5f", + [0x62f1] = "\x06\x60\x52", [0x62f2] = "\x07\x26\x76", + [0x62f3] = "\x05\x4f\x60", [0x62f4] = "\x05\x4f\x61", + [0x62f5] = "\x06\x60\x51", [0x62f7] = "\x0f\x51\x42", + [0x62f8] = "\x0f\x51\x43", [0x62f9] = "\x07\x25\x73", + [0x62fb] = "\x07\x31\x47", [0x62fc] = "\x07\x31\x48", + [0x62fd] = "\x07\x31\x4c", [0x62fe] = "\x07\x31\x49", + [0x62ff] = "\x05\x56\x7c", [0x6300] = "\x07\x31\x4b", + [0x6301] = "\x04\x52\x51", [0x6302] = "\x07\x3a\x4e", + [0x6303] = "\x07\x31\x4a", [0x6305] = "\x07\x31\x4d", + [0x6306] = "\x05\x4f\x63", [0x6309] = "\x05\x56\x7d", + [0x630a] = "\x04\x52\x50", [0x630d] = "\x07\x26\x77", + [0x630e] = "\x07\x26\x78", [0x630f] = "\x07\x3a\x47", + [0x6310] = "\x07\x3a\x48", [0x6311] = "\x07\x3a\x4b", + [0x6312] = "\x05\x5d\x4a", [0x6313] = "\x07\x31\x4e", + [0x6314] = "\x04\x57\x74", [0x6315] = "\x05\x63\x5b", + [0x6316] = "\x07\x3a\x4c", [0x6317] = "\x07\x3a\x4d", + [0x6319] = "\x0f\x5c\x25", [0x631b] = "\x0f\x57\x23", + [0x631c] = "\x07\x41\x5f", [0x631d] = "\x07\x41\x60", + [0x631e] = "\x07\x41\x62", [0x631f] = "\x07\x41\x64", + [0x6320] = "\x04\x5c\x67", [0x6321] = "\x04\x5c\x66", + [0x6322] = "\x05\x63\x5c", [0x6323] = "\x07\x41\x63", + [0x6324] = "\x07\x48\x69", [0x6328] = "\x07\x3a\x4a", + [0x6329] = "\x05\x63\x5e", [0x632a] = "\x05\x68\x7b", + [0x632b] = "\x07\x48\x6c", [0x632c] = "\x04\x60\x6e", + [0x632d] = "\x07\x48\x6a", [0x632e] = "\x07\x48\x6b", + [0x6331] = "\x07\x4f\x28", [0x6332] = "\x07\x4f\x29", + [0x6333] = "\x07\x4f\x2a", [0x6334] = "\x07\x4f\x2b", + [0x6335] = "\x05\x6d\x25", [0x6336] = "\x05\x6d\x27", + [0x6337] = "\x07\x4f\x2c", [0x6338] = "\x05\x6d\x26", + [0x633a] = "\x05\x6d\x28", [0x633b] = "\x07\x54\x46", + [0x633c] = "\x07\x4f\x2d", [0x633e] = "\x05\x77\x7a", + [0x633f] = "\x04\x6b\x7c", [0x6340] = "\x07\x5f\x3b", + [0x6341] = "\x05\x77\x7b", [0x6342] = "\x05\x77\x79", + [0x6343] = "\x07\x61\x35", [0x6346] = "\x07\x62\x50", + [0x6347] = "\x07\x63\x66", [0x6348] = "\x07\x64\x56", + [0x634a] = "\x07\x65\x3c", [0x634b] = "\x04\x24\x6c", + [0x634c] = "\x04\x23\x2c", [0x634d] = "\x0f\x21\x60", + [0x634e] = "\x06\x2d\x56", [0x634f] = "\x05\x27\x53", + [0x6350] = "\x06\x2d\x55", [0x6351] = "\x0f\x2d\x24", + [0x6352] = "\x06\x33\x71", [0x6354] = "\x06\x33\x70", + [0x6355] = "\x04\x2a\x7e", [0x6356] = "\x0f\x28\x4b", + [0x6357] = "\x06\x3a\x6e", [0x6358] = "\x06\x3a\x6f", + [0x635a] = "\x06\x43\x3b", [0x635b] = "\x06\x3a\x73", + [0x635c] = "\x06\x3a\x72", [0x635d] = "\x06\x3a\x71", + [0x635e] = "\x06\x3a\x70", [0x635f] = "\x06\x43\x3a", + [0x6361] = "\x0f\x31\x7a", [0x6362] = "\x0f\x31\x7b", + [0x6365] = "\x06\x43\x3d", [0x6366] = "\x05\x34\x64", + [0x6367] = "\x04\x3a\x2e", [0x6368] = "\x06\x43\x3e", + [0x6369] = "\x04\x34\x39", [0x636a] = "\x05\x34\x65", + [0x636c] = "\x0f\x37\x5d", [0x636d] = "\x05\x34\x63", + [0x636e] = "\x06\x43\x39", [0x636f] = "\x0f\x37\x5e", + [0x6370] = "\x0f\x37\x5f", [0x6372] = "\x06\x43\x3f", + [0x6379] = "\x05\x3b\x39", [0x637a] = "\x05\x3b\x37", + [0x637b] = "\x06\x4c\x7d", [0x637c] = "\x04\x3a\x2f", + [0x637d] = "\x06\x4d\x21", [0x637e] = "\x05\x3b\x38", + [0x637f] = "\x06\x4c\x7e", [0x6380] = "\x06\x4c\x7c", + [0x6383] = "\x06\x4d\x22", [0x6385] = "\x06\x47\x21", + [0x6386] = "\x06\x56\x5a", [0x6387] = "\x05\x41\x68", + [0x6388] = "\x06\x56\x5b", [0x6389] = "\x06\x56\x58", + [0x638a] = "\x05\x41\x69", [0x638b] = "\x06\x56\x59", + [0x638d] = "\x06\x56\x5c", [0x6394] = "\x05\x41\x6a", + [0x6395] = "\x0f\x3e\x33", [0x6396] = "\x0f\x3e\x34", + [0x6397] = "\x05\x48\x5c", [0x6398] = "\x06\x60\x53", + [0x6399] = "\x06\x60\x55", [0x639a] = "\x05\x48\x5d", + [0x639d] = "\x06\x60\x54", [0x63a2] = "\x05\x4f\x64", + [0x63a3] = "\x04\x4c\x4a", [0x63a4] = "\x07\x26\x7b", + [0x63a5] = "\x07\x26\x7c", [0x63a6] = "\x04\x4c\x4b", + [0x63a7] = "\x07\x31\x4f", [0x63a9] = "\x07\x26\x7a", + [0x63ab] = "\x04\x4c\x48", [0x63af] = "\x05\x57\x21", + [0x63b0] = "\x05\x56\x7e", [0x63b1] = "\x04\x52\x52", + [0x63b3] = "\x0f\x57\x25", [0x63b4] = "\x07\x31\x50", + [0x63b7] = "\x04\x57\x78", [0x63b8] = "\x04\x57\x76", + [0x63b9] = "\x05\x5d\x4b", [0x63ba] = "\x07\x3a\x50", + [0x63bb] = "\x07\x3a\x4f", [0x63bc] = "\x07\x3a\x52", + [0x63bf] = "\x0f\x5c\x26", [0x63c1] = "\x04\x52\x54", + [0x63c3] = "\x07\x3a\x51", [0x63c5] = "\x05\x63\x5d", + [0x63c6] = "\x04\x5c\x69", [0x63c7] = "\x05\x63\x5f", + [0x63c8] = "\x07\x41\x69", [0x63c9] = "\x07\x41\x6a", + [0x63ca] = "\x04\x5c\x6d", [0x63cb] = "\x07\x41\x67", + [0x63cc] = "\x07\x41\x68", [0x63cd] = "\x07\x41\x66", + [0x63ce] = "\x0f\x57\x24", [0x63cf] = "\x0f\x60\x34", + [0x63d0] = "\x0f\x60\x35", [0x63d1] = "\x04\x5c\x6c", + [0x63d5] = "\x05\x68\x7c", [0x63d6] = "\x07\x48\x70", + [0x63d7] = "\x05\x76\x3b", [0x63d8] = "\x07\x48\x6f", + [0x63d9] = "\x07\x4f\x2e", [0x63da] = "\x07\x48\x6e", + [0x63dc] = "\x05\x6d\x29", [0x63dd] = "\x07\x4f\x2f", + [0x63de] = "\x07\x4f\x30", [0x63df] = "\x07\x4f\x31", + [0x63e0] = "\x07\x4f\x32", [0x63e1] = "\x07\x41\x65", + [0x63e2] = "\x05\x70\x75", [0x63e3] = "\x07\x54\x47", + [0x63e7] = "\x07\x54\x48", [0x63e8] = "\x05\x73\x7d", + [0x63e9] = "\x07\x58\x60", [0x63ea] = "\x07\x5c\x3e", + [0x63eb] = "\x07\x5c\x3d", [0x63ed] = "\x07\x61\x36", + [0x63ef] = "\x07\x63\x67", [0x63f0] = "\x07\x65\x5e", + [0x63f2] = "\x06\x2d\x57", [0x63f4] = "\x06\x33\x75", + [0x63f5] = "\x06\x33\x72", [0x63f6] = "\x06\x33\x76", + [0x63f7] = "\x05\x2b\x2b", [0x63f8] = "\x04\x2b\x22", + [0x63f9] = "\x04\x2b\x21", [0x63fa] = "\x04\x2b\x24", + [0x63fb] = "\x06\x33\x74", [0x63fc] = "\x04\x2b\x23", + [0x63fd] = "\x0f\x2d\x25", [0x63fe] = "\x0f\x2d\x26", + [0x6400] = "\x06\x33\x73", [0x6402] = "\x04\x2f\x33", + [0x6403] = "\x06\x3a\x76", [0x6404] = "\x05\x2f\x61", + [0x6405] = "\x05\x2f\x63", [0x6406] = "\x05\x2f\x60", + [0x6407] = "\x04\x2f\x31", [0x6408] = "\x04\x2f\x36", + [0x6409] = "\x04\x2f\x35", [0x640a] = "\x06\x3a\x75", + [0x640b] = "\x05\x2f\x62", [0x640c] = "\x04\x2f\x34", + [0x640d] = "\x04\x2f\x32", [0x640e] = "\x06\x3a\x77", + [0x6410] = "\x0f\x2f\x63", [0x6411] = "\x0f\x2f\x64", + [0x6413] = "\x04\x2f\x37", [0x6414] = "\x0f\x31\x7c", + [0x6415] = "\x05\x34\x66", [0x6416] = "\x06\x43\x41", + [0x6417] = "\x06\x43\x40", [0x6418] = "\x06\x43\x42", + [0x6419] = "\x06\x43\x43", [0x641a] = "\x06\x43\x44", + [0x641b] = "\x06\x43\x46", [0x641c] = "\x06\x43\x47", + [0x641e] = "\x04\x34\x3f", [0x6422] = "\x06\x43\x45", + [0x6423] = "\x05\x3b\x3b", [0x6424] = "\x04\x3a\x32", + [0x6425] = "\x06\x4d\x26", [0x6426] = "\x06\x4d\x27", + [0x6427] = "\x06\x4d\x2d", [0x6428] = "\x05\x3b\x3d", + [0x6429] = "\x04\x3a\x36", [0x642a] = "\x06\x4d\x2e", + [0x642c] = "\x06\x4d\x28", [0x642d] = "\x06\x4d\x25", + [0x642e] = "\x06\x4d\x2f", [0x642f] = "\x06\x4d\x30", + [0x6430] = "\x05\x3b\x3c", [0x6431] = "\x06\x4d\x2a", + [0x6432] = "\x06\x4d\x2c", [0x6433] = "\x06\x4d\x2b", + [0x6435] = "\x0f\x3e\x35", [0x6436] = "\x0f\x3e\x36", + [0x6437] = "\x06\x4d\x29", [0x6438] = "\x05\x41\x6e", + [0x6439] = "\x05\x41\x6b", [0x643a] = "\x04\x3f\x79", + [0x643b] = "\x06\x56\x5d", [0x643c] = "\x06\x56\x5e", + [0x643d] = "\x06\x56\x5f", [0x643e] = "\x05\x41\x6d", + [0x6440] = "\x05\x41\x6c", [0x6444] = "\x0f\x44\x64", + [0x6446] = "\x06\x4d\x24", [0x6447] = "\x05\x48\x65", + [0x6448] = "\x05\x48\x5e", [0x6449] = "\x06\x60\x57", + [0x644a] = "\x05\x48\x5f", [0x644b] = "\x05\x48\x63", + [0x644c] = "\x05\x48\x60", [0x644d] = "\x05\x48\x64", + [0x644e] = "\x05\x48\x61", [0x644f] = "\x05\x48\x62", + [0x6450] = "\x06\x60\x56", [0x6451] = "\x05\x48\x66", + [0x6452] = "\x0f\x4b\x3d", [0x6453] = "\x0f\x4b\x3e", + [0x6454] = "\x0f\x4b\x3f", [0x6455] = "\x0f\x4b\x40", + [0x6458] = "\x05\x4f\x6a", [0x6459] = "\x05\x4f\x6b", + [0x645a] = "\x07\x26\x7e", [0x645b] = "\x05\x4f\x68", + [0x645c] = "\x04\x4c\x4c", [0x645d] = "\x05\x4f\x6c", + [0x645e] = "\x05\x4f\x65", [0x645f] = "\x07\x26\x7d", + [0x6460] = "\x05\x4f\x67", [0x6461] = "\x0f\x51\x46", + [0x6462] = "\x06\x60\x59", [0x6463] = "\x05\x4f\x66", + [0x6464] = "\x07\x27\x24", [0x6465] = "\x07\x27\x25", + [0x6466] = "\x07\x27\x21", [0x6467] = "\x04\x4c\x4e", + [0x6468] = "\x07\x27\x22", [0x6469] = "\x04\x4c\x4d", + [0x646a] = "\x07\x27\x23", [0x646b] = "\x0f\x51\x44", + [0x646c] = "\x0f\x51\x45", [0x6470] = "\x07\x31\x51", + [0x6471] = "\x07\x31\x53", [0x6472] = "\x05\x57\x25", + [0x6473] = "\x07\x31\x56", [0x6474] = "\x07\x31\x52", + [0x6475] = "\x07\x31\x54", [0x6476] = "\x04\x52\x57", + [0x6478] = "\x05\x57\x23", [0x6479] = "\x05\x57\x26", + [0x647a] = "\x05\x57\x24", [0x647b] = "\x05\x4f\x69", + [0x647c] = "\x05\x57\x22", [0x647d] = "\x07\x31\x55", + [0x647e] = "\x05\x57\x27", [0x647f] = "\x0f\x57\x26", + [0x6483] = "\x04\x57\x79", [0x6484] = "\x07\x3a\x54", + [0x6485] = "\x05\x5d\x4c", [0x6486] = "\x07\x3a\x55", + [0x6487] = "\x07\x48\x71", [0x6488] = "\x05\x5d\x4d", + [0x648a] = "\x07\x3a\x53", [0x648b] = "\x0f\x5c\x27", + [0x648c] = "\x0f\x5c\x28", [0x648d] = "\x05\x63\x60", + [0x648e] = "\x04\x5c\x6e", [0x648f] = "\x07\x41\x71", + [0x6490] = "\x05\x5d\x4e", [0x6491] = "\x04\x5c\x6f", + [0x6492] = "\x07\x41\x6d", [0x6493] = "\x07\x41\x6f", + [0x6494] = "\x07\x41\x6c", [0x6495] = "\x07\x41\x70", + [0x6496] = "\x07\x41\x6e", [0x6499] = "\x0f\x60\x36", + [0x649a] = "\x0f\x60\x37", [0x649b] = "\x07\x41\x6b", + [0x649c] = "\x04\x60\x70", [0x649d] = "\x05\x68\x7e", + [0x649f] = "\x05\x68\x7d", [0x64a0] = "\x07\x48\x72", + [0x64a2] = "\x07\x4f\x35", [0x64a3] = "\x07\x4f\x36", + [0x64a4] = "\x0f\x65\x72", [0x64a5] = "\x07\x4f\x33", + [0x64a6] = "\x04\x66\x7c", [0x64a8] = "\x07\x54\x49", + [0x64a9] = "\x07\x54\x4b", [0x64aa] = "\x07\x4f\x34", + [0x64ac] = "\x07\x54\x4a", [0x64ad] = "\x07\x58\x62", + [0x64ae] = "\x07\x58\x63", [0x64af] = "\x07\x58\x61", + [0x64b1] = "\x06\x25\x46", [0x64b2] = "\x06\x2d\x58", + [0x64b3] = "\x06\x28\x75", [0x64b6] = "\x04\x27\x5f", + [0x64b7] = "\x04\x27\x60", [0x64b8] = "\x06\x3a\x78", + [0x64ba] = "\x04\x34\x40", [0x64bb] = "\x05\x2b\x2c", + [0x64bc] = "\x0f\x37\x60", [0x64bd] = "\x0f\x37\x61", + [0x64be] = "\x06\x43\x48", [0x64c0] = "\x06\x4d\x31", + [0x64c1] = "\x07\x27\x26", [0x64c3] = "\x07\x31\x58", + [0x64c4] = "\x07\x31\x57", [0x64cc] = "\x0f\x6b\x5e", + [0x64ce] = "\x06\x2d\x59", [0x64cf] = "\x06\x2d\x5a", + [0x64d0] = "\x05\x21\x79", [0x64d1] = "\x0f\x28\x4c", + [0x64d2] = "\x04\x2f\x39", [0x64d3] = "\x05\x34\x67", + [0x64d4] = "\x05\x3b\x3e", [0x64d6] = "\x05\x41\x6f", + [0x64d7] = "\x06\x60\x5a", [0x64d8] = "\x07\x27\x27", + [0x64d9] = "\x07\x27\x29", [0x64da] = "\x05\x48\x67", + [0x64dd] = "\x07\x31\x5a", [0x64de] = "\x07\x31\x59", + [0x64e0] = "\x07\x3a\x56", [0x64e4] = "\x05\x23\x21", + [0x64e5] = "\x06\x2d\x5b", [0x64e6] = "\x0f\x28\x4d", + [0x64e8] = "\x06\x33\x77", [0x64e9] = "\x0f\x2d\x27", + [0x64ea] = "\x06\x33\x78", [0x64eb] = "\x0f\x31\x7e", + [0x64ec] = "\x05\x34\x68", [0x64ed] = "\x0f\x37\x62", + [0x64ee] = "\x06\x43\x49", [0x64ef] = "\x04\x3a\x37", + [0x64f0] = "\x05\x3b\x41", [0x64f1] = "\x05\x3b\x40", + [0x64f4] = "\x04\x3f\x7b", [0x64f5] = "\x06\x56\x60", + [0x64f7] = "\x06\x60\x5c", [0x64f8] = "\x05\x48\x6c", + [0x64f9] = "\x05\x48\x68", [0x64fa] = "\x05\x48\x6d", + [0x64fb] = "\x05\x48\x6a", [0x64fc] = "\x05\x48\x69", + [0x64fd] = "\x05\x48\x6b", [0x64fe] = "\x04\x46\x31", + [0x6500] = "\x0f\x44\x65", [0x6501] = "\x06\x60\x5b", + [0x6502] = "\x05\x4f\x6f", [0x6503] = "\x05\x4f\x70", + [0x6504] = "\x05\x4f\x71", [0x6505] = "\x05\x4f\x6d", + [0x6506] = "\x05\x4f\x6e", [0x6509] = "\x07\x27\x2a", + [0x650b] = "\x05\x57\x29", [0x650c] = "\x05\x57\x28", + [0x650d] = "\x04\x52\x58", [0x650e] = "\x04\x52\x59", + [0x650f] = "\x07\x31\x5c", [0x6510] = "\x07\x31\x5d", + [0x6511] = "\x07\x31\x5b", [0x6512] = "\x0f\x51\x47", + [0x6513] = "\x05\x5d\x4f", [0x6514] = "\x04\x57\x7c", + [0x6515] = "\x07\x3a\x5a", [0x6517] = "\x07\x3a\x57", + [0x6518] = "\x07\x3a\x58", [0x651a] = "\x0f\x57\x29", + [0x651b] = "\x05\x63\x61", [0x651c] = "\x04\x57\x7e", + [0x651d] = "\x07\x41\x72", [0x651e] = "\x07\x3a\x59", + [0x651f] = "\x07\x48\x75", [0x6520] = "\x05\x63\x62", + [0x6521] = "\x07\x41\x74", [0x6522] = "\x07\x41\x73", + [0x6523] = "\x0f\x5c\x29", [0x6524] = "\x0f\x5c\x2a", + [0x6525] = "\x07\x48\x74", [0x6526] = "\x05\x69\x21", + [0x6528] = "\x07\x48\x73", [0x6529] = "\x04\x66\x7e", + [0x652a] = "\x07\x54\x4c", [0x652b] = "\x04\x6a\x6c", + [0x652c] = "\x05\x77\x7c", [0x652d] = "\x05\x79\x3b", + [0x652f] = "\x05\x27\x55", [0x6530] = "\x05\x27\x54", + [0x6531] = "\x06\x2d\x5e", [0x6532] = "\x0f\x28\x4e", + [0x6533] = "\x0f\x28\x4f", [0x6535] = "\x06\x2d\x5d", + [0x6537] = "\x05\x2b\x2f", [0x6538] = "\x05\x2b\x2d", + [0x6539] = "\x05\x2b\x2e", [0x653c] = "\x04\x2f\x3c", + [0x653d] = "\x06\x3a\x7e", [0x653e] = "\x04\x2f\x3b", + [0x653f] = "\x06\x3a\x7a", [0x6540] = "\x05\x2f\x64", + [0x6541] = "\x06\x3b\x22", [0x6542] = "\x0f\x32\x21", + [0x6543] = "\x0f\x32\x24", [0x6544] = "\x0f\x32\x26", + [0x6545] = "\x0f\x32\x27", [0x6547] = "\x06\x3a\x7b", + [0x6548] = "\x0f\x32\x22", [0x654a] = "\x06\x3a\x7d", + [0x654b] = "\x06\x3a\x7c", [0x654c] = "\x06\x3b\x23", + [0x654d] = "\x06\x3a\x79", [0x654e] = "\x0f\x32\x25", + [0x654f] = "\x05\x2f\x65", [0x6550] = "\x06\x43\x4b", + [0x6551] = "\x04\x34\x43", [0x6552] = "\x04\x34\x42", + [0x6553] = "\x04\x34\x44", [0x6554] = "\x06\x43\x4d", + [0x6555] = "\x05\x34\x69", [0x6556] = "\x06\x43\x4f", + [0x6557] = "\x06\x43\x4e", [0x6558] = "\x06\x43\x4c", + [0x655a] = "\x06\x43\x4a", [0x655b] = "\x0f\x37\x63", + [0x655c] = "\x0f\x37\x64", [0x655d] = "\x0f\x37\x65", + [0x655e] = "\x0f\x37\x66", [0x6560] = "\x05\x3b\x42", + [0x6561] = "\x06\x4d\x33", [0x6562] = "\x06\x4d\x34", + [0x6565] = "\x05\x3b\x43", [0x6566] = "\x06\x4d\x35", + [0x6567] = "\x0f\x3e\x37", [0x6568] = "\x0f\x3e\x38", + [0x6569] = "\x0f\x3e\x39", [0x656a] = "\x0f\x3e\x3a", + [0x656b] = "\x0f\x3e\x3c", [0x656c] = "\x0f\x3e\x3d", + [0x656d] = "\x0f\x3e\x3e", [0x656e] = "\x0f\x3e\x3f", + [0x656f] = "\x0f\x3e\x40", [0x6571] = "\x06\x4d\x32", + [0x6572] = "\x0f\x3e\x3b", [0x6575] = "\x06\x56\x62", + [0x6576] = "\x06\x56\x66", [0x6577] = "\x05\x41\x71", + [0x6578] = "\x05\x41\x72", [0x6579] = "\x06\x56\x61", + [0x657a] = "\x06\x56\x6b", [0x657b] = "\x06\x56\x69", + [0x657c] = "\x06\x56\x67", [0x657d] = "\x05\x41\x73", + [0x657e] = "\x06\x56\x68", [0x657f] = "\x06\x56\x64", + [0x6580] = "\x06\x56\x6a", [0x6582] = "\x06\x56\x63", + [0x6583] = "\x0f\x44\x66", [0x6584] = "\x0f\x44\x67", + [0x6585] = "\x06\x56\x65", [0x6588] = "\x05\x48\x70", + [0x6589] = "\x05\x48\x71", [0x658a] = "\x05\x48\x6e", + [0x658b] = "\x04\x4c\x50", [0x658c] = "\x06\x60\x5e", + [0x658d] = "\x05\x48\x72", [0x658e] = "\x05\x48\x6f", + [0x6590] = "\x05\x48\x73", [0x6591] = "\x0f\x4b\x41", + [0x6592] = "\x0f\x4b\x42", [0x6593] = "\x0f\x4b\x43", + [0x6594] = "\x0f\x4b\x44", [0x6595] = "\x0f\x4b\x45", + [0x6596] = "\x0f\x4b\x46", [0x6597] = "\x0f\x4b\x47", + [0x6598] = "\x0f\x4b\x48", [0x6599] = "\x0f\x4b\x4a", + [0x659a] = "\x0f\x4b\x4b", [0x659b] = "\x0f\x4b\x4c", + [0x659c] = "\x06\x60\x5f", [0x65a2] = "\x05\x4f\x72", + [0x65a3] = "\x07\x27\x2c", [0x65a4] = "\x05\x4f\x75", + [0x65a5] = "\x07\x27\x2f", [0x65a6] = "\x05\x4f\x74", + [0x65a7] = "\x05\x4f\x73", [0x65a8] = "\x04\x4c\x51", + [0x65a9] = "\x05\x4f\x77", [0x65aa] = "\x07\x27\x2b", + [0x65ab] = "\x07\x27\x30", [0x65ac] = "\x05\x4f\x76", + [0x65af] = "\x0f\x51\x48", [0x65b0] = "\x0f\x51\x49", + [0x65b1] = "\x0f\x51\x4a", [0x65b2] = "\x0f\x51\x4b", + [0x65b3] = "\x0f\x51\x4c", [0x65b4] = "\x0f\x51\x4d", + [0x65b5] = "\x0f\x51\x4e", [0x65b6] = "\x0f\x51\x4f", + [0x65b9] = "\x07\x27\x2d", [0x65bc] = "\x05\x57\x2c", + [0x65bd] = "\x05\x57\x2f", [0x65be] = "\x05\x57\x2b", + [0x65bf] = "\x05\x57\x2d", [0x65c0] = "\x05\x57\x2e", + [0x65c1] = "\x07\x31\x61", [0x65c2] = "\x07\x31\x5f", + [0x65c3] = "\x07\x31\x5e", [0x65c4] = "\x0f\x57\x2a", + [0x65c5] = "\x0f\x57\x2b", [0x65c6] = "\x0f\x57\x2c", + [0x65c7] = "\x0f\x57\x2d", [0x65c8] = "\x0f\x57\x2e", + [0x65c9] = "\x0f\x57\x2f", [0x65ca] = "\x07\x31\x60", + [0x65cd] = "\x05\x57\x2a", [0x65d0] = "\x05\x5d\x50", + [0x65d1] = "\x05\x5d\x51", [0x65d2] = "\x05\x5d\x52", + [0x65d3] = "\x07\x3a\x5b", [0x65d4] = "\x04\x58\x25", + [0x65d5] = "\x04\x58\x26", [0x65d6] = "\x05\x5d\x54", + [0x65d7] = "\x05\x5d\x53", [0x65d8] = "\x0f\x5c\x2c", + [0x65d9] = "\x07\x3a\x5d", [0x65da] = "\x07\x3a\x5c", + [0x65df] = "\x03\x58\x63", [0x65e0] = "\x07\x41\x77", + [0x65e1] = "\x05\x63\x66", [0x65e2] = "\x05\x63\x63", + [0x65e3] = "\x04\x5c\x72", [0x65e4] = "\x07\x41\x79", + [0x65e5] = "\x05\x5d\x55", [0x65e6] = "\x07\x41\x78", + [0x65e7] = "\x05\x63\x64", [0x65e8] = "\x05\x63\x65", + [0x65e9] = "\x07\x41\x75", [0x65ea] = "\x0f\x60\x38", + [0x65eb] = "\x0f\x60\x39", [0x65ec] = "\x0f\x60\x3a", + [0x65ef] = "\x07\x41\x76", [0x65f1] = "\x0f\x5c\x2b", + [0x65f2] = "\x0f\x63\x47", [0x65f3] = "\x07\x48\x76", + [0x65f4] = "\x05\x69\x22", [0x65f5] = "\x05\x69\x23", + [0x65f6] = "\x07\x48\x78", [0x65f7] = "\x07\x48\x77", + [0x65f8] = "\x0f\x63\x48", [0x65f9] = "\x0f\x63\x49", + [0x65fe] = "\x07\x4f\x39", [0x6600] = "\x0f\x65\x73", + [0x6601] = "\x0f\x65\x74", [0x6602] = "\x0f\x65\x75", + [0x6603] = "\x07\x4f\x38", [0x6604] = "\x07\x4f\x37", + [0x6605] = "\x05\x70\x76", [0x6606] = "\x0f\x68\x30", + [0x6607] = "\x0f\x68\x31", [0x6608] = "\x07\x54\x4d", + [0x6609] = "\x07\x54\x4e", [0x660a] = "\x05\x73\x7e", + [0x660b] = "\x07\x58\x64", [0x660d] = "\x04\x6a\x6d", + [0x660e] = "\x0f\x6a\x6c", [0x660f] = "\x0f\x6b\x5f", + [0x6610] = "\x0f\x6c\x36", [0x6611] = "\x0f\x6c\x50", + [0x6612] = "\x05\x21\x7a", [0x6613] = "\x06\x2d\x5f", + [0x6614] = "\x05\x2b\x30", [0x6615] = "\x06\x43\x50", + [0x6618] = "\x06\x4d\x36", [0x661b] = "\x06\x48\x6a", + [0x661d] = "\x06\x56\x6e", [0x661e] = "\x06\x60\x62", + [0x661f] = "\x06\x60\x61", [0x6620] = "\x07\x27\x31", + [0x6622] = "\x0f\x51\x50", [0x6623] = "\x07\x31\x62", + [0x6628] = "\x07\x4f\x3a", [0x6629] = "\x05\x23\x25", + [0x662a] = "\x05\x23\x23", [0x662b] = "\x06\x2d\x60", + [0x662c] = "\x06\x2d\x61", [0x662d] = "\x06\x25\x48", + [0x662e] = "\x0f\x22\x6c", [0x662f] = "\x0f\x22\x6d", + [0x6632] = "\x05\x23\x24", [0x6633] = "\x05\x23\x22", + [0x6634] = "\x05\x24\x73", [0x6635] = "\x05\x24\x72", + [0x6636] = "\x06\x28\x79", [0x6637] = "\x06\x28\x78", + [0x6638] = "\x06\x28\x77", [0x663a] = "\x06\x28\x76", + [0x663b] = "\x06\x33\x7b", [0x663d] = "\x06\x33\x7a", + [0x663e] = "\x06\x33\x79", [0x663f] = "\x05\x27\x5a", + [0x6640] = "\x05\x27\x5e", [0x6641] = "\x06\x2d\x64", + [0x6642] = "\x04\x2f\x43", [0x6643] = "\x06\x2d\x6d", + [0x6644] = "\x06\x2d\x6e", [0x6645] = "\x06\x2d\x62", + [0x6646] = "\x05\x27\x5d", [0x6647] = "\x06\x2d\x66", + [0x6648] = "\x05\x27\x59", [0x6649] = "\x05\x27\x57", + [0x664a] = "\x06\x2d\x6b", [0x664b] = "\x05\x27\x5b", + [0x664d] = "\x04\x27\x6b", [0x6650] = "\x06\x2d\x68", + [0x6651] = "\x06\x2d\x6f", [0x6652] = "\x0f\x28\x50", + [0x6653] = "\x0f\x28\x51", [0x6654] = "\x0f\x28\x53", + [0x6655] = "\x0f\x28\x54", [0x6656] = "\x06\x2d\x6c", + [0x6657] = "\x04\x26\x64", [0x6658] = "\x06\x2d\x65", + [0x665b] = "\x06\x2d\x67", [0x665c] = "\x05\x27\x5c", + [0x665f] = "\x06\x2d\x6a", [0x6660] = "\x06\x2d\x63", + [0x6661] = "\x06\x3b\x27", [0x6662] = "\x06\x3b\x25", + [0x6667] = "\x04\x2f\x3d", [0x6668] = "\x05\x27\x56", + [0x6669] = "\x06\x3b\x26", [0x666a] = "\x06\x34\x2d", + [0x666b] = "\x04\x2b\x2d", [0x666c] = "\x05\x2b\x34", + [0x666d] = "\x06\x34\x28", [0x666e] = "\x05\x2b\x31", + [0x666f] = "\x05\x2b\x38", [0x6670] = "\x06\x34\x29", + [0x6671] = "\x04\x2b\x2e", [0x6672] = "\x06\x43\x54", + [0x6673] = "\x06\x34\x27", [0x6674] = "\x04\x2b\x2b", + [0x6675] = "\x06\x34\x2b", [0x6676] = "\x04\x2b\x30", + [0x6677] = "\x06\x34\x25", [0x6678] = "\x05\x2b\x36", + [0x6679] = "\x06\x34\x26", [0x667a] = "\x05\x2b\x37", + [0x667b] = "\x05\x2b\x32", [0x667c] = "\x04\x2f\x48", + [0x667f] = "\x05\x2b\x35", [0x6680] = "\x06\x33\x7c", + [0x6681] = "\x06\x34\x21", [0x6682] = "\x06\x34\x22", + [0x6683] = "\x06\x34\x24", [0x6684] = "\x0f\x2d\x2a", + [0x6685] = "\x0f\x2d\x2f", [0x6686] = "\x0f\x37\x67", + [0x6687] = "\x0f\x37\x68", [0x6688] = "\x06\x33\x7e", + [0x6689] = "\x06\x34\x2f", [0x668c] = "\x06\x34\x2c", + [0x668d] = "\x06\x34\x2a", [0x668e] = "\x06\x34\x30", + [0x6691] = "\x06\x34\x2e", [0x6692] = "\x06\x43\x53", + [0x6693] = "\x06\x43\x52", [0x6694] = "\x0f\x2d\x2b", + [0x6698] = "\x06\x43\x55", [0x6699] = "\x06\x43\x56", + [0x669a] = "\x06\x3b\x30", [0x669b] = "\x06\x43\x51", + [0x669c] = "\x0f\x2d\x2d", [0x669d] = "\x05\x2f\x67", + [0x669e] = "\x04\x2f\x3e", [0x669f] = "\x04\x34\x45", + [0x66a0] = "\x04\x2f\x45", [0x66a1] = "\x06\x3b\x32", + [0x66a2] = "\x05\x2f\x6c", [0x66a3] = "\x04\x2f\x44", + [0x66a4] = "\x06\x3b\x2e", [0x66a5] = "\x05\x2f\x6e", + [0x66a6] = "\x06\x3b\x2a", [0x66a7] = "\x05\x2f\x70", + [0x66a8] = "\x05\x3b\x44", [0x66a9] = "\x05\x2f\x6f", + [0x66aa] = "\x06\x3b\x29", [0x66ab] = "\x05\x2f\x66", + [0x66ac] = "\x06\x3b\x2b", [0x66ad] = "\x04\x2f\x40", + [0x66ae] = "\x06\x4d\x3b", [0x66b2] = "\x05\x2f\x69", + [0x66b3] = "\x0f\x2d\x29", [0x66b4] = "\x0f\x32\x28", + [0x66b5] = "\x0f\x32\x29", [0x66b6] = "\x0f\x32\x2d", + [0x66b7] = "\x0f\x3e\x4c", [0x66b8] = "\x05\x2f\x68", + [0x66b9] = "\x05\x2e\x24", [0x66ba] = "\x06\x3b\x2f", + [0x66bb] = "\x06\x3b\x2d", [0x66bd] = "\x06\x3b\x2c", + [0x66c1] = "\x06\x3b\x33", [0x66c2] = "\x06\x4d\x3a", + [0x66c3] = "\x06\x4d\x38", [0x66c4] = "\x06\x4d\x39", + [0x66c5] = "\x06\x4d\x37", [0x66ce] = "\x06\x34\x23", + [0x66cf] = "\x05\x2f\x6b", [0x66d0] = "\x05\x2f\x71", + [0x66d2] = "\x05\x2f\x6a", [0x66d3] = "\x05\x34\x74", + [0x66d4] = "\x06\x43\x5b", [0x66d5] = "\x06\x43\x59", + [0x66d6] = "\x05\x34\x6b", [0x66d7] = "\x04\x34\x4e", + [0x66d8] = "\x05\x34\x6c", [0x66d9] = "\x04\x2f\x42", + [0x66da] = "\x05\x34\x71", [0x66db] = "\x04\x34\x46", + [0x66dc] = "\x04\x34\x55", [0x66dd] = "\x05\x41\x74", + [0x66de] = "\x04\x34\x54", [0x66df] = "\x06\x43\x57", + [0x66e0] = "\x05\x34\x6e", [0x66e1] = "\x06\x43\x5f", + [0x66e3] = "\x04\x34\x49", [0x66e4] = "\x05\x34\x75", + [0x66e5] = "\x05\x34\x76", [0x66e6] = "\x06\x43\x60", + [0x66e7] = "\x06\x43\x5e", [0x66e9] = "\x04\x34\x4f", + [0x66ea] = "\x05\x34\x72", [0x66eb] = "\x06\x43\x61", + [0x66ec] = "\x06\x43\x62", [0x66ed] = "\x0f\x37\x69", + [0x66ee] = "\x0f\x37\x6b", [0x66f3] = "\x06\x43\x5c", + [0x66f4] = "\x06\x43\x5d", [0x66f6] = "\x06\x56\x6f", + [0x66f7] = "\x06\x56\x70", [0x66f9] = "\x06\x56\x71", + [0x6702] = "\x05\x34\x73", [0x6703] = "\x05\x34\x6f", + [0x6704] = "\x05\x34\x70", [0x6706] = "\x06\x4d\x43", + [0x6707] = "\x05\x3b\x48", [0x6708] = "\x06\x4d\x3d", + [0x670a] = "\x05\x3b\x45", [0x670b] = "\x06\x4d\x4b", + [0x670c] = "\x06\x4d\x42", [0x670d] = "\x04\x3a\x3c", + [0x670e] = "\x05\x3b\x4a", [0x670f] = "\x06\x4d\x4f", + [0x6710] = "\x06\x4d\x3c", [0x6711] = "\x06\x60\x65", + [0x6712] = "\x05\x3b\x47", [0x6713] = "\x06\x4d\x50", + [0x6714] = "\x06\x56\x75", [0x6715] = "\x04\x3a\x48", + [0x6716] = "\x05\x3b\x4c", [0x6717] = "\x06\x4d\x55", + [0x6718] = "\x06\x4d\x4e", [0x6719] = "\x06\x4d\x4c", + [0x671a] = "\x06\x4d\x53", [0x671b] = "\x05\x3b\x46", + [0x671c] = "\x05\x48\x75", [0x671f] = "\x06\x4d\x3e", + [0x6720] = "\x06\x4d\x47", [0x6721] = "\x06\x4d\x4a", + [0x6722] = "\x0f\x3e\x41", [0x6723] = "\x0f\x3e\x44", + [0x6724] = "\x0f\x3e\x46", [0x6725] = "\x0f\x3e\x47", + [0x6726] = "\x0f\x3e\x48", [0x6727] = "\x0f\x3e\x49", + [0x6728] = "\x0f\x3e\x4a", [0x6729] = "\x0f\x3e\x4b", + [0x672a] = "\x06\x4d\x44", [0x672c] = "\x06\x4d\x49", + [0x6733] = "\x0f\x3b\x63", [0x6735] = "\x06\x4d\x4d", + [0x6736] = "\x06\x4d\x41", [0x6739] = "\x06\x4d\x52", + [0x673a] = "\x06\x4d\x3f", [0x673b] = "\x06\x4d\x40", + [0x673d] = "\x06\x60\x63", [0x673e] = "\x06\x60\x67", + [0x673f] = "\x06\x60\x64", [0x6741] = "\x0f\x3e\x45", + [0x674f] = "\x05\x3b\x49", [0x6750] = "\x06\x4d\x46", + [0x6751] = "\x05\x34\x6d", [0x6752] = "\x05\x3b\x4b", + [0x6753] = "\x05\x3b\x4e", [0x6754] = "\x05\x3b\x4f", + [0x6755] = "\x06\x4d\x51", [0x6756] = "\x05\x3b\x51", + [0x6757] = "\x06\x4d\x45", [0x6758] = "\x06\x60\x68", + [0x6759] = "\x06\x60\x66", [0x675a] = "\x05\x41\x7d", + [0x675b] = "\x04\x40\x21", [0x675c] = "\x05\x42\x26", + [0x675d] = "\x05\x42\x21", [0x675e] = "\x05\x41\x75", + [0x675f] = "\x05\x41\x79", [0x6760] = "\x05\x42\x27", + [0x6761] = "\x06\x56\x7d", [0x6762] = "\x04\x3f\x7e", + [0x6763] = "\x06\x56\x72", [0x6764] = "\x04\x3a\x46", + [0x6765] = "\x05\x42\x22", [0x6766] = "\x05\x41\x78", + [0x6767] = "\x06\x56\x77", [0x6768] = "\x04\x40\x24", + [0x6769] = "\x06\x56\x79", [0x676a] = "\x04\x40\x22", + [0x676b] = "\x06\x57\x21", [0x676c] = "\x06\x56\x73", + [0x676d] = "\x05\x42\x29", [0x676e] = "\x06\x56\x74", + [0x676f] = "\x06\x56\x78", [0x6770] = "\x05\x42\x23", + [0x6771] = "\x06\x56\x7c", [0x6772] = "\x05\x41\x7b", + [0x6773] = "\x05\x41\x7a", [0x6774] = "\x05\x42\x25", + [0x6775] = "\x05\x42\x24", [0x6776] = "\x06\x56\x7a", + [0x6777] = "\x05\x41\x76", [0x6778] = "\x06\x56\x7e", + [0x677a] = "\x0f\x44\x69", [0x677b] = "\x0f\x44\x6a", + [0x677c] = "\x0f\x44\x6b", [0x677d] = "\x0f\x44\x6c", + [0x677e] = "\x0f\x44\x6d", [0x677f] = "\x0f\x44\x6f", + [0x6780] = "\x0f\x44\x71", [0x6781] = "\x04\x40\x2b", + [0x6784] = "\x06\x57\x23", [0x6785] = "\x06\x57\x22", + [0x6787] = "\x0f\x44\x70", [0x6789] = "\x07\x27\x32", + [0x678b] = "\x07\x27\x33", [0x6795] = "\x06\x56\x7b", + [0x6796] = "\x05\x41\x7e", [0x6797] = "\x05\x41\x7c", + [0x6799] = "\x04\x46\x44", [0x679a] = "\x05\x48\x7b", + [0x679b] = "\x04\x46\x4c", [0x679c] = "\x04\x46\x43", + [0x679d] = "\x05\x49\x23", [0x679e] = "\x06\x60\x6a", + [0x679f] = "\x05\x48\x7a", [0x67a0] = "\x04\x46\x4a", + [0x67a1] = "\x05\x49\x24", [0x67a2] = "\x05\x49\x21", + [0x67a3] = "\x04\x46\x49", [0x67a4] = "\x05\x48\x77", + [0x67a5] = "\x05\x48\x7d", [0x67a6] = "\x04\x46\x3a", + [0x67a7] = "\x04\x46\x4b", [0x67a8] = "\x05\x48\x78", + [0x67a9] = "\x06\x60\x71", [0x67aa] = "\x06\x60\x6c", + [0x67ab] = "\x05\x48\x76", [0x67ac] = "\x06\x60\x6e", + [0x67ad] = "\x05\x48\x79", [0x67af] = "\x06\x60\x6d", + [0x67b0] = "\x05\x48\x7c", [0x67b1] = "\x07\x31\x63", + [0x67b2] = "\x05\x49\x22", [0x67b5] = "\x04\x46\x48", + [0x67b6] = "\x06\x60\x6b", [0x67b7] = "\x0f\x4b\x4d", + [0x67b8] = "\x0f\x4b\x4e", [0x67b9] = "\x0f\x4b\x4f", + [0x67ba] = "\x0f\x4b\x51", [0x67bb] = "\x0f\x4b\x52", + [0x67bc] = "\x0f\x4b\x55", [0x67bd] = "\x0f\x4b\x53", + [0x67c0] = "\x06\x60\x70", [0x67c1] = "\x06\x5d\x5c", + [0x67d4] = "\x05\x41\x77", [0x67d5] = "\x05\x48\x7e", + [0x67d8] = "\x04\x4c\x53", [0x67d9] = "\x05\x4f\x7b", + [0x67db] = "\x07\x27\x34", [0x67dc] = "\x04\x4c\x57", + [0x67dd] = "\x07\x27\x3b", [0x67df] = "\x05\x4f\x7a", + [0x67e0] = "\x04\x4c\x59", [0x67e1] = "\x07\x3a\x60", + [0x67e2] = "\x07\x27\x37", [0x67e3] = "\x05\x4f\x7c", + [0x67e4] = "\x07\x27\x35", [0x67e5] = "\x04\x4c\x5a", + [0x67e6] = "\x07\x3a\x5e", [0x67e7] = "\x05\x4f\x78", + [0x67e9] = "\x07\x27\x38", [0x67ea] = "\x0f\x51\x51", + [0x67eb] = "\x0f\x51\x52", [0x67ec] = "\x0f\x51\x53", + [0x67ed] = "\x0f\x51\x54", [0x67ef] = "\x07\x27\x36", + [0x67f0] = "\x07\x27\x39", [0x67f3] = "\x07\x27\x3a", + [0x67f4] = "\x07\x3a\x5f", [0x6800] = "\x06\x60\x69", + [0x6801] = "\x05\x4f\x79", [0x6802] = "\x0f\x5c\x35", + [0x6803] = "\x07\x31\x6c", [0x6804] = "\x05\x57\x37", + [0x6805] = "\x05\x57\x32", [0x6806] = "\x04\x52\x68", + [0x6807] = "\x04\x52\x5d", [0x6808] = "\x05\x57\x31", + [0x6809] = "\x04\x52\x5f", [0x680a] = "\x07\x31\x67", + [0x680b] = "\x07\x31\x6e", [0x680c] = "\x05\x57\x35", + [0x680d] = "\x05\x57\x36", [0x680e] = "\x04\x52\x65", + [0x680f] = "\x05\x4f\x7d", [0x6810] = "\x05\x57\x34", + [0x6811] = "\x07\x31\x65", [0x6812] = "\x07\x31\x6d", + [0x6813] = "\x05\x57\x39", [0x6814] = "\x07\x31\x6a", + [0x6815] = "\x05\x69\x24", [0x6816] = "\x04\x52\x60", + [0x6817] = "\x07\x31\x6f", [0x6819] = "\x0f\x57\x31", + [0x681a] = "\x0f\x57\x33", [0x681c] = "\x0f\x57\x32", + [0x681e] = "\x07\x27\x3c", [0x681f] = "\x07\x31\x68", + [0x6820] = "\x07\x31\x69", [0x6824] = "\x07\x31\x64", + [0x6825] = "\x07\x31\x66", [0x6828] = "\x07\x31\x6b", + [0x6829] = "\x07\x41\x7a", [0x682b] = "\x07\x48\x79", + [0x682c] = "\x07\x41\x7b", [0x6837] = "\x05\x57\x3a", + [0x6838] = "\x05\x57\x30", [0x6839] = "\x05\x57\x3b", + [0x683a] = "\x05\x57\x38", [0x683b] = "\x05\x57\x33", + [0x683c] = "\x07\x42\x21", [0x683e] = "\x05\x5d\x5a", + [0x683f] = "\x05\x5d\x59", [0x6840] = "\x07\x3a\x62", + [0x6841] = "\x04\x58\x2e", [0x6842] = "\x04\x58\x2a", + [0x6843] = "\x04\x58\x29", [0x6845] = "\x05\x5d\x58", + [0x6846] = "\x05\x5d\x56", [0x6847] = "\x04\x60\x71", + [0x6848] = "\x07\x48\x7b", [0x684c] = "\x05\x5d\x5e", + [0x684d] = "\x07\x3a\x65", [0x684e] = "\x0f\x5c\x2e", + [0x684f] = "\x0f\x5c\x2f", [0x6850] = "\x0f\x5c\x31", + [0x6851] = "\x0f\x5c\x32", [0x6852] = "\x0f\x5c\x33", + [0x6853] = "\x0f\x5c\x34", [0x6854] = "\x0f\x5c\x36", + [0x6855] = "\x0f\x5c\x30", [0x6857] = "\x07\x37\x7e", + [0x6858] = "\x07\x3a\x63", [0x685b] = "\x07\x48\x7a", + [0x685c] = "\x07\x48\x7d", [0x6868] = "\x05\x5d\x5d", + [0x6869] = "\x07\x3a\x61", [0x686a] = "\x05\x5d\x5c", + [0x686b] = "\x05\x5d\x57", [0x686c] = "\x07\x3a\x64", + [0x686d] = "\x07\x48\x7e", [0x6870] = "\x04\x5c\x75", + [0x6871] = "\x05\x63\x6a", [0x6872] = "\x05\x63\x67", + [0x6874] = "\x05\x63\x69", [0x6875] = "\x05\x63\x6c", + [0x6876] = "\x07\x41\x7c", [0x6877] = "\x05\x63\x6e", + [0x6878] = "\x07\x41\x7e", [0x6879] = "\x05\x63\x6b", + [0x687a] = "\x07\x42\x23", [0x687b] = "\x05\x63\x68", + [0x687c] = "\x05\x6d\x2a", [0x687d] = "\x05\x63\x6f", + [0x687e] = "\x0f\x60\x3b", [0x687f] = "\x0f\x60\x3c", + [0x6880] = "\x0f\x60\x3d", [0x6881] = "\x0f\x60\x40", + [0x6882] = "\x0f\x60\x41", [0x6883] = "\x07\x41\x7d", + [0x6885] = "\x07\x42\x6d", [0x6888] = "\x04\x5c\x73", + [0x688a] = "\x04\x60\x72", [0x688c] = "\x07\x49\x23", + [0x688d] = "\x07\x49\x29", [0x688e] = "\x05\x69\x25", + [0x688f] = "\x05\x69\x26", [0x6890] = "\x05\x63\x6d", + [0x6891] = "\x07\x49\x24", [0x6894] = "\x0f\x63\x4a", + [0x6895] = "\x07\x49\x28", [0x6896] = "\x07\x49\x2a", + [0x6897] = "\x0f\x63\x4c", [0x6898] = "\x0f\x63\x4d", + [0x6899] = "\x07\x49\x22", [0x689a] = "\x07\x49\x26", + [0x689b] = "\x07\x49\x25", [0x689c] = "\x07\x49\x27", + [0x689d] = "\x07\x49\x21", [0x68a4] = "\x0f\x63\x4b", + [0x68a5] = "\x07\x49\x2b", [0x68a6] = "\x07\x4f\x3d", + [0x68a7] = "\x05\x6d\x2e", [0x68a8] = "\x05\x6d\x2d", + [0x68a9] = "\x04\x64\x2b", [0x68aa] = "\x04\x64\x29", + [0x68ab] = "\x05\x6d\x2b", [0x68ac] = "\x0f\x65\x76", + [0x68ad] = "\x07\x4f\x3c", [0x68af] = "\x07\x4f\x3b", + [0x68b8] = "\x04\x67\x26", [0x68b9] = "\x07\x54\x4f", + [0x68ba] = "\x05\x70\x77", [0x68bb] = "\x07\x5c\x40", + [0x68bc] = "\x07\x55\x3a", [0x68bd] = "\x07\x5c\x3f", + [0x68bf] = "\x04\x69\x31", [0x68c0] = "\x04\x69\x2f", + [0x68c1] = "\x07\x58\x65", [0x68c5] = "\x0f\x68\x33", + [0x68c6] = "\x07\x5c\x41", [0x68c7] = "\x05\x76\x3d", + [0x68c8] = "\x07\x5c\x43", [0x68c9] = "\x07\x5c\x45", + [0x68ca] = "\x07\x5c\x46", [0x68cb] = "\x05\x76\x3c", + [0x68cc] = "\x07\x5c\x42", [0x68cd] = "\x04\x6a\x6e", + [0x68cf] = "\x07\x5c\x47", [0x68d0] = "\x07\x5c\x48", + [0x68d1] = "\x07\x5f\x3d", [0x68d2] = "\x05\x77\x7d", + [0x68d3] = "\x07\x5f\x3e", [0x68d6] = "\x05\x79\x3c", + [0x68da] = "\x07\x64\x57", [0x68db] = "\x05\x7a\x6f", + [0x68dc] = "\x05\x7b\x45", [0x68dd] = "\x06\x28\x7c", + [0x68de] = "\x04\x24\x71", [0x68df] = "\x0f\x2a\x49", + [0x68e0] = "\x06\x3b\x34", [0x68e1] = "\x0f\x32\x2f", + [0x68e4] = "\x06\x4d\x56", [0x68e9] = "\x06\x4d\x57", + [0x68eb] = "\x0f\x4b\x58", [0x68ec] = "\x0f\x4b\x59", + [0x68ed] = "\x0f\x51\x56", [0x68ee] = "\x06\x60\x73", + [0x68f1] = "\x0f\x5c\x37", [0x68f2] = "\x07\x42\x25", + [0x68f3] = "\x0f\x60\x42", [0x68f4] = "\x05\x70\x79", + [0x68f5] = "\x0f\x68\x34", [0x68f6] = "\x0f\x69\x67", + [0x68f7] = "\x07\x65\x3d", [0x68f8] = "\x05\x7c\x2c", + [0x68f9] = "\x06\x25\x4a", [0x68fa] = "\x06\x28\x7e", + [0x68fb] = "\x04\x24\x72", [0x68fc] = "\x06\x28\x7d", + [0x68fd] = "\x06\x2d\x70", [0x68fe] = "\x05\x2b\x3a", + [0x68ff] = "\x06\x34\x32", [0x6900] = "\x0f\x2d\x30", + [0x6902] = "\x05\x2f\x72", [0x6903] = "\x06\x3b\x36", + [0x6904] = "\x04\x2f\x49", [0x6905] = "\x0f\x32\x30", + [0x6906] = "\x06\x3b\x37", [0x690a] = "\x06\x3b\x35", + [0x690c] = "\x06\x43\x66", [0x690d] = "\x06\x43\x65", + [0x690e] = "\x0f\x37\x6d", [0x690f] = "\x0f\x37\x6e", + [0x6910] = "\x06\x4d\x59", [0x6912] = "\x06\x4d\x5a", + [0x6914] = "\x06\x57\x24", [0x6915] = "\x05\x49\x25", + [0x6916] = "\x0f\x4b\x5a", [0x6918] = "\x04\x4c\x60", + [0x6919] = "\x04\x4c\x61", [0x691a] = "\x05\x4f\x7e", + [0x691b] = "\x0f\x51\x57", [0x691d] = "\x07\x27\x3d", + [0x691e] = "\x04\x52\x69", [0x691f] = "\x05\x57\x3c", + [0x6921] = "\x07\x3a\x66", [0x6922] = "\x05\x5d\x60", + [0x6923] = "\x05\x5d\x5f", [0x6924] = "\x0f\x5c\x38", + [0x6925] = "\x0f\x60\x43", [0x6926] = "\x05\x69\x27", + [0x6927] = "\x04\x60\x75", [0x6928] = "\x05\x6d\x31", + [0x6929] = "\x0f\x63\x4e", [0x692a] = "\x07\x49\x2c", + [0x692b] = "\x05\x6d\x2f", [0x692c] = "\x05\x6d\x30", + [0x6932] = "\x07\x62\x51", [0x6933] = "\x06\x29\x21", + [0x6934] = "\x06\x2d\x71", [0x6935] = "\x06\x2d\x72", + [0x6936] = "\x06\x3b\x3a", [0x6937] = "\x0f\x2d\x31", + [0x6939] = "\x06\x3b\x38", [0x693a] = "\x06\x3b\x39", + [0x693b] = "\x05\x34\x77", [0x693c] = "\x04\x34\x56", + [0x693f] = "\x06\x4d\x5b", [0x6941] = "\x05\x42\x2a", + [0x6942] = "\x05\x49\x26", [0x6944] = "\x0f\x4b\x5b", + [0x6945] = "\x05\x50\x21", [0x6946] = "\x07\x27\x3e", + [0x6947] = "\x0f\x51\x58", [0x6948] = "\x05\x50\x22", + [0x6949] = "\x07\x31\x71", [0x694a] = "\x04\x52\x6a", + [0x694b] = "\x05\x57\x3d", [0x694c] = "\x0f\x57\x34", + [0x694e] = "\x04\x58\x2f", [0x694f] = "\x05\x63\x70", + [0x6950] = "\x05\x63\x71", [0x6951] = "\x04\x24\x74", + [0x6952] = "\x06\x25\x4b", [0x6953] = "\x06\x23\x64", + [0x6954] = "\x06\x2d\x73", [0x6955] = "\x06\x2d\x74", + [0x6957] = "\x0f\x2d\x32", [0x6958] = "\x04\x2f\x4b", + [0x6959] = "\x06\x34\x33", [0x695b] = "\x06\x3b\x3b", + [0x695d] = "\x06\x3b\x41", [0x695e] = "\x06\x3b\x3d", + [0x695f] = "\x06\x3b\x3c", [0x6960] = "\x04\x2f\x4c", + [0x6961] = "\x06\x3b\x3f", [0x6962] = "\x06\x3b\x40", + [0x6965] = "\x06\x43\x69", [0x6966] = "\x05\x34\x78", + [0x6967] = "\x06\x3b\x3e", [0x6968] = "\x06\x43\x68", + [0x6969] = "\x06\x43\x6b", [0x696b] = "\x06\x43\x6a", + [0x696d] = "\x05\x3b\x52", [0x696e] = "\x06\x4d\x5c", + [0x6972] = "\x05\x3b\x53", [0x6973] = "\x05\x49\x27", + [0x6974] = "\x06\x57\x28", [0x6975] = "\x06\x57\x27", + [0x6976] = "\x06\x57\x25", [0x6977] = "\x06\x60\x74", + [0x6978] = "\x06\x60\x7a", [0x6979] = "\x06\x60\x75", + [0x697a] = "\x06\x60\x76", [0x697b] = "\x05\x50\x23", + [0x697c] = "\x07\x27\x3f", [0x697d] = "\x06\x60\x77", + [0x697e] = "\x06\x60\x7b", [0x697f] = "\x06\x60\x78", + [0x6980] = "\x07\x27\x40", [0x6981] = "\x07\x27\x41", + [0x6982] = "\x07\x27\x42", [0x6983] = "\x06\x60\x79", + [0x6984] = "\x05\x49\x28", [0x6985] = "\x05\x50\x24", + [0x6986] = "\x05\x50\x25", [0x6987] = "\x07\x27\x43", + [0x6988] = "\x07\x27\x44", [0x6989] = "\x07\x31\x72", + [0x698a] = "\x07\x27\x45", [0x698c] = "\x07\x27\x46", + [0x698e] = "\x0f\x57\x35", [0x698f] = "\x07\x31\x74", + [0x6990] = "\x07\x31\x73", [0x6991] = "\x05\x5d\x62", + [0x6993] = "\x07\x31\x77", [0x6995] = "\x07\x31\x76", + [0x6996] = "\x07\x31\x75", [0x6997] = "\x05\x5d\x61", + [0x6998] = "\x05\x5d\x64", [0x6999] = "\x07\x3a\x67", + [0x699a] = "\x07\x42\x28", [0x699b] = "\x07\x42\x27", + [0x699c] = "\x05\x5d\x65", [0x699d] = "\x04\x5c\x77", + [0x699e] = "\x07\x42\x26", [0x699f] = "\x0f\x60\x44", + [0x69a0] = "\x0f\x60\x45", [0x69a1] = "\x07\x49\x2d", + [0x69a2] = "\x05\x63\x73", [0x69a3] = "\x05\x63\x72", + [0x69a4] = "\x07\x49\x2e", [0x69a5] = "\x07\x4f\x3f", + [0x69a7] = "\x05\x69\x28", [0x69a9] = "\x05\x6d\x33", + [0x69aa] = "\x05\x6d\x34", [0x69ab] = "\x05\x6d\x35", + [0x69ac] = "\x07\x4f\x3e", [0x69ad] = "\x07\x49\x2f", + [0x69ae] = "\x0f\x63\x4f", [0x69af] = "\x05\x69\x29", + [0x69b0] = "\x07\x4f\x40", [0x69b1] = "\x07\x4f\x41", + [0x69b2] = "\x05\x70\x7a", [0x69b3] = "\x0f\x65\x78", + [0x69b4] = "\x0f\x68\x35", [0x69b5] = "\x0f\x68\x37", + [0x69b6] = "\x07\x58\x66", [0x69b8] = "\x0f\x68\x36", + [0x69b9] = "\x07\x58\x67", [0x69ba] = "\x07\x5c\x49", + [0x69bb] = "\x05\x77\x7e", [0x69bc] = "\x07\x61\x37", + [0x69bd] = "\x05\x79\x3d", [0x69be] = "\x05\x79\x3f", + [0x69bf] = "\x05\x79\x3e", [0x69c0] = "\x0f\x6c\x6a", + [0x69c1] = "\x07\x65\x3e", [0x69c2] = "\x07\x65\x3f", + [0x69c4] = "\x07\x66\x53", [0x69c5] = "\x05\x7c\x50", + [0x69c6] = "\x0f\x25\x2b", [0x69c7] = "\x06\x34\x34", + [0x69c8] = "\x04\x2f\x4e", [0x69c9] = "\x04\x2f\x4d", + [0x69ca] = "\x06\x3b\x42", [0x69cc] = "\x06\x3b\x43", + [0x69ce] = "\x06\x3b\x44", [0x69cf] = "\x05\x2f\x73", + [0x69d0] = "\x05\x2f\x74", [0x69d1] = "\x06\x43\x6c", + [0x69d3] = "\x06\x43\x6d", [0x69d4] = "\x06\x41\x7d", + [0x69d5] = "\x06\x4d\x60", [0x69d6] = "\x06\x4d\x5f", + [0x69d7] = "\x06\x4d\x61", [0x69da] = "\x0f\x3e\x50", + [0x69dd] = "\x05\x49\x29", [0x69df] = "\x04\x46\x4d", + [0x69e0] = "\x05\x45\x53", [0x69e1] = "\x04\x46\x4e", + [0x69e2] = "\x06\x57\x29", [0x69e3] = "\x0f\x4b\x5c", + [0x69e4] = "\x06\x60\x7c", [0x69e5] = "\x06\x60\x7e", + [0x69e6] = "\x06\x60\x7d", [0x69e7] = "\x07\x27\x47", + [0x69e8] = "\x0f\x51\x59", [0x69ea] = "\x07\x27\x49", + [0x69eb] = "\x07\x27\x48", [0x69ed] = "\x07\x31\x78", + [0x69ee] = "\x05\x57\x3e", [0x69f0] = "\x07\x31\x79", + [0x69f1] = "\x07\x3a\x68", [0x69f3] = "\x0f\x60\x46", + [0x69f4] = "\x05\x63\x74", [0x69f5] = "\x07\x42\x2a", + [0x69f6] = "\x07\x42\x29", [0x69f8] = "\x05\x6d\x36", + [0x69f9] = "\x05\x70\x7b", [0x69fb] = "\x07\x5c\x4a", + [0x69fc] = "\x05\x76\x3e", [0x69fe] = "\x05\x50\x26", + [0x69ff] = "\x05\x50\x27", [0x6a00] = "\x0f\x60\x47", + [0x6a01] = "\x07\x4f\x42", [0x6a03] = "\x07\x5c\x4b", + [0x6a04] = "\x07\x5f\x3f", [0x6a05] = "\x07\x61\x39", + [0x6a06] = "\x05\x7a\x70", [0x6a07] = "\x05\x24\x74", + [0x6a08] = "\x04\x27\x71", [0x6a09] = "\x04\x27\x70", + [0x6a0a] = "\x06\x2d\x77", [0x6a0b] = "\x06\x2d\x76", + [0x6a0c] = "\x06\x2d\x75", [0x6a0d] = "\x05\x27\x5f", + [0x6a0e] = "\x04\x2b\x31", [0x6a0f] = "\x04\x2b\x35", + [0x6a10] = "\x04\x2b\x34", [0x6a12] = "\x06\x34\x35", + [0x6a13] = "\x06\x34\x37", [0x6a14] = "\x06\x34\x36", + [0x6a15] = "\x06\x3b\x4a", [0x6a16] = "\x05\x2f\x75", + [0x6a17] = "\x06\x3b\x49", [0x6a18] = "\x06\x3b\x45", + [0x6a19] = "\x05\x2f\x76", [0x6a1a] = "\x04\x2f\x52", + [0x6a1c] = "\x04\x2f\x51", [0x6a1d] = "\x06\x3b\x46", + [0x6a1f] = "\x06\x3b\x47", [0x6a20] = "\x06\x3b\x48", + [0x6a21] = "\x05\x34\x7a", [0x6a22] = "\x04\x34\x59", + [0x6a23] = "\x04\x34\x5b", [0x6a24] = "\x06\x43\x72", + [0x6a26] = "\x05\x34\x7b", [0x6a27] = "\x06\x43\x6e", + [0x6a28] = "\x06\x43\x6f", [0x6a2a] = "\x0f\x37\x71", + [0x6a2c] = "\x05\x34\x79", [0x6a2d] = "\x0f\x37\x70", + [0x6a2e] = "\x0f\x37\x72", [0x6a2f] = "\x05\x3b\x54", + [0x6a30] = "\x06\x4d\x65", [0x6a31] = "\x06\x4d\x64", + [0x6a32] = "\x04\x34\x5a", [0x6a34] = "\x04\x3a\x52", + [0x6a35] = "\x04\x3a\x50", [0x6a36] = "\x04\x3a\x51", + [0x6a37] = "\x04\x3a\x53", [0x6a3a] = "\x06\x4d\x66", + [0x6a3c] = "\x05\x42\x2b", [0x6a3d] = "\x06\x57\x2c", + [0x6a3e] = "\x05\x42\x2c", [0x6a3f] = "\x06\x57\x2a", + [0x6a43] = "\x0f\x44\x72", [0x6a44] = "\x06\x57\x2b", + [0x6a47] = "\x06\x57\x2d", [0x6a48] = "\x06\x57\x2e", + [0x6a49] = "\x05\x42\x2e", [0x6a4a] = "\x06\x61\x27", + [0x6a4b] = "\x05\x49\x2d", [0x6a4c] = "\x05\x49\x2b", + [0x6a4d] = "\x04\x46\x52", [0x6a4e] = "\x06\x61\x22", + [0x6a4f] = "\x06\x61\x26", [0x6a53] = "\x0f\x4b\x5e", + [0x6a54] = "\x0f\x4b\x5f", [0x6a58] = "\x0f\x4b\x5d", + [0x6a59] = "\x06\x61\x23", [0x6a5c] = "\x05\x49\x2a", + [0x6a5d] = "\x05\x50\x2f", [0x6a5e] = "\x04\x4c\x67", + [0x6a5f] = "\x04\x4c\x66", [0x6a60] = "\x05\x50\x2e", + [0x6a61] = "\x05\x50\x2b", [0x6a62] = "\x05\x50\x2c", + [0x6a63] = "\x05\x50\x30", [0x6a64] = "\x05\x50\x28", + [0x6a65] = "\x07\x27\x4f", [0x6a66] = "\x07\x27\x4d", + [0x6a67] = "\x05\x50\x31", [0x6a68] = "\x07\x27\x4a", + [0x6a69] = "\x07\x27\x4c", [0x6a6a] = "\x07\x27\x4e", + [0x6a6b] = "\x07\x27\x4b", [0x6a6c] = "\x05\x50\x2d", + [0x6a71] = "\x05\x50\x29", [0x6a72] = "\x05\x50\x2a", + [0x6a74] = "\x05\x57\x42", [0x6a75] = "\x05\x57\x3f", + [0x6a76] = "\x05\x57\x43", [0x6a77] = "\x07\x31\x7c", + [0x6a78] = "\x05\x57\x40", [0x6a79] = "\x07\x32\x21", + [0x6a7a] = "\x07\x31\x7d", [0x6a7b] = "\x07\x32\x23", + [0x6a7c] = "\x05\x57\x41", [0x6a7d] = "\x07\x32\x22", + [0x6a7e] = "\x0f\x57\x36", [0x6a84] = "\x07\x31\x7e", + [0x6a85] = "\x07\x31\x7b", [0x6a86] = "\x07\x3a\x6a", + [0x6a87] = "\x04\x58\x31", [0x6a88] = "\x05\x5d\x6c", + [0x6a89] = "\x05\x5d\x66", [0x6a8a] = "\x05\x5d\x69", + [0x6a8b] = "\x05\x5d\x68", [0x6a8d] = "\x05\x5d\x6a", + [0x6a8e] = "\x05\x5d\x6b", [0x6a91] = "\x04\x5c\x79", + [0x6a92] = "\x05\x63\x7b", [0x6a93] = "\x07\x42\x2c", + [0x6a94] = "\x05\x63\x75", [0x6a95] = "\x05\x63\x7a", + [0x6a96] = "\x05\x63\x7d", [0x6a97] = "\x05\x63\x79", + [0x6a98] = "\x04\x5c\x7a", [0x6a99] = "\x04\x5c\x7b", + [0x6a9a] = "\x05\x63\x76", [0x6a9b] = "\x05\x63\x77", + [0x6a9c] = "\x05\x63\x7c", [0x6a9d] = "\x04\x5c\x78", + [0x6aa4] = "\x07\x42\x2d", [0x6aa5] = "\x07\x42\x2b", + [0x6aa7] = "\x05\x63\x78", [0x6aa9] = "\x07\x49\x30", + [0x6aaa] = "\x05\x69\x2d", [0x6aab] = "\x05\x69\x2c", + [0x6aac] = "\x05\x69\x2b", [0x6aad] = "\x05\x69\x2a", + [0x6aae] = "\x07\x49\x31", [0x6aaf] = "\x0f\x63\x50", + [0x6ab0] = "\x07\x49\x32", [0x6ab1] = "\x05\x6d\x37", + [0x6ab2] = "\x07\x4f\x43", [0x6ab6] = "\x05\x70\x7d", + [0x6ab7] = "\x05\x70\x7c", [0x6ab8] = "\x07\x54\x52", + [0x6abd] = "\x05\x74\x21", [0x6abe] = "\x05\x74\x22", + [0x6abf] = "\x04\x69\x32", [0x6ac0] = "\x07\x58\x68", + [0x6ac1] = "\x07\x54\x50", [0x6ac2] = "\x07\x54\x51", + [0x6ac3] = "\x04\x6a\x6f", [0x6ac4] = "\x07\x5c\x4c", + [0x6ac5] = "\x07\x61\x3b", [0x6ac6] = "\x07\x61\x3a", + [0x6ac7] = "\x07\x62\x52", [0x6ac8] = "\x05\x7a\x71", + [0x6aca] = "\x04\x6e\x4f", [0x6acb] = "\x06\x34\x38", + [0x6acc] = "\x0f\x37\x73", [0x6ace] = "\x05\x3b\x3f", + [0x6acf] = "\x0f\x3e\x51", [0x6ad0] = "\x0f\x51\x5a", + [0x6ad1] = "\x0f\x5c\x39", [0x6ad2] = "\x07\x4f\x44", + [0x6ad4] = "\x05\x34\x7c", [0x6ad5] = "\x05\x34\x7d", + [0x6ad7] = "\x06\x43\x73", [0x6ad9] = "\x05\x34\x7e", + [0x6ada] = "\x0f\x3e\x52", [0x6adb] = "\x06\x57\x2f", + [0x6adc] = "\x06\x57\x30", [0x6add] = "\x06\x57\x31", + [0x6ade] = "\x06\x61\x29", [0x6ae0] = "\x0f\x4b\x60", + [0x6ae2] = "\x06\x61\x2a", [0x6ae3] = "\x06\x61\x28", + [0x6ae4] = "\x07\x27\x51", [0x6ae5] = "\x07\x27\x50", + [0x6ae6] = "\x07\x27\x52", [0x6ae7] = "\x0f\x51\x5b", + [0x6ae8] = "\x0f\x51\x5c", [0x6ae9] = "\x0f\x51\x5d", + [0x6aea] = "\x05\x57\x44", [0x6aeb] = "\x05\x57\x45", + [0x6aec] = "\x07\x32\x25", [0x6aed] = "\x07\x32\x24", + [0x6aef] = "\x05\x6d\x39", [0x6af0] = "\x05\x6d\x38", + [0x6af1] = "\x07\x4f\x45", [0x6af2] = "\x0f\x6c\x37", + [0x6af3] = "\x05\x21\x7b", [0x6af4] = "\x06\x23\x38", + [0x6af6] = "\x04\x23\x2e", [0x6af7] = "\x06\x25\x50", + [0x6af8] = "\x06\x25\x51", [0x6af9] = "\x06\x2d\x78", + [0x6afa] = "\x06\x25\x4e", [0x6afb] = "\x05\x23\x26", + [0x6afc] = "\x06\x25\x4d", [0x6afd] = "\x0f\x22\x6f", + [0x6afe] = "\x0f\x22\x70", [0x6aff] = "\x0f\x22\x6e", + [0x6b00] = "\x06\x25\x4c", [0x6b01] = "\x04\x24\x77", + [0x6b02] = "\x04\x24\x78", [0x6b03] = "\x04\x24\x7c", + [0x6b04] = "\x06\x29\x22", [0x6b05] = "\x04\x24\x7a", + [0x6b06] = "\x06\x29\x25", [0x6b07] = "\x06\x29\x23", + [0x6b08] = "\x06\x29\x24", [0x6b09] = "\x06\x29\x26", + [0x6b0b] = "\x0f\x25\x2c", [0x6b0c] = "\x0f\x25\x2d", + [0x6b0d] = "\x0f\x25\x2e", [0x6b0e] = "\x0f\x25\x2f", + [0x6b0f] = "\x0f\x25\x30", [0x6b10] = "\x0f\x25\x31", + [0x6b13] = "\x06\x2d\x7b", [0x6b14] = "\x04\x27\x7c", + [0x6b15] = "\x04\x27\x77", [0x6b16] = "\x04\x27\x79", + [0x6b17] = "\x05\x27\x62", [0x6b18] = "\x04\x27\x7d", + [0x6b19] = "\x04\x27\x78", [0x6b1a] = "\x04\x27\x75", + [0x6b1b] = "\x05\x27\x60", [0x6b1c] = "\x06\x2d\x7c", + [0x6b1d] = "\x05\x27\x61", [0x6b1e] = "\x04\x27\x74", + [0x6b1f] = "\x06\x3b\x4b", [0x6b20] = "\x06\x27\x4c", + [0x6b21] = "\x06\x2e\x21", [0x6b22] = "\x05\x27\x64", + [0x6b23] = "\x04\x27\x76", [0x6b24] = "\x06\x2d\x7a", + [0x6b25] = "\x06\x2d\x7e", [0x6b26] = "\x06\x3b\x4d", + [0x6b27] = "\x06\x3b\x4c", [0x6b29] = "\x0f\x28\x57", + [0x6b2a] = "\x0f\x28\x58", [0x6b2b] = "\x0f\x28\x59", + [0x6b2c] = "\x0f\x28\x5a", [0x6b2d] = "\x0f\x28\x5b", + [0x6b2e] = "\x0f\x28\x5d", [0x6b2f] = "\x0f\x28\x5e", + [0x6b30] = "\x0f\x28\x5f", [0x6b31] = "\x0f\x28\x60", + [0x6b32] = "\x0f\x28\x61", [0x6b33] = "\x0f\x28\x62", + [0x6b34] = "\x0f\x28\x64", [0x6b35] = "\x06\x2d\x79", + [0x6b37] = "\x04\x2b\x3b", [0x6b38] = "\x04\x2b\x37", + [0x6b39] = "\x04\x2b\x38", [0x6b3a] = "\x04\x2b\x39", + [0x6b3b] = "\x05\x2b\x3f", [0x6b3c] = "\x06\x34\x43", + [0x6b3d] = "\x06\x34\x3b", [0x6b3e] = "\x04\x2b\x3c", + [0x6b3f] = "\x06\x34\x41", [0x6b40] = "\x06\x34\x3d", + [0x6b41] = "\x05\x2b\x3d", [0x6b42] = "\x06\x34\x39", + [0x6b43] = "\x06\x34\x40", [0x6b44] = "\x06\x34\x3e", + [0x6b45] = "\x06\x34\x42", [0x6b46] = "\x06\x34\x45", + [0x6b47] = "\x06\x34\x46", [0x6b48] = "\x05\x2b\x3b", + [0x6b49] = "\x05\x2b\x3e", [0x6b4b] = "\x05\x2b\x3c", + [0x6b54] = "\x0f\x2d\x33", [0x6b55] = "\x0f\x2d\x35", + [0x6b56] = "\x0f\x2d\x37", [0x6b57] = "\x0f\x2d\x38", + [0x6b58] = "\x0f\x2d\x39", [0x6b59] = "\x0f\x2d\x3a", + [0x6b5a] = "\x0f\x2d\x3b", [0x6b5b] = "\x0f\x2d\x3c", + [0x6b5c] = "\x0f\x2d\x36", [0x6b5d] = "\x06\x33\x3e", + [0x6b62] = "\x06\x34\x3f", [0x6b68] = "\x0f\x2d\x34", + [0x6b69] = "\x06\x2d\x7d", [0x6b6b] = "\x06\x4d\x68", + [0x6b6c] = "\x0f\x2a\x52", [0x6b6d] = "\x05\x2f\x7c", + [0x6b6e] = "\x04\x2f\x56", [0x6b6f] = "\x04\x2f\x57", + [0x6b70] = "\x04\x2f\x62", [0x6b71] = "\x05\x2f\x78", + [0x6b72] = "\x05\x2f\x7a", [0x6b73] = "\x05\x2f\x7e", + [0x6b74] = "\x04\x2f\x54", [0x6b75] = "\x05\x2f\x77", + [0x6b76] = "\x05\x30\x23", [0x6b77] = "\x04\x2f\x5b", + [0x6b78] = "\x05\x30\x27", [0x6b79] = "\x04\x2f\x58", + [0x6b7a] = "\x04\x2f\x65", [0x6b7b] = "\x05\x30\x24", + [0x6b7c] = "\x04\x2f\x60", [0x6b7d] = "\x06\x3b\x5e", + [0x6b7e] = "\x06\x3b\x5f", [0x6b7f] = "\x05\x30\x25", + [0x6b80] = "\x06\x3b\x61", [0x6b81] = "\x05\x30\x22", + [0x6b82] = "\x04\x2f\x66", [0x6b83] = "\x06\x3b\x59", + [0x6b84] = "\x06\x3b\x58", [0x6b85] = "\x06\x4d\x67", + [0x6b86] = "\x06\x44\x22", [0x6b87] = "\x06\x3b\x55", + [0x6b88] = "\x05\x2f\x7d", [0x6b89] = "\x06\x3b\x54", + [0x6b8a] = "\x06\x3b\x51", [0x6b8b] = "\x06\x3b\x4f", + [0x6b8c] = "\x06\x3b\x5a", [0x6b8d] = "\x06\x3b\x5c", + [0x6b8e] = "\x05\x2f\x7b", [0x6b8f] = "\x06\x3b\x57", + [0x6b90] = "\x05\x30\x26", [0x6b91] = "\x05\x2f\x79", + [0x6b92] = "\x06\x3b\x53", [0x6b93] = "\x06\x3b\x5b", + [0x6b98] = "\x06\x3b\x5d", [0x6b99] = "\x06\x3b\x62", + [0x6b9a] = "\x0f\x32\x33", [0x6b9b] = "\x0f\x32\x35", + [0x6b9c] = "\x0f\x32\x36", [0x6b9d] = "\x0f\x32\x37", + [0x6b9e] = "\x0f\x32\x38", [0x6b9f] = "\x0f\x32\x39", + [0x6ba0] = "\x0f\x32\x3b", [0x6ba1] = "\x0f\x32\x3c", + [0x6ba2] = "\x0f\x32\x3d", [0x6ba3] = "\x0f\x32\x3f", + [0x6ba4] = "\x0f\x32\x40", [0x6ba5] = "\x0f\x32\x42", + [0x6ba6] = "\x0f\x32\x43", [0x6ba7] = "\x0f\x32\x44", + [0x6ba8] = "\x0f\x32\x45", [0x6ba9] = "\x0f\x32\x47", + [0x6baa] = "\x0f\x32\x48", [0x6bab] = "\x0f\x32\x49", + [0x6bac] = "\x0f\x32\x4a", [0x6bad] = "\x0f\x32\x4b", + [0x6bae] = "\x06\x3b\x50", [0x6baf] = "\x0f\x32\x46", + [0x6bb3] = "\x0f\x32\x4c", [0x6bb5] = "\x0f\x32\x3e", + [0x6bb7] = "\x05\x35\x2b", [0x6bb8] = "\x05\x35\x2e", + [0x6bb9] = "\x05\x35\x27", [0x6bba] = "\x04\x34\x70", + [0x6bbb] = "\x05\x35\x2c", [0x6bbc] = "\x04\x34\x61", + [0x6bbd] = "\x04\x34\x6e", [0x6bbe] = "\x04\x34\x68", + [0x6bbf] = "\x06\x44\x32", [0x6bc0] = "\x04\x34\x72", + [0x6bc1] = "\x04\x34\x75", [0x6bc2] = "\x06\x44\x26", + [0x6bc3] = "\x06\x43\x7b", [0x6bc4] = "\x06\x44\x23", + [0x6bc5] = "\x05\x35\x23", [0x6bc6] = "\x06\x43\x79", + [0x6bc7] = "\x06\x43\x75", [0x6bc8] = "\x04\x34\x60", + [0x6bc9] = "\x05\x35\x32", [0x6bca] = "\x06\x43\x74", + [0x6bcb] = "\x06\x44\x21", [0x6bcc] = "\x06\x44\x38", + [0x6bcd] = "\x04\x34\x64", [0x6bce] = "\x06\x44\x36", + [0x6bcf] = "\x06\x4e\x3a", [0x6bd1] = "\x06\x44\x34", + [0x6bd2] = "\x06\x3b\x60", [0x6bd3] = "\x06\x4d\x78", + [0x6bd4] = "\x04\x34\x5f", [0x6bd5] = "\x05\x35\x21", + [0x6bd6] = "\x04\x34\x6b", [0x6bd8] = "\x06\x43\x77", + [0x6bd9] = "\x06\x44\x24", [0x6bda] = "\x05\x35\x30", + [0x6bdb] = "\x06\x44\x2f", [0x6bdc] = "\x06\x44\x35", + [0x6bdd] = "\x06\x44\x2e", [0x6bde] = "\x06\x44\x29", + [0x6bdf] = "\x05\x35\x2f", [0x6be0] = "\x06\x44\x33", + [0x6be1] = "\x06\x43\x78", [0x6be2] = "\x06\x44\x27", + [0x6be3] = "\x05\x35\x31", [0x6be4] = "\x05\x42\x2f", + [0x6be5] = "\x06\x57\x32", [0x6be6] = "\x06\x57\x33", + [0x6be8] = "\x06\x44\x30", [0x6be9] = "\x06\x44\x31", + [0x6bea] = "\x06\x43\x7e", [0x6beb] = "\x05\x35\x22", + [0x6bec] = "\x05\x35\x33", [0x6bed] = "\x06\x44\x2a", + [0x6bee] = "\x05\x35\x29", [0x6bef] = "\x05\x35\x2d", + [0x6bf0] = "\x05\x35\x26", [0x6bf1] = "\x06\x4e\x37", + [0x6bf2] = "\x06\x44\x39", [0x6bf3] = "\x06\x44\x3a", + [0x6bf4] = "\x06\x43\x7c", [0x6bf8] = "\x06\x43\x7a", + [0x6bf9] = "\x0f\x37\x74", [0x6bfa] = "\x0f\x37\x75", + [0x6bfb] = "\x0f\x37\x76", [0x6bfc] = "\x0f\x37\x77", + [0x6bfd] = "\x0f\x37\x79", [0x6bfe] = "\x0f\x37\x7b", + [0x6bff] = "\x0f\x37\x7c", [0x6c00] = "\x0f\x37\x7d", + [0x6c01] = "\x0f\x37\x7e", [0x6c02] = "\x0f\x38\x21", + [0x6c03] = "\x0f\x38\x22", [0x6c04] = "\x0f\x38\x24", + [0x6c05] = "\x0f\x38\x25", [0x6c06] = "\x0f\x38\x26", + [0x6c07] = "\x0f\x38\x27", [0x6c08] = "\x0f\x38\x28", + [0x6c09] = "\x0f\x38\x29", [0x6c0a] = "\x0f\x38\x2a", + [0x6c0b] = "\x0f\x38\x2b", [0x6c0c] = "\x0f\x38\x2c", + [0x6c0d] = "\x0f\x38\x2d", [0x6c0e] = "\x0f\x38\x2e", + [0x6c0f] = "\x0f\x38\x2f", [0x6c10] = "\x0f\x38\x30", + [0x6c11] = "\x0f\x38\x31", [0x6c12] = "\x0f\x38\x32", + [0x6c13] = "\x0f\x38\x33", [0x6c14] = "\x0f\x38\x34", + [0x6c15] = "\x0f\x38\x35", [0x6c16] = "\x05\x3b\x5d", + [0x6c17] = "\x06\x43\x7d", [0x6c18] = "\x05\x35\x28", + [0x6c19] = "\x06\x44\x25", [0x6c1b] = "\x0f\x37\x7a", + [0x6c1d] = "\x06\x44\x2d", [0x6c1e] = "\x06\x44\x37", + [0x6c21] = "\x0f\x38\x23", [0x6c27] = "\x05\x35\x25", + [0x6c2a] = "\x05\x3b\x55", [0x6c2b] = "\x04\x3a\x55", + [0x6c2c] = "\x05\x3b\x69", [0x6c2d] = "\x05\x3b\x6a", + [0x6c2e] = "\x05\x3b\x62", [0x6c2f] = "\x05\x3b\x6c", + [0x6c30] = "\x05\x3b\x6d", [0x6c31] = "\x05\x3b\x63", + [0x6c32] = "\x04\x3a\x5d", [0x6c33] = "\x06\x4d\x7a", + [0x6c34] = "\x06\x4d\x72", [0x6c35] = "\x06\x4e\x2b", + [0x6c36] = "\x06\x4d\x70", [0x6c37] = "\x06\x4d\x6b", + [0x6c38] = "\x05\x3b\x5f", [0x6c39] = "\x05\x3b\x67", + [0x6c3a] = "\x05\x3b\x68", [0x6c3b] = "\x06\x4d\x7b", + [0x6c3c] = "\x06\x4d\x79", [0x6c3d] = "\x05\x3b\x5e", + [0x6c3e] = "\x05\x3b\x6e", [0x6c3f] = "\x05\x3b\x6b", + [0x6c40] = "\x04\x34\x6a", [0x6c41] = "\x04\x3a\x57", + [0x6c42] = "\x04\x3a\x5a", [0x6c43] = "\x04\x3a\x58", + [0x6c44] = "\x04\x3a\x62", [0x6c45] = "\x05\x3b\x5a", + [0x6c47] = "\x04\x3a\x54", [0x6c48] = "\x06\x4d\x69", + [0x6c49] = "\x06\x4e\x35", [0x6c4a] = "\x04\x3a\x63", + [0x6c4b] = "\x06\x4d\x6a", [0x6c4c] = "\x05\x3b\x64", + [0x6c4d] = "\x06\x4d\x7c", [0x6c4e] = "\x06\x4e\x36", + [0x6c4f] = "\x06\x4d\x7d", [0x6c50] = "\x06\x4e\x2f", + [0x6c51] = "\x06\x4e\x30", [0x6c52] = "\x04\x3a\x6b", + [0x6c53] = "\x06\x4e\x26", [0x6c54] = "\x04\x3a\x69", + [0x6c55] = "\x06\x4e\x23", [0x6c56] = "\x05\x3b\x5c", + [0x6c57] = "\x06\x4e\x28", [0x6c58] = "\x06\x4d\x75", + [0x6c59] = "\x06\x4e\x2d", [0x6c5a] = "\x06\x4d\x74", + [0x6c5b] = "\x06\x4e\x22", [0x6c5c] = "\x06\x4e\x31", + [0x6c5e] = "\x06\x4e\x29", [0x6c5f] = "\x05\x3b\x65", + [0x6c60] = "\x06\x61\x32", [0x6c61] = "\x06\x61\x2d", + [0x6c62] = "\x06\x61\x2e", [0x6c63] = "\x05\x3b\x57", + [0x6c64] = "\x06\x4e\x24", [0x6c65] = "\x06\x4d\x6f", + [0x6c66] = "\x06\x4e\x2e", [0x6c67] = "\x05\x49\x2e", + [0x6c68] = "\x06\x4d\x73", [0x6c69] = "\x06\x4e\x2c", + [0x6c6a] = "\x06\x4d\x77", [0x6c6b] = "\x06\x4e\x25", + [0x6c6c] = "\x06\x4d\x6d", [0x6c6d] = "\x06\x4e\x2a", + [0x6c6e] = "\x04\x3a\x6a", [0x6c6f] = "\x05\x3b\x60", + [0x6c70] = "\x05\x3b\x5b", [0x6c72] = "\x06\x4d\x76", + [0x6c73] = "\x06\x4e\x38", [0x6c74] = "\x06\x61\x2b", + [0x6c75] = "\x05\x3b\x66", [0x6c76] = "\x06\x61\x2f", + [0x6c77] = "\x05\x3b\x61", [0x6c78] = "\x06\x4e\x34", + [0x6c79] = "\x06\x61\x31", [0x6c7a] = "\x06\x61\x30", + [0x6c7b] = "\x06\x4d\x6c", [0x6c7c] = "\x06\x4d\x7e", + [0x6c83] = "\x06\x4c\x7b", [0x6c84] = "\x05\x3b\x58", + [0x6c85] = "\x06\x4d\x6e", [0x6c86] = "\x06\x4d\x71", + [0x6c87] = "\x06\x4e\x33", [0x6c88] = "\x06\x4e\x39", + [0x6c89] = "\x0f\x3e\x53", [0x6c8a] = "\x0f\x3e\x55", + [0x6c8b] = "\x0f\x3e\x56", [0x6c8c] = "\x0f\x3e\x58", + [0x6c8d] = "\x0f\x3e\x5a", [0x6c8e] = "\x0f\x3e\x5b", + [0x6c8f] = "\x0f\x3e\x5c", [0x6c90] = "\x0f\x3e\x5d", + [0x6c91] = "\x0f\x3e\x5e", [0x6c92] = "\x0f\x3e\x5f", + [0x6c93] = "\x0f\x3e\x60", [0x6c94] = "\x0f\x3e\x61", + [0x6c95] = "\x0f\x3e\x63", [0x6c96] = "\x0f\x3e\x64", + [0x6c97] = "\x0f\x3e\x65", [0x6c98] = "\x0f\x3e\x68", + [0x6c99] = "\x0f\x3e\x69", [0x6c9a] = "\x0f\x3e\x6a", + [0x6c9b] = "\x0f\x3e\x6d", [0x6c9c] = "\x0f\x3e\x6f", + [0x6c9d] = "\x0f\x3e\x70", [0x6c9e] = "\x0f\x3e\x71", + [0x6c9f] = "\x0f\x3e\x72", [0x6ca0] = "\x0f\x3e\x74", + [0x6ca1] = "\x0f\x3e\x75", [0x6ca2] = "\x0f\x3e\x76", + [0x6ca3] = "\x0f\x3e\x77", [0x6ca4] = "\x0f\x3e\x78", + [0x6ca5] = "\x0f\x3e\x79", [0x6ca6] = "\x0f\x3e\x7a", + [0x6ca7] = "\x0f\x3e\x7b", [0x6ca8] = "\x0f\x3e\x7c", + [0x6ca9] = "\x0f\x3e\x7d", [0x6caa] = "\x0f\x3e\x7e", + [0x6cac] = "\x06\x61\x2c", [0x6caf] = "\x05\x3b\x59", + [0x6cb0] = "\x06\x4e\x21", [0x6cb6] = "\x0f\x3e\x62", + [0x6cb7] = "\x0f\x3e\x54", [0x6cbd] = "\x0f\x3e\x6e", + [0x6cc0] = "\x0f\x3e\x73", [0x6cc1] = "\x04\x40\x43", + [0x6cc2] = "\x06\x57\x34", [0x6cc3] = "\x06\x57\x46", + [0x6cc4] = "\x05\x42\x4e", [0x6cc5] = "\x06\x57\x3a", + [0x6cc6] = "\x06\x57\x3b", [0x6cc7] = "\x05\x42\x34", + [0x6cc8] = "\x04\x40\x3d", [0x6cc9] = "\x06\x57\x49", + [0x6cca] = "\x06\x57\x5a", [0x6ccb] = "\x04\x40\x40", + [0x6ccc] = "\x04\x40\x42", [0x6ccd] = "\x05\x42\x45", + [0x6cce] = "\x06\x57\x5e", [0x6ccf] = "\x05\x42\x3a", + [0x6cd0] = "\x04\x40\x37", [0x6cd1] = "\x04\x40\x34", + [0x6cd2] = "\x06\x57\x41", [0x6cd3] = "\x06\x57\x63", + [0x6cd4] = "\x05\x42\x33", [0x6cd5] = "\x06\x57\x51", + [0x6cd6] = "\x06\x57\x55", [0x6cd7] = "\x05\x42\x43", + [0x6cd8] = "\x06\x57\x4a", [0x6cd9] = "\x04\x40\x38", + [0x6cda] = "\x04\x40\x3b", [0x6cdb] = "\x05\x42\x36", + [0x6cdc] = "\x06\x57\x43", [0x6cdd] = "\x04\x40\x3c", + [0x6cde] = "\x04\x40\x45", [0x6cdf] = "\x05\x42\x41", + [0x6ce0] = "\x04\x40\x4d", [0x6ce1] = "\x05\x42\x4f", + [0x6ce2] = "\x04\x40\x3e", [0x6ce3] = "\x05\x42\x46", + [0x6ce4] = "\x06\x57\x5d", [0x6ce5] = "\x05\x42\x3f", + [0x6ce6] = "\x04\x40\x33", [0x6ce7] = "\x04\x40\x31", + [0x6ce8] = "\x06\x57\x65", [0x6ce9] = "\x04\x40\x3f", + [0x6cea] = "\x06\x57\x42", [0x6ceb] = "\x05\x42\x48", + [0x6cec] = "\x05\x42\x42", [0x6ced] = "\x05\x42\x38", + [0x6cee] = "\x05\x42\x3e", [0x6cf0] = "\x06\x57\x38", + [0x6cf1] = "\x06\x57\x53", [0x6cf2] = "\x06\x57\x4f", + [0x6cf3] = "\x06\x57\x40", [0x6cf4] = "\x06\x57\x67", + [0x6cf5] = "\x05\x42\x3d", [0x6cf6] = "\x06\x57\x39", + [0x6cf7] = "\x06\x57\x64", [0x6cf8] = "\x06\x57\x37", + [0x6cf9] = "\x05\x42\x50", [0x6cfa] = "\x06\x57\x4e", + [0x6cfb] = "\x06\x57\x45", [0x6cfc] = "\x06\x57\x3c", + [0x6cfd] = "\x05\x42\x49", [0x6cfe] = "\x05\x42\x4d", + [0x6cff] = "\x05\x42\x3b", [0x6d00] = "\x05\x42\x47", + [0x6d01] = "\x06\x57\x52", [0x6d02] = "\x06\x57\x60", + [0x6d05] = "\x06\x57\x5c", [0x6d07] = "\x06\x57\x48", + [0x6d08] = "\x06\x57\x56", [0x6d09] = "\x05\x42\x39", + [0x6d0a] = "\x04\x40\x39", [0x6d0b] = "\x06\x57\x57", + [0x6d0c] = "\x05\x42\x30", [0x6d0d] = "\x05\x42\x40", + [0x6d0e] = "\x05\x42\x32", [0x6d0f] = "\x05\x42\x4a", + [0x6d10] = "\x06\x57\x3f", [0x6d11] = "\x04\x40\x35", + [0x6d12] = "\x04\x40\x4b", [0x6d13] = "\x06\x57\x4c", + [0x6d14] = "\x05\x42\x35", [0x6d15] = "\x05\x42\x31", + [0x6d16] = "\x06\x57\x47", [0x6d17] = "\x06\x57\x58", + [0x6d18] = "\x07\x27\x53", [0x6d19] = "\x06\x57\x61", + [0x6d1a] = "\x05\x42\x3c", [0x6d1b] = "\x06\x57\x44", + [0x6d1c] = "\x06\x57\x54", [0x6d1d] = "\x06\x57\x36", + [0x6d1e] = "\x06\x57\x62", [0x6d1f] = "\x06\x57\x66", + [0x6d20] = "\x06\x57\x59", [0x6d2b] = "\x04\x40\x4e", + [0x6d2c] = "\x05\x42\x44", [0x6d2d] = "\x05\x42\x4b", + [0x6d2e] = "\x06\x57\x35", [0x6d2f] = "\x06\x57\x3e", + [0x6d30] = "\x06\x57\x4b", [0x6d31] = "\x06\x57\x4d", + [0x6d32] = "\x06\x57\x5b", [0x6d33] = "\x06\x57\x5f", + [0x6d34] = "\x0f\x44\x73", [0x6d35] = "\x0f\x44\x75", + [0x6d36] = "\x0f\x44\x76", [0x6d37] = "\x0f\x44\x77", + [0x6d38] = "\x0f\x44\x78", [0x6d39] = "\x0f\x44\x79", + [0x6d3a] = "\x0f\x44\x7a", [0x6d3b] = "\x0f\x44\x7b", + [0x6d3c] = "\x0f\x44\x7c", [0x6d3d] = "\x0f\x44\x7d", + [0x6d3e] = "\x0f\x44\x7e", [0x6d3f] = "\x0f\x45\x21", + [0x6d40] = "\x0f\x45\x22", [0x6d41] = "\x0f\x45\x23", + [0x6d42] = "\x0f\x45\x24", [0x6d43] = "\x0f\x45\x25", + [0x6d44] = "\x0f\x45\x26", [0x6d45] = "\x0f\x45\x27", + [0x6d46] = "\x0f\x45\x28", [0x6d47] = "\x0f\x45\x29", + [0x6d48] = "\x0f\x45\x2a", [0x6d49] = "\x0f\x45\x2b", + [0x6d4a] = "\x0f\x45\x2c", [0x6d4b] = "\x0f\x45\x2e", + [0x6d4c] = "\x0f\x45\x2f", [0x6d4d] = "\x0f\x45\x30", + [0x6d4e] = "\x0f\x45\x31", [0x6d50] = "\x05\x42\x4c", + [0x6d51] = "\x04\x40\x4a", [0x6d52] = "\x06\x57\x3d", + [0x6d5d] = "\x06\x4e\x32", [0x6d5e] = "\x0f\x3e\x57", + [0x6d5f] = "\x05\x42\x37", [0x6d61] = "\x04\x46\x66", + [0x6d62] = "\x06\x61\x60", [0x6d63] = "\x05\x49\x45", + [0x6d64] = "\x06\x61\x33", [0x6d65] = "\x06\x61\x43", + [0x6d66] = "\x05\x49\x4b", [0x6d67] = "\x04\x46\x63", + [0x6d68] = "\x06\x61\x56", [0x6d69] = "\x04\x46\x56", + [0x6d6a] = "\x06\x61\x45", [0x6d6b] = "\x04\x46\x59", + [0x6d6c] = "\x06\x61\x3c", [0x6d6d] = "\x05\x49\x41", + [0x6d6e] = "\x06\x61\x4a", [0x6d6f] = "\x04\x46\x55", + [0x6d70] = "\x06\x61\x52", [0x6d71] = "\x05\x49\x3d", + [0x6d72] = "\x06\x61\x40", [0x6d73] = "\x06\x61\x59", + [0x6d74] = "\x05\x49\x49", [0x6d75] = "\x05\x49\x46", + [0x6d76] = "\x06\x61\x4c", [0x6d77] = "\x05\x49\x3a", + [0x6d78] = "\x04\x46\x5a", [0x6d79] = "\x06\x61\x39", + [0x6d7a] = "\x06\x61\x55", [0x6d7b] = "\x06\x61\x4d", + [0x6d7c] = "\x06\x61\x3f", [0x6d7d] = "\x05\x49\x44", + [0x6d7e] = "\x05\x49\x39", [0x6d7f] = "\x05\x49\x30", + [0x6d80] = "\x04\x46\x62", [0x6d81] = "\x06\x61\x41", + [0x6d82] = "\x04\x46\x5e", [0x6d84] = "\x06\x61\x36", + [0x6d85] = "\x04\x46\x5d", [0x6d86] = "\x04\x46\x6b", + [0x6d87] = "\x04\x46\x5b", [0x6d88] = "\x05\x49\x3f", + [0x6d89] = "\x07\x27\x58", [0x6d8a] = "\x06\x61\x37", + [0x6d8b] = "\x05\x49\x32", [0x6d8c] = "\x05\x49\x37", + [0x6d8d] = "\x05\x49\x31", [0x6d8e] = "\x05\x49\x48", + [0x6d8f] = "\x05\x50\x3b", [0x6d90] = "\x04\x46\x5f", + [0x6d91] = "\x05\x49\x43", [0x6d92] = "\x06\x61\x38", + [0x6d93] = "\x04\x46\x68", [0x6d94] = "\x06\x61\x50", + [0x6d95] = "\x05\x49\x38", [0x6d96] = "\x06\x61\x57", + [0x6d97] = "\x06\x61\x46", [0x6d98] = "\x06\x61\x3b", + [0x6d99] = "\x05\x49\x40", [0x6d9a] = "\x05\x49\x36", + [0x6d9b] = "\x07\x32\x27", [0x6da8] = "\x05\x49\x2f", + [0x6da9] = "\x05\x49\x34", [0x6daa] = "\x06\x61\x47", + [0x6dab] = "\x06\x61\x49", [0x6dac] = "\x06\x61\x4b", + [0x6dad] = "\x06\x61\x4e", [0x6dae] = "\x06\x61\x5a", + [0x6daf] = "\x06\x61\x5d", [0x6db0] = "\x06\x61\x5e", + [0x6db1] = "\x0f\x4b\x61", [0x6db2] = "\x0f\x4b\x62", + [0x6db3] = "\x0f\x4b\x63", [0x6db4] = "\x0f\x4b\x66", + [0x6db5] = "\x0f\x4b\x68", [0x6db6] = "\x0f\x4b\x69", + [0x6db7] = "\x0f\x4b\x6a", [0x6db8] = "\x0f\x4b\x6b", + [0x6db9] = "\x0f\x4b\x6c", [0x6dba] = "\x0f\x4b\x6d", + [0x6dbb] = "\x0f\x4b\x6e", [0x6dbc] = "\x0f\x4b\x6f", + [0x6dbd] = "\x0f\x4b\x70", [0x6dbe] = "\x0f\x4b\x71", + [0x6dbf] = "\x0f\x4b\x72", [0x6dc0] = "\x0f\x4b\x73", + [0x6dc1] = "\x0f\x4b\x74", [0x6dc2] = "\x0f\x4b\x75", + [0x6dc3] = "\x0f\x4b\x76", [0x6dc4] = "\x0f\x4b\x78", + [0x6dc5] = "\x0f\x4b\x79", [0x6dc6] = "\x0f\x4b\x7a", + [0x6dc7] = "\x0f\x4b\x7c", [0x6dc8] = "\x0f\x4b\x7d", + [0x6dc9] = "\x0f\x4b\x7e", [0x6dca] = "\x0f\x4c\x21", + [0x6dcb] = "\x0f\x4c\x22", [0x6dcc] = "\x0f\x4c\x23", + [0x6dcd] = "\x0f\x4c\x25", [0x6dce] = "\x0f\x4c\x26", + [0x6dcf] = "\x0f\x4c\x27", [0x6dd0] = "\x0f\x4c\x28", + [0x6dd1] = "\x0f\x4c\x29", [0x6dd2] = "\x0f\x4c\x2a", + [0x6dd3] = "\x06\x61\x48", [0x6dd4] = "\x05\x49\x42", + [0x6dd5] = "\x06\x61\x53", [0x6dd7] = "\x06\x61\x51", + [0x6dd8] = "\x06\x57\x68", [0x6dd9] = "\x05\x49\x4a", + [0x6dda] = "\x06\x61\x5c", [0x6ddb] = "\x06\x61\x5f", + [0x6ddd] = "\x06\x61\x5b", [0x6dde] = "\x06\x61\x3a", + [0x6ddf] = "\x06\x61\x35", [0x6de0] = "\x06\x61\x42", + [0x6de1] = "\x06\x61\x3d", [0x6de3] = "\x06\x57\x50", + [0x6dea] = "\x0f\x4b\x64", [0x6df0] = "\x0f\x4b\x67", + [0x6df1] = "\x06\x61\x54", [0x6df2] = "\x04\x46\x6a", + [0x6df3] = "\x04\x46\x54", [0x6df4] = "\x05\x49\x35", + [0x6df5] = "\x05\x49\x4d", [0x6df6] = "\x07\x32\x26", + [0x6df7] = "\x05\x49\x33", [0x6df8] = "\x06\x61\x61", + [0x6df9] = "\x05\x49\x47", [0x6dfa] = "\x05\x49\x4c", + [0x6dfb] = "\x05\x57\x46", [0x6dfc] = "\x0f\x4b\x7b", + [0x6dfd] = "\x05\x49\x3e", [0x6dff] = "\x07\x27\x6c", + [0x6e00] = "\x04\x4c\x7e", [0x6e01] = "\x05\x50\x32", + [0x6e02] = "\x04\x4c\x69", [0x6e03] = "\x04\x4c\x7c", + [0x6e04] = "\x07\x28\x21", [0x6e06] = "\x05\x50\x35", + [0x6e07] = "\x07\x28\x24", [0x6e08] = "\x07\x27\x77", + [0x6e09] = "\x07\x27\x5c", [0x6e0a] = "\x05\x50\x39", + [0x6e0b] = "\x07\x27\x69", [0x6e0c] = "\x07\x27\x78", + [0x6e0d] = "\x07\x27\x79", [0x6e0e] = "\x07\x27\x6a", + [0x6e0f] = "\x07\x27\x73", [0x6e10] = "\x05\x50\x3a", + [0x6e11] = "\x07\x27\x6f", [0x6e12] = "\x04\x4c\x75", + [0x6e13] = "\x05\x50\x3d", [0x6e14] = "\x05\x50\x42", + [0x6e15] = "\x07\x27\x60", [0x6e16] = "\x07\x28\x22", + [0x6e17] = "\x05\x50\x40", [0x6e18] = "\x05\x50\x3f", + [0x6e19] = "\x05\x57\x47", [0x6e1a] = "\x05\x50\x41", + [0x6e1b] = "\x05\x50\x4b", [0x6e1c] = "\x07\x27\x6b", + [0x6e1d] = "\x07\x27\x76", [0x6e1e] = "\x07\x27\x59", + [0x6e1f] = "\x07\x27\x72", [0x6e20] = "\x07\x27\x65", + [0x6e21] = "\x05\x50\x48", [0x6e22] = "\x05\x50\x37", + [0x6e23] = "\x04\x4c\x7b", [0x6e24] = "\x07\x27\x54", + [0x6e26] = "\x07\x27\x5b", [0x6e27] = "\x07\x27\x64", + [0x6e28] = "\x07\x27\x63", [0x6e29] = "\x07\x27\x67", + [0x6e2a] = "\x05\x50\x33", [0x6e2b] = "\x07\x27\x66", + [0x6e2c] = "\x07\x27\x7d", [0x6e2d] = "\x07\x27\x5e", + [0x6e2e] = "\x05\x50\x3e", [0x6e2f] = "\x07\x27\x56", + [0x6e30] = "\x05\x50\x34", [0x6e31] = "\x05\x50\x4a", + [0x6e32] = "\x07\x27\x7c", [0x6e33] = "\x07\x27\x62", + [0x6e34] = "\x07\x27\x5d", [0x6e35] = "\x07\x27\x6e", + [0x6e36] = "\x04\x4c\x76", [0x6e37] = "\x05\x50\x49", + [0x6e38] = "\x05\x50\x45", [0x6e39] = "\x07\x27\x74", + [0x6e3a] = "\x05\x57\x58", [0x6e46] = "\x04\x4d\x22", + [0x6e47] = "\x05\x50\x43", [0x6e48] = "\x07\x27\x55", + [0x6e49] = "\x07\x27\x5a", [0x6e4a] = "\x07\x27\x5f", + [0x6e4b] = "\x07\x27\x70", [0x6e4c] = "\x07\x27\x71", + [0x6e4d] = "\x07\x28\x23", [0x6e4e] = "\x0f\x51\x5e", + [0x6e4f] = "\x0f\x51\x5f", [0x6e50] = "\x0f\x51\x60", + [0x6e51] = "\x0f\x51\x62", [0x6e52] = "\x0f\x51\x63", + [0x6e53] = "\x0f\x51\x66", [0x6e54] = "\x0f\x51\x67", + [0x6e55] = "\x0f\x51\x68", [0x6e56] = "\x0f\x51\x69", + [0x6e57] = "\x0f\x51\x6a", [0x6e58] = "\x0f\x51\x6c", + [0x6e59] = "\x0f\x51\x6d", [0x6e5a] = "\x0f\x51\x6e", + [0x6e5b] = "\x0f\x51\x6f", [0x6e5c] = "\x0f\x51\x70", + [0x6e5d] = "\x0f\x51\x72", [0x6e5e] = "\x0f\x51\x75", + [0x6e5f] = "\x0f\x51\x77", [0x6e61] = "\x04\x4d\x23", + [0x6e62] = "\x07\x27\x7a", [0x6e63] = "\x05\x50\x44", + [0x6e64] = "\x07\x27\x7e", [0x6e68] = "\x07\x27\x75", + [0x6e6a] = "\x07\x27\x68", [0x6e6e] = "\x0f\x51\x71", + [0x6e72] = "\x0f\x51\x61", [0x6e77] = "\x0f\x51\x6b", + [0x6e7d] = "\x05\x50\x36", [0x6e7e] = "\x07\x27\x57", + [0x6e7f] = "\x05\x50\x47", [0x6e80] = "\x05\x50\x3c", + [0x6e81] = "\x06\x61\x34", [0x6e82] = "\x07\x42\x2e", + [0x6e84] = "\x0f\x4c\x24", [0x6e86] = "\x07\x32\x51", + [0x6e87] = "\x04\x53\x2d", [0x6e88] = "\x07\x32\x32", + [0x6e89] = "\x04\x53\x2a", [0x6e8a] = "\x04\x53\x34", + [0x6e8b] = "\x07\x32\x53", [0x6e8c] = "\x05\x57\x49", + [0x6e8d] = "\x04\x53\x2b", [0x6e8e] = "\x05\x57\x5d", + [0x6e8f] = "\x07\x32\x43", [0x6e90] = "\x05\x57\x54", + [0x6e91] = "\x04\x52\x71", [0x6e92] = "\x04\x53\x30", + [0x6e93] = "\x05\x57\x51", [0x6e94] = "\x05\x57\x5b", + [0x6e95] = "\x07\x32\x3c", [0x6e96] = "\x04\x52\x75", + [0x6e97] = "\x05\x57\x5a", [0x6e98] = "\x05\x57\x4b", + [0x6e99] = "\x05\x57\x5f", [0x6e9a] = "\x07\x32\x33", + [0x6e9b] = "\x05\x57\x61", [0x6e9c] = "\x04\x53\x2f", + [0x6e9d] = "\x07\x32\x28", [0x6e9e] = "\x05\x57\x4d", + [0x6e9f] = "\x05\x57\x4f", [0x6ea0] = "\x07\x32\x4c", + [0x6ea1] = "\x05\x57\x55", [0x6ea2] = "\x05\x57\x62", + [0x6ea3] = "\x07\x32\x3d", [0x6ea4] = "\x07\x32\x3b", + [0x6ea5] = "\x05\x50\x4c", [0x6ea6] = "\x04\x52\x70", + [0x6ea7] = "\x05\x57\x48", [0x6ea8] = "\x05\x57\x5e", + [0x6ea9] = "\x07\x32\x45", [0x6eaa] = "\x07\x32\x4b", + [0x6eab] = "\x07\x32\x41", [0x6eac] = "\x05\x57\x64", + [0x6ead] = "\x05\x57\x60", [0x6eae] = "\x07\x28\x25", + [0x6eaf] = "\x07\x27\x7b", [0x6eb0] = "\x07\x32\x52", + [0x6eb1] = "\x05\x5d\x7a", [0x6eb2] = "\x04\x53\x26", + [0x6eb3] = "\x07\x32\x2e", [0x6eb4] = "\x04\x53\x29", + [0x6eb5] = "\x07\x32\x36", [0x6eb6] = "\x05\x57\x53", + [0x6eb7] = "\x04\x53\x28", [0x6eb8] = "\x04\x52\x74", + [0x6eb9] = "\x05\x50\x38", [0x6eba] = "\x07\x32\x2f", + [0x6ebb] = "\x05\x57\x52", [0x6ebc] = "\x07\x32\x38", + [0x6ebd] = "\x05\x57\x56", [0x6ebe] = "\x05\x57\x4c", + [0x6ebf] = "\x07\x32\x2d", [0x6ec0] = "\x07\x32\x57", + [0x6ec1] = "\x07\x32\x4e", [0x6ec2] = "\x04\x53\x2e", + [0x6ec3] = "\x05\x57\x5c", [0x6ec4] = "\x07\x32\x2a", + [0x6ec5] = "\x04\x52\x78", [0x6ec6] = "\x07\x32\x39", + [0x6ec7] = "\x07\x42\x2f", [0x6ec8] = "\x07\x32\x2b", + [0x6ec9] = "\x07\x32\x55", [0x6eca] = "\x04\x53\x32", + [0x6ecb] = "\x07\x32\x42", [0x6ecc] = "\x07\x32\x35", + [0x6ecd] = "\x07\x32\x3f", [0x6ed8] = "\x0f\x57\x3e", + [0x6ed9] = "\x0f\x57\x3f", [0x6eda] = "\x0f\x57\x40", + [0x6edb] = "\x0f\x57\x41", [0x6edc] = "\x05\x57\x4a", + [0x6edd] = "\x05\x57\x50", [0x6ede] = "\x05\x57\x57", + [0x6edf] = "\x07\x32\x2c", [0x6ee0] = "\x07\x32\x34", + [0x6ee1] = "\x07\x32\x37", [0x6ee2] = "\x07\x32\x3e", + [0x6ee3] = "\x07\x32\x40", [0x6ee4] = "\x07\x32\x47", + [0x6ee5] = "\x07\x32\x49", [0x6ee6] = "\x07\x32\x4d", + [0x6ee7] = "\x07\x32\x4f", [0x6ee8] = "\x07\x32\x54", + [0x6ee9] = "\x07\x32\x59", [0x6eea] = "\x07\x32\x5a", + [0x6eeb] = "\x0f\x57\x37", [0x6eec] = "\x0f\x57\x38", + [0x6eed] = "\x0f\x57\x39", [0x6eee] = "\x0f\x57\x3a", + [0x6eef] = "\x0f\x57\x3b", [0x6ef0] = "\x0f\x57\x3c", + [0x6ef1] = "\x0f\x57\x3d", [0x6ef2] = "\x0f\x57\x42", + [0x6ef3] = "\x0f\x57\x43", [0x6ef4] = "\x0f\x57\x44", + [0x6ef5] = "\x0f\x57\x49", [0x6ef6] = "\x0f\x57\x4c", + [0x6ef7] = "\x0f\x57\x4d", [0x6ef8] = "\x0f\x57\x4e", + [0x6ef9] = "\x0f\x57\x4f", [0x6efa] = "\x0f\x57\x50", + [0x6efb] = "\x0f\x57\x51", [0x6efc] = "\x0f\x57\x52", + [0x6efd] = "\x0f\x57\x53", [0x6efe] = "\x0f\x57\x54", + [0x6eff] = "\x0f\x57\x56", [0x6f00] = "\x0f\x57\x57", + [0x6f01] = "\x0f\x57\x58", [0x6f02] = "\x0f\x57\x59", + [0x6f03] = "\x0f\x57\x5a", [0x6f04] = "\x0f\x57\x5b", + [0x6f05] = "\x0f\x57\x5c", [0x6f06] = "\x07\x32\x31", + [0x6f07] = "\x0f\x57\x45", [0x6f0a] = "\x04\x52\x7d", + [0x6f0b] = "\x07\x32\x3a", [0x6f0c] = "\x07\x32\x58", + [0x6f0d] = "\x07\x32\x50", [0x6f0e] = "\x05\x57\x65", + [0x6f0f] = "\x05\x57\x4e", [0x6f10] = "\x07\x32\x30", + [0x6f11] = "\x07\x32\x29", [0x6f12] = "\x07\x32\x48", + [0x6f15] = "\x0f\x57\x4a", [0x6f19] = "\x07\x32\x56", + [0x6f21] = "\x05\x57\x63", [0x6f22] = "\x05\x57\x59", + [0x6f24] = "\x07\x32\x46", [0x6f29] = "\x07\x3a\x76", + [0x6f2a] = "\x04\x58\x3a", [0x6f2b] = "\x04\x58\x3f", + [0x6f2c] = "\x07\x3a\x6e", [0x6f2d] = "\x07\x42\x3b", + [0x6f2e] = "\x07\x3a\x78", [0x6f2f] = "\x04\x58\x48", + [0x6f30] = "\x04\x58\x49", [0x6f31] = "\x05\x57\x66", + [0x6f32] = "\x05\x5d\x75", [0x6f33] = "\x05\x5d\x7d", + [0x6f34] = "\x05\x5d\x73", [0x6f35] = "\x07\x3b\x2b", + [0x6f36] = "\x07\x3b\x2f", [0x6f37] = "\x05\x5d\x6f", + [0x6f38] = "\x04\x58\x4a", [0x6f39] = "\x04\x58\x37", + [0x6f3a] = "\x07\x3a\x7b", [0x6f3b] = "\x04\x58\x45", + [0x6f3c] = "\x05\x5e\x21", [0x6f3d] = "\x07\x3a\x7c", + [0x6f3e] = "\x07\x3b\x23", [0x6f3f] = "\x07\x3b\x33", + [0x6f40] = "\x05\x5d\x7e", [0x6f41] = "\x05\x5e\x25", + [0x6f42] = "\x07\x3b\x31", [0x6f43] = "\x05\x5e\x22", + [0x6f44] = "\x05\x5d\x6e", [0x6f45] = "\x05\x5d\x78", + [0x6f46] = "\x07\x3a\x7e", [0x6f47] = "\x05\x5d\x7c", + [0x6f48] = "\x07\x3a\x73", [0x6f49] = "\x07\x3b\x24", + [0x6f4a] = "\x07\x3b\x2a", [0x6f4b] = "\x05\x5d\x7b", + [0x6f4c] = "\x04\x58\x4b", [0x6f4e] = "\x05\x5d\x6d", + [0x6f4f] = "\x05\x5e\x23", [0x6f50] = "\x04\x58\x41", + [0x6f51] = "\x07\x3b\x30", [0x6f52] = "\x05\x5d\x77", + [0x6f53] = "\x04\x58\x46", [0x6f54] = "\x05\x5d\x71", + [0x6f55] = "\x05\x5e\x24", [0x6f56] = "\x07\x3b\x25", + [0x6f57] = "\x05\x5d\x76", [0x6f58] = "\x07\x3a\x70", + [0x6f59] = "\x07\x3a\x75", [0x6f5a] = "\x07\x42\x39", + [0x6f5b] = "\x07\x3a\x6b", [0x6f5c] = "\x07\x3a\x6c", + [0x6f5d] = "\x07\x3b\x35", [0x6f5e] = "\x07\x3a\x7d", + [0x6f5f] = "\x04\x58\x47", [0x6f60] = "\x07\x3b\x2e", + [0x6f61] = "\x07\x3a\x72", [0x6f62] = "\x07\x3a\x77", + [0x6f63] = "\x07\x49\x34", [0x6f64] = "\x07\x3a\x71", + [0x6f65] = "\x07\x3b\x22", [0x6f66] = "\x07\x3b\x29", + [0x6f67] = "\x07\x32\x4a", [0x6f68] = "\x07\x3a\x79", + [0x6f69] = "\x07\x3b\x21", [0x6f6a] = "\x07\x3b\x37", + [0x6f6b] = "\x05\x5d\x74", [0x6f6c] = "\x05\x50\x4d", + [0x6f6e] = "\x04\x58\x43", [0x6f71] = "\x07\x49\x35", + [0x6f75] = "\x05\x5d\x70", [0x6f76] = "\x05\x5d\x72", + [0x6f77] = "\x07\x3a\x6d", [0x6f78] = "\x07\x3b\x27", + [0x6f79] = "\x07\x3b\x28", [0x6f7a] = "\x07\x3b\x2c", + [0x6f7b] = "\x07\x3b\x34", [0x6f7c] = "\x0f\x5c\x3a", + [0x6f7d] = "\x0f\x5c\x3b", [0x6f7e] = "\x0f\x5c\x3c", + [0x6f7f] = "\x0f\x5c\x3d", [0x6f80] = "\x0f\x5c\x3e", + [0x6f81] = "\x0f\x5c\x40", [0x6f82] = "\x0f\x5c\x41", + [0x6f83] = "\x0f\x5c\x42", [0x6f84] = "\x0f\x5c\x43", + [0x6f85] = "\x0f\x5c\x44", [0x6f86] = "\x0f\x5c\x45", + [0x6f87] = "\x0f\x5c\x46", [0x6f88] = "\x0f\x5c\x47", + [0x6f89] = "\x0f\x5c\x49", [0x6f8a] = "\x0f\x5c\x4a", + [0x6f8b] = "\x0f\x5c\x4b", [0x6f8c] = "\x0f\x5c\x4c", + [0x6f8d] = "\x0f\x5c\x4f", [0x6f8e] = "\x0f\x5c\x50", + [0x6f8f] = "\x04\x58\x39", [0x6f90] = "\x07\x3a\x7a", + [0x6f92] = "\x07\x3b\x2d", [0x6f94] = "\x07\x3b\x36", + [0x6f97] = "\x07\x3a\x74", [0x6f9b] = "\x0f\x5c\x48", + [0x6f9f] = "\x0f\x5c\x3f", [0x6fa1] = "\x0f\x5c\x4e", + [0x6fa7] = "\x0f\x57\x55", [0x6faa] = "\x0f\x63\x5b", + [0x6fac] = "\x05\x64\x2c", [0x6fad] = "\x07\x42\x4b", + [0x6fae] = "\x04\x5d\x24", [0x6faf] = "\x07\x42\x4c", + [0x6fb0] = "\x05\x64\x22", [0x6fb1] = "\x04\x5d\x25", + [0x6fb2] = "\x05\x5e\x26", [0x6fb3] = "\x05\x64\x2f", + [0x6fb4] = "\x07\x42\x48", [0x6fb5] = "\x05\x64\x25", + [0x6fb6] = "\x05\x63\x7e", [0x6fb7] = "\x07\x42\x30", + [0x6fb8] = "\x05\x64\x21", [0x6fb9] = "\x05\x64\x29", + [0x6fba] = "\x05\x64\x36", [0x6fbb] = "\x05\x64\x39", + [0x6fbc] = "\x07\x42\x36", [0x6fbd] = "\x05\x64\x33", + [0x6fbe] = "\x07\x42\x46", [0x6fbf] = "\x04\x5d\x22", + [0x6fc0] = "\x05\x5e\x27", [0x6fc1] = "\x05\x64\x38", + [0x6fc2] = "\x05\x64\x26", [0x6fc3] = "\x05\x64\x30", + [0x6fc4] = "\x07\x42\x3d", [0x6fc5] = "\x05\x64\x24", + [0x6fc6] = "\x05\x64\x2e", [0x6fc8] = "\x07\x42\x4d", + [0x6fc9] = "\x04\x5d\x30", [0x6fca] = "\x05\x64\x31", + [0x6fcb] = "\x04\x5d\x2e", [0x6fcc] = "\x04\x5d\x26", + [0x6fcd] = "\x04\x5d\x2a", [0x6fce] = "\x05\x64\x34", + [0x6fcf] = "\x05\x64\x32", [0x6fd0] = "\x07\x42\x3e", + [0x6fd1] = "\x07\x4f\x46", [0x6fd2] = "\x07\x42\x3a", + [0x6fd3] = "\x07\x42\x37", [0x6fd4] = "\x04\x5d\x2f", + [0x6fd5] = "\x07\x49\x44", [0x6fd6] = "\x05\x64\x2b", + [0x6fd7] = "\x07\x42\x33", [0x6fd8] = "\x07\x42\x45", + [0x6fd9] = "\x07\x42\x49", [0x6fe0] = "\x04\x5d\x2d", + [0x6fe1] = "\x07\x3b\x26", [0x6fe2] = "\x07\x42\x32", + [0x6fe3] = "\x07\x42\x34", [0x6fe4] = "\x07\x42\x35", + [0x6fe5] = "\x07\x42\x3f", [0x6fe6] = "\x07\x42\x42", + [0x6fe7] = "\x07\x42\x44", [0x6fe8] = "\x07\x42\x4a", + [0x6fe9] = "\x07\x42\x4e", [0x6fea] = "\x07\x42\x4f", + [0x6feb] = "\x0f\x60\x48", [0x6fec] = "\x0f\x60\x49", + [0x6fed] = "\x0f\x60\x4a", [0x6fee] = "\x0f\x60\x4b", + [0x6fef] = "\x0f\x60\x4c", [0x6ff0] = "\x0f\x60\x4f", + [0x6ff1] = "\x0f\x60\x50", [0x6ff2] = "\x0f\x60\x51", + [0x6ff3] = "\x0f\x60\x52", [0x6ff4] = "\x0f\x60\x53", + [0x6ff5] = "\x0f\x60\x54", [0x6ff9] = "\x0f\x60\x55", + [0x6ffa] = "\x0f\x60\x56", [0x6ffb] = "\x0f\x60\x57", + [0x6ffc] = "\x0f\x60\x58", [0x6ffd] = "\x0f\x60\x59", + [0x6ffe] = "\x0f\x60\x5a", [0x6fff] = "\x0f\x60\x5b", + [0x7000] = "\x0f\x60\x5c", [0x7001] = "\x0f\x60\x5e", + [0x7002] = "\x0f\x60\x5f", [0x7004] = "\x04\x5d\x27", + [0x7005] = "\x07\x42\x40", [0x7006] = "\x05\x64\x27", + [0x7007] = "\x07\x42\x41", [0x700d] = "\x07\x49\x33", + [0x7014] = "\x05\x64\x35", [0x7015] = "\x05\x64\x2a", + [0x7016] = "\x04\x5d\x29", [0x7017] = "\x07\x42\x47", + [0x7018] = "\x05\x64\x23", [0x7019] = "\x05\x64\x28", + [0x701a] = "\x05\x64\x37", [0x701b] = "\x07\x42\x43", + [0x701d] = "\x07\x42\x31", [0x7020] = "\x05\x69\x3e", + [0x7021] = "\x05\x69\x2f", [0x7022] = "\x07\x4f\x5d", + [0x7023] = "\x05\x69\x30", [0x7024] = "\x05\x69\x3a", + [0x7025] = "\x05\x69\x36", [0x7026] = "\x04\x60\x7d", + [0x7027] = "\x04\x60\x79", [0x7028] = "\x05\x69\x3f", + [0x7029] = "\x05\x69\x37", [0x702a] = "\x07\x49\x38", + [0x702b] = "\x07\x49\x45", [0x702c] = "\x05\x69\x3b", + [0x702d] = "\x05\x69\x35", [0x702e] = "\x04\x60\x7c", + [0x702f] = "\x05\x69\x2e", [0x7030] = "\x05\x6d\x42", + [0x7031] = "\x07\x49\x43", [0x7032] = "\x05\x69\x38", + [0x7033] = "\x07\x49\x46", [0x7034] = "\x05\x69\x39", + [0x7035] = "\x07\x49\x41", [0x7037] = "\x07\x49\x54", + [0x7038] = "\x07\x49\x51", [0x7039] = "\x07\x49\x3c", + [0x703a] = "\x05\x69\x33", [0x703b] = "\x05\x69\x3d", + [0x703c] = "\x07\x49\x4b", [0x703d] = "\x07\x49\x4e", + [0x703e] = "\x07\x49\x3e", [0x703f] = "\x07\x49\x3d", + [0x7040] = "\x07\x49\x42", [0x7041] = "\x07\x49\x47", + [0x7042] = "\x07\x4f\x54", [0x7043] = "\x07\x49\x4d", + [0x7044] = "\x07\x49\x39", [0x7045] = "\x07\x49\x4c", + [0x7046] = "\x07\x49\x4a", [0x7047] = "\x07\x4f\x47", + [0x7048] = "\x05\x69\x34", [0x7049] = "\x05\x69\x32", + [0x704a] = "\x04\x60\x76", [0x704b] = "\x05\x69\x3c", + [0x704c] = "\x07\x49\x49", [0x704d] = "\x07\x49\x40", + [0x704f] = "\x07\x49\x3f", [0x7051] = "\x07\x49\x36", + [0x7054] = "\x07\x49\x37", [0x7055] = "\x07\x49\x3a", + [0x7056] = "\x07\x49\x48", [0x7057] = "\x07\x49\x50", + [0x7058] = "\x07\x49\x52", [0x7059] = "\x0f\x63\x51", + [0x705a] = "\x0f\x63\x52", [0x705b] = "\x0f\x63\x54", + [0x705c] = "\x0f\x63\x55", [0x705d] = "\x0f\x63\x56", + [0x705e] = "\x0f\x63\x57", [0x705f] = "\x0f\x63\x58", + [0x7060] = "\x0f\x63\x59", [0x7061] = "\x0f\x63\x5a", + [0x7062] = "\x0f\x63\x5c", [0x7063] = "\x0f\x63\x5d", + [0x7064] = "\x0f\x63\x5e", [0x7065] = "\x0f\x63\x5f", + [0x7066] = "\x0f\x63\x60", [0x7067] = "\x0f\x63\x61", + [0x7068] = "\x0f\x63\x62", [0x7069] = "\x0f\x63\x63", + [0x706a] = "\x0f\x63\x64", [0x706b] = "\x0f\x63\x65", + [0x706c] = "\x0f\x63\x66", [0x706d] = "\x0f\x63\x67", + [0x706e] = "\x0f\x63\x68", [0x706f] = "\x0f\x63\x69", + [0x7070] = "\x07\x49\x4f", [0x707b] = "\x07\x4f\x5e", + [0x707c] = "\x07\x4f\x55", [0x707d] = "\x07\x4f\x4e", + [0x707e] = "\x05\x6d\x40", [0x707f] = "\x05\x6d\x47", + [0x7080] = "\x07\x4f\x61", [0x7081] = "\x05\x6d\x41", + [0x7082] = "\x05\x6d\x44", [0x7083] = "\x04\x64\x39", + [0x7084] = "\x07\x4f\x58", [0x7085] = "\x05\x6d\x46", + [0x7086] = "\x04\x64\x35", [0x7088] = "\x05\x6d\x3f", + [0x7089] = "\x05\x70\x7e", [0x708a] = "\x07\x4f\x5f", + [0x708b] = "\x05\x6d\x3b", [0x708c] = "\x07\x4f\x51", + [0x708d] = "\x07\x4f\x50", [0x708e] = "\x07\x4f\x4c", + [0x708f] = "\x05\x6d\x3e", [0x7090] = "\x05\x6d\x45", + [0x7091] = "\x07\x4f\x4d", [0x7092] = "\x04\x64\x31", + [0x7093] = "\x07\x4f\x67", [0x7094] = "\x05\x6d\x3c", + [0x7095] = "\x07\x4f\x4b", [0x7096] = "\x07\x4f\x53", + [0x7097] = "\x07\x4f\x62", [0x7098] = "\x07\x4f\x5b", + [0x7099] = "\x07\x49\x3b", [0x709a] = "\x07\x4f\x65", + [0x709b] = "\x05\x6d\x43", [0x709c] = "\x04\x64\x2e", + [0x709d] = "\x07\x4f\x59", [0x709e] = "\x05\x6d\x3d", + [0x709f] = "\x07\x4f\x66", [0x70a1] = "\x07\x4f\x5a", + [0x70a3] = "\x05\x69\x31", [0x70a4] = "\x07\x54\x67", + [0x70a5] = "\x07\x58\x69", [0x70a7] = "\x07\x4f\x49", + [0x70a8] = "\x05\x6d\x3a", [0x70a9] = "\x05\x6d\x48", + [0x70b0] = "\x07\x4f\x52", [0x70b1] = "\x07\x4f\x56", + [0x70b2] = "\x07\x4f\x57", [0x70b3] = "\x07\x4f\x5c", + [0x70b4] = "\x07\x4f\x63", [0x70b5] = "\x07\x4f\x64", + [0x70b6] = "\x0f\x65\x79", [0x70b7] = "\x0f\x65\x7a", + [0x70b8] = "\x0f\x65\x7b", [0x70b9] = "\x0f\x65\x7c", + [0x70ba] = "\x0f\x65\x7d", [0x70bb] = "\x0f\x65\x7e", + [0x70bc] = "\x0f\x66\x21", [0x70bd] = "\x0f\x66\x22", + [0x70be] = "\x0f\x66\x23", [0x70bf] = "\x0f\x66\x24", + [0x70c0] = "\x0f\x66\x25", [0x70c1] = "\x0f\x66\x26", + [0x70c2] = "\x0f\x66\x27", [0x70c3] = "\x0f\x66\x28", + [0x70c4] = "\x0f\x66\x29", [0x70c5] = "\x0f\x66\x2a", + [0x70c6] = "\x0f\x66\x2b", [0x70c7] = "\x0f\x66\x2c", + [0x70c8] = "\x07\x4f\x4a", [0x70c9] = "\x07\x4f\x48", + [0x70ce] = "\x07\x4f\x60", [0x70cf] = "\x07\x54\x63", + [0x70d0] = "\x04\x69\x35", [0x70d1] = "\x05\x71\x28", + [0x70d2] = "\x07\x54\x66", [0x70d3] = "\x07\x54\x5f", + [0x70d4] = "\x05\x71\x24", [0x70d5] = "\x04\x67\x2c", + [0x70d6] = "\x04\x67\x2a", [0x70d7] = "\x07\x54\x59", + [0x70d8] = "\x04\x67\x2e", [0x70d9] = "\x05\x71\x22", + [0x70da] = "\x07\x54\x64", [0x70db] = "\x05\x71\x25", + [0x70dc] = "\x07\x54\x65", [0x70dd] = "\x04\x67\x29", + [0x70de] = "\x05\x6d\x49", [0x70df] = "\x05\x71\x27", + [0x70e0] = "\x07\x54\x5b", [0x70e1] = "\x07\x54\x53", + [0x70e2] = "\x05\x71\x26", [0x70e3] = "\x07\x54\x62", + [0x70e4] = "\x07\x54\x57", [0x70e5] = "\x07\x54\x55", + [0x70e6] = "\x07\x54\x60", [0x70e7] = "\x04\x67\x2d", + [0x70e8] = "\x05\x71\x23", [0x70e9] = "\x05\x71\x29", + [0x70ea] = "\x05\x71\x2a", [0x70eb] = "\x07\x54\x54", + [0x70ec] = "\x07\x54\x5c", [0x70ee] = "\x07\x4f\x4f", + [0x70ef] = "\x07\x54\x5a", [0x70f0] = "\x07\x58\x76", + [0x70f9] = "\x05\x71\x21", [0x70fa] = "\x07\x54\x56", + [0x70fb] = "\x07\x54\x5d", [0x70fc] = "\x07\x54\x61", + [0x70fd] = "\x0f\x68\x38", [0x70fe] = "\x0f\x68\x3a", + [0x70ff] = "\x0f\x68\x3b", [0x7100] = "\x0f\x68\x3c", + [0x7101] = "\x0f\x68\x3d", [0x7102] = "\x0f\x68\x3e", + [0x7103] = "\x0f\x68\x3f", [0x7104] = "\x0f\x68\x41", + [0x7105] = "\x0f\x68\x42", [0x7106] = "\x0f\x68\x43", + [0x7107] = "\x0f\x68\x44", [0x7109] = "\x0f\x68\x40", + [0x710b] = "\x07\x54\x58", [0x710d] = "\x05\x74\x24", + [0x710e] = "\x04\x69\x36", [0x710f] = "\x05\x74\x25", + [0x7110] = "\x05\x74\x27", [0x7111] = "\x05\x74\x28", + [0x7112] = "\x07\x58\x70", [0x7113] = "\x05\x74\x29", + [0x7114] = "\x04\x69\x3b", [0x7115] = "\x04\x69\x3a", + [0x7116] = "\x07\x58\x77", [0x7117] = "\x07\x58\x75", + [0x7118] = "\x07\x58\x6d", [0x7119] = "\x07\x5c\x53", + [0x711a] = "\x05\x74\x23", [0x711b] = "\x05\x74\x26", + [0x711c] = "\x07\x58\x6f", [0x711d] = "\x04\x69\x38", + [0x711e] = "\x04\x69\x39", [0x711f] = "\x07\x58\x6e", + [0x7120] = "\x04\x69\x34", [0x7121] = "\x07\x58\x73", + [0x7122] = "\x07\x58\x6b", [0x7123] = "\x07\x58\x78", + [0x7128] = "\x07\x58\x6a", [0x7129] = "\x07\x58\x6c", + [0x712a] = "\x07\x58\x71", [0x712b] = "\x07\x58\x74", + [0x712c] = "\x0f\x69\x68", [0x712d] = "\x0f\x69\x6b", + [0x712e] = "\x0f\x69\x6c", [0x7136] = "\x07\x5c\x4f", + [0x7137] = "\x07\x5c\x5a", [0x7138] = "\x04\x6a\x75", + [0x7139] = "\x05\x76\x40", [0x713a] = "\x04\x6a\x74", + [0x713b] = "\x05\x76\x3f", [0x713c] = "\x04\x6a\x71", + [0x713d] = "\x04\x6a\x73", [0x713e] = "\x04\x6a\x72", + [0x713f] = "\x04\x6a\x70", [0x7140] = "\x05\x76\x43", + [0x7141] = "\x07\x5c\x51", [0x7142] = "\x07\x5c\x5b", + [0x7143] = "\x05\x76\x42", [0x7144] = "\x05\x79\x40", + [0x7145] = "\x07\x5c\x55", [0x7146] = "\x05\x76\x44", + [0x7147] = "\x07\x5c\x57", [0x7148] = "\x07\x5c\x58", + [0x7149] = "\x07\x5c\x4d", [0x714a] = "\x07\x5c\x50", + [0x714b] = "\x05\x76\x41", [0x714c] = "\x07\x5c\x56", + [0x714d] = "\x07\x5c\x54", [0x714e] = "\x07\x5c\x52", + [0x714f] = "\x07\x5c\x59", [0x7150] = "\x0f\x6a\x6d", + [0x7151] = "\x0f\x6a\x6e", [0x7152] = "\x0f\x6a\x6f", + [0x7153] = "\x07\x5c\x4e", [0x7154] = "\x0f\x69\x6a", + [0x7156] = "\x05\x78\x23", [0x7157] = "\x05\x78\x22", + [0x7158] = "\x05\x78\x21", [0x7159] = "\x07\x5f\x40", + [0x715a] = "\x05\x78\x24", [0x715b] = "\x07\x5f\x42", + [0x715c] = "\x07\x5f\x46", [0x715d] = "\x07\x5f\x43", + [0x715e] = "\x07\x5f\x44", [0x715f] = "\x07\x5f\x49", + [0x7160] = "\x07\x5f\x41", [0x7161] = "\x07\x5f\x47", + [0x7162] = "\x05\x79\x42", [0x7166] = "\x0f\x6b\x60", + [0x7167] = "\x0f\x6b\x61", [0x7168] = "\x0f\x6b\x63", + [0x7169] = "\x07\x5f\x45", [0x716a] = "\x07\x5f\x48", + [0x716e] = "\x05\x79\x43", [0x716f] = "\x07\x62\x55", + [0x7170] = "\x05\x79\x41", [0x7171] = "\x07\x62\x53", + [0x7172] = "\x07\x61\x3e", [0x7173] = "\x07\x61\x3d", + [0x7174] = "\x07\x61\x3c", [0x7176] = "\x0f\x6c\x38", + [0x7177] = "\x0f\x6c\x39", [0x7178] = "\x07\x61\x3f", + [0x717a] = "\x05\x7a\x35", [0x717b] = "\x05\x7a\x36", + [0x717c] = "\x07\x62\x59", [0x717d] = "\x07\x62\x57", + [0x717e] = "\x07\x62\x56", [0x7181] = "\x07\x62\x58", + [0x7183] = "\x07\x62\x54", [0x7185] = "\x0f\x6c\x51", + [0x7186] = "\x07\x62\x48", [0x7187] = "\x04\x6d\x7a", + [0x7188] = "\x07\x63\x68", [0x7189] = "\x05\x7a\x72", + [0x718a] = "\x04\x6d\x5f", [0x718b] = "\x04\x6d\x7c", + [0x718d] = "\x0f\x6c\x6b", [0x718e] = "\x0f\x6c\x6d", + [0x718f] = "\x05\x7b\x46", [0x7190] = "\x04\x6e\x35", + [0x7191] = "\x07\x64\x58", [0x7192] = "\x07\x64\x59", + [0x7193] = "\x05\x7c\x49", [0x7194] = "\x07\x65\x40", + [0x7195] = "\x05\x7b\x66", [0x7196] = "\x07\x65\x60", + [0x7197] = "\x07\x65\x76", [0x7198] = "\x05\x7c\x4f", + [0x7199] = "\x05\x7c\x3d", [0x719a] = "\x07\x65\x5f", + [0x719b] = "\x0f\x28\x65", [0x719c] = "\x04\x2b\x3f", + [0x719d] = "\x06\x34\x49", [0x719e] = "\x06\x34\x48", + [0x71a0] = "\x0f\x32\x4e", [0x71a3] = "\x05\x35\x36", + [0x71a4] = "\x05\x35\x34", [0x71a5] = "\x04\x34\x77", + [0x71a6] = "\x04\x34\x76", [0x71a7] = "\x06\x44\x41", + [0x71a8] = "\x04\x34\x78", [0x71a9] = "\x06\x44\x42", + [0x71aa] = "\x06\x44\x40", [0x71ab] = "\x06\x44\x3f", + [0x71ac] = "\x06\x3b\x63", [0x71b1] = "\x06\x4e\x3c", + [0x71b2] = "\x05\x3b\x71", [0x71b3] = "\x06\x4e\x3d", + [0x71b4] = "\x0f\x3f\x22", [0x71b5] = "\x0f\x3f\x23", + [0x71b6] = "\x0f\x3f\x24", [0x71ba] = "\x05\x42\x55", + [0x71bb] = "\x05\x42\x51", [0x71bc] = "\x05\x42\x52", + [0x71bd] = "\x06\x57\x6b", [0x71be] = "\x06\x57\x6a", + [0x71bf] = "\x06\x57\x69", [0x71c1] = "\x05\x49\x4f", + [0x71c2] = "\x06\x61\x62", [0x71c3] = "\x06\x61\x66", + [0x71c4] = "\x04\x46\x6f", [0x71c5] = "\x06\x61\x65", + [0x71c6] = "\x06\x61\x67", [0x71c7] = "\x06\x61\x63", + [0x71c8] = "\x06\x61\x64", [0x71c9] = "\x05\x49\x50", + [0x71ca] = "\x0f\x4c\x2b", [0x71cb] = "\x0f\x4c\x2c", + [0x71cd] = "\x04\x46\x6e", [0x71d0] = "\x07\x28\x29", + [0x71d1] = "\x07\x28\x27", [0x71d2] = "\x07\x32\x5f", + [0x71d3] = "\x05\x50\x4e", [0x71d4] = "\x07\x28\x26", + [0x71d5] = "\x07\x28\x28", [0x71d7] = "\x0f\x51\x79", + [0x71d8] = "\x07\x26\x29", [0x71dc] = "\x05\x57\x6a", + [0x71dd] = "\x05\x57\x6b", [0x71de] = "\x05\x57\x68", + [0x71df] = "\x05\x57\x69", [0x71e0] = "\x04\x53\x35", + [0x71e1] = "\x05\x57\x67", [0x71e2] = "\x07\x32\x60", + [0x71e3] = "\x07\x32\x5c", [0x71e4] = "\x07\x32\x5d", + [0x71e5] = "\x04\x53\x38", [0x71e6] = "\x04\x53\x37", + [0x71e7] = "\x05\x57\x6d", [0x71e8] = "\x07\x32\x5e", + [0x71e9] = "\x0f\x57\x5d", [0x71ea] = "\x0f\x57\x5e", + [0x71eb] = "\x0f\x57\x5f", [0x71ec] = "\x05\x57\x6c", + [0x71ed] = "\x07\x32\x5b", [0x71f1] = "\x04\x58\x4c", + [0x71f2] = "\x07\x3b\x39", [0x71f3] = "\x0f\x5c\x51", + [0x71f4] = "\x0f\x5c\x52", [0x71f5] = "\x0f\x5c\x53", + [0x71fb] = "\x07\x42\x51", [0x71fc] = "\x05\x64\x3d", + [0x71fd] = "\x04\x5d\x33", [0x71fe] = "\x07\x42\x50", + [0x71ff] = "\x04\x5d\x31", [0x7200] = "\x07\x42\x52", + [0x7201] = "\x05\x64\x3c", [0x7203] = "\x0f\x60\x60", + [0x7206] = "\x07\x49\x56", [0x7207] = "\x07\x49\x55", + [0x7208] = "\x04\x60\x7e", [0x7209] = "\x07\x49\x57", + [0x720b] = "\x07\x4f\x69", [0x720d] = "\x05\x6d\x4a", + [0x720e] = "\x07\x4f\x6a", [0x7210] = "\x07\x4c\x26", + [0x7211] = "\x05\x71\x2c", [0x7212] = "\x07\x4f\x68", + [0x7213] = "\x05\x71\x2b", [0x7215] = "\x05\x70\x4d", + [0x7216] = "\x07\x54\x6a", [0x7217] = "\x07\x54\x69", + [0x7218] = "\x05\x74\x2a", [0x721a] = "\x07\x5c\x24", + [0x721c] = "\x04\x6e\x38", [0x721d] = "\x05\x24\x75", + [0x721e] = "\x06\x29\x29", [0x721f] = "\x04\x28\x22", + [0x7220] = "\x06\x2e\x25", [0x7223] = "\x0f\x28\x66", + [0x7224] = "\x0f\x28\x67", [0x7225] = "\x0f\x28\x69", + [0x7227] = "\x0f\x28\x6a", [0x7228] = "\x04\x2b\x43", + [0x7229] = "\x06\x34\x4b", [0x722a] = "\x04\x2b\x40", + [0x722b] = "\x04\x2b\x42", [0x722c] = "\x06\x34\x4a", + [0x722d] = "\x05\x2b\x40", [0x722e] = "\x06\x34\x4d", + [0x722f] = "\x06\x34\x4c", [0x7230] = "\x06\x34\x4e", + [0x7234] = "\x0f\x2d\x3d", [0x7235] = "\x0f\x2d\x3f", + [0x7236] = "\x0f\x2d\x42", [0x7237] = "\x0f\x2d\x43", + [0x7238] = "\x0f\x2d\x44", [0x7239] = "\x0f\x2d\x41", + [0x723a] = "\x04\x2b\x41", [0x723b] = "\x05\x30\x30", + [0x723c] = "\x06\x3b\x68", [0x723d] = "\x05\x30\x2c", + [0x723e] = "\x05\x30\x33", [0x723f] = "\x06\x3b\x67", + [0x7240] = "\x05\x30\x2d", [0x7241] = "\x05\x30\x32", + [0x7242] = "\x06\x3b\x66", [0x7243] = "\x04\x2f\x6c", + [0x7244] = "\x04\x2f\x6a", [0x7245] = "\x04\x2f\x6e", + [0x7246] = "\x05\x30\x2e", [0x7247] = "\x06\x3b\x70", + [0x7248] = "\x05\x30\x29", [0x7249] = "\x06\x3b\x6b", + [0x724a] = "\x05\x30\x31", [0x724b] = "\x05\x30\x28", + [0x724c] = "\x06\x3b\x6a", [0x724d] = "\x05\x30\x2f", + [0x724e] = "\x05\x30\x34", [0x724f] = "\x06\x3b\x6e", + [0x7250] = "\x06\x3b\x64", [0x7251] = "\x05\x30\x2b", + [0x7255] = "\x06\x3b\x65", [0x7256] = "\x0f\x32\x4f", + [0x7257] = "\x06\x3b\x6c", [0x7258] = "\x06\x3b\x6d", + [0x725b] = "\x05\x30\x2a", [0x725c] = "\x06\x3b\x6f", + [0x725e] = "\x05\x35\x37", [0x725f] = "\x04\x34\x7d", + [0x7260] = "\x06\x44\x45", [0x7261] = "\x05\x35\x38", + [0x7262] = "\x05\x35\x39", [0x7263] = "\x05\x35\x3a", + [0x7264] = "\x05\x35\x40", [0x7265] = "\x04\x35\x22", + [0x7266] = "\x0f\x38\x3d", [0x7267] = "\x04\x35\x23", + [0x7268] = "\x06\x44\x4c", [0x7269] = "\x05\x35\x3c", + [0x726a] = "\x04\x35\x21", [0x726b] = "\x05\x35\x3d", + [0x726c] = "\x06\x44\x46", [0x726d] = "\x05\x35\x41", + [0x726e] = "\x06\x44\x49", [0x726f] = "\x04\x35\x24", + [0x7270] = "\x04\x34\x7e", [0x7273] = "\x06\x44\x47", + [0x7274] = "\x06\x44\x4a", [0x7275] = "\x06\x44\x44", + [0x7276] = "\x06\x44\x4b", [0x7277] = "\x06\x44\x4d", + [0x727b] = "\x0f\x38\x36", [0x727c] = "\x0f\x38\x37", + [0x727d] = "\x0f\x38\x38", [0x727e] = "\x0f\x38\x39", + [0x727f] = "\x0f\x38\x3b", [0x7280] = "\x0f\x38\x3c", + [0x7281] = "\x0f\x38\x3e", [0x7282] = "\x0f\x38\x3f", + [0x7283] = "\x0f\x38\x40", [0x7285] = "\x05\x35\x3e", + [0x7286] = "\x06\x44\x4e", [0x7287] = "\x04\x35\x25", + [0x7288] = "\x06\x44\x43", [0x728d] = "\x05\x35\x3f", + [0x728e] = "\x05\x35\x3b", [0x728f] = "\x05\x3b\x73", + [0x7290] = "\x06\x4e\x40", [0x7291] = "\x0f\x3f\x28", + [0x7292] = "\x04\x3a\x73", [0x7293] = "\x06\x4e\x48", + [0x7294] = "\x05\x3c\x28", [0x7295] = "\x05\x3b\x78", + [0x7296] = "\x05\x3b\x75", [0x7297] = "\x05\x3b\x77", + [0x7298] = "\x05\x3b\x7a", [0x7299] = "\x05\x3c\x23", + [0x729a] = "\x05\x3b\x7d", [0x729b] = "\x06\x4e\x49", + [0x729c] = "\x06\x4e\x3e", [0x729d] = "\x06\x4e\x43", + [0x729e] = "\x05\x3b\x76", [0x729f] = "\x05\x3c\x27", + [0x72a0] = "\x06\x4e\x42", [0x72a1] = "\x06\x4e\x4b", + [0x72a2] = "\x06\x4e\x4a", [0x72a3] = "\x05\x3b\x7c", + [0x72a4] = "\x06\x4e\x3f", [0x72a5] = "\x05\x3b\x79", + [0x72a6] = "\x05\x3c\x21", [0x72a7] = "\x06\x4e\x4d", + [0x72a8] = "\x06\x4e\x44", [0x72a9] = "\x06\x4e\x45", + [0x72ab] = "\x06\x57\x6e", [0x72ac] = "\x05\x3c\x25", + [0x72ad] = "\x05\x3b\x7e", [0x72ae] = "\x06\x57\x78", + [0x72af] = "\x05\x3c\x24", [0x72b0] = "\x06\x4e\x4c", + [0x72b1] = "\x06\x4e\x47", [0x72b6] = "\x05\x3c\x22", + [0x72b7] = "\x05\x3b\x72", [0x72b8] = "\x06\x4e\x41", + [0x72b9] = "\x0f\x3f\x25", [0x72ba] = "\x0f\x3f\x26", + [0x72bb] = "\x0f\x3f\x27", [0x72bc] = "\x0f\x3f\x29", + [0x72bf] = "\x04\x3a\x77", [0x72c8] = "\x06\x57\x70", + [0x72c9] = "\x06\x57\x6f", [0x72ca] = "\x04\x40\x5a", + [0x72cb] = "\x04\x40\x5c", [0x72cc] = "\x06\x57\x74", + [0x72cd] = "\x04\x40\x54", [0x72ce] = "\x05\x42\x58", + [0x72cf] = "\x05\x42\x5b", [0x72d0] = "\x05\x42\x56", + [0x72d1] = "\x04\x40\x51", [0x72d2] = "\x04\x40\x53", + [0x72d3] = "\x05\x42\x5c", [0x72d4] = "\x05\x42\x5e", + [0x72d5] = "\x05\x42\x5a", [0x72d6] = "\x05\x42\x57", + [0x72d7] = "\x04\x40\x5e", [0x72d8] = "\x04\x40\x50", + [0x72d9] = "\x06\x57\x72", [0x72db] = "\x06\x57\x73", + [0x72dc] = "\x06\x57\x6c", [0x72dd] = "\x06\x57\x6d", + [0x72de] = "\x06\x61\x68", [0x72df] = "\x06\x57\x71", + [0x72e0] = "\x06\x57\x75", [0x72e1] = "\x05\x42\x59", + [0x72e7] = "\x0f\x45\x32", [0x72e8] = "\x0f\x45\x33", + [0x72e9] = "\x0f\x45\x34", [0x72ea] = "\x0f\x45\x35", + [0x72eb] = "\x0f\x45\x36", [0x72ec] = "\x0f\x45\x37", + [0x72ed] = "\x0f\x45\x38", [0x72ee] = "\x0f\x45\x39", + [0x72ef] = "\x06\x57\x76", [0x72f0] = "\x07\x49\x6b", + [0x72f3] = "\x06\x57\x77", [0x7301] = "\x06\x57\x79", + [0x7303] = "\x05\x49\x51", [0x7304] = "\x05\x49\x56", + [0x7305] = "\x05\x49\x5b", [0x7306] = "\x05\x49\x57", + [0x7307] = "\x05\x49\x5c", [0x7308] = "\x04\x47\x21", + [0x7309] = "\x05\x49\x55", [0x730a] = "\x04\x46\x7d", + [0x730b] = "\x06\x62\x23", [0x730c] = "\x05\x49\x5f", + [0x730d] = "\x04\x46\x77", [0x730e] = "\x05\x49\x59", + [0x730f] = "\x04\x46\x74", [0x7310] = "\x06\x61\x76", + [0x7311] = "\x06\x61\x6a", [0x7312] = "\x06\x61\x75", + [0x7313] = "\x04\x47\x22", [0x7314] = "\x05\x49\x5e", + [0x7315] = "\x06\x61\x6b", [0x7316] = "\x06\x61\x71", + [0x7317] = "\x05\x49\x54", [0x7318] = "\x06\x61\x7c", + [0x7319] = "\x05\x49\x5d", [0x731a] = "\x05\x49\x58", + [0x731b] = "\x06\x61\x7b", [0x731c] = "\x06\x62\x21", + [0x731d] = "\x05\x49\x60", [0x731f] = "\x06\x61\x74", + [0x7320] = "\x06\x61\x7d", [0x7321] = "\x06\x61\x6d", + [0x7322] = "\x05\x49\x61", [0x7323] = "\x05\x49\x62", + [0x7324] = "\x06\x61\x72", [0x7326] = "\x06\x62\x22", + [0x7327] = "\x05\x49\x5a", [0x7328] = "\x06\x61\x6c", + [0x7329] = "\x06\x61\x79", [0x732a] = "\x06\x61\x7a", + [0x732b] = "\x06\x61\x70", [0x732c] = "\x05\x49\x52", + [0x732d] = "\x06\x61\x6e", [0x7334] = "\x05\x49\x53", + [0x7335] = "\x06\x61\x73", [0x7336] = "\x0f\x4c\x2d", + [0x7337] = "\x0f\x4c\x2e", [0x7338] = "\x0f\x4c\x30", + [0x7339] = "\x0f\x4c\x31", [0x733a] = "\x0f\x4c\x32", + [0x733b] = "\x06\x61\x78", [0x733d] = "\x04\x40\x58", + [0x733f] = "\x06\x61\x7e", [0x7351] = "\x06\x61\x6f", + [0x7352] = "\x04\x4d\x2d", [0x7353] = "\x07\x28\x43", + [0x7354] = "\x05\x50\x53", [0x7355] = "\x04\x4d\x2e", + [0x7356] = "\x04\x4d\x2b", [0x7357] = "\x07\x28\x38", + [0x7358] = "\x04\x4d\x34", [0x7359] = "\x05\x50\x5f", + [0x735a] = "\x07\x28\x37", [0x735b] = "\x07\x28\x2c", + [0x735c] = "\x05\x50\x51", [0x735d] = "\x07\x28\x2b", + [0x735e] = "\x07\x28\x35", [0x735f] = "\x07\x28\x3f", + [0x7360] = "\x05\x50\x57", [0x7361] = "\x04\x4d\x32", + [0x7362] = "\x04\x4d\x2a", [0x7363] = "\x07\x28\x40", + [0x7364] = "\x07\x28\x34", [0x7365] = "\x05\x50\x56", + [0x7366] = "\x07\x28\x3b", [0x7367] = "\x07\x28\x31", + [0x7368] = "\x07\x28\x3e", [0x7369] = "\x05\x57\x6e", + [0x736a] = "\x04\x4d\x2c", [0x736b] = "\x04\x4d\x29", + [0x736c] = "\x05\x50\x5c", [0x736d] = "\x05\x50\x5a", + [0x736e] = "\x05\x50\x50", [0x736f] = "\x05\x50\x59", + [0x7370] = "\x05\x50\x58", [0x7371] = "\x07\x28\x2a", + [0x7372] = "\x05\x50\x5b", [0x7373] = "\x04\x46\x7a", + [0x7374] = "\x05\x50\x52", [0x7375] = "\x05\x50\x5e", + [0x7376] = "\x05\x50\x5d", [0x7377] = "\x04\x4d\x35", + [0x7378] = "\x07\x28\x46", [0x7379] = "\x07\x28\x30", + [0x737a] = "\x07\x28\x2d", [0x737b] = "\x07\x28\x44", + [0x737c] = "\x07\x28\x39", [0x737d] = "\x07\x28\x45", + [0x737e] = "\x07\x28\x3c", [0x737f] = "\x07\x28\x2f", + [0x7380] = "\x06\x61\x77", [0x7381] = "\x07\x28\x36", + [0x7382] = "\x07\x28\x3d", [0x7383] = "\x05\x50\x54", + [0x7384] = "\x04\x4d\x27", [0x7388] = "\x05\x50\x4f", + [0x7389] = "\x0f\x51\x7a", [0x738a] = "\x0f\x51\x7b", + [0x738b] = "\x0f\x51\x7e", [0x738c] = "\x0f\x52\x21", + [0x738d] = "\x0f\x52\x22", [0x738e] = "\x0f\x52\x23", + [0x738f] = "\x0f\x52\x25", [0x7390] = "\x0f\x52\x28", + [0x7391] = "\x0f\x52\x29", [0x7392] = "\x0f\x52\x2a", + [0x7393] = "\x0f\x52\x2b", [0x7394] = "\x07\x28\x33", + [0x7397] = "\x07\x28\x41", [0x7398] = "\x07\x28\x3a", + [0x739a] = "\x0f\x52\x27", [0x739e] = "\x07\x28\x32", + [0x739f] = "\x0f\x4c\x2f", [0x73a1] = "\x05\x57\x70", + [0x73a2] = "\x04\x53\x45", [0x73a3] = "\x05\x57\x76", + [0x73a4] = "\x05\x57\x75", [0x73a5] = "\x04\x53\x3a", + [0x73a6] = "\x05\x57\x74", [0x73a8] = "\x05\x57\x71", + [0x73a9] = "\x07\x32\x6e", [0x73aa] = "\x07\x32\x7d", + [0x73ab] = "\x05\x57\x77", [0x73ac] = "\x04\x53\x48", + [0x73ad] = "\x05\x57\x7b", [0x73ae] = "\x04\x53\x49", + [0x73af] = "\x04\x53\x40", [0x73b0] = "\x04\x53\x42", + [0x73b1] = "\x05\x57\x7c", [0x73b2] = "\x07\x32\x6d", + [0x73b3] = "\x04\x53\x3b", [0x73b4] = "\x07\x32\x67", + [0x73b5] = "\x04\x53\x3f", [0x73b6] = "\x07\x32\x7c", + [0x73b7] = "\x05\x57\x79", [0x73b8] = "\x05\x57\x6f", + [0x73b9] = "\x05\x58\x21", [0x73ba] = "\x05\x57\x72", + [0x73bb] = "\x07\x3b\x3a", [0x73bc] = "\x05\x57\x78", + [0x73bd] = "\x07\x32\x69", [0x73be] = "\x04\x53\x46", + [0x73bf] = "\x05\x57\x7a", [0x73c0] = "\x07\x32\x70", + [0x73c1] = "\x07\x33\x22", [0x73c2] = "\x05\x57\x73", + [0x73c3] = "\x07\x32\x64", [0x73c4] = "\x05\x57\x7e", + [0x73c5] = "\x07\x32\x74", [0x73c6] = "\x04\x53\x47", + [0x73c7] = "\x05\x50\x60", [0x73c8] = "\x07\x32\x6b", + [0x73c9] = "\x07\x32\x65", [0x73ca] = "\x05\x57\x7d", + [0x73cb] = "\x07\x32\x76", [0x73cc] = "\x04\x53\x43", + [0x73cd] = "\x07\x32\x7b", [0x73ce] = "\x07\x33\x24", + [0x73cf] = "\x07\x32\x62", [0x73d0] = "\x07\x32\x77", + [0x73d1] = "\x07\x32\x63", [0x73d2] = "\x07\x32\x78", + [0x73d3] = "\x07\x32\x6f", [0x73d4] = "\x07\x32\x7e", + [0x73d5] = "\x07\x32\x72", [0x73dc] = "\x07\x32\x68", + [0x73dd] = "\x07\x33\x23", [0x73de] = "\x0f\x57\x60", + [0x73df] = "\x0f\x57\x61", [0x73e0] = "\x0f\x57\x63", + [0x73e1] = "\x0f\x57\x64", [0x73e2] = "\x0f\x57\x65", + [0x73e3] = "\x0f\x57\x66", [0x73e4] = "\x07\x32\x79", + [0x73e6] = "\x07\x32\x6a", [0x73e8] = "\x07\x32\x7a", + [0x73e9] = "\x07\x32\x71", [0x73ea] = "\x07\x32\x66", + [0x73ec] = "\x07\x32\x6c", [0x73f8] = "\x04\x58\x59", + [0x73f9] = "\x05\x5e\x29", [0x73fa] = "\x05\x5e\x2c", + [0x73fb] = "\x04\x58\x55", [0x73fc] = "\x07\x3b\x52", + [0x73fd] = "\x07\x3b\x44", [0x73fe] = "\x04\x58\x60", + [0x73ff] = "\x04\x58\x5c", [0x7400] = "\x07\x3b\x48", + [0x7401] = "\x07\x3b\x42", [0x7402] = "\x07\x3b\x55", + [0x7404] = "\x04\x58\x5e", [0x7405] = "\x07\x3b\x46", + [0x7406] = "\x07\x28\x47", [0x7407] = "\x04\x58\x50", + [0x7408] = "\x05\x5e\x31", [0x7409] = "\x07\x3b\x50", + [0x740a] = "\x07\x3b\x3f", [0x740b] = "\x04\x58\x5d", + [0x740c] = "\x07\x3b\x4f", [0x740d] = "\x05\x5e\x2b", + [0x740e] = "\x05\x5e\x2f", [0x740f] = "\x07\x3b\x53", + [0x7410] = "\x04\x58\x5a", [0x7411] = "\x07\x3b\x47", + [0x7412] = "\x07\x3b\x41", [0x7413] = "\x05\x5e\x33", + [0x7414] = "\x04\x58\x53", [0x7415] = "\x07\x3b\x40", + [0x7416] = "\x04\x58\x51", [0x7417] = "\x07\x3b\x3e", + [0x7418] = "\x07\x3b\x54", [0x7419] = "\x05\x5e\x2a", + [0x741a] = "\x07\x3b\x3c", [0x741b] = "\x07\x3b\x3b", + [0x741c] = "\x07\x3b\x49", [0x741d] = "\x04\x58\x5b", + [0x741e] = "\x05\x5e\x2d", [0x741f] = "\x05\x5e\x2e", + [0x7423] = "\x07\x3b\x45", [0x7424] = "\x0f\x5c\x54", + [0x7425] = "\x0f\x5c\x55", [0x7426] = "\x0f\x5c\x56", + [0x7427] = "\x0f\x5c\x57", [0x7428] = "\x0f\x5c\x58", + [0x7429] = "\x0f\x5c\x59", [0x742a] = "\x0f\x5c\x5a", + [0x742b] = "\x0f\x5c\x5c", [0x742d] = "\x07\x3b\x43", + [0x742e] = "\x07\x3b\x4b", [0x742f] = "\x07\x3b\x4e", + [0x7431] = "\x07\x3b\x51", [0x7433] = "\x07\x3b\x3d", + [0x7434] = "\x05\x5e\x28", [0x7435] = "\x07\x3b\x4a", + [0x7436] = "\x07\x3b\x4c", [0x7440] = "\x05\x5e\x30", + [0x7444] = "\x04\x5d\x3d", [0x7445] = "\x04\x5d\x37", + [0x7446] = "\x07\x42\x55", [0x7447] = "\x07\x42\x61", + [0x7448] = "\x07\x42\x58", [0x7449] = "\x07\x42\x68", + [0x744a] = "\x05\x64\x43", [0x744b] = "\x05\x64\x44", + [0x744c] = "\x05\x5e\x34", [0x744d] = "\x04\x5d\x38", + [0x744e] = "\x05\x64\x50", [0x744f] = "\x07\x42\x59", + [0x7450] = "\x04\x5d\x36", [0x7451] = "\x05\x64\x45", + [0x7452] = "\x04\x5d\x35", [0x7453] = "\x04\x5d\x3a", + [0x7454] = "\x05\x64\x3f", [0x7455] = "\x05\x64\x42", + [0x7456] = "\x05\x64\x4d", [0x7457] = "\x04\x5d\x34", + [0x7458] = "\x05\x64\x4a", [0x7459] = "\x07\x42\x56", + [0x745a] = "\x05\x64\x3e", [0x745c] = "\x05\x64\x41", + [0x745d] = "\x05\x64\x4b", [0x745e] = "\x07\x42\x57", + [0x745f] = "\x07\x42\x5c", [0x7460] = "\x07\x42\x5b", + [0x7461] = "\x05\x64\x40", [0x7462] = "\x07\x42\x6f", + [0x7463] = "\x07\x42\x6b", [0x7464] = "\x05\x64\x4f", + [0x7465] = "\x07\x42\x6e", [0x7466] = "\x05\x64\x49", + [0x7467] = "\x05\x64\x4c", [0x7468] = "\x07\x42\x69", + [0x7469] = "\x05\x64\x46", [0x746a] = "\x07\x42\x6c", + [0x746b] = "\x05\x64\x47", [0x746c] = "\x07\x42\x65", + [0x746d] = "\x07\x42\x62", [0x746e] = "\x07\x42\x5d", + [0x746f] = "\x07\x42\x63", [0x7470] = "\x07\x42\x54", + [0x7471] = "\x07\x42\x5a", [0x7472] = "\x07\x42\x53", + [0x7473] = "\x07\x42\x5e", [0x7474] = "\x07\x42\x6a", + [0x7478] = "\x07\x42\x66", [0x7479] = "\x0f\x60\x62", + [0x747a] = "\x0f\x60\x64", [0x747b] = "\x0f\x60\x65", + [0x747c] = "\x0f\x60\x66", [0x747d] = "\x0f\x60\x68", + [0x747e] = "\x0f\x60\x69", [0x747f] = "\x0f\x60\x6a", + [0x7481] = "\x07\x42\x64", [0x7482] = "\x04\x5d\x3c", + [0x7483] = "\x07\x42\x67", [0x7484] = "\x0f\x60\x67", + [0x7486] = "\x0f\x60\x61", [0x7488] = "\x05\x64\x4e", + [0x748e] = "\x04\x61\x28", [0x748f] = "\x07\x49\x6a", + [0x7490] = "\x07\x49\x59", [0x7491] = "\x07\x49\x60", + [0x7492] = "\x07\x49\x6c", [0x7493] = "\x07\x49\x5a", + [0x7494] = "\x07\x49\x69", [0x7495] = "\x07\x49\x6d", + [0x7496] = "\x04\x61\x23", [0x7497] = "\x05\x69\x42", + [0x7498] = "\x05\x69\x40", [0x749a] = "\x07\x49\x62", + [0x749b] = "\x07\x49\x67", [0x749c] = "\x07\x49\x65", + [0x749d] = "\x05\x69\x44", [0x749e] = "\x07\x49\x5d", + [0x749f] = "\x07\x49\x68", [0x74a1] = "\x07\x49\x64", + [0x74a2] = "\x07\x49\x66", [0x74a3] = "\x07\x4f\x6b", + [0x74a4] = "\x07\x49\x61", [0x74a5] = "\x07\x49\x6e", + [0x74a6] = "\x07\x49\x6f", [0x74a7] = "\x07\x49\x63", + [0x74a8] = "\x05\x69\x45", [0x74a9] = "\x07\x49\x5c", + [0x74aa] = "\x07\x49\x5f", [0x74ab] = "\x07\x49\x58", + [0x74b2] = "\x0f\x63\x6b", [0x74b3] = "\x0f\x63\x6c", + [0x74b4] = "\x0f\x63\x6d", [0x74b5] = "\x0f\x63\x6f", + [0x74b6] = "\x0f\x63\x70", [0x74b7] = "\x0f\x63\x71", + [0x74b8] = "\x0f\x63\x72", [0x74b9] = "\x0f\x63\x73", + [0x74ba] = "\x0f\x63\x74", [0x74bb] = "\x0f\x63\x75", + [0x74bc] = "\x07\x49\x5b", [0x74bd] = "\x04\x61\x22", + [0x74be] = "\x04\x61\x27", [0x74bf] = "\x07\x49\x5e", + [0x74c8] = "\x07\x42\x70", [0x74c9] = "\x07\x4f\x75", + [0x74ca] = "\x07\x4f\x7a", [0x74cb] = "\x05\x6d\x4d", + [0x74cc] = "\x07\x4f\x6c", [0x74ce] = "\x04\x64\x42", + [0x74cf] = "\x05\x6d\x4c", [0x74d0] = "\x05\x6d\x51", + [0x74d1] = "\x07\x4f\x78", [0x74d2] = "\x07\x4f\x70", + [0x74d3] = "\x05\x6d\x50", [0x74d4] = "\x07\x4f\x74", + [0x74d5] = "\x05\x6d\x52", [0x74d6] = "\x05\x6d\x53", + [0x74d7] = "\x07\x4f\x73", [0x74d8] = "\x05\x6d\x4e", + [0x74d9] = "\x07\x4f\x72", [0x74da] = "\x07\x4f\x77", + [0x74db] = "\x07\x4f\x71", [0x74dc] = "\x07\x4f\x6d", + [0x74dd] = "\x05\x6d\x4f", [0x74de] = "\x07\x4f\x6f", + [0x74df] = "\x07\x54\x77", [0x74e1] = "\x07\x4f\x6e", + [0x74e2] = "\x07\x4f\x7b", [0x74e3] = "\x0f\x66\x2d", + [0x74e4] = "\x0f\x66\x2e", [0x74e5] = "\x0f\x66\x2f", + [0x74e6] = "\x0f\x66\x30", [0x74e7] = "\x0f\x66\x31", + [0x74eb] = "\x07\x4f\x76", [0x74ec] = "\x04\x67\x2f", + [0x74f1] = "\x04\x67\x34", [0x74f2] = "\x07\x54\x6b", + [0x74f3] = "\x07\x54\x70", [0x74f4] = "\x05\x71\x2f", + [0x74f5] = "\x07\x54\x75", [0x74f6] = "\x07\x54\x6e", + [0x74f7] = "\x07\x54\x71", [0x74f8] = "\x05\x71\x2e", + [0x74f9] = "\x07\x54\x73", [0x74fa] = "\x05\x71\x2d", + [0x74fb] = "\x05\x71\x30", [0x74fc] = "\x07\x54\x6c", + [0x74fd] = "\x04\x67\x33", [0x74fe] = "\x07\x54\x6f", + [0x74ff] = "\x04\x67\x35", [0x7500] = "\x04\x67\x31", + [0x7501] = "\x07\x54\x72", [0x7502] = "\x05\x71\x32", + [0x7503] = "\x07\x54\x78", [0x7504] = "\x07\x4f\x79", + [0x7506] = "\x07\x54\x74", [0x7507] = "\x04\x67\x32", + [0x7508] = "\x07\x54\x79", [0x750e] = "\x05\x71\x31", + [0x750f] = "\x05\x71\x33", [0x7510] = "\x07\x54\x76", + [0x7511] = "\x0f\x68\x45", [0x7512] = "\x0f\x68\x46", + [0x7513] = "\x0f\x68\x47", [0x7514] = "\x0f\x68\x48", + [0x7515] = "\x0f\x68\x49", [0x7518] = "\x07\x54\x6d", + [0x751d] = "\x05\x74\x2e", [0x751e] = "\x04\x69\x3c", + [0x751f] = "\x05\x74\x2c", [0x7520] = "\x05\x74\x2b", + [0x7521] = "\x07\x59\x23", [0x7522] = "\x07\x58\x7c", + [0x7523] = "\x05\x74\x2d", [0x7524] = "\x05\x74\x31", + [0x7525] = "\x05\x74\x30", [0x7526] = "\x07\x58\x7a", + [0x7527] = "\x05\x74\x33", [0x7528] = "\x05\x74\x35", + [0x752a] = "\x05\x74\x32", [0x752b] = "\x07\x58\x79", + [0x752c] = "\x04\x69\x3d", [0x752e] = "\x07\x59\x26", + [0x752f] = "\x07\x59\x28", [0x7530] = "\x07\x59\x27", + [0x7531] = "\x07\x58\x7e", [0x7532] = "\x07\x59\x21", + [0x7533] = "\x05\x74\x34", [0x7534] = "\x05\x74\x36", + [0x7535] = "\x07\x59\x24", [0x7536] = "\x07\x59\x29", + [0x7537] = "\x05\x74\x2f", [0x753a] = "\x07\x58\x7d", + [0x753d] = "\x07\x58\x7b", [0x7541] = "\x0f\x69\x6d", + [0x7542] = "\x0f\x69\x6e", [0x7543] = "\x05\x76\x46", + [0x7544] = "\x04\x6a\x76", [0x7545] = "\x04\x6a\x77", + [0x7546] = "\x07\x5c\x5d", [0x7547] = "\x05\x76\x47", + [0x7548] = "\x04\x6a\x79", [0x7549] = "\x07\x5c\x5f", + [0x754a] = "\x07\x5c\x5c", [0x754b] = "\x05\x76\x48", + [0x754c] = "\x07\x5c\x62", [0x754d] = "\x05\x76\x45", + [0x754e] = "\x07\x5f\x4a", [0x754f] = "\x07\x5c\x60", + [0x7550] = "\x04\x6a\x7a", [0x7551] = "\x07\x5c\x61", + [0x7552] = "\x05\x76\x4a", [0x7554] = "\x07\x59\x22", + [0x7555] = "\x05\x76\x49", [0x7556] = "\x0f\x6a\x70", + [0x7557] = "\x0f\x6a\x71", [0x7558] = "\x0f\x6a\x72", + [0x755b] = "\x05\x78\x2c", [0x755c] = "\x07\x5f\x4b", + [0x755d] = "\x04\x6b\x7e", [0x755e] = "\x05\x78\x2b", + [0x755f] = "\x05\x78\x29", [0x7560] = "\x07\x5f\x4c", + [0x7561] = "\x05\x78\x26", [0x7562] = "\x04\x6c\x22", + [0x7563] = "\x07\x5f\x4d", [0x7564] = "\x05\x78\x2a", + [0x7565] = "\x05\x78\x28", [0x7566] = "\x04\x6c\x24", + [0x7567] = "\x05\x78\x2d", [0x7568] = "\x05\x78\x27", + [0x756e] = "\x05\x79\x44", [0x756f] = "\x04\x6c\x7e", + [0x7570] = "\x05\x79\x48", [0x7571] = "\x05\x79\x4a", + [0x7572] = "\x04\x6c\x21", [0x7573] = "\x07\x61\x40", + [0x7574] = "\x05\x79\x46", [0x7575] = "\x07\x61\x44", + [0x7576] = "\x07\x61\x43", [0x7577] = "\x07\x61\x45", + [0x7578] = "\x05\x79\x47", [0x7579] = "\x05\x79\x49", + [0x757a] = "\x07\x61\x41", [0x757c] = "\x05\x79\x45", + [0x757d] = "\x07\x62\x5d", [0x757e] = "\x07\x62\x5b", + [0x757f] = "\x07\x62\x5e", [0x7580] = "\x07\x62\x5c", + [0x7582] = "\x07\x62\x5f", [0x7584] = "\x07\x63\x6e", + [0x7585] = "\x07\x63\x6c", [0x7586] = "\x05\x7a\x73", + [0x7587] = "\x07\x63\x6b", [0x7588] = "\x07\x63\x6f", + [0x758a] = "\x07\x62\x5a", [0x758b] = "\x07\x63\x69", + [0x758c] = "\x07\x63\x71", [0x758d] = "\x07\x63\x6a", + [0x758e] = "\x07\x63\x70", [0x758f] = "\x07\x63\x6d", + [0x7591] = "\x07\x64\x5c", [0x7592] = "\x04\x6e\x3a", + [0x7593] = "\x07\x64\x5d", [0x7594] = "\x05\x7b\x47", + [0x7595] = "\x05\x7b\x48", [0x7596] = "\x07\x64\x5a", + [0x7597] = "\x07\x64\x5b", [0x7598] = "\x05\x7b\x67", + [0x7599] = "\x07\x65\x41", [0x759a] = "\x07\x65\x42", + [0x759b] = "\x05\x7b\x68", [0x759c] = "\x04\x6e\x50", + [0x759d] = "\x07\x65\x62", [0x759e] = "\x07\x65\x61", + [0x759f] = "\x0f\x6d\x31", [0x75a4] = "\x07\x66\x2b", + [0x75a7] = "\x05\x27\x65", [0x75a8] = "\x06\x2e\x27", + [0x75a9] = "\x06\x2e\x26", [0x75aa] = "\x04\x2b\x44", + [0x75ab] = "\x06\x3b\x72", [0x75ac] = "\x05\x30\x35", + [0x75ad] = "\x06\x3b\x75", [0x75af] = "\x06\x3b\x74", + [0x75b2] = "\x0f\x38\x41", [0x75b3] = "\x06\x4e\x4e", + [0x75b4] = "\x06\x4e\x50", [0x75b5] = "\x05\x42\x5f", + [0x75b6] = "\x06\x57\x7c", [0x75b7] = "\x06\x57\x7a", + [0x75b8] = "\x06\x57\x7d", [0x75b9] = "\x06\x57\x7b", + [0x75ba] = "\x05\x49\x65", [0x75bb] = "\x05\x49\x63", + [0x75bc] = "\x05\x49\x64", [0x75bd] = "\x06\x62\x26", + [0x75be] = "\x06\x62\x24", [0x75c0] = "\x07\x28\x48", + [0x75c1] = "\x05\x50\x61", [0x75c2] = "\x07\x28\x49", + [0x75c3] = "\x07\x28\x4a", [0x75c4] = "\x06\x62\x25", + [0x75c6] = "\x05\x58\x23", [0x75c7] = "\x05\x58\x24", + [0x75c8] = "\x05\x58\x22", [0x75c9] = "\x07\x33\x25", + [0x75ca] = "\x07\x33\x26", [0x75cb] = "\x05\x5e\x37", + [0x75cc] = "\x05\x5e\x36", [0x75cd] = "\x0f\x5c\x5d", + [0x75ce] = "\x04\x5d\x3e", [0x75cf] = "\x04\x5d\x3f", + [0x75d0] = "\x07\x42\x71", [0x75d1] = "\x07\x42\x73", + [0x75d2] = "\x04\x5d\x40", [0x75d4] = "\x07\x42\x72", + [0x75d5] = "\x05\x69\x46", [0x75d6] = "\x05\x6d\x54", + [0x75d7] = "\x07\x4f\x7c", [0x75d8] = "\x07\x54\x7a", + [0x75d9] = "\x07\x59\x2b", [0x75da] = "\x07\x59\x2a", + [0x75db] = "\x07\x5f\x4e", [0x75dc] = "\x07\x65\x63", + [0x75dd] = "\x04\x28\x23", [0x75de] = "\x06\x2e\x28", + [0x75df] = "\x04\x28\x24", [0x75e1] = "\x06\x34\x4f", + [0x75e2] = "\x06\x34\x50", [0x75e3] = "\x05\x2b\x41", + [0x75e5] = "\x0f\x2d\x45", [0x75e6] = "\x05\x30\x36", + [0x75e7] = "\x06\x3b\x77", [0x75e8] = "\x06\x3b\x76", + [0x75e9] = "\x05\x30\x37", [0x75ea] = "\x06\x44\x4f", + [0x75eb] = "\x05\x3c\x29", [0x75ec] = "\x06\x4e\x53", + [0x75ed] = "\x06\x4e\x52", [0x75ee] = "\x0f\x3f\x2a", + [0x75ef] = "\x0f\x3f\x2b", [0x75f1] = "\x06\x4e\x51", + [0x75f2] = "\x06\x58\x23", [0x75f3] = "\x06\x58\x21", + [0x75f4] = "\x04\x40\x5f", [0x75f5] = "\x06\x58\x22", + [0x75f6] = "\x06\x57\x7e", [0x75f7] = "\x0f\x45\x3a", + [0x75f8] = "\x04\x47\x24", [0x75f9] = "\x05\x50\x62", + [0x75fa] = "\x06\x62\x27", [0x75fb] = "\x06\x62\x28", + [0x75ff] = "\x04\x58\x61", [0x7600] = "\x07\x3b\x56", + [0x7601] = "\x0f\x5c\x5e", [0x7602] = "\x04\x5d\x41", + [0x7603] = "\x07\x42\x74", [0x7604] = "\x07\x49\x70", + [0x7605] = "\x07\x54\x7b", [0x7606] = "\x07\x5c\x64", + [0x7608] = "\x05\x27\x66", [0x7609] = "\x06\x2e\x29", + [0x760a] = "\x06\x2e\x2a", [0x760b] = "\x06\x2e\x2b", + [0x760d] = "\x05\x2b\x43", [0x760e] = "\x06\x34\x51", + [0x760f] = "\x04\x2b\x45", [0x7610] = "\x04\x2b\x47", + [0x7611] = "\x05\x2b\x45", [0x7612] = "\x06\x34\x53", + [0x7613] = "\x05\x2b\x44", [0x7616] = "\x0f\x28\x6b", + [0x7619] = "\x06\x34\x52", [0x761a] = "\x05\x2b\x42", + [0x761c] = "\x05\x2b\x46", [0x761d] = "\x06\x3b\x7d", + [0x761e] = "\x05\x30\x3c", [0x761f] = "\x04\x2f\x71", + [0x7620] = "\x06\x3c\x21", [0x7621] = "\x06\x3c\x25", + [0x7622] = "\x05\x30\x3f", [0x7623] = "\x06\x3c\x26", + [0x7624] = "\x06\x3c\x27", [0x7625] = "\x04\x2f\x70", + [0x7626] = "\x06\x3b\x79", [0x7627] = "\x05\x30\x40", + [0x7628] = "\x06\x3b\x7b", [0x7629] = "\x05\x30\x38", + [0x762a] = "\x06\x3c\x22", [0x762b] = "\x06\x3b\x7c", + [0x762c] = "\x06\x3c\x23", [0x762d] = "\x06\x3b\x7e", + [0x762e] = "\x05\x30\x3b", [0x762f] = "\x06\x3b\x7a", + [0x7630] = "\x06\x3b\x78", [0x7633] = "\x05\x30\x3a", + [0x7634] = "\x0f\x32\x50", [0x7635] = "\x06\x3c\x24", + [0x7636] = "\x06\x3c\x28", [0x7637] = "\x06\x3c\x29", + [0x763a] = "\x0f\x2d\x48", [0x763b] = "\x0f\x2d\x49", + [0x763c] = "\x0f\x32\x52", [0x763d] = "\x04\x35\x28", + [0x763e] = "\x05\x3c\x32", [0x7640] = "\x04\x35\x2b", + [0x7641] = "\x04\x3a\x7c", [0x7642] = "\x05\x35\x46", + [0x7643] = "\x04\x35\x29", [0x7644] = "\x06\x44\x58", + [0x7645] = "\x05\x35\x47", [0x7646] = "\x05\x35\x4a", + [0x7647] = "\x05\x35\x44", [0x7648] = "\x05\x35\x45", + [0x7649] = "\x05\x35\x43", [0x764a] = "\x06\x44\x59", + [0x764b] = "\x06\x44\x5a", [0x764c] = "\x05\x35\x42", + [0x764d] = "\x06\x44\x53", [0x764e] = "\x06\x44\x55", + [0x764f] = "\x06\x44\x54", [0x7650] = "\x06\x44\x51", + [0x7651] = "\x06\x44\x50", [0x7652] = "\x06\x44\x57", + [0x7658] = "\x06\x44\x52", [0x7659] = "\x0f\x2d\x46", + [0x765a] = "\x0f\x38\x45", [0x765b] = "\x05\x35\x48", + [0x765c] = "\x06\x44\x56", [0x765d] = "\x05\x35\x49", + [0x765e] = "\x05\x3c\x31", [0x765f] = "\x06\x4e\x5b", + [0x7660] = "\x06\x4e\x59", [0x7661] = "\x05\x3c\x2e", + [0x7662] = "\x06\x4e\x57", [0x7663] = "\x05\x3c\x2f", + [0x7664] = "\x05\x3c\x33", [0x7665] = "\x04\x3a\x7e", + [0x7667] = "\x06\x4e\x58", [0x7668] = "\x06\x4e\x54", + [0x7669] = "\x04\x3a\x7d", [0x766a] = "\x06\x4e\x56", + [0x766b] = "\x05\x3c\x30", [0x766c] = "\x05\x3c\x2d", + [0x766d] = "\x05\x3c\x2b", [0x766e] = "\x05\x42\x64", + [0x766f] = "\x05\x3c\x2a", [0x7672] = "\x0f\x38\x44", + [0x7673] = "\x0f\x3f\x2e", [0x7675] = "\x06\x4e\x55", + [0x7677] = "\x06\x4e\x5a", [0x7679] = "\x06\x4e\x5c", + [0x767e] = "\x05\x3c\x2c", [0x767f] = "\x0f\x38\x43", + [0x7680] = "\x05\x42\x6a", [0x7681] = "\x05\x42\x62", + [0x7682] = "\x05\x42\x66", [0x7683] = "\x04\x40\x65", + [0x7684] = "\x05\x42\x6b", [0x7685] = "\x05\x42\x63", + [0x7686] = "\x05\x42\x67", [0x7687] = "\x04\x40\x63", + [0x7688] = "\x05\x42\x65", [0x7689] = "\x05\x42\x69", + [0x768a] = "\x06\x58\x2f", [0x768b] = "\x04\x40\x64", + [0x768c] = "\x06\x58\x2a", [0x768d] = "\x06\x58\x28", + [0x768e] = "\x06\x58\x30", [0x768f] = "\x05\x42\x68", + [0x7690] = "\x05\x42\x60", [0x7691] = "\x06\x58\x24", + [0x7692] = "\x06\x58\x27", [0x7695] = "\x06\x58\x2d", + [0x7696] = "\x0f\x3f\x2c", [0x7697] = "\x0f\x3f\x2d", + [0x7698] = "\x0f\x3f\x2f", [0x7699] = "\x0f\x3f\x30", + [0x769a] = "\x0f\x45\x3b", [0x769b] = "\x06\x58\x26", + [0x769c] = "\x06\x58\x31", [0x769d] = "\x06\x58\x25", + [0x769e] = "\x06\x58\x29", [0x76a1] = "\x05\x42\x61", + [0x76a3] = "\x0f\x45\x3e", [0x76a4] = "\x04\x47\x30", + [0x76a5] = "\x04\x47\x2c", [0x76a6] = "\x06\x62\x2d", + [0x76a7] = "\x06\x62\x33", [0x76a8] = "\x04\x47\x29", + [0x76a9] = "\x05\x49\x66", [0x76aa] = "\x05\x49\x69", + [0x76ab] = "\x04\x47\x28", [0x76ac] = "\x05\x49\x68", + [0x76ad] = "\x05\x3c\x34", [0x76ae] = "\x06\x62\x34", + [0x76af] = "\x05\x49\x6a", [0x76b0] = "\x06\x62\x2b", + [0x76b1] = "\x06\x62\x29", [0x76b2] = "\x06\x62\x2a", + [0x76b3] = "\x06\x62\x32", [0x76b4] = "\x06\x62\x31", + [0x76b5] = "\x05\x49\x67", [0x76b6] = "\x06\x62\x2f", + [0x76b7] = "\x05\x49\x6b", [0x76b8] = "\x06\x62\x30", + [0x76b9] = "\x06\x62\x2c", [0x76ba] = "\x04\x47\x33", + [0x76bc] = "\x06\x62\x35", [0x76bd] = "\x06\x62\x2e", + [0x76be] = "\x0f\x4c\x34", [0x76bf] = "\x0f\x4c\x36", + [0x76c0] = "\x0f\x4c\x37", [0x76c3] = "\x04\x47\x2f", + [0x76cd] = "\x0f\x45\x3c", [0x76ce] = "\x0f\x45\x3f", + [0x76cf] = "\x05\x50\x66", [0x76d0] = "\x07\x28\x54", + [0x76d1] = "\x04\x4d\x41", [0x76d2] = "\x05\x50\x69", + [0x76d3] = "\x07\x28\x57", [0x76d4] = "\x04\x47\x32", + [0x76d5] = "\x07\x28\x56", [0x76d6] = "\x05\x50\x65", + [0x76d7] = "\x04\x4d\x38", [0x76d8] = "\x07\x28\x55", + [0x76d9] = "\x07\x33\x28", [0x76da] = "\x05\x50\x67", + [0x76db] = "\x07\x28\x5a", [0x76dc] = "\x07\x28\x4b", + [0x76dd] = "\x04\x4d\x45", [0x76de] = "\x04\x4d\x3b", + [0x76df] = "\x04\x4d\x3d", [0x76e0] = "\x07\x28\x53", + [0x76e1] = "\x04\x4d\x44", [0x76e2] = "\x04\x4d\x43", + [0x76e3] = "\x05\x50\x63", [0x76e4] = "\x07\x28\x58", + [0x76e5] = "\x07\x28\x52", [0x76e6] = "\x07\x28\x4c", + [0x76e7] = "\x05\x50\x64", [0x76e8] = "\x07\x28\x4f", + [0x76e9] = "\x05\x50\x68", [0x76ea] = "\x07\x28\x51", + [0x76eb] = "\x07\x28\x50", [0x76ec] = "\x07\x28\x4d", + [0x76f0] = "\x0f\x4c\x35", [0x76f1] = "\x0f\x52\x2d", + [0x76f2] = "\x07\x28\x4e", [0x76f3] = "\x07\x28\x59", + [0x76f8] = "\x05\x58\x2c", [0x76f9] = "\x05\x58\x2b", + [0x76fa] = "\x07\x33\x2b", [0x76fb] = "\x05\x58\x27", + [0x76fc] = "\x05\x58\x2a", [0x76fd] = "\x07\x33\x27", + [0x76fe] = "\x04\x53\x51", [0x76ff] = "\x07\x33\x29", + [0x7700] = "\x04\x53\x54", [0x7701] = "\x07\x3b\x62", + [0x7702] = "\x05\x58\x29", [0x7703] = "\x05\x58\x28", + [0x7704] = "\x07\x33\x2a", [0x7705] = "\x04\x53\x4e", + [0x7706] = "\x07\x33\x2c", [0x7707] = "\x07\x33\x2f", + [0x7708] = "\x04\x53\x4d", [0x770a] = "\x05\x58\x25", + [0x770b] = "\x07\x33\x30", [0x770d] = "\x05\x58\x26", + [0x7711] = "\x07\x33\x2e", [0x7712] = "\x0f\x52\x2c", + [0x7715] = "\x07\x33\x2d", [0x771d] = "\x05\x5e\x3e", + [0x771e] = "\x05\x5e\x3f", [0x771f] = "\x07\x3b\x57", + [0x7720] = "\x05\x5e\x3b", [0x7721] = "\x07\x3b\x5d", + [0x7722] = "\x07\x3b\x64", [0x7723] = "\x04\x58\x66", + [0x7724] = "\x05\x5e\x38", [0x7725] = "\x05\x5e\x39", + [0x7726] = "\x05\x5e\x3d", [0x7727] = "\x05\x5e\x3c", + [0x7729] = "\x07\x3b\x5f", [0x772b] = "\x07\x3b\x5b", + [0x772c] = "\x07\x3b\x63", [0x772d] = "\x07\x42\x7b", + [0x772e] = "\x07\x3b\x5c", [0x772f] = "\x07\x28\x5b", + [0x7730] = "\x07\x3b\x5e", [0x7731] = "\x07\x3b\x60", + [0x7732] = "\x05\x5e\x40", [0x7737] = "\x07\x3b\x58", + [0x7738] = "\x07\x3b\x5a", [0x773d] = "\x05\x5e\x3a", + [0x773e] = "\x0f\x57\x67", [0x773f] = "\x0f\x57\x68", + [0x7740] = "\x0f\x57\x69", [0x7741] = "\x0f\x57\x6a", + [0x7742] = "\x07\x42\x75", [0x7743] = "\x04\x5d\x45", + [0x7744] = "\x07\x42\x7c", [0x7745] = "\x07\x42\x7e", + [0x7746] = "\x05\x64\x5b", [0x7747] = "\x05\x64\x57", + [0x7748] = "\x07\x42\x7d", [0x7749] = "\x04\x5d\x4b", + [0x774a] = "\x05\x64\x54", [0x774b] = "\x05\x64\x55", + [0x774c] = "\x05\x64\x5f", [0x774d] = "\x04\x5d\x4d", + [0x774f] = "\x04\x5d\x42", [0x7750] = "\x07\x42\x7a", + [0x7751] = "\x05\x64\x53", [0x7752] = "\x04\x5d\x47", + [0x7753] = "\x04\x5d\x4c", [0x7754] = "\x05\x64\x5d", + [0x7755] = "\x07\x42\x79", [0x7756] = "\x07\x42\x77", + [0x7757] = "\x05\x64\x51", [0x7758] = "\x04\x5d\x43", + [0x7759] = "\x05\x5e\x42", [0x775a] = "\x05\x64\x52", + [0x775b] = "\x07\x42\x78", [0x7762] = "\x07\x43\x23", + [0x7763] = "\x07\x42\x76", [0x776a] = "\x05\x64\x59", + [0x776b] = "\x05\x64\x5a", [0x776c] = "\x05\x5e\x41", + [0x776d] = "\x05\x64\x5c", [0x776e] = "\x05\x64\x5e", + [0x776f] = "\x05\x64\x58", [0x7770] = "\x0f\x5c\x60", + [0x7771] = "\x07\x49\x76", [0x7772] = "\x05\x69\x49", + [0x7773] = "\x05\x69\x4a", [0x7774] = "\x04\x61\x29", + [0x7775] = "\x07\x49\x7b", [0x7776] = "\x07\x49\x7c", + [0x7777] = "\x05\x69\x47", [0x7778] = "\x05\x69\x48", + [0x7779] = "\x07\x49\x72", [0x777a] = "\x07\x49\x73", + [0x777b] = "\x07\x49\x75", [0x777c] = "\x07\x49\x79", + [0x777d] = "\x07\x49\x7a", [0x777e] = "\x07\x49\x74", + [0x777f] = "\x07\x49\x78", [0x7780] = "\x04\x61\x2b", + [0x7781] = "\x07\x49\x77", [0x7782] = "\x07\x43\x21", + [0x7786] = "\x0f\x60\x6b", [0x7787] = "\x0f\x60\x6c", + [0x7788] = "\x0f\x63\x76", [0x778c] = "\x07\x4f\x7d", + [0x778d] = "\x05\x6d\x58", [0x778e] = "\x07\x50\x26", + [0x778f] = "\x05\x6d\x5b", [0x7790] = "\x05\x71\x34", + [0x7792] = "\x05\x6d\x55", [0x7793] = "\x04\x64\x45", + [0x7794] = "\x07\x50\x23", [0x7795] = "\x05\x6d\x56", + [0x7796] = "\x07\x50\x22", [0x7797] = "\x07\x54\x7c", + [0x7799] = "\x07\x4f\x7e", [0x779b] = "\x05\x6d\x59", + [0x779c] = "\x07\x49\x71", [0x779d] = "\x05\x6d\x5a", + [0x779e] = "\x05\x6d\x5c", [0x779f] = "\x07\x50\x24", + [0x77a1] = "\x0f\x66\x34", [0x77a2] = "\x07\x50\x21", + [0x77a6] = "\x05\x6d\x5d", [0x77a7] = "\x07\x55\x22", + [0x77a8] = "\x07\x55\x24", [0x77a9] = "\x05\x71\x36", + [0x77aa] = "\x04\x67\x36", [0x77ab] = "\x07\x55\x26", + [0x77ac] = "\x07\x55\x25", [0x77ad] = "\x05\x71\x35", + [0x77ae] = "\x07\x54\x7e", [0x77af] = "\x07\x55\x21", + [0x77b0] = "\x04\x67\x37", [0x77b1] = "\x07\x55\x23", + [0x77b2] = "\x07\x59\x31", [0x77b3] = "\x07\x54\x7d", + [0x77b5] = "\x0f\x66\x33", [0x77b6] = "\x04\x69\x41", + [0x77b7] = "\x07\x59\x2e", [0x77b8] = "\x04\x69\x40", + [0x77b9] = "\x04\x69\x3f", [0x77ba] = "\x05\x74\x37", + [0x77bb] = "\x07\x59\x2c", [0x77bc] = "\x07\x59\x2d", + [0x77bd] = "\x07\x59\x30", [0x77c2] = "\x07\x59\x2f", + [0x77c3] = "\x05\x78\x2e", [0x77c7] = "\x0f\x69\x6f", + [0x77c8] = "\x07\x5f\x51", [0x77c9] = "\x07\x5f\x50", + [0x77ca] = "\x07\x5f\x4f", [0x77cc] = "\x05\x79\x4b", + [0x77cd] = "\x07\x61\x48", [0x77ce] = "\x07\x61\x47", + [0x77cf] = "\x07\x61\x46", [0x77d0] = "\x07\x62\x61", + [0x77d1] = "\x05\x7a\x37", [0x77d2] = "\x07\x62\x62", + [0x77d4] = "\x07\x62\x60", [0x77d5] = "\x07\x64\x5f", + [0x77d6] = "\x07\x63\x73", [0x77d7] = "\x07\x63\x72", + [0x77d8] = "\x07\x64\x5e", [0x77d9] = "\x05\x7b\x7e", + [0x77da] = "\x07\x65\x64", [0x77db] = "\x07\x66\x2c", + [0x77de] = "\x05\x7c\x4b", [0x77df] = "\x07\x66\x4d", + [0x77e1] = "\x05\x24\x76", [0x77e3] = "\x06\x2e\x2c", + [0x77e6] = "\x04\x2b\x48", [0x77e7] = "\x05\x30\x41", + [0x77e8] = "\x04\x2f\x74", [0x77e9] = "\x06\x3c\x2a", + [0x77ea] = "\x06\x44\x5b", [0x77eb] = "\x0f\x38\x46", + [0x77ed] = "\x0f\x3f\x31", [0x77ee] = "\x0f\x3f\x32", + [0x77ef] = "\x06\x58\x32", [0x77f1] = "\x04\x47\x34", + [0x77f2] = "\x06\x62\x36", [0x77f3] = "\x06\x62\x37", + [0x77f4] = "\x06\x62\x38", [0x77f7] = "\x0f\x4c\x38", + [0x77f8] = "\x0f\x4c\x39", [0x77f9] = "\x07\x28\x5c", + [0x77fa] = "\x0f\x4c\x3a", [0x77fb] = "\x0f\x52\x30", + [0x77fc] = "\x07\x33\x31", [0x77fd] = "\x07\x33\x32", + [0x77fe] = "\x0f\x52\x2f", [0x77ff] = "\x07\x3b\x65", + [0x7800] = "\x0f\x60\x6d", [0x7801] = "\x0f\x60\x6e", + [0x7802] = "\x05\x69\x4b", [0x7803] = "\x07\x50\x27", + [0x7804] = "\x07\x55\x27", [0x7806] = "\x05\x27\x67", + [0x7807] = "\x06\x2e\x2d", [0x7809] = "\x04\x2f\x77", + [0x780b] = "\x05\x30\x42", [0x780c] = "\x0f\x32\x53", + [0x780e] = "\x05\x35\x4d", [0x780f] = "\x05\x35\x4e", + [0x7810] = "\x06\x44\x5c", [0x7811] = "\x06\x44\x5d", + [0x7812] = "\x05\x35\x50", [0x7813] = "\x05\x35\x4b", + [0x7815] = "\x0f\x38\x47", [0x7816] = "\x0f\x38\x49", + [0x7817] = "\x0f\x38\x4b", [0x7818] = "\x04\x35\x32", + [0x7819] = "\x04\x35\x36", [0x781a] = "\x05\x35\x4c", + [0x781b] = "\x05\x35\x4f", [0x781c] = "\x06\x4e\x5f", + [0x781d] = "\x04\x3b\x25", [0x781e] = "\x06\x4e\x62", + [0x781f] = "\x06\x4e\x61", [0x7820] = "\x05\x3c\x36", + [0x7821] = "\x06\x4e\x5e", [0x7822] = "\x04\x3b\x24", + [0x7823] = "\x06\x4e\x5d", [0x7828] = "\x06\x58\x36", + [0x7829] = "\x05\x42\x6d", [0x782a] = "\x05\x42\x6f", + [0x782b] = "\x05\x42\x6e", [0x782d] = "\x06\x58\x33", + [0x782e] = "\x06\x58\x37", [0x7830] = "\x05\x42\x70", + [0x7831] = "\x0f\x45\x40", [0x7832] = "\x0f\x45\x41", + [0x7833] = "\x0f\x45\x42", [0x7835] = "\x06\x58\x35", + [0x783b] = "\x06\x62\x39", [0x783c] = "\x05\x49\x71", + [0x783d] = "\x05\x49\x6e", [0x783e] = "\x05\x49\x72", + [0x783f] = "\x04\x47\x37", [0x7840] = "\x06\x62\x3a", + [0x7843] = "\x0f\x4c\x3b", [0x7844] = "\x0f\x4c\x3c", + [0x7845] = "\x05\x49\x6f", [0x7846] = "\x06\x62\x3b", + [0x7848] = "\x05\x49\x70", [0x784b] = "\x04\x4d\x49", + [0x784c] = "\x07\x28\x5f", [0x784d] = "\x05\x50\x6c", + [0x784e] = "\x04\x4d\x4b", [0x784f] = "\x05\x50\x6b", + [0x7850] = "\x07\x28\x63", [0x7851] = "\x05\x50\x6d", + [0x7852] = "\x06\x58\x34", [0x7853] = "\x07\x28\x62", + [0x7855] = "\x05\x50\x6a", [0x7856] = "\x05\x50\x6e", + [0x7857] = "\x0f\x52\x31", [0x7858] = "\x07\x28\x60", + [0x785b] = "\x07\x28\x5e", [0x785d] = "\x07\x28\x5d", + [0x7860] = "\x07\x28\x61", [0x7861] = "\x05\x58\x30", + [0x7862] = "\x05\x58\x2f", [0x7863] = "\x05\x58\x2e", + [0x7864] = "\x04\x53\x57", [0x7865] = "\x07\x33\x34", + [0x7866] = "\x05\x58\x34", [0x7867] = "\x07\x3b\x67", + [0x7868] = "\x04\x53\x58", [0x7869] = "\x04\x53\x5e", + [0x786a] = "\x04\x53\x5d", [0x786b] = "\x05\x58\x31", + [0x786c] = "\x05\x58\x35", [0x786d] = "\x07\x33\x33", + [0x786e] = "\x05\x58\x2d", [0x786f] = "\x05\x58\x33", + [0x7871] = "\x0f\x57\x6b", [0x7872] = "\x0f\x57\x6c", + [0x7873] = "\x0f\x57\x6d", [0x7877] = "\x07\x3b\x66", + [0x7878] = "\x05\x64\x60", [0x7879] = "\x05\x5e\x45", + [0x787a] = "\x05\x5e\x44", [0x787b] = "\x07\x3b\x6a", + [0x787d] = "\x07\x3b\x69", [0x787e] = "\x07\x3b\x6b", + [0x787f] = "\x07\x3b\x68", [0x7880] = "\x0f\x5c\x61", + [0x7881] = "\x0f\x5c\x62", [0x7882] = "\x05\x64\x62", + [0x7883] = "\x04\x5d\x51", [0x7884] = "\x04\x5d\x4f", + [0x7885] = "\x07\x43\x24", [0x7886] = "\x05\x64\x61", + [0x7888] = "\x0f\x60\x6f", [0x7889] = "\x0f\x60\x70", + [0x788a] = "\x0f\x60\x71", [0x788d] = "\x07\x43\x25", + [0x788e] = "\x07\x49\x7d", [0x788f] = "\x07\x49\x7e", + [0x7892] = "\x05\x6d\x5f", [0x7893] = "\x07\x50\x29", + [0x7894] = "\x07\x50\x28", [0x7895] = "\x0f\x66\x35", + [0x7896] = "\x05\x6d\x5e", [0x7898] = "\x0f\x68\x4b", + [0x7899] = "\x0f\x68\x4c", [0x789a] = "\x07\x55\x28", + [0x789c] = "\x04\x69\x43", [0x789d] = "\x05\x74\x39", + [0x789e] = "\x04\x69\x42", [0x78a0] = "\x0f\x69\x70", + [0x78a1] = "\x0f\x69\x71", [0x78a2] = "\x05\x78\x2f", + [0x78a3] = "\x07\x5f\x53", [0x78a4] = "\x0f\x6b\x64", + [0x78a5] = "\x07\x5f\x52", [0x78a6] = "\x05\x79\x4d", + [0x78a7] = "\x05\x79\x4c", [0x78a8] = "\x07\x61\x49", + [0x78ab] = "\x04\x6d\x21", [0x78ad] = "\x05\x7a\x74", + [0x78ae] = "\x04\x6e\x3b", [0x78af] = "\x05\x7c\x44", + [0x78b1] = "\x07\x66\x54", [0x78b2] = "\x06\x2e\x2e", + [0x78b3] = "\x06\x2e\x2f", [0x78b4] = "\x06\x34\x54", + [0x78b5] = "\x05\x2b\x48", [0x78b7] = "\x04\x2f\x78", + [0x78b8] = "\x06\x3c\x2c", [0x78b9] = "\x04\x2f\x79", + [0x78ba] = "\x06\x3c\x2b", [0x78bb] = "\x06\x44\x67", + [0x78bc] = "\x04\x35\x3b", [0x78bd] = "\x05\x35\x53", + [0x78be] = "\x05\x35\x52", [0x78bf] = "\x06\x44\x5f", + [0x78c0] = "\x06\x44\x63", [0x78c1] = "\x04\x35\x37", + [0x78c2] = "\x06\x44\x64", [0x78c3] = "\x05\x35\x51", + [0x78c4] = "\x06\x44\x60", [0x78c5] = "\x0f\x38\x4d", + [0x78c6] = "\x0f\x38\x4e", [0x78c7] = "\x0f\x38\x4f", + [0x78c8] = "\x04\x35\x3c", [0x78c9] = "\x06\x44\x66", + [0x78cd] = "\x06\x44\x5e", [0x78ce] = "\x06\x44\x62", + [0x78cf] = "\x06\x44\x65", [0x78d0] = "\x06\x44\x61", + [0x78d1] = "\x05\x3c\x37", [0x78d2] = "\x04\x3b\x26", + [0x78d3] = "\x06\x4e\x64", [0x78d4] = "\x06\x4e\x67", + [0x78d5] = "\x05\x3c\x38", [0x78d6] = "\x06\x4e\x63", + [0x78d7] = "\x06\x4e\x66", [0x78d8] = "\x06\x4e\x69", + [0x78d9] = "\x06\x4e\x65", [0x78da] = "\x04\x3b\x27", + [0x78db] = "\x04\x3b\x28", [0x78dc] = "\x06\x4e\x68", + [0x78de] = "\x0f\x3f\x33", [0x78e1] = "\x05\x42\x73", + [0x78e2] = "\x05\x42\x71", [0x78e3] = "\x05\x42\x72", + [0x78e5] = "\x06\x58\x38", [0x78e8] = "\x06\x62\x3e", + [0x78e9] = "\x05\x49\x75", [0x78ea] = "\x04\x47\x39", + [0x78eb] = "\x06\x62\x40", [0x78ec] = "\x05\x49\x73", + [0x78ed] = "\x05\x49\x74", [0x78ee] = "\x06\x62\x3d", + [0x78ef] = "\x06\x62\x41", [0x78f0] = "\x06\x62\x3c", + [0x78f1] = "\x06\x62\x3f", [0x78f4] = "\x07\x28\x66", + [0x78f5] = "\x05\x50\x75", [0x78f6] = "\x07\x28\x67", + [0x78f7] = "\x05\x50\x74", [0x78f8] = "\x05\x50\x70", + [0x78f9] = "\x05\x50\x6f", [0x78fa] = "\x04\x4d\x50", + [0x78fb] = "\x04\x4d\x52", [0x78fc] = "\x04\x4d\x4d", + [0x78fd] = "\x07\x28\x69", [0x78fe] = "\x04\x4d\x54", + [0x7903] = "\x05\x50\x72", [0x7904] = "\x07\x28\x68", + [0x7905] = "\x07\x28\x6a", [0x7906] = "\x05\x50\x71", + [0x7907] = "\x07\x28\x64", [0x7908] = "\x07\x28\x65", + [0x7909] = "\x05\x50\x73", [0x790b] = "\x07\x33\x38", + [0x790c] = "\x07\x33\x37", [0x790d] = "\x04\x53\x5f", + [0x790e] = "\x05\x58\x36", [0x790f] = "\x04\x53\x63", + [0x7910] = "\x05\x58\x39", [0x7911] = "\x05\x58\x3b", + [0x7912] = "\x04\x53\x60", [0x7913] = "\x07\x33\x36", + [0x7914] = "\x07\x33\x35", [0x7915] = "\x05\x58\x37", + [0x7916] = "\x05\x58\x38", [0x7917] = "\x05\x58\x3a", + [0x7918] = "\x07\x33\x39", [0x791b] = "\x05\x5e\x46", + [0x791c] = "\x07\x3b\x6d", [0x791d] = "\x07\x3b\x73", + [0x791e] = "\x07\x3b\x6c", [0x791f] = "\x05\x5e\x4a", + [0x7920] = "\x05\x5e\x49", [0x7921] = "\x07\x3b\x6e", + [0x7922] = "\x07\x33\x3a", [0x7923] = "\x05\x5e\x48", + [0x7926] = "\x07\x3b\x6f", [0x7927] = "\x07\x3b\x70", + [0x7929] = "\x07\x3b\x71", [0x792a] = "\x04\x58\x6c", + [0x792b] = "\x07\x3b\x74", [0x792c] = "\x07\x3b\x72", + [0x792e] = "\x05\x5e\x47", [0x792f] = "\x07\x43\x27", + [0x7931] = "\x07\x43\x28", [0x7932] = "\x04\x5d\x52", + [0x7936] = "\x07\x43\x26", [0x7937] = "\x07\x43\x29", + [0x793a] = "\x04\x61\x35", [0x793b] = "\x05\x69\x4c", + [0x793c] = "\x04\x61\x32", [0x793d] = "\x04\x61\x33", + [0x793e] = "\x07\x4a\x21", [0x793f] = "\x07\x4a\x22", + [0x7940] = "\x07\x4a\x23", [0x7941] = "\x07\x4a\x24", + [0x7942] = "\x04\x61\x36", [0x7944] = "\x07\x50\x2a", + [0x7948] = "\x05\x71\x37", [0x794a] = "\x07\x55\x29", + [0x794c] = "\x05\x74\x3a", [0x794d] = "\x04\x69\x44", + [0x7951] = "\x07\x5c\x65", [0x7953] = "\x05\x78\x30", + [0x7955] = "\x07\x62\x63", [0x7956] = "\x04\x6d\x60", + [0x7957] = "\x07\x64\x60", [0x7958] = "\x07\x64\x61", + [0x7959] = "\x05\x7b\x69", [0x795a] = "\x07\x65\x43", + [0x795b] = "\x05\x23\x27", [0x795c] = "\x05\x23\x28", + [0x795d] = "\x06\x2e\x30", [0x7961] = "\x06\x3c\x33", + [0x7962] = "\x04\x30\x21", [0x7963] = "\x04\x2f\x7b", + [0x7964] = "\x04\x2f\x7a", [0x7965] = "\x04\x30\x22", + [0x7966] = "\x05\x30\x43", [0x7968] = "\x06\x3c\x30", + [0x7969] = "\x06\x3c\x31", [0x796a] = "\x06\x3c\x2f", + [0x796b] = "\x06\x3c\x32", [0x796d] = "\x06\x3c\x2e", + [0x796e] = "\x04\x35\x40", [0x796f] = "\x06\x44\x6a", + [0x7970] = "\x06\x44\x73", [0x7971] = "\x04\x35\x3e", + [0x7973] = "\x06\x44\x6f", [0x7974] = "\x05\x35\x5c", + [0x7975] = "\x05\x35\x59", [0x7977] = "\x06\x44\x71", + [0x7978] = "\x04\x35\x42", [0x7979] = "\x05\x35\x54", + [0x797a] = "\x04\x35\x46", [0x797b] = "\x06\x44\x79", + [0x797c] = "\x05\x35\x55", [0x797d] = "\x06\x44\x77", + [0x797e] = "\x06\x44\x6b", [0x797f] = "\x06\x44\x78", + [0x7980] = "\x05\x35\x58", [0x7981] = "\x06\x44\x74", + [0x7982] = "\x06\x44\x75", [0x7986] = "\x06\x44\x6e", + [0x7987] = "\x06\x44\x7a", [0x7988] = "\x0f\x38\x50", + [0x7989] = "\x0f\x38\x51", [0x798a] = "\x0f\x38\x53", + [0x798b] = "\x0f\x38\x54", [0x798c] = "\x0f\x38\x55", + [0x798d] = "\x0f\x38\x56", [0x798f] = "\x06\x44\x72", + [0x7992] = "\x06\x44\x69", [0x7997] = "\x06\x44\x68", + [0x7999] = "\x06\x44\x76", [0x799a] = "\x06\x44\x6c", + [0x799b] = "\x05\x35\x5a", [0x799c] = "\x06\x4e\x74", + [0x799d] = "\x04\x3b\x32", [0x799e] = "\x04\x3b\x2e", + [0x799f] = "\x05\x3c\x3b", [0x79a0] = "\x06\x4e\x6f", + [0x79a1] = "\x06\x4e\x6e", [0x79a2] = "\x06\x4e\x71", + [0x79a3] = "\x06\x4e\x6a", [0x79a4] = "\x04\x3b\x2d", + [0x79a5] = "\x06\x4e\x78", [0x79a6] = "\x04\x3b\x38", + [0x79a7] = "\x04\x3b\x39", [0x79a8] = "\x05\x3c\x3c", + [0x79a9] = "\x06\x4e\x6d", [0x79aa] = "\x06\x4e\x76", + [0x79ab] = "\x06\x4e\x70", [0x79ac] = "\x06\x4e\x77", + [0x79ad] = "\x04\x3b\x37", [0x79ae] = "\x05\x3c\x39", + [0x79af] = "\x05\x3c\x3a", [0x79b0] = "\x0f\x3f\x34", + [0x79b1] = "\x0f\x3f\x35", [0x79b2] = "\x0f\x3f\x36", + [0x79b3] = "\x0f\x3f\x37", [0x79b4] = "\x0f\x3f\x38", + [0x79b5] = "\x0f\x3f\x39", [0x79b6] = "\x0f\x3f\x3a", + [0x79b7] = "\x0f\x3f\x3c", [0x79ba] = "\x06\x4e\x72", + [0x79bb] = "\x06\x4e\x75", [0x79be] = "\x06\x4e\x6c", + [0x79c1] = "\x06\x4e\x79", [0x79c2] = "\x06\x4e\x73", + [0x79c4] = "\x05\x42\x75", [0x79c5] = "\x04\x40\x68", + [0x79c6] = "\x04\x40\x6a", [0x79c8] = "\x06\x58\x46", + [0x79c9] = "\x05\x42\x76", [0x79ca] = "\x05\x3c\x3d", + [0x79cb] = "\x05\x42\x79", [0x79cc] = "\x04\x40\x71", + [0x79cd] = "\x04\x40\x70", [0x79ce] = "\x06\x58\x40", + [0x79cf] = "\x06\x58\x4b", [0x79d0] = "\x06\x58\x3d", + [0x79d1] = "\x06\x58\x49", [0x79d2] = "\x04\x40\x69", + [0x79d3] = "\x04\x40\x6b", [0x79d4] = "\x05\x42\x7c", + [0x79d5] = "\x05\x42\x74", [0x79d6] = "\x04\x40\x73", + [0x79d7] = "\x06\x58\x43", [0x79d8] = "\x06\x58\x3c", + [0x79d9] = "\x06\x58\x47", [0x79da] = "\x06\x58\x42", + [0x79db] = "\x06\x58\x3f", [0x79dc] = "\x04\x40\x72", + [0x79dd] = "\x05\x42\x7a", [0x79de] = "\x06\x58\x48", + [0x79df] = "\x05\x42\x78", [0x79e0] = "\x05\x42\x77", + [0x79e1] = "\x06\x58\x44", [0x79e4] = "\x0f\x45\x43", + [0x79e5] = "\x0f\x45\x45", [0x79e6] = "\x0f\x45\x46", + [0x79e7] = "\x06\x58\x4a", [0x79e8] = "\x05\x42\x7b", + [0x79ea] = "\x06\x58\x39", [0x79eb] = "\x06\x58\x3b", + [0x79f0] = "\x04\x40\x6f", [0x79f1] = "\x06\x58\x3a", + [0x79f2] = "\x06\x58\x45", [0x79f3] = "\x06\x58\x3e", + [0x79f4] = "\x06\x62\x4e", [0x79f5] = "\x04\x47\x3f", + [0x79f6] = "\x05\x49\x7a", [0x79f7] = "\x04\x47\x3b", + [0x79f8] = "\x05\x49\x78", [0x79f9] = "\x05\x49\x7b", + [0x79fa] = "\x04\x47\x3e", [0x79fb] = "\x04\x47\x48", + [0x79fc] = "\x06\x62\x42", [0x79fd] = "\x06\x62\x4c", + [0x79fe] = "\x04\x47\x41", [0x79ff] = "\x06\x62\x53", + [0x7a00] = "\x04\x47\x44", [0x7a01] = "\x06\x62\x4f", + [0x7a02] = "\x04\x47\x47", [0x7a03] = "\x06\x62\x46", + [0x7a04] = "\x05\x49\x79", [0x7a05] = "\x06\x62\x51", + [0x7a06] = "\x06\x62\x45", [0x7a07] = "\x04\x47\x49", + [0x7a08] = "\x06\x62\x50", [0x7a09] = "\x06\x62\x44", + [0x7a0a] = "\x05\x49\x76", [0x7a0b] = "\x05\x49\x77", + [0x7a0f] = "\x0f\x4c\x3d", [0x7a10] = "\x0f\x4c\x3e", + [0x7a11] = "\x0f\x4c\x3f", [0x7a12] = "\x0f\x4c\x40", + [0x7a13] = "\x0f\x4c\x42", [0x7a14] = "\x0f\x4c\x43", + [0x7a15] = "\x0f\x4c\x44", [0x7a16] = "\x0f\x4c\x45", + [0x7a19] = "\x06\x62\x48", [0x7a1a] = "\x04\x47\x4b", + [0x7a1b] = "\x06\x62\x4a", [0x7a1c] = "\x05\x42\x7d", + [0x7a1d] = "\x06\x62\x4b", [0x7a1e] = "\x06\x62\x4d", + [0x7a20] = "\x06\x62\x43", [0x7a23] = "\x06\x62\x52", + [0x7a24] = "\x06\x62\x49", [0x7a26] = "\x07\x29\x21", + [0x7a27] = "\x05\x51\x2a", [0x7a28] = "\x07\x28\x6b", + [0x7a29] = "\x05\x50\x7a", [0x7a2a] = "\x05\x51\x22", + [0x7a2b] = "\x07\x28\x71", [0x7a2c] = "\x07\x28\x74", + [0x7a2d] = "\x07\x29\x22", [0x7a2e] = "\x07\x28\x7c", + [0x7a2f] = "\x07\x28\x70", [0x7a30] = "\x05\x51\x27", + [0x7a31] = "\x04\x4d\x57", [0x7a32] = "\x05\x51\x29", + [0x7a33] = "\x05\x51\x23", [0x7a34] = "\x05\x50\x7b", + [0x7a35] = "\x05\x50\x7e", [0x7a36] = "\x07\x28\x78", + [0x7a37] = "\x05\x51\x24", [0x7a38] = "\x04\x4d\x5d", + [0x7a39] = "\x05\x51\x26", [0x7a3a] = "\x04\x4d\x62", + [0x7a3b] = "\x07\x29\x24", [0x7a3c] = "\x07\x28\x77", + [0x7a3d] = "\x07\x28\x6f", [0x7a3e] = "\x05\x50\x78", + [0x7a3f] = "\x05\x50\x7c", [0x7a40] = "\x07\x28\x7d", + [0x7a42] = "\x07\x28\x6d", [0x7a43] = "\x05\x51\x25", + [0x7a44] = "\x05\x50\x7d", [0x7a45] = "\x05\x50\x77", + [0x7a46] = "\x05\x50\x79", [0x7a47] = "\x05\x50\x76", + [0x7a49] = "\x0f\x52\x32", [0x7a4a] = "\x0f\x52\x33", + [0x7a4b] = "\x0f\x52\x34", [0x7a4c] = "\x0f\x52\x35", + [0x7a4d] = "\x0f\x52\x37", [0x7a4e] = "\x0f\x52\x39", + [0x7a4f] = "\x0f\x52\x3a", [0x7a50] = "\x07\x28\x76", + [0x7a51] = "\x07\x28\x75", [0x7a56] = "\x07\x28\x6c", + [0x7a58] = "\x07\x28\x72", [0x7a59] = "\x0f\x52\x38", + [0x7a5a] = "\x05\x51\x21", [0x7a5b] = "\x07\x28\x7b", + [0x7a5c] = "\x07\x28\x6e", [0x7a5d] = "\x05\x51\x28", + [0x7a5e] = "\x07\x29\x23", [0x7a5f] = "\x07\x28\x7e", + [0x7a60] = "\x07\x28\x7a", [0x7a61] = "\x07\x28\x73", + [0x7a62] = "\x07\x33\x46", [0x7a63] = "\x05\x58\x40", + [0x7a64] = "\x04\x53\x71", [0x7a65] = "\x07\x33\x52", + [0x7a66] = "\x04\x53\x68", [0x7a67] = "\x04\x53\x65", + [0x7a68] = "\x04\x53\x6c", [0x7a69] = "\x07\x33\x49", + [0x7a6a] = "\x07\x33\x51", [0x7a6b] = "\x07\x33\x43", + [0x7a6c] = "\x05\x58\x3d", [0x7a6d] = "\x07\x33\x42", + [0x7a6e] = "\x05\x58\x3c", [0x7a6f] = "\x07\x33\x3c", + [0x7a71] = "\x04\x53\x70", [0x7a72] = "\x04\x53\x67", + [0x7a73] = "\x07\x33\x45", [0x7a74] = "\x04\x53\x6f", + [0x7a75] = "\x07\x33\x3d", [0x7a76] = "\x04\x53\x6e", + [0x7a77] = "\x07\x33\x47", [0x7a78] = "\x07\x33\x4e", + [0x7a79] = "\x04\x53\x66", [0x7a7a] = "\x07\x33\x50", + [0x7a7b] = "\x07\x33\x3e", [0x7a7c] = "\x04\x53\x69", + [0x7a7d] = "\x07\x33\x3b", [0x7a7e] = "\x07\x33\x53", + [0x7a7f] = "\x07\x33\x40", [0x7a80] = "\x07\x33\x3f", + [0x7a81] = "\x07\x33\x48", [0x7a82] = "\x07\x33\x4a", + [0x7a83] = "\x05\x58\x3f", [0x7a84] = "\x07\x33\x4c", + [0x7a85] = "\x04\x53\x6d", [0x7a86] = "\x07\x33\x44", + [0x7a87] = "\x05\x58\x3e", [0x7a88] = "\x0f\x57\x6e", + [0x7a89] = "\x0f\x57\x6f", [0x7a8a] = "\x0f\x57\x70", + [0x7a8b] = "\x0f\x57\x71", [0x7a8c] = "\x0f\x57\x72", + [0x7a8d] = "\x0f\x57\x73", [0x7a8e] = "\x0f\x57\x74", + [0x7a8f] = "\x0f\x57\x75", [0x7a90] = "\x0f\x57\x76", + [0x7a91] = "\x0f\x57\x77", [0x7a92] = "\x0f\x57\x78", + [0x7a94] = "\x07\x33\x54", [0x7a96] = "\x07\x33\x41", + [0x7a97] = "\x07\x33\x4b", [0x7a98] = "\x04\x58\x6e", + [0x7a99] = "\x05\x5e\x52", [0x7a9a] = "\x05\x5e\x51", + [0x7a9b] = "\x07\x3b\x7d", [0x7a9c] = "\x04\x58\x6f", + [0x7a9d] = "\x05\x5e\x54", [0x7a9e] = "\x04\x58\x71", + [0x7a9f] = "\x07\x3b\x79", [0x7aa0] = "\x04\x58\x6d", + [0x7aa1] = "\x05\x5e\x4d", [0x7aa2] = "\x05\x5e\x53", + [0x7aa3] = "\x05\x5e\x4e", [0x7aa4] = "\x07\x3b\x76", + [0x7aa5] = "\x07\x3c\x25", [0x7aa6] = "\x04\x58\x72", + [0x7aa7] = "\x07\x43\x2a", [0x7aa8] = "\x05\x5e\x4f", + [0x7aa9] = "\x07\x3c\x21", [0x7aaa] = "\x07\x3b\x77", + [0x7aab] = "\x05\x5e\x56", [0x7aac] = "\x07\x3c\x27", + [0x7aad] = "\x07\x3b\x7c", [0x7aae] = "\x07\x3b\x78", + [0x7aaf] = "\x05\x5e\x50", [0x7ab0] = "\x04\x58\x74", + [0x7ab1] = "\x07\x3b\x7b", [0x7ab2] = "\x07\x3b\x7e", + [0x7ab3] = "\x07\x3c\x22", [0x7ab4] = "\x07\x3c\x23", + [0x7ab5] = "\x04\x58\x73", [0x7ab6] = "\x05\x5e\x4b", + [0x7ab7] = "\x07\x3c\x26", [0x7ab9] = "\x05\x5e\x4c", + [0x7aba] = "\x07\x3c\x24", [0x7abf] = "\x07\x3b\x75", + [0x7ac0] = "\x0f\x5c\x63", [0x7ac1] = "\x0f\x5c\x64", + [0x7ac2] = "\x0f\x5c\x65", [0x7ac3] = "\x0f\x5c\x66", + [0x7ac4] = "\x0f\x5c\x67", [0x7ac5] = "\x0f\x5c\x68", + [0x7ac6] = "\x0f\x5c\x69", [0x7ac7] = "\x0f\x5c\x6a", + [0x7ac8] = "\x0f\x5c\x6b", [0x7acb] = "\x07\x3c\x28", + [0x7acf] = "\x07\x3c\x29", [0x7ad0] = "\x07\x3b\x7a", + [0x7ad2] = "\x04\x5d\x5e", [0x7ad3] = "\x04\x5d\x56", + [0x7ad4] = "\x07\x43\x37", [0x7ad5] = "\x04\x5d\x58", + [0x7ad6] = "\x07\x43\x35", [0x7ad7] = "\x05\x64\x68", + [0x7ad8] = "\x07\x43\x3a", [0x7ad9] = "\x07\x43\x2b", + [0x7ada] = "\x04\x5d\x60", [0x7adb] = "\x05\x64\x66", + [0x7adc] = "\x05\x58\x41", [0x7add] = "\x04\x5d\x59", + [0x7ade] = "\x05\x64\x67", [0x7adf] = "\x07\x43\x38", + [0x7ae0] = "\x07\x43\x32", [0x7ae1] = "\x05\x64\x64", + [0x7ae2] = "\x04\x5d\x53", [0x7ae3] = "\x07\x43\x3b", + [0x7ae4] = "\x04\x5d\x55", [0x7ae5] = "\x05\x64\x65", + [0x7ae6] = "\x04\x5d\x5d", [0x7ae7] = "\x07\x43\x39", + [0x7ae8] = "\x07\x43\x2f", [0x7ae9] = "\x07\x43\x33", + [0x7aea] = "\x07\x4a\x2a", [0x7aeb] = "\x07\x43\x30", + [0x7aec] = "\x04\x5d\x5c", [0x7aed] = "\x07\x43\x34", + [0x7aee] = "\x07\x43\x31", [0x7aef] = "\x07\x43\x3c", + [0x7af0] = "\x07\x43\x2c", [0x7af2] = "\x07\x43\x2d", + [0x7af5] = "\x0f\x60\x72", [0x7af6] = "\x0f\x60\x75", + [0x7af8] = "\x07\x43\x36", [0x7afa] = "\x04\x5d\x5f", + [0x7afd] = "\x07\x43\x2e", [0x7afe] = "\x05\x69\x4d", + [0x7aff] = "\x05\x69\x4f", [0x7b00] = "\x07\x4a\x2f", + [0x7b02] = "\x04\x61\x3e", [0x7b03] = "\x07\x4a\x2c", + [0x7b04] = "\x07\x4a\x2e", [0x7b05] = "\x04\x61\x43", + [0x7b06] = "\x04\x61\x39", [0x7b07] = "\x05\x69\x50", + [0x7b08] = "\x04\x61\x41", [0x7b09] = "\x07\x4a\x34", + [0x7b0a] = "\x04\x61\x42", [0x7b0b] = "\x05\x69\x4e", + [0x7b0c] = "\x04\x61\x3f", [0x7b0d] = "\x07\x4a\x26", + [0x7b0e] = "\x07\x4a\x29", [0x7b0f] = "\x07\x43\x3d", + [0x7b10] = "\x07\x4a\x28", [0x7b11] = "\x07\x4a\x35", + [0x7b12] = "\x07\x50\x33", [0x7b13] = "\x07\x4a\x33", + [0x7b15] = "\x04\x61\x3c", [0x7b16] = "\x05\x6d\x60", + [0x7b17] = "\x07\x4a\x27", [0x7b19] = "\x0f\x63\x78", + [0x7b1a] = "\x0f\x63\x79", [0x7b1b] = "\x0f\x63\x7a", + [0x7b1c] = "\x04\x61\x44", [0x7b1d] = "\x07\x4a\x2b", + [0x7b1f] = "\x07\x50\x35", [0x7b20] = "\x07\x4a\x30", + [0x7b21] = "\x07\x4a\x31", [0x7b22] = "\x07\x4a\x2d", + [0x7b23] = "\x07\x4a\x32", [0x7b24] = "\x04\x61\x38", + [0x7b25] = "\x0f\x60\x74", [0x7b27] = "\x04\x64\x4a", + [0x7b28] = "\x04\x64\x4b", [0x7b29] = "\x05\x6d\x62", + [0x7b2a] = "\x05\x6d\x61", [0x7b2b] = "\x07\x50\x2d", + [0x7b2c] = "\x05\x6d\x63", [0x7b2d] = "\x07\x50\x2f", + [0x7b2e] = "\x04\x64\x49", [0x7b2f] = "\x07\x50\x2b", + [0x7b30] = "\x05\x69\x53", [0x7b31] = "\x07\x50\x32", + [0x7b32] = "\x07\x50\x2e", [0x7b33] = "\x07\x50\x34", + [0x7b34] = "\x07\x50\x36", [0x7b35] = "\x07\x50\x2c", + [0x7b36] = "\x07\x50\x30", [0x7b3b] = "\x0f\x66\x36", + [0x7b3c] = "\x0f\x66\x37", [0x7b3d] = "\x0f\x66\x38", + [0x7b3e] = "\x0f\x66\x39", [0x7b3f] = "\x07\x50\x38", + [0x7b40] = "\x07\x50\x37", [0x7b41] = "\x07\x50\x39", + [0x7b42] = "\x07\x55\x2a", [0x7b43] = "\x04\x67\x42", + [0x7b44] = "\x07\x55\x34", [0x7b45] = "\x07\x55\x2d", + [0x7b46] = "\x07\x55\x33", [0x7b48] = "\x04\x67\x38", + [0x7b49] = "\x07\x55\x2e", [0x7b4a] = "\x05\x71\x3d", + [0x7b4b] = "\x07\x55\x2c", [0x7b4c] = "\x07\x55\x2f", + [0x7b4d] = "\x04\x67\x3c", [0x7b4e] = "\x05\x71\x3a", + [0x7b4f] = "\x05\x71\x39", [0x7b50] = "\x04\x67\x43", + [0x7b51] = "\x07\x59\x3b", [0x7b52] = "\x07\x59\x35", + [0x7b53] = "\x04\x67\x3a", [0x7b54] = "\x05\x71\x3c", + [0x7b55] = "\x05\x71\x3b", [0x7b56] = "\x07\x55\x31", + [0x7b58] = "\x07\x55\x2b", [0x7b59] = "\x07\x55\x30", + [0x7b5a] = "\x05\x71\x38", [0x7b5b] = "\x07\x55\x35", + [0x7b5c] = "\x05\x74\x3b", [0x7b5d] = "\x05\x74\x3d", + [0x7b5e] = "\x05\x74\x40", [0x7b5f] = "\x05\x76\x4b", + [0x7b60] = "\x04\x69\x47", [0x7b61] = "\x07\x59\x39", + [0x7b62] = "\x04\x69\x4a", [0x7b63] = "\x05\x74\x3f", + [0x7b64] = "\x04\x69\x49", [0x7b65] = "\x05\x74\x3e", + [0x7b67] = "\x07\x59\x37", [0x7b68] = "\x07\x59\x40", + [0x7b69] = "\x07\x55\x36", [0x7b6a] = "\x05\x74\x3c", + [0x7b6b] = "\x07\x59\x36", [0x7b6c] = "\x07\x59\x3a", + [0x7b6d] = "\x07\x59\x3f", [0x7b6e] = "\x04\x69\x46", + [0x7b6f] = "\x07\x59\x3e", [0x7b70] = "\x0f\x69\x72", + [0x7b71] = "\x0f\x69\x73", [0x7b72] = "\x0f\x69\x74", + [0x7b74] = "\x07\x59\x3c", [0x7b77] = "\x07\x59\x3d", + [0x7b78] = "\x04\x6a\x7d", [0x7b79] = "\x04\x6a\x7e", + [0x7b7a] = "\x07\x5c\x66", [0x7b7b] = "\x05\x76\x4e", + [0x7b7c] = "\x05\x76\x4d", [0x7b7d] = "\x05\x78\x31", + [0x7b7e] = "\x07\x5c\x68", [0x7b7f] = "\x07\x5c\x69", + [0x7b80] = "\x07\x5c\x6a", [0x7b81] = "\x0f\x6a\x74", + [0x7b82] = "\x0f\x6a\x75", [0x7b83] = "\x07\x5c\x67", + [0x7b84] = "\x07\x59\x42", [0x7b85] = "\x07\x5f\x57", + [0x7b86] = "\x07\x5f\x58", [0x7b87] = "\x07\x5f\x55", + [0x7b88] = "\x04\x6c\x27", [0x7b89] = "\x07\x5f\x56", + [0x7b8a] = "\x07\x5f\x5a", [0x7b8b] = "\x0f\x6b\x65", + [0x7b8c] = "\x0f\x6b\x66", [0x7b8e] = "\x07\x5f\x54", + [0x7b8f] = "\x07\x5f\x59", [0x7b90] = "\x07\x5f\x5b", + [0x7b91] = "\x04\x6d\x23", [0x7b92] = "\x07\x61\x4b", + [0x7b93] = "\x05\x79\x4e", [0x7b94] = "\x07\x61\x4c", + [0x7b95] = "\x0f\x6c\x3a", [0x7b96] = "\x0f\x6c\x3b", + [0x7b98] = "\x07\x61\x4a", [0x7b99] = "\x05\x7a\x75", + [0x7b9a] = "\x07\x62\x65", [0x7b9b] = "\x07\x62\x64", + [0x7b9d] = "\x05\x7a\x39", [0x7b9e] = "\x04\x6d\x7e", + [0x7b9f] = "\x07\x63\x74", [0x7ba2] = "\x07\x64\x62", + [0x7ba3] = "\x04\x6e\x3c", [0x7ba5] = "\x07\x64\x44", + [0x7ba8] = "\x07\x65\x44", [0x7ba9] = "\x07\x66\x50", + [0x7bab] = "\x05\x24\x77", [0x7bac] = "\x04\x30\x24", + [0x7bad] = "\x05\x30\x44", [0x7bae] = "\x05\x30\x45", + [0x7baf] = "\x04\x35\x48", [0x7bb0] = "\x04\x35\x49", + [0x7bb1] = "\x04\x35\x47", [0x7bb2] = "\x06\x44\x7b", + [0x7bb3] = "\x04\x3b\x3a", [0x7bb5] = "\x05\x42\x7e", + [0x7bb6] = "\x05\x43\x21", [0x7bb7] = "\x06\x58\x4c", + [0x7bb8] = "\x04\x47\x4d", [0x7bba] = "\x05\x51\x2c", + [0x7bbb] = "\x04\x4d\x63", [0x7bbc] = "\x05\x51\x2d", + [0x7bbd] = "\x05\x51\x2b", [0x7bc0] = "\x05\x58\x42", + [0x7bc1] = "\x07\x33\x56", [0x7bc2] = "\x07\x33\x55", + [0x7bc6] = "\x07\x3c\x2a", [0x7bc9] = "\x05\x5e\x57", + [0x7bca] = "\x07\x43\x3e", [0x7bcb] = "\x07\x4a\x36", + [0x7bcc] = "\x07\x4a\x39", [0x7bcd] = "\x05\x69\x54", + [0x7bce] = "\x07\x4a\x37", [0x7bcf] = "\x05\x69\x55", + [0x7bd0] = "\x07\x4a\x38", [0x7bd3] = "\x07\x50\x3a", + [0x7bd4] = "\x07\x4a\x3a", [0x7bd5] = "\x05\x71\x3e", + [0x7bd8] = "\x05\x7a\x76", [0x7bd9] = "\x07\x65\x77", + [0x7bda] = "\x06\x34\x55", [0x7bdb] = "\x06\x3c\x35", + [0x7bdc] = "\x06\x3c\x34", [0x7bdf] = "\x0f\x38\x57", + [0x7be0] = "\x04\x3b\x3b", [0x7be1] = "\x05\x3c\x3e", + [0x7be2] = "\x06\x4e\x7b", [0x7be3] = "\x0f\x3f\x3d", + [0x7be5] = "\x05\x43\x22", [0x7be6] = "\x04\x40\x75", + [0x7be7] = "\x06\x5b\x5f", [0x7be9] = "\x04\x47\x50", + [0x7bea] = "\x06\x62\x54", [0x7beb] = "\x04\x47\x51", + [0x7bed] = "\x07\x29\x28", [0x7bee] = "\x07\x29\x27", + [0x7bef] = "\x07\x29\x25", [0x7bf0] = "\x05\x51\x2f", + [0x7bf1] = "\x05\x51\x2e", [0x7bf3] = "\x07\x29\x26", + [0x7bf4] = "\x0f\x52\x3b", [0x7bf7] = "\x05\x58\x43", + [0x7bf8] = "\x04\x53\x74", [0x7bf9] = "\x07\x33\x57", + [0x7bfa] = "\x05\x58\x44", [0x7bfb] = "\x07\x2c\x56", + [0x7bfc] = "\x05\x5e\x5a", [0x7bfd] = "\x07\x3c\x2d", + [0x7bfe] = "\x05\x5e\x58", [0x7bff] = "\x07\x3c\x2c", + [0x7c00] = "\x05\x5e\x59", [0x7c01] = "\x07\x3c\x2b", + [0x7c03] = "\x05\x64\x69", [0x7c04] = "\x04\x5d\x63", + [0x7c05] = "\x07\x43\x40", [0x7c06] = "\x04\x5d\x62", + [0x7c07] = "\x05\x5e\x5b", [0x7c09] = "\x07\x4a\x3c", + [0x7c0a] = "\x05\x69\x57", [0x7c0b] = "\x07\x4a\x3d", + [0x7c0c] = "\x07\x43\x41", [0x7c0d] = "\x07\x43\x42", + [0x7c10] = "\x05\x69\x56", [0x7c11] = "\x05\x6d\x66", + [0x7c12] = "\x05\x6d\x65", [0x7c13] = "\x05\x6d\x67", + [0x7c14] = "\x0f\x66\x3a", [0x7c15] = "\x05\x6d\x64", + [0x7c16] = "\x0f\x63\x7b", [0x7c18] = "\x05\x71\x3f", + [0x7c19] = "\x05\x74\x41", [0x7c1d] = "\x0f\x6a\x76", + [0x7c1e] = "\x0f\x6a\x77", [0x7c20] = "\x05\x78\x32", + [0x7c21] = "\x05\x79\x4f", [0x7c23] = "\x05\x7a\x77", + [0x7c25] = "\x07\x65\x45", [0x7c27] = "\x06\x25\x54", + [0x7c28] = "\x05\x23\x29", [0x7c29] = "\x05\x2b\x4a", + [0x7c2a] = "\x05\x30\x48", [0x7c2b] = "\x05\x30\x47", + [0x7c2c] = "\x06\x3c\x37", [0x7c2d] = "\x06\x3c\x36", + [0x7c2e] = "\x06\x44\x7e", [0x7c2f] = "\x06\x44\x7c", + [0x7c30] = "\x05\x35\x61", [0x7c32] = "\x06\x45\x21", + [0x7c34] = "\x06\x44\x7d", [0x7c35] = "\x04\x3b\x3c", + [0x7c36] = "\x06\x4e\x7c", [0x7c37] = "\x04\x3b\x3d", + [0x7c38] = "\x05\x3c\x40", [0x7c39] = "\x05\x3c\x3f", + [0x7c3a] = "\x06\x4e\x7e", [0x7c3b] = "\x05\x3c\x41", + [0x7c3c] = "\x06\x4f\x23", [0x7c3d] = "\x06\x4e\x7d", + [0x7c3e] = "\x0f\x32\x55", [0x7c3f] = "\x04\x40\x77", + [0x7c40] = "\x05\x43\x25", [0x7c41] = "\x04\x40\x76", + [0x7c42] = "\x06\x58\x4e", [0x7c43] = "\x06\x58\x4f", + [0x7c44] = "\x05\x43\x27", [0x7c45] = "\x05\x43\x23", + [0x7c46] = "\x05\x43\x26", [0x7c47] = "\x06\x58\x4d", + [0x7c48] = "\x06\x4f\x22", [0x7c49] = "\x05\x43\x24", + [0x7c4a] = "\x05\x43\x28", [0x7c4d] = "\x06\x62\x55", + [0x7c4e] = "\x06\x62\x56", [0x7c4f] = "\x04\x47\x53", + [0x7c50] = "\x04\x47\x52", [0x7c51] = "\x06\x62\x59", + [0x7c52] = "\x05\x49\x7d", [0x7c53] = "\x05\x49\x7c", + [0x7c54] = "\x06\x62\x5b", [0x7c55] = "\x06\x62\x5a", + [0x7c56] = "\x06\x62\x57", [0x7c57] = "\x06\x62\x58", + [0x7c58] = "\x05\x51\x32", [0x7c59] = "\x04\x4d\x66", + [0x7c5a] = "\x07\x29\x29", [0x7c5b] = "\x07\x29\x2b", + [0x7c5c] = "\x05\x51\x31", [0x7c5d] = "\x05\x51\x33", + [0x7c5e] = "\x07\x29\x2d", [0x7c5f] = "\x07\x29\x2c", + [0x7c60] = "\x05\x49\x7e", [0x7c61] = "\x05\x51\x30", + [0x7c62] = "\x07\x29\x2a", [0x7c63] = "\x05\x4a\x21", + [0x7c64] = "\x07\x29\x2e", [0x7c65] = "\x0f\x52\x3c", + [0x7c68] = "\x05\x58\x47", [0x7c69] = "\x05\x58\x48", + [0x7c6a] = "\x05\x58\x46", [0x7c6b] = "\x07\x33\x59", + [0x7c6c] = "\x04\x53\x76", [0x7c6d] = "\x07\x33\x5a", + [0x7c6e] = "\x07\x33\x5c", [0x7c6f] = "\x07\x33\x5b", + [0x7c70] = "\x05\x58\x45", [0x7c71] = "\x07\x33\x58", + [0x7c72] = "\x05\x5e\x5d", [0x7c73] = "\x05\x5e\x5e", + [0x7c74] = "\x05\x5e\x5f", [0x7c75] = "\x05\x5e\x5c", + [0x7c76] = "\x07\x3c\x30", [0x7c77] = "\x07\x3c\x2e", + [0x7c78] = "\x07\x3c\x2f", [0x7c7b] = "\x04\x5d\x65", + [0x7c7c] = "\x05\x64\x6a", [0x7c7e] = "\x05\x64\x6b", + [0x7c7f] = "\x07\x43\x43", [0x7c80] = "\x07\x43\x44", + [0x7c81] = "\x07\x43\x45", [0x7c82] = "\x04\x61\x47", + [0x7c83] = "\x05\x69\x58", [0x7c84] = "\x05\x58\x49", + [0x7c85] = "\x07\x4a\x3e", [0x7c86] = "\x04\x61\x49", + [0x7c87] = "\x05\x6d\x6b", [0x7c88] = "\x05\x6d\x68", + [0x7c89] = "\x07\x50\x3b", [0x7c8a] = "\x05\x6d\x6a", + [0x7c8b] = "\x05\x6d\x69", [0x7c8c] = "\x04\x67\x46", + [0x7c8d] = "\x05\x71\x40", [0x7c8e] = "\x07\x55\x37", + [0x7c8f] = "\x07\x55\x38", [0x7c90] = "\x07\x59\x43", + [0x7c91] = "\x07\x5c\x6c", [0x7c92] = "\x07\x59\x44", + [0x7c93] = "\x07\x59\x45", [0x7c94] = "\x07\x5c\x6d", + [0x7c95] = "\x07\x5c\x6e", [0x7c97] = "\x05\x74\x42", + [0x7c98] = "\x07\x5f\x5c", [0x7c9a] = "\x07\x61\x4d", + [0x7c9b] = "\x07\x5f\x5d", [0x7c9c] = "\x05\x79\x50", + [0x7c9d] = "\x05\x7a\x3a", [0x7c9e] = "\x07\x65\x46", + [0x7c9f] = "\x07\x66\x43", [0x7ca0] = "\x0f\x28\x6c", + [0x7ca1] = "\x05\x2b\x4b", [0x7ca2] = "\x06\x3c\x38", + [0x7ca3] = "\x0f\x32\x56", [0x7ca4] = "\x05\x35\x64", + [0x7ca5] = "\x05\x35\x63", [0x7ca6] = "\x04\x35\x4f", + [0x7ca7] = "\x05\x35\x62", [0x7ca8] = "\x04\x35\x4e", + [0x7ca9] = "\x06\x45\x25", [0x7caa] = "\x06\x45\x23", + [0x7cac] = "\x06\x4f\x25", [0x7cad] = "\x05\x3c\x42", + [0x7cae] = "\x05\x3c\x46", [0x7caf] = "\x05\x3c\x44", + [0x7cb0] = "\x05\x3c\x48", [0x7cb1] = "\x05\x3c\x45", + [0x7cb2] = "\x06\x4f\x28", [0x7cb3] = "\x06\x4f\x26", + [0x7cb4] = "\x05\x3c\x47", [0x7cb5] = "\x05\x3c\x43", + [0x7cb6] = "\x06\x4f\x27", [0x7cb7] = "\x06\x4f\x24", + [0x7cb9] = "\x0f\x3f\x3e", [0x7cbe] = "\x04\x40\x7c", + [0x7cbf] = "\x04\x40\x7d", [0x7cc0] = "\x04\x40\x7a", + [0x7cc1] = "\x06\x58\x52", [0x7cc2] = "\x05\x43\x2b", + [0x7cc3] = "\x06\x58\x51", [0x7cc4] = "\x05\x43\x2a", + [0x7cc5] = "\x04\x40\x79", [0x7cc6] = "\x04\x40\x7b", + [0x7cc7] = "\x06\x58\x53", [0x7cc8] = "\x0f\x45\x47", + [0x7cc9] = "\x05\x43\x29", [0x7cca] = "\x06\x62\x61", + [0x7ccb] = "\x06\x62\x5c", [0x7ccc] = "\x05\x4a\x25", + [0x7ccd] = "\x05\x4a\x23", [0x7cce] = "\x05\x4a\x22", + [0x7ccf] = "\x06\x62\x5f", [0x7cd0] = "\x05\x4a\x24", + [0x7cd1] = "\x06\x62\x5e", [0x7cd2] = "\x06\x62\x60", + [0x7cd3] = "\x0f\x4c\x48", [0x7cd4] = "\x06\x62\x5d", + [0x7cd6] = "\x06\x62\x62", [0x7cd7] = "\x0f\x4c\x49", + [0x7cd9] = "\x05\x51\x35", [0x7cda] = "\x05\x51\x34", + [0x7cdb] = "\x04\x4d\x69", [0x7cdc] = "\x05\x51\x37", + [0x7cdd] = "\x05\x51\x36", [0x7cde] = "\x05\x51\x38", + [0x7cdf] = "\x04\x4d\x6a", [0x7ce0] = "\x07\x29\x2f", + [0x7ce1] = "\x07\x29\x30", [0x7ce2] = "\x04\x4d\x6b", + [0x7ce5] = "\x07\x29\x31", [0x7ce6] = "\x07\x33\x64", + [0x7ce7] = "\x05\x58\x4b", [0x7ce8] = "\x07\x33\x5e", + [0x7ce9] = "\x07\x33\x60", [0x7cea] = "\x07\x33\x61", + [0x7ceb] = "\x04\x53\x78", [0x7cec] = "\x05\x58\x4a", + [0x7ced] = "\x07\x33\x62", [0x7cee] = "\x05\x58\x4c", + [0x7cef] = "\x07\x33\x5f", [0x7cf1] = "\x0f\x57\x7a", + [0x7cf2] = "\x07\x33\x5d", [0x7cf3] = "\x07\x33\x63", + [0x7cf5] = "\x04\x58\x79", [0x7cf6] = "\x05\x5e\x63", + [0x7cf7] = "\x07\x3c\x31", [0x7cf8] = "\x05\x5e\x62", + [0x7cf9] = "\x04\x58\x78", [0x7cfa] = "\x05\x5e\x60", + [0x7cfb] = "\x05\x5e\x64", [0x7cfc] = "\x05\x5e\x61", + [0x7cfe] = "\x0f\x5c\x6c", [0x7d01] = "\x07\x43\x46", + [0x7d02] = "\x04\x5d\x67", [0x7d03] = "\x07\x43\x47", + [0x7d04] = "\x04\x5d\x66", [0x7d05] = "\x05\x64\x6c", + [0x7d06] = "\x07\x4a\x3f", [0x7d07] = "\x05\x64\x6d", + [0x7d0c] = "\x05\x69\x5b", [0x7d0d] = "\x07\x4a\x40", + [0x7d0e] = "\x05\x69\x5a", [0x7d0f] = "\x07\x4a\x43", + [0x7d10] = "\x07\x50\x3d", [0x7d14] = "\x07\x4a\x42", + [0x7d15] = "\x05\x69\x59", [0x7d16] = "\x05\x6d\x6d", + [0x7d17] = "\x05\x6d\x6c", [0x7d18] = "\x07\x50\x3c", + [0x7d19] = "\x05\x71\x42", [0x7d1a] = "\x05\x6d\x6e", + [0x7d1d] = "\x05\x71\x41", [0x7d1e] = "\x07\x55\x39", + [0x7d1f] = "\x07\x59\x46", [0x7d20] = "\x07\x5c\x70", + [0x7d21] = "\x07\x5c\x6f", [0x7d23] = "\x05\x7a\x78", + [0x7d24] = "\x05\x2b\x4c", [0x7d25] = "\x04\x2b\x4a", + [0x7d26] = "\x06\x34\x56", [0x7d28] = "\x0f\x2d\x4a", + [0x7d2a] = "\x04\x30\x26", [0x7d2b] = "\x06\x3c\x39", + [0x7d2c] = "\x05\x30\x49", [0x7d2d] = "\x05\x30\x4a", + [0x7d30] = "\x0f\x32\x57", [0x7d31] = "\x0f\x32\x58", + [0x7d32] = "\x06\x3c\x3a", [0x7d33] = "\x06\x45\x2a", + [0x7d35] = "\x06\x45\x2c", [0x7d36] = "\x06\x45\x27", + [0x7d37] = "\x06\x45\x28", [0x7d38] = "\x06\x45\x26", + [0x7d39] = "\x06\x45\x2b", [0x7d3a] = "\x05\x35\x65", + [0x7d3b] = "\x0f\x38\x59", [0x7d3c] = "\x0f\x38\x5a", + [0x7d3d] = "\x0f\x38\x5b", [0x7d3e] = "\x0f\x38\x5c", + [0x7d3f] = "\x0f\x38\x5d", [0x7d40] = "\x0f\x38\x5e", + [0x7d41] = "\x0f\x38\x5f", [0x7d42] = "\x0f\x38\x60", + [0x7d44] = "\x06\x45\x2d", [0x7d45] = "\x04\x35\x53", + [0x7d47] = "\x06\x45\x29", [0x7d48] = "\x04\x35\x52", + [0x7d49] = "\x06\x4f\x2b", [0x7d4a] = "\x04\x3b\x40", + [0x7d4b] = "\x05\x3c\x49", [0x7d4c] = "\x05\x3c\x4b", + [0x7d4d] = "\x06\x4f\x2e", [0x7d4e] = "\x06\x4f\x2c", + [0x7d4f] = "\x06\x4f\x2d", [0x7d50] = "\x06\x58\x57", + [0x7d51] = "\x05\x3c\x4a", [0x7d55] = "\x0f\x3f\x3f", + [0x7d56] = "\x0f\x3f\x41", [0x7d57] = "\x0f\x3f\x42", + [0x7d58] = "\x0f\x3f\x43", [0x7d59] = "\x0f\x3f\x44", + [0x7d5a] = "\x0f\x3f\x45", [0x7d5c] = "\x06\x4f\x2f", + [0x7d5d] = "\x06\x4f\x2a", [0x7d60] = "\x05\x3c\x4d", + [0x7d63] = "\x04\x41\x22", [0x7d64] = "\x06\x58\x54", + [0x7d65] = "\x06\x58\x59", [0x7d66] = "\x06\x58\x56", + [0x7d67] = "\x05\x43\x30", [0x7d68] = "\x05\x43\x2c", + [0x7d69] = "\x06\x58\x5e", [0x7d6a] = "\x06\x58\x55", + [0x7d6b] = "\x05\x43\x2f", [0x7d6c] = "\x05\x43\x31", + [0x7d6d] = "\x05\x43\x32", [0x7d6e] = "\x06\x58\x58", + [0x7d6f] = "\x06\x58\x60", [0x7d70] = "\x06\x58\x62", + [0x7d71] = "\x05\x43\x33", [0x7d72] = "\x06\x58\x5f", + [0x7d74] = "\x0f\x45\x48", [0x7d75] = "\x0f\x45\x49", + [0x7d76] = "\x0f\x45\x4a", [0x7d77] = "\x0f\x45\x4b", + [0x7d78] = "\x0f\x45\x4c", [0x7d79] = "\x0f\x45\x4d", + [0x7d7a] = "\x0f\x45\x4e", [0x7d7d] = "\x06\x58\x61", + [0x7d7e] = "\x0f\x3f\x40", [0x7d7f] = "\x06\x58\x5b", + [0x7d82] = "\x05\x43\x2e", [0x7d83] = "\x0f\x46\x34", + [0x7d85] = "\x06\x62\x65", [0x7d86] = "\x04\x47\x55", + [0x7d87] = "\x05\x4a\x26", [0x7d88] = "\x06\x62\x64", + [0x7d89] = "\x06\x62\x66", [0x7d8a] = "\x06\x62\x6c", + [0x7d8b] = "\x06\x62\x63", [0x7d8c] = "\x06\x62\x69", + [0x7d8d] = "\x05\x4a\x27", [0x7d8e] = "\x04\x47\x57", + [0x7d90] = "\x0f\x4c\x4d", [0x7d91] = "\x0f\x4c\x4e", + [0x7d92] = "\x0f\x4c\x4f", [0x7d93] = "\x0f\x4c\x51", + [0x7d97] = "\x0f\x4c\x50", [0x7d98] = "\x0f\x4c\x4c", + [0x7d99] = "\x06\x62\x6b", [0x7d9a] = "\x06\x58\x5d", + [0x7d9b] = "\x07\x29\x33", [0x7d9c] = "\x07\x29\x35", + [0x7d9d] = "\x05\x4a\x28", [0x7d9e] = "\x04\x4d\x6f", + [0x7d9f] = "\x07\x29\x34", [0x7da0] = "\x05\x51\x3a", + [0x7da1] = "\x04\x4d\x70", [0x7da2] = "\x05\x51\x3b", + [0x7da3] = "\x07\x29\x39", [0x7da4] = "\x07\x29\x38", + [0x7da5] = "\x07\x29\x32", [0x7da6] = "\x0f\x52\x3d", + [0x7da7] = "\x0f\x52\x3e", [0x7da8] = "\x0f\x52\x3f", + [0x7daa] = "\x07\x29\x37", [0x7db0] = "\x0f\x4c\x4b", + [0x7db1] = "\x07\x33\x6a", [0x7db2] = "\x05\x58\x4e", + [0x7db3] = "\x07\x33\x67", [0x7db4] = "\x07\x33\x66", + [0x7db5] = "\x05\x58\x4f", [0x7db6] = "\x07\x33\x6b", + [0x7db7] = "\x07\x33\x6e", [0x7db8] = "\x04\x53\x7c", + [0x7db9] = "\x07\x33\x68", [0x7dba] = "\x05\x58\x4d", + [0x7dbb] = "\x06\x62\x68", [0x7dbc] = "\x0f\x54\x32", + [0x7dbe] = "\x0f\x57\x7b", [0x7dbf] = "\x0f\x57\x7c", + [0x7dc0] = "\x0f\x57\x7d", [0x7dc1] = "\x0f\x57\x7e", + [0x7dc2] = "\x0f\x58\x21", [0x7dc3] = "\x0f\x58\x22", + [0x7dc4] = "\x07\x33\x6d", [0x7dc7] = "\x07\x33\x6c", + [0x7dc9] = "\x07\x33\x65", [0x7dca] = "\x07\x33\x69", + [0x7dcb] = "\x05\x58\x50", [0x7dcc] = "\x07\x3c\x32", + [0x7dcd] = "\x05\x5e\x65", [0x7dce] = "\x05\x5b\x2d", + [0x7dcf] = "\x05\x5e\x67", [0x7dd0] = "\x05\x58\x52", + [0x7dd1] = "\x05\x5e\x66", [0x7dd2] = "\x04\x58\x7b", + [0x7dd3] = "\x07\x3c\x38", [0x7dd4] = "\x07\x3c\x34", + [0x7dd5] = "\x07\x3c\x36", [0x7dd6] = "\x07\x3c\x37", + [0x7dd7] = "\x07\x3c\x35", [0x7dd9] = "\x0f\x5c\x6e", + [0x7dda] = "\x0f\x5c\x70", [0x7ddc] = "\x0f\x5c\x6f", + [0x7dde] = "\x07\x43\x4b", [0x7ddf] = "\x05\x64\x73", + [0x7de0] = "\x07\x43\x4e", [0x7de1] = "\x05\x64\x6f", + [0x7de2] = "\x07\x43\x49", [0x7de3] = "\x07\x43\x4a", + [0x7de4] = "\x07\x43\x51", [0x7de5] = "\x05\x64\x71", + [0x7de6] = "\x05\x64\x6e", [0x7de7] = "\x05\x64\x72", + [0x7de8] = "\x07\x43\x4d", [0x7de9] = "\x07\x43\x4c", + [0x7deb] = "\x0f\x60\x76", [0x7dec] = "\x0f\x60\x77", + [0x7ded] = "\x0f\x60\x78", [0x7dee] = "\x0f\x60\x79", + [0x7def] = "\x0f\x60\x7b", [0x7df0] = "\x0f\x60\x7c", + [0x7df2] = "\x07\x43\x48", [0x7df5] = "\x07\x43\x50", + [0x7dfb] = "\x05\x64\x70", [0x7dfc] = "\x07\x4a\x47", + [0x7dfd] = "\x07\x4a\x4b", [0x7dfe] = "\x05\x69\x5d", + [0x7dff] = "\x05\x64\x74", [0x7e00] = "\x07\x4a\x4a", + [0x7e01] = "\x07\x43\x4f", [0x7e02] = "\x05\x69\x5c", + [0x7e03] = "\x04\x61\x4b", [0x7e04] = "\x07\x4a\x48", + [0x7e05] = "\x05\x69\x5e", [0x7e06] = "\x07\x4a\x4d", + [0x7e07] = "\x07\x4a\x4c", [0x7e08] = "\x05\x69\x60", + [0x7e09] = "\x07\x4a\x44", [0x7e0a] = "\x07\x4a\x49", + [0x7e0b] = "\x07\x4a\x46", [0x7e0c] = "\x0f\x63\x7c", + [0x7e0d] = "\x0f\x63\x7d", [0x7e0e] = "\x0f\x63\x7e", + [0x7e0f] = "\x0f\x64\x21", [0x7e11] = "\x07\x4a\x4e", + [0x7e14] = "\x07\x4a\x45", [0x7e15] = "\x05\x69\x5f", + [0x7e16] = "\x04\x64\x51", [0x7e17] = "\x05\x6d\x70", + [0x7e18] = "\x04\x64\x50", [0x7e19] = "\x05\x6d\x6f", + [0x7e1a] = "\x07\x50\x3e", [0x7e1e] = "\x07\x50\x40", + [0x7e20] = "\x0f\x66\x3b", [0x7e21] = "\x0f\x66\x3c", + [0x7e22] = "\x0f\x66\x3d", [0x7e23] = "\x0f\x66\x3e", + [0x7e24] = "\x0f\x66\x3f", [0x7e25] = "\x07\x50\x3f", + [0x7e26] = "\x05\x71\x43", [0x7e27] = "\x04\x67\x47", + [0x7e28] = "\x05\x71\x44", [0x7e2b] = "\x05\x71\x45", + [0x7e2d] = "\x0f\x68\x4e", [0x7e2e] = "\x0f\x68\x4f", + [0x7e2f] = "\x07\x55\x3b", [0x7e31] = "\x07\x59\x47", + [0x7e32] = "\x05\x74\x45", [0x7e33] = "\x05\x74\x44", + [0x7e34] = "\x0f\x69\x76", [0x7e35] = "\x0f\x69\x77", + [0x7e36] = "\x0f\x69\x78", [0x7e37] = "\x07\x59\x4a", + [0x7e38] = "\x07\x59\x48", [0x7e39] = "\x07\x59\x49", + [0x7e3c] = "\x0f\x68\x4d", [0x7e3d] = "\x07\x5c\x71", + [0x7e3e] = "\x04\x6b\x22", [0x7e3f] = "\x05\x74\x43", + [0x7e40] = "\x07\x5c\x72", [0x7e43] = "\x0f\x6a\x78", + [0x7e46] = "\x07\x5c\x73", [0x7e47] = "\x07\x5f\x5e", + [0x7e48] = "\x07\x5f\x60", [0x7e49] = "\x07\x5f\x5f", + [0x7e4e] = "\x07\x62\x66", [0x7e58] = "\x06\x2e\x31", + [0x7e59] = "\x06\x34\x57", [0x7e5a] = "\x06\x34\x58", + [0x7e5b] = "\x05\x35\x66", [0x7e5c] = "\x0f\x38\x61", + [0x7e5d] = "\x06\x4f\x30", [0x7e5e] = "\x04\x3b\x44", + [0x7e60] = "\x06\x58\x63", [0x7e61] = "\x0f\x45\x4f", + [0x7e63] = "\x05\x4a\x2a", [0x7e64] = "\x0f\x4c\x52", + [0x7e67] = "\x07\x29\x3a", [0x7e6c] = "\x05\x58\x54", + [0x7e6d] = "\x05\x58\x53", [0x7e6e] = "\x0f\x58\x23", + [0x7e6f] = "\x07\x33\x6f", [0x7e72] = "\x05\x5e\x69", + [0x7e73] = "\x05\x5e\x6a", [0x7e74] = "\x05\x5e\x68", + [0x7e75] = "\x0f\x5c\x71", [0x7e76] = "\x05\x64\x75", + [0x7e77] = "\x07\x43\x53", [0x7e78] = "\x07\x4a\x50", + [0x7e79] = "\x07\x4a\x4f", [0x7e7d] = "\x05\x71\x46", + [0x7e84] = "\x07\x5c\x74", [0x7e86] = "\x06\x2e\x32", + [0x7e87] = "\x06\x2e\x33", [0x7e88] = "\x06\x34\x59", + [0x7e89] = "\x0f\x2d\x4b", [0x7e8a] = "\x0f\x2d\x4d", + [0x7e8b] = "\x0f\x2d\x4e", [0x7e8c] = "\x0f\x2d\x4f", + [0x7e8d] = "\x0f\x2d\x50", [0x7e8e] = "\x04\x2b\x4b", + [0x7e8f] = "\x05\x30\x4d", [0x7e90] = "\x06\x3c\x3e", + [0x7e92] = "\x06\x3c\x3d", [0x7e93] = "\x05\x30\x4e", + [0x7e94] = "\x06\x3c\x3c", [0x7e96] = "\x04\x30\x29", + [0x7e97] = "\x0f\x32\x59", [0x7e98] = "\x0f\x32\x5a", + [0x7e99] = "\x0f\x32\x5b", [0x7e9a] = "\x0f\x32\x5c", + [0x7e9b] = "\x0f\x32\x5d", [0x7e9d] = "\x05\x35\x6d", + [0x7e9e] = "\x06\x45\x30", [0x7e9f] = "\x05\x35\x67", + [0x7ea0] = "\x04\x35\x57", [0x7ea1] = "\x05\x35\x6a", + [0x7ea2] = "\x05\x35\x6f", [0x7ea3] = "\x05\x35\x6e", + [0x7ea4] = "\x04\x35\x58", [0x7ea5] = "\x06\x45\x2e", + [0x7ea6] = "\x06\x45\x2f", [0x7ea7] = "\x05\x35\x6b", + [0x7ea8] = "\x05\x35\x68", [0x7ea9] = "\x0f\x38\x63", + [0x7eaa] = "\x0f\x38\x64", [0x7eab] = "\x0f\x38\x65", + [0x7eac] = "\x0f\x38\x66", [0x7ead] = "\x0f\x38\x68", + [0x7eae] = "\x0f\x38\x69", [0x7eaf] = "\x0f\x38\x62", + [0x7eb2] = "\x05\x35\x6c", [0x7eb3] = "\x05\x35\x69", + [0x7eb5] = "\x0f\x38\x67", [0x7eb6] = "\x05\x3c\x51", + [0x7eb7] = "\x05\x3c\x50", [0x7eb8] = "\x05\x3c\x54", + [0x7eb9] = "\x05\x3c\x4f", [0x7eba] = "\x06\x4f\x34", + [0x7ebb] = "\x06\x4f\x31", [0x7ebc] = "\x05\x43\x39", + [0x7ebd] = "\x05\x3c\x53", [0x7ebe] = "\x05\x3c\x4e", + [0x7ebf] = "\x06\x4f\x33", [0x7ec0] = "\x04\x3b\x46", + [0x7ec1] = "\x05\x3c\x55", [0x7ec2] = "\x06\x58\x64", + [0x7ec3] = "\x06\x4f\x35", [0x7ec4] = "\x0f\x3f\x47", + [0x7ec5] = "\x0f\x3f\x48", [0x7ec6] = "\x0f\x3f\x49", + [0x7ec7] = "\x0f\x3f\x4a", [0x7ec8] = "\x0f\x3f\x4b", + [0x7ec9] = "\x0f\x3f\x4c", [0x7eca] = "\x0f\x3f\x4f", + [0x7ecb] = "\x0f\x3f\x50", [0x7ecc] = "\x0f\x3f\x51", + [0x7ece] = "\x06\x4f\x32", [0x7ecf] = "\x0f\x3f\x4e", + [0x7ed1] = "\x06\x58\x66", [0x7ed2] = "\x05\x43\x36", + [0x7ed3] = "\x04\x41\x23", [0x7ed4] = "\x06\x58\x68", + [0x7ed5] = "\x04\x41\x25", [0x7ed6] = "\x05\x43\x3b", + [0x7ed7] = "\x05\x43\x35", [0x7ed8] = "\x05\x43\x3d", + [0x7ed9] = "\x05\x43\x37", [0x7eda] = "\x04\x41\x24", + [0x7edb] = "\x06\x58\x6a", [0x7edc] = "\x06\x58\x69", + [0x7edd] = "\x05\x43\x3a", [0x7edf] = "\x0f\x45\x50", + [0x7ee0] = "\x0f\x45\x51", [0x7ee1] = "\x0f\x45\x52", + [0x7ee2] = "\x0f\x45\x53", [0x7ee3] = "\x0f\x45\x54", + [0x7ee4] = "\x0f\x45\x55", [0x7ee5] = "\x0f\x45\x56", + [0x7ee6] = "\x0f\x45\x57", [0x7ee7] = "\x06\x58\x65", + [0x7eeb] = "\x06\x58\x67", [0x7eec] = "\x06\x62\x6d", + [0x7eee] = "\x0f\x3f\x4d", [0x7eef] = "\x06\x62\x6e", + [0x7ef0] = "\x04\x47\x5c", [0x7ef1] = "\x05\x4a\x2c", + [0x7ef2] = "\x05\x4a\x30", [0x7ef3] = "\x06\x62\x72", + [0x7ef4] = "\x05\x4a\x2b", [0x7ef5] = "\x05\x4a\x2e", + [0x7ef6] = "\x05\x4a\x31", [0x7ef8] = "\x06\x62\x71", + [0x7ef9] = "\x06\x62\x6f", [0x7efa] = "\x05\x4a\x33", + [0x7efb] = "\x04\x47\x5d", [0x7efc] = "\x05\x4a\x2f", + [0x7efd] = "\x06\x62\x76", [0x7eff] = "\x05\x4a\x2d", + [0x7f00] = "\x06\x62\x73", [0x7f01] = "\x0f\x4c\x53", + [0x7f02] = "\x0f\x4c\x54", [0x7f03] = "\x0f\x4c\x55", + [0x7f04] = "\x0f\x4c\x56", [0x7f05] = "\x0f\x4c\x57", + [0x7f06] = "\x0f\x4c\x58", [0x7f07] = "\x0f\x4c\x59", + [0x7f09] = "\x06\x62\x70", [0x7f0e] = "\x05\x51\x42", + [0x7f0f] = "\x05\x51\x3c", [0x7f10] = "\x04\x4d\x72", + [0x7f11] = "\x05\x51\x3f", [0x7f12] = "\x05\x51\x3e", + [0x7f13] = "\x05\x51\x3d", [0x7f14] = "\x05\x51\x40", + [0x7f15] = "\x07\x29\x3f", [0x7f16] = "\x05\x51\x46", + [0x7f17] = "\x05\x51\x43", [0x7f18] = "\x07\x29\x41", + [0x7f19] = "\x05\x51\x41", [0x7f1a] = "\x07\x29\x3c", + [0x7f1b] = "\x07\x29\x40", [0x7f1c] = "\x07\x29\x3e", + [0x7f1d] = "\x06\x62\x74", [0x7f1e] = "\x07\x29\x42", + [0x7f1f] = "\x07\x33\x72", [0x7f20] = "\x05\x51\x45", + [0x7f21] = "\x05\x51\x44", [0x7f22] = "\x0f\x52\x40", + [0x7f23] = "\x0f\x52\x41", [0x7f25] = "\x07\x29\x43", + [0x7f26] = "\x07\x29\x3b", [0x7f27] = "\x0f\x58\x2d", + [0x7f28] = "\x04\x54\x23", [0x7f29] = "\x04\x54\x24", + [0x7f2a] = "\x04\x54\x28", [0x7f2b] = "\x07\x33\x74", + [0x7f2c] = "\x05\x58\x59", [0x7f2d] = "\x04\x54\x21", + [0x7f2e] = "\x04\x54\x22", [0x7f2f] = "\x04\x54\x27", + [0x7f30] = "\x07\x33\x75", [0x7f31] = "\x04\x54\x25", + [0x7f32] = "\x07\x33\x71", [0x7f33] = "\x07\x33\x70", + [0x7f34] = "\x05\x58\x58", [0x7f35] = "\x05\x58\x5a", + [0x7f36] = "\x07\x33\x76", [0x7f37] = "\x0f\x58\x24", + [0x7f38] = "\x0f\x58\x26", [0x7f39] = "\x0f\x58\x27", + [0x7f3a] = "\x0f\x58\x28", [0x7f3b] = "\x0f\x58\x29", + [0x7f3c] = "\x0f\x58\x2a", [0x7f3d] = "\x0f\x58\x2b", + [0x7f3e] = "\x0f\x58\x2c", [0x7f3f] = "\x0f\x58\x2e", + [0x7f41] = "\x07\x33\x78", [0x7f42] = "\x07\x33\x77", + [0x7f44] = "\x05\x58\x5b", [0x7f45] = "\x05\x58\x56", + [0x7f46] = "\x05\x58\x57", [0x7f49] = "\x05\x5e\x6f", + [0x7f4a] = "\x05\x5e\x71", [0x7f4b] = "\x04\x59\x22", + [0x7f4c] = "\x05\x5e\x70", [0x7f4d] = "\x04\x59\x24", + [0x7f4e] = "\x04\x59\x21", [0x7f4f] = "\x05\x5e\x72", + [0x7f50] = "\x04\x58\x7e", [0x7f51] = "\x05\x5e\x6c", + [0x7f52] = "\x04\x59\x23", [0x7f53] = "\x05\x5e\x6e", + [0x7f54] = "\x05\x5e\x6b", [0x7f55] = "\x07\x3c\x3a", + [0x7f56] = "\x05\x5e\x73", [0x7f57] = "\x0f\x58\x25", + [0x7f58] = "\x0f\x5c\x72", [0x7f59] = "\x0f\x5c\x73", + [0x7f5a] = "\x0f\x5c\x74", [0x7f5b] = "\x0f\x5c\x75", + [0x7f5c] = "\x0f\x5c\x76", [0x7f5d] = "\x07\x3c\x39", + [0x7f5e] = "\x05\x64\x79", [0x7f5f] = "\x05\x64\x7c", + [0x7f60] = "\x04\x5d\x6b", [0x7f61] = "\x07\x43\x57", + [0x7f62] = "\x07\x43\x56", [0x7f63] = "\x05\x64\x76", + [0x7f64] = "\x05\x64\x7a", [0x7f65] = "\x05\x64\x78", + [0x7f66] = "\x05\x64\x77", [0x7f67] = "\x05\x64\x7d", + [0x7f68] = "\x05\x64\x7e", [0x7f69] = "\x07\x43\x5b", + [0x7f6a] = "\x07\x43\x5a", [0x7f6b] = "\x05\x64\x7b", + [0x7f6c] = "\x0f\x60\x7d", [0x7f6d] = "\x07\x43\x58", + [0x7f6f] = "\x07\x43\x55", [0x7f73] = "\x07\x43\x59", + [0x7f74] = "\x07\x43\x54", [0x7f76] = "\x05\x58\x5d", + [0x7f77] = "\x05\x69\x62", [0x7f78] = "\x05\x69\x66", + [0x7f79] = "\x05\x69\x68", [0x7f7a] = "\x04\x61\x4e", + [0x7f7b] = "\x04\x61\x4c", [0x7f7c] = "\x05\x69\x63", + [0x7f7d] = "\x05\x69\x67", [0x7f7e] = "\x05\x69\x65", + [0x7f7f] = "\x05\x69\x61", [0x7f80] = "\x07\x4a\x52", + [0x7f81] = "\x05\x69\x69", [0x7f82] = "\x05\x69\x64", + [0x7f83] = "\x0f\x64\x23", [0x7f84] = "\x0f\x64\x24", + [0x7f85] = "\x0f\x64\x25", [0x7f88] = "\x07\x4a\x51", + [0x7f8b] = "\x07\x4a\x53", [0x7f8d] = "\x04\x64\x52", + [0x7f8e] = "\x04\x64\x54", [0x7f8f] = "\x04\x64\x58", + [0x7f90] = "\x04\x64\x57", [0x7f91] = "\x05\x6d\x71", + [0x7f92] = "\x07\x50\x41", [0x7f93] = "\x07\x50\x43", + [0x7f94] = "\x05\x6d\x72", [0x7f95] = "\x07\x50\x42", + [0x7f96] = "\x0f\x66\x40", [0x7f97] = "\x0f\x66\x41", + [0x7f98] = "\x0f\x66\x42", [0x7f99] = "\x04\x67\x49", + [0x7f9a] = "\x05\x71\x48", [0x7f9b] = "\x05\x71\x49", + [0x7f9c] = "\x07\x55\x3f", [0x7f9d] = "\x07\x55\x3d", + [0x7f9e] = "\x07\x55\x3c", [0x7f9f] = "\x07\x55\x3e", + [0x7fa0] = "\x05\x71\x47", [0x7fa1] = "\x05\x74\x46", + [0x7fa2] = "\x05\x74\x49", [0x7fa3] = "\x04\x69\x4d", + [0x7fa4] = "\x05\x74\x48", [0x7fa5] = "\x05\x74\x47", + [0x7fa6] = "\x0f\x69\x79", [0x7fa8] = "\x05\x76\x4f", + [0x7fa9] = "\x05\x76\x50", [0x7faa] = "\x0f\x6a\x79", + [0x7fab] = "\x07\x59\x4b", [0x7fac] = "\x07\x5c\x75", + [0x7fad] = "\x07\x5c\x76", [0x7fae] = "\x05\x78\x33", + [0x7faf] = "\x05\x78\x34", [0x7fb0] = "\x05\x78\x35", + [0x7fb1] = "\x04\x6d\x26", [0x7fb4] = "\x07\x61\x4e", + [0x7fb5] = "\x05\x7a\x79", [0x7fb6] = "\x05\x7b\x49", + [0x7fb8] = "\x06\x2e\x35", [0x7fb9] = "\x06\x2e\x34", + [0x7fba] = "\x06\x34\x5b", [0x7fbb] = "\x05\x2b\x4d", + [0x7fbc] = "\x0f\x2d\x51", [0x7fc0] = "\x06\x34\x5a", + [0x7fc1] = "\x06\x3c\x41", [0x7fc2] = "\x04\x30\x2b", + [0x7fc3] = "\x06\x3c\x42", [0x7fc4] = "\x06\x3c\x40", + [0x7fc5] = "\x05\x30\x50", [0x7fc6] = "\x05\x30\x4f", + [0x7fc9] = "\x06\x3c\x3f", [0x7fcd] = "\x06\x3c\x43", + [0x7fd2] = "\x04\x35\x5f", [0x7fd3] = "\x06\x45\x33", + [0x7fd4] = "\x04\x35\x5a", [0x7fd5] = "\x05\x35\x73", + [0x7fd6] = "\x06\x45\x37", [0x7fd7] = "\x05\x35\x77", + [0x7fd8] = "\x06\x45\x3a", [0x7fd9] = "\x05\x35\x71", + [0x7fda] = "\x05\x35\x75", [0x7fdb] = "\x06\x45\x3c", + [0x7fdc] = "\x06\x45\x3d", [0x7fdd] = "\x05\x35\x74", + [0x7fde] = "\x06\x45\x3b", [0x7fdf] = "\x06\x45\x32", + [0x7fe0] = "\x06\x45\x36", [0x7fe2] = "\x0f\x38\x6a", + [0x7fe3] = "\x06\x45\x31", [0x7fe4] = "\x06\x45\x35", + [0x7fe6] = "\x06\x45\x39", [0x7fee] = "\x05\x35\x76", + [0x7fef] = "\x05\x35\x70", [0x7ff1] = "\x06\x45\x34", + [0x7ff2] = "\x05\x3c\x60", [0x7ff3] = "\x05\x3c\x57", + [0x7ff4] = "\x05\x3c\x58", [0x7ff5] = "\x05\x3c\x5b", + [0x7ff6] = "\x06\x4f\x3b", [0x7ff7] = "\x05\x3c\x56", + [0x7ff8] = "\x06\x4f\x38", [0x7ff9] = "\x04\x3b\x4e", + [0x7ffa] = "\x05\x3c\x5d", [0x7ffb] = "\x05\x3c\x59", + [0x7ffc] = "\x05\x3c\x61", [0x7ffd] = "\x05\x3c\x5a", + [0x7ffe] = "\x06\x4f\x39", [0x7fff] = "\x06\x58\x79", + [0x8000] = "\x05\x3c\x62", [0x8003] = "\x0f\x3f\x54", + [0x8006] = "\x06\x4f\x37", [0x8009] = "\x0f\x3f\x52", + [0x8013] = "\x06\x4f\x3a", [0x8014] = "\x05\x3c\x5e", + [0x8015] = "\x05\x43\x41", [0x8016] = "\x05\x43\x3f", + [0x8017] = "\x06\x58\x71", [0x8018] = "\x05\x43\x40", + [0x8019] = "\x05\x43\x42", [0x801a] = "\x06\x58\x74", + [0x801b] = "\x06\x58\x70", [0x801c] = "\x05\x43\x47", + [0x801d] = "\x05\x43\x45", [0x801e] = "\x06\x58\x6e", + [0x801f] = "\x06\x58\x6d", [0x8020] = "\x05\x43\x3e", + [0x8021] = "\x06\x58\x6f", [0x8022] = "\x06\x58\x72", + [0x8023] = "\x06\x58\x76", [0x8024] = "\x05\x43\x4a", + [0x8025] = "\x06\x58\x6c", [0x8026] = "\x06\x58\x77", + [0x8027] = "\x05\x43\x43", [0x8028] = "\x05\x43\x4c", + [0x8029] = "\x05\x43\x48", [0x802a] = "\x06\x58\x73", + [0x802b] = "\x05\x43\x49", [0x802c] = "\x05\x43\x46", + [0x802d] = "\x06\x58\x75", [0x802e] = "\x05\x4a\x35", + [0x8031] = "\x0f\x45\x59", [0x8036] = "\x06\x58\x78", + [0x8037] = "\x06\x58\x6b", [0x8040] = "\x06\x63\x22", + [0x8041] = "\x05\x4a\x43", [0x8042] = "\x04\x47\x60", + [0x8043] = "\x05\x4a\x37", [0x8044] = "\x05\x4a\x3f", + [0x8045] = "\x05\x4a\x36", [0x8046] = "\x05\x51\x4e", + [0x8047] = "\x05\x4a\x3b", [0x8048] = "\x06\x62\x77", + [0x8049] = "\x06\x62\x7b", [0x804a] = "\x05\x4a\x42", + [0x804b] = "\x05\x4a\x3c", [0x804c] = "\x05\x4a\x39", + [0x804d] = "\x05\x4a\x40", [0x804e] = "\x05\x4a\x41", + [0x804f] = "\x05\x4a\x3d", [0x8050] = "\x05\x43\x44", + [0x8051] = "\x05\x4a\x38", [0x8052] = "\x05\x4a\x44", + [0x8053] = "\x06\x62\x7e", [0x8054] = "\x05\x4a\x46", + [0x8055] = "\x06\x62\x79", [0x8059] = "\x05\x4a\x47", + [0x805a] = "\x0f\x4c\x5a", [0x805b] = "\x0f\x4c\x5b", + [0x805c] = "\x06\x62\x78", [0x805e] = "\x06\x62\x7a", + [0x8060] = "\x06\x62\x7d", [0x8062] = "\x06\x63\x21", + [0x8063] = "\x06\x62\x7c", [0x8073] = "\x05\x4a\x3a", + [0x8075] = "\x07\x29\x46", [0x8076] = "\x04\x4d\x7a", + [0x8077] = "\x05\x51\x4c", [0x8078] = "\x05\x51\x47", + [0x8079] = "\x05\x51\x4a", [0x807a] = "\x05\x51\x4f", + [0x807b] = "\x07\x29\x45", [0x807c] = "\x07\x29\x49", + [0x807d] = "\x04\x4d\x7c", [0x807e] = "\x07\x29\x4d", + [0x807f] = "\x04\x4d\x7b", [0x8080] = "\x05\x51\x4b", + [0x8081] = "\x05\x51\x4d", [0x8082] = "\x04\x4e\x24", + [0x8083] = "\x05\x51\x51", [0x8084] = "\x05\x51\x52", + [0x8085] = "\x04\x47\x63", [0x8086] = "\x07\x29\x4f", + [0x8087] = "\x05\x51\x49", [0x8088] = "\x07\x29\x4b", + [0x808b] = "\x0f\x52\x42", [0x808c] = "\x0f\x52\x43", + [0x808d] = "\x0f\x52\x44", [0x808e] = "\x0f\x52\x45", + [0x808f] = "\x07\x29\x48", [0x8091] = "\x07\x29\x4c", + [0x8093] = "\x07\x29\x47", [0x809b] = "\x07\x29\x4a", + [0x809c] = "\x05\x51\x50", [0x809d] = "\x05\x51\x54", + [0x809e] = "\x05\x51\x55", [0x809f] = "\x05\x4a\x45", + [0x80a0] = "\x07\x34\x21", [0x80a1] = "\x05\x58\x60", + [0x80a2] = "\x05\x4a\x48", [0x80a3] = "\x05\x58\x69", + [0x80a4] = "\x04\x54\x2a", [0x80a5] = "\x07\x33\x7a", + [0x80a6] = "\x05\x58\x63", [0x80a7] = "\x07\x33\x7e", + [0x80a8] = "\x07\x34\x23", [0x80a9] = "\x07\x33\x7c", + [0x80aa] = "\x05\x58\x5f", [0x80ab] = "\x07\x33\x7b", + [0x80ac] = "\x07\x34\x25", [0x80ad] = "\x05\x51\x53", + [0x80ae] = "\x07\x34\x26", [0x80af] = "\x05\x58\x67", + [0x80b0] = "\x05\x58\x68", [0x80b1] = "\x05\x58\x5e", + [0x80b2] = "\x05\x58\x61", [0x80b3] = "\x07\x33\x7d", + [0x80b4] = "\x05\x58\x65", [0x80b5] = "\x05\x58\x64", + [0x80b6] = "\x07\x34\x24", [0x80b7] = "\x04\x54\x2b", + [0x80b8] = "\x05\x58\x66", [0x80bf] = "\x04\x54\x2c", + [0x80c0] = "\x0f\x58\x31", [0x80c1] = "\x0f\x58\x32", + [0x80d2] = "\x07\x34\x22", [0x80d3] = "\x05\x5e\x7a", + [0x80d4] = "\x05\x5e\x7d", [0x80d5] = "\x05\x5e\x75", + [0x80d6] = "\x07\x3c\x40", [0x80d7] = "\x05\x5e\x76", + [0x80d8] = "\x05\x5e\x7c", [0x80d9] = "\x05\x5e\x78", + [0x80da] = "\x04\x59\x29", [0x80db] = "\x07\x3c\x3e", + [0x80dc] = "\x07\x43\x67", [0x80dd] = "\x07\x3c\x43", + [0x80de] = "\x05\x5e\x7e", [0x80df] = "\x04\x59\x2e", + [0x80e0] = "\x07\x3c\x3b", [0x80e1] = "\x07\x3c\x42", + [0x80e2] = "\x07\x3c\x44", [0x80e3] = "\x05\x5e\x79", + [0x80e4] = "\x04\x59\x27", [0x80e5] = "\x07\x3c\x41", + [0x80e6] = "\x07\x34\x27", [0x80e7] = "\x07\x3c\x3f", + [0x80e8] = "\x04\x59\x2f", [0x80ec] = "\x0f\x5c\x77", + [0x80ee] = "\x07\x3c\x3d", [0x80f3] = "\x0f\x5c\x79", + [0x80ff] = "\x05\x5e\x77", [0x8100] = "\x05\x5e\x74", + [0x8103] = "\x07\x43\x62", [0x8105] = "\x04\x5d\x70", + [0x8106] = "\x07\x43\x66", [0x8107] = "\x04\x5d\x6f", + [0x8108] = "\x05\x65\x21", [0x8109] = "\x05\x65\x22", + [0x810a] = "\x05\x65\x2d", [0x810b] = "\x05\x65\x26", + [0x810c] = "\x04\x5d\x71", [0x810d] = "\x05\x65\x2c", + [0x810e] = "\x05\x65\x28", [0x810f] = "\x07\x43\x5f", + [0x8110] = "\x05\x69\x70", [0x8111] = "\x07\x43\x65", + [0x8112] = "\x07\x43\x5c", [0x8113] = "\x05\x65\x2e", + [0x8114] = "\x07\x43\x5e", [0x8115] = "\x05\x65\x24", + [0x8116] = "\x07\x43\x61", [0x8117] = "\x05\x65\x23", + [0x8118] = "\x05\x65\x29", [0x8119] = "\x04\x5f\x33", + [0x811a] = "\x04\x5d\x76", [0x811b] = "\x05\x65\x25", + [0x8121] = "\x0f\x60\x7e", [0x8122] = "\x0f\x61\x21", + [0x8123] = "\x0f\x61\x22", [0x8124] = "\x0f\x61\x23", + [0x8125] = "\x0f\x61\x24", [0x8126] = "\x0f\x61\x25", + [0x8127] = "\x07\x43\x6b", [0x8128] = "\x05\x65\x27", + [0x8129] = "\x07\x43\x60", [0x812a] = "\x07\x43\x69", + [0x812b] = "\x07\x43\x68", [0x812c] = "\x07\x43\x6a", + [0x812d] = "\x07\x43\x5d", [0x8145] = "\x05\x65\x2b", + [0x8146] = "\x07\x43\x63", [0x8148] = "\x07\x3c\x3c", + [0x814a] = "\x05\x65\x2f", [0x814b] = "\x05\x69\x6a", + [0x814c] = "\x07\x4a\x65", [0x814e] = "\x05\x69\x6f", + [0x814f] = "\x05\x69\x71", [0x8150] = "\x07\x4a\x68", + [0x8151] = "\x05\x69\x74", [0x8152] = "\x07\x4a\x5b", + [0x8153] = "\x05\x65\x2a", [0x8154] = "\x05\x69\x6e", + [0x8155] = "\x07\x4a\x58", [0x8156] = "\x05\x69\x6d", + [0x8157] = "\x05\x69\x72", [0x8158] = "\x04\x61\x55", + [0x8159] = "\x07\x4a\x54", [0x815a] = "\x04\x5d\x73", + [0x815b] = "\x07\x4a\x59", [0x815c] = "\x07\x43\x64", + [0x815d] = "\x07\x4a\x5e", [0x815e] = "\x05\x69\x73", + [0x815f] = "\x07\x4a\x5a", [0x8160] = "\x07\x4a\x66", + [0x8161] = "\x07\x4a\x55", [0x8162] = "\x07\x4a\x5c", + [0x8163] = "\x05\x69\x6b", [0x8164] = "\x05\x69\x6c", + [0x8165] = "\x07\x4a\x61", [0x8166] = "\x07\x4a\x62", + [0x8167] = "\x07\x4a\x63", [0x8168] = "\x07\x4a\x5f", + [0x8169] = "\x05\x69\x76", [0x816a] = "\x05\x69\x75", + [0x8171] = "\x07\x4a\x60", [0x8172] = "\x07\x4a\x5d", + [0x8174] = "\x07\x4a\x67", [0x8175] = "\x07\x4a\x56", + [0x8176] = "\x07\x4a\x64", [0x8180] = "\x04\x61\x53", + [0x8181] = "\x04\x64\x59", [0x8182] = "\x05\x6d\x7d", + [0x8183] = "\x05\x6d\x77", [0x8184] = "\x07\x50\x44", + [0x8185] = "\x05\x6d\x7b", [0x8186] = "\x05\x6d\x76", + [0x8187] = "\x05\x6d\x79", [0x8188] = "\x07\x50\x48", + [0x8189] = "\x07\x50\x46", [0x818a] = "\x04\x64\x5c", + [0x818b] = "\x05\x6d\x73", [0x818c] = "\x04\x64\x5d", + [0x818d] = "\x07\x50\x47", [0x818e] = "\x05\x6d\x78", + [0x818f] = "\x05\x6d\x75", [0x8190] = "\x05\x6d\x74", + [0x8191] = "\x07\x50\x49", [0x8194] = "\x0f\x66\x43", + [0x8195] = "\x0f\x66\x44", [0x8196] = "\x0f\x66\x45", + [0x8197] = "\x0f\x66\x46", [0x8198] = "\x0f\x66\x47", + [0x819a] = "\x07\x50\x45", [0x819b] = "\x07\x50\x4a", + [0x819c] = "\x07\x50\x4b", [0x81a6] = "\x05\x6d\x7c", + [0x81a7] = "\x05\x6d\x7e", [0x81a8] = "\x05\x6d\x7a", + [0x81aa] = "\x04\x67\x4e", [0x81ab] = "\x07\x55\x42", + [0x81ac] = "\x04\x67\x4f", [0x81ad] = "\x05\x71\x4b", + [0x81ae] = "\x07\x55\x41", [0x81af] = "\x07\x55\x44", + [0x81b0] = "\x04\x67\x4d", [0x81b1] = "\x04\x67\x4b", + [0x81b2] = "\x05\x71\x4c", [0x81b3] = "\x07\x55\x43", + [0x81b4] = "\x07\x55\x40", [0x81b5] = "\x05\x71\x4a", + [0x81bb] = "\x0f\x68\x51", [0x81bc] = "\x0f\x68\x52", + [0x81c1] = "\x05\x74\x4a", [0x81c2] = "\x07\x55\x45", + [0x81c3] = "\x07\x59\x4c", [0x81c4] = "\x05\x74\x4d", + [0x81c5] = "\x05\x74\x4f", [0x81c6] = "\x05\x74\x4e", + [0x81c7] = "\x05\x74\x4c", [0x81c8] = "\x07\x59\x4d", + [0x81ca] = "\x05\x74\x51", [0x81cb] = "\x07\x59\x4e", + [0x81cc] = "\x0f\x69\x7a", [0x81cf] = "\x07\x59\x4f", + [0x81d4] = "\x05\x74\x50", [0x81d6] = "\x05\x76\x54", + [0x81d7] = "\x05\x76\x52", [0x81d8] = "\x05\x76\x55", + [0x81d9] = "\x07\x5c\x79", [0x81da] = "\x07\x5c\x78", + [0x81dd] = "\x05\x76\x53", [0x81de] = "\x05\x76\x51", + [0x81e4] = "\x04\x6c\x2b", [0x81e5] = "\x07\x5f\x61", + [0x81e6] = "\x05\x78\x37", [0x81e7] = "\x05\x78\x36", + [0x81e8] = "\x04\x6c\x2a", [0x81e9] = "\x05\x78\x38", + [0x81ea] = "\x07\x5f\x62", [0x81eb] = "\x07\x61\x4f", + [0x81ed] = "\x07\x5f\x63", [0x81ee] = "\x07\x61\x52", + [0x81ef] = "\x04\x6d\x28", [0x81f0] = "\x07\x61\x54", + [0x81f1] = "\x07\x62\x67", [0x81f2] = "\x07\x61\x53", + [0x81f3] = "\x07\x61\x51", [0x81f4] = "\x07\x61\x50", + [0x81fa] = "\x0f\x6b\x67", [0x81fb] = "\x05\x7a\x3c", + [0x81fc] = "\x05\x7a\x3b", [0x81fd] = "\x05\x7a\x3d", + [0x8203] = "\x07\x63\x76", [0x8204] = "\x05\x7b\x4a", + [0x8205] = "\x07\x64\x63", [0x8208] = "\x05\x7b\x6a", + [0x820a] = "\x0f\x6d\x28", [0x820b] = "\x07\x65\x65", + [0x820d] = "\x0f\x6d\x33", [0x820f] = "\x06\x23\x39", + [0x8210] = "\x06\x23\x3a", [0x8211] = "\x06\x25\x55", + [0x8213] = "\x05\x30\x52", [0x8214] = "\x06\x3c\x44", + [0x8215] = "\x05\x30\x51", [0x8218] = "\x05\x35\x7a", + [0x8219] = "\x05\x35\x79", [0x821a] = "\x05\x35\x78", + [0x821b] = "\x06\x45\x3e", [0x821c] = "\x06\x45\x41", + [0x821d] = "\x06\x45\x40", [0x821e] = "\x06\x45\x42", + [0x821f] = "\x06\x45\x3f", [0x8220] = "\x06\x45\x43", + [0x8221] = "\x06\x45\x44", [0x8222] = "\x04\x35\x60", + [0x8224] = "\x0f\x38\x6b", [0x8229] = "\x05\x3c\x65", + [0x822a] = "\x06\x4f\x3f", [0x822b] = "\x05\x3c\x64", + [0x822c] = "\x06\x4f\x41", [0x822d] = "\x06\x4f\x3e", + [0x822e] = "\x05\x3c\x66", [0x822f] = "\x0f\x3f\x55", + [0x8230] = "\x0f\x3f\x56", [0x8231] = "\x0f\x3f\x57", + [0x8232] = "\x0f\x3f\x58", [0x8234] = "\x06\x4f\x3d", + [0x8235] = "\x06\x4f\x40", [0x8238] = "\x06\x58\x7d", + [0x8239] = "\x05\x43\x4d", [0x823a] = "\x06\x58\x7a", + [0x823b] = "\x06\x58\x7e", [0x823c] = "\x06\x59\x21", + [0x823d] = "\x0f\x45\x5a", [0x823e] = "\x0f\x45\x5b", + [0x823f] = "\x0f\x45\x5c", [0x8240] = "\x06\x58\x7b", + [0x8242] = "\x06\x58\x7c", [0x8243] = "\x06\x59\x22", + [0x8248] = "\x05\x4a\x4a", [0x8249] = "\x06\x63\x23", + [0x824a] = "\x06\x63\x24", [0x824b] = "\x05\x4a\x49", + [0x824c] = "\x06\x63\x25", [0x824d] = "\x06\x63\x26", + [0x824e] = "\x0f\x4c\x5c", [0x824f] = "\x0f\x4c\x5d", + [0x8250] = "\x0f\x4c\x5e", [0x8254] = "\x07\x29\x51", + [0x8255] = "\x05\x51\x56", [0x8257] = "\x04\x4e\x25", + [0x8258] = "\x0f\x52\x46", [0x8259] = "\x0f\x52\x48", + [0x825b] = "\x07\x29\x50", [0x8262] = "\x05\x58\x6a", + [0x8263] = "\x04\x54\x31", [0x8264] = "\x05\x58\x6b", + [0x8265] = "\x07\x34\x28", [0x8266] = "\x07\x3c\x46", + [0x8267] = "\x0f\x58\x34", [0x8268] = "\x0f\x58\x36", + [0x826e] = "\x07\x3c\x48", [0x826f] = "\x07\x3c\x47", + [0x8270] = "\x07\x3c\x45", [0x8271] = "\x05\x5f\x21", + [0x8272] = "\x0f\x5c\x7a", [0x8273] = "\x0f\x5c\x7b", + [0x8279] = "\x05\x65\x30", [0x827a] = "\x07\x43\x6c", + [0x827b] = "\x0f\x61\x26", [0x827c] = "\x0f\x61\x27", + [0x827f] = "\x07\x4a\x6c", [0x8280] = "\x07\x4a\x6d", + [0x8281] = "\x07\x4a\x6a", [0x8283] = "\x0f\x64\x26", + [0x8284] = "\x0f\x64\x27", [0x8286] = "\x07\x4a\x6b", + [0x828a] = "\x07\x4a\x69", [0x828d] = "\x04\x64\x5e", + [0x828e] = "\x07\x50\x4d", [0x828f] = "\x0f\x66\x48", + [0x8290] = "\x0f\x66\x49", [0x8292] = "\x07\x50\x4e", + [0x8293] = "\x07\x55\x46", [0x8294] = "\x05\x71\x4d", + [0x8295] = "\x07\x55\x47", [0x8296] = "\x07\x55\x48", + [0x8297] = "\x07\x55\x49", [0x8298] = "\x07\x59\x50", + [0x8299] = "\x0f\x69\x7c", [0x829b] = "\x05\x76\x56", + [0x829d] = "\x05\x79\x51", [0x82a0] = "\x06\x34\x5c", + [0x82a1] = "\x05\x2b\x4e", [0x82a2] = "\x06\x34\x5e", + [0x82a3] = "\x0f\x2d\x52", [0x82a4] = "\x0f\x2d\x54", + [0x82a7] = "\x06\x3c\x45", [0x82a9] = "\x05\x30\x54", + [0x82aa] = "\x06\x3c\x47", [0x82ab] = "\x0f\x32\x5f", + [0x82ac] = "\x0f\x32\x60", [0x82af] = "\x06\x3c\x46", + [0x82b1] = "\x05\x30\x53", [0x82b2] = "\x0f\x32\x5e", + [0x82b3] = "\x05\x35\x7b", [0x82b4] = "\x06\x45\x4e", + [0x82b5] = "\x06\x45\x4d", [0x82b6] = "\x06\x45\x46", + [0x82b7] = "\x04\x35\x64", [0x82b8] = "\x05\x36\x22", + [0x82b9] = "\x05\x36\x21", [0x82ba] = "\x06\x45\x4a", + [0x82bb] = "\x05\x35\x7d", [0x82bc] = "\x06\x45\x47", + [0x82bd] = "\x06\x45\x4c", [0x82be] = "\x06\x45\x4b", + [0x82bf] = "\x05\x35\x7c", [0x82c0] = "\x05\x35\x7e", + [0x82c4] = "\x0f\x38\x6d", [0x82c6] = "\x06\x45\x48", + [0x82c7] = "\x06\x45\x49", [0x82cc] = "\x04\x35\x65", + [0x82ce] = "\x06\x4f\x46", [0x82cf] = "\x06\x4f\x47", + [0x82d0] = "\x05\x3c\x70", [0x82d1] = "\x05\x3c\x6e", + [0x82d2] = "\x06\x4f\x45", [0x82d3] = "\x06\x4f\x44", + [0x82d4] = "\x06\x4f\x42", [0x82d5] = "\x05\x36\x23", + [0x82d6] = "\x05\x3c\x6d", [0x82d7] = "\x05\x3c\x68", + [0x82d8] = "\x05\x3c\x6b", [0x82d9] = "\x05\x3c\x6a", + [0x82da] = "\x06\x4f\x43", [0x82db] = "\x05\x3c\x69", + [0x82dc] = "\x05\x3c\x71", [0x82e6] = "\x05\x3c\x6c", + [0x82e7] = "\x05\x3c\x6f", [0x82e8] = "\x06\x59\x23", + [0x82e9] = "\x06\x59\x28", [0x82ea] = "\x05\x43\x53", + [0x82eb] = "\x06\x59\x26", [0x82ec] = "\x06\x59\x29", + [0x82ed] = "\x05\x43\x51", [0x82ee] = "\x04\x41\x2b", + [0x82ef] = "\x05\x43\x52", [0x82f0] = "\x05\x43\x4f", + [0x82f1] = "\x06\x59\x27", [0x82f2] = "\x05\x43\x4e", + [0x82f4] = "\x0f\x45\x5d", [0x82f5] = "\x0f\x45\x5e", + [0x82f6] = "\x0f\x45\x5f", [0x82f9] = "\x06\x59\x25", + [0x82fc] = "\x04\x41\x2d", [0x8301] = "\x05\x43\x54", + [0x8302] = "\x06\x63\x2d", [0x8303] = "\x06\x63\x2f", + [0x8304] = "\x05\x4a\x50", [0x8305] = "\x04\x47\x68", + [0x8306] = "\x06\x63\x28", [0x8307] = "\x06\x63\x2b", + [0x8308] = "\x05\x4a\x4d", [0x8309] = "\x06\x63\x2c", + [0x830a] = "\x06\x63\x27", [0x830b] = "\x06\x63\x30", + [0x830d] = "\x05\x4a\x4b", [0x830e] = "\x05\x4a\x4e", + [0x830f] = "\x06\x63\x31", [0x8316] = "\x06\x63\x2e", + [0x8319] = "\x0f\x4c\x5f", [0x831a] = "\x0f\x4c\x60", + [0x831b] = "\x0f\x4c\x61", [0x831c] = "\x0f\x4c\x63", + [0x831d] = "\x05\x4a\x4f", [0x831f] = "\x05\x4a\x4c", + [0x8320] = "\x07\x29\x59", [0x8321] = "\x06\x63\x2a", + [0x8322] = "\x05\x51\x60", [0x8323] = "\x07\x29\x57", + [0x8324] = "\x07\x29\x5e", [0x8325] = "\x07\x29\x62", + [0x8326] = "\x07\x29\x56", [0x8327] = "\x05\x51\x59", + [0x8328] = "\x07\x29\x5a", [0x8329] = "\x07\x29\x55", + [0x832a] = "\x07\x29\x5c", [0x832b] = "\x05\x51\x58", + [0x832c] = "\x05\x51\x5b", [0x832d] = "\x05\x51\x5e", + [0x832e] = "\x04\x4e\x2c", [0x832f] = "\x06\x63\x29", + [0x8330] = "\x07\x29\x58", [0x8331] = "\x07\x29\x5d", + [0x8332] = "\x07\x29\x5b", [0x8333] = "\x05\x51\x5d", + [0x8334] = "\x05\x51\x5f", [0x8335] = "\x07\x29\x52", + [0x8336] = "\x05\x51\x57", [0x8337] = "\x07\x29\x54", + [0x8338] = "\x07\x29\x63", [0x833b] = "\x0f\x52\x49", + [0x833c] = "\x0f\x52\x4a", [0x833d] = "\x0f\x52\x4b", + [0x833e] = "\x0f\x52\x4c", [0x8340] = "\x07\x29\x53", + [0x8341] = "\x07\x29\x5f", [0x8342] = "\x07\x29\x60", + [0x8343] = "\x07\x29\x61", [0x8345] = "\x05\x51\x5c", + [0x8346] = "\x05\x51\x5a", [0x8347] = "\x07\x34\x29", + [0x8348] = "\x05\x58\x73", [0x8349] = "\x07\x34\x2f", + [0x834a] = "\x05\x58\x74", [0x834b] = "\x07\x34\x2d", + [0x834c] = "\x05\x58\x70", [0x834d] = "\x07\x34\x2b", + [0x834e] = "\x07\x34\x34", [0x834f] = "\x05\x58\x6e", + [0x8350] = "\x05\x58\x71", [0x8351] = "\x05\x58\x6d", + [0x8352] = "\x07\x34\x35", [0x8353] = "\x07\x34\x30", + [0x8354] = "\x07\x34\x36", [0x8356] = "\x05\x58\x6c", + [0x8357] = "\x07\x34\x33", [0x8358] = "\x0f\x58\x37", + [0x8359] = "\x0f\x58\x39", [0x835a] = "\x0f\x58\x3a", + [0x835f] = "\x07\x34\x2c", [0x8360] = "\x07\x34\x2e", + [0x8363] = "\x07\x34\x2a", [0x8365] = "\x0f\x58\x38", + [0x8367] = "\x04\x54\x35", [0x8368] = "\x05\x58\x6f", + [0x8369] = "\x07\x3c\x4a", [0x836a] = "\x07\x3c\x52", + [0x836b] = "\x05\x5f\x25", [0x836c] = "\x07\x3c\x4d", + [0x836d] = "\x07\x3c\x4c", [0x836e] = "\x07\x3c\x4b", + [0x836f] = "\x07\x3c\x53", [0x8370] = "\x04\x59\x33", + [0x8371] = "\x07\x3c\x50", [0x8372] = "\x04\x59\x34", + [0x8373] = "\x07\x3c\x51", [0x8374] = "\x05\x5f\x22", + [0x8376] = "\x05\x5f\x2b", [0x8377] = "\x04\x59\x36", + [0x8378] = "\x05\x5f\x28", [0x8379] = "\x05\x5f\x27", + [0x837b] = "\x07\x3c\x54", [0x837f] = "\x05\x5f\x24", + [0x8380] = "\x05\x5f\x2a", [0x8381] = "\x07\x3c\x49", + [0x8382] = "\x0f\x5c\x7c", [0x8383] = "\x0f\x5c\x7d", + [0x8384] = "\x07\x3c\x4e", [0x8385] = "\x07\x3c\x4f", + [0x8387] = "\x05\x5f\x26", [0x8388] = "\x05\x5f\x23", + [0x8389] = "\x05\x5f\x29", [0x838a] = "\x04\x5d\x79", + [0x838b] = "\x07\x43\x70", [0x838c] = "\x04\x5e\x21", + [0x838d] = "\x05\x65\x32", [0x8390] = "\x05\x65\x34", + [0x8391] = "\x0f\x61\x28", [0x8392] = "\x0f\x61\x29", + [0x8393] = "\x0f\x61\x2a", [0x8395] = "\x07\x43\x6f", + [0x8396] = "\x07\x43\x72", [0x8398] = "\x07\x43\x71", + [0x8399] = "\x07\x43\x6e", [0x839c] = "\x07\x43\x6d", + [0x83a1] = "\x05\x65\x31", [0x83a2] = "\x05\x65\x33", + [0x83a4] = "\x05\x69\x78", [0x83a5] = "\x07\x4a\x6e", + [0x83a6] = "\x07\x4a\x71", [0x83a7] = "\x07\x4a\x6f", + [0x83a8] = "\x07\x4a\x70", [0x83a9] = "\x05\x69\x7a", + [0x83aa] = "\x04\x61\x5a", [0x83ab] = "\x04\x61\x5b", + [0x83ac] = "\x05\x69\x79", [0x83ad] = "\x05\x69\x77", + [0x83ae] = "\x05\x69\x7b", [0x83af] = "\x07\x4a\x72", + [0x83b0] = "\x0f\x64\x28", [0x83b1] = "\x07\x4a\x74", + [0x83b2] = "\x04\x64\x62", [0x83b3] = "\x05\x6e\x25", + [0x83b4] = "\x05\x6e\x23", [0x83b5] = "\x07\x50\x53", + [0x83b6] = "\x05\x6e\x24", [0x83b7] = "\x05\x6e\x22", + [0x83b8] = "\x07\x50\x51", [0x83b9] = "\x05\x6e\x21", + [0x83bc] = "\x0f\x66\x4a", [0x83be] = "\x07\x50\x52", + [0x83c1] = "\x07\x50\x50", [0x83c5] = "\x07\x50\x4f", + [0x83c6] = "\x05\x6e\x26", [0x83c7] = "\x07\x50\x54", + [0x83c8] = "\x04\x67\x53", [0x83c9] = "\x05\x71\x4e", + [0x83ca] = "\x04\x67\x54", [0x83cb] = "\x07\x55\x4c", + [0x83ce] = "\x07\x55\x4b", [0x83cf] = "\x07\x55\x4a", + [0x83d1] = "\x07\x59\x56", [0x83d2] = "\x04\x69\x50", + [0x83d3] = "\x07\x59\x52", [0x83d4] = "\x07\x59\x51", + [0x83d5] = "\x04\x69\x51", [0x83d6] = "\x07\x59\x57", + [0x83d8] = "\x07\x59\x53", [0x83d9] = "\x07\x59\x54", + [0x83dd] = "\x07\x59\x55", [0x83de] = "\x07\x5c\x7e", + [0x83df] = "\x07\x5d\x21", [0x83e0] = "\x05\x76\x57", + [0x83e1] = "\x07\x5c\x7b", [0x83e2] = "\x07\x5c\x7a", + [0x83e3] = "\x07\x5c\x7c", [0x83e4] = "\x07\x5c\x7d", + [0x83e6] = "\x05\x76\x59", [0x83e8] = "\x05\x76\x58", + [0x83e9] = "\x05\x78\x3c", [0x83ea] = "\x05\x78\x3b", + [0x83eb] = "\x05\x78\x3a", [0x83ec] = "\x07\x5f\x67", + [0x83ef] = "\x07\x5f\x65", [0x83f0] = "\x07\x5f\x64", + [0x83f1] = "\x05\x78\x39", [0x83f2] = "\x07\x5f\x66", + [0x83f3] = "\x05\x79\x53", [0x83f4] = "\x05\x79\x52", + [0x83f5] = "\x05\x7a\x3e", [0x83f6] = "\x05\x7a\x3f", + [0x83f8] = "\x07\x62\x68", [0x83f9] = "\x05\x7a\x7a", + [0x83fa] = "\x07\x64\x64", [0x83fd] = "\x07\x62\x69", + [0x83fe] = "\x07\x63\x77", [0x8401] = "\x05\x7b\x6b", + [0x8402] = "\x07\x65\x66", [0x840b] = "\x06\x29\x2b", + [0x840c] = "\x06\x2e\x36", [0x840d] = "\x06\x3c\x48", + [0x840f] = "\x06\x45\x4f", [0x8410] = "\x05\x36\x25", + [0x8411] = "\x05\x36\x24", [0x8414] = "\x04\x41\x2e", + [0x8415] = "\x06\x59\x2a", [0x8417] = "\x0f\x45\x61", + [0x8418] = "\x05\x4a\x51", [0x8419] = "\x0f\x4c\x65", + [0x841a] = "\x0f\x4c\x66", [0x841b] = "\x05\x4a\x52", + [0x841c] = "\x07\x29\x64", [0x841d] = "\x07\x29\x65", + [0x841e] = "\x07\x29\x66", [0x841f] = "\x05\x51\x62", + [0x8420] = "\x07\x34\x37", [0x8421] = "\x05\x58\x75", + [0x8422] = "\x07\x34\x38", [0x8424] = "\x0f\x58\x3b", + [0x8428] = "\x05\x5f\x2d", [0x8429] = "\x05\x5f\x2c", + [0x842a] = "\x0f\x5c\x7e", [0x842b] = "\x0f\x5d\x21", + [0x842c] = "\x0f\x5d\x22", [0x842d] = "\x0f\x5d\x23", + [0x842f] = "\x05\x5f\x2e", [0x8430] = "\x05\x65\x37", + [0x8431] = "\x05\x65\x36", [0x8432] = "\x07\x43\x73", + [0x8435] = "\x07\x4a\x75", [0x8436] = "\x04\x61\x5c", + [0x8439] = "\x07\x4a\x76", [0x843b] = "\x0f\x66\x4b", + [0x843c] = "\x07\x50\x55", [0x843d] = "\x0f\x68\x54", + [0x843e] = "\x07\x59\x58", [0x8440] = "\x07\x5f\x68", + [0x8441] = "\x07\x65\x47", [0x8442] = "\x07\x65\x67", + [0x8443] = "\x06\x29\x2c", [0x8444] = "\x06\x2e\x37", + [0x8445] = "\x06\x59\x2d", [0x8446] = "\x06\x59\x2c", + [0x8447] = "\x06\x59\x2b", [0x8448] = "\x0f\x52\x4d", + [0x8449] = "\x07\x33\x21", [0x844a] = "\x04\x61\x5d", + [0x844b] = "\x07\x55\x4d", [0x844d] = "\x06\x25\x59", + [0x844f] = "\x06\x25\x58", [0x8450] = "\x06\x25\x57", + [0x8451] = "\x04\x24\x7e", [0x8452] = "\x06\x29\x2d", + [0x8453] = "\x04\x25\x24", [0x8454] = "\x06\x3c\x49", + [0x8458] = "\x06\x29\x2e", [0x8459] = "\x0f\x25\x33", + [0x845a] = "\x0f\x25\x34", [0x845b] = "\x06\x3c\x4a", + [0x845e] = "\x06\x29\x2f", [0x8460] = "\x05\x24\x78", + [0x8461] = "\x06\x3c\x4b", [0x8462] = "\x06\x45\x50", + [0x8463] = "\x05\x27\x6a", [0x8464] = "\x05\x27\x6b", + [0x8465] = "\x05\x27\x70", [0x8466] = "\x06\x2e\x38", + [0x8467] = "\x06\x2e\x3d", [0x8468] = "\x05\x27\x6f", + [0x8469] = "\x04\x28\x25", [0x846a] = "\x05\x27\x71", + [0x846b] = "\x05\x27\x6d", [0x846c] = "\x04\x28\x28", + [0x846d] = "\x06\x2e\x3b", [0x846f] = "\x0f\x28\x6d", + [0x8470] = "\x0f\x28\x6f", [0x8471] = "\x0f\x28\x70", + [0x8472] = "\x0f\x28\x73", [0x8473] = "\x0f\x28\x74", + [0x8474] = "\x0f\x28\x75", [0x8475] = "\x06\x2e\x3a", + [0x8477] = "\x06\x2e\x3f", [0x847c] = "\x05\x27\x6e", + [0x847d] = "\x05\x27\x68", [0x847e] = "\x06\x2e\x3c", + [0x847f] = "\x05\x27\x6c", [0x8480] = "\x06\x2e\x39", + [0x8481] = "\x06\x2e\x3e", [0x8483] = "\x05\x2b\x4f", + [0x8484] = "\x05\x2b\x56", [0x8485] = "\x05\x2b\x52", + [0x8486] = "\x06\x34\x5f", [0x8487] = "\x05\x2b\x51", + [0x8488] = "\x06\x34\x62", [0x8489] = "\x05\x2b\x55", + [0x848a] = "\x05\x2b\x53", [0x848b] = "\x04\x2b\x4f", + [0x848c] = "\x04\x2b\x51", [0x848d] = "\x05\x2b\x50", + [0x848e] = "\x06\x34\x64", [0x848f] = "\x06\x34\x63", + [0x8493] = "\x0f\x2d\x55", [0x8494] = "\x0f\x2d\x56", + [0x8495] = "\x0f\x2d\x57", [0x8496] = "\x0f\x2d\x58", + [0x8497] = "\x0f\x2d\x59", [0x849a] = "\x04\x2b\x52", + [0x849b] = "\x06\x34\x65", [0x849d] = "\x06\x34\x61", + [0x84a0] = "\x06\x4a\x47", [0x84a2] = "\x05\x2b\x57", + [0x84a3] = "\x05\x2b\x54", [0x84a4] = "\x06\x3c\x54", + [0x84a5] = "\x06\x3c\x58", [0x84a6] = "\x05\x30\x5b", + [0x84a7] = "\x06\x3c\x53", [0x84a8] = "\x05\x30\x56", + [0x84a9] = "\x05\x30\x5a", [0x84aa] = "\x04\x30\x31", + [0x84ab] = "\x05\x30\x57", [0x84ac] = "\x05\x30\x59", + [0x84ad] = "\x06\x3c\x52", [0x84ae] = "\x06\x3c\x4c", + [0x84af] = "\x06\x3c\x56", [0x84b0] = "\x04\x30\x32", + [0x84b2] = "\x06\x3c\x57", [0x84b3] = "\x06\x3c\x4d", + [0x84bc] = "\x05\x43\x55", [0x84bd] = "\x06\x3c\x55", + [0x84be] = "\x05\x30\x58", [0x84bf] = "\x06\x3c\x50", + [0x84c0] = "\x06\x3c\x4e", [0x84c1] = "\x05\x30\x5c", + [0x84c2] = "\x05\x36\x27", [0x84c3] = "\x05\x36\x26", + [0x84c4] = "\x06\x3c\x4f", [0x84c5] = "\x06\x45\x5b", + [0x84c7] = "\x05\x36\x2c", [0x84c8] = "\x04\x35\x6a", + [0x84c9] = "\x06\x45\x5c", [0x84ca] = "\x05\x36\x2b", + [0x84cb] = "\x06\x3c\x51", [0x84cd] = "\x05\x36\x29", + [0x84ce] = "\x06\x45\x57", [0x84d2] = "\x06\x45\x5a", + [0x84d3] = "\x0f\x38\x70", [0x84d4] = "\x0f\x38\x71", + [0x84d5] = "\x0f\x38\x72", [0x84d6] = "\x06\x45\x56", + [0x84d7] = "\x06\x45\x54", [0x84d8] = "\x06\x45\x55", + [0x84d9] = "\x06\x45\x52", [0x84db] = "\x06\x45\x5d", + [0x84dd] = "\x06\x45\x58", [0x84e4] = "\x06\x45\x53", + [0x84e5] = "\x05\x36\x2a", [0x84e6] = "\x04\x35\x67", + [0x84e7] = "\x06\x45\x59", [0x84e8] = "\x05\x36\x2d", + [0x84e9] = "\x05\x36\x28", [0x84ea] = "\x0f\x38\x6f", + [0x84eb] = "\x06\x45\x51", [0x84ec] = "\x05\x3c\x76", + [0x84ed] = "\x05\x3c\x72", [0x84ee] = "\x05\x3c\x78", + [0x84ef] = "\x05\x3c\x77", [0x84f0] = "\x04\x3b\x56", + [0x84f1] = "\x06\x4f\x53", [0x84f2] = "\x04\x3b\x5a", + [0x84f3] = "\x04\x3b\x58", [0x84f4] = "\x05\x3c\x79", + [0x84f5] = "\x06\x4f\x52", [0x84f6] = "\x07\x29\x67", + [0x84f7] = "\x06\x4f\x4d", [0x84f8] = "\x06\x4f\x4c", + [0x84f9] = "\x06\x4f\x50", [0x84fa] = "\x06\x4f\x4f", + [0x84fb] = "\x04\x3b\x5b", [0x84fd] = "\x06\x4f\x49", + [0x84fe] = "\x06\x4f\x4b", [0x84ff] = "\x0f\x3f\x62", + [0x8500] = "\x06\x4f\x51", [0x8503] = "\x06\x4f\x54", + [0x8505] = "\x06\x4f\x55", [0x850b] = "\x06\x4f\x4a", + [0x850e] = "\x0f\x3f\x59", [0x850f] = "\x0f\x3f\x5a", + [0x8510] = "\x0f\x3f\x5b", [0x8511] = "\x0f\x3f\x5c", + [0x8512] = "\x0f\x3f\x5d", [0x8513] = "\x0f\x3f\x5f", + [0x8514] = "\x0f\x3f\x60", [0x8515] = "\x0f\x3f\x61", + [0x8516] = "\x05\x3c\x75", [0x8517] = "\x06\x4f\x4e", + [0x8519] = "\x05\x3c\x74", [0x851a] = "\x05\x3c\x73", + [0x851b] = "\x04\x3b\x59", [0x851c] = "\x06\x4f\x56", + [0x851d] = "\x06\x59\x40", [0x851e] = "\x06\x59\x34", + [0x851f] = "\x06\x59\x3d", [0x8521] = "\x06\x59\x30", + [0x8522] = "\x04\x41\x31", [0x8523] = "\x04\x41\x30", + [0x8524] = "\x06\x59\x2e", [0x8526] = "\x05\x43\x59", + [0x8527] = "\x06\x59\x31", [0x8528] = "\x06\x59\x41", + [0x8529] = "\x06\x59\x3b", [0x852a] = "\x06\x59\x3f", + [0x852b] = "\x06\x59\x37", [0x852c] = "\x06\x59\x35", + [0x852d] = "\x06\x59\x43", [0x852e] = "\x06\x59\x42", + [0x852f] = "\x05\x3c\x7a", [0x8530] = "\x04\x41\x32", + [0x8531] = "\x06\x59\x33", [0x8532] = "\x06\x59\x3e", + [0x8541] = "\x0f\x45\x62", [0x8542] = "\x0f\x45\x63", + [0x8543] = "\x0f\x45\x64", [0x8544] = "\x0f\x45\x65", + [0x8545] = "\x0f\x45\x66", [0x8546] = "\x0f\x45\x67", + [0x8547] = "\x0f\x45\x68", [0x8548] = "\x0f\x45\x69", + [0x8549] = "\x0f\x45\x6a", [0x854a] = "\x0f\x45\x6b", + [0x854b] = "\x0f\x45\x6c", [0x854d] = "\x06\x59\x32", + [0x854f] = "\x06\x59\x36", [0x8550] = "\x06\x59\x3c", + [0x8551] = "\x06\x59\x39", [0x8553] = "\x06\x59\x38", + [0x8554] = "\x06\x59\x3a", [0x8556] = "\x06\x59\x2f", + [0x855a] = "\x05\x43\x58", [0x855b] = "\x05\x43\x57", + [0x855c] = "\x05\x43\x56", [0x855d] = "\x06\x63\x35", + [0x855e] = "\x06\x63\x34", [0x855f] = "\x06\x63\x37", + [0x8560] = "\x06\x63\x32", [0x8561] = "\x06\x63\x3a", + [0x8562] = "\x05\x4a\x54", [0x8563] = "\x06\x63\x36", + [0x8564] = "\x06\x63\x38", [0x8565] = "\x06\x63\x3c", + [0x8566] = "\x05\x4a\x53", [0x8567] = "\x05\x4a\x56", + [0x8568] = "\x06\x63\x33", [0x8569] = "\x06\x63\x3b", + [0x856a] = "\x07\x3c\x55", [0x856e] = "\x0f\x4c\x69", + [0x856f] = "\x0f\x4c\x6a", [0x8570] = "\x0f\x4c\x6c", + [0x8571] = "\x0f\x4c\x6d", [0x8572] = "\x0f\x4c\x6e", + [0x8573] = "\x0f\x4c\x6f", [0x8574] = "\x0f\x4c\x70", + [0x8575] = "\x0f\x4c\x71", [0x8576] = "\x0f\x4c\x72", + [0x8578] = "\x06\x63\x39", [0x857c] = "\x07\x3c\x56", + [0x857d] = "\x07\x3c\x57", [0x8581] = "\x07\x3c\x58", + [0x8583] = "\x05\x4a\x55", [0x8586] = "\x07\x29\x6e", + [0x8587] = "\x07\x29\x6c", [0x8588] = "\x07\x29\x72", + [0x8589] = "\x07\x29\x69", [0x858a] = "\x07\x29\x6b", + [0x858b] = "\x04\x4e\x2f", [0x858c] = "\x05\x51\x64", + [0x858d] = "\x04\x4e\x30", [0x858e] = "\x05\x51\x68", + [0x858f] = "\x05\x51\x65", [0x8590] = "\x04\x4e\x34", + [0x8593] = "\x07\x29\x70", [0x8594] = "\x0f\x52\x4e", + [0x8595] = "\x0f\x52\x4f", [0x8596] = "\x0f\x52\x50", + [0x8597] = "\x0f\x52\x51", [0x8598] = "\x0f\x52\x52", + [0x8599] = "\x05\x51\x6d", [0x859d] = "\x07\x29\x6a", + [0x859e] = "\x07\x29\x6f", [0x859f] = "\x07\x29\x74", + [0x85a0] = "\x07\x29\x75", [0x85a1] = "\x07\x29\x71", + [0x85a3] = "\x07\x29\x73", [0x85a4] = "\x07\x43\x74", + [0x85a5] = "\x07\x29\x68", [0x85aa] = "\x07\x43\x75", + [0x85ab] = "\x07\x29\x6d", [0x85ac] = "\x05\x51\x69", + [0x85ad] = "\x05\x51\x67", [0x85ae] = "\x05\x51\x6c", + [0x85af] = "\x05\x51\x66", [0x85b0] = "\x05\x51\x6a", + [0x85b1] = "\x05\x51\x6b", [0x85b3] = "\x05\x51\x63", + [0x85b4] = "\x07\x34\x46", [0x85b5] = "\x05\x58\x7c", + [0x85b6] = "\x05\x58\x7b", [0x85b7] = "\x05\x58\x79", + [0x85b8] = "\x07\x34\x41", [0x85b9] = "\x05\x58\x77", + [0x85ba] = "\x07\x34\x45", [0x85bb] = "\x07\x34\x3e", + [0x85bc] = "\x07\x34\x47", [0x85be] = "\x04\x54\x36", + [0x85bf] = "\x07\x34\x42", [0x85c0] = "\x07\x34\x44", + [0x85c1] = "\x07\x34\x39", [0x85c2] = "\x07\x34\x4a", + [0x85c3] = "\x07\x4a\x77", [0x85c4] = "\x07\x34\x3c", + [0x85cb] = "\x07\x34\x40", [0x85cc] = "\x07\x34\x4c", + [0x85cd] = "\x0f\x58\x3c", [0x85ce] = "\x0f\x58\x3d", + [0x85cf] = "\x0f\x58\x3e", [0x85d0] = "\x07\x34\x3d", + [0x85d2] = "\x0f\x58\x3f", [0x85d3] = "\x07\x2c\x5a", + [0x85d4] = "\x07\x34\x48", [0x85d5] = "\x07\x34\x3b", + [0x85d7] = "\x07\x34\x3a", [0x85d8] = "\x07\x34\x43", + [0x85d9] = "\x07\x34\x4b", [0x85de] = "\x05\x58\x78", + [0x85df] = "\x05\x58\x7d", [0x85e1] = "\x05\x58\x7a", + [0x85e2] = "\x07\x34\x3f", [0x85e3] = "\x05\x58\x76", + [0x85e5] = "\x05\x5f\x2f", [0x85e6] = "\x04\x59\x3a", + [0x85e7] = "\x07\x3c\x60", [0x85e8] = "\x05\x5f\x33", + [0x85e9] = "\x07\x3c\x5d", [0x85ea] = "\x05\x5f\x34", + [0x85eb] = "\x07\x3c\x5b", [0x85ec] = "\x07\x50\x57", + [0x85ed] = "\x07\x34\x49", [0x85ee] = "\x07\x3c\x62", + [0x85ef] = "\x07\x3c\x5e", [0x85f0] = "\x05\x5f\x32", + [0x85f1] = "\x05\x5f\x35", [0x85f6] = "\x0f\x5d\x24", + [0x85f7] = "\x0f\x5d\x26", [0x85f8] = "\x0f\x5d\x27", + [0x85f9] = "\x0f\x5d\x28", [0x85fa] = "\x07\x3c\x59", + [0x85fb] = "\x07\x3c\x5c", [0x85fc] = "\x07\x3c\x5f", + [0x85fd] = "\x07\x3c\x63", [0x8600] = "\x0f\x5d\x25", + [0x8601] = "\x05\x5f\x36", [0x8602] = "\x05\x5f\x37", + [0x8603] = "\x05\x5f\x31", [0x8604] = "\x05\x5f\x30", + [0x8605] = "\x07\x3c\x5a", [0x8607] = "\x05\x65\x3d", + [0x8608] = "\x07\x43\x7c", [0x8609] = "\x04\x5e\x22", + [0x860a] = "\x07\x43\x7a", [0x860c] = "\x05\x65\x3a", + [0x860d] = "\x07\x43\x78", [0x860e] = "\x0f\x61\x2b", + [0x860f] = "\x0f\x61\x2c", [0x8610] = "\x0f\x61\x2d", + [0x8611] = "\x07\x44\x21", [0x8613] = "\x07\x43\x7e", + [0x8619] = "\x05\x65\x39", [0x861a] = "\x07\x43\x7d", + [0x861b] = "\x07\x43\x76", [0x861c] = "\x07\x43\x79", + [0x861d] = "\x05\x65\x3c", [0x861e] = "\x05\x65\x3b", + [0x861f] = "\x05\x65\x38", [0x8620] = "\x07\x43\x7b", + [0x8621] = "\x07\x4b\x21", [0x8622] = "\x07\x4b\x22", + [0x8623] = "\x07\x4a\x7e", [0x8626] = "\x0f\x64\x2a", + [0x8627] = "\x0f\x64\x2b", [0x8628] = "\x0f\x64\x2d", + [0x8629] = "\x0f\x64\x2e", [0x862a] = "\x07\x4a\x79", + [0x862b] = "\x07\x4a\x7a", [0x862c] = "\x07\x4a\x7d", + [0x862d] = "\x07\x4a\x7b", [0x862e] = "\x07\x4a\x7c", + [0x8630] = "\x07\x4a\x78", [0x8632] = "\x05\x6a\x21", + [0x8635] = "\x05\x69\x7e", [0x8636] = "\x0f\x64\x2c", + [0x8637] = "\x07\x50\x5a", [0x8638] = "\x05\x6e\x29", + [0x8639] = "\x07\x50\x59", [0x863c] = "\x05\x6e\x27", + [0x863d] = "\x0f\x66\x4c", [0x863f] = "\x07\x50\x58", + [0x8640] = "\x05\x6e\x28", [0x8641] = "\x07\x5d\x22", + [0x8642] = "\x04\x67\x55", [0x8643] = "\x07\x55\x4f", + [0x8644] = "\x05\x71\x51", [0x8645] = "\x07\x55\x50", + [0x8646] = "\x07\x55\x4e", [0x8647] = "\x0f\x68\x55", + [0x8648] = "\x0f\x68\x56", [0x8649] = "\x0f\x68\x57", + [0x864a] = "\x0f\x68\x58", [0x864e] = "\x05\x71\x4f", + [0x864f] = "\x05\x71\x50", [0x8650] = "\x05\x69\x7d", + [0x8651] = "\x07\x55\x51", [0x8652] = "\x05\x71\x52", + [0x8653] = "\x05\x74\x52", [0x8654] = "\x04\x6b\x25", + [0x8655] = "\x07\x59\x5b", [0x8657] = "\x07\x59\x5a", + [0x8658] = "\x07\x59\x59", [0x8659] = "\x07\x5d\x23", + [0x865a] = "\x07\x5d\x25", [0x865c] = "\x07\x5d\x24", + [0x865e] = "\x07\x62\x6a", [0x865f] = "\x07\x5f\x6a", + [0x8660] = "\x07\x5f\x69", [0x8663] = "\x05\x78\x3d", + [0x8664] = "\x07\x61\x55", [0x8666] = "\x07\x62\x6b", + [0x8667] = "\x07\x65\x68", [0x8668] = "\x06\x29\x30", + [0x8669] = "\x05\x21\x7c", [0x866b] = "\x05\x23\x2c", + [0x866d] = "\x05\x23\x2b", [0x866e] = "\x05\x23\x2d", + [0x866f] = "\x05\x23\x2a", [0x8670] = "\x04\x23\x31", + [0x8671] = "\x06\x25\x5a", [0x8672] = "\x06\x25\x5c", + [0x8675] = "\x04\x23\x33", [0x8676] = "\x04\x25\x27", + [0x8677] = "\x05\x24\x79", [0x8678] = "\x04\x25\x26", + [0x8679] = "\x04\x25\x28", [0x867a] = "\x04\x25\x25", + [0x867b] = "\x06\x29\x33", [0x867c] = "\x04\x25\x2a", + [0x867d] = "\x05\x24\x7a", [0x867e] = "\x04\x35\x71", + [0x8682] = "\x06\x29\x32", [0x8683] = "\x0f\x25\x35", + [0x8684] = "\x0f\x25\x36", [0x8685] = "\x0f\x25\x37", + [0x8686] = "\x0f\x38\x73", [0x8687] = "\x0f\x38\x75", + [0x8689] = "\x06\x45\x61", [0x868a] = "\x06\x45\x5f", + [0x868b] = "\x06\x45\x60", [0x868d] = "\x06\x29\x31", + [0x868f] = "\x04\x25\x29", [0x8691] = "\x04\x28\x2e", + [0x8692] = "\x06\x45\x5e", [0x8693] = "\x04\x28\x2a", + [0x8694] = "\x04\x28\x2d", [0x8695] = "\x04\x28\x2c", + [0x8696] = "\x06\x34\x69", [0x8697] = "\x04\x28\x2f", + [0x8698] = "\x05\x27\x72", [0x8699] = "\x05\x27\x73", + [0x869a] = "\x06\x4f\x58", [0x869b] = "\x06\x2e\x43", + [0x869c] = "\x0f\x28\x76", [0x869d] = "\x0f\x28\x78", + [0x869e] = "\x0f\x28\x79", [0x869f] = "\x0f\x28\x7c", + [0x86a0] = "\x06\x4f\x5a", [0x86a2] = "\x06\x2e\x41", + [0x86a5] = "\x06\x2e\x42", [0x86a8] = "\x06\x2e\x40", + [0x86aa] = "\x0f\x28\x77", [0x86ab] = "\x0f\x28\x7b", + [0x86ac] = "\x06\x4f\x57", [0x86ad] = "\x06\x4f\x59", + [0x86ae] = "\x05\x27\x74", [0x86af] = "\x05\x2b\x5a", + [0x86b0] = "\x05\x2b\x59", [0x86b1] = "\x05\x2b\x58", + [0x86b2] = "\x04\x2b\x57", [0x86b3] = "\x04\x2b\x55", + [0x86b4] = "\x05\x2b\x5f", [0x86b5] = "\x04\x41\x33", + [0x86b6] = "\x05\x2b\x5b", [0x86b9] = "\x0f\x2d\x5a", + [0x86ba] = "\x0f\x45\x6e", [0x86bb] = "\x06\x59\x45", + [0x86bc] = "\x06\x59\x44", [0x86bd] = "\x06\x59\x46", + [0x86bf] = "\x06\x34\x6c", [0x86c1] = "\x06\x34\x66", + [0x86c3] = "\x06\x34\x67", [0x86c4] = "\x06\x34\x68", + [0x86c6] = "\x06\x34\x6b", [0x86c7] = "\x06\x34\x6a", + [0x86c8] = "\x05\x2b\x5e", [0x86c9] = "\x05\x2b\x5c", + [0x86ca] = "\x05\x2b\x5d", [0x86cb] = "\x05\x30\x61", + [0x86cc] = "\x05\x30\x5d", [0x86cd] = "\x04\x30\x36", + [0x86ce] = "\x06\x3c\x5b", [0x86cf] = "\x05\x30\x65", + [0x86d0] = "\x05\x30\x66", [0x86d1] = "\x05\x30\x5e", + [0x86d2] = "\x05\x30\x63", [0x86d3] = "\x05\x30\x5f", + [0x86d4] = "\x04\x30\x35", [0x86d5] = "\x06\x3c\x5d", + [0x86d6] = "\x04\x30\x37", [0x86d9] = "\x06\x3c\x5f", + [0x86da] = "\x06\x63\x3d", [0x86db] = "\x06\x63\x3f", + [0x86dc] = "\x06\x63\x40", [0x86de] = "\x06\x3c\x5c", + [0x86df] = "\x06\x3c\x5e", [0x86e0] = "\x06\x3c\x5a", + [0x86e1] = "\x05\x30\x62", [0x86e3] = "\x05\x30\x64", + [0x86e4] = "\x05\x30\x60", [0x86e5] = "\x05\x30\x67", + [0x86e6] = "\x06\x63\x3e", [0x86e7] = "\x06\x3c\x59", + [0x86e8] = "\x0f\x32\x62", [0x86e9] = "\x0f\x32\x63", + [0x86ea] = "\x0f\x32\x64", [0x86eb] = "\x05\x51\x6e", + [0x86ec] = "\x04\x4e\x36", [0x86ed] = "\x04\x35\x6f", + [0x86ee] = "\x05\x36\x31", [0x86ef] = "\x05\x36\x30", + [0x86f0] = "\x05\x36\x35", [0x86f1] = "\x05\x36\x2e", + [0x86f3] = "\x05\x36\x32", [0x86f4] = "\x04\x35\x6d", + [0x86f5] = "\x06\x45\x66", [0x86f6] = "\x05\x36\x34", + [0x86f7] = "\x07\x29\x7a", [0x86f8] = "\x07\x29\x79", + [0x86fb] = "\x06\x45\x68", [0x86fc] = "\x0f\x32\x61", + [0x86fd] = "\x0f\x38\x76", [0x86fe] = "\x0f\x52\x54", + [0x86ff] = "\x07\x29\x76", [0x8700] = "\x07\x29\x77", + [0x8701] = "\x07\x29\x7b", [0x8702] = "\x07\x29\x78", + [0x8703] = "\x06\x45\x63", [0x8705] = "\x06\x45\x65", + [0x8706] = "\x06\x45\x64", [0x8708] = "\x06\x45\x62", + [0x870a] = "\x0f\x33\x3c", [0x870b] = "\x06\x45\x67", + [0x870c] = "\x05\x36\x2f", [0x870d] = "\x05\x36\x33", + [0x870e] = "\x05\x30\x68", [0x870f] = "\x04\x3b\x5f", + [0x8710] = "\x05\x3d\x23", [0x8711] = "\x05\x3c\x7e", + [0x8712] = "\x05\x3d\x22", [0x8713] = "\x04\x3b\x5d", + [0x8714] = "\x05\x3d\x24", [0x8715] = "\x06\x4f\x64", + [0x8716] = "\x05\x3d\x21", [0x8717] = "\x05\x43\x67", + [0x8718] = "\x05\x3c\x7d", [0x8719] = "\x05\x3c\x7c", + [0x871a] = "\x06\x4f\x62", [0x871b] = "\x06\x4f\x5b", + [0x871c] = "\x04\x3b\x5c", [0x871f] = "\x0f\x3f\x63", + [0x8720] = "\x0f\x3f\x64", [0x8721] = "\x0f\x3f\x65", + [0x8722] = "\x0f\x58\x41", [0x8723] = "\x07\x34\x4e", + [0x8724] = "\x06\x4f\x5d", [0x8725] = "\x06\x4f\x5c", + [0x8726] = "\x06\x4f\x5e", [0x8727] = "\x06\x4f\x5f", + [0x8728] = "\x06\x4f\x60", [0x872a] = "\x06\x4f\x61", + [0x872d] = "\x0f\x3f\x66", [0x872e] = "\x06\x4f\x63", + [0x872f] = "\x07\x34\x4d", [0x8730] = "\x05\x3c\x7b", + [0x8732] = "\x07\x3c\x64", [0x8733] = "\x05\x43\x5b", + [0x8734] = "\x05\x43\x60", [0x8735] = "\x05\x43\x63", + [0x8736] = "\x05\x43\x5e", [0x8737] = "\x05\x43\x5d", + [0x8738] = "\x04\x41\x35", [0x8739] = "\x06\x63\x41", + [0x873a] = "\x05\x43\x5c", [0x873b] = "\x05\x43\x62", + [0x873c] = "\x05\x43\x5f", [0x873d] = "\x05\x43\x64", + [0x873e] = "\x05\x43\x66", [0x873f] = "\x04\x41\x37", + [0x8740] = "\x05\x43\x65", [0x8741] = "\x06\x59\x49", + [0x8743] = "\x05\x43\x5a", [0x8744] = "\x0f\x45\x6f", + [0x8747] = "\x06\x59\x48", [0x8749] = "\x06\x59\x4b", + [0x874a] = "\x05\x43\x61", [0x874b] = "\x04\x47\x6f", + [0x874c] = "\x05\x4a\x5d", [0x874d] = "\x05\x4a\x5c", + [0x874e] = "\x05\x4a\x59", [0x874f] = "\x05\x4a\x58", + [0x8750] = "\x05\x4a\x63", [0x8751] = "\x05\x4a\x5f", + [0x8753] = "\x05\x4a\x5b", [0x8754] = "\x06\x63\x46", + [0x8755] = "\x06\x63\x43", [0x8757] = "\x06\x63\x42", + [0x8758] = "\x05\x4a\x61", [0x875b] = "\x05\x4a\x62", + [0x875d] = "\x07\x44\x22", [0x875e] = "\x07\x44\x24", + [0x875f] = "\x07\x44\x23", [0x8760] = "\x07\x44\x25", + [0x8761] = "\x06\x63\x45", [0x8762] = "\x05\x4a\x57", + [0x8763] = "\x04\x47\x72", [0x8765] = "\x06\x63\x44", + [0x8766] = "\x05\x65\x3e", [0x8767] = "\x05\x4a\x5a", + [0x8768] = "\x05\x4a\x5e", [0x876a] = "\x05\x4a\x64", + [0x876b] = "\x04\x4e\x38", [0x876c] = "\x07\x4b\x23", + [0x876d] = "\x05\x51\x72", [0x876e] = "\x07\x2a\x21", + [0x876f] = "\x04\x4e\x37", [0x8770] = "\x05\x51\x73", + [0x8771] = "\x04\x4e\x39", [0x8773] = "\x05\x59\x28", + [0x8774] = "\x05\x51\x6f", [0x8775] = "\x05\x51\x70", + [0x8776] = "\x07\x29\x7e", [0x8777] = "\x07\x2a\x22", + [0x8778] = "\x04\x4e\x3a", [0x877d] = "\x0f\x52\x53", + [0x877e] = "\x0f\x52\x55", [0x877f] = "\x0f\x52\x56", + [0x8780] = "\x07\x4b\x26", [0x8781] = "\x07\x4b\x24", + [0x8782] = "\x07\x2a\x23", [0x8783] = "\x07\x2a\x25", + [0x8784] = "\x07\x2a\x26", [0x8785] = "\x07\x2a\x24", + [0x8787] = "\x07\x29\x7c", [0x8789] = "\x07\x29\x7d", + [0x878c] = "\x05\x51\x74", [0x878d] = "\x07\x34\x50", + [0x878e] = "\x05\x51\x71", [0x878f] = "\x07\x4b\x25", + [0x8791] = "\x05\x6e\x2a", [0x8792] = "\x05\x59\x25", + [0x8793] = "\x05\x59\x26", [0x8794] = "\x07\x50\x5c", + [0x8795] = "\x04\x54\x38", [0x8796] = "\x07\x34\x4f", + [0x8797] = "\x05\x59\x21", [0x8798] = "\x05\x59\x24", + [0x8799] = "\x07\x34\x52", [0x879a] = "\x05\x59\x22", + [0x879b] = "\x05\x59\x23", [0x879c] = "\x04\x54\x39", + [0x879e] = "\x07\x34\x51", [0x879f] = "\x0f\x58\x40", + [0x87a0] = "\x07\x50\x5d", [0x87a1] = "\x07\x50\x5b", + [0x87a6] = "\x05\x6e\x2b", [0x87a7] = "\x07\x3c\x65", + [0x87a8] = "\x07\x3c\x69", [0x87a9] = "\x05\x5f\x38", + [0x87aa] = "\x04\x59\x3b", [0x87ab] = "\x05\x5f\x39", + [0x87ae] = "\x07\x55\x52", [0x87af] = "\x07\x55\x53", + [0x87b0] = "\x07\x55\x54", [0x87b1] = "\x07\x3c\x67", + [0x87b3] = "\x07\x3c\x6a", [0x87b5] = "\x07\x3c\x66", + [0x87b6] = "\x05\x5f\x3b", [0x87b7] = "\x05\x5f\x3a", + [0x87b8] = "\x07\x55\x55", [0x87b9] = "\x07\x3c\x68", + [0x87ba] = "\x05\x65\x40", [0x87bb] = "\x07\x44\x26", + [0x87bc] = "\x07\x44\x27", [0x87bd] = "\x05\x65\x41", + [0x87be] = "\x05\x6a\x25", [0x87bf] = "\x05\x65\x44", + [0x87c0] = "\x07\x44\x29", [0x87c1] = "\x07\x44\x28", + [0x87c2] = "\x05\x65\x42", [0x87c3] = "\x05\x65\x43", + [0x87c4] = "\x07\x59\x5c", [0x87c5] = "\x05\x65\x3f", + [0x87c8] = "\x07\x44\x2a", [0x87cd] = "\x07\x4b\x28", + [0x87ce] = "\x07\x44\x2b", [0x87cf] = "\x05\x6a\x24", + [0x87d0] = "\x07\x4b\x27", [0x87d1] = "\x05\x6a\x23", + [0x87d4] = "\x07\x4b\x2a", [0x87d5] = "\x07\x4b\x29", + [0x87d6] = "\x04\x61\x60", [0x87d7] = "\x05\x59\x27", + [0x87d8] = "\x05\x6a\x22", [0x87d9] = "\x04\x64\x64", + [0x87da] = "\x05\x6e\x2c", [0x87db] = "\x07\x50\x5f", + [0x87dc] = "\x07\x50\x61", [0x87de] = "\x07\x50\x5e", + [0x87df] = "\x07\x50\x60", [0x87e0] = "\x04\x67\x56", + [0x87e1] = "\x0f\x68\x59", [0x87e2] = "\x07\x55\x56", + [0x87e3] = "\x07\x55\x57", [0x87e4] = "\x07\x59\x5d", + [0x87e6] = "\x07\x55\x58", [0x87e7] = "\x0f\x68\x5a", + [0x87e8] = "\x07\x5d\x26", [0x87eb] = "\x07\x5f\x6b", + [0x87ec] = "\x07\x5f\x6c", [0x87ee] = "\x05\x7b\x4b", + [0x87ef] = "\x07\x63\x78", [0x87f0] = "\x04\x30\x39", + [0x87f1] = "\x0f\x32\x65", [0x87f2] = "\x06\x3c\x60", + [0x87f4] = "\x05\x36\x38", [0x87f5] = "\x05\x36\x37", + [0x87f6] = "\x06\x45\x72", [0x87f7] = "\x06\x45\x6e", + [0x87f8] = "\x05\x36\x39", [0x87f9] = "\x04\x35\x76", + [0x87fa] = "\x06\x45\x6c", [0x87fb] = "\x06\x45\x73", + [0x87fc] = "\x06\x45\x69", [0x87fd] = "\x04\x35\x77", + [0x87fe] = "\x05\x36\x3a", [0x87ff] = "\x06\x45\x70", + [0x8800] = "\x06\x45\x6f", [0x8801] = "\x06\x45\x6a", + [0x8802] = "\x06\x45\x6b", [0x8805] = "\x0f\x38\x77", + [0x8806] = "\x06\x45\x71", [0x8807] = "\x04\x35\x79", + [0x8808] = "\x06\x45\x6d", [0x880a] = "\x06\x45\x74", + [0x880b] = "\x06\x4f\x6b", [0x880c] = "\x05\x3d\x25", + [0x880d] = "\x05\x3d\x26", [0x880e] = "\x04\x3b\x65", + [0x880f] = "\x06\x4f\x69", [0x8810] = "\x05\x43\x6a", + [0x8811] = "\x04\x3b\x62", [0x8812] = "\x04\x3b\x63", + [0x8813] = "\x06\x4f\x6a", [0x8814] = "\x06\x4f\x66", + [0x8815] = "\x06\x4f\x65", [0x8816] = "\x04\x3b\x61", + [0x8817] = "\x06\x4f\x67", [0x8818] = "\x06\x4f\x68", + [0x881b] = "\x0f\x3f\x68", [0x881c] = "\x0f\x3f\x69", + [0x881d] = "\x0f\x3f\x6a", [0x881e] = "\x0f\x3f\x6b", + [0x8822] = "\x06\x4f\x6c", [0x8824] = "\x05\x43\x69", + [0x8825] = "\x05\x43\x6c", [0x8826] = "\x05\x43\x68", + [0x8827] = "\x06\x59\x4e", [0x882e] = "\x06\x59\x4d", + [0x8836] = "\x05\x43\x6b", [0x8837] = "\x06\x63\x4a", + [0x8838] = "\x05\x4a\x66", [0x8839] = "\x05\x4a\x65", + [0x883a] = "\x0f\x4c\x73", [0x883b] = "\x0f\x4c\x74", + [0x883c] = "\x0f\x4c\x75", [0x883d] = "\x0f\x4c\x77", + [0x883e] = "\x06\x63\x49", [0x8841] = "\x06\x63\x48", + [0x8842] = "\x0f\x4c\x78", [0x8845] = "\x06\x63\x47", + [0x884b] = "\x07\x2a\x28", [0x884c] = "\x05\x51\x78", + [0x884d] = "\x07\x2a\x2c", [0x884e] = "\x05\x51\x79", + [0x884f] = "\x05\x51\x75", [0x8850] = "\x07\x2a\x30", + [0x8851] = "\x05\x51\x76", [0x8853] = "\x07\x2a\x2f", + [0x8854] = "\x07\x2a\x2e", [0x8855] = "\x07\x2a\x2d", + [0x8856] = "\x07\x2a\x29", [0x8857] = "\x07\x2a\x27", + [0x8858] = "\x05\x51\x77", [0x885a] = "\x0f\x4c\x76", + [0x885b] = "\x0f\x52\x58", [0x885c] = "\x0f\x52\x59", + [0x885d] = "\x07\x2a\x2a", [0x8860] = "\x07\x2a\x2b", + [0x8862] = "\x07\x2a\x32", [0x8863] = "\x07\x2a\x31", + [0x8869] = "\x07\x34\x56", [0x886a] = "\x07\x34\x55", + [0x886b] = "\x05\x59\x29", [0x886c] = "\x07\x34\x58", + [0x886d] = "\x05\x59\x2c", [0x886e] = "\x07\x34\x5a", + [0x886f] = "\x04\x54\x41", [0x8870] = "\x07\x34\x5f", + [0x8871] = "\x04\x54\x3e", [0x8872] = "\x04\x54\x3f", + [0x8873] = "\x07\x34\x5e", [0x8874] = "\x05\x59\x2a", + [0x8875] = "\x07\x34\x57", [0x8876] = "\x07\x34\x5d", + [0x8877] = "\x07\x34\x5c", [0x8878] = "\x05\x59\x2b", + [0x887d] = "\x0f\x58\x42", [0x887e] = "\x0f\x58\x43", + [0x8880] = "\x07\x34\x59", [0x8881] = "\x07\x34\x5b", + [0x8883] = "\x07\x34\x53", [0x8884] = "\x07\x34\x60", + [0x8885] = "\x05\x5f\x41", [0x8886] = "\x05\x5f\x3f", + [0x8887] = "\x05\x5f\x40", [0x8888] = "\x05\x5f\x43", + [0x8889] = "\x04\x59\x40", [0x888a] = "\x07\x3c\x6c", + [0x888b] = "\x05\x5f\x42", [0x888c] = "\x04\x59\x3e", + [0x888d] = "\x07\x3c\x6e", [0x888e] = "\x05\x5f\x3e", + [0x888f] = "\x07\x3c\x74", [0x8890] = "\x05\x5f\x44", + [0x8891] = "\x07\x3c\x6d", [0x8892] = "\x07\x3c\x73", + [0x8894] = "\x0f\x5d\x2a", [0x8895] = "\x0f\x5d\x2b", + [0x8896] = "\x0f\x5d\x2c", [0x8899] = "\x07\x3c\x6f", + [0x889a] = "\x07\x3c\x71", [0x889b] = "\x07\x3c\x72", + [0x88a0] = "\x05\x5f\x3d", [0x88a1] = "\x05\x65\x46", + [0x88a2] = "\x05\x65\x47", [0x88a3] = "\x05\x65\x49", + [0x88a4] = "\x07\x44\x33", [0x88a5] = "\x07\x44\x2f", + [0x88a6] = "\x04\x5e\x23", [0x88a7] = "\x07\x44\x2c", + [0x88a8] = "\x05\x65\x48", [0x88a9] = "\x04\x5e\x26", + [0x88aa] = "\x05\x65\x4a", [0x88ab] = "\x07\x3c\x75", + [0x88ac] = "\x04\x5e\x25", [0x88ad] = "\x07\x44\x32", + [0x88af] = "\x05\x65\x4b", [0x88b0] = "\x07\x44\x35", + [0x88b1] = "\x07\x44\x36", [0x88b2] = "\x07\x44\x2d", + [0x88b3] = "\x0f\x61\x2e", [0x88b5] = "\x07\x44\x31", + [0x88b6] = "\x07\x44\x2e", [0x88b9] = "\x05\x65\x4c", + [0x88ba] = "\x07\x44\x30", [0x88bd] = "\x07\x4b\x2f", + [0x88be] = "\x07\x4b\x2c", [0x88bf] = "\x05\x6a\x2e", + [0x88c0] = "\x05\x6a\x2b", [0x88c1] = "\x05\x6a\x27", + [0x88c2] = "\x05\x6a\x2a", [0x88c3] = "\x05\x6a\x29", + [0x88c4] = "\x05\x6a\x2f", [0x88c5] = "\x05\x6a\x2c", + [0x88c6] = "\x05\x6a\x28", [0x88c7] = "\x05\x6a\x2d", + [0x88cb] = "\x07\x4b\x2d", [0x88ce] = "\x07\x4b\x2e", + [0x88d0] = "\x07\x4b\x30", [0x88d1] = "\x07\x4b\x2b", + [0x88d3] = "\x07\x44\x34", [0x88d4] = "\x05\x6a\x30", + [0x88d5] = "\x05\x6a\x26", [0x88d6] = "\x07\x50\x62", + [0x88d7] = "\x05\x6e\x31", [0x88d8] = "\x05\x6e\x2e", + [0x88d9] = "\x05\x6e\x2f", [0x88da] = "\x05\x6e\x2d", + [0x88db] = "\x05\x6e\x30", [0x88dc] = "\x07\x50\x63", + [0x88dd] = "\x07\x50\x64", [0x88df] = "\x0f\x66\x4e", + [0x88e0] = "\x07\x50\x65", [0x88e1] = "\x07\x50\x67", + [0x88e3] = "\x07\x50\x66", [0x88e6] = "\x04\x67\x59", + [0x88e7] = "\x04\x67\x57", [0x88e8] = "\x04\x67\x58", + [0x88e9] = "\x05\x71\x53", [0x88ea] = "\x07\x55\x5a", + [0x88eb] = "\x0f\x68\x5b", [0x88ed] = "\x07\x55\x59", + [0x88ee] = "\x07\x59\x5e", [0x88ef] = "\x07\x59\x5f", + [0x88f0] = "\x07\x59\x62", [0x88f1] = "\x05\x74\x53", + [0x88f2] = "\x07\x59\x61", [0x88f3] = "\x07\x59\x60", + [0x88f4] = "\x0f\x69\x7d", [0x88f6] = "\x07\x5d\x27", + [0x88f7] = "\x07\x5d\x29", [0x88f8] = "\x05\x76\x5a", + [0x88f9] = "\x07\x5d\x2b", [0x88fa] = "\x07\x5d\x2a", + [0x88fb] = "\x05\x76\x5b", [0x88fc] = "\x07\x5d\x28", + [0x88fd] = "\x0f\x6a\x7a", [0x88fe] = "\x05\x78\x3f", + [0x88ff] = "\x04\x6c\x2f", [0x8900] = "\x07\x5f\x6d", + [0x8901] = "\x07\x5f\x6e", [0x8902] = "\x05\x78\x3e", + [0x8905] = "\x07\x62\x6c", [0x8907] = "\x05\x7a\x7b", + [0x8908] = "\x07\x63\x7a", [0x8909] = "\x07\x63\x79", + [0x890a] = "\x07\x64\x66", [0x890c] = "\x07\x64\x65", + [0x890d] = "\x07\x65\x78", [0x890e] = "\x07\x65\x79", + [0x890f] = "\x06\x34\x6e", [0x8910] = "\x05\x3d\x27", + [0x8911] = "\x05\x36\x3b", [0x8912] = "\x06\x63\x4b", + [0x8913] = "\x06\x63\x4c", [0x8915] = "\x05\x51\x7a", + [0x8916] = "\x07\x2a\x34", [0x8917] = "\x07\x2a\x33", + [0x8918] = "\x05\x59\x2d", [0x8919] = "\x07\x34\x61", + [0x891a] = "\x05\x5f\x45", [0x891b] = "\x0f\x5d\x2d", + [0x891d] = "\x07\x44\x37", [0x891e] = "\x0f\x66\x4f", + [0x8920] = "\x0f\x68\x5c", [0x8921] = "\x05\x74\x54", + [0x8922] = "\x05\x36\x3c", [0x8923] = "\x06\x3c\x61", + [0x8925] = "\x06\x45\x75", [0x8926] = "\x06\x4f\x6e", + [0x8928] = "\x05\x3d\x29", [0x8929] = "\x05\x3d\x28", + [0x892a] = "\x0f\x45\x70", [0x892c] = "\x06\x63\x4d", + [0x892d] = "\x07\x2a\x35", [0x8934] = "\x05\x5f\x46", + [0x8936] = "\x0f\x61\x2f", [0x8937] = "\x05\x65\x4d", + [0x8938] = "\x0f\x68\x5d", [0x8939] = "\x05\x71\x54", + [0x893a] = "\x07\x55\x5b", [0x893e] = "\x06\x3c\x64", + [0x893f] = "\x0f\x32\x66", [0x8940] = "\x06\x3c\x62", + [0x8942] = "\x05\x36\x3d", [0x8943] = "\x06\x45\x76", + [0x8944] = "\x06\x45\x77", [0x8949] = "\x0f\x38\x78", + [0x894a] = "\x06\x4f\x73", [0x894b] = "\x06\x4f\x74", + [0x894c] = "\x06\x4f\x75", [0x894d] = "\x06\x4f\x71", + [0x894e] = "\x06\x4f\x72", [0x894f] = "\x06\x4f\x78", + [0x8950] = "\x06\x4f\x76", [0x8951] = "\x06\x4f\x70", + [0x8952] = "\x06\x4f\x79", [0x8953] = "\x0f\x3f\x6c", + [0x8954] = "\x0f\x3f\x6d", [0x8955] = "\x0f\x3f\x6e", + [0x8956] = "\x0f\x3f\x6f", [0x8957] = "\x0f\x3f\x72", + [0x8958] = "\x0f\x3f\x74", [0x8959] = "\x0f\x3f\x71", + [0x8962] = "\x06\x4f\x77", [0x8964] = "\x0f\x3f\x70", + [0x8965] = "\x04\x41\x47", [0x8966] = "\x05\x43\x6e", + [0x8967] = "\x04\x41\x45", [0x8968] = "\x04\x41\x44", + [0x8969] = "\x06\x59\x53", [0x896a] = "\x06\x59\x4f", + [0x896d] = "\x0f\x45\x71", [0x896e] = "\x0f\x45\x75", + [0x896f] = "\x0f\x45\x76", [0x8970] = "\x0f\x45\x77", + [0x8971] = "\x0f\x45\x78", [0x8972] = "\x06\x59\x55", + [0x8973] = "\x06\x59\x51", [0x8975] = "\x06\x59\x52", + [0x8976] = "\x0f\x45\x79", [0x8979] = "\x06\x59\x54", + [0x897b] = "\x06\x59\x50", [0x897e] = "\x0f\x45\x74", + [0x8982] = "\x05\x4a\x67", [0x8984] = "\x05\x4a\x68", + [0x8985] = "\x06\x63\x52", [0x8986] = "\x05\x4a\x69", + [0x898a] = "\x0f\x4c\x68", [0x898b] = "\x0f\x4c\x79", + [0x898c] = "\x0f\x4c\x7b", [0x898d] = "\x0f\x4c\x7c", + [0x898e] = "\x0f\x4c\x7d", [0x898f] = "\x0f\x4d\x21", + [0x8990] = "\x0f\x4d\x23", [0x8991] = "\x0f\x4d\x24", + [0x8992] = "\x0f\x4d\x25", [0x8993] = "\x0f\x4d\x28", + [0x8994] = "\x0f\x4d\x29", [0x8996] = "\x06\x63\x4e", + [0x8999] = "\x04\x47\x7a", [0x899c] = "\x06\x63\x50", + [0x899d] = "\x06\x63\x51", [0x899e] = "\x0f\x4d\x2a", + [0x899f] = "\x06\x63\x54", [0x89a0] = "\x0f\x4c\x7a", + [0x89a3] = "\x06\x63\x55", [0x89a8] = "\x0f\x4d\x2b", + [0x89aa] = "\x0f\x4d\x26", [0x89ab] = "\x0f\x4c\x7e", + [0x89ac] = "\x07\x2a\x3a", [0x89ad] = "\x04\x4e\x42", + [0x89ae] = "\x05\x51\x7e", [0x89af] = "\x07\x2a\x41", + [0x89b0] = "\x07\x2a\x3b", [0x89b1] = "\x07\x2a\x40", + [0x89b2] = "\x07\x2a\x39", [0x89b3] = "\x05\x51\x7d", + [0x89b4] = "\x07\x2a\x43", [0x89b7] = "\x07\x2a\x44", + [0x89b8] = "\x07\x2a\x3d", [0x89be] = "\x05\x51\x7b", + [0x89bf] = "\x07\x2a\x37", [0x89c1] = "\x0f\x52\x5b", + [0x89c2] = "\x0f\x52\x5d", [0x89c3] = "\x0f\x52\x5f", + [0x89c4] = "\x0f\x52\x60", [0x89c5] = "\x0f\x52\x63", + [0x89c6] = "\x0f\x52\x64", [0x89c7] = "\x0f\x52\x65", + [0x89c8] = "\x0f\x52\x67", [0x89c9] = "\x0f\x52\x68", + [0x89ca] = "\x0f\x52\x69", [0x89cb] = "\x0f\x52\x6a", + [0x89cc] = "\x0f\x52\x6c", [0x89cd] = "\x0f\x52\x6d", + [0x89ce] = "\x07\x2a\x42", [0x89cf] = "\x07\x2a\x3c", + [0x89d3] = "\x07\x2a\x3f", [0x89d5] = "\x07\x2a\x45", + [0x89d6] = "\x0f\x52\x5e", [0x89d9] = "\x07\x2a\x36", + [0x89db] = "\x05\x51\x7c", [0x89dc] = "\x0f\x52\x62", + [0x89e1] = "\x0f\x52\x66", [0x89e4] = "\x0f\x52\x5a", + [0x89e5] = "\x05\x59\x34", [0x89e6] = "\x05\x59\x37", + [0x89e7] = "\x05\x59\x32", [0x89e8] = "\x04\x54\x47", + [0x89e9] = "\x05\x59\x2e", [0x89ea] = "\x05\x59\x30", + [0x89eb] = "\x07\x34\x65", [0x89ec] = "\x07\x34\x64", + [0x89ed] = "\x07\x34\x6b", [0x89ee] = "\x07\x34\x69", + [0x89ef] = "\x07\x34\x67", [0x89f0] = "\x05\x59\x36", + [0x89f1] = "\x04\x54\x44", [0x89f2] = "\x07\x34\x62", + [0x89f3] = "\x07\x34\x6a", [0x89f4] = "\x07\x34\x68", + [0x89f5] = "\x05\x59\x2f", [0x89f6] = "\x07\x34\x66", + [0x89fd] = "\x0f\x52\x5c", [0x89fe] = "\x05\x59\x33", + [0x89ff] = "\x0f\x58\x44", [0x8a00] = "\x0f\x58\x46", + [0x8a01] = "\x0f\x58\x47", [0x8a02] = "\x0f\x58\x49", + [0x8a03] = "\x0f\x58\x4a", [0x8a04] = "\x0f\x58\x4b", + [0x8a05] = "\x0f\x58\x4d", [0x8a06] = "\x0f\x58\x4e", + [0x8a07] = "\x0f\x58\x4f", [0x8a08] = "\x0f\x58\x51", + [0x8a09] = "\x0f\x58\x53", [0x8a0a] = "\x0f\x58\x54", + [0x8a0b] = "\x0f\x58\x56", [0x8a0c] = "\x0f\x58\x57", + [0x8a0d] = "\x0f\x58\x5a", [0x8a0e] = "\x0f\x58\x5c", + [0x8a10] = "\x0f\x58\x5d", [0x8a11] = "\x0f\x58\x5e", + [0x8a12] = "\x0f\x58\x60", [0x8a13] = "\x0f\x58\x61", + [0x8a14] = "\x0f\x58\x63", [0x8a15] = "\x0f\x58\x64", + [0x8a16] = "\x0f\x58\x50", [0x8a17] = "\x0f\x58\x52", + [0x8a1d] = "\x0f\x58\x5f", [0x8a25] = "\x0f\x58\x45", + [0x8a29] = "\x0f\x58\x58", [0x8a2c] = "\x05\x59\x38", + [0x8a2e] = "\x05\x59\x31", [0x8a2f] = "\x05\x5f\x48", + [0x8a30] = "\x05\x5f\x49", [0x8a31] = "\x07\x3c\x79", + [0x8a32] = "\x04\x59\x43", [0x8a33] = "\x05\x5f\x4c", + [0x8a34] = "\x05\x5f\x4b", [0x8a35] = "\x07\x3c\x7c", + [0x8a36] = "\x05\x59\x35", [0x8a37] = "\x05\x5f\x47", + [0x8a38] = "\x07\x3c\x7a", [0x8a39] = "\x05\x5f\x4a", + [0x8a3a] = "\x05\x5f\x4f", [0x8a3b] = "\x07\x3c\x7e", + [0x8a3c] = "\x07\x3d\x24", [0x8a3d] = "\x07\x3d\x21", + [0x8a3e] = "\x07\x3d\x25", [0x8a4c] = "\x0f\x5d\x2f", + [0x8a4d] = "\x0f\x5d\x30", [0x8a4e] = "\x0f\x5d\x34", + [0x8a4f] = "\x0f\x5d\x35", [0x8a50] = "\x0f\x5d\x36", + [0x8a51] = "\x0f\x5d\x37", [0x8a52] = "\x0f\x5d\x3a", + [0x8a53] = "\x0f\x5d\x3b", [0x8a54] = "\x0f\x5d\x3c", + [0x8a55] = "\x0f\x5d\x3d", [0x8a56] = "\x0f\x5d\x3f", + [0x8a57] = "\x0f\x5d\x40", [0x8a58] = "\x0f\x5d\x42", + [0x8a5b] = "\x0f\x5d\x43", [0x8a5c] = "\x0f\x5d\x44", + [0x8a5d] = "\x0f\x5d\x45", [0x8a5e] = "\x0f\x5d\x46", + [0x8a5f] = "\x0f\x5d\x47", [0x8a60] = "\x0f\x5d\x48", + [0x8a61] = "\x0f\x5d\x49", [0x8a62] = "\x0f\x5d\x4b", + [0x8a63] = "\x0f\x5d\x4e", [0x8a64] = "\x0f\x5d\x4f", + [0x8a69] = "\x07\x3c\x7d", [0x8a6c] = "\x07\x3d\x22", + [0x8a75] = "\x07\x3c\x78", [0x8a79] = "\x07\x3d\x23", + [0x8a7a] = "\x04\x59\x48", [0x8a7c] = "\x0f\x5d\x4a", + [0x8a81] = "\x0f\x5d\x38", [0x8a82] = "\x0f\x5d\x33", + [0x8a83] = "\x0f\x5d\x31", [0x8a84] = "\x05\x5f\x4e", + [0x8a85] = "\x05\x5f\x4d", [0x8a86] = "\x0f\x5d\x2e", + [0x8a87] = "\x05\x65\x51", [0x8a88] = "\x04\x5e\x2d", + [0x8a89] = "\x04\x5e\x2e", [0x8a8a] = "\x05\x65\x52", + [0x8a8b] = "\x04\x5e\x28", [0x8a8c] = "\x04\x5e\x2a", + [0x8a8d] = "\x07\x44\x38", [0x8a8e] = "\x05\x65\x50", + [0x8a8f] = "\x05\x65\x4e", [0x8a90] = "\x05\x6a\x31", + [0x8a91] = "\x07\x44\x3a", [0x8a92] = "\x05\x65\x53", + [0x8a93] = "\x04\x5e\x30", [0x8a94] = "\x07\x44\x40", + [0x8a96] = "\x07\x44\x3f", [0x8a97] = "\x05\x65\x54", + [0x8a9f] = "\x05\x65\x55", [0x8aa0] = "\x07\x44\x41", + [0x8aa1] = "\x0f\x61\x31", [0x8aa2] = "\x0f\x61\x32", + [0x8aa3] = "\x0f\x61\x34", [0x8aa4] = "\x0f\x61\x36", + [0x8aa5] = "\x0f\x61\x37", [0x8aa6] = "\x0f\x61\x38", + [0x8aa7] = "\x0f\x61\x3a", [0x8aa8] = "\x0f\x61\x3c", + [0x8aa9] = "\x0f\x61\x3d", [0x8aaa] = "\x0f\x61\x3e", + [0x8aab] = "\x0f\x61\x40", [0x8aac] = "\x0f\x61\x41", + [0x8aad] = "\x0f\x61\x42", [0x8aae] = "\x0f\x61\x44", + [0x8aaf] = "\x0f\x61\x45", [0x8ab0] = "\x0f\x61\x46", + [0x8ab6] = "\x07\x44\x3b", [0x8ab7] = "\x07\x44\x3c", + [0x8abc] = "\x07\x44\x3e", [0x8abd] = "\x07\x44\x3d", + [0x8ac6] = "\x0f\x61\x30", [0x8acb] = "\x0f\x61\x39", + [0x8acc] = "\x0f\x61\x35", [0x8ace] = "\x0f\x5f\x5d", + [0x8acf] = "\x04\x61\x6b", [0x8ad0] = "\x07\x4b\x33", + [0x8ad1] = "\x07\x4b\x37", [0x8ad2] = "\x05\x6a\x32", + [0x8ad3] = "\x07\x4b\x34", [0x8ad4] = "\x05\x6a\x34", + [0x8ad5] = "\x07\x4b\x32", [0x8ad6] = "\x07\x4b\x3a", + [0x8ad8] = "\x07\x4b\x36", [0x8ad9] = "\x07\x4b\x39", + [0x8ae6] = "\x07\x4b\x3b", [0x8ae7] = "\x0f\x64\x31", + [0x8ae8] = "\x0f\x64\x32", [0x8ae9] = "\x0f\x64\x33", + [0x8aea] = "\x0f\x64\x35", [0x8aeb] = "\x0f\x64\x36", + [0x8aec] = "\x0f\x64\x38", [0x8aed] = "\x0f\x64\x39", + [0x8aee] = "\x0f\x64\x3a", [0x8aef] = "\x0f\x64\x3b", + [0x8af0] = "\x0f\x64\x3c", [0x8af1] = "\x0f\x64\x3d", + [0x8af2] = "\x0f\x64\x3f", [0x8af3] = "\x0f\x64\x40", + [0x8af4] = "\x0f\x64\x41", [0x8af5] = "\x0f\x64\x42", + [0x8af6] = "\x0f\x64\x43", [0x8af7] = "\x0f\x64\x44", + [0x8af8] = "\x0f\x64\x45", [0x8af9] = "\x07\x4b\x3c", + [0x8afb] = "\x07\x4b\x35", [0x8afd] = "\x07\x4b\x38", + [0x8b03] = "\x04\x61\x6a", [0x8b04] = "\x07\x4b\x31", + [0x8b05] = "\x05\x65\x56", [0x8b0c] = "\x0f\x64\x3e", + [0x8b0d] = "\x04\x64\x68", [0x8b0e] = "\x07\x50\x6d", + [0x8b0f] = "\x07\x50\x6e", [0x8b10] = "\x05\x6e\x38", + [0x8b11] = "\x07\x50\x72", [0x8b12] = "\x05\x6e\x33", + [0x8b13] = "\x04\x64\x6a", [0x8b14] = "\x05\x6e\x36", + [0x8b16] = "\x05\x6e\x32", [0x8b17] = "\x07\x50\x70", + [0x8b18] = "\x07\x50\x68", [0x8b19] = "\x07\x50\x69", + [0x8b1a] = "\x05\x6e\x37", [0x8b1b] = "\x04\x64\x6e", + [0x8b1d] = "\x07\x50\x71", [0x8b1f] = "\x05\x6e\x34", + [0x8b23] = "\x0f\x66\x50", [0x8b24] = "\x0f\x66\x51", + [0x8b25] = "\x0f\x66\x53", [0x8b26] = "\x0f\x66\x54", + [0x8b27] = "\x0f\x66\x55", [0x8b28] = "\x0f\x66\x56", + [0x8b29] = "\x0f\x66\x58", [0x8b2a] = "\x0f\x66\x59", + [0x8b2e] = "\x0f\x66\x5a", [0x8b2f] = "\x0f\x66\x5b", + [0x8b30] = "\x0f\x66\x5d", [0x8b31] = "\x0f\x66\x5f", + [0x8b32] = "\x0f\x66\x60", [0x8b33] = "\x0f\x66\x61", + [0x8b34] = "\x0f\x66\x62", [0x8b35] = "\x0f\x66\x63", + [0x8b36] = "\x0f\x66\x64", [0x8b37] = "\x0f\x66\x66", + [0x8b38] = "\x0f\x66\x68", [0x8b39] = "\x0f\x66\x6a", + [0x8b3a] = "\x0f\x66\x6b", [0x8b3b] = "\x0f\x66\x6c", + [0x8b3c] = "\x0f\x66\x6d", [0x8b3d] = "\x0f\x66\x6e", + [0x8b3e] = "\x0f\x66\x6f", [0x8b44] = "\x07\x50\x6c", + [0x8b47] = "\x07\x50\x6f", [0x8b49] = "\x0f\x66\x52", + [0x8b4e] = "\x0f\x66\x5c", [0x8b50] = "\x0f\x66\x67", + [0x8b53] = "\x07\x50\x6a", [0x8b55] = "\x07\x55\x62", + [0x8b56] = "\x04\x67\x5e", [0x8b57] = "\x07\x55\x67", + [0x8b58] = "\x07\x55\x61", [0x8b59] = "\x07\x55\x5c", + [0x8b5a] = "\x04\x67\x60", [0x8b5b] = "\x04\x67\x5d", + [0x8b5c] = "\x07\x55\x60", [0x8b5d] = "\x07\x55\x63", + [0x8b5e] = "\x07\x55\x69", [0x8b5f] = "\x07\x55\x5e", + [0x8b62] = "\x0f\x68\x5e", [0x8b67] = "\x0f\x68\x5f", + [0x8b68] = "\x0f\x68\x60", [0x8b69] = "\x0f\x68\x61", + [0x8b6a] = "\x0f\x68\x62", [0x8b6b] = "\x0f\x68\x63", + [0x8b6d] = "\x0f\x68\x64", [0x8b6e] = "\x0f\x68\x65", + [0x8b6f] = "\x0f\x68\x66", [0x8b70] = "\x0f\x68\x67", + [0x8b71] = "\x0f\x68\x68", [0x8b72] = "\x0f\x68\x69", + [0x8b73] = "\x0f\x68\x6b", [0x8b74] = "\x0f\x68\x6c", + [0x8b75] = "\x0f\x68\x6d", [0x8b76] = "\x0f\x68\x6e", + [0x8b77] = "\x0f\x68\x6f", [0x8b7c] = "\x07\x55\x5f", + [0x8b7e] = "\x07\x55\x64", [0x8b80] = "\x07\x55\x65", + [0x8b83] = "\x07\x55\x66", [0x8b84] = "\x07\x55\x5d", + [0x8b8f] = "\x0f\x68\x6a", [0x8b92] = "\x05\x74\x57", + [0x8b93] = "\x07\x59\x6b", [0x8b94] = "\x07\x59\x6a", + [0x8b95] = "\x07\x5d\x30", [0x8b97] = "\x07\x59\x66", + [0x8b9a] = "\x07\x59\x64", [0x8b9b] = "\x0f\x69\x7e", + [0x8b9e] = "\x0f\x6a\x21", [0x8b9f] = "\x0f\x6a\x22", + [0x8ba0] = "\x0f\x6a\x23", [0x8ba1] = "\x0f\x6a\x24", + [0x8ba2] = "\x0f\x6a\x25", [0x8ba3] = "\x0f\x6a\x26", + [0x8ba4] = "\x0f\x6a\x27", [0x8ba5] = "\x0f\x6a\x28", + [0x8ba6] = "\x0f\x6a\x29", [0x8ba7] = "\x0f\x6a\x2a", + [0x8ba8] = "\x0f\x6a\x2b", [0x8bab] = "\x07\x59\x63", + [0x8baf] = "\x07\x59\x65", [0x8bb7] = "\x05\x74\x56", + [0x8bb8] = "\x05\x76\x5e", [0x8bb9] = "\x04\x6b\x28", + [0x8bbb] = "\x05\x76\x5c", [0x8bbc] = "\x0f\x6b\x2f", + [0x8bbd] = "\x07\x5d\x2f", [0x8bbe] = "\x07\x5d\x2d", + [0x8bbf] = "\x07\x59\x69", [0x8bc4] = "\x07\x5d\x2c", + [0x8bc6] = "\x0f\x6a\x7c", [0x8bc7] = "\x0f\x6a\x7d", + [0x8bc8] = "\x0f\x6b\x23", [0x8bc9] = "\x0f\x6b\x24", + [0x8bca] = "\x0f\x6b\x25", [0x8bcb] = "\x0f\x6b\x26", + [0x8bcc] = "\x0f\x6b\x29", [0x8bcd] = "\x0f\x6b\x2a", + [0x8bce] = "\x0f\x6b\x2b", [0x8bcf] = "\x0f\x6b\x2c", + [0x8bd0] = "\x0f\x6b\x2d", [0x8bd1] = "\x0f\x6b\x2e", + [0x8bd2] = "\x07\x5d\x2e", [0x8bd4] = "\x07\x5d\x31", + [0x8bd7] = "\x0f\x6b\x21", [0x8bd9] = "\x0f\x6a\x7e", + [0x8bda] = "\x0f\x6b\x27", [0x8bde] = "\x05\x78\x40", + [0x8bdf] = "\x07\x5f\x70", [0x8be0] = "\x07\x5f\x71", + [0x8be1] = "\x07\x5f\x72", [0x8be2] = "\x07\x5f\x6f", + [0x8be3] = "\x07\x5f\x73", [0x8be6] = "\x0f\x6b\x68", + [0x8bed] = "\x0f\x6b\x69", [0x8bee] = "\x0f\x6b\x6a", + [0x8bef] = "\x0f\x6b\x6b", [0x8bf0] = "\x0f\x6b\x6c", + [0x8bfa] = "\x04\x6d\x63", [0x8bfb] = "\x07\x61\x57", + [0x8bfc] = "\x07\x61\x58", [0x8bfe] = "\x0f\x6b\x6d", + [0x8c00] = "\x0f\x6c\x3c", [0x8c01] = "\x0f\x6c\x3d", + [0x8c05] = "\x07\x61\x56", [0x8c09] = "\x07\x62\x72", + [0x8c0a] = "\x07\x62\x6d", [0x8c0b] = "\x07\x62\x6e", + [0x8c0c] = "\x07\x62\x74", [0x8c0d] = "\x07\x62\x70", + [0x8c0e] = "\x07\x62\x6f", [0x8c0f] = "\x05\x7a\x40", + [0x8c10] = "\x07\x62\x73", [0x8c11] = "\x07\x62\x71", + [0x8c12] = "\x07\x62\x75", [0x8c14] = "\x0f\x6c\x52", + [0x8c15] = "\x0f\x6c\x53", [0x8c16] = "\x0f\x6c\x54", + [0x8c17] = "\x0f\x6c\x55", [0x8c18] = "\x0f\x6c\x56", + [0x8c19] = "\x0f\x6c\x57", [0x8c1a] = "\x0f\x6c\x58", + [0x8c1c] = "\x0f\x6c\x40", [0x8c1d] = "\x05\x7a\x41", + [0x8c1e] = "\x05\x7a\x7c", [0x8c1f] = "\x07\x63\x7d", + [0x8c20] = "\x07\x63\x7b", [0x8c22] = "\x0f\x6c\x6f", + [0x8c24] = "\x07\x63\x7c", [0x8c28] = "\x0f\x6d\x23", + [0x8c29] = "\x07\x64\x68", [0x8c2c] = "\x0f\x6d\x21", + [0x8c2e] = "\x07\x64\x67", [0x8c2f] = "\x07\x64\x69", + [0x8c30] = "\x0f\x6d\x22", [0x8c31] = "\x0f\x6c\x3e", + [0x8c32] = "\x07\x65\x48", [0x8c33] = "\x07\x65\x49", + [0x8c36] = "\x0f\x6d\x29", [0x8c38] = "\x05\x7c\x21", + [0x8c3b] = "\x0f\x6d\x35", [0x8c3c] = "\x0f\x6d\x38", + [0x8c3d] = "\x0f\x6d\x39", [0x8c57] = "\x06\x2e\x44", + [0x8c58] = "\x06\x29\x34", [0x8c59] = "\x05\x2b\x60", + [0x8c5a] = "\x05\x36\x3f", [0x8c5b] = "\x06\x45\x7b", + [0x8c5c] = "\x05\x36\x3e", [0x8c5d] = "\x05\x36\x40", + [0x8c5e] = "\x06\x45\x7a", [0x8c5f] = "\x0f\x38\x79", + [0x8c62] = "\x06\x45\x79", [0x8c64] = "\x06\x45\x78", + [0x8c65] = "\x05\x3d\x2a", [0x8c66] = "\x05\x3d\x2b", + [0x8c67] = "\x04\x3b\x68", [0x8c68] = "\x06\x4f\x7a", + [0x8c69] = "\x06\x4f\x7b", [0x8c6b] = "\x0f\x3f\x75", + [0x8c73] = "\x06\x59\x59", [0x8c74] = "\x06\x59\x58", + [0x8c75] = "\x04\x41\x4a", [0x8c76] = "\x06\x59\x56", + [0x8c77] = "\x06\x59\x57", [0x8c79] = "\x0f\x45\x7a", + [0x8c7a] = "\x05\x43\x70", [0x8c7f] = "\x05\x43\x6f", + [0x8c80] = "\x05\x4a\x6a", [0x8c81] = "\x04\x47\x7c", + [0x8c82] = "\x06\x63\x56", [0x8c83] = "\x06\x63\x57", + [0x8c86] = "\x05\x4a\x6b", [0x8c87] = "\x05\x52\x21", + [0x8c88] = "\x05\x52\x23", [0x8c89] = "\x05\x59\x39", + [0x8c8a] = "\x05\x52\x22", [0x8c8b] = "\x05\x52\x24", + [0x8c8c] = "\x05\x52\x25", [0x8c8d] = "\x0f\x58\x65", + [0x8c93] = "\x05\x59\x3b", [0x8c94] = "\x07\x34\x6e", + [0x8c95] = "\x05\x59\x3a", [0x8c97] = "\x07\x3d\x26", + [0x8c98] = "\x07\x34\x6d", [0x8c9a] = "\x07\x34\x70", + [0x8c9b] = "\x07\x34\x6c", [0x8c9d] = "\x07\x3d\x29", + [0x8c9e] = "\x04\x59\x4a", [0x8c9f] = "\x05\x5f\x50", + [0x8ca0] = "\x04\x59\x4b", [0x8ca1] = "\x07\x3d\x2a", + [0x8ca2] = "\x07\x3d\x28", [0x8ca5] = "\x07\x3d\x27", + [0x8ca6] = "\x07\x44\x43", [0x8ca7] = "\x05\x65\x58", + [0x8ca8] = "\x07\x44\x42", [0x8ca9] = "\x05\x65\x57", + [0x8cad] = "\x05\x6a\x38", [0x8cae] = "\x05\x6a\x36", + [0x8caf] = "\x05\x6a\x35", [0x8cb2] = "\x05\x6a\x37", + [0x8cb3] = "\x05\x6e\x39", [0x8cb4] = "\x07\x50\x73", + [0x8cb6] = "\x07\x50\x74", [0x8cb8] = "\x04\x67\x64", + [0x8cba] = "\x07\x55\x6a", [0x8cbb] = "\x07\x59\x6d", + [0x8cbc] = "\x07\x59\x6e", [0x8cbe] = "\x07\x59\x6c", + [0x8cc0] = "\x05\x76\x61", [0x8cc1] = "\x05\x76\x60", + [0x8cc2] = "\x05\x78\x41", [0x8cc3] = "\x07\x5f\x74", + [0x8cc4] = "\x07\x62\x76", [0x8cc5] = "\x07\x64\x6a", + [0x8cc9] = "\x05\x2b\x61", [0x8cca] = "\x05\x30\x6a", + [0x8ccb] = "\x05\x30\x6b", [0x8ccc] = "\x05\x30\x69", + [0x8cce] = "\x0f\x32\x67", [0x8ccf] = "\x06\x3c\x66", + [0x8cd0] = "\x05\x36\x42", [0x8cd1] = "\x05\x36\x41", + [0x8cd3] = "\x0f\x38\x7a", [0x8cd5] = "\x0f\x38\x7b", + [0x8cd6] = "\x06\x45\x7c", [0x8cd7] = "\x05\x3d\x33", + [0x8cd8] = "\x05\x3d\x31", [0x8cd9] = "\x05\x3d\x2f", + [0x8cda] = "\x04\x3b\x6a", [0x8cdb] = "\x05\x3d\x30", + [0x8cdc] = "\x04\x3b\x6c", [0x8cdd] = "\x03\x3f\x6d", + [0x8cde] = "\x05\x3d\x2c", [0x8cdf] = "\x05\x3d\x2d", + [0x8ce0] = "\x05\x3d\x2e", [0x8ce1] = "\x06\x4f\x7e", + [0x8ce2] = "\x06\x50\x21", [0x8ce3] = "\x05\x3d\x32", + [0x8ce5] = "\x06\x4f\x7c", [0x8ce7] = "\x0f\x3f\x78", + [0x8ce8] = "\x0f\x3f\x79", [0x8ce9] = "\x0f\x3f\x7a", + [0x8cea] = "\x0f\x3f\x7b", [0x8ceb] = "\x0f\x3f\x7c", + [0x8cec] = "\x0f\x3f\x7d", [0x8ced] = "\x0f\x40\x21", + [0x8cf0] = "\x06\x4f\x7d", [0x8cf2] = "\x04\x3b\x69", + [0x8cf3] = "\x04\x41\x4c", [0x8cf4] = "\x06\x59\x5e", + [0x8cf5] = "\x04\x41\x52", [0x8cf6] = "\x04\x41\x4d", + [0x8cf7] = "\x04\x41\x4b", [0x8cf8] = "\x0f\x45\x7e", + [0x8cf9] = "\x06\x59\x5d", [0x8cfa] = "\x05\x43\x74", + [0x8cfb] = "\x05\x43\x71", [0x8cfc] = "\x05\x43\x73", + [0x8cfd] = "\x05\x43\x72", [0x8cfe] = "\x06\x59\x5b", + [0x8cff] = "\x04\x41\x51", [0x8d00] = "\x04\x41\x4f", + [0x8d01] = "\x06\x59\x5c", [0x8d02] = "\x06\x59\x5a", + [0x8d04] = "\x0f\x45\x7d", [0x8d05] = "\x0f\x46\x21", + [0x8d0d] = "\x05\x4a\x73", [0x8d0e] = "\x05\x4a\x6f", + [0x8d0f] = "\x05\x4a\x71", [0x8d10] = "\x04\x47\x7e", + [0x8d11] = "\x05\x4a\x6d", [0x8d12] = "\x04\x48\x21", + [0x8d13] = "\x05\x4a\x74", [0x8d14] = "\x06\x63\x5a", + [0x8d15] = "\x05\x4a\x70", [0x8d16] = "\x05\x4a\x75", + [0x8d17] = "\x04\x47\x7d", [0x8d18] = "\x05\x4a\x72", + [0x8d19] = "\x05\x4a\x76", [0x8d1d] = "\x06\x63\x59", + [0x8d1f] = "\x06\x63\x5b", [0x8d20] = "\x06\x63\x5c", + [0x8d25] = "\x05\x4a\x6c", [0x8d28] = "\x07\x2a\x48", + [0x8d29] = "\x05\x52\x2d", [0x8d2a] = "\x05\x52\x28", + [0x8d2b] = "\x07\x2a\x4d", [0x8d2c] = "\x05\x52\x2a", + [0x8d2d] = "\x05\x52\x27", [0x8d2e] = "\x07\x2a\x4e", + [0x8d2f] = "\x04\x4e\x49", [0x8d30] = "\x05\x52\x2c", + [0x8d31] = "\x05\x52\x29", [0x8d33] = "\x07\x2a\x4c", + [0x8d35] = "\x0f\x52\x6e", [0x8d36] = "\x0f\x52\x6f", + [0x8d37] = "\x0f\x52\x71", [0x8d38] = "\x07\x2a\x47", + [0x8d3f] = "\x07\x2a\x49", [0x8d40] = "\x07\x2a\x4a", + [0x8d41] = "\x07\x2a\x4b", [0x8d44] = "\x05\x52\x26", + [0x8d45] = "\x05\x52\x2b", [0x8d46] = "\x05\x52\x2e", + [0x8d47] = "\x0f\x52\x70", [0x8d48] = "\x04\x54\x50", + [0x8d49] = "\x04\x54\x4d", [0x8d4a] = "\x05\x59\x3d", + [0x8d4b] = "\x05\x59\x40", [0x8d4c] = "\x07\x34\x72", + [0x8d4d] = "\x05\x59\x3c", [0x8d4f] = "\x05\x59\x3e", + [0x8d50] = "\x05\x59\x3f", [0x8d51] = "\x07\x34\x75", + [0x8d52] = "\x07\x34\x77", [0x8d53] = "\x07\x34\x79", + [0x8d54] = "\x0f\x58\x66", [0x8d55] = "\x0f\x58\x67", + [0x8d56] = "\x0f\x58\x68", [0x8d57] = "\x07\x34\x74", + [0x8d5c] = "\x07\x34\x78", [0x8d62] = "\x07\x34\x76", + [0x8d64] = "\x04\x54\x4e", [0x8d65] = "\x04\x59\x53", + [0x8d66] = "\x04\x59\x51", [0x8d67] = "\x05\x5f\x54", + [0x8d68] = "\x07\x3d\x2b", [0x8d69] = "\x05\x5f\x51", + [0x8d6a] = "\x05\x5f\x53", [0x8d6b] = "\x05\x5f\x55", + [0x8d6c] = "\x05\x5f\x52", [0x8d6d] = "\x07\x3d\x2d", + [0x8d6e] = "\x04\x59\x50", [0x8d6f] = "\x07\x3d\x2c", + [0x8d70] = "\x04\x59\x4c", [0x8d72] = "\x07\x3d\x2e", + [0x8d73] = "\x0f\x5d\x50", [0x8d75] = "\x07\x3d\x2f", + [0x8d77] = "\x07\x3d\x30", [0x8d79] = "\x07\x3d\x31", + [0x8d80] = "\x05\x65\x5f", [0x8d81] = "\x05\x65\x5e", + [0x8d82] = "\x05\x65\x5a", [0x8d83] = "\x04\x5e\x33", + [0x8d84] = "\x07\x44\x44", [0x8d85] = "\x05\x65\x5b", + [0x8d86] = "\x05\x65\x61", [0x8d87] = "\x05\x65\x60", + [0x8d88] = "\x07\x44\x46", [0x8d89] = "\x05\x65\x5d", + [0x8d8a] = "\x05\x65\x59", [0x8d8b] = "\x05\x65\x5c", + [0x8d8c] = "\x0f\x61\x47", [0x8d8d] = "\x0f\x61\x48", + [0x8d8e] = "\x0f\x61\x49", [0x8d8f] = "\x0f\x61\x4c", + [0x8d92] = "\x0f\x61\x4b", [0x8d96] = "\x07\x44\x45", + [0x8d9a] = "\x07\x44\x47", [0x8d9c] = "\x05\x6a\x39", + [0x8d9d] = "\x07\x4b\x3e", [0x8d9e] = "\x07\x4b\x3f", + [0x8d9f] = "\x04\x61\x6d", [0x8da0] = "\x05\x6a\x3a", + [0x8da1] = "\x07\x4b\x3d", [0x8da2] = "\x04\x61\x6e", + [0x8da3] = "\x0f\x64\x46", [0x8da4] = "\x0f\x64\x47", + [0x8da5] = "\x0f\x64\x48", [0x8da6] = "\x0f\x64\x49", + [0x8da7] = "\x0f\x64\x4a", [0x8dac] = "\x04\x64\x70", + [0x8dad] = "\x05\x6e\x3f", [0x8dae] = "\x05\x6e\x3a", + [0x8daf] = "\x05\x6e\x3d", [0x8db0] = "\x05\x6e\x3c", + [0x8db1] = "\x05\x6e\x3e", [0x8db2] = "\x05\x6e\x40", + [0x8db3] = "\x04\x64\x72", [0x8db4] = "\x07\x50\x78", + [0x8db6] = "\x05\x6a\x3b", [0x8db7] = "\x07\x50\x75", + [0x8db8] = "\x0f\x66\x70", [0x8db9] = "\x0f\x66\x71", + [0x8dbe] = "\x07\x50\x76", [0x8dc1] = "\x05\x6e\x3b", + [0x8dc2] = "\x07\x50\x77", [0x8dc3] = "\x05\x71\x5a", + [0x8dc4] = "\x05\x6e\x41", [0x8dc5] = "\x04\x67\x65", + [0x8dc6] = "\x05\x71\x59", [0x8dc7] = "\x05\x71\x57", + [0x8dc9] = "\x0f\x68\x70", [0x8dca] = "\x0f\x68\x71", + [0x8dcb] = "\x0f\x68\x73", [0x8dcc] = "\x0f\x68\x74", + [0x8dcd] = "\x0f\x68\x75", [0x8dd2] = "\x05\x71\x5c", + [0x8dd3] = "\x05\x71\x58", [0x8dd4] = "\x05\x74\x58", + [0x8dd5] = "\x07\x55\x6b", [0x8dd7] = "\x0f\x6a\x2f", + [0x8dd9] = "\x07\x59\x6f", [0x8ddb] = "\x0f\x6a\x2c", + [0x8ddc] = "\x0f\x6a\x2d", [0x8ddd] = "\x0f\x6a\x2e", + [0x8dde] = "\x0f\x6a\x30", [0x8ddf] = "\x0f\x6a\x31", + [0x8de1] = "\x0f\x6b\x30", [0x8de2] = "\x0f\x6b\x31", + [0x8de3] = "\x0f\x6b\x32", [0x8de4] = "\x07\x5d\x32", + [0x8de6] = "\x05\x78\x42", [0x8de7] = "\x0f\x6b\x6e", + [0x8de8] = "\x0f\x6b\x6f", [0x8dea] = "\x07\x5f\x76", + [0x8deb] = "\x07\x5f\x75", [0x8df0] = "\x05\x79\x54", + [0x8df1] = "\x04\x6d\x29", [0x8df2] = "\x04\x6d\x2a", + [0x8df3] = "\x07\x61\x59", [0x8df7] = "\x07\x62\x77", + [0x8df8] = "\x07\x62\x78", [0x8dfb] = "\x05\x7a\x7d", + [0x8dfc] = "\x0f\x6d\x2a", [0x8e0f] = "\x06\x2e\x45", + [0x8e10] = "\x05\x22\x22", [0x8e11] = "\x05\x21\x7e", + [0x8e12] = "\x04\x22\x23", [0x8e13] = "\x05\x22\x23", + [0x8e14] = "\x04\x22\x22", [0x8e15] = "\x05\x22\x21", + [0x8e16] = "\x05\x23\x2e", [0x8e17] = "\x04\x23\x34", + [0x8e18] = "\x06\x25\x5d", [0x8e1a] = "\x05\x24\x7d", + [0x8e1b] = "\x04\x25\x2c", [0x8e1c] = "\x04\x25\x2d", + [0x8e1d] = "\x05\x24\x7e", [0x8e1e] = "\x05\x24\x7c", + [0x8e20] = "\x0f\x25\x3a", [0x8e21] = "\x0f\x25\x3b", + [0x8e22] = "\x0f\x25\x3c", [0x8e23] = "\x0f\x25\x3d", + [0x8e24] = "\x0f\x25\x3e", [0x8e29] = "\x0f\x25\x3f", + [0x8e2b] = "\x05\x27\x75", [0x8e2c] = "\x06\x2e\x47", + [0x8e2d] = "\x05\x27\x76", [0x8e2e] = "\x05\x27\x78", + [0x8e2f] = "\x05\x27\x79", [0x8e30] = "\x04\x28\x30", + [0x8e31] = "\x05\x27\x77", [0x8e32] = "\x06\x2e\x46", + [0x8e33] = "\x06\x2e\x48", [0x8e35] = "\x0f\x28\x7d", + [0x8e38] = "\x0f\x28\x7e", [0x8e41] = "\x05\x2b\x62", + [0x8e42] = "\x06\x34\x70", [0x8e43] = "\x06\x34\x73", + [0x8e44] = "\x04\x2b\x5c", [0x8e45] = "\x05\x2b\x65", + [0x8e46] = "\x06\x34\x71", [0x8e47] = "\x06\x63\x5d", + [0x8e48] = "\x06\x34\x75", [0x8e49] = "\x06\x34\x76", + [0x8e4a] = "\x06\x34\x77", [0x8e4b] = "\x06\x34\x72", + [0x8e4c] = "\x05\x2b\x63", [0x8e4e] = "\x06\x34\x78", + [0x8e4f] = "\x0f\x2d\x5b", [0x8e50] = "\x0f\x2d\x5c", + [0x8e51] = "\x0f\x2d\x5d", [0x8e53] = "\x06\x34\x74", + [0x8e55] = "\x06\x34\x6f", [0x8e58] = "\x06\x3c\x69", + [0x8e59] = "\x05\x30\x6f", [0x8e5a] = "\x05\x2b\x66", + [0x8e5b] = "\x06\x3c\x68", [0x8e5c] = "\x05\x30\x6c", + [0x8e5d] = "\x05\x30\x6e", [0x8e5e] = "\x06\x3c\x6e", + [0x8e5f] = "\x06\x3c\x6b", [0x8e60] = "\x06\x3c\x6f", + [0x8e61] = "\x05\x30\x6d", [0x8e62] = "\x06\x3c\x6a", + [0x8e63] = "\x06\x3c\x6d", [0x8e67] = "\x06\x3c\x6c", + [0x8e6d] = "\x0f\x32\x68", [0x8e6e] = "\x0f\x32\x69", + [0x8e6f] = "\x0f\x32\x6a", [0x8e70] = "\x0f\x32\x6b", + [0x8e71] = "\x0f\x32\x6c", [0x8e72] = "\x0f\x32\x6d", + [0x8e73] = "\x0f\x32\x6e", [0x8e75] = "\x05\x36\x43", + [0x8e76] = "\x06\x46\x28", [0x8e77] = "\x06\x46\x21", + [0x8e78] = "\x04\x35\x7e", [0x8e79] = "\x04\x36\x22", + [0x8e7a] = "\x04\x36\x21", [0x8e7b] = "\x05\x36\x44", + [0x8e7c] = "\x06\x46\x23", [0x8e7d] = "\x06\x46\x24", + [0x8e7e] = "\x06\x46\x2b", [0x8e7f] = "\x06\x46\x2a", + [0x8e80] = "\x06\x63\x5e", [0x8e81] = "\x06\x46\x26", + [0x8e82] = "\x06\x46\x22", [0x8e83] = "\x06\x46\x29", + [0x8e84] = "\x06\x46\x27", [0x8e85] = "\x07\x34\x7b", + [0x8e86] = "\x06\x46\x25", [0x8e8a] = "\x0f\x38\x7c", + [0x8e8b] = "\x0f\x38\x7d", [0x8e8c] = "\x0f\x38\x7e", + [0x8e8d] = "\x0f\x39\x21", [0x8e8e] = "\x0f\x39\x22", + [0x8e8f] = "\x0f\x39\x23", [0x8e90] = "\x0f\x39\x24", + [0x8e91] = "\x0f\x39\x25", [0x8e92] = "\x0f\x39\x26", + [0x8e93] = "\x0f\x39\x27", [0x8e9f] = "\x05\x3d\x38", + [0x8ea0] = "\x05\x3d\x3d", [0x8ea1] = "\x05\x3d\x39", + [0x8ea2] = "\x05\x3d\x3a", [0x8ea3] = "\x05\x3d\x3c", + [0x8ea4] = "\x06\x50\x25", [0x8ea5] = "\x06\x50\x23", + [0x8ea6] = "\x05\x3d\x34", [0x8ea7] = "\x05\x3d\x35", + [0x8ea8] = "\x05\x3d\x37", [0x8ea9] = "\x06\x50\x24", + [0x8eaa] = "\x06\x50\x29", [0x8eab] = "\x07\x3d\x34", + [0x8eac] = "\x06\x50\x27", [0x8ead] = "\x05\x3d\x3b", + [0x8eae] = "\x06\x50\x28", [0x8eaf] = "\x06\x50\x26", + [0x8eb1] = "\x0f\x40\x22", [0x8eb4] = "\x0f\x40\x23", + [0x8eb5] = "\x07\x3d\x32", [0x8ebf] = "\x05\x3d\x36", + [0x8ec0] = "\x06\x59\x6a", [0x8ec1] = "\x05\x43\x7b", + [0x8ec2] = "\x05\x43\x78", [0x8ec3] = "\x06\x59\x62", + [0x8ec4] = "\x06\x59\x69", [0x8ec5] = "\x06\x59\x67", + [0x8ec6] = "\x05\x43\x7c", [0x8ec7] = "\x05\x43\x79", + [0x8ec8] = "\x05\x43\x77", [0x8ec9] = "\x06\x63\x5f", + [0x8eca] = "\x06\x59\x63", [0x8ecb] = "\x06\x59\x65", + [0x8ecc] = "\x05\x43\x7d", [0x8ecd] = "\x05\x43\x7a", + [0x8ece] = "\x06\x59\x66", [0x8ecf] = "\x07\x44\x49", + [0x8ed0] = "\x06\x59\x64", [0x8ed1] = "\x07\x44\x48", + [0x8ed2] = "\x05\x43\x76", [0x8ed3] = "\x06\x59\x5f", + [0x8ed4] = "\x06\x59\x6b", [0x8ed5] = "\x06\x59\x60", + [0x8ed6] = "\x05\x43\x75", [0x8ed8] = "\x06\x59\x61", + [0x8eda] = "\x0f\x46\x22", [0x8edb] = "\x0f\x46\x23", + [0x8edc] = "\x0f\x46\x24", [0x8edd] = "\x0f\x46\x25", + [0x8ede] = "\x0f\x46\x26", [0x8edf] = "\x0f\x46\x27", + [0x8ee0] = "\x0f\x46\x28", [0x8ee1] = "\x0f\x46\x29", + [0x8ee6] = "\x06\x59\x68", [0x8ee8] = "\x06\x59\x6c", + [0x8eea] = "\x07\x3d\x33", [0x8eef] = "\x06\x63\x64", + [0x8ef0] = "\x06\x63\x62", [0x8ef1] = "\x06\x63\x66", + [0x8ef2] = "\x04\x48\x27", [0x8ef3] = "\x04\x48\x26", + [0x8ef4] = "\x05\x52\x2f", [0x8ef5] = "\x04\x48\x28", + [0x8ef6] = "\x04\x48\x29", [0x8ef7] = "\x05\x4a\x78", + [0x8ef8] = "\x06\x63\x63", [0x8ef9] = "\x06\x63\x60", + [0x8efa] = "\x04\x48\x25", [0x8efb] = "\x05\x4a\x79", + [0x8efc] = "\x05\x4a\x7a", [0x8efd] = "\x06\x63\x65", + [0x8efe] = "\x06\x63\x67", [0x8eff] = "\x07\x4b\x41", + [0x8f00] = "\x0f\x4d\x2e", [0x8f01] = "\x0f\x4d\x2f", + [0x8f02] = "\x0f\x4d\x30", [0x8f03] = "\x0f\x4d\x31", + [0x8f04] = "\x0f\x4d\x32", [0x8f05] = "\x0f\x4d\x33", + [0x8f06] = "\x06\x63\x61", [0x8f08] = "\x05\x4a\x77", + [0x8f0a] = "\x05\x52\x36", [0x8f0b] = "\x05\x52\x34", + [0x8f0c] = "\x05\x52\x35", [0x8f0d] = "\x07\x2a\x55", + [0x8f0e] = "\x05\x52\x38", [0x8f0f] = "\x05\x52\x32", + [0x8f10] = "\x05\x52\x31", [0x8f11] = "\x07\x2a\x4f", + [0x8f12] = "\x05\x52\x33", [0x8f13] = "\x05\x52\x37", + [0x8f14] = "\x05\x52\x30", [0x8f15] = "\x07\x50\x7a", + [0x8f16] = "\x07\x2a\x53", [0x8f17] = "\x07\x2a\x51", + [0x8f18] = "\x07\x2a\x50", [0x8f19] = "\x07\x2a\x52", + [0x8f1b] = "\x0f\x52\x72", [0x8f1c] = "\x0f\x52\x73", + [0x8f1d] = "\x0f\x52\x74", [0x8f1e] = "\x0f\x52\x75", + [0x8f1f] = "\x0f\x52\x76", [0x8f20] = "\x0f\x52\x77", + [0x8f26] = "\x07\x2a\x56", [0x8f2a] = "\x05\x59\x41", + [0x8f2b] = "\x05\x59\x42", [0x8f2c] = "\x04\x54\x54", + [0x8f2d] = "\x07\x34\x7c", [0x8f2e] = "\x05\x59\x44", + [0x8f2f] = "\x05\x59\x43", [0x8f30] = "\x07\x34\x7e", + [0x8f31] = "\x07\x50\x79", [0x8f33] = "\x0f\x58\x69", + [0x8f34] = "\x0f\x58\x6a", [0x8f35] = "\x0f\x58\x6b", + [0x8f36] = "\x0f\x58\x6c", [0x8f3d] = "\x05\x6a\x3c", + [0x8f3e] = "\x07\x34\x7d", [0x8f3f] = "\x05\x5f\x56", + [0x8f40] = "\x05\x5f\x57", [0x8f41] = "\x07\x3d\x36", + [0x8f42] = "\x07\x3d\x37", [0x8f43] = "\x07\x3d\x35", + [0x8f44] = "\x05\x74\x59", [0x8f45] = "\x0f\x5d\x51", + [0x8f46] = "\x0f\x5d\x52", [0x8f47] = "\x0f\x5d\x53", + [0x8f4c] = "\x0f\x5d\x54", [0x8f4d] = "\x05\x65\x62", + [0x8f4e] = "\x07\x44\x4c", [0x8f4f] = "\x04\x5e\x34", + [0x8f50] = "\x07\x44\x4a", [0x8f51] = "\x07\x44\x4b", + [0x8f52] = "\x0f\x61\x4d", [0x8f53] = "\x0f\x61\x4e", + [0x8f54] = "\x0f\x61\x4f", [0x8f55] = "\x0f\x61\x50", + [0x8f56] = "\x05\x6a\x3d", [0x8f57] = "\x07\x4b\x43", + [0x8f58] = "\x07\x55\x6c", [0x8f59] = "\x07\x4b\x45", + [0x8f5c] = "\x0f\x64\x4c", [0x8f5d] = "\x05\x78\x43", + [0x8f5f] = "\x07\x4b\x42", [0x8f60] = "\x07\x4b\x44", + [0x8f61] = "\x07\x5f\x77", [0x8f62] = "\x0f\x66\x72", + [0x8f63] = "\x0f\x66\x73", [0x8f65] = "\x07\x51\x72", + [0x8f66] = "\x05\x71\x5d", [0x8f67] = "\x07\x55\x6e", + [0x8f68] = "\x07\x55\x6d", [0x8f6a] = "\x07\x62\x79", + [0x8f6b] = "\x07\x62\x7a", [0x8f6c] = "\x07\x59\x70", + [0x8f6e] = "\x07\x5d\x49", [0x8f71] = "\x07\x5f\x78", + [0x8f72] = "\x05\x7a\x7e", [0x8f73] = "\x05\x7b\x21", + [0x8f74] = "\x07\x66\x37", [0x8f75] = "\x07\x66\x28", + [0x8f76] = "\x06\x59\x6d", [0x8f78] = "\x04\x4e\x4b", + [0x8f79] = "\x07\x2a\x57", [0x8f7a] = "\x0f\x52\x79", + [0x8f7b] = "\x0f\x52\x78", [0x8f7c] = "\x05\x59\x45", + [0x8f7d] = "\x07\x35\x21", [0x8f7f] = "\x04\x59\x56", + [0x8f80] = "\x07\x44\x4d", [0x8f81] = "\x07\x44\x4e", + [0x8f82] = "\x05\x6a\x3e", [0x8f83] = "\x07\x50\x7b", + [0x8f85] = "\x06\x3c\x70", [0x8f86] = "\x06\x3c\x71", + [0x8f87] = "\x06\x3c\x72", [0x8f88] = "\x06\x46\x2c", + [0x8f89] = "\x05\x36\x45", [0x8f8a] = "\x04\x36\x23", + [0x8f8b] = "\x06\x46\x2e", [0x8f8d] = "\x06\x46\x2d", + [0x8f8f] = "\x06\x46\x30", [0x8f91] = "\x06\x46\x2f", + [0x8f92] = "\x04\x3b\x70", [0x8f93] = "\x06\x50\x2c", + [0x8f94] = "\x04\x3b\x6e", [0x8f95] = "\x06\x50\x2a", + [0x8f96] = "\x06\x59\x73", [0x8f97] = "\x06\x50\x30", + [0x8f98] = "\x06\x50\x2e", [0x8f99] = "\x06\x50\x2b", + [0x8f9a] = "\x04\x3b\x71", [0x8f9b] = "\x04\x3b\x6f", + [0x8f9c] = "\x06\x50\x2f", [0x8f9d] = "\x06\x50\x2d", + [0x8fa0] = "\x06\x59\x7b", [0x8fa1] = "\x05\x43\x7e", + [0x8fa2] = "\x06\x59\x6e", [0x8fa3] = "\x06\x59\x71", + [0x8fa4] = "\x06\x59\x77", [0x8fa5] = "\x06\x59\x75", + [0x8fa6] = "\x06\x59\x7a", [0x8fa7] = "\x06\x59\x72", + [0x8fa8] = "\x06\x59\x70", [0x8fa9] = "\x06\x59\x74", + [0x8faa] = "\x06\x59\x79", [0x8fab] = "\x06\x59\x78", + [0x8fae] = "\x06\x59\x6f", [0x8faf] = "\x06\x59\x76", + [0x8fb2] = "\x06\x63\x74", [0x8fb3] = "\x06\x63\x72", + [0x8fb4] = "\x05\x4a\x7b", [0x8fb5] = "\x06\x63\x6b", + [0x8fb6] = "\x06\x63\x6c", [0x8fb7] = "\x06\x63\x76", + [0x8fb8] = "\x06\x63\x68", [0x8fb9] = "\x06\x63\x77", + [0x8fba] = "\x06\x63\x70", [0x8fbb] = "\x04\x48\x2a", + [0x8fbc] = "\x06\x63\x75", [0x8fbd] = "\x06\x63\x6f", + [0x8fbe] = "\x05\x4a\x7c", [0x8fbf] = "\x06\x63\x71", + [0x8fc0] = "\x06\x63\x69", [0x8fc1] = "\x05\x4a\x7d", + [0x8fc2] = "\x04\x48\x2b", [0x8fc3] = "\x06\x63\x6a", + [0x8fc4] = "\x0f\x4d\x34", [0x8fc5] = "\x0f\x4d\x35", + [0x8fc6] = "\x06\x63\x73", [0x8fc8] = "\x06\x63\x78", + [0x8fc9] = "\x06\x63\x6d", [0x8fcb] = "\x07\x2a\x5d", + [0x8fcc] = "\x07\x2a\x5b", [0x8fcd] = "\x07\x2a\x64", + [0x8fce] = "\x07\x2a\x5f", [0x8fcf] = "\x07\x2a\x5c", + [0x8fd0] = "\x05\x52\x3a", [0x8fd1] = "\x07\x2a\x5e", + [0x8fd2] = "\x07\x2a\x66", [0x8fd3] = "\x07\x2a\x62", + [0x8fd4] = "\x07\x2a\x60", [0x8fd5] = "\x07\x2a\x61", + [0x8fd6] = "\x07\x2a\x63", [0x8fd7] = "\x07\x2a\x5a", + [0x8fd8] = "\x07\x2a\x58", [0x8fd9] = "\x05\x52\x39", + [0x8fda] = "\x07\x2a\x65", [0x8fde] = "\x07\x2a\x67", + [0x8fe0] = "\x04\x59\x57", [0x8fe1] = "\x04\x54\x55", + [0x8fe2] = "\x05\x59\x47", [0x8fe3] = "\x07\x35\x29", + [0x8fe4] = "\x07\x35\x24", [0x8fe5] = "\x07\x35\x2f", + [0x8fe6] = "\x07\x35\x22", [0x8fe7] = "\x07\x35\x2d", + [0x8fe8] = "\x07\x35\x28", [0x8fe9] = "\x07\x35\x25", + [0x8fea] = "\x07\x35\x2c", [0x8feb] = "\x07\x35\x2a", + [0x8fec] = "\x07\x35\x26", [0x8fed] = "\x05\x59\x46", + [0x8fee] = "\x07\x35\x30", [0x8fef] = "\x04\x54\x56", + [0x8ff0] = "\x07\x35\x2b", [0x8ff1] = "\x07\x35\x33", + [0x8ff2] = "\x07\x35\x27", [0x8ff3] = "\x07\x2a\x59", + [0x8ff4] = "\x07\x35\x34", [0x8ff5] = "\x07\x35\x31", + [0x8ff6] = "\x07\x35\x23", [0x8ff9] = "\x07\x35\x32", + [0x8ffa] = "\x0f\x58\x6d", [0x8ffd] = "\x07\x35\x2e", + [0x8ffe] = "\x0f\x52\x7a", [0x8fff] = "\x04\x59\x59", + [0x9000] = "\x07\x3d\x3d", [0x9001] = "\x07\x3d\x3b", + [0x9002] = "\x07\x3d\x45", [0x9003] = "\x07\x3d\x3c", + [0x9004] = "\x07\x3d\x3e", [0x9005] = "\x07\x3d\x49", + [0x9006] = "\x07\x3d\x3a", [0x9007] = "\x07\x3d\x42", + [0x9008] = "\x07\x3d\x39", [0x9009] = "\x07\x3d\x38", + [0x900a] = "\x07\x3d\x3f", [0x900b] = "\x05\x5f\x58", + [0x900c] = "\x07\x3d\x47", [0x900d] = "\x07\x3d\x41", + [0x900e] = "\x07\x3d\x40", [0x900f] = "\x07\x3d\x43", + [0x9010] = "\x07\x3d\x48", [0x9011] = "\x07\x35\x36", + [0x9012] = "\x0f\x5d\x55", [0x9013] = "\x0f\x5d\x57", + [0x9014] = "\x07\x3d\x44", [0x9015] = "\x07\x3d\x46", + [0x9017] = "\x07\x44\x50", [0x9018] = "\x07\x44\x56", + [0x9019] = "\x07\x44\x52", [0x901a] = "\x07\x44\x53", + [0x901b] = "\x07\x44\x4f", [0x901c] = "\x05\x65\x63", + [0x901d] = "\x07\x44\x57", [0x901e] = "\x07\x44\x55", + [0x901f] = "\x05\x65\x64", [0x9020] = "\x07\x44\x51", + [0x9021] = "\x07\x44\x54", [0x9024] = "\x07\x4b\x4a", + [0x9025] = "\x07\x4b\x47", [0x9026] = "\x07\x4b\x4b", + [0x9027] = "\x07\x4b\x48", [0x9028] = "\x05\x6a\x3f", + [0x9029] = "\x07\x4b\x4e", [0x902a] = "\x04\x61\x6f", + [0x902b] = "\x05\x6a\x40", [0x902c] = "\x07\x4b\x46", + [0x902d] = "\x07\x4b\x4c", [0x902e] = "\x07\x4b\x4d", + [0x902f] = "\x04\x61\x70", [0x9030] = "\x07\x4b\x49", + [0x9031] = "\x07\x4b\x4f", [0x9034] = "\x07\x51\x23", + [0x9035] = "\x07\x51\x27", [0x9036] = "\x07\x50\x7d", + [0x9037] = "\x07\x51\x2a", [0x9038] = "\x07\x51\x24", + [0x9039] = "\x07\x51\x2b", [0x903a] = "\x07\x51\x28", + [0x903b] = "\x07\x50\x7c", [0x903c] = "\x05\x6e\x42", + [0x903d] = "\x07\x51\x25", [0x903e] = "\x07\x51\x26", + [0x903f] = "\x05\x6e\x43", [0x9040] = "\x07\x51\x22", + [0x9041] = "\x0f\x66\x74", [0x9042] = "\x07\x50\x7e", + [0x9045] = "\x07\x51\x2c", [0x9046] = "\x07\x51\x29", + [0x9047] = "\x07\x55\x74", [0x9048] = "\x04\x67\x68", + [0x9049] = "\x07\x55\x72", [0x904a] = "\x07\x55\x6f", + [0x904b] = "\x07\x55\x76", [0x904c] = "\x07\x55\x70", + [0x904d] = "\x07\x55\x75", [0x904e] = "\x07\x55\x73", + [0x904f] = "\x07\x55\x77", [0x9050] = "\x07\x51\x21", + [0x9051] = "\x0f\x68\x76", [0x9052] = "\x07\x55\x71", + [0x9053] = "\x07\x59\x71", [0x9054] = "\x07\x59\x72", + [0x9055] = "\x04\x69\x57", [0x9056] = "\x07\x59\x75", + [0x9057] = "\x07\x59\x76", [0x9058] = "\x07\x59\x74", + [0x9059] = "\x0f\x6a\x32", [0x905b] = "\x07\x59\x73", + [0x905c] = "\x07\x5d\x38", [0x905d] = "\x07\x5d\x39", + [0x905e] = "\x07\x5d\x3a", [0x905f] = "\x04\x6b\x2b", + [0x9060] = "\x07\x5d\x37", [0x9061] = "\x07\x5d\x33", + [0x9062] = "\x07\x5d\x34", [0x9063] = "\x07\x5d\x35", + [0x9064] = "\x07\x5d\x36", [0x9067] = "\x07\x5f\x7c", + [0x9068] = "\x07\x5f\x7a", [0x9069] = "\x07\x5f\x7b", + [0x906b] = "\x07\x5f\x79", [0x906c] = "\x07\x61\x5a", + [0x906d] = "\x0f\x6c\x41", [0x9070] = "\x07\x63\x7e", + [0x9072] = "\x07\x64\x6b", [0x9075] = "\x07\x66\x40", + [0x9076] = "\x0f\x2d\x5e", [0x9077] = "\x05\x30\x70", + [0x9078] = "\x0f\x32\x70", [0x9079] = "\x06\x46\x32", + [0x907a] = "\x06\x46\x33", [0x907b] = "\x04\x36\x25", + [0x907c] = "\x06\x46\x31", [0x907d] = "\x0f\x39\x28", + [0x907e] = "\x0f\x39\x29", [0x9082] = "\x05\x3d\x40", + [0x9083] = "\x05\x3d\x3e", [0x9084] = "\x05\x3d\x41", + [0x9085] = "\x05\x3d\x3f", [0x9086] = "\x04\x3b\x73", + [0x9087] = "\x06\x50\x33", [0x9088] = "\x04\x3b\x72", + [0x9089] = "\x06\x50\x32", [0x908a] = "\x0f\x40\x25", + [0x908c] = "\x0f\x40\x27", [0x908d] = "\x0f\x40\x26", + [0x9092] = "\x04\x41\x58", [0x9093] = "\x05\x44\x25", + [0x9094] = "\x05\x44\x22", [0x9095] = "\x05\x44\x21", + [0x9096] = "\x05\x44\x24", [0x9097] = "\x05\x44\x23", + [0x9098] = "\x06\x59\x7c", [0x909a] = "\x0f\x46\x2b", + [0x909b] = "\x0f\x46\x2c", [0x909c] = "\x0f\x46\x2d", + [0x90a1] = "\x05\x44\x26", [0x90a2] = "\x05\x4b\x22", + [0x90a3] = "\x04\x48\x30", [0x90a4] = "\x05\x4b\x23", + [0x90a5] = "\x05\x4b\x21", [0x90a6] = "\x05\x4a\x7e", + [0x90a7] = "\x04\x48\x2c", [0x90a8] = "\x04\x48\x2f", + [0x90a9] = "\x06\x63\x7d", [0x90aa] = "\x04\x48\x32", + [0x90ac] = "\x06\x63\x7c", [0x90ad] = "\x06\x63\x7e", + [0x90ae] = "\x0f\x4d\x37", [0x90b2] = "\x0f\x4d\x38", + [0x90b3] = "\x06\x63\x7a", [0x90b5] = "\x06\x63\x79", + [0x90b7] = "\x07\x2a\x6a", [0x90b8] = "\x07\x2a\x69", + [0x90b9] = "\x05\x52\x45", [0x90ba] = "\x05\x52\x40", + [0x90bb] = "\x05\x52\x41", [0x90bc] = "\x05\x52\x3f", + [0x90bd] = "\x05\x52\x3e", [0x90be] = "\x05\x52\x43", + [0x90bf] = "\x05\x52\x3d", [0x90c0] = "\x04\x54\x57", + [0x90c1] = "\x05\x52\x3c", [0x90c2] = "\x07\x2a\x6b", + [0x90c3] = "\x07\x2a\x6c", [0x90c5] = "\x0f\x46\x2a", + [0x90c6] = "\x0f\x52\x7b", [0x90c7] = "\x0f\x52\x7c", + [0x90c8] = "\x0f\x52\x7d", [0x90c9] = "\x0f\x52\x7e", + [0x90ca] = "\x0f\x53\x21", [0x90cc] = "\x07\x2a\x68", + [0x90d0] = "\x05\x52\x44", [0x90d1] = "\x05\x52\x42", + [0x90d2] = "\x05\x5f\x59", [0x90d3] = "\x07\x35\x3b", + [0x90d4] = "\x04\x54\x5b", [0x90d5] = "\x05\x59\x4e", + [0x90d6] = "\x05\x59\x4b", [0x90d7] = "\x04\x54\x5a", + [0x90d8] = "\x07\x35\x38", [0x90d9] = "\x05\x59\x4d", + [0x90da] = "\x05\x59\x4a", [0x90db] = "\x07\x35\x3a", + [0x90dc] = "\x05\x59\x49", [0x90dd] = "\x07\x35\x39", + [0x90de] = "\x07\x35\x37", [0x90e0] = "\x05\x59\x48", + [0x90e1] = "\x07\x35\x3c", [0x90e3] = "\x0f\x58\x6e", + [0x90e6] = "\x0f\x58\x6f", [0x90e7] = "\x0f\x58\x71", + [0x90e8] = "\x0f\x58\x72", [0x90e9] = "\x0f\x58\x73", + [0x90ea] = "\x0f\x58\x74", [0x90eb] = "\x0f\x58\x75", + [0x90ed] = "\x0f\x58\x70", [0x90ef] = "\x0f\x55\x64", + [0x90f4] = "\x05\x59\x4c", [0x90f5] = "\x04\x59\x5c", + [0x90f6] = "\x04\x59\x5a", [0x90f7] = "\x04\x59\x5b", + [0x90f8] = "\x05\x5f\x5a", [0x90f9] = "\x04\x59\x61", + [0x90fa] = "\x05\x5f\x5c", [0x90fc] = "\x04\x59\x5e", + [0x90fd] = "\x07\x3d\x4a", [0x90fe] = "\x05\x65\x68", + [0x90ff] = "\x07\x3d\x4b", [0x9100] = "\x07\x3d\x4d", + [0x9101] = "\x05\x5f\x5b", [0x9103] = "\x0f\x5d\x59", + [0x9104] = "\x07\x3d\x4c", [0x9109] = "\x07\x3d\x4e", + [0x910d] = "\x0f\x5d\x5a", [0x9116] = "\x05\x5f\x5d", + [0x9117] = "\x05\x65\x6c", [0x9118] = "\x05\x65\x6f", + [0x9119] = "\x07\x44\x5f", [0x911a] = "\x07\x44\x63", + [0x911b] = "\x05\x65\x69", [0x911c] = "\x07\x44\x5e", + [0x911d] = "\x05\x65\x66", [0x911e] = "\x07\x44\x65", + [0x911f] = "\x07\x44\x62", [0x9120] = "\x04\x5e\x37", + [0x9121] = "\x05\x65\x65", [0x9122] = "\x05\x65\x67", + [0x9123] = "\x07\x44\x61", [0x9124] = "\x07\x44\x5a", + [0x9125] = "\x07\x44\x5d", [0x9126] = "\x05\x65\x6e", + [0x9127] = "\x07\x44\x5b", [0x9129] = "\x0f\x61\x51", + [0x912b] = "\x07\x44\x64", [0x912d] = "\x07\x44\x59", + [0x912e] = "\x07\x44\x5c", [0x9137] = "\x05\x65\x6b", + [0x9138] = "\x05\x65\x6d", [0x9139] = "\x0f\x5d\x58", + [0x913a] = "\x05\x65\x6a", [0x913b] = "\x05\x6a\x47", + [0x913c] = "\x05\x6a\x41", [0x913d] = "\x05\x6a\x45", + [0x913e] = "\x05\x6a\x42", [0x913f] = "\x05\x6a\x43", + [0x9140] = "\x04\x61\x72", [0x9141] = "\x05\x6a\x46", + [0x9142] = "\x05\x6a\x44", [0x9143] = "\x05\x6a\x49", + [0x9144] = "\x04\x61\x71", [0x9145] = "\x07\x4b\x50", + [0x9146] = "\x07\x4b\x55", [0x9147] = "\x07\x4b\x51", + [0x9149] = "\x05\x6a\x48", [0x914a] = "\x07\x4b\x53", + [0x914b] = "\x0f\x64\x4e", [0x914e] = "\x07\x4b\x57", + [0x914f] = "\x07\x4b\x56", [0x9150] = "\x07\x4b\x54", + [0x9152] = "\x07\x4b\x52", [0x9153] = "\x07\x4b\x58", + [0x915d] = "\x07\x51\x2e", [0x915e] = "\x04\x64\x74", + [0x915f] = "\x07\x51\x36", [0x9160] = "\x04\x64\x76", + [0x9161] = "\x05\x6e\x44", [0x9162] = "\x04\x67\x6d", + [0x9163] = "\x04\x64\x78", [0x9164] = "\x07\x51\x34", + [0x9165] = "\x07\x51\x33", [0x9166] = "\x05\x6e\x45", + [0x9167] = "\x04\x64\x7a", [0x9168] = "\x04\x64\x77", + [0x9169] = "\x04\x64\x79", [0x916a] = "\x07\x51\x2f", + [0x916b] = "\x07\x51\x31", [0x916c] = "\x07\x51\x32", + [0x916d] = "\x0f\x66\x75", [0x9171] = "\x07\x51\x35", + [0x9172] = "\x07\x51\x37", [0x9176] = "\x07\x51\x30", + [0x9177] = "\x07\x51\x2d", [0x917c] = "\x04\x67\x6a", + [0x917d] = "\x04\x67\x69", [0x917e] = "\x07\x55\x78", + [0x917f] = "\x05\x71\x5e", [0x9180] = "\x05\x71\x5f", + [0x9181] = "\x04\x67\x6b", [0x9182] = "\x04\x67\x6c", + [0x9183] = "\x07\x55\x7a", [0x9184] = "\x05\x71\x60", + [0x9185] = "\x05\x71\x61", [0x9186] = "\x07\x55\x7d", + [0x9187] = "\x07\x55\x79", [0x9188] = "\x07\x55\x7e", + [0x9189] = "\x07\x55\x7b", [0x9191] = "\x05\x74\x5c", + [0x9192] = "\x05\x74\x5f", [0x9193] = "\x04\x69\x59", + [0x9194] = "\x07\x59\x78", [0x9195] = "\x05\x74\x5d", + [0x9196] = "\x07\x59\x79", [0x9197] = "\x07\x59\x7a", + [0x9198] = "\x05\x74\x5a", [0x919a] = "\x05\x74\x5e", + [0x919b] = "\x05\x74\x5b", [0x919f] = "\x07\x59\x77", + [0x91a4] = "\x05\x76\x62", [0x91a5] = "\x07\x5d\x3b", + [0x91a6] = "\x07\x5d\x3c", [0x91a9] = "\x0f\x6b\x33", + [0x91ab] = "\x05\x76\x63", [0x91ad] = "\x05\x78\x44", + [0x91ae] = "\x04\x6c\x32", [0x91af] = "\x04\x6c\x31", + [0x91b0] = "\x07\x5f\x7d", [0x91b1] = "\x07\x5f\x7e", + [0x91b2] = "\x07\x60\x21", [0x91b3] = "\x0f\x6b\x70", + [0x91b5] = "\x04\x6d\x2c", [0x91b6] = "\x05\x79\x56", + [0x91b7] = "\x04\x6d\x2b", [0x91b8] = "\x05\x79\x55", + [0x91ba] = "\x07\x61\x5b", [0x91bd] = "\x05\x79\x57", + [0x91bf] = "\x05\x7a\x44", [0x91c0] = "\x07\x62\x7b", + [0x91c1] = "\x05\x7a\x43", [0x91c2] = "\x07\x62\x7c", + [0x91c3] = "\x0f\x6c\x59", [0x91c4] = "\x07\x63\x23", + [0x91c7] = "\x05\x7a\x42", [0x91c8] = "\x07\x64\x6c", + [0x91c9] = "\x04\x6e\x3e", [0x91ca] = "\x07\x65\x4b", + [0x91cb] = "\x07\x65\x4a", [0x91cc] = "\x07\x65\x4c", + [0x91ce] = "\x05\x7b\x6c", [0x91d1] = "\x07\x66\x2d", + [0x91d2] = "\x07\x66\x4e", [0x91d3] = "\x07\x66\x51", + [0x91d4] = "\x04\x6e\x5c", [0x91d5] = "\x04\x36\x26", + [0x91d7] = "\x06\x50\x34", [0x91d8] = "\x0f\x46\x2e", + [0x91d9] = "\x0f\x46\x2f", [0x91da] = "\x0f\x46\x30", + [0x91db] = "\x06\x59\x7d", [0x91dc] = "\x04\x48\x36", + [0x91dd] = "\x07\x2c\x44", [0x91de] = "\x07\x35\x3d", + [0x91df] = "\x05\x5a\x74", [0x91e0] = "\x07\x44\x66", + [0x91e1] = "\x0f\x64\x4f", [0x91e3] = "\x05\x71\x62", + [0x91e4] = "\x0f\x6b\x71", [0x91e6] = "\x06\x3c\x74", + [0x91e7] = "\x06\x2e\x49", [0x91e8] = "\x06\x3c\x73", + [0x91e9] = "\x04\x36\x27", [0x91ea] = "\x06\x46\x34", + [0x91eb] = "\x04\x36\x29", [0x91ec] = "\x0f\x39\x2d", + [0x91ed] = "\x06\x50\x35", [0x91ee] = "\x05\x3d\x42", + [0x91ef] = "\x04\x3b\x75", [0x91f0] = "\x06\x50\x37", + [0x91f1] = "\x06\x50\x36", [0x91f2] = "\x0f\x40\x28", + [0x91f3] = "\x0f\x40\x29", [0x91f5] = "\x06\x5a\x21", + [0x91f6] = "\x06\x59\x7e", [0x91f7] = "\x0f\x4d\x3b", + [0x91f8] = "\x04\x4e\x4d", [0x91f9] = "\x07\x2a\x6e", + [0x91fa] = "\x07\x2a\x6d", [0x91fc] = "\x07\x35\x3e", + [0x91fe] = "\x07\x51\x38", [0x91ff] = "\x07\x51\x39", + [0x9203] = "\x06\x50\x39", [0x9204] = "\x06\x50\x3a", + [0x9205] = "\x06\x50\x38", [0x9206] = "\x04\x41\x59", + [0x9207] = "\x04\x41\x5b", [0x9208] = "\x05\x44\x28", + [0x9209] = "\x05\x44\x27", [0x920a] = "\x06\x5a\x23", + [0x920c] = "\x06\x5a\x22", [0x920d] = "\x06\x64\x22", + [0x920e] = "\x05\x4b\x25", [0x920f] = "\x04\x48\x39", + [0x9211] = "\x06\x64\x21", [0x9212] = "\x05\x4b\x24", + [0x9213] = "\x0f\x4d\x3c", [0x9216] = "\x06\x64\x23", + [0x9219] = "\x04\x4e\x4e", [0x921a] = "\x05\x52\x46", + [0x921b] = "\x05\x52\x48", [0x921c] = "\x05\x52\x47", + [0x921d] = "\x07\x2a\x70", [0x921f] = "\x07\x2a\x6f", + [0x9220] = "\x0f\x58\x77", [0x9221] = "\x05\x59\x50", + [0x9222] = "\x05\x59\x4f", [0x9223] = "\x05\x59\x54", + [0x9224] = "\x05\x59\x51", [0x9225] = "\x05\x59\x52", + [0x9226] = "\x05\x59\x53", [0x9227] = "\x0f\x58\x76", + [0x9228] = "\x07\x35\x3f", [0x922b] = "\x07\x3d\x4f", + [0x922c] = "\x05\x5f\x5f", [0x922d] = "\x05\x5f\x60", + [0x922e] = "\x05\x5f\x62", [0x922f] = "\x05\x5f\x61", + [0x9230] = "\x0f\x5d\x5b", [0x9231] = "\x07\x3d\x51", + [0x9232] = "\x05\x65\x72", [0x9233] = "\x07\x44\x67", + [0x9234] = "\x05\x65\x70", [0x9235] = "\x05\x65\x71", + [0x9236] = "\x04\x5e\x39", [0x9238] = "\x05\x6a\x4b", + [0x9239] = "\x05\x6a\x4a", [0x923b] = "\x05\x6e\x47", + [0x923c] = "\x05\x6e\x46", [0x923d] = "\x07\x4d\x50", + [0x923e] = "\x07\x51\x3a", [0x9240] = "\x05\x6c\x46", + [0x9241] = "\x05\x71\x64", [0x9242] = "\x07\x56\x22", + [0x9243] = "\x05\x71\x66", [0x9244] = "\x05\x71\x65", + [0x9245] = "\x0f\x68\x79", [0x9247] = "\x07\x56\x21", + [0x9248] = "\x07\x56\x24", [0x9249] = "\x07\x56\x23", + [0x924a] = "\x07\x59\x7b", [0x924b] = "\x07\x59\x7c", + [0x924c] = "\x07\x5d\x3d", [0x924d] = "\x05\x76\x64", + [0x924e] = "\x0f\x6b\x34", [0x9251] = "\x07\x60\x22", + [0x9254] = "\x05\x7a\x45", [0x9256] = "\x07\x64\x21", + [0x9259] = "\x07\x64\x6e", [0x925a] = "\x07\x64\x6d", + [0x925b] = "\x0f\x39\x2e", [0x925d] = "\x05\x3d\x43", + [0x925e] = "\x04\x3b\x78", [0x925f] = "\x06\x50\x3b", + [0x9261] = "\x05\x44\x2c", [0x9262] = "\x05\x44\x2b", + [0x9263] = "\x06\x5a\x26", [0x9264] = "\x06\x5a\x29", + [0x9265] = "\x05\x44\x2a", [0x9266] = "\x06\x5a\x27", + [0x9267] = "\x05\x44\x29", [0x9268] = "\x06\x5a\x25", + [0x9269] = "\x06\x5a\x2b", [0x926a] = "\x06\x5a\x2a", + [0x926b] = "\x04\x41\x5c", [0x926c] = "\x04\x41\x5e", + [0x926e] = "\x0f\x46\x31", [0x9278] = "\x05\x4b\x27", + [0x9279] = "\x04\x48\x3c", [0x927a] = "\x05\x4b\x26", + [0x927b] = "\x06\x64\x27", [0x927c] = "\x06\x64\x25", + [0x927d] = "\x05\x4b\x28", [0x927e] = "\x05\x4b\x29", + [0x927f] = "\x04\x48\x3e", [0x9280] = "\x05\x4b\x2c", + [0x9281] = "\x05\x4b\x2a", [0x9282] = "\x05\x4b\x2d", + [0x9283] = "\x05\x4b\x2b", [0x9284] = "\x06\x64\x29", + [0x9285] = "\x04\x48\x3f", [0x9288] = "\x06\x64\x28", + [0x9289] = "\x06\x64\x24", [0x928b] = "\x06\x64\x26", + [0x9290] = "\x07\x2a\x73", [0x9291] = "\x05\x52\x49", + [0x9292] = "\x07\x2a\x77", [0x9293] = "\x07\x2a\x76", + [0x9294] = "\x04\x4e\x51", [0x9295] = "\x07\x2a\x79", + [0x9296] = "\x05\x52\x4a", [0x9297] = "\x04\x4e\x52", + [0x9298] = "\x07\x2a\x75", [0x9299] = "\x04\x4e\x53", + [0x929a] = "\x05\x52\x4d", [0x929b] = "\x04\x4e\x50", + [0x929c] = "\x05\x52\x4c", [0x929d] = "\x05\x52\x4e", + [0x929e] = "\x07\x2a\x74", [0x929f] = "\x05\x52\x4b", + [0x92a5] = "\x07\x2a\x78", [0x92a6] = "\x07\x2a\x72", + [0x92a9] = "\x07\x35\x44", [0x92aa] = "\x05\x59\x55", + [0x92ab] = "\x05\x59\x58", [0x92ac] = "\x04\x54\x66", + [0x92ad] = "\x04\x54\x5e", [0x92ae] = "\x04\x54\x65", + [0x92af] = "\x05\x59\x56", [0x92b0] = "\x05\x59\x57", + [0x92b2] = "\x07\x35\x43", [0x92b3] = "\x07\x35\x47", + [0x92b7] = "\x07\x35\x40", [0x92b8] = "\x07\x35\x41", + [0x92b9] = "\x07\x35\x45", [0x92bc] = "\x07\x35\x46", + [0x92bf] = "\x07\x3d\x58", [0x92c0] = "\x07\x3d\x5a", + [0x92c1] = "\x05\x5f\x63", [0x92c2] = "\x05\x5f\x69", + [0x92c3] = "\x04\x59\x66", [0x92c4] = "\x05\x5f\x65", + [0x92c5] = "\x07\x3d\x53", [0x92c6] = "\x04\x59\x67", + [0x92c7] = "\x07\x35\x42", [0x92c8] = "\x05\x5f\x6d", + [0x92c9] = "\x07\x3d\x57", [0x92ca] = "\x04\x59\x65", + [0x92cb] = "\x07\x3d\x59", [0x92cc] = "\x05\x5f\x67", + [0x92cd] = "\x05\x5f\x6a", [0x92ce] = "\x07\x3d\x55", + [0x92cf] = "\x05\x5f\x6b", [0x92d0] = "\x07\x3d\x5b", + [0x92d1] = "\x07\x35\x48", [0x92d2] = "\x05\x5f\x68", + [0x92d3] = "\x07\x3d\x54", [0x92d4] = "\x07\x3d\x5c", + [0x92d5] = "\x0f\x5d\x5c", [0x92db] = "\x07\x3d\x52", + [0x92dd] = "\x05\x5f\x6c", [0x92de] = "\x05\x5f\x66", + [0x92df] = "\x04\x5e\x44", [0x92e0] = "\x05\x65\x7c", + [0x92e1] = "\x05\x65\x74", [0x92e2] = "\x04\x5e\x3a", + [0x92e3] = "\x05\x65\x76", [0x92e4] = "\x05\x66\x22", + [0x92e5] = "\x07\x44\x6a", [0x92e6] = "\x07\x44\x68", + [0x92e7] = "\x04\x5e\x3f", [0x92e8] = "\x05\x65\x77", + [0x92e9] = "\x04\x5e\x40", [0x92ea] = "\x07\x44\x6d", + [0x92eb] = "\x07\x44\x70", [0x92ec] = "\x05\x66\x21", + [0x92ed] = "\x07\x44\x6f", [0x92ee] = "\x04\x5e\x3d", + [0x92ef] = "\x05\x66\x23", [0x92f0] = "\x07\x44\x71", + [0x92f1] = "\x07\x44\x72", [0x92f2] = "\x07\x44\x6e", + [0x92f3] = "\x0f\x61\x53", [0x92f4] = "\x0f\x61\x54", + [0x92f5] = "\x05\x5f\x64", [0x92f6] = "\x07\x44\x6c", + [0x92f8] = "\x07\x44\x6b", [0x92f9] = "\x05\x65\x78", + [0x92fa] = "\x05\x66\x24", [0x92fc] = "\x07\x44\x69", + [0x92fd] = "\x05\x65\x75", [0x92fe] = "\x05\x65\x7a", + [0x92ff] = "\x05\x65\x79", [0x9300] = "\x05\x65\x7d", + [0x9303] = "\x04\x61\x7a", [0x9304] = "\x05\x6a\x51", + [0x9305] = "\x05\x6a\x54", [0x9306] = "\x05\x6a\x4f", + [0x9307] = "\x04\x61\x79", [0x9308] = "\x05\x6a\x4d", + [0x9309] = "\x07\x4b\x5a", [0x930a] = "\x05\x6a\x55", + [0x930b] = "\x07\x4b\x63", [0x930c] = "\x05\x6a\x4e", + [0x930d] = "\x04\x61\x78", [0x930e] = "\x07\x4b\x61", + [0x930f] = "\x04\x61\x76", [0x9310] = "\x07\x4b\x5e", + [0x9311] = "\x04\x61\x75", [0x9312] = "\x07\x4b\x62", + [0x9313] = "\x05\x6a\x50", [0x9314] = "\x07\x4b\x60", + [0x9315] = "\x0f\x64\x50", [0x9316] = "\x0f\x64\x52", + [0x9317] = "\x0f\x64\x53", [0x931a] = "\x07\x4b\x5b", + [0x931b] = "\x07\x4b\x5c", [0x931d] = "\x05\x6a\x53", + [0x9320] = "\x05\x6a\x52", [0x9321] = "\x07\x4b\x59", + [0x9322] = "\x05\x6a\x4c", [0x9326] = "\x04\x65\x24", + [0x9327] = "\x05\x6e\x4e", [0x9328] = "\x04\x64\x7d", + [0x9329] = "\x05\x6e\x4f", [0x932a] = "\x05\x6e\x4a", + [0x932b] = "\x07\x51\x3b", [0x932c] = "\x05\x6e\x48", + [0x932d] = "\x07\x51\x3d", [0x932e] = "\x04\x65\x21", + [0x932f] = "\x05\x6e\x4c", [0x9330] = "\x04\x65\x22", + [0x9331] = "\x04\x65\x25", [0x9332] = "\x05\x6e\x4d", + [0x9333] = "\x07\x51\x41", [0x9336] = "\x07\x51\x3c", + [0x9337] = "\x0f\x66\x78", [0x9339] = "\x07\x51\x3e", + [0x933a] = "\x07\x51\x43", [0x933b] = "\x07\x51\x40", + [0x933e] = "\x05\x6e\x4b", [0x933f] = "\x07\x51\x3f", + [0x9340] = "\x05\x6e\x50", [0x9341] = "\x04\x65\x26", + [0x9342] = "\x07\x51\x42", [0x9343] = "\x05\x71\x6d", + [0x9344] = "\x07\x56\x28", [0x9345] = "\x04\x67\x6f", + [0x9346] = "\x07\x56\x2a", [0x9347] = "\x07\x56\x2b", + [0x9349] = "\x05\x71\x6a", [0x934a] = "\x05\x71\x6b", + [0x934b] = "\x05\x71\x6c", [0x934e] = "\x05\x71\x67", + [0x934f] = "\x05\x71\x68", [0x9351] = "\x07\x56\x29", + [0x9352] = "\x0f\x66\x77", [0x9353] = "\x05\x74\x60", + [0x9354] = "\x07\x5a\x26", [0x9355] = "\x07\x59\x7d", + [0x9356] = "\x04\x69\x5d", [0x9357] = "\x05\x74\x61", + [0x9358] = "\x07\x5a\x25", [0x9359] = "\x07\x5a\x23", + [0x935a] = "\x07\x59\x7e", [0x935b] = "\x07\x5a\x24", + [0x935c] = "\x05\x74\x63", [0x935d] = "\x05\x74\x64", + [0x935e] = "\x07\x5a\x21", [0x935f] = "\x07\x5a\x22", + [0x9364] = "\x05\x74\x65", [0x9365] = "\x05\x76\x65", + [0x9366] = "\x05\x76\x68", [0x9367] = "\x05\x76\x66", + [0x9368] = "\x07\x5d\x3e", [0x9369] = "\x05\x76\x69", + [0x936a] = "\x05\x76\x67", [0x936b] = "\x07\x5d\x41", + [0x936e] = "\x07\x5d\x3f", [0x936f] = "\x07\x5d\x42", + [0x9371] = "\x07\x5d\x40", [0x9372] = "\x05\x78\x46", + [0x9373] = "\x05\x79\x58", [0x9374] = "\x07\x60\x23", + [0x9375] = "\x05\x78\x45", [0x9377] = "\x05\x78\x47", + [0x9378] = "\x07\x61\x5e", [0x9379] = "\x07\x61\x5c", + [0x937e] = "\x07\x61\x5d", [0x937f] = "\x05\x7a\x46", + [0x9380] = "\x07\x62\x7e", [0x9381] = "\x07\x63\x22", + [0x9382] = "\x05\x79\x59", [0x9384] = "\x07\x63\x21", + [0x9385] = "\x07\x62\x7d", [0x9387] = "\x05\x7b\x22", + [0x9388] = "\x07\x64\x70", [0x9389] = "\x07\x64\x6f", + [0x938a] = "\x05\x7b\x4c", [0x938b] = "\x07\x65\x69", + [0x938c] = "\x05\x7c\x35", [0x938d] = "\x07\x66\x2e", + [0x938e] = "\x07\x66\x39", [0x938f] = "\x07\x66\x38", + [0x9391] = "\x05\x7c\x4c", [0x9392] = "\x05\x3d\x44", + [0x9393] = "\x04\x41\x60", [0x9394] = "\x04\x41\x62", + [0x9395] = "\x06\x5a\x2c", [0x9397] = "\x05\x44\x2d", + [0x9398] = "\x06\x64\x2b", [0x9399] = "\x05\x4b\x2f", + [0x939a] = "\x05\x4b\x31", [0x939b] = "\x05\x4b\x2e", + [0x939c] = "\x05\x4b\x30", [0x939d] = "\x06\x64\x2a", + [0x939e] = "\x0f\x4d\x3d", [0x93a1] = "\x05\x4b\x32", + [0x93a4] = "\x04\x4e\x55", [0x93a5] = "\x05\x52\x50", + [0x93a6] = "\x04\x4e\x54", [0x93a7] = "\x04\x4e\x56", + [0x93a8] = "\x07\x2a\x7b", [0x93a9] = "\x07\x2a\x7a", + [0x93aa] = "\x07\x2a\x7c", [0x93ab] = "\x07\x2a\x7d", + [0x93ac] = "\x07\x2a\x7e", [0x93ad] = "\x05\x52\x4f", + [0x93ae] = "\x05\x52\x51", [0x93af] = "\x05\x59\x59", + [0x93b0] = "\x07\x35\x49", [0x93b1] = "\x07\x35\x4a", + [0x93b2] = "\x05\x59\x5c", [0x93b3] = "\x05\x59\x5d", + [0x93b5] = "\x05\x59\x5b", [0x93b6] = "\x07\x35\x4b", + [0x93b7] = "\x05\x59\x5a", [0x93b8] = "\x04\x59\x69", + [0x93b9] = "\x07\x3d\x5e", [0x93ba] = "\x05\x5f\x6e", + [0x93bb] = "\x07\x3d\x5f", [0x93bc] = "\x04\x59\x6c", + [0x93bd] = "\x04\x59\x6a", [0x93be] = "\x05\x5f\x6f", + [0x93bf] = "\x05\x5f\x70", [0x93c0] = "\x0f\x5d\x5d", + [0x93c1] = "\x07\x3d\x5d", [0x93c3] = "\x07\x3d\x60", + [0x93c5] = "\x07\x44\x76", [0x93c6] = "\x07\x44\x73", + [0x93c7] = "\x04\x5e\x46", [0x93c8] = "\x07\x44\x74", + [0x93c9] = "\x07\x3d\x61", [0x93ca] = "\x05\x66\x25", + [0x93cb] = "\x07\x44\x78", [0x93ce] = "\x07\x44\x75", + [0x93cf] = "\x07\x4b\x64", [0x93d0] = "\x07\x4b\x66", + [0x93d1] = "\x07\x4b\x69", [0x93d2] = "\x07\x4b\x65", + [0x93d3] = "\x07\x4b\x68", [0x93d4] = "\x07\x4b\x67", + [0x93d5] = "\x07\x51\x44", [0x93d6] = "\x05\x6a\x56", + [0x93d7] = "\x05\x6a\x57", [0x93d8] = "\x07\x51\x45", + [0x93d9] = "\x07\x51\x46", [0x93da] = "\x04\x65\x28", + [0x93db] = "\x0f\x66\x79", [0x93de] = "\x05\x6e\x52", + [0x93df] = "\x05\x6e\x51", [0x93e0] = "\x05\x71\x6e", + [0x93e1] = "\x05\x71\x70", [0x93e2] = "\x05\x71\x72", + [0x93e3] = "\x04\x67\x74", [0x93e4] = "\x07\x56\x2c", + [0x93e5] = "\x05\x71\x6f", [0x93e6] = "\x05\x71\x71", + [0x93e8] = "\x07\x5a\x27", [0x93e9] = "\x04\x69\x5f", + [0x93ea] = "\x05\x74\x66", [0x93eb] = "\x07\x5a\x28", + [0x93ec] = "\x07\x5a\x29", [0x93ed] = "\x05\x74\x67", + [0x93ee] = "\x07\x5d\x43", [0x93ef] = "\x07\x5d\x46", + [0x93f0] = "\x07\x5d\x45", [0x93f1] = "\x07\x5d\x44", + [0x93f2] = "\x04\x6c\x35", [0x93f4] = "\x07\x61\x5f", + [0x93f5] = "\x05\x7a\x47", [0x93f6] = "\x07\x64\x24", + [0x93f7] = "\x07\x64\x22", [0x93f8] = "\x07\x64\x23", + [0x93f9] = "\x05\x7b\x4d", [0x93fa] = "\x05\x7b\x6d", + [0x93fb] = "\x05\x7c\x22", [0x9401] = "\x05\x44\x2e", + [0x9402] = "\x06\x5a\x2d", [0x9403] = "\x05\x52\x52", + [0x9404] = "\x07\x35\x4c", [0x9405] = "\x04\x59\x6d", + [0x9407] = "\x07\x3d\x62", [0x9409] = "\x07\x4b\x6c", + [0x940a] = "\x07\x51\x48", [0x940b] = "\x04\x65\x2b", + [0x940c] = "\x05\x71\x73", [0x940d] = "\x07\x51\x47", + [0x940f] = "\x07\x56\x2d", [0x9413] = "\x07\x5a\x2a", + [0x9414] = "\x07\x5d\x48", [0x9415] = "\x07\x5d\x47", + [0x9416] = "\x07\x61\x60", [0x9417] = "\x0f\x40\x2c", + [0x9418] = "\x05\x44\x30", [0x9419] = "\x05\x44\x2f", + [0x941a] = "\x05\x4b\x33", [0x941b] = "\x04\x48\x45", + [0x941c] = "\x05\x4b\x34", [0x941e] = "\x05\x52\x5a", + [0x941f] = "\x07\x2b\x21", [0x9420] = "\x05\x52\x54", + [0x9421] = "\x05\x52\x57", [0x9422] = "\x07\x2b\x22", + [0x9423] = "\x05\x52\x55", [0x9424] = "\x05\x52\x56", + [0x9425] = "\x05\x52\x59", [0x9426] = "\x05\x52\x53", + [0x9427] = "\x04\x54\x6b", [0x9428] = "\x05\x52\x58", + [0x942a] = "\x0f\x58\x79", [0x942b] = "\x05\x59\x5e", + [0x942c] = "\x07\x35\x4d", [0x942d] = "\x07\x3d\x63", + [0x942e] = "\x05\x5f\x71", [0x9430] = "\x05\x5f\x72", + [0x9431] = "\x05\x66\x26", [0x9432] = "\x05\x66\x27", + [0x9434] = "\x05\x66\x28", [0x9435] = "\x04\x62\x21", + [0x9436] = "\x05\x6a\x58", [0x9437] = "\x05\x6a\x59", + [0x9439] = "\x07\x51\x49", [0x943a] = "\x07\x51\x4a", + [0x943b] = "\x05\x6e\x54", [0x943c] = "\x05\x6e\x53", + [0x943e] = "\x05\x6e\x55", [0x943f] = "\x07\x56\x2e", + [0x9440] = "\x05\x71\x74", [0x9441] = "\x05\x66\x29", + [0x9442] = "\x05\x74\x68", [0x9443] = "\x05\x74\x69", + [0x9445] = "\x04\x69\x61", [0x9446] = "\x0f\x6a\x33", + [0x9447] = "\x07\x5d\x4a", [0x9448] = "\x04\x6c\x36", + [0x9449] = "\x05\x7b\x23", [0x944a] = "\x05\x7c\x3f", + [0x944b] = "\x06\x34\x7b", [0x944c] = "\x06\x46\x35", + [0x944d] = "\x05\x36\x46", [0x9450] = "\x05\x3d\x4a", + [0x9451] = "\x05\x3d\x48", [0x9452] = "\x05\x3d\x49", + [0x9453] = "\x05\x3d\x46", [0x9454] = "\x04\x3b\x7d", + [0x9455] = "\x05\x3d\x45", [0x9456] = "\x04\x3b\x7c", + [0x9457] = "\x06\x50\x3c", [0x9458] = "\x04\x3b\x7a", + [0x9459] = "\x04\x41\x6c", [0x945a] = "\x05\x44\x3a", + [0x945b] = "\x04\x41\x6b", [0x945c] = "\x05\x44\x31", + [0x945d] = "\x05\x44\x39", [0x945e] = "\x06\x5a\x2f", + [0x945f] = "\x04\x41\x69", [0x9460] = "\x05\x4b\x3b", + [0x9461] = "\x05\x44\x37", [0x9462] = "\x04\x41\x66", + [0x9463] = "\x04\x41\x67", [0x9464] = "\x04\x41\x6a", + [0x9465] = "\x06\x5a\x32", [0x9466] = "\x05\x44\x36", + [0x9467] = "\x05\x44\x32", [0x9468] = "\x06\x5a\x30", + [0x9469] = "\x06\x5a\x31", [0x946a] = "\x06\x5a\x2e", + [0x946b] = "\x0f\x46\x33", [0x946c] = "\x05\x44\x33", + [0x946e] = "\x05\x44\x38", [0x9470] = "\x05\x4b\x3d", + [0x9471] = "\x06\x64\x31", [0x9472] = "\x06\x64\x32", + [0x9473] = "\x05\x4b\x37", [0x9474] = "\x05\x4b\x44", + [0x9475] = "\x05\x4b\x38", [0x9476] = "\x04\x48\x49", + [0x9477] = "\x04\x48\x48", [0x9478] = "\x05\x4b\x3a", + [0x9479] = "\x05\x4b\x36", [0x947a] = "\x04\x48\x4f", + [0x947b] = "\x05\x4b\x42", [0x947c] = "\x05\x4b\x39", + [0x947d] = "\x07\x2b\x2b", [0x947e] = "\x05\x4b\x43", + [0x9480] = "\x06\x64\x35", [0x9481] = "\x06\x64\x33", + [0x9482] = "\x06\x64\x2e", [0x9483] = "\x05\x4b\x3c", + [0x9484] = "\x05\x4b\x41", [0x9485] = "\x0f\x4d\x3e", + [0x9486] = "\x06\x64\x2d", [0x9487] = "\x05\x4b\x40", + [0x9488] = "\x06\x64\x2c", [0x9489] = "\x06\x64\x36", + [0x948a] = "\x05\x4b\x35", [0x948b] = "\x06\x64\x2f", + [0x948c] = "\x06\x64\x34", [0x948f] = "\x05\x52\x5d", + [0x9490] = "\x04\x4e\x5b", [0x9491] = "\x07\x2b\x25", + [0x9492] = "\x07\x2b\x30", [0x9493] = "\x05\x52\x5c", + [0x9494] = "\x05\x52\x5b", [0x9495] = "\x04\x4e\x58", + [0x9496] = "\x07\x2b\x24", [0x9497] = "\x07\x2b\x2a", + [0x9498] = "\x04\x48\x4a", [0x9499] = "\x07\x2b\x2e", + [0x949a] = "\x05\x52\x5e", [0x949b] = "\x04\x4e\x5e", + [0x949c] = "\x07\x2b\x2d", [0x949d] = "\x07\x2b\x29", + [0x949e] = "\x07\x35\x4f", [0x949f] = "\x07\x2b\x2c", + [0x94a0] = "\x0f\x53\x23", [0x94a1] = "\x0f\x53\x24", + [0x94a2] = "\x07\x2b\x27", [0x94a4] = "\x07\x2b\x28", + [0x94a6] = "\x07\x2b\x2f", [0x94a7] = "\x07\x2b\x31", + [0x94aa] = "\x07\x2b\x23", [0x94ab] = "\x07\x2b\x26", + [0x94ad] = "\x05\x52\x5f", [0x94ae] = "\x04\x54\x6c", + [0x94af] = "\x05\x59\x61", [0x94b0] = "\x04\x54\x6e", + [0x94b1] = "\x05\x59\x69", [0x94b2] = "\x07\x35\x58", + [0x94b3] = "\x05\x59\x68", [0x94b4] = "\x05\x59\x66", + [0x94b5] = "\x07\x35\x59", [0x94b6] = "\x07\x35\x57", + [0x94b7] = "\x05\x59\x65", [0x94b8] = "\x05\x59\x63", + [0x94b9] = "\x07\x35\x5b", [0x94ba] = "\x07\x35\x50", + [0x94bb] = "\x05\x59\x6a", [0x94bc] = "\x05\x59\x62", + [0x94bd] = "\x05\x59\x6b", [0x94be] = "\x05\x59\x64", + [0x94bf] = "\x05\x59\x67", [0x94c0] = "\x04\x54\x71", + [0x94c1] = "\x07\x35\x4e", [0x94c2] = "\x05\x59\x60", + [0x94c3] = "\x07\x35\x5a", [0x94c4] = "\x04\x54\x72", + [0x94c5] = "\x07\x35\x56", [0x94c6] = "\x07\x35\x5c", + [0x94c8] = "\x0f\x4d\x40", [0x94c9] = "\x0f\x58\x7a", + [0x94ca] = "\x0f\x58\x7c", [0x94cb] = "\x0f\x58\x7d", + [0x94cc] = "\x0f\x59\x21", [0x94cd] = "\x0f\x59\x22", + [0x94ce] = "\x0f\x59\x23", [0x94d1] = "\x07\x35\x52", + [0x94d3] = "\x07\x35\x53", [0x94d4] = "\x07\x35\x54", + [0x94d5] = "\x07\x35\x55", [0x94d6] = "\x05\x59\x6c", + [0x94d8] = "\x05\x59\x5f", [0x94d9] = "\x0f\x58\x7e", + [0x94dd] = "\x05\x59\x6d", [0x94de] = "\x04\x59\x75", + [0x94df] = "\x04\x59\x71", [0x94e0] = "\x04\x59\x6e", + [0x94e1] = "\x07\x3d\x65", [0x94e2] = "\x05\x5f\x77", + [0x94e3] = "\x04\x59\x79", [0x94e4] = "\x05\x5f\x78", + [0x94e5] = "\x04\x59\x74", [0x94e6] = "\x05\x5f\x76", + [0x94e7] = "\x05\x5f\x73", [0x94e8] = "\x05\x5f\x75", + [0x94e9] = "\x04\x59\x6f", [0x94ea] = "\x05\x5f\x7b", + [0x94eb] = "\x07\x3d\x6a", [0x94ec] = "\x04\x59\x72", + [0x94ed] = "\x07\x3d\x6c", [0x94ee] = "\x05\x5f\x74", + [0x94ef] = "\x07\x3d\x67", [0x94f0] = "\x04\x59\x78", + [0x94f1] = "\x07\x3d\x6b", [0x94f2] = "\x0f\x5d\x5e", + [0x94f3] = "\x0f\x5d\x5f", [0x94f4] = "\x0f\x5d\x60", + [0x94f5] = "\x0f\x5d\x61", [0x94f6] = "\x0f\x5d\x62", + [0x94f7] = "\x0f\x5d\x63", [0x94f8] = "\x07\x3d\x64", + [0x94fa] = "\x07\x3d\x66", [0x94fb] = "\x05\x5f\x79", + [0x94fc] = "\x05\x5f\x7a", [0x94fd] = "\x07\x3d\x68", + [0x94fe] = "\x07\x3d\x6d", [0x9500] = "\x05\x66\x2a", + [0x9501] = "\x04\x5e\x4a", [0x9502] = "\x05\x66\x30", + [0x9503] = "\x05\x66\x2e", [0x9504] = "\x04\x62\x24", + [0x9505] = "\x05\x66\x2d", [0x9506] = "\x05\x66\x2b", + [0x9507] = "\x07\x44\x7b", [0x9508] = "\x05\x66\x2c", + [0x9509] = "\x04\x5e\x48", [0x950a] = "\x05\x66\x31", + [0x950b] = "\x05\x66\x2f", [0x950c] = "\x07\x44\x7c", + [0x950d] = "\x0f\x61\x55", [0x950e] = "\x0f\x61\x56", + [0x950f] = "\x0f\x61\x57", [0x9510] = "\x0f\x61\x58", + [0x9513] = "\x07\x44\x79", [0x9514] = "\x07\x44\x7a", + [0x9519] = "\x07\x4b\x76", [0x951a] = "\x05\x6a\x5d", + [0x951b] = "\x07\x4b\x70", [0x951c] = "\x07\x4b\x6d", + [0x951d] = "\x05\x6a\x5e", [0x951e] = "\x04\x62\x2e", + [0x951f] = "\x07\x4b\x72", [0x9520] = "\x05\x6a\x5c", + [0x9521] = "\x05\x6e\x56", [0x9522] = "\x05\x6a\x5b", + [0x9523] = "\x05\x6a\x5a", [0x9524] = "\x07\x4b\x74", + [0x9525] = "\x07\x4b\x6f", [0x9526] = "\x04\x62\x2a", + [0x9527] = "\x07\x4b\x6e", [0x9528] = "\x07\x4b\x75", + [0x9529] = "\x07\x4b\x71", [0x952c] = "\x0f\x64\x54", + [0x952d] = "\x0f\x64\x55", [0x952f] = "\x07\x4b\x77", + [0x9530] = "\x07\x4b\x73", [0x9533] = "\x04\x65\x2e", + [0x9534] = "\x04\x65\x2d", [0x9535] = "\x05\x6e\x5b", + [0x9536] = "\x05\x6e\x59", [0x9537] = "\x07\x51\x4e", + [0x9538] = "\x05\x6e\x5a", [0x9539] = "\x04\x65\x32", + [0x953a] = "\x07\x51\x4d", [0x953b] = "\x04\x65\x33", + [0x953c] = "\x05\x6e\x58", [0x953d] = "\x07\x51\x4b", + [0x953e] = "\x07\x51\x4f", [0x953f] = "\x0f\x66\x7a", + [0x9540] = "\x04\x65\x34", [0x9542] = "\x07\x51\x50", + [0x9545] = "\x07\x51\x4c", [0x9546] = "\x05\x6e\x57", + [0x9548] = "\x07\x50\x4c", [0x9549] = "\x05\x71\x75", + [0x954a] = "\x05\x71\x76", [0x954b] = "\x07\x56\x2f", + [0x954c] = "\x05\x71\x78", [0x954d] = "\x07\x56\x38", + [0x954e] = "\x07\x5a\x31", [0x954f] = "\x04\x67\x7a", + [0x9550] = "\x04\x67\x78", [0x9551] = "\x07\x56\x33", + [0x9552] = "\x07\x56\x31", [0x9553] = "\x07\x56\x36", + [0x9554] = "\x05\x71\x77", [0x9555] = "\x05\x71\x79", + [0x9556] = "\x05\x71\x7a", [0x9557] = "\x07\x56\x30", + [0x9558] = "\x07\x56\x34", [0x9559] = "\x0f\x68\x7a", + [0x955a] = "\x0f\x68\x7b", [0x955b] = "\x0f\x68\x7c", + [0x955d] = "\x07\x56\x37", [0x955e] = "\x07\x56\x35", + [0x955f] = "\x07\x5a\x30", [0x9560] = "\x05\x74\x6c", + [0x9561] = "\x05\x74\x6b", [0x9562] = "\x07\x5a\x2d", + [0x9563] = "\x07\x5a\x2f", [0x9564] = "\x05\x74\x6a", + [0x9565] = "\x0f\x6a\x34", [0x9566] = "\x07\x5a\x2b", + [0x9569] = "\x07\x5a\x2e", [0x956b] = "\x07\x5a\x2c", + [0x956c] = "\x07\x5d\x52", [0x956d] = "\x07\x5d\x51", + [0x956e] = "\x07\x5d\x4f", [0x956f] = "\x05\x76\x6c", + [0x9571] = "\x05\x76\x6d", [0x9572] = "\x04\x6b\x2e", + [0x9573] = "\x05\x76\x6a", [0x9574] = "\x07\x5d\x4d", + [0x9575] = "\x04\x6b\x2f", [0x9576] = "\x07\x5d\x4e", + [0x9577] = "\x0f\x6b\x35", [0x9578] = "\x07\x5d\x50", + [0x957a] = "\x07\x5d\x4c", [0x957c] = "\x07\x5d\x4b", + [0x957e] = "\x04\x6c\x38", [0x957f] = "\x07\x60\x24", + [0x9580] = "\x05\x76\x6b", [0x9581] = "\x04\x6c\x37", + [0x9583] = "\x0f\x6b\x72", [0x9584] = "\x07\x60\x25", + [0x9586] = "\x04\x6d\x2e", [0x9587] = "\x05\x79\x5a", + [0x958a] = "\x05\x7a\x48", [0x958b] = "\x07\x63\x24", + [0x958c] = "\x05\x7a\x49", [0x958d] = "\x07\x63\x25", + [0x958e] = "\x07\x63\x26", [0x958f] = "\x04\x6e\x23", + [0x9590] = "\x07\x64\x25", [0x9593] = "\x07\x65\x4d", + [0x9599] = "\x06\x46\x36", [0x959a] = "\x06\x50\x3f", + [0x959b] = "\x04\x3c\x21", [0x959c] = "\x06\x50\x3d", + [0x959d] = "\x05\x3d\x4b", [0x959f] = "\x0f\x40\x2e", + [0x95a1] = "\x06\x50\x3e", [0x95a2] = "\x05\x44\x3b", + [0x95a3] = "\x05\x44\x40", [0x95a4] = "\x04\x41\x6f", + [0x95a5] = "\x05\x44\x3d", [0x95a6] = "\x05\x44\x3e", + [0x95a7] = "\x06\x5a\x34", [0x95a8] = "\x06\x5a\x36", + [0x95a9] = "\x05\x44\x3c", [0x95ac] = "\x04\x41\x70", + [0x95ae] = "\x06\x5a\x35", [0x95b0] = "\x06\x53\x33", + [0x95b2] = "\x05\x44\x3f", [0x95b3] = "\x06\x5a\x37", + [0x95b4] = "\x04\x48\x58", [0x95b5] = "\x05\x4b\x48", + [0x95b6] = "\x04\x48\x55", [0x95b7] = "\x05\x4b\x47", + [0x95b8] = "\x05\x4b\x46", [0x95b9] = "\x05\x4b\x45", + [0x95ba] = "\x04\x48\x53", [0x95bb] = "\x06\x64\x37", + [0x95bc] = "\x04\x48\x52", [0x95bd] = "\x06\x64\x3b", + [0x95be] = "\x06\x64\x39", [0x95c1] = "\x06\x64\x38", + [0x95c4] = "\x04\x4e\x5f", [0x95c5] = "\x05\x52\x62", + [0x95c6] = "\x04\x4e\x62", [0x95c7] = "\x07\x2b\x34", + [0x95c8] = "\x07\x2b\x33", [0x95c9] = "\x07\x2b\x32", + [0x95ca] = "\x05\x52\x61", [0x95cb] = "\x07\x2b\x35", + [0x95cc] = "\x0f\x53\x25", [0x95cd] = "\x0f\x53\x26", + [0x95d3] = "\x05\x59\x6f", [0x95d4] = "\x05\x59\x77", + [0x95d5] = "\x05\x59\x70", [0x95d6] = "\x07\x35\x5d", + [0x95d7] = "\x07\x35\x60", [0x95d8] = "\x05\x59\x6e", + [0x95d9] = "\x05\x59\x73", [0x95da] = "\x05\x59\x76", + [0x95db] = "\x07\x35\x5f", [0x95dd] = "\x07\x35\x61", + [0x95de] = "\x05\x59\x74", [0x95df] = "\x05\x59\x75", + [0x95e0] = "\x07\x35\x5e", [0x95e1] = "\x0f\x59\x25", + [0x95e2] = "\x05\x59\x72", [0x95e3] = "\x05\x59\x71", + [0x95e8] = "\x07\x3d\x71", [0x95e9] = "\x04\x5a\x25", + [0x95ea] = "\x05\x60\x25", [0x95eb] = "\x05\x60\x26", + [0x95ec] = "\x04\x59\x7b", [0x95ed] = "\x05\x5f\x7c", + [0x95ee] = "\x07\x3d\x70", [0x95ef] = "\x04\x5a\x24", + [0x95f0] = "\x05\x66\x32", [0x95f1] = "\x05\x60\x22", + [0x95f2] = "\x04\x5a\x23", [0x95f3] = "\x05\x5f\x7e", + [0x95f4] = "\x05\x60\x21", [0x95f5] = "\x05\x60\x24", + [0x95f6] = "\x05\x5f\x7d", [0x95f7] = "\x05\x60\x23", + [0x95f8] = "\x07\x3d\x6e", [0x95fa] = "\x0f\x5d\x64", + [0x95fb] = "\x0f\x5d\x65", [0x9601] = "\x07\x3d\x72", + [0x9603] = "\x07\x3d\x6f", [0x9605] = "\x04\x5e\x53", + [0x9606] = "\x07\x45\x22", [0x9607] = "\x07\x45\x24", + [0x9608] = "\x05\x66\x37", [0x9609] = "\x07\x45\x26", + [0x960a] = "\x05\x66\x34", [0x960b] = "\x05\x66\x38", + [0x960c] = "\x04\x5e\x54", [0x960d] = "\x05\x66\x3a", + [0x960e] = "\x04\x62\x31", [0x960f] = "\x05\x66\x35", + [0x9610] = "\x07\x45\x25", [0x9611] = "\x05\x66\x36", + [0x9612] = "\x05\x66\x39", [0x9613] = "\x05\x66\x33", + [0x9614] = "\x0f\x61\x59", [0x9615] = "\x07\x45\x28", + [0x9616] = "\x07\x45\x23", [0x9617] = "\x07\x45\x21", + [0x9619] = "\x07\x45\x27", [0x961a] = "\x07\x44\x7d", + [0x961c] = "\x05\x6a\x5f", [0x961d] = "\x04\x62\x33", + [0x961e] = "\x04\x62\x34", [0x961f] = "\x04\x62\x35", + [0x9620] = "\x05\x6a\x60", [0x9621] = "\x07\x4b\x79", + [0x9622] = "\x0f\x64\x56", [0x9623] = "\x0f\x64\x57", + [0x9624] = "\x07\x4b\x78", [0x9625] = "\x07\x4b\x7a", + [0x9626] = "\x07\x4b\x7b", [0x9627] = "\x07\x4b\x7c", + [0x962d] = "\x05\x6e\x5e", [0x962e] = "\x05\x6e\x61", + [0x962f] = "\x05\x6e\x60", [0x9630] = "\x04\x65\x35", + [0x9631] = "\x05\x6e\x5c", [0x9632] = "\x04\x65\x37", + [0x9633] = "\x05\x6e\x5f", [0x9634] = "\x0f\x66\x7b", + [0x9635] = "\x05\x6e\x62", [0x9636] = "\x05\x6e\x5d", + [0x9637] = "\x04\x65\x38", [0x9638] = "\x07\x56\x40", + [0x9639] = "\x04\x67\x7d", [0x963a] = "\x04\x68\x21", + [0x963b] = "\x05\x71\x7b", [0x963c] = "\x07\x56\x39", + [0x963d] = "\x05\x71\x7c", [0x963e] = "\x07\x56\x3c", + [0x963f] = "\x07\x56\x3a", [0x9640] = "\x0f\x68\x7d", + [0x9641] = "\x07\x56\x3f", [0x9642] = "\x07\x56\x41", + [0x9643] = "\x07\x56\x42", [0x9644] = "\x07\x56\x3d", + [0x9645] = "\x07\x56\x3e", [0x9646] = "\x07\x56\x3b", + [0x9648] = "\x07\x5a\x32", [0x9649] = "\x0f\x6a\x35", + [0x964a] = "\x07\x5a\x33", [0x964e] = "\x07\x5d\x53", + [0x9651] = "\x05\x78\x49", [0x9652] = "\x04\x6c\x3b", + [0x9653] = "\x07\x60\x26", [0x9654] = "\x07\x60\x27", + [0x9656] = "\x05\x79\x5b", [0x9657] = "\x07\x61\x61", + [0x9659] = "\x05\x79\x5c", [0x965a] = "\x04\x6d\x2f", + [0x965b] = "\x04\x6d\x66", [0x965c] = "\x05\x7a\x4a", + [0x965d] = "\x05\x7b\x24", [0x965e] = "\x07\x64\x26", + [0x965f] = "\x0f\x6d\x24", [0x9661] = "\x05\x7c\x47", + [0x9664] = "\x07\x66\x55", [0x9671] = "\x06\x3c\x75", + [0x9672] = "\x05\x40\x39", [0x9674] = "\x07\x2b\x36", + [0x9676] = "\x07\x4b\x7d", [0x9677] = "\x05\x6a\x61", + [0x967a] = "\x07\x56\x43", [0x967c] = "\x04\x69\x64", + [0x967d] = "\x05\x74\x6d", [0x9680] = "\x06\x34\x7c", + [0x9681] = "\x06\x34\x7d", [0x9682] = "\x06\x35\x22", + [0x9683] = "\x06\x34\x7e", [0x9684] = "\x05\x30\x71", + [0x9685] = "\x06\x3c\x76", [0x9686] = "\x06\x3c\x78", + [0x9687] = "\x05\x3d\x4c", [0x9688] = "\x05\x36\x4a", + [0x9689] = "\x05\x36\x47", [0x968a] = "\x06\x46\x3a", + [0x968b] = "\x06\x46\x38", [0x968c] = "\x05\x36\x49", + [0x968d] = "\x06\x46\x39", [0x968e] = "\x06\x46\x3b", + [0x968f] = "\x06\x50\x40", [0x9692] = "\x05\x36\x48", + [0x9693] = "\x06\x50\x41", [0x9695] = "\x06\x50\x46", + [0x9696] = "\x04\x3c\x22", [0x9697] = "\x05\x3d\x4d", + [0x9698] = "\x06\x50\x44", [0x9699] = "\x06\x50\x45", + [0x969a] = "\x04\x3c\x26", [0x969b] = "\x05\x3d\x4e", + [0x969c] = "\x06\x5a\x38", [0x969d] = "\x05\x3d\x4f", + [0x969e] = "\x06\x50\x42", [0x96a0] = "\x0f\x40\x2f", + [0x96a3] = "\x06\x50\x43", [0x96a4] = "\x04\x3c\x23", + [0x96a8] = "\x06\x5a\x42", [0x96a9] = "\x06\x5a\x39", + [0x96aa] = "\x05\x44\x42", [0x96ab] = "\x05\x44\x44", + [0x96ac] = "\x05\x44\x41", [0x96ad] = "\x05\x44\x47", + [0x96ae] = "\x04\x41\x76", [0x96af] = "\x05\x44\x43", + [0x96b0] = "\x06\x64\x43", [0x96b1] = "\x05\x44\x45", + [0x96b2] = "\x06\x5a\x3c", [0x96b3] = "\x06\x5a\x3b", + [0x96b4] = "\x06\x64\x3d", [0x96b5] = "\x04\x41\x73", + [0x96b6] = "\x06\x5a\x3a", [0x96b7] = "\x06\x64\x3e", + [0x96b8] = "\x06\x5a\x3e", [0x96b9] = "\x05\x44\x48", + [0x96ba] = "\x06\x5a\x41", [0x96bb] = "\x05\x52\x63", + [0x96bd] = "\x0f\x46\x37", [0x96bf] = "\x06\x5a\x40", + [0x96c0] = "\x06\x5a\x3f", [0x96c1] = "\x06\x64\x3c", + [0x96c5] = "\x04\x41\x78", [0x96c6] = "\x05\x44\x46", + [0x96c8] = "\x06\x64\x3f", [0x96c9] = "\x07\x2b\x37", + [0x96ca] = "\x06\x64\x44", [0x96cb] = "\x05\x4b\x4d", + [0x96cc] = "\x05\x4b\x49", [0x96cd] = "\x06\x64\x45", + [0x96ce] = "\x05\x4b\x4a", [0x96cf] = "\x04\x48\x5a", + [0x96d0] = "\x06\x64\x42", [0x96d1] = "\x05\x4b\x4b", + [0x96d2] = "\x07\x2b\x39", [0x96d3] = "\x06\x64\x41", + [0x96d6] = "\x0f\x46\x36", [0x96d7] = "\x0f\x53\x28", + [0x96db] = "\x07\x2b\x3a", [0x96dd] = "\x04\x4e\x6b", + [0x96de] = "\x07\x2b\x40", [0x96df] = "\x04\x4e\x6a", + [0x96e0] = "\x05\x52\x69", [0x96e1] = "\x05\x52\x64", + [0x96e2] = "\x05\x59\x79", [0x96e3] = "\x04\x4e\x68", + [0x96e4] = "\x05\x52\x66", [0x96e5] = "\x05\x52\x6b", + [0x96e6] = "\x05\x52\x68", [0x96e7] = "\x04\x4e\x6c", + [0x96e8] = "\x05\x52\x6a", [0x96e9] = "\x07\x2b\x3c", + [0x96ea] = "\x05\x52\x65", [0x96eb] = "\x07\x2b\x3b", + [0x96ec] = "\x07\x3d\x73", [0x96ed] = "\x05\x52\x67", + [0x96ee] = "\x07\x2b\x3e", [0x96ef] = "\x07\x2b\x3d", + [0x96f1] = "\x0f\x53\x27", [0x96f3] = "\x05\x59\x78", + [0x96f9] = "\x07\x2b\x3f", [0x96fa] = "\x05\x5a\x23", + [0x96fb] = "\x04\x5a\x26", [0x96fc] = "\x05\x5a\x24", + [0x96fd] = "\x04\x54\x7b", [0x96fe] = "\x07\x35\x66", + [0x96ff] = "\x07\x35\x6a", [0x9700] = "\x05\x60\x27", + [0x9701] = "\x05\x59\x7b", [0x9702] = "\x07\x35\x69", + [0x9703] = "\x05\x59\x7e", [0x9704] = "\x07\x35\x67", + [0x9705] = "\x05\x59\x7c", [0x9706] = "\x07\x35\x6f", + [0x9707] = "\x04\x54\x79", [0x9708] = "\x07\x35\x6b", + [0x9709] = "\x07\x35\x70", [0x970a] = "\x05\x5a\x25", + [0x970b] = "\x07\x35\x68", [0x970c] = "\x07\x35\x63", + [0x970d] = "\x05\x59\x7a", [0x970e] = "\x07\x35\x65", + [0x970f] = "\x07\x35\x64", [0x9710] = "\x07\x35\x6c", + [0x9712] = "\x05\x60\x29", [0x9713] = "\x07\x35\x6e", + [0x9714] = "\x07\x3d\x75", [0x9715] = "\x07\x35\x62", + [0x9716] = "\x05\x5a\x22", [0x9717] = "\x07\x35\x6d", + [0x971a] = "\x05\x59\x7d", [0x971b] = "\x0f\x59\x26", + [0x971c] = "\x0f\x59\x27", [0x971d] = "\x0f\x59\x28", + [0x971e] = "\x0f\x59\x29", [0x971f] = "\x05\x5a\x21", + [0x9722] = "\x07\x3d\x74", [0x972c] = "\x05\x60\x28", + [0x972d] = "\x05\x60\x34", [0x972f] = "\x07\x3d\x77", + [0x9730] = "\x05\x60\x2d", [0x9731] = "\x05\x60\x2f", + [0x9732] = "\x05\x60\x33", [0x9733] = "\x05\x60\x2b", + [0x9734] = "\x07\x3d\x76", [0x9735] = "\x05\x60\x32", + [0x9736] = "\x05\x60\x35", [0x9737] = "\x04\x5a\x2b", + [0x9738] = "\x05\x60\x36", [0x9739] = "\x07\x3d\x78", + [0x973a] = "\x07\x3d\x7d", [0x973b] = "\x07\x45\x2a", + [0x973c] = "\x07\x3d\x7a", [0x973d] = "\x05\x60\x2a", + [0x973e] = "\x07\x45\x2b", [0x973f] = "\x07\x3e\x21", + [0x9740] = "\x05\x60\x2e", [0x9741] = "\x07\x3d\x79", + [0x9742] = "\x07\x3d\x7e", [0x9745] = "\x0f\x5d\x66", + [0x9746] = "\x0f\x5d\x67", [0x9749] = "\x07\x3d\x7b", + [0x9757] = "\x05\x60\x30", [0x9758] = "\x07\x3d\x7c", + [0x9759] = "\x07\x45\x2f", [0x975a] = "\x05\x66\x3f", + [0x975b] = "\x05\x66\x3b", [0x975d] = "\x04\x5e\x56", + [0x975e] = "\x04\x5e\x5c", [0x975f] = "\x05\x60\x38", + [0x9760] = "\x04\x5e\x5d", [0x9761] = "\x05\x66\x3d", + [0x9762] = "\x05\x60\x37", [0x9763] = "\x05\x66\x3c", + [0x9764] = "\x07\x45\x2e", [0x9765] = "\x07\x45\x2d", + [0x9766] = "\x07\x4b\x7e", [0x9767] = "\x04\x5e\x5e", + [0x9768] = "\x05\x66\x3e", [0x9769] = "\x07\x4c\x22", + [0x976b] = "\x07\x51\x54", [0x976c] = "\x07\x45\x2c", + [0x976e] = "\x07\x45\x29", [0x9770] = "\x07\x45\x31", + [0x9771] = "\x0f\x61\x5a", [0x9772] = "\x0f\x61\x5b", + [0x9774] = "\x07\x4c\x25", [0x9775] = "\x07\x4c\x21", + [0x9778] = "\x04\x5e\x55", [0x9779] = "\x07\x45\x32", + [0x977c] = "\x07\x45\x30", [0x977d] = "\x05\x6a\x64", + [0x977e] = "\x07\x4c\x23", [0x977f] = "\x05\x6a\x62", + [0x9780] = "\x04\x62\x3b", [0x9781] = "\x04\x65\x3d", + [0x9782] = "\x07\x51\x53", [0x9783] = "\x05\x6a\x69", + [0x9784] = "\x05\x6a\x66", [0x9785] = "\x05\x6a\x68", + [0x9786] = "\x05\x6a\x6a", [0x9787] = "\x07\x51\x51", + [0x9788] = "\x04\x62\x37", [0x9789] = "\x05\x6a\x67", + [0x978a] = "\x05\x60\x39", [0x978b] = "\x05\x6a\x63", + [0x978c] = "\x07\x51\x52", [0x978d] = "\x04\x62\x39", + [0x978e] = "\x07\x51\x58", [0x978f] = "\x07\x4c\x24", + [0x9790] = "\x07\x51\x57", [0x9791] = "\x04\x62\x3a", + [0x9796] = "\x0f\x64\x58", [0x9797] = "\x0f\x64\x59", + [0x9799] = "\x05\x6a\x65", [0x979a] = "\x07\x51\x56", + [0x979e] = "\x05\x6a\x6b", [0x979f] = "\x04\x65\x3e", + [0x97a0] = "\x07\x51\x55", [0x97a1] = "\x07\x51\x59", + [0x97a2] = "\x07\x51\x5f", [0x97a3] = "\x07\x56\x44", + [0x97a4] = "\x05\x71\x7d", [0x97a5] = "\x07\x51\x60", + [0x97a6] = "\x05\x6e\x65", [0x97a7] = "\x04\x65\x3f", + [0x97a8] = "\x05\x71\x7e", [0x97a9] = "\x05\x6e\x64", + [0x97aa] = "\x07\x51\x5e", [0x97ab] = "\x07\x51\x62", + [0x97ac] = "\x05\x6e\x63", [0x97ad] = "\x07\x4c\x27", + [0x97ae] = "\x07\x51\x61", [0x97b2] = "\x07\x51\x5b", + [0x97b5] = "\x07\x51\x5c", [0x97b7] = "\x07\x51\x5d", + [0x97ba] = "\x07\x56\x45", [0x97bc] = "\x07\x51\x63", + [0x97bd] = "\x07\x51\x5a", [0x97be] = "\x05\x72\x28", + [0x97bf] = "\x05\x72\x22", [0x97c0] = "\x07\x56\x46", + [0x97c1] = "\x04\x68\x25", [0x97c2] = "\x05\x72\x24", + [0x97c3] = "\x05\x72\x21", [0x97c4] = "\x07\x56\x47", + [0x97c5] = "\x05\x72\x2b", [0x97c6] = "\x07\x56\x48", + [0x97c7] = "\x05\x72\x2a", [0x97c8] = "\x05\x72\x23", + [0x97c9] = "\x05\x72\x27", [0x97ca] = "\x05\x72\x25", + [0x97cb] = "\x07\x56\x49", [0x97cc] = "\x05\x72\x26", + [0x97cd] = "\x05\x72\x29", [0x97cf] = "\x0f\x68\x7e", + [0x97d3] = "\x04\x69\x66", [0x97d4] = "\x05\x74\x6e", + [0x97d5] = "\x05\x74\x6f", [0x97d6] = "\x07\x5a\x37", + [0x97d7] = "\x07\x5d\x54", [0x97d8] = "\x07\x5a\x36", + [0x97d9] = "\x05\x74\x70", [0x97db] = "\x07\x5a\x35", + [0x97dd] = "\x0f\x6a\x37", [0x97e3] = "\x07\x5a\x34", + [0x97e4] = "\x05\x76\x6e", [0x97e5] = "\x07\x5d\x56", + [0x97e6] = "\x05\x76\x6f", [0x97e7] = "\x05\x76\x70", + [0x97e8] = "\x05\x78\x4a", [0x97ea] = "\x07\x5d\x55", + [0x97ed] = "\x05\x78\x4b", [0x97ee] = "\x05\x78\x4c", + [0x97ef] = "\x04\x6c\x3c", [0x97f0] = "\x07\x60\x28", + [0x97f1] = "\x07\x60\x2a", [0x97f4] = "\x07\x60\x29", + [0x97f6] = "\x05\x79\x5d", [0x97f7] = "\x07\x64\x27", + [0x97f8] = "\x05\x7b\x25", [0x9810] = "\x06\x3c\x79", + [0x9811] = "\x06\x46\x3c", [0x9815] = "\x06\x64\x46", + [0x9816] = "\x07\x2b\x41", [0x9817] = "\x06\x64\x48", + [0x9819] = "\x06\x64\x47", [0x981a] = "\x05\x52\x6c", + [0x981b] = "\x04\x55\x24", [0x981c] = "\x04\x55\x25", + [0x9822] = "\x07\x3e\x22", [0x9823] = "\x07\x3e\x23", + [0x9824] = "\x07\x35\x71", [0x9825] = "\x07\x35\x73", + [0x9826] = "\x07\x35\x72", [0x982a] = "\x07\x4c\x29", + [0x982b] = "\x07\x4c\x28", [0x982c] = "\x07\x45\x33", + [0x9830] = "\x07\x4d\x73", [0x9832] = "\x07\x51\x64", + [0x9837] = "\x07\x60\x2b", [0x9839] = "\x04\x6e\x26", + [0x983a] = "\x0f\x32\x71", [0x983b] = "\x04\x41\x7c", + [0x983c] = "\x06\x5a\x43", [0x983e] = "\x05\x47\x54", + [0x983f] = "\x06\x64\x49", [0x9840] = "\x06\x64\x4a", + [0x9841] = "\x0f\x4d\x41", [0x9842] = "\x0f\x53\x29", + [0x9844] = "\x06\x64\x4b", [0x9845] = "\x07\x2b\x42", + [0x9846] = "\x0f\x53\x2a", [0x9847] = "\x0f\x59\x2a", + [0x9848] = "\x07\x35\x74", [0x9849] = "\x0f\x5d\x68", + [0x984a] = "\x07\x3e\x24", [0x984c] = "\x07\x45\x36", + [0x984d] = "\x05\x66\x41", [0x984e] = "\x05\x66\x40", + [0x9850] = "\x05\x66\x42", [0x9851] = "\x07\x45\x35", + [0x9852] = "\x07\x45\x34", [0x9853] = "\x05\x6a\x6c", + [0x9854] = "\x04\x62\x3d", [0x9855] = "\x04\x62\x3e", + [0x9858] = "\x07\x4c\x2a", [0x985a] = "\x07\x51\x65", + [0x985b] = "\x0f\x66\x7c", [0x985d] = "\x05\x72\x2c", + [0x985e] = "\x0f\x69\x21", [0x9861] = "\x07\x56\x4a", + [0x9864] = "\x07\x5d\x57", [0x9865] = "\x05\x7a\x4b", + [0x9867] = "\x05\x36\x4b", [0x9868] = "\x05\x36\x4c", + [0x9869] = "\x05\x3d\x50", [0x986a] = "\x06\x50\x48", + [0x986d] = "\x0f\x40\x31", [0x986e] = "\x06\x50\x47", + [0x9870] = "\x05\x44\x49", [0x9871] = "\x06\x5a\x45", + [0x9872] = "\x06\x5a\x44", [0x9873] = "\x06\x5a\x47", + [0x9875] = "\x06\x5a\x46", [0x9877] = "\x05\x4b\x51", + [0x9878] = "\x06\x64\x4d", [0x9879] = "\x06\x64\x4e", + [0x987a] = "\x05\x4b\x50", [0x987b] = "\x04\x48\x61", + [0x987c] = "\x06\x64\x4c", [0x987d] = "\x06\x64\x52", + [0x987e] = "\x05\x4b\x4f", [0x987f] = "\x07\x2b\x43", + [0x9881] = "\x0f\x4d\x42", [0x9882] = "\x0f\x4d\x43", + [0x9883] = "\x0f\x4d\x44", [0x9884] = "\x0f\x4d\x45", + [0x9886] = "\x07\x2b\x46", [0x9888] = "\x06\x64\x4f", + [0x9889] = "\x06\x64\x51", [0x988c] = "\x05\x4b\x52", + [0x988d] = "\x07\x2b\x4a", [0x988e] = "\x05\x52\x72", + [0x988f] = "\x07\x2b\x4e", [0x9890] = "\x07\x2b\x47", + [0x9891] = "\x05\x5a\x32", [0x9892] = "\x05\x52\x74", + [0x9893] = "\x05\x52\x77", [0x9894] = "\x05\x52\x6d", + [0x9895] = "\x05\x52\x70", [0x9896] = "\x05\x52\x6e", + [0x9897] = "\x05\x52\x75", [0x9898] = "\x07\x2b\x44", + [0x9899] = "\x05\x52\x76", [0x989a] = "\x07\x2b\x48", + [0x989b] = "\x05\x52\x73", [0x989c] = "\x07\x2b\x4b", + [0x989d] = "\x07\x2b\x49", [0x989e] = "\x05\x52\x6f", + [0x989f] = "\x07\x2b\x45", [0x98a0] = "\x07\x2b\x4c", + [0x98a1] = "\x05\x52\x71", [0x98a3] = "\x0f\x53\x2b", + [0x98a5] = "\x0f\x53\x2c", [0x98a6] = "\x0f\x53\x2d", + [0x98a7] = "\x07\x2b\x4d", [0x98ad] = "\x07\x35\x7a", + [0x98ae] = "\x04\x55\x2c", [0x98af] = "\x07\x35\x79", + [0x98b0] = "\x05\x5a\x2f", [0x98b1] = "\x04\x55\x2a", + [0x98b2] = "\x04\x55\x27", [0x98b3] = "\x04\x55\x2b", + [0x98b4] = "\x04\x55\x28", [0x98b5] = "\x07\x35\x75", + [0x98b6] = "\x05\x5a\x29", [0x98b7] = "\x04\x55\x29", + [0x98b8] = "\x05\x5a\x30", [0x98b9] = "\x05\x5a\x2d", + [0x98ba] = "\x07\x36\x24", [0x98bb] = "\x05\x5a\x33", + [0x98bc] = "\x05\x5a\x27", [0x98bd] = "\x05\x5a\x31", + [0x98be] = "\x05\x5a\x34", [0x98bf] = "\x05\x5a\x2b", + [0x98c0] = "\x07\x35\x7c", [0x98c1] = "\x07\x35\x7b", + [0x98c2] = "\x07\x36\x26", [0x98c3] = "\x07\x36\x21", + [0x98c4] = "\x07\x35\x78", [0x98c5] = "\x07\x36\x23", + [0x98c7] = "\x05\x5a\x2a", [0x98c8] = "\x07\x36\x22", + [0x98c9] = "\x0f\x59\x2c", [0x98ca] = "\x05\x5a\x28", + [0x98cc] = "\x07\x35\x7d", [0x98cd] = "\x07\x35\x7e", + [0x98ce] = "\x07\x36\x27", [0x98d0] = "\x07\x36\x25", + [0x98d1] = "\x0f\x59\x2b", [0x98d2] = "\x07\x35\x76", + [0x98d5] = "\x07\x35\x77", [0x98d6] = "\x05\x60\x3a", + [0x98d7] = "\x07\x3e\x2c", [0x98d8] = "\x05\x60\x3b", + [0x98d9] = "\x07\x3e\x26", [0x98da] = "\x04\x5a\x2f", + [0x98db] = "\x07\x3e\x27", [0x98dc] = "\x07\x3e\x25", + [0x98dd] = "\x05\x60\x3c", [0x98de] = "\x04\x5a\x2c", + [0x98df] = "\x07\x3e\x2a", [0x98e0] = "\x07\x3e\x2b", + [0x98e1] = "\x05\x4b\x53", [0x98e2] = "\x07\x3e\x28", + [0x98e3] = "\x05\x60\x3e", [0x98e4] = "\x05\x60\x3d", + [0x98e7] = "\x0f\x5d\x69", [0x98e8] = "\x0f\x5d\x6a", + [0x98ed] = "\x07\x45\x3c", [0x98ee] = "\x05\x66\x4c", + [0x98ef] = "\x05\x66\x4b", [0x98f0] = "\x05\x66\x47", + [0x98f1] = "\x04\x5e\x64", [0x98f2] = "\x05\x66\x49", + [0x98f3] = "\x05\x66\x48", [0x98f4] = "\x04\x5e\x61", + [0x98f5] = "\x05\x66\x45", [0x98f6] = "\x05\x66\x4e", + [0x98f7] = "\x04\x5e\x6d", [0x98f8] = "\x04\x5e\x69", + [0x98f9] = "\x04\x5e\x6a", [0x98fa] = "\x04\x5e\x66", + [0x98fb] = "\x05\x66\x4f", [0x98fc] = "\x05\x66\x43", + [0x98fd] = "\x04\x5e\x6c", [0x98fe] = "\x07\x45\x3b", + [0x98ff] = "\x07\x45\x3a", [0x9900] = "\x07\x45\x37", + [0x9901] = "\x05\x66\x4a", [0x9904] = "\x0f\x61\x5d", + [0x9906] = "\x0f\x61\x5e", [0x9907] = "\x0f\x61\x60", + [0x9909] = "\x04\x5e\x6b", [0x990f] = "\x0f\x61\x5c", + [0x9910] = "\x07\x45\x38", [0x9912] = "\x05\x66\x44", + [0x9913] = "\x07\x45\x39", [0x9916] = "\x05\x66\x4d", + [0x9917] = "\x05\x6a\x6d", [0x9918] = "\x05\x6a\x73", + [0x9919] = "\x05\x6a\x6f", [0x991a] = "\x04\x62\x43", + [0x991b] = "\x07\x4c\x31", [0x991c] = "\x05\x66\x50", + [0x991d] = "\x07\x4c\x2c", [0x991e] = "\x05\x66\x46", + [0x991f] = "\x05\x6a\x71", [0x9920] = "\x05\x6a\x70", + [0x9921] = "\x05\x6a\x74", [0x9922] = "\x07\x4c\x2b", + [0x9923] = "\x05\x6a\x72", [0x9924] = "\x05\x6a\x76", + [0x9925] = "\x04\x62\x42", [0x9926] = "\x05\x6a\x77", + [0x9927] = "\x07\x4c\x32", [0x9928] = "\x07\x4c\x34", + [0x9929] = "\x05\x6a\x75", [0x992a] = "\x07\x4c\x33", + [0x992b] = "\x07\x4c\x2d", [0x992c] = "\x07\x4c\x2e", + [0x992d] = "\x07\x4c\x2f", [0x992e] = "\x0f\x64\x5b", + [0x9930] = "\x0f\x64\x5c", [0x9931] = "\x0f\x64\x5d", + [0x9933] = "\x07\x4c\x30", [0x9937] = "\x03\x57\x36", + [0x993b] = "\x07\x4c\x35", [0x993d] = "\x04\x65\x45", + [0x993e] = "\x07\x51\x6a", [0x993f] = "\x07\x51\x69", + [0x9940] = "\x05\x6e\x6e", [0x9941] = "\x05\x6e\x69", + [0x9942] = "\x05\x6e\x6b", [0x9943] = "\x05\x6e\x68", + [0x9944] = "\x04\x65\x42", [0x9945] = "\x05\x6e\x70", + [0x9946] = "\x0f\x66\x7d", [0x9947] = "\x04\x65\x43", + [0x9948] = "\x04\x65\x44", [0x9949] = "\x04\x65\x48", + [0x994a] = "\x05\x6e\x71", [0x994b] = "\x05\x6e\x72", + [0x994c] = "\x05\x6e\x67", [0x994d] = "\x07\x51\x68", + [0x994e] = "\x04\x68\x26", [0x994f] = "\x05\x6e\x6a", + [0x9950] = "\x05\x6e\x6f", [0x9951] = "\x05\x6e\x6c", + [0x9952] = "\x07\x51\x6b", [0x9953] = "\x07\x51\x6f", + [0x9954] = "\x07\x51\x70", [0x9956] = "\x07\x51\x71", + [0x9957] = "\x07\x51\x6d", [0x9958] = "\x07\x51\x6c", + [0x995a] = "\x0f\x66\x7e", [0x995b] = "\x0f\x67\x21", + [0x995c] = "\x07\x51\x67", [0x995e] = "\x07\x51\x6e", + [0x9962] = "\x07\x52\x27", [0x9964] = "\x07\x51\x66", + [0x996b] = "\x05\x72\x2f", [0x996c] = "\x05\x72\x2e", + [0x996d] = "\x05\x72\x31", [0x996e] = "\x04\x68\x27", + [0x996f] = "\x05\x72\x32", [0x9970] = "\x05\x72\x30", + [0x9971] = "\x04\x68\x2c", [0x9972] = "\x07\x56\x4d", + [0x9973] = "\x07\x56\x4c", [0x9974] = "\x07\x56\x4e", + [0x997a] = "\x07\x56\x4b", [0x997b] = "\x0f\x69\x22", + [0x9980] = "\x07\x56\x4f", [0x9981] = "\x07\x56\x50", + [0x9982] = "\x05\x74\x78", [0x9983] = "\x07\x5a\x3d", + [0x9984] = "\x05\x72\x34", [0x9985] = "\x07\x5a\x41", + [0x9986] = "\x07\x5a\x38", [0x9987] = "\x05\x74\x71", + [0x9988] = "\x07\x5a\x3b", [0x9989] = "\x05\x72\x33", + [0x998a] = "\x05\x74\x74", [0x998b] = "\x05\x74\x77", + [0x998c] = "\x05\x74\x73", [0x998d] = "\x07\x5a\x40", + [0x998e] = "\x04\x69\x6c", [0x998f] = "\x05\x74\x75", + [0x9990] = "\x07\x5a\x39", [0x9991] = "\x07\x5a\x3a", + [0x9994] = "\x07\x5a\x3c", [0x9995] = "\x0f\x6a\x38", + [0x9996] = "\x0f\x6a\x39", [0x9997] = "\x0f\x6a\x3a", + [0x9999] = "\x05\x74\x72", [0x999b] = "\x05\x74\x79", + [0x999c] = "\x07\x5a\x3f", [0x999e] = "\x07\x5d\x5f", + [0x999f] = "\x07\x5d\x5d", [0x99a0] = "\x05\x76\x71", + [0x99a1] = "\x05\x78\x4e", [0x99a2] = "\x07\x5d\x5c", + [0x99a3] = "\x07\x5d\x59", [0x99a4] = "\x05\x76\x72", + [0x99a5] = "\x07\x5d\x5a", [0x99a6] = "\x07\x5d\x5e", + [0x99a7] = "\x07\x5d\x5b", [0x99a8] = "\x07\x5d\x60", + [0x99ac] = "\x0f\x6b\x38", [0x99ad] = "\x0f\x6b\x39", + [0x99b3] = "\x07\x5d\x58", [0x99b6] = "\x05\x78\x4f", + [0x99b7] = "\x07\x60\x31", [0x99b8] = "\x07\x60\x34", + [0x99b9] = "\x05\x78\x4d", [0x99ba] = "\x07\x60\x33", + [0x99bb] = "\x07\x60\x36", [0x99bc] = "\x07\x60\x35", + [0x99bd] = "\x07\x60\x2f", [0x99be] = "\x07\x60\x30", + [0x99bf] = "\x07\x60\x2c", [0x99c0] = "\x07\x60\x32", + [0x99c2] = "\x05\x79\x62", [0x99c3] = "\x07\x61\x63", + [0x99c4] = "\x05\x79\x63", [0x99c5] = "\x05\x79\x5f", + [0x99c6] = "\x04\x6d\x31", [0x99c7] = "\x05\x79\x60", + [0x99c8] = "\x07\x61\x62", [0x99c9] = "\x05\x79\x5e", + [0x99ca] = "\x05\x79\x61", [0x99cb] = "\x04\x6d\x32", + [0x99ce] = "\x07\x61\x64", [0x99cf] = "\x05\x7a\x4c", + [0x99d0] = "\x05\x7a\x4d", [0x99d4] = "\x04\x6e\x27", + [0x99d5] = "\x07\x64\x29", [0x99d6] = "\x07\x64\x28", + [0x99d8] = "\x04\x6e\x40", [0x99d9] = "\x07\x64\x72", + [0x99da] = "\x07\x64\x73", [0x99db] = "\x07\x64\x71", + [0x99e0] = "\x07\x65\x4e", [0x99e1] = "\x05\x7c\x23", + [0x99e2] = "\x07\x65\x6a", [0x99e3] = "\x07\x65\x7a", + [0x99e4] = "\x07\x65\x7b", [0x99e5] = "\x07\x66\x44", + [0x9a11] = "\x05\x3d\x51", [0x9a12] = "\x04\x3c\x27", + [0x9a15] = "\x06\x5a\x49", [0x9a16] = "\x06\x5a\x4a", + [0x9a17] = "\x06\x5a\x48", [0x9a1b] = "\x06\x5a\x4b", + [0x9a1c] = "\x04\x48\x63", [0x9a1d] = "\x04\x48\x65", + [0x9a1e] = "\x05\x4b\x55", [0x9a1f] = "\x06\x64\x58", + [0x9a20] = "\x05\x4b\x54", [0x9a21] = "\x04\x48\x64", + [0x9a22] = "\x06\x64\x56", [0x9a23] = "\x06\x64\x53", + [0x9a24] = "\x06\x64\x54", [0x9a26] = "\x06\x64\x55", + [0x9a27] = "\x06\x64\x57", [0x9a2c] = "\x04\x4e\x72", + [0x9a2d] = "\x04\x4e\x71", [0x9a2e] = "\x05\x52\x7a", + [0x9a2f] = "\x05\x52\x79", [0x9a30] = "\x07\x2b\x52", + [0x9a31] = "\x07\x36\x2c", [0x9a32] = "\x05\x52\x78", + [0x9a33] = "\x05\x52\x7b", [0x9a34] = "\x04\x4e\x77", + [0x9a35] = "\x07\x2b\x50", [0x9a36] = "\x07\x2b\x54", + [0x9a37] = "\x07\x2b\x51", [0x9a38] = "\x04\x4e\x78", + [0x9a3a] = "\x07\x2b\x53", [0x9a3d] = "\x05\x5a\x36", + [0x9a3e] = "\x05\x5a\x35", [0x9a3f] = "\x04\x55\x33", + [0x9a40] = "\x07\x36\x2b", [0x9a41] = "\x07\x2b\x4f", + [0x9a42] = "\x07\x36\x2a", [0x9a43] = "\x07\x36\x29", + [0x9a46] = "\x07\x3e\x2e", [0x9a49] = "\x04\x5a\x34", + [0x9a4a] = "\x07\x3e\x32", [0x9a4b] = "\x04\x5a\x32", + [0x9a4c] = "\x07\x3e\x33", [0x9a4d] = "\x05\x60\x3f", + [0x9a4e] = "\x07\x3e\x31", [0x9a4f] = "\x07\x3e\x2d", + [0x9a53] = "\x07\x3e\x2f", [0x9a55] = "\x07\x3e\x30", + [0x9a57] = "\x05\x66\x59", [0x9a58] = "\x07\x45\x3e", + [0x9a59] = "\x04\x5e\x6f", [0x9a5a] = "\x07\x45\x3d", + [0x9a5b] = "\x05\x66\x57", [0x9a5c] = "\x07\x45\x3f", + [0x9a5d] = "\x05\x66\x52", [0x9a5e] = "\x05\x6a\x78", + [0x9a5f] = "\x05\x66\x55", [0x9a60] = "\x05\x66\x53", + [0x9a61] = "\x05\x66\x56", [0x9a62] = "\x05\x66\x58", + [0x9a63] = "\x07\x3e\x34", [0x9a66] = "\x05\x66\x54", + [0x9a6d] = "\x07\x4c\x3b", [0x9a6e] = "\x05\x6a\x7a", + [0x9a6f] = "\x05\x6a\x79", [0x9a70] = "\x07\x4c\x3a", + [0x9a71] = "\x07\x4c\x37", [0x9a72] = "\x05\x6a\x7c", + [0x9a73] = "\x05\x6a\x7d", [0x9a74] = "\x05\x6a\x7b", + [0x9a75] = "\x07\x4c\x3d", [0x9a76] = "\x07\x4c\x3e", + [0x9a78] = "\x07\x4c\x39", [0x9a79] = "\x07\x4c\x38", + [0x9a7d] = "\x07\x4c\x3c", [0x9a7e] = "\x07\x4c\x36", + [0x9a80] = "\x04\x65\x4a", [0x9a81] = "\x05\x6e\x75", + [0x9a82] = "\x05\x6e\x74", [0x9a83] = "\x05\x6e\x73", + [0x9a84] = "\x07\x51\x73", [0x9a85] = "\x07\x51\x74", + [0x9a86] = "\x07\x51\x75", [0x9a89] = "\x04\x68\x2f", + [0x9a8a] = "\x05\x72\x36", [0x9a8b] = "\x07\x56\x57", + [0x9a8c] = "\x04\x68\x2e", [0x9a8d] = "\x05\x72\x35", + [0x9a8e] = "\x05\x72\x37", [0x9a8f] = "\x07\x56\x53", + [0x9a90] = "\x07\x56\x54", [0x9a91] = "\x05\x72\x38", + [0x9a92] = "\x07\x56\x55", [0x9a93] = "\x0f\x69\x23", + [0x9a94] = "\x07\x56\x56", [0x9a95] = "\x07\x56\x52", + [0x9a97] = "\x04\x69\x6d", [0x9a98] = "\x07\x5a\x42", + [0x9a99] = "\x04\x69\x70", [0x9a9a] = "\x07\x5a\x43", + [0x9a9b] = "\x04\x69\x6f", [0x9a9c] = "\x07\x5a\x44", + [0x9aa0] = "\x07\x5d\x65", [0x9aa1] = "\x07\x5d\x66", + [0x9aa2] = "\x05\x76\x73", [0x9aa3] = "\x04\x6b\x36", + [0x9aa4] = "\x05\x76\x75", [0x9aa5] = "\x04\x6b\x37", + [0x9aa6] = "\x07\x5d\x62", [0x9aa7] = "\x05\x76\x74", + [0x9aa8] = "\x07\x5d\x67", [0x9aa9] = "\x07\x5d\x61", + [0x9aaa] = "\x07\x5d\x63", [0x9aab] = "\x07\x5d\x64", + [0x9aad] = "\x04\x6c\x3f", [0x9aae] = "\x05\x78\x50", + [0x9ab2] = "\x04\x6d\x34", [0x9ab3] = "\x07\x61\x65", + [0x9ab6] = "\x0f\x6b\x3a", [0x9ab7] = "\x07\x63\x27", + [0x9ab8] = "\x05\x7a\x4e", [0x9ab9] = "\x07\x63\x28", + [0x9abb] = "\x07\x64\x2a", [0x9abc] = "\x07\x64\x74", + [0x9abe] = "\x05\x7b\x6e", [0x9abf] = "\x04\x42\x23", + [0x9ac0] = "\x04\x48\x66", [0x9ac1] = "\x05\x46\x64", + [0x9ac2] = "\x05\x4b\x56", [0x9ac3] = "\x06\x64\x5a", + [0x9ac4] = "\x0f\x4d\x46", [0x9ac5] = "\x0f\x4d\x47", + [0x9ac6] = "\x0f\x4d\x48", [0x9ac9] = "\x06\x64\x59", + [0x9aca] = "\x07\x2b\x56", [0x9acb] = "\x0f\x53\x2e", + [0x9acc] = "\x0f\x53\x2f", [0x9ace] = "\x07\x36\x2e", + [0x9acf] = "\x07\x36\x2d", [0x9ad0] = "\x0f\x59\x2d", + [0x9ad1] = "\x0f\x59\x2e", [0x9ad5] = "\x04\x5a\x36", + [0x9ad7] = "\x05\x60\x40", [0x9ad8] = "\x0f\x5d\x6b", + [0x9ad9] = "\x0f\x5d\x6c", [0x9ada] = "\x07\x45\x40", + [0x9adc] = "\x0f\x61\x61", [0x9add] = "\x0f\x61\x62", + [0x9ade] = "\x07\x4c\x3f", [0x9adf] = "\x0f\x64\x5f", + [0x9ae0] = "\x05\x6e\x76", [0x9ae1] = "\x0f\x67\x22", + [0x9ae2] = "\x0f\x67\x23", [0x9ae3] = "\x0f\x67\x24", + [0x9ae4] = "\x0f\x67\x25", [0x9ae5] = "\x04\x68\x31", + [0x9ae6] = "\x07\x56\x58", [0x9ae7] = "\x07\x5a\x45", + [0x9ae8] = "\x07\x5d\x68", [0x9ae9] = "\x07\x5d\x69", + [0x9aea] = "\x07\x5d\x6a", [0x9aeb] = "\x07\x60\x37", + [0x9aec] = "\x0f\x6b\x73", [0x9aed] = "\x07\x61\x66", + [0x9aee] = "\x07\x61\x67", [0x9aef] = "\x07\x63\x29", + [0x9af0] = "\x07\x64\x2b", [0x9af1] = "\x04\x6e\x28", + [0x9af3] = "\x07\x65\x7c", [0x9af4] = "\x06\x50\x49", + [0x9af7] = "\x06\x50\x4a", [0x9af9] = "\x06\x5a\x4d", + [0x9afa] = "\x06\x5a\x4c", [0x9afc] = "\x0f\x46\x3a", + [0x9afd] = "\x0f\x40\x69", [0x9aff] = "\x04\x48\x68", + [0x9b00] = "\x05\x4b\x58", [0x9b01] = "\x06\x64\x60", + [0x9b03] = "\x06\x64\x5f", [0x9b04] = "\x06\x64\x5d", + [0x9b09] = "\x06\x64\x61", [0x9b0a] = "\x06\x64\x5b", + [0x9b0b] = "\x06\x64\x5c", [0x9b0f] = "\x05\x4b\x57", + [0x9b10] = "\x05\x4b\x5a", [0x9b11] = "\x05\x52\x7e", + [0x9b12] = "\x07\x2b\x57", [0x9b13] = "\x07\x2b\x5a", + [0x9b14] = "\x04\x4e\x7e", [0x9b15] = "\x07\x2b\x58", + [0x9b16] = "\x05\x53\x24", [0x9b17] = "\x04\x4f\x22", + [0x9b18] = "\x07\x2b\x5b", [0x9b19] = "\x05\x53\x23", + [0x9b1a] = "\x04\x4e\x7c", [0x9b1b] = "\x04\x4e\x7d", + [0x9b1c] = "\x05\x52\x7c", [0x9b1d] = "\x04\x4e\x7a", + [0x9b1e] = "\x05\x52\x7d", [0x9b1f] = "\x05\x53\x22", + [0x9b20] = "\x05\x53\x21", [0x9b21] = "\x07\x2b\x5c", + [0x9b22] = "\x07\x2b\x59", [0x9b26] = "\x0f\x53\x30", + [0x9b27] = "\x0f\x53\x31", [0x9b28] = "\x0f\x53\x32", + [0x9b29] = "\x0f\x53\x33", [0x9b30] = "\x07\x36\x2f", + [0x9b31] = "\x04\x55\x37", [0x9b32] = "\x07\x36\x31", + [0x9b33] = "\x05\x5a\x3a", [0x9b34] = "\x07\x36\x30", + [0x9b35] = "\x04\x55\x39", [0x9b36] = "\x04\x55\x34", + [0x9b37] = "\x04\x55\x3b", [0x9b38] = "\x05\x5a\x37", + [0x9b39] = "\x05\x5a\x39", [0x9b3a] = "\x04\x55\x3a", + [0x9b3b] = "\x04\x55\x38", [0x9b3c] = "\x07\x36\x33", + [0x9b3d] = "\x05\x5a\x38", [0x9b3f] = "\x0f\x59\x2f", + [0x9b40] = "\x0f\x59\x30", [0x9b41] = "\x0f\x59\x31", + [0x9b42] = "\x0f\x59\x33", [0x9b43] = "\x07\x36\x32", + [0x9b47] = "\x04\x5a\x3a", [0x9b48] = "\x04\x5a\x3c", + [0x9b49] = "\x07\x3e\x3a", [0x9b4a] = "\x05\x60\x41", + [0x9b4b] = "\x05\x60\x44", [0x9b4c] = "\x05\x60\x42", + [0x9b4d] = "\x07\x3e\x38", [0x9b4e] = "\x05\x60\x45", + [0x9b4f] = "\x05\x60\x46", [0x9b50] = "\x05\x60\x43", + [0x9b51] = "\x07\x3e\x35", [0x9b52] = "\x04\x5a\x39", + [0x9b53] = "\x07\x3e\x36", [0x9b55] = "\x0f\x5d\x6d", + [0x9b56] = "\x0f\x5d\x6e", [0x9b57] = "\x0f\x5d\x6f", + [0x9b58] = "\x07\x3e\x37", [0x9b5a] = "\x07\x3e\x39", + [0x9b5d] = "\x07\x3e\x3b", [0x9b5e] = "\x07\x45\x42", + [0x9b5f] = "\x05\x66\x5e", [0x9b60] = "\x04\x5e\x71", + [0x9b61] = "\x05\x66\x5c", [0x9b62] = "\x05\x66\x60", + [0x9b63] = "\x05\x66\x5f", [0x9b64] = "\x07\x45\x44", + [0x9b65] = "\x05\x66\x61", [0x9b66] = "\x07\x4c\x40", + [0x9b67] = "\x07\x45\x43", [0x9b68] = "\x04\x5e\x72", + [0x9b69] = "\x05\x66\x5a", [0x9b6a] = "\x04\x5e\x78", + [0x9b6b] = "\x05\x66\x5b", [0x9b6d] = "\x0f\x61\x63", + [0x9b6e] = "\x0f\x61\x65", [0x9b77] = "\x05\x66\x5d", + [0x9b78] = "\x07\x45\x41", [0x9b79] = "\x0f\x61\x64", + [0x9b7a] = "\x04\x62\x4d", [0x9b7b] = "\x07\x4c\x43", + [0x9b7c] = "\x07\x4c\x47", [0x9b7d] = "\x05\x6a\x7e", + [0x9b7e] = "\x05\x6b\x21", [0x9b7f] = "\x05\x6b\x23", + [0x9b80] = "\x04\x62\x50", [0x9b81] = "\x07\x4c\x48", + [0x9b82] = "\x07\x4c\x46", [0x9b83] = "\x07\x4c\x41", + [0x9b84] = "\x05\x6b\x24", [0x9b85] = "\x05\x6b\x22", + [0x9b86] = "\x07\x4c\x45", [0x9b87] = "\x07\x4c\x42", + [0x9b88] = "\x04\x62\x4b", [0x9b89] = "\x07\x4c\x44", + [0x9b8b] = "\x0f\x64\x60", [0x9b8c] = "\x0f\x64\x61", + [0x9b8d] = "\x0f\x64\x63", [0x9b96] = "\x05\x6e\x7c", + [0x9b97] = "\x07\x51\x76", [0x9b98] = "\x05\x6e\x77", + [0x9b99] = "\x05\x6e\x7b", [0x9b9a] = "\x05\x6e\x7a", + [0x9b9b] = "\x05\x6e\x79", [0x9b9c] = "\x04\x65\x50", + [0x9b9d] = "\x04\x65\x4c", [0x9b9e] = "\x05\x6e\x7e", + [0x9b9f] = "\x05\x6e\x78", [0x9ba0] = "\x04\x65\x4b", + [0x9ba1] = "\x07\x51\x77", [0x9ba2] = "\x07\x51\x78", + [0x9ba3] = "\x07\x51\x7b", [0x9ba6] = "\x07\x51\x7c", + [0x9ba7] = "\x0f\x67\x26", [0x9ba8] = "\x0f\x67\x27", + [0x9ba9] = "\x0f\x67\x28", [0x9bae] = "\x05\x6e\x7d", + [0x9baf] = "\x05\x72\x3b", [0x9bb0] = "\x05\x72\x3e", + [0x9bb1] = "\x05\x72\x3a", [0x9bb2] = "\x07\x56\x59", + [0x9bb3] = "\x04\x68\x32", [0x9bb4] = "\x04\x68\x34", + [0x9bb5] = "\x05\x72\x39", [0x9bb6] = "\x04\x68\x33", + [0x9bb7] = "\x05\x72\x3d", [0x9bb8] = "\x07\x56\x5a", + [0x9bb9] = "\x05\x72\x3c", [0x9bba] = "\x07\x56\x5e", + [0x9bbc] = "\x0f\x69\x24", [0x9bbd] = "\x07\x56\x5b", + [0x9bbe] = "\x07\x56\x5c", [0x9bc3] = "\x05\x75\x21", + [0x9bc4] = "\x05\x74\x7c", [0x9bc5] = "\x07\x5a\x46", + [0x9bc6] = "\x05\x75\x22", [0x9bc7] = "\x05\x74\x7e", + [0x9bc8] = "\x05\x74\x7b", [0x9bc9] = "\x05\x75\x25", + [0x9bca] = "\x05\x75\x24", [0x9bcb] = "\x05\x75\x23", + [0x9bcc] = "\x05\x74\x7d", [0x9bcd] = "\x05\x75\x26", + [0x9bce] = "\x07\x56\x5d", [0x9bcf] = "\x04\x69\x73", + [0x9bd0] = "\x07\x5a\x47", [0x9bd1] = "\x07\x5a\x48", + [0x9bd4] = "\x0f\x6a\x3b", [0x9bd6] = "\x0f\x6a\x3c", + [0x9bdb] = "\x05\x76\x77", [0x9bdc] = "\x04\x6b\x38", + [0x9bdd] = "\x04\x6b\x39", [0x9bde] = "\x05\x76\x76", + [0x9bdf] = "\x07\x5d\x6c", [0x9be0] = "\x07\x5d\x6d", + [0x9be4] = "\x07\x5d\x6b", [0x9be5] = "\x0f\x6b\x3b", + [0x9be6] = "\x04\x6c\x40", [0x9be7] = "\x07\x60\x38", + [0x9be8] = "\x05\x78\x51", [0x9be9] = "\x04\x6c\x44", + [0x9bed] = "\x04\x6c\x42", [0x9bf0] = "\x05\x79\x65", + [0x9bf1] = "\x07\x61\x68", [0x9bf2] = "\x05\x79\x64", + [0x9bf3] = "\x04\x6d\x36", [0x9bf4] = "\x0f\x6c\x42", + [0x9bf5] = "\x0f\x6c\x43", [0x9bf8] = "\x07\x61\x69", + [0x9bfa] = "\x05\x7a\x4f", [0x9bfb] = "\x07\x63\x2a", + [0x9bff] = "\x07\x63\x2b", [0x9c01] = "\x07\x64\x2c", + [0x9c02] = "\x04\x6e\x29", [0x9c03] = "\x05\x7b\x26", + [0x9c04] = "\x0f\x6c\x72", [0x9c05] = "\x07\x64\x77", + [0x9c06] = "\x07\x64\x76", [0x9c07] = "\x05\x7b\x4e", + [0x9c09] = "\x04\x6e\x54", [0x9c0a] = "\x06\x23\x3d", + [0x9c0b] = "\x06\x23\x3c", [0x9c0c] = "\x05\x44\x4b", + [0x9c0d] = "\x05\x4b\x5b", [0x9c0e] = "\x05\x4b\x5c", + [0x9c0f] = "\x06\x64\x62", [0x9c10] = "\x07\x2b\x5d", + [0x9c11] = "\x07\x36\x34", [0x9c12] = "\x07\x3e\x3c", + [0x9c13] = "\x07\x45\x45", [0x9c14] = "\x04\x5e\x79", + [0x9c15] = "\x07\x51\x7e", [0x9c16] = "\x07\x56\x5f", + [0x9c17] = "\x05\x72\x40", [0x9c19] = "\x07\x5a\x49", + [0x9c1c] = "\x07\x60\x3a", [0x9c1d] = "\x07\x60\x39", + [0x9c1e] = "\x05\x78\x53", [0x9c1f] = "\x05\x7b\x4f", + [0x9c20] = "\x07\x2b\x5e", [0x9c21] = "\x04\x4f\x23", + [0x9c22] = "\x04\x55\x3c", [0x9c23] = "\x07\x45\x46", + [0x9c24] = "\x07\x52\x21", [0x9c25] = "\x07\x56\x61", + [0x9c26] = "\x07\x56\x60", [0x9c27] = "\x07\x5a\x4a", + [0x9c28] = "\x07\x5d\x6e", [0x9c29] = "\x0f\x6c\x73", + [0x9c2a] = "\x05\x7b\x50", [0x9c2b] = "\x04\x42\x24", + [0x9c2c] = "\x06\x5a\x4e", [0x9c2d] = "\x06\x64\x64", + [0x9c2e] = "\x06\x64\x63", [0x9c2f] = "\x07\x2b\x5f", + [0x9c31] = "\x07\x36\x38", [0x9c32] = "\x04\x55\x3e", + [0x9c33] = "\x05\x5a\x3b", [0x9c34] = "\x07\x36\x36", + [0x9c35] = "\x07\x36\x35", [0x9c36] = "\x04\x55\x3d", + [0x9c37] = "\x07\x36\x37", [0x9c39] = "\x05\x60\x47", + [0x9c3c] = "\x07\x3e\x3d", [0x9c3e] = "\x04\x5e\x7a", + [0x9c3f] = "\x07\x45\x48", [0x9c40] = "\x07\x45\x49", + [0x9c41] = "\x07\x45\x47", [0x9c43] = "\x07\x4c\x49", + [0x9c44] = "\x05\x6b\x25", [0x9c45] = "\x07\x4c\x4a", + [0x9c47] = "\x04\x65\x51", [0x9c48] = "\x07\x52\x24", + [0x9c49] = "\x07\x52\x23", [0x9c4a] = "\x07\x52\x22", + [0x9c4b] = "\x07\x52\x25", [0x9c4c] = "\x07\x56\x62", + [0x9c4d] = "\x04\x68\x35", [0x9c4e] = "\x07\x56\x64", + [0x9c4f] = "\x05\x72\x42", [0x9c50] = "\x07\x56\x63", + [0x9c51] = "\x07\x56\x65", [0x9c52] = "\x07\x56\x66", + [0x9c53] = "\x05\x75\x27", [0x9c54] = "\x07\x5a\x4c", + [0x9c56] = "\x07\x5d\x71", [0x9c57] = "\x07\x5d\x72", + [0x9c58] = "\x05\x76\x78", [0x9c59] = "\x04\x69\x75", + [0x9c5a] = "\x04\x6b\x3a", [0x9c5b] = "\x07\x5d\x70", + [0x9c5c] = "\x05\x76\x79", [0x9c5d] = "\x07\x5d\x6f", + [0x9c5f] = "\x07\x5d\x73", [0x9c60] = "\x04\x6c\x46", + [0x9c61] = "\x04\x6c\x45", [0x9c62] = "\x07\x5d\x74", + [0x9c63] = "\x07\x60\x3b", [0x9c64] = "\x07\x61\x6b", + [0x9c65] = "\x07\x61\x6c", [0x9c66] = "\x05\x7a\x50", + [0x9c67] = "\x07\x63\x2c", [0x9c68] = "\x07\x63\x2d", + [0x9c69] = "\x07\x63\x2e", [0x9c6b] = "\x04\x6e\x2a", + [0x9c6c] = "\x07\x64\x2d", [0x9c6d] = "\x07\x64\x79", + [0x9c6f] = "\x07\x64\x78", [0x9c70] = "\x07\x64\x7a", + [0x9c71] = "\x07\x65\x4f", [0x9c72] = "\x05\x7c\x24", + [0x9c73] = "\x04\x6e\x51", [0x9c74] = "\x05\x7c\x2d", + [0x9c75] = "\x07\x65\x7d", [0x9c77] = "\x07\x66\x4a", + [0x9c78] = "\x07\x66\x4b", [0x9c79] = "\x06\x50\x4b", + [0x9c7a] = "\x05\x3d\x53", [0x9c7d] = "\x06\x5a\x52", + [0x9c7e] = "\x05\x44\x4e", [0x9c7f] = "\x06\x5a\x51", + [0x9c80] = "\x04\x42\x26", [0x9c81] = "\x05\x44\x4c", + [0x9c82] = "\x06\x5a\x50", [0x9c83] = "\x05\x44\x4d", + [0x9c84] = "\x04\x42\x25", [0x9c85] = "\x06\x5a\x4f", + [0x9c86] = "\x0f\x39\x30", [0x9c87] = "\x0f\x39\x2f", + [0x9c88] = "\x06\x5a\x53", [0x9c8a] = "\x05\x4b\x5f", + [0x9c8b] = "\x05\x4b\x60", [0x9c8c] = "\x05\x4b\x61", + [0x9c8d] = "\x05\x4b\x5e", [0x9c8e] = "\x05\x4b\x5d", + [0x9c8f] = "\x05\x4b\x62", [0x9c90] = "\x06\x64\x68", + [0x9c91] = "\x06\x64\x65", [0x9c94] = "\x06\x64\x69", + [0x9c95] = "\x0f\x4d\x49", [0x9c96] = "\x0f\x4d\x4a", + [0x9c97] = "\x0f\x4d\x4b", [0x9c98] = "\x06\x64\x6b", + [0x9c99] = "\x06\x64\x66", [0x9c9a] = "\x06\x64\x6e", + [0x9c9b] = "\x06\x64\x6c", [0x9c9c] = "\x06\x64\x6d", + [0x9c9d] = "\x06\x64\x6a", [0x9c9e] = "\x06\x64\x67", + [0x9ca1] = "\x04\x4f\x27", [0x9ca2] = "\x05\x53\x29", + [0x9ca3] = "\x07\x2b\x61", [0x9ca5] = "\x07\x2b\x60", + [0x9ca6] = "\x05\x53\x28", [0x9ca7] = "\x05\x53\x2b", + [0x9ca8] = "\x05\x5a\x41", [0x9ca9] = "\x05\x53\x2a", + [0x9caa] = "\x04\x4f\x26", [0x9cab] = "\x07\x2b\x63", + [0x9cac] = "\x05\x53\x25", [0x9cae] = "\x0f\x53\x34", + [0x9caf] = "\x0f\x53\x35", [0x9cb0] = "\x0f\x53\x36", + [0x9cb3] = "\x05\x53\x27", [0x9cb6] = "\x07\x2b\x62", + [0x9cb9] = "\x05\x53\x26", [0x9cbb] = "\x05\x5a\x3c", + [0x9cbc] = "\x07\x36\x3a", [0x9cbd] = "\x05\x5a\x45", + [0x9cbe] = "\x05\x5a\x43", [0x9cbf] = "\x07\x36\x39", + [0x9cc0] = "\x04\x55\x40", [0x9cc1] = "\x05\x5a\x44", + [0x9cc2] = "\x07\x36\x3b", [0x9cc4] = "\x0f\x59\x34", + [0x9cc5] = "\x05\x5a\x3e", [0x9cc6] = "\x05\x5a\x3d", + [0x9cc7] = "\x05\x5a\x3f", [0x9cc8] = "\x05\x5a\x42", + [0x9cc9] = "\x07\x36\x3c", [0x9ccb] = "\x05\x5a\x40", + [0x9ccc] = "\x04\x5a\x3d", [0x9ccd] = "\x05\x60\x49", + [0x9cce] = "\x05\x60\x4c", [0x9ccf] = "\x05\x60\x50", + [0x9cd0] = "\x04\x5a\x3e", [0x9cd1] = "\x07\x3e\x3e", + [0x9cd2] = "\x05\x60\x48", [0x9cd3] = "\x05\x60\x4a", + [0x9cd4] = "\x05\x60\x4f", [0x9cd5] = "\x05\x60\x4d", + [0x9cd6] = "\x07\x3e\x40", [0x9cd8] = "\x07\x3e\x41", + [0x9cd9] = "\x07\x3e\x43", [0x9cda] = "\x0f\x5d\x70", + [0x9cdb] = "\x0f\x5d\x71", [0x9cdc] = "\x0f\x5d\x72", + [0x9cdd] = "\x05\x60\x4e", [0x9cdf] = "\x07\x3e\x3f", + [0x9ce0] = "\x07\x3e\x42", [0x9ce1] = "\x05\x60\x4b", + [0x9ce2] = "\x05\x66\x63", [0x9ce3] = "\x07\x45\x4b", + [0x9ce4] = "\x04\x5e\x7b", [0x9ce5] = "\x05\x66\x69", + [0x9ce6] = "\x07\x45\x4e", [0x9ce7] = "\x05\x66\x67", + [0x9ce8] = "\x05\x66\x65", [0x9ce9] = "\x07\x45\x4f", + [0x9cea] = "\x07\x45\x4c", [0x9cec] = "\x0f\x61\x67", + [0x9ced] = "\x07\x45\x4a", [0x9cee] = "\x07\x45\x51", + [0x9cef] = "\x05\x66\x62", [0x9cf0] = "\x07\x45\x4d", + [0x9cf1] = "\x07\x45\x50", [0x9cf2] = "\x05\x66\x66", + [0x9cf5] = "\x05\x6b\x26", [0x9cf6] = "\x05\x6b\x29", + [0x9cf7] = "\x07\x4c\x4b", [0x9cf8] = "\x05\x6b\x27", + [0x9cf9] = "\x07\x4c\x4c", [0x9cfa] = "\x07\x4c\x4d", + [0x9cfc] = "\x0f\x64\x64", [0x9cfd] = "\x0f\x64\x65", + [0x9cfe] = "\x0f\x64\x66", [0x9cff] = "\x0f\x64\x67", + [0x9d00] = "\x05\x66\x64", [0x9d03] = "\x05\x6b\x28", + [0x9d06] = "\x07\x52\x2b", [0x9d07] = "\x04\x65\x52", + [0x9d08] = "\x07\x52\x2a", [0x9d09] = "\x05\x6f\x21", + [0x9d0a] = "\x07\x52\x29", [0x9d0b] = "\x07\x52\x28", + [0x9d0d] = "\x05\x6f\x22", [0x9d0e] = "\x07\x52\x26", + [0x9d0f] = "\x0f\x67\x29", [0x9d10] = "\x05\x72\x44", + [0x9d11] = "\x05\x72\x46", [0x9d12] = "\x05\x72\x48", + [0x9d13] = "\x04\x68\x37", [0x9d14] = "\x07\x56\x67", + [0x9d15] = "\x07\x56\x68", [0x9d16] = "\x0f\x69\x25", + [0x9d18] = "\x05\x72\x45", [0x9d19] = "\x05\x72\x43", + [0x9d1b] = "\x07\x56\x69", [0x9d1c] = "\x05\x72\x47", + [0x9d1d] = "\x05\x75\x2a", [0x9d1e] = "\x04\x62\x51", + [0x9d1f] = "\x07\x5a\x50", [0x9d20] = "\x04\x69\x78", + [0x9d21] = "\x05\x75\x28", [0x9d22] = "\x07\x5a\x4e", + [0x9d23] = "\x04\x69\x79", [0x9d24] = "\x05\x75\x2b", + [0x9d26] = "\x0f\x6a\x3d", [0x9d28] = "\x05\x75\x2c", + [0x9d29] = "\x05\x75\x29", [0x9d2a] = "\x04\x69\x7a", + [0x9d2b] = "\x0f\x67\x2a", [0x9d2d] = "\x07\x5a\x4d", + [0x9d2e] = "\x05\x76\x7b", [0x9d2f] = "\x05\x76\x7a", + [0x9d30] = "\x0f\x69\x26", [0x9d31] = "\x05\x78\x54", + [0x9d32] = "\x05\x78\x55", [0x9d33] = "\x04\x6c\x47", + [0x9d34] = "\x07\x60\x3f", [0x9d36] = "\x07\x60\x3e", + [0x9d37] = "\x07\x60\x40", [0x9d38] = "\x07\x60\x3d", + [0x9d3a] = "\x05\x79\x67", [0x9d3b] = "\x05\x79\x66", + [0x9d3d] = "\x0f\x6c\x44", [0x9d3f] = "\x07\x63\x2f", + [0x9d40] = "\x04\x6e\x2b", [0x9d41] = "\x07\x64\x2e", + [0x9d42] = "\x07\x64\x2f", [0x9d44] = "\x04\x6e\x41", + [0x9d45] = "\x05\x7b\x51", [0x9d47] = "\x05\x7b\x6f", + [0x9d48] = "\x05\x7c\x25", [0x9d4a] = "\x05\x7c\x40", + [0x9d4b] = "\x04\x30\x43", [0x9d4c] = "\x04\x42\x2a", + [0x9d4d] = "\x04\x42\x27", [0x9d4e] = "\x06\x5a\x55", + [0x9d4f] = "\x04\x42\x28", [0x9d50] = "\x06\x5a\x56", + [0x9d51] = "\x05\x44\x4f", [0x9d53] = "\x0f\x46\x3b", + [0x9d54] = "\x06\x64\x6f", [0x9d55] = "\x05\x4b\x65", + [0x9d56] = "\x04\x48\x6c", [0x9d57] = "\x05\x4b\x63", + [0x9d58] = "\x0f\x4d\x4c", [0x9d59] = "\x0f\x4d\x4d", + [0x9d5b] = "\x05\x4b\x66", [0x9d60] = "\x04\x4f\x2f", + [0x9d61] = "\x04\x4f\x33", [0x9d62] = "\x04\x4f\x31", + [0x9d63] = "\x04\x4f\x2d", [0x9d64] = "\x07\x2b\x68", + [0x9d65] = "\x05\x53\x31", [0x9d66] = "\x05\x53\x30", + [0x9d67] = "\x07\x2b\x65", [0x9d68] = "\x07\x2b\x64", + [0x9d69] = "\x05\x53\x2e", [0x9d6a] = "\x04\x4f\x38", + [0x9d6b] = "\x05\x53\x33", [0x9d6c] = "\x05\x53\x2c", + [0x9d6d] = "\x05\x53\x2d", [0x9d6e] = "\x07\x2b\x6c", + [0x9d6f] = "\x07\x2b\x66", [0x9d70] = "\x04\x4f\x36", + [0x9d71] = "\x05\x53\x32", [0x9d73] = "\x0f\x53\x37", + [0x9d74] = "\x0f\x53\x3a", [0x9d75] = "\x0f\x53\x3d", + [0x9d76] = "\x07\x2b\x6b", [0x9d77] = "\x07\x2b\x67", + [0x9d78] = "\x07\x2b\x69", [0x9d79] = "\x04\x4f\x2e", + [0x9d7c] = "\x0f\x53\x39", [0x9d80] = "\x05\x53\x2f", + [0x9d81] = "\x05\x5a\x48", [0x9d82] = "\x05\x5a\x46", + [0x9d83] = "\x07\x36\x3d", [0x9d84] = "\x05\x5a\x49", + [0x9d85] = "\x04\x55\x46", [0x9d86] = "\x04\x5a\x46", + [0x9d87] = "\x05\x5a\x4e", [0x9d88] = "\x05\x5a\x4d", + [0x9d89] = "\x04\x55\x49", [0x9d8a] = "\x07\x36\x43", + [0x9d8b] = "\x07\x36\x3e", [0x9d8c] = "\x07\x36\x41", + [0x9d8d] = "\x07\x36\x40", [0x9d8e] = "\x05\x5a\x4c", + [0x9d91] = "\x07\x36\x44", [0x9d92] = "\x0f\x59\x36", + [0x9d93] = "\x0f\x59\x37", [0x9d94] = "\x0f\x59\x39", + [0x9d95] = "\x0f\x59\x3a", [0x9d96] = "\x05\x5a\x4b", + [0x9d9a] = "\x07\x36\x42", [0x9d9b] = "\x0f\x59\x35", + [0x9d9e] = "\x05\x5a\x47", [0x9da0] = "\x07\x36\x3f", + [0x9da2] = "\x05\x60\x56", [0x9da3] = "\x04\x5a\x48", + [0x9da4] = "\x05\x60\x57", [0x9da5] = "\x05\x60\x54", + [0x9da6] = "\x05\x60\x52", [0x9da7] = "\x04\x5a\x47", + [0x9da8] = "\x07\x3e\x4b", [0x9da9] = "\x05\x60\x55", + [0x9daa] = "\x07\x3e\x46", [0x9dab] = "\x07\x3e\x4d", + [0x9dac] = "\x07\x3e\x45", [0x9dad] = "\x04\x5a\x4b", + [0x9dae] = "\x07\x3e\x4c", [0x9daf] = "\x05\x60\x5a", + [0x9db0] = "\x05\x60\x58", [0x9db1] = "\x07\x3e\x44", + [0x9db6] = "\x04\x5a\x4a", [0x9db7] = "\x0f\x46\x3c", + [0x9db8] = "\x0f\x5d\x73", [0x9db9] = "\x0f\x5d\x74", + [0x9dba] = "\x0f\x5d\x75", [0x9dbb] = "\x0f\x5d\x77", + [0x9dbc] = "\x0f\x5d\x79", [0x9dbd] = "\x07\x3e\x48", + [0x9dbf] = "\x05\x60\x5b", [0x9dc2] = "\x05\x60\x53", + [0x9dc3] = "\x07\x3e\x4a", [0x9dcb] = "\x05\x60\x51", + [0x9dcc] = "\x05\x60\x59", [0x9dcd] = "\x05\x66\x77", + [0x9dce] = "\x05\x66\x74", [0x9dcf] = "\x05\x66\x70", + [0x9dd0] = "\x05\x66\x6b", [0x9dd1] = "\x07\x45\x53", + [0x9dd2] = "\x04\x5f\x28", [0x9dd3] = "\x05\x66\x6d", + [0x9dd4] = "\x07\x45\x52", [0x9dd5] = "\x05\x66\x6a", + [0x9dd6] = "\x05\x66\x71", [0x9dd7] = "\x05\x66\x75", + [0x9dd8] = "\x05\x66\x72", [0x9dd9] = "\x05\x66\x6f", + [0x9dda] = "\x05\x66\x6c", [0x9ddc] = "\x07\x45\x54", + [0x9ddd] = "\x0f\x61\x68", [0x9dde] = "\x0f\x61\x69", + [0x9ddf] = "\x0f\x61\x6a", [0x9de0] = "\x0f\x61\x6b", + [0x9de1] = "\x0f\x61\x6c", [0x9de2] = "\x0f\x61\x6d", + [0x9de3] = "\x0f\x61\x6e", [0x9de4] = "\x0f\x61\x6f", + [0x9de5] = "\x0f\x61\x71", [0x9de6] = "\x0f\x61\x73", + [0x9dec] = "\x07\x45\x55", [0x9dee] = "\x07\x3e\x47", + [0x9df4] = "\x05\x66\x76", [0x9df5] = "\x05\x66\x73", + [0x9df7] = "\x07\x4c\x5b", [0x9df8] = "\x07\x4c\x58", + [0x9df9] = "\x04\x62\x5e", [0x9dfa] = "\x07\x4c\x52", + [0x9dfb] = "\x05\x6b\x2d", [0x9dfc] = "\x04\x62\x52", + [0x9dfd] = "\x05\x6b\x2f", [0x9dfe] = "\x07\x4c\x4f", + [0x9dff] = "\x07\x4c\x51", [0x9e00] = "\x04\x62\x5f", + [0x9e01] = "\x05\x66\x78", [0x9e02] = "\x04\x62\x63", + [0x9e03] = "\x05\x6b\x32", [0x9e04] = "\x04\x62\x5b", + [0x9e05] = "\x07\x4c\x4e", [0x9e06] = "\x04\x62\x5a", + [0x9e07] = "\x04\x62\x65", [0x9e08] = "\x07\x4c\x5a", + [0x9e09] = "\x07\x4c\x53", [0x9e0a] = "\x07\x4c\x59", + [0x9e0b] = "\x04\x62\x58", [0x9e0c] = "\x07\x4c\x55", + [0x9e0d] = "\x05\x6b\x36", [0x9e0e] = "\x05\x6b\x2e", + [0x9e0f] = "\x07\x4c\x50", [0x9e10] = "\x05\x6b\x34", + [0x9e12] = "\x0f\x64\x6e", [0x9e17] = "\x0f\x64\x68", + [0x9e18] = "\x0f\x64\x6a", [0x9e19] = "\x0f\x64\x6c", + [0x9e1a] = "\x0f\x64\x6f", [0x9e1b] = "\x0f\x64\x70", + [0x9e1c] = "\x0f\x64\x71", [0x9e1f] = "\x05\x6b\x30", + [0x9e20] = "\x07\x4c\x54", [0x9e22] = "\x07\x4c\x57", + [0x9e25] = "\x04\x62\x53", [0x9e27] = "\x05\x6b\x37", + [0x9e28] = "\x05\x6b\x2a", [0x9e2d] = "\x0f\x64\x69", + [0x9e39] = "\x05\x6b\x2c", [0x9e3a] = "\x0f\x61\x70", + [0x9e3c] = "\x07\x4c\x56", [0x9e3e] = "\x05\x6f\x27", + [0x9e3f] = "\x07\x52\x2e", [0x9e40] = "\x05\x6f\x26", + [0x9e41] = "\x05\x6b\x38", [0x9e42] = "\x05\x6f\x29", + [0x9e43] = "\x07\x52\x2c", [0x9e44] = "\x04\x65\x58", + [0x9e45] = "\x05\x6f\x2b", [0x9e46] = "\x07\x52\x2f", + [0x9e47] = "\x07\x52\x2d", [0x9e48] = "\x05\x6f\x28", + [0x9e49] = "\x04\x65\x56", [0x9e4a] = "\x05\x6f\x24", + [0x9e4b] = "\x07\x52\x32", [0x9e4c] = "\x04\x65\x5e", + [0x9e4d] = "\x05\x6f\x25", [0x9e4e] = "\x05\x6f\x23", + [0x9e4f] = "\x04\x65\x60", [0x9e50] = "\x07\x52\x30", + [0x9e51] = "\x05\x6f\x2c", [0x9e52] = "\x07\x52\x34", + [0x9e56] = "\x0f\x67\x2b", [0x9e57] = "\x0f\x67\x2c", + [0x9e58] = "\x0f\x67\x2d", [0x9e59] = "\x0f\x67\x2f", + [0x9e5a] = "\x0f\x67\x30", [0x9e5b] = "\x0f\x67\x31", + [0x9e5c] = "\x0f\x67\x32", [0x9e5e] = "\x0f\x67\x2e", + [0x9e62] = "\x05\x6f\x2a", [0x9e68] = "\x0f\x67\x34", + [0x9e71] = "\x05\x72\x4a", [0x9e72] = "\x04\x68\x3f", + [0x9e73] = "\x05\x72\x4f", [0x9e74] = "\x05\x72\x53", + [0x9e75] = "\x05\x77\x23", [0x9e76] = "\x05\x72\x49", + [0x9e77] = "\x05\x72\x52", [0x9e78] = "\x04\x68\x38", + [0x9e79] = "\x07\x56\x71", [0x9e7a] = "\x05\x72\x4c", + [0x9e7b] = "\x07\x56\x72", [0x9e7c] = "\x05\x72\x57", + [0x9e7d] = "\x07\x56\x6d", [0x9e7e] = "\x05\x72\x54", + [0x9e7f] = "\x05\x72\x4d", [0x9e80] = "\x07\x56\x73", + [0x9e81] = "\x07\x56\x75", [0x9e82] = "\x07\x56\x6a", + [0x9e83] = "\x07\x56\x74", [0x9e84] = "\x05\x72\x56", + [0x9e85] = "\x07\x56\x6e", [0x9e86] = "\x07\x56\x6f", + [0x9e8d] = "\x0f\x69\x28", [0x9e8e] = "\x0f\x69\x29", + [0x9e8f] = "\x0f\x69\x2b", [0x9e90] = "\x0f\x69\x2c", + [0x9e91] = "\x0f\x69\x2d", [0x9e92] = "\x0f\x69\x2e", + [0x9e93] = "\x0f\x69\x2f", [0x9e94] = "\x0f\x69\x30", + [0x9e95] = "\x0f\x69\x31", [0x9e96] = "\x0f\x69\x32", + [0x9e99] = "\x07\x56\x6b", [0x9e9a] = "\x07\x56\x6c", + [0x9e9b] = "\x05\x72\x55", [0x9e9c] = "\x07\x56\x70", + [0x9eab] = "\x05\x72\x50", [0x9ead] = "\x07\x5a\x54", + [0x9eae] = "\x07\x5a\x52", [0x9eaf] = "\x05\x75\x32", + [0x9eb0] = "\x04\x6a\x22", [0x9eb1] = "\x05\x75\x2e", + [0x9eb2] = "\x05\x75\x2f", [0x9eb3] = "\x07\x5a\x5a", + [0x9eb4] = "\x07\x5a\x57", [0x9eb5] = "\x05\x75\x30", + [0x9eb6] = "\x07\x5a\x5c", [0x9eb7] = "\x07\x5a\x59", + [0x9eb8] = "\x05\x75\x34", [0x9eb9] = "\x07\x5a\x56", + [0x9eba] = "\x07\x5a\x5b", [0x9ebb] = "\x07\x5a\x53", + [0x9ebc] = "\x07\x5a\x55", [0x9ebd] = "\x07\x5a\x51", + [0x9ebe] = "\x07\x5a\x5e", [0x9ec5] = "\x0f\x6a\x41", + [0x9ec6] = "\x0f\x6a\x42", [0x9ec7] = "\x0f\x6a\x43", + [0x9ec8] = "\x0f\x6a\x40", [0x9ec9] = "\x07\x5a\x5f", + [0x9eca] = "\x05\x75\x33", [0x9ecb] = "\x07\x5a\x58", + [0x9ecd] = "\x07\x5a\x5d", [0x9ed6] = "\x05\x75\x31", + [0x9ed8] = "\x05\x76\x7e", [0x9ed9] = "\x07\x5d\x78", + [0x9eda] = "\x05\x77\x22", [0x9edb] = "\x04\x6b\x3e", + [0x9edc] = "\x04\x6b\x3f", [0x9edd] = "\x05\x76\x7c", + [0x9ede] = "\x07\x5d\x77", [0x9edf] = "\x04\x65\x5c", + [0x9ee0] = "\x07\x60\x46", [0x9ee1] = "\x07\x5d\x75", + [0x9ee2] = "\x07\x5e\x22", [0x9ee3] = "\x07\x5d\x76", + [0x9ee4] = "\x05\x76\x7d", [0x9ee5] = "\x07\x5e\x21", + [0x9ee6] = "\x07\x5d\x7c", [0x9ee7] = "\x05\x77\x21", + [0x9ee8] = "\x07\x5d\x79", [0x9eea] = "\x0f\x6b\x3d", + [0x9eeb] = "\x0f\x6b\x3f", [0x9ef2] = "\x07\x5d\x7a", + [0x9ef4] = "\x07\x5d\x7d", [0x9ef5] = "\x07\x5d\x7e", + [0x9ef6] = "\x07\x5d\x7b", [0x9ef8] = "\x0f\x6b\x3c", + [0x9f02] = "\x07\x60\x43", [0x9f03] = "\x05\x78\x5c", + [0x9f04] = "\x05\x78\x60", [0x9f05] = "\x05\x78\x5a", + [0x9f06] = "\x07\x60\x41", [0x9f07] = "\x04\x6c\x4f", + [0x9f08] = "\x04\x6c\x4c", [0x9f09] = "\x05\x78\x59", + [0x9f0a] = "\x05\x78\x61", [0x9f0b] = "\x04\x6c\x4b", + [0x9f0c] = "\x05\x78\x5f", [0x9f0d] = "\x05\x78\x5e", + [0x9f0e] = "\x05\x78\x57", [0x9f10] = "\x07\x60\x4b", + [0x9f11] = "\x07\x60\x47", [0x9f12] = "\x05\x78\x58", + [0x9f16] = "\x0f\x6b\x75", [0x9f17] = "\x0f\x6b\x78", + [0x9f18] = "\x07\x60\x48", [0x9f1c] = "\x07\x60\x42", + [0x9f1d] = "\x07\x60\x44", [0x9f1e] = "\x07\x60\x45", + [0x9f1f] = "\x05\x78\x5d", [0x9f20] = "\x07\x60\x4a", + [0x9f21] = "\x07\x60\x49", [0x9f25] = "\x07\x61\x73", + [0x9f26] = "\x05\x79\x68", [0x9f27] = "\x04\x6d\x38", + [0x9f28] = "\x05\x79\x69", [0x9f29] = "\x07\x61\x6e", + [0x9f2a] = "\x07\x60\x7a", [0x9f2b] = "\x07\x61\x71", + [0x9f2c] = "\x07\x61\x6f", [0x9f2d] = "\x05\x79\x6b", + [0x9f2e] = "\x07\x61\x72", [0x9f31] = "\x07\x61\x70", + [0x9f32] = "\x0f\x6c\x45", [0x9f33] = "\x0f\x6c\x46", + [0x9f34] = "\x05\x79\x6a", [0x9f35] = "\x07\x61\x6d", + [0x9f3b] = "\x07\x63\x35", [0x9f3c] = "\x07\x63\x30", + [0x9f3d] = "\x07\x63\x32", [0x9f3e] = "\x07\x63\x33", + [0x9f3f] = "\x07\x63\x34", [0x9f40] = "\x05\x7a\x51", + [0x9f41] = "\x05\x7a\x52", [0x9f42] = "\x0f\x6c\x5a", + [0x9f43] = "\x0f\x6c\x5b", [0x9f44] = "\x0f\x6c\x5c", + [0x9f48] = "\x0f\x6c\x5d", [0x9f4c] = "\x07\x63\x31", + [0x9f4d] = "\x05\x7b\x28", [0x9f4e] = "\x05\x7b\x27", + [0x9f4f] = "\x07\x64\x30", [0x9f50] = "\x05\x7b\x29", + [0x9f51] = "\x0f\x6c\x74", [0x9f53] = "\x07\x64\x31", + [0x9f55] = "\x05\x7b\x2a", [0x9f58] = "\x07\x64\x32", + [0x9f5a] = "\x07\x64\x7e", [0x9f5b] = "\x05\x7b\x53", + [0x9f5c] = "\x05\x7b\x52", [0x9f5d] = "\x05\x7b\x55", + [0x9f5e] = "\x07\x64\x7c", [0x9f5f] = "\x07\x65\x21", + [0x9f60] = "\x07\x64\x7b", [0x9f61] = "\x05\x7b\x54", + [0x9f63] = "\x07\x64\x7d", [0x9f66] = "\x0f\x6c\x75", + [0x9f67] = "\x05\x7b\x73", [0x9f68] = "\x05\x7b\x72", + [0x9f69] = "\x05\x7b\x71", [0x9f6a] = "\x05\x7b\x70", + [0x9f6b] = "\x07\x65\x50", [0x9f6c] = "\x05\x7c\x26", + [0x9f6d] = "\x0f\x6d\x2b", [0x9f6e] = "\x0f\x6d\x2c", + [0x9f70] = "\x05\x7c\x27", [0x9f71] = "\x07\x65\x6b", + [0x9f73] = "\x05\x7c\x2e", [0x9f75] = "\x05\x7c\x37", + [0x9f76] = "\x07\x66\x2f", [0x9f77] = "\x05\x7c\x36", + [0x9f80] = "\x0f\x53\x3c", [0x9f89] = "\x0f\x5d\x78", + [0x9f8d] = "\x0f\x6b\x3e", [0x9f8f] = "\x06\x50\x4c", + [0x9f90] = "\x0f\x40\x33", [0x9f91] = "\x06\x50\x4d", + [0x9f92] = "\x04\x42\x2b", [0x9f93] = "\x06\x5a\x57", + [0x9f94] = "\x05\x44\x51", [0x9f95] = "\x05\x44\x52", + [0x9f96] = "\x06\x5a\x5c", [0x9f97] = "\x06\x5a\x58", + [0x9f98] = "\x06\x5a\x59", [0x9f99] = "\x05\x44\x50", + [0x9f9b] = "\x06\x5a\x5a", [0x9f9c] = "\x06\x5a\x5b", + [0x9f9d] = "\x06\x64\x70", [0x9f9e] = "\x05\x4b\x6a", + [0x9f9f] = "\x06\x64\x71", [0x9fa0] = "\x05\x4b\x69", + [0x9fa1] = "\x04\x48\x6e", [0x9fa2] = "\x04\x48\x6f", + [0x9fa3] = "\x06\x64\x72", [0x9fa4] = "\x06\x64\x73", + [0x9fa5] = "\x06\x64\x74", [0x9fa6] = "\x04\x48\x70", + [0x9fa7] = "\x05\x4b\x68", [0x9fa9] = "\x0f\x4d\x4f", + [0x9faa] = "\x0f\x4d\x50", [0x9fab] = "\x0f\x4d\x51", + [0x9fac] = "\x05\x4b\x67", [0x9fb0] = "\x04\x4f\x45", + [0x9fb1] = "\x07\x2b\x72", [0x9fb2] = "\x07\x2b\x7d", + [0x9fb3] = "\x07\x2b\x6f", [0x9fb4] = "\x07\x2b\x73", + [0x9fb5] = "\x07\x2b\x79", [0x9fb6] = "\x05\x53\x37", + [0x9fb7] = "\x05\x53\x3b", [0x9fb8] = "\x05\x53\x3d", + [0x9fb9] = "\x05\x53\x39", [0x9fba] = "\x07\x2b\x76", + [0x9fbb] = "\x07\x2b\x7c", [0x9fbc] = "\x05\x53\x3f", + [0x9fbd] = "\x05\x53\x34", [0x9fbe] = "\x04\x4f\x3d", + [0x9fbf] = "\x05\x53\x41", [0x9fc0] = "\x05\x53\x3e", + [0x9fc1] = "\x05\x53\x35", [0x9fc2] = "\x04\x4f\x3e", + [0x9fc3] = "\x05\x53\x42", [0x9fc4] = "\x07\x2b\x7a", + [0x9fc5] = "\x04\x4f\x3c", [0x9fc6] = "\x07\x2b\x75", + [0x9fc7] = "\x04\x4f\x43", [0x9fc8] = "\x04\x4f\x3a", + [0x9fc9] = "\x05\x53\x43", [0x9fca] = "\x04\x4f\x46", + [0x9fcb] = "\x07\x2b\x70", [0x9fcc] = "\x07\x2b\x7b", + [0x9fcf] = "\x0f\x53\x40", [0x9fd0] = "\x07\x2b\x6e", + [0x9fd1] = "\x07\x2b\x77", [0x9fd2] = "\x07\x2b\x78", + [0x9fd3] = "\x05\x53\x36", [0x9fd4] = "\x05\x53\x3a", + [0x9fd5] = "\x05\x53\x40", [0x9fd6] = "\x07\x2b\x71", + [0x9fd7] = "\x07\x2b\x74", [0x9fdb] = "\x05\x53\x3c", + [0x9fdc] = "\x07\x36\x4b", [0x9fdd] = "\x05\x5a\x54", + [0x9fde] = "\x05\x5a\x56", [0x9fdf] = "\x05\x5a\x51", + [0x9fe0] = "\x05\x5a\x4f", [0x9fe1] = "\x04\x55\x4c", + [0x9fe2] = "\x05\x5a\x53", [0x9fe3] = "\x05\x5a\x59", + [0x9fe4] = "\x05\x5a\x52", [0x9fe5] = "\x07\x36\x57", + [0x9fe6] = "\x07\x36\x52", [0x9fe7] = "\x05\x5a\x57", + [0x9fe8] = "\x04\x55\x56", [0x9fe9] = "\x07\x36\x54", + [0x9fea] = "\x05\x5a\x58", [0x9feb] = "\x07\x36\x50", + [0x9fec] = "\x05\x5a\x55", [0x9fed] = "\x07\x36\x53", + [0x9fee] = "\x07\x36\x4c", [0x9ff1] = "\x07\x36\x45", + [0x9ff2] = "\x07\x36\x4e", [0x9ff3] = "\x0f\x59\x3d", + [0x9ff4] = "\x0f\x59\x3e", [0x9ff5] = "\x0f\x59\x3f", + [0x9ff6] = "\x0f\x59\x40", [0x9ff7] = "\x07\x36\x4d", + [0x9ff8] = "\x07\x36\x4f", [0x9ffc] = "\x07\x36\x58", + [0xa000] = "\x07\x36\x56", [0xa001] = "\x07\x36\x47", + [0xa007] = "\x07\x36\x48", [0xa008] = "\x07\x36\x55", + [0xa009] = "\x04\x55\x53", [0xa00a] = "\x04\x55\x51", + [0xa00b] = "\x06\x50\x4e", [0xa00c] = "\x07\x36\x49", + [0xa00d] = "\x05\x5a\x50", [0xa00f] = "\x07\x36\x46", + [0xa011] = "\x0f\x56\x33", [0xa012] = "\x07\x3e\x51", + [0xa013] = "\x04\x5a\x4c", [0xa014] = "\x05\x60\x5e", + [0xa015] = "\x05\x60\x69", [0xa016] = "\x07\x3e\x54", + [0xa017] = "\x04\x5a\x53", [0xa018] = "\x05\x60\x67", + [0xa019] = "\x07\x3e\x55", [0xa01a] = "\x05\x60\x5d", + [0xa01b] = "\x05\x60\x61", [0xa01d] = "\x07\x3e\x4e", + [0xa01e] = "\x05\x60\x64", [0xa01f] = "\x05\x60\x6b", + [0xa020] = "\x05\x60\x60", [0xa021] = "\x05\x60\x62", + [0xa022] = "\x04\x5a\x54", [0xa023] = "\x07\x3e\x57", + [0xa024] = "\x05\x60\x5c", [0xa025] = "\x05\x60\x63", + [0xa026] = "\x04\x5a\x58", [0xa027] = "\x07\x3e\x4f", + [0xa028] = "\x04\x5a\x5b", [0xa029] = "\x05\x60\x6c", + [0xa02a] = "\x07\x3e\x58", [0xa02b] = "\x07\x3e\x53", + [0xa02c] = "\x05\x60\x68", [0xa02d] = "\x05\x60\x6a", + [0xa030] = "\x0f\x5d\x7a", [0xa031] = "\x0f\x5d\x7b", + [0xa032] = "\x0f\x5d\x7c", [0xa033] = "\x0f\x5d\x7d", + [0xa034] = "\x0f\x5e\x21", [0xa035] = "\x0f\x5e\x22", + [0xa036] = "\x0f\x5e\x23", [0xa037] = "\x0f\x5e\x25", + [0xa038] = "\x07\x3e\x50", [0xa03a] = "\x05\x60\x5f", + [0xa03c] = "\x04\x5a\x5a", [0xa03d] = "\x07\x3e\x56", + [0xa03f] = "\x05\x60\x65", [0xa040] = "\x05\x60\x66", + [0xa048] = "\x07\x3e\x52", [0xa049] = "\x04\x5a\x57", + [0xa04a] = "\x07\x45\x5b", [0xa04b] = "\x05\x60\x6d", + [0xa04c] = "\x07\x45\x5f", [0xa04d] = "\x05\x66\x7d", + [0xa04e] = "\x05\x67\x25", [0xa04f] = "\x05\x67\x27", + [0xa050] = "\x04\x5f\x2e", [0xa051] = "\x05\x67\x2a", + [0xa052] = "\x05\x66\x7a", [0xa053] = "\x05\x67\x21", + [0xa054] = "\x05\x66\x7e", [0xa055] = "\x05\x66\x7b", + [0xa056] = "\x07\x45\x5d", [0xa057] = "\x07\x45\x58", + [0xa058] = "\x04\x5f\x2d", [0xa059] = "\x07\x45\x5e", + [0xa05a] = "\x05\x66\x7c", [0xa05b] = "\x05\x67\x2b", + [0xa05c] = "\x04\x5f\x30", [0xa05d] = "\x07\x45\x67", + [0xa05e] = "\x05\x67\x22", [0xa05f] = "\x07\x45\x64", + [0xa060] = "\x07\x45\x5c", [0xa061] = "\x05\x67\x28", + [0xa062] = "\x07\x45\x61", [0xa063] = "\x07\x45\x62", + [0xa064] = "\x07\x45\x66", [0xa065] = "\x05\x67\x24", + [0xa066] = "\x07\x45\x59", [0xa067] = "\x05\x67\x23", + [0xa068] = "\x07\x45\x68", [0xa069] = "\x07\x45\x56", + [0xa06a] = "\x07\x45\x60", [0xa06b] = "\x0f\x61\x74", + [0xa06c] = "\x0f\x61\x75", [0xa06d] = "\x07\x45\x57", + [0xa06e] = "\x05\x67\x29", [0xa070] = "\x07\x45\x63", + [0xa072] = "\x05\x6b\x39", [0xa077] = "\x07\x4c\x5d", + [0xa078] = "\x05\x6b\x3a", [0xa079] = "\x07\x4c\x62", + [0xa07b] = "\x05\x6b\x3e", [0xa07c] = "\x05\x6b\x4a", + [0xa07d] = "\x05\x6b\x40", [0xa07e] = "\x07\x4c\x6a", + [0xa07f] = "\x07\x4c\x64", [0xa080] = "\x05\x6b\x3b", + [0xa081] = "\x07\x4c\x68", [0xa082] = "\x07\x4c\x6b", + [0xa083] = "\x07\x4c\x63", [0xa084] = "\x05\x6b\x4c", + [0xa085] = "\x05\x6b\x3d", [0xa086] = "\x05\x6b\x4b", + [0xa087] = "\x04\x62\x6b", [0xa088] = "\x05\x6b\x42", + [0xa089] = "\x05\x6b\x45", [0xa08a] = "\x07\x4c\x60", + [0xa08b] = "\x07\x4c\x5e", [0xa08c] = "\x05\x6b\x48", + [0xa08d] = "\x05\x6b\x44", [0xa08e] = "\x07\x4c\x5c", + [0xa08f] = "\x07\x4c\x66", [0xa090] = "\x07\x4c\x6c", + [0xa091] = "\x05\x6b\x41", [0xa093] = "\x04\x62\x6d", + [0xa094] = "\x07\x4c\x69", [0xa095] = "\x05\x6b\x46", + [0xa097] = "\x0f\x64\x74", [0xa098] = "\x0f\x64\x76", + [0xa099] = "\x0f\x64\x77", [0xa09a] = "\x07\x4c\x61", + [0xa09b] = "\x05\x6b\x47", [0xa09d] = "\x07\x4c\x6f", + [0xa09e] = "\x05\x6b\x49", [0xa09f] = "\x07\x45\x69", + [0xa0a1] = "\x07\x4c\x65", [0xa0a3] = "\x07\x4c\x67", + [0xa0a5] = "\x07\x4c\x6d", [0xa0aa] = "\x05\x6b\x43", + [0xa0ad] = "\x07\x4c\x6e", [0xa0b4] = "\x07\x4c\x5f", + [0xa0b5] = "\x04\x62\x69", [0xa0b6] = "\x05\x6f\x38", + [0xa0b7] = "\x05\x6f\x30", [0xa0b8] = "\x07\x52\x3a", + [0xa0b9] = "\x04\x65\x65", [0xa0ba] = "\x05\x6f\x3e", + [0xa0bb] = "\x07\x52\x43", [0xa0bc] = "\x05\x6f\x32", + [0xa0bd] = "\x05\x6f\x42", [0xa0be] = "\x04\x62\x70", + [0xa0bf] = "\x07\x52\x36", [0xa0c0] = "\x05\x6f\x2f", + [0xa0c1] = "\x04\x65\x63", [0xa0c2] = "\x05\x6f\x31", + [0xa0c3] = "\x04\x65\x6e", [0xa0c4] = "\x04\x65\x68", + [0xa0c5] = "\x05\x6f\x33", [0xa0c6] = "\x05\x6f\x2d", + [0xa0c7] = "\x05\x6f\x37", [0xa0c8] = "\x05\x6f\x44", + [0xa0c9] = "\x05\x6f\x39", [0xa0ca] = "\x04\x65\x6d", + [0xa0cb] = "\x04\x65\x66", [0xa0cc] = "\x05\x6f\x3a", + [0xa0cd] = "\x05\x6f\x3c", [0xa0ce] = "\x05\x6f\x40", + [0xa0cf] = "\x04\x65\x67", [0xa0d0] = "\x05\x6f\x2e", + [0xa0d1] = "\x05\x6f\x3b", [0xa0d2] = "\x05\x6f\x36", + [0xa0d3] = "\x05\x6f\x3f", [0xa0d4] = "\x07\x52\x3f", + [0xa0d5] = "\x07\x52\x3b", [0xa0d6] = "\x07\x52\x40", + [0xa0d7] = "\x07\x52\x35", [0xa0d8] = "\x07\x52\x37", + [0xa0da] = "\x05\x6f\x3d", [0xa0db] = "\x05\x6f\x35", + [0xa0dc] = "\x05\x6f\x34", [0xa0dd] = "\x05\x6f\x43", + [0xa0e0] = "\x07\x52\x38", [0xa0e2] = "\x0f\x67\x37", + [0xa0e4] = "\x07\x52\x3e", [0xa0e6] = "\x07\x52\x3d", + [0xa0e7] = "\x07\x52\x39", [0xa0e9] = "\x07\x52\x44", + [0xa0ea] = "\x07\x52\x41", [0xa0ef] = "\x07\x52\x3c", + [0xa0f3] = "\x0f\x67\x38", [0xa0f6] = "\x05\x6f\x41", + [0xa0f9] = "\x07\x45\x5a", [0xa0fa] = "\x05\x72\x5e", + [0xa0fb] = "\x07\x56\x79", [0xa0fc] = "\x05\x72\x66", + [0xa0fd] = "\x07\x56\x7e", [0xa0fe] = "\x05\x72\x5d", + [0xa0ff] = "\x05\x72\x60", [0xa100] = "\x05\x72\x5b", + [0xa101] = "\x05\x72\x65", [0xa102] = "\x05\x72\x64", + [0xa103] = "\x07\x57\x21", [0xa104] = "\x07\x56\x7d", + [0xa105] = "\x07\x56\x7a", [0xa106] = "\x05\x72\x68", + [0xa107] = "\x07\x57\x27", [0xa109] = "\x07\x57\x26", + [0xa10a] = "\x07\x57\x24", [0xa10b] = "\x05\x72\x5c", + [0xa10c] = "\x05\x72\x61", [0xa10d] = "\x05\x6f\x45", + [0xa10e] = "\x05\x72\x5a", [0xa10f] = "\x05\x72\x62", + [0xa110] = "\x07\x57\x22", [0xa111] = "\x07\x56\x7c", + [0xa112] = "\x05\x72\x69", [0xa113] = "\x05\x72\x6a", + [0xa114] = "\x0f\x69\x34", [0xa117] = "\x05\x72\x5f", + [0xa118] = "\x07\x57\x23", [0xa11b] = "\x07\x56\x77", + [0xa11c] = "\x07\x57\x28", [0xa11e] = "\x07\x56\x76", + [0xa120] = "\x07\x56\x7b", [0xa123] = "\x0f\x69\x33", + [0xa129] = "\x05\x72\x58", [0xa12a] = "\x07\x56\x78", + [0xa12b] = "\x05\x72\x59", [0xa12c] = "\x0f\x67\x36", + [0xa12d] = "\x05\x75\x42", [0xa12e] = "\x05\x75\x3d", + [0xa12f] = "\x04\x6a\x24", [0xa130] = "\x04\x6a\x2d", + [0xa131] = "\x05\x75\x3c", [0xa132] = "\x04\x6a\x28", + [0xa133] = "\x05\x75\x43", [0xa134] = "\x05\x75\x39", + [0xa135] = "\x05\x6f\x46", [0xa136] = "\x05\x75\x44", + [0xa137] = "\x05\x75\x40", [0xa138] = "\x05\x75\x3f", + [0xa139] = "\x04\x6a\x2b", [0xa13b] = "\x07\x5a\x62", + [0xa13c] = "\x07\x5a\x6c", [0xa13d] = "\x07\x5a\x6a", + [0xa13e] = "\x07\x5a\x70", [0xa13f] = "\x04\x6a\x2a", + [0xa140] = "\x07\x5a\x6b", [0xa141] = "\x07\x5a\x6e", + [0xa142] = "\x05\x75\x3b", [0xa143] = "\x04\x6a\x29", + [0xa144] = "\x07\x5a\x69", [0xa145] = "\x05\x75\x37", + [0xa146] = "\x07\x5a\x68", [0xa147] = "\x05\x75\x38", + [0xa148] = "\x05\x75\x46", [0xa149] = "\x05\x72\x67", + [0xa14a] = "\x07\x5a\x71", [0xa14b] = "\x05\x75\x41", + [0xa14c] = "\x07\x5a\x6f", [0xa14d] = "\x07\x5a\x67", + [0xa14e] = "\x07\x57\x25", [0xa151] = "\x0f\x6a\x44", + [0xa152] = "\x0f\x6a\x45", [0xa153] = "\x0f\x6a\x46", + [0xa154] = "\x0f\x6a\x47", [0xa155] = "\x0f\x6a\x48", + [0xa156] = "\x05\x75\x3e", [0xa15a] = "\x07\x5a\x66", + [0xa15c] = "\x07\x5a\x64", [0xa15f] = "\x07\x5a\x61", + [0xa161] = "\x07\x5a\x63", [0xa16e] = "\x05\x75\x3a", + [0xa16f] = "\x07\x5e\x2b", [0xa170] = "\x07\x5e\x27", + [0xa171] = "\x07\x5e\x31", [0xa172] = "\x05\x77\x33", + [0xa173] = "\x07\x5e\x2f", [0xa174] = "\x05\x77\x2e", + [0xa175] = "\x05\x77\x29", [0xa176] = "\x04\x6b\x43", + [0xa177] = "\x07\x5e\x32", [0xa178] = "\x07\x5e\x36", + [0xa179] = "\x05\x77\x25", [0xa17a] = "\x05\x77\x30", + [0xa17b] = "\x05\x77\x2a", [0xa17c] = "\x05\x77\x28", + [0xa17d] = "\x05\x77\x2f", [0xa17e] = "\x07\x5e\x2c", + [0xa17f] = "\x05\x77\x27", [0xa180] = "\x05\x77\x26", + [0xa181] = "\x05\x77\x38", [0xa182] = "\x05\x77\x2b", + [0xa183] = "\x04\x6b\x49", [0xa184] = "\x04\x6b\x42", + [0xa185] = "\x07\x5e\x35", [0xa186] = "\x05\x77\x31", + [0xa187] = "\x07\x5e\x30", [0xa188] = "\x07\x5e\x33", + [0xa189] = "\x05\x77\x2d", [0xa18a] = "\x07\x5a\x65", + [0xa18b] = "\x05\x77\x35", [0xa18c] = "\x07\x5a\x6d", + [0xa18d] = "\x07\x5e\x34", [0xa191] = "\x05\x77\x36", + [0xa194] = "\x07\x5e\x2d", [0xa195] = "\x0f\x6b\x40", + [0xa196] = "\x07\x5e\x24", [0xa197] = "\x07\x5e\x26", + [0xa19a] = "\x07\x5e\x2e", [0xa19d] = "\x07\x5e\x29", + [0xa1a1] = "\x07\x5e\x28", [0xa1a8] = "\x05\x77\x32", + [0xa1a9] = "\x07\x5e\x2a", [0xa1aa] = "\x07\x5e\x25", + [0xa1ab] = "\x04\x6b\x41", [0xa1ac] = "\x0f\x6b\x7a", + [0xa1ad] = "\x07\x5e\x37", [0xa1ae] = "\x07\x60\x4d", + [0xa1af] = "\x05\x78\x67", [0xa1b0] = "\x05\x78\x69", + [0xa1b1] = "\x05\x78\x6d", [0xa1b2] = "\x05\x78\x65", + [0xa1b3] = "\x05\x77\x37", [0xa1b4] = "\x05\x78\x68", + [0xa1b5] = "\x07\x60\x4e", [0xa1b6] = "\x05\x78\x6a", + [0xa1b7] = "\x05\x78\x6b", [0xa1b8] = "\x07\x60\x4f", + [0xa1b9] = "\x07\x60\x50", [0xa1ba] = "\x07\x60\x54", + [0xa1bb] = "\x05\x78\x6c", [0xa1bc] = "\x07\x60\x53", + [0xa1bd] = "\x07\x60\x4c", [0xa1be] = "\x07\x60\x51", + [0xa1bf] = "\x05\x78\x63", [0xa1c1] = "\x05\x78\x66", + [0xa1c2] = "\x05\x78\x62", [0xa1c3] = "\x0f\x6b\x79", + [0xa1c4] = "\x07\x60\x52", [0xa1c6] = "\x04\x6c\x55", + [0xa1c9] = "\x05\x78\x64", [0xa1ca] = "\x04\x6c\x53", + [0xa1d1] = "\x05\x79\x71", [0xa1d2] = "\x05\x79\x6d", + [0xa1d3] = "\x05\x79\x70", [0xa1d4] = "\x07\x61\x76", + [0xa1d5] = "\x04\x6d\x3b", [0xa1d6] = "\x05\x79\x6e", + [0xa1d7] = "\x05\x79\x6c", [0xa1d8] = "\x04\x6d\x3c", + [0xa1da] = "\x07\x61\x74", [0xa1dc] = "\x05\x79\x6f", + [0xa1dd] = "\x07\x61\x78", [0xa1e0] = "\x07\x61\x75", + [0xa1e1] = "\x07\x61\x77", [0xa1ec] = "\x04\x6d\x3e", + [0xa1ed] = "\x05\x7a\x58", [0xa1ee] = "\x07\x63\x39", + [0xa1ef] = "\x05\x7a\x56", [0xa1f0] = "\x04\x6d\x6b", + [0xa1f1] = "\x05\x7a\x5a", [0xa1f2] = "\x05\x7a\x59", + [0xa1f3] = "\x05\x7a\x55", [0xa1f4] = "\x05\x7a\x57", + [0xa1f5] = "\x04\x6d\x6a", [0xa1f6] = "\x07\x63\x38", + [0xa1f7] = "\x05\x7a\x54", [0xa1f8] = "\x07\x63\x3b", + [0xa1f9] = "\x05\x7a\x5b", [0xa1fa] = "\x07\x63\x3d", + [0xa1fb] = "\x0f\x6c\x5e", [0xa1fc] = "\x07\x63\x3a", + [0xa1ff] = "\x07\x63\x36", [0xa201] = "\x07\x63\x3c", + [0xa203] = "\x05\x7b\x2e", [0xa204] = "\x07\x64\x34", + [0xa205] = "\x07\x64\x36", [0xa206] = "\x05\x7b\x2f", + [0xa207] = "\x05\x7b\x2c", [0xa209] = "\x05\x7b\x2b", + [0xa20a] = "\x05\x7b\x31", [0xa20b] = "\x05\x7b\x30", + [0xa20c] = "\x05\x7b\x2d", [0xa20d] = "\x07\x64\x37", + [0xa20e] = "\x0f\x6c\x76", [0xa210] = "\x04\x6e\x2e", + [0xa212] = "\x07\x64\x33", [0xa213] = "\x07\x64\x35", + [0xa218] = "\x05\x7b\x56", [0xa219] = "\x07\x65\x22", + [0xa21a] = "\x07\x65\x53", [0xa21b] = "\x07\x65\x24", + [0xa21c] = "\x07\x65\x26", [0xa21d] = "\x07\x65\x23", + [0xa21e] = "\x07\x65\x27", [0xa21f] = "\x05\x7b\x57", + [0xa222] = "\x07\x65\x25", [0xa224] = "\x04\x6e\x42", + [0xa225] = "\x05\x7b\x74", [0xa226] = "\x07\x65\x54", + [0xa227] = "\x07\x65\x55", [0xa228] = "\x05\x7b\x75", + [0xa229] = "\x07\x65\x52", [0xa22a] = "\x07\x65\x56", + [0xa22b] = "\x07\x65\x51", [0xa22e] = "\x07\x65\x6d", + [0xa22f] = "\x07\x65\x6c", [0xa230] = "\x05\x7c\x29", + [0xa231] = "\x05\x7c\x28", [0xa232] = "\x0f\x6d\x32", + [0xa234] = "\x05\x7c\x2f", [0xa235] = "\x07\x66\x21", + [0xa237] = "\x07\x65\x7e", [0xa238] = "\x05\x7c\x38", + [0xa239] = "\x07\x66\x30", [0xa23a] = "\x05\x7c\x39", + [0xa23b] = "\x07\x66\x3a", [0xa23c] = "\x05\x7c\x41", + [0xa23d] = "\x0f\x6d\x37", [0xa23f] = "\x05\x7c\x48", + [0xa240] = "\x07\x66\x45", [0xa256] = "\x04\x48\x71", + [0xa257] = "\x04\x48\x72", [0xa258] = "\x05\x53\x44", + [0xa259] = "\x07\x2c\x22", [0xa25a] = "\x07\x2c\x21", + [0xa25b] = "\x07\x2b\x7e", [0xa25c] = "\x05\x5a\x5a", + [0xa25d] = "\x05\x5a\x5c", [0xa25e] = "\x07\x36\x5a", + [0xa25f] = "\x07\x36\x5b", [0xa260] = "\x0f\x59\x41", + [0xa261] = "\x07\x36\x59", [0xa263] = "\x05\x67\x2c", + [0xa264] = "\x07\x3e\x59", [0xa266] = "\x04\x62\x71", + [0xa267] = "\x07\x4c\x70", [0xa268] = "\x05\x6b\x4d", + [0xa269] = "\x07\x4c\x71", [0xa26d] = "\x07\x52\x46", + [0xa26e] = "\x05\x6f\x48", [0xa26f] = "\x05\x6f\x49", + [0xa270] = "\x07\x52\x47", [0xa271] = "\x05\x6f\x47", + [0xa272] = "\x07\x52\x49", [0xa273] = "\x07\x52\x48", + [0xa275] = "\x04\x68\x45", [0xa276] = "\x07\x57\x2b", + [0xa277] = "\x07\x57\x2a", [0xa278] = "\x05\x72\x6b", + [0xa27a] = "\x07\x5a\x73", [0xa27c] = "\x07\x5a\x72", + [0xa27f] = "\x04\x6b\x4c", [0xa280] = "\x07\x5e\x38", + [0xa281] = "\x07\x5e\x39", [0xa282] = "\x05\x77\x39", + [0xa283] = "\x07\x60\x55", [0xa284] = "\x04\x6c\x57", + [0xa286] = "\x05\x79\x72", [0xa287] = "\x04\x6d\x3f", + [0xa288] = "\x07\x63\x3e", [0xa289] = "\x05\x7b\x32", + [0xa28b] = "\x06\x5a\x5d", [0xa28c] = "\x0f\x46\x3d", + [0xa28d] = "\x05\x4b\x6c", [0xa28e] = "\x0f\x4d\x52", + [0xa28f] = "\x07\x2c\x28", [0xa290] = "\x05\x53\x45", + [0xa291] = "\x07\x2c\x27", [0xa293] = "\x07\x2c\x26", + [0xa294] = "\x07\x2c\x24", [0xa295] = "\x05\x53\x46", + [0xa296] = "\x07\x2c\x25", [0xa297] = "\x05\x53\x47", + [0xa298] = "\x07\x2c\x29", [0xa299] = "\x07\x2c\x23", + [0xa29b] = "\x07\x36\x5d", [0xa29c] = "\x05\x5a\x5d", + [0xa29e] = "\x0f\x59\x42", [0xa2a0] = "\x0f\x59\x43", + [0xa2a1] = "\x0f\x59\x44", [0xa2a5] = "\x05\x60\x6f", + [0xa2a6] = "\x05\x60\x72", [0xa2a7] = "\x05\x60\x70", + [0xa2a8] = "\x04\x5a\x5c", [0xa2aa] = "\x05\x60\x73", + [0xa2ab] = "\x05\x60\x71", [0xa2ac] = "\x07\x3e\x5b", + [0xa2ad] = "\x07\x3e\x5a", [0xa2af] = "\x07\x3e\x5e", + [0xa2b1] = "\x07\x3e\x5d", [0xa2b2] = "\x0f\x5e\x26", + [0xa2b3] = "\x05\x60\x6e", [0xa2b4] = "\x07\x45\x6e", + [0xa2b5] = "\x05\x67\x31", [0xa2b6] = "\x05\x67\x2e", + [0xa2b7] = "\x05\x67\x2d", [0xa2b8] = "\x07\x45\x6b", + [0xa2b9] = "\x07\x45\x6d", [0xa2ba] = "\x07\x45\x6a", + [0xa2bb] = "\x05\x67\x30", [0xa2bc] = "\x07\x45\x6c", + [0xa2bd] = "\x0f\x61\x78", [0xa2be] = "\x0f\x61\x79", + [0xa2bf] = "\x0f\x61\x7a", [0xa2c3] = "\x05\x67\x2f", + [0xa2c4] = "\x05\x6b\x4f", [0xa2c5] = "\x05\x6b\x4e", + [0xa2c6] = "\x05\x6b\x51", [0xa2c7] = "\x04\x62\x73", + [0xa2c8] = "\x07\x4c\x73", [0xa2c9] = "\x05\x6b\x50", + [0xa2cb] = "\x07\x4c\x72", [0xa2cd] = "\x05\x68\x40", + [0xa2ce] = "\x07\x52\x4b", [0xa2cf] = "\x04\x62\x74", + [0xa2d0] = "\x04\x65\x6f", [0xa2d1] = "\x07\x4c\x74", + [0xa2d2] = "\x0f\x67\x39", [0xa2d4] = "\x07\x52\x4a", + [0xa2d5] = "\x07\x52\x4c", [0xa2d6] = "\x05\x6f\x4a", + [0xa2d7] = "\x04\x68\x47", [0xa2d8] = "\x07\x57\x2c", + [0xa2d9] = "\x07\x57\x2d", [0xa2da] = "\x04\x68\x46", + [0xa2db] = "\x0f\x69\x35", [0xa2dc] = "\x05\x75\x47", + [0xa2dd] = "\x04\x6a\x2e", [0xa2de] = "\x0f\x6a\x49", + [0xa2e1] = "\x05\x77\x3a", [0xa2e2] = "\x05\x77\x3c", + [0xa2e3] = "\x05\x77\x3b", [0xa2e5] = "\x07\x5e\x3a", + [0xa2e7] = "\x07\x5e\x3b", [0xa2ea] = "\x07\x60\x56", + [0xa2eb] = "\x04\x6c\x58", [0xa2ec] = "\x07\x60\x57", + [0xa2ed] = "\x0f\x6b\x7b", [0xa2ee] = "\x05\x79\x75", + [0xa2ef] = "\x05\x79\x74", [0xa2f0] = "\x05\x78\x6e", + [0xa2f2] = "\x04\x6d\x40", [0xa2f3] = "\x04\x6d\x6c", + [0xa2f4] = "\x0f\x6c\x47", [0xa2f7] = "\x07\x65\x28", + [0xa2f8] = "\x07\x65\x57", [0xa2fa] = "\x05\x7c\x46", + [0xa2fb] = "\x07\x66\x47", [0xa2fc] = "\x06\x5a\x5f", + [0xa2fd] = "\x06\x5a\x5e", [0xa2fe] = "\x05\x44\x53", + [0xa2ff] = "\x0f\x46\x3f", [0xa301] = "\x04\x48\x75", + [0xa302] = "\x06\x64\x75", [0xa303] = "\x0f\x4d\x53", + [0xa305] = "\x05\x53\x4b", [0xa306] = "\x05\x53\x4a", + [0xa307] = "\x04\x4f\x4f", [0xa308] = "\x05\x53\x49", + [0xa309] = "\x05\x53\x48", [0xa30a] = "\x07\x2c\x2b", + [0xa30b] = "\x07\x2c\x2f", [0xa30c] = "\x07\x2c\x2a", + [0xa30d] = "\x04\x4f\x4e", [0xa30e] = "\x07\x2c\x2c", + [0xa310] = "\x05\x53\x4c", [0xa311] = "\x07\x2c\x2e", + [0xa312] = "\x07\x2c\x2d", [0xa314] = "\x07\x36\x61", + [0xa315] = "\x07\x36\x5f", [0xa316] = "\x07\x36\x5e", + [0xa317] = "\x07\x36\x63", [0xa318] = "\x04\x55\x5b", + [0xa31a] = "\x07\x36\x62", [0xa31b] = "\x06\x47\x53", + [0xa31c] = "\x0f\x59\x45", [0xa31d] = "\x05\x5a\x5e", + [0xa320] = "\x07\x36\x60", [0xa322] = "\x05\x60\x74", + [0xa323] = "\x05\x60\x75", [0xa324] = "\x07\x3e\x60", + [0xa325] = "\x07\x3e\x61", [0xa326] = "\x0f\x5e\x28", + [0xa328] = "\x07\x3e\x62", [0xa32c] = "\x07\x3e\x5f", + [0xa32d] = "\x07\x45\x70", [0xa32e] = "\x05\x67\x32", + [0xa32f] = "\x07\x45\x72", [0xa330] = "\x05\x67\x33", + [0xa331] = "\x05\x67\x35", [0xa332] = "\x07\x45\x73", + [0xa333] = "\x05\x67\x34", [0xa334] = "\x0f\x61\x7b", + [0xa338] = "\x07\x45\x71", [0xa33b] = "\x07\x45\x6f", + [0xa33c] = "\x04\x62\x7a", [0xa33d] = "\x04\x62\x78", + [0xa33e] = "\x07\x4c\x79", [0xa33f] = "\x07\x4c\x7b", + [0xa340] = "\x07\x4c\x75", [0xa341] = "\x05\x6b\x54", + [0xa342] = "\x05\x6b\x52", [0xa343] = "\x07\x4c\x7a", + [0xa344] = "\x05\x6b\x55", [0xa345] = "\x05\x6b\x53", + [0xa346] = "\x07\x4c\x78", [0xa347] = "\x04\x62\x7b", + [0xa349] = "\x07\x4c\x77", [0xa34b] = "\x07\x4c\x76", + [0xa34c] = "\x05\x6f\x4b", [0xa34d] = "\x07\x52\x53", + [0xa34e] = "\x07\x52\x52", [0xa34f] = "\x05\x6f\x4c", + [0xa350] = "\x07\x52\x50", [0xa351] = "\x04\x65\x70", + [0xa352] = "\x07\x52\x4f", [0xa353] = "\x05\x6f\x4e", + [0xa354] = "\x05\x6f\x4d", [0xa355] = "\x07\x52\x51", + [0xa356] = "\x0f\x67\x3a", [0xa358] = "\x07\x52\x4e", + [0xa35a] = "\x07\x52\x4d", [0xa35b] = "\x05\x72\x6c", + [0xa35c] = "\x07\x57\x2f", [0xa35d] = "\x05\x72\x6f", + [0xa35e] = "\x07\x57\x30", [0xa35f] = "\x05\x72\x6e", + [0xa360] = "\x07\x57\x31", [0xa361] = "\x07\x57\x2e", + [0xa362] = "\x05\x72\x6d", [0xa363] = "\x05\x75\x4b", + [0xa364] = "\x05\x75\x4c", [0xa365] = "\x07\x5a\x74", + [0xa366] = "\x05\x75\x49", [0xa367] = "\x05\x75\x4e", + [0xa368] = "\x07\x5a\x7b", [0xa369] = "\x07\x5a\x76", + [0xa36a] = "\x07\x5a\x77", [0xa36b] = "\x07\x5a\x7c", + [0xa36c] = "\x07\x5a\x79", [0xa36d] = "\x05\x75\x4a", + [0xa36e] = "\x07\x5a\x75", [0xa36f] = "\x07\x5a\x78", + [0xa370] = "\x07\x5a\x7a", [0xa372] = "\x05\x77\x3f", + [0xa373] = "\x04\x6b\x4f", [0xa374] = "\x05\x77\x3e", + [0xa375] = "\x05\x77\x40", [0xa376] = "\x05\x77\x3d", + [0xa378] = "\x05\x78\x6f", [0xa379] = "\x05\x78\x71", + [0xa37a] = "\x05\x78\x70", [0xa37b] = "\x07\x60\x59", + [0xa37c] = "\x07\x5e\x3c", [0xa37d] = "\x04\x6c\x59", + [0xa37e] = "\x07\x60\x58", [0xa37f] = "\x04\x6d\x6d", + [0xa380] = "\x07\x63\x3f", [0xa381] = "\x07\x64\x39", + [0xa382] = "\x07\x64\x38", [0xa383] = "\x05\x7b\x58", + [0xa384] = "\x07\x65\x29", [0xa386] = "\x04\x6e\x52", + [0xa387] = "\x05\x7c\x30", [0xa38d] = "\x0f\x29\x21", + [0xa38e] = "\x0f\x46\x3e", [0xa38f] = "\x0f\x53\x42", + [0xa390] = "\x0f\x5e\x27", [0xa392] = "\x05\x4b\x70", + [0xa393] = "\x05\x4b\x6e", [0xa394] = "\x05\x4b\x6f", + [0xa395] = "\x05\x53\x4e", [0xa396] = "\x04\x4f\x50", + [0xa397] = "\x05\x53\x4d", [0xa39a] = "\x07\x2c\x30", + [0xa39b] = "\x05\x5a\x61", [0xa39c] = "\x07\x36\x64", + [0xa39d] = "\x05\x5a\x5f", [0xa39e] = "\x05\x5a\x60", + [0xa39f] = "\x0f\x59\x46", [0xa3a0] = "\x05\x60\x78", + [0xa3a1] = "\x05\x60\x76", [0xa3a2] = "\x0f\x5e\x29", + [0xa3a3] = "\x05\x60\x77", [0xa3a4] = "\x05\x67\x36", + [0xa3a5] = "\x07\x4c\x7c", [0xa3a6] = "\x05\x6b\x56", + [0xa3a7] = "\x07\x4c\x7d", [0xa3a8] = "\x04\x65\x73", + [0xa3aa] = "\x07\x57\x32", [0xa3ab] = "\x05\x72\x70", + [0xa3ac] = "\x07\x5a\x7e", [0xa3ad] = "\x04\x6b\x50", + [0xa3ae] = "\x07\x5b\x56", [0xa3af] = "\x07\x5e\x3d", + [0xa3b0] = "\x04\x6b\x51", [0xa3b2] = "\x05\x7c\x31", + [0xa3b3] = "\x0f\x4d\x54", [0xa3b4] = "\x07\x2c\x32", + [0xa3b5] = "\x05\x5a\x62", [0xa3b6] = "\x05\x5a\x64", + [0xa3b9] = "\x05\x5a\x63", [0xa3ba] = "\x05\x60\x7a", + [0xa3bb] = "\x05\x67\x38", [0xa3bd] = "\x05\x60\x79", + [0xa3be] = "\x05\x67\x39", [0xa3c1] = "\x05\x67\x37", + [0xa3c2] = "\x05\x6b\x57", [0xa3c3] = "\x04\x63\x22", + [0xa3c4] = "\x0f\x64\x79", [0xa3c6] = "\x04\x65\x75", + [0xa3c7] = "\x04\x65\x74", [0xa3c8] = "\x05\x6f\x50", + [0xa3c9] = "\x05\x6f\x4f", [0xa3ca] = "\x04\x65\x77", + [0xa3cb] = "\x07\x52\x54", [0xa3cc] = "\x07\x52\x55", + [0xa3cd] = "\x07\x52\x56", [0xa3ce] = "\x0f\x67\x3b", + [0xa3d1] = "\x07\x52\x57", [0xa3d3] = "\x05\x72\x73", + [0xa3d4] = "\x05\x72\x72", [0xa3d5] = "\x05\x72\x71", + [0xa3d6] = "\x07\x57\x33", [0xa3d8] = "\x07\x57\x34", + [0xa3d9] = "\x05\x75\x4f", [0xa3da] = "\x04\x6a\x2f", + [0xa3db] = "\x04\x6a\x30", [0xa3dc] = "\x07\x5b\x23", + [0xa3dd] = "\x07\x5b\x22", [0xa3de] = "\x07\x5b\x21", + [0xa3e1] = "\x07\x5e\x3e", [0xa3e4] = "\x05\x78\x72", + [0xa3e5] = "\x07\x60\x5a", [0xa3e6] = "\x05\x78\x73", + [0xa3e7] = "\x07\x61\x79", [0xa3e8] = "\x05\x79\x76", + [0xa3ec] = "\x07\x66\x27", [0xa3ed] = "\x04\x48\x76", + [0xa3ee] = "\x05\x53\x4f", [0xa3ef] = "\x04\x4f\x51", + [0xa3f0] = "\x07\x36\x68", [0xa3f1] = "\x07\x36\x66", + [0xa3f2] = "\x05\x5a\x66", [0xa3f3] = "\x05\x5a\x65", + [0xa3f4] = "\x05\x5a\x67", [0xa3f6] = "\x05\x60\x7e", + [0xa3f7] = "\x07\x3e\x64", [0xa3f8] = "\x05\x60\x7c", + [0xa3f9] = "\x07\x3e\x63", [0xa3fa] = "\x05\x60\x7b", + [0xa3fb] = "\x04\x5a\x5e", [0xa3fc] = "\x05\x60\x7d", + [0xa3fd] = "\x07\x3e\x65", [0xa3fe] = "\x07\x3e\x66", + [0xa3ff] = "\x05\x67\x3b", [0xa400] = "\x05\x67\x3a", + [0xa402] = "\x04\x65\x78", [0xa403] = "\x05\x6f\x51", + [0xa404] = "\x05\x6f\x53", [0xa407] = "\x05\x72\x74", + [0xa408] = "\x07\x57\x36", [0xa409] = "\x07\x57\x35", + [0xa40a] = "\x0f\x69\x36", [0xa40b] = "\x05\x75\x50", + [0xa40c] = "\x04\x6b\x54", [0xa40d] = "\x05\x77\x42", + [0xa40e] = "\x05\x77\x41", [0xa40f] = "\x04\x6b\x53", + [0xa411] = "\x07\x63\x40", [0xa412] = "\x07\x61\x7a", + [0xa413] = "\x04\x6d\x6e", [0xa414] = "\x05\x7b\x5a", + [0xa415] = "\x07\x65\x2a", [0xa416] = "\x05\x7b\x59", + [0xa417] = "\x06\x64\x76", [0xa418] = "\x05\x44\x54", + [0xa419] = "\x06\x64\x78", [0xa41b] = "\x06\x64\x77", + [0xa41c] = "\x07\x2c\x34", [0xa41d] = "\x04\x4f\x55", + [0xa41e] = "\x04\x4f\x54", [0xa41f] = "\x05\x53\x50", + [0xa420] = "\x07\x2c\x35", [0xa421] = "\x07\x2c\x36", + [0xa424] = "\x07\x36\x6a", [0xa425] = "\x05\x5a\x6a", + [0xa426] = "\x05\x5a\x68", [0xa427] = "\x05\x5a\x69", + [0xa428] = "\x07\x36\x69", [0xa42a] = "\x07\x36\x6b", + [0xa42b] = "\x07\x36\x6c", [0xa432] = "\x04\x5a\x60", + [0xa433] = "\x07\x3e\x68", [0xa434] = "\x05\x61\x21", + [0xa438] = "\x0f\x5e\x2a", [0xa439] = "\x07\x3e\x67", + [0xa43f] = "\x05\x67\x3e", [0xa440] = "\x05\x67\x3c", + [0xa441] = "\x07\x45\x74", [0xa442] = "\x05\x6b\x58", + [0xa443] = "\x05\x61\x22", [0xa444] = "\x05\x67\x3f", + [0xa448] = "\x05\x6b\x5a", [0xa449] = "\x05\x6b\x59", + [0xa44a] = "\x05\x6b\x5b", [0xa44b] = "\x05\x6b\x5d", + [0xa44c] = "\x05\x6b\x5c", [0xa44d] = "\x07\x4d\x21", + [0xa44e] = "\x07\x4c\x7e", [0xa452] = "\x05\x6f\x56", + [0xa453] = "\x05\x6f\x57", [0xa454] = "\x07\x52\x5b", + [0xa455] = "\x05\x6f\x5b", [0xa456] = "\x05\x6f\x59", + [0xa457] = "\x05\x6f\x55", [0xa458] = "\x07\x52\x58", + [0xa459] = "\x04\x65\x7e", [0xa45a] = "\x04\x65\x7b", + [0xa45b] = "\x07\x52\x5c", [0xa45c] = "\x05\x6f\x5a", + [0xa45d] = "\x04\x65\x7a", [0xa45e] = "\x07\x52\x5a", + [0xa461] = "\x0f\x67\x3c", [0xa463] = "\x07\x52\x59", + [0xa465] = "\x07\x57\x38", [0xa466] = "\x04\x68\x53", + [0xa467] = "\x04\x68\x51", [0xa468] = "\x05\x72\x78", + [0xa469] = "\x04\x68\x50", [0xa46a] = "\x05\x72\x7b", + [0xa46b] = "\x07\x57\x37", [0xa46c] = "\x05\x72\x75", + [0xa46d] = "\x05\x72\x79", [0xa46e] = "\x05\x72\x77", + [0xa46f] = "\x04\x68\x54", [0xa470] = "\x05\x72\x76", + [0xa471] = "\x04\x68\x55", [0xa472] = "\x04\x6a\x34", + [0xa473] = "\x07\x57\x39", [0xa474] = "\x07\x57\x3a", + [0xa477] = "\x05\x72\x7a", [0xa47e] = "\x05\x75\x51", + [0xa47f] = "\x04\x6a\x33", [0xa480] = "\x04\x6a\x35", + [0xa481] = "\x07\x5b\x2a", [0xa482] = "\x07\x5b\x27", + [0xa483] = "\x07\x5b\x26", [0xa484] = "\x04\x6a\x32", + [0xa485] = "\x07\x5b\x29", [0xa488] = "\x07\x5b\x28", + [0xa48b] = "\x05\x75\x52", [0xa48c] = "\x07\x5b\x25", + [0xa48f] = "\x05\x77\x47", [0xa490] = "\x07\x5e\x41", + [0xa491] = "\x05\x77\x46", [0xa492] = "\x05\x77\x44", + [0xa493] = "\x05\x77\x45", [0xa494] = "\x05\x77\x43", + [0xa495] = "\x05\x77\x48", [0xa496] = "\x07\x5e\x3f", + [0xa498] = "\x05\x78\x76", [0xa499] = "\x05\x78\x77", + [0xa49a] = "\x07\x60\x5d", [0xa49b] = "\x04\x6c\x5c", + [0xa49c] = "\x04\x6c\x60", [0xa49d] = "\x05\x78\x75", + [0xa49e] = "\x07\x60\x5c", [0xa49f] = "\x05\x78\x74", + [0xa4a0] = "\x04\x6c\x5f", [0xa4a1] = "\x04\x6c\x5e", + [0xa4a2] = "\x04\x6c\x5d", [0xa4a3] = "\x07\x5e\x40", + [0xa4a7] = "\x07\x60\x5b", [0xa4a9] = "\x05\x79\x78", + [0xa4aa] = "\x05\x79\x79", [0xa4ab] = "\x05\x79\x7a", + [0xa4ac] = "\x05\x79\x77", [0xa4ad] = "\x04\x6d\x45", + [0xa4ae] = "\x07\x61\x7b", [0xa4af] = "\x07\x61\x7c", + [0xa4b0] = "\x04\x6d\x46", [0xa4b4] = "\x05\x7a\x5c", + [0xa4b5] = "\x07\x64\x3a", [0xa4b8] = "\x07\x65\x2b", + [0xa4b9] = "\x04\x6e\x30", [0xa4ba] = "\x07\x64\x3b", + [0xa4bb] = "\x05\x7b\x33", [0xa4be] = "\x04\x6e\x2f", + [0xa4bf] = "\x05\x7b\x5b", [0xa4c0] = "\x05\x7b\x5c", + [0xa4c1] = "\x07\x65\x2c", [0xa4c3] = "\x04\x6e\x4a", + [0xa4c4] = "\x05\x7b\x76", [0xa4c6] = "\x07\x65\x6e", + [0xa4c9] = "\x05\x7c\x4a", [0xa4ca] = "\x07\x66\x52", + [0xa4cb] = "\x07\x45\x75", [0xa4cc] = "\x04\x66\x22", + [0xa4ce] = "\x05\x72\x7c", [0xa4cf] = "\x04\x68\x57", + [0xa4d0] = "\x05\x77\x49", [0xa4d1] = "\x06\x64\x79", + [0xa4d2] = "\x07\x2c\x38", [0xa4d3] = "\x07\x2c\x37", + [0xa4d4] = "\x05\x61\x24", [0xa4d5] = "\x07\x36\x6d", + [0xa4d6] = "\x04\x5a\x61", [0xa4d7] = "\x07\x3e\x69", + [0xa4d8] = "\x07\x3e\x6a", [0xa4da] = "\x07\x45\x78", + [0xa4db] = "\x05\x67\x42", [0xa4dc] = "\x07\x45\x79", + [0xa4dd] = "\x07\x45\x77", [0xa4de] = "\x07\x45\x76", + [0xa4df] = "\x04\x5f\x41", [0xa4e1] = "\x07\x4d\x24", + [0xa4e2] = "\x07\x4d\x25", [0xa4e4] = "\x07\x3e\x6b", + [0xa4e5] = "\x07\x4d\x23", [0xa4e7] = "\x07\x52\x5e", + [0xa4e8] = "\x07\x52\x5f", [0xa4e9] = "\x07\x52\x5d", + [0xa4ec] = "\x05\x72\x7d", [0xa4ed] = "\x07\x57\x3b", + [0xa4ee] = "\x04\x6a\x36", [0xa4ef] = "\x07\x5b\x2c", + [0xa4f0] = "\x07\x5b\x31", [0xa4f1] = "\x07\x5b\x32", + [0xa4f2] = "\x07\x5b\x2e", [0xa4f3] = "\x07\x5b\x30", + [0xa4f4] = "\x07\x5b\x2d", [0xa4f5] = "\x07\x5b\x2b", + [0xa4f6] = "\x07\x5b\x2f", [0xa4f7] = "\x05\x77\x4a", + [0xa4f8] = "\x07\x5e\x42", [0xa4f9] = "\x05\x78\x78", + [0xa4fb] = "\x05\x79\x7b", [0xa4fc] = "\x05\x7a\x5d", + [0xa4fd] = "\x04\x6d\x47", [0xa4fe] = "\x07\x63\x41", + [0xa4ff] = "\x05\x7b\x34", [0xa500] = "\x07\x63\x42", + [0xa501] = "\x07\x65\x2d", [0xa502] = "\x06\x50\x4f", + [0xa504] = "\x07\x36\x6e", [0xa505] = "\x07\x36\x6f", + [0xa506] = "\x05\x5a\x6b", [0xa508] = "\x07\x46\x4f", + [0xa50a] = "\x07\x65\x2e", [0xa50b] = "\x05\x5a\x6c", + [0xa50d] = "\x05\x61\x25", [0xa50e] = "\x07\x3e\x6d", + [0xa50f] = "\x05\x67\x43", [0xa510] = "\x07\x45\x7a", + [0xa511] = "\x05\x67\x44", [0xa512] = "\x0f\x61\x7d", + [0xa514] = "\x07\x4d\x27", [0xa515] = "\x05\x6b\x60", + [0xa516] = "\x07\x4d\x26", [0xa517] = "\x05\x6b\x5e", + [0xa518] = "\x05\x6b\x5f", [0xa51b] = "\x04\x63\x25", + [0xa51c] = "\x04\x66\x23", [0xa51d] = "\x07\x52\x60", + [0xa522] = "\x04\x6a\x39", [0xa523] = "\x04\x68\x58", + [0xa524] = "\x07\x57\x3c", [0xa525] = "\x07\x57\x3d", + [0xa526] = "\x05\x75\x53", [0xa527] = "\x07\x5b\x34", + [0xa528] = "\x07\x5b\x35", [0xa529] = "\x05\x75\x55", + [0xa52a] = "\x04\x6a\x38", [0xa52b] = "\x07\x5b\x33", + [0xa52c] = "\x05\x75\x54", [0xa52e] = "\x07\x5e\x43", + [0xa52f] = "\x07\x60\x5e", [0xa530] = "\x05\x78\x79", + [0xa531] = "\x07\x60\x5f", [0xa533] = "\x05\x79\x7c", + [0xa535] = "\x07\x63\x43", [0xa536] = "\x05\x7b\x35", + [0xa537] = "\x05\x7b\x77", [0xa538] = "\x07\x2c\x39", + [0xa53a] = "\x05\x5a\x6d", [0xa53b] = "\x07\x3e\x6e", + [0xa53c] = "\x05\x5a\x6e", [0xa53d] = "\x05\x61\x28", + [0xa53e] = "\x05\x61\x2a", [0xa53f] = "\x05\x61\x2b", + [0xa540] = "\x05\x61\x29", [0xa541] = "\x05\x61\x27", + [0xa542] = "\x07\x3e\x70", [0xa543] = "\x05\x61\x26", + [0xa544] = "\x07\x3e\x6f", [0xa546] = "\x05\x61\x2c", + [0xa548] = "\x04\x5a\x62", [0xa549] = "\x07\x45\x7c", + [0xa54a] = "\x07\x4d\x2c", [0xa54b] = "\x05\x67\x47", + [0xa54c] = "\x05\x67\x48", [0xa54d] = "\x05\x67\x46", + [0xa54e] = "\x05\x67\x45", [0xa54f] = "\x07\x45\x7b", + [0xa551] = "\x07\x4d\x2a", [0xa552] = "\x05\x6b\x61", + [0xa553] = "\x05\x6b\x63", [0xa554] = "\x05\x6b\x62", + [0xa557] = "\x07\x4d\x2d", [0xa558] = "\x07\x4d\x2e", + [0xa559] = "\x07\x4d\x29", [0xa55a] = "\x07\x52\x62", + [0xa55b] = "\x07\x52\x64", [0xa55c] = "\x07\x52\x63", + [0xa55d] = "\x05\x6f\x5d", [0xa55e] = "\x05\x6f\x5e", + [0xa55f] = "\x07\x4d\x2b", [0xa561] = "\x07\x52\x65", + [0xa564] = "\x05\x6f\x5c", [0xa567] = "\x07\x52\x61", + [0xa568] = "\x05\x73\x21", [0xa569] = "\x05\x72\x7e", + [0xa56a] = "\x07\x57\x3e", [0xa56b] = "\x05\x75\x57", + [0xa56c] = "\x07\x5b\x36", [0xa56d] = "\x05\x75\x58", + [0xa56e] = "\x05\x75\x59", [0xa56f] = "\x05\x75\x56", + [0xa571] = "\x04\x6a\x3a", [0xa575] = "\x07\x5e\x44", + [0xa576] = "\x05\x77\x4b", [0xa577] = "\x04\x6b\x59", + [0xa578] = "\x07\x5e\x48", [0xa579] = "\x04\x6b\x57", + [0xa57a] = "\x04\x6b\x5a", [0xa57b] = "\x07\x5e\x47", + [0xa57d] = "\x07\x5e\x46", [0xa57e] = "\x07\x5e\x45", + [0xa57f] = "\x05\x78\x7d", [0xa580] = "\x04\x6c\x63", + [0xa581] = "\x05\x78\x7b", [0xa582] = "\x05\x78\x7a", + [0xa583] = "\x07\x60\x60", [0xa585] = "\x07\x61\x7e", + [0xa586] = "\x07\x61\x7d", [0xa587] = "\x04\x6d\x49", + [0xa588] = "\x05\x79\x7d", [0xa58b] = "\x05\x7b\x36", + [0xa58c] = "\x05\x7b\x79", [0xa58d] = "\x05\x7b\x78", + [0xa58e] = "\x07\x65\x6f", [0xa58f] = "\x07\x66\x22", + [0xa590] = "\x04\x4f\x57", [0xa591] = "\x07\x36\x70", + [0xa592] = "\x07\x36\x71", [0xa593] = "\x07\x3e\x72", + [0xa594] = "\x07\x3e\x71", [0xa595] = "\x05\x67\x49", + [0xa596] = "\x07\x45\x7e", [0xa597] = "\x07\x46\x21", + [0xa598] = "\x07\x45\x7d", [0xa59a] = "\x05\x6b\x64", + [0xa59b] = "\x05\x6b\x65", [0xa5a1] = "\x07\x52\x66", + [0xa5a2] = "\x05\x6f\x5f", [0xa5a3] = "\x05\x6f\x60", + [0xa5a4] = "\x07\x52\x68", [0xa5a5] = "\x04\x68\x5b", + [0xa5a6] = "\x05\x73\x22", [0xa5a7] = "\x07\x57\x3f", + [0xa5a8] = "\x07\x57\x40", [0xa5a9] = "\x05\x73\x23", + [0xa5aa] = "\x05\x73\x24", [0xa5ae] = "\x07\x5b\x37", + [0xa5af] = "\x05\x77\x4c", [0xa5b0] = "\x07\x5e\x49", + [0xa5b3] = "\x05\x78\x7c", [0xa5b4] = "\x0f\x6b\x7e", + [0xa5b5] = "\x07\x60\x61", [0xa5b6] = "\x05\x79\x7e", + [0xa5b7] = "\x05\x7a\x21", [0xa5bb] = "\x07\x63\x46", + [0xa5bc] = "\x05\x7a\x5e", [0xa5bd] = "\x07\x63\x45", + [0xa5be] = "\x07\x64\x3c", [0xa5c1] = "\x04\x6e\x53", + [0xa5c2] = "\x05\x7c\x32", [0xa5c4] = "\x0f\x40\x34", + [0xa5c5] = "\x04\x55\x64", [0xa5c6] = "\x04\x5a\x65", + [0xa5c7] = "\x07\x46\x22", [0xa5c9] = "\x04\x63\x28", + [0xa5ca] = "\x07\x4d\x2f", [0xa5cb] = "\x05\x6d\x57", + [0xa5cc] = "\x04\x66\x24", [0xa5cd] = "\x04\x6a\x3b", + [0xa5ce] = "\x0f\x69\x37", [0xa5cf] = "\x05\x7a\x23", + [0xa5d0] = "\x05\x7a\x22", [0xa5d1] = "\x07\x62\x21", + [0xa5d2] = "\x07\x65\x2f", [0xa5d4] = "\x05\x61\x2e", + [0xa5d5] = "\x07\x3e\x73", [0xa5d8] = "\x07\x46\x25", + [0xa5d9] = "\x04\x5f\x47", [0xa5da] = "\x07\x46\x24", + [0xa5db] = "\x07\x4d\x30", [0xa5dc] = "\x05\x6b\x66", + [0xa5dd] = "\x04\x63\x2a", [0xa5de] = "\x07\x4d\x31", + [0xa5df] = "\x07\x4d\x34", [0xa5e0] = "\x07\x4d\x32", + [0xa5e1] = "\x07\x4d\x33", [0xa5e2] = "\x07\x4d\x35", + [0xa5e3] = "\x07\x4d\x36", [0xa5e4] = "\x05\x6b\x67", + [0xa5e5] = "\x07\x52\x6b", [0xa5e6] = "\x05\x6f\x63", + [0xa5e7] = "\x05\x6f\x62", [0xa5e8] = "\x04\x66\x28", + [0xa5e9] = "\x07\x52\x69", [0xa5ea] = "\x04\x66\x2a", + [0xa5eb] = "\x07\x52\x6d", [0xa5ec] = "\x04\x66\x29", + [0xa5ed] = "\x07\x52\x6e", [0xa5ef] = "\x07\x52\x6a", + [0xa5f2] = "\x04\x48\x78", [0xa5f5] = "\x07\x52\x6c", + [0xa5f6] = "\x07\x57\x46", [0xa5f7] = "\x05\x73\x2a", + [0xa5f8] = "\x05\x73\x27", [0xa5f9] = "\x07\x57\x43", + [0xa5fa] = "\x07\x57\x42", [0xa5fb] = "\x04\x68\x5e", + [0xa5fc] = "\x05\x73\x28", [0xa5fd] = "\x04\x68\x5f", + [0xa5fe] = "\x04\x68\x5d", [0xa5ff] = "\x07\x57\x44", + [0xa600] = "\x05\x73\x25", [0xa601] = "\x05\x73\x2b", + [0xa604] = "\x07\x57\x45", [0xa605] = "\x07\x57\x47", + [0xa60a] = "\x05\x73\x29", [0xa60b] = "\x07\x57\x41", + [0xa60d] = "\x05\x73\x26", [0xa60e] = "\x07\x5b\x38", + [0xa60f] = "\x04\x6a\x3e", [0xa610] = "\x05\x75\x5c", + [0xa611] = "\x05\x75\x5b", [0xa612] = "\x05\x75\x5e", + [0xa613] = "\x07\x5b\x40", [0xa614] = "\x07\x5b\x3f", + [0xa615] = "\x05\x75\x5f", [0xa616] = "\x07\x5b\x3a", + [0xa617] = "\x05\x75\x60", [0xa618] = "\x04\x6a\x3f", + [0xa61b] = "\x07\x5b\x39", [0xa61c] = "\x05\x75\x5a", + [0xa61f] = "\x07\x5b\x3b", [0xa620] = "\x07\x5b\x3d", + [0xa621] = "\x07\x5b\x3e", [0xa622] = "\x07\x5b\x3c", + [0xa624] = "\x05\x75\x5d", [0xa625] = "\x05\x77\x4f", + [0xa626] = "\x05\x77\x4e", [0xa627] = "\x04\x6b\x5e", + [0xa628] = "\x04\x6b\x62", [0xa629] = "\x04\x6b\x63", + [0xa62a] = "\x04\x6b\x5f", [0xa62c] = "\x04\x6b\x60", + [0xa62d] = "\x05\x77\x50", [0xa62e] = "\x07\x5e\x4e", + [0xa630] = "\x07\x5e\x4c", [0xa632] = "\x04\x6b\x5d", + [0xa634] = "\x07\x5e\x4a", [0xa636] = "\x07\x5e\x4b", + [0xa637] = "\x07\x5e\x4f", [0xa638] = "\x04\x6b\x64", + [0xa639] = "\x04\x6c\x67", [0xa63a] = "\x05\x78\x7e", + [0xa63b] = "\x07\x60\x67", [0xa63c] = "\x04\x6c\x68", + [0xa63d] = "\x07\x60\x65", [0xa63e] = "\x05\x79\x21", + [0xa63f] = "\x07\x62\x23", [0xa640] = "\x04\x6c\x65", + [0xa641] = "\x07\x60\x63", [0xa642] = "\x07\x60\x66", + [0xa643] = "\x07\x60\x64", [0xa646] = "\x07\x60\x62", + [0xa647] = "\x07\x60\x68", [0xa648] = "\x05\x79\x22", + [0xa649] = "\x04\x6d\x4e", [0xa64a] = "\x04\x6d\x4a", + [0xa64b] = "\x07\x62\x25", [0xa64c] = "\x05\x7a\x26", + [0xa64d] = "\x04\x6d\x50", [0xa64e] = "\x04\x6d\x4d", + [0xa64f] = "\x05\x7a\x24", [0xa650] = "\x07\x62\x27", + [0xa651] = "\x04\x6d\x4f", [0xa652] = "\x07\x62\x24", + [0xa653] = "\x07\x62\x26", [0xa656] = "\x07\x62\x28", + [0xa657] = "\x07\x62\x29", [0xa658] = "\x07\x62\x22", + [0xa659] = "\x05\x7a\x25", [0xa65a] = "\x07\x63\x48", + [0xa65b] = "\x05\x7a\x60", [0xa65c] = "\x07\x63\x47", + [0xa65d] = "\x05\x7a\x62", [0xa65e] = "\x05\x7a\x5f", + [0xa65f] = "\x05\x7a\x61", [0xa663] = "\x07\x64\x3e", + [0xa664] = "\x04\x6e\x32", [0xa665] = "\x07\x64\x3d", + [0xa666] = "\x05\x7b\x37", [0xa667] = "\x05\x7b\x39", + [0xa669] = "\x05\x7b\x38", [0xa66a] = "\x07\x64\x40", + [0xa66c] = "\x07\x64\x41", [0xa66e] = "\x07\x64\x3f", + [0xa670] = "\x04\x6e\x46", [0xa672] = "\x07\x65\x32", + [0xa673] = "\x05\x7b\x5d", [0xa674] = "\x07\x65\x31", + [0xa675] = "\x07\x65\x30", [0xa676] = "\x07\x65\x59", + [0xa677] = "\x07\x65\x71", [0xa678] = "\x07\x65\x72", + [0xa679] = "\x05\x7c\x2a", [0xa67b] = "\x07\x65\x70", + [0xa67c] = "\x07\x65\x73", [0xa67d] = "\x05\x7c\x33", + [0xa67f] = "\x07\x66\x24", [0xa680] = "\x07\x66\x23", + [0xa681] = "\x05\x7c\x3b", [0xa682] = "\x07\x66\x32", + [0xa683] = "\x05\x7c\x3a", [0xa684] = "\x07\x66\x31", + [0xa686] = "\x07\x66\x3d", [0xa688] = "\x07\x66\x3c", + [0xa689] = "\x05\x7c\x45", [0xa68b] = "\x07\x66\x41", + [0xa68c] = "\x07\x66\x48", [0xa68d] = "\x05\x7c\x4e", + [0xa68e] = "\x05\x7c\x4d", [0xa691] = "\x05\x6b\x68", + [0xa692] = "\x07\x4d\x37", [0xa693] = "\x04\x63\x2c", + [0xa695] = "\x07\x52\x70", [0xa696] = "\x07\x52\x6f", + [0xa697] = "\x07\x4e\x24", [0xa698] = "\x05\x6f\x64", + [0xa699] = "\x07\x57\x48", [0xa69b] = "\x0f\x67\x3d", + [0xa69c] = "\x07\x5b\x42", [0xa69d] = "\x07\x5b\x41", + [0xa69e] = "\x07\x5b\x43", [0xa69f] = "\x07\x5b\x44", + [0xa6a0] = "\x05\x77\x51", [0xa6a5] = "\x05\x7c\x51", + [0xa6a6] = "\x07\x36\x72", [0xa6a7] = "\x07\x3e\x74", + [0xa6a8] = "\x07\x46\x26", [0xa6ab] = "\x07\x57\x49", + [0xa6ac] = "\x05\x6f\x65", [0xa6ad] = "\x04\x66\x2b", + [0xa6ae] = "\x05\x6f\x67", [0xa6af] = "\x05\x6f\x66", + [0xa6b0] = "\x04\x66\x2c", [0xa6b1] = "\x07\x52\x73", + [0xa6b3] = "\x07\x52\x71", [0xa6b4] = "\x0f\x67\x3e", + [0xa6b5] = "\x07\x52\x72", [0xa6b6] = "\x05\x73\x2c", + [0xa6b7] = "\x05\x73\x2e", [0xa6b8] = "\x07\x57\x4b", + [0xa6b9] = "\x05\x73\x2f", [0xa6ba] = "\x05\x6b\x6a", + [0xa6bb] = "\x05\x73\x2d", [0xa6bc] = "\x07\x54\x2a", + [0xa6bd] = "\x07\x57\x4a", [0xa6be] = "\x07\x4d\x39", + [0xa6bf] = "\x07\x4d\x38", [0xa6c0] = "\x05\x7b\x5e", + [0xa6c1] = "\x07\x61\x29", [0xa6c2] = "\x05\x7b\x3a", + [0xa6c3] = "\x05\x77\x52", [0xa6c4] = "\x07\x64\x42", + [0xa6c6] = "\x0f\x6d\x2d", [0xa6c8] = "\x05\x7c\x42", + [0xa6c9] = "\x0f\x29\x26", [0xa6ca] = "\x05\x73\x30", + [0xa6cb] = "\x07\x62\x2b", [0xa6cd] = "\x07\x62\x2a", + [0xa6ce] = "\x05\x7a\x64", [0xa6cf] = "\x05\x7a\x63", + [0xa6d0] = "\x07\x63\x4a", [0xa6d1] = "\x07\x63\x49", + [0xa6d2] = "\x05\x7b\x3b", [0xa6d3] = "\x04\x6e\x47", + [0xa6d4] = "\x07\x66\x25", [0xa6d5] = "\x04\x6e\x56", + [0xa6d6] = "\x07\x66\x4c", }; diff --git a/iconvdata/cns11643.h b/iconvdata/cns11643.h index 176cb1feab..2e50a1f77c 100644 --- a/iconvdata/cns11643.h +++ b/iconvdata/cns11643.h @@ -1,5 +1,5 @@ -/* Access functions for CNS 11643, plane 2 handling. - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. +/* Access functions for CNS 11643 handling. + Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. @@ -20,12 +20,23 @@ #include <stdint.h> + /* Table for CNS 11643, plane 1 to UCS4 conversion. */ extern const uint16_t __cns11643l1_to_ucs4_tab[]; /* Table for CNS 11643, plane 2 to UCS4 conversion. */ extern const uint16_t __cns11643l2_to_ucs4_tab[]; -/* Table for CNS 11643, plane 14 to UCS4 conversion. */ -extern const uint16_t __cns11643l14_to_ucs4_tab[]; +/* Table for CNS 11643, plane 3 to UCS4 conversion. */ +extern const uint32_t __cns11643l3_to_ucs4_tab[]; +/* Table for CNS 11643, plane 4 to UCS4 conversion. */ +extern const uint32_t __cns11643l4_to_ucs4_tab[]; +/* Table for CNS 11643, plane 5 to UCS4 conversion. */ +extern const uint32_t __cns11643l5_to_ucs4_tab[]; +/* Table for CNS 11643, plane 6 to UCS4 conversion. */ +extern const uint32_t __cns11643l6_to_ucs4_tab[]; +/* Table for CNS 11643, plane 7 to UCS4 conversion. */ +extern const uint32_t __cns11643l7_to_ucs4_tab[]; +/* Table for CNS 11643, plane 15 (old) to UCS4 conversion. */ +extern const uint32_t __cns11643l15_to_ucs4_tab[]; static inline uint32_t @@ -53,26 +64,51 @@ cns11643_to_ucs4 (const char **s, size_t avail, unsigned char offset) idx = (ch2 - 0x21 - offset) * 94 + (ch3 - 0x21 - offset); - if ((ch - 0x20 - offset) == 1) + switch (ch - 0x20 - offset) { + case 1: if (idx > 0x21f2) return __UNKNOWN_10646_CHAR; result = __cns11643l1_to_ucs4_tab[idx]; - } - else if ((ch - 0x20 - offset) == 2) - { + break; + case 2: if (idx > 0x1de1) return __UNKNOWN_10646_CHAR; result = __cns11643l2_to_ucs4_tab[idx]; - } - else if ((ch - 0x20 - offset) == 0xe) - { + break; + case 3: if (idx > 0x19bd) return __UNKNOWN_10646_CHAR; - result = __cns11643l14_to_ucs4_tab[idx]; + result = __cns11643l3_to_ucs4_tab[idx]; + break; + case 4: + if (idx > 0x1c81) + return __UNKNOWN_10646_CHAR; + result = __cns11643l4_to_ucs4_tab[idx]; + break; + case 5: + if (idx > 0x219a) + return __UNKNOWN_10646_CHAR; + result = __cns11643l5_to_ucs4_tab[idx]; + break; + case 6: + if (idx > 0x18f3) + return __UNKNOWN_10646_CHAR; + result = __cns11643l6_to_ucs4_tab[idx]; + break; + case 7: + if (idx > 0x198a) + return __UNKNOWN_10646_CHAR; + result = __cns11643l7_to_ucs4_tab[idx]; + break; + case 15: + if (idx > 0x1c00) + return __UNKNOWN_10646_CHAR; + result = __cns11643l15_to_ucs4_tab[idx]; + break; + default: + return __UNKNOWN_10646_CHAR; } - else - return __UNKNOWN_10646_CHAR; if (result != L'\0') (*s) += 3; @@ -98,7 +134,8 @@ extern const char __cns11643l1_from_ucs4_tab11[][2]; extern const char __cns11643l1_from_ucs4_tab12[][2]; extern const char __cns11643l1_from_ucs4_tab13[][2]; extern const char __cns11643l1_from_ucs4_tab14[][2]; -extern const char __cns11643_from_ucs4_tab[][3]; +extern const char __cns11643_from_ucs4p0_tab[][3]; +extern const char __cns11643_from_ucs4p2_tab[][3]; static inline size_t @@ -179,14 +216,14 @@ ucs4_to_cns11643 (uint32_t wch, char *s, size_t avail) break; case 0x4e00 ... 0x9f9c: cp = __cns11643l1_from_ucs4_tab12[ch - 0x4e00]; - if (cp[0] != '\0') break; /* FALLTHROUGH. Let's try the other planes. */ + case 0x3400 ... 0x4dff: case 0x9f9d ... 0x9fa5: /* Let's try the other planes. */ needed = 3; - cp = __cns11643_from_ucs4_tab[ch - 0x4e00]; + cp = __cns11643_from_ucs4p0_tab[ch - 0x3400]; break; case 0xfe30 ... 0xfe6b: cp = __cns11643l1_from_ucs4_tab13[ch - 0xfe30]; @@ -203,6 +240,10 @@ ucs4_to_cns11643 (uint32_t wch, char *s, size_t avail) case 0xffe5: cp = "\x22\x64"; break; + case 0x20000 ... 0x2a6d6: + needed = 3; + cp = __cns11643_from_ucs4p2_tab[ch - 0x20000]; + break; default: return __UNKNOWN_10646_CHAR; } diff --git a/iconvdata/cns11643l1.c b/iconvdata/cns11643l1.c index 2372d64a4f..a95f40097d 100644 --- a/iconvdata/cns11643l1.c +++ b/iconvdata/cns11643l1.c @@ -1,5 +1,5 @@ /* Mapping tables for CNS 11643, plane 1 handling. - Copyright (C) 1998, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. @@ -20,13 +20,21 @@ #include <stdint.h> +/* To generate a Unicode 3.1 CNS11643.TXT, take + http://www.unicode.org/Public/Mappings/EASTASIA/OTHER/CNS11643.TXT + and add the following lines (see Unicode 3.1 UNIHAN.TXT): + 0x12728 0x4EA0 # <CJK Ideograph> + 0x1272F 0x51AB # <CJK Ideograph> + 0x12734 0x52F9 # <CJK Ideograph> + */ + /* The following table contains quite some big hole but I'm not sure whether it is a good idea to eliminate them. The algorithm gets slower (has to use loops). [And I'm too lazy in the moment.] The table can be generated using - egrep '^0x1' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x1' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -154,1365 +162,1366 @@ const uint16_t __cns11643l1_to_ucs4_tab[] = [0x01e6] = 0x247a, [0x01e7] = 0x247b, [0x01e8] = 0x247c, [0x01e9] = 0x247d, [0x01ea] = 0x2170, [0x01eb] = 0x2171, [0x01ec] = 0x2172, [0x01ed] = 0x2173, [0x01ee] = 0x2174, [0x01ef] = 0x2175, [0x01f0] = 0x2176, [0x01f1] = 0x2177, - [0x01f2] = 0x2178, [0x01f3] = 0x2179, [0x0c1e] = 0x2400, [0x0c1f] = 0x2401, - [0x0c20] = 0x2402, [0x0c21] = 0x2403, [0x0c22] = 0x2404, [0x0c23] = 0x2405, - [0x0c24] = 0x2406, [0x0c25] = 0x2407, [0x0c26] = 0x2408, [0x0c27] = 0x2409, - [0x0c28] = 0x240a, [0x0c29] = 0x240b, [0x0c2a] = 0x240c, [0x0c2b] = 0x240d, - [0x0c2c] = 0x240e, [0x0c2d] = 0x240f, [0x0c2e] = 0x2410, [0x0c2f] = 0x2411, - [0x0c30] = 0x2412, [0x0c31] = 0x2413, [0x0c32] = 0x2414, [0x0c33] = 0x2415, - [0x0c34] = 0x2416, [0x0c35] = 0x2417, [0x0c36] = 0x2418, [0x0c37] = 0x2419, - [0x0c38] = 0x241a, [0x0c39] = 0x241b, [0x0c3a] = 0x241c, [0x0c3b] = 0x241d, - [0x0c3c] = 0x241e, [0x0c3d] = 0x241f, [0x0c3e] = 0x2421, [0x0cda] = 0x4e00, - [0x0cdb] = 0x4e59, [0x0cdc] = 0x4e01, [0x0cdd] = 0x4e03, [0x0cde] = 0x4e43, - [0x0cdf] = 0x4e5d, [0x0ce0] = 0x4e86, [0x0ce1] = 0x4e8c, [0x0ce2] = 0x4eba, - [0x0ce3] = 0x513f, [0x0ce4] = 0x5165, [0x0ce5] = 0x516b, [0x0ce6] = 0x51e0, - [0x0ce7] = 0x5200, [0x0ce8] = 0x5201, [0x0ce9] = 0x529b, [0x0cea] = 0x5315, - [0x0ceb] = 0x5341, [0x0cec] = 0x535c, [0x0ced] = 0x53c8, [0x0cee] = 0x4e09, - [0x0cef] = 0x4e0b, [0x0cf0] = 0x4e08, [0x0cf1] = 0x4e0a, [0x0cf2] = 0x4e2b, - [0x0cf3] = 0x4e38, [0x0cf4] = 0x51e1, [0x0cf5] = 0x4e45, [0x0cf6] = 0x4e48, - [0x0cf7] = 0x4e5f, [0x0cf8] = 0x4e5e, [0x0cf9] = 0x4e8e, [0x0cfa] = 0x4ea1, - [0x0cfb] = 0x5140, [0x0cfc] = 0x5203, [0x0cfd] = 0x52fa, [0x0cfe] = 0x5343, - [0x0cff] = 0x53c9, [0x0d00] = 0x53e3, [0x0d01] = 0x571f, [0x0d02] = 0x58eb, - [0x0d03] = 0x5915, [0x0d04] = 0x5927, [0x0d05] = 0x5973, [0x0d06] = 0x5b50, - [0x0d07] = 0x5b51, [0x0d08] = 0x5b53, [0x0d09] = 0x5bf8, [0x0d0a] = 0x5c0f, - [0x0d0b] = 0x5c22, [0x0d0c] = 0x5c38, [0x0d0d] = 0x5c71, [0x0d0e] = 0x5ddd, - [0x0d0f] = 0x5de5, [0x0d10] = 0x5df1, [0x0d11] = 0x5df2, [0x0d12] = 0x5df3, - [0x0d13] = 0x5dfe, [0x0d14] = 0x5e72, [0x0d15] = 0x5efe, [0x0d16] = 0x5f0b, - [0x0d17] = 0x5f13, [0x0d18] = 0x624d, [0x0d19] = 0x4e11, [0x0d1a] = 0x4e10, - [0x0d1b] = 0x4e0d, [0x0d1c] = 0x4e2d, [0x0d1d] = 0x4e30, [0x0d1e] = 0x4e39, - [0x0d1f] = 0x4e4b, [0x0d20] = 0x5c39, [0x0d21] = 0x4e88, [0x0d22] = 0x4e91, - [0x0d23] = 0x4e95, [0x0d24] = 0x4e92, [0x0d25] = 0x4e94, [0x0d26] = 0x4ea2, - [0x0d27] = 0x4ec1, [0x0d28] = 0x4ec0, [0x0d29] = 0x4ec3, [0x0d2a] = 0x4ec6, - [0x0d2b] = 0x4ec7, [0x0d2c] = 0x4ecd, [0x0d2d] = 0x4eca, [0x0d2e] = 0x4ecb, - [0x0d2f] = 0x4ec4, [0x0d30] = 0x5143, [0x0d31] = 0x5141, [0x0d32] = 0x5167, - [0x0d33] = 0x516d, [0x0d34] = 0x516e, [0x0d35] = 0x516c, [0x0d36] = 0x5197, - [0x0d37] = 0x51f6, [0x0d38] = 0x5206, [0x0d39] = 0x5207, [0x0d3a] = 0x5208, - [0x0d3b] = 0x52fb, [0x0d3c] = 0x52fe, [0x0d3d] = 0x52ff, [0x0d3e] = 0x5316, - [0x0d3f] = 0x5339, [0x0d40] = 0x5348, [0x0d41] = 0x5347, [0x0d42] = 0x5345, - [0x0d43] = 0x535e, [0x0d44] = 0x5384, [0x0d45] = 0x53cb, [0x0d46] = 0x53ca, - [0x0d47] = 0x53cd, [0x0d48] = 0x58ec, [0x0d49] = 0x5929, [0x0d4a] = 0x592b, - [0x0d4b] = 0x592a, [0x0d4c] = 0x592d, [0x0d4d] = 0x5b54, [0x0d4e] = 0x5c11, - [0x0d4f] = 0x5c24, [0x0d50] = 0x5c3a, [0x0d51] = 0x5c6f, [0x0d52] = 0x5df4, - [0x0d53] = 0x5e7b, [0x0d54] = 0x5eff, [0x0d55] = 0x5f14, [0x0d56] = 0x5f15, - [0x0d57] = 0x5fc3, [0x0d58] = 0x6208, [0x0d59] = 0x6236, [0x0d5a] = 0x624b, - [0x0d5b] = 0x624e, [0x0d5c] = 0x652f, [0x0d5d] = 0x6587, [0x0d5e] = 0x6597, - [0x0d5f] = 0x65a4, [0x0d60] = 0x65b9, [0x0d61] = 0x65e5, [0x0d62] = 0x66f0, - [0x0d63] = 0x6708, [0x0d64] = 0x6728, [0x0d65] = 0x6b20, [0x0d66] = 0x6b62, - [0x0d67] = 0x6b79, [0x0d68] = 0x6bcb, [0x0d69] = 0x6bd4, [0x0d6a] = 0x6bdb, - [0x0d6b] = 0x6c0f, [0x0d6c] = 0x6c34, [0x0d6d] = 0x706b, [0x0d6e] = 0x722a, - [0x0d6f] = 0x7236, [0x0d70] = 0x723b, [0x0d71] = 0x7247, [0x0d72] = 0x7259, - [0x0d73] = 0x725b, [0x0d74] = 0x72ac, [0x0d75] = 0x738b, [0x0d76] = 0x4e19, - [0x0d77] = 0x4e16, [0x0d78] = 0x4e15, [0x0d79] = 0x4e14, [0x0d7a] = 0x4e18, - [0x0d7b] = 0x4e3b, [0x0d7c] = 0x4e4d, [0x0d7d] = 0x4e4f, [0x0d7e] = 0x4e4e, - [0x0d7f] = 0x4ee5, [0x0d80] = 0x4ed8, [0x0d81] = 0x4ed4, [0x0d82] = 0x4ed5, - [0x0d83] = 0x4ed6, [0x0d84] = 0x4ed7, [0x0d85] = 0x4ee3, [0x0d86] = 0x4ee4, - [0x0d87] = 0x4ed9, [0x0d88] = 0x4ede, [0x0d89] = 0x5145, [0x0d8a] = 0x5144, - [0x0d8b] = 0x5189, [0x0d8c] = 0x518a, [0x0d8d] = 0x51ac, [0x0d8e] = 0x51f9, - [0x0d8f] = 0x51fa, [0x0d90] = 0x51f8, [0x0d91] = 0x520a, [0x0d92] = 0x52a0, - [0x0d93] = 0x529f, [0x0d94] = 0x5305, [0x0d95] = 0x5306, [0x0d96] = 0x5317, - [0x0d97] = 0x531d, [0x0d98] = 0x4edf, [0x0d99] = 0x534a, [0x0d9a] = 0x5349, - [0x0d9b] = 0x5361, [0x0d9c] = 0x5360, [0x0d9d] = 0x536f, [0x0d9e] = 0x536e, - [0x0d9f] = 0x53bb, [0x0da0] = 0x53ef, [0x0da1] = 0x53e4, [0x0da2] = 0x53f3, - [0x0da3] = 0x53ec, [0x0da4] = 0x53ee, [0x0da5] = 0x53e9, [0x0da6] = 0x53e8, - [0x0da7] = 0x53fc, [0x0da8] = 0x53f8, [0x0da9] = 0x53f5, [0x0daa] = 0x53eb, - [0x0dab] = 0x53e6, [0x0dac] = 0x53ea, [0x0dad] = 0x53f2, [0x0dae] = 0x53f1, - [0x0daf] = 0x53f0, [0x0db0] = 0x53e5, [0x0db1] = 0x53ed, [0x0db2] = 0x53fb, - [0x0db3] = 0x56db, [0x0db4] = 0x56da, [0x0db5] = 0x5916, [0x0db6] = 0x592e, - [0x0db7] = 0x5931, [0x0db8] = 0x5974, [0x0db9] = 0x5976, [0x0dba] = 0x5b55, - [0x0dbb] = 0x5b83, [0x0dbc] = 0x5c3c, [0x0dbd] = 0x5de8, [0x0dbe] = 0x5de7, - [0x0dbf] = 0x5de6, [0x0dc0] = 0x5e02, [0x0dc1] = 0x5e03, [0x0dc2] = 0x5e73, - [0x0dc3] = 0x5e7c, [0x0dc4] = 0x5f01, [0x0dc5] = 0x5f18, [0x0dc6] = 0x5f17, - [0x0dc7] = 0x5fc5, [0x0dc8] = 0x620a, [0x0dc9] = 0x6253, [0x0dca] = 0x6254, - [0x0dcb] = 0x6252, [0x0dcc] = 0x6251, [0x0dcd] = 0x65a5, [0x0dce] = 0x65e6, - [0x0dcf] = 0x672e, [0x0dd0] = 0x672c, [0x0dd1] = 0x672a, [0x0dd2] = 0x672b, - [0x0dd3] = 0x672d, [0x0dd4] = 0x6b63, [0x0dd5] = 0x6bcd, [0x0dd6] = 0x6c11, - [0x0dd7] = 0x6c10, [0x0dd8] = 0x6c38, [0x0dd9] = 0x6c41, [0x0dda] = 0x6c40, - [0x0ddb] = 0x6c3e, [0x0ddc] = 0x72af, [0x0ddd] = 0x7384, [0x0dde] = 0x7389, - [0x0ddf] = 0x74dc, [0x0de0] = 0x74e6, [0x0de1] = 0x7518, [0x0de2] = 0x751f, - [0x0de3] = 0x7528, [0x0de4] = 0x7529, [0x0de5] = 0x7530, [0x0de6] = 0x7531, - [0x0de7] = 0x7532, [0x0de8] = 0x7533, [0x0de9] = 0x758b, [0x0dea] = 0x767d, - [0x0deb] = 0x76ae, [0x0dec] = 0x76bf, [0x0ded] = 0x76ee, [0x0dee] = 0x77db, - [0x0def] = 0x77e2, [0x0df0] = 0x77f3, [0x0df1] = 0x793a, [0x0df2] = 0x79be, - [0x0df3] = 0x7a74, [0x0df4] = 0x7acb, [0x0df5] = 0x4e1e, [0x0df6] = 0x4e1f, - [0x0df7] = 0x4e52, [0x0df8] = 0x4e53, [0x0df9] = 0x4e69, [0x0dfa] = 0x4e99, - [0x0dfb] = 0x4ea4, [0x0dfc] = 0x4ea6, [0x0dfd] = 0x4ea5, [0x0dfe] = 0x4eff, - [0x0dff] = 0x4f09, [0x0e00] = 0x4f19, [0x0e01] = 0x4f0a, [0x0e02] = 0x4f15, - [0x0e03] = 0x4f0d, [0x0e04] = 0x4f10, [0x0e05] = 0x4f11, [0x0e06] = 0x4f0f, - [0x0e07] = 0x4ef2, [0x0e08] = 0x4ef6, [0x0e09] = 0x4efb, [0x0e0a] = 0x4ef0, - [0x0e0b] = 0x4ef3, [0x0e0c] = 0x4efd, [0x0e0d] = 0x4f01, [0x0e0e] = 0x4f0b, - [0x0e0f] = 0x5149, [0x0e10] = 0x5147, [0x0e11] = 0x5146, [0x0e12] = 0x5148, - [0x0e13] = 0x5168, [0x0e14] = 0x5171, [0x0e15] = 0x518d, [0x0e16] = 0x51b0, - [0x0e17] = 0x5217, [0x0e18] = 0x5211, [0x0e19] = 0x5212, [0x0e1a] = 0x520e, - [0x0e1b] = 0x5216, [0x0e1c] = 0x52a3, [0x0e1d] = 0x5308, [0x0e1e] = 0x5321, - [0x0e1f] = 0x5320, [0x0e20] = 0x5370, [0x0e21] = 0x5371, [0x0e22] = 0x5409, - [0x0e23] = 0x540f, [0x0e24] = 0x540c, [0x0e25] = 0x540a, [0x0e26] = 0x5410, - [0x0e27] = 0x5401, [0x0e28] = 0x540b, [0x0e29] = 0x5404, [0x0e2a] = 0x5411, - [0x0e2b] = 0x540d, [0x0e2c] = 0x5408, [0x0e2d] = 0x5403, [0x0e2e] = 0x540e, - [0x0e2f] = 0x5406, [0x0e30] = 0x5412, [0x0e31] = 0x56e0, [0x0e32] = 0x56de, - [0x0e33] = 0x56dd, [0x0e34] = 0x5733, [0x0e35] = 0x5730, [0x0e36] = 0x5728, - [0x0e37] = 0x572d, [0x0e38] = 0x572c, [0x0e39] = 0x572f, [0x0e3a] = 0x5729, - [0x0e3b] = 0x5919, [0x0e3c] = 0x591a, [0x0e3d] = 0x5937, [0x0e3e] = 0x5938, - [0x0e3f] = 0x5984, [0x0e40] = 0x5978, [0x0e41] = 0x5983, [0x0e42] = 0x597d, - [0x0e43] = 0x5979, [0x0e44] = 0x5982, [0x0e45] = 0x5981, [0x0e46] = 0x5b57, - [0x0e47] = 0x5b58, [0x0e48] = 0x5b87, [0x0e49] = 0x5b88, [0x0e4a] = 0x5b85, - [0x0e4b] = 0x5b89, [0x0e4c] = 0x5bfa, [0x0e4d] = 0x5c16, [0x0e4e] = 0x5c79, - [0x0e4f] = 0x5dde, [0x0e50] = 0x5e06, [0x0e51] = 0x5e76, [0x0e52] = 0x5e74, - [0x0e53] = 0x5f0f, [0x0e54] = 0x5f1b, [0x0e55] = 0x5fd9, [0x0e56] = 0x5fd6, - [0x0e57] = 0x620e, [0x0e58] = 0x620c, [0x0e59] = 0x620d, [0x0e5a] = 0x6210, - [0x0e5b] = 0x6263, [0x0e5c] = 0x625b, [0x0e5d] = 0x6258, [0x0e5e] = 0x6536, - [0x0e5f] = 0x65e9, [0x0e60] = 0x65e8, [0x0e61] = 0x65ec, [0x0e62] = 0x65ed, - [0x0e63] = 0x66f2, [0x0e64] = 0x66f3, [0x0e65] = 0x6709, [0x0e66] = 0x673d, - [0x0e67] = 0x6734, [0x0e68] = 0x6731, [0x0e69] = 0x6735, [0x0e6a] = 0x6b21, - [0x0e6b] = 0x6b64, [0x0e6c] = 0x6b7b, [0x0e6d] = 0x6c16, [0x0e6e] = 0x6c5d, - [0x0e6f] = 0x6c57, [0x0e70] = 0x6c59, [0x0e71] = 0x6c5f, [0x0e72] = 0x6c60, - [0x0e73] = 0x6c50, [0x0e74] = 0x6c55, [0x0e75] = 0x6c61, [0x0e76] = 0x6c5b, - [0x0e77] = 0x6c4d, [0x0e78] = 0x6c4e, [0x0e79] = 0x7070, [0x0e7a] = 0x725f, - [0x0e7b] = 0x725d, [0x0e7c] = 0x767e, [0x0e7d] = 0x7af9, [0x0e7e] = 0x7c73, - [0x0e7f] = 0x7cf8, [0x0e80] = 0x7f36, [0x0e81] = 0x7f8a, [0x0e82] = 0x7fbd, - [0x0e83] = 0x8001, [0x0e84] = 0x8003, [0x0e85] = 0x800c, [0x0e86] = 0x8012, - [0x0e87] = 0x8033, [0x0e88] = 0x807f, [0x0e89] = 0x8089, [0x0e8a] = 0x808b, - [0x0e8b] = 0x808c, [0x0e8c] = 0x81e3, [0x0e8d] = 0x81ea, [0x0e8e] = 0x81f3, - [0x0e8f] = 0x81fc, [0x0e90] = 0x820c, [0x0e91] = 0x821b, [0x0e92] = 0x821f, - [0x0e93] = 0x826e, [0x0e94] = 0x8272, [0x0e95] = 0x827e, [0x0e96] = 0x866b, - [0x0e97] = 0x8840, [0x0e98] = 0x884c, [0x0e99] = 0x8863, [0x0e9a] = 0x897f, - [0x0e9b] = 0x9621, [0x0e9c] = 0x4e32, [0x0e9d] = 0x4ea8, [0x0e9e] = 0x4f4d, - [0x0e9f] = 0x4f4f, [0x0ea0] = 0x4f47, [0x0ea1] = 0x4f57, [0x0ea2] = 0x4f5e, - [0x0ea3] = 0x4f34, [0x0ea4] = 0x4f5b, [0x0ea5] = 0x4f55, [0x0ea6] = 0x4f30, - [0x0ea7] = 0x4f50, [0x0ea8] = 0x4f51, [0x0ea9] = 0x4f3d, [0x0eaa] = 0x4f3a, - [0x0eab] = 0x4f38, [0x0eac] = 0x4f43, [0x0ead] = 0x4f54, [0x0eae] = 0x4f3c, - [0x0eaf] = 0x4f46, [0x0eb0] = 0x4f63, [0x0eb1] = 0x4f5c, [0x0eb2] = 0x4f60, - [0x0eb3] = 0x4f2f, [0x0eb4] = 0x4f4e, [0x0eb5] = 0x4f36, [0x0eb6] = 0x4f59, - [0x0eb7] = 0x4f5d, [0x0eb8] = 0x4f48, [0x0eb9] = 0x4f5a, [0x0eba] = 0x514c, - [0x0ebb] = 0x514b, [0x0ebc] = 0x514d, [0x0ebd] = 0x5175, [0x0ebe] = 0x51b6, - [0x0ebf] = 0x51b7, [0x0ec0] = 0x5225, [0x0ec1] = 0x5224, [0x0ec2] = 0x5229, - [0x0ec3] = 0x522a, [0x0ec4] = 0x5228, [0x0ec5] = 0x52ab, [0x0ec6] = 0x52a9, - [0x0ec7] = 0x52aa, [0x0ec8] = 0x52ac, [0x0ec9] = 0x5323, [0x0eca] = 0x5373, - [0x0ecb] = 0x5375, [0x0ecc] = 0x541d, [0x0ecd] = 0x542d, [0x0ece] = 0x541e, - [0x0ecf] = 0x543e, [0x0ed0] = 0x5426, [0x0ed1] = 0x544e, [0x0ed2] = 0x5427, - [0x0ed3] = 0x5446, [0x0ed4] = 0x5443, [0x0ed5] = 0x5433, [0x0ed6] = 0x5448, - [0x0ed7] = 0x5442, [0x0ed8] = 0x541b, [0x0ed9] = 0x5429, [0x0eda] = 0x544a, - [0x0edb] = 0x5439, [0x0edc] = 0x543b, [0x0edd] = 0x5438, [0x0ede] = 0x542e, - [0x0edf] = 0x5435, [0x0ee0] = 0x5436, [0x0ee1] = 0x5420, [0x0ee2] = 0x543c, - [0x0ee3] = 0x5440, [0x0ee4] = 0x5431, [0x0ee5] = 0x542b, [0x0ee6] = 0x541f, - [0x0ee7] = 0x542c, [0x0ee8] = 0x56ea, [0x0ee9] = 0x56f0, [0x0eea] = 0x56e4, - [0x0eeb] = 0x56eb, [0x0eec] = 0x574a, [0x0eed] = 0x5751, [0x0eee] = 0x5740, - [0x0eef] = 0x574d, [0x0ef0] = 0x5747, [0x0ef1] = 0x574e, [0x0ef2] = 0x573e, - [0x0ef3] = 0x5750, [0x0ef4] = 0x574f, [0x0ef5] = 0x573b, [0x0ef6] = 0x58ef, - [0x0ef7] = 0x593e, [0x0ef8] = 0x599d, [0x0ef9] = 0x5992, [0x0efa] = 0x59a8, - [0x0efb] = 0x599e, [0x0efc] = 0x59a3, [0x0efd] = 0x5999, [0x0efe] = 0x5996, - [0x0eff] = 0x598d, [0x0f00] = 0x59a4, [0x0f01] = 0x5993, [0x0f02] = 0x598a, - [0x0f03] = 0x59a5, [0x0f04] = 0x5b5d, [0x0f05] = 0x5b5c, [0x0f06] = 0x5b5a, - [0x0f07] = 0x5b5b, [0x0f08] = 0x5b8c, [0x0f09] = 0x5b8b, [0x0f0a] = 0x5b8f, - [0x0f0b] = 0x5c2c, [0x0f0c] = 0x5c40, [0x0f0d] = 0x5c41, [0x0f0e] = 0x5c3f, - [0x0f0f] = 0x5c3e, [0x0f10] = 0x5c90, [0x0f11] = 0x5c91, [0x0f12] = 0x5c94, - [0x0f13] = 0x5c8c, [0x0f14] = 0x5deb, [0x0f15] = 0x5e0c, [0x0f16] = 0x5e8f, - [0x0f17] = 0x5e87, [0x0f18] = 0x5e8a, [0x0f19] = 0x5ef7, [0x0f1a] = 0x5f04, - [0x0f1b] = 0x5f1f, [0x0f1c] = 0x5f64, [0x0f1d] = 0x5f62, [0x0f1e] = 0x5f77, - [0x0f1f] = 0x5f79, [0x0f20] = 0x5fd8, [0x0f21] = 0x5fcc, [0x0f22] = 0x5fd7, - [0x0f23] = 0x5fcd, [0x0f24] = 0x5ff1, [0x0f25] = 0x5feb, [0x0f26] = 0x5ff8, - [0x0f27] = 0x5fea, [0x0f28] = 0x6212, [0x0f29] = 0x6211, [0x0f2a] = 0x6284, - [0x0f2b] = 0x6297, [0x0f2c] = 0x6296, [0x0f2d] = 0x6280, [0x0f2e] = 0x6276, - [0x0f2f] = 0x6289, [0x0f30] = 0x626d, [0x0f31] = 0x628a, [0x0f32] = 0x627c, - [0x0f33] = 0x627e, [0x0f34] = 0x6279, [0x0f35] = 0x6273, [0x0f36] = 0x6292, - [0x0f37] = 0x626f, [0x0f38] = 0x6298, [0x0f39] = 0x626e, [0x0f3a] = 0x6295, - [0x0f3b] = 0x6293, [0x0f3c] = 0x6291, [0x0f3d] = 0x6286, [0x0f3e] = 0x6539, - [0x0f3f] = 0x653b, [0x0f40] = 0x6538, [0x0f41] = 0x65f1, [0x0f42] = 0x66f4, - [0x0f43] = 0x675f, [0x0f44] = 0x674e, [0x0f45] = 0x674f, [0x0f46] = 0x6750, - [0x0f47] = 0x6751, [0x0f48] = 0x675c, [0x0f49] = 0x6756, [0x0f4a] = 0x675e, - [0x0f4b] = 0x6749, [0x0f4c] = 0x6746, [0x0f4d] = 0x6760, [0x0f4e] = 0x6753, - [0x0f4f] = 0x6757, [0x0f50] = 0x6b65, [0x0f51] = 0x6bcf, [0x0f52] = 0x6c42, - [0x0f53] = 0x6c5e, [0x0f54] = 0x6c99, [0x0f55] = 0x6c81, [0x0f56] = 0x6c88, - [0x0f57] = 0x6c89, [0x0f58] = 0x6c85, [0x0f59] = 0x6c9b, [0x0f5a] = 0x6c6a, - [0x0f5b] = 0x6c7a, [0x0f5c] = 0x6c90, [0x0f5d] = 0x6c70, [0x0f5e] = 0x6c8c, - [0x0f5f] = 0x6c68, [0x0f60] = 0x6c96, [0x0f61] = 0x6c92, [0x0f62] = 0x6c7d, - [0x0f63] = 0x6c83, [0x0f64] = 0x6c72, [0x0f65] = 0x6c7e, [0x0f66] = 0x6c74, - [0x0f67] = 0x6c86, [0x0f68] = 0x6c76, [0x0f69] = 0x6c8d, [0x0f6a] = 0x6c94, - [0x0f6b] = 0x6c98, [0x0f6c] = 0x6c82, [0x0f6d] = 0x7076, [0x0f6e] = 0x707c, - [0x0f6f] = 0x707d, [0x0f70] = 0x7078, [0x0f71] = 0x7262, [0x0f72] = 0x7261, - [0x0f73] = 0x7260, [0x0f74] = 0x72c4, [0x0f75] = 0x72c2, [0x0f76] = 0x7396, - [0x0f77] = 0x752c, [0x0f78] = 0x752b, [0x0f79] = 0x7537, [0x0f7a] = 0x7538, - [0x0f7b] = 0x7682, [0x0f7c] = 0x76ef, [0x0f7d] = 0x77e3, [0x0f7e] = 0x79c1, - [0x0f7f] = 0x79c0, [0x0f80] = 0x79bf, [0x0f81] = 0x7a76, [0x0f82] = 0x7cfb, - [0x0f83] = 0x7f55, [0x0f84] = 0x8096, [0x0f85] = 0x8093, [0x0f86] = 0x809d, - [0x0f87] = 0x8098, [0x0f88] = 0x809b, [0x0f89] = 0x809a, [0x0f8a] = 0x80b2, - [0x0f8b] = 0x826f, [0x0f8c] = 0x8292, [0x0f8d] = 0x828b, [0x0f8e] = 0x828d, - [0x0f8f] = 0x898b, [0x0f90] = 0x89d2, [0x0f91] = 0x8a00, [0x0f92] = 0x8c37, - [0x0f93] = 0x8c46, [0x0f94] = 0x8c55, [0x0f95] = 0x8c9d, [0x0f96] = 0x8d64, - [0x0f97] = 0x8d70, [0x0f98] = 0x8db3, [0x0f99] = 0x8eab, [0x0f9a] = 0x8eca, - [0x0f9b] = 0x8f9b, [0x0f9c] = 0x8fb0, [0x0f9d] = 0x8fc2, [0x0f9e] = 0x8fc6, - [0x0f9f] = 0x8fc5, [0x0fa0] = 0x8fc4, [0x0fa1] = 0x5de1, [0x0fa2] = 0x9091, - [0x0fa3] = 0x90a2, [0x0fa4] = 0x90aa, [0x0fa5] = 0x90a6, [0x0fa6] = 0x90a3, - [0x0fa7] = 0x9149, [0x0fa8] = 0x91c6, [0x0fa9] = 0x91cc, [0x0faa] = 0x9632, - [0x0fab] = 0x962e, [0x0fac] = 0x9631, [0x0fad] = 0x962a, [0x0fae] = 0x962c, - [0x0faf] = 0x4e26, [0x0fb0] = 0x4e56, [0x0fb1] = 0x4e73, [0x0fb2] = 0x4e8b, - [0x0fb3] = 0x4e9b, [0x0fb4] = 0x4e9e, [0x0fb5] = 0x4eab, [0x0fb6] = 0x4eac, - [0x0fb7] = 0x4f6f, [0x0fb8] = 0x4f9d, [0x0fb9] = 0x4f8d, [0x0fba] = 0x4f73, - [0x0fbb] = 0x4f7f, [0x0fbc] = 0x4f6c, [0x0fbd] = 0x4f9b, [0x0fbe] = 0x4f8b, - [0x0fbf] = 0x4f86, [0x0fc0] = 0x4f83, [0x0fc1] = 0x4f70, [0x0fc2] = 0x4f75, - [0x0fc3] = 0x4f88, [0x0fc4] = 0x4f69, [0x0fc5] = 0x4f7b, [0x0fc6] = 0x4f96, - [0x0fc7] = 0x4f7e, [0x0fc8] = 0x4f8f, [0x0fc9] = 0x4f91, [0x0fca] = 0x4f7a, - [0x0fcb] = 0x5154, [0x0fcc] = 0x5152, [0x0fcd] = 0x5155, [0x0fce] = 0x5169, - [0x0fcf] = 0x5177, [0x0fd0] = 0x5176, [0x0fd1] = 0x5178, [0x0fd2] = 0x51bd, - [0x0fd3] = 0x51fd, [0x0fd4] = 0x523b, [0x0fd5] = 0x5238, [0x0fd6] = 0x5237, - [0x0fd7] = 0x523a, [0x0fd8] = 0x5230, [0x0fd9] = 0x522e, [0x0fda] = 0x5236, - [0x0fdb] = 0x5241, [0x0fdc] = 0x52be, [0x0fdd] = 0x52bb, [0x0fde] = 0x5352, - [0x0fdf] = 0x5354, [0x0fe0] = 0x5353, [0x0fe1] = 0x5351, [0x0fe2] = 0x5366, - [0x0fe3] = 0x5377, [0x0fe4] = 0x5378, [0x0fe5] = 0x5379, [0x0fe6] = 0x53d6, - [0x0fe7] = 0x53d4, [0x0fe8] = 0x53d7, [0x0fe9] = 0x5473, [0x0fea] = 0x5475, - [0x0feb] = 0x5496, [0x0fec] = 0x5478, [0x0fed] = 0x5495, [0x0fee] = 0x5480, - [0x0fef] = 0x547b, [0x0ff0] = 0x5477, [0x0ff1] = 0x5484, [0x0ff2] = 0x5492, - [0x0ff3] = 0x5486, [0x0ff4] = 0x547c, [0x0ff5] = 0x5490, [0x0ff6] = 0x5471, - [0x0ff7] = 0x5476, [0x0ff8] = 0x548c, [0x0ff9] = 0x549a, [0x0ffa] = 0x5462, - [0x0ffb] = 0x5468, [0x0ffc] = 0x548b, [0x0ffd] = 0x547d, [0x0ffe] = 0x548e, - [0x0fff] = 0x56fa, [0x1000] = 0x5783, [0x1001] = 0x5777, [0x1002] = 0x576a, - [0x1003] = 0x5769, [0x1004] = 0x5761, [0x1005] = 0x5766, [0x1006] = 0x5764, - [0x1007] = 0x577c, [0x1008] = 0x591c, [0x1009] = 0x5949, [0x100a] = 0x5947, - [0x100b] = 0x5948, [0x100c] = 0x5944, [0x100d] = 0x5954, [0x100e] = 0x59be, - [0x100f] = 0x59bb, [0x1010] = 0x59d4, [0x1011] = 0x59b9, [0x1012] = 0x59ae, - [0x1013] = 0x59d1, [0x1014] = 0x59c6, [0x1015] = 0x59d0, [0x1016] = 0x59cd, - [0x1017] = 0x59cb, [0x1018] = 0x59d3, [0x1019] = 0x59ca, [0x101a] = 0x59af, - [0x101b] = 0x59b3, [0x101c] = 0x59d2, [0x101d] = 0x59c5, [0x101e] = 0x5b5f, - [0x101f] = 0x5b64, [0x1020] = 0x5b63, [0x1021] = 0x5b97, [0x1022] = 0x5b9a, - [0x1023] = 0x5b98, [0x1024] = 0x5b9c, [0x1025] = 0x5b99, [0x1026] = 0x5b9b, - [0x1027] = 0x5c1a, [0x1028] = 0x5c48, [0x1029] = 0x5c45, [0x102a] = 0x5c46, - [0x102b] = 0x5cb7, [0x102c] = 0x5ca1, [0x102d] = 0x5cb8, [0x102e] = 0x5ca9, - [0x102f] = 0x5cab, [0x1030] = 0x5cb1, [0x1031] = 0x5cb3, [0x1032] = 0x5e18, - [0x1033] = 0x5e1a, [0x1034] = 0x5e16, [0x1035] = 0x5e15, [0x1036] = 0x5e1b, - [0x1037] = 0x5e11, [0x1038] = 0x5e78, [0x1039] = 0x5e9a, [0x103a] = 0x5e97, - [0x103b] = 0x5e9c, [0x103c] = 0x5e95, [0x103d] = 0x5e96, [0x103e] = 0x5ef6, - [0x103f] = 0x5f26, [0x1040] = 0x5f27, [0x1041] = 0x5f29, [0x1042] = 0x5f80, - [0x1043] = 0x5f81, [0x1044] = 0x5f7f, [0x1045] = 0x5f7c, [0x1046] = 0x5fdd, - [0x1047] = 0x5fe0, [0x1048] = 0x5ffd, [0x1049] = 0x5ff5, [0x104a] = 0x5fff, - [0x104b] = 0x600f, [0x104c] = 0x6014, [0x104d] = 0x602f, [0x104e] = 0x6035, - [0x104f] = 0x6016, [0x1050] = 0x602a, [0x1051] = 0x6015, [0x1052] = 0x6021, - [0x1053] = 0x6027, [0x1054] = 0x6029, [0x1055] = 0x602b, [0x1056] = 0x601b, - [0x1057] = 0x6216, [0x1058] = 0x6215, [0x1059] = 0x623f, [0x105a] = 0x623e, - [0x105b] = 0x6240, [0x105c] = 0x627f, [0x105d] = 0x62c9, [0x105e] = 0x62cc, - [0x105f] = 0x62c4, [0x1060] = 0x62bf, [0x1061] = 0x62c2, [0x1062] = 0x62b9, - [0x1063] = 0x62d2, [0x1064] = 0x62db, [0x1065] = 0x62ab, [0x1066] = 0x62d3, - [0x1067] = 0x62d4, [0x1068] = 0x62cb, [0x1069] = 0x62c8, [0x106a] = 0x62a8, - [0x106b] = 0x62bd, [0x106c] = 0x62bc, [0x106d] = 0x62d0, [0x106e] = 0x62d9, - [0x106f] = 0x62c7, [0x1070] = 0x62cd, [0x1071] = 0x62b5, [0x1072] = 0x62da, - [0x1073] = 0x62b1, [0x1074] = 0x62d8, [0x1075] = 0x62d6, [0x1076] = 0x62d7, - [0x1077] = 0x62c6, [0x1078] = 0x62ac, [0x1079] = 0x62ce, [0x107a] = 0x653e, - [0x107b] = 0x65a7, [0x107c] = 0x65bc, [0x107d] = 0x65fa, [0x107e] = 0x6614, - [0x107f] = 0x6613, [0x1080] = 0x660c, [0x1081] = 0x6606, [0x1082] = 0x6602, - [0x1083] = 0x660e, [0x1084] = 0x6600, [0x1085] = 0x660f, [0x1086] = 0x6615, - [0x1087] = 0x660a, [0x1088] = 0x6607, [0x1089] = 0x670d, [0x108a] = 0x670b, - [0x108b] = 0x676d, [0x108c] = 0x678b, [0x108d] = 0x6795, [0x108e] = 0x6771, - [0x108f] = 0x679c, [0x1090] = 0x6773, [0x1091] = 0x6777, [0x1092] = 0x6787, - [0x1093] = 0x679d, [0x1094] = 0x6797, [0x1095] = 0x676f, [0x1096] = 0x6770, - [0x1097] = 0x677f, [0x1098] = 0x6789, [0x1099] = 0x677e, [0x109a] = 0x6790, - [0x109b] = 0x6775, [0x109c] = 0x679a, [0x109d] = 0x6793, [0x109e] = 0x677c, - [0x109f] = 0x676a, [0x10a0] = 0x6772, [0x10a1] = 0x6b23, [0x10a2] = 0x6b66, - [0x10a3] = 0x6b67, [0x10a4] = 0x6b7f, [0x10a5] = 0x6c13, [0x10a6] = 0x6c1b, - [0x10a7] = 0x6ce3, [0x10a8] = 0x6ce8, [0x10a9] = 0x6cf3, [0x10aa] = 0x6cb1, - [0x10ab] = 0x6ccc, [0x10ac] = 0x6ce5, [0x10ad] = 0x6cb3, [0x10ae] = 0x6cbd, - [0x10af] = 0x6cbe, [0x10b0] = 0x6cbc, [0x10b1] = 0x6ce2, [0x10b2] = 0x6cab, - [0x10b3] = 0x6cd5, [0x10b4] = 0x6cd3, [0x10b5] = 0x6cb8, [0x10b6] = 0x6cc4, - [0x10b7] = 0x6cb9, [0x10b8] = 0x6cc1, [0x10b9] = 0x6cae, [0x10ba] = 0x6cd7, - [0x10bb] = 0x6cc5, [0x10bc] = 0x6cf1, [0x10bd] = 0x6cbf, [0x10be] = 0x6cbb, - [0x10bf] = 0x6ce1, [0x10c0] = 0x6cdb, [0x10c1] = 0x6cca, [0x10c2] = 0x6cac, - [0x10c3] = 0x6cef, [0x10c4] = 0x6cdc, [0x10c5] = 0x6cd6, [0x10c6] = 0x6ce0, - [0x10c7] = 0x7095, [0x10c8] = 0x708e, [0x10c9] = 0x7092, [0x10ca] = 0x708a, - [0x10cb] = 0x7099, [0x10cc] = 0x722c, [0x10cd] = 0x722d, [0x10ce] = 0x7238, - [0x10cf] = 0x7248, [0x10d0] = 0x7267, [0x10d1] = 0x7269, [0x10d2] = 0x72c0, - [0x10d3] = 0x72ce, [0x10d4] = 0x72d9, [0x10d5] = 0x72d7, [0x10d6] = 0x72d0, - [0x10d7] = 0x73a9, [0x10d8] = 0x73a8, [0x10d9] = 0x739f, [0x10da] = 0x73ab, - [0x10db] = 0x73a5, [0x10dc] = 0x753d, [0x10dd] = 0x759d, [0x10de] = 0x7599, - [0x10df] = 0x759a, [0x10e0] = 0x7684, [0x10e1] = 0x76c2, [0x10e2] = 0x76f2, - [0x10e3] = 0x76f4, [0x10e4] = 0x77e5, [0x10e5] = 0x77fd, [0x10e6] = 0x793e, - [0x10e7] = 0x7940, [0x10e8] = 0x7941, [0x10e9] = 0x79c9, [0x10ea] = 0x79c8, - [0x10eb] = 0x7a7a, [0x10ec] = 0x7a79, [0x10ed] = 0x7afa, [0x10ee] = 0x7cfe, - [0x10ef] = 0x7f54, [0x10f0] = 0x7f8c, [0x10f1] = 0x7f8b, [0x10f2] = 0x8005, - [0x10f3] = 0x80ba, [0x10f4] = 0x80a5, [0x10f5] = 0x80a2, [0x10f6] = 0x80b1, - [0x10f7] = 0x80a1, [0x10f8] = 0x80ab, [0x10f9] = 0x80a9, [0x10fa] = 0x80b4, - [0x10fb] = 0x80aa, [0x10fc] = 0x80af, [0x10fd] = 0x81e5, [0x10fe] = 0x81fe, - [0x10ff] = 0x820d, [0x1100] = 0x82b3, [0x1101] = 0x829d, [0x1102] = 0x8299, - [0x1103] = 0x82ad, [0x1104] = 0x82bd, [0x1105] = 0x829f, [0x1106] = 0x82b9, - [0x1107] = 0x82b1, [0x1108] = 0x82ac, [0x1109] = 0x82a5, [0x110a] = 0x82af, - [0x110b] = 0x82b8, [0x110c] = 0x82a3, [0x110d] = 0x82b0, [0x110e] = 0x82be, - [0x110f] = 0x82b7, [0x1110] = 0x864e, [0x1111] = 0x8671, [0x1112] = 0x521d, - [0x1113] = 0x8868, [0x1114] = 0x8ecb, [0x1115] = 0x8fce, [0x1116] = 0x8fd4, - [0x1117] = 0x8fd1, [0x1118] = 0x90b5, [0x1119] = 0x90b8, [0x111a] = 0x90b1, - [0x111b] = 0x90b6, [0x111c] = 0x91c7, [0x111d] = 0x91d1, [0x111e] = 0x9577, - [0x111f] = 0x9580, [0x1120] = 0x961c, [0x1121] = 0x9640, [0x1122] = 0x963f, - [0x1123] = 0x963b, [0x1124] = 0x9644, [0x1125] = 0x9642, [0x1126] = 0x96b9, - [0x1127] = 0x96e8, [0x1128] = 0x9752, [0x1129] = 0x975e, [0x112a] = 0x4e9f, - [0x112b] = 0x4ead, [0x112c] = 0x4eae, [0x112d] = 0x4fe1, [0x112e] = 0x4fb5, - [0x112f] = 0x4faf, [0x1130] = 0x4fbf, [0x1131] = 0x4fe0, [0x1132] = 0x4fd1, - [0x1133] = 0x4fcf, [0x1134] = 0x4fdd, [0x1135] = 0x4fc3, [0x1136] = 0x4fb6, - [0x1137] = 0x4fd8, [0x1138] = 0x4fdf, [0x1139] = 0x4fca, [0x113a] = 0x4fd7, - [0x113b] = 0x4fae, [0x113c] = 0x4fd0, [0x113d] = 0x4fc4, [0x113e] = 0x4fc2, - [0x113f] = 0x4fda, [0x1140] = 0x4fce, [0x1141] = 0x4fde, [0x1142] = 0x4fb7, - [0x1143] = 0x5157, [0x1144] = 0x5192, [0x1145] = 0x5191, [0x1146] = 0x51a0, - [0x1147] = 0x524e, [0x1148] = 0x5243, [0x1149] = 0x524a, [0x114a] = 0x524d, - [0x114b] = 0x524c, [0x114c] = 0x524b, [0x114d] = 0x5247, [0x114e] = 0x52c7, - [0x114f] = 0x52c9, [0x1150] = 0x52c3, [0x1151] = 0x52c1, [0x1152] = 0x530d, - [0x1153] = 0x5357, [0x1154] = 0x537b, [0x1155] = 0x539a, [0x1156] = 0x53db, - [0x1157] = 0x54ac, [0x1158] = 0x54c0, [0x1159] = 0x54a8, [0x115a] = 0x54ce, - [0x115b] = 0x54c9, [0x115c] = 0x54b8, [0x115d] = 0x54a6, [0x115e] = 0x54b3, - [0x115f] = 0x54c7, [0x1160] = 0x54c2, [0x1161] = 0x54bd, [0x1162] = 0x54aa, - [0x1163] = 0x54c1, [0x1164] = 0x54c4, [0x1165] = 0x54c8, [0x1166] = 0x54af, - [0x1167] = 0x54ab, [0x1168] = 0x54b1, [0x1169] = 0x54bb, [0x116a] = 0x54a9, - [0x116b] = 0x54a7, [0x116c] = 0x54bf, [0x116d] = 0x56ff, [0x116e] = 0x5782, - [0x116f] = 0x578b, [0x1170] = 0x57a0, [0x1171] = 0x57a3, [0x1172] = 0x57a2, - [0x1173] = 0x57ce, [0x1174] = 0x57ae, [0x1175] = 0x5793, [0x1176] = 0x5955, - [0x1177] = 0x5951, [0x1178] = 0x594f, [0x1179] = 0x594e, [0x117a] = 0x5950, - [0x117b] = 0x59dc, [0x117c] = 0x59d8, [0x117d] = 0x59ff, [0x117e] = 0x59e3, - [0x117f] = 0x59e8, [0x1180] = 0x5a03, [0x1181] = 0x59e5, [0x1182] = 0x59ea, - [0x1183] = 0x59da, [0x1184] = 0x59e6, [0x1185] = 0x5a01, [0x1186] = 0x59fb, - [0x1187] = 0x5b69, [0x1188] = 0x5ba3, [0x1189] = 0x5ba6, [0x118a] = 0x5ba4, - [0x118b] = 0x5ba2, [0x118c] = 0x5ba5, [0x118d] = 0x5c01, [0x118e] = 0x5c4e, - [0x118f] = 0x5c4f, [0x1190] = 0x5c4d, [0x1191] = 0x5c4b, [0x1192] = 0x5cd9, - [0x1193] = 0x5cd2, [0x1194] = 0x5df7, [0x1195] = 0x5e1d, [0x1196] = 0x5e25, - [0x1197] = 0x5e1f, [0x1198] = 0x5e7d, [0x1199] = 0x5ea0, [0x119a] = 0x5ea6, - [0x119b] = 0x5efa, [0x119c] = 0x5f08, [0x119d] = 0x5f2d, [0x119e] = 0x5f65, - [0x119f] = 0x5f88, [0x11a0] = 0x5f85, [0x11a1] = 0x5f8a, [0x11a2] = 0x5f8b, - [0x11a3] = 0x5f87, [0x11a4] = 0x5f8c, [0x11a5] = 0x5f89, [0x11a6] = 0x6012, - [0x11a7] = 0x601d, [0x11a8] = 0x6020, [0x11a9] = 0x6025, [0x11aa] = 0x600e, - [0x11ab] = 0x6028, [0x11ac] = 0x604d, [0x11ad] = 0x6070, [0x11ae] = 0x6068, - [0x11af] = 0x6062, [0x11b0] = 0x6046, [0x11b1] = 0x6043, [0x11b2] = 0x606c, - [0x11b3] = 0x606b, [0x11b4] = 0x606a, [0x11b5] = 0x6064, [0x11b6] = 0x6241, - [0x11b7] = 0x62dc, [0x11b8] = 0x6316, [0x11b9] = 0x6309, [0x11ba] = 0x62fc, - [0x11bb] = 0x62ed, [0x11bc] = 0x6301, [0x11bd] = 0x62ee, [0x11be] = 0x62fd, - [0x11bf] = 0x6307, [0x11c0] = 0x62f1, [0x11c1] = 0x62f7, [0x11c2] = 0x62ef, - [0x11c3] = 0x62ec, [0x11c4] = 0x62fe, [0x11c5] = 0x62f4, [0x11c6] = 0x6311, - [0x11c7] = 0x6302, [0x11c8] = 0x653f, [0x11c9] = 0x6545, [0x11ca] = 0x65ab, - [0x11cb] = 0x65bd, [0x11cc] = 0x65e2, [0x11cd] = 0x6625, [0x11ce] = 0x662d, - [0x11cf] = 0x6620, [0x11d0] = 0x6627, [0x11d1] = 0x662f, [0x11d2] = 0x661f, - [0x11d3] = 0x6628, [0x11d4] = 0x6631, [0x11d5] = 0x6624, [0x11d6] = 0x66f7, - [0x11d7] = 0x67ff, [0x11d8] = 0x67d3, [0x11d9] = 0x67f1, [0x11da] = 0x67d4, - [0x11db] = 0x67d0, [0x11dc] = 0x67ec, [0x11dd] = 0x67b6, [0x11de] = 0x67af, - [0x11df] = 0x67f5, [0x11e0] = 0x67e9, [0x11e1] = 0x67ef, [0x11e2] = 0x67c4, - [0x11e3] = 0x67d1, [0x11e4] = 0x67b4, [0x11e5] = 0x67da, [0x11e6] = 0x67e5, - [0x11e7] = 0x67b8, [0x11e8] = 0x67cf, [0x11e9] = 0x67de, [0x11ea] = 0x67f3, - [0x11eb] = 0x67b0, [0x11ec] = 0x67d9, [0x11ed] = 0x67e2, [0x11ee] = 0x67dd, - [0x11ef] = 0x67d2, [0x11f0] = 0x6b6a, [0x11f1] = 0x6b83, [0x11f2] = 0x6b86, - [0x11f3] = 0x6bb5, [0x11f4] = 0x6bd2, [0x11f5] = 0x6bd7, [0x11f6] = 0x6c1f, - [0x11f7] = 0x6cc9, [0x11f8] = 0x6d0b, [0x11f9] = 0x6d32, [0x11fa] = 0x6d2a, - [0x11fb] = 0x6d41, [0x11fc] = 0x6d25, [0x11fd] = 0x6d0c, [0x11fe] = 0x6d31, - [0x11ff] = 0x6d1e, [0x1200] = 0x6d17, [0x1201] = 0x6d3b, [0x1202] = 0x6d3d, - [0x1203] = 0x6d3e, [0x1204] = 0x6d36, [0x1205] = 0x6d1b, [0x1206] = 0x6cf5, - [0x1207] = 0x6d39, [0x1208] = 0x6d27, [0x1209] = 0x6d38, [0x120a] = 0x6d29, - [0x120b] = 0x6d2e, [0x120c] = 0x6d35, [0x120d] = 0x6d0e, [0x120e] = 0x6d2b, - [0x120f] = 0x70ab, [0x1210] = 0x70ba, [0x1211] = 0x70b3, [0x1212] = 0x70ac, - [0x1213] = 0x70af, [0x1214] = 0x70ad, [0x1215] = 0x70b8, [0x1216] = 0x70ae, - [0x1217] = 0x70a4, [0x1218] = 0x7230, [0x1219] = 0x7272, [0x121a] = 0x726f, - [0x121b] = 0x7274, [0x121c] = 0x72e9, [0x121d] = 0x72e0, [0x121e] = 0x72e1, - [0x121f] = 0x73b7, [0x1220] = 0x73ca, [0x1221] = 0x73bb, [0x1222] = 0x73b2, - [0x1223] = 0x73cd, [0x1224] = 0x73c0, [0x1225] = 0x73b3, [0x1226] = 0x751a, - [0x1227] = 0x752d, [0x1228] = 0x754f, [0x1229] = 0x754c, [0x122a] = 0x754e, - [0x122b] = 0x754b, [0x122c] = 0x75ab, [0x122d] = 0x75a4, [0x122e] = 0x75a5, - [0x122f] = 0x75a2, [0x1230] = 0x75a3, [0x1231] = 0x7678, [0x1232] = 0x7686, - [0x1233] = 0x7687, [0x1234] = 0x7688, [0x1235] = 0x76c8, [0x1236] = 0x76c6, - [0x1237] = 0x76c3, [0x1238] = 0x76c5, [0x1239] = 0x7701, [0x123a] = 0x76f9, - [0x123b] = 0x76f8, [0x123c] = 0x7709, [0x123d] = 0x770b, [0x123e] = 0x76fe, - [0x123f] = 0x76fc, [0x1240] = 0x7707, [0x1241] = 0x77dc, [0x1242] = 0x7802, - [0x1243] = 0x7814, [0x1244] = 0x780c, [0x1245] = 0x780d, [0x1246] = 0x7946, - [0x1247] = 0x7949, [0x1248] = 0x7948, [0x1249] = 0x7947, [0x124a] = 0x79b9, - [0x124b] = 0x79ba, [0x124c] = 0x79d1, [0x124d] = 0x79d2, [0x124e] = 0x79cb, - [0x124f] = 0x7a7f, [0x1250] = 0x7a81, [0x1251] = 0x7aff, [0x1252] = 0x7afd, - [0x1253] = 0x7c7d, [0x1254] = 0x7d02, [0x1255] = 0x7d05, [0x1256] = 0x7d00, - [0x1257] = 0x7d09, [0x1258] = 0x7d07, [0x1259] = 0x7d04, [0x125a] = 0x7d06, - [0x125b] = 0x7f38, [0x125c] = 0x7f8e, [0x125d] = 0x7fbf, [0x125e] = 0x8010, - [0x125f] = 0x800d, [0x1260] = 0x8011, [0x1261] = 0x8036, [0x1262] = 0x80d6, - [0x1263] = 0x80e5, [0x1264] = 0x80da, [0x1265] = 0x80c3, [0x1266] = 0x80c4, - [0x1267] = 0x80cc, [0x1268] = 0x80e1, [0x1269] = 0x80db, [0x126a] = 0x80ce, - [0x126b] = 0x80de, [0x126c] = 0x80e4, [0x126d] = 0x80dd, [0x126e] = 0x81f4, - [0x126f] = 0x8222, [0x1270] = 0x82e7, [0x1271] = 0x8303, [0x1272] = 0x8305, - [0x1273] = 0x82e3, [0x1274] = 0x82db, [0x1275] = 0x82e6, [0x1276] = 0x8304, - [0x1277] = 0x82e5, [0x1278] = 0x8302, [0x1279] = 0x8309, [0x127a] = 0x82d2, - [0x127b] = 0x82d7, [0x127c] = 0x82f1, [0x127d] = 0x8301, [0x127e] = 0x82dc, - [0x127f] = 0x82d4, [0x1280] = 0x82d1, [0x1281] = 0x82de, [0x1282] = 0x82d3, - [0x1283] = 0x82df, [0x1284] = 0x82ef, [0x1285] = 0x8306, [0x1286] = 0x8650, - [0x1287] = 0x8679, [0x1288] = 0x867b, [0x1289] = 0x867a, [0x128a] = 0x884d, - [0x128b] = 0x886b, [0x128c] = 0x8981, [0x128d] = 0x89d4, [0x128e] = 0x8a08, - [0x128f] = 0x8a02, [0x1290] = 0x8a03, [0x1291] = 0x8c9e, [0x1292] = 0x8ca0, - [0x1293] = 0x8d74, [0x1294] = 0x8d73, [0x1295] = 0x8db4, [0x1296] = 0x8ecd, - [0x1297] = 0x8ecc, [0x1298] = 0x8ff0, [0x1299] = 0x8fe6, [0x129a] = 0x8fe2, - [0x129b] = 0x8fea, [0x129c] = 0x8fe5, [0x129d] = 0x8fed, [0x129e] = 0x8feb, - [0x129f] = 0x8fe4, [0x12a0] = 0x8fe8, [0x12a1] = 0x90ca, [0x12a2] = 0x90ce, - [0x12a3] = 0x90c1, [0x12a4] = 0x90c3, [0x12a5] = 0x914b, [0x12a6] = 0x914a, - [0x12a7] = 0x91cd, [0x12a8] = 0x9582, [0x12a9] = 0x9650, [0x12aa] = 0x964b, - [0x12ab] = 0x964c, [0x12ac] = 0x964d, [0x12ad] = 0x9762, [0x12ae] = 0x9769, - [0x12af] = 0x97cb, [0x12b0] = 0x97ed, [0x12b1] = 0x97f3, [0x12b2] = 0x9801, - [0x12b3] = 0x98a8, [0x12b4] = 0x98db, [0x12b5] = 0x98df, [0x12b6] = 0x9996, - [0x12b7] = 0x9999, [0x12b8] = 0x4e58, [0x12b9] = 0x4eb3, [0x12ba] = 0x500c, - [0x12bb] = 0x500d, [0x12bc] = 0x5023, [0x12bd] = 0x4fef, [0x12be] = 0x5026, - [0x12bf] = 0x5025, [0x12c0] = 0x4ff8, [0x12c1] = 0x5029, [0x12c2] = 0x5016, - [0x12c3] = 0x5006, [0x12c4] = 0x503c, [0x12c5] = 0x501f, [0x12c6] = 0x501a, - [0x12c7] = 0x5012, [0x12c8] = 0x5011, [0x12c9] = 0x4ffa, [0x12ca] = 0x5000, - [0x12cb] = 0x5014, [0x12cc] = 0x5028, [0x12cd] = 0x4ff1, [0x12ce] = 0x5021, - [0x12cf] = 0x500b, [0x12d0] = 0x5019, [0x12d1] = 0x5018, [0x12d2] = 0x4ff3, - [0x12d3] = 0x4fee, [0x12d4] = 0x502d, [0x12d5] = 0x502a, [0x12d6] = 0x4ffe, - [0x12d7] = 0x502b, [0x12d8] = 0x5009, [0x12d9] = 0x517c, [0x12da] = 0x51a4, - [0x12db] = 0x51a5, [0x12dc] = 0x51a2, [0x12dd] = 0x51cd, [0x12de] = 0x51cc, - [0x12df] = 0x51c6, [0x12e0] = 0x51cb, [0x12e1] = 0x5256, [0x12e2] = 0x525c, - [0x12e3] = 0x5254, [0x12e4] = 0x525b, [0x12e5] = 0x525d, [0x12e6] = 0x532a, - [0x12e7] = 0x537f, [0x12e8] = 0x539f, [0x12e9] = 0x539d, [0x12ea] = 0x53df, - [0x12eb] = 0x54e8, [0x12ec] = 0x5510, [0x12ed] = 0x5501, [0x12ee] = 0x5537, - [0x12ef] = 0x54fc, [0x12f0] = 0x54e5, [0x12f1] = 0x54f2, [0x12f2] = 0x5506, - [0x12f3] = 0x54fa, [0x12f4] = 0x5514, [0x12f5] = 0x54e9, [0x12f6] = 0x54ed, - [0x12f7] = 0x54e1, [0x12f8] = 0x5509, [0x12f9] = 0x54ee, [0x12fa] = 0x54ea, - [0x12fb] = 0x54e6, [0x12fc] = 0x5527, [0x12fd] = 0x5507, [0x12fe] = 0x54fd, - [0x12ff] = 0x550f, [0x1300] = 0x5703, [0x1301] = 0x5704, [0x1302] = 0x57c2, - [0x1303] = 0x57d4, [0x1304] = 0x57cb, [0x1305] = 0x57c3, [0x1306] = 0x5809, - [0x1307] = 0x590f, [0x1308] = 0x5957, [0x1309] = 0x5958, [0x130a] = 0x595a, - [0x130b] = 0x5a11, [0x130c] = 0x5a18, [0x130d] = 0x5a1c, [0x130e] = 0x5a1f, - [0x130f] = 0x5a1b, [0x1310] = 0x5a13, [0x1311] = 0x59ec, [0x1312] = 0x5a20, - [0x1313] = 0x5a23, [0x1314] = 0x5a29, [0x1315] = 0x5a25, [0x1316] = 0x5a0c, - [0x1317] = 0x5a09, [0x1318] = 0x5b6b, [0x1319] = 0x5c58, [0x131a] = 0x5bb0, - [0x131b] = 0x5bb3, [0x131c] = 0x5bb6, [0x131d] = 0x5bb4, [0x131e] = 0x5bae, - [0x131f] = 0x5bb5, [0x1320] = 0x5bb9, [0x1321] = 0x5bb8, [0x1322] = 0x5c04, - [0x1323] = 0x5c51, [0x1324] = 0x5c55, [0x1325] = 0x5c50, [0x1326] = 0x5ced, - [0x1327] = 0x5cfd, [0x1328] = 0x5cfb, [0x1329] = 0x5cea, [0x132a] = 0x5ce8, - [0x132b] = 0x5cf0, [0x132c] = 0x5cf6, [0x132d] = 0x5d01, [0x132e] = 0x5cf4, - [0x132f] = 0x5dee, [0x1330] = 0x5e2d, [0x1331] = 0x5e2b, [0x1332] = 0x5eab, - [0x1333] = 0x5ead, [0x1334] = 0x5ea7, [0x1335] = 0x5f31, [0x1336] = 0x5f92, - [0x1337] = 0x5f91, [0x1338] = 0x5f90, [0x1339] = 0x6059, [0x133a] = 0x6063, - [0x133b] = 0x6065, [0x133c] = 0x6050, [0x133d] = 0x6055, [0x133e] = 0x606d, - [0x133f] = 0x6069, [0x1340] = 0x606f, [0x1341] = 0x6084, [0x1342] = 0x609f, - [0x1343] = 0x609a, [0x1344] = 0x608d, [0x1345] = 0x6094, [0x1346] = 0x608c, - [0x1347] = 0x6085, [0x1348] = 0x6096, [0x1349] = 0x6247, [0x134a] = 0x62f3, - [0x134b] = 0x6308, [0x134c] = 0x62ff, [0x134d] = 0x634e, [0x134e] = 0x633e, - [0x134f] = 0x632f, [0x1350] = 0x6355, [0x1351] = 0x6342, [0x1352] = 0x6346, - [0x1353] = 0x634f, [0x1354] = 0x6349, [0x1355] = 0x633a, [0x1356] = 0x6350, - [0x1357] = 0x633d, [0x1358] = 0x632a, [0x1359] = 0x632b, [0x135a] = 0x6328, - [0x135b] = 0x634d, [0x135c] = 0x634c, [0x135d] = 0x6548, [0x135e] = 0x6549, - [0x135f] = 0x6599, [0x1360] = 0x65c1, [0x1361] = 0x65c5, [0x1362] = 0x6642, - [0x1363] = 0x6649, [0x1364] = 0x664f, [0x1365] = 0x6643, [0x1366] = 0x6652, - [0x1367] = 0x664c, [0x1368] = 0x6645, [0x1369] = 0x6641, [0x136a] = 0x66f8, - [0x136b] = 0x6714, [0x136c] = 0x6715, [0x136d] = 0x6717, [0x136e] = 0x6821, - [0x136f] = 0x6838, [0x1370] = 0x6848, [0x1371] = 0x6846, [0x1372] = 0x6853, - [0x1373] = 0x6839, [0x1374] = 0x6842, [0x1375] = 0x6854, [0x1376] = 0x6829, - [0x1377] = 0x68b3, [0x1378] = 0x6817, [0x1379] = 0x684c, [0x137a] = 0x6851, - [0x137b] = 0x683d, [0x137c] = 0x67f4, [0x137d] = 0x6850, [0x137e] = 0x6840, - [0x137f] = 0x683c, [0x1380] = 0x6843, [0x1381] = 0x682a, [0x1382] = 0x6845, - [0x1383] = 0x6813, [0x1384] = 0x6818, [0x1385] = 0x6841, [0x1386] = 0x6b8a, - [0x1387] = 0x6b89, [0x1388] = 0x6bb7, [0x1389] = 0x6c23, [0x138a] = 0x6c27, - [0x138b] = 0x6c28, [0x138c] = 0x6c26, [0x138d] = 0x6c24, [0x138e] = 0x6cf0, - [0x138f] = 0x6d6a, [0x1390] = 0x6d95, [0x1391] = 0x6d88, [0x1392] = 0x6d87, - [0x1393] = 0x6d66, [0x1394] = 0x6d78, [0x1395] = 0x6d77, [0x1396] = 0x6d59, - [0x1397] = 0x6d93, [0x1398] = 0x6d6c, [0x1399] = 0x6d89, [0x139a] = 0x6d6e, - [0x139b] = 0x6d5a, [0x139c] = 0x6d74, [0x139d] = 0x6d69, [0x139e] = 0x6d8c, - [0x139f] = 0x6d8a, [0x13a0] = 0x6d79, [0x13a1] = 0x6d85, [0x13a2] = 0x6d65, - [0x13a3] = 0x6d94, [0x13a4] = 0x70ca, [0x13a5] = 0x70d8, [0x13a6] = 0x70e4, - [0x13a7] = 0x70d9, [0x13a8] = 0x70c8, [0x13a9] = 0x70cf, [0x13aa] = 0x7239, - [0x13ab] = 0x7279, [0x13ac] = 0x72fc, [0x13ad] = 0x72f9, [0x13ae] = 0x72fd, - [0x13af] = 0x72f8, [0x13b0] = 0x72f7, [0x13b1] = 0x7386, [0x13b2] = 0x73ed, - [0x13b3] = 0x7409, [0x13b4] = 0x73ee, [0x13b5] = 0x73e0, [0x13b6] = 0x73ea, - [0x13b7] = 0x73de, [0x13b8] = 0x7554, [0x13b9] = 0x755d, [0x13ba] = 0x755c, - [0x13bb] = 0x755a, [0x13bc] = 0x7559, [0x13bd] = 0x75be, [0x13be] = 0x75c5, - [0x13bf] = 0x75c7, [0x13c0] = 0x75b2, [0x13c1] = 0x75b3, [0x13c2] = 0x75bd, - [0x13c3] = 0x75bc, [0x13c4] = 0x75b9, [0x13c5] = 0x75c2, [0x13c6] = 0x75b8, - [0x13c7] = 0x768b, [0x13c8] = 0x76b0, [0x13c9] = 0x76ca, [0x13ca] = 0x76cd, - [0x13cb] = 0x76ce, [0x13cc] = 0x7729, [0x13cd] = 0x771f, [0x13ce] = 0x7720, - [0x13cf] = 0x7728, [0x13d0] = 0x77e9, [0x13d1] = 0x7830, [0x13d2] = 0x7827, - [0x13d3] = 0x7838, [0x13d4] = 0x781d, [0x13d5] = 0x7834, [0x13d6] = 0x7837, - [0x13d7] = 0x7825, [0x13d8] = 0x782d, [0x13d9] = 0x7820, [0x13da] = 0x781f, - [0x13db] = 0x7832, [0x13dc] = 0x7955, [0x13dd] = 0x7950, [0x13de] = 0x7960, - [0x13df] = 0x795f, [0x13e0] = 0x7956, [0x13e1] = 0x795e, [0x13e2] = 0x795d, - [0x13e3] = 0x7957, [0x13e4] = 0x795a, [0x13e5] = 0x79e4, [0x13e6] = 0x79e3, - [0x13e7] = 0x79e7, [0x13e8] = 0x79df, [0x13e9] = 0x79e6, [0x13ea] = 0x79e9, - [0x13eb] = 0x79d8, [0x13ec] = 0x7a84, [0x13ed] = 0x7a88, [0x13ee] = 0x7ad9, - [0x13ef] = 0x7b06, [0x13f0] = 0x7b11, [0x13f1] = 0x7c89, [0x13f2] = 0x7d21, - [0x13f3] = 0x7d17, [0x13f4] = 0x7d0b, [0x13f5] = 0x7d0a, [0x13f6] = 0x7d20, - [0x13f7] = 0x7d22, [0x13f8] = 0x7d14, [0x13f9] = 0x7d10, [0x13fa] = 0x7d15, - [0x13fb] = 0x7d1a, [0x13fc] = 0x7d1c, [0x13fd] = 0x7d0d, [0x13fe] = 0x7d19, - [0x13ff] = 0x7d1b, [0x1400] = 0x7f3a, [0x1401] = 0x7f5f, [0x1402] = 0x7f94, - [0x1403] = 0x7fc5, [0x1404] = 0x7fc1, [0x1405] = 0x8006, [0x1406] = 0x8004, - [0x1407] = 0x8018, [0x1408] = 0x8015, [0x1409] = 0x8019, [0x140a] = 0x8017, - [0x140b] = 0x803d, [0x140c] = 0x803f, [0x140d] = 0x80f1, [0x140e] = 0x8102, - [0x140f] = 0x80f0, [0x1410] = 0x8105, [0x1411] = 0x80ed, [0x1412] = 0x80f4, - [0x1413] = 0x8106, [0x1414] = 0x80f8, [0x1415] = 0x80f3, [0x1416] = 0x8108, - [0x1417] = 0x80fd, [0x1418] = 0x810a, [0x1419] = 0x80fc, [0x141a] = 0x80ef, - [0x141b] = 0x81ed, [0x141c] = 0x81ec, [0x141d] = 0x8200, [0x141e] = 0x8210, - [0x141f] = 0x822a, [0x1420] = 0x822b, [0x1421] = 0x8228, [0x1422] = 0x822c, - [0x1423] = 0x82bb, [0x1424] = 0x832b, [0x1425] = 0x8352, [0x1426] = 0x8354, - [0x1427] = 0x834a, [0x1428] = 0x8338, [0x1429] = 0x8350, [0x142a] = 0x8349, - [0x142b] = 0x8335, [0x142c] = 0x8334, [0x142d] = 0x834f, [0x142e] = 0x8332, - [0x142f] = 0x8339, [0x1430] = 0x8336, [0x1431] = 0x8317, [0x1432] = 0x8340, - [0x1433] = 0x8331, [0x1434] = 0x8328, [0x1435] = 0x8343, [0x1436] = 0x8654, - [0x1437] = 0x868a, [0x1438] = 0x86aa, [0x1439] = 0x8693, [0x143a] = 0x86a4, - [0x143b] = 0x86a9, [0x143c] = 0x868c, [0x143d] = 0x86a3, [0x143e] = 0x869c, - [0x143f] = 0x8870, [0x1440] = 0x8877, [0x1441] = 0x8881, [0x1442] = 0x8882, - [0x1443] = 0x887d, [0x1444] = 0x8879, [0x1445] = 0x8a18, [0x1446] = 0x8a10, - [0x1447] = 0x8a0e, [0x1448] = 0x8a0c, [0x1449] = 0x8a15, [0x144a] = 0x8a0a, - [0x144b] = 0x8a17, [0x144c] = 0x8a13, [0x144d] = 0x8a16, [0x144e] = 0x8a0f, - [0x144f] = 0x8a11, [0x1450] = 0x8c48, [0x1451] = 0x8c7a, [0x1452] = 0x8c79, - [0x1453] = 0x8ca1, [0x1454] = 0x8ca2, [0x1455] = 0x8d77, [0x1456] = 0x8eac, - [0x1457] = 0x8ed2, [0x1458] = 0x8ed4, [0x1459] = 0x8ecf, [0x145a] = 0x8fb1, - [0x145b] = 0x9001, [0x145c] = 0x9006, [0x145d] = 0x8ff7, [0x145e] = 0x9000, - [0x145f] = 0x8ffa, [0x1460] = 0x8ff4, [0x1461] = 0x9003, [0x1462] = 0x8ffd, - [0x1463] = 0x9005, [0x1464] = 0x8ff8, [0x1465] = 0x9095, [0x1466] = 0x90e1, - [0x1467] = 0x90dd, [0x1468] = 0x90e2, [0x1469] = 0x9152, [0x146a] = 0x914d, - [0x146b] = 0x914c, [0x146c] = 0x91d8, [0x146d] = 0x91dd, [0x146e] = 0x91d7, - [0x146f] = 0x91dc, [0x1470] = 0x91d9, [0x1471] = 0x9583, [0x1472] = 0x9662, - [0x1473] = 0x9663, [0x1474] = 0x9661, [0x1475] = 0x965b, [0x1476] = 0x965d, - [0x1477] = 0x9664, [0x1478] = 0x9658, [0x1479] = 0x965e, [0x147a] = 0x96bb, - [0x147b] = 0x98e2, [0x147c] = 0x99ac, [0x147d] = 0x9aa8, [0x147e] = 0x9ad8, - [0x147f] = 0x9b25, [0x1480] = 0x9b32, [0x1481] = 0x9b3c, [0x1482] = 0x4e7e, - [0x1483] = 0x507a, [0x1484] = 0x507d, [0x1485] = 0x505c, [0x1486] = 0x5047, - [0x1487] = 0x5043, [0x1488] = 0x504c, [0x1489] = 0x505a, [0x148a] = 0x5049, - [0x148b] = 0x5065, [0x148c] = 0x5076, [0x148d] = 0x504e, [0x148e] = 0x5055, - [0x148f] = 0x5075, [0x1490] = 0x5074, [0x1491] = 0x5077, [0x1492] = 0x504f, - [0x1493] = 0x500f, [0x1494] = 0x506f, [0x1495] = 0x506d, [0x1496] = 0x515c, - [0x1497] = 0x5195, [0x1498] = 0x51f0, [0x1499] = 0x526a, [0x149a] = 0x526f, - [0x149b] = 0x52d2, [0x149c] = 0x52d9, [0x149d] = 0x52d8, [0x149e] = 0x52d5, - [0x149f] = 0x5310, [0x14a0] = 0x530f, [0x14a1] = 0x5319, [0x14a2] = 0x533f, - [0x14a3] = 0x5340, [0x14a4] = 0x533e, [0x14a5] = 0x53c3, [0x14a6] = 0x66fc, - [0x14a7] = 0x5546, [0x14a8] = 0x556a, [0x14a9] = 0x5566, [0x14aa] = 0x5544, - [0x14ab] = 0x555e, [0x14ac] = 0x5561, [0x14ad] = 0x5543, [0x14ae] = 0x554a, - [0x14af] = 0x5531, [0x14b0] = 0x5556, [0x14b1] = 0x554f, [0x14b2] = 0x5555, - [0x14b3] = 0x552f, [0x14b4] = 0x5564, [0x14b5] = 0x5538, [0x14b6] = 0x552e, - [0x14b7] = 0x555c, [0x14b8] = 0x552c, [0x14b9] = 0x5563, [0x14ba] = 0x5533, - [0x14bb] = 0x5541, [0x14bc] = 0x5557, [0x14bd] = 0x5708, [0x14be] = 0x570b, - [0x14bf] = 0x5709, [0x14c0] = 0x57df, [0x14c1] = 0x5805, [0x14c2] = 0x580a, - [0x14c3] = 0x5806, [0x14c4] = 0x57e0, [0x14c5] = 0x57e4, [0x14c6] = 0x57fa, - [0x14c7] = 0x5802, [0x14c8] = 0x5835, [0x14c9] = 0x57f7, [0x14ca] = 0x57f9, - [0x14cb] = 0x5920, [0x14cc] = 0x5962, [0x14cd] = 0x5a36, [0x14ce] = 0x5a41, - [0x14cf] = 0x5a49, [0x14d0] = 0x5a66, [0x14d1] = 0x5a6a, [0x14d2] = 0x5a40, - [0x14d3] = 0x5a3c, [0x14d4] = 0x5a62, [0x14d5] = 0x5a5a, [0x14d6] = 0x5a46, - [0x14d7] = 0x5a4a, [0x14d8] = 0x5b70, [0x14d9] = 0x5bc7, [0x14da] = 0x5bc5, - [0x14db] = 0x5bc4, [0x14dc] = 0x5bc2, [0x14dd] = 0x5bbf, [0x14de] = 0x5bc6, - [0x14df] = 0x5c09, [0x14e0] = 0x5c08, [0x14e1] = 0x5c07, [0x14e2] = 0x5c60, - [0x14e3] = 0x5c5c, [0x14e4] = 0x5c5d, [0x14e5] = 0x5d07, [0x14e6] = 0x5d06, - [0x14e7] = 0x5d0e, [0x14e8] = 0x5d1b, [0x14e9] = 0x5d16, [0x14ea] = 0x5d22, - [0x14eb] = 0x5d11, [0x14ec] = 0x5d29, [0x14ed] = 0x5d14, [0x14ee] = 0x5d19, - [0x14ef] = 0x5d24, [0x14f0] = 0x5d27, [0x14f1] = 0x5d17, [0x14f2] = 0x5de2, - [0x14f3] = 0x5e38, [0x14f4] = 0x5e36, [0x14f5] = 0x5e33, [0x14f6] = 0x5e37, - [0x14f7] = 0x5eb7, [0x14f8] = 0x5eb8, [0x14f9] = 0x5eb6, [0x14fa] = 0x5eb5, - [0x14fb] = 0x5ebe, [0x14fc] = 0x5f35, [0x14fd] = 0x5f37, [0x14fe] = 0x5f57, - [0x14ff] = 0x5f6c, [0x1500] = 0x5f69, [0x1501] = 0x5f6b, [0x1502] = 0x5f97, - [0x1503] = 0x5f99, [0x1504] = 0x5f9e, [0x1505] = 0x5f98, [0x1506] = 0x5fa1, - [0x1507] = 0x5fa0, [0x1508] = 0x5f9c, [0x1509] = 0x607f, [0x150a] = 0x60a3, - [0x150b] = 0x6089, [0x150c] = 0x60a0, [0x150d] = 0x60a8, [0x150e] = 0x60cb, - [0x150f] = 0x60b4, [0x1510] = 0x60e6, [0x1511] = 0x60bd, [0x1512] = 0x60c5, - [0x1513] = 0x60bb, [0x1514] = 0x60b5, [0x1515] = 0x60dc, [0x1516] = 0x60bc, - [0x1517] = 0x60d8, [0x1518] = 0x60d5, [0x1519] = 0x60c6, [0x151a] = 0x60df, - [0x151b] = 0x60b8, [0x151c] = 0x60da, [0x151d] = 0x60c7, [0x151e] = 0x621a, - [0x151f] = 0x621b, [0x1520] = 0x6248, [0x1521] = 0x63a0, [0x1522] = 0x63a7, - [0x1523] = 0x6372, [0x1524] = 0x6396, [0x1525] = 0x63a2, [0x1526] = 0x63a5, - [0x1527] = 0x6377, [0x1528] = 0x6367, [0x1529] = 0x6398, [0x152a] = 0x63aa, - [0x152b] = 0x6371, [0x152c] = 0x63a9, [0x152d] = 0x6389, [0x152e] = 0x6383, - [0x152f] = 0x639b, [0x1530] = 0x636b, [0x1531] = 0x63a8, [0x1532] = 0x6384, - [0x1533] = 0x6388, [0x1534] = 0x6399, [0x1535] = 0x63a1, [0x1536] = 0x63ac, - [0x1537] = 0x6392, [0x1538] = 0x638f, [0x1539] = 0x6380, [0x153a] = 0x637b, - [0x153b] = 0x6369, [0x153c] = 0x6368, [0x153d] = 0x637a, [0x153e] = 0x655d, - [0x153f] = 0x6556, [0x1540] = 0x6551, [0x1541] = 0x6559, [0x1542] = 0x6557, - [0x1543] = 0x555f, [0x1544] = 0x654f, [0x1545] = 0x6558, [0x1546] = 0x6555, - [0x1547] = 0x6554, [0x1548] = 0x659c, [0x1549] = 0x659b, [0x154a] = 0x65ac, - [0x154b] = 0x65cf, [0x154c] = 0x65cb, [0x154d] = 0x65cc, [0x154e] = 0x65ce, - [0x154f] = 0x665d, [0x1550] = 0x665a, [0x1551] = 0x6664, [0x1552] = 0x6668, - [0x1553] = 0x6666, [0x1554] = 0x665e, [0x1555] = 0x66f9, [0x1556] = 0x52d7, - [0x1557] = 0x671b, [0x1558] = 0x6881, [0x1559] = 0x68af, [0x155a] = 0x68a2, - [0x155b] = 0x6893, [0x155c] = 0x68b5, [0x155d] = 0x687f, [0x155e] = 0x6876, - [0x155f] = 0x68b1, [0x1560] = 0x68a7, [0x1561] = 0x6897, [0x1562] = 0x68b0, - [0x1563] = 0x6883, [0x1564] = 0x68c4, [0x1565] = 0x68ad, [0x1566] = 0x6886, - [0x1567] = 0x6885, [0x1568] = 0x6894, [0x1569] = 0x689d, [0x156a] = 0x68a8, - [0x156b] = 0x689f, [0x156c] = 0x68a1, [0x156d] = 0x6882, [0x156e] = 0x6b32, - [0x156f] = 0x6bba, [0x1570] = 0x6beb, [0x1571] = 0x6bec, [0x1572] = 0x6c2b, - [0x1573] = 0x6d8e, [0x1574] = 0x6dbc, [0x1575] = 0x6df3, [0x1576] = 0x6dd9, - [0x1577] = 0x6db2, [0x1578] = 0x6de1, [0x1579] = 0x6dcc, [0x157a] = 0x6de4, - [0x157b] = 0x6dfb, [0x157c] = 0x6dfa, [0x157d] = 0x6e05, [0x157e] = 0x6dc7, - [0x157f] = 0x6dcb, [0x1580] = 0x6daf, [0x1581] = 0x6dd1, [0x1582] = 0x6dae, - [0x1583] = 0x6dde, [0x1584] = 0x6df9, [0x1585] = 0x6db8, [0x1586] = 0x6df7, - [0x1587] = 0x6df5, [0x1588] = 0x6dc5, [0x1589] = 0x6dd2, [0x158a] = 0x6e1a, - [0x158b] = 0x6db5, [0x158c] = 0x6dda, [0x158d] = 0x6deb, [0x158e] = 0x6dd8, - [0x158f] = 0x6dea, [0x1590] = 0x6df1, [0x1591] = 0x6dee, [0x1592] = 0x6de8, - [0x1593] = 0x6dc6, [0x1594] = 0x6dc4, [0x1595] = 0x6daa, [0x1596] = 0x6dec, - [0x1597] = 0x6dbf, [0x1598] = 0x6de6, [0x1599] = 0x70f9, [0x159a] = 0x7109, - [0x159b] = 0x710a, [0x159c] = 0x70fd, [0x159d] = 0x70ef, [0x159e] = 0x723d, - [0x159f] = 0x727d, [0x15a0] = 0x7281, [0x15a1] = 0x731c, [0x15a2] = 0x731b, - [0x15a3] = 0x7316, [0x15a4] = 0x7313, [0x15a5] = 0x7319, [0x15a6] = 0x7387, - [0x15a7] = 0x7405, [0x15a8] = 0x740a, [0x15a9] = 0x7403, [0x15aa] = 0x7406, - [0x15ab] = 0x73fe, [0x15ac] = 0x740d, [0x15ad] = 0x74e0, [0x15ae] = 0x74f6, - [0x15af] = 0x74f7, [0x15b0] = 0x751c, [0x15b1] = 0x7522, [0x15b2] = 0x7565, - [0x15b3] = 0x7566, [0x15b4] = 0x7562, [0x15b5] = 0x7570, [0x15b6] = 0x758f, - [0x15b7] = 0x75d4, [0x15b8] = 0x75d5, [0x15b9] = 0x75b5, [0x15ba] = 0x75ca, - [0x15bb] = 0x75cd, [0x15bc] = 0x768e, [0x15bd] = 0x76d4, [0x15be] = 0x76d2, - [0x15bf] = 0x76db, [0x15c0] = 0x7737, [0x15c1] = 0x773e, [0x15c2] = 0x773c, - [0x15c3] = 0x7736, [0x15c4] = 0x7738, [0x15c5] = 0x773a, [0x15c6] = 0x786b, - [0x15c7] = 0x7843, [0x15c8] = 0x784e, [0x15c9] = 0x7965, [0x15ca] = 0x7968, - [0x15cb] = 0x796d, [0x15cc] = 0x79fb, [0x15cd] = 0x7a92, [0x15ce] = 0x7a95, - [0x15cf] = 0x7b20, [0x15d0] = 0x7b28, [0x15d1] = 0x7b1b, [0x15d2] = 0x7b2c, - [0x15d3] = 0x7b26, [0x15d4] = 0x7b19, [0x15d5] = 0x7b1e, [0x15d6] = 0x7b2e, - [0x15d7] = 0x7c92, [0x15d8] = 0x7c97, [0x15d9] = 0x7c95, [0x15da] = 0x7d46, - [0x15db] = 0x7d43, [0x15dc] = 0x7d71, [0x15dd] = 0x7d2e, [0x15de] = 0x7d39, - [0x15df] = 0x7d3c, [0x15e0] = 0x7d40, [0x15e1] = 0x7d30, [0x15e2] = 0x7d33, - [0x15e3] = 0x7d44, [0x15e4] = 0x7d2f, [0x15e5] = 0x7d42, [0x15e6] = 0x7d32, - [0x15e7] = 0x7d31, [0x15e8] = 0x7f3d, [0x15e9] = 0x7f9e, [0x15ea] = 0x7f9a, - [0x15eb] = 0x7fcc, [0x15ec] = 0x7fce, [0x15ed] = 0x7fd2, [0x15ee] = 0x801c, - [0x15ef] = 0x804a, [0x15f0] = 0x8046, [0x15f1] = 0x812f, [0x15f2] = 0x8116, - [0x15f3] = 0x8123, [0x15f4] = 0x812b, [0x15f5] = 0x8129, [0x15f6] = 0x8130, - [0x15f7] = 0x8124, [0x15f8] = 0x8202, [0x15f9] = 0x8235, [0x15fa] = 0x8237, - [0x15fb] = 0x8236, [0x15fc] = 0x8239, [0x15fd] = 0x838e, [0x15fe] = 0x839e, - [0x15ff] = 0x8398, [0x1600] = 0x8378, [0x1601] = 0x83a2, [0x1602] = 0x8396, - [0x1603] = 0x83bd, [0x1604] = 0x83ab, [0x1605] = 0x8392, [0x1606] = 0x838a, - [0x1607] = 0x8393, [0x1608] = 0x8389, [0x1609] = 0x83a0, [0x160a] = 0x8377, - [0x160b] = 0x837b, [0x160c] = 0x837c, [0x160d] = 0x8386, [0x160e] = 0x83a7, - [0x160f] = 0x8655, [0x1610] = 0x5f6a, [0x1611] = 0x86c7, [0x1612] = 0x86c0, - [0x1613] = 0x86b6, [0x1614] = 0x86c4, [0x1615] = 0x86b5, [0x1616] = 0x86c6, - [0x1617] = 0x86cb, [0x1618] = 0x86b1, [0x1619] = 0x86af, [0x161a] = 0x86c9, - [0x161b] = 0x8853, [0x161c] = 0x889e, [0x161d] = 0x8888, [0x161e] = 0x88ab, - [0x161f] = 0x8892, [0x1620] = 0x8896, [0x1621] = 0x888d, [0x1622] = 0x888b, - [0x1623] = 0x8993, [0x1624] = 0x898f, [0x1625] = 0x8a2a, [0x1626] = 0x8a1d, - [0x1627] = 0x8a23, [0x1628] = 0x8a25, [0x1629] = 0x8a31, [0x162a] = 0x8a2d, - [0x162b] = 0x8a1f, [0x162c] = 0x8a1b, [0x162d] = 0x8a22, [0x162e] = 0x8c49, - [0x162f] = 0x8c5a, [0x1630] = 0x8ca9, [0x1631] = 0x8cac, [0x1632] = 0x8cab, - [0x1633] = 0x8ca8, [0x1634] = 0x8caa, [0x1635] = 0x8ca7, [0x1636] = 0x8d67, - [0x1637] = 0x8d66, [0x1638] = 0x8dbe, [0x1639] = 0x8dba, [0x163a] = 0x8edb, - [0x163b] = 0x8edf, [0x163c] = 0x9019, [0x163d] = 0x900d, [0x163e] = 0x901a, - [0x163f] = 0x9017, [0x1640] = 0x9023, [0x1641] = 0x901f, [0x1642] = 0x901d, - [0x1643] = 0x9010, [0x1644] = 0x9015, [0x1645] = 0x901e, [0x1646] = 0x9020, - [0x1647] = 0x900f, [0x1648] = 0x9022, [0x1649] = 0x9016, [0x164a] = 0x901b, - [0x164b] = 0x9014, [0x164c] = 0x90e8, [0x164d] = 0x90ed, [0x164e] = 0x90fd, - [0x164f] = 0x9157, [0x1650] = 0x91ce, [0x1651] = 0x91f5, [0x1652] = 0x91e6, - [0x1653] = 0x91e3, [0x1654] = 0x91e7, [0x1655] = 0x91ed, [0x1656] = 0x91e9, - [0x1657] = 0x9589, [0x1658] = 0x966a, [0x1659] = 0x9675, [0x165a] = 0x9673, - [0x165b] = 0x9678, [0x165c] = 0x9670, [0x165d] = 0x9674, [0x165e] = 0x9676, - [0x165f] = 0x9677, [0x1660] = 0x966c, [0x1661] = 0x96c0, [0x1662] = 0x96ea, - [0x1663] = 0x96e9, [0x1664] = 0x7ae0, [0x1665] = 0x7adf, [0x1666] = 0x9802, - [0x1667] = 0x9803, [0x1668] = 0x9b5a, [0x1669] = 0x9ce5, [0x166a] = 0x9e75, - [0x166b] = 0x9e7f, [0x166c] = 0x9ea5, [0x166d] = 0x9ebb, [0x166e] = 0x50a2, - [0x166f] = 0x508d, [0x1670] = 0x5085, [0x1671] = 0x5099, [0x1672] = 0x5091, - [0x1673] = 0x5080, [0x1674] = 0x5096, [0x1675] = 0x5098, [0x1676] = 0x509a, - [0x1677] = 0x6700, [0x1678] = 0x51f1, [0x1679] = 0x5272, [0x167a] = 0x5274, - [0x167b] = 0x5275, [0x167c] = 0x5269, [0x167d] = 0x52de, [0x167e] = 0x52dd, - [0x167f] = 0x52db, [0x1680] = 0x535a, [0x1681] = 0x53a5, [0x1682] = 0x557b, - [0x1683] = 0x5580, [0x1684] = 0x55a7, [0x1685] = 0x557c, [0x1686] = 0x558a, - [0x1687] = 0x559d, [0x1688] = 0x5598, [0x1689] = 0x5582, [0x168a] = 0x559c, - [0x168b] = 0x55aa, [0x168c] = 0x5594, [0x168d] = 0x5587, [0x168e] = 0x558b, - [0x168f] = 0x5583, [0x1690] = 0x55b3, [0x1691] = 0x55ae, [0x1692] = 0x559f, - [0x1693] = 0x553e, [0x1694] = 0x55b2, [0x1695] = 0x559a, [0x1696] = 0x55bb, - [0x1697] = 0x55ac, [0x1698] = 0x55b1, [0x1699] = 0x557e, [0x169a] = 0x5589, - [0x169b] = 0x55ab, [0x169c] = 0x5599, [0x169d] = 0x570d, [0x169e] = 0x582f, - [0x169f] = 0x582a, [0x16a0] = 0x5834, [0x16a1] = 0x5824, [0x16a2] = 0x5830, - [0x16a3] = 0x5831, [0x16a4] = 0x5821, [0x16a5] = 0x581d, [0x16a6] = 0x5820, - [0x16a7] = 0x58f9, [0x16a8] = 0x58fa, [0x16a9] = 0x5960, [0x16aa] = 0x5a77, - [0x16ab] = 0x5a9a, [0x16ac] = 0x5a7f, [0x16ad] = 0x5a92, [0x16ae] = 0x5a9b, - [0x16af] = 0x5aa7, [0x16b0] = 0x5b73, [0x16b1] = 0x5b71, [0x16b2] = 0x5bd2, - [0x16b3] = 0x5bcc, [0x16b4] = 0x5bd3, [0x16b5] = 0x5bd0, [0x16b6] = 0x5c0a, - [0x16b7] = 0x5c0b, [0x16b8] = 0x5c31, [0x16b9] = 0x5d4c, [0x16ba] = 0x5d50, - [0x16bb] = 0x5d34, [0x16bc] = 0x5d47, [0x16bd] = 0x5dfd, [0x16be] = 0x5e45, - [0x16bf] = 0x5e3d, [0x16c0] = 0x5e40, [0x16c1] = 0x5e43, [0x16c2] = 0x5e7e, - [0x16c3] = 0x5eca, [0x16c4] = 0x5ec1, [0x16c5] = 0x5ec2, [0x16c6] = 0x5ec4, - [0x16c7] = 0x5f3c, [0x16c8] = 0x5f6d, [0x16c9] = 0x5fa9, [0x16ca] = 0x5faa, - [0x16cb] = 0x5fa8, [0x16cc] = 0x60d1, [0x16cd] = 0x60e1, [0x16ce] = 0x60b2, - [0x16cf] = 0x60b6, [0x16d0] = 0x60e0, [0x16d1] = 0x611c, [0x16d2] = 0x6123, - [0x16d3] = 0x60fa, [0x16d4] = 0x6115, [0x16d5] = 0x60f0, [0x16d6] = 0x60fb, - [0x16d7] = 0x60f4, [0x16d8] = 0x6168, [0x16d9] = 0x60f1, [0x16da] = 0x610e, - [0x16db] = 0x60f6, [0x16dc] = 0x6109, [0x16dd] = 0x6100, [0x16de] = 0x6112, - [0x16df] = 0x621f, [0x16e0] = 0x6249, [0x16e1] = 0x63a3, [0x16e2] = 0x638c, - [0x16e3] = 0x63cf, [0x16e4] = 0x63c0, [0x16e5] = 0x63e9, [0x16e6] = 0x63c9, - [0x16e7] = 0x63c6, [0x16e8] = 0x63cd, [0x16e9] = 0x63d2, [0x16ea] = 0x63e3, - [0x16eb] = 0x63d0, [0x16ec] = 0x63e1, [0x16ed] = 0x63d6, [0x16ee] = 0x63ed, - [0x16ef] = 0x63ee, [0x16f0] = 0x6376, [0x16f1] = 0x63f4, [0x16f2] = 0x63ea, - [0x16f3] = 0x63db, [0x16f4] = 0x6452, [0x16f5] = 0x63da, [0x16f6] = 0x63f9, - [0x16f7] = 0x655e, [0x16f8] = 0x6566, [0x16f9] = 0x6562, [0x16fa] = 0x6563, - [0x16fb] = 0x6591, [0x16fc] = 0x6590, [0x16fd] = 0x65af, [0x16fe] = 0x666e, - [0x16ff] = 0x6670, [0x1700] = 0x6674, [0x1701] = 0x6676, [0x1702] = 0x666f, - [0x1703] = 0x6691, [0x1704] = 0x667a, [0x1705] = 0x667e, [0x1706] = 0x6677, - [0x1707] = 0x66fe, [0x1708] = 0x66ff, [0x1709] = 0x671f, [0x170a] = 0x671d, - [0x170b] = 0x68fa, [0x170c] = 0x68d5, [0x170d] = 0x68e0, [0x170e] = 0x68d8, - [0x170f] = 0x68d7, [0x1710] = 0x6905, [0x1711] = 0x68df, [0x1712] = 0x68f5, - [0x1713] = 0x68ee, [0x1714] = 0x68e7, [0x1715] = 0x68f9, [0x1716] = 0x68d2, - [0x1717] = 0x68f2, [0x1718] = 0x68e3, [0x1719] = 0x68cb, [0x171a] = 0x68cd, - [0x171b] = 0x690d, [0x171c] = 0x6912, [0x171d] = 0x690e, [0x171e] = 0x68c9, - [0x171f] = 0x68da, [0x1720] = 0x696e, [0x1721] = 0x68fb, [0x1722] = 0x6b3e, - [0x1723] = 0x6b3a, [0x1724] = 0x6b3d, [0x1725] = 0x6b98, [0x1726] = 0x6b96, - [0x1727] = 0x6bbc, [0x1728] = 0x6bef, [0x1729] = 0x6c2e, [0x172a] = 0x6c2f, - [0x172b] = 0x6c2c, [0x172c] = 0x6e2f, [0x172d] = 0x6e38, [0x172e] = 0x6e54, - [0x172f] = 0x6e21, [0x1730] = 0x6e32, [0x1731] = 0x6e67, [0x1732] = 0x6e4a, - [0x1733] = 0x6e20, [0x1734] = 0x6e25, [0x1735] = 0x6e23, [0x1736] = 0x6e1b, - [0x1737] = 0x6e5b, [0x1738] = 0x6e58, [0x1739] = 0x6e24, [0x173a] = 0x6e56, - [0x173b] = 0x6e6e, [0x173c] = 0x6e2d, [0x173d] = 0x6e26, [0x173e] = 0x6e6f, - [0x173f] = 0x6e34, [0x1740] = 0x6e4d, [0x1741] = 0x6e3a, [0x1742] = 0x6e2c, - [0x1743] = 0x6e43, [0x1744] = 0x6e1d, [0x1745] = 0x6e3e, [0x1746] = 0x6ecb, - [0x1747] = 0x6e89, [0x1748] = 0x6e19, [0x1749] = 0x6e4e, [0x174a] = 0x6e63, - [0x174b] = 0x6e44, [0x174c] = 0x6e72, [0x174d] = 0x6e69, [0x174e] = 0x6e5f, - [0x174f] = 0x7119, [0x1750] = 0x711a, [0x1751] = 0x7126, [0x1752] = 0x7130, - [0x1753] = 0x7121, [0x1754] = 0x7136, [0x1755] = 0x716e, [0x1756] = 0x711c, - [0x1757] = 0x724c, [0x1758] = 0x7284, [0x1759] = 0x7280, [0x175a] = 0x7336, - [0x175b] = 0x7325, [0x175c] = 0x7334, [0x175d] = 0x7329, [0x175e] = 0x743a, - [0x175f] = 0x742a, [0x1760] = 0x7433, [0x1761] = 0x7422, [0x1762] = 0x7425, - [0x1763] = 0x7435, [0x1764] = 0x7436, [0x1765] = 0x7434, [0x1766] = 0x742f, - [0x1767] = 0x741b, [0x1768] = 0x7426, [0x1769] = 0x7428, [0x176a] = 0x7525, - [0x176b] = 0x7526, [0x176c] = 0x756b, [0x176d] = 0x756a, [0x176e] = 0x75e2, - [0x176f] = 0x75db, [0x1770] = 0x75e3, [0x1771] = 0x75d9, [0x1772] = 0x75d8, - [0x1773] = 0x75de, [0x1774] = 0x75e0, [0x1775] = 0x767b, [0x1776] = 0x767c, - [0x1777] = 0x7696, [0x1778] = 0x7693, [0x1779] = 0x76b4, [0x177a] = 0x76dc, - [0x177b] = 0x774f, [0x177c] = 0x77ed, [0x177d] = 0x785d, [0x177e] = 0x786c, - [0x177f] = 0x786f, [0x1780] = 0x7a0d, [0x1781] = 0x7a08, [0x1782] = 0x7a0b, - [0x1783] = 0x7a05, [0x1784] = 0x7a00, [0x1785] = 0x7a98, [0x1786] = 0x7a97, - [0x1787] = 0x7a96, [0x1788] = 0x7ae5, [0x1789] = 0x7ae3, [0x178a] = 0x7b49, - [0x178b] = 0x7b56, [0x178c] = 0x7b46, [0x178d] = 0x7b50, [0x178e] = 0x7b52, - [0x178f] = 0x7b54, [0x1790] = 0x7b4d, [0x1791] = 0x7b4b, [0x1792] = 0x7b4f, - [0x1793] = 0x7b51, [0x1794] = 0x7c9f, [0x1795] = 0x7ca5, [0x1796] = 0x7d5e, - [0x1797] = 0x7d50, [0x1798] = 0x7d68, [0x1799] = 0x7d55, [0x179a] = 0x7d2b, - [0x179b] = 0x7d6e, [0x179c] = 0x7d72, [0x179d] = 0x7d61, [0x179e] = 0x7d66, - [0x179f] = 0x7d62, [0x17a0] = 0x7d70, [0x17a1] = 0x7d73, [0x17a2] = 0x5584, - [0x17a3] = 0x7fd4, [0x17a4] = 0x7fd5, [0x17a5] = 0x800b, [0x17a6] = 0x8052, - [0x17a7] = 0x8085, [0x17a8] = 0x8155, [0x17a9] = 0x8154, [0x17aa] = 0x814b, - [0x17ab] = 0x8151, [0x17ac] = 0x814e, [0x17ad] = 0x8139, [0x17ae] = 0x8146, - [0x17af] = 0x813e, [0x17b0] = 0x814c, [0x17b1] = 0x8153, [0x17b2] = 0x8174, - [0x17b3] = 0x8212, [0x17b4] = 0x821c, [0x17b5] = 0x83e9, [0x17b6] = 0x8403, - [0x17b7] = 0x83f8, [0x17b8] = 0x840d, [0x17b9] = 0x83e0, [0x17ba] = 0x83c5, - [0x17bb] = 0x840b, [0x17bc] = 0x83c1, [0x17bd] = 0x83ef, [0x17be] = 0x83f1, - [0x17bf] = 0x83f4, [0x17c0] = 0x8457, [0x17c1] = 0x840a, [0x17c2] = 0x83f0, - [0x17c3] = 0x840c, [0x17c4] = 0x83cc, [0x17c5] = 0x83fd, [0x17c6] = 0x83f2, - [0x17c7] = 0x83ca, [0x17c8] = 0x8438, [0x17c9] = 0x840e, [0x17ca] = 0x8404, - [0x17cb] = 0x83dc, [0x17cc] = 0x8407, [0x17cd] = 0x83d4, [0x17ce] = 0x83df, - [0x17cf] = 0x865b, [0x17d0] = 0x86df, [0x17d1] = 0x86d9, [0x17d2] = 0x86ed, - [0x17d3] = 0x86d4, [0x17d4] = 0x86db, [0x17d5] = 0x86e4, [0x17d6] = 0x86d0, - [0x17d7] = 0x86de, [0x17d8] = 0x8857, [0x17d9] = 0x88c1, [0x17da] = 0x88c2, - [0x17db] = 0x88b1, [0x17dc] = 0x8983, [0x17dd] = 0x8996, [0x17de] = 0x8a3b, - [0x17df] = 0x8a60, [0x17e0] = 0x8a55, [0x17e1] = 0x8a5e, [0x17e2] = 0x8a3c, - [0x17e3] = 0x8a41, [0x17e4] = 0x8a54, [0x17e5] = 0x8a5b, [0x17e6] = 0x8a50, - [0x17e7] = 0x8a46, [0x17e8] = 0x8a34, [0x17e9] = 0x8a3a, [0x17ea] = 0x8a36, - [0x17eb] = 0x8a56, [0x17ec] = 0x8c61, [0x17ed] = 0x8c82, [0x17ee] = 0x8caf, - [0x17ef] = 0x8cbc, [0x17f0] = 0x8cb3, [0x17f1] = 0x8cbd, [0x17f2] = 0x8cc1, - [0x17f3] = 0x8cbb, [0x17f4] = 0x8cc0, [0x17f5] = 0x8cb4, [0x17f6] = 0x8cb7, - [0x17f7] = 0x8cb6, [0x17f8] = 0x8cbf, [0x17f9] = 0x8cb8, [0x17fa] = 0x8d8a, - [0x17fb] = 0x8d85, [0x17fc] = 0x8d81, [0x17fd] = 0x8dce, [0x17fe] = 0x8ddd, - [0x17ff] = 0x8dcb, [0x1800] = 0x8dda, [0x1801] = 0x8dd1, [0x1802] = 0x8dcc, - [0x1803] = 0x8ddb, [0x1804] = 0x8dc6, [0x1805] = 0x8efb, [0x1806] = 0x8ef8, - [0x1807] = 0x8efc, [0x1808] = 0x8f9c, [0x1809] = 0x902e, [0x180a] = 0x9035, - [0x180b] = 0x9031, [0x180c] = 0x9038, [0x180d] = 0x9032, [0x180e] = 0x9036, - [0x180f] = 0x9102, [0x1810] = 0x90f5, [0x1811] = 0x9109, [0x1812] = 0x90fe, - [0x1813] = 0x9163, [0x1814] = 0x9165, [0x1815] = 0x91cf, [0x1816] = 0x9214, - [0x1817] = 0x9215, [0x1818] = 0x9223, [0x1819] = 0x9209, [0x181a] = 0x921e, - [0x181b] = 0x920d, [0x181c] = 0x9210, [0x181d] = 0x9207, [0x181e] = 0x9211, - [0x181f] = 0x9594, [0x1820] = 0x958f, [0x1821] = 0x958b, [0x1822] = 0x9591, - [0x1823] = 0x9593, [0x1824] = 0x9592, [0x1825] = 0x958e, [0x1826] = 0x968a, - [0x1827] = 0x968e, [0x1828] = 0x968b, [0x1829] = 0x967d, [0x182a] = 0x9685, - [0x182b] = 0x9686, [0x182c] = 0x968d, [0x182d] = 0x9672, [0x182e] = 0x9684, - [0x182f] = 0x96c1, [0x1830] = 0x96c5, [0x1831] = 0x96c4, [0x1832] = 0x96c6, - [0x1833] = 0x96c7, [0x1834] = 0x96ef, [0x1835] = 0x96f2, [0x1836] = 0x97cc, - [0x1837] = 0x9805, [0x1838] = 0x9806, [0x1839] = 0x9808, [0x183a] = 0x98e7, - [0x183b] = 0x98ea, [0x183c] = 0x98ef, [0x183d] = 0x98e9, [0x183e] = 0x98f2, - [0x183f] = 0x98ed, [0x1840] = 0x99ae, [0x1841] = 0x99ad, [0x1842] = 0x9ec3, - [0x1843] = 0x9ecd, [0x1844] = 0x9ed1, [0x1845] = 0x4e82, [0x1846] = 0x50ad, - [0x1847] = 0x50b5, [0x1848] = 0x50b2, [0x1849] = 0x50b3, [0x184a] = 0x50c5, - [0x184b] = 0x50be, [0x184c] = 0x50ac, [0x184d] = 0x50b7, [0x184e] = 0x50bb, - [0x184f] = 0x50af, [0x1850] = 0x50c7, [0x1851] = 0x527f, [0x1852] = 0x5277, - [0x1853] = 0x527d, [0x1854] = 0x52df, [0x1855] = 0x52e6, [0x1856] = 0x52e4, - [0x1857] = 0x52e2, [0x1858] = 0x52e3, [0x1859] = 0x532f, [0x185a] = 0x55df, - [0x185b] = 0x55e8, [0x185c] = 0x55d3, [0x185d] = 0x55e6, [0x185e] = 0x55ce, - [0x185f] = 0x55dc, [0x1860] = 0x55c7, [0x1861] = 0x55d1, [0x1862] = 0x55e3, - [0x1863] = 0x55e4, [0x1864] = 0x55ef, [0x1865] = 0x55da, [0x1866] = 0x55e1, - [0x1867] = 0x55c5, [0x1868] = 0x55c6, [0x1869] = 0x55e5, [0x186a] = 0x55c9, - [0x186b] = 0x5712, [0x186c] = 0x5713, [0x186d] = 0x585e, [0x186e] = 0x5851, - [0x186f] = 0x5858, [0x1870] = 0x5857, [0x1871] = 0x585a, [0x1872] = 0x5854, - [0x1873] = 0x586b, [0x1874] = 0x584c, [0x1875] = 0x586d, [0x1876] = 0x584a, - [0x1877] = 0x5862, [0x1878] = 0x5852, [0x1879] = 0x584b, [0x187a] = 0x5967, - [0x187b] = 0x5ac1, [0x187c] = 0x5ac9, [0x187d] = 0x5acc, [0x187e] = 0x5abe, - [0x187f] = 0x5abd, [0x1880] = 0x5abc, [0x1881] = 0x5ab3, [0x1882] = 0x5ac2, - [0x1883] = 0x5ab2, [0x1884] = 0x5d69, [0x1885] = 0x5d6f, [0x1886] = 0x5e4c, - [0x1887] = 0x5e79, [0x1888] = 0x5ec9, [0x1889] = 0x5ec8, [0x188a] = 0x5f12, - [0x188b] = 0x5f59, [0x188c] = 0x5fac, [0x188d] = 0x5fae, [0x188e] = 0x611a, - [0x188f] = 0x610f, [0x1890] = 0x6148, [0x1891] = 0x611f, [0x1892] = 0x60f3, - [0x1893] = 0x611b, [0x1894] = 0x60f9, [0x1895] = 0x6101, [0x1896] = 0x6108, - [0x1897] = 0x614e, [0x1898] = 0x614c, [0x1899] = 0x6144, [0x189a] = 0x614d, - [0x189b] = 0x613e, [0x189c] = 0x6134, [0x189d] = 0x6127, [0x189e] = 0x610d, - [0x189f] = 0x6106, [0x18a0] = 0x6137, [0x18a1] = 0x6221, [0x18a2] = 0x6222, - [0x18a3] = 0x6413, [0x18a4] = 0x643e, [0x18a5] = 0x641e, [0x18a6] = 0x642a, - [0x18a7] = 0x642d, [0x18a8] = 0x643d, [0x18a9] = 0x642c, [0x18aa] = 0x640f, - [0x18ab] = 0x641c, [0x18ac] = 0x6414, [0x18ad] = 0x640d, [0x18ae] = 0x6436, - [0x18af] = 0x6416, [0x18b0] = 0x6417, [0x18b1] = 0x6406, [0x18b2] = 0x656c, - [0x18b3] = 0x659f, [0x18b4] = 0x65b0, [0x18b5] = 0x6697, [0x18b6] = 0x6689, - [0x18b7] = 0x6687, [0x18b8] = 0x6688, [0x18b9] = 0x6696, [0x18ba] = 0x6684, - [0x18bb] = 0x6698, [0x18bc] = 0x668d, [0x18bd] = 0x6703, [0x18be] = 0x6994, - [0x18bf] = 0x696d, [0x18c0] = 0x695a, [0x18c1] = 0x6977, [0x18c2] = 0x6960, - [0x18c3] = 0x6954, [0x18c4] = 0x6975, [0x18c5] = 0x6930, [0x18c6] = 0x6982, - [0x18c7] = 0x694a, [0x18c8] = 0x6968, [0x18c9] = 0x696b, [0x18ca] = 0x695e, - [0x18cb] = 0x6953, [0x18cc] = 0x6979, [0x18cd] = 0x6986, [0x18ce] = 0x695d, - [0x18cf] = 0x6963, [0x18d0] = 0x695b, [0x18d1] = 0x6b47, [0x18d2] = 0x6b72, - [0x18d3] = 0x6bc0, [0x18d4] = 0x6bbf, [0x18d5] = 0x6bd3, [0x18d6] = 0x6bfd, - [0x18d7] = 0x6ea2, [0x18d8] = 0x6eaf, [0x18d9] = 0x6ed3, [0x18da] = 0x6eb6, - [0x18db] = 0x6ec2, [0x18dc] = 0x6e90, [0x18dd] = 0x6e9d, [0x18de] = 0x6ec7, - [0x18df] = 0x6ec5, [0x18e0] = 0x6ea5, [0x18e1] = 0x6e98, [0x18e2] = 0x6ebc, - [0x18e3] = 0x6eba, [0x18e4] = 0x6eab, [0x18e5] = 0x6ed1, [0x18e6] = 0x6e96, - [0x18e7] = 0x6e9c, [0x18e8] = 0x6ec4, [0x18e9] = 0x6ed4, [0x18ea] = 0x6eaa, - [0x18eb] = 0x6ea7, [0x18ec] = 0x6eb4, [0x18ed] = 0x714e, [0x18ee] = 0x7159, - [0x18ef] = 0x7169, [0x18f0] = 0x7164, [0x18f1] = 0x7149, [0x18f2] = 0x7167, - [0x18f3] = 0x715c, [0x18f4] = 0x716c, [0x18f5] = 0x7166, [0x18f6] = 0x714c, - [0x18f7] = 0x7165, [0x18f8] = 0x715e, [0x18f9] = 0x7146, [0x18fa] = 0x7168, - [0x18fb] = 0x7156, [0x18fc] = 0x723a, [0x18fd] = 0x7252, [0x18fe] = 0x7337, - [0x18ff] = 0x7345, [0x1900] = 0x733f, [0x1901] = 0x733e, [0x1902] = 0x746f, - [0x1903] = 0x745a, [0x1904] = 0x7455, [0x1905] = 0x745f, [0x1906] = 0x745e, - [0x1907] = 0x7441, [0x1908] = 0x743f, [0x1909] = 0x7459, [0x190a] = 0x745b, - [0x190b] = 0x745c, [0x190c] = 0x7576, [0x190d] = 0x7578, [0x190e] = 0x7600, - [0x190f] = 0x75f0, [0x1910] = 0x7601, [0x1911] = 0x75f2, [0x1912] = 0x75f1, - [0x1913] = 0x75fa, [0x1914] = 0x75ff, [0x1915] = 0x75f4, [0x1916] = 0x75f3, - [0x1917] = 0x76de, [0x1918] = 0x76df, [0x1919] = 0x775b, [0x191a] = 0x776b, - [0x191b] = 0x7766, [0x191c] = 0x775e, [0x191d] = 0x7763, [0x191e] = 0x7779, - [0x191f] = 0x776a, [0x1920] = 0x776c, [0x1921] = 0x775c, [0x1922] = 0x7765, - [0x1923] = 0x7768, [0x1924] = 0x7762, [0x1925] = 0x77ee, [0x1926] = 0x788e, - [0x1927] = 0x78b0, [0x1928] = 0x7897, [0x1929] = 0x7898, [0x192a] = 0x788c, - [0x192b] = 0x7889, [0x192c] = 0x787c, [0x192d] = 0x7891, [0x192e] = 0x7893, - [0x192f] = 0x787f, [0x1930] = 0x797a, [0x1931] = 0x797f, [0x1932] = 0x7981, - [0x1933] = 0x842c, [0x1934] = 0x79bd, [0x1935] = 0x7a1c, [0x1936] = 0x7a1a, - [0x1937] = 0x7a20, [0x1938] = 0x7a14, [0x1939] = 0x7a1f, [0x193a] = 0x7a1e, - [0x193b] = 0x7a9f, [0x193c] = 0x7aa0, [0x193d] = 0x7b77, [0x193e] = 0x7bc0, - [0x193f] = 0x7b60, [0x1940] = 0x7b6e, [0x1941] = 0x7b67, [0x1942] = 0x7cb1, - [0x1943] = 0x7cb3, [0x1944] = 0x7cb5, [0x1945] = 0x7d93, [0x1946] = 0x7d79, - [0x1947] = 0x7d91, [0x1948] = 0x7d81, [0x1949] = 0x7d8f, [0x194a] = 0x7d5b, - [0x194b] = 0x7f6e, [0x194c] = 0x7f69, [0x194d] = 0x7f6a, [0x194e] = 0x7f72, - [0x194f] = 0x7fa9, [0x1950] = 0x7fa8, [0x1951] = 0x7fa4, [0x1952] = 0x8056, - [0x1953] = 0x8058, [0x1954] = 0x8086, [0x1955] = 0x8084, [0x1956] = 0x8171, - [0x1957] = 0x8170, [0x1958] = 0x8178, [0x1959] = 0x8165, [0x195a] = 0x816e, - [0x195b] = 0x8173, [0x195c] = 0x816b, [0x195d] = 0x8179, [0x195e] = 0x817a, - [0x195f] = 0x8166, [0x1960] = 0x8205, [0x1961] = 0x8247, [0x1962] = 0x8482, - [0x1963] = 0x8477, [0x1964] = 0x843d, [0x1965] = 0x8431, [0x1966] = 0x8475, - [0x1967] = 0x8466, [0x1968] = 0x846b, [0x1969] = 0x8449, [0x196a] = 0x846c, - [0x196b] = 0x845b, [0x196c] = 0x843c, [0x196d] = 0x8435, [0x196e] = 0x8461, - [0x196f] = 0x8463, [0x1970] = 0x8469, [0x1971] = 0x846d, [0x1972] = 0x8446, - [0x1973] = 0x865e, [0x1974] = 0x865c, [0x1975] = 0x865f, [0x1976] = 0x86f9, - [0x1977] = 0x8713, [0x1978] = 0x8708, [0x1979] = 0x8707, [0x197a] = 0x8700, - [0x197b] = 0x86fe, [0x197c] = 0x86fb, [0x197d] = 0x8702, [0x197e] = 0x8703, - [0x197f] = 0x8706, [0x1980] = 0x870a, [0x1981] = 0x8859, [0x1982] = 0x88df, - [0x1983] = 0x88d4, [0x1984] = 0x88d9, [0x1985] = 0x88dc, [0x1986] = 0x88d8, - [0x1987] = 0x88dd, [0x1988] = 0x88e1, [0x1989] = 0x88ca, [0x198a] = 0x88d5, - [0x198b] = 0x88d2, [0x198c] = 0x899c, [0x198d] = 0x89e3, [0x198e] = 0x8a6b, - [0x198f] = 0x8a72, [0x1990] = 0x8a73, [0x1991] = 0x8a66, [0x1992] = 0x8a69, - [0x1993] = 0x8a70, [0x1994] = 0x8a87, [0x1995] = 0x8a7c, [0x1996] = 0x8a63, - [0x1997] = 0x8aa0, [0x1998] = 0x8a71, [0x1999] = 0x8a85, [0x199a] = 0x8a6d, - [0x199b] = 0x8a62, [0x199c] = 0x8a6e, [0x199d] = 0x8a6c, [0x199e] = 0x8a79, - [0x199f] = 0x8a7b, [0x19a0] = 0x8a3e, [0x19a1] = 0x8a68, [0x19a2] = 0x8c62, - [0x19a3] = 0x8c8a, [0x19a4] = 0x8c89, [0x19a5] = 0x8cca, [0x19a6] = 0x8cc7, - [0x19a7] = 0x8cc8, [0x19a8] = 0x8cc4, [0x19a9] = 0x8cb2, [0x19aa] = 0x8cc3, - [0x19ab] = 0x8cc2, [0x19ac] = 0x8cc5, [0x19ad] = 0x8de1, [0x19ae] = 0x8ddf, - [0x19af] = 0x8de8, [0x19b0] = 0x8def, [0x19b1] = 0x8df3, [0x19b2] = 0x8dfa, - [0x19b3] = 0x8dea, [0x19b4] = 0x8de4, [0x19b5] = 0x8de6, [0x19b6] = 0x8eb2, - [0x19b7] = 0x8f03, [0x19b8] = 0x8f09, [0x19b9] = 0x8efe, [0x19ba] = 0x8f0a, - [0x19bb] = 0x8f9f, [0x19bc] = 0x8fb2, [0x19bd] = 0x904b, [0x19be] = 0x904a, - [0x19bf] = 0x9053, [0x19c0] = 0x9042, [0x19c1] = 0x9054, [0x19c2] = 0x903c, - [0x19c3] = 0x9055, [0x19c4] = 0x9050, [0x19c5] = 0x9047, [0x19c6] = 0x904f, - [0x19c7] = 0x904e, [0x19c8] = 0x904d, [0x19c9] = 0x9051, [0x19ca] = 0x903e, - [0x19cb] = 0x9041, [0x19cc] = 0x9112, [0x19cd] = 0x9117, [0x19ce] = 0x916c, - [0x19cf] = 0x916a, [0x19d0] = 0x9169, [0x19d1] = 0x91c9, [0x19d2] = 0x9237, - [0x19d3] = 0x9257, [0x19d4] = 0x9238, [0x19d5] = 0x923d, [0x19d6] = 0x9240, - [0x19d7] = 0x923e, [0x19d8] = 0x925b, [0x19d9] = 0x924b, [0x19da] = 0x9264, - [0x19db] = 0x9251, [0x19dc] = 0x9234, [0x19dd] = 0x9249, [0x19de] = 0x924d, - [0x19df] = 0x9245, [0x19e0] = 0x9239, [0x19e1] = 0x923f, [0x19e2] = 0x925a, - [0x19e3] = 0x9598, [0x19e4] = 0x9698, [0x19e5] = 0x9694, [0x19e6] = 0x9695, - [0x19e7] = 0x96cd, [0x19e8] = 0x96cb, [0x19e9] = 0x96c9, [0x19ea] = 0x96ca, - [0x19eb] = 0x96f7, [0x19ec] = 0x96fb, [0x19ed] = 0x96f9, [0x19ee] = 0x96f6, - [0x19ef] = 0x9756, [0x19f0] = 0x9774, [0x19f1] = 0x9776, [0x19f2] = 0x9810, - [0x19f3] = 0x9811, [0x19f4] = 0x9813, [0x19f5] = 0x980a, [0x19f6] = 0x9812, - [0x19f7] = 0x980c, [0x19f8] = 0x98fc, [0x19f9] = 0x98f4, [0x19fa] = 0x98fd, - [0x19fb] = 0x98fe, [0x19fc] = 0x99b3, [0x19fd] = 0x99b1, [0x19fe] = 0x99b4, - [0x19ff] = 0x9ae1, [0x1a00] = 0x9ce9, [0x1a01] = 0x9e82, [0x1a02] = 0x9f0e, - [0x1a03] = 0x9f13, [0x1a04] = 0x9f20, [0x1a05] = 0x50e7, [0x1a06] = 0x50ee, - [0x1a07] = 0x50e5, [0x1a08] = 0x50d6, [0x1a09] = 0x50ed, [0x1a0a] = 0x50da, - [0x1a0b] = 0x50d5, [0x1a0c] = 0x50cf, [0x1a0d] = 0x50d1, [0x1a0e] = 0x50f1, - [0x1a0f] = 0x50ce, [0x1a10] = 0x50e9, [0x1a11] = 0x5162, [0x1a12] = 0x51f3, - [0x1a13] = 0x5283, [0x1a14] = 0x5282, [0x1a15] = 0x5331, [0x1a16] = 0x53ad, - [0x1a17] = 0x55fe, [0x1a18] = 0x5600, [0x1a19] = 0x561b, [0x1a1a] = 0x5617, - [0x1a1b] = 0x55fd, [0x1a1c] = 0x5614, [0x1a1d] = 0x5606, [0x1a1e] = 0x5609, - [0x1a1f] = 0x560d, [0x1a20] = 0x560e, [0x1a21] = 0x55f7, [0x1a22] = 0x5616, - [0x1a23] = 0x561f, [0x1a24] = 0x5608, [0x1a25] = 0x5610, [0x1a26] = 0x55f6, - [0x1a27] = 0x5718, [0x1a28] = 0x5716, [0x1a29] = 0x5875, [0x1a2a] = 0x587e, - [0x1a2b] = 0x5883, [0x1a2c] = 0x5893, [0x1a2d] = 0x588a, [0x1a2e] = 0x5879, - [0x1a2f] = 0x5885, [0x1a30] = 0x587d, [0x1a31] = 0x58fd, [0x1a32] = 0x5925, - [0x1a33] = 0x5922, [0x1a34] = 0x5924, [0x1a35] = 0x596a, [0x1a36] = 0x5969, - [0x1a37] = 0x5ae1, [0x1a38] = 0x5ae6, [0x1a39] = 0x5ae9, [0x1a3a] = 0x5ad7, - [0x1a3b] = 0x5ad6, [0x1a3c] = 0x5ad8, [0x1a3d] = 0x5ae3, [0x1a3e] = 0x5b75, - [0x1a3f] = 0x5bde, [0x1a40] = 0x5be7, [0x1a41] = 0x5be1, [0x1a42] = 0x5be5, - [0x1a43] = 0x5be6, [0x1a44] = 0x5be8, [0x1a45] = 0x5be2, [0x1a46] = 0x5be4, - [0x1a47] = 0x5bdf, [0x1a48] = 0x5c0d, [0x1a49] = 0x5c62, [0x1a4a] = 0x5d84, - [0x1a4b] = 0x5d87, [0x1a4c] = 0x5e5b, [0x1a4d] = 0x5e63, [0x1a4e] = 0x5e55, - [0x1a4f] = 0x5e57, [0x1a50] = 0x5e54, [0x1a51] = 0x5ed3, [0x1a52] = 0x5ed6, - [0x1a53] = 0x5f0a, [0x1a54] = 0x5f46, [0x1a55] = 0x5f70, [0x1a56] = 0x5fb9, - [0x1a57] = 0x6147, [0x1a58] = 0x613f, [0x1a59] = 0x614b, [0x1a5a] = 0x6177, - [0x1a5b] = 0x6162, [0x1a5c] = 0x6163, [0x1a5d] = 0x615f, [0x1a5e] = 0x615a, - [0x1a5f] = 0x6158, [0x1a60] = 0x6175, [0x1a61] = 0x622a, [0x1a62] = 0x6487, - [0x1a63] = 0x6458, [0x1a64] = 0x6454, [0x1a65] = 0x64a4, [0x1a66] = 0x6478, - [0x1a67] = 0x645f, [0x1a68] = 0x647a, [0x1a69] = 0x6451, [0x1a6a] = 0x6467, - [0x1a6b] = 0x6434, [0x1a6c] = 0x646d, [0x1a6d] = 0x647b, [0x1a6e] = 0x6572, - [0x1a6f] = 0x65a1, [0x1a70] = 0x65d7, [0x1a71] = 0x65d6, [0x1a72] = 0x66a2, - [0x1a73] = 0x66a8, [0x1a74] = 0x669d, [0x1a75] = 0x699c, [0x1a76] = 0x69a8, - [0x1a77] = 0x6995, [0x1a78] = 0x69c1, [0x1a79] = 0x69ae, [0x1a7a] = 0x69d3, - [0x1a7b] = 0x69cb, [0x1a7c] = 0x699b, [0x1a7d] = 0x69b7, [0x1a7e] = 0x69bb, - [0x1a7f] = 0x69ab, [0x1a80] = 0x69b4, [0x1a81] = 0x69d0, [0x1a82] = 0x69cd, - [0x1a83] = 0x69ad, [0x1a84] = 0x69cc, [0x1a85] = 0x69a6, [0x1a86] = 0x69c3, - [0x1a87] = 0x69a3, [0x1a88] = 0x6b49, [0x1a89] = 0x6b4c, [0x1a8a] = 0x6c33, - [0x1a8b] = 0x6f33, [0x1a8c] = 0x6f14, [0x1a8d] = 0x6efe, [0x1a8e] = 0x6f13, - [0x1a8f] = 0x6ef4, [0x1a90] = 0x6f29, [0x1a91] = 0x6f3e, [0x1a92] = 0x6f20, - [0x1a93] = 0x6f2c, [0x1a94] = 0x6f0f, [0x1a95] = 0x6f02, [0x1a96] = 0x6f22, - [0x1a97] = 0x6eff, [0x1a98] = 0x6eef, [0x1a99] = 0x6f06, [0x1a9a] = 0x6f31, - [0x1a9b] = 0x6f38, [0x1a9c] = 0x6f32, [0x1a9d] = 0x6f23, [0x1a9e] = 0x6f15, - [0x1a9f] = 0x6f2b, [0x1aa0] = 0x6f2f, [0x1aa1] = 0x6f88, [0x1aa2] = 0x6f2a, - [0x1aa3] = 0x6eec, [0x1aa4] = 0x6f01, [0x1aa5] = 0x6ef2, [0x1aa6] = 0x6ecc, - [0x1aa7] = 0x6ef7, [0x1aa8] = 0x7194, [0x1aa9] = 0x7199, [0x1aaa] = 0x717d, - [0x1aab] = 0x718a, [0x1aac] = 0x7184, [0x1aad] = 0x7192, [0x1aae] = 0x723e, - [0x1aaf] = 0x7292, [0x1ab0] = 0x7296, [0x1ab1] = 0x7344, [0x1ab2] = 0x7350, - [0x1ab3] = 0x7464, [0x1ab4] = 0x7463, [0x1ab5] = 0x746a, [0x1ab6] = 0x7470, - [0x1ab7] = 0x746d, [0x1ab8] = 0x7504, [0x1ab9] = 0x7591, [0x1aba] = 0x7627, - [0x1abb] = 0x760d, [0x1abc] = 0x760b, [0x1abd] = 0x7609, [0x1abe] = 0x7613, - [0x1abf] = 0x76e1, [0x1ac0] = 0x76e3, [0x1ac1] = 0x7784, [0x1ac2] = 0x777d, - [0x1ac3] = 0x777f, [0x1ac4] = 0x7761, [0x1ac5] = 0x78c1, [0x1ac6] = 0x789f, - [0x1ac7] = 0x78a7, [0x1ac8] = 0x78b3, [0x1ac9] = 0x78a9, [0x1aca] = 0x78a3, - [0x1acb] = 0x798e, [0x1acc] = 0x798f, [0x1acd] = 0x798d, [0x1ace] = 0x7a2e, - [0x1acf] = 0x7a31, [0x1ad0] = 0x7aaa, [0x1ad1] = 0x7aa9, [0x1ad2] = 0x7aed, - [0x1ad3] = 0x7aef, [0x1ad4] = 0x7ba1, [0x1ad5] = 0x7b95, [0x1ad6] = 0x7b8b, - [0x1ad7] = 0x7b75, [0x1ad8] = 0x7b97, [0x1ad9] = 0x7b9d, [0x1ada] = 0x7b94, - [0x1adb] = 0x7b8f, [0x1adc] = 0x7bb8, [0x1add] = 0x7b87, [0x1ade] = 0x7b84, - [0x1adf] = 0x7cb9, [0x1ae0] = 0x7cbd, [0x1ae1] = 0x7cbe, [0x1ae2] = 0x7dbb, - [0x1ae3] = 0x7db0, [0x1ae4] = 0x7d9c, [0x1ae5] = 0x7dbd, [0x1ae6] = 0x7dbe, - [0x1ae7] = 0x7da0, [0x1ae8] = 0x7dca, [0x1ae9] = 0x7db4, [0x1aea] = 0x7db2, - [0x1aeb] = 0x7db1, [0x1aec] = 0x7dba, [0x1aed] = 0x7da2, [0x1aee] = 0x7dbf, - [0x1aef] = 0x7db5, [0x1af0] = 0x7db8, [0x1af1] = 0x7dad, [0x1af2] = 0x7dd2, - [0x1af3] = 0x7dc7, [0x1af4] = 0x7dac, [0x1af5] = 0x7f70, [0x1af6] = 0x7fe0, - [0x1af7] = 0x7fe1, [0x1af8] = 0x7fdf, [0x1af9] = 0x805e, [0x1afa] = 0x805a, - [0x1afb] = 0x8087, [0x1afc] = 0x8150, [0x1afd] = 0x8180, [0x1afe] = 0x818f, - [0x1aff] = 0x8188, [0x1b00] = 0x818a, [0x1b01] = 0x817f, [0x1b02] = 0x8182, - [0x1b03] = 0x81e7, [0x1b04] = 0x81fa, [0x1b05] = 0x8207, [0x1b06] = 0x8214, - [0x1b07] = 0x821e, [0x1b08] = 0x824b, [0x1b09] = 0x84c9, [0x1b0a] = 0x84bf, - [0x1b0b] = 0x84c6, [0x1b0c] = 0x84c4, [0x1b0d] = 0x8499, [0x1b0e] = 0x849e, - [0x1b0f] = 0x84b2, [0x1b10] = 0x849c, [0x1b11] = 0x84cb, [0x1b12] = 0x84b8, - [0x1b13] = 0x84c0, [0x1b14] = 0x84d3, [0x1b15] = 0x8490, [0x1b16] = 0x84bc, - [0x1b17] = 0x84d1, [0x1b18] = 0x84ca, [0x1b19] = 0x873f, [0x1b1a] = 0x871c, - [0x1b1b] = 0x873b, [0x1b1c] = 0x8722, [0x1b1d] = 0x8725, [0x1b1e] = 0x8734, - [0x1b1f] = 0x8718, [0x1b20] = 0x8755, [0x1b21] = 0x8737, [0x1b22] = 0x8729, - [0x1b23] = 0x88f3, [0x1b24] = 0x8902, [0x1b25] = 0x88f4, [0x1b26] = 0x88f9, - [0x1b27] = 0x88f8, [0x1b28] = 0x88fd, [0x1b29] = 0x88e8, [0x1b2a] = 0x891a, - [0x1b2b] = 0x88ef, [0x1b2c] = 0x8aa6, [0x1b2d] = 0x8a8c, [0x1b2e] = 0x8a9e, - [0x1b2f] = 0x8aa3, [0x1b30] = 0x8a8d, [0x1b31] = 0x8aa1, [0x1b32] = 0x8a93, - [0x1b33] = 0x8aa4, [0x1b34] = 0x8aaa, [0x1b35] = 0x8aa5, [0x1b36] = 0x8aa8, - [0x1b37] = 0x8a98, [0x1b38] = 0x8a91, [0x1b39] = 0x8a9a, [0x1b3a] = 0x8aa7, - [0x1b3b] = 0x8c6a, [0x1b3c] = 0x8c8d, [0x1b3d] = 0x8c8c, [0x1b3e] = 0x8cd3, - [0x1b3f] = 0x8cd1, [0x1b40] = 0x8cd2, [0x1b41] = 0x8d6b, [0x1b42] = 0x8d99, - [0x1b43] = 0x8d95, [0x1b44] = 0x8dfc, [0x1b45] = 0x8f14, [0x1b46] = 0x8f12, - [0x1b47] = 0x8f15, [0x1b48] = 0x8f13, [0x1b49] = 0x8fa3, [0x1b4a] = 0x9060, - [0x1b4b] = 0x9058, [0x1b4c] = 0x905c, [0x1b4d] = 0x9063, [0x1b4e] = 0x9059, - [0x1b4f] = 0x905e, [0x1b50] = 0x9062, [0x1b51] = 0x905d, [0x1b52] = 0x905b, - [0x1b53] = 0x9119, [0x1b54] = 0x9118, [0x1b55] = 0x911e, [0x1b56] = 0x9175, - [0x1b57] = 0x9178, [0x1b58] = 0x9177, [0x1b59] = 0x9174, [0x1b5a] = 0x9278, - [0x1b5b] = 0x92ac, [0x1b5c] = 0x9280, [0x1b5d] = 0x9285, [0x1b5e] = 0x9298, - [0x1b5f] = 0x9296, [0x1b60] = 0x927b, [0x1b61] = 0x9293, [0x1b62] = 0x929c, - [0x1b63] = 0x92a8, [0x1b64] = 0x927c, [0x1b65] = 0x9291, [0x1b66] = 0x95a1, - [0x1b67] = 0x95a8, [0x1b68] = 0x95a9, [0x1b69] = 0x95a3, [0x1b6a] = 0x95a5, - [0x1b6b] = 0x95a4, [0x1b6c] = 0x9699, [0x1b6d] = 0x969c, [0x1b6e] = 0x969b, - [0x1b6f] = 0x96cc, [0x1b70] = 0x96d2, [0x1b71] = 0x9700, [0x1b72] = 0x977c, - [0x1b73] = 0x9785, [0x1b74] = 0x97f6, [0x1b75] = 0x9817, [0x1b76] = 0x9818, - [0x1b77] = 0x98af, [0x1b78] = 0x98b1, [0x1b79] = 0x9903, [0x1b7a] = 0x9905, - [0x1b7b] = 0x990c, [0x1b7c] = 0x9909, [0x1b7d] = 0x99c1, [0x1b7e] = 0x9aaf, - [0x1b7f] = 0x9ab0, [0x1b80] = 0x9ae6, [0x1b81] = 0x9b41, [0x1b82] = 0x9b42, - [0x1b83] = 0x9cf4, [0x1b84] = 0x9cf6, [0x1b85] = 0x9cf3, [0x1b86] = 0x9ebc, - [0x1b87] = 0x9f3b, [0x1b88] = 0x9f4a, [0x1b89] = 0x5104, [0x1b8a] = 0x5100, - [0x1b8b] = 0x50fb, [0x1b8c] = 0x50f5, [0x1b8d] = 0x50f9, [0x1b8e] = 0x5102, - [0x1b8f] = 0x5108, [0x1b90] = 0x5109, [0x1b91] = 0x5105, [0x1b92] = 0x51dc, - [0x1b93] = 0x5287, [0x1b94] = 0x5288, [0x1b95] = 0x5289, [0x1b96] = 0x528d, - [0x1b97] = 0x528a, [0x1b98] = 0x52f0, [0x1b99] = 0x53b2, [0x1b9a] = 0x562e, - [0x1b9b] = 0x563b, [0x1b9c] = 0x5639, [0x1b9d] = 0x5632, [0x1b9e] = 0x563f, - [0x1b9f] = 0x5634, [0x1ba0] = 0x5629, [0x1ba1] = 0x5653, [0x1ba2] = 0x564e, - [0x1ba3] = 0x5657, [0x1ba4] = 0x5674, [0x1ba5] = 0x5636, [0x1ba6] = 0x562f, - [0x1ba7] = 0x5630, [0x1ba8] = 0x5880, [0x1ba9] = 0x589f, [0x1baa] = 0x589e, - [0x1bab] = 0x58b3, [0x1bac] = 0x589c, [0x1bad] = 0x58ae, [0x1bae] = 0x58a9, - [0x1baf] = 0x58a6, [0x1bb0] = 0x596d, [0x1bb1] = 0x5b09, [0x1bb2] = 0x5afb, - [0x1bb3] = 0x5b0b, [0x1bb4] = 0x5af5, [0x1bb5] = 0x5b0c, [0x1bb6] = 0x5b08, - [0x1bb7] = 0x5bee, [0x1bb8] = 0x5bec, [0x1bb9] = 0x5be9, [0x1bba] = 0x5beb, - [0x1bbb] = 0x5c64, [0x1bbc] = 0x5c65, [0x1bbd] = 0x5d9d, [0x1bbe] = 0x5d94, - [0x1bbf] = 0x5e62, [0x1bc0] = 0x5e5f, [0x1bc1] = 0x5e61, [0x1bc2] = 0x5ee2, - [0x1bc3] = 0x5eda, [0x1bc4] = 0x5edf, [0x1bc5] = 0x5edd, [0x1bc6] = 0x5ee3, - [0x1bc7] = 0x5ee0, [0x1bc8] = 0x5f48, [0x1bc9] = 0x5f71, [0x1bca] = 0x5fb7, - [0x1bcb] = 0x5fb5, [0x1bcc] = 0x6176, [0x1bcd] = 0x6167, [0x1bce] = 0x616e, - [0x1bcf] = 0x615d, [0x1bd0] = 0x6155, [0x1bd1] = 0x6182, [0x1bd2] = 0x617c, - [0x1bd3] = 0x6170, [0x1bd4] = 0x616b, [0x1bd5] = 0x617e, [0x1bd6] = 0x61a7, - [0x1bd7] = 0x6190, [0x1bd8] = 0x61ab, [0x1bd9] = 0x618e, [0x1bda] = 0x61ac, - [0x1bdb] = 0x619a, [0x1bdc] = 0x61a4, [0x1bdd] = 0x6194, [0x1bde] = 0x61ae, - [0x1bdf] = 0x622e, [0x1be0] = 0x6469, [0x1be1] = 0x646f, [0x1be2] = 0x6479, - [0x1be3] = 0x649e, [0x1be4] = 0x64b2, [0x1be5] = 0x6488, [0x1be6] = 0x6490, - [0x1be7] = 0x64b0, [0x1be8] = 0x64a5, [0x1be9] = 0x6493, [0x1bea] = 0x6495, - [0x1beb] = 0x64a9, [0x1bec] = 0x6492, [0x1bed] = 0x64ae, [0x1bee] = 0x64ad, - [0x1bef] = 0x64ab, [0x1bf0] = 0x649a, [0x1bf1] = 0x64ac, [0x1bf2] = 0x6499, - [0x1bf3] = 0x64a2, [0x1bf4] = 0x64b3, [0x1bf5] = 0x6575, [0x1bf6] = 0x6577, - [0x1bf7] = 0x6578, [0x1bf8] = 0x66ae, [0x1bf9] = 0x66ab, [0x1bfa] = 0x66b4, - [0x1bfb] = 0x66b1, [0x1bfc] = 0x6a23, [0x1bfd] = 0x6a1f, [0x1bfe] = 0x69e8, - [0x1bff] = 0x6a01, [0x1c00] = 0x6a1e, [0x1c01] = 0x6a19, [0x1c02] = 0x69fd, - [0x1c03] = 0x6a21, [0x1c04] = 0x6a13, [0x1c05] = 0x6a0a, [0x1c06] = 0x69f3, - [0x1c07] = 0x6a02, [0x1c08] = 0x6a05, [0x1c09] = 0x69ed, [0x1c0a] = 0x6a11, - [0x1c0b] = 0x6b50, [0x1c0c] = 0x6b4e, [0x1c0d] = 0x6ba4, [0x1c0e] = 0x6bc5, - [0x1c0f] = 0x6bc6, [0x1c10] = 0x6f3f, [0x1c11] = 0x6f7c, [0x1c12] = 0x6f84, - [0x1c13] = 0x6f51, [0x1c14] = 0x6f66, [0x1c15] = 0x6f54, [0x1c16] = 0x6f86, - [0x1c17] = 0x6f6d, [0x1c18] = 0x6f5b, [0x1c19] = 0x6f78, [0x1c1a] = 0x6f6e, - [0x1c1b] = 0x6f8e, [0x1c1c] = 0x6f7a, [0x1c1d] = 0x6f70, [0x1c1e] = 0x6f64, - [0x1c1f] = 0x6f97, [0x1c20] = 0x6f58, [0x1c21] = 0x6ed5, [0x1c22] = 0x6f6f, - [0x1c23] = 0x6f60, [0x1c24] = 0x6f5f, [0x1c25] = 0x719f, [0x1c26] = 0x71ac, - [0x1c27] = 0x71b1, [0x1c28] = 0x71a8, [0x1c29] = 0x7256, [0x1c2a] = 0x729b, - [0x1c2b] = 0x734e, [0x1c2c] = 0x7357, [0x1c2d] = 0x7469, [0x1c2e] = 0x748b, - [0x1c2f] = 0x7483, [0x1c30] = 0x747e, [0x1c31] = 0x7480, [0x1c32] = 0x757f, - [0x1c33] = 0x7620, [0x1c34] = 0x7629, [0x1c35] = 0x761f, [0x1c36] = 0x7624, - [0x1c37] = 0x7626, [0x1c38] = 0x7621, [0x1c39] = 0x7622, [0x1c3a] = 0x769a, - [0x1c3b] = 0x76ba, [0x1c3c] = 0x76e4, [0x1c3d] = 0x778e, [0x1c3e] = 0x7787, - [0x1c3f] = 0x778c, [0x1c40] = 0x7791, [0x1c41] = 0x778b, [0x1c42] = 0x78cb, - [0x1c43] = 0x78c5, [0x1c44] = 0x78ba, [0x1c45] = 0x78ca, [0x1c46] = 0x78be, - [0x1c47] = 0x78d5, [0x1c48] = 0x78bc, [0x1c49] = 0x78d0, [0x1c4a] = 0x7a3f, - [0x1c4b] = 0x7a3c, [0x1c4c] = 0x7a40, [0x1c4d] = 0x7a3d, [0x1c4e] = 0x7a37, - [0x1c4f] = 0x7a3b, [0x1c50] = 0x7aaf, [0x1c51] = 0x7aae, [0x1c52] = 0x7bad, - [0x1c53] = 0x7bb1, [0x1c54] = 0x7bc4, [0x1c55] = 0x7bb4, [0x1c56] = 0x7bc6, - [0x1c57] = 0x7bc7, [0x1c58] = 0x7bc1, [0x1c59] = 0x7ba0, [0x1c5a] = 0x7bcc, - [0x1c5b] = 0x7cca, [0x1c5c] = 0x7de0, [0x1c5d] = 0x7df4, [0x1c5e] = 0x7def, - [0x1c5f] = 0x7dfb, [0x1c60] = 0x7dd8, [0x1c61] = 0x7dec, [0x1c62] = 0x7ddd, - [0x1c63] = 0x7de8, [0x1c64] = 0x7de3, [0x1c65] = 0x7dda, [0x1c66] = 0x7dde, - [0x1c67] = 0x7de9, [0x1c68] = 0x7d9e, [0x1c69] = 0x7dd9, [0x1c6a] = 0x7df2, - [0x1c6b] = 0x7df9, [0x1c6c] = 0x7f75, [0x1c6d] = 0x7f77, [0x1c6e] = 0x7faf, - [0x1c6f] = 0x7fe9, [0x1c70] = 0x8026, [0x1c71] = 0x819b, [0x1c72] = 0x819c, - [0x1c73] = 0x819d, [0x1c74] = 0x81a0, [0x1c75] = 0x819a, [0x1c76] = 0x8198, - [0x1c77] = 0x8517, [0x1c78] = 0x853d, [0x1c79] = 0x851a, [0x1c7a] = 0x84ee, - [0x1c7b] = 0x852c, [0x1c7c] = 0x852d, [0x1c7d] = 0x8513, [0x1c7e] = 0x8511, - [0x1c7f] = 0x8523, [0x1c80] = 0x8521, [0x1c81] = 0x8514, [0x1c82] = 0x84ec, - [0x1c83] = 0x8525, [0x1c84] = 0x84ff, [0x1c85] = 0x8506, [0x1c86] = 0x8782, - [0x1c87] = 0x8774, [0x1c88] = 0x8776, [0x1c89] = 0x8760, [0x1c8a] = 0x8766, - [0x1c8b] = 0x8778, [0x1c8c] = 0x8768, [0x1c8d] = 0x8759, [0x1c8e] = 0x8757, - [0x1c8f] = 0x874c, [0x1c90] = 0x8753, [0x1c91] = 0x885b, [0x1c92] = 0x885d, - [0x1c93] = 0x8910, [0x1c94] = 0x8907, [0x1c95] = 0x8912, [0x1c96] = 0x8913, - [0x1c97] = 0x8915, [0x1c98] = 0x890a, [0x1c99] = 0x8abc, [0x1c9a] = 0x8ad2, - [0x1c9b] = 0x8ac7, [0x1c9c] = 0x8ac4, [0x1c9d] = 0x8a95, [0x1c9e] = 0x8acb, - [0x1c9f] = 0x8af8, [0x1ca0] = 0x8ab2, [0x1ca1] = 0x8ac9, [0x1ca2] = 0x8ac2, - [0x1ca3] = 0x8abf, [0x1ca4] = 0x8ab0, [0x1ca5] = 0x8ad6, [0x1ca6] = 0x8acd, - [0x1ca7] = 0x8ab6, [0x1ca8] = 0x8ab9, [0x1ca9] = 0x8adb, [0x1caa] = 0x8c4c, - [0x1cab] = 0x8c4e, [0x1cac] = 0x8c6c, [0x1cad] = 0x8ce0, [0x1cae] = 0x8cde, - [0x1caf] = 0x8ce6, [0x1cb0] = 0x8ce4, [0x1cb1] = 0x8cec, [0x1cb2] = 0x8ced, - [0x1cb3] = 0x8ce2, [0x1cb4] = 0x8ce3, [0x1cb5] = 0x8cdc, [0x1cb6] = 0x8cea, - [0x1cb7] = 0x8ce1, [0x1cb8] = 0x8d6d, [0x1cb9] = 0x8d9f, [0x1cba] = 0x8da3, - [0x1cbb] = 0x8e2b, [0x1cbc] = 0x8e10, [0x1cbd] = 0x8e1d, [0x1cbe] = 0x8e22, - [0x1cbf] = 0x8e0f, [0x1cc0] = 0x8e29, [0x1cc1] = 0x8e1f, [0x1cc2] = 0x8e21, - [0x1cc3] = 0x8e1e, [0x1cc4] = 0x8eba, [0x1cc5] = 0x8f1d, [0x1cc6] = 0x8f1b, - [0x1cc7] = 0x8f1f, [0x1cc8] = 0x8f29, [0x1cc9] = 0x8f26, [0x1cca] = 0x8f2a, - [0x1ccb] = 0x8f1c, [0x1ccc] = 0x8f1e, [0x1ccd] = 0x8f25, [0x1cce] = 0x9069, - [0x1ccf] = 0x906e, [0x1cd0] = 0x9068, [0x1cd1] = 0x906d, [0x1cd2] = 0x9077, - [0x1cd3] = 0x9130, [0x1cd4] = 0x912d, [0x1cd5] = 0x9127, [0x1cd6] = 0x9131, - [0x1cd7] = 0x9187, [0x1cd8] = 0x9189, [0x1cd9] = 0x918b, [0x1cda] = 0x9183, - [0x1cdb] = 0x92c5, [0x1cdc] = 0x92bb, [0x1cdd] = 0x92b7, [0x1cde] = 0x92ea, - [0x1cdf] = 0x92e4, [0x1ce0] = 0x92c1, [0x1ce1] = 0x92b3, [0x1ce2] = 0x92bc, - [0x1ce3] = 0x92d2, [0x1ce4] = 0x92c7, [0x1ce5] = 0x92f0, [0x1ce6] = 0x92b2, - [0x1ce7] = 0x95ad, [0x1ce8] = 0x95b1, [0x1ce9] = 0x9704, [0x1cea] = 0x9706, - [0x1ceb] = 0x9707, [0x1cec] = 0x9709, [0x1ced] = 0x9760, [0x1cee] = 0x978d, - [0x1cef] = 0x978b, [0x1cf0] = 0x978f, [0x1cf1] = 0x9821, [0x1cf2] = 0x982b, - [0x1cf3] = 0x981c, [0x1cf4] = 0x98b3, [0x1cf5] = 0x990a, [0x1cf6] = 0x9913, - [0x1cf7] = 0x9912, [0x1cf8] = 0x9918, [0x1cf9] = 0x99dd, [0x1cfa] = 0x99d0, - [0x1cfb] = 0x99df, [0x1cfc] = 0x99db, [0x1cfd] = 0x99d1, [0x1cfe] = 0x99d5, - [0x1cff] = 0x99d2, [0x1d00] = 0x99d9, [0x1d01] = 0x9ab7, [0x1d02] = 0x9aee, - [0x1d03] = 0x9aef, [0x1d04] = 0x9b27, [0x1d05] = 0x9b45, [0x1d06] = 0x9b44, - [0x1d07] = 0x9b77, [0x1d08] = 0x9b6f, [0x1d09] = 0x9d06, [0x1d0a] = 0x9d09, - [0x1d0b] = 0x9d03, [0x1d0c] = 0x9ea9, [0x1d0d] = 0x9ebe, [0x1d0e] = 0x9ece, - [0x1d0f] = 0x58a8, [0x1d10] = 0x9f52, [0x1d11] = 0x5112, [0x1d12] = 0x5118, - [0x1d13] = 0x5114, [0x1d14] = 0x5110, [0x1d15] = 0x5115, [0x1d16] = 0x5180, - [0x1d17] = 0x51aa, [0x1d18] = 0x51dd, [0x1d19] = 0x5291, [0x1d1a] = 0x5293, - [0x1d1b] = 0x52f3, [0x1d1c] = 0x5659, [0x1d1d] = 0x566b, [0x1d1e] = 0x5679, - [0x1d1f] = 0x5669, [0x1d20] = 0x5664, [0x1d21] = 0x5678, [0x1d22] = 0x566a, - [0x1d23] = 0x5668, [0x1d24] = 0x5665, [0x1d25] = 0x5671, [0x1d26] = 0x566f, - [0x1d27] = 0x566c, [0x1d28] = 0x5662, [0x1d29] = 0x5676, [0x1d2a] = 0x58c1, - [0x1d2b] = 0x58be, [0x1d2c] = 0x58c7, [0x1d2d] = 0x58c5, [0x1d2e] = 0x596e, - [0x1d2f] = 0x5b1d, [0x1d30] = 0x5b34, [0x1d31] = 0x5b78, [0x1d32] = 0x5bf0, - [0x1d33] = 0x5c0e, [0x1d34] = 0x5f4a, [0x1d35] = 0x61b2, [0x1d36] = 0x6191, - [0x1d37] = 0x61a9, [0x1d38] = 0x618a, [0x1d39] = 0x61cd, [0x1d3a] = 0x61b6, - [0x1d3b] = 0x61be, [0x1d3c] = 0x61ca, [0x1d3d] = 0x61c8, [0x1d3e] = 0x6230, - [0x1d3f] = 0x64c5, [0x1d40] = 0x64c1, [0x1d41] = 0x64cb, [0x1d42] = 0x64bb, - [0x1d43] = 0x64bc, [0x1d44] = 0x64da, [0x1d45] = 0x64c4, [0x1d46] = 0x64c7, - [0x1d47] = 0x64c2, [0x1d48] = 0x64cd, [0x1d49] = 0x64bf, [0x1d4a] = 0x64d2, - [0x1d4b] = 0x64d4, [0x1d4c] = 0x64be, [0x1d4d] = 0x6574, [0x1d4e] = 0x66c6, - [0x1d4f] = 0x66c9, [0x1d50] = 0x66b9, [0x1d51] = 0x66c4, [0x1d52] = 0x66c7, - [0x1d53] = 0x66b8, [0x1d54] = 0x6a3d, [0x1d55] = 0x6a38, [0x1d56] = 0x6a3a, - [0x1d57] = 0x6a59, [0x1d58] = 0x6a6b, [0x1d59] = 0x6a58, [0x1d5a] = 0x6a39, - [0x1d5b] = 0x6a44, [0x1d5c] = 0x6a62, [0x1d5d] = 0x6a61, [0x1d5e] = 0x6a4b, - [0x1d5f] = 0x6a47, [0x1d60] = 0x6a35, [0x1d61] = 0x6a5f, [0x1d62] = 0x6a48, - [0x1d63] = 0x6b59, [0x1d64] = 0x6b77, [0x1d65] = 0x6c05, [0x1d66] = 0x6fc2, - [0x1d67] = 0x6fb1, [0x1d68] = 0x6fa1, [0x1d69] = 0x6fc3, [0x1d6a] = 0x6fa4, - [0x1d6b] = 0x6fc1, [0x1d6c] = 0x6fa7, [0x1d6d] = 0x6fb3, [0x1d6e] = 0x6fc0, - [0x1d6f] = 0x6fb9, [0x1d70] = 0x6fb6, [0x1d71] = 0x6fa6, [0x1d72] = 0x6fa0, - [0x1d73] = 0x6fb4, [0x1d74] = 0x71be, [0x1d75] = 0x71c9, [0x1d76] = 0x71d0, - [0x1d77] = 0x71d2, [0x1d78] = 0x71c8, [0x1d79] = 0x71d5, [0x1d7a] = 0x71b9, - [0x1d7b] = 0x71ce, [0x1d7c] = 0x71d9, [0x1d7d] = 0x71dc, [0x1d7e] = 0x71c3, - [0x1d7f] = 0x71c4, [0x1d80] = 0x7368, [0x1d81] = 0x749c, [0x1d82] = 0x74a3, - [0x1d83] = 0x7498, [0x1d84] = 0x749f, [0x1d85] = 0x749e, [0x1d86] = 0x74e2, - [0x1d87] = 0x750c, [0x1d88] = 0x750d, [0x1d89] = 0x7634, [0x1d8a] = 0x7638, - [0x1d8b] = 0x763a, [0x1d8c] = 0x76e7, [0x1d8d] = 0x76e5, [0x1d8e] = 0x77a0, - [0x1d8f] = 0x779e, [0x1d90] = 0x779f, [0x1d91] = 0x77a5, [0x1d92] = 0x78e8, - [0x1d93] = 0x78da, [0x1d94] = 0x78ec, [0x1d95] = 0x78e7, [0x1d96] = 0x79a6, - [0x1d97] = 0x7a4d, [0x1d98] = 0x7a4e, [0x1d99] = 0x7a46, [0x1d9a] = 0x7a4c, - [0x1d9b] = 0x7a4b, [0x1d9c] = 0x7aba, [0x1d9d] = 0x7bd9, [0x1d9e] = 0x7c11, - [0x1d9f] = 0x7bc9, [0x1da0] = 0x7be4, [0x1da1] = 0x7bdb, [0x1da2] = 0x7be1, - [0x1da3] = 0x7be9, [0x1da4] = 0x7be6, [0x1da5] = 0x7cd5, [0x1da6] = 0x7cd6, - [0x1da7] = 0x7e0a, [0x1da8] = 0x7e11, [0x1da9] = 0x7e08, [0x1daa] = 0x7e1b, - [0x1dab] = 0x7e23, [0x1dac] = 0x7e1e, [0x1dad] = 0x7e1d, [0x1dae] = 0x7e09, - [0x1daf] = 0x7e10, [0x1db0] = 0x7f79, [0x1db1] = 0x7fb2, [0x1db2] = 0x7ff0, - [0x1db3] = 0x7ff1, [0x1db4] = 0x7fee, [0x1db5] = 0x8028, [0x1db6] = 0x81b3, - [0x1db7] = 0x81a9, [0x1db8] = 0x81a8, [0x1db9] = 0x81fb, [0x1dba] = 0x8208, - [0x1dbb] = 0x8258, [0x1dbc] = 0x8259, [0x1dbd] = 0x854a, [0x1dbe] = 0x8559, - [0x1dbf] = 0x8548, [0x1dc0] = 0x8568, [0x1dc1] = 0x8569, [0x1dc2] = 0x8543, - [0x1dc3] = 0x8549, [0x1dc4] = 0x856d, [0x1dc5] = 0x856a, [0x1dc6] = 0x855e, - [0x1dc7] = 0x8783, [0x1dc8] = 0x879f, [0x1dc9] = 0x879e, [0x1dca] = 0x87a2, - [0x1dcb] = 0x878d, [0x1dcc] = 0x8861, [0x1dcd] = 0x892a, [0x1dce] = 0x8932, - [0x1dcf] = 0x8925, [0x1dd0] = 0x892b, [0x1dd1] = 0x8921, [0x1dd2] = 0x89aa, - [0x1dd3] = 0x89a6, [0x1dd4] = 0x8ae6, [0x1dd5] = 0x8afa, [0x1dd6] = 0x8aeb, - [0x1dd7] = 0x8af1, [0x1dd8] = 0x8b00, [0x1dd9] = 0x8adc, [0x1dda] = 0x8ae7, - [0x1ddb] = 0x8aee, [0x1ddc] = 0x8afe, [0x1ddd] = 0x8b01, [0x1dde] = 0x8b02, - [0x1ddf] = 0x8af7, [0x1de0] = 0x8aed, [0x1de1] = 0x8af3, [0x1de2] = 0x8af6, - [0x1de3] = 0x8afc, [0x1de4] = 0x8c6b, [0x1de5] = 0x8c6d, [0x1de6] = 0x8c93, - [0x1de7] = 0x8cf4, [0x1de8] = 0x8e44, [0x1de9] = 0x8e31, [0x1dea] = 0x8e34, - [0x1deb] = 0x8e42, [0x1dec] = 0x8e39, [0x1ded] = 0x8e35, [0x1dee] = 0x8f3b, - [0x1def] = 0x8f2f, [0x1df0] = 0x8f38, [0x1df1] = 0x8f33, [0x1df2] = 0x8fa8, - [0x1df3] = 0x8fa6, [0x1df4] = 0x9075, [0x1df5] = 0x9074, [0x1df6] = 0x9078, - [0x1df7] = 0x9072, [0x1df8] = 0x907c, [0x1df9] = 0x907a, [0x1dfa] = 0x9134, - [0x1dfb] = 0x9192, [0x1dfc] = 0x9320, [0x1dfd] = 0x9336, [0x1dfe] = 0x92f8, - [0x1dff] = 0x9333, [0x1e00] = 0x932f, [0x1e01] = 0x9322, [0x1e02] = 0x92fc, - [0x1e03] = 0x932b, [0x1e04] = 0x9304, [0x1e05] = 0x931a, [0x1e06] = 0x9310, - [0x1e07] = 0x9326, [0x1e08] = 0x9321, [0x1e09] = 0x9315, [0x1e0a] = 0x932e, - [0x1e0b] = 0x9319, [0x1e0c] = 0x95bb, [0x1e0d] = 0x96a7, [0x1e0e] = 0x96a8, - [0x1e0f] = 0x96aa, [0x1e10] = 0x96d5, [0x1e11] = 0x970e, [0x1e12] = 0x9711, - [0x1e13] = 0x9716, [0x1e14] = 0x970d, [0x1e15] = 0x9713, [0x1e16] = 0x970f, - [0x1e17] = 0x975b, [0x1e18] = 0x975c, [0x1e19] = 0x9766, [0x1e1a] = 0x9798, - [0x1e1b] = 0x9830, [0x1e1c] = 0x9838, [0x1e1d] = 0x983b, [0x1e1e] = 0x9837, - [0x1e1f] = 0x982d, [0x1e20] = 0x9839, [0x1e21] = 0x9824, [0x1e22] = 0x9910, - [0x1e23] = 0x9928, [0x1e24] = 0x991e, [0x1e25] = 0x991b, [0x1e26] = 0x9921, - [0x1e27] = 0x991a, [0x1e28] = 0x99ed, [0x1e29] = 0x99e2, [0x1e2a] = 0x99f1, - [0x1e2b] = 0x9ab8, [0x1e2c] = 0x9abc, [0x1e2d] = 0x9afb, [0x1e2e] = 0x9aed, - [0x1e2f] = 0x9b28, [0x1e30] = 0x9b91, [0x1e31] = 0x9d15, [0x1e32] = 0x9d23, - [0x1e33] = 0x9d26, [0x1e34] = 0x9d28, [0x1e35] = 0x9d12, [0x1e36] = 0x9d1b, - [0x1e37] = 0x9ed8, [0x1e38] = 0x9ed4, [0x1e39] = 0x9f8d, [0x1e3a] = 0x9f9c, - [0x1e3b] = 0x512a, [0x1e3c] = 0x511f, [0x1e3d] = 0x5121, [0x1e3e] = 0x5132, - [0x1e3f] = 0x52f5, [0x1e40] = 0x568e, [0x1e41] = 0x5680, [0x1e42] = 0x5690, - [0x1e43] = 0x5685, [0x1e44] = 0x5687, [0x1e45] = 0x568f, [0x1e46] = 0x58d5, - [0x1e47] = 0x58d3, [0x1e48] = 0x58d1, [0x1e49] = 0x58ce, [0x1e4a] = 0x5b30, - [0x1e4b] = 0x5b2a, [0x1e4c] = 0x5b24, [0x1e4d] = 0x5b7a, [0x1e4e] = 0x5c37, - [0x1e4f] = 0x5c68, [0x1e50] = 0x5dbc, [0x1e51] = 0x5dba, [0x1e52] = 0x5dbd, - [0x1e53] = 0x5db8, [0x1e54] = 0x5e6b, [0x1e55] = 0x5f4c, [0x1e56] = 0x5fbd, - [0x1e57] = 0x61c9, [0x1e58] = 0x61c2, [0x1e59] = 0x61c7, [0x1e5a] = 0x61e6, - [0x1e5b] = 0x61cb, [0x1e5c] = 0x6232, [0x1e5d] = 0x6234, [0x1e5e] = 0x64ce, - [0x1e5f] = 0x64ca, [0x1e60] = 0x64d8, [0x1e61] = 0x64e0, [0x1e62] = 0x64f0, - [0x1e63] = 0x64e6, [0x1e64] = 0x64ec, [0x1e65] = 0x64f1, [0x1e66] = 0x64e2, - [0x1e67] = 0x64ed, [0x1e68] = 0x6582, [0x1e69] = 0x6583, [0x1e6a] = 0x66d9, - [0x1e6b] = 0x66d6, [0x1e6c] = 0x6a80, [0x1e6d] = 0x6a94, [0x1e6e] = 0x6a84, - [0x1e6f] = 0x6aa2, [0x1e70] = 0x6a9c, [0x1e71] = 0x6adb, [0x1e72] = 0x6aa3, - [0x1e73] = 0x6a7e, [0x1e74] = 0x6a97, [0x1e75] = 0x6a90, [0x1e76] = 0x6aa0, - [0x1e77] = 0x6b5c, [0x1e78] = 0x6bae, [0x1e79] = 0x6bda, [0x1e7a] = 0x6c08, - [0x1e7b] = 0x6fd8, [0x1e7c] = 0x6ff1, [0x1e7d] = 0x6fdf, [0x1e7e] = 0x6fe0, - [0x1e7f] = 0x6fdb, [0x1e80] = 0x6fe4, [0x1e81] = 0x6feb, [0x1e82] = 0x6fef, - [0x1e83] = 0x6f80, [0x1e84] = 0x6fec, [0x1e85] = 0x6fe1, [0x1e86] = 0x6fe9, - [0x1e87] = 0x6fd5, [0x1e88] = 0x6fee, [0x1e89] = 0x6ff0, [0x1e8a] = 0x71e7, - [0x1e8b] = 0x71df, [0x1e8c] = 0x71ee, [0x1e8d] = 0x71e6, [0x1e8e] = 0x71e5, - [0x1e8f] = 0x71ed, [0x1e90] = 0x71ec, [0x1e91] = 0x71f4, [0x1e92] = 0x71e0, - [0x1e93] = 0x7235, [0x1e94] = 0x7246, [0x1e95] = 0x7370, [0x1e96] = 0x7372, - [0x1e97] = 0x74a9, [0x1e98] = 0x74b0, [0x1e99] = 0x74a6, [0x1e9a] = 0x74a8, - [0x1e9b] = 0x7646, [0x1e9c] = 0x7642, [0x1e9d] = 0x764c, [0x1e9e] = 0x76ea, - [0x1e9f] = 0x77b3, [0x1ea0] = 0x77aa, [0x1ea1] = 0x77b0, [0x1ea2] = 0x77ac, - [0x1ea3] = 0x77a7, [0x1ea4] = 0x77ad, [0x1ea5] = 0x77ef, [0x1ea6] = 0x78f7, - [0x1ea7] = 0x78fa, [0x1ea8] = 0x78f4, [0x1ea9] = 0x78ef, [0x1eaa] = 0x7901, - [0x1eab] = 0x79a7, [0x1eac] = 0x79aa, [0x1ead] = 0x7a57, [0x1eae] = 0x7abf, - [0x1eaf] = 0x7c07, [0x1eb0] = 0x7c0d, [0x1eb1] = 0x7bfe, [0x1eb2] = 0x7bf7, - [0x1eb3] = 0x7c0c, [0x1eb4] = 0x7be0, [0x1eb5] = 0x7ce0, [0x1eb6] = 0x7cdc, - [0x1eb7] = 0x7cde, [0x1eb8] = 0x7ce2, [0x1eb9] = 0x7cdf, [0x1eba] = 0x7cd9, - [0x1ebb] = 0x7cdd, [0x1ebc] = 0x7e2e, [0x1ebd] = 0x7e3e, [0x1ebe] = 0x7e46, - [0x1ebf] = 0x7e37, [0x1ec0] = 0x7e32, [0x1ec1] = 0x7e43, [0x1ec2] = 0x7e2b, - [0x1ec3] = 0x7e3d, [0x1ec4] = 0x7e31, [0x1ec5] = 0x7e45, [0x1ec6] = 0x7e41, - [0x1ec7] = 0x7e34, [0x1ec8] = 0x7e39, [0x1ec9] = 0x7e48, [0x1eca] = 0x7e35, - [0x1ecb] = 0x7e3f, [0x1ecc] = 0x7e2f, [0x1ecd] = 0x7f44, [0x1ece] = 0x7ff3, - [0x1ecf] = 0x7ffc, [0x1ed0] = 0x8071, [0x1ed1] = 0x8072, [0x1ed2] = 0x8070, - [0x1ed3] = 0x806f, [0x1ed4] = 0x8073, [0x1ed5] = 0x81c6, [0x1ed6] = 0x81c3, - [0x1ed7] = 0x81ba, [0x1ed8] = 0x81c2, [0x1ed9] = 0x81c0, [0x1eda] = 0x81bf, - [0x1edb] = 0x81bd, [0x1edc] = 0x81c9, [0x1edd] = 0x81be, [0x1ede] = 0x81e8, - [0x1edf] = 0x8209, [0x1ee0] = 0x8271, [0x1ee1] = 0x85aa, [0x1ee2] = 0x8584, - [0x1ee3] = 0x857e, [0x1ee4] = 0x859c, [0x1ee5] = 0x8591, [0x1ee6] = 0x8594, - [0x1ee7] = 0x85af, [0x1ee8] = 0x859b, [0x1ee9] = 0x8587, [0x1eea] = 0x85a8, - [0x1eeb] = 0x858a, [0x1eec] = 0x85a6, [0x1eed] = 0x8667, [0x1eee] = 0x87c0, - [0x1eef] = 0x87d1, [0x1ef0] = 0x87b3, [0x1ef1] = 0x87d2, [0x1ef2] = 0x87c6, - [0x1ef3] = 0x87ab, [0x1ef4] = 0x87bb, [0x1ef5] = 0x87ba, [0x1ef6] = 0x87c8, - [0x1ef7] = 0x87cb, [0x1ef8] = 0x893b, [0x1ef9] = 0x8936, [0x1efa] = 0x8944, - [0x1efb] = 0x8938, [0x1efc] = 0x893d, [0x1efd] = 0x89ac, [0x1efe] = 0x8b0e, - [0x1eff] = 0x8b17, [0x1f00] = 0x8b19, [0x1f01] = 0x8b1b, [0x1f02] = 0x8b0a, - [0x1f03] = 0x8b20, [0x1f04] = 0x8b1d, [0x1f05] = 0x8b04, [0x1f06] = 0x8b10, - [0x1f07] = 0x8c41, [0x1f08] = 0x8c3f, [0x1f09] = 0x8c73, [0x1f0a] = 0x8cfa, - [0x1f0b] = 0x8cfd, [0x1f0c] = 0x8cfc, [0x1f0d] = 0x8cf8, [0x1f0e] = 0x8cfb, - [0x1f0f] = 0x8da8, [0x1f10] = 0x8e49, [0x1f11] = 0x8e4b, [0x1f12] = 0x8e48, - [0x1f13] = 0x8e4a, [0x1f14] = 0x8f44, [0x1f15] = 0x8f3e, [0x1f16] = 0x8f42, - [0x1f17] = 0x8f45, [0x1f18] = 0x8f3f, [0x1f19] = 0x907f, [0x1f1a] = 0x907d, - [0x1f1b] = 0x9084, [0x1f1c] = 0x9081, [0x1f1d] = 0x9082, [0x1f1e] = 0x9080, - [0x1f1f] = 0x9139, [0x1f20] = 0x91a3, [0x1f21] = 0x919e, [0x1f22] = 0x919c, - [0x1f23] = 0x934d, [0x1f24] = 0x9382, [0x1f25] = 0x9328, [0x1f26] = 0x9375, - [0x1f27] = 0x934a, [0x1f28] = 0x9365, [0x1f29] = 0x934b, [0x1f2a] = 0x9318, - [0x1f2b] = 0x937e, [0x1f2c] = 0x936c, [0x1f2d] = 0x935b, [0x1f2e] = 0x9370, - [0x1f2f] = 0x935a, [0x1f30] = 0x9354, [0x1f31] = 0x95ca, [0x1f32] = 0x95cb, - [0x1f33] = 0x95cc, [0x1f34] = 0x95c8, [0x1f35] = 0x95c6, [0x1f36] = 0x96b1, - [0x1f37] = 0x96b8, [0x1f38] = 0x96d6, [0x1f39] = 0x971c, [0x1f3a] = 0x971e, - [0x1f3b] = 0x97a0, [0x1f3c] = 0x97d3, [0x1f3d] = 0x9846, [0x1f3e] = 0x98b6, - [0x1f3f] = 0x9935, [0x1f40] = 0x9a01, [0x1f41] = 0x99ff, [0x1f42] = 0x9bae, - [0x1f43] = 0x9bab, [0x1f44] = 0x9baa, [0x1f45] = 0x9bad, [0x1f46] = 0x9d3b, - [0x1f47] = 0x9d3f, [0x1f48] = 0x9e8b, [0x1f49] = 0x9ecf, [0x1f4a] = 0x9ede, - [0x1f4b] = 0x9edc, [0x1f4c] = 0x9edd, [0x1f4d] = 0x9edb, [0x1f4e] = 0x9f3e, - [0x1f4f] = 0x9f4b, [0x1f50] = 0x53e2, [0x1f51] = 0x5695, [0x1f52] = 0x56ae, - [0x1f53] = 0x58d9, [0x1f54] = 0x58d8, [0x1f55] = 0x5b38, [0x1f56] = 0x5f5e, - [0x1f57] = 0x61e3, [0x1f58] = 0x6233, [0x1f59] = 0x64f4, [0x1f5a] = 0x64f2, - [0x1f5b] = 0x64fe, [0x1f5c] = 0x6506, [0x1f5d] = 0x64fa, [0x1f5e] = 0x64fb, - [0x1f5f] = 0x64f7, [0x1f60] = 0x65b7, [0x1f61] = 0x66dc, [0x1f62] = 0x6726, - [0x1f63] = 0x6ab3, [0x1f64] = 0x6aac, [0x1f65] = 0x6ac3, [0x1f66] = 0x6abb, - [0x1f67] = 0x6ab8, [0x1f68] = 0x6ac2, [0x1f69] = 0x6aae, [0x1f6a] = 0x6aaf, - [0x1f6b] = 0x6b5f, [0x1f6c] = 0x6b78, [0x1f6d] = 0x6baf, [0x1f6e] = 0x7009, - [0x1f6f] = 0x700b, [0x1f70] = 0x6ffe, [0x1f71] = 0x7006, [0x1f72] = 0x6ffa, - [0x1f73] = 0x7011, [0x1f74] = 0x700f, [0x1f75] = 0x71fb, [0x1f76] = 0x71fc, - [0x1f77] = 0x71fe, [0x1f78] = 0x71f8, [0x1f79] = 0x7377, [0x1f7a] = 0x7375, - [0x1f7b] = 0x74a7, [0x1f7c] = 0x74bf, [0x1f7d] = 0x7515, [0x1f7e] = 0x7656, - [0x1f7f] = 0x7658, [0x1f80] = 0x7652, [0x1f81] = 0x77bd, [0x1f82] = 0x77bf, - [0x1f83] = 0x77bb, [0x1f84] = 0x77bc, [0x1f85] = 0x790e, [0x1f86] = 0x79ae, - [0x1f87] = 0x7a61, [0x1f88] = 0x7a62, [0x1f89] = 0x7a60, [0x1f8a] = 0x7ac4, - [0x1f8b] = 0x7ac5, [0x1f8c] = 0x7c2b, [0x1f8d] = 0x7c27, [0x1f8e] = 0x7c2a, - [0x1f8f] = 0x7c1e, [0x1f90] = 0x7c23, [0x1f91] = 0x7c21, [0x1f92] = 0x7ce7, - [0x1f93] = 0x7e54, [0x1f94] = 0x7e55, [0x1f95] = 0x7e5e, [0x1f96] = 0x7e5a, - [0x1f97] = 0x7e61, [0x1f98] = 0x7e52, [0x1f99] = 0x7e59, [0x1f9a] = 0x7f48, - [0x1f9b] = 0x7ff9, [0x1f9c] = 0x7ffb, [0x1f9d] = 0x8077, [0x1f9e] = 0x8076, - [0x1f9f] = 0x81cd, [0x1fa0] = 0x81cf, [0x1fa1] = 0x820a, [0x1fa2] = 0x85cf, - [0x1fa3] = 0x85a9, [0x1fa4] = 0x85cd, [0x1fa5] = 0x85d0, [0x1fa6] = 0x85c9, - [0x1fa7] = 0x85b0, [0x1fa8] = 0x85ba, [0x1fa9] = 0x85b9, [0x1faa] = 0x87ef, - [0x1fab] = 0x87ec, [0x1fac] = 0x87f2, [0x1fad] = 0x87e0, [0x1fae] = 0x8986, - [0x1faf] = 0x89b2, [0x1fb0] = 0x89f4, [0x1fb1] = 0x8b28, [0x1fb2] = 0x8b39, - [0x1fb3] = 0x8b2c, [0x1fb4] = 0x8b2b, [0x1fb5] = 0x8c50, [0x1fb6] = 0x8d05, - [0x1fb7] = 0x8e59, [0x1fb8] = 0x8e63, [0x1fb9] = 0x8e66, [0x1fba] = 0x8e64, - [0x1fbb] = 0x8e5f, [0x1fbc] = 0x8e55, [0x1fbd] = 0x8ec0, [0x1fbe] = 0x8f49, - [0x1fbf] = 0x8f4d, [0x1fc0] = 0x9087, [0x1fc1] = 0x9083, [0x1fc2] = 0x9088, - [0x1fc3] = 0x91ab, [0x1fc4] = 0x91ac, [0x1fc5] = 0x91d0, [0x1fc6] = 0x9394, - [0x1fc7] = 0x938a, [0x1fc8] = 0x9396, [0x1fc9] = 0x93a2, [0x1fca] = 0x93b3, - [0x1fcb] = 0x93ae, [0x1fcc] = 0x93ac, [0x1fcd] = 0x93b0, [0x1fce] = 0x9398, - [0x1fcf] = 0x939a, [0x1fd0] = 0x9397, [0x1fd1] = 0x95d4, [0x1fd2] = 0x95d6, - [0x1fd3] = 0x95d0, [0x1fd4] = 0x95d5, [0x1fd5] = 0x96e2, [0x1fd6] = 0x96dc, - [0x1fd7] = 0x96d9, [0x1fd8] = 0x96db, [0x1fd9] = 0x96de, [0x1fda] = 0x9724, - [0x1fdb] = 0x97a3, [0x1fdc] = 0x97a6, [0x1fdd] = 0x97ad, [0x1fde] = 0x97f9, - [0x1fdf] = 0x984d, [0x1fe0] = 0x984f, [0x1fe1] = 0x984c, [0x1fe2] = 0x984e, - [0x1fe3] = 0x9853, [0x1fe4] = 0x98ba, [0x1fe5] = 0x993e, [0x1fe6] = 0x993f, - [0x1fe7] = 0x993d, [0x1fe8] = 0x992e, [0x1fe9] = 0x99a5, [0x1fea] = 0x9a0e, - [0x1feb] = 0x9ac1, [0x1fec] = 0x9b03, [0x1fed] = 0x9b06, [0x1fee] = 0x9b4f, - [0x1fef] = 0x9b4e, [0x1ff0] = 0x9b4d, [0x1ff1] = 0x9bca, [0x1ff2] = 0x9bc9, - [0x1ff3] = 0x9bfd, [0x1ff4] = 0x9bc8, [0x1ff5] = 0x9bc0, [0x1ff6] = 0x9d51, - [0x1ff7] = 0x9d5d, [0x1ff8] = 0x9d60, [0x1ff9] = 0x9ee0, [0x1ffa] = 0x9f15, - [0x1ffb] = 0x9f2c, [0x1ffc] = 0x5133, [0x1ffd] = 0x56a5, [0x1ffe] = 0x56a8, - [0x1fff] = 0x58de, [0x2000] = 0x58df, [0x2001] = 0x58e2, [0x2002] = 0x5bf5, - [0x2003] = 0x9f90, [0x2004] = 0x5eec, [0x2005] = 0x61f2, [0x2006] = 0x61f7, - [0x2007] = 0x61f6, [0x2008] = 0x61f5, [0x2009] = 0x6500, [0x200a] = 0x650f, - [0x200b] = 0x66e0, [0x200c] = 0x66dd, [0x200d] = 0x6ae5, [0x200e] = 0x6add, - [0x200f] = 0x6ada, [0x2010] = 0x6ad3, [0x2011] = 0x701b, [0x2012] = 0x701f, - [0x2013] = 0x7028, [0x2014] = 0x701a, [0x2015] = 0x701d, [0x2016] = 0x7015, - [0x2017] = 0x7018, [0x2018] = 0x7206, [0x2019] = 0x720d, [0x201a] = 0x7258, - [0x201b] = 0x72a2, [0x201c] = 0x7378, [0x201d] = 0x737a, [0x201e] = 0x74bd, - [0x201f] = 0x74ca, [0x2020] = 0x74e3, [0x2021] = 0x7587, [0x2022] = 0x7586, - [0x2023] = 0x765f, [0x2024] = 0x7661, [0x2025] = 0x77c7, [0x2026] = 0x7919, - [0x2027] = 0x79b1, [0x2028] = 0x7a6b, [0x2029] = 0x7a69, [0x202a] = 0x7c3e, - [0x202b] = 0x7c3f, [0x202c] = 0x7c38, [0x202d] = 0x7c3d, [0x202e] = 0x7c37, - [0x202f] = 0x7c40, [0x2030] = 0x7e6b, [0x2031] = 0x7e6d, [0x2032] = 0x7e79, - [0x2033] = 0x7e69, [0x2034] = 0x7e6a, [0x2035] = 0x7e73, [0x2036] = 0x7f85, - [0x2037] = 0x7fb6, [0x2038] = 0x7fb9, [0x2039] = 0x7fb8, [0x203a] = 0x81d8, - [0x203b] = 0x85e9, [0x203c] = 0x85dd, [0x203d] = 0x85ea, [0x203e] = 0x85d5, - [0x203f] = 0x85e4, [0x2040] = 0x85e5, [0x2041] = 0x85f7, [0x2042] = 0x87fb, - [0x2043] = 0x8805, [0x2044] = 0x880d, [0x2045] = 0x87f9, [0x2046] = 0x87fe, - [0x2047] = 0x8960, [0x2048] = 0x895f, [0x2049] = 0x8956, [0x204a] = 0x895e, - [0x204b] = 0x8b41, [0x204c] = 0x8b5c, [0x204d] = 0x8b58, [0x204e] = 0x8b49, - [0x204f] = 0x8b5a, [0x2050] = 0x8b4e, [0x2051] = 0x8b4f, [0x2052] = 0x8b46, - [0x2053] = 0x8b59, [0x2054] = 0x8d08, [0x2055] = 0x8d0a, [0x2056] = 0x8e7c, - [0x2057] = 0x8e72, [0x2058] = 0x8e87, [0x2059] = 0x8e76, [0x205a] = 0x8e6c, - [0x205b] = 0x8e7a, [0x205c] = 0x8e74, [0x205d] = 0x8f54, [0x205e] = 0x8f4e, - [0x205f] = 0x8fad, [0x2060] = 0x908a, [0x2061] = 0x908b, [0x2062] = 0x91b1, - [0x2063] = 0x91ae, [0x2064] = 0x93e1, [0x2065] = 0x93d1, [0x2066] = 0x93df, - [0x2067] = 0x93c3, [0x2068] = 0x93c8, [0x2069] = 0x93dc, [0x206a] = 0x93dd, - [0x206b] = 0x93d6, [0x206c] = 0x93e2, [0x206d] = 0x93cd, [0x206e] = 0x93d8, - [0x206f] = 0x93e4, [0x2070] = 0x93d7, [0x2071] = 0x93e8, [0x2072] = 0x95dc, - [0x2073] = 0x96b4, [0x2074] = 0x96e3, [0x2075] = 0x972a, [0x2076] = 0x9727, - [0x2077] = 0x9761, [0x2078] = 0x97dc, [0x2079] = 0x97fb, [0x207a] = 0x985e, - [0x207b] = 0x9858, [0x207c] = 0x985b, [0x207d] = 0x98bc, [0x207e] = 0x9945, - [0x207f] = 0x9949, [0x2080] = 0x9a16, [0x2081] = 0x9a19, [0x2082] = 0x9b0d, - [0x2083] = 0x9be8, [0x2084] = 0x9be7, [0x2085] = 0x9bd6, [0x2086] = 0x9bdb, - [0x2087] = 0x9d89, [0x2088] = 0x9d61, [0x2089] = 0x9d72, [0x208a] = 0x9d6a, - [0x208b] = 0x9d6c, [0x208c] = 0x9e92, [0x208d] = 0x9e97, [0x208e] = 0x9e93, - [0x208f] = 0x9eb4, [0x2090] = 0x52f8, [0x2091] = 0x56b7, [0x2092] = 0x56b6, - [0x2093] = 0x56b4, [0x2094] = 0x56bc, [0x2095] = 0x58e4, [0x2096] = 0x5b40, - [0x2097] = 0x5b43, [0x2098] = 0x5b7d, [0x2099] = 0x5bf6, [0x209a] = 0x5dc9, - [0x209b] = 0x61f8, [0x209c] = 0x61fa, [0x209d] = 0x6518, [0x209e] = 0x6514, - [0x209f] = 0x6519, [0x20a0] = 0x66e6, [0x20a1] = 0x6727, [0x20a2] = 0x6aec, - [0x20a3] = 0x703e, [0x20a4] = 0x7030, [0x20a5] = 0x7032, [0x20a6] = 0x7210, - [0x20a7] = 0x737b, [0x20a8] = 0x74cf, [0x20a9] = 0x7662, [0x20aa] = 0x7665, - [0x20ab] = 0x7926, [0x20ac] = 0x792a, [0x20ad] = 0x792c, [0x20ae] = 0x792b, - [0x20af] = 0x7ac7, [0x20b0] = 0x7af6, [0x20b1] = 0x7c4c, [0x20b2] = 0x7c43, - [0x20b3] = 0x7c4d, [0x20b4] = 0x7cef, [0x20b5] = 0x7cf0, [0x20b6] = 0x8fae, - [0x20b7] = 0x7e7d, [0x20b8] = 0x7e7c, [0x20b9] = 0x7e82, [0x20ba] = 0x7f4c, - [0x20bb] = 0x8000, [0x20bc] = 0x81da, [0x20bd] = 0x8266, [0x20be] = 0x85fb, - [0x20bf] = 0x85f9, [0x20c0] = 0x8611, [0x20c1] = 0x85fa, [0x20c2] = 0x8606, - [0x20c3] = 0x860b, [0x20c4] = 0x8607, [0x20c5] = 0x860a, [0x20c6] = 0x8814, - [0x20c7] = 0x8815, [0x20c8] = 0x8964, [0x20c9] = 0x89ba, [0x20ca] = 0x89f8, - [0x20cb] = 0x8b70, [0x20cc] = 0x8b6c, [0x20cd] = 0x8b66, [0x20ce] = 0x8b6f, - [0x20cf] = 0x8b5f, [0x20d0] = 0x8b6b, [0x20d1] = 0x8d0f, [0x20d2] = 0x8d0d, - [0x20d3] = 0x8e89, [0x20d4] = 0x8e81, [0x20d5] = 0x8e85, [0x20d6] = 0x8e82, - [0x20d7] = 0x91b4, [0x20d8] = 0x91cb, [0x20d9] = 0x9418, [0x20da] = 0x9403, - [0x20db] = 0x93fd, [0x20dc] = 0x95e1, [0x20dd] = 0x9730, [0x20de] = 0x98c4, - [0x20df] = 0x9952, [0x20e0] = 0x9951, [0x20e1] = 0x99a8, [0x20e2] = 0x9a2b, - [0x20e3] = 0x9a30, [0x20e4] = 0x9a37, [0x20e5] = 0x9a35, [0x20e6] = 0x9c13, - [0x20e7] = 0x9c0d, [0x20e8] = 0x9e79, [0x20e9] = 0x9eb5, [0x20ea] = 0x9ee8, - [0x20eb] = 0x9f2f, [0x20ec] = 0x9f5f, [0x20ed] = 0x9f63, [0x20ee] = 0x9f61, - [0x20ef] = 0x5137, [0x20f0] = 0x5138, [0x20f1] = 0x56c1, [0x20f2] = 0x56c0, - [0x20f3] = 0x56c2, [0x20f4] = 0x5914, [0x20f5] = 0x5c6c, [0x20f6] = 0x5dcd, - [0x20f7] = 0x61fc, [0x20f8] = 0x61fe, [0x20f9] = 0x651d, [0x20fa] = 0x651c, - [0x20fb] = 0x6595, [0x20fc] = 0x66e9, [0x20fd] = 0x6afb, [0x20fe] = 0x6b04, - [0x20ff] = 0x6afa, [0x2100] = 0x6bb2, [0x2101] = 0x704c, [0x2102] = 0x721b, - [0x2103] = 0x72a7, [0x2104] = 0x74d6, [0x2105] = 0x74d4, [0x2106] = 0x7669, - [0x2107] = 0x77d3, [0x2108] = 0x7c50, [0x2109] = 0x7e8f, [0x210a] = 0x7e8c, - [0x210b] = 0x7fbc, [0x210c] = 0x8617, [0x210d] = 0x862d, [0x210e] = 0x861a, - [0x210f] = 0x8823, [0x2110] = 0x8822, [0x2111] = 0x8821, [0x2112] = 0x881f, - [0x2113] = 0x896a, [0x2114] = 0x896c, [0x2115] = 0x89bd, [0x2116] = 0x8b74, - [0x2117] = 0x8b77, [0x2118] = 0x8b7d, [0x2119] = 0x8d13, [0x211a] = 0x8e8a, - [0x211b] = 0x8e8d, [0x211c] = 0x8e8b, [0x211d] = 0x8f5f, [0x211e] = 0x8faf, - [0x211f] = 0x91ba, [0x2120] = 0x942e, [0x2121] = 0x9433, [0x2122] = 0x9435, - [0x2123] = 0x943a, [0x2124] = 0x9438, [0x2125] = 0x9432, [0x2126] = 0x942b, - [0x2127] = 0x95e2, [0x2128] = 0x9738, [0x2129] = 0x9739, [0x212a] = 0x9732, - [0x212b] = 0x97ff, [0x212c] = 0x9867, [0x212d] = 0x9865, [0x212e] = 0x9957, - [0x212f] = 0x9a45, [0x2130] = 0x9a43, [0x2131] = 0x9a40, [0x2132] = 0x9a3e, - [0x2133] = 0x9acf, [0x2134] = 0x9b54, [0x2135] = 0x9b51, [0x2136] = 0x9c2d, - [0x2137] = 0x9c25, [0x2138] = 0x9daf, [0x2139] = 0x9db4, [0x213a] = 0x9dc2, - [0x213b] = 0x9db8, [0x213c] = 0x9e9d, [0x213d] = 0x9eef, [0x213e] = 0x9f19, - [0x213f] = 0x9f5c, [0x2140] = 0x9f66, [0x2141] = 0x9f67, [0x2142] = 0x513c, - [0x2143] = 0x513b, [0x2144] = 0x56c8, [0x2145] = 0x56ca, [0x2146] = 0x56c9, - [0x2147] = 0x5b7f, [0x2148] = 0x5dd4, [0x2149] = 0x5dd2, [0x214a] = 0x5f4e, - [0x214b] = 0x61ff, [0x214c] = 0x6524, [0x214d] = 0x6b0a, [0x214e] = 0x6b61, - [0x214f] = 0x7051, [0x2150] = 0x7058, [0x2151] = 0x7380, [0x2152] = 0x74e4, - [0x2153] = 0x758a, [0x2154] = 0x766e, [0x2155] = 0x766c, [0x2156] = 0x79b3, - [0x2157] = 0x7c60, [0x2158] = 0x7c5f, [0x2159] = 0x807e, [0x215a] = 0x807d, - [0x215b] = 0x81df, [0x215c] = 0x8972, [0x215d] = 0x896f, [0x215e] = 0x89fc, - [0x215f] = 0x8b80, [0x2160] = 0x8d16, [0x2161] = 0x8d17, [0x2162] = 0x8e91, - [0x2163] = 0x8e93, [0x2164] = 0x8f61, [0x2165] = 0x9148, [0x2166] = 0x9444, - [0x2167] = 0x9451, [0x2168] = 0x9452, [0x2169] = 0x973d, [0x216a] = 0x973e, - [0x216b] = 0x97c3, [0x216c] = 0x97c1, [0x216d] = 0x986b, [0x216e] = 0x9955, - [0x216f] = 0x9a55, [0x2170] = 0x9a4d, [0x2171] = 0x9ad2, [0x2172] = 0x9b1a, - [0x2173] = 0x9c49, [0x2174] = 0x9c31, [0x2175] = 0x9c3e, [0x2176] = 0x9c3b, - [0x2177] = 0x9dd3, [0x2178] = 0x9dd7, [0x2179] = 0x9f34, [0x217a] = 0x9f6c, - [0x217b] = 0x9f6a, [0x217c] = 0x9f94, [0x217d] = 0x56cc, [0x217e] = 0x5dd6, - [0x217f] = 0x6200, [0x2180] = 0x6523, [0x2181] = 0x652b, [0x2182] = 0x652a, - [0x2183] = 0x66ec, [0x2184] = 0x6b10, [0x2185] = 0x74da, [0x2186] = 0x7aca, - [0x2187] = 0x7c64, [0x2188] = 0x7c63, [0x2189] = 0x7c65, [0x218a] = 0x7e93, - [0x218b] = 0x7e96, [0x218c] = 0x7e94, [0x218d] = 0x81e2, [0x218e] = 0x8638, - [0x218f] = 0x863f, [0x2190] = 0x8831, [0x2191] = 0x8b8a, [0x2192] = 0x9090, - [0x2193] = 0x908f, [0x2194] = 0x9463, [0x2195] = 0x9460, [0x2196] = 0x9464, - [0x2197] = 0x9768, [0x2198] = 0x986f, [0x2199] = 0x995c, [0x219a] = 0x9a5a, - [0x219b] = 0x9a5b, [0x219c] = 0x9a57, [0x219d] = 0x9ad3, [0x219e] = 0x9ad4, - [0x219f] = 0x9ad1, [0x21a0] = 0x9c54, [0x21a1] = 0x9c57, [0x21a2] = 0x9c56, - [0x21a3] = 0x9de5, [0x21a4] = 0x9e9f, [0x21a5] = 0x9ef4, [0x21a6] = 0x56d1, - [0x21a7] = 0x58e9, [0x21a8] = 0x652c, [0x21a9] = 0x705e, [0x21aa] = 0x7671, - [0x21ab] = 0x7672, [0x21ac] = 0x77d7, [0x21ad] = 0x7f50, [0x21ae] = 0x7f88, - [0x21af] = 0x8836, [0x21b0] = 0x8839, [0x21b1] = 0x8862, [0x21b2] = 0x8b93, - [0x21b3] = 0x8b92, [0x21b4] = 0x8b96, [0x21b5] = 0x8277, [0x21b6] = 0x8d1b, - [0x21b7] = 0x91c0, [0x21b8] = 0x946a, [0x21b9] = 0x9742, [0x21ba] = 0x9748, - [0x21bb] = 0x9744, [0x21bc] = 0x97c6, [0x21bd] = 0x9870, [0x21be] = 0x9a5f, - [0x21bf] = 0x9b22, [0x21c0] = 0x9b58, [0x21c1] = 0x9c5f, [0x21c2] = 0x9df9, - [0x21c3] = 0x9dfa, [0x21c4] = 0x9e7c, [0x21c5] = 0x9e7d, [0x21c6] = 0x9f07, - [0x21c7] = 0x9f77, [0x21c8] = 0x9f72, [0x21c9] = 0x5ef3, [0x21ca] = 0x6b16, - [0x21cb] = 0x7063, [0x21cc] = 0x7c6c, [0x21cd] = 0x7c6e, [0x21ce] = 0x883b, - [0x21cf] = 0x89c0, [0x21d0] = 0x8ea1, [0x21d1] = 0x91c1, [0x21d2] = 0x9472, - [0x21d3] = 0x9470, [0x21d4] = 0x9871, [0x21d5] = 0x995e, [0x21d6] = 0x9ad6, - [0x21d7] = 0x9b23, [0x21d8] = 0x9ecc, [0x21d9] = 0x7064, [0x21da] = 0x77da, - [0x21db] = 0x8b9a, [0x21dc] = 0x9477, [0x21dd] = 0x97c9, [0x21de] = 0x9a62, - [0x21df] = 0x9a65, [0x21e0] = 0x7e9c, [0x21e1] = 0x8b9c, [0x21e2] = 0x8eaa, - [0x21e3] = 0x91c5, [0x21e4] = 0x947d, [0x21e5] = 0x947e, [0x21e6] = 0x947c, - [0x21e7] = 0x9c77, [0x21e8] = 0x9c78, [0x21e9] = 0x9ef7, [0x21ea] = 0x8c54, - [0x21eb] = 0x947f, [0x21ec] = 0x9e1a, [0x21ed] = 0x7228, [0x21ee] = 0x9a6a, - [0x21ef] = 0x9b31, [0x21f0] = 0x9e1b, [0x21f1] = 0x9e1e, [0x21f2] = 0x7c72, + [0x01f2] = 0x2178, [0x01f3] = 0x2179, [0x023b] = 0x4ea0, [0x0242] = 0x51ab, + [0x0247] = 0x52f9, [0x0c1e] = 0x2400, [0x0c1f] = 0x2401, [0x0c20] = 0x2402, + [0x0c21] = 0x2403, [0x0c22] = 0x2404, [0x0c23] = 0x2405, [0x0c24] = 0x2406, + [0x0c25] = 0x2407, [0x0c26] = 0x2408, [0x0c27] = 0x2409, [0x0c28] = 0x240a, + [0x0c29] = 0x240b, [0x0c2a] = 0x240c, [0x0c2b] = 0x240d, [0x0c2c] = 0x240e, + [0x0c2d] = 0x240f, [0x0c2e] = 0x2410, [0x0c2f] = 0x2411, [0x0c30] = 0x2412, + [0x0c31] = 0x2413, [0x0c32] = 0x2414, [0x0c33] = 0x2415, [0x0c34] = 0x2416, + [0x0c35] = 0x2417, [0x0c36] = 0x2418, [0x0c37] = 0x2419, [0x0c38] = 0x241a, + [0x0c39] = 0x241b, [0x0c3a] = 0x241c, [0x0c3b] = 0x241d, [0x0c3c] = 0x241e, + [0x0c3d] = 0x241f, [0x0c3e] = 0x2421, [0x0cda] = 0x4e00, [0x0cdb] = 0x4e59, + [0x0cdc] = 0x4e01, [0x0cdd] = 0x4e03, [0x0cde] = 0x4e43, [0x0cdf] = 0x4e5d, + [0x0ce0] = 0x4e86, [0x0ce1] = 0x4e8c, [0x0ce2] = 0x4eba, [0x0ce3] = 0x513f, + [0x0ce4] = 0x5165, [0x0ce5] = 0x516b, [0x0ce6] = 0x51e0, [0x0ce7] = 0x5200, + [0x0ce8] = 0x5201, [0x0ce9] = 0x529b, [0x0cea] = 0x5315, [0x0ceb] = 0x5341, + [0x0cec] = 0x535c, [0x0ced] = 0x53c8, [0x0cee] = 0x4e09, [0x0cef] = 0x4e0b, + [0x0cf0] = 0x4e08, [0x0cf1] = 0x4e0a, [0x0cf2] = 0x4e2b, [0x0cf3] = 0x4e38, + [0x0cf4] = 0x51e1, [0x0cf5] = 0x4e45, [0x0cf6] = 0x4e48, [0x0cf7] = 0x4e5f, + [0x0cf8] = 0x4e5e, [0x0cf9] = 0x4e8e, [0x0cfa] = 0x4ea1, [0x0cfb] = 0x5140, + [0x0cfc] = 0x5203, [0x0cfd] = 0x52fa, [0x0cfe] = 0x5343, [0x0cff] = 0x53c9, + [0x0d00] = 0x53e3, [0x0d01] = 0x571f, [0x0d02] = 0x58eb, [0x0d03] = 0x5915, + [0x0d04] = 0x5927, [0x0d05] = 0x5973, [0x0d06] = 0x5b50, [0x0d07] = 0x5b51, + [0x0d08] = 0x5b53, [0x0d09] = 0x5bf8, [0x0d0a] = 0x5c0f, [0x0d0b] = 0x5c22, + [0x0d0c] = 0x5c38, [0x0d0d] = 0x5c71, [0x0d0e] = 0x5ddd, [0x0d0f] = 0x5de5, + [0x0d10] = 0x5df1, [0x0d11] = 0x5df2, [0x0d12] = 0x5df3, [0x0d13] = 0x5dfe, + [0x0d14] = 0x5e72, [0x0d15] = 0x5efe, [0x0d16] = 0x5f0b, [0x0d17] = 0x5f13, + [0x0d18] = 0x624d, [0x0d19] = 0x4e11, [0x0d1a] = 0x4e10, [0x0d1b] = 0x4e0d, + [0x0d1c] = 0x4e2d, [0x0d1d] = 0x4e30, [0x0d1e] = 0x4e39, [0x0d1f] = 0x4e4b, + [0x0d20] = 0x5c39, [0x0d21] = 0x4e88, [0x0d22] = 0x4e91, [0x0d23] = 0x4e95, + [0x0d24] = 0x4e92, [0x0d25] = 0x4e94, [0x0d26] = 0x4ea2, [0x0d27] = 0x4ec1, + [0x0d28] = 0x4ec0, [0x0d29] = 0x4ec3, [0x0d2a] = 0x4ec6, [0x0d2b] = 0x4ec7, + [0x0d2c] = 0x4ecd, [0x0d2d] = 0x4eca, [0x0d2e] = 0x4ecb, [0x0d2f] = 0x4ec4, + [0x0d30] = 0x5143, [0x0d31] = 0x5141, [0x0d32] = 0x5167, [0x0d33] = 0x516d, + [0x0d34] = 0x516e, [0x0d35] = 0x516c, [0x0d36] = 0x5197, [0x0d37] = 0x51f6, + [0x0d38] = 0x5206, [0x0d39] = 0x5207, [0x0d3a] = 0x5208, [0x0d3b] = 0x52fb, + [0x0d3c] = 0x52fe, [0x0d3d] = 0x52ff, [0x0d3e] = 0x5316, [0x0d3f] = 0x5339, + [0x0d40] = 0x5348, [0x0d41] = 0x5347, [0x0d42] = 0x5345, [0x0d43] = 0x535e, + [0x0d44] = 0x5384, [0x0d45] = 0x53cb, [0x0d46] = 0x53ca, [0x0d47] = 0x53cd, + [0x0d48] = 0x58ec, [0x0d49] = 0x5929, [0x0d4a] = 0x592b, [0x0d4b] = 0x592a, + [0x0d4c] = 0x592d, [0x0d4d] = 0x5b54, [0x0d4e] = 0x5c11, [0x0d4f] = 0x5c24, + [0x0d50] = 0x5c3a, [0x0d51] = 0x5c6f, [0x0d52] = 0x5df4, [0x0d53] = 0x5e7b, + [0x0d54] = 0x5eff, [0x0d55] = 0x5f14, [0x0d56] = 0x5f15, [0x0d57] = 0x5fc3, + [0x0d58] = 0x6208, [0x0d59] = 0x6236, [0x0d5a] = 0x624b, [0x0d5b] = 0x624e, + [0x0d5c] = 0x652f, [0x0d5d] = 0x6587, [0x0d5e] = 0x6597, [0x0d5f] = 0x65a4, + [0x0d60] = 0x65b9, [0x0d61] = 0x65e5, [0x0d62] = 0x66f0, [0x0d63] = 0x6708, + [0x0d64] = 0x6728, [0x0d65] = 0x6b20, [0x0d66] = 0x6b62, [0x0d67] = 0x6b79, + [0x0d68] = 0x6bcb, [0x0d69] = 0x6bd4, [0x0d6a] = 0x6bdb, [0x0d6b] = 0x6c0f, + [0x0d6c] = 0x6c34, [0x0d6d] = 0x706b, [0x0d6e] = 0x722a, [0x0d6f] = 0x7236, + [0x0d70] = 0x723b, [0x0d71] = 0x7247, [0x0d72] = 0x7259, [0x0d73] = 0x725b, + [0x0d74] = 0x72ac, [0x0d75] = 0x738b, [0x0d76] = 0x4e19, [0x0d77] = 0x4e16, + [0x0d78] = 0x4e15, [0x0d79] = 0x4e14, [0x0d7a] = 0x4e18, [0x0d7b] = 0x4e3b, + [0x0d7c] = 0x4e4d, [0x0d7d] = 0x4e4f, [0x0d7e] = 0x4e4e, [0x0d7f] = 0x4ee5, + [0x0d80] = 0x4ed8, [0x0d81] = 0x4ed4, [0x0d82] = 0x4ed5, [0x0d83] = 0x4ed6, + [0x0d84] = 0x4ed7, [0x0d85] = 0x4ee3, [0x0d86] = 0x4ee4, [0x0d87] = 0x4ed9, + [0x0d88] = 0x4ede, [0x0d89] = 0x5145, [0x0d8a] = 0x5144, [0x0d8b] = 0x5189, + [0x0d8c] = 0x518a, [0x0d8d] = 0x51ac, [0x0d8e] = 0x51f9, [0x0d8f] = 0x51fa, + [0x0d90] = 0x51f8, [0x0d91] = 0x520a, [0x0d92] = 0x52a0, [0x0d93] = 0x529f, + [0x0d94] = 0x5305, [0x0d95] = 0x5306, [0x0d96] = 0x5317, [0x0d97] = 0x531d, + [0x0d98] = 0x4edf, [0x0d99] = 0x534a, [0x0d9a] = 0x5349, [0x0d9b] = 0x5361, + [0x0d9c] = 0x5360, [0x0d9d] = 0x536f, [0x0d9e] = 0x536e, [0x0d9f] = 0x53bb, + [0x0da0] = 0x53ef, [0x0da1] = 0x53e4, [0x0da2] = 0x53f3, [0x0da3] = 0x53ec, + [0x0da4] = 0x53ee, [0x0da5] = 0x53e9, [0x0da6] = 0x53e8, [0x0da7] = 0x53fc, + [0x0da8] = 0x53f8, [0x0da9] = 0x53f5, [0x0daa] = 0x53eb, [0x0dab] = 0x53e6, + [0x0dac] = 0x53ea, [0x0dad] = 0x53f2, [0x0dae] = 0x53f1, [0x0daf] = 0x53f0, + [0x0db0] = 0x53e5, [0x0db1] = 0x53ed, [0x0db2] = 0x53fb, [0x0db3] = 0x56db, + [0x0db4] = 0x56da, [0x0db5] = 0x5916, [0x0db6] = 0x592e, [0x0db7] = 0x5931, + [0x0db8] = 0x5974, [0x0db9] = 0x5976, [0x0dba] = 0x5b55, [0x0dbb] = 0x5b83, + [0x0dbc] = 0x5c3c, [0x0dbd] = 0x5de8, [0x0dbe] = 0x5de7, [0x0dbf] = 0x5de6, + [0x0dc0] = 0x5e02, [0x0dc1] = 0x5e03, [0x0dc2] = 0x5e73, [0x0dc3] = 0x5e7c, + [0x0dc4] = 0x5f01, [0x0dc5] = 0x5f18, [0x0dc6] = 0x5f17, [0x0dc7] = 0x5fc5, + [0x0dc8] = 0x620a, [0x0dc9] = 0x6253, [0x0dca] = 0x6254, [0x0dcb] = 0x6252, + [0x0dcc] = 0x6251, [0x0dcd] = 0x65a5, [0x0dce] = 0x65e6, [0x0dcf] = 0x672e, + [0x0dd0] = 0x672c, [0x0dd1] = 0x672a, [0x0dd2] = 0x672b, [0x0dd3] = 0x672d, + [0x0dd4] = 0x6b63, [0x0dd5] = 0x6bcd, [0x0dd6] = 0x6c11, [0x0dd7] = 0x6c10, + [0x0dd8] = 0x6c38, [0x0dd9] = 0x6c41, [0x0dda] = 0x6c40, [0x0ddb] = 0x6c3e, + [0x0ddc] = 0x72af, [0x0ddd] = 0x7384, [0x0dde] = 0x7389, [0x0ddf] = 0x74dc, + [0x0de0] = 0x74e6, [0x0de1] = 0x7518, [0x0de2] = 0x751f, [0x0de3] = 0x7528, + [0x0de4] = 0x7529, [0x0de5] = 0x7530, [0x0de6] = 0x7531, [0x0de7] = 0x7532, + [0x0de8] = 0x7533, [0x0de9] = 0x758b, [0x0dea] = 0x767d, [0x0deb] = 0x76ae, + [0x0dec] = 0x76bf, [0x0ded] = 0x76ee, [0x0dee] = 0x77db, [0x0def] = 0x77e2, + [0x0df0] = 0x77f3, [0x0df1] = 0x793a, [0x0df2] = 0x79be, [0x0df3] = 0x7a74, + [0x0df4] = 0x7acb, [0x0df5] = 0x4e1e, [0x0df6] = 0x4e1f, [0x0df7] = 0x4e52, + [0x0df8] = 0x4e53, [0x0df9] = 0x4e69, [0x0dfa] = 0x4e99, [0x0dfb] = 0x4ea4, + [0x0dfc] = 0x4ea6, [0x0dfd] = 0x4ea5, [0x0dfe] = 0x4eff, [0x0dff] = 0x4f09, + [0x0e00] = 0x4f19, [0x0e01] = 0x4f0a, [0x0e02] = 0x4f15, [0x0e03] = 0x4f0d, + [0x0e04] = 0x4f10, [0x0e05] = 0x4f11, [0x0e06] = 0x4f0f, [0x0e07] = 0x4ef2, + [0x0e08] = 0x4ef6, [0x0e09] = 0x4efb, [0x0e0a] = 0x4ef0, [0x0e0b] = 0x4ef3, + [0x0e0c] = 0x4efd, [0x0e0d] = 0x4f01, [0x0e0e] = 0x4f0b, [0x0e0f] = 0x5149, + [0x0e10] = 0x5147, [0x0e11] = 0x5146, [0x0e12] = 0x5148, [0x0e13] = 0x5168, + [0x0e14] = 0x5171, [0x0e15] = 0x518d, [0x0e16] = 0x51b0, [0x0e17] = 0x5217, + [0x0e18] = 0x5211, [0x0e19] = 0x5212, [0x0e1a] = 0x520e, [0x0e1b] = 0x5216, + [0x0e1c] = 0x52a3, [0x0e1d] = 0x5308, [0x0e1e] = 0x5321, [0x0e1f] = 0x5320, + [0x0e20] = 0x5370, [0x0e21] = 0x5371, [0x0e22] = 0x5409, [0x0e23] = 0x540f, + [0x0e24] = 0x540c, [0x0e25] = 0x540a, [0x0e26] = 0x5410, [0x0e27] = 0x5401, + [0x0e28] = 0x540b, [0x0e29] = 0x5404, [0x0e2a] = 0x5411, [0x0e2b] = 0x540d, + [0x0e2c] = 0x5408, [0x0e2d] = 0x5403, [0x0e2e] = 0x540e, [0x0e2f] = 0x5406, + [0x0e30] = 0x5412, [0x0e31] = 0x56e0, [0x0e32] = 0x56de, [0x0e33] = 0x56dd, + [0x0e34] = 0x5733, [0x0e35] = 0x5730, [0x0e36] = 0x5728, [0x0e37] = 0x572d, + [0x0e38] = 0x572c, [0x0e39] = 0x572f, [0x0e3a] = 0x5729, [0x0e3b] = 0x5919, + [0x0e3c] = 0x591a, [0x0e3d] = 0x5937, [0x0e3e] = 0x5938, [0x0e3f] = 0x5984, + [0x0e40] = 0x5978, [0x0e41] = 0x5983, [0x0e42] = 0x597d, [0x0e43] = 0x5979, + [0x0e44] = 0x5982, [0x0e45] = 0x5981, [0x0e46] = 0x5b57, [0x0e47] = 0x5b58, + [0x0e48] = 0x5b87, [0x0e49] = 0x5b88, [0x0e4a] = 0x5b85, [0x0e4b] = 0x5b89, + [0x0e4c] = 0x5bfa, [0x0e4d] = 0x5c16, [0x0e4e] = 0x5c79, [0x0e4f] = 0x5dde, + [0x0e50] = 0x5e06, [0x0e51] = 0x5e76, [0x0e52] = 0x5e74, [0x0e53] = 0x5f0f, + [0x0e54] = 0x5f1b, [0x0e55] = 0x5fd9, [0x0e56] = 0x5fd6, [0x0e57] = 0x620e, + [0x0e58] = 0x620c, [0x0e59] = 0x620d, [0x0e5a] = 0x6210, [0x0e5b] = 0x6263, + [0x0e5c] = 0x625b, [0x0e5d] = 0x6258, [0x0e5e] = 0x6536, [0x0e5f] = 0x65e9, + [0x0e60] = 0x65e8, [0x0e61] = 0x65ec, [0x0e62] = 0x65ed, [0x0e63] = 0x66f2, + [0x0e64] = 0x66f3, [0x0e65] = 0x6709, [0x0e66] = 0x673d, [0x0e67] = 0x6734, + [0x0e68] = 0x6731, [0x0e69] = 0x6735, [0x0e6a] = 0x6b21, [0x0e6b] = 0x6b64, + [0x0e6c] = 0x6b7b, [0x0e6d] = 0x6c16, [0x0e6e] = 0x6c5d, [0x0e6f] = 0x6c57, + [0x0e70] = 0x6c59, [0x0e71] = 0x6c5f, [0x0e72] = 0x6c60, [0x0e73] = 0x6c50, + [0x0e74] = 0x6c55, [0x0e75] = 0x6c61, [0x0e76] = 0x6c5b, [0x0e77] = 0x6c4d, + [0x0e78] = 0x6c4e, [0x0e79] = 0x7070, [0x0e7a] = 0x725f, [0x0e7b] = 0x725d, + [0x0e7c] = 0x767e, [0x0e7d] = 0x7af9, [0x0e7e] = 0x7c73, [0x0e7f] = 0x7cf8, + [0x0e80] = 0x7f36, [0x0e81] = 0x7f8a, [0x0e82] = 0x7fbd, [0x0e83] = 0x8001, + [0x0e84] = 0x8003, [0x0e85] = 0x800c, [0x0e86] = 0x8012, [0x0e87] = 0x8033, + [0x0e88] = 0x807f, [0x0e89] = 0x8089, [0x0e8a] = 0x808b, [0x0e8b] = 0x808c, + [0x0e8c] = 0x81e3, [0x0e8d] = 0x81ea, [0x0e8e] = 0x81f3, [0x0e8f] = 0x81fc, + [0x0e90] = 0x820c, [0x0e91] = 0x821b, [0x0e92] = 0x821f, [0x0e93] = 0x826e, + [0x0e94] = 0x8272, [0x0e95] = 0x827e, [0x0e96] = 0x866b, [0x0e97] = 0x8840, + [0x0e98] = 0x884c, [0x0e99] = 0x8863, [0x0e9a] = 0x897f, [0x0e9b] = 0x9621, + [0x0e9c] = 0x4e32, [0x0e9d] = 0x4ea8, [0x0e9e] = 0x4f4d, [0x0e9f] = 0x4f4f, + [0x0ea0] = 0x4f47, [0x0ea1] = 0x4f57, [0x0ea2] = 0x4f5e, [0x0ea3] = 0x4f34, + [0x0ea4] = 0x4f5b, [0x0ea5] = 0x4f55, [0x0ea6] = 0x4f30, [0x0ea7] = 0x4f50, + [0x0ea8] = 0x4f51, [0x0ea9] = 0x4f3d, [0x0eaa] = 0x4f3a, [0x0eab] = 0x4f38, + [0x0eac] = 0x4f43, [0x0ead] = 0x4f54, [0x0eae] = 0x4f3c, [0x0eaf] = 0x4f46, + [0x0eb0] = 0x4f63, [0x0eb1] = 0x4f5c, [0x0eb2] = 0x4f60, [0x0eb3] = 0x4f2f, + [0x0eb4] = 0x4f4e, [0x0eb5] = 0x4f36, [0x0eb6] = 0x4f59, [0x0eb7] = 0x4f5d, + [0x0eb8] = 0x4f48, [0x0eb9] = 0x4f5a, [0x0eba] = 0x514c, [0x0ebb] = 0x514b, + [0x0ebc] = 0x514d, [0x0ebd] = 0x5175, [0x0ebe] = 0x51b6, [0x0ebf] = 0x51b7, + [0x0ec0] = 0x5225, [0x0ec1] = 0x5224, [0x0ec2] = 0x5229, [0x0ec3] = 0x522a, + [0x0ec4] = 0x5228, [0x0ec5] = 0x52ab, [0x0ec6] = 0x52a9, [0x0ec7] = 0x52aa, + [0x0ec8] = 0x52ac, [0x0ec9] = 0x5323, [0x0eca] = 0x5373, [0x0ecb] = 0x5375, + [0x0ecc] = 0x541d, [0x0ecd] = 0x542d, [0x0ece] = 0x541e, [0x0ecf] = 0x543e, + [0x0ed0] = 0x5426, [0x0ed1] = 0x544e, [0x0ed2] = 0x5427, [0x0ed3] = 0x5446, + [0x0ed4] = 0x5443, [0x0ed5] = 0x5433, [0x0ed6] = 0x5448, [0x0ed7] = 0x5442, + [0x0ed8] = 0x541b, [0x0ed9] = 0x5429, [0x0eda] = 0x544a, [0x0edb] = 0x5439, + [0x0edc] = 0x543b, [0x0edd] = 0x5438, [0x0ede] = 0x542e, [0x0edf] = 0x5435, + [0x0ee0] = 0x5436, [0x0ee1] = 0x5420, [0x0ee2] = 0x543c, [0x0ee3] = 0x5440, + [0x0ee4] = 0x5431, [0x0ee5] = 0x542b, [0x0ee6] = 0x541f, [0x0ee7] = 0x542c, + [0x0ee8] = 0x56ea, [0x0ee9] = 0x56f0, [0x0eea] = 0x56e4, [0x0eeb] = 0x56eb, + [0x0eec] = 0x574a, [0x0eed] = 0x5751, [0x0eee] = 0x5740, [0x0eef] = 0x574d, + [0x0ef0] = 0x5747, [0x0ef1] = 0x574e, [0x0ef2] = 0x573e, [0x0ef3] = 0x5750, + [0x0ef4] = 0x574f, [0x0ef5] = 0x573b, [0x0ef6] = 0x58ef, [0x0ef7] = 0x593e, + [0x0ef8] = 0x599d, [0x0ef9] = 0x5992, [0x0efa] = 0x59a8, [0x0efb] = 0x599e, + [0x0efc] = 0x59a3, [0x0efd] = 0x5999, [0x0efe] = 0x5996, [0x0eff] = 0x598d, + [0x0f00] = 0x59a4, [0x0f01] = 0x5993, [0x0f02] = 0x598a, [0x0f03] = 0x59a5, + [0x0f04] = 0x5b5d, [0x0f05] = 0x5b5c, [0x0f06] = 0x5b5a, [0x0f07] = 0x5b5b, + [0x0f08] = 0x5b8c, [0x0f09] = 0x5b8b, [0x0f0a] = 0x5b8f, [0x0f0b] = 0x5c2c, + [0x0f0c] = 0x5c40, [0x0f0d] = 0x5c41, [0x0f0e] = 0x5c3f, [0x0f0f] = 0x5c3e, + [0x0f10] = 0x5c90, [0x0f11] = 0x5c91, [0x0f12] = 0x5c94, [0x0f13] = 0x5c8c, + [0x0f14] = 0x5deb, [0x0f15] = 0x5e0c, [0x0f16] = 0x5e8f, [0x0f17] = 0x5e87, + [0x0f18] = 0x5e8a, [0x0f19] = 0x5ef7, [0x0f1a] = 0x5f04, [0x0f1b] = 0x5f1f, + [0x0f1c] = 0x5f64, [0x0f1d] = 0x5f62, [0x0f1e] = 0x5f77, [0x0f1f] = 0x5f79, + [0x0f20] = 0x5fd8, [0x0f21] = 0x5fcc, [0x0f22] = 0x5fd7, [0x0f23] = 0x5fcd, + [0x0f24] = 0x5ff1, [0x0f25] = 0x5feb, [0x0f26] = 0x5ff8, [0x0f27] = 0x5fea, + [0x0f28] = 0x6212, [0x0f29] = 0x6211, [0x0f2a] = 0x6284, [0x0f2b] = 0x6297, + [0x0f2c] = 0x6296, [0x0f2d] = 0x6280, [0x0f2e] = 0x6276, [0x0f2f] = 0x6289, + [0x0f30] = 0x626d, [0x0f31] = 0x628a, [0x0f32] = 0x627c, [0x0f33] = 0x627e, + [0x0f34] = 0x6279, [0x0f35] = 0x6273, [0x0f36] = 0x6292, [0x0f37] = 0x626f, + [0x0f38] = 0x6298, [0x0f39] = 0x626e, [0x0f3a] = 0x6295, [0x0f3b] = 0x6293, + [0x0f3c] = 0x6291, [0x0f3d] = 0x6286, [0x0f3e] = 0x6539, [0x0f3f] = 0x653b, + [0x0f40] = 0x6538, [0x0f41] = 0x65f1, [0x0f42] = 0x66f4, [0x0f43] = 0x675f, + [0x0f44] = 0x674e, [0x0f45] = 0x674f, [0x0f46] = 0x6750, [0x0f47] = 0x6751, + [0x0f48] = 0x675c, [0x0f49] = 0x6756, [0x0f4a] = 0x675e, [0x0f4b] = 0x6749, + [0x0f4c] = 0x6746, [0x0f4d] = 0x6760, [0x0f4e] = 0x6753, [0x0f4f] = 0x6757, + [0x0f50] = 0x6b65, [0x0f51] = 0x6bcf, [0x0f52] = 0x6c42, [0x0f53] = 0x6c5e, + [0x0f54] = 0x6c99, [0x0f55] = 0x6c81, [0x0f56] = 0x6c88, [0x0f57] = 0x6c89, + [0x0f58] = 0x6c85, [0x0f59] = 0x6c9b, [0x0f5a] = 0x6c6a, [0x0f5b] = 0x6c7a, + [0x0f5c] = 0x6c90, [0x0f5d] = 0x6c70, [0x0f5e] = 0x6c8c, [0x0f5f] = 0x6c68, + [0x0f60] = 0x6c96, [0x0f61] = 0x6c92, [0x0f62] = 0x6c7d, [0x0f63] = 0x6c83, + [0x0f64] = 0x6c72, [0x0f65] = 0x6c7e, [0x0f66] = 0x6c74, [0x0f67] = 0x6c86, + [0x0f68] = 0x6c76, [0x0f69] = 0x6c8d, [0x0f6a] = 0x6c94, [0x0f6b] = 0x6c98, + [0x0f6c] = 0x6c82, [0x0f6d] = 0x7076, [0x0f6e] = 0x707c, [0x0f6f] = 0x707d, + [0x0f70] = 0x7078, [0x0f71] = 0x7262, [0x0f72] = 0x7261, [0x0f73] = 0x7260, + [0x0f74] = 0x72c4, [0x0f75] = 0x72c2, [0x0f76] = 0x7396, [0x0f77] = 0x752c, + [0x0f78] = 0x752b, [0x0f79] = 0x7537, [0x0f7a] = 0x7538, [0x0f7b] = 0x7682, + [0x0f7c] = 0x76ef, [0x0f7d] = 0x77e3, [0x0f7e] = 0x79c1, [0x0f7f] = 0x79c0, + [0x0f80] = 0x79bf, [0x0f81] = 0x7a76, [0x0f82] = 0x7cfb, [0x0f83] = 0x7f55, + [0x0f84] = 0x8096, [0x0f85] = 0x8093, [0x0f86] = 0x809d, [0x0f87] = 0x8098, + [0x0f88] = 0x809b, [0x0f89] = 0x809a, [0x0f8a] = 0x80b2, [0x0f8b] = 0x826f, + [0x0f8c] = 0x8292, [0x0f8d] = 0x828b, [0x0f8e] = 0x828d, [0x0f8f] = 0x898b, + [0x0f90] = 0x89d2, [0x0f91] = 0x8a00, [0x0f92] = 0x8c37, [0x0f93] = 0x8c46, + [0x0f94] = 0x8c55, [0x0f95] = 0x8c9d, [0x0f96] = 0x8d64, [0x0f97] = 0x8d70, + [0x0f98] = 0x8db3, [0x0f99] = 0x8eab, [0x0f9a] = 0x8eca, [0x0f9b] = 0x8f9b, + [0x0f9c] = 0x8fb0, [0x0f9d] = 0x8fc2, [0x0f9e] = 0x8fc6, [0x0f9f] = 0x8fc5, + [0x0fa0] = 0x8fc4, [0x0fa1] = 0x5de1, [0x0fa2] = 0x9091, [0x0fa3] = 0x90a2, + [0x0fa4] = 0x90aa, [0x0fa5] = 0x90a6, [0x0fa6] = 0x90a3, [0x0fa7] = 0x9149, + [0x0fa8] = 0x91c6, [0x0fa9] = 0x91cc, [0x0faa] = 0x9632, [0x0fab] = 0x962e, + [0x0fac] = 0x9631, [0x0fad] = 0x962a, [0x0fae] = 0x962c, [0x0faf] = 0x4e26, + [0x0fb0] = 0x4e56, [0x0fb1] = 0x4e73, [0x0fb2] = 0x4e8b, [0x0fb3] = 0x4e9b, + [0x0fb4] = 0x4e9e, [0x0fb5] = 0x4eab, [0x0fb6] = 0x4eac, [0x0fb7] = 0x4f6f, + [0x0fb8] = 0x4f9d, [0x0fb9] = 0x4f8d, [0x0fba] = 0x4f73, [0x0fbb] = 0x4f7f, + [0x0fbc] = 0x4f6c, [0x0fbd] = 0x4f9b, [0x0fbe] = 0x4f8b, [0x0fbf] = 0x4f86, + [0x0fc0] = 0x4f83, [0x0fc1] = 0x4f70, [0x0fc2] = 0x4f75, [0x0fc3] = 0x4f88, + [0x0fc4] = 0x4f69, [0x0fc5] = 0x4f7b, [0x0fc6] = 0x4f96, [0x0fc7] = 0x4f7e, + [0x0fc8] = 0x4f8f, [0x0fc9] = 0x4f91, [0x0fca] = 0x4f7a, [0x0fcb] = 0x5154, + [0x0fcc] = 0x5152, [0x0fcd] = 0x5155, [0x0fce] = 0x5169, [0x0fcf] = 0x5177, + [0x0fd0] = 0x5176, [0x0fd1] = 0x5178, [0x0fd2] = 0x51bd, [0x0fd3] = 0x51fd, + [0x0fd4] = 0x523b, [0x0fd5] = 0x5238, [0x0fd6] = 0x5237, [0x0fd7] = 0x523a, + [0x0fd8] = 0x5230, [0x0fd9] = 0x522e, [0x0fda] = 0x5236, [0x0fdb] = 0x5241, + [0x0fdc] = 0x52be, [0x0fdd] = 0x52bb, [0x0fde] = 0x5352, [0x0fdf] = 0x5354, + [0x0fe0] = 0x5353, [0x0fe1] = 0x5351, [0x0fe2] = 0x5366, [0x0fe3] = 0x5377, + [0x0fe4] = 0x5378, [0x0fe5] = 0x5379, [0x0fe6] = 0x53d6, [0x0fe7] = 0x53d4, + [0x0fe8] = 0x53d7, [0x0fe9] = 0x5473, [0x0fea] = 0x5475, [0x0feb] = 0x5496, + [0x0fec] = 0x5478, [0x0fed] = 0x5495, [0x0fee] = 0x5480, [0x0fef] = 0x547b, + [0x0ff0] = 0x5477, [0x0ff1] = 0x5484, [0x0ff2] = 0x5492, [0x0ff3] = 0x5486, + [0x0ff4] = 0x547c, [0x0ff5] = 0x5490, [0x0ff6] = 0x5471, [0x0ff7] = 0x5476, + [0x0ff8] = 0x548c, [0x0ff9] = 0x549a, [0x0ffa] = 0x5462, [0x0ffb] = 0x5468, + [0x0ffc] = 0x548b, [0x0ffd] = 0x547d, [0x0ffe] = 0x548e, [0x0fff] = 0x56fa, + [0x1000] = 0x5783, [0x1001] = 0x5777, [0x1002] = 0x576a, [0x1003] = 0x5769, + [0x1004] = 0x5761, [0x1005] = 0x5766, [0x1006] = 0x5764, [0x1007] = 0x577c, + [0x1008] = 0x591c, [0x1009] = 0x5949, [0x100a] = 0x5947, [0x100b] = 0x5948, + [0x100c] = 0x5944, [0x100d] = 0x5954, [0x100e] = 0x59be, [0x100f] = 0x59bb, + [0x1010] = 0x59d4, [0x1011] = 0x59b9, [0x1012] = 0x59ae, [0x1013] = 0x59d1, + [0x1014] = 0x59c6, [0x1015] = 0x59d0, [0x1016] = 0x59cd, [0x1017] = 0x59cb, + [0x1018] = 0x59d3, [0x1019] = 0x59ca, [0x101a] = 0x59af, [0x101b] = 0x59b3, + [0x101c] = 0x59d2, [0x101d] = 0x59c5, [0x101e] = 0x5b5f, [0x101f] = 0x5b64, + [0x1020] = 0x5b63, [0x1021] = 0x5b97, [0x1022] = 0x5b9a, [0x1023] = 0x5b98, + [0x1024] = 0x5b9c, [0x1025] = 0x5b99, [0x1026] = 0x5b9b, [0x1027] = 0x5c1a, + [0x1028] = 0x5c48, [0x1029] = 0x5c45, [0x102a] = 0x5c46, [0x102b] = 0x5cb7, + [0x102c] = 0x5ca1, [0x102d] = 0x5cb8, [0x102e] = 0x5ca9, [0x102f] = 0x5cab, + [0x1030] = 0x5cb1, [0x1031] = 0x5cb3, [0x1032] = 0x5e18, [0x1033] = 0x5e1a, + [0x1034] = 0x5e16, [0x1035] = 0x5e15, [0x1036] = 0x5e1b, [0x1037] = 0x5e11, + [0x1038] = 0x5e78, [0x1039] = 0x5e9a, [0x103a] = 0x5e97, [0x103b] = 0x5e9c, + [0x103c] = 0x5e95, [0x103d] = 0x5e96, [0x103e] = 0x5ef6, [0x103f] = 0x5f26, + [0x1040] = 0x5f27, [0x1041] = 0x5f29, [0x1042] = 0x5f80, [0x1043] = 0x5f81, + [0x1044] = 0x5f7f, [0x1045] = 0x5f7c, [0x1046] = 0x5fdd, [0x1047] = 0x5fe0, + [0x1048] = 0x5ffd, [0x1049] = 0x5ff5, [0x104a] = 0x5fff, [0x104b] = 0x600f, + [0x104c] = 0x6014, [0x104d] = 0x602f, [0x104e] = 0x6035, [0x104f] = 0x6016, + [0x1050] = 0x602a, [0x1051] = 0x6015, [0x1052] = 0x6021, [0x1053] = 0x6027, + [0x1054] = 0x6029, [0x1055] = 0x602b, [0x1056] = 0x601b, [0x1057] = 0x6216, + [0x1058] = 0x6215, [0x1059] = 0x623f, [0x105a] = 0x623e, [0x105b] = 0x6240, + [0x105c] = 0x627f, [0x105d] = 0x62c9, [0x105e] = 0x62cc, [0x105f] = 0x62c4, + [0x1060] = 0x62bf, [0x1061] = 0x62c2, [0x1062] = 0x62b9, [0x1063] = 0x62d2, + [0x1064] = 0x62db, [0x1065] = 0x62ab, [0x1066] = 0x62d3, [0x1067] = 0x62d4, + [0x1068] = 0x62cb, [0x1069] = 0x62c8, [0x106a] = 0x62a8, [0x106b] = 0x62bd, + [0x106c] = 0x62bc, [0x106d] = 0x62d0, [0x106e] = 0x62d9, [0x106f] = 0x62c7, + [0x1070] = 0x62cd, [0x1071] = 0x62b5, [0x1072] = 0x62da, [0x1073] = 0x62b1, + [0x1074] = 0x62d8, [0x1075] = 0x62d6, [0x1076] = 0x62d7, [0x1077] = 0x62c6, + [0x1078] = 0x62ac, [0x1079] = 0x62ce, [0x107a] = 0x653e, [0x107b] = 0x65a7, + [0x107c] = 0x65bc, [0x107d] = 0x65fa, [0x107e] = 0x6614, [0x107f] = 0x6613, + [0x1080] = 0x660c, [0x1081] = 0x6606, [0x1082] = 0x6602, [0x1083] = 0x660e, + [0x1084] = 0x6600, [0x1085] = 0x660f, [0x1086] = 0x6615, [0x1087] = 0x660a, + [0x1088] = 0x6607, [0x1089] = 0x670d, [0x108a] = 0x670b, [0x108b] = 0x676d, + [0x108c] = 0x678b, [0x108d] = 0x6795, [0x108e] = 0x6771, [0x108f] = 0x679c, + [0x1090] = 0x6773, [0x1091] = 0x6777, [0x1092] = 0x6787, [0x1093] = 0x679d, + [0x1094] = 0x6797, [0x1095] = 0x676f, [0x1096] = 0x6770, [0x1097] = 0x677f, + [0x1098] = 0x6789, [0x1099] = 0x677e, [0x109a] = 0x6790, [0x109b] = 0x6775, + [0x109c] = 0x679a, [0x109d] = 0x6793, [0x109e] = 0x677c, [0x109f] = 0x676a, + [0x10a0] = 0x6772, [0x10a1] = 0x6b23, [0x10a2] = 0x6b66, [0x10a3] = 0x6b67, + [0x10a4] = 0x6b7f, [0x10a5] = 0x6c13, [0x10a6] = 0x6c1b, [0x10a7] = 0x6ce3, + [0x10a8] = 0x6ce8, [0x10a9] = 0x6cf3, [0x10aa] = 0x6cb1, [0x10ab] = 0x6ccc, + [0x10ac] = 0x6ce5, [0x10ad] = 0x6cb3, [0x10ae] = 0x6cbd, [0x10af] = 0x6cbe, + [0x10b0] = 0x6cbc, [0x10b1] = 0x6ce2, [0x10b2] = 0x6cab, [0x10b3] = 0x6cd5, + [0x10b4] = 0x6cd3, [0x10b5] = 0x6cb8, [0x10b6] = 0x6cc4, [0x10b7] = 0x6cb9, + [0x10b8] = 0x6cc1, [0x10b9] = 0x6cae, [0x10ba] = 0x6cd7, [0x10bb] = 0x6cc5, + [0x10bc] = 0x6cf1, [0x10bd] = 0x6cbf, [0x10be] = 0x6cbb, [0x10bf] = 0x6ce1, + [0x10c0] = 0x6cdb, [0x10c1] = 0x6cca, [0x10c2] = 0x6cac, [0x10c3] = 0x6cef, + [0x10c4] = 0x6cdc, [0x10c5] = 0x6cd6, [0x10c6] = 0x6ce0, [0x10c7] = 0x7095, + [0x10c8] = 0x708e, [0x10c9] = 0x7092, [0x10ca] = 0x708a, [0x10cb] = 0x7099, + [0x10cc] = 0x722c, [0x10cd] = 0x722d, [0x10ce] = 0x7238, [0x10cf] = 0x7248, + [0x10d0] = 0x7267, [0x10d1] = 0x7269, [0x10d2] = 0x72c0, [0x10d3] = 0x72ce, + [0x10d4] = 0x72d9, [0x10d5] = 0x72d7, [0x10d6] = 0x72d0, [0x10d7] = 0x73a9, + [0x10d8] = 0x73a8, [0x10d9] = 0x739f, [0x10da] = 0x73ab, [0x10db] = 0x73a5, + [0x10dc] = 0x753d, [0x10dd] = 0x759d, [0x10de] = 0x7599, [0x10df] = 0x759a, + [0x10e0] = 0x7684, [0x10e1] = 0x76c2, [0x10e2] = 0x76f2, [0x10e3] = 0x76f4, + [0x10e4] = 0x77e5, [0x10e5] = 0x77fd, [0x10e6] = 0x793e, [0x10e7] = 0x7940, + [0x10e8] = 0x7941, [0x10e9] = 0x79c9, [0x10ea] = 0x79c8, [0x10eb] = 0x7a7a, + [0x10ec] = 0x7a79, [0x10ed] = 0x7afa, [0x10ee] = 0x7cfe, [0x10ef] = 0x7f54, + [0x10f0] = 0x7f8c, [0x10f1] = 0x7f8b, [0x10f2] = 0x8005, [0x10f3] = 0x80ba, + [0x10f4] = 0x80a5, [0x10f5] = 0x80a2, [0x10f6] = 0x80b1, [0x10f7] = 0x80a1, + [0x10f8] = 0x80ab, [0x10f9] = 0x80a9, [0x10fa] = 0x80b4, [0x10fb] = 0x80aa, + [0x10fc] = 0x80af, [0x10fd] = 0x81e5, [0x10fe] = 0x81fe, [0x10ff] = 0x820d, + [0x1100] = 0x82b3, [0x1101] = 0x829d, [0x1102] = 0x8299, [0x1103] = 0x82ad, + [0x1104] = 0x82bd, [0x1105] = 0x829f, [0x1106] = 0x82b9, [0x1107] = 0x82b1, + [0x1108] = 0x82ac, [0x1109] = 0x82a5, [0x110a] = 0x82af, [0x110b] = 0x82b8, + [0x110c] = 0x82a3, [0x110d] = 0x82b0, [0x110e] = 0x82be, [0x110f] = 0x82b7, + [0x1110] = 0x864e, [0x1111] = 0x8671, [0x1112] = 0x521d, [0x1113] = 0x8868, + [0x1114] = 0x8ecb, [0x1115] = 0x8fce, [0x1116] = 0x8fd4, [0x1117] = 0x8fd1, + [0x1118] = 0x90b5, [0x1119] = 0x90b8, [0x111a] = 0x90b1, [0x111b] = 0x90b6, + [0x111c] = 0x91c7, [0x111d] = 0x91d1, [0x111e] = 0x9577, [0x111f] = 0x9580, + [0x1120] = 0x961c, [0x1121] = 0x9640, [0x1122] = 0x963f, [0x1123] = 0x963b, + [0x1124] = 0x9644, [0x1125] = 0x9642, [0x1126] = 0x96b9, [0x1127] = 0x96e8, + [0x1128] = 0x9752, [0x1129] = 0x975e, [0x112a] = 0x4e9f, [0x112b] = 0x4ead, + [0x112c] = 0x4eae, [0x112d] = 0x4fe1, [0x112e] = 0x4fb5, [0x112f] = 0x4faf, + [0x1130] = 0x4fbf, [0x1131] = 0x4fe0, [0x1132] = 0x4fd1, [0x1133] = 0x4fcf, + [0x1134] = 0x4fdd, [0x1135] = 0x4fc3, [0x1136] = 0x4fb6, [0x1137] = 0x4fd8, + [0x1138] = 0x4fdf, [0x1139] = 0x4fca, [0x113a] = 0x4fd7, [0x113b] = 0x4fae, + [0x113c] = 0x4fd0, [0x113d] = 0x4fc4, [0x113e] = 0x4fc2, [0x113f] = 0x4fda, + [0x1140] = 0x4fce, [0x1141] = 0x4fde, [0x1142] = 0x4fb7, [0x1143] = 0x5157, + [0x1144] = 0x5192, [0x1145] = 0x5191, [0x1146] = 0x51a0, [0x1147] = 0x524e, + [0x1148] = 0x5243, [0x1149] = 0x524a, [0x114a] = 0x524d, [0x114b] = 0x524c, + [0x114c] = 0x524b, [0x114d] = 0x5247, [0x114e] = 0x52c7, [0x114f] = 0x52c9, + [0x1150] = 0x52c3, [0x1151] = 0x52c1, [0x1152] = 0x530d, [0x1153] = 0x5357, + [0x1154] = 0x537b, [0x1155] = 0x539a, [0x1156] = 0x53db, [0x1157] = 0x54ac, + [0x1158] = 0x54c0, [0x1159] = 0x54a8, [0x115a] = 0x54ce, [0x115b] = 0x54c9, + [0x115c] = 0x54b8, [0x115d] = 0x54a6, [0x115e] = 0x54b3, [0x115f] = 0x54c7, + [0x1160] = 0x54c2, [0x1161] = 0x54bd, [0x1162] = 0x54aa, [0x1163] = 0x54c1, + [0x1164] = 0x54c4, [0x1165] = 0x54c8, [0x1166] = 0x54af, [0x1167] = 0x54ab, + [0x1168] = 0x54b1, [0x1169] = 0x54bb, [0x116a] = 0x54a9, [0x116b] = 0x54a7, + [0x116c] = 0x54bf, [0x116d] = 0x56ff, [0x116e] = 0x5782, [0x116f] = 0x578b, + [0x1170] = 0x57a0, [0x1171] = 0x57a3, [0x1172] = 0x57a2, [0x1173] = 0x57ce, + [0x1174] = 0x57ae, [0x1175] = 0x5793, [0x1176] = 0x5955, [0x1177] = 0x5951, + [0x1178] = 0x594f, [0x1179] = 0x594e, [0x117a] = 0x5950, [0x117b] = 0x59dc, + [0x117c] = 0x59d8, [0x117d] = 0x59ff, [0x117e] = 0x59e3, [0x117f] = 0x59e8, + [0x1180] = 0x5a03, [0x1181] = 0x59e5, [0x1182] = 0x59ea, [0x1183] = 0x59da, + [0x1184] = 0x59e6, [0x1185] = 0x5a01, [0x1186] = 0x59fb, [0x1187] = 0x5b69, + [0x1188] = 0x5ba3, [0x1189] = 0x5ba6, [0x118a] = 0x5ba4, [0x118b] = 0x5ba2, + [0x118c] = 0x5ba5, [0x118d] = 0x5c01, [0x118e] = 0x5c4e, [0x118f] = 0x5c4f, + [0x1190] = 0x5c4d, [0x1191] = 0x5c4b, [0x1192] = 0x5cd9, [0x1193] = 0x5cd2, + [0x1194] = 0x5df7, [0x1195] = 0x5e1d, [0x1196] = 0x5e25, [0x1197] = 0x5e1f, + [0x1198] = 0x5e7d, [0x1199] = 0x5ea0, [0x119a] = 0x5ea6, [0x119b] = 0x5efa, + [0x119c] = 0x5f08, [0x119d] = 0x5f2d, [0x119e] = 0x5f65, [0x119f] = 0x5f88, + [0x11a0] = 0x5f85, [0x11a1] = 0x5f8a, [0x11a2] = 0x5f8b, [0x11a3] = 0x5f87, + [0x11a4] = 0x5f8c, [0x11a5] = 0x5f89, [0x11a6] = 0x6012, [0x11a7] = 0x601d, + [0x11a8] = 0x6020, [0x11a9] = 0x6025, [0x11aa] = 0x600e, [0x11ab] = 0x6028, + [0x11ac] = 0x604d, [0x11ad] = 0x6070, [0x11ae] = 0x6068, [0x11af] = 0x6062, + [0x11b0] = 0x6046, [0x11b1] = 0x6043, [0x11b2] = 0x606c, [0x11b3] = 0x606b, + [0x11b4] = 0x606a, [0x11b5] = 0x6064, [0x11b6] = 0x6241, [0x11b7] = 0x62dc, + [0x11b8] = 0x6316, [0x11b9] = 0x6309, [0x11ba] = 0x62fc, [0x11bb] = 0x62ed, + [0x11bc] = 0x6301, [0x11bd] = 0x62ee, [0x11be] = 0x62fd, [0x11bf] = 0x6307, + [0x11c0] = 0x62f1, [0x11c1] = 0x62f7, [0x11c2] = 0x62ef, [0x11c3] = 0x62ec, + [0x11c4] = 0x62fe, [0x11c5] = 0x62f4, [0x11c6] = 0x6311, [0x11c7] = 0x6302, + [0x11c8] = 0x653f, [0x11c9] = 0x6545, [0x11ca] = 0x65ab, [0x11cb] = 0x65bd, + [0x11cc] = 0x65e2, [0x11cd] = 0x6625, [0x11ce] = 0x662d, [0x11cf] = 0x6620, + [0x11d0] = 0x6627, [0x11d1] = 0x662f, [0x11d2] = 0x661f, [0x11d3] = 0x6628, + [0x11d4] = 0x6631, [0x11d5] = 0x6624, [0x11d6] = 0x66f7, [0x11d7] = 0x67ff, + [0x11d8] = 0x67d3, [0x11d9] = 0x67f1, [0x11da] = 0x67d4, [0x11db] = 0x67d0, + [0x11dc] = 0x67ec, [0x11dd] = 0x67b6, [0x11de] = 0x67af, [0x11df] = 0x67f5, + [0x11e0] = 0x67e9, [0x11e1] = 0x67ef, [0x11e2] = 0x67c4, [0x11e3] = 0x67d1, + [0x11e4] = 0x67b4, [0x11e5] = 0x67da, [0x11e6] = 0x67e5, [0x11e7] = 0x67b8, + [0x11e8] = 0x67cf, [0x11e9] = 0x67de, [0x11ea] = 0x67f3, [0x11eb] = 0x67b0, + [0x11ec] = 0x67d9, [0x11ed] = 0x67e2, [0x11ee] = 0x67dd, [0x11ef] = 0x67d2, + [0x11f0] = 0x6b6a, [0x11f1] = 0x6b83, [0x11f2] = 0x6b86, [0x11f3] = 0x6bb5, + [0x11f4] = 0x6bd2, [0x11f5] = 0x6bd7, [0x11f6] = 0x6c1f, [0x11f7] = 0x6cc9, + [0x11f8] = 0x6d0b, [0x11f9] = 0x6d32, [0x11fa] = 0x6d2a, [0x11fb] = 0x6d41, + [0x11fc] = 0x6d25, [0x11fd] = 0x6d0c, [0x11fe] = 0x6d31, [0x11ff] = 0x6d1e, + [0x1200] = 0x6d17, [0x1201] = 0x6d3b, [0x1202] = 0x6d3d, [0x1203] = 0x6d3e, + [0x1204] = 0x6d36, [0x1205] = 0x6d1b, [0x1206] = 0x6cf5, [0x1207] = 0x6d39, + [0x1208] = 0x6d27, [0x1209] = 0x6d38, [0x120a] = 0x6d29, [0x120b] = 0x6d2e, + [0x120c] = 0x6d35, [0x120d] = 0x6d0e, [0x120e] = 0x6d2b, [0x120f] = 0x70ab, + [0x1210] = 0x70ba, [0x1211] = 0x70b3, [0x1212] = 0x70ac, [0x1213] = 0x70af, + [0x1214] = 0x70ad, [0x1215] = 0x70b8, [0x1216] = 0x70ae, [0x1217] = 0x70a4, + [0x1218] = 0x7230, [0x1219] = 0x7272, [0x121a] = 0x726f, [0x121b] = 0x7274, + [0x121c] = 0x72e9, [0x121d] = 0x72e0, [0x121e] = 0x72e1, [0x121f] = 0x73b7, + [0x1220] = 0x73ca, [0x1221] = 0x73bb, [0x1222] = 0x73b2, [0x1223] = 0x73cd, + [0x1224] = 0x73c0, [0x1225] = 0x73b3, [0x1226] = 0x751a, [0x1227] = 0x752d, + [0x1228] = 0x754f, [0x1229] = 0x754c, [0x122a] = 0x754e, [0x122b] = 0x754b, + [0x122c] = 0x75ab, [0x122d] = 0x75a4, [0x122e] = 0x75a5, [0x122f] = 0x75a2, + [0x1230] = 0x75a3, [0x1231] = 0x7678, [0x1232] = 0x7686, [0x1233] = 0x7687, + [0x1234] = 0x7688, [0x1235] = 0x76c8, [0x1236] = 0x76c6, [0x1237] = 0x76c3, + [0x1238] = 0x76c5, [0x1239] = 0x7701, [0x123a] = 0x76f9, [0x123b] = 0x76f8, + [0x123c] = 0x7709, [0x123d] = 0x770b, [0x123e] = 0x76fe, [0x123f] = 0x76fc, + [0x1240] = 0x7707, [0x1241] = 0x77dc, [0x1242] = 0x7802, [0x1243] = 0x7814, + [0x1244] = 0x780c, [0x1245] = 0x780d, [0x1246] = 0x7946, [0x1247] = 0x7949, + [0x1248] = 0x7948, [0x1249] = 0x7947, [0x124a] = 0x79b9, [0x124b] = 0x79ba, + [0x124c] = 0x79d1, [0x124d] = 0x79d2, [0x124e] = 0x79cb, [0x124f] = 0x7a7f, + [0x1250] = 0x7a81, [0x1251] = 0x7aff, [0x1252] = 0x7afd, [0x1253] = 0x7c7d, + [0x1254] = 0x7d02, [0x1255] = 0x7d05, [0x1256] = 0x7d00, [0x1257] = 0x7d09, + [0x1258] = 0x7d07, [0x1259] = 0x7d04, [0x125a] = 0x7d06, [0x125b] = 0x7f38, + [0x125c] = 0x7f8e, [0x125d] = 0x7fbf, [0x125e] = 0x8010, [0x125f] = 0x800d, + [0x1260] = 0x8011, [0x1261] = 0x8036, [0x1262] = 0x80d6, [0x1263] = 0x80e5, + [0x1264] = 0x80da, [0x1265] = 0x80c3, [0x1266] = 0x80c4, [0x1267] = 0x80cc, + [0x1268] = 0x80e1, [0x1269] = 0x80db, [0x126a] = 0x80ce, [0x126b] = 0x80de, + [0x126c] = 0x80e4, [0x126d] = 0x80dd, [0x126e] = 0x81f4, [0x126f] = 0x8222, + [0x1270] = 0x82e7, [0x1271] = 0x8303, [0x1272] = 0x8305, [0x1273] = 0x82e3, + [0x1274] = 0x82db, [0x1275] = 0x82e6, [0x1276] = 0x8304, [0x1277] = 0x82e5, + [0x1278] = 0x8302, [0x1279] = 0x8309, [0x127a] = 0x82d2, [0x127b] = 0x82d7, + [0x127c] = 0x82f1, [0x127d] = 0x8301, [0x127e] = 0x82dc, [0x127f] = 0x82d4, + [0x1280] = 0x82d1, [0x1281] = 0x82de, [0x1282] = 0x82d3, [0x1283] = 0x82df, + [0x1284] = 0x82ef, [0x1285] = 0x8306, [0x1286] = 0x8650, [0x1287] = 0x8679, + [0x1288] = 0x867b, [0x1289] = 0x867a, [0x128a] = 0x884d, [0x128b] = 0x886b, + [0x128c] = 0x8981, [0x128d] = 0x89d4, [0x128e] = 0x8a08, [0x128f] = 0x8a02, + [0x1290] = 0x8a03, [0x1291] = 0x8c9e, [0x1292] = 0x8ca0, [0x1293] = 0x8d74, + [0x1294] = 0x8d73, [0x1295] = 0x8db4, [0x1296] = 0x8ecd, [0x1297] = 0x8ecc, + [0x1298] = 0x8ff0, [0x1299] = 0x8fe6, [0x129a] = 0x8fe2, [0x129b] = 0x8fea, + [0x129c] = 0x8fe5, [0x129d] = 0x8fed, [0x129e] = 0x8feb, [0x129f] = 0x8fe4, + [0x12a0] = 0x8fe8, [0x12a1] = 0x90ca, [0x12a2] = 0x90ce, [0x12a3] = 0x90c1, + [0x12a4] = 0x90c3, [0x12a5] = 0x914b, [0x12a6] = 0x914a, [0x12a7] = 0x91cd, + [0x12a8] = 0x9582, [0x12a9] = 0x9650, [0x12aa] = 0x964b, [0x12ab] = 0x964c, + [0x12ac] = 0x964d, [0x12ad] = 0x9762, [0x12ae] = 0x9769, [0x12af] = 0x97cb, + [0x12b0] = 0x97ed, [0x12b1] = 0x97f3, [0x12b2] = 0x9801, [0x12b3] = 0x98a8, + [0x12b4] = 0x98db, [0x12b5] = 0x98df, [0x12b6] = 0x9996, [0x12b7] = 0x9999, + [0x12b8] = 0x4e58, [0x12b9] = 0x4eb3, [0x12ba] = 0x500c, [0x12bb] = 0x500d, + [0x12bc] = 0x5023, [0x12bd] = 0x4fef, [0x12be] = 0x5026, [0x12bf] = 0x5025, + [0x12c0] = 0x4ff8, [0x12c1] = 0x5029, [0x12c2] = 0x5016, [0x12c3] = 0x5006, + [0x12c4] = 0x503c, [0x12c5] = 0x501f, [0x12c6] = 0x501a, [0x12c7] = 0x5012, + [0x12c8] = 0x5011, [0x12c9] = 0x4ffa, [0x12ca] = 0x5000, [0x12cb] = 0x5014, + [0x12cc] = 0x5028, [0x12cd] = 0x4ff1, [0x12ce] = 0x5021, [0x12cf] = 0x500b, + [0x12d0] = 0x5019, [0x12d1] = 0x5018, [0x12d2] = 0x4ff3, [0x12d3] = 0x4fee, + [0x12d4] = 0x502d, [0x12d5] = 0x502a, [0x12d6] = 0x4ffe, [0x12d7] = 0x502b, + [0x12d8] = 0x5009, [0x12d9] = 0x517c, [0x12da] = 0x51a4, [0x12db] = 0x51a5, + [0x12dc] = 0x51a2, [0x12dd] = 0x51cd, [0x12de] = 0x51cc, [0x12df] = 0x51c6, + [0x12e0] = 0x51cb, [0x12e1] = 0x5256, [0x12e2] = 0x525c, [0x12e3] = 0x5254, + [0x12e4] = 0x525b, [0x12e5] = 0x525d, [0x12e6] = 0x532a, [0x12e7] = 0x537f, + [0x12e8] = 0x539f, [0x12e9] = 0x539d, [0x12ea] = 0x53df, [0x12eb] = 0x54e8, + [0x12ec] = 0x5510, [0x12ed] = 0x5501, [0x12ee] = 0x5537, [0x12ef] = 0x54fc, + [0x12f0] = 0x54e5, [0x12f1] = 0x54f2, [0x12f2] = 0x5506, [0x12f3] = 0x54fa, + [0x12f4] = 0x5514, [0x12f5] = 0x54e9, [0x12f6] = 0x54ed, [0x12f7] = 0x54e1, + [0x12f8] = 0x5509, [0x12f9] = 0x54ee, [0x12fa] = 0x54ea, [0x12fb] = 0x54e6, + [0x12fc] = 0x5527, [0x12fd] = 0x5507, [0x12fe] = 0x54fd, [0x12ff] = 0x550f, + [0x1300] = 0x5703, [0x1301] = 0x5704, [0x1302] = 0x57c2, [0x1303] = 0x57d4, + [0x1304] = 0x57cb, [0x1305] = 0x57c3, [0x1306] = 0x5809, [0x1307] = 0x590f, + [0x1308] = 0x5957, [0x1309] = 0x5958, [0x130a] = 0x595a, [0x130b] = 0x5a11, + [0x130c] = 0x5a18, [0x130d] = 0x5a1c, [0x130e] = 0x5a1f, [0x130f] = 0x5a1b, + [0x1310] = 0x5a13, [0x1311] = 0x59ec, [0x1312] = 0x5a20, [0x1313] = 0x5a23, + [0x1314] = 0x5a29, [0x1315] = 0x5a25, [0x1316] = 0x5a0c, [0x1317] = 0x5a09, + [0x1318] = 0x5b6b, [0x1319] = 0x5c58, [0x131a] = 0x5bb0, [0x131b] = 0x5bb3, + [0x131c] = 0x5bb6, [0x131d] = 0x5bb4, [0x131e] = 0x5bae, [0x131f] = 0x5bb5, + [0x1320] = 0x5bb9, [0x1321] = 0x5bb8, [0x1322] = 0x5c04, [0x1323] = 0x5c51, + [0x1324] = 0x5c55, [0x1325] = 0x5c50, [0x1326] = 0x5ced, [0x1327] = 0x5cfd, + [0x1328] = 0x5cfb, [0x1329] = 0x5cea, [0x132a] = 0x5ce8, [0x132b] = 0x5cf0, + [0x132c] = 0x5cf6, [0x132d] = 0x5d01, [0x132e] = 0x5cf4, [0x132f] = 0x5dee, + [0x1330] = 0x5e2d, [0x1331] = 0x5e2b, [0x1332] = 0x5eab, [0x1333] = 0x5ead, + [0x1334] = 0x5ea7, [0x1335] = 0x5f31, [0x1336] = 0x5f92, [0x1337] = 0x5f91, + [0x1338] = 0x5f90, [0x1339] = 0x6059, [0x133a] = 0x6063, [0x133b] = 0x6065, + [0x133c] = 0x6050, [0x133d] = 0x6055, [0x133e] = 0x606d, [0x133f] = 0x6069, + [0x1340] = 0x606f, [0x1341] = 0x6084, [0x1342] = 0x609f, [0x1343] = 0x609a, + [0x1344] = 0x608d, [0x1345] = 0x6094, [0x1346] = 0x608c, [0x1347] = 0x6085, + [0x1348] = 0x6096, [0x1349] = 0x6247, [0x134a] = 0x62f3, [0x134b] = 0x6308, + [0x134c] = 0x62ff, [0x134d] = 0x634e, [0x134e] = 0x633e, [0x134f] = 0x632f, + [0x1350] = 0x6355, [0x1351] = 0x6342, [0x1352] = 0x6346, [0x1353] = 0x634f, + [0x1354] = 0x6349, [0x1355] = 0x633a, [0x1356] = 0x6350, [0x1357] = 0x633d, + [0x1358] = 0x632a, [0x1359] = 0x632b, [0x135a] = 0x6328, [0x135b] = 0x634d, + [0x135c] = 0x634c, [0x135d] = 0x6548, [0x135e] = 0x6549, [0x135f] = 0x6599, + [0x1360] = 0x65c1, [0x1361] = 0x65c5, [0x1362] = 0x6642, [0x1363] = 0x6649, + [0x1364] = 0x664f, [0x1365] = 0x6643, [0x1366] = 0x6652, [0x1367] = 0x664c, + [0x1368] = 0x6645, [0x1369] = 0x6641, [0x136a] = 0x66f8, [0x136b] = 0x6714, + [0x136c] = 0x6715, [0x136d] = 0x6717, [0x136e] = 0x6821, [0x136f] = 0x6838, + [0x1370] = 0x6848, [0x1371] = 0x6846, [0x1372] = 0x6853, [0x1373] = 0x6839, + [0x1374] = 0x6842, [0x1375] = 0x6854, [0x1376] = 0x6829, [0x1377] = 0x68b3, + [0x1378] = 0x6817, [0x1379] = 0x684c, [0x137a] = 0x6851, [0x137b] = 0x683d, + [0x137c] = 0x67f4, [0x137d] = 0x6850, [0x137e] = 0x6840, [0x137f] = 0x683c, + [0x1380] = 0x6843, [0x1381] = 0x682a, [0x1382] = 0x6845, [0x1383] = 0x6813, + [0x1384] = 0x6818, [0x1385] = 0x6841, [0x1386] = 0x6b8a, [0x1387] = 0x6b89, + [0x1388] = 0x6bb7, [0x1389] = 0x6c23, [0x138a] = 0x6c27, [0x138b] = 0x6c28, + [0x138c] = 0x6c26, [0x138d] = 0x6c24, [0x138e] = 0x6cf0, [0x138f] = 0x6d6a, + [0x1390] = 0x6d95, [0x1391] = 0x6d88, [0x1392] = 0x6d87, [0x1393] = 0x6d66, + [0x1394] = 0x6d78, [0x1395] = 0x6d77, [0x1396] = 0x6d59, [0x1397] = 0x6d93, + [0x1398] = 0x6d6c, [0x1399] = 0x6d89, [0x139a] = 0x6d6e, [0x139b] = 0x6d5a, + [0x139c] = 0x6d74, [0x139d] = 0x6d69, [0x139e] = 0x6d8c, [0x139f] = 0x6d8a, + [0x13a0] = 0x6d79, [0x13a1] = 0x6d85, [0x13a2] = 0x6d65, [0x13a3] = 0x6d94, + [0x13a4] = 0x70ca, [0x13a5] = 0x70d8, [0x13a6] = 0x70e4, [0x13a7] = 0x70d9, + [0x13a8] = 0x70c8, [0x13a9] = 0x70cf, [0x13aa] = 0x7239, [0x13ab] = 0x7279, + [0x13ac] = 0x72fc, [0x13ad] = 0x72f9, [0x13ae] = 0x72fd, [0x13af] = 0x72f8, + [0x13b0] = 0x72f7, [0x13b1] = 0x7386, [0x13b2] = 0x73ed, [0x13b3] = 0x7409, + [0x13b4] = 0x73ee, [0x13b5] = 0x73e0, [0x13b6] = 0x73ea, [0x13b7] = 0x73de, + [0x13b8] = 0x7554, [0x13b9] = 0x755d, [0x13ba] = 0x755c, [0x13bb] = 0x755a, + [0x13bc] = 0x7559, [0x13bd] = 0x75be, [0x13be] = 0x75c5, [0x13bf] = 0x75c7, + [0x13c0] = 0x75b2, [0x13c1] = 0x75b3, [0x13c2] = 0x75bd, [0x13c3] = 0x75bc, + [0x13c4] = 0x75b9, [0x13c5] = 0x75c2, [0x13c6] = 0x75b8, [0x13c7] = 0x768b, + [0x13c8] = 0x76b0, [0x13c9] = 0x76ca, [0x13ca] = 0x76cd, [0x13cb] = 0x76ce, + [0x13cc] = 0x7729, [0x13cd] = 0x771f, [0x13ce] = 0x7720, [0x13cf] = 0x7728, + [0x13d0] = 0x77e9, [0x13d1] = 0x7830, [0x13d2] = 0x7827, [0x13d3] = 0x7838, + [0x13d4] = 0x781d, [0x13d5] = 0x7834, [0x13d6] = 0x7837, [0x13d7] = 0x7825, + [0x13d8] = 0x782d, [0x13d9] = 0x7820, [0x13da] = 0x781f, [0x13db] = 0x7832, + [0x13dc] = 0x7955, [0x13dd] = 0x7950, [0x13de] = 0x7960, [0x13df] = 0x795f, + [0x13e0] = 0x7956, [0x13e1] = 0x795e, [0x13e2] = 0x795d, [0x13e3] = 0x7957, + [0x13e4] = 0x795a, [0x13e5] = 0x79e4, [0x13e6] = 0x79e3, [0x13e7] = 0x79e7, + [0x13e8] = 0x79df, [0x13e9] = 0x79e6, [0x13ea] = 0x79e9, [0x13eb] = 0x79d8, + [0x13ec] = 0x7a84, [0x13ed] = 0x7a88, [0x13ee] = 0x7ad9, [0x13ef] = 0x7b06, + [0x13f0] = 0x7b11, [0x13f1] = 0x7c89, [0x13f2] = 0x7d21, [0x13f3] = 0x7d17, + [0x13f4] = 0x7d0b, [0x13f5] = 0x7d0a, [0x13f6] = 0x7d20, [0x13f7] = 0x7d22, + [0x13f8] = 0x7d14, [0x13f9] = 0x7d10, [0x13fa] = 0x7d15, [0x13fb] = 0x7d1a, + [0x13fc] = 0x7d1c, [0x13fd] = 0x7d0d, [0x13fe] = 0x7d19, [0x13ff] = 0x7d1b, + [0x1400] = 0x7f3a, [0x1401] = 0x7f5f, [0x1402] = 0x7f94, [0x1403] = 0x7fc5, + [0x1404] = 0x7fc1, [0x1405] = 0x8006, [0x1406] = 0x8004, [0x1407] = 0x8018, + [0x1408] = 0x8015, [0x1409] = 0x8019, [0x140a] = 0x8017, [0x140b] = 0x803d, + [0x140c] = 0x803f, [0x140d] = 0x80f1, [0x140e] = 0x8102, [0x140f] = 0x80f0, + [0x1410] = 0x8105, [0x1411] = 0x80ed, [0x1412] = 0x80f4, [0x1413] = 0x8106, + [0x1414] = 0x80f8, [0x1415] = 0x80f3, [0x1416] = 0x8108, [0x1417] = 0x80fd, + [0x1418] = 0x810a, [0x1419] = 0x80fc, [0x141a] = 0x80ef, [0x141b] = 0x81ed, + [0x141c] = 0x81ec, [0x141d] = 0x8200, [0x141e] = 0x8210, [0x141f] = 0x822a, + [0x1420] = 0x822b, [0x1421] = 0x8228, [0x1422] = 0x822c, [0x1423] = 0x82bb, + [0x1424] = 0x832b, [0x1425] = 0x8352, [0x1426] = 0x8354, [0x1427] = 0x834a, + [0x1428] = 0x8338, [0x1429] = 0x8350, [0x142a] = 0x8349, [0x142b] = 0x8335, + [0x142c] = 0x8334, [0x142d] = 0x834f, [0x142e] = 0x8332, [0x142f] = 0x8339, + [0x1430] = 0x8336, [0x1431] = 0x8317, [0x1432] = 0x8340, [0x1433] = 0x8331, + [0x1434] = 0x8328, [0x1435] = 0x8343, [0x1436] = 0x8654, [0x1437] = 0x868a, + [0x1438] = 0x86aa, [0x1439] = 0x8693, [0x143a] = 0x86a4, [0x143b] = 0x86a9, + [0x143c] = 0x868c, [0x143d] = 0x86a3, [0x143e] = 0x869c, [0x143f] = 0x8870, + [0x1440] = 0x8877, [0x1441] = 0x8881, [0x1442] = 0x8882, [0x1443] = 0x887d, + [0x1444] = 0x8879, [0x1445] = 0x8a18, [0x1446] = 0x8a10, [0x1447] = 0x8a0e, + [0x1448] = 0x8a0c, [0x1449] = 0x8a15, [0x144a] = 0x8a0a, [0x144b] = 0x8a17, + [0x144c] = 0x8a13, [0x144d] = 0x8a16, [0x144e] = 0x8a0f, [0x144f] = 0x8a11, + [0x1450] = 0x8c48, [0x1451] = 0x8c7a, [0x1452] = 0x8c79, [0x1453] = 0x8ca1, + [0x1454] = 0x8ca2, [0x1455] = 0x8d77, [0x1456] = 0x8eac, [0x1457] = 0x8ed2, + [0x1458] = 0x8ed4, [0x1459] = 0x8ecf, [0x145a] = 0x8fb1, [0x145b] = 0x9001, + [0x145c] = 0x9006, [0x145d] = 0x8ff7, [0x145e] = 0x9000, [0x145f] = 0x8ffa, + [0x1460] = 0x8ff4, [0x1461] = 0x9003, [0x1462] = 0x8ffd, [0x1463] = 0x9005, + [0x1464] = 0x8ff8, [0x1465] = 0x9095, [0x1466] = 0x90e1, [0x1467] = 0x90dd, + [0x1468] = 0x90e2, [0x1469] = 0x9152, [0x146a] = 0x914d, [0x146b] = 0x914c, + [0x146c] = 0x91d8, [0x146d] = 0x91dd, [0x146e] = 0x91d7, [0x146f] = 0x91dc, + [0x1470] = 0x91d9, [0x1471] = 0x9583, [0x1472] = 0x9662, [0x1473] = 0x9663, + [0x1474] = 0x9661, [0x1475] = 0x965b, [0x1476] = 0x965d, [0x1477] = 0x9664, + [0x1478] = 0x9658, [0x1479] = 0x965e, [0x147a] = 0x96bb, [0x147b] = 0x98e2, + [0x147c] = 0x99ac, [0x147d] = 0x9aa8, [0x147e] = 0x9ad8, [0x147f] = 0x9b25, + [0x1480] = 0x9b32, [0x1481] = 0x9b3c, [0x1482] = 0x4e7e, [0x1483] = 0x507a, + [0x1484] = 0x507d, [0x1485] = 0x505c, [0x1486] = 0x5047, [0x1487] = 0x5043, + [0x1488] = 0x504c, [0x1489] = 0x505a, [0x148a] = 0x5049, [0x148b] = 0x5065, + [0x148c] = 0x5076, [0x148d] = 0x504e, [0x148e] = 0x5055, [0x148f] = 0x5075, + [0x1490] = 0x5074, [0x1491] = 0x5077, [0x1492] = 0x504f, [0x1493] = 0x500f, + [0x1494] = 0x506f, [0x1495] = 0x506d, [0x1496] = 0x515c, [0x1497] = 0x5195, + [0x1498] = 0x51f0, [0x1499] = 0x526a, [0x149a] = 0x526f, [0x149b] = 0x52d2, + [0x149c] = 0x52d9, [0x149d] = 0x52d8, [0x149e] = 0x52d5, [0x149f] = 0x5310, + [0x14a0] = 0x530f, [0x14a1] = 0x5319, [0x14a2] = 0x533f, [0x14a3] = 0x5340, + [0x14a4] = 0x533e, [0x14a5] = 0x53c3, [0x14a6] = 0x66fc, [0x14a7] = 0x5546, + [0x14a8] = 0x556a, [0x14a9] = 0x5566, [0x14aa] = 0x5544, [0x14ab] = 0x555e, + [0x14ac] = 0x5561, [0x14ad] = 0x5543, [0x14ae] = 0x554a, [0x14af] = 0x5531, + [0x14b0] = 0x5556, [0x14b1] = 0x554f, [0x14b2] = 0x5555, [0x14b3] = 0x552f, + [0x14b4] = 0x5564, [0x14b5] = 0x5538, [0x14b6] = 0x552e, [0x14b7] = 0x555c, + [0x14b8] = 0x552c, [0x14b9] = 0x5563, [0x14ba] = 0x5533, [0x14bb] = 0x5541, + [0x14bc] = 0x5557, [0x14bd] = 0x5708, [0x14be] = 0x570b, [0x14bf] = 0x5709, + [0x14c0] = 0x57df, [0x14c1] = 0x5805, [0x14c2] = 0x580a, [0x14c3] = 0x5806, + [0x14c4] = 0x57e0, [0x14c5] = 0x57e4, [0x14c6] = 0x57fa, [0x14c7] = 0x5802, + [0x14c8] = 0x5835, [0x14c9] = 0x57f7, [0x14ca] = 0x57f9, [0x14cb] = 0x5920, + [0x14cc] = 0x5962, [0x14cd] = 0x5a36, [0x14ce] = 0x5a41, [0x14cf] = 0x5a49, + [0x14d0] = 0x5a66, [0x14d1] = 0x5a6a, [0x14d2] = 0x5a40, [0x14d3] = 0x5a3c, + [0x14d4] = 0x5a62, [0x14d5] = 0x5a5a, [0x14d6] = 0x5a46, [0x14d7] = 0x5a4a, + [0x14d8] = 0x5b70, [0x14d9] = 0x5bc7, [0x14da] = 0x5bc5, [0x14db] = 0x5bc4, + [0x14dc] = 0x5bc2, [0x14dd] = 0x5bbf, [0x14de] = 0x5bc6, [0x14df] = 0x5c09, + [0x14e0] = 0x5c08, [0x14e1] = 0x5c07, [0x14e2] = 0x5c60, [0x14e3] = 0x5c5c, + [0x14e4] = 0x5c5d, [0x14e5] = 0x5d07, [0x14e6] = 0x5d06, [0x14e7] = 0x5d0e, + [0x14e8] = 0x5d1b, [0x14e9] = 0x5d16, [0x14ea] = 0x5d22, [0x14eb] = 0x5d11, + [0x14ec] = 0x5d29, [0x14ed] = 0x5d14, [0x14ee] = 0x5d19, [0x14ef] = 0x5d24, + [0x14f0] = 0x5d27, [0x14f1] = 0x5d17, [0x14f2] = 0x5de2, [0x14f3] = 0x5e38, + [0x14f4] = 0x5e36, [0x14f5] = 0x5e33, [0x14f6] = 0x5e37, [0x14f7] = 0x5eb7, + [0x14f8] = 0x5eb8, [0x14f9] = 0x5eb6, [0x14fa] = 0x5eb5, [0x14fb] = 0x5ebe, + [0x14fc] = 0x5f35, [0x14fd] = 0x5f37, [0x14fe] = 0x5f57, [0x14ff] = 0x5f6c, + [0x1500] = 0x5f69, [0x1501] = 0x5f6b, [0x1502] = 0x5f97, [0x1503] = 0x5f99, + [0x1504] = 0x5f9e, [0x1505] = 0x5f98, [0x1506] = 0x5fa1, [0x1507] = 0x5fa0, + [0x1508] = 0x5f9c, [0x1509] = 0x607f, [0x150a] = 0x60a3, [0x150b] = 0x6089, + [0x150c] = 0x60a0, [0x150d] = 0x60a8, [0x150e] = 0x60cb, [0x150f] = 0x60b4, + [0x1510] = 0x60e6, [0x1511] = 0x60bd, [0x1512] = 0x60c5, [0x1513] = 0x60bb, + [0x1514] = 0x60b5, [0x1515] = 0x60dc, [0x1516] = 0x60bc, [0x1517] = 0x60d8, + [0x1518] = 0x60d5, [0x1519] = 0x60c6, [0x151a] = 0x60df, [0x151b] = 0x60b8, + [0x151c] = 0x60da, [0x151d] = 0x60c7, [0x151e] = 0x621a, [0x151f] = 0x621b, + [0x1520] = 0x6248, [0x1521] = 0x63a0, [0x1522] = 0x63a7, [0x1523] = 0x6372, + [0x1524] = 0x6396, [0x1525] = 0x63a2, [0x1526] = 0x63a5, [0x1527] = 0x6377, + [0x1528] = 0x6367, [0x1529] = 0x6398, [0x152a] = 0x63aa, [0x152b] = 0x6371, + [0x152c] = 0x63a9, [0x152d] = 0x6389, [0x152e] = 0x6383, [0x152f] = 0x639b, + [0x1530] = 0x636b, [0x1531] = 0x63a8, [0x1532] = 0x6384, [0x1533] = 0x6388, + [0x1534] = 0x6399, [0x1535] = 0x63a1, [0x1536] = 0x63ac, [0x1537] = 0x6392, + [0x1538] = 0x638f, [0x1539] = 0x6380, [0x153a] = 0x637b, [0x153b] = 0x6369, + [0x153c] = 0x6368, [0x153d] = 0x637a, [0x153e] = 0x655d, [0x153f] = 0x6556, + [0x1540] = 0x6551, [0x1541] = 0x6559, [0x1542] = 0x6557, [0x1543] = 0x555f, + [0x1544] = 0x654f, [0x1545] = 0x6558, [0x1546] = 0x6555, [0x1547] = 0x6554, + [0x1548] = 0x659c, [0x1549] = 0x659b, [0x154a] = 0x65ac, [0x154b] = 0x65cf, + [0x154c] = 0x65cb, [0x154d] = 0x65cc, [0x154e] = 0x65ce, [0x154f] = 0x665d, + [0x1550] = 0x665a, [0x1551] = 0x6664, [0x1552] = 0x6668, [0x1553] = 0x6666, + [0x1554] = 0x665e, [0x1555] = 0x66f9, [0x1556] = 0x52d7, [0x1557] = 0x671b, + [0x1558] = 0x6881, [0x1559] = 0x68af, [0x155a] = 0x68a2, [0x155b] = 0x6893, + [0x155c] = 0x68b5, [0x155d] = 0x687f, [0x155e] = 0x6876, [0x155f] = 0x68b1, + [0x1560] = 0x68a7, [0x1561] = 0x6897, [0x1562] = 0x68b0, [0x1563] = 0x6883, + [0x1564] = 0x68c4, [0x1565] = 0x68ad, [0x1566] = 0x6886, [0x1567] = 0x6885, + [0x1568] = 0x6894, [0x1569] = 0x689d, [0x156a] = 0x68a8, [0x156b] = 0x689f, + [0x156c] = 0x68a1, [0x156d] = 0x6882, [0x156e] = 0x6b32, [0x156f] = 0x6bba, + [0x1570] = 0x6beb, [0x1571] = 0x6bec, [0x1572] = 0x6c2b, [0x1573] = 0x6d8e, + [0x1574] = 0x6dbc, [0x1575] = 0x6df3, [0x1576] = 0x6dd9, [0x1577] = 0x6db2, + [0x1578] = 0x6de1, [0x1579] = 0x6dcc, [0x157a] = 0x6de4, [0x157b] = 0x6dfb, + [0x157c] = 0x6dfa, [0x157d] = 0x6e05, [0x157e] = 0x6dc7, [0x157f] = 0x6dcb, + [0x1580] = 0x6daf, [0x1581] = 0x6dd1, [0x1582] = 0x6dae, [0x1583] = 0x6dde, + [0x1584] = 0x6df9, [0x1585] = 0x6db8, [0x1586] = 0x6df7, [0x1587] = 0x6df5, + [0x1588] = 0x6dc5, [0x1589] = 0x6dd2, [0x158a] = 0x6e1a, [0x158b] = 0x6db5, + [0x158c] = 0x6dda, [0x158d] = 0x6deb, [0x158e] = 0x6dd8, [0x158f] = 0x6dea, + [0x1590] = 0x6df1, [0x1591] = 0x6dee, [0x1592] = 0x6de8, [0x1593] = 0x6dc6, + [0x1594] = 0x6dc4, [0x1595] = 0x6daa, [0x1596] = 0x6dec, [0x1597] = 0x6dbf, + [0x1598] = 0x6de6, [0x1599] = 0x70f9, [0x159a] = 0x7109, [0x159b] = 0x710a, + [0x159c] = 0x70fd, [0x159d] = 0x70ef, [0x159e] = 0x723d, [0x159f] = 0x727d, + [0x15a0] = 0x7281, [0x15a1] = 0x731c, [0x15a2] = 0x731b, [0x15a3] = 0x7316, + [0x15a4] = 0x7313, [0x15a5] = 0x7319, [0x15a6] = 0x7387, [0x15a7] = 0x7405, + [0x15a8] = 0x740a, [0x15a9] = 0x7403, [0x15aa] = 0x7406, [0x15ab] = 0x73fe, + [0x15ac] = 0x740d, [0x15ad] = 0x74e0, [0x15ae] = 0x74f6, [0x15af] = 0x74f7, + [0x15b0] = 0x751c, [0x15b1] = 0x7522, [0x15b2] = 0x7565, [0x15b3] = 0x7566, + [0x15b4] = 0x7562, [0x15b5] = 0x7570, [0x15b6] = 0x758f, [0x15b7] = 0x75d4, + [0x15b8] = 0x75d5, [0x15b9] = 0x75b5, [0x15ba] = 0x75ca, [0x15bb] = 0x75cd, + [0x15bc] = 0x768e, [0x15bd] = 0x76d4, [0x15be] = 0x76d2, [0x15bf] = 0x76db, + [0x15c0] = 0x7737, [0x15c1] = 0x773e, [0x15c2] = 0x773c, [0x15c3] = 0x7736, + [0x15c4] = 0x7738, [0x15c5] = 0x773a, [0x15c6] = 0x786b, [0x15c7] = 0x7843, + [0x15c8] = 0x784e, [0x15c9] = 0x7965, [0x15ca] = 0x7968, [0x15cb] = 0x796d, + [0x15cc] = 0x79fb, [0x15cd] = 0x7a92, [0x15ce] = 0x7a95, [0x15cf] = 0x7b20, + [0x15d0] = 0x7b28, [0x15d1] = 0x7b1b, [0x15d2] = 0x7b2c, [0x15d3] = 0x7b26, + [0x15d4] = 0x7b19, [0x15d5] = 0x7b1e, [0x15d6] = 0x7b2e, [0x15d7] = 0x7c92, + [0x15d8] = 0x7c97, [0x15d9] = 0x7c95, [0x15da] = 0x7d46, [0x15db] = 0x7d43, + [0x15dc] = 0x7d71, [0x15dd] = 0x7d2e, [0x15de] = 0x7d39, [0x15df] = 0x7d3c, + [0x15e0] = 0x7d40, [0x15e1] = 0x7d30, [0x15e2] = 0x7d33, [0x15e3] = 0x7d44, + [0x15e4] = 0x7d2f, [0x15e5] = 0x7d42, [0x15e6] = 0x7d32, [0x15e7] = 0x7d31, + [0x15e8] = 0x7f3d, [0x15e9] = 0x7f9e, [0x15ea] = 0x7f9a, [0x15eb] = 0x7fcc, + [0x15ec] = 0x7fce, [0x15ed] = 0x7fd2, [0x15ee] = 0x801c, [0x15ef] = 0x804a, + [0x15f0] = 0x8046, [0x15f1] = 0x812f, [0x15f2] = 0x8116, [0x15f3] = 0x8123, + [0x15f4] = 0x812b, [0x15f5] = 0x8129, [0x15f6] = 0x8130, [0x15f7] = 0x8124, + [0x15f8] = 0x8202, [0x15f9] = 0x8235, [0x15fa] = 0x8237, [0x15fb] = 0x8236, + [0x15fc] = 0x8239, [0x15fd] = 0x838e, [0x15fe] = 0x839e, [0x15ff] = 0x8398, + [0x1600] = 0x8378, [0x1601] = 0x83a2, [0x1602] = 0x8396, [0x1603] = 0x83bd, + [0x1604] = 0x83ab, [0x1605] = 0x8392, [0x1606] = 0x838a, [0x1607] = 0x8393, + [0x1608] = 0x8389, [0x1609] = 0x83a0, [0x160a] = 0x8377, [0x160b] = 0x837b, + [0x160c] = 0x837c, [0x160d] = 0x8386, [0x160e] = 0x83a7, [0x160f] = 0x8655, + [0x1610] = 0x5f6a, [0x1611] = 0x86c7, [0x1612] = 0x86c0, [0x1613] = 0x86b6, + [0x1614] = 0x86c4, [0x1615] = 0x86b5, [0x1616] = 0x86c6, [0x1617] = 0x86cb, + [0x1618] = 0x86b1, [0x1619] = 0x86af, [0x161a] = 0x86c9, [0x161b] = 0x8853, + [0x161c] = 0x889e, [0x161d] = 0x8888, [0x161e] = 0x88ab, [0x161f] = 0x8892, + [0x1620] = 0x8896, [0x1621] = 0x888d, [0x1622] = 0x888b, [0x1623] = 0x8993, + [0x1624] = 0x898f, [0x1625] = 0x8a2a, [0x1626] = 0x8a1d, [0x1627] = 0x8a23, + [0x1628] = 0x8a25, [0x1629] = 0x8a31, [0x162a] = 0x8a2d, [0x162b] = 0x8a1f, + [0x162c] = 0x8a1b, [0x162d] = 0x8a22, [0x162e] = 0x8c49, [0x162f] = 0x8c5a, + [0x1630] = 0x8ca9, [0x1631] = 0x8cac, [0x1632] = 0x8cab, [0x1633] = 0x8ca8, + [0x1634] = 0x8caa, [0x1635] = 0x8ca7, [0x1636] = 0x8d67, [0x1637] = 0x8d66, + [0x1638] = 0x8dbe, [0x1639] = 0x8dba, [0x163a] = 0x8edb, [0x163b] = 0x8edf, + [0x163c] = 0x9019, [0x163d] = 0x900d, [0x163e] = 0x901a, [0x163f] = 0x9017, + [0x1640] = 0x9023, [0x1641] = 0x901f, [0x1642] = 0x901d, [0x1643] = 0x9010, + [0x1644] = 0x9015, [0x1645] = 0x901e, [0x1646] = 0x9020, [0x1647] = 0x900f, + [0x1648] = 0x9022, [0x1649] = 0x9016, [0x164a] = 0x901b, [0x164b] = 0x9014, + [0x164c] = 0x90e8, [0x164d] = 0x90ed, [0x164e] = 0x90fd, [0x164f] = 0x9157, + [0x1650] = 0x91ce, [0x1651] = 0x91f5, [0x1652] = 0x91e6, [0x1653] = 0x91e3, + [0x1654] = 0x91e7, [0x1655] = 0x91ed, [0x1656] = 0x91e9, [0x1657] = 0x9589, + [0x1658] = 0x966a, [0x1659] = 0x9675, [0x165a] = 0x9673, [0x165b] = 0x9678, + [0x165c] = 0x9670, [0x165d] = 0x9674, [0x165e] = 0x9676, [0x165f] = 0x9677, + [0x1660] = 0x966c, [0x1661] = 0x96c0, [0x1662] = 0x96ea, [0x1663] = 0x96e9, + [0x1664] = 0x7ae0, [0x1665] = 0x7adf, [0x1666] = 0x9802, [0x1667] = 0x9803, + [0x1668] = 0x9b5a, [0x1669] = 0x9ce5, [0x166a] = 0x9e75, [0x166b] = 0x9e7f, + [0x166c] = 0x9ea5, [0x166d] = 0x9ebb, [0x166e] = 0x50a2, [0x166f] = 0x508d, + [0x1670] = 0x5085, [0x1671] = 0x5099, [0x1672] = 0x5091, [0x1673] = 0x5080, + [0x1674] = 0x5096, [0x1675] = 0x5098, [0x1676] = 0x509a, [0x1677] = 0x6700, + [0x1678] = 0x51f1, [0x1679] = 0x5272, [0x167a] = 0x5274, [0x167b] = 0x5275, + [0x167c] = 0x5269, [0x167d] = 0x52de, [0x167e] = 0x52dd, [0x167f] = 0x52db, + [0x1680] = 0x535a, [0x1681] = 0x53a5, [0x1682] = 0x557b, [0x1683] = 0x5580, + [0x1684] = 0x55a7, [0x1685] = 0x557c, [0x1686] = 0x558a, [0x1687] = 0x559d, + [0x1688] = 0x5598, [0x1689] = 0x5582, [0x168a] = 0x559c, [0x168b] = 0x55aa, + [0x168c] = 0x5594, [0x168d] = 0x5587, [0x168e] = 0x558b, [0x168f] = 0x5583, + [0x1690] = 0x55b3, [0x1691] = 0x55ae, [0x1692] = 0x559f, [0x1693] = 0x553e, + [0x1694] = 0x55b2, [0x1695] = 0x559a, [0x1696] = 0x55bb, [0x1697] = 0x55ac, + [0x1698] = 0x55b1, [0x1699] = 0x557e, [0x169a] = 0x5589, [0x169b] = 0x55ab, + [0x169c] = 0x5599, [0x169d] = 0x570d, [0x169e] = 0x582f, [0x169f] = 0x582a, + [0x16a0] = 0x5834, [0x16a1] = 0x5824, [0x16a2] = 0x5830, [0x16a3] = 0x5831, + [0x16a4] = 0x5821, [0x16a5] = 0x581d, [0x16a6] = 0x5820, [0x16a7] = 0x58f9, + [0x16a8] = 0x58fa, [0x16a9] = 0x5960, [0x16aa] = 0x5a77, [0x16ab] = 0x5a9a, + [0x16ac] = 0x5a7f, [0x16ad] = 0x5a92, [0x16ae] = 0x5a9b, [0x16af] = 0x5aa7, + [0x16b0] = 0x5b73, [0x16b1] = 0x5b71, [0x16b2] = 0x5bd2, [0x16b3] = 0x5bcc, + [0x16b4] = 0x5bd3, [0x16b5] = 0x5bd0, [0x16b6] = 0x5c0a, [0x16b7] = 0x5c0b, + [0x16b8] = 0x5c31, [0x16b9] = 0x5d4c, [0x16ba] = 0x5d50, [0x16bb] = 0x5d34, + [0x16bc] = 0x5d47, [0x16bd] = 0x5dfd, [0x16be] = 0x5e45, [0x16bf] = 0x5e3d, + [0x16c0] = 0x5e40, [0x16c1] = 0x5e43, [0x16c2] = 0x5e7e, [0x16c3] = 0x5eca, + [0x16c4] = 0x5ec1, [0x16c5] = 0x5ec2, [0x16c6] = 0x5ec4, [0x16c7] = 0x5f3c, + [0x16c8] = 0x5f6d, [0x16c9] = 0x5fa9, [0x16ca] = 0x5faa, [0x16cb] = 0x5fa8, + [0x16cc] = 0x60d1, [0x16cd] = 0x60e1, [0x16ce] = 0x60b2, [0x16cf] = 0x60b6, + [0x16d0] = 0x60e0, [0x16d1] = 0x611c, [0x16d2] = 0x6123, [0x16d3] = 0x60fa, + [0x16d4] = 0x6115, [0x16d5] = 0x60f0, [0x16d6] = 0x60fb, [0x16d7] = 0x60f4, + [0x16d8] = 0x6168, [0x16d9] = 0x60f1, [0x16da] = 0x610e, [0x16db] = 0x60f6, + [0x16dc] = 0x6109, [0x16dd] = 0x6100, [0x16de] = 0x6112, [0x16df] = 0x621f, + [0x16e0] = 0x6249, [0x16e1] = 0x63a3, [0x16e2] = 0x638c, [0x16e3] = 0x63cf, + [0x16e4] = 0x63c0, [0x16e5] = 0x63e9, [0x16e6] = 0x63c9, [0x16e7] = 0x63c6, + [0x16e8] = 0x63cd, [0x16e9] = 0x63d2, [0x16ea] = 0x63e3, [0x16eb] = 0x63d0, + [0x16ec] = 0x63e1, [0x16ed] = 0x63d6, [0x16ee] = 0x63ed, [0x16ef] = 0x63ee, + [0x16f0] = 0x6376, [0x16f1] = 0x63f4, [0x16f2] = 0x63ea, [0x16f3] = 0x63db, + [0x16f4] = 0x6452, [0x16f5] = 0x63da, [0x16f6] = 0x63f9, [0x16f7] = 0x655e, + [0x16f8] = 0x6566, [0x16f9] = 0x6562, [0x16fa] = 0x6563, [0x16fb] = 0x6591, + [0x16fc] = 0x6590, [0x16fd] = 0x65af, [0x16fe] = 0x666e, [0x16ff] = 0x6670, + [0x1700] = 0x6674, [0x1701] = 0x6676, [0x1702] = 0x666f, [0x1703] = 0x6691, + [0x1704] = 0x667a, [0x1705] = 0x667e, [0x1706] = 0x6677, [0x1707] = 0x66fe, + [0x1708] = 0x66ff, [0x1709] = 0x671f, [0x170a] = 0x671d, [0x170b] = 0x68fa, + [0x170c] = 0x68d5, [0x170d] = 0x68e0, [0x170e] = 0x68d8, [0x170f] = 0x68d7, + [0x1710] = 0x6905, [0x1711] = 0x68df, [0x1712] = 0x68f5, [0x1713] = 0x68ee, + [0x1714] = 0x68e7, [0x1715] = 0x68f9, [0x1716] = 0x68d2, [0x1717] = 0x68f2, + [0x1718] = 0x68e3, [0x1719] = 0x68cb, [0x171a] = 0x68cd, [0x171b] = 0x690d, + [0x171c] = 0x6912, [0x171d] = 0x690e, [0x171e] = 0x68c9, [0x171f] = 0x68da, + [0x1720] = 0x696e, [0x1721] = 0x68fb, [0x1722] = 0x6b3e, [0x1723] = 0x6b3a, + [0x1724] = 0x6b3d, [0x1725] = 0x6b98, [0x1726] = 0x6b96, [0x1727] = 0x6bbc, + [0x1728] = 0x6bef, [0x1729] = 0x6c2e, [0x172a] = 0x6c2f, [0x172b] = 0x6c2c, + [0x172c] = 0x6e2f, [0x172d] = 0x6e38, [0x172e] = 0x6e54, [0x172f] = 0x6e21, + [0x1730] = 0x6e32, [0x1731] = 0x6e67, [0x1732] = 0x6e4a, [0x1733] = 0x6e20, + [0x1734] = 0x6e25, [0x1735] = 0x6e23, [0x1736] = 0x6e1b, [0x1737] = 0x6e5b, + [0x1738] = 0x6e58, [0x1739] = 0x6e24, [0x173a] = 0x6e56, [0x173b] = 0x6e6e, + [0x173c] = 0x6e2d, [0x173d] = 0x6e26, [0x173e] = 0x6e6f, [0x173f] = 0x6e34, + [0x1740] = 0x6e4d, [0x1741] = 0x6e3a, [0x1742] = 0x6e2c, [0x1743] = 0x6e43, + [0x1744] = 0x6e1d, [0x1745] = 0x6e3e, [0x1746] = 0x6ecb, [0x1747] = 0x6e89, + [0x1748] = 0x6e19, [0x1749] = 0x6e4e, [0x174a] = 0x6e63, [0x174b] = 0x6e44, + [0x174c] = 0x6e72, [0x174d] = 0x6e69, [0x174e] = 0x6e5f, [0x174f] = 0x7119, + [0x1750] = 0x711a, [0x1751] = 0x7126, [0x1752] = 0x7130, [0x1753] = 0x7121, + [0x1754] = 0x7136, [0x1755] = 0x716e, [0x1756] = 0x711c, [0x1757] = 0x724c, + [0x1758] = 0x7284, [0x1759] = 0x7280, [0x175a] = 0x7336, [0x175b] = 0x7325, + [0x175c] = 0x7334, [0x175d] = 0x7329, [0x175e] = 0x743a, [0x175f] = 0x742a, + [0x1760] = 0x7433, [0x1761] = 0x7422, [0x1762] = 0x7425, [0x1763] = 0x7435, + [0x1764] = 0x7436, [0x1765] = 0x7434, [0x1766] = 0x742f, [0x1767] = 0x741b, + [0x1768] = 0x7426, [0x1769] = 0x7428, [0x176a] = 0x7525, [0x176b] = 0x7526, + [0x176c] = 0x756b, [0x176d] = 0x756a, [0x176e] = 0x75e2, [0x176f] = 0x75db, + [0x1770] = 0x75e3, [0x1771] = 0x75d9, [0x1772] = 0x75d8, [0x1773] = 0x75de, + [0x1774] = 0x75e0, [0x1775] = 0x767b, [0x1776] = 0x767c, [0x1777] = 0x7696, + [0x1778] = 0x7693, [0x1779] = 0x76b4, [0x177a] = 0x76dc, [0x177b] = 0x774f, + [0x177c] = 0x77ed, [0x177d] = 0x785d, [0x177e] = 0x786c, [0x177f] = 0x786f, + [0x1780] = 0x7a0d, [0x1781] = 0x7a08, [0x1782] = 0x7a0b, [0x1783] = 0x7a05, + [0x1784] = 0x7a00, [0x1785] = 0x7a98, [0x1786] = 0x7a97, [0x1787] = 0x7a96, + [0x1788] = 0x7ae5, [0x1789] = 0x7ae3, [0x178a] = 0x7b49, [0x178b] = 0x7b56, + [0x178c] = 0x7b46, [0x178d] = 0x7b50, [0x178e] = 0x7b52, [0x178f] = 0x7b54, + [0x1790] = 0x7b4d, [0x1791] = 0x7b4b, [0x1792] = 0x7b4f, [0x1793] = 0x7b51, + [0x1794] = 0x7c9f, [0x1795] = 0x7ca5, [0x1796] = 0x7d5e, [0x1797] = 0x7d50, + [0x1798] = 0x7d68, [0x1799] = 0x7d55, [0x179a] = 0x7d2b, [0x179b] = 0x7d6e, + [0x179c] = 0x7d72, [0x179d] = 0x7d61, [0x179e] = 0x7d66, [0x179f] = 0x7d62, + [0x17a0] = 0x7d70, [0x17a1] = 0x7d73, [0x17a2] = 0x5584, [0x17a3] = 0x7fd4, + [0x17a4] = 0x7fd5, [0x17a5] = 0x800b, [0x17a6] = 0x8052, [0x17a7] = 0x8085, + [0x17a8] = 0x8155, [0x17a9] = 0x8154, [0x17aa] = 0x814b, [0x17ab] = 0x8151, + [0x17ac] = 0x814e, [0x17ad] = 0x8139, [0x17ae] = 0x8146, [0x17af] = 0x813e, + [0x17b0] = 0x814c, [0x17b1] = 0x8153, [0x17b2] = 0x8174, [0x17b3] = 0x8212, + [0x17b4] = 0x821c, [0x17b5] = 0x83e9, [0x17b6] = 0x8403, [0x17b7] = 0x83f8, + [0x17b8] = 0x840d, [0x17b9] = 0x83e0, [0x17ba] = 0x83c5, [0x17bb] = 0x840b, + [0x17bc] = 0x83c1, [0x17bd] = 0x83ef, [0x17be] = 0x83f1, [0x17bf] = 0x83f4, + [0x17c0] = 0x8457, [0x17c1] = 0x840a, [0x17c2] = 0x83f0, [0x17c3] = 0x840c, + [0x17c4] = 0x83cc, [0x17c5] = 0x83fd, [0x17c6] = 0x83f2, [0x17c7] = 0x83ca, + [0x17c8] = 0x8438, [0x17c9] = 0x840e, [0x17ca] = 0x8404, [0x17cb] = 0x83dc, + [0x17cc] = 0x8407, [0x17cd] = 0x83d4, [0x17ce] = 0x83df, [0x17cf] = 0x865b, + [0x17d0] = 0x86df, [0x17d1] = 0x86d9, [0x17d2] = 0x86ed, [0x17d3] = 0x86d4, + [0x17d4] = 0x86db, [0x17d5] = 0x86e4, [0x17d6] = 0x86d0, [0x17d7] = 0x86de, + [0x17d8] = 0x8857, [0x17d9] = 0x88c1, [0x17da] = 0x88c2, [0x17db] = 0x88b1, + [0x17dc] = 0x8983, [0x17dd] = 0x8996, [0x17de] = 0x8a3b, [0x17df] = 0x8a60, + [0x17e0] = 0x8a55, [0x17e1] = 0x8a5e, [0x17e2] = 0x8a3c, [0x17e3] = 0x8a41, + [0x17e4] = 0x8a54, [0x17e5] = 0x8a5b, [0x17e6] = 0x8a50, [0x17e7] = 0x8a46, + [0x17e8] = 0x8a34, [0x17e9] = 0x8a3a, [0x17ea] = 0x8a36, [0x17eb] = 0x8a56, + [0x17ec] = 0x8c61, [0x17ed] = 0x8c82, [0x17ee] = 0x8caf, [0x17ef] = 0x8cbc, + [0x17f0] = 0x8cb3, [0x17f1] = 0x8cbd, [0x17f2] = 0x8cc1, [0x17f3] = 0x8cbb, + [0x17f4] = 0x8cc0, [0x17f5] = 0x8cb4, [0x17f6] = 0x8cb7, [0x17f7] = 0x8cb6, + [0x17f8] = 0x8cbf, [0x17f9] = 0x8cb8, [0x17fa] = 0x8d8a, [0x17fb] = 0x8d85, + [0x17fc] = 0x8d81, [0x17fd] = 0x8dce, [0x17fe] = 0x8ddd, [0x17ff] = 0x8dcb, + [0x1800] = 0x8dda, [0x1801] = 0x8dd1, [0x1802] = 0x8dcc, [0x1803] = 0x8ddb, + [0x1804] = 0x8dc6, [0x1805] = 0x8efb, [0x1806] = 0x8ef8, [0x1807] = 0x8efc, + [0x1808] = 0x8f9c, [0x1809] = 0x902e, [0x180a] = 0x9035, [0x180b] = 0x9031, + [0x180c] = 0x9038, [0x180d] = 0x9032, [0x180e] = 0x9036, [0x180f] = 0x9102, + [0x1810] = 0x90f5, [0x1811] = 0x9109, [0x1812] = 0x90fe, [0x1813] = 0x9163, + [0x1814] = 0x9165, [0x1815] = 0x91cf, [0x1816] = 0x9214, [0x1817] = 0x9215, + [0x1818] = 0x9223, [0x1819] = 0x9209, [0x181a] = 0x921e, [0x181b] = 0x920d, + [0x181c] = 0x9210, [0x181d] = 0x9207, [0x181e] = 0x9211, [0x181f] = 0x9594, + [0x1820] = 0x958f, [0x1821] = 0x958b, [0x1822] = 0x9591, [0x1823] = 0x9593, + [0x1824] = 0x9592, [0x1825] = 0x958e, [0x1826] = 0x968a, [0x1827] = 0x968e, + [0x1828] = 0x968b, [0x1829] = 0x967d, [0x182a] = 0x9685, [0x182b] = 0x9686, + [0x182c] = 0x968d, [0x182d] = 0x9672, [0x182e] = 0x9684, [0x182f] = 0x96c1, + [0x1830] = 0x96c5, [0x1831] = 0x96c4, [0x1832] = 0x96c6, [0x1833] = 0x96c7, + [0x1834] = 0x96ef, [0x1835] = 0x96f2, [0x1836] = 0x97cc, [0x1837] = 0x9805, + [0x1838] = 0x9806, [0x1839] = 0x9808, [0x183a] = 0x98e7, [0x183b] = 0x98ea, + [0x183c] = 0x98ef, [0x183d] = 0x98e9, [0x183e] = 0x98f2, [0x183f] = 0x98ed, + [0x1840] = 0x99ae, [0x1841] = 0x99ad, [0x1842] = 0x9ec3, [0x1843] = 0x9ecd, + [0x1844] = 0x9ed1, [0x1845] = 0x4e82, [0x1846] = 0x50ad, [0x1847] = 0x50b5, + [0x1848] = 0x50b2, [0x1849] = 0x50b3, [0x184a] = 0x50c5, [0x184b] = 0x50be, + [0x184c] = 0x50ac, [0x184d] = 0x50b7, [0x184e] = 0x50bb, [0x184f] = 0x50af, + [0x1850] = 0x50c7, [0x1851] = 0x527f, [0x1852] = 0x5277, [0x1853] = 0x527d, + [0x1854] = 0x52df, [0x1855] = 0x52e6, [0x1856] = 0x52e4, [0x1857] = 0x52e2, + [0x1858] = 0x52e3, [0x1859] = 0x532f, [0x185a] = 0x55df, [0x185b] = 0x55e8, + [0x185c] = 0x55d3, [0x185d] = 0x55e6, [0x185e] = 0x55ce, [0x185f] = 0x55dc, + [0x1860] = 0x55c7, [0x1861] = 0x55d1, [0x1862] = 0x55e3, [0x1863] = 0x55e4, + [0x1864] = 0x55ef, [0x1865] = 0x55da, [0x1866] = 0x55e1, [0x1867] = 0x55c5, + [0x1868] = 0x55c6, [0x1869] = 0x55e5, [0x186a] = 0x55c9, [0x186b] = 0x5712, + [0x186c] = 0x5713, [0x186d] = 0x585e, [0x186e] = 0x5851, [0x186f] = 0x5858, + [0x1870] = 0x5857, [0x1871] = 0x585a, [0x1872] = 0x5854, [0x1873] = 0x586b, + [0x1874] = 0x584c, [0x1875] = 0x586d, [0x1876] = 0x584a, [0x1877] = 0x5862, + [0x1878] = 0x5852, [0x1879] = 0x584b, [0x187a] = 0x5967, [0x187b] = 0x5ac1, + [0x187c] = 0x5ac9, [0x187d] = 0x5acc, [0x187e] = 0x5abe, [0x187f] = 0x5abd, + [0x1880] = 0x5abc, [0x1881] = 0x5ab3, [0x1882] = 0x5ac2, [0x1883] = 0x5ab2, + [0x1884] = 0x5d69, [0x1885] = 0x5d6f, [0x1886] = 0x5e4c, [0x1887] = 0x5e79, + [0x1888] = 0x5ec9, [0x1889] = 0x5ec8, [0x188a] = 0x5f12, [0x188b] = 0x5f59, + [0x188c] = 0x5fac, [0x188d] = 0x5fae, [0x188e] = 0x611a, [0x188f] = 0x610f, + [0x1890] = 0x6148, [0x1891] = 0x611f, [0x1892] = 0x60f3, [0x1893] = 0x611b, + [0x1894] = 0x60f9, [0x1895] = 0x6101, [0x1896] = 0x6108, [0x1897] = 0x614e, + [0x1898] = 0x614c, [0x1899] = 0x6144, [0x189a] = 0x614d, [0x189b] = 0x613e, + [0x189c] = 0x6134, [0x189d] = 0x6127, [0x189e] = 0x610d, [0x189f] = 0x6106, + [0x18a0] = 0x6137, [0x18a1] = 0x6221, [0x18a2] = 0x6222, [0x18a3] = 0x6413, + [0x18a4] = 0x643e, [0x18a5] = 0x641e, [0x18a6] = 0x642a, [0x18a7] = 0x642d, + [0x18a8] = 0x643d, [0x18a9] = 0x642c, [0x18aa] = 0x640f, [0x18ab] = 0x641c, + [0x18ac] = 0x6414, [0x18ad] = 0x640d, [0x18ae] = 0x6436, [0x18af] = 0x6416, + [0x18b0] = 0x6417, [0x18b1] = 0x6406, [0x18b2] = 0x656c, [0x18b3] = 0x659f, + [0x18b4] = 0x65b0, [0x18b5] = 0x6697, [0x18b6] = 0x6689, [0x18b7] = 0x6687, + [0x18b8] = 0x6688, [0x18b9] = 0x6696, [0x18ba] = 0x6684, [0x18bb] = 0x6698, + [0x18bc] = 0x668d, [0x18bd] = 0x6703, [0x18be] = 0x6994, [0x18bf] = 0x696d, + [0x18c0] = 0x695a, [0x18c1] = 0x6977, [0x18c2] = 0x6960, [0x18c3] = 0x6954, + [0x18c4] = 0x6975, [0x18c5] = 0x6930, [0x18c6] = 0x6982, [0x18c7] = 0x694a, + [0x18c8] = 0x6968, [0x18c9] = 0x696b, [0x18ca] = 0x695e, [0x18cb] = 0x6953, + [0x18cc] = 0x6979, [0x18cd] = 0x6986, [0x18ce] = 0x695d, [0x18cf] = 0x6963, + [0x18d0] = 0x695b, [0x18d1] = 0x6b47, [0x18d2] = 0x6b72, [0x18d3] = 0x6bc0, + [0x18d4] = 0x6bbf, [0x18d5] = 0x6bd3, [0x18d6] = 0x6bfd, [0x18d7] = 0x6ea2, + [0x18d8] = 0x6eaf, [0x18d9] = 0x6ed3, [0x18da] = 0x6eb6, [0x18db] = 0x6ec2, + [0x18dc] = 0x6e90, [0x18dd] = 0x6e9d, [0x18de] = 0x6ec7, [0x18df] = 0x6ec5, + [0x18e0] = 0x6ea5, [0x18e1] = 0x6e98, [0x18e2] = 0x6ebc, [0x18e3] = 0x6eba, + [0x18e4] = 0x6eab, [0x18e5] = 0x6ed1, [0x18e6] = 0x6e96, [0x18e7] = 0x6e9c, + [0x18e8] = 0x6ec4, [0x18e9] = 0x6ed4, [0x18ea] = 0x6eaa, [0x18eb] = 0x6ea7, + [0x18ec] = 0x6eb4, [0x18ed] = 0x714e, [0x18ee] = 0x7159, [0x18ef] = 0x7169, + [0x18f0] = 0x7164, [0x18f1] = 0x7149, [0x18f2] = 0x7167, [0x18f3] = 0x715c, + [0x18f4] = 0x716c, [0x18f5] = 0x7166, [0x18f6] = 0x714c, [0x18f7] = 0x7165, + [0x18f8] = 0x715e, [0x18f9] = 0x7146, [0x18fa] = 0x7168, [0x18fb] = 0x7156, + [0x18fc] = 0x723a, [0x18fd] = 0x7252, [0x18fe] = 0x7337, [0x18ff] = 0x7345, + [0x1900] = 0x733f, [0x1901] = 0x733e, [0x1902] = 0x746f, [0x1903] = 0x745a, + [0x1904] = 0x7455, [0x1905] = 0x745f, [0x1906] = 0x745e, [0x1907] = 0x7441, + [0x1908] = 0x743f, [0x1909] = 0x7459, [0x190a] = 0x745b, [0x190b] = 0x745c, + [0x190c] = 0x7576, [0x190d] = 0x7578, [0x190e] = 0x7600, [0x190f] = 0x75f0, + [0x1910] = 0x7601, [0x1911] = 0x75f2, [0x1912] = 0x75f1, [0x1913] = 0x75fa, + [0x1914] = 0x75ff, [0x1915] = 0x75f4, [0x1916] = 0x75f3, [0x1917] = 0x76de, + [0x1918] = 0x76df, [0x1919] = 0x775b, [0x191a] = 0x776b, [0x191b] = 0x7766, + [0x191c] = 0x775e, [0x191d] = 0x7763, [0x191e] = 0x7779, [0x191f] = 0x776a, + [0x1920] = 0x776c, [0x1921] = 0x775c, [0x1922] = 0x7765, [0x1923] = 0x7768, + [0x1924] = 0x7762, [0x1925] = 0x77ee, [0x1926] = 0x788e, [0x1927] = 0x78b0, + [0x1928] = 0x7897, [0x1929] = 0x7898, [0x192a] = 0x788c, [0x192b] = 0x7889, + [0x192c] = 0x787c, [0x192d] = 0x7891, [0x192e] = 0x7893, [0x192f] = 0x787f, + [0x1930] = 0x797a, [0x1931] = 0x797f, [0x1932] = 0x7981, [0x1933] = 0x842c, + [0x1934] = 0x79bd, [0x1935] = 0x7a1c, [0x1936] = 0x7a1a, [0x1937] = 0x7a20, + [0x1938] = 0x7a14, [0x1939] = 0x7a1f, [0x193a] = 0x7a1e, [0x193b] = 0x7a9f, + [0x193c] = 0x7aa0, [0x193d] = 0x7b77, [0x193e] = 0x7bc0, [0x193f] = 0x7b60, + [0x1940] = 0x7b6e, [0x1941] = 0x7b67, [0x1942] = 0x7cb1, [0x1943] = 0x7cb3, + [0x1944] = 0x7cb5, [0x1945] = 0x7d93, [0x1946] = 0x7d79, [0x1947] = 0x7d91, + [0x1948] = 0x7d81, [0x1949] = 0x7d8f, [0x194a] = 0x7d5b, [0x194b] = 0x7f6e, + [0x194c] = 0x7f69, [0x194d] = 0x7f6a, [0x194e] = 0x7f72, [0x194f] = 0x7fa9, + [0x1950] = 0x7fa8, [0x1951] = 0x7fa4, [0x1952] = 0x8056, [0x1953] = 0x8058, + [0x1954] = 0x8086, [0x1955] = 0x8084, [0x1956] = 0x8171, [0x1957] = 0x8170, + [0x1958] = 0x8178, [0x1959] = 0x8165, [0x195a] = 0x816e, [0x195b] = 0x8173, + [0x195c] = 0x816b, [0x195d] = 0x8179, [0x195e] = 0x817a, [0x195f] = 0x8166, + [0x1960] = 0x8205, [0x1961] = 0x8247, [0x1962] = 0x8482, [0x1963] = 0x8477, + [0x1964] = 0x843d, [0x1965] = 0x8431, [0x1966] = 0x8475, [0x1967] = 0x8466, + [0x1968] = 0x846b, [0x1969] = 0x8449, [0x196a] = 0x846c, [0x196b] = 0x845b, + [0x196c] = 0x843c, [0x196d] = 0x8435, [0x196e] = 0x8461, [0x196f] = 0x8463, + [0x1970] = 0x8469, [0x1971] = 0x846d, [0x1972] = 0x8446, [0x1973] = 0x865e, + [0x1974] = 0x865c, [0x1975] = 0x865f, [0x1976] = 0x86f9, [0x1977] = 0x8713, + [0x1978] = 0x8708, [0x1979] = 0x8707, [0x197a] = 0x8700, [0x197b] = 0x86fe, + [0x197c] = 0x86fb, [0x197d] = 0x8702, [0x197e] = 0x8703, [0x197f] = 0x8706, + [0x1980] = 0x870a, [0x1981] = 0x8859, [0x1982] = 0x88df, [0x1983] = 0x88d4, + [0x1984] = 0x88d9, [0x1985] = 0x88dc, [0x1986] = 0x88d8, [0x1987] = 0x88dd, + [0x1988] = 0x88e1, [0x1989] = 0x88ca, [0x198a] = 0x88d5, [0x198b] = 0x88d2, + [0x198c] = 0x899c, [0x198d] = 0x89e3, [0x198e] = 0x8a6b, [0x198f] = 0x8a72, + [0x1990] = 0x8a73, [0x1991] = 0x8a66, [0x1992] = 0x8a69, [0x1993] = 0x8a70, + [0x1994] = 0x8a87, [0x1995] = 0x8a7c, [0x1996] = 0x8a63, [0x1997] = 0x8aa0, + [0x1998] = 0x8a71, [0x1999] = 0x8a85, [0x199a] = 0x8a6d, [0x199b] = 0x8a62, + [0x199c] = 0x8a6e, [0x199d] = 0x8a6c, [0x199e] = 0x8a79, [0x199f] = 0x8a7b, + [0x19a0] = 0x8a3e, [0x19a1] = 0x8a68, [0x19a2] = 0x8c62, [0x19a3] = 0x8c8a, + [0x19a4] = 0x8c89, [0x19a5] = 0x8cca, [0x19a6] = 0x8cc7, [0x19a7] = 0x8cc8, + [0x19a8] = 0x8cc4, [0x19a9] = 0x8cb2, [0x19aa] = 0x8cc3, [0x19ab] = 0x8cc2, + [0x19ac] = 0x8cc5, [0x19ad] = 0x8de1, [0x19ae] = 0x8ddf, [0x19af] = 0x8de8, + [0x19b0] = 0x8def, [0x19b1] = 0x8df3, [0x19b2] = 0x8dfa, [0x19b3] = 0x8dea, + [0x19b4] = 0x8de4, [0x19b5] = 0x8de6, [0x19b6] = 0x8eb2, [0x19b7] = 0x8f03, + [0x19b8] = 0x8f09, [0x19b9] = 0x8efe, [0x19ba] = 0x8f0a, [0x19bb] = 0x8f9f, + [0x19bc] = 0x8fb2, [0x19bd] = 0x904b, [0x19be] = 0x904a, [0x19bf] = 0x9053, + [0x19c0] = 0x9042, [0x19c1] = 0x9054, [0x19c2] = 0x903c, [0x19c3] = 0x9055, + [0x19c4] = 0x9050, [0x19c5] = 0x9047, [0x19c6] = 0x904f, [0x19c7] = 0x904e, + [0x19c8] = 0x904d, [0x19c9] = 0x9051, [0x19ca] = 0x903e, [0x19cb] = 0x9041, + [0x19cc] = 0x9112, [0x19cd] = 0x9117, [0x19ce] = 0x916c, [0x19cf] = 0x916a, + [0x19d0] = 0x9169, [0x19d1] = 0x91c9, [0x19d2] = 0x9237, [0x19d3] = 0x9257, + [0x19d4] = 0x9238, [0x19d5] = 0x923d, [0x19d6] = 0x9240, [0x19d7] = 0x923e, + [0x19d8] = 0x925b, [0x19d9] = 0x924b, [0x19da] = 0x9264, [0x19db] = 0x9251, + [0x19dc] = 0x9234, [0x19dd] = 0x9249, [0x19de] = 0x924d, [0x19df] = 0x9245, + [0x19e0] = 0x9239, [0x19e1] = 0x923f, [0x19e2] = 0x925a, [0x19e3] = 0x9598, + [0x19e4] = 0x9698, [0x19e5] = 0x9694, [0x19e6] = 0x9695, [0x19e7] = 0x96cd, + [0x19e8] = 0x96cb, [0x19e9] = 0x96c9, [0x19ea] = 0x96ca, [0x19eb] = 0x96f7, + [0x19ec] = 0x96fb, [0x19ed] = 0x96f9, [0x19ee] = 0x96f6, [0x19ef] = 0x9756, + [0x19f0] = 0x9774, [0x19f1] = 0x9776, [0x19f2] = 0x9810, [0x19f3] = 0x9811, + [0x19f4] = 0x9813, [0x19f5] = 0x980a, [0x19f6] = 0x9812, [0x19f7] = 0x980c, + [0x19f8] = 0x98fc, [0x19f9] = 0x98f4, [0x19fa] = 0x98fd, [0x19fb] = 0x98fe, + [0x19fc] = 0x99b3, [0x19fd] = 0x99b1, [0x19fe] = 0x99b4, [0x19ff] = 0x9ae1, + [0x1a00] = 0x9ce9, [0x1a01] = 0x9e82, [0x1a02] = 0x9f0e, [0x1a03] = 0x9f13, + [0x1a04] = 0x9f20, [0x1a05] = 0x50e7, [0x1a06] = 0x50ee, [0x1a07] = 0x50e5, + [0x1a08] = 0x50d6, [0x1a09] = 0x50ed, [0x1a0a] = 0x50da, [0x1a0b] = 0x50d5, + [0x1a0c] = 0x50cf, [0x1a0d] = 0x50d1, [0x1a0e] = 0x50f1, [0x1a0f] = 0x50ce, + [0x1a10] = 0x50e9, [0x1a11] = 0x5162, [0x1a12] = 0x51f3, [0x1a13] = 0x5283, + [0x1a14] = 0x5282, [0x1a15] = 0x5331, [0x1a16] = 0x53ad, [0x1a17] = 0x55fe, + [0x1a18] = 0x5600, [0x1a19] = 0x561b, [0x1a1a] = 0x5617, [0x1a1b] = 0x55fd, + [0x1a1c] = 0x5614, [0x1a1d] = 0x5606, [0x1a1e] = 0x5609, [0x1a1f] = 0x560d, + [0x1a20] = 0x560e, [0x1a21] = 0x55f7, [0x1a22] = 0x5616, [0x1a23] = 0x561f, + [0x1a24] = 0x5608, [0x1a25] = 0x5610, [0x1a26] = 0x55f6, [0x1a27] = 0x5718, + [0x1a28] = 0x5716, [0x1a29] = 0x5875, [0x1a2a] = 0x587e, [0x1a2b] = 0x5883, + [0x1a2c] = 0x5893, [0x1a2d] = 0x588a, [0x1a2e] = 0x5879, [0x1a2f] = 0x5885, + [0x1a30] = 0x587d, [0x1a31] = 0x58fd, [0x1a32] = 0x5925, [0x1a33] = 0x5922, + [0x1a34] = 0x5924, [0x1a35] = 0x596a, [0x1a36] = 0x5969, [0x1a37] = 0x5ae1, + [0x1a38] = 0x5ae6, [0x1a39] = 0x5ae9, [0x1a3a] = 0x5ad7, [0x1a3b] = 0x5ad6, + [0x1a3c] = 0x5ad8, [0x1a3d] = 0x5ae3, [0x1a3e] = 0x5b75, [0x1a3f] = 0x5bde, + [0x1a40] = 0x5be7, [0x1a41] = 0x5be1, [0x1a42] = 0x5be5, [0x1a43] = 0x5be6, + [0x1a44] = 0x5be8, [0x1a45] = 0x5be2, [0x1a46] = 0x5be4, [0x1a47] = 0x5bdf, + [0x1a48] = 0x5c0d, [0x1a49] = 0x5c62, [0x1a4a] = 0x5d84, [0x1a4b] = 0x5d87, + [0x1a4c] = 0x5e5b, [0x1a4d] = 0x5e63, [0x1a4e] = 0x5e55, [0x1a4f] = 0x5e57, + [0x1a50] = 0x5e54, [0x1a51] = 0x5ed3, [0x1a52] = 0x5ed6, [0x1a53] = 0x5f0a, + [0x1a54] = 0x5f46, [0x1a55] = 0x5f70, [0x1a56] = 0x5fb9, [0x1a57] = 0x6147, + [0x1a58] = 0x613f, [0x1a59] = 0x614b, [0x1a5a] = 0x6177, [0x1a5b] = 0x6162, + [0x1a5c] = 0x6163, [0x1a5d] = 0x615f, [0x1a5e] = 0x615a, [0x1a5f] = 0x6158, + [0x1a60] = 0x6175, [0x1a61] = 0x622a, [0x1a62] = 0x6487, [0x1a63] = 0x6458, + [0x1a64] = 0x6454, [0x1a65] = 0x64a4, [0x1a66] = 0x6478, [0x1a67] = 0x645f, + [0x1a68] = 0x647a, [0x1a69] = 0x6451, [0x1a6a] = 0x6467, [0x1a6b] = 0x6434, + [0x1a6c] = 0x646d, [0x1a6d] = 0x647b, [0x1a6e] = 0x6572, [0x1a6f] = 0x65a1, + [0x1a70] = 0x65d7, [0x1a71] = 0x65d6, [0x1a72] = 0x66a2, [0x1a73] = 0x66a8, + [0x1a74] = 0x669d, [0x1a75] = 0x699c, [0x1a76] = 0x69a8, [0x1a77] = 0x6995, + [0x1a78] = 0x69c1, [0x1a79] = 0x69ae, [0x1a7a] = 0x69d3, [0x1a7b] = 0x69cb, + [0x1a7c] = 0x699b, [0x1a7d] = 0x69b7, [0x1a7e] = 0x69bb, [0x1a7f] = 0x69ab, + [0x1a80] = 0x69b4, [0x1a81] = 0x69d0, [0x1a82] = 0x69cd, [0x1a83] = 0x69ad, + [0x1a84] = 0x69cc, [0x1a85] = 0x69a6, [0x1a86] = 0x69c3, [0x1a87] = 0x69a3, + [0x1a88] = 0x6b49, [0x1a89] = 0x6b4c, [0x1a8a] = 0x6c33, [0x1a8b] = 0x6f33, + [0x1a8c] = 0x6f14, [0x1a8d] = 0x6efe, [0x1a8e] = 0x6f13, [0x1a8f] = 0x6ef4, + [0x1a90] = 0x6f29, [0x1a91] = 0x6f3e, [0x1a92] = 0x6f20, [0x1a93] = 0x6f2c, + [0x1a94] = 0x6f0f, [0x1a95] = 0x6f02, [0x1a96] = 0x6f22, [0x1a97] = 0x6eff, + [0x1a98] = 0x6eef, [0x1a99] = 0x6f06, [0x1a9a] = 0x6f31, [0x1a9b] = 0x6f38, + [0x1a9c] = 0x6f32, [0x1a9d] = 0x6f23, [0x1a9e] = 0x6f15, [0x1a9f] = 0x6f2b, + [0x1aa0] = 0x6f2f, [0x1aa1] = 0x6f88, [0x1aa2] = 0x6f2a, [0x1aa3] = 0x6eec, + [0x1aa4] = 0x6f01, [0x1aa5] = 0x6ef2, [0x1aa6] = 0x6ecc, [0x1aa7] = 0x6ef7, + [0x1aa8] = 0x7194, [0x1aa9] = 0x7199, [0x1aaa] = 0x717d, [0x1aab] = 0x718a, + [0x1aac] = 0x7184, [0x1aad] = 0x7192, [0x1aae] = 0x723e, [0x1aaf] = 0x7292, + [0x1ab0] = 0x7296, [0x1ab1] = 0x7344, [0x1ab2] = 0x7350, [0x1ab3] = 0x7464, + [0x1ab4] = 0x7463, [0x1ab5] = 0x746a, [0x1ab6] = 0x7470, [0x1ab7] = 0x746d, + [0x1ab8] = 0x7504, [0x1ab9] = 0x7591, [0x1aba] = 0x7627, [0x1abb] = 0x760d, + [0x1abc] = 0x760b, [0x1abd] = 0x7609, [0x1abe] = 0x7613, [0x1abf] = 0x76e1, + [0x1ac0] = 0x76e3, [0x1ac1] = 0x7784, [0x1ac2] = 0x777d, [0x1ac3] = 0x777f, + [0x1ac4] = 0x7761, [0x1ac5] = 0x78c1, [0x1ac6] = 0x789f, [0x1ac7] = 0x78a7, + [0x1ac8] = 0x78b3, [0x1ac9] = 0x78a9, [0x1aca] = 0x78a3, [0x1acb] = 0x798e, + [0x1acc] = 0x798f, [0x1acd] = 0x798d, [0x1ace] = 0x7a2e, [0x1acf] = 0x7a31, + [0x1ad0] = 0x7aaa, [0x1ad1] = 0x7aa9, [0x1ad2] = 0x7aed, [0x1ad3] = 0x7aef, + [0x1ad4] = 0x7ba1, [0x1ad5] = 0x7b95, [0x1ad6] = 0x7b8b, [0x1ad7] = 0x7b75, + [0x1ad8] = 0x7b97, [0x1ad9] = 0x7b9d, [0x1ada] = 0x7b94, [0x1adb] = 0x7b8f, + [0x1adc] = 0x7bb8, [0x1add] = 0x7b87, [0x1ade] = 0x7b84, [0x1adf] = 0x7cb9, + [0x1ae0] = 0x7cbd, [0x1ae1] = 0x7cbe, [0x1ae2] = 0x7dbb, [0x1ae3] = 0x7db0, + [0x1ae4] = 0x7d9c, [0x1ae5] = 0x7dbd, [0x1ae6] = 0x7dbe, [0x1ae7] = 0x7da0, + [0x1ae8] = 0x7dca, [0x1ae9] = 0x7db4, [0x1aea] = 0x7db2, [0x1aeb] = 0x7db1, + [0x1aec] = 0x7dba, [0x1aed] = 0x7da2, [0x1aee] = 0x7dbf, [0x1aef] = 0x7db5, + [0x1af0] = 0x7db8, [0x1af1] = 0x7dad, [0x1af2] = 0x7dd2, [0x1af3] = 0x7dc7, + [0x1af4] = 0x7dac, [0x1af5] = 0x7f70, [0x1af6] = 0x7fe0, [0x1af7] = 0x7fe1, + [0x1af8] = 0x7fdf, [0x1af9] = 0x805e, [0x1afa] = 0x805a, [0x1afb] = 0x8087, + [0x1afc] = 0x8150, [0x1afd] = 0x8180, [0x1afe] = 0x818f, [0x1aff] = 0x8188, + [0x1b00] = 0x818a, [0x1b01] = 0x817f, [0x1b02] = 0x8182, [0x1b03] = 0x81e7, + [0x1b04] = 0x81fa, [0x1b05] = 0x8207, [0x1b06] = 0x8214, [0x1b07] = 0x821e, + [0x1b08] = 0x824b, [0x1b09] = 0x84c9, [0x1b0a] = 0x84bf, [0x1b0b] = 0x84c6, + [0x1b0c] = 0x84c4, [0x1b0d] = 0x8499, [0x1b0e] = 0x849e, [0x1b0f] = 0x84b2, + [0x1b10] = 0x849c, [0x1b11] = 0x84cb, [0x1b12] = 0x84b8, [0x1b13] = 0x84c0, + [0x1b14] = 0x84d3, [0x1b15] = 0x8490, [0x1b16] = 0x84bc, [0x1b17] = 0x84d1, + [0x1b18] = 0x84ca, [0x1b19] = 0x873f, [0x1b1a] = 0x871c, [0x1b1b] = 0x873b, + [0x1b1c] = 0x8722, [0x1b1d] = 0x8725, [0x1b1e] = 0x8734, [0x1b1f] = 0x8718, + [0x1b20] = 0x8755, [0x1b21] = 0x8737, [0x1b22] = 0x8729, [0x1b23] = 0x88f3, + [0x1b24] = 0x8902, [0x1b25] = 0x88f4, [0x1b26] = 0x88f9, [0x1b27] = 0x88f8, + [0x1b28] = 0x88fd, [0x1b29] = 0x88e8, [0x1b2a] = 0x891a, [0x1b2b] = 0x88ef, + [0x1b2c] = 0x8aa6, [0x1b2d] = 0x8a8c, [0x1b2e] = 0x8a9e, [0x1b2f] = 0x8aa3, + [0x1b30] = 0x8a8d, [0x1b31] = 0x8aa1, [0x1b32] = 0x8a93, [0x1b33] = 0x8aa4, + [0x1b34] = 0x8aaa, [0x1b35] = 0x8aa5, [0x1b36] = 0x8aa8, [0x1b37] = 0x8a98, + [0x1b38] = 0x8a91, [0x1b39] = 0x8a9a, [0x1b3a] = 0x8aa7, [0x1b3b] = 0x8c6a, + [0x1b3c] = 0x8c8d, [0x1b3d] = 0x8c8c, [0x1b3e] = 0x8cd3, [0x1b3f] = 0x8cd1, + [0x1b40] = 0x8cd2, [0x1b41] = 0x8d6b, [0x1b42] = 0x8d99, [0x1b43] = 0x8d95, + [0x1b44] = 0x8dfc, [0x1b45] = 0x8f14, [0x1b46] = 0x8f12, [0x1b47] = 0x8f15, + [0x1b48] = 0x8f13, [0x1b49] = 0x8fa3, [0x1b4a] = 0x9060, [0x1b4b] = 0x9058, + [0x1b4c] = 0x905c, [0x1b4d] = 0x9063, [0x1b4e] = 0x9059, [0x1b4f] = 0x905e, + [0x1b50] = 0x9062, [0x1b51] = 0x905d, [0x1b52] = 0x905b, [0x1b53] = 0x9119, + [0x1b54] = 0x9118, [0x1b55] = 0x911e, [0x1b56] = 0x9175, [0x1b57] = 0x9178, + [0x1b58] = 0x9177, [0x1b59] = 0x9174, [0x1b5a] = 0x9278, [0x1b5b] = 0x92ac, + [0x1b5c] = 0x9280, [0x1b5d] = 0x9285, [0x1b5e] = 0x9298, [0x1b5f] = 0x9296, + [0x1b60] = 0x927b, [0x1b61] = 0x9293, [0x1b62] = 0x929c, [0x1b63] = 0x92a8, + [0x1b64] = 0x927c, [0x1b65] = 0x9291, [0x1b66] = 0x95a1, [0x1b67] = 0x95a8, + [0x1b68] = 0x95a9, [0x1b69] = 0x95a3, [0x1b6a] = 0x95a5, [0x1b6b] = 0x95a4, + [0x1b6c] = 0x9699, [0x1b6d] = 0x969c, [0x1b6e] = 0x969b, [0x1b6f] = 0x96cc, + [0x1b70] = 0x96d2, [0x1b71] = 0x9700, [0x1b72] = 0x977c, [0x1b73] = 0x9785, + [0x1b74] = 0x97f6, [0x1b75] = 0x9817, [0x1b76] = 0x9818, [0x1b77] = 0x98af, + [0x1b78] = 0x98b1, [0x1b79] = 0x9903, [0x1b7a] = 0x9905, [0x1b7b] = 0x990c, + [0x1b7c] = 0x9909, [0x1b7d] = 0x99c1, [0x1b7e] = 0x9aaf, [0x1b7f] = 0x9ab0, + [0x1b80] = 0x9ae6, [0x1b81] = 0x9b41, [0x1b82] = 0x9b42, [0x1b83] = 0x9cf4, + [0x1b84] = 0x9cf6, [0x1b85] = 0x9cf3, [0x1b86] = 0x9ebc, [0x1b87] = 0x9f3b, + [0x1b88] = 0x9f4a, [0x1b89] = 0x5104, [0x1b8a] = 0x5100, [0x1b8b] = 0x50fb, + [0x1b8c] = 0x50f5, [0x1b8d] = 0x50f9, [0x1b8e] = 0x5102, [0x1b8f] = 0x5108, + [0x1b90] = 0x5109, [0x1b91] = 0x5105, [0x1b92] = 0x51dc, [0x1b93] = 0x5287, + [0x1b94] = 0x5288, [0x1b95] = 0x5289, [0x1b96] = 0x528d, [0x1b97] = 0x528a, + [0x1b98] = 0x52f0, [0x1b99] = 0x53b2, [0x1b9a] = 0x562e, [0x1b9b] = 0x563b, + [0x1b9c] = 0x5639, [0x1b9d] = 0x5632, [0x1b9e] = 0x563f, [0x1b9f] = 0x5634, + [0x1ba0] = 0x5629, [0x1ba1] = 0x5653, [0x1ba2] = 0x564e, [0x1ba3] = 0x5657, + [0x1ba4] = 0x5674, [0x1ba5] = 0x5636, [0x1ba6] = 0x562f, [0x1ba7] = 0x5630, + [0x1ba8] = 0x5880, [0x1ba9] = 0x589f, [0x1baa] = 0x589e, [0x1bab] = 0x58b3, + [0x1bac] = 0x589c, [0x1bad] = 0x58ae, [0x1bae] = 0x58a9, [0x1baf] = 0x58a6, + [0x1bb0] = 0x596d, [0x1bb1] = 0x5b09, [0x1bb2] = 0x5afb, [0x1bb3] = 0x5b0b, + [0x1bb4] = 0x5af5, [0x1bb5] = 0x5b0c, [0x1bb6] = 0x5b08, [0x1bb7] = 0x5bee, + [0x1bb8] = 0x5bec, [0x1bb9] = 0x5be9, [0x1bba] = 0x5beb, [0x1bbb] = 0x5c64, + [0x1bbc] = 0x5c65, [0x1bbd] = 0x5d9d, [0x1bbe] = 0x5d94, [0x1bbf] = 0x5e62, + [0x1bc0] = 0x5e5f, [0x1bc1] = 0x5e61, [0x1bc2] = 0x5ee2, [0x1bc3] = 0x5eda, + [0x1bc4] = 0x5edf, [0x1bc5] = 0x5edd, [0x1bc6] = 0x5ee3, [0x1bc7] = 0x5ee0, + [0x1bc8] = 0x5f48, [0x1bc9] = 0x5f71, [0x1bca] = 0x5fb7, [0x1bcb] = 0x5fb5, + [0x1bcc] = 0x6176, [0x1bcd] = 0x6167, [0x1bce] = 0x616e, [0x1bcf] = 0x615d, + [0x1bd0] = 0x6155, [0x1bd1] = 0x6182, [0x1bd2] = 0x617c, [0x1bd3] = 0x6170, + [0x1bd4] = 0x616b, [0x1bd5] = 0x617e, [0x1bd6] = 0x61a7, [0x1bd7] = 0x6190, + [0x1bd8] = 0x61ab, [0x1bd9] = 0x618e, [0x1bda] = 0x61ac, [0x1bdb] = 0x619a, + [0x1bdc] = 0x61a4, [0x1bdd] = 0x6194, [0x1bde] = 0x61ae, [0x1bdf] = 0x622e, + [0x1be0] = 0x6469, [0x1be1] = 0x646f, [0x1be2] = 0x6479, [0x1be3] = 0x649e, + [0x1be4] = 0x64b2, [0x1be5] = 0x6488, [0x1be6] = 0x6490, [0x1be7] = 0x64b0, + [0x1be8] = 0x64a5, [0x1be9] = 0x6493, [0x1bea] = 0x6495, [0x1beb] = 0x64a9, + [0x1bec] = 0x6492, [0x1bed] = 0x64ae, [0x1bee] = 0x64ad, [0x1bef] = 0x64ab, + [0x1bf0] = 0x649a, [0x1bf1] = 0x64ac, [0x1bf2] = 0x6499, [0x1bf3] = 0x64a2, + [0x1bf4] = 0x64b3, [0x1bf5] = 0x6575, [0x1bf6] = 0x6577, [0x1bf7] = 0x6578, + [0x1bf8] = 0x66ae, [0x1bf9] = 0x66ab, [0x1bfa] = 0x66b4, [0x1bfb] = 0x66b1, + [0x1bfc] = 0x6a23, [0x1bfd] = 0x6a1f, [0x1bfe] = 0x69e8, [0x1bff] = 0x6a01, + [0x1c00] = 0x6a1e, [0x1c01] = 0x6a19, [0x1c02] = 0x69fd, [0x1c03] = 0x6a21, + [0x1c04] = 0x6a13, [0x1c05] = 0x6a0a, [0x1c06] = 0x69f3, [0x1c07] = 0x6a02, + [0x1c08] = 0x6a05, [0x1c09] = 0x69ed, [0x1c0a] = 0x6a11, [0x1c0b] = 0x6b50, + [0x1c0c] = 0x6b4e, [0x1c0d] = 0x6ba4, [0x1c0e] = 0x6bc5, [0x1c0f] = 0x6bc6, + [0x1c10] = 0x6f3f, [0x1c11] = 0x6f7c, [0x1c12] = 0x6f84, [0x1c13] = 0x6f51, + [0x1c14] = 0x6f66, [0x1c15] = 0x6f54, [0x1c16] = 0x6f86, [0x1c17] = 0x6f6d, + [0x1c18] = 0x6f5b, [0x1c19] = 0x6f78, [0x1c1a] = 0x6f6e, [0x1c1b] = 0x6f8e, + [0x1c1c] = 0x6f7a, [0x1c1d] = 0x6f70, [0x1c1e] = 0x6f64, [0x1c1f] = 0x6f97, + [0x1c20] = 0x6f58, [0x1c21] = 0x6ed5, [0x1c22] = 0x6f6f, [0x1c23] = 0x6f60, + [0x1c24] = 0x6f5f, [0x1c25] = 0x719f, [0x1c26] = 0x71ac, [0x1c27] = 0x71b1, + [0x1c28] = 0x71a8, [0x1c29] = 0x7256, [0x1c2a] = 0x729b, [0x1c2b] = 0x734e, + [0x1c2c] = 0x7357, [0x1c2d] = 0x7469, [0x1c2e] = 0x748b, [0x1c2f] = 0x7483, + [0x1c30] = 0x747e, [0x1c31] = 0x7480, [0x1c32] = 0x757f, [0x1c33] = 0x7620, + [0x1c34] = 0x7629, [0x1c35] = 0x761f, [0x1c36] = 0x7624, [0x1c37] = 0x7626, + [0x1c38] = 0x7621, [0x1c39] = 0x7622, [0x1c3a] = 0x769a, [0x1c3b] = 0x76ba, + [0x1c3c] = 0x76e4, [0x1c3d] = 0x778e, [0x1c3e] = 0x7787, [0x1c3f] = 0x778c, + [0x1c40] = 0x7791, [0x1c41] = 0x778b, [0x1c42] = 0x78cb, [0x1c43] = 0x78c5, + [0x1c44] = 0x78ba, [0x1c45] = 0x78ca, [0x1c46] = 0x78be, [0x1c47] = 0x78d5, + [0x1c48] = 0x78bc, [0x1c49] = 0x78d0, [0x1c4a] = 0x7a3f, [0x1c4b] = 0x7a3c, + [0x1c4c] = 0x7a40, [0x1c4d] = 0x7a3d, [0x1c4e] = 0x7a37, [0x1c4f] = 0x7a3b, + [0x1c50] = 0x7aaf, [0x1c51] = 0x7aae, [0x1c52] = 0x7bad, [0x1c53] = 0x7bb1, + [0x1c54] = 0x7bc4, [0x1c55] = 0x7bb4, [0x1c56] = 0x7bc6, [0x1c57] = 0x7bc7, + [0x1c58] = 0x7bc1, [0x1c59] = 0x7ba0, [0x1c5a] = 0x7bcc, [0x1c5b] = 0x7cca, + [0x1c5c] = 0x7de0, [0x1c5d] = 0x7df4, [0x1c5e] = 0x7def, [0x1c5f] = 0x7dfb, + [0x1c60] = 0x7dd8, [0x1c61] = 0x7dec, [0x1c62] = 0x7ddd, [0x1c63] = 0x7de8, + [0x1c64] = 0x7de3, [0x1c65] = 0x7dda, [0x1c66] = 0x7dde, [0x1c67] = 0x7de9, + [0x1c68] = 0x7d9e, [0x1c69] = 0x7dd9, [0x1c6a] = 0x7df2, [0x1c6b] = 0x7df9, + [0x1c6c] = 0x7f75, [0x1c6d] = 0x7f77, [0x1c6e] = 0x7faf, [0x1c6f] = 0x7fe9, + [0x1c70] = 0x8026, [0x1c71] = 0x819b, [0x1c72] = 0x819c, [0x1c73] = 0x819d, + [0x1c74] = 0x81a0, [0x1c75] = 0x819a, [0x1c76] = 0x8198, [0x1c77] = 0x8517, + [0x1c78] = 0x853d, [0x1c79] = 0x851a, [0x1c7a] = 0x84ee, [0x1c7b] = 0x852c, + [0x1c7c] = 0x852d, [0x1c7d] = 0x8513, [0x1c7e] = 0x8511, [0x1c7f] = 0x8523, + [0x1c80] = 0x8521, [0x1c81] = 0x8514, [0x1c82] = 0x84ec, [0x1c83] = 0x8525, + [0x1c84] = 0x84ff, [0x1c85] = 0x8506, [0x1c86] = 0x8782, [0x1c87] = 0x8774, + [0x1c88] = 0x8776, [0x1c89] = 0x8760, [0x1c8a] = 0x8766, [0x1c8b] = 0x8778, + [0x1c8c] = 0x8768, [0x1c8d] = 0x8759, [0x1c8e] = 0x8757, [0x1c8f] = 0x874c, + [0x1c90] = 0x8753, [0x1c91] = 0x885b, [0x1c92] = 0x885d, [0x1c93] = 0x8910, + [0x1c94] = 0x8907, [0x1c95] = 0x8912, [0x1c96] = 0x8913, [0x1c97] = 0x8915, + [0x1c98] = 0x890a, [0x1c99] = 0x8abc, [0x1c9a] = 0x8ad2, [0x1c9b] = 0x8ac7, + [0x1c9c] = 0x8ac4, [0x1c9d] = 0x8a95, [0x1c9e] = 0x8acb, [0x1c9f] = 0x8af8, + [0x1ca0] = 0x8ab2, [0x1ca1] = 0x8ac9, [0x1ca2] = 0x8ac2, [0x1ca3] = 0x8abf, + [0x1ca4] = 0x8ab0, [0x1ca5] = 0x8ad6, [0x1ca6] = 0x8acd, [0x1ca7] = 0x8ab6, + [0x1ca8] = 0x8ab9, [0x1ca9] = 0x8adb, [0x1caa] = 0x8c4c, [0x1cab] = 0x8c4e, + [0x1cac] = 0x8c6c, [0x1cad] = 0x8ce0, [0x1cae] = 0x8cde, [0x1caf] = 0x8ce6, + [0x1cb0] = 0x8ce4, [0x1cb1] = 0x8cec, [0x1cb2] = 0x8ced, [0x1cb3] = 0x8ce2, + [0x1cb4] = 0x8ce3, [0x1cb5] = 0x8cdc, [0x1cb6] = 0x8cea, [0x1cb7] = 0x8ce1, + [0x1cb8] = 0x8d6d, [0x1cb9] = 0x8d9f, [0x1cba] = 0x8da3, [0x1cbb] = 0x8e2b, + [0x1cbc] = 0x8e10, [0x1cbd] = 0x8e1d, [0x1cbe] = 0x8e22, [0x1cbf] = 0x8e0f, + [0x1cc0] = 0x8e29, [0x1cc1] = 0x8e1f, [0x1cc2] = 0x8e21, [0x1cc3] = 0x8e1e, + [0x1cc4] = 0x8eba, [0x1cc5] = 0x8f1d, [0x1cc6] = 0x8f1b, [0x1cc7] = 0x8f1f, + [0x1cc8] = 0x8f29, [0x1cc9] = 0x8f26, [0x1cca] = 0x8f2a, [0x1ccb] = 0x8f1c, + [0x1ccc] = 0x8f1e, [0x1ccd] = 0x8f25, [0x1cce] = 0x9069, [0x1ccf] = 0x906e, + [0x1cd0] = 0x9068, [0x1cd1] = 0x906d, [0x1cd2] = 0x9077, [0x1cd3] = 0x9130, + [0x1cd4] = 0x912d, [0x1cd5] = 0x9127, [0x1cd6] = 0x9131, [0x1cd7] = 0x9187, + [0x1cd8] = 0x9189, [0x1cd9] = 0x918b, [0x1cda] = 0x9183, [0x1cdb] = 0x92c5, + [0x1cdc] = 0x92bb, [0x1cdd] = 0x92b7, [0x1cde] = 0x92ea, [0x1cdf] = 0x92e4, + [0x1ce0] = 0x92c1, [0x1ce1] = 0x92b3, [0x1ce2] = 0x92bc, [0x1ce3] = 0x92d2, + [0x1ce4] = 0x92c7, [0x1ce5] = 0x92f0, [0x1ce6] = 0x92b2, [0x1ce7] = 0x95ad, + [0x1ce8] = 0x95b1, [0x1ce9] = 0x9704, [0x1cea] = 0x9706, [0x1ceb] = 0x9707, + [0x1cec] = 0x9709, [0x1ced] = 0x9760, [0x1cee] = 0x978d, [0x1cef] = 0x978b, + [0x1cf0] = 0x978f, [0x1cf1] = 0x9821, [0x1cf2] = 0x982b, [0x1cf3] = 0x981c, + [0x1cf4] = 0x98b3, [0x1cf5] = 0x990a, [0x1cf6] = 0x9913, [0x1cf7] = 0x9912, + [0x1cf8] = 0x9918, [0x1cf9] = 0x99dd, [0x1cfa] = 0x99d0, [0x1cfb] = 0x99df, + [0x1cfc] = 0x99db, [0x1cfd] = 0x99d1, [0x1cfe] = 0x99d5, [0x1cff] = 0x99d2, + [0x1d00] = 0x99d9, [0x1d01] = 0x9ab7, [0x1d02] = 0x9aee, [0x1d03] = 0x9aef, + [0x1d04] = 0x9b27, [0x1d05] = 0x9b45, [0x1d06] = 0x9b44, [0x1d07] = 0x9b77, + [0x1d08] = 0x9b6f, [0x1d09] = 0x9d06, [0x1d0a] = 0x9d09, [0x1d0b] = 0x9d03, + [0x1d0c] = 0x9ea9, [0x1d0d] = 0x9ebe, [0x1d0e] = 0x9ece, [0x1d0f] = 0x58a8, + [0x1d10] = 0x9f52, [0x1d11] = 0x5112, [0x1d12] = 0x5118, [0x1d13] = 0x5114, + [0x1d14] = 0x5110, [0x1d15] = 0x5115, [0x1d16] = 0x5180, [0x1d17] = 0x51aa, + [0x1d18] = 0x51dd, [0x1d19] = 0x5291, [0x1d1a] = 0x5293, [0x1d1b] = 0x52f3, + [0x1d1c] = 0x5659, [0x1d1d] = 0x566b, [0x1d1e] = 0x5679, [0x1d1f] = 0x5669, + [0x1d20] = 0x5664, [0x1d21] = 0x5678, [0x1d22] = 0x566a, [0x1d23] = 0x5668, + [0x1d24] = 0x5665, [0x1d25] = 0x5671, [0x1d26] = 0x566f, [0x1d27] = 0x566c, + [0x1d28] = 0x5662, [0x1d29] = 0x5676, [0x1d2a] = 0x58c1, [0x1d2b] = 0x58be, + [0x1d2c] = 0x58c7, [0x1d2d] = 0x58c5, [0x1d2e] = 0x596e, [0x1d2f] = 0x5b1d, + [0x1d30] = 0x5b34, [0x1d31] = 0x5b78, [0x1d32] = 0x5bf0, [0x1d33] = 0x5c0e, + [0x1d34] = 0x5f4a, [0x1d35] = 0x61b2, [0x1d36] = 0x6191, [0x1d37] = 0x61a9, + [0x1d38] = 0x618a, [0x1d39] = 0x61cd, [0x1d3a] = 0x61b6, [0x1d3b] = 0x61be, + [0x1d3c] = 0x61ca, [0x1d3d] = 0x61c8, [0x1d3e] = 0x6230, [0x1d3f] = 0x64c5, + [0x1d40] = 0x64c1, [0x1d41] = 0x64cb, [0x1d42] = 0x64bb, [0x1d43] = 0x64bc, + [0x1d44] = 0x64da, [0x1d45] = 0x64c4, [0x1d46] = 0x64c7, [0x1d47] = 0x64c2, + [0x1d48] = 0x64cd, [0x1d49] = 0x64bf, [0x1d4a] = 0x64d2, [0x1d4b] = 0x64d4, + [0x1d4c] = 0x64be, [0x1d4d] = 0x6574, [0x1d4e] = 0x66c6, [0x1d4f] = 0x66c9, + [0x1d50] = 0x66b9, [0x1d51] = 0x66c4, [0x1d52] = 0x66c7, [0x1d53] = 0x66b8, + [0x1d54] = 0x6a3d, [0x1d55] = 0x6a38, [0x1d56] = 0x6a3a, [0x1d57] = 0x6a59, + [0x1d58] = 0x6a6b, [0x1d59] = 0x6a58, [0x1d5a] = 0x6a39, [0x1d5b] = 0x6a44, + [0x1d5c] = 0x6a62, [0x1d5d] = 0x6a61, [0x1d5e] = 0x6a4b, [0x1d5f] = 0x6a47, + [0x1d60] = 0x6a35, [0x1d61] = 0x6a5f, [0x1d62] = 0x6a48, [0x1d63] = 0x6b59, + [0x1d64] = 0x6b77, [0x1d65] = 0x6c05, [0x1d66] = 0x6fc2, [0x1d67] = 0x6fb1, + [0x1d68] = 0x6fa1, [0x1d69] = 0x6fc3, [0x1d6a] = 0x6fa4, [0x1d6b] = 0x6fc1, + [0x1d6c] = 0x6fa7, [0x1d6d] = 0x6fb3, [0x1d6e] = 0x6fc0, [0x1d6f] = 0x6fb9, + [0x1d70] = 0x6fb6, [0x1d71] = 0x6fa6, [0x1d72] = 0x6fa0, [0x1d73] = 0x6fb4, + [0x1d74] = 0x71be, [0x1d75] = 0x71c9, [0x1d76] = 0x71d0, [0x1d77] = 0x71d2, + [0x1d78] = 0x71c8, [0x1d79] = 0x71d5, [0x1d7a] = 0x71b9, [0x1d7b] = 0x71ce, + [0x1d7c] = 0x71d9, [0x1d7d] = 0x71dc, [0x1d7e] = 0x71c3, [0x1d7f] = 0x71c4, + [0x1d80] = 0x7368, [0x1d81] = 0x749c, [0x1d82] = 0x74a3, [0x1d83] = 0x7498, + [0x1d84] = 0x749f, [0x1d85] = 0x749e, [0x1d86] = 0x74e2, [0x1d87] = 0x750c, + [0x1d88] = 0x750d, [0x1d89] = 0x7634, [0x1d8a] = 0x7638, [0x1d8b] = 0x763a, + [0x1d8c] = 0x76e7, [0x1d8d] = 0x76e5, [0x1d8e] = 0x77a0, [0x1d8f] = 0x779e, + [0x1d90] = 0x779f, [0x1d91] = 0x77a5, [0x1d92] = 0x78e8, [0x1d93] = 0x78da, + [0x1d94] = 0x78ec, [0x1d95] = 0x78e7, [0x1d96] = 0x79a6, [0x1d97] = 0x7a4d, + [0x1d98] = 0x7a4e, [0x1d99] = 0x7a46, [0x1d9a] = 0x7a4c, [0x1d9b] = 0x7a4b, + [0x1d9c] = 0x7aba, [0x1d9d] = 0x7bd9, [0x1d9e] = 0x7c11, [0x1d9f] = 0x7bc9, + [0x1da0] = 0x7be4, [0x1da1] = 0x7bdb, [0x1da2] = 0x7be1, [0x1da3] = 0x7be9, + [0x1da4] = 0x7be6, [0x1da5] = 0x7cd5, [0x1da6] = 0x7cd6, [0x1da7] = 0x7e0a, + [0x1da8] = 0x7e11, [0x1da9] = 0x7e08, [0x1daa] = 0x7e1b, [0x1dab] = 0x7e23, + [0x1dac] = 0x7e1e, [0x1dad] = 0x7e1d, [0x1dae] = 0x7e09, [0x1daf] = 0x7e10, + [0x1db0] = 0x7f79, [0x1db1] = 0x7fb2, [0x1db2] = 0x7ff0, [0x1db3] = 0x7ff1, + [0x1db4] = 0x7fee, [0x1db5] = 0x8028, [0x1db6] = 0x81b3, [0x1db7] = 0x81a9, + [0x1db8] = 0x81a8, [0x1db9] = 0x81fb, [0x1dba] = 0x8208, [0x1dbb] = 0x8258, + [0x1dbc] = 0x8259, [0x1dbd] = 0x854a, [0x1dbe] = 0x8559, [0x1dbf] = 0x8548, + [0x1dc0] = 0x8568, [0x1dc1] = 0x8569, [0x1dc2] = 0x8543, [0x1dc3] = 0x8549, + [0x1dc4] = 0x856d, [0x1dc5] = 0x856a, [0x1dc6] = 0x855e, [0x1dc7] = 0x8783, + [0x1dc8] = 0x879f, [0x1dc9] = 0x879e, [0x1dca] = 0x87a2, [0x1dcb] = 0x878d, + [0x1dcc] = 0x8861, [0x1dcd] = 0x892a, [0x1dce] = 0x8932, [0x1dcf] = 0x8925, + [0x1dd0] = 0x892b, [0x1dd1] = 0x8921, [0x1dd2] = 0x89aa, [0x1dd3] = 0x89a6, + [0x1dd4] = 0x8ae6, [0x1dd5] = 0x8afa, [0x1dd6] = 0x8aeb, [0x1dd7] = 0x8af1, + [0x1dd8] = 0x8b00, [0x1dd9] = 0x8adc, [0x1dda] = 0x8ae7, [0x1ddb] = 0x8aee, + [0x1ddc] = 0x8afe, [0x1ddd] = 0x8b01, [0x1dde] = 0x8b02, [0x1ddf] = 0x8af7, + [0x1de0] = 0x8aed, [0x1de1] = 0x8af3, [0x1de2] = 0x8af6, [0x1de3] = 0x8afc, + [0x1de4] = 0x8c6b, [0x1de5] = 0x8c6d, [0x1de6] = 0x8c93, [0x1de7] = 0x8cf4, + [0x1de8] = 0x8e44, [0x1de9] = 0x8e31, [0x1dea] = 0x8e34, [0x1deb] = 0x8e42, + [0x1dec] = 0x8e39, [0x1ded] = 0x8e35, [0x1dee] = 0x8f3b, [0x1def] = 0x8f2f, + [0x1df0] = 0x8f38, [0x1df1] = 0x8f33, [0x1df2] = 0x8fa8, [0x1df3] = 0x8fa6, + [0x1df4] = 0x9075, [0x1df5] = 0x9074, [0x1df6] = 0x9078, [0x1df7] = 0x9072, + [0x1df8] = 0x907c, [0x1df9] = 0x907a, [0x1dfa] = 0x9134, [0x1dfb] = 0x9192, + [0x1dfc] = 0x9320, [0x1dfd] = 0x9336, [0x1dfe] = 0x92f8, [0x1dff] = 0x9333, + [0x1e00] = 0x932f, [0x1e01] = 0x9322, [0x1e02] = 0x92fc, [0x1e03] = 0x932b, + [0x1e04] = 0x9304, [0x1e05] = 0x931a, [0x1e06] = 0x9310, [0x1e07] = 0x9326, + [0x1e08] = 0x9321, [0x1e09] = 0x9315, [0x1e0a] = 0x932e, [0x1e0b] = 0x9319, + [0x1e0c] = 0x95bb, [0x1e0d] = 0x96a7, [0x1e0e] = 0x96a8, [0x1e0f] = 0x96aa, + [0x1e10] = 0x96d5, [0x1e11] = 0x970e, [0x1e12] = 0x9711, [0x1e13] = 0x9716, + [0x1e14] = 0x970d, [0x1e15] = 0x9713, [0x1e16] = 0x970f, [0x1e17] = 0x975b, + [0x1e18] = 0x975c, [0x1e19] = 0x9766, [0x1e1a] = 0x9798, [0x1e1b] = 0x9830, + [0x1e1c] = 0x9838, [0x1e1d] = 0x983b, [0x1e1e] = 0x9837, [0x1e1f] = 0x982d, + [0x1e20] = 0x9839, [0x1e21] = 0x9824, [0x1e22] = 0x9910, [0x1e23] = 0x9928, + [0x1e24] = 0x991e, [0x1e25] = 0x991b, [0x1e26] = 0x9921, [0x1e27] = 0x991a, + [0x1e28] = 0x99ed, [0x1e29] = 0x99e2, [0x1e2a] = 0x99f1, [0x1e2b] = 0x9ab8, + [0x1e2c] = 0x9abc, [0x1e2d] = 0x9afb, [0x1e2e] = 0x9aed, [0x1e2f] = 0x9b28, + [0x1e30] = 0x9b91, [0x1e31] = 0x9d15, [0x1e32] = 0x9d23, [0x1e33] = 0x9d26, + [0x1e34] = 0x9d28, [0x1e35] = 0x9d12, [0x1e36] = 0x9d1b, [0x1e37] = 0x9ed8, + [0x1e38] = 0x9ed4, [0x1e39] = 0x9f8d, [0x1e3a] = 0x9f9c, [0x1e3b] = 0x512a, + [0x1e3c] = 0x511f, [0x1e3d] = 0x5121, [0x1e3e] = 0x5132, [0x1e3f] = 0x52f5, + [0x1e40] = 0x568e, [0x1e41] = 0x5680, [0x1e42] = 0x5690, [0x1e43] = 0x5685, + [0x1e44] = 0x5687, [0x1e45] = 0x568f, [0x1e46] = 0x58d5, [0x1e47] = 0x58d3, + [0x1e48] = 0x58d1, [0x1e49] = 0x58ce, [0x1e4a] = 0x5b30, [0x1e4b] = 0x5b2a, + [0x1e4c] = 0x5b24, [0x1e4d] = 0x5b7a, [0x1e4e] = 0x5c37, [0x1e4f] = 0x5c68, + [0x1e50] = 0x5dbc, [0x1e51] = 0x5dba, [0x1e52] = 0x5dbd, [0x1e53] = 0x5db8, + [0x1e54] = 0x5e6b, [0x1e55] = 0x5f4c, [0x1e56] = 0x5fbd, [0x1e57] = 0x61c9, + [0x1e58] = 0x61c2, [0x1e59] = 0x61c7, [0x1e5a] = 0x61e6, [0x1e5b] = 0x61cb, + [0x1e5c] = 0x6232, [0x1e5d] = 0x6234, [0x1e5e] = 0x64ce, [0x1e5f] = 0x64ca, + [0x1e60] = 0x64d8, [0x1e61] = 0x64e0, [0x1e62] = 0x64f0, [0x1e63] = 0x64e6, + [0x1e64] = 0x64ec, [0x1e65] = 0x64f1, [0x1e66] = 0x64e2, [0x1e67] = 0x64ed, + [0x1e68] = 0x6582, [0x1e69] = 0x6583, [0x1e6a] = 0x66d9, [0x1e6b] = 0x66d6, + [0x1e6c] = 0x6a80, [0x1e6d] = 0x6a94, [0x1e6e] = 0x6a84, [0x1e6f] = 0x6aa2, + [0x1e70] = 0x6a9c, [0x1e71] = 0x6adb, [0x1e72] = 0x6aa3, [0x1e73] = 0x6a7e, + [0x1e74] = 0x6a97, [0x1e75] = 0x6a90, [0x1e76] = 0x6aa0, [0x1e77] = 0x6b5c, + [0x1e78] = 0x6bae, [0x1e79] = 0x6bda, [0x1e7a] = 0x6c08, [0x1e7b] = 0x6fd8, + [0x1e7c] = 0x6ff1, [0x1e7d] = 0x6fdf, [0x1e7e] = 0x6fe0, [0x1e7f] = 0x6fdb, + [0x1e80] = 0x6fe4, [0x1e81] = 0x6feb, [0x1e82] = 0x6fef, [0x1e83] = 0x6f80, + [0x1e84] = 0x6fec, [0x1e85] = 0x6fe1, [0x1e86] = 0x6fe9, [0x1e87] = 0x6fd5, + [0x1e88] = 0x6fee, [0x1e89] = 0x6ff0, [0x1e8a] = 0x71e7, [0x1e8b] = 0x71df, + [0x1e8c] = 0x71ee, [0x1e8d] = 0x71e6, [0x1e8e] = 0x71e5, [0x1e8f] = 0x71ed, + [0x1e90] = 0x71ec, [0x1e91] = 0x71f4, [0x1e92] = 0x71e0, [0x1e93] = 0x7235, + [0x1e94] = 0x7246, [0x1e95] = 0x7370, [0x1e96] = 0x7372, [0x1e97] = 0x74a9, + [0x1e98] = 0x74b0, [0x1e99] = 0x74a6, [0x1e9a] = 0x74a8, [0x1e9b] = 0x7646, + [0x1e9c] = 0x7642, [0x1e9d] = 0x764c, [0x1e9e] = 0x76ea, [0x1e9f] = 0x77b3, + [0x1ea0] = 0x77aa, [0x1ea1] = 0x77b0, [0x1ea2] = 0x77ac, [0x1ea3] = 0x77a7, + [0x1ea4] = 0x77ad, [0x1ea5] = 0x77ef, [0x1ea6] = 0x78f7, [0x1ea7] = 0x78fa, + [0x1ea8] = 0x78f4, [0x1ea9] = 0x78ef, [0x1eaa] = 0x7901, [0x1eab] = 0x79a7, + [0x1eac] = 0x79aa, [0x1ead] = 0x7a57, [0x1eae] = 0x7abf, [0x1eaf] = 0x7c07, + [0x1eb0] = 0x7c0d, [0x1eb1] = 0x7bfe, [0x1eb2] = 0x7bf7, [0x1eb3] = 0x7c0c, + [0x1eb4] = 0x7be0, [0x1eb5] = 0x7ce0, [0x1eb6] = 0x7cdc, [0x1eb7] = 0x7cde, + [0x1eb8] = 0x7ce2, [0x1eb9] = 0x7cdf, [0x1eba] = 0x7cd9, [0x1ebb] = 0x7cdd, + [0x1ebc] = 0x7e2e, [0x1ebd] = 0x7e3e, [0x1ebe] = 0x7e46, [0x1ebf] = 0x7e37, + [0x1ec0] = 0x7e32, [0x1ec1] = 0x7e43, [0x1ec2] = 0x7e2b, [0x1ec3] = 0x7e3d, + [0x1ec4] = 0x7e31, [0x1ec5] = 0x7e45, [0x1ec6] = 0x7e41, [0x1ec7] = 0x7e34, + [0x1ec8] = 0x7e39, [0x1ec9] = 0x7e48, [0x1eca] = 0x7e35, [0x1ecb] = 0x7e3f, + [0x1ecc] = 0x7e2f, [0x1ecd] = 0x7f44, [0x1ece] = 0x7ff3, [0x1ecf] = 0x7ffc, + [0x1ed0] = 0x8071, [0x1ed1] = 0x8072, [0x1ed2] = 0x8070, [0x1ed3] = 0x806f, + [0x1ed4] = 0x8073, [0x1ed5] = 0x81c6, [0x1ed6] = 0x81c3, [0x1ed7] = 0x81ba, + [0x1ed8] = 0x81c2, [0x1ed9] = 0x81c0, [0x1eda] = 0x81bf, [0x1edb] = 0x81bd, + [0x1edc] = 0x81c9, [0x1edd] = 0x81be, [0x1ede] = 0x81e8, [0x1edf] = 0x8209, + [0x1ee0] = 0x8271, [0x1ee1] = 0x85aa, [0x1ee2] = 0x8584, [0x1ee3] = 0x857e, + [0x1ee4] = 0x859c, [0x1ee5] = 0x8591, [0x1ee6] = 0x8594, [0x1ee7] = 0x85af, + [0x1ee8] = 0x859b, [0x1ee9] = 0x8587, [0x1eea] = 0x85a8, [0x1eeb] = 0x858a, + [0x1eec] = 0x85a6, [0x1eed] = 0x8667, [0x1eee] = 0x87c0, [0x1eef] = 0x87d1, + [0x1ef0] = 0x87b3, [0x1ef1] = 0x87d2, [0x1ef2] = 0x87c6, [0x1ef3] = 0x87ab, + [0x1ef4] = 0x87bb, [0x1ef5] = 0x87ba, [0x1ef6] = 0x87c8, [0x1ef7] = 0x87cb, + [0x1ef8] = 0x893b, [0x1ef9] = 0x8936, [0x1efa] = 0x8944, [0x1efb] = 0x8938, + [0x1efc] = 0x893d, [0x1efd] = 0x89ac, [0x1efe] = 0x8b0e, [0x1eff] = 0x8b17, + [0x1f00] = 0x8b19, [0x1f01] = 0x8b1b, [0x1f02] = 0x8b0a, [0x1f03] = 0x8b20, + [0x1f04] = 0x8b1d, [0x1f05] = 0x8b04, [0x1f06] = 0x8b10, [0x1f07] = 0x8c41, + [0x1f08] = 0x8c3f, [0x1f09] = 0x8c73, [0x1f0a] = 0x8cfa, [0x1f0b] = 0x8cfd, + [0x1f0c] = 0x8cfc, [0x1f0d] = 0x8cf8, [0x1f0e] = 0x8cfb, [0x1f0f] = 0x8da8, + [0x1f10] = 0x8e49, [0x1f11] = 0x8e4b, [0x1f12] = 0x8e48, [0x1f13] = 0x8e4a, + [0x1f14] = 0x8f44, [0x1f15] = 0x8f3e, [0x1f16] = 0x8f42, [0x1f17] = 0x8f45, + [0x1f18] = 0x8f3f, [0x1f19] = 0x907f, [0x1f1a] = 0x907d, [0x1f1b] = 0x9084, + [0x1f1c] = 0x9081, [0x1f1d] = 0x9082, [0x1f1e] = 0x9080, [0x1f1f] = 0x9139, + [0x1f20] = 0x91a3, [0x1f21] = 0x919e, [0x1f22] = 0x919c, [0x1f23] = 0x934d, + [0x1f24] = 0x9382, [0x1f25] = 0x9328, [0x1f26] = 0x9375, [0x1f27] = 0x934a, + [0x1f28] = 0x9365, [0x1f29] = 0x934b, [0x1f2a] = 0x9318, [0x1f2b] = 0x937e, + [0x1f2c] = 0x936c, [0x1f2d] = 0x935b, [0x1f2e] = 0x9370, [0x1f2f] = 0x935a, + [0x1f30] = 0x9354, [0x1f31] = 0x95ca, [0x1f32] = 0x95cb, [0x1f33] = 0x95cc, + [0x1f34] = 0x95c8, [0x1f35] = 0x95c6, [0x1f36] = 0x96b1, [0x1f37] = 0x96b8, + [0x1f38] = 0x96d6, [0x1f39] = 0x971c, [0x1f3a] = 0x971e, [0x1f3b] = 0x97a0, + [0x1f3c] = 0x97d3, [0x1f3d] = 0x9846, [0x1f3e] = 0x98b6, [0x1f3f] = 0x9935, + [0x1f40] = 0x9a01, [0x1f41] = 0x99ff, [0x1f42] = 0x9bae, [0x1f43] = 0x9bab, + [0x1f44] = 0x9baa, [0x1f45] = 0x9bad, [0x1f46] = 0x9d3b, [0x1f47] = 0x9d3f, + [0x1f48] = 0x9e8b, [0x1f49] = 0x9ecf, [0x1f4a] = 0x9ede, [0x1f4b] = 0x9edc, + [0x1f4c] = 0x9edd, [0x1f4d] = 0x9edb, [0x1f4e] = 0x9f3e, [0x1f4f] = 0x9f4b, + [0x1f50] = 0x53e2, [0x1f51] = 0x5695, [0x1f52] = 0x56ae, [0x1f53] = 0x58d9, + [0x1f54] = 0x58d8, [0x1f55] = 0x5b38, [0x1f56] = 0x5f5e, [0x1f57] = 0x61e3, + [0x1f58] = 0x6233, [0x1f59] = 0x64f4, [0x1f5a] = 0x64f2, [0x1f5b] = 0x64fe, + [0x1f5c] = 0x6506, [0x1f5d] = 0x64fa, [0x1f5e] = 0x64fb, [0x1f5f] = 0x64f7, + [0x1f60] = 0x65b7, [0x1f61] = 0x66dc, [0x1f62] = 0x6726, [0x1f63] = 0x6ab3, + [0x1f64] = 0x6aac, [0x1f65] = 0x6ac3, [0x1f66] = 0x6abb, [0x1f67] = 0x6ab8, + [0x1f68] = 0x6ac2, [0x1f69] = 0x6aae, [0x1f6a] = 0x6aaf, [0x1f6b] = 0x6b5f, + [0x1f6c] = 0x6b78, [0x1f6d] = 0x6baf, [0x1f6e] = 0x7009, [0x1f6f] = 0x700b, + [0x1f70] = 0x6ffe, [0x1f71] = 0x7006, [0x1f72] = 0x6ffa, [0x1f73] = 0x7011, + [0x1f74] = 0x700f, [0x1f75] = 0x71fb, [0x1f76] = 0x71fc, [0x1f77] = 0x71fe, + [0x1f78] = 0x71f8, [0x1f79] = 0x7377, [0x1f7a] = 0x7375, [0x1f7b] = 0x74a7, + [0x1f7c] = 0x74bf, [0x1f7d] = 0x7515, [0x1f7e] = 0x7656, [0x1f7f] = 0x7658, + [0x1f80] = 0x7652, [0x1f81] = 0x77bd, [0x1f82] = 0x77bf, [0x1f83] = 0x77bb, + [0x1f84] = 0x77bc, [0x1f85] = 0x790e, [0x1f86] = 0x79ae, [0x1f87] = 0x7a61, + [0x1f88] = 0x7a62, [0x1f89] = 0x7a60, [0x1f8a] = 0x7ac4, [0x1f8b] = 0x7ac5, + [0x1f8c] = 0x7c2b, [0x1f8d] = 0x7c27, [0x1f8e] = 0x7c2a, [0x1f8f] = 0x7c1e, + [0x1f90] = 0x7c23, [0x1f91] = 0x7c21, [0x1f92] = 0x7ce7, [0x1f93] = 0x7e54, + [0x1f94] = 0x7e55, [0x1f95] = 0x7e5e, [0x1f96] = 0x7e5a, [0x1f97] = 0x7e61, + [0x1f98] = 0x7e52, [0x1f99] = 0x7e59, [0x1f9a] = 0x7f48, [0x1f9b] = 0x7ff9, + [0x1f9c] = 0x7ffb, [0x1f9d] = 0x8077, [0x1f9e] = 0x8076, [0x1f9f] = 0x81cd, + [0x1fa0] = 0x81cf, [0x1fa1] = 0x820a, [0x1fa2] = 0x85cf, [0x1fa3] = 0x85a9, + [0x1fa4] = 0x85cd, [0x1fa5] = 0x85d0, [0x1fa6] = 0x85c9, [0x1fa7] = 0x85b0, + [0x1fa8] = 0x85ba, [0x1fa9] = 0x85b9, [0x1faa] = 0x87ef, [0x1fab] = 0x87ec, + [0x1fac] = 0x87f2, [0x1fad] = 0x87e0, [0x1fae] = 0x8986, [0x1faf] = 0x89b2, + [0x1fb0] = 0x89f4, [0x1fb1] = 0x8b28, [0x1fb2] = 0x8b39, [0x1fb3] = 0x8b2c, + [0x1fb4] = 0x8b2b, [0x1fb5] = 0x8c50, [0x1fb6] = 0x8d05, [0x1fb7] = 0x8e59, + [0x1fb8] = 0x8e63, [0x1fb9] = 0x8e66, [0x1fba] = 0x8e64, [0x1fbb] = 0x8e5f, + [0x1fbc] = 0x8e55, [0x1fbd] = 0x8ec0, [0x1fbe] = 0x8f49, [0x1fbf] = 0x8f4d, + [0x1fc0] = 0x9087, [0x1fc1] = 0x9083, [0x1fc2] = 0x9088, [0x1fc3] = 0x91ab, + [0x1fc4] = 0x91ac, [0x1fc5] = 0x91d0, [0x1fc6] = 0x9394, [0x1fc7] = 0x938a, + [0x1fc8] = 0x9396, [0x1fc9] = 0x93a2, [0x1fca] = 0x93b3, [0x1fcb] = 0x93ae, + [0x1fcc] = 0x93ac, [0x1fcd] = 0x93b0, [0x1fce] = 0x9398, [0x1fcf] = 0x939a, + [0x1fd0] = 0x9397, [0x1fd1] = 0x95d4, [0x1fd2] = 0x95d6, [0x1fd3] = 0x95d0, + [0x1fd4] = 0x95d5, [0x1fd5] = 0x96e2, [0x1fd6] = 0x96dc, [0x1fd7] = 0x96d9, + [0x1fd8] = 0x96db, [0x1fd9] = 0x96de, [0x1fda] = 0x9724, [0x1fdb] = 0x97a3, + [0x1fdc] = 0x97a6, [0x1fdd] = 0x97ad, [0x1fde] = 0x97f9, [0x1fdf] = 0x984d, + [0x1fe0] = 0x984f, [0x1fe1] = 0x984c, [0x1fe2] = 0x984e, [0x1fe3] = 0x9853, + [0x1fe4] = 0x98ba, [0x1fe5] = 0x993e, [0x1fe6] = 0x993f, [0x1fe7] = 0x993d, + [0x1fe8] = 0x992e, [0x1fe9] = 0x99a5, [0x1fea] = 0x9a0e, [0x1feb] = 0x9ac1, + [0x1fec] = 0x9b03, [0x1fed] = 0x9b06, [0x1fee] = 0x9b4f, [0x1fef] = 0x9b4e, + [0x1ff0] = 0x9b4d, [0x1ff1] = 0x9bca, [0x1ff2] = 0x9bc9, [0x1ff3] = 0x9bfd, + [0x1ff4] = 0x9bc8, [0x1ff5] = 0x9bc0, [0x1ff6] = 0x9d51, [0x1ff7] = 0x9d5d, + [0x1ff8] = 0x9d60, [0x1ff9] = 0x9ee0, [0x1ffa] = 0x9f15, [0x1ffb] = 0x9f2c, + [0x1ffc] = 0x5133, [0x1ffd] = 0x56a5, [0x1ffe] = 0x56a8, [0x1fff] = 0x58de, + [0x2000] = 0x58df, [0x2001] = 0x58e2, [0x2002] = 0x5bf5, [0x2003] = 0x9f90, + [0x2004] = 0x5eec, [0x2005] = 0x61f2, [0x2006] = 0x61f7, [0x2007] = 0x61f6, + [0x2008] = 0x61f5, [0x2009] = 0x6500, [0x200a] = 0x650f, [0x200b] = 0x66e0, + [0x200c] = 0x66dd, [0x200d] = 0x6ae5, [0x200e] = 0x6add, [0x200f] = 0x6ada, + [0x2010] = 0x6ad3, [0x2011] = 0x701b, [0x2012] = 0x701f, [0x2013] = 0x7028, + [0x2014] = 0x701a, [0x2015] = 0x701d, [0x2016] = 0x7015, [0x2017] = 0x7018, + [0x2018] = 0x7206, [0x2019] = 0x720d, [0x201a] = 0x7258, [0x201b] = 0x72a2, + [0x201c] = 0x7378, [0x201d] = 0x737a, [0x201e] = 0x74bd, [0x201f] = 0x74ca, + [0x2020] = 0x74e3, [0x2021] = 0x7587, [0x2022] = 0x7586, [0x2023] = 0x765f, + [0x2024] = 0x7661, [0x2025] = 0x77c7, [0x2026] = 0x7919, [0x2027] = 0x79b1, + [0x2028] = 0x7a6b, [0x2029] = 0x7a69, [0x202a] = 0x7c3e, [0x202b] = 0x7c3f, + [0x202c] = 0x7c38, [0x202d] = 0x7c3d, [0x202e] = 0x7c37, [0x202f] = 0x7c40, + [0x2030] = 0x7e6b, [0x2031] = 0x7e6d, [0x2032] = 0x7e79, [0x2033] = 0x7e69, + [0x2034] = 0x7e6a, [0x2035] = 0x7e73, [0x2036] = 0x7f85, [0x2037] = 0x7fb6, + [0x2038] = 0x7fb9, [0x2039] = 0x7fb8, [0x203a] = 0x81d8, [0x203b] = 0x85e9, + [0x203c] = 0x85dd, [0x203d] = 0x85ea, [0x203e] = 0x85d5, [0x203f] = 0x85e4, + [0x2040] = 0x85e5, [0x2041] = 0x85f7, [0x2042] = 0x87fb, [0x2043] = 0x8805, + [0x2044] = 0x880d, [0x2045] = 0x87f9, [0x2046] = 0x87fe, [0x2047] = 0x8960, + [0x2048] = 0x895f, [0x2049] = 0x8956, [0x204a] = 0x895e, [0x204b] = 0x8b41, + [0x204c] = 0x8b5c, [0x204d] = 0x8b58, [0x204e] = 0x8b49, [0x204f] = 0x8b5a, + [0x2050] = 0x8b4e, [0x2051] = 0x8b4f, [0x2052] = 0x8b46, [0x2053] = 0x8b59, + [0x2054] = 0x8d08, [0x2055] = 0x8d0a, [0x2056] = 0x8e7c, [0x2057] = 0x8e72, + [0x2058] = 0x8e87, [0x2059] = 0x8e76, [0x205a] = 0x8e6c, [0x205b] = 0x8e7a, + [0x205c] = 0x8e74, [0x205d] = 0x8f54, [0x205e] = 0x8f4e, [0x205f] = 0x8fad, + [0x2060] = 0x908a, [0x2061] = 0x908b, [0x2062] = 0x91b1, [0x2063] = 0x91ae, + [0x2064] = 0x93e1, [0x2065] = 0x93d1, [0x2066] = 0x93df, [0x2067] = 0x93c3, + [0x2068] = 0x93c8, [0x2069] = 0x93dc, [0x206a] = 0x93dd, [0x206b] = 0x93d6, + [0x206c] = 0x93e2, [0x206d] = 0x93cd, [0x206e] = 0x93d8, [0x206f] = 0x93e4, + [0x2070] = 0x93d7, [0x2071] = 0x93e8, [0x2072] = 0x95dc, [0x2073] = 0x96b4, + [0x2074] = 0x96e3, [0x2075] = 0x972a, [0x2076] = 0x9727, [0x2077] = 0x9761, + [0x2078] = 0x97dc, [0x2079] = 0x97fb, [0x207a] = 0x985e, [0x207b] = 0x9858, + [0x207c] = 0x985b, [0x207d] = 0x98bc, [0x207e] = 0x9945, [0x207f] = 0x9949, + [0x2080] = 0x9a16, [0x2081] = 0x9a19, [0x2082] = 0x9b0d, [0x2083] = 0x9be8, + [0x2084] = 0x9be7, [0x2085] = 0x9bd6, [0x2086] = 0x9bdb, [0x2087] = 0x9d89, + [0x2088] = 0x9d61, [0x2089] = 0x9d72, [0x208a] = 0x9d6a, [0x208b] = 0x9d6c, + [0x208c] = 0x9e92, [0x208d] = 0x9e97, [0x208e] = 0x9e93, [0x208f] = 0x9eb4, + [0x2090] = 0x52f8, [0x2091] = 0x56b7, [0x2092] = 0x56b6, [0x2093] = 0x56b4, + [0x2094] = 0x56bc, [0x2095] = 0x58e4, [0x2096] = 0x5b40, [0x2097] = 0x5b43, + [0x2098] = 0x5b7d, [0x2099] = 0x5bf6, [0x209a] = 0x5dc9, [0x209b] = 0x61f8, + [0x209c] = 0x61fa, [0x209d] = 0x6518, [0x209e] = 0x6514, [0x209f] = 0x6519, + [0x20a0] = 0x66e6, [0x20a1] = 0x6727, [0x20a2] = 0x6aec, [0x20a3] = 0x703e, + [0x20a4] = 0x7030, [0x20a5] = 0x7032, [0x20a6] = 0x7210, [0x20a7] = 0x737b, + [0x20a8] = 0x74cf, [0x20a9] = 0x7662, [0x20aa] = 0x7665, [0x20ab] = 0x7926, + [0x20ac] = 0x792a, [0x20ad] = 0x792c, [0x20ae] = 0x792b, [0x20af] = 0x7ac7, + [0x20b0] = 0x7af6, [0x20b1] = 0x7c4c, [0x20b2] = 0x7c43, [0x20b3] = 0x7c4d, + [0x20b4] = 0x7cef, [0x20b5] = 0x7cf0, [0x20b6] = 0x8fae, [0x20b7] = 0x7e7d, + [0x20b8] = 0x7e7c, [0x20b9] = 0x7e82, [0x20ba] = 0x7f4c, [0x20bb] = 0x8000, + [0x20bc] = 0x81da, [0x20bd] = 0x8266, [0x20be] = 0x85fb, [0x20bf] = 0x85f9, + [0x20c0] = 0x8611, [0x20c1] = 0x85fa, [0x20c2] = 0x8606, [0x20c3] = 0x860b, + [0x20c4] = 0x8607, [0x20c5] = 0x860a, [0x20c6] = 0x8814, [0x20c7] = 0x8815, + [0x20c8] = 0x8964, [0x20c9] = 0x89ba, [0x20ca] = 0x89f8, [0x20cb] = 0x8b70, + [0x20cc] = 0x8b6c, [0x20cd] = 0x8b66, [0x20ce] = 0x8b6f, [0x20cf] = 0x8b5f, + [0x20d0] = 0x8b6b, [0x20d1] = 0x8d0f, [0x20d2] = 0x8d0d, [0x20d3] = 0x8e89, + [0x20d4] = 0x8e81, [0x20d5] = 0x8e85, [0x20d6] = 0x8e82, [0x20d7] = 0x91b4, + [0x20d8] = 0x91cb, [0x20d9] = 0x9418, [0x20da] = 0x9403, [0x20db] = 0x93fd, + [0x20dc] = 0x95e1, [0x20dd] = 0x9730, [0x20de] = 0x98c4, [0x20df] = 0x9952, + [0x20e0] = 0x9951, [0x20e1] = 0x99a8, [0x20e2] = 0x9a2b, [0x20e3] = 0x9a30, + [0x20e4] = 0x9a37, [0x20e5] = 0x9a35, [0x20e6] = 0x9c13, [0x20e7] = 0x9c0d, + [0x20e8] = 0x9e79, [0x20e9] = 0x9eb5, [0x20ea] = 0x9ee8, [0x20eb] = 0x9f2f, + [0x20ec] = 0x9f5f, [0x20ed] = 0x9f63, [0x20ee] = 0x9f61, [0x20ef] = 0x5137, + [0x20f0] = 0x5138, [0x20f1] = 0x56c1, [0x20f2] = 0x56c0, [0x20f3] = 0x56c2, + [0x20f4] = 0x5914, [0x20f5] = 0x5c6c, [0x20f6] = 0x5dcd, [0x20f7] = 0x61fc, + [0x20f8] = 0x61fe, [0x20f9] = 0x651d, [0x20fa] = 0x651c, [0x20fb] = 0x6595, + [0x20fc] = 0x66e9, [0x20fd] = 0x6afb, [0x20fe] = 0x6b04, [0x20ff] = 0x6afa, + [0x2100] = 0x6bb2, [0x2101] = 0x704c, [0x2102] = 0x721b, [0x2103] = 0x72a7, + [0x2104] = 0x74d6, [0x2105] = 0x74d4, [0x2106] = 0x7669, [0x2107] = 0x77d3, + [0x2108] = 0x7c50, [0x2109] = 0x7e8f, [0x210a] = 0x7e8c, [0x210b] = 0x7fbc, + [0x210c] = 0x8617, [0x210d] = 0x862d, [0x210e] = 0x861a, [0x210f] = 0x8823, + [0x2110] = 0x8822, [0x2111] = 0x8821, [0x2112] = 0x881f, [0x2113] = 0x896a, + [0x2114] = 0x896c, [0x2115] = 0x89bd, [0x2116] = 0x8b74, [0x2117] = 0x8b77, + [0x2118] = 0x8b7d, [0x2119] = 0x8d13, [0x211a] = 0x8e8a, [0x211b] = 0x8e8d, + [0x211c] = 0x8e8b, [0x211d] = 0x8f5f, [0x211e] = 0x8faf, [0x211f] = 0x91ba, + [0x2120] = 0x942e, [0x2121] = 0x9433, [0x2122] = 0x9435, [0x2123] = 0x943a, + [0x2124] = 0x9438, [0x2125] = 0x9432, [0x2126] = 0x942b, [0x2127] = 0x95e2, + [0x2128] = 0x9738, [0x2129] = 0x9739, [0x212a] = 0x9732, [0x212b] = 0x97ff, + [0x212c] = 0x9867, [0x212d] = 0x9865, [0x212e] = 0x9957, [0x212f] = 0x9a45, + [0x2130] = 0x9a43, [0x2131] = 0x9a40, [0x2132] = 0x9a3e, [0x2133] = 0x9acf, + [0x2134] = 0x9b54, [0x2135] = 0x9b51, [0x2136] = 0x9c2d, [0x2137] = 0x9c25, + [0x2138] = 0x9daf, [0x2139] = 0x9db4, [0x213a] = 0x9dc2, [0x213b] = 0x9db8, + [0x213c] = 0x9e9d, [0x213d] = 0x9eef, [0x213e] = 0x9f19, [0x213f] = 0x9f5c, + [0x2140] = 0x9f66, [0x2141] = 0x9f67, [0x2142] = 0x513c, [0x2143] = 0x513b, + [0x2144] = 0x56c8, [0x2145] = 0x56ca, [0x2146] = 0x56c9, [0x2147] = 0x5b7f, + [0x2148] = 0x5dd4, [0x2149] = 0x5dd2, [0x214a] = 0x5f4e, [0x214b] = 0x61ff, + [0x214c] = 0x6524, [0x214d] = 0x6b0a, [0x214e] = 0x6b61, [0x214f] = 0x7051, + [0x2150] = 0x7058, [0x2151] = 0x7380, [0x2152] = 0x74e4, [0x2153] = 0x758a, + [0x2154] = 0x766e, [0x2155] = 0x766c, [0x2156] = 0x79b3, [0x2157] = 0x7c60, + [0x2158] = 0x7c5f, [0x2159] = 0x807e, [0x215a] = 0x807d, [0x215b] = 0x81df, + [0x215c] = 0x8972, [0x215d] = 0x896f, [0x215e] = 0x89fc, [0x215f] = 0x8b80, + [0x2160] = 0x8d16, [0x2161] = 0x8d17, [0x2162] = 0x8e91, [0x2163] = 0x8e93, + [0x2164] = 0x8f61, [0x2165] = 0x9148, [0x2166] = 0x9444, [0x2167] = 0x9451, + [0x2168] = 0x9452, [0x2169] = 0x973d, [0x216a] = 0x973e, [0x216b] = 0x97c3, + [0x216c] = 0x97c1, [0x216d] = 0x986b, [0x216e] = 0x9955, [0x216f] = 0x9a55, + [0x2170] = 0x9a4d, [0x2171] = 0x9ad2, [0x2172] = 0x9b1a, [0x2173] = 0x9c49, + [0x2174] = 0x9c31, [0x2175] = 0x9c3e, [0x2176] = 0x9c3b, [0x2177] = 0x9dd3, + [0x2178] = 0x9dd7, [0x2179] = 0x9f34, [0x217a] = 0x9f6c, [0x217b] = 0x9f6a, + [0x217c] = 0x9f94, [0x217d] = 0x56cc, [0x217e] = 0x5dd6, [0x217f] = 0x6200, + [0x2180] = 0x6523, [0x2181] = 0x652b, [0x2182] = 0x652a, [0x2183] = 0x66ec, + [0x2184] = 0x6b10, [0x2185] = 0x74da, [0x2186] = 0x7aca, [0x2187] = 0x7c64, + [0x2188] = 0x7c63, [0x2189] = 0x7c65, [0x218a] = 0x7e93, [0x218b] = 0x7e96, + [0x218c] = 0x7e94, [0x218d] = 0x81e2, [0x218e] = 0x8638, [0x218f] = 0x863f, + [0x2190] = 0x8831, [0x2191] = 0x8b8a, [0x2192] = 0x9090, [0x2193] = 0x908f, + [0x2194] = 0x9463, [0x2195] = 0x9460, [0x2196] = 0x9464, [0x2197] = 0x9768, + [0x2198] = 0x986f, [0x2199] = 0x995c, [0x219a] = 0x9a5a, [0x219b] = 0x9a5b, + [0x219c] = 0x9a57, [0x219d] = 0x9ad3, [0x219e] = 0x9ad4, [0x219f] = 0x9ad1, + [0x21a0] = 0x9c54, [0x21a1] = 0x9c57, [0x21a2] = 0x9c56, [0x21a3] = 0x9de5, + [0x21a4] = 0x9e9f, [0x21a5] = 0x9ef4, [0x21a6] = 0x56d1, [0x21a7] = 0x58e9, + [0x21a8] = 0x652c, [0x21a9] = 0x705e, [0x21aa] = 0x7671, [0x21ab] = 0x7672, + [0x21ac] = 0x77d7, [0x21ad] = 0x7f50, [0x21ae] = 0x7f88, [0x21af] = 0x8836, + [0x21b0] = 0x8839, [0x21b1] = 0x8862, [0x21b2] = 0x8b93, [0x21b3] = 0x8b92, + [0x21b4] = 0x8b96, [0x21b5] = 0x8277, [0x21b6] = 0x8d1b, [0x21b7] = 0x91c0, + [0x21b8] = 0x946a, [0x21b9] = 0x9742, [0x21ba] = 0x9748, [0x21bb] = 0x9744, + [0x21bc] = 0x97c6, [0x21bd] = 0x9870, [0x21be] = 0x9a5f, [0x21bf] = 0x9b22, + [0x21c0] = 0x9b58, [0x21c1] = 0x9c5f, [0x21c2] = 0x9df9, [0x21c3] = 0x9dfa, + [0x21c4] = 0x9e7c, [0x21c5] = 0x9e7d, [0x21c6] = 0x9f07, [0x21c7] = 0x9f77, + [0x21c8] = 0x9f72, [0x21c9] = 0x5ef3, [0x21ca] = 0x6b16, [0x21cb] = 0x7063, + [0x21cc] = 0x7c6c, [0x21cd] = 0x7c6e, [0x21ce] = 0x883b, [0x21cf] = 0x89c0, + [0x21d0] = 0x8ea1, [0x21d1] = 0x91c1, [0x21d2] = 0x9472, [0x21d3] = 0x9470, + [0x21d4] = 0x9871, [0x21d5] = 0x995e, [0x21d6] = 0x9ad6, [0x21d7] = 0x9b23, + [0x21d8] = 0x9ecc, [0x21d9] = 0x7064, [0x21da] = 0x77da, [0x21db] = 0x8b9a, + [0x21dc] = 0x9477, [0x21dd] = 0x97c9, [0x21de] = 0x9a62, [0x21df] = 0x9a65, + [0x21e0] = 0x7e9c, [0x21e1] = 0x8b9c, [0x21e2] = 0x8eaa, [0x21e3] = 0x91c5, + [0x21e4] = 0x947d, [0x21e5] = 0x947e, [0x21e6] = 0x947c, [0x21e7] = 0x9c77, + [0x21e8] = 0x9c78, [0x21e9] = 0x9ef7, [0x21ea] = 0x8c54, [0x21eb] = 0x947f, + [0x21ec] = 0x9e1a, [0x21ed] = 0x7228, [0x21ee] = 0x9a6a, [0x21ef] = 0x9b31, + [0x21f0] = 0x9e1b, [0x21f1] = 0x9e1e, [0x21f2] = 0x7c72, }; @@ -1533,7 +1542,7 @@ const char __cns11643l1_from_ucs4_tab2[][2] = /* Greek alphabet. The table can be created using - egrep '^0x1' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x1' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0x03' | perl tab.pl where tab.pl is @@ -1574,7 +1583,7 @@ const char __cns11643l1_from_ucs4_tab3[][2] = /* General punctuation. The table can be created using - egrep '^0x1' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x1' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0x20' | perl tab.pl where tab.pl is @@ -1612,7 +1621,7 @@ const char __cns11643l1_from_ucs4_tab5[][2] = /* Mathematical operators. The table can be created using - egrep '^0x1' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x1' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0x22[1-6]' | perl tab.pl where tab.pl is @@ -1643,7 +1652,7 @@ const char __cns11643l1_from_ucs4_tab6[][2] = /* Graphic pictures for control codes. The table can be created using - egrep '^0x1' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x1' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0x24[0-2]' | perl tab.pl where tab.pl is @@ -1679,7 +1688,7 @@ const char __cns11643l1_from_ucs4_tab7[][2] = /* Circled and Parenthesized numbers. The table can be created using - egrep '^0x1' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x1' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0x24[67]' | perl tab.pl where tab.pl is @@ -1711,7 +1720,7 @@ const char __cns11643l1_from_ucs4_tab8[][2] = /* Circled and Parenthesized numbers. The table can be created using - egrep '^0x1' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x1' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0x2[56]' | perl tab.pl where tab.pl is @@ -1756,7 +1765,7 @@ const char __cns11643l1_from_ucs4_tab9[][2] = /* CJK punctuation and Hangzhou-style numerals. The table can be created using - egrep '^0x1' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x1' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0x30[0-2]' | perl tab.pl where tab.pl is @@ -1791,7 +1800,7 @@ const char __cns11643l1_from_ucs4_tab10[][2] = /* Squared latin abbreviations. The table can be created using - egrep '^0x1' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x1' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0x33' | perl tab.pl where tab.pl is @@ -1820,7 +1829,7 @@ const char __cns11643l1_from_ucs4_tab11[][2] = /* CJK Ideographs. The table can be created using - egrep '^0x1' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x1' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0x[4-9]' | perl tab.pl where tab.pl is @@ -1860,134 +1869,135 @@ const char __cns11643l1_from_ucs4_tab12[][2] = [0x008e] = "\x44\x40", [0x0091] = "\x44\x69", [0x0092] = "\x44\x6b", [0x0094] = "\x44\x6c", [0x0095] = "\x44\x6a", [0x0099] = "\x47\x27", [0x009b] = "\x4b\x68", [0x009e] = "\x4b\x69", [0x009f] = "\x4f\x67", - [0x00a1] = "\x44\x41", [0x00a2] = "\x44\x6d", [0x00a4] = "\x47\x28", - [0x00a5] = "\x47\x2a", [0x00a6] = "\x47\x29", [0x00a8] = "\x48\x6c", - [0x00ab] = "\x4b\x6a", [0x00ac] = "\x4b\x6b", [0x00ad] = "\x4f\x68", - [0x00ae] = "\x4f\x69", [0x00b3] = "\x53\x7e", [0x00ba] = "\x44\x29", - [0x00c0] = "\x44\x6f", [0x00c1] = "\x44\x6e", [0x00c3] = "\x44\x70", - [0x00c4] = "\x44\x76", [0x00c6] = "\x44\x71", [0x00c7] = "\x44\x72", - [0x00ca] = "\x44\x74", [0x00cb] = "\x44\x75", [0x00cd] = "\x44\x73", - [0x00d4] = "\x45\x6a", [0x00d5] = "\x45\x6b", [0x00d6] = "\x45\x6c", - [0x00d7] = "\x45\x6d", [0x00d8] = "\x45\x69", [0x00d9] = "\x45\x70", - [0x00de] = "\x45\x71", [0x00df] = "\x46\x23", [0x00e3] = "\x45\x6e", - [0x00e4] = "\x45\x6f", [0x00e5] = "\x45\x68", [0x00f0] = "\x47\x37", - [0x00f2] = "\x47\x34", [0x00f3] = "\x47\x38", [0x00f6] = "\x47\x35", - [0x00fb] = "\x47\x36", [0x00fd] = "\x47\x39", [0x00ff] = "\x47\x2b", - [0x0101] = "\x47\x3a", [0x0109] = "\x47\x2c", [0x010a] = "\x47\x2e", - [0x010b] = "\x47\x3b", [0x010d] = "\x47\x30", [0x010f] = "\x47\x33", - [0x0110] = "\x47\x31", [0x0111] = "\x47\x32", [0x0115] = "\x47\x2f", - [0x0119] = "\x47\x2d", [0x012f] = "\x49\x24", [0x0130] = "\x48\x75", - [0x0134] = "\x48\x72", [0x0136] = "\x49\x26", [0x0138] = "\x48\x7a", - [0x013a] = "\x48\x79", [0x013c] = "\x48\x7d", [0x013d] = "\x48\x78", - [0x0143] = "\x48\x7b", [0x0146] = "\x48\x7e", [0x0147] = "\x48\x6f", - [0x0148] = "\x49\x29", [0x014d] = "\x48\x6d", [0x014e] = "\x49\x25", - [0x014f] = "\x48\x6e", [0x0150] = "\x48\x76", [0x0151] = "\x48\x77", - [0x0154] = "\x48\x7c", [0x0155] = "\x48\x74", [0x0157] = "\x48\x70", - [0x0159] = "\x49\x27", [0x015a] = "\x49\x2a", [0x015b] = "\x48\x73", - [0x015c] = "\x49\x22", [0x015d] = "\x49\x28", [0x015e] = "\x48\x71", - [0x0160] = "\x49\x23", [0x0163] = "\x49\x21", [0x0169] = "\x4b\x79", - [0x016c] = "\x4b\x71", [0x016f] = "\x4b\x6c", [0x0170] = "\x4b\x76", - [0x0173] = "\x4b\x6f", [0x0175] = "\x4b\x77", [0x017a] = "\x4c\x21", - [0x017b] = "\x4b\x7a", [0x017e] = "\x4b\x7c", [0x017f] = "\x4b\x70", - [0x0183] = "\x4b\x75", [0x0186] = "\x4b\x74", [0x0188] = "\x4b\x78", - [0x018b] = "\x4b\x73", [0x018d] = "\x4b\x6e", [0x018f] = "\x4b\x7d", - [0x0191] = "\x4b\x7e", [0x0196] = "\x4b\x7b", [0x019b] = "\x4b\x72", - [0x019d] = "\x4b\x6d", [0x01ae] = "\x4f\x78", [0x01af] = "\x4f\x6c", - [0x01b5] = "\x4f\x6b", [0x01b6] = "\x4f\x73", [0x01b7] = "\x50\x21", - [0x01bf] = "\x4f\x6d", [0x01c2] = "\x4f\x7b", [0x01c3] = "\x4f\x72", - [0x01c4] = "\x4f\x7a", [0x01ca] = "\x4f\x76", [0x01ce] = "\x4f\x7d", - [0x01cf] = "\x4f\x70", [0x01d0] = "\x4f\x79", [0x01d1] = "\x4f\x6f", - [0x01d7] = "\x4f\x77", [0x01d8] = "\x4f\x74", [0x01da] = "\x4f\x7c", - [0x01dd] = "\x4f\x71", [0x01de] = "\x4f\x7e", [0x01df] = "\x4f\x75", - [0x01e0] = "\x4f\x6e", [0x01e1] = "\x4f\x6a", [0x01ee] = "\x54\x3a", - [0x01ef] = "\x54\x24", [0x01f1] = "\x54\x34", [0x01f3] = "\x54\x39", - [0x01f8] = "\x54\x27", [0x01fa] = "\x54\x30", [0x01fe] = "\x54\x3d", - [0x0200] = "\x54\x31", [0x0206] = "\x54\x2a", [0x0209] = "\x54\x3f", - [0x020b] = "\x54\x36", [0x020c] = "\x54\x21", [0x020d] = "\x54\x22", - [0x020f] = "\x59\x24", [0x0211] = "\x54\x2f", [0x0212] = "\x54\x2e", - [0x0214] = "\x54\x32", [0x0216] = "\x54\x29", [0x0218] = "\x54\x38", - [0x0219] = "\x54\x37", [0x021a] = "\x54\x2d", [0x021f] = "\x54\x2c", - [0x0221] = "\x54\x35", [0x0223] = "\x54\x23", [0x0225] = "\x54\x26", - [0x0226] = "\x54\x25", [0x0228] = "\x54\x33", [0x0229] = "\x54\x28", - [0x022a] = "\x54\x3c", [0x022b] = "\x54\x3e", [0x022d] = "\x54\x3b", - [0x023c] = "\x54\x2b", [0x0243] = "\x58\x76", [0x0247] = "\x58\x75", - [0x0249] = "\x58\x79", [0x024c] = "\x58\x77", [0x024e] = "\x58\x7c", - [0x024f] = "\x59\x23", [0x0255] = "\x58\x7d", [0x025a] = "\x58\x78", - [0x025c] = "\x58\x74", [0x0265] = "\x58\x7a", [0x026d] = "\x59\x26", - [0x026f] = "\x59\x25", [0x0274] = "\x59\x21", [0x0275] = "\x58\x7e", - [0x0276] = "\x58\x7b", [0x0277] = "\x59\x22", [0x027a] = "\x58\x72", - [0x027d] = "\x58\x73", [0x0280] = "\x5e\x2e", [0x0285] = "\x5e\x2b", - [0x028d] = "\x5e\x2a", [0x0291] = "\x5e\x2d", [0x0296] = "\x5e\x2f", - [0x0298] = "\x5e\x30", [0x0299] = "\x5e\x2c", [0x029a] = "\x5e\x31", - [0x02a2] = "\x5e\x29", [0x02ac] = "\x63\x31", [0x02ad] = "\x63\x2b", - [0x02af] = "\x63\x34", [0x02b2] = "\x63\x2d", [0x02b3] = "\x63\x2e", - [0x02b5] = "\x63\x2c", [0x02b7] = "\x63\x32", [0x02bb] = "\x63\x33", - [0x02be] = "\x63\x30", [0x02c5] = "\x63\x2f", [0x02c7] = "\x63\x35", - [0x02ce] = "\x67\x7c", [0x02cf] = "\x67\x79", [0x02d1] = "\x67\x7a", - [0x02d5] = "\x67\x78", [0x02d6] = "\x67\x75", [0x02da] = "\x67\x77", - [0x02e5] = "\x67\x74", [0x02e7] = "\x67\x72", [0x02e9] = "\x67\x7d", - [0x02ed] = "\x67\x76", [0x02ee] = "\x67\x73", [0x02f1] = "\x67\x7b", - [0x02f5] = "\x6c\x23", [0x02f9] = "\x6c\x24", [0x02fb] = "\x6c\x22", - [0x0300] = "\x6c\x21", [0x0302] = "\x6c\x25", [0x0304] = "\x6b\x7e", - [0x0305] = "\x6c\x28", [0x0308] = "\x6c\x26", [0x0309] = "\x6c\x27", - [0x0310] = "\x70\x33", [0x0312] = "\x70\x30", [0x0314] = "\x70\x32", - [0x0315] = "\x70\x34", [0x0318] = "\x70\x31", [0x031f] = "\x73\x41", - [0x0321] = "\x73\x42", [0x032a] = "\x73\x40", [0x0332] = "\x73\x43", - [0x0333] = "\x78\x2b", [0x0337] = "\x7a\x62", [0x0338] = "\x7a\x63", - [0x033b] = "\x7b\x58", [0x033c] = "\x7b\x57", [0x033f] = "\x44\x2a", - [0x0340] = "\x44\x42", [0x0341] = "\x44\x78", [0x0343] = "\x44\x77", - [0x0344] = "\x45\x73", [0x0345] = "\x45\x72", [0x0346] = "\x47\x3e", - [0x0347] = "\x47\x3d", [0x0348] = "\x47\x3f", [0x0349] = "\x47\x3c", - [0x034b] = "\x49\x2c", [0x034c] = "\x49\x2b", [0x034d] = "\x49\x2d", - [0x0352] = "\x4c\x23", [0x0354] = "\x4c\x22", [0x0355] = "\x4c\x24", - [0x0357] = "\x50\x22", [0x0359] = "\x22\x79", [0x035b] = "\x22\x7a", - [0x035c] = "\x59\x27", [0x035d] = "\x22\x7c", [0x035e] = "\x22\x7b", - [0x0361] = "\x22\x7d", [0x0362] = "\x67\x7e", [0x0363] = "\x22\x7e", - [0x0365] = "\x44\x2b", [0x0367] = "\x44\x79", [0x0368] = "\x47\x40", - [0x0369] = "\x4c\x25", [0x036b] = "\x44\x2c", [0x036c] = "\x44\x7c", - [0x036d] = "\x44\x7a", [0x036e] = "\x44\x7b", [0x0371] = "\x47\x41", - [0x0375] = "\x49\x2e", [0x0376] = "\x4c\x27", [0x0377] = "\x4c\x26", - [0x0378] = "\x4c\x28", [0x037c] = "\x54\x40", [0x0380] = "\x70\x35", - [0x0389] = "\x45\x74", [0x038a] = "\x45\x75", [0x038d] = "\x47\x42", - [0x0391] = "\x50\x24", [0x0392] = "\x50\x23", [0x0395] = "\x59\x28", - [0x0397] = "\x44\x7d", [0x03a0] = "\x50\x25", [0x03a2] = "\x54\x43", - [0x03a4] = "\x54\x41", [0x03a5] = "\x54\x42", [0x03aa] = "\x70\x36", - [0x03ac] = "\x45\x76", [0x03b0] = "\x47\x43", [0x03b6] = "\x49\x2f", - [0x03b7] = "\x49\x30", [0x03bd] = "\x4c\x29", [0x03c6] = "\x54\x46", - [0x03cb] = "\x54\x47", [0x03cc] = "\x54\x45", [0x03cd] = "\x54\x44", - [0x03dc] = "\x6c\x29", [0x03dd] = "\x70\x37", [0x03e0] = "\x44\x2d", - [0x03e1] = "\x44\x3b", [0x03f0] = "\x59\x29", [0x03f1] = "\x5e\x33", - [0x03f3] = "\x68\x21", [0x03f6] = "\x44\x7e", [0x03f8] = "\x45\x79", - [0x03f9] = "\x45\x77", [0x03fa] = "\x45\x78", [0x03fd] = "\x4c\x2a", - [0x0400] = "\x44\x2e", [0x0401] = "\x44\x2f", [0x0403] = "\x44\x43", - [0x0406] = "\x45\x21", [0x0407] = "\x45\x22", [0x0408] = "\x45\x23", - [0x040a] = "\x45\x7a", [0x040e] = "\x47\x47", [0x0411] = "\x47\x45", - [0x0412] = "\x47\x46", [0x0416] = "\x47\x48", [0x0417] = "\x47\x44", - [0x041d] = "\x4f\x4f", [0x0424] = "\x49\x32", [0x0425] = "\x49\x31", - [0x0428] = "\x49\x35", [0x0429] = "\x49\x33", [0x042a] = "\x49\x34", - [0x042e] = "\x4c\x30", [0x0430] = "\x4c\x2f", [0x0436] = "\x4c\x31", - [0x0437] = "\x4c\x2d", [0x0438] = "\x4c\x2c", [0x043a] = "\x4c\x2e", - [0x043b] = "\x4c\x2b", [0x0441] = "\x4c\x32", [0x0443] = "\x50\x27", - [0x0447] = "\x50\x2c", [0x044a] = "\x50\x28", [0x044b] = "\x50\x2b", - [0x044c] = "\x50\x2a", [0x044d] = "\x50\x29", [0x044e] = "\x50\x26", - [0x0454] = "\x54\x4a", [0x0456] = "\x54\x48", [0x045b] = "\x54\x4b", - [0x045c] = "\x54\x49", [0x045d] = "\x54\x4c", [0x0469] = "\x5e\x37", - [0x046a] = "\x59\x2a", [0x046f] = "\x59\x2b", [0x0472] = "\x5e\x34", - [0x0474] = "\x5e\x35", [0x0475] = "\x5e\x36", [0x0477] = "\x63\x37", - [0x047d] = "\x63\x38", [0x047f] = "\x63\x36", [0x0482] = "\x68\x23", - [0x0483] = "\x68\x22", [0x0487] = "\x6c\x2a", [0x0488] = "\x6c\x2b", - [0x0489] = "\x6c\x2c", [0x048a] = "\x6c\x2e", [0x048d] = "\x6c\x2d", - [0x0491] = "\x70\x38", [0x0493] = "\x70\x39", [0x049b] = "\x44\x30", - [0x049f] = "\x45\x7c", [0x04a0] = "\x45\x7b", [0x04a3] = "\x47\x49", - [0x04a9] = "\x49\x37", [0x04aa] = "\x49\x38", [0x04ab] = "\x49\x36", - [0x04ac] = "\x49\x39", [0x04bb] = "\x4c\x34", [0x04be] = "\x4c\x33", - [0x04c1] = "\x50\x30", [0x04c3] = "\x50\x2f", [0x04c7] = "\x50\x2d", - [0x04c9] = "\x50\x2e", [0x04d2] = "\x59\x2c", [0x04d5] = "\x59\x2f", - [0x04d7] = "\x5b\x2b", [0x04d8] = "\x59\x2e", [0x04d9] = "\x59\x2d", - [0x04db] = "\x5e\x3a", [0x04dd] = "\x5e\x39", [0x04de] = "\x5e\x38", - [0x04df] = "\x63\x39", [0x04e2] = "\x63\x3c", [0x04e3] = "\x63\x3d", - [0x04e4] = "\x63\x3b", [0x04e6] = "\x63\x3a", [0x04f0] = "\x6c\x2f", - [0x04f3] = "\x70\x3a", [0x04f5] = "\x73\x44", [0x04f8] = "\x79\x61", + [0x00a0] = "\x27\x28", [0x00a1] = "\x44\x41", [0x00a2] = "\x44\x6d", + [0x00a4] = "\x47\x28", [0x00a5] = "\x47\x2a", [0x00a6] = "\x47\x29", + [0x00a8] = "\x48\x6c", [0x00ab] = "\x4b\x6a", [0x00ac] = "\x4b\x6b", + [0x00ad] = "\x4f\x68", [0x00ae] = "\x4f\x69", [0x00b3] = "\x53\x7e", + [0x00ba] = "\x44\x29", [0x00c0] = "\x44\x6f", [0x00c1] = "\x44\x6e", + [0x00c3] = "\x44\x70", [0x00c4] = "\x44\x76", [0x00c6] = "\x44\x71", + [0x00c7] = "\x44\x72", [0x00ca] = "\x44\x74", [0x00cb] = "\x44\x75", + [0x00cd] = "\x44\x73", [0x00d4] = "\x45\x6a", [0x00d5] = "\x45\x6b", + [0x00d6] = "\x45\x6c", [0x00d7] = "\x45\x6d", [0x00d8] = "\x45\x69", + [0x00d9] = "\x45\x70", [0x00de] = "\x45\x71", [0x00df] = "\x46\x23", + [0x00e3] = "\x45\x6e", [0x00e4] = "\x45\x6f", [0x00e5] = "\x45\x68", + [0x00f0] = "\x47\x37", [0x00f2] = "\x47\x34", [0x00f3] = "\x47\x38", + [0x00f6] = "\x47\x35", [0x00fb] = "\x47\x36", [0x00fd] = "\x47\x39", + [0x00ff] = "\x47\x2b", [0x0101] = "\x47\x3a", [0x0109] = "\x47\x2c", + [0x010a] = "\x47\x2e", [0x010b] = "\x47\x3b", [0x010d] = "\x47\x30", + [0x010f] = "\x47\x33", [0x0110] = "\x47\x31", [0x0111] = "\x47\x32", + [0x0115] = "\x47\x2f", [0x0119] = "\x47\x2d", [0x012f] = "\x49\x24", + [0x0130] = "\x48\x75", [0x0134] = "\x48\x72", [0x0136] = "\x49\x26", + [0x0138] = "\x48\x7a", [0x013a] = "\x48\x79", [0x013c] = "\x48\x7d", + [0x013d] = "\x48\x78", [0x0143] = "\x48\x7b", [0x0146] = "\x48\x7e", + [0x0147] = "\x48\x6f", [0x0148] = "\x49\x29", [0x014d] = "\x48\x6d", + [0x014e] = "\x49\x25", [0x014f] = "\x48\x6e", [0x0150] = "\x48\x76", + [0x0151] = "\x48\x77", [0x0154] = "\x48\x7c", [0x0155] = "\x48\x74", + [0x0157] = "\x48\x70", [0x0159] = "\x49\x27", [0x015a] = "\x49\x2a", + [0x015b] = "\x48\x73", [0x015c] = "\x49\x22", [0x015d] = "\x49\x28", + [0x015e] = "\x48\x71", [0x0160] = "\x49\x23", [0x0163] = "\x49\x21", + [0x0169] = "\x4b\x79", [0x016c] = "\x4b\x71", [0x016f] = "\x4b\x6c", + [0x0170] = "\x4b\x76", [0x0173] = "\x4b\x6f", [0x0175] = "\x4b\x77", + [0x017a] = "\x4c\x21", [0x017b] = "\x4b\x7a", [0x017e] = "\x4b\x7c", + [0x017f] = "\x4b\x70", [0x0183] = "\x4b\x75", [0x0186] = "\x4b\x74", + [0x0188] = "\x4b\x78", [0x018b] = "\x4b\x73", [0x018d] = "\x4b\x6e", + [0x018f] = "\x4b\x7d", [0x0191] = "\x4b\x7e", [0x0196] = "\x4b\x7b", + [0x019b] = "\x4b\x72", [0x019d] = "\x4b\x6d", [0x01ae] = "\x4f\x78", + [0x01af] = "\x4f\x6c", [0x01b5] = "\x4f\x6b", [0x01b6] = "\x4f\x73", + [0x01b7] = "\x50\x21", [0x01bf] = "\x4f\x6d", [0x01c2] = "\x4f\x7b", + [0x01c3] = "\x4f\x72", [0x01c4] = "\x4f\x7a", [0x01ca] = "\x4f\x76", + [0x01ce] = "\x4f\x7d", [0x01cf] = "\x4f\x70", [0x01d0] = "\x4f\x79", + [0x01d1] = "\x4f\x6f", [0x01d7] = "\x4f\x77", [0x01d8] = "\x4f\x74", + [0x01da] = "\x4f\x7c", [0x01dd] = "\x4f\x71", [0x01de] = "\x4f\x7e", + [0x01df] = "\x4f\x75", [0x01e0] = "\x4f\x6e", [0x01e1] = "\x4f\x6a", + [0x01ee] = "\x54\x3a", [0x01ef] = "\x54\x24", [0x01f1] = "\x54\x34", + [0x01f3] = "\x54\x39", [0x01f8] = "\x54\x27", [0x01fa] = "\x54\x30", + [0x01fe] = "\x54\x3d", [0x0200] = "\x54\x31", [0x0206] = "\x54\x2a", + [0x0209] = "\x54\x3f", [0x020b] = "\x54\x36", [0x020c] = "\x54\x21", + [0x020d] = "\x54\x22", [0x020f] = "\x59\x24", [0x0211] = "\x54\x2f", + [0x0212] = "\x54\x2e", [0x0214] = "\x54\x32", [0x0216] = "\x54\x29", + [0x0218] = "\x54\x38", [0x0219] = "\x54\x37", [0x021a] = "\x54\x2d", + [0x021f] = "\x54\x2c", [0x0221] = "\x54\x35", [0x0223] = "\x54\x23", + [0x0225] = "\x54\x26", [0x0226] = "\x54\x25", [0x0228] = "\x54\x33", + [0x0229] = "\x54\x28", [0x022a] = "\x54\x3c", [0x022b] = "\x54\x3e", + [0x022d] = "\x54\x3b", [0x023c] = "\x54\x2b", [0x0243] = "\x58\x76", + [0x0247] = "\x58\x75", [0x0249] = "\x58\x79", [0x024c] = "\x58\x77", + [0x024e] = "\x58\x7c", [0x024f] = "\x59\x23", [0x0255] = "\x58\x7d", + [0x025a] = "\x58\x78", [0x025c] = "\x58\x74", [0x0265] = "\x58\x7a", + [0x026d] = "\x59\x26", [0x026f] = "\x59\x25", [0x0274] = "\x59\x21", + [0x0275] = "\x58\x7e", [0x0276] = "\x58\x7b", [0x0277] = "\x59\x22", + [0x027a] = "\x58\x72", [0x027d] = "\x58\x73", [0x0280] = "\x5e\x2e", + [0x0285] = "\x5e\x2b", [0x028d] = "\x5e\x2a", [0x0291] = "\x5e\x2d", + [0x0296] = "\x5e\x2f", [0x0298] = "\x5e\x30", [0x0299] = "\x5e\x2c", + [0x029a] = "\x5e\x31", [0x02a2] = "\x5e\x29", [0x02ac] = "\x63\x31", + [0x02ad] = "\x63\x2b", [0x02af] = "\x63\x34", [0x02b2] = "\x63\x2d", + [0x02b3] = "\x63\x2e", [0x02b5] = "\x63\x2c", [0x02b7] = "\x63\x32", + [0x02bb] = "\x63\x33", [0x02be] = "\x63\x30", [0x02c5] = "\x63\x2f", + [0x02c7] = "\x63\x35", [0x02ce] = "\x67\x7c", [0x02cf] = "\x67\x79", + [0x02d1] = "\x67\x7a", [0x02d5] = "\x67\x78", [0x02d6] = "\x67\x75", + [0x02da] = "\x67\x77", [0x02e5] = "\x67\x74", [0x02e7] = "\x67\x72", + [0x02e9] = "\x67\x7d", [0x02ed] = "\x67\x76", [0x02ee] = "\x67\x73", + [0x02f1] = "\x67\x7b", [0x02f5] = "\x6c\x23", [0x02f9] = "\x6c\x24", + [0x02fb] = "\x6c\x22", [0x0300] = "\x6c\x21", [0x0302] = "\x6c\x25", + [0x0304] = "\x6b\x7e", [0x0305] = "\x6c\x28", [0x0308] = "\x6c\x26", + [0x0309] = "\x6c\x27", [0x0310] = "\x70\x33", [0x0312] = "\x70\x30", + [0x0314] = "\x70\x32", [0x0315] = "\x70\x34", [0x0318] = "\x70\x31", + [0x031f] = "\x73\x41", [0x0321] = "\x73\x42", [0x032a] = "\x73\x40", + [0x0332] = "\x73\x43", [0x0333] = "\x78\x2b", [0x0337] = "\x7a\x62", + [0x0338] = "\x7a\x63", [0x033b] = "\x7b\x58", [0x033c] = "\x7b\x57", + [0x033f] = "\x44\x2a", [0x0340] = "\x44\x42", [0x0341] = "\x44\x78", + [0x0343] = "\x44\x77", [0x0344] = "\x45\x73", [0x0345] = "\x45\x72", + [0x0346] = "\x47\x3e", [0x0347] = "\x47\x3d", [0x0348] = "\x47\x3f", + [0x0349] = "\x47\x3c", [0x034b] = "\x49\x2c", [0x034c] = "\x49\x2b", + [0x034d] = "\x49\x2d", [0x0352] = "\x4c\x23", [0x0354] = "\x4c\x22", + [0x0355] = "\x4c\x24", [0x0357] = "\x50\x22", [0x0359] = "\x22\x79", + [0x035b] = "\x22\x7a", [0x035c] = "\x59\x27", [0x035d] = "\x22\x7c", + [0x035e] = "\x22\x7b", [0x0361] = "\x22\x7d", [0x0362] = "\x67\x7e", + [0x0363] = "\x22\x7e", [0x0365] = "\x44\x2b", [0x0367] = "\x44\x79", + [0x0368] = "\x47\x40", [0x0369] = "\x4c\x25", [0x036b] = "\x44\x2c", + [0x036c] = "\x44\x7c", [0x036d] = "\x44\x7a", [0x036e] = "\x44\x7b", + [0x0371] = "\x47\x41", [0x0375] = "\x49\x2e", [0x0376] = "\x4c\x27", + [0x0377] = "\x4c\x26", [0x0378] = "\x4c\x28", [0x037c] = "\x54\x40", + [0x0380] = "\x70\x35", [0x0389] = "\x45\x74", [0x038a] = "\x45\x75", + [0x038d] = "\x47\x42", [0x0391] = "\x50\x24", [0x0392] = "\x50\x23", + [0x0395] = "\x59\x28", [0x0397] = "\x44\x7d", [0x03a0] = "\x50\x25", + [0x03a2] = "\x54\x43", [0x03a4] = "\x54\x41", [0x03a5] = "\x54\x42", + [0x03aa] = "\x70\x36", [0x03ab] = "\x27\x2f", [0x03ac] = "\x45\x76", + [0x03b0] = "\x47\x43", [0x03b6] = "\x49\x2f", [0x03b7] = "\x49\x30", + [0x03bd] = "\x4c\x29", [0x03c6] = "\x54\x46", [0x03cb] = "\x54\x47", + [0x03cc] = "\x54\x45", [0x03cd] = "\x54\x44", [0x03dc] = "\x6c\x29", + [0x03dd] = "\x70\x37", [0x03e0] = "\x44\x2d", [0x03e1] = "\x44\x3b", + [0x03f0] = "\x59\x29", [0x03f1] = "\x5e\x33", [0x03f3] = "\x68\x21", + [0x03f6] = "\x44\x7e", [0x03f8] = "\x45\x79", [0x03f9] = "\x45\x77", + [0x03fa] = "\x45\x78", [0x03fd] = "\x4c\x2a", [0x0400] = "\x44\x2e", + [0x0401] = "\x44\x2f", [0x0403] = "\x44\x43", [0x0406] = "\x45\x21", + [0x0407] = "\x45\x22", [0x0408] = "\x45\x23", [0x040a] = "\x45\x7a", + [0x040e] = "\x47\x47", [0x0411] = "\x47\x45", [0x0412] = "\x47\x46", + [0x0416] = "\x47\x48", [0x0417] = "\x47\x44", [0x041d] = "\x4f\x4f", + [0x0424] = "\x49\x32", [0x0425] = "\x49\x31", [0x0428] = "\x49\x35", + [0x0429] = "\x49\x33", [0x042a] = "\x49\x34", [0x042e] = "\x4c\x30", + [0x0430] = "\x4c\x2f", [0x0436] = "\x4c\x31", [0x0437] = "\x4c\x2d", + [0x0438] = "\x4c\x2c", [0x043a] = "\x4c\x2e", [0x043b] = "\x4c\x2b", + [0x0441] = "\x4c\x32", [0x0443] = "\x50\x27", [0x0447] = "\x50\x2c", + [0x044a] = "\x50\x28", [0x044b] = "\x50\x2b", [0x044c] = "\x50\x2a", + [0x044d] = "\x50\x29", [0x044e] = "\x50\x26", [0x0454] = "\x54\x4a", + [0x0456] = "\x54\x48", [0x045b] = "\x54\x4b", [0x045c] = "\x54\x49", + [0x045d] = "\x54\x4c", [0x0469] = "\x5e\x37", [0x046a] = "\x59\x2a", + [0x046f] = "\x59\x2b", [0x0472] = "\x5e\x34", [0x0474] = "\x5e\x35", + [0x0475] = "\x5e\x36", [0x0477] = "\x63\x37", [0x047d] = "\x63\x38", + [0x047f] = "\x63\x36", [0x0482] = "\x68\x23", [0x0483] = "\x68\x22", + [0x0487] = "\x6c\x2a", [0x0488] = "\x6c\x2b", [0x0489] = "\x6c\x2c", + [0x048a] = "\x6c\x2e", [0x048d] = "\x6c\x2d", [0x0491] = "\x70\x38", + [0x0493] = "\x70\x39", [0x049b] = "\x44\x30", [0x049f] = "\x45\x7c", + [0x04a0] = "\x45\x7b", [0x04a3] = "\x47\x49", [0x04a9] = "\x49\x37", + [0x04aa] = "\x49\x38", [0x04ab] = "\x49\x36", [0x04ac] = "\x49\x39", + [0x04bb] = "\x4c\x34", [0x04be] = "\x4c\x33", [0x04c1] = "\x50\x30", + [0x04c3] = "\x50\x2f", [0x04c7] = "\x50\x2d", [0x04c9] = "\x50\x2e", + [0x04d2] = "\x59\x2c", [0x04d5] = "\x59\x2f", [0x04d7] = "\x5b\x2b", + [0x04d8] = "\x59\x2e", [0x04d9] = "\x59\x2d", [0x04db] = "\x5e\x3a", + [0x04dd] = "\x5e\x39", [0x04de] = "\x5e\x38", [0x04df] = "\x63\x39", + [0x04e2] = "\x63\x3c", [0x04e3] = "\x63\x3d", [0x04e4] = "\x63\x3b", + [0x04e6] = "\x63\x3a", [0x04f0] = "\x6c\x2f", [0x04f3] = "\x70\x3a", + [0x04f5] = "\x73\x44", [0x04f8] = "\x79\x61", [0x04f9] = "\x27\x34", [0x04fa] = "\x44\x44", [0x04fb] = "\x45\x24", [0x04fe] = "\x45\x25", [0x04ff] = "\x45\x26", [0x0505] = "\x45\x7d", [0x0506] = "\x45\x7e", [0x0508] = "\x47\x4a", [0x050d] = "\x50\x31", [0x050f] = "\x59\x31", @@ -3649,7 +3659,7 @@ const char __cns11643l1_from_ucs4_tab12[][2] = /* Glyphs for vertical variants. The table can be created using - egrep '^0x' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0xFE' | perl tab.pl where tab.pl is @@ -3691,7 +3701,7 @@ const char __cns11643l1_from_ucs4_tab13[][2] = /* Fullwidth ASCII variants. The table can be created using - egrep '^0x' .../mappings/eastasia/other/cns11643.txt | + egrep '^0x' CNS11643.TXT | awk '{ print $2, $1 }' | sort | egrep '^0xFF[0-5]' | perl tab.pl where tab.pl is diff --git a/iconvdata/cns11643l2.h b/iconvdata/cns11643l2.h index 0fea3885ff..4ea319c56a 100644 --- a/iconvdata/cns11643l2.h +++ b/iconvdata/cns11643l2.h @@ -1,5 +1,5 @@ /* Access functions for CNS 11643, plane 2 handling. - Copyright (C) 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. @@ -54,7 +54,7 @@ cns11643l2_to_ucs4 (const unsigned char **s, size_t avail, /* The table which contains the CNS 11643 level 2 mappings. */ -extern const char __cns11643_from_ucs4_tab[][3]; +extern const char __cns11643_from_ucs4p0_tab[][3]; static inline size_t @@ -65,7 +65,7 @@ ucs4_to_cns11643l2 (uint32_t wch, unsigned char *s, size_t avail) if (ch >= 0x4e07 && ch <= 0x9fa4) { - cp = __cns11643_from_ucs4_tab[ch - 0x4e00]; + cp = __cns11643_from_ucs4p0_tab[ch - 0x3400]; if (cp[0] == '\2') ++cp; else diff --git a/iconvdata/iso-2022-cn-ext.c b/iconvdata/iso-2022-cn-ext.c index aeb921a43c..19be951581 100644 --- a/iconvdata/iso-2022-cn-ext.c +++ b/iconvdata/iso-2022-cn-ext.c @@ -1,5 +1,5 @@ /* Conversion module for ISO-2022-CN-EXT. - Copyright (C) 2000,01 Free Software Foundation, Inc. + Copyright (C) 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 2000. @@ -301,7 +301,7 @@ enum /* This is a character from CNS 11643 plane 2. \ XXX We could test here whether the use of this character \ set was announced. \ - XXX Current GB7589 and GB13131 are not supported. */ \ + XXX Currently GB7589 and GB13131 are not supported. */ \ inptr += 2; \ ch = cns11643l2_to_ucs4 (&inptr, 2, 0); \ if (ch == __UNKNOWN_10646_CHAR) \ @@ -332,17 +332,27 @@ enum switch (ann & SS3_ann) \ { \ case CNS11643_3_ann: \ - /* CNS 11643 plane 3 is part of the old CNS 11643 plane 14. */ \ - if (buf[1] < 0x62 || (buf[1] == 0x62 && buf[2] <= 0x45)) \ - { \ - buf[0] = 0x2e; \ - ch = cns11643_to_ucs4 (&tmp, 3, 0); \ - } \ - else \ - ch = __UNKNOWN_10646_CHAR; \ + buf[0] = 0x23; \ + ch = cns11643_to_ucs4 (&tmp, 3, 0); \ + break; \ + case CNS11643_4_ann: \ + buf[0] = 0x24; \ + ch = cns11643_to_ucs4 (&tmp, 3, 0); \ + break; \ + case CNS11643_5_ann: \ + buf[0] = 0x25; \ + ch = cns11643_to_ucs4 (&tmp, 3, 0); \ + break; \ + case CNS11643_6_ann: \ + buf[0] = 0x26; \ + ch = cns11643_to_ucs4 (&tmp, 3, 0); \ + break; \ + case CNS11643_7_ann: \ + buf[0] = 0x27; \ + ch = cns11643_to_ucs4 (&tmp, 3, 0); \ break; \ default: \ - /* XXX Currently planes 4 to 7 are not supported. */ \ + /* XXX Currently GB7590 and GB13132 are not supported. */ \ ch = __UNKNOWN_10646_CHAR; \ break; \ } \ @@ -516,23 +526,36 @@ enum } \ \ written = ucs4_to_cns11643 (ch, tmpbuf, 3); \ - if (written == 3 && tmpbuf[0] != 1 && tmpbuf[0] != 2) \ + if (written == 3 && tmpbuf[0] >= 3 && tmpbuf[0] <= 7) \ { \ buf[0] = tmpbuf[1]; \ buf[1] = tmpbuf[2]; \ - written = 2; \ - /* CNS 11643 plane 3 is part of the old CNS 11643 \ - plane 14. \ - XXX Currently planes 4 to 7 are not supported. */ \ - if (tmpbuf[0] == 14 \ - && (tmpbuf[1] < 0x62 \ - || (tmpbuf[1] == 0x62 && tmpbuf[2] <= 0x45))) \ + switch (tmpbuf[0]) \ { \ + case 3: \ used = CNS11643_3_set; \ break; \ + case 4: \ + used = CNS11643_4_set; \ + break; \ + case 5: \ + used = CNS11643_5_set; \ + break; \ + case 6: \ + used = CNS11643_6_set; \ + break; \ + case 7: \ + used = CNS11643_7_set; \ + break; \ + default: \ + abort (); \ } \ + written = 2; \ + break; \ } \ \ + /* XXX Currently GB7590 and GB13132 are not supported. */\ + \ /* Even this does not work. Error. */ \ used = ASCII_set; \ } \ diff --git a/iconvdata/tst-table.sh b/iconvdata/tst-table.sh index f00d3eef3e..3386c1d480 100755 --- a/iconvdata/tst-table.sh +++ b/iconvdata/tst-table.sh @@ -41,7 +41,9 @@ ${SHELL} tst-table-charmap.sh ${charmap:-$charset} \ # Precompute expected differences between the two iconv directions. if test ${charset} = EUC-TW; then irreversible=${objpfx}tst-${charset}.irreversible - grep '^0x8EA1' ${objpfx}tst-${charset}.charmap.table > ${irreversible} + (grep '^0x8EA1' ${objpfx}tst-${charset}.charmap.table + cat ${charset}.irreversible + ) > ${irreversible} else irreversible=${charset}.irreversible fi diff --git a/localedata/charmaps/EUC-TW b/localedata/charmaps/EUC-TW index e20968207e..66201114a9 100644 --- a/localedata/charmaps/EUC-TW +++ b/localedata/charmaps/EUC-TW @@ -568,6 +568,9 @@ CHARMAP <U2177> /xa6/xbc SMALL ROMAN NUMERAL EIGHT <U2178> /xa6/xbd SMALL ROMAN NUMERAL NINE <U2179> /xa6/xbe SMALL ROMAN NUMERAL TEN +<U4EA0> /xa7/xa8 <CJK> +<U51AB> /xa7/xaf <CJK> +<U52F9> /xa7/xb4 <CJK> <U2400> /xc2/xa1 SYMBOL FOR NULL <U2401> /xc2/xa2 SYMBOL FOR START OF HEADING <U2402> /xc2/xa3 SYMBOL FOR START OF TEXT @@ -6436,6 +6439,9 @@ CHARMAP %IRREVERSIBLE%<U2177> /x8e/xa1/xa6/xbc SMALL ROMAN NUMERAL EIGHT %IRREVERSIBLE%<U2178> /x8e/xa1/xa6/xbd SMALL ROMAN NUMERAL NINE %IRREVERSIBLE%<U2179> /x8e/xa1/xa6/xbe SMALL ROMAN NUMERAL TEN +%IRREVERSIBLE%<U4EA0> /x8e/xa1/xa7/xa8 <CJK> +%IRREVERSIBLE%<U51AB> /x8e/xa1/xa7/xaf <CJK> +%IRREVERSIBLE%<U52F9> /x8e/xa1/xa7/xb4 <CJK> %IRREVERSIBLE%<U2400> /x8e/xa1/xc2/xa1 SYMBOL FOR NULL %IRREVERSIBLE%<U2401> /x8e/xa1/xc2/xa2 SYMBOL FOR START OF HEADING %IRREVERSIBLE%<U2402> /x8e/xa1/xc2/xa3 SYMBOL FOR START OF TEXT @@ -19524,4206 +19530,41356 @@ CHARMAP <U9F7E> /x8e/xa2/xf2/xc2 <CJK> <U9F49> /x8e/xa2/xf2/xc3 <CJK> <U9F98> /x8e/xa2/xf2/xc4 <CJK> -<U4E28> /x8e/xae/xa1/xa1 <CJK> -<U4E36> /x8e/xae/xa1/xa2 <CJK> -<U4E3F> /x8e/xae/xa1/xa3 <CJK> -<U4E85> /x8e/xae/xa1/xa4 <CJK> -<U4E05> /x8e/xae/xa1/xa5 <CJK> -<U4E04> /x8e/xae/xa1/xa6 <CJK> -<U5182> /x8e/xae/xa1/xa7 <CJK> -<U5196> /x8e/xae/xa1/xa8 <CJK> -<U5338> /x8e/xae/xa1/xa9 <CJK> -<U5369> /x8e/xae/xa1/xaa <CJK> -<U53B6> /x8e/xae/xa1/xab <CJK> -<U4E2A> /x8e/xae/xa1/xac <CJK> -<U4E87> /x8e/xae/xa1/xad <CJK> -<U4E49> /x8e/xae/xa1/xae <CJK> -<U51E2> /x8e/xae/xa1/xaf <CJK> -<U4E46> /x8e/xae/xa1/xb0 <CJK> -<U4E8F> /x8e/xae/xa1/xb1 <CJK> -<U4EBC> /x8e/xae/xa1/xb2 <CJK> -<U4EBE> /x8e/xae/xa1/xb3 <CJK> -<U5166> /x8e/xae/xa1/xb4 <CJK> -<U51E3> /x8e/xae/xa1/xb5 <CJK> -<U5204> /x8e/xae/xa1/xb6 <CJK> -<U529C> /x8e/xae/xa1/xb7 <CJK> -<U5902> /x8e/xae/xa1/xb9 <CJK> -<U590A> /x8e/xae/xa1/xba <CJK> -<U5B80> /x8e/xae/xa1/xbb <CJK> -<U5DDB> /x8e/xae/xa1/xbc <CJK> -<U5E7A> /x8e/xae/xa1/xbd <CJK> -<U5E7F> /x8e/xae/xa1/xbe <CJK> -<U5EF4> /x8e/xae/xa1/xbf <CJK> -<U5F50> /x8e/xae/xa1/xc0 <CJK> -<U5F51> /x8e/xae/xa1/xc1 <CJK> -<U5F61> /x8e/xae/xa1/xc2 <CJK> -<U961D> /x8e/xae/xa1/xc3 <CJK> -<U4E63> /x8e/xae/xa1/xc5 <CJK> -<U4E62> /x8e/xae/xa1/xc6 <CJK> -<U4EA3> /x8e/xae/xa1/xc7 <CJK> -<U5185> /x8e/xae/xa1/xc8 <CJK> -<U4EC5> /x8e/xae/xa1/xc9 <CJK> -<U4ECF> /x8e/xae/xa1/xca <CJK> -<U4ECE> /x8e/xae/xa1/xcb <CJK> -<U4ECC> /x8e/xae/xa1/xcc <CJK> -<U5184> /x8e/xae/xa1/xcd <CJK> -<U5186> /x8e/xae/xa1/xce <CJK> -<U51E4> /x8e/xae/xa1/xd1 <CJK> -<U5205> /x8e/xae/xa1/xd2 <CJK> -<U529E> /x8e/xae/xa1/xd3 <CJK> -<U529D> /x8e/xae/xa1/xd4 <CJK> -<U52FD> /x8e/xae/xa1/xd5 <CJK> -<U5300> /x8e/xae/xa1/xd6 <CJK> -<U533A> /x8e/xae/xa1/xd7 <CJK> -<U5346> /x8e/xae/xa1/xd9 <CJK> -<U535D> /x8e/xae/xa1/xda <CJK> -<U5386> /x8e/xae/xa1/xdb <CJK> -<U53B7> /x8e/xae/xa1/xdc <CJK> -<U53CC> /x8e/xae/xa1/xde <CJK> -<U53CE> /x8e/xae/xa1/xe0 <CJK> -<U5721> /x8e/xae/xa1/xe1 <CJK> -<U5E00> /x8e/xae/xa1/xe3 <CJK> -<U5F0C> /x8e/xae/xa1/xe4 <CJK> -<U6237> /x8e/xae/xa1/xe5 <CJK> -<U6238> /x8e/xae/xa1/xe6 <CJK> -<U6534> /x8e/xae/xa1/xe7 <CJK> -<U6535> /x8e/xae/xa1/xe8 <CJK> -<U65E0> /x8e/xae/xa1/xe9 <CJK> -<U738D> /x8e/xae/xa1/xeb <CJK> -<U4E97> /x8e/xae/xa1/xec <CJK> -<U4EE0> /x8e/xae/xa1/xed <CJK> -<U4EE7> /x8e/xae/xa1/xf0 <CJK> -<U4EE6> /x8e/xae/xa1/xf2 <CJK> -<U56D8> /x8e/xae/xa1/xf7 <CJK> -<U518B> /x8e/xae/xa1/xf8 <CJK> -<U518C> /x8e/xae/xa1/xf9 <CJK> -<U5199> /x8e/xae/xa1/xfa <CJK> -<U51E5> /x8e/xae/xa1/xfb <CJK> -<U520B> /x8e/xae/xa1/xfd <CJK> -<U5304> /x8e/xae/xa2/xa2 <CJK> -<U5303> /x8e/xae/xa2/xa3 <CJK> -<U5307> /x8e/xae/xa2/xa4 <CJK> -<U531E> /x8e/xae/xa2/xa6 <CJK> -<U535F> /x8e/xae/xa2/xa7 <CJK> -<U536D> /x8e/xae/xa2/xa8 <CJK> -<U5389> /x8e/xae/xa2/xa9 <CJK> -<U53BA> /x8e/xae/xa2/xaa <CJK> -<U53D0> /x8e/xae/xa2/xab <CJK> -<U53F6> /x8e/xae/xa2/xad <CJK> -<U53F7> /x8e/xae/xa2/xae <CJK> -<U53F9> /x8e/xae/xa2/xaf <CJK> -<U53F4> /x8e/xae/xa2/xb1 <CJK> -<U5724> /x8e/xae/xa2/xb4 <CJK> -<U5904> /x8e/xae/xa2/xb5 <CJK> -<U5918> /x8e/xae/xa2/xb6 <CJK> -<U5932> /x8e/xae/xa2/xb7 <CJK> -<U5930> /x8e/xae/xa2/xb8 <CJK> -<U5934> /x8e/xae/xa2/xb9 <CJK> -<U5975> /x8e/xae/xa2/xbb <CJK> -<U5B82> /x8e/xae/xa2/xbd <CJK> -<U5BF9> /x8e/xae/xa2/xbe <CJK> -<U5C14> /x8e/xae/xa2/xbf <CJK> -<U5E81> /x8e/xae/xa2/xc7 <CJK> -<U5E83> /x8e/xae/xa2/xc8 <CJK> -<U5F0D> /x8e/xae/xa2/xc9 <CJK> -<U5F52> /x8e/xae/xa2/xca <CJK> -<U5FCA> /x8e/xae/xa2/xcc <CJK> -<U5FC7> /x8e/xae/xa2/xcd <CJK> -<U6239> /x8e/xae/xa2/xce <CJK> -<U624F> /x8e/xae/xa2/xd0 <CJK> -<U65E7> /x8e/xae/xa2/xd1 <CJK> -<U672F> /x8e/xae/xa2/xd2 <CJK> -<U6B7A> /x8e/xae/xa2/xd3 <CJK> -<U6C39> /x8e/xae/xa2/xd4 <CJK> -<U6C37> /x8e/xae/xa2/xd7 <CJK> -<U6C44> /x8e/xae/xa2/xd8 <CJK> -<U6C45> /x8e/xae/xa2/xd9 <CJK> -<U738C> /x8e/xae/xa2/xda <CJK> -<U7592> /x8e/xae/xa2/xdb <CJK> -<U7676> /x8e/xae/xa2/xdc <CJK> -<U9093> /x8e/xae/xa2/xdd <CJK> -<U9092> /x8e/xae/xa2/xde <CJK> -<U4E21> /x8e/xae/xa2/xe1 <CJK> -<U4E20> /x8e/xae/xa2/xe2 <CJK> -<U4E22> /x8e/xae/xa2/xe3 <CJK> -<U4E68> /x8e/xae/xa2/xe4 <CJK> -<U4E89> /x8e/xae/xa2/xe5 <CJK> -<U4E98> /x8e/xae/xa2/xe6 <CJK> -<U4EF9> /x8e/xae/xa2/xe7 <CJK> -<U4EEF> /x8e/xae/xa2/xe8 <CJK> -<U4EF8> /x8e/xae/xa2/xeb <CJK> -<U4F06> /x8e/xae/xa2/xec <CJK> -<U4F03> /x8e/xae/xa2/xed <CJK> -<U4EFC> /x8e/xae/xa2/xee <CJK> -<U4EEE> /x8e/xae/xa2/xef <CJK> -<U4F16> /x8e/xae/xa2/xf0 <CJK> -<U4F28> /x8e/xae/xa2/xf2 <CJK> -<U4F1C> /x8e/xae/xa2/xf3 <CJK> -<U4F07> /x8e/xae/xa2/xf4 <CJK> -<U4F1A> /x8e/xae/xa2/xf5 <CJK> -<U4EFA> /x8e/xae/xa2/xf6 <CJK> -<U4F17> /x8e/xae/xa2/xf7 <CJK> -<U514A> /x8e/xae/xa2/xf8 <CJK> -<U5172> /x8e/xae/xa2/xfa <CJK> -<U51B4> /x8e/xae/xa2/xfc <CJK> -<U51B3> /x8e/xae/xa2/xfd <CJK> -<U51B2> /x8e/xae/xa2/xfe <CJK> -<U51E8> /x8e/xae/xa3/xa2 <CJK> -<U5214> /x8e/xae/xa3/xa4 <CJK> -<U520F> /x8e/xae/xa3/xa5 <CJK> -<U5215> /x8e/xae/xa3/xa6 <CJK> -<U5218> /x8e/xae/xa3/xa7 <CJK> -<U52A8> /x8e/xae/xa3/xa8 <CJK> -<U534B> /x8e/xae/xa3/xaa <CJK> -<U534F> /x8e/xae/xa3/xab <CJK> -<U5350> /x8e/xae/xa3/xad <CJK> -<U538B> /x8e/xae/xa3/xaf <CJK> -<U53BE> /x8e/xae/xa3/xb1 <CJK> -<U53D2> /x8e/xae/xa3/xb3 <CJK> -<U5416> /x8e/xae/xa3/xb4 <CJK> -<U53FF> /x8e/xae/xa3/xb5 <CJK> -<U5400> /x8e/xae/xa3/xb7 <CJK> -<U5405> /x8e/xae/xa3/xb9 <CJK> -<U5413> /x8e/xae/xa3/xba <CJK> -<U5415> /x8e/xae/xa3/xbb <CJK> -<U56E3> /x8e/xae/xa3/xbe <CJK> -<U5735> /x8e/xae/xa3/xbf <CJK> -<U5736> /x8e/xae/xa3/xc0 <CJK> -<U5731> /x8e/xae/xa3/xc1 <CJK> -<U5732> /x8e/xae/xa3/xc2 <CJK> -<U58EE> /x8e/xae/xa3/xc3 <CJK> -<U5905> /x8e/xae/xa3/xc4 <CJK> -<U4E54> /x8e/xae/xa3/xc5 <CJK> -<U5936> /x8e/xae/xa3/xc7 <CJK> -<U597A> /x8e/xae/xa3/xcb <CJK> -<U5986> /x8e/xae/xa3/xcd <CJK> -<U5B86> /x8e/xae/xa3/xd0 <CJK> -<U5F53> /x8e/xae/xa3/xd1 <CJK> -<U5C18> /x8e/xae/xa3/xd2 <CJK> -<U5C3D> /x8e/xae/xa3/xd4 <CJK> -<U5C78> /x8e/xae/xa3/xd5 <CJK> -<U5C80> /x8e/xae/xa3/xda <CJK> -<U5E08> /x8e/xae/xa3/xdc <CJK> -<U5EF5> /x8e/xae/xa3/xe1 <CJK> -<U5F0E> /x8e/xae/xa3/xe2 <CJK> -<U5FD3> /x8e/xae/xa3/xe6 <CJK> -<U5FDA> /x8e/xae/xa3/xe7 <CJK> -<U5FDB> /x8e/xae/xa3/xe9 <CJK> -<U620F> /x8e/xae/xa3/xeb <CJK> -<U625D> /x8e/xae/xa3/xec <CJK> -<U625F> /x8e/xae/xa3/xed <CJK> -<U6267> /x8e/xae/xa3/xee <CJK> -<U6257> /x8e/xae/xa3/xef <CJK> -<U9F50> /x8e/xae/xa3/xf0 <CJK> -<U65EB> /x8e/xae/xa3/xf2 <CJK> -<U65EA> /x8e/xae/xa3/xf3 <CJK> -<U6737> /x8e/xae/xa3/xf5 <CJK> -<U6732> /x8e/xae/xa3/xf7 <CJK> -<U6736> /x8e/xae/xa3/xf8 <CJK> -<U6B22> /x8e/xae/xa3/xf9 <CJK> -<U6BCE> /x8e/xae/xa3/xfa <CJK> -<U6C58> /x8e/xae/xa3/xfc <CJK> -<U6C51> /x8e/xae/xa3/xfd <CJK> -<U6C77> /x8e/xae/xa3/xfe <CJK> -<U6C3C> /x8e/xae/xa4/xa1 <CJK> -<U6C5A> /x8e/xae/xa4/xa3 <CJK> -<U6C53> /x8e/xae/xa4/xa5 <CJK> -<U706F> /x8e/xae/xa4/xa6 <CJK> -<U7072> /x8e/xae/xa4/xa7 <CJK> -<U706E> /x8e/xae/xa4/xa8 <CJK> -<U7073> /x8e/xae/xa4/xab <CJK> -<U72B1> /x8e/xae/xa4/xac <CJK> -<U72B2> /x8e/xae/xa4/xad <CJK> -<U738F> /x8e/xae/xa4/xaf <CJK> -<U793C> /x8e/xae/xa4/xb3 <CJK> -<U808D> /x8e/xae/xa4/xb5 <CJK> -<U808E> /x8e/xae/xa4/xb6 <CJK> -<U827B> /x8e/xae/xa4/xb8 <CJK> -<U8D71> /x8e/xae/xa4/xba <CJK> -<U8FB9> /x8e/xae/xa4/xbb <CJK> -<U9096> /x8e/xae/xa4/xbc <CJK> -<U909A> /x8e/xae/xa4/xbd <CJK> -<U4E24> /x8e/xae/xa4/xbf <CJK> -<U4E71> /x8e/xae/xa4/xc0 <CJK> -<U4E9C> /x8e/xae/xa4/xc2 <CJK> -<U4F45> /x8e/xae/xa4/xc3 <CJK> -<U4F4A> /x8e/xae/xa4/xc4 <CJK> -<U4F39> /x8e/xae/xa4/xc5 <CJK> -<U4F37> /x8e/xae/xa4/xc6 <CJK> -<U4F32> /x8e/xae/xa4/xc8 <CJK> -<U4F42> /x8e/xae/xa4/xc9 <CJK> -<U4F44> /x8e/xae/xa4/xcb <CJK> -<U4F4B> /x8e/xae/xa4/xcc <CJK> -<U4F40> /x8e/xae/xa4/xce <CJK> -<U4F35> /x8e/xae/xa4/xcf <CJK> -<U4F31> /x8e/xae/xa4/xd0 <CJK> -<U5151> /x8e/xae/xa4/xd1 <CJK> -<U5150> /x8e/xae/xa4/xd3 <CJK> -<U514E> /x8e/xae/xa4/xd4 <CJK> -<U519D> /x8e/xae/xa4/xd7 <CJK> -<U51B5> /x8e/xae/xa4/xd9 <CJK> -<U51B8> /x8e/xae/xa4/xda <CJK> -<U51EC> /x8e/xae/xa4/xdb <CJK> -<U5223> /x8e/xae/xa4/xdc <CJK> -<U5227> /x8e/xae/xa4/xdd <CJK> -<U5226> /x8e/xae/xa4/xde <CJK> -<U521F> /x8e/xae/xa4/xdf <CJK> -<U522B> /x8e/xae/xa4/xe0 <CJK> -<U5220> /x8e/xae/xa4/xe1 <CJK> -<U52B4> /x8e/xae/xa4/xe2 <CJK> -<U52B3> /x8e/xae/xa4/xe3 <CJK> -<U5325> /x8e/xae/xa4/xe5 <CJK> -<U533B> /x8e/xae/xa4/xe6 <CJK> -<U5374> /x8e/xae/xa4/xe7 <CJK> -<U544D> /x8e/xae/xa4/xed <CJK> -<U543A> /x8e/xae/xa4/xf0 <CJK> -<U5444> /x8e/xae/xa4/xf3 <CJK> -<U544C> /x8e/xae/xa4/xf4 <CJK> -<U5423> /x8e/xae/xa4/xf5 <CJK> -<U541A> /x8e/xae/xa4/xf6 <CJK> -<U5432> /x8e/xae/xa4/xf7 <CJK> -<U544B> /x8e/xae/xa4/xf8 <CJK> -<U5421> /x8e/xae/xa4/xf9 <CJK> -<U5434> /x8e/xae/xa4/xfb <CJK> -<U5449> /x8e/xae/xa4/xfc <CJK> -<U5450> /x8e/xae/xa4/xfd <CJK> -<U5422> /x8e/xae/xa4/xfe <CJK> -<U543F> /x8e/xae/xa5/xa1 <CJK> -<U5451> /x8e/xae/xa5/xa2 <CJK> -<U545A> /x8e/xae/xa5/xa3 <CJK> -<U542F> /x8e/xae/xa5/xa4 <CJK> -<U56E9> /x8e/xae/xa5/xa6 <CJK> -<U56F2> /x8e/xae/xa5/xa7 <CJK> -<U56F3> /x8e/xae/xa5/xa8 <CJK> -<U56EF> /x8e/xae/xa5/xa9 <CJK> -<U56ED> /x8e/xae/xa5/xaa <CJK> -<U56EC> /x8e/xae/xa5/xab <CJK> -<U56E6> /x8e/xae/xa5/xac <CJK> -<U5748> /x8e/xae/xa5/xad <CJK> -<U5744> /x8e/xae/xa5/xaf <CJK> -<U573F> /x8e/xae/xa5/xb0 <CJK> -<U573C> /x8e/xae/xa5/xb1 <CJK> -<U5753> /x8e/xae/xa5/xb2 <CJK> -<U5756> /x8e/xae/xa5/xb3 <CJK> -<U575F> /x8e/xae/xa5/xb5 <CJK> -<U5743> /x8e/xae/xa5/xb6 <CJK> -<U5758> /x8e/xae/xa5/xb7 <CJK> -<U5757> /x8e/xae/xa5/xb8 <CJK> -<U5746> /x8e/xae/xa5/xbc <CJK> -<U573D> /x8e/xae/xa5/xbe <CJK> -<U5742> /x8e/xae/xa5/xc0 <CJK> -<U5754> /x8e/xae/xa5/xc1 <CJK> -<U5755> /x8e/xae/xa5/xc2 <CJK> -<U58F1> /x8e/xae/xa5/xc3 <CJK> -<U58F2> /x8e/xae/xa5/xc4 <CJK> -<U58F0> /x8e/xae/xa5/xc5 <CJK> -<U590B> /x8e/xae/xa5/xc6 <CJK> -<U9EA6> /x8e/xae/xa5/xc7 <CJK> -<U56F1> /x8e/xae/xa5/xc8 <CJK> -<U593D> /x8e/xae/xa5/xc9 <CJK> -<U5994> /x8e/xae/xa5/xcb <CJK> -<U598C> /x8e/xae/xa5/xcc <CJK> -<U599C> /x8e/xae/xa5/xce <CJK> -<U599F> /x8e/xae/xa5/xd1 <CJK> -<U599B> /x8e/xae/xa5/xd3 <CJK> -<U5989> /x8e/xae/xa5/xd5 <CJK> -<U599A> /x8e/xae/xa5/xd6 <CJK> -<U6588> /x8e/xae/xa5/xd8 <CJK> -<U5B8D> /x8e/xae/xa5/xda <CJK> -<U5BFE> /x8e/xae/xa5/xdc <CJK> -<U5BFF> /x8e/xae/xa5/xdd <CJK> -<U5BFD> /x8e/xae/xa5/xde <CJK> -<U5C2B> /x8e/xae/xa5/xdf <CJK> -<U5C84> /x8e/xae/xa5/xe1 <CJK> -<U5C8E> /x8e/xae/xa5/xe2 <CJK> -<U5C9C> /x8e/xae/xa5/xe3 <CJK> -<U5C85> /x8e/xae/xa5/xe6 <CJK> -<U5DF5> /x8e/xae/xa5/xe7 <CJK> -<U5E09> /x8e/xae/xa5/xe8 <CJK> -<U5E0B> /x8e/xae/xa5/xeb <CJK> -<U5E92> /x8e/xae/xa5/xed <CJK> -<U5E90> /x8e/xae/xa5/xee <CJK> -<U5F03> /x8e/xae/xa5/xef <CJK> -<U5F1E> /x8e/xae/xa5/xf1 <CJK> -<U5F63> /x8e/xae/xa5/xf2 <CJK> -<U5FE7> /x8e/xae/xa5/xf4 <CJK> -<U5FFE> /x8e/xae/xa5/xf5 <CJK> -<U5FE6> /x8e/xae/xa5/xf6 <CJK> -<U5FDC> /x8e/xae/xa5/xf7 <CJK> -<U5FCE> /x8e/xae/xa5/xf8 <CJK> -<U5FFC> /x8e/xae/xa5/xfa <CJK> -<U5FDF> /x8e/xae/xa5/xfb <CJK> -<U5FEC> /x8e/xae/xa5/xfc <CJK> -<U5FF6> /x8e/xae/xa5/xfd <CJK> -<U5FF2> /x8e/xae/xa6/xa1 <CJK> -<U5FF0> /x8e/xae/xa6/xa2 <CJK> -<U5FF9> /x8e/xae/xa6/xa3 <CJK> -<U6213> /x8e/xae/xa6/xa5 <CJK> -<U623B> /x8e/xae/xa6/xa8 <CJK> -<U623C> /x8e/xae/xa6/xa9 <CJK> -<U6282> /x8e/xae/xa6/xaa <CJK> -<U6278> /x8e/xae/xa6/xae <CJK> -<U628B> /x8e/xae/xa6/xaf <CJK> -<U629E> /x8e/xae/xa6/xb1 <CJK> -<U62A5> /x8e/xae/xa6/xb2 <CJK> -<U629B> /x8e/xae/xa6/xb3 <CJK> -<U629C> /x8e/xae/xa6/xb4 <CJK> -<U6299> /x8e/xae/xa6/xb5 <CJK> -<U628D> /x8e/xae/xa6/xb6 <CJK> -<U6285> /x8e/xae/xa6/xb7 <CJK> -<U629D> /x8e/xae/xa6/xb8 <CJK> -<U6275> /x8e/xae/xa6/xb9 <CJK> -<U65F6> /x8e/xae/xa6/xbd <CJK> -<U66F5> /x8e/xae/xa6/xc1 <CJK> -<U675B> /x8e/xae/xa6/xc2 <CJK> -<U6754> /x8e/xae/xa6/xc4 <CJK> -<U6752> /x8e/xae/xa6/xc5 <CJK> -<U6758> /x8e/xae/xa6/xc7 <CJK> -<U6744> /x8e/xae/xa6/xc8 <CJK> -<U674A> /x8e/xae/xa6/xc9 <CJK> -<U6761> /x8e/xae/xa6/xca <CJK> -<U6C7F> /x8e/xae/xa6/xcc <CJK> -<U6C91> /x8e/xae/xa6/xcd <CJK> -<U6C9E> /x8e/xae/xa6/xce <CJK> -<U6C6E> /x8e/xae/xa6/xd0 <CJK> -<U6C7C> /x8e/xae/xa6/xd1 <CJK> -<U6C9F> /x8e/xae/xa6/xd2 <CJK> -<U6C75> /x8e/xae/xa6/xd3 <CJK> -<U6C56> /x8e/xae/xa6/xd5 <CJK> -<U6CA2> /x8e/xae/xa6/xd6 <CJK> -<U6C79> /x8e/xae/xa6/xd7 <CJK> -<U6CA1> /x8e/xae/xa6/xd9 <CJK> -<U6CAA> /x8e/xae/xa6/xdb <CJK> -<U6CA0> /x8e/xae/xa6/xdc <CJK> -<U7079> /x8e/xae/xa6/xde <CJK> -<U7077> /x8e/xae/xa6/xdf <CJK> -<U707E> /x8e/xae/xa6/xe0 <CJK> -<U7075> /x8e/xae/xa6/xe2 <CJK> -<U707B> /x8e/xae/xa6/xe3 <CJK> -<U7264> /x8e/xae/xa6/xe4 <CJK> -<U72BB> /x8e/xae/xa6/xe6 <CJK> -<U72BC> /x8e/xae/xa6/xe7 <CJK> -<U72C7> /x8e/xae/xa6/xe8 <CJK> -<U72B9> /x8e/xae/xa6/xe9 <CJK> -<U72BE> /x8e/xae/xa6/xea <CJK> -<U72B6> /x8e/xae/xa6/xeb <CJK> -<U7398> /x8e/xae/xa6/xee <CJK> -<U7593> /x8e/xae/xa6/xf3 <CJK> -<U7680> /x8e/xae/xa6/xf4 <CJK> -<U7683> /x8e/xae/xa6/xf6 <CJK> -<U76C0> /x8e/xae/xa6/xf7 <CJK> -<U76C1> /x8e/xae/xa6/xf8 <CJK> -<U77F4> /x8e/xae/xa6/xfb <CJK> -<U77F5> /x8e/xae/xa6/xfc <CJK> -<U7ACC> /x8e/xae/xa6/xfe <CJK> -<U7ACD> /x8e/xae/xa7/xa1 <CJK> -<U7CFA> /x8e/xae/xa7/xa2 <CJK> -<U809F> /x8e/xae/xa7/xa3 <CJK> -<U8091> /x8e/xae/xa7/xa4 <CJK> -<U8097> /x8e/xae/xa7/xa5 <CJK> -<U8094> /x8e/xae/xa7/xa6 <CJK> -<U8286> /x8e/xae/xa7/xa8 <CJK> -<U828C> /x8e/xae/xa7/xa9 <CJK> -<U8295> /x8e/xae/xa7/xab <CJK> -<U866C> /x8e/xae/xa7/xad <CJK> -<U8FB5> /x8e/xae/xa7/xaf <CJK> -<U8FBE> /x8e/xae/xa7/xb0 <CJK> -<U8FC7> /x8e/xae/xa7/xb1 <CJK> -<U8FC1> /x8e/xae/xa7/xb3 <CJK> -<U90A9> /x8e/xae/xa7/xb4 <CJK> -<U90A4> /x8e/xae/xa7/xb5 <CJK> -<U90A8> /x8e/xae/xa7/xb9 <CJK> -<U9627> /x8e/xae/xa7/xba <CJK> -<U9626> /x8e/xae/xa7/xbb <CJK> -<U962B> /x8e/xae/xa7/xbc <CJK> -<U9633> /x8e/xae/xa7/xbd <CJK> -<U9634> /x8e/xae/xa7/xbe <CJK> -<U9629> /x8e/xae/xa7/xbf <CJK> -<U4E3D> /x8e/xae/xa7/xc0 <CJK> -<U4E9D> /x8e/xae/xa7/xc2 <CJK> -<U4F93> /x8e/xae/xa7/xc3 <CJK> -<U4F8A> /x8e/xae/xa7/xc4 <CJK> -<U4F6D> /x8e/xae/xa7/xc7 <CJK> -<U4F8E> /x8e/xae/xa7/xc8 <CJK> -<U4FA0> /x8e/xae/xa7/xc9 <CJK> -<U4FA2> /x8e/xae/xa7/xca <CJK> -<U4FA1> /x8e/xae/xa7/xcb <CJK> -<U4F9F> /x8e/xae/xa7/xcc <CJK> -<U4FA3> /x8e/xae/xa7/xcd <CJK> -<U4F72> /x8e/xae/xa7/xcf <CJK> -<U4F8C> /x8e/xae/xa7/xd1 <CJK> -<U5156> /x8e/xae/xa7/xd2 <CJK> -<U5190> /x8e/xae/xa7/xd5 <CJK> -<U51ED> /x8e/xae/xa7/xd9 <CJK> -<U51FE> /x8e/xae/xa7/xda <CJK> -<U522F> /x8e/xae/xa7/xdb <CJK> -<U523C> /x8e/xae/xa7/xdd <CJK> -<U5234> /x8e/xae/xa7/xde <CJK> -<U5239> /x8e/xae/xa7/xdf <CJK> -<U52B9> /x8e/xae/xa7/xe0 <CJK> -<U52B5> /x8e/xae/xa7/xe1 <CJK> -<U52BF> /x8e/xae/xa7/xe2 <CJK> -<U5355> /x8e/xae/xa7/xe3 <CJK> -<U5376> /x8e/xae/xa7/xe5 <CJK> -<U537A> /x8e/xae/xa7/xe6 <CJK> -<U5393> /x8e/xae/xa7/xe7 <CJK> -<U53C1> /x8e/xae/xa7/xe9 <CJK> -<U53C2> /x8e/xae/xa7/xea <CJK> -<U53D5> /x8e/xae/xa7/xeb <CJK> -<U5485> /x8e/xae/xa7/xec <CJK> -<U545F> /x8e/xae/xa7/xee <CJK> -<U5493> /x8e/xae/xa7/xef <CJK> -<U5489> /x8e/xae/xa7/xf0 <CJK> -<U5479> /x8e/xae/xa7/xf1 <CJK> -<U9EFE> /x8e/xae/xa7/xf2 <CJK> -<U548F> /x8e/xae/xa7/xf3 <CJK> -<U5469> /x8e/xae/xa7/xf4 <CJK> -<U546D> /x8e/xae/xa7/xf5 <CJK> -<U5494> /x8e/xae/xa7/xf7 <CJK> -<U546A> /x8e/xae/xa7/xf8 <CJK> -<U548A> /x8e/xae/xa7/xf9 <CJK> -<U56FD> /x8e/xae/xa7/xfb <CJK> -<U56FB> /x8e/xae/xa7/xfc <CJK> -<U56F8> /x8e/xae/xa7/xfd <CJK> -<U56FC> /x8e/xae/xa8/xa1 <CJK> -<U56F6> /x8e/xae/xa8/xa2 <CJK> -<U5765> /x8e/xae/xa8/xa3 <CJK> -<U5781> /x8e/xae/xa8/xa4 <CJK> -<U5763> /x8e/xae/xa8/xa5 <CJK> -<U5767> /x8e/xae/xa8/xa6 <CJK> -<U576E> /x8e/xae/xa8/xa8 <CJK> -<U5778> /x8e/xae/xa8/xa9 <CJK> -<U577F> /x8e/xae/xa8/xaa <CJK> -<U58F3> /x8e/xae/xa8/xad <CJK> -<U594B> /x8e/xae/xa8/xae <CJK> -<U594C> /x8e/xae/xa8/xaf <CJK> -<U59AD> /x8e/xae/xa8/xb3 <CJK> -<U59C4> /x8e/xae/xa8/xb5 <CJK> -<U59C2> /x8e/xae/xa8/xb7 <CJK> -<U59B0> /x8e/xae/xa8/xb8 <CJK> -<U59BF> /x8e/xae/xa8/xbd <CJK> -<U59C9> /x8e/xae/xa8/xbf <CJK> -<U59B8> /x8e/xae/xa8/xc0 <CJK> -<U59AC> /x8e/xae/xa8/xc1 <CJK> -<U59B7> /x8e/xae/xa8/xc5 <CJK> -<U59D7> /x8e/xae/xa8/xc6 <CJK> -<U5B60> /x8e/xae/xa8/xc8 <CJK> -<U5B96> /x8e/xae/xa8/xca <CJK> -<U5B9E> /x8e/xae/xa8/xcb <CJK> -<U5B94> /x8e/xae/xa8/xcc <CJK> -<U5B9F> /x8e/xae/xa8/xcd <CJK> -<U5B9D> /x8e/xae/xa8/xce <CJK> -<U5C00> /x8e/xae/xa8/xd0 <CJK> -<U5C19> /x8e/xae/xa8/xd1 <CJK> -<U5C49> /x8e/xae/xa8/xd4 <CJK> -<U5C4A> /x8e/xae/xa8/xd5 <CJK> -<U5CBB> /x8e/xae/xa8/xd7 <CJK> -<U5CC1> /x8e/xae/xa8/xd8 <CJK> -<U5CB9> /x8e/xae/xa8/xdc <CJK> -<U5C9E> /x8e/xae/xa8/xdd <CJK> -<U5CB4> /x8e/xae/xa8/xde <CJK> -<U5CBA> /x8e/xae/xa8/xdf <CJK> -<U5DF6> /x8e/xae/xa8/xe0 <CJK> -<U5E13> /x8e/xae/xa8/xe1 <CJK> -<U5E12> /x8e/xae/xa8/xe2 <CJK> -<U5E77> /x8e/xae/xa8/xe3 <CJK> -<U5E98> /x8e/xae/xa8/xe5 <CJK> -<U5E99> /x8e/xae/xa8/xe7 <CJK> -<U5E9D> /x8e/xae/xa8/xe8 <CJK> -<U5EF8> /x8e/xae/xa8/xe9 <CJK> -<U5EF9> /x8e/xae/xa8/xeb <CJK> -<U5F06> /x8e/xae/xa8/xed <CJK> -<U5F21> /x8e/xae/xa8/xee <CJK> -<U5F25> /x8e/xae/xa8/xf0 <CJK> -<U5F55> /x8e/xae/xa8/xf1 <CJK> -<U5F84> /x8e/xae/xa8/xf5 <CJK> -<U5F83> /x8e/xae/xa8/xf6 <CJK> -<U6030> /x8e/xae/xa8/xf7 <CJK> -<U6007> /x8e/xae/xa8/xf8 <CJK> -<U6036> /x8e/xae/xa8/xfa <CJK> -<U5FE9> /x8e/xae/xa8/xfe <CJK> -<U603D> /x8e/xae/xa9/xa1 <CJK> -<U6008> /x8e/xae/xa9/xa2 <CJK> -<U62BA> /x8e/xae/xa9/xa5 <CJK> -<U62B2> /x8e/xae/xa9/xa6 <CJK> -<U62B7> /x8e/xae/xa9/xa8 <CJK> -<U62E4> /x8e/xae/xa9/xa9 <CJK> -<U62A7> /x8e/xae/xa9/xaa <CJK> -<U62D5> /x8e/xae/xa9/xae <CJK> -<U62E1> /x8e/xae/xa9/xaf <CJK> -<U62DD> /x8e/xae/xa9/xb0 <CJK> -<U62A6> /x8e/xae/xa9/xb1 <CJK> -<U62C1> /x8e/xae/xa9/xb2 <CJK> -<U62C5> /x8e/xae/xa9/xb3 <CJK> -<U62C0> /x8e/xae/xa9/xb4 <CJK> -<U62DF> /x8e/xae/xa9/xb5 <CJK> -<U62E0> /x8e/xae/xa9/xb6 <CJK> -<U62DE> /x8e/xae/xa9/xb7 <CJK> -<U6589> /x8e/xae/xa9/xb9 <CJK> -<U65A6> /x8e/xae/xa9/xbb <CJK> -<U65BA> /x8e/xae/xa9/xbc <CJK> -<U65FF> /x8e/xae/xa9/xbe <CJK> -<U6617> /x8e/xae/xa9/xc0 <CJK> -<U6618> /x8e/xae/xa9/xc1 <CJK> -<U6601> /x8e/xae/xa9/xc2 <CJK> -<U65FE> /x8e/xae/xa9/xc3 <CJK> -<U670C> /x8e/xae/xa9/xc5 <CJK> -<U676B> /x8e/xae/xa9/xc7 <CJK> -<U6796> /x8e/xae/xa9/xc8 <CJK> -<U6782> /x8e/xae/xa9/xc9 <CJK> -<U678A> /x8e/xae/xa9/xca <CJK> -<U67A3> /x8e/xae/xa9/xcc <CJK> -<U67A2> /x8e/xae/xa9/xce <CJK> -<U678F> /x8e/xae/xa9/xcf <CJK> -<U67F9> /x8e/xae/xa9/xd1 <CJK> -<U6780> /x8e/xae/xa9/xd2 <CJK> -<U6B26> /x8e/xae/xa9/xd3 <CJK> -<U6B27> /x8e/xae/xa9/xd4 <CJK> -<U6B68> /x8e/xae/xa9/xd5 <CJK> -<U6B69> /x8e/xae/xa9/xd6 <CJK> -<U6B81> /x8e/xae/xa9/xd8 <CJK> -<U6BB4> /x8e/xae/xa9/xd9 <CJK> -<U6BD1> /x8e/xae/xa9/xda <CJK> -<U6C1C> /x8e/xae/xa9/xdd <CJK> -<U6C97> /x8e/xae/xa9/xe3 <CJK> -<U6C6C> /x8e/xae/xa9/xe4 <CJK> -<U6CDF> /x8e/xae/xa9/xe5 <CJK> -<U6CEA> /x8e/xae/xa9/xe7 <CJK> -<U6CE4> /x8e/xae/xa9/xe9 <CJK> -<U6CD8> /x8e/xae/xa9/xea <CJK> -<U6CB2> /x8e/xae/xa9/xeb <CJK> -<U6CCE> /x8e/xae/xa9/xec <CJK> -<U6CC8> /x8e/xae/xa9/xed <CJK> -<U708B> /x8e/xae/xa9/xef <CJK> -<U7088> /x8e/xae/xa9/xf0 <CJK> -<U7090> /x8e/xae/xa9/xf1 <CJK> -<U708F> /x8e/xae/xa9/xf2 <CJK> -<U7087> /x8e/xae/xa9/xf4 <CJK> -<U7089> /x8e/xae/xa9/xf5 <CJK> -<U708D> /x8e/xae/xa9/xf6 <CJK> -<U7081> /x8e/xae/xa9/xf7 <CJK> -<U708C> /x8e/xae/xa9/xf9 <CJK> -<U7240> /x8e/xae/xa9/xfc <CJK> -<U7265> /x8e/xae/xaa/xa1 <CJK> -<U7266> /x8e/xae/xaa/xa2 <CJK> -<U7268> /x8e/xae/xaa/xa3 <CJK> -<U72CD> /x8e/xae/xaa/xa6 <CJK> -<U72D3> /x8e/xae/xaa/xa7 <CJK> -<U72DB> /x8e/xae/xaa/xa8 <CJK> -<U72CF> /x8e/xae/xaa/xaa <CJK> -<U73A7> /x8e/xae/xaa/xab <CJK> -<U73A3> /x8e/xae/xaa/xac <CJK> -<U739E> /x8e/xae/xaa/xad <CJK> -<U73AF> /x8e/xae/xaa/xaf <CJK> -<U73AA> /x8e/xae/xaa/xb2 <CJK> -<U739C> /x8e/xae/xaa/xb3 <CJK> -<U7542> /x8e/xae/xaa/xb5 <CJK> -<U7544> /x8e/xae/xaa/xb6 <CJK> -<U753B> /x8e/xae/xaa/xb7 <CJK> -<U7541> /x8e/xae/xaa/xb8 <CJK> -<U759B> /x8e/xae/xaa/xba <CJK> -<U759E> /x8e/xae/xaa/xbb <CJK> -<U79C4> /x8e/xae/xaa/xbd <CJK> -<U79C3> /x8e/xae/xaa/xbe <CJK> -<U79C6> /x8e/xae/xaa/xbf <CJK> -<U79C7> /x8e/xae/xaa/xc2 <CJK> -<U79CA> /x8e/xae/xaa/xc4 <CJK> -<U7ACF> /x8e/xae/xaa/xc7 <CJK> -<U7C76> /x8e/xae/xaa/xc8 <CJK> -<U7C74> /x8e/xae/xaa/xc9 <CJK> -<U7CFF> /x8e/xae/xaa/xca <CJK> -<U7CFC> /x8e/xae/xaa/xcb <CJK> -<U7F59> /x8e/xae/xaa/xce <CJK> -<U80A8> /x8e/xae/xaa/xcf <CJK> -<U80B0> /x8e/xae/xaa/xd2 <CJK> -<U80B3> /x8e/xae/xaa/xd4 <CJK> -<U80A4> /x8e/xae/xaa/xd6 <CJK> -<U80B6> /x8e/xae/xaa/xd7 <CJK> -<U80A7> /x8e/xae/xaa/xd8 <CJK> -<U80AC> /x8e/xae/xaa/xd9 <CJK> -<U80A6> /x8e/xae/xaa/xdb <CJK> -<U5367> /x8e/xae/xaa/xdc <CJK> -<U820E> /x8e/xae/xaa/xdd <CJK> -<U82C4> /x8e/xae/xaa/xde <CJK> -<U833E> /x8e/xae/xaa/xdf <CJK> -<U829C> /x8e/xae/xaa/xe0 <CJK> -<U82AA> /x8e/xae/xaa/xe6 <CJK> -<U82C9> /x8e/xae/xaa/xe8 <CJK> -<U82A6> /x8e/xae/xaa/xeb <CJK> -<U82B2> /x8e/xae/xaa/xec <CJK> -<U8FCC> /x8e/xae/xaa/xf0 <CJK> -<U8FD9> /x8e/xae/xaa/xf1 <CJK> -<U8FCA> /x8e/xae/xaa/xf2 <CJK> -<U8FD8> /x8e/xae/xaa/xf3 <CJK> -<U8FCF> /x8e/xae/xaa/xf4 <CJK> -<U90B7> /x8e/xae/xaa/xf5 <CJK> -<U90AD> /x8e/xae/xaa/xf7 <CJK> -<U90B9> /x8e/xae/xaa/xf8 <CJK> -<U9637> /x8e/xae/xaa/xf9 <CJK> -<U9641> /x8e/xae/xaa/xfb <CJK> -<U963E> /x8e/xae/xaa/xfc <CJK> -<U96B6> /x8e/xae/xaa/xfd <CJK> -<U9751> /x8e/xae/xaa/xfe <CJK> -<U9763> /x8e/xae/xab/xa1 <CJK> -<U4E57> /x8e/xae/xab/xa2 <CJK> -<U4E79> /x8e/xae/xab/xa3 <CJK> -<U4EB2> /x8e/xae/xab/xa4 <CJK> -<U4EB0> /x8e/xae/xab/xa5 <CJK> -<U4EAF> /x8e/xae/xab/xa6 <CJK> -<U4EB1> /x8e/xae/xab/xa7 <CJK> -<U4FD2> /x8e/xae/xab/xa8 <CJK> -<U4FD5> /x8e/xae/xab/xa9 <CJK> -<U4FBE> /x8e/xae/xab/xab <CJK> -<U4FB8> /x8e/xae/xab/xac <CJK> -<U4FB0> /x8e/xae/xab/xad <CJK> -<U4FB1> /x8e/xae/xab/xae <CJK> -<U4FC8> /x8e/xae/xab/xaf <CJK> -<U4FC6> /x8e/xae/xab/xb2 <CJK> -<U4FCC> /x8e/xae/xab/xb3 <CJK> -<U4FE5> /x8e/xae/xab/xb4 <CJK> -<U4FE3> /x8e/xae/xab/xb5 <CJK> -<U4FB4> /x8e/xae/xab/xb6 <CJK> -<U516A> /x8e/xae/xab/xb7 <CJK> -<U519F> /x8e/xae/xab/xb9 <CJK> -<U51C1> /x8e/xae/xab/xbb <CJK> -<U51C2> /x8e/xae/xab/xbd <CJK> -<U51C3> /x8e/xae/xab/xbe <CJK> -<U5245> /x8e/xae/xab/xbf <CJK> -<U5248> /x8e/xae/xab/xc0 <CJK> -<U524F> /x8e/xae/xab/xc3 <CJK> -<U52C5> /x8e/xae/xab/xc6 <CJK> -<U52CA> /x8e/xae/xab/xc7 <CJK> -<U52C4> /x8e/xae/xab/xc8 <CJK> -<U5327> /x8e/xae/xab/xc9 <CJK> -<U5358> /x8e/xae/xab/xca <CJK> -<U537D> /x8e/xae/xab/xcb <CJK> -<U53DD> /x8e/xae/xab/xcd <CJK> -<U53DC> /x8e/xae/xab/xce <CJK> -<U53DA> /x8e/xae/xab/xcf <CJK> -<U53D9> /x8e/xae/xab/xd0 <CJK> -<U54B9> /x8e/xae/xab/xd1 <CJK> -<U54D0> /x8e/xae/xab/xd3 <CJK> -<U54B4> /x8e/xae/xab/xd4 <CJK> -<U54CA> /x8e/xae/xab/xd5 <CJK> -<U54A3> /x8e/xae/xab/xd7 <CJK> -<U54DA> /x8e/xae/xab/xd8 <CJK> -<U54A4> /x8e/xae/xab/xd9 <CJK> -<U54B2> /x8e/xae/xab/xdb <CJK> -<U549E> /x8e/xae/xab/xdc <CJK> -<U549F> /x8e/xae/xab/xdd <CJK> -<U54B5> /x8e/xae/xab/xde <CJK> -<U54CD> /x8e/xae/xab/xe1 <CJK> -<U54CC> /x8e/xae/xab/xe3 <CJK> -<U5700> /x8e/xae/xab/xe5 <CJK> -<U57AC> /x8e/xae/xab/xe6 <CJK> -<U5791> /x8e/xae/xab/xe7 <CJK> -<U578E> /x8e/xae/xab/xe8 <CJK> -<U578D> /x8e/xae/xab/xe9 <CJK> -<U5792> /x8e/xae/xab/xea <CJK> -<U57A1> /x8e/xae/xab/xeb <CJK> -<U5790> /x8e/xae/xab/xec <CJK> -<U57A6> /x8e/xae/xab/xed <CJK> -<U57A8> /x8e/xae/xab/xee <CJK> -<U579C> /x8e/xae/xab/xf0 <CJK> -<U5796> /x8e/xae/xab/xf1 <CJK> -<U57A7> /x8e/xae/xab/xf2 <CJK> -<U58F5> /x8e/xae/xab/xf7 <CJK> -<U5909> /x8e/xae/xab/xf9 <CJK> -<U5908> /x8e/xae/xab/xfa <CJK> -<U5952> /x8e/xae/xab/xfc <CJK> -<U59DF> /x8e/xae/xac/xa1 <CJK> -<U59EB> /x8e/xae/xac/xa3 <CJK> -<U59EF> /x8e/xae/xac/xa4 <CJK> -<U59F0> /x8e/xae/xac/xa5 <CJK> -<U59D5> /x8e/xae/xac/xa6 <CJK> -<U5A0D> /x8e/xae/xac/xa7 <CJK> -<U5A04> /x8e/xae/xac/xa8 <CJK> -<U59F9> /x8e/xae/xac/xa9 <CJK> -<U5A02> /x8e/xae/xac/xaa <CJK> -<U59F8> /x8e/xae/xac/xab <CJK> -<U59E2> /x8e/xae/xac/xac <CJK> -<U59D9> /x8e/xae/xac/xad <CJK> -<U59E7> /x8e/xae/xac/xae <CJK> -<U5B6A> /x8e/xae/xac/xaf <CJK> -<U5BAB> /x8e/xae/xac/xb2 <CJK> -<U5C1B> /x8e/xae/xac/xb4 <CJK> -<U5C2F> /x8e/xae/xac/xb5 <CJK> -<U663C> /x8e/xae/xac/xb7 <CJK> -<U5CD1> /x8e/xae/xac/xbb <CJK> -<U5CDC> /x8e/xae/xac/xbc <CJK> -<U5CE6> /x8e/xae/xac/xbd <CJK> -<U5CE1> /x8e/xae/xac/xbe <CJK> -<U5CCD> /x8e/xae/xac/xbf <CJK> -<U5CE2> /x8e/xae/xac/xc1 <CJK> -<U5CDD> /x8e/xae/xac/xc2 <CJK> -<U5CE5> /x8e/xae/xac/xc3 <CJK> -<U5DFB> /x8e/xae/xac/xc4 <CJK> -<U5DFA> /x8e/xae/xac/xc5 <CJK> -<U5E1E> /x8e/xae/xac/xc6 <CJK> -<U5EA1> /x8e/xae/xac/xc8 <CJK> -<U5EFC> /x8e/xae/xac/xcb <CJK> -<U5EFB> /x8e/xae/xac/xcc <CJK> -<U5F2F> /x8e/xae/xac/xcd <CJK> -<U5F66> /x8e/xae/xac/xd0 <CJK> -<U605C> /x8e/xae/xac/xd4 <CJK> -<U604E> /x8e/xae/xac/xd6 <CJK> -<U6051> /x8e/xae/xac/xd7 <CJK> -<U6023> /x8e/xae/xac/xda <CJK> -<U6031> /x8e/xae/xac/xdb <CJK> -<U607C> /x8e/xae/xac/xdc <CJK> -<U6052> /x8e/xae/xac/xdd <CJK> -<U6060> /x8e/xae/xac/xdf <CJK> -<U604A> /x8e/xae/xac/xe0 <CJK> -<U6061> /x8e/xae/xac/xe1 <CJK> -<U6218> /x8e/xae/xac/xe3 <CJK> -<U631F> /x8e/xae/xac/xeb <CJK> -<U6317> /x8e/xae/xac/xec <CJK> -<U62EA> /x8e/xae/xac/xed <CJK> -<U6321> /x8e/xae/xac/xee <CJK> -<U6304> /x8e/xae/xac/xef <CJK> -<U6305> /x8e/xae/xac/xf0 <CJK> -<U6531> /x8e/xae/xac/xf2 <CJK> -<U6544> /x8e/xae/xac/xf3 <CJK> -<U6540> /x8e/xae/xac/xf4 <CJK> -<U6542> /x8e/xae/xac/xf6 <CJK> -<U65BE> /x8e/xae/xac/xf7 <CJK> -<U6629> /x8e/xae/xac/xf9 <CJK> -<U661B> /x8e/xae/xac/xfa <CJK> -<U6623> /x8e/xae/xac/xfc <CJK> -<U662C> /x8e/xae/xac/xfd <CJK> -<U661A> /x8e/xae/xac/xfe <CJK> -<U6630> /x8e/xae/xad/xa1 <CJK> -<U663B> /x8e/xae/xad/xa2 <CJK> -<U661E> /x8e/xae/xad/xa3 <CJK> -<U6637> /x8e/xae/xad/xa4 <CJK> -<U6638> /x8e/xae/xad/xa5 <CJK> -<U670E> /x8e/xae/xad/xa7 <CJK> -<U67E8> /x8e/xae/xad/xaa <CJK> -<U67D6> /x8e/xae/xad/xab <CJK> -<U67C7> /x8e/xae/xad/xad <CJK> -<U67BC> /x8e/xae/xad/xae <CJK> -<U6852> /x8e/xae/xad/xaf <CJK> -<U67BF> /x8e/xae/xad/xb0 <CJK> -<U67D5> /x8e/xae/xad/xb1 <CJK> -<U67FE> /x8e/xae/xad/xb2 <CJK> -<U8363> /x8e/xae/xad/xb3 <CJK> -<U67FB> /x8e/xae/xad/xb4 <CJK> -<U67B1> /x8e/xae/xad/xb6 <CJK> -<U6801> /x8e/xae/xad/xb7 <CJK> -<U6805> /x8e/xae/xad/xb8 <CJK> -<U6800> /x8e/xae/xad/xb9 <CJK> -<U67D7> /x8e/xae/xad/xba <CJK> -<U6B2A> /x8e/xae/xad/xbc <CJK> -<U6B6B> /x8e/xae/xad/xbd <CJK> -<U6BE1> /x8e/xae/xad/xc2 <CJK> -<U6D23> /x8e/xae/xad/xc5 <CJK> -<U6CFF> /x8e/xae/xad/xc6 <CJK> -<U6D14> /x8e/xae/xad/xc7 <CJK> -<U6D05> /x8e/xae/xad/xc8 <CJK> -<U6D13> /x8e/xae/xad/xc9 <CJK> -<U6D06> /x8e/xae/xad/xca <CJK> -<U6D21> /x8e/xae/xad/xcb <CJK> -<U6D15> /x8e/xae/xad/xcd <CJK> -<U6CAF> /x8e/xae/xad/xce <CJK> -<U6CF4> /x8e/xae/xad/xcf <CJK> -<U6D02> /x8e/xae/xad/xd0 <CJK> -<U6D45> /x8e/xae/xad/xd1 <CJK> -<U6D26> /x8e/xae/xad/xd3 <CJK> -<U6D44> /x8e/xae/xad/xd5 <CJK> -<U6D24> /x8e/xae/xad/xd7 <CJK> -<U70A5> /x8e/xae/xad/xd8 <CJK> -<U70A3> /x8e/xae/xad/xda <CJK> -<U70A2> /x8e/xae/xad/xdc <CJK> -<U70BB> /x8e/xae/xad/xdd <CJK> -<U70A0> /x8e/xae/xad/xde <CJK> -<U70AA> /x8e/xae/xad/xdf <CJK> -<U70A8> /x8e/xae/xad/xe2 <CJK> -<U70B6> /x8e/xae/xad/xe3 <CJK> -<U70B2> /x8e/xae/xad/xe4 <CJK> -<U70A7> /x8e/xae/xad/xe5 <CJK> -<U70B9> /x8e/xae/xad/xe8 <CJK> -<U722E> /x8e/xae/xad/xe9 <CJK> -<U723C> /x8e/xae/xad/xeb <CJK> -<U726D> /x8e/xae/xad/xed <CJK> -<U72E7> /x8e/xae/xad/xf0 <CJK> -<U72ED> /x8e/xae/xad/xf1 <CJK> -<U72EC> /x8e/xae/xad/xf3 <CJK> -<U72E5> /x8e/xae/xad/xf4 <CJK> -<U72E2> /x8e/xae/xad/xf5 <CJK> -<U73C4> /x8e/xae/xad/xf7 <CJK> -<U73BD> /x8e/xae/xad/xf8 <CJK> -<U73CF> /x8e/xae/xad/xf9 <CJK> -<U73C9> /x8e/xae/xad/xfa <CJK> -<U73C1> /x8e/xae/xad/xfb <CJK> -<U73D0> /x8e/xae/xad/xfc <CJK> -<U73CE> /x8e/xae/xad/xfe <CJK> -<U74ED> /x8e/xae/xae/xa1 <CJK> -<U74EB> /x8e/xae/xae/xa2 <CJK> -<U74EF> /x8e/xae/xae/xa4 <CJK> -<U7549> /x8e/xae/xae/xa5 <CJK> -<U7550> /x8e/xae/xae/xa6 <CJK> -<U7546> /x8e/xae/xae/xa7 <CJK> -<U754A> /x8e/xae/xae/xa8 <CJK> -<U754D> /x8e/xae/xae/xaa <CJK> -<U75A6> /x8e/xae/xae/xab <CJK> -<U75A8> /x8e/xae/xae/xaf <CJK> -<U76C7> /x8e/xae/xae/xb2 <CJK> -<U76FF> /x8e/xae/xae/xb3 <CJK> -<U76FD> /x8e/xae/xae/xb5 <CJK> -<U77E6> /x8e/xae/xae/xb6 <CJK> -<U780A> /x8e/xae/xae/xb7 <CJK> -<U7804> /x8e/xae/xae/xb9 <CJK> -<U780B> /x8e/xae/xae/xba <CJK> -<U7807> /x8e/xae/xae/xbb <CJK> -<U7815> /x8e/xae/xae/xbd <CJK> -<U7808> /x8e/xae/xae/xbe <CJK> -<U79D3> /x8e/xae/xae/xc0 <CJK> -<U79D4> /x8e/xae/xae/xc1 <CJK> -<U79D0> /x8e/xae/xae/xc2 <CJK> -<U79D7> /x8e/xae/xae/xc3 <CJK> -<U7A7C> /x8e/xae/xae/xc4 <CJK> -<U7A7D> /x8e/xae/xae/xc7 <CJK> -<U7A83> /x8e/xae/xae/xc8 <CJK> -<U7A82> /x8e/xae/xae/xc9 <CJK> -<U7AD4> /x8e/xae/xae/xcb <CJK> -<U7AD5> /x8e/xae/xae/xcc <CJK> -<U7AD3> /x8e/xae/xae/xcd <CJK> -<U7AD0> /x8e/xae/xae/xce <CJK> -<U7AD2> /x8e/xae/xae/xcf <CJK> -<U7AFE> /x8e/xae/xae/xd0 <CJK> -<U7AFC> /x8e/xae/xae/xd1 <CJK> -<U7C77> /x8e/xae/xae/xd2 <CJK> -<U7C7C> /x8e/xae/xae/xd3 <CJK> -<U7C7B> /x8e/xae/xae/xd4 <CJK> -<U7F8F> /x8e/xae/xae/xdd <CJK> -<U80D3> /x8e/xae/xae/xde <CJK> -<U80CB> /x8e/xae/xae/xe0 <CJK> -<U80D2> /x8e/xae/xae/xe1 <CJK> -<U8109> /x8e/xae/xae/xe3 <CJK> -<U80E2> /x8e/xae/xae/xe4 <CJK> -<U80DF> /x8e/xae/xae/xe5 <CJK> -<U80C6> /x8e/xae/xae/xe6 <CJK> -<U8224> /x8e/xae/xae/xe8 <CJK> -<U82F7> /x8e/xae/xae/xe9 <CJK> -<U82D8> /x8e/xae/xae/xea <CJK> -<U82DD> /x8e/xae/xae/xeb <CJK> -<U82F8> /x8e/xae/xae/xee <CJK> -<U82FC> /x8e/xae/xae/xef <CJK> -<U82E9> /x8e/xae/xae/xf2 <CJK> -<U82EE> /x8e/xae/xae/xf4 <CJK> -<U82D0> /x8e/xae/xae/xf6 <CJK> -<U830E> /x8e/xae/xae/xf7 <CJK> -<U82E2> /x8e/xae/xae/xf8 <CJK> -<U830B> /x8e/xae/xae/xf9 <CJK> -<U82FD> /x8e/xae/xae/xfa <CJK> -<U5179> /x8e/xae/xae/xfb <CJK> -<U8676> /x8e/xae/xae/xfc <CJK> -<U8678> /x8e/xae/xae/xfe <CJK> -<U8675> /x8e/xae/xaf/xa3 <CJK> -<U867D> /x8e/xae/xaf/xa4 <CJK> -<U8842> /x8e/xae/xaf/xa6 <CJK> -<U8866> /x8e/xae/xaf/xa7 <CJK> -<U898C> /x8e/xae/xaf/xa9 <CJK> -<U8A05> /x8e/xae/xaf/xaa <CJK> -<U8A06> /x8e/xae/xaf/xac <CJK> -<U8C9F> /x8e/xae/xaf/xae <CJK> -<U8FF1> /x8e/xae/xaf/xb0 <CJK> -<U8FE7> /x8e/xae/xaf/xb1 <CJK> -<U8FE9> /x8e/xae/xaf/xb2 <CJK> -<U8FEF> /x8e/xae/xaf/xb3 <CJK> -<U90C2> /x8e/xae/xaf/xb4 <CJK> -<U90BC> /x8e/xae/xaf/xb5 <CJK> -<U90C6> /x8e/xae/xaf/xb7 <CJK> -<U90C0> /x8e/xae/xaf/xb8 <CJK> -<U90CD> /x8e/xae/xaf/xbb <CJK> -<U90C9> /x8e/xae/xaf/xbc <CJK> -<U90C4> /x8e/xae/xaf/xbe <CJK> -<U9581> /x8e/xae/xaf/xc0 <CJK> -<U9CEC> /x8e/xae/xaf/xc2 <CJK> -<U5032> /x8e/xae/xaf/xc3 <CJK> -<U4FF9> /x8e/xae/xaf/xc4 <CJK> -<U501D> /x8e/xae/xaf/xc5 <CJK> -<U4FFF> /x8e/xae/xaf/xc6 <CJK> -<U5004> /x8e/xae/xaf/xc7 <CJK> -<U4FF0> /x8e/xae/xaf/xc8 <CJK> -<U5003> /x8e/xae/xaf/xc9 <CJK> -<U5002> /x8e/xae/xaf/xcb <CJK> -<U4FFC> /x8e/xae/xaf/xcc <CJK> -<U4FF2> /x8e/xae/xaf/xcd <CJK> -<U5024> /x8e/xae/xaf/xce <CJK> -<U5008> /x8e/xae/xaf/xcf <CJK> -<U5036> /x8e/xae/xaf/xd0 <CJK> -<U502E> /x8e/xae/xaf/xd1 <CJK> -<U5010> /x8e/xae/xaf/xd3 <CJK> -<U5038> /x8e/xae/xaf/xd4 <CJK> -<U5039> /x8e/xae/xaf/xd5 <CJK> -<U4FFD> /x8e/xae/xaf/xd6 <CJK> -<U5056> /x8e/xae/xaf/xd7 <CJK> -<U4FFB> /x8e/xae/xaf/xd8 <CJK> -<U51A3> /x8e/xae/xaf/xd9 <CJK> -<U51A6> /x8e/xae/xaf/xda <CJK> -<U51A1> /x8e/xae/xaf/xdb <CJK> -<U51C7> /x8e/xae/xaf/xde <CJK> -<U51C9> /x8e/xae/xaf/xdf <CJK> -<U5260> /x8e/xae/xaf/xe0 <CJK> -<U5264> /x8e/xae/xaf/xe1 <CJK> -<U5259> /x8e/xae/xaf/xe2 <CJK> -<U5265> /x8e/xae/xaf/xe3 <CJK> -<U5267> /x8e/xae/xaf/xe4 <CJK> -<U5257> /x8e/xae/xaf/xe5 <CJK> -<U5263> /x8e/xae/xaf/xe6 <CJK> -<U5253> /x8e/xae/xaf/xe8 <CJK> -<U52CF> /x8e/xae/xaf/xea <CJK> -<U52CE> /x8e/xae/xaf/xec <CJK> -<U52D0> /x8e/xae/xaf/xed <CJK> -<U52D1> /x8e/xae/xaf/xee <CJK> -<U52CC> /x8e/xae/xaf/xef <CJK> -<U550D> /x8e/xae/xaf/xf3 <CJK> -<U54F4> /x8e/xae/xaf/xf4 <CJK> -<U5513> /x8e/xae/xaf/xf6 <CJK> -<U54EF> /x8e/xae/xaf/xf7 <CJK> -<U54F5> /x8e/xae/xaf/xf8 <CJK> -<U54F9> /x8e/xae/xaf/xf9 <CJK> -<U5502> /x8e/xae/xaf/xfa <CJK> -<U5500> /x8e/xae/xaf/xfb <CJK> -<U5518> /x8e/xae/xaf/xfe <CJK> -<U54F0> /x8e/xae/xb0/xa1 <CJK> -<U54F6> /x8e/xae/xb0/xa2 <CJK> -<U5519> /x8e/xae/xb0/xa5 <CJK> -<U5705> /x8e/xae/xb0/xa7 <CJK> -<U57C9> /x8e/xae/xb0/xa8 <CJK> -<U57B7> /x8e/xae/xb0/xaa <CJK> -<U57CD> /x8e/xae/xb0/xab <CJK> -<U57BE> /x8e/xae/xb0/xaf <CJK> -<U57BB> /x8e/xae/xb0/xb0 <CJK> -<U57DB> /x8e/xae/xb0/xb2 <CJK> -<U57C8> /x8e/xae/xb0/xb3 <CJK> -<U57C4> /x8e/xae/xb0/xb4 <CJK> -<U57C5> /x8e/xae/xb0/xb5 <CJK> -<U57D1> /x8e/xae/xb0/xb6 <CJK> -<U57CA> /x8e/xae/xb0/xb7 <CJK> -<U57C0> /x8e/xae/xb0/xb8 <CJK> -<U5A21> /x8e/xae/xb0/xbb <CJK> -<U5A2A> /x8e/xae/xb0/xbc <CJK> -<U5A1D> /x8e/xae/xb0/xbe <CJK> -<U5A0B> /x8e/xae/xb0/xc0 <CJK> -<U5A22> /x8e/xae/xb0/xc5 <CJK> -<U5A24> /x8e/xae/xb0/xc8 <CJK> -<U5A14> /x8e/xae/xb0/xca <CJK> -<U5A31> /x8e/xae/xb0/xcb <CJK> -<U5A2F> /x8e/xae/xb0/xcd <CJK> -<U5A1A> /x8e/xae/xb0/xce <CJK> -<U5A12> /x8e/xae/xb0/xcf <CJK> -<U5A26> /x8e/xae/xb0/xd2 <CJK> -<U5BBC> /x8e/xae/xb0/xd5 <CJK> -<U5BBB> /x8e/xae/xb0/xd6 <CJK> -<U5BB7> /x8e/xae/xb0/xd7 <CJK> -<U5C05> /x8e/xae/xb0/xd8 <CJK> -<U5C06> /x8e/xae/xb0/xd9 <CJK> -<U5C52> /x8e/xae/xb0/xda <CJK> -<U5C53> /x8e/xae/xb0/xdb <CJK> -<U5CFA> /x8e/xae/xb0/xde <CJK> -<U5CEB> /x8e/xae/xb0/xdf <CJK> -<U5CF3> /x8e/xae/xb0/xe1 <CJK> -<U5CF5> /x8e/xae/xb0/xe2 <CJK> -<U5CE9> /x8e/xae/xb0/xe3 <CJK> -<U5CEF> /x8e/xae/xb0/xe4 <CJK> -<U5E2A> /x8e/xae/xb0/xe6 <CJK> -<U5E30> /x8e/xae/xb0/xe7 <CJK> -<U5E2E> /x8e/xae/xb0/xe8 <CJK> -<U5E2C> /x8e/xae/xb0/xe9 <CJK> -<U5E2F> /x8e/xae/xb0/xea <CJK> -<U5EAF> /x8e/xae/xb0/xeb <CJK> -<U5EA9> /x8e/xae/xb0/xec <CJK> -<U5EFD> /x8e/xae/xb0/xee <CJK> -<U5F32> /x8e/xae/xb0/xef <CJK> -<U5F8E> /x8e/xae/xb0/xf0 <CJK> -<U5F93> /x8e/xae/xb0/xf1 <CJK> -<U5F8F> /x8e/xae/xb0/xf2 <CJK> -<U604F> /x8e/xae/xb0/xf3 <CJK> -<U6099> /x8e/xae/xb0/xf4 <CJK> -<U607E> /x8e/xae/xb0/xf6 <CJK> -<U6074> /x8e/xae/xb0/xf8 <CJK> -<U604B> /x8e/xae/xb0/xf9 <CJK> -<U6073> /x8e/xae/xb0/xfa <CJK> -<U6075> /x8e/xae/xb0/xfb <CJK> -<U6056> /x8e/xae/xb0/xfe <CJK> -<U60A9> /x8e/xae/xb1/xa1 <CJK> -<U608B> /x8e/xae/xb1/xa2 <CJK> -<U60A6> /x8e/xae/xb1/xa3 <CJK> -<U6093> /x8e/xae/xb1/xa5 <CJK> -<U60AE> /x8e/xae/xb1/xa6 <CJK> -<U609E> /x8e/xae/xb1/xa7 <CJK> -<U60A7> /x8e/xae/xb1/xa8 <CJK> -<U6245> /x8e/xae/xb1/xa9 <CJK> -<U632E> /x8e/xae/xb1/xac <CJK> -<U6352> /x8e/xae/xb1/xae <CJK> -<U6330> /x8e/xae/xb1/xaf <CJK> -<U635B> /x8e/xae/xb1/xb0 <CJK> -<U6319> /x8e/xae/xb1/xb2 <CJK> -<U631B> /x8e/xae/xb1/xb3 <CJK> -<U6331> /x8e/xae/xb1/xb5 <CJK> -<U635D> /x8e/xae/xb1/xb6 <CJK> -<U6337> /x8e/xae/xb1/xb7 <CJK> -<U6335> /x8e/xae/xb1/xb8 <CJK> -<U6353> /x8e/xae/xb1/xb9 <CJK> -<U635C> /x8e/xae/xb1/xbb <CJK> -<U633F> /x8e/xae/xb1/xbc <CJK> -<U654B> /x8e/xae/xb1/xbd <CJK> -<U658B> /x8e/xae/xb1/xc0 <CJK> -<U659A> /x8e/xae/xb1/xc2 <CJK> -<U6650> /x8e/xae/xb1/xc3 <CJK> -<U6646> /x8e/xae/xb1/xc4 <CJK> -<U664E> /x8e/xae/xb1/xc5 <CJK> -<U6640> /x8e/xae/xb1/xc6 <CJK> -<U664B> /x8e/xae/xb1/xc8 <CJK> -<U6648> /x8e/xae/xb1/xc9 <CJK> -<U6660> /x8e/xae/xb1/xcb <CJK> -<U6644> /x8e/xae/xb1/xcc <CJK> -<U664D> /x8e/xae/xb1/xcd <CJK> -<U6837> /x8e/xae/xb1/xcf <CJK> -<U6824> /x8e/xae/xb1/xd0 <CJK> -<U681B> /x8e/xae/xb1/xd3 <CJK> -<U6836> /x8e/xae/xb1/xd4 <CJK> -<U682C> /x8e/xae/xb1/xd6 <CJK> -<U6819> /x8e/xae/xb1/xd7 <CJK> -<U6856> /x8e/xae/xb1/xd8 <CJK> -<U6847> /x8e/xae/xb1/xd9 <CJK> -<U683E> /x8e/xae/xb1/xda <CJK> -<U681E> /x8e/xae/xb1/xdb <CJK> -<U6815> /x8e/xae/xb1/xdd <CJK> -<U6822> /x8e/xae/xb1/xde <CJK> -<U6827> /x8e/xae/xb1/xdf <CJK> -<U6859> /x8e/xae/xb1/xe0 <CJK> -<U6858> /x8e/xae/xb1/xe1 <CJK> -<U6855> /x8e/xae/xb1/xe2 <CJK> -<U6830> /x8e/xae/xb1/xe3 <CJK> -<U6823> /x8e/xae/xb1/xe4 <CJK> -<U6B2E> /x8e/xae/xb1/xe5 <CJK> -<U6B2B> /x8e/xae/xb1/xe6 <CJK> -<U6B30> /x8e/xae/xb1/xe7 <CJK> -<U6B6C> /x8e/xae/xb1/xe8 <CJK> -<U6B8B> /x8e/xae/xb1/xea <CJK> -<U6BE9> /x8e/xae/xb1/xec <CJK> -<U6BEA> /x8e/xae/xb1/xed <CJK> -<U6BE5> /x8e/xae/xb1/xee <CJK> -<U6D6B> /x8e/xae/xb1/xef <CJK> -<U6D73> /x8e/xae/xb1/xf2 <CJK> -<U6D57> /x8e/xae/xb1/xf3 <CJK> -<U6D5D> /x8e/xae/xb1/xf6 <CJK> -<U6D56> /x8e/xae/xb1/xf7 <CJK> -<U6D8F> /x8e/xae/xb1/xf8 <CJK> -<U6D5B> /x8e/xae/xb1/xf9 <CJK> -<U6D1C> /x8e/xae/xb1/xfa <CJK> -<U6D9A> /x8e/xae/xb1/xfb <CJK> -<U6D9B> /x8e/xae/xb1/xfc <CJK> -<U6D99> /x8e/xae/xb1/xfd <CJK> -<U6D81> /x8e/xae/xb2/xa1 <CJK> -<U6D71> /x8e/xae/xb2/xa2 <CJK> -<U6D72> /x8e/xae/xb2/xa5 <CJK> -<U6D5C> /x8e/xae/xb2/xa6 <CJK> -<U6D96> /x8e/xae/xb2/xa7 <CJK> -<U70C4> /x8e/xae/xb2/xa8 <CJK> -<U70DB> /x8e/xae/xb2/xa9 <CJK> -<U70CC> /x8e/xae/xb2/xaa <CJK> -<U70D0> /x8e/xae/xb2/xab <CJK> -<U70E3> /x8e/xae/xb2/xac <CJK> -<U70DF> /x8e/xae/xb2/xad <CJK> -<U70D6> /x8e/xae/xb2/xaf <CJK> -<U70EE> /x8e/xae/xb2/xb0 <CJK> -<U70D5> /x8e/xae/xb2/xb1 <CJK> -<U727A> /x8e/xae/xb2/xb6 <CJK> -<U72F5> /x8e/xae/xb2/xb8 <CJK> -<U7302> /x8e/xae/xb2/xb9 <CJK> -<U73E2> /x8e/xae/xb2/xbc <CJK> -<U73EC> /x8e/xae/xb2/xbd <CJK> -<U73D5> /x8e/xae/xb2/xbe <CJK> -<U73F9> /x8e/xae/xb2/xbf <CJK> -<U73DF> /x8e/xae/xb2/xc0 <CJK> -<U73E6> /x8e/xae/xb2/xc1 <CJK> -<U73E4> /x8e/xae/xb2/xc6 <CJK> -<U73E1> /x8e/xae/xb2/xc7 <CJK> -<U74F3> /x8e/xae/xb2/xc8 <CJK> -<U7556> /x8e/xae/xb2/xcd <CJK> -<U7555> /x8e/xae/xb2/xce <CJK> -<U7558> /x8e/xae/xb2/xcf <CJK> -<U7557> /x8e/xae/xb2/xd0 <CJK> -<U755E> /x8e/xae/xb2/xd1 <CJK> -<U75C3> /x8e/xae/xb2/xd2 <CJK> -<U75B4> /x8e/xae/xb2/xd5 <CJK> -<U75B1> /x8e/xae/xb2/xd7 <CJK> -<U76CB> /x8e/xae/xb2/xda <CJK> -<U76CC> /x8e/xae/xb2/xdb <CJK> -<U772A> /x8e/xae/xb2/xdc <CJK> -<U7716> /x8e/xae/xb2/xde <CJK> -<U770F> /x8e/xae/xb2/xdf <CJK> -<U773F> /x8e/xae/xb2/xe2 <CJK> -<U772B> /x8e/xae/xb2/xe3 <CJK> -<U770E> /x8e/xae/xb2/xe4 <CJK> -<U7724> /x8e/xae/xb2/xe5 <CJK> -<U7721> /x8e/xae/xb2/xe7 <CJK> -<U7718> /x8e/xae/xb2/xe8 <CJK> -<U77DD> /x8e/xae/xb2/xe9 <CJK> -<U7824> /x8e/xae/xb2/xec <CJK> -<U7836> /x8e/xae/xb2/xed <CJK> -<U7958> /x8e/xae/xb2/xef <CJK> -<U7959> /x8e/xae/xb2/xf0 <CJK> -<U7962> /x8e/xae/xb2/xf2 <CJK> -<U79DA> /x8e/xae/xb2/xf3 <CJK> -<U79D9> /x8e/xae/xb2/xf4 <CJK> -<U79E1> /x8e/xae/xb2/xf6 <CJK> -<U79E5> /x8e/xae/xb2/xf7 <CJK> -<U79E8> /x8e/xae/xb2/xf8 <CJK> -<U79DB> /x8e/xae/xb2/xf9 <CJK> -<U79E2> /x8e/xae/xb2/xfb <CJK> -<U79F0> /x8e/xae/xb2/xfc <CJK> -<U7ADA> /x8e/xae/xb3/xa3 <CJK> -<U7ADD> /x8e/xae/xb3/xa4 <CJK> -<U7ADB> /x8e/xae/xb3/xa6 <CJK> -<U7ADC> /x8e/xae/xb3/xa7 <CJK> -<U7B0D> /x8e/xae/xb3/xaa <CJK> -<U7B0B> /x8e/xae/xb3/xab <CJK> -<U7B14> /x8e/xae/xb3/xac <CJK> -<U7C8E> /x8e/xae/xb3/xad <CJK> -<U7C86> /x8e/xae/xb3/xae <CJK> -<U7C87> /x8e/xae/xb3/xb0 <CJK> -<U7C83> /x8e/xae/xb3/xb1 <CJK> -<U7C8B> /x8e/xae/xb3/xb2 <CJK> -<U7D24> /x8e/xae/xb3/xb7 <CJK> -<U7D25> /x8e/xae/xb3/xbb <CJK> -<U7F62> /x8e/xae/xb3/xbc <CJK> -<U7F93> /x8e/xae/xb3/xbd <CJK> -<U7F99> /x8e/xae/xb3/xbe <CJK> -<U7F97> /x8e/xae/xb3/xbf <CJK> -<U7FC4> /x8e/xae/xb3/xc2 <CJK> -<U7FC6> /x8e/xae/xb3/xc3 <CJK> -<U800A> /x8e/xae/xb3/xc4 <CJK> -<U8040> /x8e/xae/xb3/xc7 <CJK> -<U803C> /x8e/xae/xb3/xc8 <CJK> -<U803B> /x8e/xae/xb3/xc9 <CJK> -<U80F6> /x8e/xae/xb3/xca <CJK> -<U80FF> /x8e/xae/xb3/xcb <CJK> -<U80EE> /x8e/xae/xb3/xcc <CJK> -<U8104> /x8e/xae/xb3/xcd <CJK> -<U8103> /x8e/xae/xb3/xce <CJK> -<U8107> /x8e/xae/xb3/xcf <CJK> -<U80F7> /x8e/xae/xb3/xd2 <CJK> -<U822D> /x8e/xae/xb3/xd5 <CJK> -<U8227> /x8e/xae/xb3/xd7 <CJK> -<U8229> /x8e/xae/xb3/xd8 <CJK> -<U831F> /x8e/xae/xb3/xd9 <CJK> -<U8357> /x8e/xae/xb3/xda <CJK> -<U8321> /x8e/xae/xb3/xdf <CJK> -<U8318> /x8e/xae/xb3/xe2 <CJK> -<U8358> /x8e/xae/xb3/xe3 <CJK> -<U8684> /x8e/xae/xb3/xe9 <CJK> -<U869F> /x8e/xae/xb3/xea <CJK> -<U869B> /x8e/xae/xb3/xeb <CJK> -<U8689> /x8e/xae/xb3/xec <CJK> -<U86A6> /x8e/xae/xb3/xed <CJK> -<U8692> /x8e/xae/xb3/xee <CJK> -<U868F> /x8e/xae/xb3/xef <CJK> -<U86A0> /x8e/xae/xb3/xf0 <CJK> -<U884F> /x8e/xae/xb3/xf1 <CJK> -<U8878> /x8e/xae/xb3/xf2 <CJK> -<U887A> /x8e/xae/xb3/xf3 <CJK> -<U886E> /x8e/xae/xb3/xf4 <CJK> -<U887B> /x8e/xae/xb3/xf5 <CJK> -<U8884> /x8e/xae/xb3/xf6 <CJK> -<U8873> /x8e/xae/xb3/xf7 <CJK> -<U8A0D> /x8e/xae/xb3/xfa <CJK> -<U8A0B> /x8e/xae/xb3/xfb <CJK> -<U8A19> /x8e/xae/xb3/xfc <CJK> -<U8FF9> /x8e/xae/xb4/xa5 <CJK> -<U9009> /x8e/xae/xb4/xa6 <CJK> -<U9008> /x8e/xae/xb4/xa7 <CJK> -<U90DE> /x8e/xae/xb4/xa9 <CJK> -<U9151> /x8e/xae/xb4/xaa <CJK> -<U91DB> /x8e/xae/xb4/xad <CJK> -<U91DF> /x8e/xae/xb4/xae <CJK> -<U91DE> /x8e/xae/xb4/xaf <CJK> -<U91D6> /x8e/xae/xb4/xb0 <CJK> -<U91E0> /x8e/xae/xb4/xb1 <CJK> -<U9585> /x8e/xae/xb4/xb2 <CJK> -<U9660> /x8e/xae/xb4/xb3 <CJK> -<U9659> /x8e/xae/xb4/xb4 <CJK> -<U9656> /x8e/xae/xb4/xb6 <CJK> -<U96BD> /x8e/xae/xb4/xb9 <CJK> -<U5042> /x8e/xae/xb4/xbc <CJK> -<U5059> /x8e/xae/xb4/xbd <CJK> -<U5044> /x8e/xae/xb4/xbf <CJK> -<U5066> /x8e/xae/xb4/xc0 <CJK> -<U5052> /x8e/xae/xb4/xc1 <CJK> -<U5054> /x8e/xae/xb4/xc2 <CJK> -<U5071> /x8e/xae/xb4/xc3 <CJK> -<U5050> /x8e/xae/xb4/xc4 <CJK> -<U507B> /x8e/xae/xb4/xc5 <CJK> -<U507C> /x8e/xae/xb4/xc6 <CJK> -<U5058> /x8e/xae/xb4/xc7 <CJK> -<U5079> /x8e/xae/xb4/xca <CJK> -<U506C> /x8e/xae/xb4/xcb <CJK> -<U5078> /x8e/xae/xb4/xcc <CJK> -<U51A8> /x8e/xae/xb4/xcd <CJK> -<U51D1> /x8e/xae/xb4/xce <CJK> -<U51CF> /x8e/xae/xb4/xcf <CJK> -<U5268> /x8e/xae/xb4/xd0 <CJK> -<U5276> /x8e/xae/xb4/xd1 <CJK> -<U52D4> /x8e/xae/xb4/xd2 <CJK> -<U53A0> /x8e/xae/xb4/xd4 <CJK> -<U53C4> /x8e/xae/xb4/xd5 <CJK> -<U5558> /x8e/xae/xb4/xd7 <CJK> -<U554C> /x8e/xae/xb4/xd8 <CJK> -<U5568> /x8e/xae/xb4/xd9 <CJK> -<U5549> /x8e/xae/xb4/xdb <CJK> -<U555D> /x8e/xae/xb4/xde <CJK> -<U5529> /x8e/xae/xb4/xdf <CJK> -<U5554> /x8e/xae/xb4/xe1 <CJK> -<U5553> /x8e/xae/xb4/xe2 <CJK> -<U555A> /x8e/xae/xb4/xe4 <CJK> -<U553A> /x8e/xae/xb4/xe6 <CJK> -<U553F> /x8e/xae/xb4/xe7 <CJK> -<U552B> /x8e/xae/xb4/xe8 <CJK> -<U57EA> /x8e/xae/xb4/xe9 <CJK> -<U57EF> /x8e/xae/xb4/xeb <CJK> -<U57DD> /x8e/xae/xb4/xee <CJK> -<U57FE> /x8e/xae/xb4/xef <CJK> -<U57DE> /x8e/xae/xb4/xf1 <CJK> -<U57E6> /x8e/xae/xb4/xf2 <CJK> -<U57E8> /x8e/xae/xb4/xf4 <CJK> -<U57FF> /x8e/xae/xb4/xf5 <CJK> -<U5803> /x8e/xae/xb4/xf6 <CJK> -<U58F7> /x8e/xae/xb4/xf7 <CJK> -<U68A6> /x8e/xae/xb4/xf8 <CJK> -<U591F> /x8e/xae/xb4/xf9 <CJK> -<U595B> /x8e/xae/xb4/xfb <CJK> -<U595D> /x8e/xae/xb4/xfc <CJK> -<U595E> /x8e/xae/xb4/xfd <CJK> -<U5A2B> /x8e/xae/xb5/xa2 <CJK> -<U5A3B> /x8e/xae/xb5/xa4 <CJK> -<U5A61> /x8e/xae/xb5/xa7 <CJK> -<U5A3A> /x8e/xae/xb5/xa8 <CJK> -<U5A6E> /x8e/xae/xb5/xa9 <CJK> -<U5A4B> /x8e/xae/xb5/xaa <CJK> -<U5A6B> /x8e/xae/xb5/xab <CJK> -<U5A45> /x8e/xae/xb5/xae <CJK> -<U5A4E> /x8e/xae/xb5/xaf <CJK> -<U5A68> /x8e/xae/xb5/xb0 <CJK> -<U5A3D> /x8e/xae/xb5/xb1 <CJK> -<U5A71> /x8e/xae/xb5/xb2 <CJK> -<U5A3F> /x8e/xae/xb5/xb3 <CJK> -<U5A6F> /x8e/xae/xb5/xb4 <CJK> -<U5A75> /x8e/xae/xb5/xb5 <CJK> -<U5A73> /x8e/xae/xb5/xb7 <CJK> -<U5A2C> /x8e/xae/xb5/xb8 <CJK> -<U5A59> /x8e/xae/xb5/xb9 <CJK> -<U5A54> /x8e/xae/xb5/xba <CJK> -<U5A4F> /x8e/xae/xb5/xbb <CJK> -<U5A63> /x8e/xae/xb5/xbc <CJK> -<U5BC8> /x8e/xae/xb5/xbf <CJK> -<U5BC3> /x8e/xae/xb5/xc1 <CJK> -<U5C5B> /x8e/xae/xb5/xc3 <CJK> -<U5C61> /x8e/xae/xb5/xc4 <CJK> -<U5D21> /x8e/xae/xb5/xc6 <CJK> -<U5D0A> /x8e/xae/xb5/xc7 <CJK> -<U5D09> /x8e/xae/xb5/xc8 <CJK> -<U5D2C> /x8e/xae/xb5/xca <CJK> -<U5D08> /x8e/xae/xb5/xcb <CJK> -<U5D2A> /x8e/xae/xb5/xce <CJK> -<U5D15> /x8e/xae/xb5/xcf <CJK> -<U5D10> /x8e/xae/xb5/xd1 <CJK> -<U5D13> /x8e/xae/xb5/xd2 <CJK> -<U5D2F> /x8e/xae/xb5/xd4 <CJK> -<U5D18> /x8e/xae/xb5/xd5 <CJK> -<U5DE3> /x8e/xae/xb5/xd7 <CJK> -<U5E39> /x8e/xae/xb5/xd8 <CJK> -<U5E35> /x8e/xae/xb5/xd9 <CJK> -<U5E3A> /x8e/xae/xb5/xda <CJK> -<U5E32> /x8e/xae/xb5/xdb <CJK> -<U5EBB> /x8e/xae/xb5/xe0 <CJK> -<U5EBA> /x8e/xae/xb5/xe1 <CJK> -<U5F34> /x8e/xae/xb5/xe2 <CJK> -<U5F39> /x8e/xae/xb5/xe3 <CJK> -<U6098> /x8e/xae/xb5/xe8 <CJK> -<U60D0> /x8e/xae/xb5/xea <CJK> -<U60D7> /x8e/xae/xb5/xee <CJK> -<U60AA> /x8e/xae/xb5/xef <CJK> -<U60A1> /x8e/xae/xb5/xf1 <CJK> -<U60A4> /x8e/xae/xb5/xf2 <CJK> -<U60EE> /x8e/xae/xb5/xf4 <CJK> -<U60E7> /x8e/xae/xb5/xf6 <CJK> -<U60DE> /x8e/xae/xb5/xf9 <CJK> -<U637E> /x8e/xae/xb5/xfc <CJK> -<U638B> /x8e/xae/xb5/xfd <CJK> -<U6379> /x8e/xae/xb6/xa2 <CJK> -<U6386> /x8e/xae/xb6/xa3 <CJK> -<U6393> /x8e/xae/xb6/xa4 <CJK> -<U6373> /x8e/xae/xb6/xa6 <CJK> -<U636A> /x8e/xae/xb6/xa7 <CJK> -<U636C> /x8e/xae/xb6/xa9 <CJK> -<U637F> /x8e/xae/xb6/xab <CJK> -<U63B2> /x8e/xae/xb6/xad <CJK> -<U63BA> /x8e/xae/xb6/xae <CJK> -<U6366> /x8e/xae/xb6/xb1 <CJK> -<U6374> /x8e/xae/xb6/xb2 <CJK> -<U655A> /x8e/xae/xb6/xb4 <CJK> -<U654E> /x8e/xae/xb6/xb6 <CJK> -<U654D> /x8e/xae/xb6/xb7 <CJK> -<U658D> /x8e/xae/xb6/xb8 <CJK> -<U658E> /x8e/xae/xb6/xb9 <CJK> -<U65AD> /x8e/xae/xb6/xba <CJK> -<U65C7> /x8e/xae/xb6/xbc <CJK> -<U65CA> /x8e/xae/xb6/xbd <CJK> -<U65C9> /x8e/xae/xb6/xbf <CJK> -<U65E3> /x8e/xae/xb6/xc1 <CJK> -<U6657> /x8e/xae/xb6/xc2 <CJK> -<U6663> /x8e/xae/xb6/xc4 <CJK> -<U6667> /x8e/xae/xb6/xc5 <CJK> -<U671A> /x8e/xae/xb6/xc6 <CJK> -<U6719> /x8e/xae/xb6/xc7 <CJK> -<U6716> /x8e/xae/xb6/xc8 <CJK> -<U689E> /x8e/xae/xb6/xcb <CJK> -<U68B6> /x8e/xae/xb6/xcc <CJK> -<U6898> /x8e/xae/xb6/xcd <CJK> -<U6873> /x8e/xae/xb6/xce <CJK> -<U689A> /x8e/xae/xb6/xd0 <CJK> -<U688E> /x8e/xae/xb6/xd1 <CJK> -<U68B7> /x8e/xae/xb6/xd2 <CJK> -<U68DB> /x8e/xae/xb6/xd3 <CJK> -<U68A5> /x8e/xae/xb6/xd4 <CJK> -<U686C> /x8e/xae/xb6/xd5 <CJK> -<U68C1> /x8e/xae/xb6/xd6 <CJK> -<U6884> /x8e/xae/xb6/xd7 <CJK> -<U6895> /x8e/xae/xb6/xda <CJK> -<U687A> /x8e/xae/xb6/xdb <CJK> -<U6899> /x8e/xae/xb6/xdc <CJK> -<U68B8> /x8e/xae/xb6/xde <CJK> -<U68B9> /x8e/xae/xb6/xdf <CJK> -<U6870> /x8e/xae/xb6/xe0 <CJK> -<U6B35> /x8e/xae/xb6/xe2 <CJK> -<U6B90> /x8e/xae/xb6/xe4 <CJK> -<U6BBB> /x8e/xae/xb6/xe5 <CJK> -<U6BED> /x8e/xae/xb6/xe6 <CJK> -<U6DC1> /x8e/xae/xb6/xea <CJK> -<U6DC3> /x8e/xae/xb6/xeb <CJK> -<U6DCE> /x8e/xae/xb6/xec <CJK> -<U6DAD> /x8e/xae/xb6/xef <CJK> -<U6E04> /x8e/xae/xb6/xf0 <CJK> -<U6DB9> /x8e/xae/xb6/xf2 <CJK> -<U6DE7> /x8e/xae/xb6/xf4 <CJK> -<U6E08> /x8e/xae/xb6/xf6 <CJK> -<U6E06> /x8e/xae/xb6/xf7 <CJK> -<U6E0A> /x8e/xae/xb6/xf9 <CJK> -<U6DB0> /x8e/xae/xb6/xfa <CJK> -<U6DF8> /x8e/xae/xb6/xfc <CJK> -<U6E0C> /x8e/xae/xb6/xfd <CJK> -<U6DB1> /x8e/xae/xb7/xa1 <CJK> -<U6E02> /x8e/xae/xb7/xa3 <CJK> -<U6E07> /x8e/xae/xb7/xa4 <CJK> -<U6E09> /x8e/xae/xb7/xa5 <CJK> -<U6E01> /x8e/xae/xb7/xa6 <CJK> -<U6E17> /x8e/xae/xb7/xa7 <CJK> -<U6DFF> /x8e/xae/xb7/xa8 <CJK> -<U6E12> /x8e/xae/xb7/xa9 <CJK> -<U7103> /x8e/xae/xb7/xac <CJK> -<U7107> /x8e/xae/xb7/xad <CJK> -<U7101> /x8e/xae/xb7/xae <CJK> -<U70F5> /x8e/xae/xb7/xaf <CJK> -<U70F1> /x8e/xae/xb7/xb0 <CJK> -<U7108> /x8e/xae/xb7/xb1 <CJK> -<U70F2> /x8e/xae/xb7/xb2 <CJK> -<U710F> /x8e/xae/xb7/xb3 <CJK> -<U70FE> /x8e/xae/xb7/xb5 <CJK> -<U731A> /x8e/xae/xb7/xb9 <CJK> -<U7310> /x8e/xae/xb7/xba <CJK> -<U730E> /x8e/xae/xb7/xbb <CJK> -<U7402> /x8e/xae/xb7/xbc <CJK> -<U73F3> /x8e/xae/xb7/xbd <CJK> -<U73FB> /x8e/xae/xb7/xc0 <CJK> -<U751B> /x8e/xae/xb7/xc4 <CJK> -<U7523> /x8e/xae/xb7/xc5 <CJK> -<U7561> /x8e/xae/xb7/xc6 <CJK> -<U7568> /x8e/xae/xb7/xc7 <CJK> -<U7567> /x8e/xae/xb7/xc9 <CJK> -<U75D3> /x8e/xae/xb7/xca <CJK> -<U7690> /x8e/xae/xb7/xcd <CJK> -<U76D5> /x8e/xae/xb7/xd0 <CJK> -<U76D7> /x8e/xae/xb7/xd1 <CJK> -<U76D6> /x8e/xae/xb7/xd2 <CJK> -<U7730> /x8e/xae/xb7/xd3 <CJK> -<U7726> /x8e/xae/xb7/xd5 <CJK> -<U7740> /x8e/xae/xb7/xd7 <CJK> -<U771E> /x8e/xae/xb7/xd9 <CJK> -<U7847> /x8e/xae/xb7/xdd <CJK> -<U784B> /x8e/xae/xb7/xdf <CJK> -<U7851> /x8e/xae/xb7/xe0 <CJK> -<U784F> /x8e/xae/xb7/xe1 <CJK> -<U7842> /x8e/xae/xb7/xe2 <CJK> -<U7846> /x8e/xae/xb7/xe3 <CJK> -<U796E> /x8e/xae/xb7/xe5 <CJK> -<U796C> /x8e/xae/xb7/xe6 <CJK> -<U79F2> /x8e/xae/xb7/xe7 <CJK> -<U79F1> /x8e/xae/xb7/xe9 <CJK> -<U79F5> /x8e/xae/xb7/xea <CJK> -<U79F3> /x8e/xae/xb7/xeb <CJK> -<U79F9> /x8e/xae/xb7/xec <CJK> -<U7A9A> /x8e/xae/xb7/xf0 <CJK> -<U7A93> /x8e/xae/xb7/xf1 <CJK> -<U7A91> /x8e/xae/xb7/xf2 <CJK> -<U7AE1> /x8e/xae/xb7/xf3 <CJK> -<U7B21> /x8e/xae/xb7/xf6 <CJK> -<U7B1C> /x8e/xae/xb7/xf7 <CJK> -<U7B16> /x8e/xae/xb7/xf8 <CJK> -<U7B17> /x8e/xae/xb7/xf9 <CJK> -<U7B36> /x8e/xae/xb7/xfa <CJK> -<U7B1F> /x8e/xae/xb7/xfb <CJK> -<U7C93> /x8e/xae/xb7/xfd <CJK> -<U7C99> /x8e/xae/xb7/xfe <CJK> -<U7C9A> /x8e/xae/xb8/xa1 <CJK> -<U7C9C> /x8e/xae/xb8/xa2 <CJK> -<U7D49> /x8e/xae/xb8/xa4 <CJK> -<U7D34> /x8e/xae/xb8/xa6 <CJK> -<U7D37> /x8e/xae/xb8/xa7 <CJK> -<U7D2D> /x8e/xae/xb8/xa9 <CJK> -<U7D4C> /x8e/xae/xb8/xab <CJK> -<U7D48> /x8e/xae/xb8/xae <CJK> -<U7F3B> /x8e/xae/xb8/xb1 <CJK> -<U8008> /x8e/xae/xb8/xb6 <CJK> -<U801A> /x8e/xae/xb8/xb7 <CJK> -<U801D> /x8e/xae/xb8/xb9 <CJK> -<U8049> /x8e/xae/xb8/xbb <CJK> -<U8045> /x8e/xae/xb8/xbc <CJK> -<U8044> /x8e/xae/xb8/xbd <CJK> -<U7C9B> /x8e/xae/xb8/xbe <CJK> -<U812A> /x8e/xae/xb8/xc1 <CJK> -<U812E> /x8e/xae/xb8/xc2 <CJK> -<U8131> /x8e/xae/xb8/xc5 <CJK> -<U811A> /x8e/xae/xb8/xc7 <CJK> -<U8134> /x8e/xae/xb8/xc8 <CJK> -<U8117> /x8e/xae/xb8/xc9 <CJK> -<U831D> /x8e/xae/xb8/xcd <CJK> -<U8371> /x8e/xae/xb8/xce <CJK> -<U8384> /x8e/xae/xb8/xcf <CJK> -<U8380> /x8e/xae/xb8/xd0 <CJK> -<U8372> /x8e/xae/xb8/xd1 <CJK> -<U83A1> /x8e/xae/xb8/xd2 <CJK> -<U8379> /x8e/xae/xb8/xd4 <CJK> -<U8391> /x8e/xae/xb8/xd5 <CJK> -<U839F> /x8e/xae/xb8/xd7 <CJK> -<U83AD> /x8e/xae/xb8/xd8 <CJK> -<U8323> /x8e/xae/xb8/xdb <CJK> -<U8385> /x8e/xae/xb8/xdd <CJK> -<U839C> /x8e/xae/xb8/xde <CJK> -<U83B7> /x8e/xae/xb8/xdf <CJK> -<U8658> /x8e/xae/xb8/xe0 <CJK> -<U865A> /x8e/xae/xb8/xe1 <CJK> -<U8657> /x8e/xae/xb8/xe3 <CJK> -<U86B2> /x8e/xae/xb8/xe4 <CJK> -<U86AE> /x8e/xae/xb8/xe6 <CJK> -<U8845> /x8e/xae/xb8/xea <CJK> -<U889C> /x8e/xae/xb8/xeb <CJK> -<U8894> /x8e/xae/xb8/xec <CJK> -<U88A3> /x8e/xae/xb8/xed <CJK> -<U888F> /x8e/xae/xb8/xee <CJK> -<U88A5> /x8e/xae/xb8/xef <CJK> -<U88A9> /x8e/xae/xb8/xf0 <CJK> -<U88A6> /x8e/xae/xb8/xf1 <CJK> -<U888A> /x8e/xae/xb8/xf2 <CJK> -<U88A0> /x8e/xae/xb8/xf3 <CJK> -<U8890> /x8e/xae/xb8/xf4 <CJK> -<U8992> /x8e/xae/xb8/xf5 <CJK> -<U8991> /x8e/xae/xb8/xf6 <CJK> -<U8994> /x8e/xae/xb8/xf7 <CJK> -<U8A26> /x8e/xae/xb8/xf9 <CJK> -<U8A32> /x8e/xae/xb8/xfa <CJK> -<U8A28> /x8e/xae/xb8/xfb <CJK> -<U8A1C> /x8e/xae/xb8/xfe <CJK> -<U8A2B> /x8e/xae/xb9/xa2 <CJK> -<U8A20> /x8e/xae/xb9/xa3 <CJK> -<U8A29> /x8e/xae/xb9/xa5 <CJK> -<U8A21> /x8e/xae/xb9/xa9 <CJK> -<U8C3A> /x8e/xae/xb9/xaa <CJK> -<U8C5B> /x8e/xae/xb9/xac <CJK> -<U8C58> /x8e/xae/xb9/xad <CJK> -<U8C7C> /x8e/xae/xb9/xae <CJK> -<U8CA6> /x8e/xae/xb9/xb0 <CJK> -<U8CAE> /x8e/xae/xb9/xb1 <CJK> -<U8CAD> /x8e/xae/xb9/xb2 <CJK> -<U8D65> /x8e/xae/xb9/xb3 <CJK> -<U8D7E> /x8e/xae/xb9/xb5 <CJK> -<U8D7C> /x8e/xae/xb9/xb7 <CJK> -<U8D7F> /x8e/xae/xb9/xb8 <CJK> -<U8D7A> /x8e/xae/xb9/xb9 <CJK> -<U8DBD> /x8e/xae/xb9/xba <CJK> -<U8DC0> /x8e/xae/xb9/xbd <CJK> -<U8DBB> /x8e/xae/xb9/xbe <CJK> -<U8EAD> /x8e/xae/xb9/xbf <CJK> -<U8EAF> /x8e/xae/xb9/xc0 <CJK> -<U8ED6> /x8e/xae/xb9/xc1 <CJK> -<U8ED9> /x8e/xae/xb9/xc7 <CJK> -<U9012> /x8e/xae/xb9/xca <CJK> -<U900E> /x8e/xae/xb9/xcb <CJK> -<U9025> /x8e/xae/xb9/xcc <CJK> -<U9013> /x8e/xae/xb9/xce <CJK> -<U90EE> /x8e/xae/xb9/xcf <CJK> -<U90AB> /x8e/xae/xb9/xd1 <CJK> -<U90F7> /x8e/xae/xb9/xd2 <CJK> -<U9159> /x8e/xae/xb9/xd4 <CJK> -<U9154> /x8e/xae/xb9/xd5 <CJK> -<U91F2> /x8e/xae/xb9/xd6 <CJK> -<U91F0> /x8e/xae/xb9/xd7 <CJK> -<U91E5> /x8e/xae/xb9/xd8 <CJK> -<U91F6> /x8e/xae/xb9/xd9 <CJK> -<U9587> /x8e/xae/xb9/xdc <CJK> -<U965A> /x8e/xae/xb9/xde <CJK> -<U966E> /x8e/xae/xb9/xe1 <CJK> -<U9679> /x8e/xae/xb9/xe5 <CJK> -<U98E1> /x8e/xae/xb9/xe7 <CJK> -<U98E6> /x8e/xae/xb9/xe8 <CJK> -<U9EC4> /x8e/xae/xb9/xea <CJK> -<U9ED2> /x8e/xae/xb9/xeb <CJK> -<U4E80> /x8e/xae/xb9/xec <CJK> -<U4E81> /x8e/xae/xb9/xee <CJK> -<U508F> /x8e/xae/xb9/xef <CJK> -<U5097> /x8e/xae/xb9/xf0 <CJK> -<U5088> /x8e/xae/xb9/xf1 <CJK> -<U5089> /x8e/xae/xb9/xf2 <CJK> -<U5081> /x8e/xae/xb9/xf5 <CJK> -<U5160> /x8e/xae/xb9/xf6 <CJK> -<U5E42> /x8e/xae/xb9/xf9 <CJK> -<U51D3> /x8e/xae/xb9/xfa <CJK> -<U51D2> /x8e/xae/xb9/xfd <CJK> -<U51D6> /x8e/xae/xb9/xfe <CJK> -<U5273> /x8e/xae/xba/xa1 <CJK> -<U5270> /x8e/xae/xba/xa3 <CJK> -<U53A8> /x8e/xae/xba/xa7 <CJK> -<U53A6> /x8e/xae/xba/xa8 <CJK> -<U53C5> /x8e/xae/xba/xa9 <CJK> -<U5597> /x8e/xae/xba/xaa <CJK> -<U55DE> /x8e/xae/xba/xab <CJK> -<U5596> /x8e/xae/xba/xae <CJK> -<U55B4> /x8e/xae/xba/xaf <CJK> -<U5585> /x8e/xae/xba/xb1 <CJK> -<U559B> /x8e/xae/xba/xb3 <CJK> -<U55A0> /x8e/xae/xba/xb4 <CJK> -<U5559> /x8e/xae/xba/xb6 <CJK> -<U5586> /x8e/xae/xba/xb8 <CJK> -<U55AF> /x8e/xae/xba/xbb <CJK> -<U557A> /x8e/xae/xba/xbc <CJK> -<U559E> /x8e/xae/xba/xc0 <CJK> -<U55A9> /x8e/xae/xba/xc2 <CJK> -<U570F> /x8e/xae/xba/xc3 <CJK> -<U570E> /x8e/xae/xba/xc4 <CJK> -<U581A> /x8e/xae/xba/xc5 <CJK> -<U581F> /x8e/xae/xba/xc7 <CJK> -<U583C> /x8e/xae/xba/xc9 <CJK> -<U5818> /x8e/xae/xba/xca <CJK> -<U583E> /x8e/xae/xba/xcb <CJK> -<U5826> /x8e/xae/xba/xcc <CJK> -<U583A> /x8e/xae/xba/xce <CJK> -<U5822> /x8e/xae/xba/xd0 <CJK> -<U58FB> /x8e/xae/xba/xd2 <CJK> -<U5963> /x8e/xae/xba/xd3 <CJK> -<U5964> /x8e/xae/xba/xd4 <CJK> -<U5AA8> /x8e/xae/xba/xd6 <CJK> -<U5AA3> /x8e/xae/xba/xd7 <CJK> -<U5A82> /x8e/xae/xba/xd8 <CJK> -<U5A88> /x8e/xae/xba/xd9 <CJK> -<U5AA1> /x8e/xae/xba/xda <CJK> -<U5A85> /x8e/xae/xba/xdb <CJK> -<U5A98> /x8e/xae/xba/xdc <CJK> -<U5A99> /x8e/xae/xba/xde <CJK> -<U5A89> /x8e/xae/xba/xe0 <CJK> -<U5A81> /x8e/xae/xba/xe1 <CJK> -<U5A96> /x8e/xae/xba/xe2 <CJK> -<U5A80> /x8e/xae/xba/xe3 <CJK> -<U5A91> /x8e/xae/xba/xe6 <CJK> -<U5ACF> /x8e/xae/xba/xeb <CJK> -<U5A87> /x8e/xae/xba/xf2 <CJK> -<U5AA0> /x8e/xae/xba/xf3 <CJK> -<U5A79> /x8e/xae/xba/xf5 <CJK> -<U5A86> /x8e/xae/xba/xf7 <CJK> -<U5AAB> /x8e/xae/xba/xf8 <CJK> -<U5AAA> /x8e/xae/xba/xf9 <CJK> -<U5AA4> /x8e/xae/xba/xfa <CJK> -<U5A8D> /x8e/xae/xba/xfb <CJK> -<U5A7E> /x8e/xae/xba/xfc <CJK> -<U5BD5> /x8e/xae/xba/xfe <CJK> -<U5C1E> /x8e/xae/xbb/xa4 <CJK> -<U5C5F> /x8e/xae/xbb/xa5 <CJK> -<U5C5E> /x8e/xae/xbb/xa6 <CJK> -<U5D44> /x8e/xae/xbb/xa7 <CJK> -<U5D3E> /x8e/xae/xbb/xa8 <CJK> -<U5D48> /x8e/xae/xbb/xaa <CJK> -<U5D1C> /x8e/xae/xbb/xab <CJK> -<U5D5B> /x8e/xae/xbb/xad <CJK> -<U5D4D> /x8e/xae/xbb/xae <CJK> -<U5D57> /x8e/xae/xbb/xb1 <CJK> -<U5D53> /x8e/xae/xbb/xb3 <CJK> -<U5D4F> /x8e/xae/xbb/xb4 <CJK> -<U5D3B> /x8e/xae/xbb/xb6 <CJK> -<U5D46> /x8e/xae/xbb/xb7 <CJK> -<U5E46> /x8e/xae/xbb/xba <CJK> -<U5E47> /x8e/xae/xbb/xbb <CJK> -<U5E48> /x8e/xae/xbb/xbd <CJK> -<U5EC0> /x8e/xae/xbb/xbe <CJK> -<U5EBD> /x8e/xae/xbb/xbf <CJK> -<U5EBF> /x8e/xae/xbb/xc0 <CJK> -<U5F11> /x8e/xae/xbb/xc2 <CJK> -<U5F3E> /x8e/xae/xbb/xc4 <CJK> -<U5F3B> /x8e/xae/xbb/xc5 <CJK> -<U5F3A> /x8e/xae/xbb/xc7 <CJK> -<U5FA7> /x8e/xae/xbb/xcb <CJK> -<U60EA> /x8e/xae/xbb/xcd <CJK> -<U6107> /x8e/xae/xbb/xcf <CJK> -<U6122> /x8e/xae/xbb/xd0 <CJK> -<U610C> /x8e/xae/xbb/xd1 <CJK> -<U60B3> /x8e/xae/xbb/xd4 <CJK> -<U60D6> /x8e/xae/xbb/xd5 <CJK> -<U60D2> /x8e/xae/xbb/xd6 <CJK> -<U60E3> /x8e/xae/xbb/xd8 <CJK> -<U60E5> /x8e/xae/xbb/xd9 <CJK> -<U60E9> /x8e/xae/xbb/xda <CJK> -<U6111> /x8e/xae/xbb/xdd <CJK> -<U60FD> /x8e/xae/xbb/xde <CJK> -<U611E> /x8e/xae/xbb/xe1 <CJK> -<U6120> /x8e/xae/xbb/xe2 <CJK> -<U6121> /x8e/xae/xbb/xe3 <CJK> -<U621E> /x8e/xae/xbb/xe4 <CJK> -<U63E2> /x8e/xae/xbb/xe6 <CJK> -<U63DE> /x8e/xae/xbb/xe7 <CJK> -<U63E6> /x8e/xae/xbb/xe8 <CJK> -<U63F8> /x8e/xae/xbb/xed <CJK> -<U63FE> /x8e/xae/xbb/xef <CJK> -<U63C1> /x8e/xae/xbb/xf0 <CJK> -<U63BF> /x8e/xae/xbb/xf1 <CJK> -<U63F7> /x8e/xae/xbb/xf2 <CJK> -<U63D1> /x8e/xae/xbb/xf3 <CJK> -<U655F> /x8e/xae/xbb/xf4 <CJK> -<U6560> /x8e/xae/xbb/xf5 <CJK> -<U6561> /x8e/xae/xbb/xf6 <CJK> -<U65D1> /x8e/xae/xbb/xf9 <CJK> -<U667D> /x8e/xae/xbb/xfc <CJK> -<U666B> /x8e/xae/xbb/xfd <CJK> -<U667F> /x8e/xae/xbb/xfe <CJK> -<U6673> /x8e/xae/xbc/xa3 <CJK> -<U6681> /x8e/xae/xbc/xa4 <CJK> -<U666D> /x8e/xae/xbc/xa5 <CJK> -<U6669> /x8e/xae/xbc/xa6 <CJK> -<U671E> /x8e/xae/xbc/xa9 <CJK> -<U68ED> /x8e/xae/xbc/xaa <CJK> -<U6903> /x8e/xae/xbc/xaf <CJK> -<U68FE> /x8e/xae/xbc/xb1 <CJK> -<U68E5> /x8e/xae/xbc/xb2 <CJK> -<U691E> /x8e/xae/xbc/xb3 <CJK> -<U6902> /x8e/xae/xbc/xb4 <CJK> -<U6909> /x8e/xae/xbc/xb7 <CJK> -<U68CA> /x8e/xae/xbc/xb8 <CJK> -<U6900> /x8e/xae/xbc/xb9 <CJK> -<U6901> /x8e/xae/xbc/xbb <CJK> -<U6918> /x8e/xae/xbc/xbc <CJK> -<U68E2> /x8e/xae/xbc/xbd <CJK> -<U68CF> /x8e/xae/xbc/xbe <CJK> -<U692E> /x8e/xae/xbc/xc0 <CJK> -<U68C5> /x8e/xae/xbc/xc1 <CJK> -<U68FF> /x8e/xae/xbc/xc2 <CJK> -<U691C> /x8e/xae/xbc/xc4 <CJK> -<U68C3> /x8e/xae/xbc/xc5 <CJK> -<U6B6F> /x8e/xae/xbc/xc7 <CJK> -<U6B6E> /x8e/xae/xbc/xc9 <CJK> -<U6BBE> /x8e/xae/xbc/xcb <CJK> -<U6BF4> /x8e/xae/xbc/xcd <CJK> -<U6C2D> /x8e/xae/xbc/xce <CJK> -<U6DB6> /x8e/xae/xbc/xd0 <CJK> -<U6E75> /x8e/xae/xbc/xd1 <CJK> -<U6E1E> /x8e/xae/xbc/xd2 <CJK> -<U6E18> /x8e/xae/xbc/xd4 <CJK> -<U6E48> /x8e/xae/xbc/xd6 <CJK> -<U6E4F> /x8e/xae/xbc/xd8 <CJK> -<U6E42> /x8e/xae/xbc/xda <CJK> -<U6E6A> /x8e/xae/xbc/xdb <CJK> -<U6E70> /x8e/xae/xbc/xdc <CJK> -<U6DFE> /x8e/xae/xbc/xdd <CJK> -<U6E6D> /x8e/xae/xbc/xe0 <CJK> -<U6E7B> /x8e/xae/xbc/xe2 <CJK> -<U6E7E> /x8e/xae/xbc/xe3 <CJK> -<U6E59> /x8e/xae/xbc/xe4 <CJK> -<U6E57> /x8e/xae/xbc/xe6 <CJK> -<U6E80> /x8e/xae/xbc/xe8 <CJK> -<U6E50> /x8e/xae/xbc/xe9 <CJK> -<U6E29> /x8e/xae/xbc/xeb <CJK> -<U6E76> /x8e/xae/xbc/xec <CJK> -<U6E2A> /x8e/xae/xbc/xed <CJK> -<U6E4C> /x8e/xae/xbc/xee <CJK> -<U712A> /x8e/xae/xbc/xef <CJK> -<U7135> /x8e/xae/xbc/xf1 <CJK> -<U712C> /x8e/xae/xbc/xf2 <CJK> -<U7137> /x8e/xae/xbc/xf3 <CJK> -<U711D> /x8e/xae/xbc/xf4 <CJK> -<U7138> /x8e/xae/xbc/xf7 <CJK> -<U7134> /x8e/xae/xbc/xf9 <CJK> -<U712B> /x8e/xae/xbc/xfa <CJK> -<U7133> /x8e/xae/xbc/xfb <CJK> -<U7127> /x8e/xae/xbc/xfc <CJK> -<U7124> /x8e/xae/xbc/xfd <CJK> -<U712D> /x8e/xae/xbd/xa1 <CJK> -<U7232> /x8e/xae/xbd/xa2 <CJK> -<U7283> /x8e/xae/xbd/xa3 <CJK> -<U7282> /x8e/xae/xbd/xa4 <CJK> -<U7287> /x8e/xae/xbd/xa5 <CJK> -<U7306> /x8e/xae/xbd/xa6 <CJK> -<U7324> /x8e/xae/xbd/xa7 <CJK> -<U7338> /x8e/xae/xbd/xa8 <CJK> -<U732A> /x8e/xae/xbd/xa9 <CJK> -<U732C> /x8e/xae/xbd/xaa <CJK> -<U732B> /x8e/xae/xbd/xab <CJK> -<U732F> /x8e/xae/xbd/xad <CJK> -<U7328> /x8e/xae/xbd/xae <CJK> -<U7417> /x8e/xae/xbd/xaf <CJK> -<U7419> /x8e/xae/xbd/xb2 <CJK> -<U7438> /x8e/xae/xbd/xb3 <CJK> -<U741F> /x8e/xae/xbd/xb5 <CJK> -<U7414> /x8e/xae/xbd/xb6 <CJK> -<U743C> /x8e/xae/xbd/xb7 <CJK> -<U73F7> /x8e/xae/xbd/xb8 <CJK> -<U741C> /x8e/xae/xbd/xb9 <CJK> -<U7415> /x8e/xae/xbd/xba <CJK> -<U7418> /x8e/xae/xbd/xbb <CJK> -<U7439> /x8e/xae/xbd/xbc <CJK> -<U74F9> /x8e/xae/xbd/xbd <CJK> -<U7524> /x8e/xae/xbd/xbe <CJK> -<U756E> /x8e/xae/xbd/xc2 <CJK> -<U756D> /x8e/xae/xbd/xc3 <CJK> -<U7571> /x8e/xae/xbd/xc4 <CJK> -<U758E> /x8e/xae/xbd/xc5 <CJK> -<U75E5> /x8e/xae/xbd/xc7 <CJK> -<U7694> /x8e/xae/xbd/xcc <CJK> -<U76B3> /x8e/xae/xbd/xcd <CJK> -<U76D9> /x8e/xae/xbd/xcf <CJK> -<U7748> /x8e/xae/xbd/xd1 <CJK> -<U7749> /x8e/xae/xbd/xd2 <CJK> -<U7743> /x8e/xae/xbd/xd3 <CJK> -<U7742> /x8e/xae/xbd/xd6 <CJK> -<U77DF> /x8e/xae/xbd/xd7 <CJK> -<U7863> /x8e/xae/xbd/xd9 <CJK> -<U7876> /x8e/xae/xbd/xda <CJK> -<U785F> /x8e/xae/xbd/xdc <CJK> -<U7866> /x8e/xae/xbd/xdd <CJK> -<U7966> /x8e/xae/xbd/xde <CJK> -<U7971> /x8e/xae/xbd/xdf <CJK> -<U7976> /x8e/xae/xbd/xe2 <CJK> -<U7984> /x8e/xae/xbd/xe3 <CJK> -<U7975> /x8e/xae/xbd/xe4 <CJK> -<U79FF> /x8e/xae/xbd/xe5 <CJK> -<U7A07> /x8e/xae/xbd/xe6 <CJK> -<U7A0E> /x8e/xae/xbd/xe8 <CJK> -<U7A09> /x8e/xae/xbd/xe9 <CJK> -<U7AE7> /x8e/xae/xbd/xf0 <CJK> -<U7AE2> /x8e/xae/xbd/xf1 <CJK> -<U7B55> /x8e/xae/xbd/xf2 <CJK> -<U7B43> /x8e/xae/xbd/xf5 <CJK> -<U7B57> /x8e/xae/xbd/xf6 <CJK> -<U7B6C> /x8e/xae/xbd/xf7 <CJK> -<U7B42> /x8e/xae/xbd/xf8 <CJK> -<U7B53> /x8e/xae/xbd/xf9 <CJK> -<U7B41> /x8e/xae/xbd/xfb <CJK> -<U7CA7> /x8e/xae/xbd/xfe <CJK> -<U7CA0> /x8e/xae/xbe/xa1 <CJK> -<U7CA6> /x8e/xae/xbe/xa2 <CJK> -<U7CA4> /x8e/xae/xbe/xa3 <CJK> -<U7D74> /x8e/xae/xbe/xa4 <CJK> -<U7D59> /x8e/xae/xbe/xa6 <CJK> -<U7D60> /x8e/xae/xbe/xa8 <CJK> -<U7D57> /x8e/xae/xbe/xa9 <CJK> -<U7D6C> /x8e/xae/xbe/xaa <CJK> -<U7D7E> /x8e/xae/xbe/xab <CJK> -<U7D64> /x8e/xae/xbe/xac <CJK> -<U7D5A> /x8e/xae/xbe/xae <CJK> -<U7D5D> /x8e/xae/xbe/xaf <CJK> -<U7D76> /x8e/xae/xbe/xb3 <CJK> -<U7D4D> /x8e/xae/xbe/xb4 <CJK> -<U7D75> /x8e/xae/xbe/xb5 <CJK> -<U7FD3> /x8e/xae/xbe/xb7 <CJK> -<U7FD6> /x8e/xae/xbe/xb8 <CJK> -<U8060> /x8e/xae/xbe/xbb <CJK> -<U804E> /x8e/xae/xbe/xbc <CJK> -<U8145> /x8e/xae/xbe/xbd <CJK> -<U813B> /x8e/xae/xbe/xbe <CJK> -<U8148> /x8e/xae/xbe/xc0 <CJK> -<U8142> /x8e/xae/xbe/xc1 <CJK> -<U8149> /x8e/xae/xbe/xc2 <CJK> -<U8140> /x8e/xae/xbe/xc3 <CJK> -<U8114> /x8e/xae/xbe/xc4 <CJK> -<U8141> /x8e/xae/xbe/xc5 <CJK> -<U81EF> /x8e/xae/xbe/xc7 <CJK> -<U81F6> /x8e/xae/xbe/xc8 <CJK> -<U8203> /x8e/xae/xbe/xc9 <CJK> -<U83ED> /x8e/xae/xbe/xcb <CJK> -<U83DA> /x8e/xae/xbe/xcd <CJK> -<U8418> /x8e/xae/xbe/xce <CJK> -<U83D2> /x8e/xae/xbe/xcf <CJK> -<U8408> /x8e/xae/xbe/xd0 <CJK> -<U8400> /x8e/xae/xbe/xd2 <CJK> -<U8417> /x8e/xae/xbe/xd6 <CJK> -<U8346> /x8e/xae/xbe/xd7 <CJK> -<U8414> /x8e/xae/xbe/xd8 <CJK> -<U83D3> /x8e/xae/xbe/xd9 <CJK> -<U8405> /x8e/xae/xbe/xda <CJK> -<U841F> /x8e/xae/xbe/xdb <CJK> -<U8402> /x8e/xae/xbe/xdc <CJK> -<U8416> /x8e/xae/xbe/xdd <CJK> -<U83CD> /x8e/xae/xbe/xde <CJK> -<U83E6> /x8e/xae/xbe/xdf <CJK> -<U865D> /x8e/xae/xbe/xe1 <CJK> -<U86D5> /x8e/xae/xbe/xe2 <CJK> -<U86E1> /x8e/xae/xbe/xe3 <CJK> -<U86EE> /x8e/xae/xbe/xe8 <CJK> -<U8847> /x8e/xae/xbe/xe9 <CJK> -<U8846> /x8e/xae/xbe/xea <CJK> -<U88BB> /x8e/xae/xbe/xed <CJK> -<U88BF> /x8e/xae/xbe/xef <CJK> -<U88B4> /x8e/xae/xbe/xf0 <CJK> -<U88B5> /x8e/xae/xbe/xf2 <CJK> -<U899A> /x8e/xae/xbe/xf4 <CJK> -<U8A43> /x8e/xae/xbe/xf5 <CJK> -<U8A5A> /x8e/xae/xbe/xf8 <CJK> -<U8A35> /x8e/xae/xbe/xfc <CJK> -<U8A38> /x8e/xae/xbe/xfd <CJK> -<U8A42> /x8e/xae/xbe/xfe <CJK> -<U8A49> /x8e/xae/xbf/xa1 <CJK> -<U8A5D> /x8e/xae/xbf/xa2 <CJK> -<U8A4B> /x8e/xae/xbf/xa3 <CJK> -<U8A3D> /x8e/xae/xbf/xa4 <CJK> -<U8C60> /x8e/xae/xbf/xa9 <CJK> -<U8C5E> /x8e/xae/xbf/xaa <CJK> -<U8C7F> /x8e/xae/xbf/xab <CJK> -<U8C7E> /x8e/xae/xbf/xac <CJK> -<U8C83> /x8e/xae/xbf/xad <CJK> -<U8CB1> /x8e/xae/xbf/xaf <CJK> -<U8D87> /x8e/xae/xbf/xb0 <CJK> -<U8D88> /x8e/xae/xbf/xb3 <CJK> -<U8D83> /x8e/xae/xbf/xb4 <CJK> -<U8D86> /x8e/xae/xbf/xb7 <CJK> -<U8D8B> /x8e/xae/xbf/xb8 <CJK> -<U8D82> /x8e/xae/xbf/xb9 <CJK> -<U8DCA> /x8e/xae/xbf/xba <CJK> -<U8DD2> /x8e/xae/xbf/xbb <CJK> -<U8DD4> /x8e/xae/xbf/xbe <CJK> -<U8DC9> /x8e/xae/xbf/xbf <CJK> -<U8EB0> /x8e/xae/xbf/xc0 <CJK> -<U8EF2> /x8e/xae/xbf/xc4 <CJK> -<U8EE4> /x8e/xae/xbf/xc5 <CJK> -<U8EF3> /x8e/xae/xbf/xc6 <CJK> -<U8EEA> /x8e/xae/xbf/xc7 <CJK> -<U8EFD> /x8e/xae/xbf/xc9 <CJK> -<U8F9D> /x8e/xae/xbf/xcb <CJK> -<U902B> /x8e/xae/xbf/xcc <CJK> -<U902A> /x8e/xae/xbf/xcd <CJK> -<U9028> /x8e/xae/xbf/xcf <CJK> -<U9029> /x8e/xae/xbf/xd0 <CJK> -<U902C> /x8e/xae/xbf/xd1 <CJK> -<U903A> /x8e/xae/xbf/xd4 <CJK> -<U9030> /x8e/xae/xbf/xd5 <CJK> -<U9037> /x8e/xae/xbf/xd6 <CJK> -<U903B> /x8e/xae/xbf/xd7 <CJK> -<U910A> /x8e/xae/xbf/xd9 <CJK> -<U91FE> /x8e/xae/xbf/xdd <CJK> -<U9220> /x8e/xae/xbf/xde <CJK> -<U920B> /x8e/xae/xbf/xe0 <CJK> -<U9218> /x8e/xae/xbf/xe2 <CJK> -<U9222> /x8e/xae/xbf/xe3 <CJK> -<U921B> /x8e/xae/xbf/xe5 <CJK> -<U9208> /x8e/xae/xbf/xe6 <CJK> -<U920E> /x8e/xae/xbf/xe8 <CJK> -<U9213> /x8e/xae/xbf/xe9 <CJK> -<U9595> /x8e/xae/xbf/xec <CJK> -<U968C> /x8e/xae/xbf/xf0 <CJK> -<U967B> /x8e/xae/xbf/xf1 <CJK> -<U967F> /x8e/xae/xbf/xf2 <CJK> -<U9681> /x8e/xae/xbf/xf3 <CJK> -<U9682> /x8e/xae/xbf/xf5 <CJK> -<U96EE> /x8e/xae/xbf/xfb <CJK> -<U96ED> /x8e/xae/xbf/xfc <CJK> -<U96EC> /x8e/xae/xbf/xfe <CJK> -<U975F> /x8e/xae/xc0/xa1 <CJK> -<U976F> /x8e/xae/xc0/xa2 <CJK> -<U976D> /x8e/xae/xc0/xa4 <CJK> -<U98F0> /x8e/xae/xc0/xab <CJK> -<U9AA9> /x8e/xae/xc0/xaf <CJK> -<U9AE0> /x8e/xae/xc0/xb2 <CJK> -<U4EB7> /x8e/xae/xc0/xb3 <CJK> -<U50CC> /x8e/xae/xc0/xb6 <CJK> -<U50BC> /x8e/xae/xc0/xb7 <CJK> -<U50AA> /x8e/xae/xc0/xb9 <CJK> -<U50B9> /x8e/xae/xc0/xba <CJK> -<U50AB> /x8e/xae/xc0/xbc <CJK> -<U50C3> /x8e/xae/xc0/xbd <CJK> -<U50CD> /x8e/xae/xc0/xbe <CJK> -<U517E> /x8e/xae/xc0/xbf <CJK> -<U527E> /x8e/xae/xc0/xc0 <CJK> -<U5279> /x8e/xae/xc0/xc1 <CJK> -<U52E1> /x8e/xae/xc0/xc4 <CJK> -<U52E0> /x8e/xae/xc0/xc5 <CJK> -<U52E7> /x8e/xae/xc0/xc6 <CJK> -<U5380> /x8e/xae/xc0/xc7 <CJK> -<U53AB> /x8e/xae/xc0/xc8 <CJK> -<U53AA> /x8e/xae/xc0/xc9 <CJK> -<U53A9> /x8e/xae/xc0/xca <CJK> -<U53E0> /x8e/xae/xc0/xcb <CJK> -<U55EA> /x8e/xae/xc0/xcc <CJK> -<U55D7> /x8e/xae/xc0/xce <CJK> -<U55C1> /x8e/xae/xc0/xd1 <CJK> -<U5715> /x8e/xae/xc0/xd2 <CJK> -<U586C> /x8e/xae/xc0/xd4 <CJK> -<U585C> /x8e/xae/xc0/xd6 <CJK> -<U5850> /x8e/xae/xc0/xd7 <CJK> -<U5861> /x8e/xae/xc0/xd8 <CJK> -<U586A> /x8e/xae/xc0/xd9 <CJK> -<U5869> /x8e/xae/xc0/xda <CJK> -<U5856> /x8e/xae/xc0/xdb <CJK> -<U5860> /x8e/xae/xc0/xdc <CJK> -<U5866> /x8e/xae/xc0/xdd <CJK> -<U585F> /x8e/xae/xc0/xde <CJK> -<U5923> /x8e/xae/xc0/xdf <CJK> -<U5966> /x8e/xae/xc0/xe0 <CJK> -<U5968> /x8e/xae/xc0/xe1 <CJK> -<U5ACE> /x8e/xae/xc0/xe4 <CJK> -<U5AC5> /x8e/xae/xc0/xe6 <CJK> -<U5AC3> /x8e/xae/xc0/xe7 <CJK> -<U5AD0> /x8e/xae/xc0/xea <CJK> -<U5B74> /x8e/xae/xc0/xf1 <CJK> -<U5B76> /x8e/xae/xc0/xf2 <CJK> -<U5BDC> /x8e/xae/xc0/xf3 <CJK> -<U5BD7> /x8e/xae/xc0/xf4 <CJK> -<U5BDA> /x8e/xae/xc0/xf5 <CJK> -<U5BDB> /x8e/xae/xc0/xf6 <CJK> -<U5C20> /x8e/xae/xc0/xf8 <CJK> -<U5D6D> /x8e/xae/xc0/xf9 <CJK> -<U5D66> /x8e/xae/xc0/xfa <CJK> -<U5D64> /x8e/xae/xc0/xfc <CJK> -<U5D6E> /x8e/xae/xc0/xfd <CJK> -<U5D60> /x8e/xae/xc1/xa1 <CJK> -<U5F42> /x8e/xae/xc1/xa2 <CJK> -<U5F5A> /x8e/xae/xc1/xa3 <CJK> -<U5F6E> /x8e/xae/xc1/xa4 <CJK> -<U6130> /x8e/xae/xc1/xa7 <CJK> -<U613A> /x8e/xae/xc1/xa8 <CJK> -<U612A> /x8e/xae/xc1/xa9 <CJK> -<U6143> /x8e/xae/xc1/xaa <CJK> -<U6119> /x8e/xae/xc1/xab <CJK> -<U6131> /x8e/xae/xc1/xac <CJK> -<U613D> /x8e/xae/xc1/xae <CJK> -<U6408> /x8e/xae/xc1/xb2 <CJK> -<U6432> /x8e/xae/xc1/xb3 <CJK> -<U6438> /x8e/xae/xc1/xb4 <CJK> -<U6431> /x8e/xae/xc1/xb6 <CJK> -<U6419> /x8e/xae/xc1/xb8 <CJK> -<U6411> /x8e/xae/xc1/xba <CJK> -<U6429> /x8e/xae/xc1/xbd <CJK> -<U641D> /x8e/xae/xc1/xbe <CJK> -<U643C> /x8e/xae/xc1/xc2 <CJK> -<U6446> /x8e/xae/xc1/xc4 <CJK> -<U6447> /x8e/xae/xc1/xc5 <CJK> -<U643A> /x8e/xae/xc1/xc8 <CJK> -<U6407> /x8e/xae/xc1/xc9 <CJK> -<U656B> /x8e/xae/xc1/xcb <CJK> -<U6570> /x8e/xae/xc1/xcd <CJK> -<U656D> /x8e/xae/xc1/xce <CJK> -<U65E4> /x8e/xae/xc1/xd0 <CJK> -<U6693> /x8e/xae/xc1/xd1 <CJK> -<U668F> /x8e/xae/xc1/xd6 <CJK> -<U6692> /x8e/xae/xc1/xd9 <CJK> -<U668E> /x8e/xae/xc1/xdb <CJK> -<U6946> /x8e/xae/xc1/xdd <CJK> -<U6931> /x8e/xae/xc1/xe5 <CJK> -<U693E> /x8e/xae/xc1/xe8 <CJK> -<U697C> /x8e/xae/xc1/xea <CJK> -<U6943> /x8e/xae/xc1/xeb <CJK> -<U6973> /x8e/xae/xc1/xed <CJK> -<U6955> /x8e/xae/xc1/xef <CJK> -<U6985> /x8e/xae/xc1/xf2 <CJK> -<U694D> /x8e/xae/xc1/xf3 <CJK> -<U6950> /x8e/xae/xc1/xf4 <CJK> -<U6947> /x8e/xae/xc1/xf5 <CJK> -<U6967> /x8e/xae/xc1/xf6 <CJK> -<U6936> /x8e/xae/xc1/xf7 <CJK> -<U6964> /x8e/xae/xc1/xf8 <CJK> -<U6961> /x8e/xae/xc1/xf9 <CJK> -<U697D> /x8e/xae/xc1/xfb <CJK> -<U6B44> /x8e/xae/xc1/xfc <CJK> -<U6B40> /x8e/xae/xc1/xfd <CJK> -<U6B71> /x8e/xae/xc1/xfe <CJK> -<U6B73> /x8e/xae/xc2/xa1 <CJK> -<U6B9C> /x8e/xae/xc2/xa2 <CJK> -<U6BC1> /x8e/xae/xc2/xa6 <CJK> -<U6BFA> /x8e/xae/xc2/xa8 <CJK> -<U6C31> /x8e/xae/xc2/xa9 <CJK> -<U6C32> /x8e/xae/xc2/xaa <CJK> -<U6EB8> /x8e/xae/xc2/xad <CJK> -<U6EA8> /x8e/xae/xc2/xae <CJK> -<U6E91> /x8e/xae/xc2/xb0 <CJK> -<U6EBB> /x8e/xae/xc2/xb1 <CJK> -<U6E9A> /x8e/xae/xc2/xb3 <CJK> -<U6EA9> /x8e/xae/xc2/xb6 <CJK> -<U6EB5> /x8e/xae/xc2/xb9 <CJK> -<U6E6C> /x8e/xae/xc2/xba <CJK> -<U6EE8> /x8e/xae/xc2/xbb <CJK> -<U6EDD> /x8e/xae/xc2/xbd <CJK> -<U6EDA> /x8e/xae/xc2/xbe <CJK> -<U6EE6> /x8e/xae/xc2/xbf <CJK> -<U6EAC> /x8e/xae/xc2/xc0 <CJK> -<U6ED9> /x8e/xae/xc2/xc4 <CJK> -<U6EE3> /x8e/xae/xc2/xc5 <CJK> -<U6EE9> /x8e/xae/xc2/xc6 <CJK> -<U6EDB> /x8e/xae/xc2/xc7 <CJK> -<U716F> /x8e/xae/xc2/xc9 <CJK> -<U7148> /x8e/xae/xc2/xcc <CJK> -<U714A> /x8e/xae/xc2/xce <CJK> -<U716B> /x8e/xae/xc2/xcf <CJK> -<U714F> /x8e/xae/xc2/xd1 <CJK> -<U7157> /x8e/xae/xc2/xd2 <CJK> -<U7174> /x8e/xae/xc2/xd3 <CJK> -<U7145> /x8e/xae/xc2/xd7 <CJK> -<U7151> /x8e/xae/xc2/xd8 <CJK> -<U716D> /x8e/xae/xc2/xd9 <CJK> -<U7251> /x8e/xae/xc2/xdb <CJK> -<U7250> /x8e/xae/xc2/xdc <CJK> -<U724E> /x8e/xae/xc2/xdd <CJK> -<U7341> /x8e/xae/xc2/xdf <CJK> -<U732E> /x8e/xae/xc2/xe1 <CJK> -<U7346> /x8e/xae/xc2/xe2 <CJK> -<U7427> /x8e/xae/xc2/xe4 <CJK> -<U7448> /x8e/xae/xc2/xe6 <CJK> -<U7453> /x8e/xae/xc2/xe7 <CJK> -<U743D> /x8e/xae/xc2/xe8 <CJK> -<U745D> /x8e/xae/xc2/xea <CJK> -<U7456> /x8e/xae/xc2/xeb <CJK> -<U741E> /x8e/xae/xc2/xed <CJK> -<U7447> /x8e/xae/xc2/xee <CJK> -<U7443> /x8e/xae/xc2/xef <CJK> -<U7458> /x8e/xae/xc2/xf0 <CJK> -<U7449> /x8e/xae/xc2/xf1 <CJK> -<U744C> /x8e/xae/xc2/xf3 <CJK> -<U7445> /x8e/xae/xc2/xf4 <CJK> -<U743E> /x8e/xae/xc2/xf5 <CJK> -<U7501> /x8e/xae/xc2/xf7 <CJK> -<U751E> /x8e/xae/xc2/xf8 <CJK> -<U757A> /x8e/xae/xc2/xfb <CJK> -<U75EE> /x8e/xae/xc2/xfc <CJK> -<U7602> /x8e/xae/xc2/xfd <CJK> -<U7697> /x8e/xae/xc2/xfe <CJK> -<U7698> /x8e/xae/xc3/xa1 <CJK> -<U775D> /x8e/xae/xc3/xa5 <CJK> -<U7764> /x8e/xae/xc3/xa6 <CJK> -<U7753> /x8e/xae/xc3/xa7 <CJK> -<U7758> /x8e/xae/xc3/xa8 <CJK> -<U7882> /x8e/xae/xc3/xa9 <CJK> -<U7890> /x8e/xae/xc3/xaa <CJK> -<U788A> /x8e/xae/xc3/xab <CJK> -<U787A> /x8e/xae/xc3/xad <CJK> -<U787D> /x8e/xae/xc3/xae <CJK> -<U788B> /x8e/xae/xc3/xb0 <CJK> -<U7878> /x8e/xae/xc3/xb1 <CJK> -<U788D> /x8e/xae/xc3/xb4 <CJK> -<U7888> /x8e/xae/xc3/xb5 <CJK> -<U7892> /x8e/xae/xc3/xb6 <CJK> -<U7881> /x8e/xae/xc3/xb7 <CJK> -<U797E> /x8e/xae/xc3/xb8 <CJK> -<U7983> /x8e/xae/xc3/xb9 <CJK> -<U7980> /x8e/xae/xc3/xbd <CJK> -<U7A0F> /x8e/xae/xc3/xc1 <CJK> -<U7A1D> /x8e/xae/xc3/xc4 <CJK> -<U7AA1> /x8e/xae/xc3/xc6 <CJK> -<U7AA4> /x8e/xae/xc3/xc7 <CJK> -<U7AE9> /x8e/xae/xc3/xc9 <CJK> -<U7AEA> /x8e/xae/xc3/xca <CJK> -<U7B62> /x8e/xae/xc3/xcc <CJK> -<U7B6B> /x8e/xae/xc3/xcd <CJK> -<U7B5E> /x8e/xae/xc3/xcf <CJK> -<U7B79> /x8e/xae/xc3/xd1 <CJK> -<U7B6F> /x8e/xae/xc3/xd4 <CJK> -<U7B68> /x8e/xae/xc3/xd5 <CJK> -<U7CAE> /x8e/xae/xc3/xd8 <CJK> -<U7CB0> /x8e/xae/xc3/xdc <CJK> -<U7D90> /x8e/xae/xc3/xde <CJK> -<U7D8A> /x8e/xae/xc3/xe0 <CJK> -<U7D8B> /x8e/xae/xc3/xe2 <CJK> -<U7D99> /x8e/xae/xc3/xe3 <CJK> -<U7D95> /x8e/xae/xc3/xe4 <CJK> -<U7D87> /x8e/xae/xc3/xe6 <CJK> -<U7D78> /x8e/xae/xc3/xe7 <CJK> -<U7D97> /x8e/xae/xc3/xe8 <CJK> -<U7D89> /x8e/xae/xc3/xe9 <CJK> -<U7D98> /x8e/xae/xc3/xea <CJK> -<U7FA3> /x8e/xae/xc3/xee <CJK> -<U7FDD> /x8e/xae/xc3/xf2 <CJK> -<U8057> /x8e/xae/xc3/xf3 <CJK> -<U8163> /x8e/xae/xc3/xf5 <CJK> -<U816A> /x8e/xae/xc3/xf6 <CJK> -<U816C> /x8e/xae/xc3/xf7 <CJK> -<U815D> /x8e/xae/xc3/xfb <CJK> -<U8175> /x8e/xae/xc3/xfc <CJK> -<U815F> /x8e/xae/xc3/xfe <CJK> -<U817D> /x8e/xae/xc4/xa2 <CJK> -<U816D> /x8e/xae/xc4/xa3 <CJK> -<U8241> /x8e/xae/xc4/xa6 <CJK> -<U844F> /x8e/xae/xc4/xa7 <CJK> -<U8484> /x8e/xae/xc4/xa8 <CJK> -<U847F> /x8e/xae/xc4/xaa <CJK> -<U8448> /x8e/xae/xc4/xac <CJK> -<U842A> /x8e/xae/xc4/xad <CJK> -<U847B> /x8e/xae/xc4/xae <CJK> -<U8472> /x8e/xae/xc4/xaf <CJK> -<U8464> /x8e/xae/xc4/xb0 <CJK> -<U842E> /x8e/xae/xc4/xb1 <CJK> -<U845C> /x8e/xae/xc4/xb2 <CJK> -<U8453> /x8e/xae/xc4/xb3 <CJK> -<U8441> /x8e/xae/xc4/xb5 <CJK> -<U84C8> /x8e/xae/xc4/xb6 <CJK> -<U8462> /x8e/xae/xc4/xb8 <CJK> -<U8480> /x8e/xae/xc4/xb9 <CJK> -<U843E> /x8e/xae/xc4/xba <CJK> -<U8483> /x8e/xae/xc4/xbb <CJK> -<U8471> /x8e/xae/xc4/xbc <CJK> -<U844A> /x8e/xae/xc4/xbe <CJK> -<U8455> /x8e/xae/xc4/xbf <CJK> -<U8458> /x8e/xae/xc4/xc0 <CJK> -<U86FC> /x8e/xae/xc4/xc4 <CJK> -<U86FD> /x8e/xae/xc4/xc5 <CJK> -<U8715> /x8e/xae/xc4/xc6 <CJK> -<U8716> /x8e/xae/xc4/xc8 <CJK> -<U86FF> /x8e/xae/xc4/xc9 <CJK> -<U8858> /x8e/xae/xc4/xcd <CJK> -<U88CF> /x8e/xae/xc4/xce <CJK> -<U88E0> /x8e/xae/xc4/xcf <CJK> -<U89E7> /x8e/xae/xc4/xd4 <CJK> -<U8A6A> /x8e/xae/xc4/xd5 <CJK> -<U8A80> /x8e/xae/xc4/xd6 <CJK> -<U8A6F> /x8e/xae/xc4/xd8 <CJK> -<U8A65> /x8e/xae/xc4/xd9 <CJK> -<U8A78> /x8e/xae/xc4/xdb <CJK> -<U8A7D> /x8e/xae/xc4/xdc <CJK> -<U8A88> /x8e/xae/xc4/xdd <CJK> -<U8A64> /x8e/xae/xc4/xe0 <CJK> -<U8A7E> /x8e/xae/xc4/xe1 <CJK> -<U8A67> /x8e/xae/xc4/xe3 <CJK> -<U8C63> /x8e/xae/xc4/xe4 <CJK> -<U8C88> /x8e/xae/xc4/xe5 <CJK> -<U8CCD> /x8e/xae/xc4/xe7 <CJK> -<U8CC9> /x8e/xae/xc4/xe9 <CJK> -<U8DED> /x8e/xae/xc4/xeb <CJK> -<U8EB1> /x8e/xae/xc4/xf3 <CJK> -<U8F04> /x8e/xae/xc4/xf6 <CJK> -<U8F9E> /x8e/xae/xc4/xf7 <CJK> -<U8FA0> /x8e/xae/xc4/xf8 <CJK> -<U9043> /x8e/xae/xc4/xf9 <CJK> -<U9046> /x8e/xae/xc4/xfa <CJK> -<U9048> /x8e/xae/xc4/xfb <CJK> -<U9045> /x8e/xae/xc4/xfc <CJK> -<U9040> /x8e/xae/xc4/xfd <CJK> -<U904C> /x8e/xae/xc4/xfe <CJK> -<U910C> /x8e/xae/xc5/xa3 <CJK> -<U9113> /x8e/xae/xc5/xa4 <CJK> -<U9115> /x8e/xae/xc5/xa5 <CJK> -<U916B> /x8e/xae/xc5/xa7 <CJK> -<U9167> /x8e/xae/xc5/xa8 <CJK> -<U925D> /x8e/xae/xc5/xa9 <CJK> -<U9255> /x8e/xae/xc5/xaa <CJK> -<U9235> /x8e/xae/xc5/xab <CJK> -<U9259> /x8e/xae/xc5/xad <CJK> -<U922F> /x8e/xae/xc5/xae <CJK> -<U923C> /x8e/xae/xc5/xaf <CJK> -<U928F> /x8e/xae/xc5/xb0 <CJK> -<U925C> /x8e/xae/xc5/xb1 <CJK> -<U926A> /x8e/xae/xc5/xb2 <CJK> -<U9262> /x8e/xae/xc5/xb3 <CJK> -<U925F> /x8e/xae/xc5/xb4 <CJK> -<U926B> /x8e/xae/xc5/xb5 <CJK> -<U926E> /x8e/xae/xc5/xb6 <CJK> -<U923B> /x8e/xae/xc5/xb7 <CJK> -<U9244> /x8e/xae/xc5/xb8 <CJK> -<U9241> /x8e/xae/xc5/xb9 <CJK> -<U959A> /x8e/xae/xc5/xba <CJK> -<U9599> /x8e/xae/xc5/xbc <CJK> -<U968F> /x8e/xae/xc5/xc0 <CJK> -<U9696> /x8e/xae/xc5/xc2 <CJK> -<U96F4> /x8e/xae/xc5/xc6 <CJK> -<U96FC> /x8e/xae/xc5/xc7 <CJK> -<U9755> /x8e/xae/xc5/xc9 <CJK> -<U9779> /x8e/xae/xc5/xcb <CJK> -<U97EE> /x8e/xae/xc5/xcf <CJK> -<U97F5> /x8e/xae/xc5/xd0 <CJK> -<U980B> /x8e/xae/xc5/xd2 <CJK> -<U98F3> /x8e/xae/xc5/xd4 <CJK> -<U98F7> /x8e/xae/xc5/xd7 <CJK> -<U98FF> /x8e/xae/xc5/xd8 <CJK> -<U98F5> /x8e/xae/xc5/xd9 <CJK> -<U98EC> /x8e/xae/xc5/xdb <CJK> -<U98F1> /x8e/xae/xc5/xdc <CJK> -<U999A> /x8e/xae/xc5/xdf <CJK> -<U9AE2> /x8e/xae/xc5/xe1 <CJK> -<U9B3D> /x8e/xae/xc5/xe2 <CJK> -<U9B5D> /x8e/xae/xc5/xe3 <CJK> -<U9CE8> /x8e/xae/xc5/xe4 <CJK> -<U9CEB> /x8e/xae/xc5/xe6 <CJK> -<U9CEF> /x8e/xae/xc5/xe7 <CJK> -<U9CEE> /x8e/xae/xc5/xe8 <CJK> -<U9E81> /x8e/xae/xc5/xe9 <CJK> -<U9F14> /x8e/xae/xc5/xea <CJK> -<U50D0> /x8e/xae/xc5/xeb <CJK> -<U50D9> /x8e/xae/xc5/xec <CJK> -<U50DC> /x8e/xae/xc5/xed <CJK> -<U50D8> /x8e/xae/xc5/xee <CJK> -<U50E1> /x8e/xae/xc5/xf0 <CJK> -<U50EB> /x8e/xae/xc5/xf1 <CJK> -<U50F4> /x8e/xae/xc5/xf4 <CJK> -<U50E2> /x8e/xae/xc5/xf5 <CJK> -<U50DE> /x8e/xae/xc5/xf6 <CJK> -<U51F4> /x8e/xae/xc5/xfa <CJK> -<U52ED> /x8e/xae/xc5/xfe <CJK> -<U52EA> /x8e/xae/xc6/xa1 <CJK> -<U5332> /x8e/xae/xc6/xa3 <CJK> -<U53AE> /x8e/xae/xc6/xa5 <CJK> -<U53B0> /x8e/xae/xc6/xa6 <CJK> -<U55FB> /x8e/xae/xc6/xa8 <CJK> -<U5603> /x8e/xae/xc6/xa9 <CJK> -<U560B> /x8e/xae/xc6/xaa <CJK> -<U5607> /x8e/xae/xc6/xac <CJK> -<U55F8> /x8e/xae/xc6/xae <CJK> -<U5628> /x8e/xae/xc6/xb0 <CJK> -<U561E> /x8e/xae/xc6/xb1 <CJK> -<U5618> /x8e/xae/xc6/xb3 <CJK> -<U5611> /x8e/xae/xc6/xb4 <CJK> -<U5651> /x8e/xae/xc6/xb5 <CJK> -<U5605> /x8e/xae/xc6/xb6 <CJK> -<U5717> /x8e/xae/xc6/xb7 <CJK> -<U5892> /x8e/xae/xc6/xb8 <CJK> -<U588C> /x8e/xae/xc6/xba <CJK> -<U5878> /x8e/xae/xc6/xbc <CJK> -<U5884> /x8e/xae/xc6/xbd <CJK> -<U5873> /x8e/xae/xc6/xbe <CJK> -<U58AD> /x8e/xae/xc6/xbf <CJK> -<U5897> /x8e/xae/xc6/xc0 <CJK> -<U5895> /x8e/xae/xc6/xc1 <CJK> -<U5877> /x8e/xae/xc6/xc2 <CJK> -<U5872> /x8e/xae/xc6/xc3 <CJK> -<U5896> /x8e/xae/xc6/xc4 <CJK> -<U588D> /x8e/xae/xc6/xc5 <CJK> -<U5910> /x8e/xae/xc6/xc6 <CJK> -<U596C> /x8e/xae/xc6/xc8 <CJK> -<U5AE7> /x8e/xae/xc6/xca <CJK> -<U5AE4> /x8e/xae/xc6/xcc <CJK> -<U5AEF> /x8e/xae/xc6/xcf <CJK> -<U5626> /x8e/xae/xc6/xd0 <CJK> -<U5AF0> /x8e/xae/xc6/xd3 <CJK> -<U5D7B> /x8e/xae/xc6/xd4 <CJK> -<U5D83> /x8e/xae/xc6/xd6 <CJK> -<U5D8B> /x8e/xae/xc6/xd9 <CJK> -<U5D8C> /x8e/xae/xc6/xda <CJK> -<U5D78> /x8e/xae/xc6/xdc <CJK> -<U5E52> /x8e/xae/xc6/xdd <CJK> -<U5ED0> /x8e/xae/xc6/xe0 <CJK> -<U5ECF> /x8e/xae/xc6/xe1 <CJK> -<U5FB3> /x8e/xae/xc6/xe3 <CJK> -<U5FB4> /x8e/xae/xc6/xe4 <CJK> -<U617B> /x8e/xae/xc6/xe8 <CJK> -<U616F> /x8e/xae/xc6/xea <CJK> -<U6181> /x8e/xae/xc6/xeb <CJK> -<U613C> /x8e/xae/xc6/xec <CJK> -<U6142> /x8e/xae/xc6/xed <CJK> -<U6138> /x8e/xae/xc6/xee <CJK> -<U6133> /x8e/xae/xc6/xef <CJK> -<U6160> /x8e/xae/xc6/xf1 <CJK> -<U6169> /x8e/xae/xc6/xf2 <CJK> -<U617D> /x8e/xae/xc6/xf3 <CJK> -<U6186> /x8e/xae/xc6/xf4 <CJK> -<U622C> /x8e/xae/xc6/xf5 <CJK> -<U6228> /x8e/xae/xc6/xf6 <CJK> -<U644C> /x8e/xae/xc6/xf8 <CJK> -<U6457> /x8e/xae/xc6/xfa <CJK> -<U647C> /x8e/xae/xc6/xfb <CJK> -<U6455> /x8e/xae/xc6/xfe <CJK> -<U6462> /x8e/xae/xc7/xa1 <CJK> -<U6471> /x8e/xae/xc7/xa2 <CJK> -<U646A> /x8e/xae/xc7/xa3 <CJK> -<U6456> /x8e/xae/xc7/xa4 <CJK> -<U643B> /x8e/xae/xc7/xa5 <CJK> -<U6481> /x8e/xae/xc7/xa6 <CJK> -<U644F> /x8e/xae/xc7/xa8 <CJK> -<U647E> /x8e/xae/xc7/xa9 <CJK> -<U6464> /x8e/xae/xc7/xaa <CJK> -<U6571> /x8e/xae/xc7/xb0 <CJK> -<U66A5> /x8e/xae/xc7/xb3 <CJK> -<U669A> /x8e/xae/xc7/xb4 <CJK> -<U669C> /x8e/xae/xc7/xb5 <CJK> -<U66A6> /x8e/xae/xc7/xb7 <CJK> -<U66A4> /x8e/xae/xc7/xb9 <CJK> -<U698F> /x8e/xae/xc7/xba <CJK> -<U69C5> /x8e/xae/xc7/xbb <CJK> -<U69C8> /x8e/xae/xc7/xbc <CJK> -<U6992> /x8e/xae/xc7/xbd <CJK> -<U69B2> /x8e/xae/xc7/xbe <CJK> -<U69E3> /x8e/xae/xc7/xc2 <CJK> -<U69C0> /x8e/xae/xc7/xc3 <CJK> -<U69D6> /x8e/xae/xc7/xc4 <CJK> -<U69D1> /x8e/xae/xc7/xc5 <CJK> -<U699F> /x8e/xae/xc7/xc6 <CJK> -<U69A2> /x8e/xae/xc7/xc7 <CJK> -<U69D2> /x8e/xae/xc7/xc8 <CJK> -<U69E1> /x8e/xae/xc7/xcc <CJK> -<U69D5> /x8e/xae/xc7/xcd <CJK> -<U699D> /x8e/xae/xc7/xce <CJK> -<U6998> /x8e/xae/xc7/xd1 <CJK> -<U6B74> /x8e/xae/xc7/xd3 <CJK> -<U6BA1> /x8e/xae/xc7/xd4 <CJK> -<U6EF0> /x8e/xae/xc7/xd6 <CJK> -<U6EF3> /x8e/xae/xc7/xd7 <CJK> -<U6F1B> /x8e/xae/xc7/xda <CJK> -<U6F0C> /x8e/xae/xc7/xdb <CJK> -<U6F1D> /x8e/xae/xc7/xdc <CJK> -<U6F34> /x8e/xae/xc7/xdd <CJK> -<U6F28> /x8e/xae/xc7/xde <CJK> -<U6F17> /x8e/xae/xc7/xdf <CJK> -<U6F44> /x8e/xae/xc7/xe1 <CJK> -<U6F42> /x8e/xae/xc7/xe2 <CJK> -<U6F04> /x8e/xae/xc7/xe3 <CJK> -<U6F11> /x8e/xae/xc7/xe4 <CJK> -<U6EFA> /x8e/xae/xc7/xe5 <CJK> -<U6F4A> /x8e/xae/xc7/xe6 <CJK> -<U7191> /x8e/xae/xc7/xe7 <CJK> -<U718E> /x8e/xae/xc7/xe8 <CJK> -<U718B> /x8e/xae/xc7/xea <CJK> -<U718D> /x8e/xae/xc7/xeb <CJK> -<U717F> /x8e/xae/xc7/xec <CJK> -<U718C> /x8e/xae/xc7/xed <CJK> -<U717E> /x8e/xae/xc7/xee <CJK> -<U717C> /x8e/xae/xc7/xef <CJK> -<U7183> /x8e/xae/xc7/xf0 <CJK> -<U7188> /x8e/xae/xc7/xf2 <CJK> -<U7294> /x8e/xae/xc7/xf5 <CJK> -<U7355> /x8e/xae/xc7/xf7 <CJK> -<U7353> /x8e/xae/xc7/xf8 <CJK> -<U734F> /x8e/xae/xc7/xf9 <CJK> -<U7354> /x8e/xae/xc7/xfa <CJK> -<U746C> /x8e/xae/xc7/xfb <CJK> -<U7465> /x8e/xae/xc7/xfc <CJK> -<U7466> /x8e/xae/xc7/xfd <CJK> -<U7461> /x8e/xae/xc7/xfe <CJK> -<U746B> /x8e/xae/xc8/xa1 <CJK> -<U7468> /x8e/xae/xc8/xa2 <CJK> -<U7476> /x8e/xae/xc8/xa3 <CJK> -<U7460> /x8e/xae/xc8/xa5 <CJK> -<U7474> /x8e/xae/xc8/xa7 <CJK> -<U7506> /x8e/xae/xc8/xa8 <CJK> -<U760E> /x8e/xae/xc8/xa9 <CJK> -<U7607> /x8e/xae/xc8/xab <CJK> -<U76B9> /x8e/xae/xc8/xae <CJK> -<U76B7> /x8e/xae/xc8/xb0 <CJK> -<U76E2> /x8e/xae/xc8/xb1 <CJK> -<U7774> /x8e/xae/xc8/xb3 <CJK> -<U7777> /x8e/xae/xc8/xb4 <CJK> -<U7776> /x8e/xae/xc8/xb5 <CJK> -<U7775> /x8e/xae/xc8/xb6 <CJK> -<U7778> /x8e/xae/xc8/xb8 <CJK> -<U7771> /x8e/xae/xc8/xb9 <CJK> -<U777A> /x8e/xae/xc8/xbb <CJK> -<U715B> /x8e/xae/xc8/xbc <CJK> -<U777B> /x8e/xae/xc8/xbd <CJK> -<U78A6> /x8e/xae/xc8/xbe <CJK> -<U78AE> /x8e/xae/xc8/xbf <CJK> -<U78B8> /x8e/xae/xc8/xc0 <CJK> -<U78B1> /x8e/xae/xc8/xc4 <CJK> -<U78AF> /x8e/xae/xc8/xc5 <CJK> -<U7989> /x8e/xae/xc8/xc7 <CJK> -<U7987> /x8e/xae/xc8/xc8 <CJK> -<U7A29> /x8e/xae/xc8/xcb <CJK> -<U7A2A> /x8e/xae/xc8/xcd <CJK> -<U7A2D> /x8e/xae/xc8/xcf <CJK> -<U7A2C> /x8e/xae/xc8/xd0 <CJK> -<U7A32> /x8e/xae/xc8/xd2 <CJK> -<U7AEC> /x8e/xae/xc8/xd4 <CJK> -<U7AF0> /x8e/xae/xc8/xd5 <CJK> -<U7B81> /x8e/xae/xc8/xd6 <CJK> -<U7B9E> /x8e/xae/xc8/xd7 <CJK> -<U7B83> /x8e/xae/xc8/xd8 <CJK> -<U7B92> /x8e/xae/xc8/xda <CJK> -<U7BA3> /x8e/xae/xc8/xdc <CJK> -<U7B9F> /x8e/xae/xc8/xdd <CJK> -<U7B93> /x8e/xae/xc8/xde <CJK> -<U7B86> /x8e/xae/xc8/xe0 <CJK> -<U7CB8> /x8e/xae/xc8/xe1 <CJK> -<U7CB7> /x8e/xae/xc8/xe2 <CJK> -<U7DC8> /x8e/xae/xc8/xe8 <CJK> -<U7DB6> /x8e/xae/xc8/xe9 <CJK> -<U7DD1> /x8e/xae/xc8/xeb <CJK> -<U7DA8> /x8e/xae/xc8/xed <CJK> -<U7DAB> /x8e/xae/xc8/xee <CJK> -<U7DB3> /x8e/xae/xc8/xf0 <CJK> -<U7DCD> /x8e/xae/xc8/xf1 <CJK> -<U7DCF> /x8e/xae/xc8/xf3 <CJK> -<U7DA4> /x8e/xae/xc8/xf4 <CJK> -<U7F41> /x8e/xae/xc8/xf7 <CJK> -<U7F6F> /x8e/xae/xc8/xf8 <CJK> -<U7F71> /x8e/xae/xc8/xf9 <CJK> -<U8023> /x8e/xae/xc9/xa2 <CJK> -<U805B> /x8e/xae/xc9/xa3 <CJK> -<U8061> /x8e/xae/xc9/xa5 <CJK> -<U805F> /x8e/xae/xc9/xa6 <CJK> -<U8181> /x8e/xae/xc9/xa7 <CJK> -<U8184> /x8e/xae/xc9/xaa <CJK> -<U8213> /x8e/xae/xc9/xab <CJK> -<U824A> /x8e/xae/xc9/xad <CJK> -<U824C> /x8e/xae/xc9/xae <CJK> -<U84BD> /x8e/xae/xc9/xb2 <CJK> -<U8495> /x8e/xae/xc9/xb3 <CJK> -<U8492> /x8e/xae/xc9/xb5 <CJK> -<U84C3> /x8e/xae/xc9/xb6 <CJK> -<U8496> /x8e/xae/xc9/xb8 <CJK> -<U84A5> /x8e/xae/xc9/xb9 <CJK> -<U84B5> /x8e/xae/xc9/xba <CJK> -<U84B3> /x8e/xae/xc9/xbb <CJK> -<U84A3> /x8e/xae/xc9/xbc <CJK> -<U84E4> /x8e/xae/xc9/xbd <CJK> -<U84D8> /x8e/xae/xc9/xbe <CJK> -<U84D5> /x8e/xae/xc9/xbf <CJK> -<U84B7> /x8e/xae/xc9/xc1 <CJK> -<U84AD> /x8e/xae/xc9/xc2 <CJK> -<U84DA> /x8e/xae/xc9/xc3 <CJK> -<U8493> /x8e/xae/xc9/xc4 <CJK> -<U8736> /x8e/xae/xc9/xc5 <CJK> -<U873D> /x8e/xae/xc9/xc9 <CJK> -<U872B> /x8e/xae/xc9/xca <CJK> -<U8747> /x8e/xae/xc9/xcb <CJK> -<U8739> /x8e/xae/xc9/xcc <CJK> -<U8745> /x8e/xae/xc9/xce <CJK> -<U871D> /x8e/xae/xc9/xcf <CJK> -<U88FF> /x8e/xae/xc9/xd1 <CJK> -<U88EA> /x8e/xae/xc9/xd2 <CJK> -<U88F5> /x8e/xae/xc9/xd4 <CJK> -<U8900> /x8e/xae/xc9/xd6 <CJK> -<U88ED> /x8e/xae/xc9/xd7 <CJK> -<U8903> /x8e/xae/xc9/xd8 <CJK> -<U88E9> /x8e/xae/xc9/xd9 <CJK> -<U89EA> /x8e/xae/xc9/xdc <CJK> -<U8A9B> /x8e/xae/xc9/xde <CJK> -<U8A8E> /x8e/xae/xc9/xdf <CJK> -<U8AA2> /x8e/xae/xc9/xe0 <CJK> -<U8A9C> /x8e/xae/xc9/xe2 <CJK> -<U8A94> /x8e/xae/xc9/xe3 <CJK> -<U8A90> /x8e/xae/xc9/xe4 <CJK> -<U8AA9> /x8e/xae/xc9/xe5 <CJK> -<U8AAC> /x8e/xae/xc9/xe6 <CJK> -<U8A9F> /x8e/xae/xc9/xe8 <CJK> -<U8A9D> /x8e/xae/xc9/xeb <CJK> -<U8C67> /x8e/xae/xc9/xed <CJK> -<U8CD0> /x8e/xae/xc9/xf0 <CJK> -<U8CD6> /x8e/xae/xc9/xf1 <CJK> -<U8CD4> /x8e/xae/xc9/xf2 <CJK> -<U8D98> /x8e/xae/xc9/xf3 <CJK> -<U8D9A> /x8e/xae/xc9/xf4 <CJK> -<U8D97> /x8e/xae/xc9/xf5 <CJK> -<U8E0B> /x8e/xae/xc9/xf9 <CJK> -<U8E08> /x8e/xae/xc9/xfa <CJK> -<U8E01> /x8e/xae/xc9/xfb <CJK> -<U8EB4> /x8e/xae/xc9/xfc <CJK> -<U8EB3> /x8e/xae/xc9/xfd <CJK> -<U8FA1> /x8e/xae/xca/xa1 <CJK> -<U8FA2> /x8e/xae/xca/xa2 <CJK> -<U905A> /x8e/xae/xca/xa4 <CJK> -<U9061> /x8e/xae/xca/xa6 <CJK> -<U905F> /x8e/xae/xca/xa7 <CJK> -<U9125> /x8e/xae/xca/xaa <CJK> -<U917B> /x8e/xae/xca/xab <CJK> -<U9176> /x8e/xae/xca/xac <CJK> -<U917C> /x8e/xae/xca/xad <CJK> -<U9289> /x8e/xae/xca/xaf <CJK> -<U92F6> /x8e/xae/xca/xb0 <CJK> -<U92B1> /x8e/xae/xca/xb1 <CJK> -<U92AD> /x8e/xae/xca/xb2 <CJK> -<U9292> /x8e/xae/xca/xb3 <CJK> -<U9281> /x8e/xae/xca/xb4 <CJK> -<U9284> /x8e/xae/xca/xb5 <CJK> -<U92AE> /x8e/xae/xca/xb7 <CJK> -<U9290> /x8e/xae/xca/xb8 <CJK> -<U929E> /x8e/xae/xca/xb9 <CJK> -<U95A2> /x8e/xae/xca/xbd <CJK> -<U95A7> /x8e/xae/xca/xbe <CJK> -<U96A0> /x8e/xae/xca/xc4 <CJK> -<U969D> /x8e/xae/xca/xc5 <CJK> -<U969F> /x8e/xae/xca/xc6 <CJK> -<U96D0> /x8e/xae/xca/xc7 <CJK> -<U96D1> /x8e/xae/xca/xc9 <CJK> -<U9759> /x8e/xae/xca/xcc <CJK> -<U9764> /x8e/xae/xca/xce <CJK> -<U9819> /x8e/xae/xca/xd2 <CJK> -<U9814> /x8e/xae/xca/xd4 <CJK> -<U9815> /x8e/xae/xca/xd5 <CJK> -<U981A> /x8e/xae/xca/xd6 <CJK> -<U9906> /x8e/xae/xca/xdb <CJK> -<U98F8> /x8e/xae/xca/xdd <CJK> -<U9901> /x8e/xae/xca/xde <CJK> -<U99BE> /x8e/xae/xca/xe0 <CJK> -<U99BC> /x8e/xae/xca/xe1 <CJK> -<U99B7> /x8e/xae/xca/xe2 <CJK> -<U99B6> /x8e/xae/xca/xe3 <CJK> -<U99C0> /x8e/xae/xca/xe4 <CJK> -<U99B8> /x8e/xae/xca/xe6 <CJK> -<U99C4> /x8e/xae/xca/xea <CJK> -<U99BF> /x8e/xae/xca/xec <CJK> -<U9ADA> /x8e/xae/xca/xee <CJK> -<U9AE4> /x8e/xae/xca/xef <CJK> -<U9AE9> /x8e/xae/xca/xf0 <CJK> -<U9AE8> /x8e/xae/xca/xf1 <CJK> -<U9AEA> /x8e/xae/xca/xf2 <CJK> -<U9AE5> /x8e/xae/xca/xf3 <CJK> -<U9B26> /x8e/xae/xca/xf5 <CJK> -<U9B40> /x8e/xae/xca/xf8 <CJK> -<U9EBD> /x8e/xae/xcb/xa2 <CJK> -<U510E> /x8e/xae/xcb/xa7 <CJK> -<U50F7> /x8e/xae/xcb/xa9 <CJK> -<U50FC> /x8e/xae/xcb/xab <CJK> -<U510D> /x8e/xae/xcb/xac <CJK> -<U5101> /x8e/xae/xcb/xad <CJK> -<U51DA> /x8e/xae/xcb/xae <CJK> -<U51D9> /x8e/xae/xcb/xaf <CJK> -<U51DB> /x8e/xae/xcb/xb0 <CJK> -<U5286> /x8e/xae/xcb/xb1 <CJK> -<U528E> /x8e/xae/xcb/xb2 <CJK> -<U52EE> /x8e/xae/xcb/xb3 <CJK> -<U5333> /x8e/xae/xcb/xb4 <CJK> -<U53B1> /x8e/xae/xcb/xb5 <CJK> -<U5647> /x8e/xae/xcb/xb7 <CJK> -<U562D> /x8e/xae/xcb/xb8 <CJK> -<U5654> /x8e/xae/xcb/xb9 <CJK> -<U564B> /x8e/xae/xcb/xbb <CJK> -<U5652> /x8e/xae/xcb/xbc <CJK> -<U5631> /x8e/xae/xcb/xbd <CJK> -<U5644> /x8e/xae/xcb/xbe <CJK> -<U5656> /x8e/xae/xcb/xbf <CJK> -<U5650> /x8e/xae/xcb/xc0 <CJK> -<U562B> /x8e/xae/xcb/xc1 <CJK> -<U564D> /x8e/xae/xcb/xc3 <CJK> -<U5637> /x8e/xae/xcb/xc4 <CJK> -<U564F> /x8e/xae/xcb/xc5 <CJK> -<U58A2> /x8e/xae/xcb/xc6 <CJK> -<U58B7> /x8e/xae/xcb/xc7 <CJK> -<U58B2> /x8e/xae/xcb/xc9 <CJK> -<U58AA> /x8e/xae/xcb/xcb <CJK> -<U58B5> /x8e/xae/xcb/xcc <CJK> -<U58B0> /x8e/xae/xcb/xcd <CJK> -<U58B4> /x8e/xae/xcb/xcf <CJK> -<U58A4> /x8e/xae/xcb/xd0 <CJK> -<U58A7> /x8e/xae/xcb/xd1 <CJK> -<U5926> /x8e/xae/xcb/xd3 <CJK> -<U5AFE> /x8e/xae/xcb/xd4 <CJK> -<U5B04> /x8e/xae/xcb/xd6 <CJK> -<U5AFC> /x8e/xae/xcb/xd8 <CJK> -<U5B06> /x8e/xae/xcb/xda <CJK> -<U5B0A> /x8e/xae/xcb/xdb <CJK> -<U5AFA> /x8e/xae/xcb/xdc <CJK> -<U5B0D> /x8e/xae/xcb/xdd <CJK> -<U5B00> /x8e/xae/xcb/xde <CJK> -<U5B0E> /x8e/xae/xcb/xdf <CJK> -<U5D91> /x8e/xae/xcb/xe3 <CJK> -<U5D8F> /x8e/xae/xcb/xe5 <CJK> -<U5D90> /x8e/xae/xcb/xe6 <CJK> -<U5D98> /x8e/xae/xcb/xe7 <CJK> -<U5DA4> /x8e/xae/xcb/xe8 <CJK> -<U5D9B> /x8e/xae/xcb/xe9 <CJK> -<U5DA3> /x8e/xae/xcb/xea <CJK> -<U5D96> /x8e/xae/xcb/xeb <CJK> -<U5DE4> /x8e/xae/xcb/xec <CJK> -<U5E5A> /x8e/xae/xcb/xed <CJK> -<U5E5E> /x8e/xae/xcb/xf0 <CJK> -<U5FB8> /x8e/xae/xcb/xf2 <CJK> -<U6157> /x8e/xae/xcb/xf3 <CJK> -<U615C> /x8e/xae/xcb/xf4 <CJK> -<U61A6> /x8e/xae/xcb/xf5 <CJK> -<U6195> /x8e/xae/xcb/xf6 <CJK> -<U6188> /x8e/xae/xcb/xf7 <CJK> -<U61A3> /x8e/xae/xcb/xf9 <CJK> -<U618F> /x8e/xae/xcb/xfa <CJK> -<U6164> /x8e/xae/xcb/xfc <CJK> -<U6159> /x8e/xae/xcb/xfe <CJK> -<U6178> /x8e/xae/xcc/xa1 <CJK> -<U6185> /x8e/xae/xcc/xa3 <CJK> -<U6187> /x8e/xae/xcc/xa4 <CJK> -<U619E> /x8e/xae/xcc/xa5 <CJK> -<U6198> /x8e/xae/xcc/xa8 <CJK> -<U619C> /x8e/xae/xcc/xa9 <CJK> -<U622F> /x8e/xae/xcc/xac <CJK> -<U6480> /x8e/xae/xcc/xad <CJK> -<U649B> /x8e/xae/xcc/xae <CJK> -<U648E> /x8e/xae/xcc/xaf <CJK> -<U648D> /x8e/xae/xcc/xb0 <CJK> -<U6494> /x8e/xae/xcc/xb1 <CJK> -<U64C6> /x8e/xae/xcc/xb2 <CJK> -<U64A8> /x8e/xae/xcc/xb4 <CJK> -<U6483> /x8e/xae/xcc/xb5 <CJK> -<U64B9> /x8e/xae/xcc/xb7 <CJK> -<U6486> /x8e/xae/xcc/xb8 <CJK> -<U64B4> /x8e/xae/xcc/xb9 <CJK> -<U64AF> /x8e/xae/xcc/xba <CJK> -<U6491> /x8e/xae/xcc/xbb <CJK> -<U64AA> /x8e/xae/xcc/xbd <CJK> -<U64A1> /x8e/xae/xcc/xbe <CJK> -<U64A7> /x8e/xae/xcc/xbf <CJK> -<U66B6> /x8e/xae/xcc/xc0 <CJK> -<U66B3> /x8e/xae/xcc/xc1 <CJK> -<U66BC> /x8e/xae/xcc/xc3 <CJK> -<U66AC> /x8e/xae/xcc/xc4 <CJK> -<U66AD> /x8e/xae/xcc/xc6 <CJK> -<U6A0E> /x8e/xae/xcc/xc7 <CJK> -<U6A1C> /x8e/xae/xcc/xc9 <CJK> -<U6A1A> /x8e/xae/xcc/xca <CJK> -<U6A0B> /x8e/xae/xcc/xcd <CJK> -<U69EF> /x8e/xae/xcc/xcf <CJK> -<U6A0C> /x8e/xae/xcc/xd0 <CJK> -<U69F0> /x8e/xae/xcc/xd1 <CJK> -<U6A22> /x8e/xae/xcc/xd2 <CJK> -<U69D8> /x8e/xae/xcc/xd4 <CJK> -<U6A12> /x8e/xae/xcc/xd6 <CJK> -<U69FA> /x8e/xae/xcc/xd7 <CJK> -<U6A2A> /x8e/xae/xcc/xd9 <CJK> -<U6A10> /x8e/xae/xcc/xdb <CJK> -<U6A29> /x8e/xae/xcc/xde <CJK> -<U69F9> /x8e/xae/xcc/xdf <CJK> -<U69EA> /x8e/xae/xcc/xe0 <CJK> -<U6A2C> /x8e/xae/xcc/xe1 <CJK> -<U6A24> /x8e/xae/xcc/xe2 <CJK> -<U69E9> /x8e/xae/xcc/xe4 <CJK> -<U6B52> /x8e/xae/xcc/xe5 <CJK> -<U6B4F> /x8e/xae/xcc/xe6 <CJK> -<U6B53> /x8e/xae/xcc/xe7 <CJK> -<U6F10> /x8e/xae/xcc/xea <CJK> -<U6F65> /x8e/xae/xcc/xeb <CJK> -<U6F75> /x8e/xae/xcc/xec <CJK> -<U6FD0> /x8e/xae/xcc/xf1 <CJK> -<U6F5C> /x8e/xae/xcc/xf3 <CJK> -<U6F3D> /x8e/xae/xcc/xf4 <CJK> -<U6F71> /x8e/xae/xcc/xf5 <CJK> -<U6F91> /x8e/xae/xcc/xf7 <CJK> -<U6F0B> /x8e/xae/xcc/xf8 <CJK> -<U6F79> /x8e/xae/xcc/xf9 <CJK> -<U6F81> /x8e/xae/xcc/xfa <CJK> -<U6F8F> /x8e/xae/xcc/xfb <CJK> -<U6F59> /x8e/xae/xcc/xfd <CJK> -<U6F74> /x8e/xae/xcc/xfe <CJK> -<U71AE> /x8e/xae/xcd/xa2 <CJK> -<U71A3> /x8e/xae/xcd/xa4 <CJK> -<U71AD> /x8e/xae/xcd/xa5 <CJK> -<U71AB> /x8e/xae/xcd/xa8 <CJK> -<U71A6> /x8e/xae/xcd/xa9 <CJK> -<U71A2> /x8e/xae/xcd/xaa <CJK> -<U52F2> /x8e/xae/xcd/xac <CJK> -<U7257> /x8e/xae/xcd/xad <CJK> -<U7255> /x8e/xae/xcd/xae <CJK> -<U7299> /x8e/xae/xcd/xaf <CJK> -<U734B> /x8e/xae/xcd/xb0 <CJK> -<U747A> /x8e/xae/xcd/xb1 <CJK> -<U748C> /x8e/xae/xcd/xb5 <CJK> -<U7484> /x8e/xae/xcd/xb6 <CJK> -<U7482> /x8e/xae/xcd/xb9 <CJK> -<U7493> /x8e/xae/xcd/xba <CJK> -<U747B> /x8e/xae/xcd/xbb <CJK> -<U7509> /x8e/xae/xcd/xbd <CJK> -<U778A> /x8e/xae/xcd/xc4 <CJK> -<U7790> /x8e/xae/xcd/xc6 <CJK> -<U78C6> /x8e/xae/xcd/xc8 <CJK> -<U78D3> /x8e/xae/xcd/xc9 <CJK> -<U78C0> /x8e/xae/xcd/xca <CJK> -<U78D2> /x8e/xae/xcd/xcb <CJK> -<U78C7> /x8e/xae/xcd/xcc <CJK> -<U78C2> /x8e/xae/xcd/xcd <CJK> -<U799F> /x8e/xae/xcd/xcf <CJK> -<U799D> /x8e/xae/xcd/xd0 <CJK> -<U799E> /x8e/xae/xcd/xd1 <CJK> -<U7A41> /x8e/xae/xcd/xd3 <CJK> -<U7A38> /x8e/xae/xcd/xd5 <CJK> -<U7A3A> /x8e/xae/xcd/xd6 <CJK> -<U7A42> /x8e/xae/xcd/xd7 <CJK> -<U7A3E> /x8e/xae/xcd/xda <CJK> -<U7AB0> /x8e/xae/xcd/xdb <CJK> -<U7BAE> /x8e/xae/xcd/xdc <CJK> -<U7BB3> /x8e/xae/xcd/xdd <CJK> -<U7BBF> /x8e/xae/xcd/xe0 <CJK> -<U7BCD> /x8e/xae/xcd/xe3 <CJK> -<U7BB2> /x8e/xae/xcd/xe5 <CJK> -<U7CC4> /x8e/xae/xcd/xed <CJK> -<U7CCD> /x8e/xae/xcd/xee <CJK> -<U7CC2> /x8e/xae/xcd/xef <CJK> -<U7CC6> /x8e/xae/xcd/xf0 <CJK> -<U7CC3> /x8e/xae/xcd/xf1 <CJK> -<U7CC9> /x8e/xae/xcd/xf2 <CJK> -<U7CC7> /x8e/xae/xcd/xf3 <CJK> -<U7DF8> /x8e/xae/xcd/xf5 <CJK> -<U7DED> /x8e/xae/xcd/xf7 <CJK> -<U7DE2> /x8e/xae/xcd/xf8 <CJK> -<U7DDC> /x8e/xae/xcd/xfc <CJK> -<U7E02> /x8e/xae/xcd/xfd <CJK> -<U7E01> /x8e/xae/xcd/xfe <CJK> -<U7DD6> /x8e/xae/xce/xa2 <CJK> -<U7DE4> /x8e/xae/xce/xa4 <CJK> -<U7DFE> /x8e/xae/xce/xa5 <CJK> -<U7E00> /x8e/xae/xce/xa7 <CJK> -<U7DFC> /x8e/xae/xce/xa8 <CJK> -<U7DFD> /x8e/xae/xce/xa9 <CJK> -<U7DF5> /x8e/xae/xce/xab <CJK> -<U7DFF> /x8e/xae/xce/xac <CJK> -<U7DEB> /x8e/xae/xce/xae <CJK> -<U7DE5> /x8e/xae/xce/xaf <CJK> -<U7F78> /x8e/xae/xce/xb0 <CJK> -<U7FAE> /x8e/xae/xce/xb1 <CJK> -<U7FE7> /x8e/xae/xce/xb2 <CJK> -<U8065> /x8e/xae/xce/xb4 <CJK> -<U806A> /x8e/xae/xce/xb5 <CJK> -<U8066> /x8e/xae/xce/xb6 <CJK> -<U8068> /x8e/xae/xce/xb7 <CJK> -<U806B> /x8e/xae/xce/xb8 <CJK> -<U8194> /x8e/xae/xce/xb9 <CJK> -<U81A1> /x8e/xae/xce/xba <CJK> -<U8192> /x8e/xae/xce/xbb <CJK> -<U8196> /x8e/xae/xce/xbc <CJK> -<U8193> /x8e/xae/xce/xbd <CJK> -<U8501> /x8e/xae/xce/xc0 <CJK> -<U84F8> /x8e/xae/xce/xc2 <CJK> -<U84F5> /x8e/xae/xce/xc4 <CJK> -<U8504> /x8e/xae/xce/xc6 <CJK> -<U851B> /x8e/xae/xce/xcb <CJK> -<U8503> /x8e/xae/xce/xcc <CJK> -<U8533> /x8e/xae/xce/xcd <CJK> -<U8534> /x8e/xae/xce/xce <CJK> -<U84ED> /x8e/xae/xce/xcf <CJK> -<U8535> /x8e/xae/xce/xd2 <CJK> -<U8505> /x8e/xae/xce/xd4 <CJK> -<U877D> /x8e/xae/xce/xd9 <CJK> -<U8771> /x8e/xae/xce/xdd <CJK> -<U885C> /x8e/xae/xce/xdf <CJK> -<U88E6> /x8e/xae/xce/xe0 <CJK> -<U890F> /x8e/xae/xce/xe1 <CJK> -<U891B> /x8e/xae/xce/xe2 <CJK> -<U89A9> /x8e/xae/xce/xe4 <CJK> -<U89A5> /x8e/xae/xce/xe5 <CJK> -<U89EE> /x8e/xae/xce/xe6 <CJK> -<U8AB1> /x8e/xae/xce/xe7 <CJK> -<U8ACC> /x8e/xae/xce/xe9 <CJK> -<U8ACE> /x8e/xae/xce/xea <CJK> -<U8AB7> /x8e/xae/xce/xec <CJK> -<U8AB5> /x8e/xae/xce/xee <CJK> -<U8AE9> /x8e/xae/xce/xef <CJK> -<U8AB4> /x8e/xae/xce/xf0 <CJK> -<U8AB3> /x8e/xae/xce/xf2 <CJK> -<U8AC1> /x8e/xae/xce/xf3 <CJK> -<U8AAF> /x8e/xae/xce/xf4 <CJK> -<U8ACA> /x8e/xae/xce/xf5 <CJK> -<U8AD0> /x8e/xae/xce/xf6 <CJK> -<U8C8E> /x8e/xae/xce/xfa <CJK> -<U8CE9> /x8e/xae/xce/xfd <CJK> -<U8CDB> /x8e/xae/xce/xfe <CJK> -<U8CEB> /x8e/xae/xcf/xa2 <CJK> -<U8DA4> /x8e/xae/xcf/xa3 <CJK> -<U8DA2> /x8e/xae/xcf/xa5 <CJK> -<U8D9D> /x8e/xae/xcf/xa6 <CJK> -<U8E2A> /x8e/xae/xcf/xab <CJK> -<U8E28> /x8e/xae/xcf/xac <CJK> -<U8EB8> /x8e/xae/xcf/xaf <CJK> -<U8EB6> /x8e/xae/xcf/xb0 <CJK> -<U8EB9> /x8e/xae/xcf/xb1 <CJK> -<U8EB7> /x8e/xae/xcf/xb2 <CJK> -<U8F22> /x8e/xae/xcf/xb3 <CJK> -<U8F2B> /x8e/xae/xcf/xb4 <CJK> -<U8F27> /x8e/xae/xcf/xb5 <CJK> -<U8F19> /x8e/xae/xcf/xb6 <CJK> -<U8FA4> /x8e/xae/xcf/xb7 <CJK> -<U8FB3> /x8e/xae/xcf/xb9 <CJK> -<U9071> /x8e/xae/xcf/xbb <CJK> -<U906A> /x8e/xae/xcf/xbc <CJK> -<U9188> /x8e/xae/xcf/xbf <CJK> -<U918C> /x8e/xae/xcf/xc0 <CJK> -<U92BF> /x8e/xae/xcf/xc1 <CJK> -<U92B8> /x8e/xae/xcf/xc2 <CJK> -<U92BE> /x8e/xae/xcf/xc3 <CJK> -<U92DC> /x8e/xae/xcf/xc4 <CJK> -<U92E5> /x8e/xae/xcf/xc5 <CJK> -<U92D4> /x8e/xae/xcf/xc8 <CJK> -<U92D6> /x8e/xae/xcf/xc9 <CJK> -<U92DA> /x8e/xae/xcf/xcb <CJK> -<U92ED> /x8e/xae/xcf/xcc <CJK> -<U92F3> /x8e/xae/xcf/xcd <CJK> -<U92DB> /x8e/xae/xcf/xce <CJK> -<U92B9> /x8e/xae/xcf/xd0 <CJK> -<U92E2> /x8e/xae/xcf/xd1 <CJK> -<U92EB> /x8e/xae/xcf/xd2 <CJK> -<U95AF> /x8e/xae/xcf/xd3 <CJK> -<U95B2> /x8e/xae/xcf/xd5 <CJK> -<U95B3> /x8e/xae/xcf/xd6 <CJK> -<U96A3> /x8e/xae/xcf/xda <CJK> -<U96A5> /x8e/xae/xcf/xdb <CJK> -<U970A> /x8e/xae/xcf/xe0 <CJK> -<U9787> /x8e/xae/xcf/xe2 <CJK> -<U9789> /x8e/xae/xcf/xe3 <CJK> -<U978C> /x8e/xae/xcf/xe4 <CJK> -<U97EF> /x8e/xae/xcf/xe5 <CJK> -<U982A> /x8e/xae/xcf/xe6 <CJK> -<U9822> /x8e/xae/xcf/xe7 <CJK> -<U981F> /x8e/xae/xcf/xe9 <CJK> -<U9919> /x8e/xae/xcf/xeb <CJK> -<U99CA> /x8e/xae/xcf/xed <CJK> -<U99DA> /x8e/xae/xcf/xee <CJK> -<U99DE> /x8e/xae/xcf/xf2 <CJK> -<U99C8> /x8e/xae/xcf/xf3 <CJK> -<U99E0> /x8e/xae/xcf/xf4 <CJK> -<U9AB6> /x8e/xae/xcf/xf6 <CJK> -<U9AB5> /x8e/xae/xcf/xf7 <CJK> -<U9AF4> /x8e/xae/xcf/xf9 <CJK> -<U9B6B> /x8e/xae/xcf/xfb <CJK> -<U9B69> /x8e/xae/xcf/xfc <CJK> -<U9B72> /x8e/xae/xcf/xfd <CJK> -<U9B63> /x8e/xae/xcf/xfe <CJK> -<U9D0D> /x8e/xae/xd0/xa2 <CJK> -<U9D01> /x8e/xae/xd0/xa4 <CJK> -<U9D0C> /x8e/xae/xd0/xa5 <CJK> -<U9CF8> /x8e/xae/xd0/xa7 <CJK> -<U9CFE> /x8e/xae/xd0/xaa <CJK> -<U9D02> /x8e/xae/xd0/xab <CJK> -<U9E84> /x8e/xae/xd0/xac <CJK> -<U9EAB> /x8e/xae/xd0/xae <CJK> -<U9EAA> /x8e/xae/xd0/xaf <CJK> -<U511D> /x8e/xae/xd0/xb0 <CJK> -<U5116> /x8e/xae/xd0/xb1 <CJK> -<U512B> /x8e/xae/xd0/xb3 <CJK> -<U511E> /x8e/xae/xd0/xb4 <CJK> -<U511B> /x8e/xae/xd0/xb5 <CJK> -<U5290> /x8e/xae/xd0/xb6 <CJK> -<U5294> /x8e/xae/xd0/xb7 <CJK> -<U5314> /x8e/xae/xd0/xb8 <CJK> -<U5667> /x8e/xae/xd0/xbb <CJK> -<U567B> /x8e/xae/xd0/xbd <CJK> -<U565F> /x8e/xae/xd0/xbf <CJK> -<U5661> /x8e/xae/xd0/xc0 <CJK> -<U58C3> /x8e/xae/xd0/xc8 <CJK> -<U58CA> /x8e/xae/xd0/xc9 <CJK> -<U58BB> /x8e/xae/xd0/xca <CJK> -<U58C0> /x8e/xae/xd0/xcb <CJK> -<U58C4> /x8e/xae/xd0/xcc <CJK> -<U5901> /x8e/xae/xd0/xcd <CJK> -<U5B1F> /x8e/xae/xd0/xce <CJK> -<U5B18> /x8e/xae/xd0/xcf <CJK> -<U5B11> /x8e/xae/xd0/xd0 <CJK> -<U5B15> /x8e/xae/xd0/xd1 <CJK> -<U5B12> /x8e/xae/xd0/xd3 <CJK> -<U5B1C> /x8e/xae/xd0/xd4 <CJK> -<U5B22> /x8e/xae/xd0/xd6 <CJK> -<U5B79> /x8e/xae/xd0/xd7 <CJK> -<U5DA6> /x8e/xae/xd0/xd8 <CJK> -<U5DB3> /x8e/xae/xd0/xda <CJK> -<U5DAB> /x8e/xae/xd0/xdb <CJK> -<U5EEA> /x8e/xae/xd0/xdc <CJK> -<U5F5B> /x8e/xae/xd0/xde <CJK> -<U61B7> /x8e/xae/xd0/xe1 <CJK> -<U61CE> /x8e/xae/xd0/xe2 <CJK> -<U61B9> /x8e/xae/xd0/xe3 <CJK> -<U61BD> /x8e/xae/xd0/xe4 <CJK> -<U61CF> /x8e/xae/xd0/xe5 <CJK> -<U61C0> /x8e/xae/xd0/xe6 <CJK> -<U6199> /x8e/xae/xd0/xe7 <CJK> -<U6197> /x8e/xae/xd0/xe8 <CJK> -<U61BB> /x8e/xae/xd0/xea <CJK> -<U61D0> /x8e/xae/xd0/xeb <CJK> -<U61C4> /x8e/xae/xd0/xec <CJK> -<U6231> /x8e/xae/xd0/xed <CJK> -<U64D3> /x8e/xae/xd0/xef <CJK> -<U64C0> /x8e/xae/xd0/xf0 <CJK> -<U64DC> /x8e/xae/xd0/xf5 <CJK> -<U64D1> /x8e/xae/xd0/xf6 <CJK> -<U64C8> /x8e/xae/xd0/xf7 <CJK> -<U64D5> /x8e/xae/xd0/xf9 <CJK> -<U66C3> /x8e/xae/xd0/xfa <CJK> -<U66BF> /x8e/xae/xd0/xfd <CJK> -<U66C5> /x8e/xae/xd0/xfe <CJK> -<U66CD> /x8e/xae/xd1/xa2 <CJK> -<U66C1> /x8e/xae/xd1/xa3 <CJK> -<U6706> /x8e/xae/xd1/xa4 <CJK> -<U6724> /x8e/xae/xd1/xa6 <CJK> -<U6A63> /x8e/xae/xd1/xa7 <CJK> -<U6A42> /x8e/xae/xd1/xa8 <CJK> -<U6A52> /x8e/xae/xd1/xa9 <CJK> -<U6A43> /x8e/xae/xd1/xab <CJK> -<U6A33> /x8e/xae/xd1/xac <CJK> -<U6A6C> /x8e/xae/xd1/xae <CJK> -<U6A57> /x8e/xae/xd1/xaf <CJK> -<U6A4C> /x8e/xae/xd1/xb1 <CJK> -<U6A6E> /x8e/xae/xd1/xb2 <CJK> -<U6A37> /x8e/xae/xd1/xb8 <CJK> -<U6A71> /x8e/xae/xd1/xba <CJK> -<U6A4A> /x8e/xae/xd1/xbb <CJK> -<U6A36> /x8e/xae/xd1/xbc <CJK> -<U6A53> /x8e/xae/xd1/xbe <CJK> -<U6A45> /x8e/xae/xd1/xc0 <CJK> -<U6A70> /x8e/xae/xd1/xc1 <CJK> -<U6A5C> /x8e/xae/xd1/xc4 <CJK> -<U6B58> /x8e/xae/xd1/xc5 <CJK> -<U6B57> /x8e/xae/xd1/xc6 <CJK> -<U6FBB> /x8e/xae/xd1/xcd <CJK> -<U6FBE> /x8e/xae/xd1/xd0 <CJK> -<U6FB5> /x8e/xae/xd1/xd4 <CJK> -<U6FD3> /x8e/xae/xd1/xd5 <CJK> -<U6F9F> /x8e/xae/xd1/xd6 <CJK> -<U6FB7> /x8e/xae/xd1/xd8 <CJK> -<U6FF5> /x8e/xae/xd1/xd9 <CJK> -<U71B7> /x8e/xae/xd1/xda <CJK> -<U71BB> /x8e/xae/xd1/xdc <CJK> -<U71D1> /x8e/xae/xd1/xde <CJK> -<U71BA> /x8e/xae/xd1/xe0 <CJK> -<U71B6> /x8e/xae/xd1/xe2 <CJK> -<U71CC> /x8e/xae/xd1/xe3 <CJK> -<U71D3> /x8e/xae/xd1/xe6 <CJK> -<U749B> /x8e/xae/xd1/xe7 <CJK> -<U7496> /x8e/xae/xd1/xea <CJK> -<U74A2> /x8e/xae/xd1/xeb <CJK> -<U749D> /x8e/xae/xd1/xec <CJK> -<U750A> /x8e/xae/xd1/xed <CJK> -<U750E> /x8e/xae/xd1/xee <CJK> -<U7581> /x8e/xae/xd1/xf0 <CJK> -<U762C> /x8e/xae/xd1/xf1 <CJK> -<U7637> /x8e/xae/xd1/xf2 <CJK> -<U7636> /x8e/xae/xd1/xf3 <CJK> -<U763B> /x8e/xae/xd1/xf4 <CJK> -<U76A1> /x8e/xae/xd1/xf6 <CJK> -<U7798> /x8e/xae/xd1/xf9 <CJK> -<U7796> /x8e/xae/xd1/xfb <CJK> -<U78D6> /x8e/xae/xd2/xa1 <CJK> -<U78EB> /x8e/xae/xd2/xa2 <CJK> -<U78DC> /x8e/xae/xd2/xa4 <CJK> -<U79A5> /x8e/xae/xd2/xa6 <CJK> -<U79A9> /x8e/xae/xd2/xa7 <CJK> -<U9834> /x8e/xae/xd2/xa8 <CJK> -<U7A53> /x8e/xae/xd2/xa9 <CJK> -<U7A45> /x8e/xae/xd2/xaa <CJK> -<U7A4F> /x8e/xae/xd2/xac <CJK> -<U7ABD> /x8e/xae/xd2/xae <CJK> -<U7ABB> /x8e/xae/xd2/xaf <CJK> -<U7AF1> /x8e/xae/xd2/xb0 <CJK> -<U7BEC> /x8e/xae/xd2/xb3 <CJK> -<U7BED> /x8e/xae/xd2/xb4 <CJK> -<U7CD3> /x8e/xae/xd2/xb7 <CJK> -<U7CE1> /x8e/xae/xd2/xb9 <CJK> -<U7E19> /x8e/xae/xd2/xbb <CJK> -<U7E27> /x8e/xae/xd2/xbf <CJK> -<U7E26> /x8e/xae/xd2/xc0 <CJK> -<U806E> /x8e/xae/xd2/xc3 <CJK> -<U81AF> /x8e/xae/xd2/xc4 <CJK> -<U81AD> /x8e/xae/xd2/xc7 <CJK> -<U81AA> /x8e/xae/xd2/xc9 <CJK> -<U8218> /x8e/xae/xd2/xca <CJK> -<U856F> /x8e/xae/xd2/xcf <CJK> -<U854C> /x8e/xae/xd2/xd0 <CJK> -<U8542> /x8e/xae/xd2/xd2 <CJK> -<U855C> /x8e/xae/xd2/xd4 <CJK> -<U8570> /x8e/xae/xd2/xd5 <CJK> -<U855F> /x8e/xae/xd2/xd6 <CJK> -<U855A> /x8e/xae/xd2/xd8 <CJK> -<U854B> /x8e/xae/xd2/xd9 <CJK> -<U853F> /x8e/xae/xd2/xda <CJK> -<U878A> /x8e/xae/xd2/xdb <CJK> -<U878B> /x8e/xae/xd2/xdd <CJK> -<U87A1> /x8e/xae/xd2/xde <CJK> -<U878E> /x8e/xae/xd2/xdf <CJK> -<U8799> /x8e/xae/xd2/xe2 <CJK> -<U885E> /x8e/xae/xd2/xe3 <CJK> -<U885F> /x8e/xae/xd2/xe4 <CJK> -<U8924> /x8e/xae/xd2/xe5 <CJK> -<U89A7> /x8e/xae/xd2/xe6 <CJK> -<U8AEA> /x8e/xae/xd2/xe7 <CJK> -<U8AFD> /x8e/xae/xd2/xe8 <CJK> -<U8AF9> /x8e/xae/xd2/xe9 <CJK> -<U8AE3> /x8e/xae/xd2/xea <CJK> -<U8AE5> /x8e/xae/xd2/xeb <CJK> -<U8AEC> /x8e/xae/xd2/xee <CJK> -<U8CF2> /x8e/xae/xd2/xf3 <CJK> -<U8CEF> /x8e/xae/xd2/xf5 <CJK> -<U8DA6> /x8e/xae/xd2/xf7 <CJK> -<U8E3B> /x8e/xae/xd2/xfb <CJK> -<U8E43> /x8e/xae/xd2/xfc <CJK> -<U8E32> /x8e/xae/xd2/xfe <CJK> -<U8F31> /x8e/xae/xd3/xa1 <CJK> -<U8F30> /x8e/xae/xd3/xa2 <CJK> -<U8F2D> /x8e/xae/xd3/xa4 <CJK> -<U8F3C> /x8e/xae/xd3/xa5 <CJK> -<U8FA7> /x8e/xae/xd3/xa6 <CJK> -<U8FA5> /x8e/xae/xd3/xa7 <CJK> -<U9137> /x8e/xae/xd3/xab <CJK> -<U9195> /x8e/xae/xd3/xac <CJK> -<U918E> /x8e/xae/xd3/xad <CJK> -<U9196> /x8e/xae/xd3/xaf <CJK> -<U9345> /x8e/xae/xd3/xb1 <CJK> -<U930A> /x8e/xae/xd3/xb2 <CJK> -<U92FD> /x8e/xae/xd3/xb5 <CJK> -<U9317> /x8e/xae/xd3/xb6 <CJK> -<U931C> /x8e/xae/xd3/xb7 <CJK> -<U9307> /x8e/xae/xd3/xb8 <CJK> -<U9331> /x8e/xae/xd3/xb9 <CJK> -<U9332> /x8e/xae/xd3/xba <CJK> -<U932C> /x8e/xae/xd3/xbb <CJK> -<U9330> /x8e/xae/xd3/xbc <CJK> -<U9303> /x8e/xae/xd3/xbd <CJK> -<U9305> /x8e/xae/xd3/xbe <CJK> -<U95C2> /x8e/xae/xd3/xc0 <CJK> -<U95B8> /x8e/xae/xd3/xc2 <CJK> -<U95C1> /x8e/xae/xd3/xc4 <CJK> -<U96AB> /x8e/xae/xd3/xc8 <CJK> -<U96B7> /x8e/xae/xd3/xc9 <CJK> -<U9715> /x8e/xae/xd3/xcc <CJK> -<U9714> /x8e/xae/xd3/xcd <CJK> -<U970C> /x8e/xae/xd3/xd0 <CJK> -<U9717> /x8e/xae/xd3/xd1 <CJK> -<U9793> /x8e/xae/xd3/xd3 <CJK> -<U97D2> /x8e/xae/xd3/xd5 <CJK> -<U9836> /x8e/xae/xd3/xd8 <CJK> -<U9831> /x8e/xae/xd3/xd9 <CJK> -<U9833> /x8e/xae/xd3/xda <CJK> -<U983C> /x8e/xae/xd3/xdb <CJK> -<U982E> /x8e/xae/xd3/xdc <CJK> -<U983A> /x8e/xae/xd3/xdd <CJK> -<U983D> /x8e/xae/xd3/xdf <CJK> -<U98B5> /x8e/xae/xd3/xe1 <CJK> -<U9922> /x8e/xae/xd3/xe2 <CJK> -<U9923> /x8e/xae/xd3/xe3 <CJK> -<U9920> /x8e/xae/xd3/xe4 <CJK> -<U991C> /x8e/xae/xd3/xe5 <CJK> -<U991D> /x8e/xae/xd3/xe6 <CJK> -<U99A0> /x8e/xae/xd3/xe8 <CJK> -<U99EF> /x8e/xae/xd3/xea <CJK> -<U99E8> /x8e/xae/xd3/xeb <CJK> -<U99EB> /x8e/xae/xd3/xec <CJK> -<U99E1> /x8e/xae/xd3/xf0 <CJK> -<U99E6> /x8e/xae/xd3/xf1 <CJK> -<U9AF8> /x8e/xae/xd3/xf4 <CJK> -<U9AF5> /x8e/xae/xd3/xf5 <CJK> -<U9B83> /x8e/xae/xd3/xf8 <CJK> -<U9B94> /x8e/xae/xd3/xf9 <CJK> -<U9B84> /x8e/xae/xd3/xfa <CJK> -<U9B8B> /x8e/xae/xd3/xfc <CJK> -<U9B8F> /x8e/xae/xd3/xfd <CJK> -<U9B8C> /x8e/xae/xd4/xa1 <CJK> -<U9B89> /x8e/xae/xd4/xa3 <CJK> -<U9B8E> /x8e/xae/xd4/xa5 <CJK> -<U9D24> /x8e/xae/xd4/xa9 <CJK> -<U9D0F> /x8e/xae/xd4/xaa <CJK> -<U9D13> /x8e/xae/xd4/xac <CJK> -<U9D0A> /x8e/xae/xd4/xad <CJK> -<U9D2A> /x8e/xae/xd4/xb2 <CJK> -<U9D1A> /x8e/xae/xd4/xb3 <CJK> -<U9D27> /x8e/xae/xd4/xb5 <CJK> -<U9D16> /x8e/xae/xd4/xb6 <CJK> -<U9D21> /x8e/xae/xd4/xb7 <CJK> -<U9E85> /x8e/xae/xd4/xb9 <CJK> -<U9EAC> /x8e/xae/xd4/xba <CJK> -<U9EC6> /x8e/xae/xd4/xbb <CJK> -<U9EC5> /x8e/xae/xd4/xbc <CJK> -<U9ED7> /x8e/xae/xd4/xbd <CJK> -<U9F53> /x8e/xae/xd4/xbe <CJK> -<U5128> /x8e/xae/xd4/xc0 <CJK> -<U5127> /x8e/xae/xd4/xc1 <CJK> -<U51DF> /x8e/xae/xd4/xc2 <CJK> -<U5335> /x8e/xae/xd4/xc4 <CJK> -<U53B3> /x8e/xae/xd4/xc5 <CJK> -<U568A> /x8e/xae/xd4/xc7 <CJK> -<U567D> /x8e/xae/xd4/xc8 <CJK> -<U5689> /x8e/xae/xd4/xc9 <CJK> -<U58CD> /x8e/xae/xd4/xcb <CJK> -<U58D0> /x8e/xae/xd4/xcc <CJK> -<U5B2B> /x8e/xae/xd4/xce <CJK> -<U5B33> /x8e/xae/xd4/xcf <CJK> -<U5B29> /x8e/xae/xd4/xd0 <CJK> -<U5B35> /x8e/xae/xd4/xd1 <CJK> -<U5B31> /x8e/xae/xd4/xd2 <CJK> -<U5B37> /x8e/xae/xd4/xd3 <CJK> -<U5C36> /x8e/xae/xd4/xd4 <CJK> -<U5DBE> /x8e/xae/xd4/xd5 <CJK> -<U5DB9> /x8e/xae/xd4/xd7 <CJK> -<U5DBB> /x8e/xae/xd4/xd9 <CJK> -<U61E2> /x8e/xae/xd4/xdb <CJK> -<U61DB> /x8e/xae/xd4/xdc <CJK> -<U61DD> /x8e/xae/xd4/xdd <CJK> -<U61DC> /x8e/xae/xd4/xde <CJK> -<U61DA> /x8e/xae/xd4/xdf <CJK> -<U61D9> /x8e/xae/xd4/xe1 <CJK> -<U64DF> /x8e/xae/xd4/xe4 <CJK> -<U64E1> /x8e/xae/xd4/xe7 <CJK> -<U64EE> /x8e/xae/xd4/xe9 <CJK> -<U65B5> /x8e/xae/xd4/xeb <CJK> -<U66D4> /x8e/xae/xd4/xec <CJK> -<U66D5> /x8e/xae/xd4/xed <CJK> -<U66D0> /x8e/xae/xd4/xef <CJK> -<U66D1> /x8e/xae/xd4/xf0 <CJK> -<U66CE> /x8e/xae/xd4/xf1 <CJK> -<U66D7> /x8e/xae/xd4/xf2 <CJK> -<U6A7D> /x8e/xae/xd4/xf5 <CJK> -<U6A8A> /x8e/xae/xd4/xf6 <CJK> -<U6AA7> /x8e/xae/xd4/xf8 <CJK> -<U6A99> /x8e/xae/xd4/xfa <CJK> -<U6A82> /x8e/xae/xd4/xfb <CJK> -<U6A88> /x8e/xae/xd4/xfc <CJK> -<U6A86> /x8e/xae/xd5/xa1 <CJK> -<U6A98> /x8e/xae/xd5/xa3 <CJK> -<U6A9D> /x8e/xae/xd5/xa4 <CJK> -<U6A8F> /x8e/xae/xd5/xa7 <CJK> -<U6AAA> /x8e/xae/xd5/xa9 <CJK> -<U6B5D> /x8e/xae/xd5/xab <CJK> -<U6C0A> /x8e/xae/xd5/xad <CJK> -<U6FD7> /x8e/xae/xd5/xaf <CJK> -<U6FD6> /x8e/xae/xd5/xb0 <CJK> -<U6FE5> /x8e/xae/xd5/xb1 <CJK> -<U6FD9> /x8e/xae/xd5/xb5 <CJK> -<U6FDA> /x8e/xae/xd5/xb6 <CJK> -<U6FEA> /x8e/xae/xd5/xb7 <CJK> -<U6FF6> /x8e/xae/xd5/xb9 <CJK> -<U71E3> /x8e/xae/xd5/xbc <CJK> -<U71E9> /x8e/xae/xd5/xbe <CJK> -<U71EB> /x8e/xae/xd5/xc0 <CJK> -<U71EF> /x8e/xae/xd5/xc1 <CJK> -<U71F3> /x8e/xae/xd5/xc2 <CJK> -<U71EA> /x8e/xae/xd5/xc3 <CJK> -<U7371> /x8e/xae/xd5/xc9 <CJK> -<U74AE> /x8e/xae/xd5/xcb <CJK> -<U74B3> /x8e/xae/xd5/xcd <CJK> -<U74AC> /x8e/xae/xd5/xcf <CJK> -<U7583> /x8e/xae/xd5/xd2 <CJK> -<U7645> /x8e/xae/xd5/xd3 <CJK> -<U764E> /x8e/xae/xd5/xd4 <CJK> -<U7644> /x8e/xae/xd5/xd5 <CJK> -<U76A3> /x8e/xae/xd5/xd6 <CJK> -<U76A5> /x8e/xae/xd5/xd7 <CJK> -<U77A6> /x8e/xae/xd5/xd8 <CJK> -<U77A4> /x8e/xae/xd5/xd9 <CJK> -<U77A9> /x8e/xae/xd5/xdb <CJK> -<U77AF> /x8e/xae/xd5/xdc <CJK> -<U78F0> /x8e/xae/xd5/xe0 <CJK> -<U78F8> /x8e/xae/xd5/xe1 <CJK> -<U78F1> /x8e/xae/xd5/xe2 <CJK> -<U7A49> /x8e/xae/xd5/xe4 <CJK> -<U7AC2> /x8e/xae/xd5/xe8 <CJK> -<U7AF2> /x8e/xae/xd5/xe9 <CJK> -<U7AF3> /x8e/xae/xd5/xea <CJK> -<U7BFA> /x8e/xae/xd5/xeb <CJK> -<U7BF6> /x8e/xae/xd5/xed <CJK> -<U7BFC> /x8e/xae/xd5/xee <CJK> -<U7C18> /x8e/xae/xd5/xef <CJK> -<U7C08> /x8e/xae/xd5/xf0 <CJK> -<U7C12> /x8e/xae/xd5/xf1 <CJK> -<U7CDB> /x8e/xae/xd5/xf4 <CJK> -<U7CDA> /x8e/xae/xd5/xf5 <CJK> -<U7E2C> /x8e/xae/xd5/xf9 <CJK> -<U7E4D> /x8e/xae/xd5/xfa <CJK> -<U7F46> /x8e/xae/xd5/xfd <CJK> -<U7FF6> /x8e/xae/xd5/xfe <CJK> -<U802B> /x8e/xae/xd6/xa1 <CJK> -<U8074> /x8e/xae/xd6/xa2 <CJK> -<U81B8> /x8e/xae/xd6/xa3 <CJK> -<U81C8> /x8e/xae/xd6/xa4 <CJK> -<U8592> /x8e/xae/xd6/xa8 <CJK> -<U8593> /x8e/xae/xd6/xa9 <CJK> -<U857F> /x8e/xae/xd6/xab <CJK> -<U85AB> /x8e/xae/xd6/xac <CJK> -<U8597> /x8e/xae/xd6/xad <CJK> -<U85AC> /x8e/xae/xd6/xb0 <CJK> -<U87CE> /x8e/xae/xd6/xb4 <CJK> -<U87CD> /x8e/xae/xd6/xb6 <CJK> -<U87C1> /x8e/xae/xd6/xb9 <CJK> -<U87B1> /x8e/xae/xd6/xba <CJK> -<U87C7> /x8e/xae/xd6/xbb <CJK> -<U8940> /x8e/xae/xd6/xbd <CJK> -<U893F> /x8e/xae/xd6/xbf <CJK> -<U8939> /x8e/xae/xd6/xc0 <CJK> -<U8943> /x8e/xae/xd6/xc2 <CJK> -<U89AB> /x8e/xae/xd6/xc6 <CJK> -<U8B1F> /x8e/xae/xd6/xc8 <CJK> -<U8B09> /x8e/xae/xd6/xc9 <CJK> -<U8B0C> /x8e/xae/xd6/xca <CJK> -<U8C40> /x8e/xae/xd6/xcd <CJK> -<U8C96> /x8e/xae/xd6/xcf <CJK> -<U8CF6> /x8e/xae/xd6/xd1 <CJK> -<U8CF7> /x8e/xae/xd6/xd2 <CJK> -<U8E46> /x8e/xae/xd6/xd4 <CJK> -<U8E4F> /x8e/xae/xd6/xd5 <CJK> -<U8F3D> /x8e/xae/xd6/xd9 <CJK> -<U8F41> /x8e/xae/xd6/xda <CJK> -<U9366> /x8e/xae/xd6/xdb <CJK> -<U9378> /x8e/xae/xd6/xdc <CJK> -<U935D> /x8e/xae/xd6/xdd <CJK> -<U9369> /x8e/xae/xd6/xde <CJK> -<U9374> /x8e/xae/xd6/xdf <CJK> -<U937D> /x8e/xae/xd6/xe0 <CJK> -<U936E> /x8e/xae/xd6/xe1 <CJK> -<U9372> /x8e/xae/xd6/xe2 <CJK> -<U9373> /x8e/xae/xd6/xe3 <CJK> -<U9362> /x8e/xae/xd6/xe4 <CJK> -<U9348> /x8e/xae/xd6/xe5 <CJK> -<U9353> /x8e/xae/xd6/xe6 <CJK> -<U935F> /x8e/xae/xd6/xe7 <CJK> -<U9368> /x8e/xae/xd6/xe8 <CJK> -<U937F> /x8e/xae/xd6/xea <CJK> -<U936B> /x8e/xae/xd6/xeb <CJK> -<U95C4> /x8e/xae/xd6/xed <CJK> -<U96AF> /x8e/xae/xd6/xef <CJK> -<U96AD> /x8e/xae/xd6/xf0 <CJK> -<U96B2> /x8e/xae/xd6/xf1 <CJK> -<U971A> /x8e/xae/xd6/xf4 <CJK> -<U971B> /x8e/xae/xd6/xf5 <CJK> -<U979B> /x8e/xae/xd6/xfa <CJK> -<U979F> /x8e/xae/xd6/xfb <CJK> -<U9840> /x8e/xae/xd7/xa6 <CJK> -<U9847> /x8e/xae/xd7/xa8 <CJK> -<U98B7> /x8e/xae/xd7/xaa <CJK> -<U99A2> /x8e/xae/xd7/xb0 <CJK> -<U9A00> /x8e/xae/xd7/xb3 <CJK> -<U99F3> /x8e/xae/xd7/xb4 <CJK> -<U99F5> /x8e/xae/xd7/xb7 <CJK> -<U9ABD> /x8e/xae/xd7/xba <CJK> -<U9B00> /x8e/xae/xd7/xbb <CJK> -<U9B02> /x8e/xae/xd7/xbc <CJK> -<U9B34> /x8e/xae/xd7/xbe <CJK> -<U9B49> /x8e/xae/xd7/xbf <CJK> -<U9B9F> /x8e/xae/xd7/xc0 <CJK> -<U9BA3> /x8e/xae/xd7/xc2 <CJK> -<U9BCD> /x8e/xae/xd7/xc3 <CJK> -<U9B99> /x8e/xae/xd7/xc4 <CJK> -<U9B9D> /x8e/xae/xd7/xc5 <CJK> -<U9D39> /x8e/xae/xd7/xc8 <CJK> -<U9D44> /x8e/xae/xd7/xca <CJK> -<U9D35> /x8e/xae/xd7/xcd <CJK> -<U9EAF> /x8e/xae/xd7/xd0 <CJK> -<U512F> /x8e/xae/xd7/xd2 <CJK> -<U9F8E> /x8e/xae/xd7/xd5 <CJK> -<U569F> /x8e/xae/xd7/xd7 <CJK> -<U569B> /x8e/xae/xd7/xd8 <CJK> -<U569E> /x8e/xae/xd7/xd9 <CJK> -<U5696> /x8e/xae/xd7/xda <CJK> -<U5694> /x8e/xae/xd7/xdb <CJK> -<U56A0> /x8e/xae/xd7/xdc <CJK> -<U5B3B> /x8e/xae/xd7/xde <CJK> -<U5B3A> /x8e/xae/xd7/xe1 <CJK> -<U5DC1> /x8e/xae/xd7/xe2 <CJK> -<U5F4D> /x8e/xae/xd7/xe3 <CJK> -<U5F5D> /x8e/xae/xd7/xe4 <CJK> -<U61F3> /x8e/xae/xd7/xe5 <CJK> -<U64F6> /x8e/xae/xd7/xea <CJK> -<U64E5> /x8e/xae/xd7/xeb <CJK> -<U64EA> /x8e/xae/xd7/xec <CJK> -<U64E7> /x8e/xae/xd7/xed <CJK> -<U6505> /x8e/xae/xd7/xee <CJK> -<U64F9> /x8e/xae/xd7/xf0 <CJK> -<U6AAB> /x8e/xae/xd7/xf4 <CJK> -<U6AED> /x8e/xae/xd7/xf5 <CJK> -<U6AB2> /x8e/xae/xd7/xf6 <CJK> -<U6AB0> /x8e/xae/xd7/xf7 <CJK> -<U6AB5> /x8e/xae/xd7/xf8 <CJK> -<U6ABE> /x8e/xae/xd7/xf9 <CJK> -<U6AC1> /x8e/xae/xd7/xfa <CJK> -<U6AC8> /x8e/xae/xd7/xfb <CJK> -<U6AC0> /x8e/xae/xd7/xfd <CJK> -<U6ABC> /x8e/xae/xd7/xfe <CJK> -<U6AB1> /x8e/xae/xd8/xa1 <CJK> -<U6AC4> /x8e/xae/xd8/xa2 <CJK> -<U6ABF> /x8e/xae/xd8/xa3 <CJK> -<U7008> /x8e/xae/xd8/xa6 <CJK> -<U7003> /x8e/xae/xd8/xa7 <CJK> -<U6FFD> /x8e/xae/xd8/xa8 <CJK> -<U7010> /x8e/xae/xd8/xa9 <CJK> -<U7002> /x8e/xae/xd8/xaa <CJK> -<U7013> /x8e/xae/xd8/xab <CJK> -<U71FA> /x8e/xae/xd8/xad <CJK> -<U7200> /x8e/xae/xd8/xae <CJK> -<U74B9> /x8e/xae/xd8/xaf <CJK> -<U74BC> /x8e/xae/xd8/xb0 <CJK> -<U765B> /x8e/xae/xd8/xb2 <CJK> -<U7651> /x8e/xae/xd8/xb3 <CJK> -<U764F> /x8e/xae/xd8/xb4 <CJK> -<U76EB> /x8e/xae/xd8/xb5 <CJK> -<U77B8> /x8e/xae/xd8/xb6 <CJK> -<U77B9> /x8e/xae/xd8/xb8 <CJK> -<U77C1> /x8e/xae/xd8/xb9 <CJK> -<U77C0> /x8e/xae/xd8/xba <CJK> -<U77BE> /x8e/xae/xd8/xbb <CJK> -<U790B> /x8e/xae/xd8/xbc <CJK> -<U7907> /x8e/xae/xd8/xbe <CJK> -<U790A> /x8e/xae/xd8/xbf <CJK> -<U7908> /x8e/xae/xd8/xc0 <CJK> -<U790D> /x8e/xae/xd8/xc2 <CJK> -<U7906> /x8e/xae/xd8/xc3 <CJK> -<U7915> /x8e/xae/xd8/xc4 <CJK> -<U79AF> /x8e/xae/xd8/xc5 <CJK> -<U7AF5> /x8e/xae/xd8/xc9 <CJK> -<U7C2E> /x8e/xae/xd8/xcc <CJK> -<U7C1B> /x8e/xae/xd8/xce <CJK> -<U7C1A> /x8e/xae/xd8/xd0 <CJK> -<U7C24> /x8e/xae/xd8/xd1 <CJK> -<U7CE6> /x8e/xae/xd8/xd4 <CJK> -<U7CE3> /x8e/xae/xd8/xd5 <CJK> -<U7E5D> /x8e/xae/xd8/xd8 <CJK> -<U7E4F> /x8e/xae/xd8/xd9 <CJK> -<U7E66> /x8e/xae/xd8/xda <CJK> -<U7E5B> /x8e/xae/xd8/xdb <CJK> -<U7F47> /x8e/xae/xd8/xdc <CJK> -<U7FB4> /x8e/xae/xd8/xdd <CJK> -<U7FFA> /x8e/xae/xd8/xe1 <CJK> -<U802E> /x8e/xae/xd8/xe2 <CJK> -<U81CE> /x8e/xae/xd8/xe5 <CJK> -<U8219> /x8e/xae/xd8/xe8 <CJK> -<U85CC> /x8e/xae/xd8/xeb <CJK> -<U85B2> /x8e/xae/xd8/xec <CJK> -<U85BB> /x8e/xae/xd8/xee <CJK> -<U85C1> /x8e/xae/xd8/xef <CJK> -<U87E9> /x8e/xae/xd8/xf3 <CJK> -<U87EE> /x8e/xae/xd8/xf4 <CJK> -<U87F0> /x8e/xae/xd8/xf5 <CJK> -<U87D6> /x8e/xae/xd8/xf6 <CJK> -<U880E> /x8e/xae/xd8/xf7 <CJK> -<U87DA> /x8e/xae/xd8/xf8 <CJK> -<U8948> /x8e/xae/xd8/xf9 <CJK> -<U894A> /x8e/xae/xd8/xfa <CJK> -<U894E> /x8e/xae/xd8/xfb <CJK> -<U894D> /x8e/xae/xd8/xfc <CJK> -<U89B1> /x8e/xae/xd8/xfd <CJK> -<U89B0> /x8e/xae/xd8/xfe <CJK> -<U89B3> /x8e/xae/xd9/xa1 <CJK> -<U8B38> /x8e/xae/xd9/xa3 <CJK> -<U8B32> /x8e/xae/xd9/xa4 <CJK> -<U8B2D> /x8e/xae/xd9/xa6 <CJK> -<U8B34> /x8e/xae/xd9/xa8 <CJK> -<U8B29> /x8e/xae/xd9/xaa <CJK> -<U8C74> /x8e/xae/xd9/xab <CJK> -<U8D03> /x8e/xae/xd9/xae <CJK> -<U8DA9> /x8e/xae/xd9/xb1 <CJK> -<U8E58> /x8e/xae/xd9/xb2 <CJK> -<U8EBF> /x8e/xae/xd9/xb5 <CJK> -<U8EC1> /x8e/xae/xd9/xb6 <CJK> -<U8F4A> /x8e/xae/xd9/xb7 <CJK> -<U8FAC> /x8e/xae/xd9/xb8 <CJK> -<U9089> /x8e/xae/xd9/xba <CJK> -<U913D> /x8e/xae/xd9/xbb <CJK> -<U913C> /x8e/xae/xd9/xbc <CJK> -<U91A9> /x8e/xae/xd9/xbd <CJK> -<U93A0> /x8e/xae/xd9/xbe <CJK> -<U9390> /x8e/xae/xd9/xc0 <CJK> -<U9393> /x8e/xae/xd9/xc2 <CJK> -<U938B> /x8e/xae/xd9/xc3 <CJK> -<U93AD> /x8e/xae/xd9/xc4 <CJK> -<U93BB> /x8e/xae/xd9/xc5 <CJK> -<U93B8> /x8e/xae/xd9/xc6 <CJK> -<U939C> /x8e/xae/xd9/xc9 <CJK> -<U95D8> /x8e/xae/xd9/xca <CJK> -<U95D7> /x8e/xae/xd9/xcb <CJK> -<U975D> /x8e/xae/xd9/xcf <CJK> -<U97A9> /x8e/xae/xd9/xd0 <CJK> -<U97DA> /x8e/xae/xd9/xd1 <CJK> -<U9854> /x8e/xae/xd9/xd6 <CJK> -<U9855> /x8e/xae/xd9/xd8 <CJK> -<U984B> /x8e/xae/xd9/xd9 <CJK> -<U983F> /x8e/xae/xd9/xdb <CJK> -<U98B9> /x8e/xae/xd9/xdc <CJK> -<U9938> /x8e/xae/xd9/xe1 <CJK> -<U9936> /x8e/xae/xd9/xe2 <CJK> -<U9940> /x8e/xae/xd9/xe3 <CJK> -<U993B> /x8e/xae/xd9/xe5 <CJK> -<U9939> /x8e/xae/xd9/xe6 <CJK> -<U99A4> /x8e/xae/xd9/xe7 <CJK> -<U9A08> /x8e/xae/xd9/xea <CJK> -<U9A0C> /x8e/xae/xd9/xeb <CJK> -<U9A10> /x8e/xae/xd9/xed <CJK> -<U9B07> /x8e/xae/xd9/xef <CJK> -<U9BD2> /x8e/xae/xd9/xf1 <CJK> -<U9BC2> /x8e/xae/xd9/xf3 <CJK> -<U9BBB> /x8e/xae/xd9/xf4 <CJK> -<U9BCC> /x8e/xae/xd9/xf5 <CJK> -<U9BCB> /x8e/xae/xd9/xf6 <CJK> -<U9D4D> /x8e/xae/xd9/xf9 <CJK> -<U9D63> /x8e/xae/xd9/xfa <CJK> -<U9D4E> /x8e/xae/xd9/xfb <CJK> -<U9D50> /x8e/xae/xd9/xfd <CJK> -<U9D55> /x8e/xae/xd9/xfe <CJK> -<U9D5E> /x8e/xae/xda/xa2 <CJK> -<U9E90> /x8e/xae/xda/xa4 <CJK> -<U9EB2> /x8e/xae/xda/xa5 <CJK> -<U9EB1> /x8e/xae/xda/xa6 <CJK> -<U9ECA> /x8e/xae/xda/xa8 <CJK> -<U9F02> /x8e/xae/xda/xa9 <CJK> -<U9F27> /x8e/xae/xda/xaa <CJK> -<U9F26> /x8e/xae/xda/xab <CJK> -<U56AF> /x8e/xae/xda/xad <CJK> -<U58E0> /x8e/xae/xda/xae <CJK> -<U58DC> /x8e/xae/xda/xaf <CJK> -<U5B39> /x8e/xae/xda/xb1 <CJK> -<U5B7C> /x8e/xae/xda/xb4 <CJK> -<U5BF3> /x8e/xae/xda/xb5 <CJK> -<U5C6B> /x8e/xae/xda/xb8 <CJK> -<U5DC4> /x8e/xae/xda/xb9 <CJK> -<U650B> /x8e/xae/xda/xba <CJK> -<U6508> /x8e/xae/xda/xbb <CJK> -<U650A> /x8e/xae/xda/xbc <CJK> -<U65DC> /x8e/xae/xda/xbf <CJK> -<U66E1> /x8e/xae/xda/xc2 <CJK> -<U66DF> /x8e/xae/xda/xc3 <CJK> -<U6ACE> /x8e/xae/xda/xc4 <CJK> -<U6AD4> /x8e/xae/xda/xc5 <CJK> -<U6AE3> /x8e/xae/xda/xc6 <CJK> -<U6AD7> /x8e/xae/xda/xc7 <CJK> -<U6AE2> /x8e/xae/xda/xc8 <CJK> -<U6AD8> /x8e/xae/xda/xcd <CJK> -<U6AD5> /x8e/xae/xda/xce <CJK> -<U6AD2> /x8e/xae/xda/xcf <CJK> -<U701E> /x8e/xae/xda/xd2 <CJK> -<U702C> /x8e/xae/xda/xd3 <CJK> -<U7025> /x8e/xae/xda/xd4 <CJK> -<U6FF3> /x8e/xae/xda/xd5 <CJK> -<U7204> /x8e/xae/xda/xd6 <CJK> -<U7208> /x8e/xae/xda/xd7 <CJK> -<U7215> /x8e/xae/xda/xd8 <CJK> -<U74C4> /x8e/xae/xda/xda <CJK> -<U74C9> /x8e/xae/xda/xdb <CJK> -<U74C7> /x8e/xae/xda/xdc <CJK> -<U74C8> /x8e/xae/xda/xdd <CJK> -<U76A9> /x8e/xae/xda/xde <CJK> -<U77C6> /x8e/xae/xda/xdf <CJK> -<U77C5> /x8e/xae/xda/xe0 <CJK> -<U7918> /x8e/xae/xda/xe1 <CJK> -<U791A> /x8e/xae/xda/xe2 <CJK> -<U7920> /x8e/xae/xda/xe3 <CJK> -<U7A66> /x8e/xae/xda/xe5 <CJK> -<U7A64> /x8e/xae/xda/xe6 <CJK> -<U7A6A> /x8e/xae/xda/xe7 <CJK> -<U7C35> /x8e/xae/xda/xee <CJK> -<U7C34> /x8e/xae/xda/xef <CJK> -<U7E6C> /x8e/xae/xda/xf2 <CJK> -<U7E6E> /x8e/xae/xda/xf4 <CJK> -<U7E71> /x8e/xae/xda/xf5 <CJK> -<U81D4> /x8e/xae/xda/xf7 <CJK> -<U81D6> /x8e/xae/xda/xf8 <CJK> -<U821A> /x8e/xae/xda/xf9 <CJK> -<U8262> /x8e/xae/xda/xfa <CJK> -<U8265> /x8e/xae/xda/xfb <CJK> -<U8276> /x8e/xae/xda/xfc <CJK> -<U85DB> /x8e/xae/xda/xfd <CJK> -<U85D6> /x8e/xae/xda/xfe <CJK> -<U85E7> /x8e/xae/xdb/xa2 <CJK> -<U85F4> /x8e/xae/xdb/xa5 <CJK> -<U87FD> /x8e/xae/xdb/xa7 <CJK> -<U87D5> /x8e/xae/xdb/xa8 <CJK> -<U8807> /x8e/xae/xdb/xa9 <CJK> -<U880F> /x8e/xae/xdb/xab <CJK> -<U87F8> /x8e/xae/xdb/xac <CJK> -<U8987> /x8e/xae/xdb/xaf <CJK> -<U89B5> /x8e/xae/xdb/xb1 <CJK> -<U89F5> /x8e/xae/xdb/xb2 <CJK> -<U8B3F> /x8e/xae/xdb/xb4 <CJK> -<U8B43> /x8e/xae/xdb/xb5 <CJK> -<U8B4C> /x8e/xae/xdb/xb6 <CJK> -<U8D0B> /x8e/xae/xdb/xb8 <CJK> -<U8E6B> /x8e/xae/xdb/xb9 <CJK> -<U8E68> /x8e/xae/xdb/xba <CJK> -<U8E70> /x8e/xae/xdb/xbb <CJK> -<U8E75> /x8e/xae/xdb/xbc <CJK> -<U8E77> /x8e/xae/xdb/xbd <CJK> -<U8EC3> /x8e/xae/xdb/xbf <CJK> -<U93E9> /x8e/xae/xdb/xc1 <CJK> -<U93EA> /x8e/xae/xdb/xc2 <CJK> -<U93CB> /x8e/xae/xdb/xc3 <CJK> -<U93C5> /x8e/xae/xdb/xc4 <CJK> -<U93C6> /x8e/xae/xdb/xc5 <CJK> -<U93ED> /x8e/xae/xdb/xc7 <CJK> -<U93D3> /x8e/xae/xdb/xc8 <CJK> -<U93E5> /x8e/xae/xdb/xca <CJK> -<U93DB> /x8e/xae/xdb/xcd <CJK> -<U93EB> /x8e/xae/xdb/xce <CJK> -<U93E0> /x8e/xae/xdb/xcf <CJK> -<U93C1> /x8e/xae/xdb/xd0 <CJK> -<U95DD> /x8e/xae/xdb/xd3 <CJK> -<U97B2> /x8e/xae/xdb/xdd <CJK> -<U97B4> /x8e/xae/xdb/xde <CJK> -<U97B1> /x8e/xae/xdb/xdf <CJK> -<U97B5> /x8e/xae/xdb/xe0 <CJK> -<U97F2> /x8e/xae/xdb/xe1 <CJK> -<U9856> /x8e/xae/xdb/xe5 <CJK> -<U9944> /x8e/xae/xdb/xe9 <CJK> -<U9A26> /x8e/xae/xdb/xeb <CJK> -<U9A1F> /x8e/xae/xdb/xec <CJK> -<U9A18> /x8e/xae/xdb/xed <CJK> -<U9A21> /x8e/xae/xdb/xee <CJK> -<U9A17> /x8e/xae/xdb/xef <CJK> -<U9B09> /x8e/xae/xdb/xf1 <CJK> -<U9BC5> /x8e/xae/xdb/xf4 <CJK> -<U9BDF> /x8e/xae/xdb/xf5 <CJK> -<U9BE3> /x8e/xae/xdb/xf7 <CJK> -<U9BE9> /x8e/xae/xdb/xf9 <CJK> -<U9BEE> /x8e/xae/xdb/xfa <CJK> -<U9D66> /x8e/xae/xdb/xfd <CJK> -<U9D7A> /x8e/xae/xdb/xfe <CJK> -<U9D6E> /x8e/xae/xdc/xa2 <CJK> -<U9D91> /x8e/xae/xdc/xa3 <CJK> -<U9D83> /x8e/xae/xdc/xa4 <CJK> -<U9D76> /x8e/xae/xdc/xa5 <CJK> -<U9D7E> /x8e/xae/xdc/xa6 <CJK> -<U9D6D> /x8e/xae/xdc/xa7 <CJK> -<U9E95> /x8e/xae/xdc/xa9 <CJK> -<U9EE3> /x8e/xae/xdc/xaa <CJK> -<U9F03> /x8e/xae/xdc/xad <CJK> -<U9F04> /x8e/xae/xdc/xae <CJK> -<U9F17> /x8e/xae/xdc/xb0 <CJK> -<U5136> /x8e/xae/xdc/xb2 <CJK> -<U5336> /x8e/xae/xdc/xb4 <CJK> -<U5B42> /x8e/xae/xdc/xb6 <CJK> -<U5B44> /x8e/xae/xdc/xb9 <CJK> -<U5B46> /x8e/xae/xdc/xba <CJK> -<U5B7E> /x8e/xae/xdc/xbb <CJK> -<U5DCA> /x8e/xae/xdc/xbc <CJK> -<U5DC8> /x8e/xae/xdc/xbd <CJK> -<U5DCC> /x8e/xae/xdc/xbe <CJK> -<U5EF0> /x8e/xae/xdc/xbf <CJK> -<U6585> /x8e/xae/xdc/xc1 <CJK> -<U66E5> /x8e/xae/xdc/xc2 <CJK> -<U66E7> /x8e/xae/xdc/xc3 <CJK> -<U6AF4> /x8e/xae/xdc/xc7 <CJK> -<U6AE9> /x8e/xae/xdc/xc9 <CJK> -<U703D> /x8e/xae/xdc/xcf <CJK> -<U7036> /x8e/xae/xdc/xd1 <CJK> -<U7216> /x8e/xae/xdc/xd3 <CJK> -<U7212> /x8e/xae/xdc/xd5 <CJK> -<U720F> /x8e/xae/xdc/xd6 <CJK> -<U7217> /x8e/xae/xdc/xd7 <CJK> -<U7211> /x8e/xae/xdc/xd8 <CJK> -<U720B> /x8e/xae/xdc/xd9 <CJK> -<U74CD> /x8e/xae/xdc/xdc <CJK> -<U74D0> /x8e/xae/xdc/xdd <CJK> -<U74CC> /x8e/xae/xdc/xde <CJK> -<U74CE> /x8e/xae/xdc/xdf <CJK> -<U74D1> /x8e/xae/xdc/xe0 <CJK> -<U7589> /x8e/xae/xdc/xe2 <CJK> -<U7A6F> /x8e/xae/xdc/xe4 <CJK> -<U7C4B> /x8e/xae/xdc/xe5 <CJK> -<U7C44> /x8e/xae/xdc/xe6 <CJK> -<U7E7F> /x8e/xae/xdc/xec <CJK> -<U8B71> /x8e/xae/xdc/xed <CJK> -<U802F> /x8e/xae/xdc/xef <CJK> -<U807A> /x8e/xae/xdc/xf0 <CJK> -<U807B> /x8e/xae/xdc/xf1 <CJK> -<U807C> /x8e/xae/xdc/xf2 <CJK> -<U85FC> /x8e/xae/xdc/xf6 <CJK> -<U8610> /x8e/xae/xdc/xf7 <CJK> -<U8602> /x8e/xae/xdc/xf8 <CJK> -<U85EE> /x8e/xae/xdc/xfb <CJK> -<U8603> /x8e/xae/xdc/xfc <CJK> -<U860D> /x8e/xae/xdc/xfe <CJK> -<U8613> /x8e/xae/xdd/xa1 <CJK> -<U8608> /x8e/xae/xdd/xa2 <CJK> -<U860F> /x8e/xae/xdd/xa3 <CJK> -<U8818> /x8e/xae/xdd/xa4 <CJK> -<U8812> /x8e/xae/xdd/xa5 <CJK> -<U8967> /x8e/xae/xdd/xa8 <CJK> -<U8965> /x8e/xae/xdd/xa9 <CJK> -<U89BB> /x8e/xae/xdd/xaa <CJK> -<U8B69> /x8e/xae/xdd/xab <CJK> -<U8B62> /x8e/xae/xdd/xac <CJK> -<U8B6E> /x8e/xae/xdd/xae <CJK> -<U8B61> /x8e/xae/xdd/xb0 <CJK> -<U8B64> /x8e/xae/xdd/xb2 <CJK> -<U8B4D> /x8e/xae/xdd/xb3 <CJK> -<U8C51> /x8e/xae/xdd/xb4 <CJK> -<U8E83> /x8e/xae/xdd/xb7 <CJK> -<U8EC6> /x8e/xae/xdd/xb8 <CJK> -<U941F> /x8e/xae/xdd/xba <CJK> -<U9404> /x8e/xae/xdd/xbc <CJK> -<U9417> /x8e/xae/xdd/xbd <CJK> -<U9408> /x8e/xae/xdd/xbe <CJK> -<U9405> /x8e/xae/xdd/xbf <CJK> -<U93F3> /x8e/xae/xdd/xc1 <CJK> -<U941E> /x8e/xae/xdd/xc2 <CJK> -<U9402> /x8e/xae/xdd/xc3 <CJK> -<U941A> /x8e/xae/xdd/xc4 <CJK> -<U941B> /x8e/xae/xdd/xc5 <CJK> -<U9427> /x8e/xae/xdd/xc6 <CJK> -<U941C> /x8e/xae/xdd/xc7 <CJK> -<U96B5> /x8e/xae/xdd/xc9 <CJK> -<U9733> /x8e/xae/xdd/xcc <CJK> -<U9734> /x8e/xae/xdd/xce <CJK> -<U9731> /x8e/xae/xdd/xcf <CJK> -<U97B8> /x8e/xae/xdd/xd0 <CJK> -<U97BA> /x8e/xae/xdd/xd1 <CJK> -<U97FC> /x8e/xae/xdd/xd3 <CJK> -<U98C3> /x8e/xae/xdd/xd6 <CJK> -<U994D> /x8e/xae/xdd/xd8 <CJK> -<U9A2F> /x8e/xae/xdd/xda <CJK> -<U9AC9> /x8e/xae/xdd/xde <CJK> -<U9AC8> /x8e/xae/xdd/xe0 <CJK> -<U9AC4> /x8e/xae/xdd/xe1 <CJK> -<U9B2A> /x8e/xae/xdd/xe2 <CJK> -<U9B38> /x8e/xae/xdd/xe3 <CJK> -<U9B50> /x8e/xae/xdd/xe4 <CJK> -<U9C0A> /x8e/xae/xdd/xe6 <CJK> -<U9BFB> /x8e/xae/xdd/xe7 <CJK> -<U9C04> /x8e/xae/xdd/xe8 <CJK> -<U9BFC> /x8e/xae/xdd/xe9 <CJK> -<U9BFE> /x8e/xae/xdd/xea <CJK> -<U9C02> /x8e/xae/xdd/xee <CJK> -<U9BF6> /x8e/xae/xdd/xef <CJK> -<U9C1B> /x8e/xae/xdd/xf0 <CJK> -<U9BF9> /x8e/xae/xdd/xf1 <CJK> -<U9C15> /x8e/xae/xdd/xf2 <CJK> -<U9C10> /x8e/xae/xdd/xf3 <CJK> -<U9BFF> /x8e/xae/xdd/xf4 <CJK> -<U9C00> /x8e/xae/xdd/xf5 <CJK> -<U9C0C> /x8e/xae/xdd/xf6 <CJK> -<U9D95> /x8e/xae/xdd/xf9 <CJK> -<U9DA5> /x8e/xae/xdd/xfa <CJK> -<U9E98> /x8e/xae/xde/xa1 <CJK> -<U9EC1> /x8e/xae/xde/xa2 <CJK> -<U9F5A> /x8e/xae/xde/xa4 <CJK> -<U5164> /x8e/xae/xde/xa5 <CJK> -<U56BB> /x8e/xae/xde/xa6 <CJK> -<U58E6> /x8e/xae/xde/xa8 <CJK> -<U5B49> /x8e/xae/xde/xa9 <CJK> -<U5BF7> /x8e/xae/xde/xaa <CJK> -<U5DD0> /x8e/xae/xde/xad <CJK> -<U5FC2> /x8e/xae/xde/xaf <CJK> -<U6511> /x8e/xae/xde/xb1 <CJK> -<U6AFF> /x8e/xae/xde/xb3 <CJK> -<U6AFE> /x8e/xae/xde/xb4 <CJK> -<U6AFD> /x8e/xae/xde/xb5 <CJK> -<U6B01> /x8e/xae/xde/xb7 <CJK> -<U704B> /x8e/xae/xde/xba <CJK> -<U704D> /x8e/xae/xde/xbb <CJK> -<U7047> /x8e/xae/xde/xbc <CJK> -<U74D3> /x8e/xae/xde/xbd <CJK> -<U7668> /x8e/xae/xde/xbe <CJK> -<U7667> /x8e/xae/xde/xbf <CJK> -<U77D1> /x8e/xae/xde/xc2 <CJK> -<U7930> /x8e/xae/xde/xc3 <CJK> -<U7932> /x8e/xae/xde/xc4 <CJK> -<U792E> /x8e/xae/xde/xc5 <CJK> -<U9F9D> /x8e/xae/xde/xc7 <CJK> -<U7AC9> /x8e/xae/xde/xc8 <CJK> -<U7AC8> /x8e/xae/xde/xc9 <CJK> -<U7C56> /x8e/xae/xde/xcb <CJK> -<U7C51> /x8e/xae/xde/xcc <CJK> -<U7E85> /x8e/xae/xde/xd0 <CJK> -<U7E89> /x8e/xae/xde/xd1 <CJK> -<U7E8E> /x8e/xae/xde/xd2 <CJK> -<U7E84> /x8e/xae/xde/xd3 <CJK> -<U826A> /x8e/xae/xde/xd5 <CJK> -<U862B> /x8e/xae/xde/xd6 <CJK> -<U862F> /x8e/xae/xde/xd7 <CJK> -<U8628> /x8e/xae/xde/xd8 <CJK> -<U8616> /x8e/xae/xde/xda <CJK> -<U8615> /x8e/xae/xde/xdb <CJK> -<U861D> /x8e/xae/xde/xdc <CJK> -<U881A> /x8e/xae/xde/xdd <CJK> -<U89BC> /x8e/xae/xde/xe1 <CJK> -<U8B75> /x8e/xae/xde/xe2 <CJK> -<U8B7C> /x8e/xae/xde/xe3 <CJK> -<U8D11> /x8e/xae/xde/xe5 <CJK> -<U8D12> /x8e/xae/xde/xe6 <CJK> -<U8F5C> /x8e/xae/xde/xe7 <CJK> -<U91BB> /x8e/xae/xde/xe8 <CJK> -<U93F4> /x8e/xae/xde/xea <CJK> -<U942D> /x8e/xae/xde/xed <CJK> -<U96E4> /x8e/xae/xde/xf0 <CJK> -<U9737> /x8e/xae/xde/xf1 <CJK> -<U9736> /x8e/xae/xde/xf2 <CJK> -<U9767> /x8e/xae/xde/xf3 <CJK> -<U97BE> /x8e/xae/xde/xf4 <CJK> -<U97BD> /x8e/xae/xde/xf5 <CJK> -<U97E2> /x8e/xae/xde/xf6 <CJK> -<U9868> /x8e/xae/xde/xf7 <CJK> -<U9866> /x8e/xae/xde/xf8 <CJK> -<U98C8> /x8e/xae/xde/xf9 <CJK> -<U98CA> /x8e/xae/xde/xfa <CJK> -<U98C7> /x8e/xae/xde/xfb <CJK> -<U98DC> /x8e/xae/xde/xfc <CJK> -<U994F> /x8e/xae/xde/xfe <CJK> -<U99A9> /x8e/xae/xdf/xa1 <CJK> -<U9A3C> /x8e/xae/xdf/xa2 <CJK> -<U9A3B> /x8e/xae/xdf/xa4 <CJK> -<U9ACE> /x8e/xae/xdf/xa5 <CJK> -<U9B14> /x8e/xae/xdf/xa7 <CJK> -<U9B53> /x8e/xae/xdf/xa8 <CJK> -<U9C2E> /x8e/xae/xdf/xaa <CJK> -<U9C1F> /x8e/xae/xdf/xac <CJK> -<U9DB0> /x8e/xae/xdf/xb1 <CJK> -<U9DBD> /x8e/xae/xdf/xb2 <CJK> -<U9DAE> /x8e/xae/xdf/xb5 <CJK> -<U9DC4> /x8e/xae/xdf/xb6 <CJK> -<U9E7B> /x8e/xae/xdf/xb7 <CJK> -<U9E9E> /x8e/xae/xdf/xba <CJK> -<U9F05> /x8e/xae/xdf/xbc <CJK> -<U9F69> /x8e/xae/xdf/xbe <CJK> -<U9FA1> /x8e/xae/xdf/xbf <CJK> -<U56C7> /x8e/xae/xdf/xc0 <CJK> -<U571D> /x8e/xae/xdf/xc1 <CJK> -<U5B4A> /x8e/xae/xdf/xc2 <CJK> -<U5DD3> /x8e/xae/xdf/xc3 <CJK> -<U5F72> /x8e/xae/xdf/xc5 <CJK> -<U6202> /x8e/xae/xdf/xc6 <CJK> -<U6235> /x8e/xae/xdf/xc8 <CJK> -<U6527> /x8e/xae/xdf/xc9 <CJK> -<U651E> /x8e/xae/xdf/xca <CJK> -<U651F> /x8e/xae/xdf/xcb <CJK> -<U6B07> /x8e/xae/xdf/xce <CJK> -<U6B06> /x8e/xae/xdf/xcf <CJK> -<U7054> /x8e/xae/xdf/xd2 <CJK> -<U721C> /x8e/xae/xdf/xd3 <CJK> -<U7220> /x8e/xae/xdf/xd4 <CJK> -<U7AF8> /x8e/xae/xdf/xd5 <CJK> -<U7C5D> /x8e/xae/xdf/xd7 <CJK> -<U7C58> /x8e/xae/xdf/xd8 <CJK> -<U7E92> /x8e/xae/xdf/xda <CJK> -<U7F4E> /x8e/xae/xdf/xdb <CJK> -<U8827> /x8e/xae/xdf/xdf <CJK> -<U8B81> /x8e/xae/xdf/xe1 <CJK> -<U8B83> /x8e/xae/xdf/xe2 <CJK> -<U8C44> /x8e/xae/xdf/xe4 <CJK> -<U9442> /x8e/xae/xdf/xe9 <CJK> -<U944D> /x8e/xae/xdf/xea <CJK> -<U9454> /x8e/xae/xdf/xeb <CJK> -<U944E> /x8e/xae/xdf/xec <CJK> -<U9443> /x8e/xae/xdf/xee <CJK> -<U973C> /x8e/xae/xdf/xf1 <CJK> -<U9740> /x8e/xae/xdf/xf2 <CJK> -<U97C0> /x8e/xae/xdf/xf3 <CJK> -<U995A> /x8e/xae/xdf/xf8 <CJK> -<U9A51> /x8e/xae/xdf/xf9 <CJK> -<U9ADD> /x8e/xae/xdf/xfb <CJK> -<U9C38> /x8e/xae/xdf/xfe <CJK> -<U9C45> /x8e/xae/xe0/xa2 <CJK> -<U9C3A> /x8e/xae/xe0/xa3 <CJK> -<U9C35> /x8e/xae/xe0/xa5 <CJK> -<U9EF1> /x8e/xae/xe0/xa9 <CJK> -<U9F93> /x8e/xae/xe0/xab <CJK> -<U529A> /x8e/xae/xe0/xac <CJK> -<U8641> /x8e/xae/xe0/xaf <CJK> -<U5DD7> /x8e/xae/xe0/xb0 <CJK> -<U6528> /x8e/xae/xe0/xb2 <CJK> -<U7053> /x8e/xae/xe0/xb6 <CJK> -<U7059> /x8e/xae/xe0/xb7 <CJK> -<U7221> /x8e/xae/xe0/xb9 <CJK> -<U766F> /x8e/xae/xe0/xbb <CJK> -<U7937> /x8e/xae/xe0/xbc <CJK> -<U79B5> /x8e/xae/xe0/xbd <CJK> -<U7C62> /x8e/xae/xe0/xbe <CJK> -<U7C5E> /x8e/xae/xe0/xbf <CJK> -<U7CF5> /x8e/xae/xe0/xc0 <CJK> -<U863D> /x8e/xae/xe0/xc3 <CJK> -<U882D> /x8e/xae/xe0/xc5 <CJK> -<U8989> /x8e/xae/xe0/xc6 <CJK> -<U8B8D> /x8e/xae/xe0/xc7 <CJK> -<U8B87> /x8e/xae/xe0/xc8 <CJK> -<U8B90> /x8e/xae/xe0/xc9 <CJK> -<U8D1A> /x8e/xae/xe0/xca <CJK> -<U8E99> /x8e/xae/xe0/xcb <CJK> -<U945F> /x8e/xae/xe0/xcf <CJK> -<U9456> /x8e/xae/xe0/xd2 <CJK> -<U9461> /x8e/xae/xe0/xd3 <CJK> -<U945B> /x8e/xae/xe0/xd4 <CJK> -<U945A> /x8e/xae/xe0/xd5 <CJK> -<U945C> /x8e/xae/xe0/xd6 <CJK> -<U9465> /x8e/xae/xe0/xd7 <CJK> -<U9741> /x8e/xae/xe0/xd9 <CJK> -<U986E> /x8e/xae/xe0/xdc <CJK> -<U986C> /x8e/xae/xe0/xdd <CJK> -<U986D> /x8e/xae/xe0/xde <CJK> -<U99AA> /x8e/xae/xe0/xe0 <CJK> -<U9A5C> /x8e/xae/xe0/xe1 <CJK> -<U9A58> /x8e/xae/xe0/xe2 <CJK> -<U9ADE> /x8e/xae/xe0/xe3 <CJK> -<U9C4F> /x8e/xae/xe0/xe5 <CJK> -<U9C51> /x8e/xae/xe0/xe6 <CJK> -<U9C53> /x8e/xae/xe0/xe8 <CJK> -<U9DFC> /x8e/xae/xe0/xec <CJK> -<U9F39> /x8e/xae/xe0/xed <CJK> -<U513E> /x8e/xae/xe0/xef <CJK> -<U56D2> /x8e/xae/xe0/xf1 <CJK> -<U5B4F> /x8e/xae/xe0/xf3 <CJK> -<U6B14> /x8e/xae/xe0/xf4 <CJK> -<U7A72> /x8e/xae/xe0/xf6 <CJK> -<U7A73> /x8e/xae/xe0/xf7 <CJK> -<U8B91> /x8e/xae/xe0/xfb <CJK> -<U91BF> /x8e/xae/xe0/xfe <CJK> -<U946C> /x8e/xae/xe1/xa2 <CJK> -<U96E6> /x8e/xae/xe1/xa5 <CJK> -<U9745> /x8e/xae/xe1/xa6 <CJK> -<U97C8> /x8e/xae/xe1/xa8 <CJK> -<U97E4> /x8e/xae/xe1/xa9 <CJK> -<U995D> /x8e/xae/xe1/xaa <CJK> -<U9B21> /x8e/xae/xe1/xac <CJK> -<U9B2C> /x8e/xae/xe1/xae <CJK> -<U9B57> /x8e/xae/xe1/xaf <CJK> -<U9C5D> /x8e/xae/xe1/xb2 <CJK> -<U9C61> /x8e/xae/xe1/xb3 <CJK> -<U9C65> /x8e/xae/xe1/xb4 <CJK> -<U9E08> /x8e/xae/xe1/xb5 <CJK> -<U9F45> /x8e/xae/xe1/xbb <CJK> -<U6205> /x8e/xae/xe1/xbe <CJK> -<U66EF> /x8e/xae/xe1/xbf <CJK> -<U6B1B> /x8e/xae/xe1/xc0 <CJK> -<U6B1D> /x8e/xae/xe1/xc1 <CJK> -<U7225> /x8e/xae/xe1/xc2 <CJK> -<U7224> /x8e/xae/xe1/xc3 <CJK> -<U7C6D> /x8e/xae/xe1/xc4 <CJK> -<U8642> /x8e/xae/xe1/xc6 <CJK> -<U8649> /x8e/xae/xe1/xc7 <CJK> -<U8978> /x8e/xae/xe1/xc9 <CJK> -<U898A> /x8e/xae/xe1/xca <CJK> -<U8B97> /x8e/xae/xe1/xcb <CJK> -<U8C9B> /x8e/xae/xe1/xcd <CJK> -<U8D1C> /x8e/xae/xe1/xce <CJK> -<U8EA2> /x8e/xae/xe1/xd0 <CJK> -<U9C6C> /x8e/xae/xe1/xd9 <CJK> -<U9C6F> /x8e/xae/xe1/xdb <CJK> -<U9E0E> /x8e/xae/xe1/xdd <CJK> -<U9F08> /x8e/xae/xe1/xdf <CJK> -<U9F1D> /x8e/xae/xe1/xe0 <CJK> -<U9FA3> /x8e/xae/xe1/xe1 <CJK> -<U5F60> /x8e/xae/xe1/xe4 <CJK> -<U6B1C> /x8e/xae/xe1/xe5 <CJK> -<U7CF3> /x8e/xae/xe1/xe9 <CJK> -<U8B9B> /x8e/xae/xe1/xeb <CJK> -<U8EA7> /x8e/xae/xe1/xec <CJK> -<U91C4> /x8e/xae/xe1/xed <CJK> -<U947A> /x8e/xae/xe1/xef <CJK> -<U9A61> /x8e/xae/xe1/xf2 <CJK> -<U9A63> /x8e/xae/xe1/xf3 <CJK> -<U9AD7> /x8e/xae/xe1/xf4 <CJK> -<U9C76> /x8e/xae/xe1/xf5 <CJK> -<U9FA5> /x8e/xae/xe1/xf7 <CJK> -<U7067> /x8e/xae/xe1/xf9 <CJK> -<U72AB> /x8e/xae/xe1/xfb <CJK> -<U864A> /x8e/xae/xe1/xfc <CJK> -<U897D> /x8e/xae/xe1/xfd <CJK> -<U8B9D> /x8e/xae/xe1/xfe <CJK> -<U8C53> /x8e/xae/xe2/xa1 <CJK> -<U8F65> /x8e/xae/xe2/xa2 <CJK> -<U947B> /x8e/xae/xe2/xa3 <CJK> -<U98CD> /x8e/xae/xe2/xa5 <CJK> -<U98DD> /x8e/xae/xe2/xa6 <CJK> -<U9B30> /x8e/xae/xe2/xa8 <CJK> -<U9E16> /x8e/xae/xe2/xa9 <CJK> -<U96E7> /x8e/xae/xe2/xaf <CJK> -<U9E18> /x8e/xae/xe2/xb0 <CJK> -<U9EA2> /x8e/xae/xe2/xb1 <CJK> -<U9F7C> /x8e/xae/xe2/xb3 <CJK> -<U7E9E> /x8e/xae/xe2/xb5 <CJK> -<U9484> /x8e/xae/xe2/xb6 <CJK> -<U9E1C> /x8e/xae/xe2/xb8 <CJK> -<U7C71> /x8e/xae/xe2/xba <CJK> -<U97CA> /x8e/xae/xe2/xbb <CJK> -<U9EA3> /x8e/xae/xe2/xbf <CJK> -<U9C7B> /x8e/xae/xe2/xc1 <CJK> -<U9F97> /x8e/xae/xe2/xc2 <CJK> -<U9750> /x8e/xae/xe2/xc5 <CJK> -<U5727> /x8e/xae/xe2/xc9 <CJK> -<U5C13> /x8e/xae/xe2/xca <CJK> -<U5FC8> /x8e/xae/xe2/xd1 <CJK> -<U6765> /x8e/xae/xe2/xd7 <CJK> -<U52BD> /x8e/xae/xe2/xda <CJK> -<U5B66> /x8e/xae/xe2/xdc <CJK> -<U65F9> /x8e/xae/xe2/xde <CJK> -<U6788> /x8e/xae/xe2/xdf <CJK> -<U6CE6> /x8e/xae/xe2/xe0 <CJK> -<U6CCB> /x8e/xae/xe2/xe1 <CJK> -<U4FBD> /x8e/xae/xe2/xe3 <CJK> -<U5F8D> /x8e/xae/xe2/xe4 <CJK> -<U6018> /x8e/xae/xe2/xe6 <CJK> -<U6048> /x8e/xae/xe2/xe7 <CJK> -<U6B29> /x8e/xae/xe2/xe9 <CJK> -<U70A6> /x8e/xae/xe2/xea <CJK> -<U7706> /x8e/xae/xe2/xec <CJK> -<U5A10> /x8e/xae/xe2/xf0 <CJK> -<U5CFC> /x8e/xae/xe2/xf1 <CJK> -<U5CFE> /x8e/xae/xe2/xf2 <CJK> -<U70C9> /x8e/xae/xe2/xf9 <CJK> -<U9579> /x8e/xae/xe3/xa3 <CJK> -<U96BA> /x8e/xae/xe3/xa5 <CJK> -<U7B29> /x8e/xae/xe3/xad <CJK> -<U8128> /x8e/xae/xe3/xae <CJK> -<U8A2E> /x8e/xae/xe3/xb0 <CJK> -<U9AD9> /x8e/xae/xe3/xb4 <CJK> -<U582B> /x8e/xae/xe3/xb6 <CJK> -<U5845> /x8e/xae/xe3/xb7 <CJK> -<U63FA> /x8e/xae/xe3/xb9 <CJK> -<U6E86> /x8e/xae/xe3/xbd <CJK> -<U5867> /x8e/xae/xe3/xc3 <CJK> -<U5BDD> /x8e/xae/xe3/xc5 <CJK> -<U656E> /x8e/xae/xe3/xc6 <CJK> -<U8C87> /x8e/xae/xe3/xca <CJK> -<U50D2> /x8e/xae/xe3/xcc <CJK> -<U50DF> /x8e/xae/xe3/xcd <CJK> -<U69BA> /x8e/xae/xe3/xd2 <CJK> -<U6B9D> /x8e/xae/xe3/xd4 <CJK> -<U8059> /x8e/xae/xe3/xd6 <CJK> -<U6F8A> /x8e/xae/xe3/xe3 <CJK> -<U7BC3> /x8e/xae/xe3/xe6 <CJK> -<U7BC2> /x8e/xae/xe3/xe7 <CJK> -<U90F6> /x8e/xae/xe3/xec <CJK> -<U9823> /x8e/xae/xe3/xee <CJK> -<U71CD> /x8e/xae/xe3/xf4 <CJK> -<U7499> /x8e/xae/xe3/xf5 <CJK> -<U9842> /x8e/xae/xe3/xfb <CJK> -<U7F84> /x8e/xae/xe4/xa2 <CJK> -<U8D0E> /x8e/xae/xe4/xa8 <CJK> -<U9861> /x8e/xae/xe4/xaa <CJK> -<U8B73> /x8e/xae/xe4/xad <CJK> -<U9C27> /x8e/xae/xe4/xaf <CJK> -<U9458> /x8e/xae/xe4/xb1 <CJK> -<U77D6> /x8e/xae/xe4/xb2 <CJK> -<U9B2D> /x8e/xae/xe4/xb3 <CJK> -<U4F66> /x8e/xae/xe4/xc8 <CJK> -<U4F68> /x8e/xae/xe4/xc9 <CJK> -<U4FE7> /x8e/xae/xe4/xca <CJK> -<U503F> /x8e/xae/xe4/xcb <CJK> -<U50A6> /x8e/xae/xe4/xcd <CJK> -<U510F> /x8e/xae/xe4/xce <CJK> -<U523E> /x8e/xae/xe4/xcf <CJK> -<U5324> /x8e/xae/xe4/xd0 <CJK> -<U5365> /x8e/xae/xe4/xd1 <CJK> -<U539B> /x8e/xae/xe4/xd2 <CJK> -<U517F> /x8e/xae/xe4/xd3 <CJK> -<U54CB> /x8e/xae/xe4/xd4 <CJK> -<U5573> /x8e/xae/xe4/xd5 <CJK> -<U5571> /x8e/xae/xe4/xd6 <CJK> -<U556B> /x8e/xae/xe4/xd7 <CJK> -<U55F4> /x8e/xae/xe4/xd8 <CJK> -<U5622> /x8e/xae/xe4/xd9 <CJK> -<U5620> /x8e/xae/xe4/xda <CJK> -<U5692> /x8e/xae/xe4/xdb <CJK> -<U56BA> /x8e/xae/xe4/xdc <CJK> -<U5691> /x8e/xae/xe4/xdd <CJK> -<U56B0> /x8e/xae/xe4/xde <CJK> -<U5759> /x8e/xae/xe4/xdf <CJK> -<U578A> /x8e/xae/xe4/xe0 <CJK> -<U580F> /x8e/xae/xe4/xe1 <CJK> -<U5812> /x8e/xae/xe4/xe2 <CJK> -<U5813> /x8e/xae/xe4/xe3 <CJK> -<U5847> /x8e/xae/xe4/xe4 <CJK> -<U589B> /x8e/xae/xe4/xe5 <CJK> -<U5900> /x8e/xae/xe4/xe6 <CJK> -<U594D> /x8e/xae/xe4/xe7 <CJK> -<U5AD1> /x8e/xae/xe4/xe8 <CJK> -<U5AD3> /x8e/xae/xe4/xe9 <CJK> -<U5B67> /x8e/xae/xe4/xea <CJK> -<U5C57> /x8e/xae/xe4/xeb <CJK> -<U5C77> /x8e/xae/xe4/xec <CJK> -<U5CD5> /x8e/xae/xe4/xed <CJK> -<U5D75> /x8e/xae/xe4/xee <CJK> -<U5D8E> /x8e/xae/xe4/xef <CJK> -<U5DA5> /x8e/xae/xe4/xf0 <CJK> -<U5DB6> /x8e/xae/xe4/xf1 <CJK> -<U5DBF> /x8e/xae/xe4/xf2 <CJK> -<U5E65> /x8e/xae/xe4/xf3 <CJK> -<U5ECD> /x8e/xae/xe4/xf4 <CJK> -<U5EED> /x8e/xae/xe4/xf5 <CJK> -<U5F94> /x8e/xae/xe4/xf6 <CJK> -<U5F9A> /x8e/xae/xe4/xf7 <CJK> -<U5FBA> /x8e/xae/xe4/xf8 <CJK> -<U6125> /x8e/xae/xe4/xf9 <CJK> -<U6150> /x8e/xae/xe4/xfa <CJK> -<U62A3> /x8e/xae/xe4/xfb <CJK> -<U6360> /x8e/xae/xe4/xfc <CJK> -<U6364> /x8e/xae/xe4/xfd <CJK> -<U63B6> /x8e/xae/xe4/xfe <CJK> -<U6403> /x8e/xae/xe5/xa1 <CJK> -<U64B6> /x8e/xae/xe5/xa2 <CJK> -<U651A> /x8e/xae/xe5/xa3 <CJK> -<U7A25> /x8e/xae/xe5/xa4 <CJK> -<U5C21> /x8e/xae/xe5/xa5 <CJK> -<U66E2> /x8e/xae/xe5/xa6 <CJK> -<U6702> /x8e/xae/xe5/xa7 <CJK> -<U67A4> /x8e/xae/xe5/xa8 <CJK> -<U67AC> /x8e/xae/xe5/xa9 <CJK> -<U6810> /x8e/xae/xe5/xaa <CJK> -<U6806> /x8e/xae/xe5/xab <CJK> -<U685E> /x8e/xae/xe5/xac <CJK> -<U685A> /x8e/xae/xe5/xad <CJK> -<U692C> /x8e/xae/xe5/xae <CJK> -<U6929> /x8e/xae/xe5/xaf <CJK> -<U6A2D> /x8e/xae/xe5/xb0 <CJK> -<U6A77> /x8e/xae/xe5/xb1 <CJK> -<U6A7A> /x8e/xae/xe5/xb2 <CJK> -<U6ACA> /x8e/xae/xe5/xb3 <CJK> -<U6AE6> /x8e/xae/xe5/xb4 <CJK> -<U6AF5> /x8e/xae/xe5/xb5 <CJK> -<U6B0D> /x8e/xae/xe5/xb6 <CJK> -<U6B0E> /x8e/xae/xe5/xb7 <CJK> -<U6BDC> /x8e/xae/xe5/xb8 <CJK> -<U6BDD> /x8e/xae/xe5/xb9 <CJK> -<U6BF6> /x8e/xae/xe5/xba <CJK> -<U6C1E> /x8e/xae/xe5/xbb <CJK> -<U6C63> /x8e/xae/xe5/xbc <CJK> -<U6DA5> /x8e/xae/xe5/xbd <CJK> -<U6E0F> /x8e/xae/xe5/xbe <CJK> -<U6E8A> /x8e/xae/xe5/xbf <CJK> -<U6E84> /x8e/xae/xe5/xc0 <CJK> -<U6E8B> /x8e/xae/xe5/xc1 <CJK> -<U6E7C> /x8e/xae/xe5/xc2 <CJK> -<U6F4C> /x8e/xae/xe5/xc3 <CJK> -<U6F48> /x8e/xae/xe5/xc4 <CJK> -<U6F49> /x8e/xae/xe5/xc5 <CJK> -<U6F9D> /x8e/xae/xe5/xc6 <CJK> -<U6F99> /x8e/xae/xe5/xc7 <CJK> -<U6FF8> /x8e/xae/xe5/xc8 <CJK> -<U702E> /x8e/xae/xe5/xc9 <CJK> -<U702D> /x8e/xae/xe5/xca <CJK> -<U705C> /x8e/xae/xe5/xcb <CJK> -<U79CC> /x8e/xae/xe5/xcc <CJK> -<U70BF> /x8e/xae/xe5/xcd <CJK> -<U70EA> /x8e/xae/xe5/xce <CJK> -<U70E5> /x8e/xae/xe5/xcf <CJK> -<U7111> /x8e/xae/xe5/xd0 <CJK> -<U7112> /x8e/xae/xe5/xd1 <CJK> -<U713F> /x8e/xae/xe5/xd2 <CJK> -<U7139> /x8e/xae/xe5/xd3 <CJK> -<U713B> /x8e/xae/xe5/xd4 <CJK> -<U713D> /x8e/xae/xe5/xd5 <CJK> -<U7177> /x8e/xae/xe5/xd6 <CJK> -<U7175> /x8e/xae/xe5/xd7 <CJK> -<U7176> /x8e/xae/xe5/xd8 <CJK> -<U7171> /x8e/xae/xe5/xd9 <CJK> -<U7196> /x8e/xae/xe5/xda <CJK> -<U7193> /x8e/xae/xe5/xdb <CJK> -<U71B4> /x8e/xae/xe5/xdc <CJK> -<U71DD> /x8e/xae/xe5/xdd <CJK> -<U71DE> /x8e/xae/xe5/xde <CJK> -<U720E> /x8e/xae/xe5/xdf <CJK> -<U5911> /x8e/xae/xe5/xe0 <CJK> -<U7218> /x8e/xae/xe5/xe1 <CJK> -<U7347> /x8e/xae/xe5/xe2 <CJK> -<U7348> /x8e/xae/xe5/xe3 <CJK> -<U73EF> /x8e/xae/xe5/xe4 <CJK> -<U7412> /x8e/xae/xe5/xe5 <CJK> -<U743B> /x8e/xae/xe5/xe6 <CJK> -<U74A4> /x8e/xae/xe5/xe7 <CJK> -<U748D> /x8e/xae/xe5/xe8 <CJK> -<U74B4> /x8e/xae/xe5/xe9 <CJK> -<U7673> /x8e/xae/xe5/xea <CJK> -<U7677> /x8e/xae/xe5/xeb <CJK> -<U76BC> /x8e/xae/xe5/xec <CJK> -<U7819> /x8e/xae/xe5/xed <CJK> -<U781B> /x8e/xae/xe5/xee <CJK> -<U783D> /x8e/xae/xe5/xef <CJK> -<U7853> /x8e/xae/xe5/xf0 <CJK> -<U7854> /x8e/xae/xe5/xf1 <CJK> -<U7858> /x8e/xae/xe5/xf2 <CJK> -<U78B7> /x8e/xae/xe5/xf3 <CJK> -<U78D8> /x8e/xae/xe5/xf4 <CJK> -<U78EE> /x8e/xae/xe5/xf5 <CJK> -<U7922> /x8e/xae/xe5/xf6 <CJK> -<U794D> /x8e/xae/xe5/xf7 <CJK> -<U7986> /x8e/xae/xe5/xf8 <CJK> -<U7999> /x8e/xae/xe5/xf9 <CJK> -<U79A3> /x8e/xae/xe5/xfa <CJK> -<U79BC> /x8e/xae/xe5/xfb <CJK> -<U7AA7> /x8e/xae/xe5/xfc <CJK> -<U7B37> /x8e/xae/xe5/xfd <CJK> -<U7B59> /x8e/xae/xe5/xfe <CJK> -<U7BD0> /x8e/xae/xe6/xa1 <CJK> -<U7C2F> /x8e/xae/xe6/xa2 <CJK> -<U7C32> /x8e/xae/xe6/xa3 <CJK> -<U7C42> /x8e/xae/xe6/xa4 <CJK> -<U7C4E> /x8e/xae/xe6/xa5 <CJK> -<U7C68> /x8e/xae/xe6/xa6 <CJK> -<U7CA9> /x8e/xae/xe6/xa7 <CJK> -<U7CED> /x8e/xae/xe6/xa8 <CJK> -<U7DD0> /x8e/xae/xe6/xa9 <CJK> -<U7E07> /x8e/xae/xe6/xaa <CJK> -<U7DD3> /x8e/xae/xe6/xab <CJK> -<U7E64> /x8e/xae/xe6/xac <CJK> -<U7F40> /x8e/xae/xe6/xad <CJK> -<U8041> /x8e/xae/xe6/xaf <CJK> -<U8063> /x8e/xae/xe6/xb0 <CJK> -<U80BB> /x8e/xae/xe6/xb1 <CJK> -<U6711> /x8e/xae/xe6/xb2 <CJK> -<U6725> /x8e/xae/xe6/xb3 <CJK> -<U8248> /x8e/xae/xe6/xb4 <CJK> -<U8310> /x8e/xae/xe6/xb5 <CJK> -<U8362> /x8e/xae/xe6/xb6 <CJK> -<U8312> /x8e/xae/xe6/xb7 <CJK> -<U8421> /x8e/xae/xe6/xb8 <CJK> -<U841E> /x8e/xae/xe6/xb9 <CJK> -<U84E2> /x8e/xae/xe6/xba <CJK> -<U84DE> /x8e/xae/xe6/xbb <CJK> -<U84E1> /x8e/xae/xe6/xbc <CJK> -<U8573> /x8e/xae/xe6/xbd <CJK> -<U85D4> /x8e/xae/xe6/xbe <CJK> -<U85F5> /x8e/xae/xe6/xbf <CJK> -<U8637> /x8e/xae/xe6/xc0 <CJK> -<U8645> /x8e/xae/xe6/xc1 <CJK> -<U8672> /x8e/xae/xe6/xc2 <CJK> -<U874A> /x8e/xae/xe6/xc3 <CJK> -<U87A9> /x8e/xae/xe6/xc4 <CJK> -<U87A5> /x8e/xae/xe6/xc5 <CJK> -<U87F5> /x8e/xae/xe6/xc6 <CJK> -<U8834> /x8e/xae/xe6/xc7 <CJK> -<U8850> /x8e/xae/xe6/xc8 <CJK> -<U8887> /x8e/xae/xe6/xc9 <CJK> -<U8954> /x8e/xae/xe6/xca <CJK> -<U8984> /x8e/xae/xe6/xcb <CJK> -<U8B03> /x8e/xae/xe6/xcc <CJK> -<U8C52> /x8e/xae/xe6/xcd <CJK> -<U8CD8> /x8e/xae/xe6/xce <CJK> -<U8D0C> /x8e/xae/xe6/xcf <CJK> -<U8D18> /x8e/xae/xe6/xd0 <CJK> -<U8DB0> /x8e/xae/xe6/xd1 <CJK> -<U8EBC> /x8e/xae/xe6/xd2 <CJK> -<U8ED5> /x8e/xae/xe6/xd3 <CJK> -<U8FAA> /x8e/xae/xe6/xd4 <CJK> -<U909C> /x8e/xae/xe6/xd5 <CJK> -<U915C> /x8e/xae/xe6/xd7 <CJK> -<U922B> /x8e/xae/xe6/xd8 <CJK> -<U9221> /x8e/xae/xe6/xd9 <CJK> -<U9273> /x8e/xae/xe6/xda <CJK> -<U92F4> /x8e/xae/xe6/xdb <CJK> -<U92F5> /x8e/xae/xe6/xdc <CJK> -<U933F> /x8e/xae/xe6/xdd <CJK> -<U9342> /x8e/xae/xe6/xde <CJK> -<U9386> /x8e/xae/xe6/xdf <CJK> -<U93BE> /x8e/xae/xe6/xe0 <CJK> -<U93BC> /x8e/xae/xe6/xe1 <CJK> -<U93BD> /x8e/xae/xe6/xe2 <CJK> -<U93F1> /x8e/xae/xe6/xe3 <CJK> -<U93F2> /x8e/xae/xe6/xe4 <CJK> -<U93EF> /x8e/xae/xe6/xe5 <CJK> -<U9422> /x8e/xae/xe6/xe6 <CJK> -<U9423> /x8e/xae/xe6/xe7 <CJK> -<U9424> /x8e/xae/xe6/xe8 <CJK> -<U9467> /x8e/xae/xe6/xe9 <CJK> -<U9466> /x8e/xae/xe6/xea <CJK> -<U9597> /x8e/xae/xe6/xeb <CJK> -<U95CE> /x8e/xae/xe6/xec <CJK> -<U95E7> /x8e/xae/xe6/xed <CJK> -<U973B> /x8e/xae/xe6/xee <CJK> -<U974D> /x8e/xae/xe6/xef <CJK> -<U98E4> /x8e/xae/xe6/xf0 <CJK> -<U9942> /x8e/xae/xe6/xf1 <CJK> -<U9B1D> /x8e/xae/xe6/xf2 <CJK> -<U9B98> /x8e/xae/xe6/xf3 <CJK> -<U9D49> /x8e/xae/xe6/xf5 <CJK> -<U6449> /x8e/xae/xe6/xf6 <CJK> -<U5E71> /x8e/xae/xe6/xf7 <CJK> -<U5E85> /x8e/xae/xe6/xf8 <CJK> -<U61D3> /x8e/xae/xe6/xf9 <CJK> -<U990E> /x8e/xae/xe6/xfa <CJK> -<U8002> /x8e/xae/xe6/xfb <CJK> -<U781E> /x8e/xae/xe6/xfc <CJK> -<U5528> /x8e/xae/xe7/xa1 <CJK> -<U5572> /x8e/xae/xe7/xa2 <CJK> -<U55BA> /x8e/xae/xe7/xa3 <CJK> -<U55F0> /x8e/xae/xe7/xa4 <CJK> -<U55EE> /x8e/xae/xe7/xa5 <CJK> -<U56B8> /x8e/xae/xe7/xa6 <CJK> -<U56B9> /x8e/xae/xe7/xa7 <CJK> -<U56C4> /x8e/xae/xe7/xa8 <CJK> -<U8053> /x8e/xae/xe7/xa9 <CJK> -<U92B0> /x8e/xae/xe7/xaa <CJK> +<U4E28> /x8e/xa3/xa1/xa1 <CJK> +<U4E36> /x8e/xa3/xa1/xa2 <CJK> +<U4E3F> /x8e/xa3/xa1/xa3 <CJK> +<U4E85> /x8e/xa3/xa1/xa4 <CJK> +<U4E05> /x8e/xa3/xa1/xa5 <CJK> +<U4E04> /x8e/xa3/xa1/xa6 <CJK> +<U5182> /x8e/xa3/xa1/xa7 <CJK> +<U5196> /x8e/xa3/xa1/xa8 <CJK> +<U5338> /x8e/xa3/xa1/xa9 <CJK> +<U5369> /x8e/xa3/xa1/xaa <CJK> +<U53B6> /x8e/xa3/xa1/xab <CJK> +<U4E2A> /x8e/xa3/xa1/xac <CJK> +<U4E87> /x8e/xa3/xa1/xad <CJK> +<U4E49> /x8e/xa3/xa1/xae <CJK> +<U51E2> /x8e/xa3/xa1/xaf <CJK> +<U4E46> /x8e/xa3/xa1/xb0 <CJK> +<U4E8F> /x8e/xa3/xa1/xb1 <CJK> +<U4EBC> /x8e/xa3/xa1/xb2 <CJK> +<U4EBE> /x8e/xa3/xa1/xb3 <CJK> +<U5166> /x8e/xa3/xa1/xb4 <CJK> +<U51E3> /x8e/xa3/xa1/xb5 <CJK> +<U5204> /x8e/xa3/xa1/xb6 <CJK> +<U529C> /x8e/xa3/xa1/xb7 <CJK> +<U5344> /x8e/xa3/xa1/xb8 <CJK> +<U5902> /x8e/xa3/xa1/xb9 <CJK> +<U590A> /x8e/xa3/xa1/xba <CJK> +<U5B80> /x8e/xa3/xa1/xbb <CJK> +<U5DDB> /x8e/xa3/xa1/xbc <CJK> +<U5E7A> /x8e/xa3/xa1/xbd <CJK> +<U5E7F> /x8e/xa3/xa1/xbe <CJK> +<U5EF4> /x8e/xa3/xa1/xbf <CJK> +<U5F50> /x8e/xa3/xa1/xc0 <CJK> +<U5F51> /x8e/xa3/xa1/xc1 <CJK> +<U5F61> /x8e/xa3/xa1/xc2 <CJK> +<U961D> /x8e/xa3/xa1/xc3 <CJK> +<U0002000B> /x8e/xa3/xa1/xc4 <CJK> +<U4E63> /x8e/xa3/xa1/xc5 <CJK> +<U4E62> /x8e/xa3/xa1/xc6 <CJK> +<U4EA3> /x8e/xa3/xa1/xc7 <CJK> +<U5185> /x8e/xa3/xa1/xc8 <CJK> +<U4EC5> /x8e/xa3/xa1/xc9 <CJK> +<U4ECF> /x8e/xa3/xa1/xca <CJK> +<U4ECE> /x8e/xa3/xa1/xcb <CJK> +<U4ECC> /x8e/xa3/xa1/xcc <CJK> +<U5184> /x8e/xa3/xa1/xcd <CJK> +<U5186> /x8e/xa3/xa1/xce <CJK> +<U34C5> /x8e/xa3/xa1/xd0 <CJK> +<U51E4> /x8e/xa3/xa1/xd1 <CJK> +<U5205> /x8e/xa3/xa1/xd2 <CJK> +<U529E> /x8e/xa3/xa1/xd3 <CJK> +<U529D> /x8e/xa3/xa1/xd4 <CJK> +<U52FD> /x8e/xa3/xa1/xd5 <CJK> +<U5300> /x8e/xa3/xa1/xd6 <CJK> +<U533A> /x8e/xa3/xa1/xd7 <CJK> +<U3539> /x8e/xa3/xa1/xd8 <CJK> +<U5346> /x8e/xa3/xa1/xd9 <CJK> +<U535D> /x8e/xa3/xa1/xda <CJK> +<U5386> /x8e/xa3/xa1/xdb <CJK> +<U53B7> /x8e/xa3/xa1/xdc <CJK> +<U3555> /x8e/xa3/xa1/xdd <CJK> +<U53CC> /x8e/xa3/xa1/xde <CJK> +<U355B> /x8e/xa3/xa1/xdf <CJK> +<U53CE> /x8e/xa3/xa1/xe0 <CJK> +<U5721> /x8e/xa3/xa1/xe1 <CJK> +<U37A2> /x8e/xa3/xa1/xe2 <CJK> +<U5E00> /x8e/xa3/xa1/xe3 <CJK> +<U5F0C> /x8e/xa3/xa1/xe4 <CJK> +<U6237> /x8e/xa3/xa1/xe5 <CJK> +<U6238> /x8e/xa3/xa1/xe6 <CJK> +<U6534> /x8e/xa3/xa1/xe7 <CJK> +<U6535> /x8e/xa3/xa1/xe8 <CJK> +<U65E0> /x8e/xa3/xa1/xe9 <CJK> +<U3E26> /x8e/xa3/xa1/xea <CJK> +<U738D> /x8e/xa3/xa1/xeb <CJK> +<U4E97> /x8e/xa3/xa1/xec <CJK> +<U4EE0> /x8e/xa3/xa1/xed <CJK> +<U3432> /x8e/xa3/xa1/xee <CJK> +<U000201A9> /x8e/xa3/xa1/xef <CJK> +<U4EE7> /x8e/xa3/xa1/xf0 <CJK> +<U3433> /x8e/xa3/xa1/xf1 <CJK> +<U4EE6> /x8e/xa3/xa1/xf2 <CJK> +<U3434> /x8e/xa3/xa1/xf3 <CJK> +<U36A2> /x8e/xa3/xa1/xf4 <CJK> +<U3431> /x8e/xa3/xa1/xf5 <CJK> +<U34B0> /x8e/xa3/xa1/xf6 <CJK> +<U56D8> /x8e/xa3/xa1/xf7 <CJK> +<U518B> /x8e/xa3/xa1/xf8 <CJK> +<U518C> /x8e/xa3/xa1/xf9 <CJK> +<U5199> /x8e/xa3/xa1/xfa <CJK> +<U51E5> /x8e/xa3/xa1/xfb <CJK> +<U520B> /x8e/xa3/xa1/xfd <CJK> +<U34DC> /x8e/xa3/xa1/xfe <CJK> +<U361E> /x8e/xa3/xa2/xa1 <CJK> +<U5304> /x8e/xa3/xa2/xa2 <CJK> +<U5303> /x8e/xa3/xa2/xa3 <CJK> +<U5307> /x8e/xa3/xa2/xa4 <CJK> +<U531E> /x8e/xa3/xa2/xa6 <CJK> +<U535F> /x8e/xa3/xa2/xa7 <CJK> +<U536D> /x8e/xa3/xa2/xa8 <CJK> +<U5389> /x8e/xa3/xa2/xa9 <CJK> +<U53BA> /x8e/xa3/xa2/xaa <CJK> +<U53D0> /x8e/xa3/xa2/xab <CJK> +<U3565> /x8e/xa3/xa2/xac <CJK> +<U53F6> /x8e/xa3/xa2/xad <CJK> +<U53F7> /x8e/xa3/xa2/xae <CJK> +<U53F9> /x8e/xa3/xa2/xaf <CJK> +<U3564> /x8e/xa3/xa2/xb0 <CJK> +<U53F4> /x8e/xa3/xa2/xb1 <CJK> +<U361D> /x8e/xa3/xa2/xb2 <CJK> +<U3626> /x8e/xa3/xa2/xb3 <CJK> +<U5724> /x8e/xa3/xa2/xb4 <CJK> +<U5904> /x8e/xa3/xa2/xb5 <CJK> +<U5918> /x8e/xa3/xa2/xb6 <CJK> +<U5932> /x8e/xa3/xa2/xb7 <CJK> +<U5930> /x8e/xa3/xa2/xb8 <CJK> +<U5934> /x8e/xa3/xa2/xb9 <CJK> +<U368E> /x8e/xa3/xa2/xba <CJK> +<U5975> /x8e/xa3/xa2/xbb <CJK> +<U374A> /x8e/xa3/xa2/xbc <CJK> +<U5B82> /x8e/xa3/xa2/xbd <CJK> +<U5BF9> /x8e/xa3/xa2/xbe <CJK> +<U5C14> /x8e/xa3/xa2/xbf <CJK> +<U378B> /x8e/xa3/xa2/xc0 <CJK> +<U37A6> /x8e/xa3/xa2/xc1 <CJK> +<U37A4> /x8e/xa3/xa2/xc2 <CJK> +<U37A5> /x8e/xa3/xa2/xc3 <CJK> +<U37A7> /x8e/xa3/xa2/xc4 <CJK> +<U382F> /x8e/xa3/xa2/xc5 <CJK> +<U3832> /x8e/xa3/xa2/xc6 <CJK> +<U5E81> /x8e/xa3/xa2/xc7 <CJK> +<U5E83> /x8e/xa3/xa2/xc8 <CJK> +<U5F0D> /x8e/xa3/xa2/xc9 <CJK> +<U5F52> /x8e/xa3/xa2/xca <CJK> +<U38D4> /x8e/xa3/xa2/xcb <CJK> +<U5FCA> /x8e/xa3/xa2/xcc <CJK> +<U5FC7> /x8e/xa3/xa2/xcd <CJK> +<U6239> /x8e/xa3/xa2/xce <CJK> +<U39C5> /x8e/xa3/xa2/xcf <CJK> +<U624F> /x8e/xa3/xa2/xd0 <CJK> +<U65E7> /x8e/xa3/xa2/xd1 <CJK> +<U672F> /x8e/xa3/xa2/xd2 <CJK> +<U6B7A> /x8e/xa3/xa2/xd3 <CJK> +<U6C39> /x8e/xa3/xa2/xd4 <CJK> +<U3CBA> /x8e/xa3/xa2/xd5 <CJK> +<U3CB9> /x8e/xa3/xa2/xd6 <CJK> +<U6C37> /x8e/xa3/xa2/xd7 <CJK> +<U6C44> /x8e/xa3/xa2/xd8 <CJK> +<U6C45> /x8e/xa3/xa2/xd9 <CJK> +<U738C> /x8e/xa3/xa2/xda <CJK> +<U7592> /x8e/xa3/xa2/xdb <CJK> +<U7676> /x8e/xa3/xa2/xdc <CJK> +<U9093> /x8e/xa3/xa2/xdd <CJK> +<U9092> /x8e/xa3/xa2/xde <CJK> +<U48B3> /x8e/xa3/xa2/xdf <CJK> +<U49BA> /x8e/xa3/xa2/xe0 <CJK> +<U4E21> /x8e/xa3/xa2/xe1 <CJK> +<U4E20> /x8e/xa3/xa2/xe2 <CJK> +<U4E22> /x8e/xa3/xa2/xe3 <CJK> +<U4E68> /x8e/xa3/xa2/xe4 <CJK> +<U4E89> /x8e/xa3/xa2/xe5 <CJK> +<U4E98> /x8e/xa3/xa2/xe6 <CJK> +<U4EF9> /x8e/xa3/xa2/xe7 <CJK> +<U4EEF> /x8e/xa3/xa2/xe8 <CJK> +<U343B> /x8e/xa3/xa2/xe9 <CJK> +<U343C> /x8e/xa3/xa2/xea <CJK> +<U4EF8> /x8e/xa3/xa2/xeb <CJK> +<U4F06> /x8e/xa3/xa2/xec <CJK> +<U4F03> /x8e/xa3/xa2/xed <CJK> +<U4EFC> /x8e/xa3/xa2/xee <CJK> +<U4EEE> /x8e/xa3/xa2/xef <CJK> +<U4F16> /x8e/xa3/xa2/xf0 <CJK> +<U3439> /x8e/xa3/xa2/xf1 <CJK> +<U4F28> /x8e/xa3/xa2/xf2 <CJK> +<U4F1C> /x8e/xa3/xa2/xf3 <CJK> +<U4F07> /x8e/xa3/xa2/xf4 <CJK> +<U4F1A> /x8e/xa3/xa2/xf5 <CJK> +<U4EFA> /x8e/xa3/xa2/xf6 <CJK> +<U4F17> /x8e/xa3/xa2/xf7 <CJK> +<U514A> /x8e/xa3/xa2/xf8 <CJK> +<U34B2> /x8e/xa3/xa2/xf9 <CJK> +<U5172> /x8e/xa3/xa2/xfa <CJK> +<U51B4> /x8e/xa3/xa2/xfc <CJK> +<U51B3> /x8e/xa3/xa2/xfd <CJK> +<U51B2> /x8e/xa3/xa2/xfe <CJK> +<U34C7> /x8e/xa3/xa3/xa1 <CJK> +<U51E8> /x8e/xa3/xa3/xa2 <CJK> +<U342B> /x8e/xa3/xa3/xa3 <CJK> +<U5214> /x8e/xa3/xa3/xa4 <CJK> +<U520F> /x8e/xa3/xa3/xa5 <CJK> +<U5215> /x8e/xa3/xa3/xa6 <CJK> +<U5218> /x8e/xa3/xa3/xa7 <CJK> +<U52A8> /x8e/xa3/xa3/xa8 <CJK> +<U534B> /x8e/xa3/xa3/xaa <CJK> +<U534F> /x8e/xa3/xa3/xab <CJK> +<U353B> /x8e/xa3/xa3/xac <CJK> +<U5350> /x8e/xa3/xa3/xad <CJK> +<U3544> /x8e/xa3/xa3/xae <CJK> +<U538B> /x8e/xa3/xa3/xaf <CJK> +<U3542> /x8e/xa3/xa3/xb0 <CJK> +<U53BE> /x8e/xa3/xa3/xb1 <CJK> +<U355C> /x8e/xa3/xa3/xb2 <CJK> +<U53D2> /x8e/xa3/xa3/xb3 <CJK> +<U5416> /x8e/xa3/xa3/xb4 <CJK> +<U53FF> /x8e/xa3/xa3/xb5 <CJK> +<U3567> /x8e/xa3/xa3/xb6 <CJK> +<U5400> /x8e/xa3/xa3/xb7 <CJK> +<U3566> /x8e/xa3/xa3/xb8 <CJK> +<U5405> /x8e/xa3/xa3/xb9 <CJK> +<U5413> /x8e/xa3/xa3/xba <CJK> +<U5415> /x8e/xa3/xa3/xbb <CJK> +<U361F> /x8e/xa3/xa3/xbd <CJK> +<U56E3> /x8e/xa3/xa3/xbe <CJK> +<U5735> /x8e/xa3/xa3/xbf <CJK> +<U5736> /x8e/xa3/xa3/xc0 <CJK> +<U5731> /x8e/xa3/xa3/xc1 <CJK> +<U5732> /x8e/xa3/xa3/xc2 <CJK> +<U58EE> /x8e/xa3/xa3/xc3 <CJK> +<U5905> /x8e/xa3/xa3/xc4 <CJK> +<U4E54> /x8e/xa3/xa3/xc5 <CJK> +<U368F> /x8e/xa3/xa3/xc6 <CJK> +<U5936> /x8e/xa3/xa3/xc7 <CJK> +<U3690> /x8e/xa3/xa3/xc8 <CJK> +<U36A8> /x8e/xa3/xa3/xc9 <CJK> +<U36A4> /x8e/xa3/xa3/xca <CJK> +<U597A> /x8e/xa3/xa3/xcb <CJK> +<U36A3> /x8e/xa3/xa3/xcc <CJK> +<U5986> /x8e/xa3/xa3/xcd <CJK> +<U373D> /x8e/xa3/xa3/xce <CJK> +<U374C> /x8e/xa3/xa3/xcf <CJK> +<U5B86> /x8e/xa3/xa3/xd0 <CJK> +<U5F53> /x8e/xa3/xa3/xd1 <CJK> +<U5C18> /x8e/xa3/xa3/xd2 <CJK> +<U378C> /x8e/xa3/xa3/xd3 <CJK> +<U5C3D> /x8e/xa3/xa3/xd4 <CJK> +<U5C78> /x8e/xa3/xa3/xd5 <CJK> +<U37A8> /x8e/xa3/xa3/xd6 <CJK> +<U37AD> /x8e/xa3/xa3/xd7 <CJK> +<U37AF> /x8e/xa3/xa3/xd8 <CJK> +<U00021D46> /x8e/xa3/xa3/xd9 <CJK> +<U5C80> /x8e/xa3/xa3/xda <CJK> +<U3829> /x8e/xa3/xa3/xdb <CJK> +<U5E08> /x8e/xa3/xa3/xdc <CJK> +<U3836> /x8e/xa3/xa3/xdd <CJK> +<U3871> /x8e/xa3/xa3/xde <CJK> +<U3870> /x8e/xa3/xa3/xdf <CJK> +<U386F> /x8e/xa3/xa3/xe0 <CJK> +<U5EF5> /x8e/xa3/xa3/xe1 <CJK> +<U5F0E> /x8e/xa3/xa3/xe2 <CJK> +<U38A9> /x8e/xa3/xa3/xe3 <CJK> +<U38AA> /x8e/xa3/xa3/xe4 <CJK> +<U38FB> /x8e/xa3/xa3/xe5 <CJK> +<U5FD3> /x8e/xa3/xa3/xe6 <CJK> +<U5FDA> /x8e/xa3/xa3/xe7 <CJK> +<U38FC> /x8e/xa3/xa3/xe8 <CJK> +<U5FDB> /x8e/xa3/xa3/xe9 <CJK> +<U39AE> /x8e/xa3/xa3/xea <CJK> +<U620F> /x8e/xa3/xa3/xeb <CJK> +<U625D> /x8e/xa3/xa3/xec <CJK> +<U625F> /x8e/xa3/xa3/xed <CJK> +<U6267> /x8e/xa3/xa3/xee <CJK> +<U6257> /x8e/xa3/xa3/xef <CJK> +<U9F50> /x8e/xa3/xa3/xf0 <CJK> +<U3AC3> /x8e/xa3/xa3/xf1 <CJK> +<U65EB> /x8e/xa3/xa3/xf2 <CJK> +<U65EA> /x8e/xa3/xa3/xf3 <CJK> +<U3B30> /x8e/xa3/xa3/xf4 <CJK> +<U6737> /x8e/xa3/xa3/xf5 <CJK> +<U3B41> /x8e/xa3/xa3/xf6 <CJK> +<U6732> /x8e/xa3/xa3/xf7 <CJK> +<U6736> /x8e/xa3/xa3/xf8 <CJK> +<U6B22> /x8e/xa3/xa3/xf9 <CJK> +<U6BCE> /x8e/xa3/xa3/xfa <CJK> +<U3C8C> /x8e/xa3/xa3/xfb <CJK> +<U6C58> /x8e/xa3/xa3/xfc <CJK> +<U6C51> /x8e/xa3/xa3/xfd <CJK> +<U6C77> /x8e/xa3/xa3/xfe <CJK> +<U6C3C> /x8e/xa3/xa4/xa1 <CJK> +<U3CBB> /x8e/xa3/xa4/xa2 <CJK> +<U6C5A> /x8e/xa3/xa4/xa3 <CJK> +<U00023C86> /x8e/xa3/xa4/xa4 <CJK> +<U6C53> /x8e/xa3/xa4/xa5 <CJK> +<U706F> /x8e/xa3/xa4/xa6 <CJK> +<U7072> /x8e/xa3/xa4/xa7 <CJK> +<U706E> /x8e/xa3/xa4/xa8 <CJK> +<U3DA1> /x8e/xa3/xa4/xaa <CJK> +<U7073> /x8e/xa3/xa4/xab <CJK> +<U72B1> /x8e/xa3/xa4/xac <CJK> +<U72B2> /x8e/xa3/xa4/xad <CJK> +<U3EA8> /x8e/xa3/xa4/xae <CJK> +<U738F> /x8e/xa3/xa4/xaf <CJK> +<U3EAA> /x8e/xa3/xa4/xb0 <CJK> +<U3EAB> /x8e/xa3/xa4/xb1 <CJK> +<U4096> /x8e/xa3/xa4/xb2 <CJK> +<U793C> /x8e/xa3/xa4/xb3 <CJK> +<U41C2> /x8e/xa3/xa4/xb4 <CJK> +<U808D> /x8e/xa3/xa4/xb5 <CJK> +<U808E> /x8e/xa3/xa4/xb6 <CJK> +<U4493> /x8e/xa3/xa4/xb7 <CJK> +<U827B> /x8e/xa3/xa4/xb8 <CJK> +<U4494> /x8e/xa3/xa4/xb9 <CJK> +<U8D71> /x8e/xa3/xa4/xba <CJK> +<U8FB9> /x8e/xa3/xa4/xbb <CJK> +<U9096> /x8e/xa3/xa4/xbc <CJK> +<U909A> /x8e/xa3/xa4/xbd <CJK> +<U49BB> /x8e/xa3/xa4/xbe <CJK> +<U4E24> /x8e/xa3/xa4/xbf <CJK> +<U4E71> /x8e/xa3/xa4/xc0 <CJK> +<U4E9C> /x8e/xa3/xa4/xc2 <CJK> +<U4F45> /x8e/xa3/xa4/xc3 <CJK> +<U4F4A> /x8e/xa3/xa4/xc4 <CJK> +<U4F39> /x8e/xa3/xa4/xc5 <CJK> +<U4F37> /x8e/xa3/xa4/xc6 <CJK> +<U3443> /x8e/xa3/xa4/xc7 <CJK> +<U4F32> /x8e/xa3/xa4/xc8 <CJK> +<U4F42> /x8e/xa3/xa4/xc9 <CJK> +<U3442> /x8e/xa3/xa4/xca <CJK> +<U4F44> /x8e/xa3/xa4/xcb <CJK> +<U4F4B> /x8e/xa3/xa4/xcc <CJK> +<U3444> /x8e/xa3/xa4/xcd <CJK> +<U4F40> /x8e/xa3/xa4/xce <CJK> +<U4F35> /x8e/xa3/xa4/xcf <CJK> +<U4F31> /x8e/xa3/xa4/xd0 <CJK> +<U5151> /x8e/xa3/xa4/xd1 <CJK> +<U5150> /x8e/xa3/xa4/xd3 <CJK> +<U514E> /x8e/xa3/xa4/xd4 <CJK> +<U34B3> /x8e/xa3/xa4/xd5 <CJK> +<U34B7> /x8e/xa3/xa4/xd6 <CJK> +<U519D> /x8e/xa3/xa4/xd7 <CJK> +<U34C8> /x8e/xa3/xa4/xd8 <CJK> +<U51B5> /x8e/xa3/xa4/xd9 <CJK> +<U51B8> /x8e/xa3/xa4/xda <CJK> +<U51EC> /x8e/xa3/xa4/xdb <CJK> +<U5223> /x8e/xa3/xa4/xdc <CJK> +<U5227> /x8e/xa3/xa4/xdd <CJK> +<U5226> /x8e/xa3/xa4/xde <CJK> +<U521F> /x8e/xa3/xa4/xdf <CJK> +<U522B> /x8e/xa3/xa4/xe0 <CJK> +<U5220> /x8e/xa3/xa4/xe1 <CJK> +<U52B4> /x8e/xa3/xa4/xe2 <CJK> +<U52B3> /x8e/xa3/xa4/xe3 <CJK> +<U3518> /x8e/xa3/xa4/xe4 <CJK> +<U5325> /x8e/xa3/xa4/xe5 <CJK> +<U533B> /x8e/xa3/xa4/xe6 <CJK> +<U5374> /x8e/xa3/xa4/xe7 <CJK> +<U3547> /x8e/xa3/xa4/xe8 <CJK> +<U3546> /x8e/xa3/xa4/xe9 <CJK> +<U3545> /x8e/xa3/xa4/xea <CJK> +<U356B> /x8e/xa3/xa4/xeb <CJK> +<U3569> /x8e/xa3/xa4/xec <CJK> +<U544D> /x8e/xa3/xa4/xed <CJK> +<U3572> /x8e/xa3/xa4/xee <CJK> +<U3571> /x8e/xa3/xa4/xef <CJK> +<U543A> /x8e/xa3/xa4/xf0 <CJK> +<U356C> /x8e/xa3/xa4/xf1 <CJK> +<U356F> /x8e/xa3/xa4/xf2 <CJK> +<U5444> /x8e/xa3/xa4/xf3 <CJK> +<U544C> /x8e/xa3/xa4/xf4 <CJK> +<U5423> /x8e/xa3/xa4/xf5 <CJK> +<U541A> /x8e/xa3/xa4/xf6 <CJK> +<U5432> /x8e/xa3/xa4/xf7 <CJK> +<U544B> /x8e/xa3/xa4/xf8 <CJK> +<U5421> /x8e/xa3/xa4/xf9 <CJK> +<U3573> /x8e/xa3/xa4/xfa <CJK> +<U5434> /x8e/xa3/xa4/xfb <CJK> +<U5449> /x8e/xa3/xa4/xfc <CJK> +<U5450> /x8e/xa3/xa4/xfd <CJK> +<U5422> /x8e/xa3/xa4/xfe <CJK> +<U543F> /x8e/xa3/xa5/xa1 <CJK> +<U5451> /x8e/xa3/xa5/xa2 <CJK> +<U545A> /x8e/xa3/xa5/xa3 <CJK> +<U542F> /x8e/xa3/xa5/xa4 <CJK> +<U3576> /x8e/xa3/xa5/xa5 <CJK> +<U56E9> /x8e/xa3/xa5/xa6 <CJK> +<U56F2> /x8e/xa3/xa5/xa7 <CJK> +<U56F3> /x8e/xa3/xa5/xa8 <CJK> +<U56EF> /x8e/xa3/xa5/xa9 <CJK> +<U56ED> /x8e/xa3/xa5/xaa <CJK> +<U56EC> /x8e/xa3/xa5/xab <CJK> +<U56E6> /x8e/xa3/xa5/xac <CJK> +<U5748> /x8e/xa3/xa5/xad <CJK> +<U3627> /x8e/xa3/xa5/xae <CJK> +<U5744> /x8e/xa3/xa5/xaf <CJK> +<U573F> /x8e/xa3/xa5/xb0 <CJK> +<U573C> /x8e/xa3/xa5/xb1 <CJK> +<U5753> /x8e/xa3/xa5/xb2 <CJK> +<U5756> /x8e/xa3/xa5/xb3 <CJK> +<U3630> /x8e/xa3/xa5/xb4 <CJK> +<U575F> /x8e/xa3/xa5/xb5 <CJK> +<U5743> /x8e/xa3/xa5/xb6 <CJK> +<U5758> /x8e/xa3/xa5/xb7 <CJK> +<U5757> /x8e/xa3/xa5/xb8 <CJK> +<U3629> /x8e/xa3/xa5/xb9 <CJK> +<U362A> /x8e/xa3/xa5/xba <CJK> +<U362F> /x8e/xa3/xa5/xbb <CJK> +<U5746> /x8e/xa3/xa5/xbc <CJK> +<U362C> /x8e/xa3/xa5/xbd <CJK> +<U573D> /x8e/xa3/xa5/xbe <CJK> +<U362D> /x8e/xa3/xa5/xbf <CJK> +<U5742> /x8e/xa3/xa5/xc0 <CJK> +<U5754> /x8e/xa3/xa5/xc1 <CJK> +<U5755> /x8e/xa3/xa5/xc2 <CJK> +<U58F1> /x8e/xa3/xa5/xc3 <CJK> +<U58F2> /x8e/xa3/xa5/xc4 <CJK> +<U58F0> /x8e/xa3/xa5/xc5 <CJK> +<U590B> /x8e/xa3/xa5/xc6 <CJK> +<U9EA6> /x8e/xa3/xa5/xc7 <CJK> +<U56F1> /x8e/xa3/xa5/xc8 <CJK> +<U593D> /x8e/xa3/xa5/xc9 <CJK> +<U3693> /x8e/xa3/xa5/xca <CJK> +<U5994> /x8e/xa3/xa5/xcb <CJK> +<U598C> /x8e/xa3/xa5/xcc <CJK> +<U36AD> /x8e/xa3/xa5/xcd <CJK> +<U599C> /x8e/xa3/xa5/xce <CJK> +<U36AC> /x8e/xa3/xa5/xcf <CJK> +<U36AB> /x8e/xa3/xa5/xd0 <CJK> +<U599F> /x8e/xa3/xa5/xd1 <CJK> +<U36A9> /x8e/xa3/xa5/xd2 <CJK> +<U599B> /x8e/xa3/xa5/xd3 <CJK> +<U36AE> /x8e/xa3/xa5/xd4 <CJK> +<U5989> /x8e/xa3/xa5/xd5 <CJK> +<U599A> /x8e/xa3/xa5/xd6 <CJK> +<U36AA> /x8e/xa3/xa5/xd7 <CJK> +<U6588> /x8e/xa3/xa5/xd8 <CJK> +<U374E> /x8e/xa3/xa5/xd9 <CJK> +<U5B8D> /x8e/xa3/xa5/xda <CJK> +<U3750> /x8e/xa3/xa5/xdb <CJK> +<U5BFE> /x8e/xa3/xa5/xdc <CJK> +<U5BFF> /x8e/xa3/xa5/xdd <CJK> +<U5BFD> /x8e/xa3/xa5/xde <CJK> +<U5C2B> /x8e/xa3/xa5/xdf <CJK> +<U37B2> /x8e/xa3/xa5/xe0 <CJK> +<U5C84> /x8e/xa3/xa5/xe1 <CJK> +<U5C8E> /x8e/xa3/xa5/xe2 <CJK> +<U5C9C> /x8e/xa3/xa5/xe3 <CJK> +<U37B5> /x8e/xa3/xa5/xe4 <CJK> +<U37B6> /x8e/xa3/xa5/xe5 <CJK> +<U5C85> /x8e/xa3/xa5/xe6 <CJK> +<U5DF5> /x8e/xa3/xa5/xe7 <CJK> +<U5E09> /x8e/xa3/xa5/xe8 <CJK> +<U3839> /x8e/xa3/xa5/xe9 <CJK> +<U383B> /x8e/xa3/xa5/xea <CJK> +<U5E0B> /x8e/xa3/xa5/xeb <CJK> +<U3872> /x8e/xa3/xa5/xec <CJK> +<U5E92> /x8e/xa3/xa5/xed <CJK> +<U5E90> /x8e/xa3/xa5/xee <CJK> +<U5F03> /x8e/xa3/xa5/xef <CJK> +<U38AC> /x8e/xa3/xa5/xf0 <CJK> +<U5F1E> /x8e/xa3/xa5/xf1 <CJK> +<U5F63> /x8e/xa3/xa5/xf2 <CJK> +<U3908> /x8e/xa3/xa5/xf3 <CJK> +<U5FE7> /x8e/xa3/xa5/xf4 <CJK> +<U5FFE> /x8e/xa3/xa5/xf5 <CJK> +<U5FE6> /x8e/xa3/xa5/xf6 <CJK> +<U5FDC> /x8e/xa3/xa5/xf7 <CJK> +<U5FCE> /x8e/xa3/xa5/xf8 <CJK> +<U3903> /x8e/xa3/xa5/xf9 <CJK> +<U5FFC> /x8e/xa3/xa5/xfa <CJK> +<U5FDF> /x8e/xa3/xa5/xfb <CJK> +<U5FEC> /x8e/xa3/xa5/xfc <CJK> +<U5FF6> /x8e/xa3/xa5/xfd <CJK> +<U000225D7> /x8e/xa3/xa5/xfe <CJK> +<U5FF2> /x8e/xa3/xa6/xa1 <CJK> +<U5FF0> /x8e/xa3/xa6/xa2 <CJK> +<U5FF9> /x8e/xa3/xa6/xa3 <CJK> +<U390B> /x8e/xa3/xa6/xa4 <CJK> +<U6213> /x8e/xa3/xa6/xa5 <CJK> +<U39AF> /x8e/xa3/xa6/xa6 <CJK> +<U623B> /x8e/xa3/xa6/xa8 <CJK> +<U623C> /x8e/xa3/xa6/xa9 <CJK> +<U6282> /x8e/xa3/xa6/xaa <CJK> +<U39CE> /x8e/xa3/xa6/xab <CJK> +<U39CB> /x8e/xa3/xa6/xac <CJK> +<U39CC> /x8e/xa3/xa6/xad <CJK> +<U6278> /x8e/xa3/xa6/xae <CJK> +<U628B> /x8e/xa3/xa6/xaf <CJK> +<U39CD> /x8e/xa3/xa6/xb0 <CJK> +<U629E> /x8e/xa3/xa6/xb1 <CJK> +<U62A5> /x8e/xa3/xa6/xb2 <CJK> +<U629B> /x8e/xa3/xa6/xb3 <CJK> +<U629C> /x8e/xa3/xa6/xb4 <CJK> +<U6299> /x8e/xa3/xa6/xb5 <CJK> +<U628D> /x8e/xa3/xa6/xb6 <CJK> +<U6285> /x8e/xa3/xa6/xb7 <CJK> +<U629D> /x8e/xa3/xa6/xb8 <CJK> +<U6275> /x8e/xa3/xa6/xb9 <CJK> +<U3A80> /x8e/xa3/xa6/xba <CJK> +<U3AAF> /x8e/xa3/xa6/xbb <CJK> +<U3AD3> /x8e/xa3/xa6/xbc <CJK> +<U65F6> /x8e/xa3/xa6/xbd <CJK> +<U3AD5> /x8e/xa3/xa6/xbe <CJK> +<U3AD4> /x8e/xa3/xa6/xbf <CJK> +<U3AD7> /x8e/xa3/xa6/xc0 <CJK> +<U66F5> /x8e/xa3/xa6/xc1 <CJK> +<U675B> /x8e/xa3/xa6/xc2 <CJK> +<U3B42> /x8e/xa3/xa6/xc3 <CJK> +<U6754> /x8e/xa3/xa6/xc4 <CJK> +<U6752> /x8e/xa3/xa6/xc5 <CJK> +<U3B44> /x8e/xa3/xa6/xc6 <CJK> +<U6758> /x8e/xa3/xa6/xc7 <CJK> +<U6744> /x8e/xa3/xa6/xc8 <CJK> +<U674A> /x8e/xa3/xa6/xc9 <CJK> +<U6761> /x8e/xa3/xa6/xca <CJK> +<U3CC6> /x8e/xa3/xa6/xcb <CJK> +<U6C7F> /x8e/xa3/xa6/xcc <CJK> +<U6C91> /x8e/xa3/xa6/xcd <CJK> +<U6C9E> /x8e/xa3/xa6/xce <CJK> +<U3CC0> /x8e/xa3/xa6/xcf <CJK> +<U6C6E> /x8e/xa3/xa6/xd0 <CJK> +<U6C7C> /x8e/xa3/xa6/xd1 <CJK> +<U6C9F> /x8e/xa3/xa6/xd2 <CJK> +<U6C75> /x8e/xa3/xa6/xd3 <CJK> +<U3CBE> /x8e/xa3/xa6/xd4 <CJK> +<U6C56> /x8e/xa3/xa6/xd5 <CJK> +<U6CA2> /x8e/xa3/xa6/xd6 <CJK> +<U6C79> /x8e/xa3/xa6/xd7 <CJK> +<U3CCA> /x8e/xa3/xa6/xd8 <CJK> +<U6CA1> /x8e/xa3/xa6/xd9 <CJK> +<U3CC4> /x8e/xa3/xa6/xda <CJK> +<U6CAA> /x8e/xa3/xa6/xdb <CJK> +<U6CA0> /x8e/xa3/xa6/xdc <CJK> +<U3CC2> /x8e/xa3/xa6/xdd <CJK> +<U7079> /x8e/xa3/xa6/xde <CJK> +<U7077> /x8e/xa3/xa6/xdf <CJK> +<U707E> /x8e/xa3/xa6/xe0 <CJK> +<U3DA4> /x8e/xa3/xa6/xe1 <CJK> +<U7075> /x8e/xa3/xa6/xe2 <CJK> +<U707B> /x8e/xa3/xa6/xe3 <CJK> +<U7264> /x8e/xa3/xa6/xe4 <CJK> +<U3E29> /x8e/xa3/xa6/xe5 <CJK> +<U72BB> /x8e/xa3/xa6/xe6 <CJK> +<U72BC> /x8e/xa3/xa6/xe7 <CJK> +<U72C7> /x8e/xa3/xa6/xe8 <CJK> +<U72B9> /x8e/xa3/xa6/xe9 <CJK> +<U72BE> /x8e/xa3/xa6/xea <CJK> +<U72B6> /x8e/xa3/xa6/xeb <CJK> +<U3E60> /x8e/xa3/xa6/xec <CJK> +<U3E5E> /x8e/xa3/xa6/xed <CJK> +<U7398> /x8e/xa3/xa6/xee <CJK> +<U3EAD> /x8e/xa3/xa6/xef <CJK> +<U3EAE> /x8e/xa3/xa6/xf0 <CJK> +<U3EAC> /x8e/xa3/xa6/xf1 <CJK> +<U3F57> /x8e/xa3/xa6/xf2 <CJK> +<U7593> /x8e/xa3/xa6/xf3 <CJK> +<U7680> /x8e/xa3/xa6/xf4 <CJK> +<U3FDD> /x8e/xa3/xa6/xf5 <CJK> +<U7683> /x8e/xa3/xa6/xf6 <CJK> +<U76C0> /x8e/xa3/xa6/xf7 <CJK> +<U76C1> /x8e/xa3/xa6/xf8 <CJK> +<U400E> /x8e/xa3/xa6/xf9 <CJK> +<U4097> /x8e/xa3/xa6/xfa <CJK> +<U77F4> /x8e/xa3/xa6/xfb <CJK> +<U77F5> /x8e/xa3/xa6/xfc <CJK> +<U4127> /x8e/xa3/xa6/xfd <CJK> +<U7ACC> /x8e/xa3/xa6/xfe <CJK> +<U7ACD> /x8e/xa3/xa7/xa1 <CJK> +<U7CFA> /x8e/xa3/xa7/xa2 <CJK> +<U809F> /x8e/xa3/xa7/xa3 <CJK> +<U8091> /x8e/xa3/xa7/xa4 <CJK> +<U8097> /x8e/xa3/xa7/xa5 <CJK> +<U8094> /x8e/xa3/xa7/xa6 <CJK> +<U4495> /x8e/xa3/xa7/xa7 <CJK> +<U8286> /x8e/xa3/xa7/xa8 <CJK> +<U828C> /x8e/xa3/xa7/xa9 <CJK> +<U8295> /x8e/xa3/xa7/xab <CJK> +<U4498> /x8e/xa3/xa7/xac <CJK> +<U866C> /x8e/xa3/xa7/xad <CJK> +<U459D> /x8e/xa3/xa7/xae <CJK> +<U8FB5> /x8e/xa3/xa7/xaf <CJK> +<U8FBE> /x8e/xa3/xa7/xb0 <CJK> +<U8FC7> /x8e/xa3/xa7/xb1 <CJK> +<U488A> /x8e/xa3/xa7/xb2 <CJK> +<U8FC1> /x8e/xa3/xa7/xb3 <CJK> +<U90A9> /x8e/xa3/xa7/xb4 <CJK> +<U90A4> /x8e/xa3/xa7/xb5 <CJK> +<U48B5> /x8e/xa3/xa7/xb6 <CJK> +<U48B6> /x8e/xa3/xa7/xb7 <CJK> +<U48B7> /x8e/xa3/xa7/xb8 <CJK> +<U90A8> /x8e/xa3/xa7/xb9 <CJK> +<U9627> /x8e/xa3/xa7/xba <CJK> +<U9626> /x8e/xa3/xa7/xbb <CJK> +<U962B> /x8e/xa3/xa7/xbc <CJK> +<U9633> /x8e/xa3/xa7/xbd <CJK> +<U9634> /x8e/xa3/xa7/xbe <CJK> +<U9629> /x8e/xa3/xa7/xbf <CJK> +<U4E3D> /x8e/xa3/xa7/xc0 <CJK> +<U3428> /x8e/xa3/xa7/xc1 <CJK> +<U4E9D> /x8e/xa3/xa7/xc2 <CJK> +<U4F93> /x8e/xa3/xa7/xc3 <CJK> +<U4F8A> /x8e/xa3/xa7/xc4 <CJK> +<U344D> /x8e/xa3/xa7/xc5 <CJK> +<U3449> /x8e/xa3/xa7/xc6 <CJK> +<U4F6D> /x8e/xa3/xa7/xc7 <CJK> +<U4F8E> /x8e/xa3/xa7/xc8 <CJK> +<U4FA0> /x8e/xa3/xa7/xc9 <CJK> +<U4FA2> /x8e/xa3/xa7/xca <CJK> +<U4FA1> /x8e/xa3/xa7/xcb <CJK> +<U4F9F> /x8e/xa3/xa7/xcc <CJK> +<U4FA3> /x8e/xa3/xa7/xcd <CJK> +<U00020209> /x8e/xa3/xa7/xce <CJK> +<U4F72> /x8e/xa3/xa7/xcf <CJK> +<U3451> /x8e/xa3/xa7/xd0 <CJK> +<U4F8C> /x8e/xa3/xa7/xd1 <CJK> +<U5156> /x8e/xa3/xa7/xd2 <CJK> +<U5190> /x8e/xa3/xa7/xd5 <CJK> +<U34CB> /x8e/xa3/xa7/xd6 <CJK> +<U34CA> /x8e/xa3/xa7/xd7 <CJK> +<U34CC> /x8e/xa3/xa7/xd8 <CJK> +<U51ED> /x8e/xa3/xa7/xd9 <CJK> +<U51FE> /x8e/xa3/xa7/xda <CJK> +<U522F> /x8e/xa3/xa7/xdb <CJK> +<U000206EC> /x8e/xa3/xa7/xdc <CJK> +<U523C> /x8e/xa3/xa7/xdd <CJK> +<U5234> /x8e/xa3/xa7/xde <CJK> +<U5239> /x8e/xa3/xa7/xdf <CJK> +<U52B9> /x8e/xa3/xa7/xe0 <CJK> +<U52B5> /x8e/xa3/xa7/xe1 <CJK> +<U52BF> /x8e/xa3/xa7/xe2 <CJK> +<U5355> /x8e/xa3/xa7/xe3 <CJK> +<U353D> /x8e/xa3/xa7/xe4 <CJK> +<U5376> /x8e/xa3/xa7/xe5 <CJK> +<U537A> /x8e/xa3/xa7/xe6 <CJK> +<U5393> /x8e/xa3/xa7/xe7 <CJK> +<U3548> /x8e/xa3/xa7/xe8 <CJK> +<U53C1> /x8e/xa3/xa7/xe9 <CJK> +<U53C2> /x8e/xa3/xa7/xea <CJK> +<U53D5> /x8e/xa3/xa7/xeb <CJK> +<U5485> /x8e/xa3/xa7/xec <CJK> +<U3578> /x8e/xa3/xa7/xed <CJK> +<U545F> /x8e/xa3/xa7/xee <CJK> +<U5493> /x8e/xa3/xa7/xef <CJK> +<U5489> /x8e/xa3/xa7/xf0 <CJK> +<U5479> /x8e/xa3/xa7/xf1 <CJK> +<U9EFE> /x8e/xa3/xa7/xf2 <CJK> +<U548F> /x8e/xa3/xa7/xf3 <CJK> +<U5469> /x8e/xa3/xa7/xf4 <CJK> +<U546D> /x8e/xa3/xa7/xf5 <CJK> +<U357A> /x8e/xa3/xa7/xf6 <CJK> +<U5494> /x8e/xa3/xa7/xf7 <CJK> +<U546A> /x8e/xa3/xa7/xf8 <CJK> +<U548A> /x8e/xa3/xa7/xf9 <CJK> +<U3577> /x8e/xa3/xa7/xfa <CJK> +<U56FD> /x8e/xa3/xa7/xfb <CJK> +<U56FB> /x8e/xa3/xa7/xfc <CJK> +<U56F8> /x8e/xa3/xa7/xfd <CJK> +<U3621> /x8e/xa3/xa7/xfe <CJK> +<U56FC> /x8e/xa3/xa8/xa1 <CJK> +<U56F6> /x8e/xa3/xa8/xa2 <CJK> +<U5765> /x8e/xa3/xa8/xa3 <CJK> +<U5781> /x8e/xa3/xa8/xa4 <CJK> +<U5763> /x8e/xa3/xa8/xa5 <CJK> +<U5767> /x8e/xa3/xa8/xa6 <CJK> +<U3631> /x8e/xa3/xa8/xa7 <CJK> +<U576E> /x8e/xa3/xa8/xa8 <CJK> +<U5778> /x8e/xa3/xa8/xa9 <CJK> +<U577F> /x8e/xa3/xa8/xaa <CJK> +<U3633> /x8e/xa3/xa8/xab <CJK> +<U3634> /x8e/xa3/xa8/xac <CJK> +<U58F3> /x8e/xa3/xa8/xad <CJK> +<U594B> /x8e/xa3/xa8/xae <CJK> +<U594C> /x8e/xa3/xa8/xaf <CJK> +<U36C1> /x8e/xa3/xa8/xb0 <CJK> +<U36B0> /x8e/xa3/xa8/xb1 <CJK> +<U36B4> /x8e/xa3/xa8/xb2 <CJK> +<U59AD> /x8e/xa3/xa8/xb3 <CJK> +<U36B8> /x8e/xa3/xa8/xb4 <CJK> +<U59C4> /x8e/xa3/xa8/xb5 <CJK> +<U36BC> /x8e/xa3/xa8/xb6 <CJK> +<U59C2> /x8e/xa3/xa8/xb7 <CJK> +<U59B0> /x8e/xa3/xa8/xb8 <CJK> +<U36BF> /x8e/xa3/xa8/xb9 <CJK> +<U36B5> /x8e/xa3/xa8/xba <CJK> +<U36B1> /x8e/xa3/xa8/xbb <CJK> +<U36BD> /x8e/xa3/xa8/xbc <CJK> +<U59BF> /x8e/xa3/xa8/xbd <CJK> +<U36BB> /x8e/xa3/xa8/xbe <CJK> +<U59C9> /x8e/xa3/xa8/xbf <CJK> +<U59B8> /x8e/xa3/xa8/xc0 <CJK> +<U59AC> /x8e/xa3/xa8/xc1 <CJK> +<U36B3> /x8e/xa3/xa8/xc2 <CJK> +<U36B6> /x8e/xa3/xa8/xc3 <CJK> +<U36BA> /x8e/xa3/xa8/xc4 <CJK> +<U59B7> /x8e/xa3/xa8/xc5 <CJK> +<U59D7> /x8e/xa3/xa8/xc6 <CJK> +<U36B7> /x8e/xa3/xa8/xc7 <CJK> +<U5B60> /x8e/xa3/xa8/xc8 <CJK> +<U3740> /x8e/xa3/xa8/xc9 <CJK> +<U5B96> /x8e/xa3/xa8/xca <CJK> +<U5B9E> /x8e/xa3/xa8/xcb <CJK> +<U5B94> /x8e/xa3/xa8/xcc <CJK> +<U5B9F> /x8e/xa3/xa8/xcd <CJK> +<U5B9D> /x8e/xa3/xa8/xce <CJK> +<U3752> /x8e/xa3/xa8/xcf <CJK> +<U5C00> /x8e/xa3/xa8/xd0 <CJK> +<U5C19> /x8e/xa3/xa8/xd1 <CJK> +<U3790> /x8e/xa3/xa8/xd2 <CJK> +<U3791> /x8e/xa3/xa8/xd3 <CJK> +<U5C49> /x8e/xa3/xa8/xd4 <CJK> +<U5C4A> /x8e/xa3/xa8/xd5 <CJK> +<U37BE> /x8e/xa3/xa8/xd6 <CJK> +<U5CBB> /x8e/xa3/xa8/xd7 <CJK> +<U5CC1> /x8e/xa3/xa8/xd8 <CJK> +<U37C0> /x8e/xa3/xa8/xd9 <CJK> +<U37C1> /x8e/xa3/xa8/xda <CJK> +<U37B9> /x8e/xa3/xa8/xdb <CJK> +<U5CB9> /x8e/xa3/xa8/xdc <CJK> +<U5C9E> /x8e/xa3/xa8/xdd <CJK> +<U5CB4> /x8e/xa3/xa8/xde <CJK> +<U5CBA> /x8e/xa3/xa8/xdf <CJK> +<U5DF6> /x8e/xa3/xa8/xe0 <CJK> +<U5E13> /x8e/xa3/xa8/xe1 <CJK> +<U5E12> /x8e/xa3/xa8/xe2 <CJK> +<U5E77> /x8e/xa3/xa8/xe3 <CJK> +<U3879> /x8e/xa3/xa8/xe4 <CJK> +<U5E98> /x8e/xa3/xa8/xe5 <CJK> +<U387B> /x8e/xa3/xa8/xe6 <CJK> +<U5E99> /x8e/xa3/xa8/xe7 <CJK> +<U5E9D> /x8e/xa3/xa8/xe8 <CJK> +<U5EF8> /x8e/xa3/xa8/xe9 <CJK> +<U38A0> /x8e/xa3/xa8/xea <CJK> +<U5EF9> /x8e/xa3/xa8/xeb <CJK> +<U3429> /x8e/xa3/xa8/xec <CJK> +<U5F06> /x8e/xa3/xa8/xed <CJK> +<U5F21> /x8e/xa3/xa8/xee <CJK> +<U38AE> /x8e/xa3/xa8/xef <CJK> +<U5F25> /x8e/xa3/xa8/xf0 <CJK> +<U5F55> /x8e/xa3/xa8/xf1 <CJK> +<U38CD> /x8e/xa3/xa8/xf2 <CJK> +<U38CB> /x8e/xa3/xa8/xf3 <CJK> +<U38D9> /x8e/xa3/xa8/xf4 <CJK> +<U5F84> /x8e/xa3/xa8/xf5 <CJK> +<U5F83> /x8e/xa3/xa8/xf6 <CJK> +<U6030> /x8e/xa3/xa8/xf7 <CJK> +<U6007> /x8e/xa3/xa8/xf8 <CJK> +<U390C> /x8e/xa3/xa8/xf9 <CJK> +<U6036> /x8e/xa3/xa8/xfa <CJK> +<U3901> /x8e/xa3/xa8/xfb <CJK> +<U3905> /x8e/xa3/xa8/xfc <CJK> +<U3902> /x8e/xa3/xa8/xfd <CJK> +<U5FE9> /x8e/xa3/xa8/xfe <CJK> +<U603D> /x8e/xa3/xa9/xa1 <CJK> +<U6008> /x8e/xa3/xa9/xa2 <CJK> +<U3913> /x8e/xa3/xa9/xa3 <CJK> +<U3911> /x8e/xa3/xa9/xa4 <CJK> +<U62BA> /x8e/xa3/xa9/xa5 <CJK> +<U62B2> /x8e/xa3/xa9/xa6 <CJK> +<U39E4> /x8e/xa3/xa9/xa7 <CJK> +<U62B7> /x8e/xa3/xa9/xa8 <CJK> +<U62E4> /x8e/xa3/xa9/xa9 <CJK> +<U62A7> /x8e/xa3/xa9/xaa <CJK> +<U39DA> /x8e/xa3/xa9/xab <CJK> +<U39D5> /x8e/xa3/xa9/xac <CJK> +<U39D3> /x8e/xa3/xa9/xad <CJK> +<U62D5> /x8e/xa3/xa9/xae <CJK> +<U62E1> /x8e/xa3/xa9/xaf <CJK> +<U62DD> /x8e/xa3/xa9/xb0 <CJK> +<U62A6> /x8e/xa3/xa9/xb1 <CJK> +<U62C1> /x8e/xa3/xa9/xb2 <CJK> +<U62C5> /x8e/xa3/xa9/xb3 <CJK> +<U62C0> /x8e/xa3/xa9/xb4 <CJK> +<U62DF> /x8e/xa3/xa9/xb5 <CJK> +<U62E0> /x8e/xa3/xa9/xb6 <CJK> +<U62DE> /x8e/xa3/xa9/xb7 <CJK> +<U39D6> /x8e/xa3/xa9/xb8 <CJK> +<U6589> /x8e/xa3/xa9/xb9 <CJK> +<U3AB4> /x8e/xa3/xa9/xba <CJK> +<U65A6> /x8e/xa3/xa9/xbb <CJK> +<U65BA> /x8e/xa3/xa9/xbc <CJK> +<U3AD9> /x8e/xa3/xa9/xbd <CJK> +<U65FF> /x8e/xa3/xa9/xbe <CJK> +<U3AD8> /x8e/xa3/xa9/xbf <CJK> +<U6617> /x8e/xa3/xa9/xc0 <CJK> +<U6618> /x8e/xa3/xa9/xc1 <CJK> +<U6601> /x8e/xa3/xa9/xc2 <CJK> +<U65FE> /x8e/xa3/xa9/xc3 <CJK> +<U3B33> /x8e/xa3/xa9/xc4 <CJK> +<U670C> /x8e/xa3/xa9/xc5 <CJK> +<U3B48> /x8e/xa3/xa9/xc6 <CJK> +<U676B> /x8e/xa3/xa9/xc7 <CJK> +<U6796> /x8e/xa3/xa9/xc8 <CJK> +<U6782> /x8e/xa3/xa9/xc9 <CJK> +<U678A> /x8e/xa3/xa9/xca <CJK> +<U3B47> /x8e/xa3/xa9/xcb <CJK> +<U67A3> /x8e/xa3/xa9/xcc <CJK> +<U3B4B> /x8e/xa3/xa9/xcd <CJK> +<U67A2> /x8e/xa3/xa9/xce <CJK> +<U678F> /x8e/xa3/xa9/xcf <CJK> +<U3B4A> /x8e/xa3/xa9/xd0 <CJK> +<U67F9> /x8e/xa3/xa9/xd1 <CJK> +<U6780> /x8e/xa3/xa9/xd2 <CJK> +<U6B26> /x8e/xa3/xa9/xd3 <CJK> +<U6B27> /x8e/xa3/xa9/xd4 <CJK> +<U6B68> /x8e/xa3/xa9/xd5 <CJK> +<U6B69> /x8e/xa3/xa9/xd6 <CJK> +<U3C5A> /x8e/xa3/xa9/xd7 <CJK> +<U6B81> /x8e/xa3/xa9/xd8 <CJK> +<U6BB4> /x8e/xa3/xa9/xd9 <CJK> +<U6BD1> /x8e/xa3/xa9/xda <CJK> +<U3C8E> /x8e/xa3/xa9/xdb <CJK> +<U3CB4> /x8e/xa3/xa9/xdc <CJK> +<U6C1C> /x8e/xa3/xa9/xdd <CJK> +<U3CCD> /x8e/xa3/xa9/xde <CJK> +<U3CCC> /x8e/xa3/xa9/xdf <CJK> +<U3CCF> /x8e/xa3/xa9/xe0 <CJK> +<U3CCB> /x8e/xa3/xa9/xe1 <CJK> +<U3CCE> /x8e/xa3/xa9/xe2 <CJK> +<U6C97> /x8e/xa3/xa9/xe3 <CJK> +<U6C6C> /x8e/xa3/xa9/xe4 <CJK> +<U6CDF> /x8e/xa3/xa9/xe5 <CJK> +<U3CD2> /x8e/xa3/xa9/xe6 <CJK> +<U6CEA> /x8e/xa3/xa9/xe7 <CJK> +<U3CD1> /x8e/xa3/xa9/xe8 <CJK> +<U6CE4> /x8e/xa3/xa9/xe9 <CJK> +<U6CD8> /x8e/xa3/xa9/xea <CJK> +<U6CB2> /x8e/xa3/xa9/xeb <CJK> +<U6CCE> /x8e/xa3/xa9/xec <CJK> +<U6CC8> /x8e/xa3/xa9/xed <CJK> +<U3DA6> /x8e/xa3/xa9/xee <CJK> +<U708B> /x8e/xa3/xa9/xef <CJK> +<U7088> /x8e/xa3/xa9/xf0 <CJK> +<U7090> /x8e/xa3/xa9/xf1 <CJK> +<U708F> /x8e/xa3/xa9/xf2 <CJK> +<U3DAA> /x8e/xa3/xa9/xf3 <CJK> +<U7087> /x8e/xa3/xa9/xf4 <CJK> +<U7089> /x8e/xa3/xa9/xf5 <CJK> +<U708D> /x8e/xa3/xa9/xf6 <CJK> +<U7081> /x8e/xa3/xa9/xf7 <CJK> +<U3DA8> /x8e/xa3/xa9/xf8 <CJK> +<U708C> /x8e/xa3/xa9/xf9 <CJK> +<U3E13> /x8e/xa3/xa9/xfa <CJK> +<U3E1A> /x8e/xa3/xa9/xfb <CJK> +<U7240> /x8e/xa3/xa9/xfc <CJK> +<U3E1D> /x8e/xa3/xa9/xfd <CJK> +<U3E1E> /x8e/xa3/xa9/xfe <CJK> +<U7265> /x8e/xa3/xaa/xa1 <CJK> +<U7266> /x8e/xa3/xaa/xa2 <CJK> +<U7268> /x8e/xa3/xaa/xa3 <CJK> +<U3E65> /x8e/xa3/xaa/xa4 <CJK> +<U3E66> /x8e/xa3/xaa/xa5 <CJK> +<U72CD> /x8e/xa3/xaa/xa6 <CJK> +<U72D3> /x8e/xa3/xaa/xa7 <CJK> +<U72DB> /x8e/xa3/xaa/xa8 <CJK> +<U3E64> /x8e/xa3/xaa/xa9 <CJK> +<U72CF> /x8e/xa3/xaa/xaa <CJK> +<U73A7> /x8e/xa3/xaa/xab <CJK> +<U73A3> /x8e/xa3/xaa/xac <CJK> +<U739E> /x8e/xa3/xaa/xad <CJK> +<U3EB0> /x8e/xa3/xaa/xae <CJK> +<U73AF> /x8e/xa3/xaa/xaf <CJK> +<U3EB3> /x8e/xa3/xaa/xb0 <CJK> +<U3EB5> /x8e/xa3/xaa/xb1 <CJK> +<U73AA> /x8e/xa3/xaa/xb2 <CJK> +<U739C> /x8e/xa3/xaa/xb3 <CJK> +<U3F19> /x8e/xa3/xaa/xb4 <CJK> +<U7542> /x8e/xa3/xaa/xb5 <CJK> +<U7544> /x8e/xa3/xaa/xb6 <CJK> +<U753B> /x8e/xa3/xaa/xb7 <CJK> +<U7541> /x8e/xa3/xaa/xb8 <CJK> +<U0002233F> /x8e/xa3/xaa/xb9 <CJK> +<U759B> /x8e/xa3/xaa/xba <CJK> +<U759E> /x8e/xa3/xaa/xbb <CJK> +<U3F75> /x8e/xa3/xaa/xbc <CJK> +<U79C4> /x8e/xa3/xaa/xbd <CJK> +<U79C3> /x8e/xa3/xaa/xbe <CJK> +<U79C6> /x8e/xa3/xaa/xbf <CJK> +<U412B> /x8e/xa3/xaa/xc0 <CJK> +<U412C> /x8e/xa3/xaa/xc1 <CJK> +<U79C7> /x8e/xa3/xaa/xc2 <CJK> +<U412D> /x8e/xa3/xaa/xc3 <CJK> +<U79CA> /x8e/xa3/xaa/xc4 <CJK> +<U0002592E> /x8e/xa3/xaa/xc5 <CJK> +<U41C3> /x8e/xa3/xaa/xc6 <CJK> +<U7ACF> /x8e/xa3/xaa/xc7 <CJK> +<U7C76> /x8e/xa3/xaa/xc8 <CJK> +<U7C74> /x8e/xa3/xaa/xc9 <CJK> +<U7CFF> /x8e/xa3/xaa/xca <CJK> +<U7CFC> /x8e/xa3/xaa/xcb <CJK> +<U34BA> /x8e/xa3/xaa/xcc <CJK> +<U4350> /x8e/xa3/xaa/xcd <CJK> +<U7F59> /x8e/xa3/xaa/xce <CJK> +<U80A8> /x8e/xa3/xaa/xcf <CJK> +<U43D3> /x8e/xa3/xaa/xd0 <CJK> +<U43D0> /x8e/xa3/xaa/xd1 <CJK> +<U80B0> /x8e/xa3/xaa/xd2 <CJK> +<U43DC> /x8e/xa3/xaa/xd3 <CJK> +<U80B3> /x8e/xa3/xaa/xd4 <CJK> +<U43D2> /x8e/xa3/xaa/xd5 <CJK> +<U80A4> /x8e/xa3/xaa/xd6 <CJK> +<U80B6> /x8e/xa3/xaa/xd7 <CJK> +<U80A7> /x8e/xa3/xaa/xd8 <CJK> +<U80AC> /x8e/xa3/xaa/xd9 <CJK> +<U43DB> /x8e/xa3/xaa/xda <CJK> +<U80A6> /x8e/xa3/xaa/xdb <CJK> +<U5367> /x8e/xa3/xaa/xdc <CJK> +<U820E> /x8e/xa3/xaa/xdd <CJK> +<U82C4> /x8e/xa3/xaa/xde <CJK> +<U833E> /x8e/xa3/xaa/xdf <CJK> +<U829C> /x8e/xa3/xaa/xe0 <CJK> +<U44A5> /x8e/xa3/xaa/xe1 <CJK> +<U449F> /x8e/xa3/xaa/xe2 <CJK> +<U449A> /x8e/xa3/xaa/xe3 <CJK> +<U449C> /x8e/xa3/xaa/xe4 <CJK> +<U44A2> /x8e/xa3/xaa/xe5 <CJK> +<U82AA> /x8e/xa3/xaa/xe6 <CJK> +<U449B> /x8e/xa3/xaa/xe7 <CJK> +<U82C9> /x8e/xa3/xaa/xe8 <CJK> +<U44A3> /x8e/xa3/xaa/xe9 <CJK> +<U449D> /x8e/xa3/xaa/xea <CJK> +<U82A6> /x8e/xa3/xaa/xeb <CJK> +<U82B2> /x8e/xa3/xaa/xec <CJK> +<U4588> /x8e/xa3/xaa/xed <CJK> +<U461A> /x8e/xa3/xaa/xee <CJK> +<U488D> /x8e/xa3/xaa/xef <CJK> +<U8FCC> /x8e/xa3/xaa/xf0 <CJK> +<U8FD9> /x8e/xa3/xaa/xf1 <CJK> +<U8FCA> /x8e/xa3/xaa/xf2 <CJK> +<U8FD8> /x8e/xa3/xaa/xf3 <CJK> +<U8FCF> /x8e/xa3/xaa/xf4 <CJK> +<U90B7> /x8e/xa3/xaa/xf5 <CJK> +<U48B8> /x8e/xa3/xaa/xf6 <CJK> +<U90AD> /x8e/xa3/xaa/xf7 <CJK> +<U90B9> /x8e/xa3/xaa/xf8 <CJK> +<U9637> /x8e/xa3/xaa/xf9 <CJK> +<U49C3> /x8e/xa3/xaa/xfa <CJK> +<U9641> /x8e/xa3/xaa/xfb <CJK> +<U963E> /x8e/xa3/xaa/xfc <CJK> +<U96B6> /x8e/xa3/xaa/xfd <CJK> +<U9751> /x8e/xa3/xaa/xfe <CJK> +<U9763> /x8e/xa3/xab/xa1 <CJK> +<U4E57> /x8e/xa3/xab/xa2 <CJK> +<U4E79> /x8e/xa3/xab/xa3 <CJK> +<U4EB2> /x8e/xa3/xab/xa4 <CJK> +<U4EB0> /x8e/xa3/xab/xa5 <CJK> +<U4EAF> /x8e/xa3/xab/xa6 <CJK> +<U4EB1> /x8e/xa3/xab/xa7 <CJK> +<U4FD2> /x8e/xa3/xab/xa8 <CJK> +<U4FD5> /x8e/xa3/xab/xa9 <CJK> +<U345D> /x8e/xa3/xab/xaa <CJK> +<U4FBE> /x8e/xa3/xab/xab <CJK> +<U4FB8> /x8e/xa3/xab/xac <CJK> +<U4FB0> /x8e/xa3/xab/xad <CJK> +<U4FB1> /x8e/xa3/xab/xae <CJK> +<U4FC8> /x8e/xa3/xab/xaf <CJK> +<U345A> /x8e/xa3/xab/xb0 <CJK> +<U3457> /x8e/xa3/xab/xb1 <CJK> +<U4FC6> /x8e/xa3/xab/xb2 <CJK> +<U4FCC> /x8e/xa3/xab/xb3 <CJK> +<U4FE5> /x8e/xa3/xab/xb4 <CJK> +<U4FE3> /x8e/xa3/xab/xb5 <CJK> +<U4FB4> /x8e/xa3/xab/xb6 <CJK> +<U516A> /x8e/xa3/xab/xb7 <CJK> +<U34B8> /x8e/xa3/xab/xb8 <CJK> +<U519F> /x8e/xa3/xab/xb9 <CJK> +<U34C2> /x8e/xa3/xab/xba <CJK> +<U51C1> /x8e/xa3/xab/xbb <CJK> +<U34CF> /x8e/xa3/xab/xbc <CJK> +<U51C2> /x8e/xa3/xab/xbd <CJK> +<U51C3> /x8e/xa3/xab/xbe <CJK> +<U5245> /x8e/xa3/xab/xbf <CJK> +<U5248> /x8e/xa3/xab/xc0 <CJK> +<U34E7> /x8e/xa3/xab/xc1 <CJK> +<U34E9> /x8e/xa3/xab/xc2 <CJK> +<U524F> /x8e/xa3/xab/xc3 <CJK> +<U4452> /x8e/xa3/xab/xc4 <CJK> +<U34E8> /x8e/xa3/xab/xc5 <CJK> +<U52C5> /x8e/xa3/xab/xc6 <CJK> +<U52CA> /x8e/xa3/xab/xc7 <CJK> +<U52C4> /x8e/xa3/xab/xc8 <CJK> +<U5327> /x8e/xa3/xab/xc9 <CJK> +<U5358> /x8e/xa3/xab/xca <CJK> +<U537D> /x8e/xa3/xab/xcb <CJK> +<U354A> /x8e/xa3/xab/xcc <CJK> +<U53DD> /x8e/xa3/xab/xcd <CJK> +<U53DC> /x8e/xa3/xab/xce <CJK> +<U53DA> /x8e/xa3/xab/xcf <CJK> +<U53D9> /x8e/xa3/xab/xd0 <CJK> +<U54B9> /x8e/xa3/xab/xd1 <CJK> +<U3580> /x8e/xa3/xab/xd2 <CJK> +<U54D0> /x8e/xa3/xab/xd3 <CJK> +<U54B4> /x8e/xa3/xab/xd4 <CJK> +<U54CA> /x8e/xa3/xab/xd5 <CJK> +<U3587> /x8e/xa3/xab/xd6 <CJK> +<U54A3> /x8e/xa3/xab/xd7 <CJK> +<U54DA> /x8e/xa3/xab/xd8 <CJK> +<U54A4> /x8e/xa3/xab/xd9 <CJK> +<U3584> /x8e/xa3/xab/xda <CJK> +<U54B2> /x8e/xa3/xab/xdb <CJK> +<U549E> /x8e/xa3/xab/xdc <CJK> +<U549F> /x8e/xa3/xab/xdd <CJK> +<U54B5> /x8e/xa3/xab/xde <CJK> +<U3582> /x8e/xa3/xab/xdf <CJK> +<U3581> /x8e/xa3/xab/xe0 <CJK> +<U54CD> /x8e/xa3/xab/xe1 <CJK> +<U3583> /x8e/xa3/xab/xe2 <CJK> +<U54CC> /x8e/xa3/xab/xe3 <CJK> +<U3622> /x8e/xa3/xab/xe4 <CJK> +<U5700> /x8e/xa3/xab/xe5 <CJK> +<U57AC> /x8e/xa3/xab/xe6 <CJK> +<U5791> /x8e/xa3/xab/xe7 <CJK> +<U578E> /x8e/xa3/xab/xe8 <CJK> +<U578D> /x8e/xa3/xab/xe9 <CJK> +<U5792> /x8e/xa3/xab/xea <CJK> +<U57A1> /x8e/xa3/xab/xeb <CJK> +<U5790> /x8e/xa3/xab/xec <CJK> +<U57A6> /x8e/xa3/xab/xed <CJK> +<U57A8> /x8e/xa3/xab/xee <CJK> +<U363B> /x8e/xa3/xab/xef <CJK> +<U579C> /x8e/xa3/xab/xf0 <CJK> +<U5796> /x8e/xa3/xab/xf1 <CJK> +<U57A7> /x8e/xa3/xab/xf2 <CJK> +<U363A> /x8e/xa3/xab/xf3 <CJK> +<U3638> /x8e/xa3/xab/xf4 <CJK> +<U3639> /x8e/xa3/xab/xf5 <CJK> +<U3636> /x8e/xa3/xab/xf6 <CJK> +<U58F5> /x8e/xa3/xab/xf7 <CJK> +<U3685> /x8e/xa3/xab/xf8 <CJK> +<U5909> /x8e/xa3/xab/xf9 <CJK> +<U5908> /x8e/xa3/xab/xfa <CJK> +<U3C54> /x8e/xa3/xab/xfb <CJK> +<U5952> /x8e/xa3/xab/xfc <CJK> +<U369A> /x8e/xa3/xab/xfd <CJK> +<U36C4> /x8e/xa3/xab/xfe <CJK> +<U59DF> /x8e/xa3/xac/xa1 <CJK> +<U36C5> /x8e/xa3/xac/xa2 <CJK> +<U59EB> /x8e/xa3/xac/xa3 <CJK> +<U59EF> /x8e/xa3/xac/xa4 <CJK> +<U59F0> /x8e/xa3/xac/xa5 <CJK> +<U59D5> /x8e/xa3/xac/xa6 <CJK> +<U5A0D> /x8e/xa3/xac/xa7 <CJK> +<U5A04> /x8e/xa3/xac/xa8 <CJK> +<U59F9> /x8e/xa3/xac/xa9 <CJK> +<U5A02> /x8e/xa3/xac/xaa <CJK> +<U59F8> /x8e/xa3/xac/xab <CJK> +<U59E2> /x8e/xa3/xac/xac <CJK> +<U59D9> /x8e/xa3/xac/xad <CJK> +<U59E7> /x8e/xa3/xac/xae <CJK> +<U5B6A> /x8e/xa3/xac/xaf <CJK> +<U3754> /x8e/xa3/xac/xb0 <CJK> +<U3755> /x8e/xa3/xac/xb1 <CJK> +<U5BAB> /x8e/xa3/xac/xb2 <CJK> +<U3756> /x8e/xa3/xac/xb3 <CJK> +<U5C1B> /x8e/xa3/xac/xb4 <CJK> +<U5C2F> /x8e/xa3/xac/xb5 <CJK> +<U3796> /x8e/xa3/xac/xb6 <CJK> +<U663C> /x8e/xa3/xac/xb7 <CJK> +<U3795> /x8e/xa3/xac/xb8 <CJK> +<U3794> /x8e/xa3/xac/xb9 <CJK> +<U37C4> /x8e/xa3/xac/xba <CJK> +<U5CD1> /x8e/xa3/xac/xbb <CJK> +<U5CDC> /x8e/xa3/xac/xbc <CJK> +<U5CE6> /x8e/xa3/xac/xbd <CJK> +<U5CE1> /x8e/xa3/xac/xbe <CJK> +<U5CCD> /x8e/xa3/xac/xbf <CJK> +<U5CE2> /x8e/xa3/xac/xc1 <CJK> +<U5CDD> /x8e/xa3/xac/xc2 <CJK> +<U5CE5> /x8e/xa3/xac/xc3 <CJK> +<U5DFB> /x8e/xa3/xac/xc4 <CJK> +<U5DFA> /x8e/xa3/xac/xc5 <CJK> +<U5E1E> /x8e/xa3/xac/xc6 <CJK> +<U3844> /x8e/xa3/xac/xc7 <CJK> +<U5EA1> /x8e/xa3/xac/xc8 <CJK> +<U387D> /x8e/xa3/xac/xc9 <CJK> +<U387E> /x8e/xa3/xac/xca <CJK> +<U5EFC> /x8e/xa3/xac/xcb <CJK> +<U5EFB> /x8e/xa3/xac/xcc <CJK> +<U5F2F> /x8e/xa3/xac/xcd <CJK> +<U38B2> /x8e/xa3/xac/xce <CJK> +<U38B6> /x8e/xa3/xac/xcf <CJK> +<U5F66> /x8e/xa3/xac/xd0 <CJK> +<U38DC> /x8e/xa3/xac/xd2 <CJK> +<U38DF> /x8e/xa3/xac/xd3 <CJK> +<U605C> /x8e/xa3/xac/xd4 <CJK> +<U3928> /x8e/xa3/xac/xd5 <CJK> +<U604E> /x8e/xa3/xac/xd6 <CJK> +<U6051> /x8e/xa3/xac/xd7 <CJK> +<U3919> /x8e/xa3/xac/xd8 <CJK> +<U3910> /x8e/xa3/xac/xd9 <CJK> +<U6023> /x8e/xa3/xac/xda <CJK> +<U6031> /x8e/xa3/xac/xdb <CJK> +<U607C> /x8e/xa3/xac/xdc <CJK> +<U6052> /x8e/xa3/xac/xdd <CJK> +<U392C> /x8e/xa3/xac/xde <CJK> +<U6060> /x8e/xa3/xac/xdf <CJK> +<U604A> /x8e/xa3/xac/xe0 <CJK> +<U6061> /x8e/xa3/xac/xe1 <CJK> +<U391B> /x8e/xa3/xac/xe2 <CJK> +<U6218> /x8e/xa3/xac/xe3 <CJK> +<U39C2> /x8e/xa3/xac/xe4 <CJK> +<U39EF> /x8e/xa3/xac/xe5 <CJK> +<U39E3> /x8e/xa3/xac/xe6 <CJK> +<U39E5> /x8e/xa3/xac/xe7 <CJK> +<U39EA> /x8e/xa3/xac/xe8 <CJK> +<U39E6> /x8e/xa3/xac/xe9 <CJK> +<U39EE> /x8e/xa3/xac/xea <CJK> +<U631F> /x8e/xa3/xac/xeb <CJK> +<U6317> /x8e/xa3/xac/xec <CJK> +<U62EA> /x8e/xa3/xac/xed <CJK> +<U6321> /x8e/xa3/xac/xee <CJK> +<U6304> /x8e/xa3/xac/xef <CJK> +<U6305> /x8e/xa3/xac/xf0 <CJK> +<U39E8> /x8e/xa3/xac/xf1 <CJK> +<U6531> /x8e/xa3/xac/xf2 <CJK> +<U6544> /x8e/xa3/xac/xf3 <CJK> +<U6540> /x8e/xa3/xac/xf4 <CJK> +<U3A85> /x8e/xa3/xac/xf5 <CJK> +<U6542> /x8e/xa3/xac/xf6 <CJK> +<U65BE> /x8e/xa3/xac/xf7 <CJK> +<U3AE0> /x8e/xa3/xac/xf8 <CJK> +<U6629> /x8e/xa3/xac/xf9 <CJK> +<U661B> /x8e/xa3/xac/xfa <CJK> +<U3ADD> /x8e/xa3/xac/xfb <CJK> +<U6623> /x8e/xa3/xac/xfc <CJK> +<U662C> /x8e/xa3/xac/xfd <CJK> +<U661A> /x8e/xa3/xac/xfe <CJK> +<U6630> /x8e/xa3/xad/xa1 <CJK> +<U663B> /x8e/xa3/xad/xa2 <CJK> +<U661E> /x8e/xa3/xad/xa3 <CJK> +<U6637> /x8e/xa3/xad/xa4 <CJK> +<U6638> /x8e/xa3/xad/xa5 <CJK> +<U3AE1> /x8e/xa3/xad/xa6 <CJK> +<U670E> /x8e/xa3/xad/xa7 <CJK> +<U3B51> /x8e/xa3/xad/xa8 <CJK> +<U3B55> /x8e/xa3/xad/xa9 <CJK> +<U67E8> /x8e/xa3/xad/xaa <CJK> +<U67D6> /x8e/xa3/xad/xab <CJK> +<U3B52> /x8e/xa3/xad/xac <CJK> +<U67C7> /x8e/xa3/xad/xad <CJK> +<U67BC> /x8e/xa3/xad/xae <CJK> +<U6852> /x8e/xa3/xad/xaf <CJK> +<U67BF> /x8e/xa3/xad/xb0 <CJK> +<U67D5> /x8e/xa3/xad/xb1 <CJK> +<U67FE> /x8e/xa3/xad/xb2 <CJK> +<U8363> /x8e/xa3/xad/xb3 <CJK> +<U67FB> /x8e/xa3/xad/xb4 <CJK> +<U67B1> /x8e/xa3/xad/xb6 <CJK> +<U6801> /x8e/xa3/xad/xb7 <CJK> +<U6805> /x8e/xa3/xad/xb8 <CJK> +<U6800> /x8e/xa3/xad/xb9 <CJK> +<U67D7> /x8e/xa3/xad/xba <CJK> +<U409E> /x8e/xa3/xad/xbb <CJK> +<U6B2A> /x8e/xa3/xad/xbc <CJK> +<U6B6B> /x8e/xa3/xad/xbd <CJK> +<U3C52> /x8e/xa3/xad/xbe <CJK> +<U3C5E> /x8e/xa3/xad/xbf <CJK> +<U3C60> /x8e/xa3/xad/xc0 <CJK> +<U3C5F> /x8e/xa3/xad/xc1 <CJK> +<U6BE1> /x8e/xa3/xad/xc2 <CJK> +<U3C92> /x8e/xa3/xad/xc3 <CJK> +<U3CD6> /x8e/xa3/xad/xc4 <CJK> +<U6D23> /x8e/xa3/xad/xc5 <CJK> +<U6CFF> /x8e/xa3/xad/xc6 <CJK> +<U6D14> /x8e/xa3/xad/xc7 <CJK> +<U6D05> /x8e/xa3/xad/xc8 <CJK> +<U6D13> /x8e/xa3/xad/xc9 <CJK> +<U6D06> /x8e/xa3/xad/xca <CJK> +<U6D21> /x8e/xa3/xad/xcb <CJK> +<U3CDE> /x8e/xa3/xad/xcc <CJK> +<U6D15> /x8e/xa3/xad/xcd <CJK> +<U6CAF> /x8e/xa3/xad/xce <CJK> +<U6CF4> /x8e/xa3/xad/xcf <CJK> +<U6D02> /x8e/xa3/xad/xd0 <CJK> +<U6D45> /x8e/xa3/xad/xd1 <CJK> +<U6D26> /x8e/xa3/xad/xd3 <CJK> +<U3CD9> /x8e/xa3/xad/xd4 <CJK> +<U6D44> /x8e/xa3/xad/xd5 <CJK> +<U3CDD> /x8e/xa3/xad/xd6 <CJK> +<U6D24> /x8e/xa3/xad/xd7 <CJK> +<U70A5> /x8e/xa3/xad/xd8 <CJK> +<U3DAC> /x8e/xa3/xad/xd9 <CJK> +<U70A3> /x8e/xa3/xad/xda <CJK> +<U3DB0> /x8e/xa3/xad/xdb <CJK> +<U70A2> /x8e/xa3/xad/xdc <CJK> +<U70BB> /x8e/xa3/xad/xdd <CJK> +<U70A0> /x8e/xa3/xad/xde <CJK> +<U70AA> /x8e/xa3/xad/xdf <CJK> +<U3DAF> /x8e/xa3/xad/xe0 <CJK> +<U3DAE> /x8e/xa3/xad/xe1 <CJK> +<U70A8> /x8e/xa3/xad/xe2 <CJK> +<U70B6> /x8e/xa3/xad/xe3 <CJK> +<U70B2> /x8e/xa3/xad/xe4 <CJK> +<U70A7> /x8e/xa3/xad/xe5 <CJK> +<U3DAD> /x8e/xa3/xad/xe6 <CJK> +<U3DAB> /x8e/xa3/xad/xe7 <CJK> +<U70B9> /x8e/xa3/xad/xe8 <CJK> +<U722E> /x8e/xa3/xad/xe9 <CJK> +<U3E16> /x8e/xa3/xad/xea <CJK> +<U723C> /x8e/xa3/xad/xeb <CJK> +<U3E30> /x8e/xa3/xad/xec <CJK> +<U726D> /x8e/xa3/xad/xed <CJK> +<U3E33> /x8e/xa3/xad/xee <CJK> +<U3E31> /x8e/xa3/xad/xef <CJK> +<U72E7> /x8e/xa3/xad/xf0 <CJK> +<U72ED> /x8e/xa3/xad/xf1 <CJK> +<U3E6E> /x8e/xa3/xad/xf2 <CJK> +<U72EC> /x8e/xa3/xad/xf3 <CJK> +<U72E5> /x8e/xa3/xad/xf4 <CJK> +<U72E2> /x8e/xa3/xad/xf5 <CJK> +<U3EB1> /x8e/xa3/xad/xf6 <CJK> +<U73C4> /x8e/xa3/xad/xf7 <CJK> +<U73BD> /x8e/xa3/xad/xf8 <CJK> +<U73CF> /x8e/xa3/xad/xf9 <CJK> +<U73C9> /x8e/xa3/xad/xfa <CJK> +<U73C1> /x8e/xa3/xad/xfb <CJK> +<U73D0> /x8e/xa3/xad/xfc <CJK> +<U3EB7> /x8e/xa3/xad/xfd <CJK> +<U73CE> /x8e/xa3/xad/xfe <CJK> +<U74ED> /x8e/xa3/xae/xa1 <CJK> +<U74EB> /x8e/xa3/xae/xa2 <CJK> +<U3F1A> /x8e/xa3/xae/xa3 <CJK> +<U74EF> /x8e/xa3/xae/xa4 <CJK> +<U7549> /x8e/xa3/xae/xa5 <CJK> +<U7550> /x8e/xa3/xae/xa6 <CJK> +<U7546> /x8e/xa3/xae/xa7 <CJK> +<U754A> /x8e/xa3/xae/xa8 <CJK> +<U3F59> /x8e/xa3/xae/xa9 <CJK> +<U754D> /x8e/xa3/xae/xaa <CJK> +<U75A6> /x8e/xa3/xae/xab <CJK> +<U3F7A> /x8e/xa3/xae/xac <CJK> +<U3F78> /x8e/xa3/xae/xad <CJK> +<U3F7B> /x8e/xa3/xae/xae <CJK> +<U75A8> /x8e/xa3/xae/xaf <CJK> +<U3FDE> /x8e/xa3/xae/xb0 <CJK> +<U3FEC> /x8e/xa3/xae/xb1 <CJK> +<U76C7> /x8e/xa3/xae/xb2 <CJK> +<U76FF> /x8e/xa3/xae/xb3 <CJK> +<U401E> /x8e/xa3/xae/xb4 <CJK> +<U76FD> /x8e/xa3/xae/xb5 <CJK> +<U77E6> /x8e/xa3/xae/xb6 <CJK> +<U780A> /x8e/xa3/xae/xb7 <CJK> +<U409B> /x8e/xa3/xae/xb8 <CJK> +<U7804> /x8e/xa3/xae/xb9 <CJK> +<U780B> /x8e/xa3/xae/xba <CJK> +<U7807> /x8e/xa3/xae/xbb <CJK> +<U409D> /x8e/xa3/xae/xbc <CJK> +<U7815> /x8e/xa3/xae/xbd <CJK> +<U7808> /x8e/xa3/xae/xbe <CJK> +<U40FD> /x8e/xa3/xae/xbf <CJK> +<U79D3> /x8e/xa3/xae/xc0 <CJK> +<U79D4> /x8e/xa3/xae/xc1 <CJK> +<U79D0> /x8e/xa3/xae/xc2 <CJK> +<U79D7> /x8e/xa3/xae/xc3 <CJK> +<U7A7C> /x8e/xa3/xae/xc4 <CJK> +<U4194> /x8e/xa3/xae/xc5 <CJK> +<U4193> /x8e/xa3/xae/xc6 <CJK> +<U7A7D> /x8e/xa3/xae/xc7 <CJK> +<U7A83> /x8e/xa3/xae/xc8 <CJK> +<U7A82> /x8e/xa3/xae/xc9 <CJK> +<U41C6> /x8e/xa3/xae/xca <CJK> +<U7AD4> /x8e/xa3/xae/xcb <CJK> +<U7AD5> /x8e/xa3/xae/xcc <CJK> +<U7AD3> /x8e/xa3/xae/xcd <CJK> +<U7AD0> /x8e/xa3/xae/xce <CJK> +<U7AD2> /x8e/xa3/xae/xcf <CJK> +<U7AFE> /x8e/xa3/xae/xd0 <CJK> +<U7AFC> /x8e/xa3/xae/xd1 <CJK> +<U7C77> /x8e/xa3/xae/xd2 <CJK> +<U7C7C> /x8e/xa3/xae/xd3 <CJK> +<U7C7B> /x8e/xa3/xae/xd4 <CJK> +<U42B8> /x8e/xa3/xae/xd5 <CJK> +<U42B7> /x8e/xa3/xae/xd7 <CJK> +<U42B9> /x8e/xa3/xae/xd8 <CJK> +<U4353> /x8e/xa3/xae/xd9 <CJK> +<U00025133> /x8e/xa3/xae/xda <CJK> +<U4352> /x8e/xa3/xae/xdb <CJK> +<U4351> /x8e/xa3/xae/xdc <CJK> +<U7F8F> /x8e/xa3/xae/xdd <CJK> +<U80D3> /x8e/xa3/xae/xde <CJK> +<U43E3> /x8e/xa3/xae/xdf <CJK> +<U80CB> /x8e/xa3/xae/xe0 <CJK> +<U80D2> /x8e/xa3/xae/xe1 <CJK> +<U43E2> /x8e/xa3/xae/xe2 <CJK> +<U8109> /x8e/xa3/xae/xe3 <CJK> +<U80E2> /x8e/xa3/xae/xe4 <CJK> +<U80DF> /x8e/xa3/xae/xe5 <CJK> +<U80C6> /x8e/xa3/xae/xe6 <CJK> +<U4463> /x8e/xa3/xae/xe7 <CJK> +<U8224> /x8e/xa3/xae/xe8 <CJK> +<U82F7> /x8e/xa3/xae/xe9 <CJK> +<U82D8> /x8e/xa3/xae/xea <CJK> +<U82DD> /x8e/xa3/xae/xeb <CJK> +<U44AA> /x8e/xa3/xae/xec <CJK> +<U44A6> /x8e/xa3/xae/xed <CJK> +<U82F8> /x8e/xa3/xae/xee <CJK> +<U82FC> /x8e/xa3/xae/xef <CJK> +<U44A8> /x8e/xa3/xae/xf0 <CJK> +<U44A9> /x8e/xa3/xae/xf1 <CJK> +<U82E9> /x8e/xa3/xae/xf2 <CJK> +<U44AB> /x8e/xa3/xae/xf3 <CJK> +<U82EE> /x8e/xa3/xae/xf4 <CJK> +<U44AC> /x8e/xa3/xae/xf5 <CJK> +<U82D0> /x8e/xa3/xae/xf6 <CJK> +<U830E> /x8e/xa3/xae/xf7 <CJK> +<U82E2> /x8e/xa3/xae/xf8 <CJK> +<U830B> /x8e/xa3/xae/xf9 <CJK> +<U82FD> /x8e/xa3/xae/xfa <CJK> +<U5179> /x8e/xa3/xae/xfb <CJK> +<U8676> /x8e/xa3/xae/xfc <CJK> +<U459E> /x8e/xa3/xae/xfd <CJK> +<U8678> /x8e/xa3/xae/xfe <CJK> +<U459F> /x8e/xa3/xaf/xa1 <CJK> +<U45A0> /x8e/xa3/xaf/xa2 <CJK> +<U8675> /x8e/xa3/xaf/xa3 <CJK> +<U867D> /x8e/xa3/xaf/xa4 <CJK> +<U460F> /x8e/xa3/xaf/xa5 <CJK> +<U8842> /x8e/xa3/xaf/xa6 <CJK> +<U8866> /x8e/xa3/xaf/xa7 <CJK> +<U461C> /x8e/xa3/xaf/xa8 <CJK> +<U898C> /x8e/xa3/xaf/xa9 <CJK> +<U8A05> /x8e/xa3/xaf/xaa <CJK> +<U46AE> /x8e/xa3/xaf/xab <CJK> +<U8A06> /x8e/xa3/xaf/xac <CJK> +<U46B0> /x8e/xa3/xaf/xad <CJK> +<U8C9F> /x8e/xa3/xaf/xae <CJK> +<U47D4> /x8e/xa3/xaf/xaf <CJK> +<U8FF1> /x8e/xa3/xaf/xb0 <CJK> +<U8FE7> /x8e/xa3/xaf/xb1 <CJK> +<U8FE9> /x8e/xa3/xaf/xb2 <CJK> +<U8FEF> /x8e/xa3/xaf/xb3 <CJK> +<U90C2> /x8e/xa3/xaf/xb4 <CJK> +<U90BC> /x8e/xa3/xaf/xb5 <CJK> +<U48BB> /x8e/xa3/xaf/xb6 <CJK> +<U90C6> /x8e/xa3/xaf/xb7 <CJK> +<U90C0> /x8e/xa3/xaf/xb8 <CJK> +<U48C1> /x8e/xa3/xaf/xb9 <CJK> +<U48C2> /x8e/xa3/xaf/xba <CJK> +<U90CD> /x8e/xa3/xaf/xbb <CJK> +<U90C9> /x8e/xa3/xaf/xbc <CJK> +<U48BE> /x8e/xa3/xaf/xbd <CJK> +<U90C4> /x8e/xa3/xaf/xbe <CJK> +<U48E5> /x8e/xa3/xaf/xbf <CJK> +<U9581> /x8e/xa3/xaf/xc0 <CJK> +<U49C6> /x8e/xa3/xaf/xc1 <CJK> +<U9CEC> /x8e/xa3/xaf/xc2 <CJK> +<U5032> /x8e/xa3/xaf/xc3 <CJK> +<U4FF9> /x8e/xa3/xaf/xc4 <CJK> +<U501D> /x8e/xa3/xaf/xc5 <CJK> +<U4FFF> /x8e/xa3/xaf/xc6 <CJK> +<U5004> /x8e/xa3/xaf/xc7 <CJK> +<U4FF0> /x8e/xa3/xaf/xc8 <CJK> +<U5003> /x8e/xa3/xaf/xc9 <CJK> +<U462E> /x8e/xa3/xaf/xca <CJK> +<U5002> /x8e/xa3/xaf/xcb <CJK> +<U4FFC> /x8e/xa3/xaf/xcc <CJK> +<U4FF2> /x8e/xa3/xaf/xcd <CJK> +<U5024> /x8e/xa3/xaf/xce <CJK> +<U5008> /x8e/xa3/xaf/xcf <CJK> +<U5036> /x8e/xa3/xaf/xd0 <CJK> +<U502E> /x8e/xa3/xaf/xd1 <CJK> +<U3465> /x8e/xa3/xaf/xd2 <CJK> +<U5010> /x8e/xa3/xaf/xd3 <CJK> +<U5038> /x8e/xa3/xaf/xd4 <CJK> +<U5039> /x8e/xa3/xaf/xd5 <CJK> +<U4FFD> /x8e/xa3/xaf/xd6 <CJK> +<U5056> /x8e/xa3/xaf/xd7 <CJK> +<U4FFB> /x8e/xa3/xaf/xd8 <CJK> +<U51A3> /x8e/xa3/xaf/xd9 <CJK> +<U51A6> /x8e/xa3/xaf/xda <CJK> +<U51A1> /x8e/xa3/xaf/xdb <CJK> +<U34D1> /x8e/xa3/xaf/xdc <CJK> +<U34D0> /x8e/xa3/xaf/xdd <CJK> +<U51C7> /x8e/xa3/xaf/xde <CJK> +<U51C9> /x8e/xa3/xaf/xdf <CJK> +<U5260> /x8e/xa3/xaf/xe0 <CJK> +<U5264> /x8e/xa3/xaf/xe1 <CJK> +<U5259> /x8e/xa3/xaf/xe2 <CJK> +<U5265> /x8e/xa3/xaf/xe3 <CJK> +<U5267> /x8e/xa3/xaf/xe4 <CJK> +<U5257> /x8e/xa3/xaf/xe5 <CJK> +<U5263> /x8e/xa3/xaf/xe6 <CJK> +<U34EE> /x8e/xa3/xaf/xe7 <CJK> +<U5253> /x8e/xa3/xaf/xe8 <CJK> +<U34EF> /x8e/xa3/xaf/xe9 <CJK> +<U52CF> /x8e/xa3/xaf/xea <CJK> +<U351E> /x8e/xa3/xaf/xeb <CJK> +<U52CE> /x8e/xa3/xaf/xec <CJK> +<U52D0> /x8e/xa3/xaf/xed <CJK> +<U52D1> /x8e/xa3/xaf/xee <CJK> +<U52CC> /x8e/xa3/xaf/xef <CJK> +<U354B> /x8e/xa3/xaf/xf0 <CJK> +<U354D> /x8e/xa3/xaf/xf1 <CJK> +<U3556> /x8e/xa3/xaf/xf2 <CJK> +<U550D> /x8e/xa3/xaf/xf3 <CJK> +<U54F4> /x8e/xa3/xaf/xf4 <CJK> +<U3592> /x8e/xa3/xaf/xf5 <CJK> +<U5513> /x8e/xa3/xaf/xf6 <CJK> +<U54EF> /x8e/xa3/xaf/xf7 <CJK> +<U54F5> /x8e/xa3/xaf/xf8 <CJK> +<U54F9> /x8e/xa3/xaf/xf9 <CJK> +<U5502> /x8e/xa3/xaf/xfa <CJK> +<U5500> /x8e/xa3/xaf/xfb <CJK> +<U3593> /x8e/xa3/xaf/xfc <CJK> +<U3590> /x8e/xa3/xaf/xfd <CJK> +<U5518> /x8e/xa3/xaf/xfe <CJK> +<U54F0> /x8e/xa3/xb0/xa1 <CJK> +<U54F6> /x8e/xa3/xb0/xa2 <CJK> +<U3597> /x8e/xa3/xb0/xa4 <CJK> +<U5519> /x8e/xa3/xb0/xa5 <CJK> +<U3623> /x8e/xa3/xb0/xa6 <CJK> +<U5705> /x8e/xa3/xb0/xa7 <CJK> +<U57C9> /x8e/xa3/xb0/xa8 <CJK> +<U363F> /x8e/xa3/xb0/xa9 <CJK> +<U57B7> /x8e/xa3/xb0/xaa <CJK> +<U57CD> /x8e/xa3/xb0/xab <CJK> +<U3643> /x8e/xa3/xb0/xac <CJK> +<U3642> /x8e/xa3/xb0/xad <CJK> +<U3644> /x8e/xa3/xb0/xae <CJK> +<U57BE> /x8e/xa3/xb0/xaf <CJK> +<U57BB> /x8e/xa3/xb0/xb0 <CJK> +<U3645> /x8e/xa3/xb0/xb1 <CJK> +<U57DB> /x8e/xa3/xb0/xb2 <CJK> +<U57C8> /x8e/xa3/xb0/xb3 <CJK> +<U57C4> /x8e/xa3/xb0/xb4 <CJK> +<U57C5> /x8e/xa3/xb0/xb5 <CJK> +<U57D1> /x8e/xa3/xb0/xb6 <CJK> +<U57CA> /x8e/xa3/xb0/xb7 <CJK> +<U57C0> /x8e/xa3/xb0/xb8 <CJK> +<U36D9> /x8e/xa3/xb0/xb9 <CJK> +<U36DE> /x8e/xa3/xb0/xba <CJK> +<U5A21> /x8e/xa3/xb0/xbb <CJK> +<U5A2A> /x8e/xa3/xb0/xbc <CJK> +<U36CF> /x8e/xa3/xb0/xbd <CJK> +<U5A1D> /x8e/xa3/xb0/xbe <CJK> +<U36CD> /x8e/xa3/xb0/xbf <CJK> +<U5A0B> /x8e/xa3/xb0/xc0 <CJK> +<U36DD> /x8e/xa3/xb0/xc1 <CJK> +<U36CE> /x8e/xa3/xb0/xc2 <CJK> +<U36D3> /x8e/xa3/xb0/xc3 <CJK> +<U36D6> /x8e/xa3/xb0/xc4 <CJK> +<U5A22> /x8e/xa3/xb0/xc5 <CJK> +<U36DC> /x8e/xa3/xb0/xc6 <CJK> +<U36D1> /x8e/xa3/xb0/xc7 <CJK> +<U5A24> /x8e/xa3/xb0/xc8 <CJK> +<U36D0> /x8e/xa3/xb0/xc9 <CJK> +<U5A14> /x8e/xa3/xb0/xca <CJK> +<U5A31> /x8e/xa3/xb0/xcb <CJK> +<U36D5> /x8e/xa3/xb0/xcc <CJK> +<U5A2F> /x8e/xa3/xb0/xcd <CJK> +<U5A1A> /x8e/xa3/xb0/xce <CJK> +<U5A12> /x8e/xa3/xb0/xcf <CJK> +<U36D4> /x8e/xa3/xb0/xd0 <CJK> +<U36DB> /x8e/xa3/xb0/xd1 <CJK> +<U5A26> /x8e/xa3/xb0/xd2 <CJK> +<U0002172E> /x8e/xa3/xb0/xd3 <CJK> +<U3743> /x8e/xa3/xb0/xd4 <CJK> +<U5BBC> /x8e/xa3/xb0/xd5 <CJK> +<U5BBB> /x8e/xa3/xb0/xd6 <CJK> +<U5BB7> /x8e/xa3/xb0/xd7 <CJK> +<U5C05> /x8e/xa3/xb0/xd8 <CJK> +<U5C06> /x8e/xa3/xb0/xd9 <CJK> +<U5C52> /x8e/xa3/xb0/xda <CJK> +<U5C53> /x8e/xa3/xb0/xdb <CJK> +<U37CD> /x8e/xa3/xb0/xdc <CJK> +<U37D1> /x8e/xa3/xb0/xdd <CJK> +<U5CFA> /x8e/xa3/xb0/xde <CJK> +<U5CEB> /x8e/xa3/xb0/xdf <CJK> +<U37CA> /x8e/xa3/xb0/xe0 <CJK> +<U5CF3> /x8e/xa3/xb0/xe1 <CJK> +<U5CF5> /x8e/xa3/xb0/xe2 <CJK> +<U5CE9> /x8e/xa3/xb0/xe3 <CJK> +<U5CEF> /x8e/xa3/xb0/xe4 <CJK> +<U37D4> /x8e/xa3/xb0/xe5 <CJK> +<U5E2A> /x8e/xa3/xb0/xe6 <CJK> +<U5E30> /x8e/xa3/xb0/xe7 <CJK> +<U5E2E> /x8e/xa3/xb0/xe8 <CJK> +<U5E2C> /x8e/xa3/xb0/xe9 <CJK> +<U5E2F> /x8e/xa3/xb0/xea <CJK> +<U5EAF> /x8e/xa3/xb0/xeb <CJK> +<U5EA9> /x8e/xa3/xb0/xec <CJK> +<U3886> /x8e/xa3/xb0/xed <CJK> +<U5EFD> /x8e/xa3/xb0/xee <CJK> +<U5F32> /x8e/xa3/xb0/xef <CJK> +<U5F8E> /x8e/xa3/xb0/xf0 <CJK> +<U5F93> /x8e/xa3/xb0/xf1 <CJK> +<U5F8F> /x8e/xa3/xb0/xf2 <CJK> +<U604F> /x8e/xa3/xb0/xf3 <CJK> +<U6099> /x8e/xa3/xb0/xf4 <CJK> +<U3933> /x8e/xa3/xb0/xf5 <CJK> +<U607E> /x8e/xa3/xb0/xf6 <CJK> +<U3937> /x8e/xa3/xb0/xf7 <CJK> +<U6074> /x8e/xa3/xb0/xf8 <CJK> +<U604B> /x8e/xa3/xb0/xf9 <CJK> +<U6073> /x8e/xa3/xb0/xfa <CJK> +<U6075> /x8e/xa3/xb0/xfb <CJK> +<U392A> /x8e/xa3/xb0/xfc <CJK> +<U391F> /x8e/xa3/xb0/xfd <CJK> +<U6056> /x8e/xa3/xb0/xfe <CJK> +<U60A9> /x8e/xa3/xb1/xa1 <CJK> +<U608B> /x8e/xa3/xb1/xa2 <CJK> +<U60A6> /x8e/xa3/xb1/xa3 <CJK> +<U3939> /x8e/xa3/xb1/xa4 <CJK> +<U6093> /x8e/xa3/xb1/xa5 <CJK> +<U60AE> /x8e/xa3/xb1/xa6 <CJK> +<U609E> /x8e/xa3/xb1/xa7 <CJK> +<U60A7> /x8e/xa3/xb1/xa8 <CJK> +<U6245> /x8e/xa3/xb1/xa9 <CJK> +<U39F2> /x8e/xa3/xb1/xaa <CJK> +<U39F8> /x8e/xa3/xb1/xab <CJK> +<U632E> /x8e/xa3/xb1/xac <CJK> +<U39F7> /x8e/xa3/xb1/xad <CJK> +<U6352> /x8e/xa3/xb1/xae <CJK> +<U6330> /x8e/xa3/xb1/xaf <CJK> +<U635B> /x8e/xa3/xb1/xb0 <CJK> +<U39F4> /x8e/xa3/xb1/xb1 <CJK> +<U6319> /x8e/xa3/xb1/xb2 <CJK> +<U631B> /x8e/xa3/xb1/xb3 <CJK> +<U39F1> /x8e/xa3/xb1/xb4 <CJK> +<U6331> /x8e/xa3/xb1/xb5 <CJK> +<U635D> /x8e/xa3/xb1/xb6 <CJK> +<U6337> /x8e/xa3/xb1/xb7 <CJK> +<U6335> /x8e/xa3/xb1/xb8 <CJK> +<U6353> /x8e/xa3/xb1/xb9 <CJK> +<U39F5> /x8e/xa3/xb1/xba <CJK> +<U635C> /x8e/xa3/xb1/xbb <CJK> +<U633F> /x8e/xa3/xb1/xbc <CJK> +<U654B> /x8e/xa3/xb1/xbd <CJK> +<U3A87> /x8e/xa3/xb1/xbe <CJK> +<U4369> /x8e/xa3/xb1/xbf <CJK> +<U658B> /x8e/xa3/xb1/xc0 <CJK> +<U3AB6> /x8e/xa3/xb1/xc1 <CJK> +<U659A> /x8e/xa3/xb1/xc2 <CJK> +<U6650> /x8e/xa3/xb1/xc3 <CJK> +<U6646> /x8e/xa3/xb1/xc4 <CJK> +<U664E> /x8e/xa3/xb1/xc5 <CJK> +<U6640> /x8e/xa3/xb1/xc6 <CJK> +<U3AE9> /x8e/xa3/xb1/xc7 <CJK> +<U664B> /x8e/xa3/xb1/xc8 <CJK> +<U6648> /x8e/xa3/xb1/xc9 <CJK> +<U3AEB> /x8e/xa3/xb1/xca <CJK> +<U6660> /x8e/xa3/xb1/xcb <CJK> +<U6644> /x8e/xa3/xb1/xcc <CJK> +<U664D> /x8e/xa3/xb1/xcd <CJK> +<U3B34> /x8e/xa3/xb1/xce <CJK> +<U6837> /x8e/xa3/xb1/xcf <CJK> +<U6824> /x8e/xa3/xb1/xd0 <CJK> +<U3B62> /x8e/xa3/xb1/xd1 <CJK> +<U3B5C> /x8e/xa3/xb1/xd2 <CJK> +<U681B> /x8e/xa3/xb1/xd3 <CJK> +<U6836> /x8e/xa3/xb1/xd4 <CJK> +<U3B60> /x8e/xa3/xb1/xd5 <CJK> +<U682C> /x8e/xa3/xb1/xd6 <CJK> +<U6819> /x8e/xa3/xb1/xd7 <CJK> +<U6856> /x8e/xa3/xb1/xd8 <CJK> +<U6847> /x8e/xa3/xb1/xd9 <CJK> +<U683E> /x8e/xa3/xb1/xda <CJK> +<U681E> /x8e/xa3/xb1/xdb <CJK> +<U6815> /x8e/xa3/xb1/xdd <CJK> +<U6822> /x8e/xa3/xb1/xde <CJK> +<U6827> /x8e/xa3/xb1/xdf <CJK> +<U6859> /x8e/xa3/xb1/xe0 <CJK> +<U6858> /x8e/xa3/xb1/xe1 <CJK> +<U6855> /x8e/xa3/xb1/xe2 <CJK> +<U6830> /x8e/xa3/xb1/xe3 <CJK> +<U6823> /x8e/xa3/xb1/xe4 <CJK> +<U6B2E> /x8e/xa3/xb1/xe5 <CJK> +<U6B2B> /x8e/xa3/xb1/xe6 <CJK> +<U6B30> /x8e/xa3/xb1/xe7 <CJK> +<U6B6C> /x8e/xa3/xb1/xe8 <CJK> +<U3C61> /x8e/xa3/xb1/xe9 <CJK> +<U6B8B> /x8e/xa3/xb1/xea <CJK> +<U3C7F> /x8e/xa3/xb1/xeb <CJK> +<U6BE9> /x8e/xa3/xb1/xec <CJK> +<U6BEA> /x8e/xa3/xb1/xed <CJK> +<U6BE5> /x8e/xa3/xb1/xee <CJK> +<U6D6B> /x8e/xa3/xb1/xef <CJK> +<U3CE5> /x8e/xa3/xb1/xf0 <CJK> +<U3CE6> /x8e/xa3/xb1/xf1 <CJK> +<U6D73> /x8e/xa3/xb1/xf2 <CJK> +<U6D57> /x8e/xa3/xb1/xf3 <CJK> +<U3CE9> /x8e/xa3/xb1/xf4 <CJK> +<U3CF3> /x8e/xa3/xb1/xf5 <CJK> +<U6D5D> /x8e/xa3/xb1/xf6 <CJK> +<U6D56> /x8e/xa3/xb1/xf7 <CJK> +<U6D8F> /x8e/xa3/xb1/xf8 <CJK> +<U6D5B> /x8e/xa3/xb1/xf9 <CJK> +<U6D1C> /x8e/xa3/xb1/xfa <CJK> +<U6D9A> /x8e/xa3/xb1/xfb <CJK> +<U6D9B> /x8e/xa3/xb1/xfc <CJK> +<U6D99> /x8e/xa3/xb1/xfd <CJK> +<U3CEE> /x8e/xa3/xb1/xfe <CJK> +<U6D81> /x8e/xa3/xb2/xa1 <CJK> +<U6D71> /x8e/xa3/xb2/xa2 <CJK> +<U3CED> /x8e/xa3/xb2/xa3 <CJK> +<U3CEC> /x8e/xa3/xb2/xa4 <CJK> +<U6D72> /x8e/xa3/xb2/xa5 <CJK> +<U6D5C> /x8e/xa3/xb2/xa6 <CJK> +<U6D96> /x8e/xa3/xb2/xa7 <CJK> +<U70C4> /x8e/xa3/xb2/xa8 <CJK> +<U70DB> /x8e/xa3/xb2/xa9 <CJK> +<U70CC> /x8e/xa3/xb2/xaa <CJK> +<U70D0> /x8e/xa3/xb2/xab <CJK> +<U70E3> /x8e/xa3/xb2/xac <CJK> +<U70DF> /x8e/xa3/xb2/xad <CJK> +<U3DB3> /x8e/xa3/xb2/xae <CJK> +<U70D6> /x8e/xa3/xb2/xaf <CJK> +<U70EE> /x8e/xa3/xb2/xb0 <CJK> +<U70D5> /x8e/xa3/xb2/xb1 <CJK> +<U3DB5> /x8e/xa3/xb2/xb2 <CJK> +<U3E27> /x8e/xa3/xb2/xb3 <CJK> +<U3E35> /x8e/xa3/xb2/xb4 <CJK> +<U3E36> /x8e/xa3/xb2/xb5 <CJK> +<U727A> /x8e/xa3/xb2/xb6 <CJK> +<U3E71> /x8e/xa3/xb2/xb7 <CJK> +<U72F5> /x8e/xa3/xb2/xb8 <CJK> +<U7302> /x8e/xa3/xb2/xb9 <CJK> +<U3EB8> /x8e/xa3/xb2/xba <CJK> +<U3EC2> /x8e/xa3/xb2/xbb <CJK> +<U73E2> /x8e/xa3/xb2/xbc <CJK> +<U73EC> /x8e/xa3/xb2/xbd <CJK> +<U73D5> /x8e/xa3/xb2/xbe <CJK> +<U73F9> /x8e/xa3/xb2/xbf <CJK> +<U73DF> /x8e/xa3/xb2/xc0 <CJK> +<U73E6> /x8e/xa3/xb2/xc1 <CJK> +<U3EC8> /x8e/xa3/xb2/xc2 <CJK> +<U3EC0> /x8e/xa3/xb2/xc3 <CJK> +<U3EC1> /x8e/xa3/xb2/xc4 <CJK> +<U3EC4> /x8e/xa3/xb2/xc5 <CJK> +<U73E4> /x8e/xa3/xb2/xc6 <CJK> +<U73E1> /x8e/xa3/xb2/xc7 <CJK> +<U74F3> /x8e/xa3/xb2/xc8 <CJK> +<U3F1F> /x8e/xa3/xb2/xc9 <CJK> +<U3F1C> /x8e/xa3/xb2/xca <CJK> +<U3F1D> /x8e/xa3/xb2/xcb <CJK> +<U3F4D> /x8e/xa3/xb2/xcc <CJK> +<U7556> /x8e/xa3/xb2/xcd <CJK> +<U7555> /x8e/xa3/xb2/xce <CJK> +<U7558> /x8e/xa3/xb2/xcf <CJK> +<U7557> /x8e/xa3/xb2/xd0 <CJK> +<U755E> /x8e/xa3/xb2/xd1 <CJK> +<U75C3> /x8e/xa3/xb2/xd2 <CJK> +<U3F87> /x8e/xa3/xb2/xd3 <CJK> +<U3F82> /x8e/xa3/xb2/xd4 <CJK> +<U75B4> /x8e/xa3/xb2/xd5 <CJK> +<U3F7D> /x8e/xa3/xb2/xd6 <CJK> +<U75B1> /x8e/xa3/xb2/xd7 <CJK> +<U3FDF> /x8e/xa3/xb2/xd8 <CJK> +<U4000> /x8e/xa3/xb2/xd9 <CJK> +<U76CB> /x8e/xa3/xb2/xda <CJK> +<U76CC> /x8e/xa3/xb2/xdb <CJK> +<U772A> /x8e/xa3/xb2/xdc <CJK> +<U4020> /x8e/xa3/xb2/xdd <CJK> +<U7716> /x8e/xa3/xb2/xde <CJK> +<U770F> /x8e/xa3/xb2/xdf <CJK> +<U4022> /x8e/xa3/xb2/xe0 <CJK> +<U4024> /x8e/xa3/xb2/xe1 <CJK> +<U773F> /x8e/xa3/xb2/xe2 <CJK> +<U772B> /x8e/xa3/xb2/xe3 <CJK> +<U770E> /x8e/xa3/xb2/xe4 <CJK> +<U7724> /x8e/xa3/xb2/xe5 <CJK> +<U4021> /x8e/xa3/xb2/xe6 <CJK> +<U7721> /x8e/xa3/xb2/xe7 <CJK> +<U7718> /x8e/xa3/xb2/xe8 <CJK> +<U77DD> /x8e/xa3/xb2/xe9 <CJK> +<U40A4> /x8e/xa3/xb2/xea <CJK> +<U40A5> /x8e/xa3/xb2/xeb <CJK> +<U7824> /x8e/xa3/xb2/xec <CJK> +<U7836> /x8e/xa3/xb2/xed <CJK> +<U4101> /x8e/xa3/xb2/xee <CJK> +<U7958> /x8e/xa3/xb2/xef <CJK> +<U7959> /x8e/xa3/xb2/xf0 <CJK> +<U4103> /x8e/xa3/xb2/xf1 <CJK> +<U7962> /x8e/xa3/xb2/xf2 <CJK> +<U79DA> /x8e/xa3/xb2/xf3 <CJK> +<U79D9> /x8e/xa3/xb2/xf4 <CJK> +<U4137> /x8e/xa3/xb2/xf5 <CJK> +<U79E1> /x8e/xa3/xb2/xf6 <CJK> +<U79E5> /x8e/xa3/xb2/xf7 <CJK> +<U79E8> /x8e/xa3/xb2/xf8 <CJK> +<U79DB> /x8e/xa3/xb2/xf9 <CJK> +<U4138> /x8e/xa3/xb2/xfa <CJK> +<U79E2> /x8e/xa3/xb2/xfb <CJK> +<U79F0> /x8e/xa3/xb2/xfc <CJK> +<U4199> /x8e/xa3/xb2/xfd <CJK> +<U4198> /x8e/xa3/xb2/xfe <CJK> +<U4197> /x8e/xa3/xb3/xa1 <CJK> +<U41C9> /x8e/xa3/xb3/xa2 <CJK> +<U7ADA> /x8e/xa3/xb3/xa3 <CJK> +<U7ADD> /x8e/xa3/xb3/xa4 <CJK> +<U41C7> /x8e/xa3/xb3/xa5 <CJK> +<U7ADB> /x8e/xa3/xb3/xa6 <CJK> +<U7ADC> /x8e/xa3/xb3/xa7 <CJK> +<U41D9> /x8e/xa3/xb3/xa8 <CJK> +<U41DB> /x8e/xa3/xb3/xa9 <CJK> +<U7B0D> /x8e/xa3/xb3/xaa <CJK> +<U7B0B> /x8e/xa3/xb3/xab <CJK> +<U7B14> /x8e/xa3/xb3/xac <CJK> +<U7C8E> /x8e/xa3/xb3/xad <CJK> +<U7C86> /x8e/xa3/xb3/xae <CJK> +<U427B> /x8e/xa3/xb3/xaf <CJK> +<U7C87> /x8e/xa3/xb3/xb0 <CJK> +<U7C83> /x8e/xa3/xb3/xb1 <CJK> +<U7C8B> /x8e/xa3/xb3/xb2 <CJK> +<U427C> /x8e/xa3/xb3/xb3 <CJK> +<U42BD> /x8e/xa3/xb3/xb4 <CJK> +<U42BC> /x8e/xa3/xb3/xb5 <CJK> +<U42C3> /x8e/xa3/xb3/xb6 <CJK> +<U7D24> /x8e/xa3/xb3/xb7 <CJK> +<U42C1> /x8e/xa3/xb3/xb8 <CJK> +<U42BF> /x8e/xa3/xb3/xb9 <CJK> +<U42C4> /x8e/xa3/xb3/xba <CJK> +<U7D25> /x8e/xa3/xb3/xbb <CJK> +<U7F62> /x8e/xa3/xb3/xbc <CJK> +<U7F93> /x8e/xa3/xb3/xbd <CJK> +<U7F99> /x8e/xa3/xb3/xbe <CJK> +<U7F97> /x8e/xa3/xb3/xbf <CJK> +<U437E> /x8e/xa3/xb3/xc0 <CJK> +<U437F> /x8e/xa3/xb3/xc1 <CJK> +<U7FC4> /x8e/xa3/xb3/xc2 <CJK> +<U7FC6> /x8e/xa3/xb3/xc3 <CJK> +<U800A> /x8e/xa3/xb3/xc4 <CJK> +<U43B4> /x8e/xa3/xb3/xc5 <CJK> +<U43B3> /x8e/xa3/xb3/xc6 <CJK> +<U8040> /x8e/xa3/xb3/xc7 <CJK> +<U803C> /x8e/xa3/xb3/xc8 <CJK> +<U803B> /x8e/xa3/xb3/xc9 <CJK> +<U80F6> /x8e/xa3/xb3/xca <CJK> +<U80FF> /x8e/xa3/xb3/xcb <CJK> +<U80EE> /x8e/xa3/xb3/xcc <CJK> +<U8104> /x8e/xa3/xb3/xcd <CJK> +<U8103> /x8e/xa3/xb3/xce <CJK> +<U8107> /x8e/xa3/xb3/xcf <CJK> +<U43E6> /x8e/xa3/xb3/xd1 <CJK> +<U80F7> /x8e/xa3/xb3/xd2 <CJK> +<U4459> /x8e/xa3/xb3/xd3 <CJK> +<U445A> /x8e/xa3/xb3/xd4 <CJK> +<U822D> /x8e/xa3/xb3/xd5 <CJK> +<U4464> /x8e/xa3/xb3/xd6 <CJK> +<U8227> /x8e/xa3/xb3/xd7 <CJK> +<U8229> /x8e/xa3/xb3/xd8 <CJK> +<U831F> /x8e/xa3/xb3/xd9 <CJK> +<U8357> /x8e/xa3/xb3/xda <CJK> +<U44B4> /x8e/xa3/xb3/xdb <CJK> +<U44B9> /x8e/xa3/xb3/xdc <CJK> +<U44B7> /x8e/xa3/xb3/xdd <CJK> +<U44B5> /x8e/xa3/xb3/xde <CJK> +<U8321> /x8e/xa3/xb3/xdf <CJK> +<U44C1> /x8e/xa3/xb3/xe0 <CJK> +<U44B1> /x8e/xa3/xb3/xe1 <CJK> +<U8318> /x8e/xa3/xb3/xe2 <CJK> +<U8358> /x8e/xa3/xb3/xe3 <CJK> +<U44B3> /x8e/xa3/xb3/xe4 <CJK> +<U44BA> /x8e/xa3/xb3/xe5 <CJK> +<U458C> /x8e/xa3/xb3/xe6 <CJK> +<U458B> /x8e/xa3/xb3/xe7 <CJK> +<U458D> /x8e/xa3/xb3/xe8 <CJK> +<U8684> /x8e/xa3/xb3/xe9 <CJK> +<U869F> /x8e/xa3/xb3/xea <CJK> +<U869B> /x8e/xa3/xb3/xeb <CJK> +<U8689> /x8e/xa3/xb3/xec <CJK> +<U86A6> /x8e/xa3/xb3/xed <CJK> +<U8692> /x8e/xa3/xb3/xee <CJK> +<U868F> /x8e/xa3/xb3/xef <CJK> +<U86A0> /x8e/xa3/xb3/xf0 <CJK> +<U884F> /x8e/xa3/xb3/xf1 <CJK> +<U8878> /x8e/xa3/xb3/xf2 <CJK> +<U887A> /x8e/xa3/xb3/xf3 <CJK> +<U886E> /x8e/xa3/xb3/xf4 <CJK> +<U887B> /x8e/xa3/xb3/xf5 <CJK> +<U8884> /x8e/xa3/xb3/xf6 <CJK> +<U8873> /x8e/xa3/xb3/xf7 <CJK> +<U4678> /x8e/xa3/xb3/xf8 <CJK> +<U4677> /x8e/xa3/xb3/xf9 <CJK> +<U8A0D> /x8e/xa3/xb3/xfa <CJK> +<U8A0B> /x8e/xa3/xb3/xfb <CJK> +<U8A19> /x8e/xa3/xb3/xfc <CJK> +<U46B2> /x8e/xa3/xb3/xfd <CJK> +<U47D6> /x8e/xa3/xb3/xfe <CJK> +<U8ED0> /x8e/xa3/xb4/xa1 <CJK> +<U4845> /x8e/xa3/xb4/xa2 <CJK> +<U4892> /x8e/xa3/xb4/xa3 <CJK> +<U4895> /x8e/xa3/xb4/xa4 <CJK> +<U8FF9> /x8e/xa3/xb4/xa5 <CJK> +<U9009> /x8e/xa3/xb4/xa6 <CJK> +<U9008> /x8e/xa3/xb4/xa7 <CJK> +<U48C6> /x8e/xa3/xb4/xa8 <CJK> +<U90DE> /x8e/xa3/xb4/xa9 <CJK> +<U9151> /x8e/xa3/xb4/xaa <CJK> +<U48E7> /x8e/xa3/xb4/xab <CJK> +<U48E8> /x8e/xa3/xb4/xac <CJK> +<U91DB> /x8e/xa3/xb4/xad <CJK> +<U91DF> /x8e/xa3/xb4/xae <CJK> +<U91DE> /x8e/xa3/xb4/xaf <CJK> +<U91D6> /x8e/xa3/xb4/xb0 <CJK> +<U91E0> /x8e/xa3/xb4/xb1 <CJK> +<U9585> /x8e/xa3/xb4/xb2 <CJK> +<U9660> /x8e/xa3/xb4/xb3 <CJK> +<U9659> /x8e/xa3/xb4/xb4 <CJK> +<U49CB> /x8e/xa3/xb4/xb5 <CJK> +<U9656> /x8e/xa3/xb4/xb6 <CJK> +<U49CD> /x8e/xa3/xb4/xb7 <CJK> +<U49F1> /x8e/xa3/xb4/xb8 <CJK> +<U96BD> /x8e/xa3/xb4/xb9 <CJK> +<U4B22> /x8e/xa3/xb4/xba <CJK> +<U3421> /x8e/xa3/xb4/xbb <CJK> +<U5042> /x8e/xa3/xb4/xbc <CJK> +<U5059> /x8e/xa3/xb4/xbd <CJK> +<U346F> /x8e/xa3/xb4/xbe <CJK> +<U5044> /x8e/xa3/xb4/xbf <CJK> +<U5066> /x8e/xa3/xb4/xc0 <CJK> +<U5052> /x8e/xa3/xb4/xc1 <CJK> +<U5054> /x8e/xa3/xb4/xc2 <CJK> +<U5071> /x8e/xa3/xb4/xc3 <CJK> +<U5050> /x8e/xa3/xb4/xc4 <CJK> +<U507B> /x8e/xa3/xb4/xc5 <CJK> +<U507C> /x8e/xa3/xb4/xc6 <CJK> +<U5058> /x8e/xa3/xb4/xc7 <CJK> +<U3470> /x8e/xa3/xb4/xc8 <CJK> +<U3464> /x8e/xa3/xb4/xc9 <CJK> +<U5079> /x8e/xa3/xb4/xca <CJK> +<U506C> /x8e/xa3/xb4/xcb <CJK> +<U5078> /x8e/xa3/xb4/xcc <CJK> +<U51A8> /x8e/xa3/xb4/xcd <CJK> +<U51D1> /x8e/xa3/xb4/xce <CJK> +<U51CF> /x8e/xa3/xb4/xcf <CJK> +<U5268> /x8e/xa3/xb4/xd0 <CJK> +<U5276> /x8e/xa3/xb4/xd1 <CJK> +<U52D4> /x8e/xa3/xb4/xd2 <CJK> +<U352D> /x8e/xa3/xb4/xd3 <CJK> +<U53A0> /x8e/xa3/xb4/xd4 <CJK> +<U53C4> /x8e/xa3/xb4/xd5 <CJK> +<U3558> /x8e/xa3/xb4/xd6 <CJK> +<U5558> /x8e/xa3/xb4/xd7 <CJK> +<U554C> /x8e/xa3/xb4/xd8 <CJK> +<U5568> /x8e/xa3/xb4/xd9 <CJK> +<U35A6> /x8e/xa3/xb4/xda <CJK> +<U5549> /x8e/xa3/xb4/xdb <CJK> +<U35A4> /x8e/xa3/xb4/xdc <CJK> +<U359F> /x8e/xa3/xb4/xdd <CJK> +<U555D> /x8e/xa3/xb4/xde <CJK> +<U5529> /x8e/xa3/xb4/xdf <CJK> +<U00020DAE> /x8e/xa3/xb4/xe0 <CJK> +<U5554> /x8e/xa3/xb4/xe1 <CJK> +<U5553> /x8e/xa3/xb4/xe2 <CJK> +<U35A3> /x8e/xa3/xb4/xe3 <CJK> +<U555A> /x8e/xa3/xb4/xe4 <CJK> +<U35A0> /x8e/xa3/xb4/xe5 <CJK> +<U553A> /x8e/xa3/xb4/xe6 <CJK> +<U553F> /x8e/xa3/xb4/xe7 <CJK> +<U552B> /x8e/xa3/xb4/xe8 <CJK> +<U57EA> /x8e/xa3/xb4/xe9 <CJK> +<U364A> /x8e/xa3/xb4/xea <CJK> +<U57EF> /x8e/xa3/xb4/xeb <CJK> +<U3647> /x8e/xa3/xb4/xec <CJK> +<U3648> /x8e/xa3/xb4/xed <CJK> +<U57DD> /x8e/xa3/xb4/xee <CJK> +<U57FE> /x8e/xa3/xb4/xef <CJK> +<U57DE> /x8e/xa3/xb4/xf1 <CJK> +<U57E6> /x8e/xa3/xb4/xf2 <CJK> +<U3649> /x8e/xa3/xb4/xf3 <CJK> +<U57E8> /x8e/xa3/xb4/xf4 <CJK> +<U57FF> /x8e/xa3/xb4/xf5 <CJK> +<U5803> /x8e/xa3/xb4/xf6 <CJK> +<U58F7> /x8e/xa3/xb4/xf7 <CJK> +<U68A6> /x8e/xa3/xb4/xf8 <CJK> +<U591F> /x8e/xa3/xb4/xf9 <CJK> +<U369E> /x8e/xa3/xb4/xfa <CJK> +<U595B> /x8e/xa3/xb4/xfb <CJK> +<U595D> /x8e/xa3/xb4/xfc <CJK> +<U595E> /x8e/xa3/xb4/xfd <CJK> +<U00021637> /x8e/xa3/xb4/xfe <CJK> +<U36E8> /x8e/xa3/xb5/xa1 <CJK> +<U5A2B> /x8e/xa3/xb5/xa2 <CJK> +<U36EC> /x8e/xa3/xb5/xa3 <CJK> +<U5A3B> /x8e/xa3/xb5/xa4 <CJK> +<U36ED> /x8e/xa3/xb5/xa5 <CJK> +<U36E6> /x8e/xa3/xb5/xa6 <CJK> +<U5A61> /x8e/xa3/xb5/xa7 <CJK> +<U5A3A> /x8e/xa3/xb5/xa8 <CJK> +<U5A6E> /x8e/xa3/xb5/xa9 <CJK> +<U5A4B> /x8e/xa3/xb5/xaa <CJK> +<U5A6B> /x8e/xa3/xb5/xab <CJK> +<U36EB> /x8e/xa3/xb5/xac <CJK> +<U36E7> /x8e/xa3/xb5/xad <CJK> +<U5A45> /x8e/xa3/xb5/xae <CJK> +<U5A4E> /x8e/xa3/xb5/xaf <CJK> +<U5A68> /x8e/xa3/xb5/xb0 <CJK> +<U5A3D> /x8e/xa3/xb5/xb1 <CJK> +<U5A71> /x8e/xa3/xb5/xb2 <CJK> +<U5A3F> /x8e/xa3/xb5/xb3 <CJK> +<U5A6F> /x8e/xa3/xb5/xb4 <CJK> +<U5A75> /x8e/xa3/xb5/xb5 <CJK> +<U36E9> /x8e/xa3/xb5/xb6 <CJK> +<U5A73> /x8e/xa3/xb5/xb7 <CJK> +<U5A2C> /x8e/xa3/xb5/xb8 <CJK> +<U5A59> /x8e/xa3/xb5/xb9 <CJK> +<U5A54> /x8e/xa3/xb5/xba <CJK> +<U5A4F> /x8e/xa3/xb5/xbb <CJK> +<U5A63> /x8e/xa3/xb5/xbc <CJK> +<U375C> /x8e/xa3/xb5/xbd <CJK> +<U375D> /x8e/xa3/xb5/xbe <CJK> +<U5BC8> /x8e/xa3/xb5/xbf <CJK> +<U3760> /x8e/xa3/xb5/xc0 <CJK> +<U5BC3> /x8e/xa3/xb5/xc1 <CJK> +<U375B> /x8e/xa3/xb5/xc2 <CJK> +<U5C5B> /x8e/xa3/xb5/xc3 <CJK> +<U5C61> /x8e/xa3/xb5/xc4 <CJK> +<U3799> /x8e/xa3/xb5/xc5 <CJK> +<U5D21> /x8e/xa3/xb5/xc6 <CJK> +<U5D0A> /x8e/xa3/xb5/xc7 <CJK> +<U5D09> /x8e/xa3/xb5/xc8 <CJK> +<U37D8> /x8e/xa3/xb5/xc9 <CJK> +<U5D2C> /x8e/xa3/xb5/xca <CJK> +<U5D08> /x8e/xa3/xb5/xcb <CJK> +<U37DA> /x8e/xa3/xb5/xcc <CJK> +<U37DD> /x8e/xa3/xb5/xcd <CJK> +<U5D2A> /x8e/xa3/xb5/xce <CJK> +<U5D15> /x8e/xa3/xb5/xcf <CJK> +<U37E0> /x8e/xa3/xb5/xd0 <CJK> +<U5D10> /x8e/xa3/xb5/xd1 <CJK> +<U5D13> /x8e/xa3/xb5/xd2 <CJK> +<U37E5> /x8e/xa3/xb5/xd3 <CJK> +<U5D2F> /x8e/xa3/xb5/xd4 <CJK> +<U5D18> /x8e/xa3/xb5/xd5 <CJK> +<U37D7> /x8e/xa3/xb5/xd6 <CJK> +<U5DE3> /x8e/xa3/xb5/xd7 <CJK> +<U5E39> /x8e/xa3/xb5/xd8 <CJK> +<U5E35> /x8e/xa3/xb5/xd9 <CJK> +<U5E3A> /x8e/xa3/xb5/xda <CJK> +<U5E32> /x8e/xa3/xb5/xdb <CJK> +<U384E> /x8e/xa3/xb5/xdc <CJK> +<U388C> /x8e/xa3/xb5/xdd <CJK> +<U3888> /x8e/xa3/xb5/xde <CJK> +<U5EBB> /x8e/xa3/xb5/xe0 <CJK> +<U5EBA> /x8e/xa3/xb5/xe1 <CJK> +<U5F34> /x8e/xa3/xb5/xe2 <CJK> +<U5F39> /x8e/xa3/xb5/xe3 <CJK> +<U38CE> /x8e/xa3/xb5/xe4 <CJK> +<U38E5> /x8e/xa3/xb5/xe6 <CJK> +<U38E6> /x8e/xa3/xb5/xe7 <CJK> +<U6098> /x8e/xa3/xb5/xe8 <CJK> +<U3932> /x8e/xa3/xb5/xe9 <CJK> +<U60D0> /x8e/xa3/xb5/xea <CJK> +<U3940> /x8e/xa3/xb5/xeb <CJK> +<U3947> /x8e/xa3/xb5/xec <CJK> +<U394C> /x8e/xa3/xb5/xed <CJK> +<U60D7> /x8e/xa3/xb5/xee <CJK> +<U60AA> /x8e/xa3/xb5/xef <CJK> +<U3935> /x8e/xa3/xb5/xf0 <CJK> +<U60A1> /x8e/xa3/xb5/xf1 <CJK> +<U60A4> /x8e/xa3/xb5/xf2 <CJK> +<U3930> /x8e/xa3/xb5/xf3 <CJK> +<U60EE> /x8e/xa3/xb5/xf4 <CJK> +<U3943> /x8e/xa3/xb5/xf5 <CJK> +<U60E7> /x8e/xa3/xb5/xf6 <CJK> +<U394D> /x8e/xa3/xb5/xf7 <CJK> +<U60E8> /x8e/xa3/xb5/xf8 <CJK> +<U60DE> /x8e/xa3/xb5/xf9 <CJK> +<U39B7> /x8e/xa3/xb5/xfa <CJK> +<U39F3> /x8e/xa3/xb5/xfb <CJK> +<U637E> /x8e/xa3/xb5/xfc <CJK> +<U638B> /x8e/xa3/xb5/xfd <CJK> +<U3A02> /x8e/xa3/xb5/xfe <CJK> +<U3A0B> /x8e/xa3/xb6/xa1 <CJK> +<U6379> /x8e/xa3/xb6/xa2 <CJK> +<U6386> /x8e/xa3/xb6/xa3 <CJK> +<U6393> /x8e/xa3/xb6/xa4 <CJK> +<U3A04> /x8e/xa3/xb6/xa5 <CJK> +<U6373> /x8e/xa3/xb6/xa6 <CJK> +<U636A> /x8e/xa3/xb6/xa7 <CJK> +<U636C> /x8e/xa3/xb6/xa9 <CJK> +<U3A08> /x8e/xa3/xb6/xaa <CJK> +<U637F> /x8e/xa3/xb6/xab <CJK> +<U39FC> /x8e/xa3/xb6/xac <CJK> +<U63B2> /x8e/xa3/xb6/xad <CJK> +<U63BA> /x8e/xa3/xb6/xae <CJK> +<U39FF> /x8e/xa3/xb6/xaf <CJK> +<U3A00> /x8e/xa3/xb6/xb0 <CJK> +<U6366> /x8e/xa3/xb6/xb1 <CJK> +<U6374> /x8e/xa3/xb6/xb2 <CJK> +<U3A8B> /x8e/xa3/xb6/xb3 <CJK> +<U655A> /x8e/xa3/xb6/xb4 <CJK> +<U3A8D> /x8e/xa3/xb6/xb5 <CJK> +<U654E> /x8e/xa3/xb6/xb6 <CJK> +<U654D> /x8e/xa3/xb6/xb7 <CJK> +<U658D> /x8e/xa3/xb6/xb8 <CJK> +<U658E> /x8e/xa3/xb6/xb9 <CJK> +<U65AD> /x8e/xa3/xb6/xba <CJK> +<U3ACA> /x8e/xa3/xb6/xbb <CJK> +<U65C7> /x8e/xa3/xb6/xbc <CJK> +<U65CA> /x8e/xa3/xb6/xbd <CJK> +<U3ACB> /x8e/xa3/xb6/xbe <CJK> +<U65C9> /x8e/xa3/xb6/xbf <CJK> +<U65E3> /x8e/xa3/xb6/xc1 <CJK> +<U6657> /x8e/xa3/xb6/xc2 <CJK> +<U3AF3> /x8e/xa3/xb6/xc3 <CJK> +<U6663> /x8e/xa3/xb6/xc4 <CJK> +<U6667> /x8e/xa3/xb6/xc5 <CJK> +<U671A> /x8e/xa3/xb6/xc6 <CJK> +<U6719> /x8e/xa3/xb6/xc7 <CJK> +<U6716> /x8e/xa3/xb6/xc8 <CJK> +<U3B36> /x8e/xa3/xb6/xc9 <CJK> +<U3B6A> /x8e/xa3/xb6/xca <CJK> +<U689E> /x8e/xa3/xb6/xcb <CJK> +<U68B6> /x8e/xa3/xb6/xcc <CJK> +<U6898> /x8e/xa3/xb6/xcd <CJK> +<U6873> /x8e/xa3/xb6/xce <CJK> +<U3B6B> /x8e/xa3/xb6/xcf <CJK> +<U689A> /x8e/xa3/xb6/xd0 <CJK> +<U688E> /x8e/xa3/xb6/xd1 <CJK> +<U68B7> /x8e/xa3/xb6/xd2 <CJK> +<U68DB> /x8e/xa3/xb6/xd3 <CJK> +<U68A5> /x8e/xa3/xb6/xd4 <CJK> +<U686C> /x8e/xa3/xb6/xd5 <CJK> +<U68C1> /x8e/xa3/xb6/xd6 <CJK> +<U6884> /x8e/xa3/xb6/xd7 <CJK> +<U3B71> /x8e/xa3/xb6/xd8 <CJK> +<U3B68> /x8e/xa3/xb6/xd9 <CJK> +<U6895> /x8e/xa3/xb6/xda <CJK> +<U687A> /x8e/xa3/xb6/xdb <CJK> +<U6899> /x8e/xa3/xb6/xdc <CJK> +<U3B72> /x8e/xa3/xb6/xdd <CJK> +<U68B8> /x8e/xa3/xb6/xde <CJK> +<U68B9> /x8e/xa3/xb6/xdf <CJK> +<U6870> /x8e/xa3/xb6/xe0 <CJK> +<U3C2E> /x8e/xa3/xb6/xe1 <CJK> +<U6B35> /x8e/xa3/xb6/xe2 <CJK> +<U3C62> /x8e/xa3/xb6/xe3 <CJK> +<U6B90> /x8e/xa3/xb6/xe4 <CJK> +<U6BBB> /x8e/xa3/xb6/xe5 <CJK> +<U6BED> /x8e/xa3/xb6/xe6 <CJK> +<U3C98> /x8e/xa3/xb6/xe7 <CJK> +<U3CB5> /x8e/xa3/xb6/xe8 <CJK> +<U3CEB> /x8e/xa3/xb6/xe9 <CJK> +<U6DC1> /x8e/xa3/xb6/xea <CJK> +<U6DC3> /x8e/xa3/xb6/xeb <CJK> +<U6DCE> /x8e/xa3/xb6/xec <CJK> +<U3CFB> /x8e/xa3/xb6/xed <CJK> +<U3CF8> /x8e/xa3/xb6/xee <CJK> +<U6DAD> /x8e/xa3/xb6/xef <CJK> +<U6E04> /x8e/xa3/xb6/xf0 <CJK> +<U3CF5> /x8e/xa3/xb6/xf1 <CJK> +<U6DB9> /x8e/xa3/xb6/xf2 <CJK> +<U3D08> /x8e/xa3/xb6/xf3 <CJK> +<U6DE7> /x8e/xa3/xb6/xf4 <CJK> +<U6E08> /x8e/xa3/xb6/xf6 <CJK> +<U6E06> /x8e/xa3/xb6/xf7 <CJK> +<U3D0A> /x8e/xa3/xb6/xf8 <CJK> +<U6E0A> /x8e/xa3/xb6/xf9 <CJK> +<U6DB0> /x8e/xa3/xb6/xfa <CJK> +<U3D06> /x8e/xa3/xb6/xfb <CJK> +<U6DF8> /x8e/xa3/xb6/xfc <CJK> +<U6E0C> /x8e/xa3/xb6/xfd <CJK> +<U3CFD> /x8e/xa3/xb6/xfe <CJK> +<U6DB1> /x8e/xa3/xb7/xa1 <CJK> +<U3CFA> /x8e/xa3/xb7/xa2 <CJK> +<U6E02> /x8e/xa3/xb7/xa3 <CJK> +<U6E07> /x8e/xa3/xb7/xa4 <CJK> +<U6E09> /x8e/xa3/xb7/xa5 <CJK> +<U6E01> /x8e/xa3/xb7/xa6 <CJK> +<U6E17> /x8e/xa3/xb7/xa7 <CJK> +<U6DFF> /x8e/xa3/xb7/xa8 <CJK> +<U6E12> /x8e/xa3/xb7/xa9 <CJK> +<U3DBA> /x8e/xa3/xb7/xaa <CJK> +<U3DB9> /x8e/xa3/xb7/xab <CJK> +<U7103> /x8e/xa3/xb7/xac <CJK> +<U7107> /x8e/xa3/xb7/xad <CJK> +<U7101> /x8e/xa3/xb7/xae <CJK> +<U70F5> /x8e/xa3/xb7/xaf <CJK> +<U70F1> /x8e/xa3/xb7/xb0 <CJK> +<U7108> /x8e/xa3/xb7/xb1 <CJK> +<U70F2> /x8e/xa3/xb7/xb2 <CJK> +<U710F> /x8e/xa3/xb7/xb3 <CJK> +<U3DBB> /x8e/xa3/xb7/xb4 <CJK> +<U70FE> /x8e/xa3/xb7/xb5 <CJK> +<U3E18> /x8e/xa3/xb7/xb6 <CJK> +<U3E40> /x8e/xa3/xb7/xb7 <CJK> +<U3E3D> /x8e/xa3/xb7/xb8 <CJK> +<U731A> /x8e/xa3/xb7/xb9 <CJK> +<U7310> /x8e/xa3/xb7/xba <CJK> +<U730E> /x8e/xa3/xb7/xbb <CJK> +<U7402> /x8e/xa3/xb7/xbc <CJK> +<U73F3> /x8e/xa3/xb7/xbd <CJK> +<U3ECD> /x8e/xa3/xb7/xbe <CJK> +<U3EC9> /x8e/xa3/xb7/xbf <CJK> +<U73FB> /x8e/xa3/xb7/xc0 <CJK> +<U3ECB> /x8e/xa3/xb7/xc1 <CJK> +<U3ECA> /x8e/xa3/xb7/xc2 <CJK> +<U3ECE> /x8e/xa3/xb7/xc3 <CJK> +<U751B> /x8e/xa3/xb7/xc4 <CJK> +<U7523> /x8e/xa3/xb7/xc5 <CJK> +<U7561> /x8e/xa3/xb7/xc6 <CJK> +<U7568> /x8e/xa3/xb7/xc7 <CJK> +<U3F5E> /x8e/xa3/xb7/xc8 <CJK> +<U7567> /x8e/xa3/xb7/xc9 <CJK> +<U75D3> /x8e/xa3/xb7/xca <CJK> +<U3F91> /x8e/xa3/xb7/xcb <CJK> +<U3F8C> /x8e/xa3/xb7/xcc <CJK> +<U7690> /x8e/xa3/xb7/xcd <CJK> +<U3FE1> /x8e/xa3/xb7/xce <CJK> +<U4002> /x8e/xa3/xb7/xcf <CJK> +<U76D5> /x8e/xa3/xb7/xd0 <CJK> +<U76D7> /x8e/xa3/xb7/xd1 <CJK> +<U76D6> /x8e/xa3/xb7/xd2 <CJK> +<U7730> /x8e/xa3/xb7/xd3 <CJK> +<U402B> /x8e/xa3/xb7/xd4 <CJK> +<U7726> /x8e/xa3/xb7/xd5 <CJK> +<U402A> /x8e/xa3/xb7/xd6 <CJK> +<U7740> /x8e/xa3/xb7/xd7 <CJK> +<U3E14> /x8e/xa3/xb7/xd8 <CJK> +<U771E> /x8e/xa3/xb7/xd9 <CJK> +<U40AD> /x8e/xa3/xb7/xda <CJK> +<U40A3> /x8e/xa3/xb7/xdb <CJK> +<U40AB> /x8e/xa3/xb7/xdc <CJK> +<U7847> /x8e/xa3/xb7/xdd <CJK> +<U40AF> /x8e/xa3/xb7/xde <CJK> +<U784B> /x8e/xa3/xb7/xdf <CJK> +<U7851> /x8e/xa3/xb7/xe0 <CJK> +<U784F> /x8e/xa3/xb7/xe1 <CJK> +<U7842> /x8e/xa3/xb7/xe2 <CJK> +<U7846> /x8e/xa3/xb7/xe3 <CJK> +<U4104> /x8e/xa3/xb7/xe4 <CJK> +<U796E> /x8e/xa3/xb7/xe5 <CJK> +<U796C> /x8e/xa3/xb7/xe6 <CJK> +<U79F2> /x8e/xa3/xb7/xe7 <CJK> +<U4144> /x8e/xa3/xb7/xe8 <CJK> +<U79F1> /x8e/xa3/xb7/xe9 <CJK> +<U79F5> /x8e/xa3/xb7/xea <CJK> +<U79F3> /x8e/xa3/xb7/xeb <CJK> +<U79F9> /x8e/xa3/xb7/xec <CJK> +<U413D> /x8e/xa3/xb7/xed <CJK> +<U4147> /x8e/xa3/xb7/xee <CJK> +<U419C> /x8e/xa3/xb7/xef <CJK> +<U7A9A> /x8e/xa3/xb7/xf0 <CJK> +<U7A93> /x8e/xa3/xb7/xf1 <CJK> +<U7A91> /x8e/xa3/xb7/xf2 <CJK> +<U7AE1> /x8e/xa3/xb7/xf3 <CJK> +<U41E0> /x8e/xa3/xb7/xf4 <CJK> +<U41E4> /x8e/xa3/xb7/xf5 <CJK> +<U7B21> /x8e/xa3/xb7/xf6 <CJK> +<U7B1C> /x8e/xa3/xb7/xf7 <CJK> +<U7B16> /x8e/xa3/xb7/xf8 <CJK> +<U7B17> /x8e/xa3/xb7/xf9 <CJK> +<U7B36> /x8e/xa3/xb7/xfa <CJK> +<U7B1F> /x8e/xa3/xb7/xfb <CJK> +<U4280> /x8e/xa3/xb7/xfc <CJK> +<U7C93> /x8e/xa3/xb7/xfd <CJK> +<U7C99> /x8e/xa3/xb7/xfe <CJK> +<U7C9A> /x8e/xa3/xb8/xa1 <CJK> +<U7C9C> /x8e/xa3/xb8/xa2 <CJK> +<U42CA> /x8e/xa3/xb8/xa3 <CJK> +<U7D49> /x8e/xa3/xb8/xa4 <CJK> +<U42D4> /x8e/xa3/xb8/xa5 <CJK> +<U7D34> /x8e/xa3/xb8/xa6 <CJK> +<U7D37> /x8e/xa3/xb8/xa7 <CJK> +<U42D2> /x8e/xa3/xb8/xa8 <CJK> +<U7D2D> /x8e/xa3/xb8/xa9 <CJK> +<U42CB> /x8e/xa3/xb8/xaa <CJK> +<U7D4C> /x8e/xa3/xb8/xab <CJK> +<U42CE> /x8e/xa3/xb8/xac <CJK> +<U42D3> /x8e/xa3/xb8/xad <CJK> +<U7D48> /x8e/xa3/xb8/xae <CJK> +<U4344> /x8e/xa3/xb8/xaf <CJK> +<U4348> /x8e/xa3/xb8/xb0 <CJK> +<U7F3B> /x8e/xa3/xb8/xb1 <CJK> +<U4345> /x8e/xa3/xb8/xb2 <CJK> +<U4381> /x8e/xa3/xb8/xb3 <CJK> +<U4386> /x8e/xa3/xb8/xb4 <CJK> +<U4385> /x8e/xa3/xb8/xb5 <CJK> +<U8008> /x8e/xa3/xb8/xb6 <CJK> +<U801A> /x8e/xa3/xb8/xb7 <CJK> +<U43A3> /x8e/xa3/xb8/xb8 <CJK> +<U801D> /x8e/xa3/xb8/xb9 <CJK> +<U43B5> /x8e/xa3/xb8/xba <CJK> +<U8049> /x8e/xa3/xb8/xbb <CJK> +<U8045> /x8e/xa3/xb8/xbc <CJK> +<U8044> /x8e/xa3/xb8/xbd <CJK> +<U7C9B> /x8e/xa3/xb8/xbe <CJK> +<U43FA> /x8e/xa3/xb8/xbf <CJK> +<U43F9> /x8e/xa3/xb8/xc0 <CJK> +<U812A> /x8e/xa3/xb8/xc1 <CJK> +<U812E> /x8e/xa3/xb8/xc2 <CJK> +<U43FB> /x8e/xa3/xb8/xc3 <CJK> +<U43F2> /x8e/xa3/xb8/xc4 <CJK> +<U8131> /x8e/xa3/xb8/xc5 <CJK> +<U43EF> /x8e/xa3/xb8/xc6 <CJK> +<U811A> /x8e/xa3/xb8/xc7 <CJK> +<U8134> /x8e/xa3/xb8/xc8 <CJK> +<U8117> /x8e/xa3/xb8/xc9 <CJK> +<U445B> /x8e/xa3/xb8/xca <CJK> +<U4466> /x8e/xa3/xb8/xcb <CJK> +<U44CE> /x8e/xa3/xb8/xcc <CJK> +<U831D> /x8e/xa3/xb8/xcd <CJK> +<U8371> /x8e/xa3/xb8/xce <CJK> +<U8384> /x8e/xa3/xb8/xcf <CJK> +<U8380> /x8e/xa3/xb8/xd0 <CJK> +<U8372> /x8e/xa3/xb8/xd1 <CJK> +<U83A1> /x8e/xa3/xb8/xd2 <CJK> +<U35B4> /x8e/xa3/xb8/xd3 <CJK> +<U8379> /x8e/xa3/xb8/xd4 <CJK> +<U8391> /x8e/xa3/xb8/xd5 <CJK> +<U44C8> /x8e/xa3/xb8/xd6 <CJK> +<U839F> /x8e/xa3/xb8/xd7 <CJK> +<U83AD> /x8e/xa3/xb8/xd8 <CJK> +<U44D1> /x8e/xa3/xb8/xd9 <CJK> +<U44C5> /x8e/xa3/xb8/xda <CJK> +<U8323> /x8e/xa3/xb8/xdb <CJK> +<U44D2> /x8e/xa3/xb8/xdc <CJK> +<U8385> /x8e/xa3/xb8/xdd <CJK> +<U839C> /x8e/xa3/xb8/xde <CJK> +<U83B7> /x8e/xa3/xb8/xdf <CJK> +<U8658> /x8e/xa3/xb8/xe0 <CJK> +<U865A> /x8e/xa3/xb8/xe1 <CJK> +<U458F> /x8e/xa3/xb8/xe2 <CJK> +<U8657> /x8e/xa3/xb8/xe3 <CJK> +<U86B2> /x8e/xa3/xb8/xe4 <CJK> +<U45A7> /x8e/xa3/xb8/xe5 <CJK> +<U86AE> /x8e/xa3/xb8/xe6 <CJK> +<U45A5> /x8e/xa3/xb8/xe7 <CJK> +<U45A4> /x8e/xa3/xb8/xe8 <CJK> +<U4611> /x8e/xa3/xb8/xe9 <CJK> +<U8845> /x8e/xa3/xb8/xea <CJK> +<U889C> /x8e/xa3/xb8/xeb <CJK> +<U8894> /x8e/xa3/xb8/xec <CJK> +<U88A3> /x8e/xa3/xb8/xed <CJK> +<U888F> /x8e/xa3/xb8/xee <CJK> +<U88A5> /x8e/xa3/xb8/xef <CJK> +<U88A9> /x8e/xa3/xb8/xf0 <CJK> +<U88A6> /x8e/xa3/xb8/xf1 <CJK> +<U888A> /x8e/xa3/xb8/xf2 <CJK> +<U88A0> /x8e/xa3/xb8/xf3 <CJK> +<U8890> /x8e/xa3/xb8/xf4 <CJK> +<U8992> /x8e/xa3/xb8/xf5 <CJK> +<U8991> /x8e/xa3/xb8/xf6 <CJK> +<U8994> /x8e/xa3/xb8/xf7 <CJK> +<U46B5> /x8e/xa3/xb8/xf8 <CJK> +<U8A26> /x8e/xa3/xb8/xf9 <CJK> +<U8A32> /x8e/xa3/xb8/xfa <CJK> +<U8A28> /x8e/xa3/xb8/xfb <CJK> +<U46B4> /x8e/xa3/xb8/xfc <CJK> +<U46BD> /x8e/xa3/xb8/xfd <CJK> +<U8A1C> /x8e/xa3/xb8/xfe <CJK> +<U46BB> /x8e/xa3/xb9/xa1 <CJK> +<U8A2B> /x8e/xa3/xb9/xa2 <CJK> +<U8A20> /x8e/xa3/xb9/xa3 <CJK> +<U46B9> /x8e/xa3/xb9/xa4 <CJK> +<U8A29> /x8e/xa3/xb9/xa5 <CJK> +<U46C2> /x8e/xa3/xb9/xa6 <CJK> +<U46BE> /x8e/xa3/xb9/xa7 <CJK> +<U46BA> /x8e/xa3/xb9/xa8 <CJK> +<U8A21> /x8e/xa3/xb9/xa9 <CJK> +<U8C3A> /x8e/xa3/xb9/xaa <CJK> +<U3AB7> /x8e/xa3/xb9/xab <CJK> +<U8C5B> /x8e/xa3/xb9/xac <CJK> +<U8C58> /x8e/xa3/xb9/xad <CJK> +<U8C7C> /x8e/xa3/xb9/xae <CJK> +<U4758> /x8e/xa3/xb9/xaf <CJK> +<U8CA6> /x8e/xa3/xb9/xb0 <CJK> +<U8CAE> /x8e/xa3/xb9/xb1 <CJK> +<U8CAD> /x8e/xa3/xb9/xb2 <CJK> +<U8D65> /x8e/xa3/xb9/xb3 <CJK> +<U479B> /x8e/xa3/xb9/xb4 <CJK> +<U8D7E> /x8e/xa3/xb9/xb5 <CJK> +<U479C> /x8e/xa3/xb9/xb6 <CJK> +<U8D7C> /x8e/xa3/xb9/xb7 <CJK> +<U8D7F> /x8e/xa3/xb9/xb8 <CJK> +<U8D7A> /x8e/xa3/xb9/xb9 <CJK> +<U8DBD> /x8e/xa3/xb9/xba <CJK> +<U47DA> /x8e/xa3/xb9/xbb <CJK> +<U47DE> /x8e/xa3/xb9/xbc <CJK> +<U8DC0> /x8e/xa3/xb9/xbd <CJK> +<U8DBB> /x8e/xa3/xb9/xbe <CJK> +<U8EAD> /x8e/xa3/xb9/xbf <CJK> +<U8EAF> /x8e/xa3/xb9/xc0 <CJK> +<U8ED6> /x8e/xa3/xb9/xc1 <CJK> +<U484D> /x8e/xa3/xb9/xc2 <CJK> +<U4846> /x8e/xa3/xb9/xc3 <CJK> +<U4847> /x8e/xa3/xb9/xc4 <CJK> +<U484B> /x8e/xa3/xb9/xc5 <CJK> +<U484C> /x8e/xa3/xb9/xc6 <CJK> +<U8ED9> /x8e/xa3/xb9/xc7 <CJK> +<U4848> /x8e/xa3/xb9/xc8 <CJK> +<U4899> /x8e/xa3/xb9/xc9 <CJK> +<U9012> /x8e/xa3/xb9/xca <CJK> +<U900E> /x8e/xa3/xb9/xcb <CJK> +<U9025> /x8e/xa3/xb9/xcc <CJK> +<U489B> /x8e/xa3/xb9/xcd <CJK> +<U9013> /x8e/xa3/xb9/xce <CJK> +<U90EE> /x8e/xa3/xb9/xcf <CJK> +<U48CE> /x8e/xa3/xb9/xd0 <CJK> +<U90AB> /x8e/xa3/xb9/xd1 <CJK> +<U90F7> /x8e/xa3/xb9/xd2 <CJK> +<U48EB> /x8e/xa3/xb9/xd3 <CJK> +<U9159> /x8e/xa3/xb9/xd4 <CJK> +<U9154> /x8e/xa3/xb9/xd5 <CJK> +<U91F2> /x8e/xa3/xb9/xd6 <CJK> +<U91F0> /x8e/xa3/xb9/xd7 <CJK> +<U91E5> /x8e/xa3/xb9/xd8 <CJK> +<U91F6> /x8e/xa3/xb9/xd9 <CJK> +<U491C> /x8e/xa3/xb9/xda <CJK> +<U498C> /x8e/xa3/xb9/xdb <CJK> +<U9587> /x8e/xa3/xb9/xdc <CJK> +<U49D1> /x8e/xa3/xb9/xdd <CJK> +<U965A> /x8e/xa3/xb9/xde <CJK> +<U49D6> /x8e/xa3/xb9/xdf <CJK> +<U49D3> /x8e/xa3/xb9/xe0 <CJK> +<U966E> /x8e/xa3/xb9/xe1 <CJK> +<U49D4> /x8e/xa3/xb9/xe2 <CJK> +<U49D0> /x8e/xa3/xb9/xe3 <CJK> +<U49D5> /x8e/xa3/xb9/xe4 <CJK> +<U9679> /x8e/xa3/xb9/xe5 <CJK> +<U4A0B> /x8e/xa3/xb9/xe6 <CJK> +<U98E1> /x8e/xa3/xb9/xe7 <CJK> +<U98E6> /x8e/xa3/xb9/xe8 <CJK> +<U4BC6> /x8e/xa3/xb9/xe9 <CJK> +<U9EC4> /x8e/xa3/xb9/xea <CJK> +<U9ED2> /x8e/xa3/xb9/xeb <CJK> +<U4E80> /x8e/xa3/xb9/xec <CJK> +<U3424> /x8e/xa3/xb9/xed <CJK> +<U4E81> /x8e/xa3/xb9/xee <CJK> +<U508F> /x8e/xa3/xb9/xef <CJK> +<U5097> /x8e/xa3/xb9/xf0 <CJK> +<U5088> /x8e/xa3/xb9/xf1 <CJK> +<U5089> /x8e/xa3/xb9/xf2 <CJK> +<U3474> /x8e/xa3/xb9/xf3 <CJK> +<U347A> /x8e/xa3/xb9/xf4 <CJK> +<U5081> /x8e/xa3/xb9/xf5 <CJK> +<U5160> /x8e/xa3/xb9/xf6 <CJK> +<U00020564> /x8e/xa3/xb9/xf7 <CJK> +<U34C3> /x8e/xa3/xb9/xf8 <CJK> +<U5E42> /x8e/xa3/xb9/xf9 <CJK> +<U51D3> /x8e/xa3/xb9/xfa <CJK> +<U34D4> /x8e/xa3/xb9/xfb <CJK> +<U34D5> /x8e/xa3/xb9/xfc <CJK> +<U51D2> /x8e/xa3/xb9/xfd <CJK> +<U51D6> /x8e/xa3/xb9/xfe <CJK> +<U5273> /x8e/xa3/xba/xa1 <CJK> +<U34FB> /x8e/xa3/xba/xa2 <CJK> +<U5270> /x8e/xa3/xba/xa3 <CJK> +<U34F7> /x8e/xa3/xba/xa4 <CJK> +<U3532> /x8e/xa3/xba/xa5 <CJK> +<U53A8> /x8e/xa3/xba/xa7 <CJK> +<U53A6> /x8e/xa3/xba/xa8 <CJK> +<U53C5> /x8e/xa3/xba/xa9 <CJK> +<U5597> /x8e/xa3/xba/xaa <CJK> +<U55DE> /x8e/xa3/xba/xab <CJK> +<U35BA> /x8e/xa3/xba/xac <CJK> +<U35BF> /x8e/xa3/xba/xad <CJK> +<U5596> /x8e/xa3/xba/xae <CJK> +<U55B4> /x8e/xa3/xba/xaf <CJK> +<U35C7> /x8e/xa3/xba/xb0 <CJK> +<U5585> /x8e/xa3/xba/xb1 <CJK> +<U35B7> /x8e/xa3/xba/xb2 <CJK> +<U559B> /x8e/xa3/xba/xb3 <CJK> +<U55A0> /x8e/xa3/xba/xb4 <CJK> +<U35B9> /x8e/xa3/xba/xb5 <CJK> +<U5559> /x8e/xa3/xba/xb6 <CJK> +<U35C3> /x8e/xa3/xba/xb7 <CJK> +<U5586> /x8e/xa3/xba/xb8 <CJK> +<U35BD> /x8e/xa3/xba/xb9 <CJK> +<U35D0> /x8e/xa3/xba/xba <CJK> +<U55AF> /x8e/xa3/xba/xbb <CJK> +<U557A> /x8e/xa3/xba/xbc <CJK> +<U35C1> /x8e/xa3/xba/xbd <CJK> +<U35BE> /x8e/xa3/xba/xbe <CJK> +<U35CD> /x8e/xa3/xba/xbf <CJK> +<U559E> /x8e/xa3/xba/xc0 <CJK> +<U35CB> /x8e/xa3/xba/xc1 <CJK> +<U55A9> /x8e/xa3/xba/xc2 <CJK> +<U570F> /x8e/xa3/xba/xc3 <CJK> +<U570E> /x8e/xa3/xba/xc4 <CJK> +<U581A> /x8e/xa3/xba/xc5 <CJK> +<U364F> /x8e/xa3/xba/xc6 <CJK> +<U581F> /x8e/xa3/xba/xc7 <CJK> +<U3653> /x8e/xa3/xba/xc8 <CJK> +<U583C> /x8e/xa3/xba/xc9 <CJK> +<U5818> /x8e/xa3/xba/xca <CJK> +<U583E> /x8e/xa3/xba/xcb <CJK> +<U5826> /x8e/xa3/xba/xcc <CJK> +<U3655> /x8e/xa3/xba/xcd <CJK> +<U583A> /x8e/xa3/xba/xce <CJK> +<U00021364> /x8e/xa3/xba/xcf <CJK> +<U5822> /x8e/xa3/xba/xd0 <CJK> +<U3651> /x8e/xa3/xba/xd1 <CJK> +<U58FB> /x8e/xa3/xba/xd2 <CJK> +<U5963> /x8e/xa3/xba/xd3 <CJK> +<U5964> /x8e/xa3/xba/xd4 <CJK> +<U369F> /x8e/xa3/xba/xd5 <CJK> +<U5AA8> /x8e/xa3/xba/xd6 <CJK> +<U5AA3> /x8e/xa3/xba/xd7 <CJK> +<U5A82> /x8e/xa3/xba/xd8 <CJK> +<U5A88> /x8e/xa3/xba/xd9 <CJK> +<U5AA1> /x8e/xa3/xba/xda <CJK> +<U5A85> /x8e/xa3/xba/xdb <CJK> +<U5A98> /x8e/xa3/xba/xdc <CJK> +<U36FE> /x8e/xa3/xba/xdd <CJK> +<U5A99> /x8e/xa3/xba/xde <CJK> +<U36FB> /x8e/xa3/xba/xdf <CJK> +<U5A89> /x8e/xa3/xba/xe0 <CJK> +<U5A81> /x8e/xa3/xba/xe1 <CJK> +<U5A96> /x8e/xa3/xba/xe2 <CJK> +<U5A80> /x8e/xa3/xba/xe3 <CJK> +<U36F1> /x8e/xa3/xba/xe4 <CJK> +<U36F5> /x8e/xa3/xba/xe5 <CJK> +<U5A91> /x8e/xa3/xba/xe6 <CJK> +<U36EF> /x8e/xa3/xba/xe7 <CJK> +<U3704> /x8e/xa3/xba/xe8 <CJK> +<U3703> /x8e/xa3/xba/xe9 <CJK> +<U36F4> /x8e/xa3/xba/xea <CJK> +<U5ACF> /x8e/xa3/xba/xeb <CJK> +<U36F3> /x8e/xa3/xba/xec <CJK> +<U3702> /x8e/xa3/xba/xed <CJK> +<U36F7> /x8e/xa3/xba/xee <CJK> +<U36FA> /x8e/xa3/xba/xef <CJK> +<U36FD> /x8e/xa3/xba/xf0 <CJK> +<U36EE> /x8e/xa3/xba/xf1 <CJK> +<U5A87> /x8e/xa3/xba/xf2 <CJK> +<U5AA0> /x8e/xa3/xba/xf3 <CJK> +<U36F0> /x8e/xa3/xba/xf4 <CJK> +<U5A79> /x8e/xa3/xba/xf5 <CJK> +<U36F2> /x8e/xa3/xba/xf6 <CJK> +<U5A86> /x8e/xa3/xba/xf7 <CJK> +<U5AAB> /x8e/xa3/xba/xf8 <CJK> +<U5AAA> /x8e/xa3/xba/xf9 <CJK> +<U5AA4> /x8e/xa3/xba/xfa <CJK> +<U5A8D> /x8e/xa3/xba/xfb <CJK> +<U5A7E> /x8e/xa3/xba/xfc <CJK> +<U3744> /x8e/xa3/xba/xfd <CJK> +<U5BD5> /x8e/xa3/xba/xfe <CJK> +<U3762> /x8e/xa3/xbb/xa1 <CJK> +<U3777> /x8e/xa3/xbb/xa2 <CJK> +<U3DC9> /x8e/xa3/xbb/xa3 <CJK> +<U5C1E> /x8e/xa3/xbb/xa4 <CJK> +<U5C5F> /x8e/xa3/xbb/xa5 <CJK> +<U5C5E> /x8e/xa3/xbb/xa6 <CJK> +<U5D44> /x8e/xa3/xbb/xa7 <CJK> +<U5D3E> /x8e/xa3/xbb/xa8 <CJK> +<U37E8> /x8e/xa3/xbb/xa9 <CJK> +<U5D48> /x8e/xa3/xbb/xaa <CJK> +<U5D1C> /x8e/xa3/xbb/xab <CJK> +<U37EF> /x8e/xa3/xbb/xac <CJK> +<U5D5B> /x8e/xa3/xbb/xad <CJK> +<U5D4D> /x8e/xa3/xbb/xae <CJK> +<U37E6> /x8e/xa3/xbb/xaf <CJK> +<U37ED> /x8e/xa3/xbb/xb0 <CJK> +<U5D57> /x8e/xa3/xbb/xb1 <CJK> +<U37E7> /x8e/xa3/xbb/xb2 <CJK> +<U5D53> /x8e/xa3/xbb/xb3 <CJK> +<U5D4F> /x8e/xa3/xbb/xb4 <CJK> +<U37EB> /x8e/xa3/xbb/xb5 <CJK> +<U5D3B> /x8e/xa3/xbb/xb6 <CJK> +<U5D46> /x8e/xa3/xbb/xb7 <CJK> +<U382D> /x8e/xa3/xbb/xb8 <CJK> +<U3855> /x8e/xa3/xbb/xb9 <CJK> +<U5E46> /x8e/xa3/xbb/xba <CJK> +<U5E47> /x8e/xa3/xbb/xbb <CJK> +<U3853> /x8e/xa3/xbb/xbc <CJK> +<U5E48> /x8e/xa3/xbb/xbd <CJK> +<U5EC0> /x8e/xa3/xbb/xbe <CJK> +<U5EBD> /x8e/xa3/xbb/xbf <CJK> +<U5EBF> /x8e/xa3/xbb/xc0 <CJK> +<U3890> /x8e/xa3/xbb/xc1 <CJK> +<U5F11> /x8e/xa3/xbb/xc2 <CJK> +<U38BE> /x8e/xa3/xbb/xc3 <CJK> +<U5F3E> /x8e/xa3/xbb/xc4 <CJK> +<U5F3B> /x8e/xa3/xbb/xc5 <CJK> +<U38BD> /x8e/xa3/xbb/xc6 <CJK> +<U5F3A> /x8e/xa3/xbb/xc7 <CJK> +<U38CF> /x8e/xa3/xbb/xc8 <CJK> +<U38D0> /x8e/xa3/xbb/xc9 <CJK> +<U38EC> /x8e/xa3/xbb/xca <CJK> +<U5FA7> /x8e/xa3/xbb/xcb <CJK> +<U394B> /x8e/xa3/xbb/xcc <CJK> +<U60EA> /x8e/xa3/xbb/xcd <CJK> +<U3948> /x8e/xa3/xbb/xce <CJK> +<U6107> /x8e/xa3/xbb/xcf <CJK> +<U6122> /x8e/xa3/xbb/xd0 <CJK> +<U610C> /x8e/xa3/xbb/xd1 <CJK> +<U3955> /x8e/xa3/xbb/xd2 <CJK> +<U3951> /x8e/xa3/xbb/xd3 <CJK> +<U60B3> /x8e/xa3/xbb/xd4 <CJK> +<U60D6> /x8e/xa3/xbb/xd5 <CJK> +<U60D2> /x8e/xa3/xbb/xd6 <CJK> +<U394E> /x8e/xa3/xbb/xd7 <CJK> +<U60E3> /x8e/xa3/xbb/xd8 <CJK> +<U60E5> /x8e/xa3/xbb/xd9 <CJK> +<U60E9> /x8e/xa3/xbb/xda <CJK> +<U396B> /x8e/xa3/xbb/xdb <CJK> +<U395E> /x8e/xa3/xbb/xdc <CJK> +<U6111> /x8e/xa3/xbb/xdd <CJK> +<U60FD> /x8e/xa3/xbb/xde <CJK> +<U3960> /x8e/xa3/xbb/xdf <CJK> +<U3967> /x8e/xa3/xbb/xe0 <CJK> +<U611E> /x8e/xa3/xbb/xe1 <CJK> +<U6120> /x8e/xa3/xbb/xe2 <CJK> +<U6121> /x8e/xa3/xbb/xe3 <CJK> +<U621E> /x8e/xa3/xbb/xe4 <CJK> +<U39B8> /x8e/xa3/xbb/xe5 <CJK> +<U63E2> /x8e/xa3/xbb/xe6 <CJK> +<U63DE> /x8e/xa3/xbb/xe7 <CJK> +<U63E6> /x8e/xa3/xbb/xe8 <CJK> +<U3A14> /x8e/xa3/xbb/xe9 <CJK> +<U3A0F> /x8e/xa3/xbb/xea <CJK> +<U3A07> /x8e/xa3/xbb/xeb <CJK> +<U3A13> /x8e/xa3/xbb/xec <CJK> +<U63F8> /x8e/xa3/xbb/xed <CJK> +<U3A17> /x8e/xa3/xbb/xee <CJK> +<U63FE> /x8e/xa3/xbb/xef <CJK> +<U63C1> /x8e/xa3/xbb/xf0 <CJK> +<U63BF> /x8e/xa3/xbb/xf1 <CJK> +<U63F7> /x8e/xa3/xbb/xf2 <CJK> +<U63D1> /x8e/xa3/xbb/xf3 <CJK> +<U655F> /x8e/xa3/xbb/xf4 <CJK> +<U6560> /x8e/xa3/xbb/xf5 <CJK> +<U6561> /x8e/xa3/xbb/xf6 <CJK> +<U3A9A> /x8e/xa3/xbb/xf7 <CJK> +<U3AB8> /x8e/xa3/xbb/xf8 <CJK> +<U65D1> /x8e/xa3/xbb/xf9 <CJK> +<U3AF7> /x8e/xa3/xbb/xfa <CJK> +<U3AF8> /x8e/xa3/xbb/xfb <CJK> +<U667D> /x8e/xa3/xbb/xfc <CJK> +<U666B> /x8e/xa3/xbb/xfd <CJK> +<U667F> /x8e/xa3/xbb/xfe <CJK> +<U3AFD> /x8e/xa3/xbc/xa1 <CJK> +<U3AF5> /x8e/xa3/xbc/xa2 <CJK> +<U6673> /x8e/xa3/xbc/xa3 <CJK> +<U6681> /x8e/xa3/xbc/xa4 <CJK> +<U666D> /x8e/xa3/xbc/xa5 <CJK> +<U6669> /x8e/xa3/xbc/xa6 <CJK> +<U3AFA> /x8e/xa3/xbc/xa7 <CJK> +<U3B38> /x8e/xa3/xbc/xa8 <CJK> +<U671E> /x8e/xa3/xbc/xa9 <CJK> +<U68ED> /x8e/xa3/xbc/xaa <CJK> +<U3B87> /x8e/xa3/xbc/xab <CJK> +<U3B80> /x8e/xa3/xbc/xac <CJK> +<U3B88> /x8e/xa3/xbc/xad <CJK> +<U3B79> /x8e/xa3/xbc/xae <CJK> +<U6903> /x8e/xa3/xbc/xaf <CJK> +<U3B7C> /x8e/xa3/xbc/xb0 <CJK> +<U68FE> /x8e/xa3/xbc/xb1 <CJK> +<U68E5> /x8e/xa3/xbc/xb2 <CJK> +<U691E> /x8e/xa3/xbc/xb3 <CJK> +<U6902> /x8e/xa3/xbc/xb4 <CJK> +<U3B83> /x8e/xa3/xbc/xb5 <CJK> +<U3B85> /x8e/xa3/xbc/xb6 <CJK> +<U6909> /x8e/xa3/xbc/xb7 <CJK> +<U68CA> /x8e/xa3/xbc/xb8 <CJK> +<U6900> /x8e/xa3/xbc/xb9 <CJK> +<U6901> /x8e/xa3/xbc/xbb <CJK> +<U6918> /x8e/xa3/xbc/xbc <CJK> +<U68E2> /x8e/xa3/xbc/xbd <CJK> +<U68CF> /x8e/xa3/xbc/xbe <CJK> +<U3B7B> /x8e/xa3/xbc/xbf <CJK> +<U692E> /x8e/xa3/xbc/xc0 <CJK> +<U68C5> /x8e/xa3/xbc/xc1 <CJK> +<U68FF> /x8e/xa3/xbc/xc2 <CJK> +<U3B86> /x8e/xa3/xbc/xc3 <CJK> +<U691C> /x8e/xa3/xbc/xc4 <CJK> +<U68C3> /x8e/xa3/xbc/xc5 <CJK> +<U3C34> /x8e/xa3/xbc/xc6 <CJK> +<U6B6F> /x8e/xa3/xbc/xc7 <CJK> +<U3C55> /x8e/xa3/xbc/xc8 <CJK> +<U6B6E> /x8e/xa3/xbc/xc9 <CJK> +<U3C68> /x8e/xa3/xbc/xca <CJK> +<U6BBE> /x8e/xa3/xbc/xcb <CJK> +<U3C9C> /x8e/xa3/xbc/xcc <CJK> +<U6BF4> /x8e/xa3/xbc/xcd <CJK> +<U6C2D> /x8e/xa3/xbc/xce <CJK> +<U3CFC> /x8e/xa3/xbc/xcf <CJK> +<U6DB6> /x8e/xa3/xbc/xd0 <CJK> +<U6E75> /x8e/xa3/xbc/xd1 <CJK> +<U6E1E> /x8e/xa3/xbc/xd2 <CJK> +<U3D1A> /x8e/xa3/xbc/xd3 <CJK> +<U6E18> /x8e/xa3/xbc/xd4 <CJK> +<U3D17> /x8e/xa3/xbc/xd5 <CJK> +<U6E48> /x8e/xa3/xbc/xd6 <CJK> +<U3D1B> /x8e/xa3/xbc/xd7 <CJK> +<U6E4F> /x8e/xa3/xbc/xd8 <CJK> +<U3D13> /x8e/xa3/xbc/xd9 <CJK> +<U6E42> /x8e/xa3/xbc/xda <CJK> +<U6E6A> /x8e/xa3/xbc/xdb <CJK> +<U6E70> /x8e/xa3/xbc/xdc <CJK> +<U6DFE> /x8e/xa3/xbc/xdd <CJK> +<U3D05> /x8e/xa3/xbc/xde <CJK> +<U3D07> /x8e/xa3/xbc/xdf <CJK> +<U6E6D> /x8e/xa3/xbc/xe0 <CJK> +<U3D1C> /x8e/xa3/xbc/xe1 <CJK> +<U6E7B> /x8e/xa3/xbc/xe2 <CJK> +<U6E7E> /x8e/xa3/xbc/xe3 <CJK> +<U6E59> /x8e/xa3/xbc/xe4 <CJK> +<U3D11> /x8e/xa3/xbc/xe5 <CJK> +<U6E57> /x8e/xa3/xbc/xe6 <CJK> +<U3D16> /x8e/xa3/xbc/xe7 <CJK> +<U6E80> /x8e/xa3/xbc/xe8 <CJK> +<U6E50> /x8e/xa3/xbc/xe9 <CJK> +<U3D15> /x8e/xa3/xbc/xea <CJK> +<U6E29> /x8e/xa3/xbc/xeb <CJK> +<U6E76> /x8e/xa3/xbc/xec <CJK> +<U6E2A> /x8e/xa3/xbc/xed <CJK> +<U6E4C> /x8e/xa3/xbc/xee <CJK> +<U712A> /x8e/xa3/xbc/xef <CJK> +<U3DCB> /x8e/xa3/xbc/xf0 <CJK> +<U7135> /x8e/xa3/xbc/xf1 <CJK> +<U712C> /x8e/xa3/xbc/xf2 <CJK> +<U7137> /x8e/xa3/xbc/xf3 <CJK> +<U711D> /x8e/xa3/xbc/xf4 <CJK> +<U3DC5> /x8e/xa3/xbc/xf5 <CJK> +<U3DC2> /x8e/xa3/xbc/xf6 <CJK> +<U7138> /x8e/xa3/xbc/xf7 <CJK> +<U3DCD> /x8e/xa3/xbc/xf8 <CJK> +<U7134> /x8e/xa3/xbc/xf9 <CJK> +<U712B> /x8e/xa3/xbc/xfa <CJK> +<U7133> /x8e/xa3/xbc/xfb <CJK> +<U7127> /x8e/xa3/xbc/xfc <CJK> +<U7124> /x8e/xa3/xbc/xfd <CJK> +<U3DCA> /x8e/xa3/xbc/xfe <CJK> +<U712D> /x8e/xa3/xbd/xa1 <CJK> +<U7232> /x8e/xa3/xbd/xa2 <CJK> +<U7283> /x8e/xa3/xbd/xa3 <CJK> +<U7282> /x8e/xa3/xbd/xa4 <CJK> +<U7287> /x8e/xa3/xbd/xa5 <CJK> +<U7306> /x8e/xa3/xbd/xa6 <CJK> +<U7324> /x8e/xa3/xbd/xa7 <CJK> +<U7338> /x8e/xa3/xbd/xa8 <CJK> +<U732A> /x8e/xa3/xbd/xa9 <CJK> +<U732C> /x8e/xa3/xbd/xaa <CJK> +<U732B> /x8e/xa3/xbd/xab <CJK> +<U3E83> /x8e/xa3/xbd/xac <CJK> +<U732F> /x8e/xa3/xbd/xad <CJK> +<U7328> /x8e/xa3/xbd/xae <CJK> +<U7417> /x8e/xa3/xbd/xaf <CJK> +<U3ED6> /x8e/xa3/xbd/xb0 <CJK> +<U3ED5> /x8e/xa3/xbd/xb1 <CJK> +<U7419> /x8e/xa3/xbd/xb2 <CJK> +<U7438> /x8e/xa3/xbd/xb3 <CJK> +<U3ED1> /x8e/xa3/xbd/xb4 <CJK> +<U741F> /x8e/xa3/xbd/xb5 <CJK> +<U7414> /x8e/xa3/xbd/xb6 <CJK> +<U743C> /x8e/xa3/xbd/xb7 <CJK> +<U73F7> /x8e/xa3/xbd/xb8 <CJK> +<U741C> /x8e/xa3/xbd/xb9 <CJK> +<U7415> /x8e/xa3/xbd/xba <CJK> +<U7418> /x8e/xa3/xbd/xbb <CJK> +<U7439> /x8e/xa3/xbd/xbc <CJK> +<U74F9> /x8e/xa3/xbd/xbd <CJK> +<U7524> /x8e/xa3/xbd/xbe <CJK> +<U3F52> /x8e/xa3/xbd/xc0 <CJK> +<U3F5F> /x8e/xa3/xbd/xc1 <CJK> +<U756E> /x8e/xa3/xbd/xc2 <CJK> +<U756D> /x8e/xa3/xbd/xc3 <CJK> +<U7571> /x8e/xa3/xbd/xc4 <CJK> +<U758E> /x8e/xa3/xbd/xc5 <CJK> +<U3F95> /x8e/xa3/xbd/xc6 <CJK> +<U75E5> /x8e/xa3/xbd/xc7 <CJK> +<U3F9D> /x8e/xa3/xbd/xc8 <CJK> +<U3F98> /x8e/xa3/xbd/xc9 <CJK> +<U3F9E> /x8e/xa3/xbd/xca <CJK> +<U3F96> /x8e/xa3/xbd/xcb <CJK> +<U7694> /x8e/xa3/xbd/xcc <CJK> +<U76B3> /x8e/xa3/xbd/xcd <CJK> +<U4003> /x8e/xa3/xbd/xce <CJK> +<U76D9> /x8e/xa3/xbd/xcf <CJK> +<U402F> /x8e/xa3/xbd/xd0 <CJK> +<U7748> /x8e/xa3/xbd/xd1 <CJK> +<U7749> /x8e/xa3/xbd/xd2 <CJK> +<U7743> /x8e/xa3/xbd/xd3 <CJK> +<U4031> /x8e/xa3/xbd/xd4 <CJK> +<U4033> /x8e/xa3/xbd/xd5 <CJK> +<U7742> /x8e/xa3/xbd/xd6 <CJK> +<U77DF> /x8e/xa3/xbd/xd7 <CJK> +<U40B4> /x8e/xa3/xbd/xd8 <CJK> +<U7863> /x8e/xa3/xbd/xd9 <CJK> +<U7876> /x8e/xa3/xbd/xda <CJK> +<U40B0> /x8e/xa3/xbd/xdb <CJK> +<U785F> /x8e/xa3/xbd/xdc <CJK> +<U7866> /x8e/xa3/xbd/xdd <CJK> +<U7966> /x8e/xa3/xbd/xde <CJK> +<U7971> /x8e/xa3/xbd/xdf <CJK> +<U4108> /x8e/xa3/xbd/xe0 <CJK> +<U4107> /x8e/xa3/xbd/xe1 <CJK> +<U7976> /x8e/xa3/xbd/xe2 <CJK> +<U7984> /x8e/xa3/xbd/xe3 <CJK> +<U7975> /x8e/xa3/xbd/xe4 <CJK> +<U79FF> /x8e/xa3/xbd/xe5 <CJK> +<U7A07> /x8e/xa3/xbd/xe6 <CJK> +<U414E> /x8e/xa3/xbd/xe7 <CJK> +<U7A0E> /x8e/xa3/xbd/xe8 <CJK> +<U7A09> /x8e/xa3/xbd/xe9 <CJK> +<U4150> /x8e/xa3/xbd/xea <CJK> +<U4152> /x8e/xa3/xbd/xeb <CJK> +<U41A1> /x8e/xa3/xbd/xec <CJK> +<U41A3> /x8e/xa3/xbd/xed <CJK> +<U41A5> /x8e/xa3/xbd/xee <CJK> +<U41CC> /x8e/xa3/xbd/xef <CJK> +<U7AE7> /x8e/xa3/xbd/xf0 <CJK> +<U7AE2> /x8e/xa3/xbd/xf1 <CJK> +<U7B55> /x8e/xa3/xbd/xf2 <CJK> +<U41EF> /x8e/xa3/xbd/xf3 <CJK> +<U41EA> /x8e/xa3/xbd/xf4 <CJK> +<U7B43> /x8e/xa3/xbd/xf5 <CJK> +<U7B57> /x8e/xa3/xbd/xf6 <CJK> +<U7B6C> /x8e/xa3/xbd/xf7 <CJK> +<U7B42> /x8e/xa3/xbd/xf8 <CJK> +<U7B53> /x8e/xa3/xbd/xf9 <CJK> +<U41ED> /x8e/xa3/xbd/xfa <CJK> +<U7B41> /x8e/xa3/xbd/xfb <CJK> +<U4285> /x8e/xa3/xbd/xfc <CJK> +<U4284> /x8e/xa3/xbd/xfd <CJK> +<U7CA7> /x8e/xa3/xbd/xfe <CJK> +<U7CA0> /x8e/xa3/xbe/xa1 <CJK> +<U7CA6> /x8e/xa3/xbe/xa2 <CJK> +<U7CA4> /x8e/xa3/xbe/xa3 <CJK> +<U7D74> /x8e/xa3/xbe/xa4 <CJK> +<U42DB> /x8e/xa3/xbe/xa5 <CJK> +<U7D59> /x8e/xa3/xbe/xa6 <CJK> +<U42D9> /x8e/xa3/xbe/xa7 <CJK> +<U7D60> /x8e/xa3/xbe/xa8 <CJK> +<U7D57> /x8e/xa3/xbe/xa9 <CJK> +<U7D6C> /x8e/xa3/xbe/xaa <CJK> +<U7D7E> /x8e/xa3/xbe/xab <CJK> +<U7D64> /x8e/xa3/xbe/xac <CJK> +<U42D7> /x8e/xa3/xbe/xad <CJK> +<U7D5A> /x8e/xa3/xbe/xae <CJK> +<U7D5D> /x8e/xa3/xbe/xaf <CJK> +<U42DA> /x8e/xa3/xbe/xb0 <CJK> +<U42DE> /x8e/xa3/xbe/xb1 <CJK> +<U42D8> /x8e/xa3/xbe/xb2 <CJK> +<U7D76> /x8e/xa3/xbe/xb3 <CJK> +<U7D4D> /x8e/xa3/xbe/xb4 <CJK> +<U7D75> /x8e/xa3/xbe/xb5 <CJK> +<U42D5> /x8e/xa3/xbe/xb6 <CJK> +<U7FD3> /x8e/xa3/xbe/xb7 <CJK> +<U7FD6> /x8e/xa3/xbe/xb8 <CJK> +<U439C> /x8e/xa3/xbe/xb9 <CJK> +<U439D> /x8e/xa3/xbe/xba <CJK> +<U8060> /x8e/xa3/xbe/xbb <CJK> +<U804E> /x8e/xa3/xbe/xbc <CJK> +<U8145> /x8e/xa3/xbe/xbd <CJK> +<U813B> /x8e/xa3/xbe/xbe <CJK> +<U43FE> /x8e/xa3/xbe/xbf <CJK> +<U8148> /x8e/xa3/xbe/xc0 <CJK> +<U8142> /x8e/xa3/xbe/xc1 <CJK> +<U8149> /x8e/xa3/xbe/xc2 <CJK> +<U8140> /x8e/xa3/xbe/xc3 <CJK> +<U8114> /x8e/xa3/xbe/xc4 <CJK> +<U8141> /x8e/xa3/xbe/xc5 <CJK> +<U4407> /x8e/xa3/xbe/xc6 <CJK> +<U81EF> /x8e/xa3/xbe/xc7 <CJK> +<U81F6> /x8e/xa3/xbe/xc8 <CJK> +<U8203> /x8e/xa3/xbe/xc9 <CJK> +<U446A> /x8e/xa3/xbe/xca <CJK> +<U83ED> /x8e/xa3/xbe/xcb <CJK> +<U44E7> /x8e/xa3/xbe/xcc <CJK> +<U83DA> /x8e/xa3/xbe/xcd <CJK> +<U8418> /x8e/xa3/xbe/xce <CJK> +<U83D2> /x8e/xa3/xbe/xcf <CJK> +<U8408> /x8e/xa3/xbe/xd0 <CJK> +<U44E2> /x8e/xa3/xbe/xd1 <CJK> +<U8400> /x8e/xa3/xbe/xd2 <CJK> +<U44DF> /x8e/xa3/xbe/xd3 <CJK> +<U44E1> /x8e/xa3/xbe/xd4 <CJK> +<U44E5> /x8e/xa3/xbe/xd5 <CJK> +<U8417> /x8e/xa3/xbe/xd6 <CJK> +<U8346> /x8e/xa3/xbe/xd7 <CJK> +<U8414> /x8e/xa3/xbe/xd8 <CJK> +<U83D3> /x8e/xa3/xbe/xd9 <CJK> +<U8405> /x8e/xa3/xbe/xda <CJK> +<U841F> /x8e/xa3/xbe/xdb <CJK> +<U8402> /x8e/xa3/xbe/xdc <CJK> +<U8416> /x8e/xa3/xbe/xdd <CJK> +<U83CD> /x8e/xa3/xbe/xde <CJK> +<U83E6> /x8e/xa3/xbe/xdf <CJK> +<U4591> /x8e/xa3/xbe/xe0 <CJK> +<U865D> /x8e/xa3/xbe/xe1 <CJK> +<U86D5> /x8e/xa3/xbe/xe2 <CJK> +<U86E1> /x8e/xa3/xbe/xe3 <CJK> +<U45B4> /x8e/xa3/xbe/xe4 <CJK> +<U45B0> /x8e/xa3/xbe/xe5 <CJK> +<U45B5> /x8e/xa3/xbe/xe6 <CJK> +<U45AE> /x8e/xa3/xbe/xe7 <CJK> +<U86EE> /x8e/xa3/xbe/xe8 <CJK> +<U8847> /x8e/xa3/xbe/xe9 <CJK> +<U8846> /x8e/xa3/xbe/xea <CJK> +<U462D> /x8e/xa3/xbe/xeb <CJK> +<U462C> /x8e/xa3/xbe/xec <CJK> +<U88BB> /x8e/xa3/xbe/xed <CJK> +<U462B> /x8e/xa3/xbe/xee <CJK> +<U88BF> /x8e/xa3/xbe/xef <CJK> +<U88B4> /x8e/xa3/xbe/xf0 <CJK> +<U4629> /x8e/xa3/xbe/xf1 <CJK> +<U88B5> /x8e/xa3/xbe/xf2 <CJK> +<U467F> /x8e/xa3/xbe/xf3 <CJK> +<U899A> /x8e/xa3/xbe/xf4 <CJK> +<U8A43> /x8e/xa3/xbe/xf5 <CJK> +<U46C9> /x8e/xa3/xbe/xf6 <CJK> +<U46CB> /x8e/xa3/xbe/xf7 <CJK> +<U8A5A> /x8e/xa3/xbe/xf8 <CJK> +<U46C5> /x8e/xa3/xbe/xf9 <CJK> +<U46C6> /x8e/xa3/xbe/xfa <CJK> +<U46CA> /x8e/xa3/xbe/xfb <CJK> +<U8A35> /x8e/xa3/xbe/xfc <CJK> +<U8A38> /x8e/xa3/xbe/xfd <CJK> +<U8A42> /x8e/xa3/xbe/xfe <CJK> +<U8A49> /x8e/xa3/xbf/xa1 <CJK> +<U8A5D> /x8e/xa3/xbf/xa2 <CJK> +<U8A4B> /x8e/xa3/xbf/xa3 <CJK> +<U8A3D> /x8e/xa3/xbf/xa4 <CJK> +<U46D2> /x8e/xa3/xbf/xa5 <CJK> +<U46D0> /x8e/xa3/xbf/xa6 <CJK> +<U472D> /x8e/xa3/xbf/xa7 <CJK> +<U4735> /x8e/xa3/xbf/xa8 <CJK> +<U8C60> /x8e/xa3/xbf/xa9 <CJK> +<U8C5E> /x8e/xa3/xbf/xaa <CJK> +<U8C7F> /x8e/xa3/xbf/xab <CJK> +<U8C7E> /x8e/xa3/xbf/xac <CJK> +<U8C83> /x8e/xa3/xbf/xad <CJK> +<U476C> /x8e/xa3/xbf/xae <CJK> +<U8CB1> /x8e/xa3/xbf/xaf <CJK> +<U8D87> /x8e/xa3/xbf/xb0 <CJK> +<U479D> /x8e/xa3/xbf/xb1 <CJK> +<U47A0> /x8e/xa3/xbf/xb2 <CJK> +<U8D88> /x8e/xa3/xbf/xb3 <CJK> +<U8D83> /x8e/xa3/xbf/xb4 <CJK> +<U47A2> /x8e/xa3/xbf/xb5 <CJK> +<U479F> /x8e/xa3/xbf/xb6 <CJK> +<U8D86> /x8e/xa3/xbf/xb7 <CJK> +<U8D8B> /x8e/xa3/xbf/xb8 <CJK> +<U8D82> /x8e/xa3/xbf/xb9 <CJK> +<U8DCA> /x8e/xa3/xbf/xba <CJK> +<U8DD2> /x8e/xa3/xbf/xbb <CJK> +<U47EB> /x8e/xa3/xbf/xbc <CJK> +<U47E2> /x8e/xa3/xbf/xbd <CJK> +<U8DD4> /x8e/xa3/xbf/xbe <CJK> +<U8DC9> /x8e/xa3/xbf/xbf <CJK> +<U8EB0> /x8e/xa3/xbf/xc0 <CJK> +<U4836> /x8e/xa3/xbf/xc1 <CJK> +<U4832> /x8e/xa3/xbf/xc2 <CJK> +<U4850> /x8e/xa3/xbf/xc3 <CJK> +<U8EF2> /x8e/xa3/xbf/xc4 <CJK> +<U8EE4> /x8e/xa3/xbf/xc5 <CJK> +<U8EF3> /x8e/xa3/xbf/xc6 <CJK> +<U8EEA> /x8e/xa3/xbf/xc7 <CJK> +<U484F> /x8e/xa3/xbf/xc8 <CJK> +<U8EFD> /x8e/xa3/xbf/xc9 <CJK> +<U4852> /x8e/xa3/xbf/xca <CJK> +<U8F9D> /x8e/xa3/xbf/xcb <CJK> +<U902B> /x8e/xa3/xbf/xcc <CJK> +<U902A> /x8e/xa3/xbf/xcd <CJK> +<U489E> /x8e/xa3/xbf/xce <CJK> +<U9028> /x8e/xa3/xbf/xcf <CJK> +<U9029> /x8e/xa3/xbf/xd0 <CJK> +<U902C> /x8e/xa3/xbf/xd1 <CJK> +<U48A0> /x8e/xa3/xbf/xd2 <CJK> +<U489C> /x8e/xa3/xbf/xd3 <CJK> +<U903A> /x8e/xa3/xbf/xd4 <CJK> +<U9030> /x8e/xa3/xbf/xd5 <CJK> +<U9037> /x8e/xa3/xbf/xd6 <CJK> +<U903B> /x8e/xa3/xbf/xd7 <CJK> +<U48D1> /x8e/xa3/xbf/xd8 <CJK> +<U910A> /x8e/xa3/xbf/xd9 <CJK> +<U48EF> /x8e/xa3/xbf/xda <CJK> +<U48F0> /x8e/xa3/xbf/xdb <CJK> +<U48F1> /x8e/xa3/xbf/xdc <CJK> +<U91FE> /x8e/xa3/xbf/xdd <CJK> +<U9220> /x8e/xa3/xbf/xde <CJK> +<U491D> /x8e/xa3/xbf/xdf <CJK> +<U920B> /x8e/xa3/xbf/xe0 <CJK> +<U491F> /x8e/xa3/xbf/xe1 <CJK> +<U9218> /x8e/xa3/xbf/xe2 <CJK> +<U9222> /x8e/xa3/xbf/xe3 <CJK> +<U491E> /x8e/xa3/xbf/xe4 <CJK> +<U921B> /x8e/xa3/xbf/xe5 <CJK> +<U9208> /x8e/xa3/xbf/xe6 <CJK> +<U4920> /x8e/xa3/xbf/xe7 <CJK> +<U920E> /x8e/xa3/xbf/xe8 <CJK> +<U9213> /x8e/xa3/xbf/xe9 <CJK> +<U498E> /x8e/xa3/xbf/xea <CJK> +<U4991> /x8e/xa3/xbf/xeb <CJK> +<U9595> /x8e/xa3/xbf/xec <CJK> +<U00028CDD> /x8e/xa3/xbf/xed <CJK> +<U4990> /x8e/xa3/xbf/xee <CJK> +<U49D7> /x8e/xa3/xbf/xef <CJK> +<U968C> /x8e/xa3/xbf/xf0 <CJK> +<U967B> /x8e/xa3/xbf/xf1 <CJK> +<U967F> /x8e/xa3/xbf/xf2 <CJK> +<U9681> /x8e/xa3/xbf/xf3 <CJK> +<U49D9> /x8e/xa3/xbf/xf4 <CJK> +<U9682> /x8e/xa3/xbf/xf5 <CJK> +<U49F4> /x8e/xa3/xbf/xf6 <CJK> +<U49F6> /x8e/xa3/xbf/xf7 <CJK> +<U3560> /x8e/xa3/xbf/xf8 <CJK> +<U49F5> /x8e/xa3/xbf/xf9 <CJK> +<U49F3> /x8e/xa3/xbf/xfa <CJK> +<U96EE> /x8e/xa3/xbf/xfb <CJK> +<U96ED> /x8e/xa3/xbf/xfc <CJK> +<U4A0C> /x8e/xa3/xbf/xfd <CJK> +<U96EC> /x8e/xa3/xbf/xfe <CJK> +<U975F> /x8e/xa3/xc0/xa1 <CJK> +<U976F> /x8e/xa3/xc0/xa2 <CJK> +<U4A51> /x8e/xa3/xc0/xa3 <CJK> +<U976D> /x8e/xa3/xc0/xa4 <CJK> +<U4AA6> /x8e/xa3/xc0/xa5 <CJK> +<U4AA7> /x8e/xa3/xc0/xa6 <CJK> +<U4AA8> /x8e/xa3/xc0/xa7 <CJK> +<U4B27> /x8e/xa3/xc0/xa8 <CJK> +<U4B24> /x8e/xa3/xc0/xa9 <CJK> +<U4B25> /x8e/xa3/xc0/xaa <CJK> +<U98F0> /x8e/xa3/xc0/xab <CJK> +<U4B2A> /x8e/xa3/xc0/xac <CJK> +<U4B74> /x8e/xa3/xc0/xad <CJK> +<U4BC7> /x8e/xa3/xc0/xae <CJK> +<U9AA9> /x8e/xa3/xc0/xaf <CJK> +<U4BE7> /x8e/xa3/xc0/xb0 <CJK> +<U4BED> /x8e/xa3/xc0/xb1 <CJK> +<U9AE0> /x8e/xa3/xc0/xb2 <CJK> +<U4EB7> /x8e/xa3/xc0/xb3 <CJK> +<U342E> /x8e/xa3/xc0/xb4 <CJK> +<U347B> /x8e/xa3/xc0/xb5 <CJK> +<U50CC> /x8e/xa3/xc0/xb6 <CJK> +<U50BC> /x8e/xa3/xc0/xb7 <CJK> +<U347C> /x8e/xa3/xc0/xb8 <CJK> +<U50AA> /x8e/xa3/xc0/xb9 <CJK> +<U50B9> /x8e/xa3/xc0/xba <CJK> +<U347D> /x8e/xa3/xc0/xbb <CJK> +<U50AB> /x8e/xa3/xc0/xbc <CJK> +<U50C3> /x8e/xa3/xc0/xbd <CJK> +<U50CD> /x8e/xa3/xc0/xbe <CJK> +<U517E> /x8e/xa3/xc0/xbf <CJK> +<U527E> /x8e/xa3/xc0/xc0 <CJK> +<U5279> /x8e/xa3/xc0/xc1 <CJK> +<U34FD> /x8e/xa3/xc0/xc2 <CJK> +<U52E1> /x8e/xa3/xc0/xc4 <CJK> +<U52E0> /x8e/xa3/xc0/xc5 <CJK> +<U52E7> /x8e/xa3/xc0/xc6 <CJK> +<U5380> /x8e/xa3/xc0/xc7 <CJK> +<U53AB> /x8e/xa3/xc0/xc8 <CJK> +<U53AA> /x8e/xa3/xc0/xc9 <CJK> +<U53A9> /x8e/xa3/xc0/xca <CJK> +<U53E0> /x8e/xa3/xc0/xcb <CJK> +<U55EA> /x8e/xa3/xc0/xcc <CJK> +<U35DA> /x8e/xa3/xc0/xcd <CJK> +<U55D7> /x8e/xa3/xc0/xce <CJK> +<U35D6> /x8e/xa3/xc0/xcf <CJK> +<U35DB> /x8e/xa3/xc0/xd0 <CJK> +<U55C1> /x8e/xa3/xc0/xd1 <CJK> +<U5715> /x8e/xa3/xc0/xd2 <CJK> +<U365B> /x8e/xa3/xc0/xd3 <CJK> +<U586C> /x8e/xa3/xc0/xd4 <CJK> +<U365C> /x8e/xa3/xc0/xd5 <CJK> +<U585C> /x8e/xa3/xc0/xd6 <CJK> +<U5850> /x8e/xa3/xc0/xd7 <CJK> +<U5861> /x8e/xa3/xc0/xd8 <CJK> +<U586A> /x8e/xa3/xc0/xd9 <CJK> +<U5869> /x8e/xa3/xc0/xda <CJK> +<U5856> /x8e/xa3/xc0/xdb <CJK> +<U5860> /x8e/xa3/xc0/xdc <CJK> +<U5866> /x8e/xa3/xc0/xdd <CJK> +<U585F> /x8e/xa3/xc0/xde <CJK> +<U5923> /x8e/xa3/xc0/xdf <CJK> +<U5966> /x8e/xa3/xc0/xe0 <CJK> +<U5968> /x8e/xa3/xc0/xe1 <CJK> +<U3706> /x8e/xa3/xc0/xe2 <CJK> +<U370B> /x8e/xa3/xc0/xe3 <CJK> +<U5ACE> /x8e/xa3/xc0/xe4 <CJK> +<U370D> /x8e/xa3/xc0/xe5 <CJK> +<U5AC5> /x8e/xa3/xc0/xe6 <CJK> +<U5AC3> /x8e/xa3/xc0/xe7 <CJK> +<U370A> /x8e/xa3/xc0/xe8 <CJK> +<U3713> /x8e/xa3/xc0/xe9 <CJK> +<U5AD0> /x8e/xa3/xc0/xea <CJK> +<U3710> /x8e/xa3/xc0/xeb <CJK> +<U3712> /x8e/xa3/xc0/xec <CJK> +<U3709> /x8e/xa3/xc0/xed <CJK> +<U3708> /x8e/xa3/xc0/xee <CJK> +<U3711> /x8e/xa3/xc0/xef <CJK> +<U370F> /x8e/xa3/xc0/xf0 <CJK> +<U5B74> /x8e/xa3/xc0/xf1 <CJK> +<U5B76> /x8e/xa3/xc0/xf2 <CJK> +<U5BDC> /x8e/xa3/xc0/xf3 <CJK> +<U5BD7> /x8e/xa3/xc0/xf4 <CJK> +<U5BDA> /x8e/xa3/xc0/xf5 <CJK> +<U5BDB> /x8e/xa3/xc0/xf6 <CJK> +<U3767> /x8e/xa3/xc0/xf7 <CJK> +<U5C20> /x8e/xa3/xc0/xf8 <CJK> +<U5D6D> /x8e/xa3/xc0/xf9 <CJK> +<U5D66> /x8e/xa3/xc0/xfa <CJK> +<U37F6> /x8e/xa3/xc0/xfb <CJK> +<U5D64> /x8e/xa3/xc0/xfc <CJK> +<U5D6E> /x8e/xa3/xc0/xfd <CJK> +<U5D60> /x8e/xa3/xc1/xa1 <CJK> +<U5F42> /x8e/xa3/xc1/xa2 <CJK> +<U5F5A> /x8e/xa3/xc1/xa3 <CJK> +<U5F6E> /x8e/xa3/xc1/xa4 <CJK> +<U3964> /x8e/xa3/xc1/xa5 <CJK> +<U396C> /x8e/xa3/xc1/xa6 <CJK> +<U6130> /x8e/xa3/xc1/xa7 <CJK> +<U613A> /x8e/xa3/xc1/xa8 <CJK> +<U612A> /x8e/xa3/xc1/xa9 <CJK> +<U6143> /x8e/xa3/xc1/xaa <CJK> +<U6119> /x8e/xa3/xc1/xab <CJK> +<U6131> /x8e/xa3/xc1/xac <CJK> +<U396D> /x8e/xa3/xc1/xad <CJK> +<U613D> /x8e/xa3/xc1/xae <CJK> +<U397A> /x8e/xa3/xc1/xaf <CJK> +<U3975> /x8e/xa3/xc1/xb0 <CJK> +<U3A0D> /x8e/xa3/xc1/xb1 <CJK> +<U6408> /x8e/xa3/xc1/xb2 <CJK> +<U6432> /x8e/xa3/xc1/xb3 <CJK> +<U6438> /x8e/xa3/xc1/xb4 <CJK> +<U3A1E> /x8e/xa3/xc1/xb5 <CJK> +<U6431> /x8e/xa3/xc1/xb6 <CJK> +<U3A1B> /x8e/xa3/xc1/xb7 <CJK> +<U6419> /x8e/xa3/xc1/xb8 <CJK> +<U3A2A> /x8e/xa3/xc1/xb9 <CJK> +<U6411> /x8e/xa3/xc1/xba <CJK> +<U3A1F> /x8e/xa3/xc1/xbb <CJK> +<U3A22> /x8e/xa3/xc1/xbc <CJK> +<U6429> /x8e/xa3/xc1/xbd <CJK> +<U641D> /x8e/xa3/xc1/xbe <CJK> +<U3A25> /x8e/xa3/xc1/xbf <CJK> +<U3A27> /x8e/xa3/xc1/xc0 <CJK> +<U3A29> /x8e/xa3/xc1/xc1 <CJK> +<U643C> /x8e/xa3/xc1/xc2 <CJK> +<U3A24> /x8e/xa3/xc1/xc3 <CJK> +<U6446> /x8e/xa3/xc1/xc4 <CJK> +<U6447> /x8e/xa3/xc1/xc5 <CJK> +<U3A28> /x8e/xa3/xc1/xc6 <CJK> +<U3A26> /x8e/xa3/xc1/xc7 <CJK> +<U643A> /x8e/xa3/xc1/xc8 <CJK> +<U6407> /x8e/xa3/xc1/xc9 <CJK> +<U3A23> /x8e/xa3/xc1/xca <CJK> +<U656B> /x8e/xa3/xc1/xcb <CJK> +<U3A9F> /x8e/xa3/xc1/xcc <CJK> +<U6570> /x8e/xa3/xc1/xcd <CJK> +<U656D> /x8e/xa3/xc1/xce <CJK> +<U3AB1> /x8e/xa3/xc1/xcf <CJK> +<U65E4> /x8e/xa3/xc1/xd0 <CJK> +<U6693> /x8e/xa3/xc1/xd1 <CJK> +<U3B03> /x8e/xa3/xc1/xd2 <CJK> +<U3B07> /x8e/xa3/xc1/xd3 <CJK> +<U3B0C> /x8e/xa3/xc1/xd4 <CJK> +<U3B06> /x8e/xa3/xc1/xd5 <CJK> +<U668F> /x8e/xa3/xc1/xd6 <CJK> +<U3B04> /x8e/xa3/xc1/xd7 <CJK> +<U3B09> /x8e/xa3/xc1/xd8 <CJK> +<U6692> /x8e/xa3/xc1/xd9 <CJK> +<U3B05> /x8e/xa3/xc1/xda <CJK> +<U668E> /x8e/xa3/xc1/xdb <CJK> +<U3B08> /x8e/xa3/xc1/xdc <CJK> +<U6946> /x8e/xa3/xc1/xdd <CJK> +<U3B96> /x8e/xa3/xc1/xde <CJK> +<U3B9C> /x8e/xa3/xc1/xdf <CJK> +<U3B9F> /x8e/xa3/xc1/xe0 <CJK> +<U3B9B> /x8e/xa3/xc1/xe1 <CJK> +<U3B98> /x8e/xa3/xc1/xe2 <CJK> +<U3B99> /x8e/xa3/xc1/xe3 <CJK> +<U3B94> /x8e/xa3/xc1/xe4 <CJK> +<U6931> /x8e/xa3/xc1/xe5 <CJK> +<U3B8D> /x8e/xa3/xc1/xe6 <CJK> +<U3BA3> /x8e/xa3/xc1/xe7 <CJK> +<U693E> /x8e/xa3/xc1/xe8 <CJK> +<U3B93> /x8e/xa3/xc1/xe9 <CJK> +<U697C> /x8e/xa3/xc1/xea <CJK> +<U6943> /x8e/xa3/xc1/xeb <CJK> +<U3B92> /x8e/xa3/xc1/xec <CJK> +<U6973> /x8e/xa3/xc1/xed <CJK> +<U6955> /x8e/xa3/xc1/xef <CJK> +<U3B8E> /x8e/xa3/xc1/xf0 <CJK> +<U3B8C> /x8e/xa3/xc1/xf1 <CJK> +<U6985> /x8e/xa3/xc1/xf2 <CJK> +<U694D> /x8e/xa3/xc1/xf3 <CJK> +<U6950> /x8e/xa3/xc1/xf4 <CJK> +<U6947> /x8e/xa3/xc1/xf5 <CJK> +<U6967> /x8e/xa3/xc1/xf6 <CJK> +<U6936> /x8e/xa3/xc1/xf7 <CJK> +<U6964> /x8e/xa3/xc1/xf8 <CJK> +<U6961> /x8e/xa3/xc1/xf9 <CJK> +<U3B9A> /x8e/xa3/xc1/xfa <CJK> +<U697D> /x8e/xa3/xc1/xfb <CJK> +<U6B44> /x8e/xa3/xc1/xfc <CJK> +<U6B40> /x8e/xa3/xc1/xfd <CJK> +<U6B71> /x8e/xa3/xc1/xfe <CJK> +<U6B73> /x8e/xa3/xc2/xa1 <CJK> +<U6B9C> /x8e/xa3/xc2/xa2 <CJK> +<U3C6A> /x8e/xa3/xc2/xa3 <CJK> +<U3C6D> /x8e/xa3/xc2/xa4 <CJK> +<U3C84> /x8e/xa3/xc2/xa5 <CJK> +<U6BC1> /x8e/xa3/xc2/xa6 <CJK> +<U3CA0> /x8e/xa3/xc2/xa7 <CJK> +<U6BFA> /x8e/xa3/xc2/xa8 <CJK> +<U6C31> /x8e/xa3/xc2/xa9 <CJK> +<U6C32> /x8e/xa3/xc2/xaa <CJK> +<U3D1D> /x8e/xa3/xc2/xab <CJK> +<U3D26> /x8e/xa3/xc2/xac <CJK> +<U6EB8> /x8e/xa3/xc2/xad <CJK> +<U6EA8> /x8e/xa3/xc2/xae <CJK> +<U3D33> /x8e/xa3/xc2/xaf <CJK> +<U6E91> /x8e/xa3/xc2/xb0 <CJK> +<U6EBB> /x8e/xa3/xc2/xb1 <CJK> +<U3D38> /x8e/xa3/xc2/xb2 <CJK> +<U6E9A> /x8e/xa3/xc2/xb3 <CJK> +<U3D30> /x8e/xa3/xc2/xb4 <CJK> +<U3D28> /x8e/xa3/xc2/xb5 <CJK> +<U6EA9> /x8e/xa3/xc2/xb6 <CJK> +<U3D27> /x8e/xa3/xc2/xb7 <CJK> +<U3D2A> /x8e/xa3/xc2/xb8 <CJK> +<U6EB5> /x8e/xa3/xc2/xb9 <CJK> +<U6E6C> /x8e/xa3/xc2/xba <CJK> +<U6EE8> /x8e/xa3/xc2/xbb <CJK> +<U3D31> /x8e/xa3/xc2/xbc <CJK> +<U6EDD> /x8e/xa3/xc2/xbd <CJK> +<U6EDA> /x8e/xa3/xc2/xbe <CJK> +<U6EE6> /x8e/xa3/xc2/xbf <CJK> +<U6EAC> /x8e/xa3/xc2/xc0 <CJK> +<U3D34> /x8e/xa3/xc2/xc1 <CJK> +<U3D2E> /x8e/xa3/xc2/xc2 <CJK> +<U3D3B> /x8e/xa3/xc2/xc3 <CJK> +<U6ED9> /x8e/xa3/xc2/xc4 <CJK> +<U6EE3> /x8e/xa3/xc2/xc5 <CJK> +<U6EE9> /x8e/xa3/xc2/xc6 <CJK> +<U6EDB> /x8e/xa3/xc2/xc7 <CJK> +<U3D29> /x8e/xa3/xc2/xc8 <CJK> +<U716F> /x8e/xa3/xc2/xc9 <CJK> +<U3DD2> /x8e/xa3/xc2/xca <CJK> +<U3DD8> /x8e/xa3/xc2/xcb <CJK> +<U7148> /x8e/xa3/xc2/xcc <CJK> +<U3DCF> /x8e/xa3/xc2/xcd <CJK> +<U714A> /x8e/xa3/xc2/xce <CJK> +<U716B> /x8e/xa3/xc2/xcf <CJK> +<U3DD9> /x8e/xa3/xc2/xd0 <CJK> +<U714F> /x8e/xa3/xc2/xd1 <CJK> +<U7157> /x8e/xa3/xc2/xd2 <CJK> +<U7174> /x8e/xa3/xc2/xd3 <CJK> +<U3DCE> /x8e/xa3/xc2/xd4 <CJK> +<U3DD3> /x8e/xa3/xc2/xd5 <CJK> +<U3DD0> /x8e/xa3/xc2/xd6 <CJK> +<U7145> /x8e/xa3/xc2/xd7 <CJK> +<U7151> /x8e/xa3/xc2/xd8 <CJK> +<U716D> /x8e/xa3/xc2/xd9 <CJK> +<U3BA1> /x8e/xa3/xc2/xda <CJK> +<U7251> /x8e/xa3/xc2/xdb <CJK> +<U7250> /x8e/xa3/xc2/xdc <CJK> +<U724E> /x8e/xa3/xc2/xdd <CJK> +<U3E47> /x8e/xa3/xc2/xde <CJK> +<U7341> /x8e/xa3/xc2/xdf <CJK> +<U3E8B> /x8e/xa3/xc2/xe0 <CJK> +<U732E> /x8e/xa3/xc2/xe1 <CJK> +<U7346> /x8e/xa3/xc2/xe2 <CJK> +<U3ED4> /x8e/xa3/xc2/xe3 <CJK> +<U7427> /x8e/xa3/xc2/xe4 <CJK> +<U3EDE> /x8e/xa3/xc2/xe5 <CJK> +<U7448> /x8e/xa3/xc2/xe6 <CJK> +<U7453> /x8e/xa3/xc2/xe7 <CJK> +<U743D> /x8e/xa3/xc2/xe8 <CJK> +<U3EDF> /x8e/xa3/xc2/xe9 <CJK> +<U745D> /x8e/xa3/xc2/xea <CJK> +<U7456> /x8e/xa3/xc2/xeb <CJK> +<U3ED7> /x8e/xa3/xc2/xec <CJK> +<U741E> /x8e/xa3/xc2/xed <CJK> +<U7447> /x8e/xa3/xc2/xee <CJK> +<U7443> /x8e/xa3/xc2/xef <CJK> +<U7458> /x8e/xa3/xc2/xf0 <CJK> +<U7449> /x8e/xa3/xc2/xf1 <CJK> +<U3EE1> /x8e/xa3/xc2/xf2 <CJK> +<U744C> /x8e/xa3/xc2/xf3 <CJK> +<U7445> /x8e/xa3/xc2/xf4 <CJK> +<U743E> /x8e/xa3/xc2/xf5 <CJK> +<U3F2F> /x8e/xa3/xc2/xf6 <CJK> +<U7501> /x8e/xa3/xc2/xf7 <CJK> +<U751E> /x8e/xa3/xc2/xf8 <CJK> +<U3F62> /x8e/xa3/xc2/xf9 <CJK> +<U3F63> /x8e/xa3/xc2/xfa <CJK> +<U757A> /x8e/xa3/xc2/xfb <CJK> +<U75EE> /x8e/xa3/xc2/xfc <CJK> +<U7602> /x8e/xa3/xc2/xfd <CJK> +<U7697> /x8e/xa3/xc2/xfe <CJK> +<U7698> /x8e/xa3/xc3/xa1 <CJK> +<U3FE2> /x8e/xa3/xc3/xa2 <CJK> +<U4004> /x8e/xa3/xc3/xa3 <CJK> +<U4043> /x8e/xa3/xc3/xa4 <CJK> +<U775D> /x8e/xa3/xc3/xa5 <CJK> +<U7764> /x8e/xa3/xc3/xa6 <CJK> +<U7753> /x8e/xa3/xc3/xa7 <CJK> +<U7758> /x8e/xa3/xc3/xa8 <CJK> +<U7882> /x8e/xa3/xc3/xa9 <CJK> +<U7890> /x8e/xa3/xc3/xaa <CJK> +<U788A> /x8e/xa3/xc3/xab <CJK> +<U40BE> /x8e/xa3/xc3/xac <CJK> +<U787A> /x8e/xa3/xc3/xad <CJK> +<U787D> /x8e/xa3/xc3/xae <CJK> +<U40BA> /x8e/xa3/xc3/xaf <CJK> +<U788B> /x8e/xa3/xc3/xb0 <CJK> +<U7878> /x8e/xa3/xc3/xb1 <CJK> +<U40BC> /x8e/xa3/xc3/xb2 <CJK> +<U788D> /x8e/xa3/xc3/xb4 <CJK> +<U7888> /x8e/xa3/xc3/xb5 <CJK> +<U7892> /x8e/xa3/xc3/xb6 <CJK> +<U7881> /x8e/xa3/xc3/xb7 <CJK> +<U797E> /x8e/xa3/xc3/xb8 <CJK> +<U7983> /x8e/xa3/xc3/xb9 <CJK> +<U410D> /x8e/xa3/xc3/xba <CJK> +<U410E> /x8e/xa3/xc3/xbb <CJK> +<U4111> /x8e/xa3/xc3/xbc <CJK> +<U7980> /x8e/xa3/xc3/xbd <CJK> +<U410F> /x8e/xa3/xc3/xbe <CJK> +<U4112> /x8e/xa3/xc3/xbf <CJK> +<U4155> /x8e/xa3/xc3/xc0 <CJK> +<U7A0F> /x8e/xa3/xc3/xc1 <CJK> +<U4159> /x8e/xa3/xc3/xc2 <CJK> +<U415B> /x8e/xa3/xc3/xc3 <CJK> +<U7A1D> /x8e/xa3/xc3/xc4 <CJK> +<U4157> /x8e/xa3/xc3/xc5 <CJK> +<U7AA1> /x8e/xa3/xc3/xc6 <CJK> +<U7AA4> /x8e/xa3/xc3/xc7 <CJK> +<U41CE> /x8e/xa3/xc3/xc8 <CJK> +<U7AE9> /x8e/xa3/xc3/xc9 <CJK> +<U7AEA> /x8e/xa3/xc3/xca <CJK> +<U41FE> /x8e/xa3/xc3/xcb <CJK> +<U7B62> /x8e/xa3/xc3/xcc <CJK> +<U7B6B> /x8e/xa3/xc3/xcd <CJK> +<U41FC> /x8e/xa3/xc3/xce <CJK> +<U7B5E> /x8e/xa3/xc3/xcf <CJK> +<U41F5> /x8e/xa3/xc3/xd0 <CJK> +<U7B79> /x8e/xa3/xc3/xd1 <CJK> +<U41F9> /x8e/xa3/xc3/xd2 <CJK> +<U41FA> /x8e/xa3/xc3/xd3 <CJK> +<U7B6F> /x8e/xa3/xc3/xd4 <CJK> +<U7B68> /x8e/xa3/xc3/xd5 <CJK> +<U4288> /x8e/xa3/xc3/xd6 <CJK> +<U4289> /x8e/xa3/xc3/xd7 <CJK> +<U7CAE> /x8e/xa3/xc3/xd8 <CJK> +<U428A> /x8e/xa3/xc3/xd9 <CJK> +<U4287> /x8e/xa3/xc3/xda <CJK> +<U428B> /x8e/xa3/xc3/xdb <CJK> +<U7CB0> /x8e/xa3/xc3/xdc <CJK> +<U42E6> /x8e/xa3/xc3/xdd <CJK> +<U7D90> /x8e/xa3/xc3/xde <CJK> +<U42ED> /x8e/xa3/xc3/xdf <CJK> +<U7D8A> /x8e/xa3/xc3/xe0 <CJK> +<U42E5> /x8e/xa3/xc3/xe1 <CJK> +<U7D8B> /x8e/xa3/xc3/xe2 <CJK> +<U7D99> /x8e/xa3/xc3/xe3 <CJK> +<U7D95> /x8e/xa3/xc3/xe4 <CJK> +<U42E0> /x8e/xa3/xc3/xe5 <CJK> +<U7D87> /x8e/xa3/xc3/xe6 <CJK> +<U7D78> /x8e/xa3/xc3/xe7 <CJK> +<U7D97> /x8e/xa3/xc3/xe8 <CJK> +<U7D89> /x8e/xa3/xc3/xe9 <CJK> +<U7D98> /x8e/xa3/xc3/xea <CJK> +<U42E1> /x8e/xa3/xc3/xeb <CJK> +<U435B> /x8e/xa3/xc3/xec <CJK> +<U435C> /x8e/xa3/xc3/xed <CJK> +<U7FA3> /x8e/xa3/xc3/xee <CJK> +<U438F> /x8e/xa3/xc3/xef <CJK> +<U438B> /x8e/xa3/xc3/xf0 <CJK> +<U438D> /x8e/xa3/xc3/xf1 <CJK> +<U7FDD> /x8e/xa3/xc3/xf2 <CJK> +<U8057> /x8e/xa3/xc3/xf3 <CJK> +<U43B9> /x8e/xa3/xc3/xf4 <CJK> +<U8163> /x8e/xa3/xc3/xf5 <CJK> +<U816A> /x8e/xa3/xc3/xf6 <CJK> +<U816C> /x8e/xa3/xc3/xf7 <CJK> +<U440F> /x8e/xa3/xc3/xf8 <CJK> +<U4419> /x8e/xa3/xc3/xf9 <CJK> +<U4413> /x8e/xa3/xc3/xfa <CJK> +<U815D> /x8e/xa3/xc3/xfb <CJK> +<U8175> /x8e/xa3/xc3/xfc <CJK> +<U4418> /x8e/xa3/xc3/xfd <CJK> +<U815F> /x8e/xa3/xc3/xfe <CJK> +<U4416> /x8e/xa3/xc4/xa1 <CJK> +<U817D> /x8e/xa3/xc4/xa2 <CJK> +<U816D> /x8e/xa3/xc4/xa3 <CJK> +<U4453> /x8e/xa3/xc4/xa4 <CJK> +<U8241> /x8e/xa3/xc4/xa6 <CJK> +<U844F> /x8e/xa3/xc4/xa7 <CJK> +<U8484> /x8e/xa3/xc4/xa8 <CJK> +<U44F6> /x8e/xa3/xc4/xa9 <CJK> +<U847F> /x8e/xa3/xc4/xaa <CJK> +<U44F5> /x8e/xa3/xc4/xab <CJK> +<U8448> /x8e/xa3/xc4/xac <CJK> +<U842A> /x8e/xa3/xc4/xad <CJK> +<U847B> /x8e/xa3/xc4/xae <CJK> +<U8472> /x8e/xa3/xc4/xaf <CJK> +<U8464> /x8e/xa3/xc4/xb0 <CJK> +<U842E> /x8e/xa3/xc4/xb1 <CJK> +<U845C> /x8e/xa3/xc4/xb2 <CJK> +<U8453> /x8e/xa3/xc4/xb3 <CJK> +<U44F7> /x8e/xa3/xc4/xb4 <CJK> +<U8441> /x8e/xa3/xc4/xb5 <CJK> +<U84C8> /x8e/xa3/xc4/xb6 <CJK> +<U44F0> /x8e/xa3/xc4/xb7 <CJK> +<U8462> /x8e/xa3/xc4/xb8 <CJK> +<U8480> /x8e/xa3/xc4/xb9 <CJK> +<U843E> /x8e/xa3/xc4/xba <CJK> +<U8483> /x8e/xa3/xc4/xbb <CJK> +<U8471> /x8e/xa3/xc4/xbc <CJK> +<U44F9> /x8e/xa3/xc4/xbd <CJK> +<U844A> /x8e/xa3/xc4/xbe <CJK> +<U8455> /x8e/xa3/xc4/xbf <CJK> +<U8458> /x8e/xa3/xc4/xc0 <CJK> +<U4592> /x8e/xa3/xc4/xc1 <CJK> +<U4595> /x8e/xa3/xc4/xc2 <CJK> +<U4596> /x8e/xa3/xc4/xc3 <CJK> +<U86FC> /x8e/xa3/xc4/xc4 <CJK> +<U86FD> /x8e/xa3/xc4/xc5 <CJK> +<U8715> /x8e/xa3/xc4/xc6 <CJK> +<U45B9> /x8e/xa3/xc4/xc7 <CJK> +<U8716> /x8e/xa3/xc4/xc8 <CJK> +<U86FF> /x8e/xa3/xc4/xc9 <CJK> +<U45BD> /x8e/xa3/xc4/xca <CJK> +<U45B8> /x8e/xa3/xc4/xcb <CJK> +<U4612> /x8e/xa3/xc4/xcc <CJK> +<U8858> /x8e/xa3/xc4/xcd <CJK> +<U88CF> /x8e/xa3/xc4/xce <CJK> +<U88E0> /x8e/xa3/xc4/xcf <CJK> +<U4680> /x8e/xa3/xc4/xd0 <CJK> +<U4681> /x8e/xa3/xc4/xd1 <CJK> +<U469A> /x8e/xa3/xc4/xd2 <CJK> +<U4698> /x8e/xa3/xc4/xd3 <CJK> +<U89E7> /x8e/xa3/xc4/xd4 <CJK> +<U8A6A> /x8e/xa3/xc4/xd5 <CJK> +<U8A80> /x8e/xa3/xc4/xd6 <CJK> +<U46D4> /x8e/xa3/xc4/xd7 <CJK> +<U8A6F> /x8e/xa3/xc4/xd8 <CJK> +<U8A65> /x8e/xa3/xc4/xd9 <CJK> +<U46DA> /x8e/xa3/xc4/xda <CJK> +<U8A78> /x8e/xa3/xc4/xdb <CJK> +<U8A7D> /x8e/xa3/xc4/xdc <CJK> +<U8A88> /x8e/xa3/xc4/xdd <CJK> +<U46D6> /x8e/xa3/xc4/xde <CJK> +<U46DB> /x8e/xa3/xc4/xdf <CJK> +<U8A64> /x8e/xa3/xc4/xe0 <CJK> +<U8A7E> /x8e/xa3/xc4/xe1 <CJK> +<U46DC> /x8e/xa3/xc4/xe2 <CJK> +<U8A67> /x8e/xa3/xc4/xe3 <CJK> +<U8C63> /x8e/xa3/xc4/xe4 <CJK> +<U8C88> /x8e/xa3/xc4/xe5 <CJK> +<U4771> /x8e/xa3/xc4/xe6 <CJK> +<U8CCD> /x8e/xa3/xc4/xe7 <CJK> +<U4772> /x8e/xa3/xc4/xe8 <CJK> +<U8CC9> /x8e/xa3/xc4/xe9 <CJK> +<U47A8> /x8e/xa3/xc4/xea <CJK> +<U8DED> /x8e/xa3/xc4/xeb <CJK> +<U47F0> /x8e/xa3/xc4/xec <CJK> +<U47F1> /x8e/xa3/xc4/xee <CJK> +<U47FD> /x8e/xa3/xc4/xef <CJK> +<U4838> /x8e/xa3/xc4/xf0 <CJK> +<U4837> /x8e/xa3/xc4/xf1 <CJK> +<U4839> /x8e/xa3/xc4/xf2 <CJK> +<U8EB1> /x8e/xa3/xc4/xf3 <CJK> +<U4855> /x8e/xa3/xc4/xf4 <CJK> +<U4853> /x8e/xa3/xc4/xf5 <CJK> +<U8F04> /x8e/xa3/xc4/xf6 <CJK> +<U8F9E> /x8e/xa3/xc4/xf7 <CJK> +<U8FA0> /x8e/xa3/xc4/xf8 <CJK> +<U9043> /x8e/xa3/xc4/xf9 <CJK> +<U9046> /x8e/xa3/xc4/xfa <CJK> +<U9048> /x8e/xa3/xc4/xfb <CJK> +<U9045> /x8e/xa3/xc4/xfc <CJK> +<U9040> /x8e/xa3/xc4/xfd <CJK> +<U904C> /x8e/xa3/xc4/xfe <CJK> +<U48D5> /x8e/xa3/xc5/xa1 <CJK> +<U48BD> /x8e/xa3/xc5/xa2 <CJK> +<U910C> /x8e/xa3/xc5/xa3 <CJK> +<U9113> /x8e/xa3/xc5/xa4 <CJK> +<U9115> /x8e/xa3/xc5/xa5 <CJK> +<U48F5> /x8e/xa3/xc5/xa6 <CJK> +<U916B> /x8e/xa3/xc5/xa7 <CJK> +<U9167> /x8e/xa3/xc5/xa8 <CJK> +<U925D> /x8e/xa3/xc5/xa9 <CJK> +<U9255> /x8e/xa3/xc5/xaa <CJK> +<U9235> /x8e/xa3/xc5/xab <CJK> +<U4921> /x8e/xa3/xc5/xac <CJK> +<U9259> /x8e/xa3/xc5/xad <CJK> +<U922F> /x8e/xa3/xc5/xae <CJK> +<U923C> /x8e/xa3/xc5/xaf <CJK> +<U928F> /x8e/xa3/xc5/xb0 <CJK> +<U925C> /x8e/xa3/xc5/xb1 <CJK> +<U926A> /x8e/xa3/xc5/xb2 <CJK> +<U9262> /x8e/xa3/xc5/xb3 <CJK> +<U925F> /x8e/xa3/xc5/xb4 <CJK> +<U926B> /x8e/xa3/xc5/xb5 <CJK> +<U926E> /x8e/xa3/xc5/xb6 <CJK> +<U923B> /x8e/xa3/xc5/xb7 <CJK> +<U9244> /x8e/xa3/xc5/xb8 <CJK> +<U9241> /x8e/xa3/xc5/xb9 <CJK> +<U959A> /x8e/xa3/xc5/xba <CJK> +<U4992> /x8e/xa3/xc5/xbb <CJK> +<U9599> /x8e/xa3/xc5/xbc <CJK> +<U49DE> /x8e/xa3/xc5/xbd <CJK> +<U49DB> /x8e/xa3/xc5/xbe <CJK> +<U49DA> /x8e/xa3/xc5/xbf <CJK> +<U968F> /x8e/xa3/xc5/xc0 <CJK> +<U49DF> /x8e/xa3/xc5/xc1 <CJK> +<U9696> /x8e/xa3/xc5/xc2 <CJK> +<U49F9> /x8e/xa3/xc5/xc3 <CJK> +<U49F8> /x8e/xa3/xc5/xc4 <CJK> +<U49FA> /x8e/xa3/xc5/xc5 <CJK> +<U96F4> /x8e/xa3/xc5/xc6 <CJK> +<U96FC> /x8e/xa3/xc5/xc7 <CJK> +<U4A0E> /x8e/xa3/xc5/xc8 <CJK> +<U9755> /x8e/xa3/xc5/xc9 <CJK> +<U4A43> /x8e/xa3/xc5/xca <CJK> +<U9779> /x8e/xa3/xc5/xcb <CJK> +<U4A56> /x8e/xa3/xc5/xcc <CJK> +<U4A53> /x8e/xa3/xc5/xcd <CJK> +<U4A9E> /x8e/xa3/xc5/xce <CJK> +<U97EE> /x8e/xa3/xc5/xcf <CJK> +<U97F5> /x8e/xa3/xc5/xd0 <CJK> +<U4AA9> /x8e/xa3/xc5/xd1 <CJK> +<U980B> /x8e/xa3/xc5/xd2 <CJK> +<U4AFA> /x8e/xa3/xc5/xd3 <CJK> +<U98F3> /x8e/xa3/xc5/xd4 <CJK> +<U4B31> /x8e/xa3/xc5/xd5 <CJK> +<U4B30> /x8e/xa3/xc5/xd6 <CJK> +<U98F7> /x8e/xa3/xc5/xd7 <CJK> +<U98FF> /x8e/xa3/xc5/xd8 <CJK> +<U98F5> /x8e/xa3/xc5/xd9 <CJK> +<U4B32> /x8e/xa3/xc5/xda <CJK> +<U98EC> /x8e/xa3/xc5/xdb <CJK> +<U98F1> /x8e/xa3/xc5/xdc <CJK> +<U4B29> /x8e/xa3/xc5/xdd <CJK> +<U4B2E> /x8e/xa3/xc5/xde <CJK> +<U999A> /x8e/xa3/xc5/xdf <CJK> +<U4B76> /x8e/xa3/xc5/xe0 <CJK> +<U9AE2> /x8e/xa3/xc5/xe1 <CJK> +<U9B3D> /x8e/xa3/xc5/xe2 <CJK> +<U9B5D> /x8e/xa3/xc5/xe3 <CJK> +<U9CE8> /x8e/xa3/xc5/xe4 <CJK> +<U4CA5> /x8e/xa3/xc5/xe5 <CJK> +<U9CEB> /x8e/xa3/xc5/xe6 <CJK> +<U9CEF> /x8e/xa3/xc5/xe7 <CJK> +<U9CEE> /x8e/xa3/xc5/xe8 <CJK> +<U9E81> /x8e/xa3/xc5/xe9 <CJK> +<U9F14> /x8e/xa3/xc5/xea <CJK> +<U50D0> /x8e/xa3/xc5/xeb <CJK> +<U50D9> /x8e/xa3/xc5/xec <CJK> +<U50DC> /x8e/xa3/xc5/xed <CJK> +<U50D8> /x8e/xa3/xc5/xee <CJK> +<U348C> /x8e/xa3/xc5/xef <CJK> +<U50E1> /x8e/xa3/xc5/xf0 <CJK> +<U50EB> /x8e/xa3/xc5/xf1 <CJK> +<U348B> /x8e/xa3/xc5/xf2 <CJK> +<U3489> /x8e/xa3/xc5/xf3 <CJK> +<U50F4> /x8e/xa3/xc5/xf4 <CJK> +<U50E2> /x8e/xa3/xc5/xf5 <CJK> +<U50DE> /x8e/xa3/xc5/xf6 <CJK> +<U348D> /x8e/xa3/xc5/xf7 <CJK> +<U3486> /x8e/xa3/xc5/xf8 <CJK> +<U34D7> /x8e/xa3/xc5/xf9 <CJK> +<U51F4> /x8e/xa3/xc5/xfa <CJK> +<U3504> /x8e/xa3/xc5/xfb <CJK> +<U3507> /x8e/xa3/xc5/xfc <CJK> +<U3503> /x8e/xa3/xc5/xfd <CJK> +<U52ED> /x8e/xa3/xc5/xfe <CJK> +<U52EA> /x8e/xa3/xc6/xa1 <CJK> +<U3522> /x8e/xa3/xc6/xa2 <CJK> +<U5332> /x8e/xa3/xc6/xa3 <CJK> +<U3551> /x8e/xa3/xc6/xa4 <CJK> +<U53AE> /x8e/xa3/xc6/xa5 <CJK> +<U53B0> /x8e/xa3/xc6/xa6 <CJK> +<U3561> /x8e/xa3/xc6/xa7 <CJK> +<U55FB> /x8e/xa3/xc6/xa8 <CJK> +<U5603> /x8e/xa3/xc6/xa9 <CJK> +<U560B> /x8e/xa3/xc6/xaa <CJK> +<U35E9> /x8e/xa3/xc6/xab <CJK> +<U5607> /x8e/xa3/xc6/xac <CJK> +<U35E5> /x8e/xa3/xc6/xad <CJK> +<U55F8> /x8e/xa3/xc6/xae <CJK> +<U35E4> /x8e/xa3/xc6/xaf <CJK> +<U5628> /x8e/xa3/xc6/xb0 <CJK> +<U561E> /x8e/xa3/xc6/xb1 <CJK> +<U35E3> /x8e/xa3/xc6/xb2 <CJK> +<U5618> /x8e/xa3/xc6/xb3 <CJK> +<U5611> /x8e/xa3/xc6/xb4 <CJK> +<U5651> /x8e/xa3/xc6/xb5 <CJK> +<U5605> /x8e/xa3/xc6/xb6 <CJK> +<U5717> /x8e/xa3/xc6/xb7 <CJK> +<U5892> /x8e/xa3/xc6/xb8 <CJK> +<U3665> /x8e/xa3/xc6/xb9 <CJK> +<U588C> /x8e/xa3/xc6/xba <CJK> +<U3663> /x8e/xa3/xc6/xbb <CJK> +<U5878> /x8e/xa3/xc6/xbc <CJK> +<U5884> /x8e/xa3/xc6/xbd <CJK> +<U5873> /x8e/xa3/xc6/xbe <CJK> +<U58AD> /x8e/xa3/xc6/xbf <CJK> +<U5897> /x8e/xa3/xc6/xc0 <CJK> +<U5895> /x8e/xa3/xc6/xc1 <CJK> +<U5877> /x8e/xa3/xc6/xc2 <CJK> +<U5872> /x8e/xa3/xc6/xc3 <CJK> +<U5896> /x8e/xa3/xc6/xc4 <CJK> +<U588D> /x8e/xa3/xc6/xc5 <CJK> +<U5910> /x8e/xa3/xc6/xc6 <CJK> +<U368C> /x8e/xa3/xc6/xc7 <CJK> +<U596C> /x8e/xa3/xc6/xc8 <CJK> +<U371A> /x8e/xa3/xc6/xc9 <CJK> +<U5AE7> /x8e/xa3/xc6/xca <CJK> +<U3715> /x8e/xa3/xc6/xcb <CJK> +<U5AE4> /x8e/xa3/xc6/xcc <CJK> +<U3720> /x8e/xa3/xc6/xcd <CJK> +<U3721> /x8e/xa3/xc6/xce <CJK> +<U5AEF> /x8e/xa3/xc6/xcf <CJK> +<U5626> /x8e/xa3/xc6/xd0 <CJK> +<U371C> /x8e/xa3/xc6/xd1 <CJK> +<U371B> /x8e/xa3/xc6/xd2 <CJK> +<U5AF0> /x8e/xa3/xc6/xd3 <CJK> +<U5D7B> /x8e/xa3/xc6/xd4 <CJK> +<U37FE> /x8e/xa3/xc6/xd5 <CJK> +<U5D83> /x8e/xa3/xc6/xd6 <CJK> +<U3804> /x8e/xa3/xc6/xd7 <CJK> +<U3801> /x8e/xa3/xc6/xd8 <CJK> +<U5D8B> /x8e/xa3/xc6/xd9 <CJK> +<U5D8C> /x8e/xa3/xc6/xda <CJK> +<U3800> /x8e/xa3/xc6/xdb <CJK> +<U5D78> /x8e/xa3/xc6/xdc <CJK> +<U5E52> /x8e/xa3/xc6/xdd <CJK> +<U386D> /x8e/xa3/xc6/xde <CJK> +<U3893> /x8e/xa3/xc6/xdf <CJK> +<U5ED0> /x8e/xa3/xc6/xe0 <CJK> +<U5ECF> /x8e/xa3/xc6/xe1 <CJK> +<U38A1> /x8e/xa3/xc6/xe2 <CJK> +<U5FB3> /x8e/xa3/xc6/xe3 <CJK> +<U5FB4> /x8e/xa3/xc6/xe4 <CJK> +<U3976> /x8e/xa3/xc6/xe5 <CJK> +<U3979> /x8e/xa3/xc6/xe6 <CJK> +<U3972> /x8e/xa3/xc6/xe7 <CJK> +<U617B> /x8e/xa3/xc6/xe8 <CJK> +<U3983> /x8e/xa3/xc6/xe9 <CJK> +<U616F> /x8e/xa3/xc6/xea <CJK> +<U6181> /x8e/xa3/xc6/xeb <CJK> +<U613C> /x8e/xa3/xc6/xec <CJK> +<U6142> /x8e/xa3/xc6/xed <CJK> +<U6138> /x8e/xa3/xc6/xee <CJK> +<U6133> /x8e/xa3/xc6/xef <CJK> +<U6160> /x8e/xa3/xc6/xf1 <CJK> +<U6169> /x8e/xa3/xc6/xf2 <CJK> +<U617D> /x8e/xa3/xc6/xf3 <CJK> +<U6186> /x8e/xa3/xc6/xf4 <CJK> +<U622C> /x8e/xa3/xc6/xf5 <CJK> +<U6228> /x8e/xa3/xc6/xf6 <CJK> +<U3A38> /x8e/xa3/xc6/xf7 <CJK> +<U644C> /x8e/xa3/xc6/xf8 <CJK> +<U3A30> /x8e/xa3/xc6/xf9 <CJK> +<U6457> /x8e/xa3/xc6/xfa <CJK> +<U647C> /x8e/xa3/xc6/xfb <CJK> +<U3A34> /x8e/xa3/xc6/xfc <CJK> +<U3A3A> /x8e/xa3/xc6/xfd <CJK> +<U6455> /x8e/xa3/xc6/xfe <CJK> +<U6462> /x8e/xa3/xc7/xa1 <CJK> +<U6471> /x8e/xa3/xc7/xa2 <CJK> +<U646A> /x8e/xa3/xc7/xa3 <CJK> +<U6456> /x8e/xa3/xc7/xa4 <CJK> +<U643B> /x8e/xa3/xc7/xa5 <CJK> +<U6481> /x8e/xa3/xc7/xa6 <CJK> +<U3A35> /x8e/xa3/xc7/xa7 <CJK> +<U644F> /x8e/xa3/xc7/xa8 <CJK> +<U647E> /x8e/xa3/xc7/xa9 <CJK> +<U6464> /x8e/xa3/xc7/xaa <CJK> +<U3A3F> /x8e/xa3/xc7/xab <CJK> +<U3A40> /x8e/xa3/xc7/xac <CJK> +<U3A32> /x8e/xa3/xc7/xad <CJK> +<U3A31> /x8e/xa3/xc7/xae <CJK> +<U3A36> /x8e/xa3/xc7/xaf <CJK> +<U6571> /x8e/xa3/xc7/xb0 <CJK> +<U000230BA> /x8e/xa3/xc7/xb1 <CJK> +<U3B0F> /x8e/xa3/xc7/xb2 <CJK> +<U66A5> /x8e/xa3/xc7/xb3 <CJK> +<U669A> /x8e/xa3/xc7/xb4 <CJK> +<U669C> /x8e/xa3/xc7/xb5 <CJK> +<U3B10> /x8e/xa3/xc7/xb6 <CJK> +<U66A6> /x8e/xa3/xc7/xb7 <CJK> +<U3B0D> /x8e/xa3/xc7/xb8 <CJK> +<U66A4> /x8e/xa3/xc7/xb9 <CJK> +<U698F> /x8e/xa3/xc7/xba <CJK> +<U69C5> /x8e/xa3/xc7/xbb <CJK> +<U69C8> /x8e/xa3/xc7/xbc <CJK> +<U6992> /x8e/xa3/xc7/xbd <CJK> +<U69B2> /x8e/xa3/xc7/xbe <CJK> +<U3BA9> /x8e/xa3/xc7/xbf <CJK> +<U3BB4> /x8e/xa3/xc7/xc0 <CJK> +<U3BAC> /x8e/xa3/xc7/xc1 <CJK> +<U69E3> /x8e/xa3/xc7/xc2 <CJK> +<U69C0> /x8e/xa3/xc7/xc3 <CJK> +<U69D6> /x8e/xa3/xc7/xc4 <CJK> +<U69D1> /x8e/xa3/xc7/xc5 <CJK> +<U699F> /x8e/xa3/xc7/xc6 <CJK> +<U69A2> /x8e/xa3/xc7/xc7 <CJK> +<U69D2> /x8e/xa3/xc7/xc8 <CJK> +<U3BB8> /x8e/xa3/xc7/xc9 <CJK> +<U3BAE> /x8e/xa3/xc7/xca <CJK> +<U000235F3> /x8e/xa3/xc7/xcb <CJK> +<U69E1> /x8e/xa3/xc7/xcc <CJK> +<U69D5> /x8e/xa3/xc7/xcd <CJK> +<U699D> /x8e/xa3/xc7/xce <CJK> +<U3BB3> /x8e/xa3/xc7/xcf <CJK> +<U3BBA> /x8e/xa3/xc7/xd0 <CJK> +<U6998> /x8e/xa3/xc7/xd1 <CJK> +<U3C3F> /x8e/xa3/xc7/xd2 <CJK> +<U6B74> /x8e/xa3/xc7/xd3 <CJK> +<U6BA1> /x8e/xa3/xc7/xd4 <CJK> +<U3D3C> /x8e/xa3/xc7/xd5 <CJK> +<U6EF0> /x8e/xa3/xc7/xd6 <CJK> +<U6EF3> /x8e/xa3/xc7/xd7 <CJK> +<U3D42> /x8e/xa3/xc7/xd8 <CJK> +<U3D40> /x8e/xa3/xc7/xd9 <CJK> +<U6F1B> /x8e/xa3/xc7/xda <CJK> +<U6F0C> /x8e/xa3/xc7/xdb <CJK> +<U6F1D> /x8e/xa3/xc7/xdc <CJK> +<U6F34> /x8e/xa3/xc7/xdd <CJK> +<U6F28> /x8e/xa3/xc7/xde <CJK> +<U6F17> /x8e/xa3/xc7/xdf <CJK> +<U3D3E> /x8e/xa3/xc7/xe0 <CJK> +<U6F44> /x8e/xa3/xc7/xe1 <CJK> +<U6F42> /x8e/xa3/xc7/xe2 <CJK> +<U6F04> /x8e/xa3/xc7/xe3 <CJK> +<U6F11> /x8e/xa3/xc7/xe4 <CJK> +<U6EFA> /x8e/xa3/xc7/xe5 <CJK> +<U6F4A> /x8e/xa3/xc7/xe6 <CJK> +<U7191> /x8e/xa3/xc7/xe7 <CJK> +<U718E> /x8e/xa3/xc7/xe8 <CJK> +<U3DE1> /x8e/xa3/xc7/xe9 <CJK> +<U718B> /x8e/xa3/xc7/xea <CJK> +<U718D> /x8e/xa3/xc7/xeb <CJK> +<U717F> /x8e/xa3/xc7/xec <CJK> +<U718C> /x8e/xa3/xc7/xed <CJK> +<U717E> /x8e/xa3/xc7/xee <CJK> +<U717C> /x8e/xa3/xc7/xef <CJK> +<U7183> /x8e/xa3/xc7/xf0 <CJK> +<U3DE6> /x8e/xa3/xc7/xf1 <CJK> +<U7188> /x8e/xa3/xc7/xf2 <CJK> +<U3DE0> /x8e/xa3/xc7/xf3 <CJK> +<U3E15> /x8e/xa3/xc7/xf4 <CJK> +<U7294> /x8e/xa3/xc7/xf5 <CJK> +<U3E93> /x8e/xa3/xc7/xf6 <CJK> +<U7355> /x8e/xa3/xc7/xf7 <CJK> +<U7353> /x8e/xa3/xc7/xf8 <CJK> +<U734F> /x8e/xa3/xc7/xf9 <CJK> +<U7354> /x8e/xa3/xc7/xfa <CJK> +<U746C> /x8e/xa3/xc7/xfb <CJK> +<U7465> /x8e/xa3/xc7/xfc <CJK> +<U7466> /x8e/xa3/xc7/xfd <CJK> +<U7461> /x8e/xa3/xc7/xfe <CJK> +<U746B> /x8e/xa3/xc8/xa1 <CJK> +<U7468> /x8e/xa3/xc8/xa2 <CJK> +<U7476> /x8e/xa3/xc8/xa3 <CJK> +<U3EE7> /x8e/xa3/xc8/xa4 <CJK> +<U7460> /x8e/xa3/xc8/xa5 <CJK> +<U00024A0F> /x8e/xa3/xc8/xa6 <CJK> +<U7474> /x8e/xa3/xc8/xa7 <CJK> +<U7506> /x8e/xa3/xc8/xa8 <CJK> +<U760E> /x8e/xa3/xc8/xa9 <CJK> +<U3FAD> /x8e/xa3/xc8/xaa <CJK> +<U7607> /x8e/xa3/xc8/xab <CJK> +<U3FAE> /x8e/xa3/xc8/xac <CJK> +<U3FE3> /x8e/xa3/xc8/xad <CJK> +<U76B9> /x8e/xa3/xc8/xae <CJK> +<U3FF5> /x8e/xa3/xc8/xaf <CJK> +<U76B7> /x8e/xa3/xc8/xb0 <CJK> +<U76E2> /x8e/xa3/xc8/xb1 <CJK> +<U4006> /x8e/xa3/xc8/xb2 <CJK> +<U7774> /x8e/xa3/xc8/xb3 <CJK> +<U7777> /x8e/xa3/xc8/xb4 <CJK> +<U7776> /x8e/xa3/xc8/xb5 <CJK> +<U7775> /x8e/xa3/xc8/xb6 <CJK> +<U404F> /x8e/xa3/xc8/xb7 <CJK> +<U7778> /x8e/xa3/xc8/xb8 <CJK> +<U7771> /x8e/xa3/xc8/xb9 <CJK> +<U4054> /x8e/xa3/xc8/xba <CJK> +<U777A> /x8e/xa3/xc8/xbb <CJK> +<U715B> /x8e/xa3/xc8/xbc <CJK> +<U777B> /x8e/xa3/xc8/xbd <CJK> +<U78A6> /x8e/xa3/xc8/xbe <CJK> +<U78AE> /x8e/xa3/xc8/xbf <CJK> +<U78B8> /x8e/xa3/xc8/xc0 <CJK> +<U40CB> /x8e/xa3/xc8/xc1 <CJK> +<U40E3> /x8e/xa3/xc8/xc2 <CJK> +<U40C9> /x8e/xa3/xc8/xc3 <CJK> +<U78B1> /x8e/xa3/xc8/xc4 <CJK> +<U78AF> /x8e/xa3/xc8/xc5 <CJK> +<U4113> /x8e/xa3/xc8/xc6 <CJK> +<U7989> /x8e/xa3/xc8/xc7 <CJK> +<U7987> /x8e/xa3/xc8/xc8 <CJK> +<U4115> /x8e/xa3/xc8/xc9 <CJK> +<U4161> /x8e/xa3/xc8/xca <CJK> +<U7A29> /x8e/xa3/xc8/xcb <CJK> +<U4166> /x8e/xa3/xc8/xcc <CJK> +<U7A2A> /x8e/xa3/xc8/xcd <CJK> +<U4164> /x8e/xa3/xc8/xce <CJK> +<U7A2D> /x8e/xa3/xc8/xcf <CJK> +<U7A2C> /x8e/xa3/xc8/xd0 <CJK> +<U4160> /x8e/xa3/xc8/xd1 <CJK> +<U7A32> /x8e/xa3/xc8/xd2 <CJK> +<U4163> /x8e/xa3/xc8/xd3 <CJK> +<U7AEC> /x8e/xa3/xc8/xd4 <CJK> +<U7AF0> /x8e/xa3/xc8/xd5 <CJK> +<U7B81> /x8e/xa3/xc8/xd6 <CJK> +<U7B9E> /x8e/xa3/xc8/xd7 <CJK> +<U7B83> /x8e/xa3/xc8/xd8 <CJK> +<U420A> /x8e/xa3/xc8/xd9 <CJK> +<U7B92> /x8e/xa3/xc8/xda <CJK> +<U4204> /x8e/xa3/xc8/xdb <CJK> +<U7BA3> /x8e/xa3/xc8/xdc <CJK> +<U7B9F> /x8e/xa3/xc8/xdd <CJK> +<U7B93> /x8e/xa3/xc8/xde <CJK> +<U4207> /x8e/xa3/xc8/xdf <CJK> +<U7B86> /x8e/xa3/xc8/xe0 <CJK> +<U7CB8> /x8e/xa3/xc8/xe1 <CJK> +<U7CB7> /x8e/xa3/xc8/xe2 <CJK> +<U428D> /x8e/xa3/xc8/xe3 <CJK> +<U428F> /x8e/xa3/xc8/xe4 <CJK> +<U4290> /x8e/xa3/xc8/xe5 <CJK> +<U4292> /x8e/xa3/xc8/xe6 <CJK> +<U42EC> /x8e/xa3/xc8/xe7 <CJK> +<U7DC8> /x8e/xa3/xc8/xe8 <CJK> +<U7DB6> /x8e/xa3/xc8/xe9 <CJK> +<U7DD1> /x8e/xa3/xc8/xeb <CJK> +<U42E7> /x8e/xa3/xc8/xec <CJK> +<U7DA8> /x8e/xa3/xc8/xed <CJK> +<U7DAB> /x8e/xa3/xc8/xee <CJK> +<U42F2> /x8e/xa3/xc8/xef <CJK> +<U7DB3> /x8e/xa3/xc8/xf0 <CJK> +<U7DCD> /x8e/xa3/xc8/xf1 <CJK> +<U42EE> /x8e/xa3/xc8/xf2 <CJK> +<U7DCF> /x8e/xa3/xc8/xf3 <CJK> +<U7DA4> /x8e/xa3/xc8/xf4 <CJK> +<U42EF> /x8e/xa3/xc8/xf5 <CJK> +<U434C> /x8e/xa3/xc8/xf6 <CJK> +<U7F41> /x8e/xa3/xc8/xf7 <CJK> +<U7F6F> /x8e/xa3/xc8/xf8 <CJK> +<U7F71> /x8e/xa3/xc8/xf9 <CJK> +<U435E> /x8e/xa3/xc8/xfa <CJK> +<U435F> /x8e/xa3/xc8/xfb <CJK> +<U4376> /x8e/xa3/xc8/xfc <CJK> +<U4374> /x8e/xa3/xc8/xfd <CJK> +<U4372> /x8e/xa3/xc8/xfe <CJK> +<U4390> /x8e/xa3/xc9/xa1 <CJK> +<U8023> /x8e/xa3/xc9/xa2 <CJK> +<U805B> /x8e/xa3/xc9/xa3 <CJK> +<U43BE> /x8e/xa3/xc9/xa4 <CJK> +<U8061> /x8e/xa3/xc9/xa5 <CJK> +<U805F> /x8e/xa3/xc9/xa6 <CJK> +<U8181> /x8e/xa3/xc9/xa7 <CJK> +<U4426> /x8e/xa3/xc9/xa8 <CJK> +<U4425> /x8e/xa3/xc9/xa9 <CJK> +<U8184> /x8e/xa3/xc9/xaa <CJK> +<U8213> /x8e/xa3/xc9/xab <CJK> +<U4474> /x8e/xa3/xc9/xac <CJK> +<U824A> /x8e/xa3/xc9/xad <CJK> +<U824C> /x8e/xa3/xc9/xae <CJK> +<U44FD> /x8e/xa3/xc9/xaf <CJK> +<U4505> /x8e/xa3/xc9/xb0 <CJK> +<U4501> /x8e/xa3/xc9/xb1 <CJK> +<U84BD> /x8e/xa3/xc9/xb2 <CJK> +<U8495> /x8e/xa3/xc9/xb3 <CJK> +<U4509> /x8e/xa3/xc9/xb4 <CJK> +<U8492> /x8e/xa3/xc9/xb5 <CJK> +<U84C3> /x8e/xa3/xc9/xb6 <CJK> +<U450C> /x8e/xa3/xc9/xb7 <CJK> +<U8496> /x8e/xa3/xc9/xb8 <CJK> +<U84A5> /x8e/xa3/xc9/xb9 <CJK> +<U84B5> /x8e/xa3/xc9/xba <CJK> +<U84B3> /x8e/xa3/xc9/xbb <CJK> +<U84A3> /x8e/xa3/xc9/xbc <CJK> +<U84E4> /x8e/xa3/xc9/xbd <CJK> +<U84D8> /x8e/xa3/xc9/xbe <CJK> +<U84D5> /x8e/xa3/xc9/xbf <CJK> +<U450D> /x8e/xa3/xc9/xc0 <CJK> +<U84B7> /x8e/xa3/xc9/xc1 <CJK> +<U84AD> /x8e/xa3/xc9/xc2 <CJK> +<U84DA> /x8e/xa3/xc9/xc3 <CJK> +<U8493> /x8e/xa3/xc9/xc4 <CJK> +<U8736> /x8e/xa3/xc9/xc5 <CJK> +<U45C0> /x8e/xa3/xc9/xc6 <CJK> +<U45C5> /x8e/xa3/xc9/xc7 <CJK> +<U45C9> /x8e/xa3/xc9/xc8 <CJK> +<U873D> /x8e/xa3/xc9/xc9 <CJK> +<U872B> /x8e/xa3/xc9/xca <CJK> +<U8747> /x8e/xa3/xc9/xcb <CJK> +<U8739> /x8e/xa3/xc9/xcc <CJK> +<U45D5> /x8e/xa3/xc9/xcd <CJK> +<U8745> /x8e/xa3/xc9/xce <CJK> +<U871D> /x8e/xa3/xc9/xcf <CJK> +<U4641> /x8e/xa3/xc9/xd0 <CJK> +<U88FF> /x8e/xa3/xc9/xd1 <CJK> +<U88EA> /x8e/xa3/xc9/xd2 <CJK> +<U4633> /x8e/xa3/xc9/xd3 <CJK> +<U88F5> /x8e/xa3/xc9/xd4 <CJK> +<U463A> /x8e/xa3/xc9/xd5 <CJK> +<U8900> /x8e/xa3/xc9/xd6 <CJK> +<U88ED> /x8e/xa3/xc9/xd7 <CJK> +<U8903> /x8e/xa3/xc9/xd8 <CJK> +<U88E9> /x8e/xa3/xc9/xd9 <CJK> +<U4640> /x8e/xa3/xc9/xda <CJK> +<U4642> /x8e/xa3/xc9/xdb <CJK> +<U89EA> /x8e/xa3/xc9/xdc <CJK> +<U46E8> /x8e/xa3/xc9/xdd <CJK> +<U8A9B> /x8e/xa3/xc9/xde <CJK> +<U8A8E> /x8e/xa3/xc9/xdf <CJK> +<U8AA2> /x8e/xa3/xc9/xe0 <CJK> +<U46E4> /x8e/xa3/xc9/xe1 <CJK> +<U8A9C> /x8e/xa3/xc9/xe2 <CJK> +<U8A94> /x8e/xa3/xc9/xe3 <CJK> +<U8A90> /x8e/xa3/xc9/xe4 <CJK> +<U8AA9> /x8e/xa3/xc9/xe5 <CJK> +<U8AAC> /x8e/xa3/xc9/xe6 <CJK> +<U46E7> /x8e/xa3/xc9/xe7 <CJK> +<U8A9F> /x8e/xa3/xc9/xe8 <CJK> +<U46E6> /x8e/xa3/xc9/xe9 <CJK> +<U46E1> /x8e/xa3/xc9/xea <CJK> +<U8A9D> /x8e/xa3/xc9/xeb <CJK> +<U4739> /x8e/xa3/xc9/xec <CJK> +<U8C67> /x8e/xa3/xc9/xed <CJK> +<U475C> /x8e/xa3/xc9/xee <CJK> +<U4775> /x8e/xa3/xc9/xef <CJK> +<U8CD0> /x8e/xa3/xc9/xf0 <CJK> +<U8CD6> /x8e/xa3/xc9/xf1 <CJK> +<U8CD4> /x8e/xa3/xc9/xf2 <CJK> +<U8D98> /x8e/xa3/xc9/xf3 <CJK> +<U8D9A> /x8e/xa3/xc9/xf4 <CJK> +<U8D97> /x8e/xa3/xc9/xf5 <CJK> +<U47AE> /x8e/xa3/xc9/xf6 <CJK> +<U47B0> /x8e/xa3/xc9/xf7 <CJK> +<U47FA> /x8e/xa3/xc9/xf8 <CJK> +<U8E0B> /x8e/xa3/xc9/xf9 <CJK> +<U8E08> /x8e/xa3/xc9/xfa <CJK> +<U8E01> /x8e/xa3/xc9/xfb <CJK> +<U8EB4> /x8e/xa3/xc9/xfc <CJK> +<U8EB3> /x8e/xa3/xc9/xfd <CJK> +<U485B> /x8e/xa3/xc9/xfe <CJK> +<U8FA1> /x8e/xa3/xca/xa1 <CJK> +<U8FA2> /x8e/xa3/xca/xa2 <CJK> +<U48A5> /x8e/xa3/xca/xa3 <CJK> +<U905A> /x8e/xa3/xca/xa4 <CJK> +<U48A2> /x8e/xa3/xca/xa5 <CJK> +<U9061> /x8e/xa3/xca/xa6 <CJK> +<U905F> /x8e/xa3/xca/xa7 <CJK> +<U48DB> /x8e/xa3/xca/xa8 <CJK> +<U48DA> /x8e/xa3/xca/xa9 <CJK> +<U9125> /x8e/xa3/xca/xaa <CJK> +<U917B> /x8e/xa3/xca/xab <CJK> +<U9176> /x8e/xa3/xca/xac <CJK> +<U917C> /x8e/xa3/xca/xad <CJK> +<U4924> /x8e/xa3/xca/xae <CJK> +<U9289> /x8e/xa3/xca/xaf <CJK> +<U92F6> /x8e/xa3/xca/xb0 <CJK> +<U92B1> /x8e/xa3/xca/xb1 <CJK> +<U92AD> /x8e/xa3/xca/xb2 <CJK> +<U9292> /x8e/xa3/xca/xb3 <CJK> +<U9281> /x8e/xa3/xca/xb4 <CJK> +<U9284> /x8e/xa3/xca/xb5 <CJK> +<U4926> /x8e/xa3/xca/xb6 <CJK> +<U92AE> /x8e/xa3/xca/xb7 <CJK> +<U9290> /x8e/xa3/xca/xb8 <CJK> +<U929E> /x8e/xa3/xca/xb9 <CJK> +<U4998> /x8e/xa3/xca/xba <CJK> +<U4996> /x8e/xa3/xca/xbb <CJK> +<U499A> /x8e/xa3/xca/xbc <CJK> +<U95A2> /x8e/xa3/xca/xbd <CJK> +<U95A7> /x8e/xa3/xca/xbe <CJK> +<U4997> /x8e/xa3/xca/xbf <CJK> +<U49E1> /x8e/xa3/xca/xc0 <CJK> +<U49E0> /x8e/xa3/xca/xc1 <CJK> +<U49E3> /x8e/xa3/xca/xc2 <CJK> +<U49E2> /x8e/xa3/xca/xc3 <CJK> +<U96A0> /x8e/xa3/xca/xc4 <CJK> +<U969D> /x8e/xa3/xca/xc5 <CJK> +<U969F> /x8e/xa3/xca/xc6 <CJK> +<U96D0> /x8e/xa3/xca/xc7 <CJK> +<U49FB> /x8e/xa3/xca/xc8 <CJK> +<U96D1> /x8e/xa3/xca/xc9 <CJK> +<U4A12> /x8e/xa3/xca/xca <CJK> +<U4A14> /x8e/xa3/xca/xcb <CJK> +<U9759> /x8e/xa3/xca/xcc <CJK> +<U4A45> /x8e/xa3/xca/xcd <CJK> +<U9764> /x8e/xa3/xca/xce <CJK> +<U4A5C> /x8e/xa3/xca/xcf <CJK> +<U4A5D> /x8e/xa3/xca/xd0 <CJK> +<U4AB8> /x8e/xa3/xca/xd1 <CJK> +<U9819> /x8e/xa3/xca/xd2 <CJK> +<U4ABA> /x8e/xa3/xca/xd3 <CJK> +<U9814> /x8e/xa3/xca/xd4 <CJK> +<U9815> /x8e/xa3/xca/xd5 <CJK> +<U981A> /x8e/xa3/xca/xd6 <CJK> +<U4B03> /x8e/xa3/xca/xd7 <CJK> +<U4B35> /x8e/xa3/xca/xd8 <CJK> +<U4B36> /x8e/xa3/xca/xd9 <CJK> +<U4B39> /x8e/xa3/xca/xda <CJK> +<U9906> /x8e/xa3/xca/xdb <CJK> +<U4B2D> /x8e/xa3/xca/xdc <CJK> +<U98F8> /x8e/xa3/xca/xdd <CJK> +<U9901> /x8e/xa3/xca/xde <CJK> +<U4B7A> /x8e/xa3/xca/xdf <CJK> +<U99BE> /x8e/xa3/xca/xe0 <CJK> +<U99BC> /x8e/xa3/xca/xe1 <CJK> +<U99B7> /x8e/xa3/xca/xe2 <CJK> +<U99B6> /x8e/xa3/xca/xe3 <CJK> +<U99C0> /x8e/xa3/xca/xe4 <CJK> +<U4B78> /x8e/xa3/xca/xe5 <CJK> +<U99B8> /x8e/xa3/xca/xe6 <CJK> +<U4B7B> /x8e/xa3/xca/xe7 <CJK> +<U4B7C> /x8e/xa3/xca/xe8 <CJK> +<U4B7E> /x8e/xa3/xca/xe9 <CJK> +<U99C4> /x8e/xa3/xca/xea <CJK> +<U4B7D> /x8e/xa3/xca/xeb <CJK> +<U99BF> /x8e/xa3/xca/xec <CJK> +<U4BC9> /x8e/xa3/xca/xed <CJK> +<U9ADA> /x8e/xa3/xca/xee <CJK> +<U9AE4> /x8e/xa3/xca/xef <CJK> +<U9AE9> /x8e/xa3/xca/xf0 <CJK> +<U9AE8> /x8e/xa3/xca/xf1 <CJK> +<U9AEA> /x8e/xa3/xca/xf2 <CJK> +<U9AE5> /x8e/xa3/xca/xf3 <CJK> +<U4BF3> /x8e/xa3/xca/xf4 <CJK> +<U9B26> /x8e/xa3/xca/xf5 <CJK> +<U4C1A> /x8e/xa3/xca/xf6 <CJK> +<U4C19> /x8e/xa3/xca/xf7 <CJK> +<U9B40> /x8e/xa3/xca/xf8 <CJK> +<U4C1F> /x8e/xa3/xca/xf9 <CJK> +<U4CA6> /x8e/xa3/xca/xfa <CJK> +<U4CA7> /x8e/xa3/xca/xfb <CJK> +<U4CA8> /x8e/xa3/xca/xfc <CJK> +<U4CAB> /x8e/xa3/xca/xfd <CJK> +<U4CA9> /x8e/xa3/xca/xfe <CJK> +<U4D2E> /x8e/xa3/xcb/xa1 <CJK> +<U9EBD> /x8e/xa3/xcb/xa2 <CJK> +<U4D5E> /x8e/xa3/xcb/xa3 <CJK> +<U3495> /x8e/xa3/xcb/xa4 <CJK> +<U3493> /x8e/xa3/xcb/xa5 <CJK> +<U3492> /x8e/xa3/xcb/xa6 <CJK> +<U510E> /x8e/xa3/xcb/xa7 <CJK> +<U3496> /x8e/xa3/xcb/xa8 <CJK> +<U50F7> /x8e/xa3/xcb/xa9 <CJK> +<U3497> /x8e/xa3/xcb/xaa <CJK> +<U50FC> /x8e/xa3/xcb/xab <CJK> +<U510D> /x8e/xa3/xcb/xac <CJK> +<U5101> /x8e/xa3/xcb/xad <CJK> +<U51DA> /x8e/xa3/xcb/xae <CJK> +<U51D9> /x8e/xa3/xcb/xaf <CJK> +<U51DB> /x8e/xa3/xcb/xb0 <CJK> +<U5286> /x8e/xa3/xcb/xb1 <CJK> +<U528E> /x8e/xa3/xcb/xb2 <CJK> +<U52EE> /x8e/xa3/xcb/xb3 <CJK> +<U5333> /x8e/xa3/xcb/xb4 <CJK> +<U53B1> /x8e/xa3/xcb/xb5 <CJK> +<U35F5> /x8e/xa3/xcb/xb6 <CJK> +<U5647> /x8e/xa3/xcb/xb7 <CJK> +<U562D> /x8e/xa3/xcb/xb8 <CJK> +<U5654> /x8e/xa3/xcb/xb9 <CJK> +<U35EA> /x8e/xa3/xcb/xba <CJK> +<U564B> /x8e/xa3/xcb/xbb <CJK> +<U5652> /x8e/xa3/xcb/xbc <CJK> +<U5631> /x8e/xa3/xcb/xbd <CJK> +<U5644> /x8e/xa3/xcb/xbe <CJK> +<U5656> /x8e/xa3/xcb/xbf <CJK> +<U5650> /x8e/xa3/xcb/xc0 <CJK> +<U562B> /x8e/xa3/xcb/xc1 <CJK> +<U35F3> /x8e/xa3/xcb/xc2 <CJK> +<U564D> /x8e/xa3/xcb/xc3 <CJK> +<U5637> /x8e/xa3/xcb/xc4 <CJK> +<U564F> /x8e/xa3/xcb/xc5 <CJK> +<U58A2> /x8e/xa3/xcb/xc6 <CJK> +<U58B7> /x8e/xa3/xcb/xc7 <CJK> +<U3669> /x8e/xa3/xcb/xc8 <CJK> +<U58B2> /x8e/xa3/xcb/xc9 <CJK> +<U366B> /x8e/xa3/xcb/xca <CJK> +<U58AA> /x8e/xa3/xcb/xcb <CJK> +<U58B5> /x8e/xa3/xcb/xcc <CJK> +<U58B0> /x8e/xa3/xcb/xcd <CJK> +<U366C> /x8e/xa3/xcb/xce <CJK> +<U58B4> /x8e/xa3/xcb/xcf <CJK> +<U58A4> /x8e/xa3/xcb/xd0 <CJK> +<U58A7> /x8e/xa3/xcb/xd1 <CJK> +<U3668> /x8e/xa3/xcb/xd2 <CJK> +<U5926> /x8e/xa3/xcb/xd3 <CJK> +<U5AFE> /x8e/xa3/xcb/xd4 <CJK> +<U3728> /x8e/xa3/xcb/xd5 <CJK> +<U5B04> /x8e/xa3/xcb/xd6 <CJK> +<U3726> /x8e/xa3/xcb/xd7 <CJK> +<U5AFC> /x8e/xa3/xcb/xd8 <CJK> +<U3725> /x8e/xa3/xcb/xd9 <CJK> +<U5B06> /x8e/xa3/xcb/xda <CJK> +<U5B0A> /x8e/xa3/xcb/xdb <CJK> +<U5AFA> /x8e/xa3/xcb/xdc <CJK> +<U5B0D> /x8e/xa3/xcb/xdd <CJK> +<U5B00> /x8e/xa3/xcb/xde <CJK> +<U5B0E> /x8e/xa3/xcb/xdf <CJK> +<U376B> /x8e/xa3/xcb/xe0 <CJK> +<U380F> /x8e/xa3/xcb/xe1 <CJK> +<U3808> /x8e/xa3/xcb/xe2 <CJK> +<U5D91> /x8e/xa3/xcb/xe3 <CJK> +<U380C> /x8e/xa3/xcb/xe4 <CJK> +<U5D8F> /x8e/xa3/xcb/xe5 <CJK> +<U5D90> /x8e/xa3/xcb/xe6 <CJK> +<U5D98> /x8e/xa3/xcb/xe7 <CJK> +<U5DA4> /x8e/xa3/xcb/xe8 <CJK> +<U5D9B> /x8e/xa3/xcb/xe9 <CJK> +<U5DA3> /x8e/xa3/xcb/xea <CJK> +<U5D96> /x8e/xa3/xcb/xeb <CJK> +<U5DE4> /x8e/xa3/xcb/xec <CJK> +<U5E5A> /x8e/xa3/xcb/xed <CJK> +<U3860> /x8e/xa3/xcb/xee <CJK> +<U3862> /x8e/xa3/xcb/xef <CJK> +<U5E5E> /x8e/xa3/xcb/xf0 <CJK> +<U3898> /x8e/xa3/xcb/xf1 <CJK> +<U5FB8> /x8e/xa3/xcb/xf2 <CJK> +<U6157> /x8e/xa3/xcb/xf3 <CJK> +<U615C> /x8e/xa3/xcb/xf4 <CJK> +<U61A6> /x8e/xa3/xcb/xf5 <CJK> +<U6195> /x8e/xa3/xcb/xf6 <CJK> +<U6188> /x8e/xa3/xcb/xf7 <CJK> +<U398A> /x8e/xa3/xcb/xf8 <CJK> +<U61A3> /x8e/xa3/xcb/xf9 <CJK> +<U618F> /x8e/xa3/xcb/xfa <CJK> +<U3984> /x8e/xa3/xcb/xfb <CJK> +<U6164> /x8e/xa3/xcb/xfc <CJK> +<U397F> /x8e/xa3/xcb/xfd <CJK> +<U6159> /x8e/xa3/xcb/xfe <CJK> +<U6178> /x8e/xa3/xcc/xa1 <CJK> +<U3982> /x8e/xa3/xcc/xa2 <CJK> +<U6185> /x8e/xa3/xcc/xa3 <CJK> +<U6187> /x8e/xa3/xcc/xa4 <CJK> +<U619E> /x8e/xa3/xcc/xa5 <CJK> +<U3996> /x8e/xa3/xcc/xa6 <CJK> +<U3989> /x8e/xa3/xcc/xa7 <CJK> +<U6198> /x8e/xa3/xcc/xa8 <CJK> +<U619C> /x8e/xa3/xcc/xa9 <CJK> +<U398D> /x8e/xa3/xcc/xaa <CJK> +<U39BC> /x8e/xa3/xcc/xab <CJK> +<U622F> /x8e/xa3/xcc/xac <CJK> +<U6480> /x8e/xa3/xcc/xad <CJK> +<U649B> /x8e/xa3/xcc/xae <CJK> +<U648E> /x8e/xa3/xcc/xaf <CJK> +<U648D> /x8e/xa3/xcc/xb0 <CJK> +<U6494> /x8e/xa3/xcc/xb1 <CJK> +<U64C6> /x8e/xa3/xcc/xb2 <CJK> +<U3A44> /x8e/xa3/xcc/xb3 <CJK> +<U64A8> /x8e/xa3/xcc/xb4 <CJK> +<U6483> /x8e/xa3/xcc/xb5 <CJK> +<U3A3C> /x8e/xa3/xcc/xb6 <CJK> +<U64B9> /x8e/xa3/xcc/xb7 <CJK> +<U6486> /x8e/xa3/xcc/xb8 <CJK> +<U64B4> /x8e/xa3/xcc/xb9 <CJK> +<U64AF> /x8e/xa3/xcc/xba <CJK> +<U6491> /x8e/xa3/xcc/xbb <CJK> +<U3A4E> /x8e/xa3/xcc/xbc <CJK> +<U64AA> /x8e/xa3/xcc/xbd <CJK> +<U64A1> /x8e/xa3/xcc/xbe <CJK> +<U64A7> /x8e/xa3/xcc/xbf <CJK> +<U66B6> /x8e/xa3/xcc/xc0 <CJK> +<U66B3> /x8e/xa3/xcc/xc1 <CJK> +<U3B14> /x8e/xa3/xcc/xc2 <CJK> +<U66BC> /x8e/xa3/xcc/xc3 <CJK> +<U66AC> /x8e/xa3/xcc/xc4 <CJK> +<U3B15> /x8e/xa3/xcc/xc5 <CJK> +<U66AD> /x8e/xa3/xcc/xc6 <CJK> +<U6A0E> /x8e/xa3/xcc/xc7 <CJK> +<U3BCE> /x8e/xa3/xcc/xc8 <CJK> +<U6A1C> /x8e/xa3/xcc/xc9 <CJK> +<U6A1A> /x8e/xa3/xcc/xca <CJK> +<U3BE0> /x8e/xa3/xcc/xcb <CJK> +<U3BC2> /x8e/xa3/xcc/xcc <CJK> +<U6A0B> /x8e/xa3/xcc/xcd <CJK> +<U3BBF> /x8e/xa3/xcc/xce <CJK> +<U69EF> /x8e/xa3/xcc/xcf <CJK> +<U6A0C> /x8e/xa3/xcc/xd0 <CJK> +<U69F0> /x8e/xa3/xcc/xd1 <CJK> +<U6A22> /x8e/xa3/xcc/xd2 <CJK> +<U3BC4> /x8e/xa3/xcc/xd3 <CJK> +<U69D8> /x8e/xa3/xcc/xd4 <CJK> +<U3BCF> /x8e/xa3/xcc/xd5 <CJK> +<U6A12> /x8e/xa3/xcc/xd6 <CJK> +<U69FA> /x8e/xa3/xcc/xd7 <CJK> +<U3BC8> /x8e/xa3/xcc/xd8 <CJK> +<U6A2A> /x8e/xa3/xcc/xd9 <CJK> +<U3BCC> /x8e/xa3/xcc/xda <CJK> +<U6A10> /x8e/xa3/xcc/xdb <CJK> +<U3BCD> /x8e/xa3/xcc/xdc <CJK> +<U3BC7> /x8e/xa3/xcc/xdd <CJK> +<U6A29> /x8e/xa3/xcc/xde <CJK> +<U69F9> /x8e/xa3/xcc/xdf <CJK> +<U69EA> /x8e/xa3/xcc/xe0 <CJK> +<U6A2C> /x8e/xa3/xcc/xe1 <CJK> +<U6A24> /x8e/xa3/xcc/xe2 <CJK> +<U4CB7> /x8e/xa3/xcc/xe3 <CJK> +<U69E9> /x8e/xa3/xcc/xe4 <CJK> +<U6B52> /x8e/xa3/xcc/xe5 <CJK> +<U6B4F> /x8e/xa3/xcc/xe6 <CJK> +<U6B53> /x8e/xa3/xcc/xe7 <CJK> +<U3C43> /x8e/xa3/xcc/xe8 <CJK> +<U3CB6> /x8e/xa3/xcc/xe9 <CJK> +<U6F10> /x8e/xa3/xcc/xea <CJK> +<U6F65> /x8e/xa3/xcc/xeb <CJK> +<U6F75> /x8e/xa3/xcc/xec <CJK> +<U3D51> /x8e/xa3/xcc/xed <CJK> +<U3D4A> /x8e/xa3/xcc/xee <CJK> +<U3D4D> /x8e/xa3/xcc/xef <CJK> +<U3D56> /x8e/xa3/xcc/xf0 <CJK> +<U6FD0> /x8e/xa3/xcc/xf1 <CJK> +<U3D53> /x8e/xa3/xcc/xf2 <CJK> +<U6F5C> /x8e/xa3/xcc/xf3 <CJK> +<U6F3D> /x8e/xa3/xcc/xf4 <CJK> +<U6F71> /x8e/xa3/xcc/xf5 <CJK> +<U3D59> /x8e/xa3/xcc/xf6 <CJK> +<U6F91> /x8e/xa3/xcc/xf7 <CJK> +<U6F0B> /x8e/xa3/xcc/xf8 <CJK> +<U6F79> /x8e/xa3/xcc/xf9 <CJK> +<U6F81> /x8e/xa3/xcc/xfa <CJK> +<U6F8F> /x8e/xa3/xcc/xfb <CJK> +<U3D4E> /x8e/xa3/xcc/xfc <CJK> +<U6F59> /x8e/xa3/xcc/xfd <CJK> +<U6F74> /x8e/xa3/xcc/xfe <CJK> +<U3DEE> /x8e/xa3/xcd/xa1 <CJK> +<U71AE> /x8e/xa3/xcd/xa2 <CJK> +<U3DEC> /x8e/xa3/xcd/xa3 <CJK> +<U71A3> /x8e/xa3/xcd/xa4 <CJK> +<U71AD> /x8e/xa3/xcd/xa5 <CJK> +<U3DEB> /x8e/xa3/xcd/xa6 <CJK> +<U3DEF> /x8e/xa3/xcd/xa7 <CJK> +<U71AB> /x8e/xa3/xcd/xa8 <CJK> +<U71A6> /x8e/xa3/xcd/xa9 <CJK> +<U71A2> /x8e/xa3/xcd/xaa <CJK> +<U3DED> /x8e/xa3/xcd/xab <CJK> +<U52F2> /x8e/xa3/xcd/xac <CJK> +<U7257> /x8e/xa3/xcd/xad <CJK> +<U7255> /x8e/xa3/xcd/xae <CJK> +<U7299> /x8e/xa3/xcd/xaf <CJK> +<U734B> /x8e/xa3/xcd/xb0 <CJK> +<U747A> /x8e/xa3/xcd/xb1 <CJK> +<U3EF2> /x8e/xa3/xcd/xb2 <CJK> +<U3EEF> /x8e/xa3/xcd/xb3 <CJK> +<U3EF1> /x8e/xa3/xcd/xb4 <CJK> +<U748C> /x8e/xa3/xcd/xb5 <CJK> +<U7484> /x8e/xa3/xcd/xb6 <CJK> +<U3EED> /x8e/xa3/xcd/xb7 <CJK> +<U3EF0> /x8e/xa3/xcd/xb8 <CJK> +<U7482> /x8e/xa3/xcd/xb9 <CJK> +<U7493> /x8e/xa3/xcd/xba <CJK> +<U747B> /x8e/xa3/xcd/xbb <CJK> +<U3EEE> /x8e/xa3/xcd/xbc <CJK> +<U7509> /x8e/xa3/xcd/xbd <CJK> +<U4C1B> /x8e/xa3/xcd/xbe <CJK> +<U3F50> /x8e/xa3/xcd/xbf <CJK> +<U3F66> /x8e/xa3/xcd/xc0 <CJK> +<U3684> /x8e/xa3/xcd/xc1 <CJK> +<U3FB8> /x8e/xa3/xcd/xc2 <CJK> +<U3FF6> /x8e/xa3/xcd/xc3 <CJK> +<U778A> /x8e/xa3/xcd/xc4 <CJK> +<U4057> /x8e/xa3/xcd/xc5 <CJK> +<U7790> /x8e/xa3/xcd/xc6 <CJK> +<U405E> /x8e/xa3/xcd/xc7 <CJK> +<U78C6> /x8e/xa3/xcd/xc8 <CJK> +<U78D3> /x8e/xa3/xcd/xc9 <CJK> +<U78C0> /x8e/xa3/xcd/xca <CJK> +<U78D2> /x8e/xa3/xcd/xcb <CJK> +<U78C7> /x8e/xa3/xcd/xcc <CJK> +<U78C2> /x8e/xa3/xcd/xcd <CJK> +<U4119> /x8e/xa3/xcd/xce <CJK> +<U799F> /x8e/xa3/xcd/xcf <CJK> +<U799D> /x8e/xa3/xcd/xd0 <CJK> +<U799E> /x8e/xa3/xcd/xd1 <CJK> +<U4170> /x8e/xa3/xcd/xd2 <CJK> +<U7A41> /x8e/xa3/xcd/xd3 <CJK> +<U416E> /x8e/xa3/xcd/xd4 <CJK> +<U7A38> /x8e/xa3/xcd/xd5 <CJK> +<U7A3A> /x8e/xa3/xcd/xd6 <CJK> +<U7A42> /x8e/xa3/xcd/xd7 <CJK> +<U4172> /x8e/xa3/xcd/xd8 <CJK> +<U4176> /x8e/xa3/xcd/xd9 <CJK> +<U7A3E> /x8e/xa3/xcd/xda <CJK> +<U7AB0> /x8e/xa3/xcd/xdb <CJK> +<U7BAE> /x8e/xa3/xcd/xdc <CJK> +<U7BB3> /x8e/xa3/xcd/xdd <CJK> +<U4212> /x8e/xa3/xcd/xde <CJK> +<U421F> /x8e/xa3/xcd/xdf <CJK> +<U7BBF> /x8e/xa3/xcd/xe0 <CJK> +<U4211> /x8e/xa3/xcd/xe1 <CJK> +<U4216> /x8e/xa3/xcd/xe2 <CJK> +<U7BCD> /x8e/xa3/xcd/xe3 <CJK> +<U4219> /x8e/xa3/xcd/xe4 <CJK> +<U7BB2> /x8e/xa3/xcd/xe5 <CJK> +<U4224> /x8e/xa3/xcd/xe6 <CJK> +<U4214> /x8e/xa3/xcd/xe7 <CJK> +<U4225> /x8e/xa3/xcd/xe8 <CJK> +<U4295> /x8e/xa3/xcd/xe9 <CJK> +<U4296> /x8e/xa3/xcd/xea <CJK> +<U4293> /x8e/xa3/xcd/xeb <CJK> +<U4294> /x8e/xa3/xcd/xec <CJK> +<U7CC4> /x8e/xa3/xcd/xed <CJK> +<U7CCD> /x8e/xa3/xcd/xee <CJK> +<U7CC2> /x8e/xa3/xcd/xef <CJK> +<U7CC6> /x8e/xa3/xcd/xf0 <CJK> +<U7CC3> /x8e/xa3/xcd/xf1 <CJK> +<U7CC9> /x8e/xa3/xcd/xf2 <CJK> +<U7CC7> /x8e/xa3/xcd/xf3 <CJK> +<U42A0> /x8e/xa3/xcd/xf4 <CJK> +<U7DF8> /x8e/xa3/xcd/xf5 <CJK> +<U42FB> /x8e/xa3/xcd/xf6 <CJK> +<U7DED> /x8e/xa3/xcd/xf7 <CJK> +<U7DE2> /x8e/xa3/xcd/xf8 <CJK> +<U42FC> /x8e/xa3/xcd/xf9 <CJK> +<U4300> /x8e/xa3/xcd/xfa <CJK> +<U42F8> /x8e/xa3/xcd/xfb <CJK> +<U7DDC> /x8e/xa3/xcd/xfc <CJK> +<U7E02> /x8e/xa3/xcd/xfd <CJK> +<U7E01> /x8e/xa3/xcd/xfe <CJK> +<U42F9> /x8e/xa3/xce/xa1 <CJK> +<U7DD6> /x8e/xa3/xce/xa2 <CJK> +<U4304> /x8e/xa3/xce/xa3 <CJK> +<U7DE4> /x8e/xa3/xce/xa4 <CJK> +<U7DFE> /x8e/xa3/xce/xa5 <CJK> +<U4303> /x8e/xa3/xce/xa6 <CJK> +<U7E00> /x8e/xa3/xce/xa7 <CJK> +<U7DFC> /x8e/xa3/xce/xa8 <CJK> +<U7DFD> /x8e/xa3/xce/xa9 <CJK> +<U42F3> /x8e/xa3/xce/xaa <CJK> +<U7DF5> /x8e/xa3/xce/xab <CJK> +<U7DFF> /x8e/xa3/xce/xac <CJK> +<U42FA> /x8e/xa3/xce/xad <CJK> +<U7DEB> /x8e/xa3/xce/xae <CJK> +<U7DE5> /x8e/xa3/xce/xaf <CJK> +<U7F78> /x8e/xa3/xce/xb0 <CJK> +<U7FAE> /x8e/xa3/xce/xb1 <CJK> +<U7FE7> /x8e/xa3/xce/xb2 <CJK> +<U43BF> /x8e/xa3/xce/xb3 <CJK> +<U8065> /x8e/xa3/xce/xb4 <CJK> +<U806A> /x8e/xa3/xce/xb5 <CJK> +<U8066> /x8e/xa3/xce/xb6 <CJK> +<U8068> /x8e/xa3/xce/xb7 <CJK> +<U806B> /x8e/xa3/xce/xb8 <CJK> +<U8194> /x8e/xa3/xce/xb9 <CJK> +<U81A1> /x8e/xa3/xce/xba <CJK> +<U8192> /x8e/xa3/xce/xbb <CJK> +<U8196> /x8e/xa3/xce/xbc <CJK> +<U8193> /x8e/xa3/xce/xbd <CJK> +<U4479> /x8e/xa3/xce/xbe <CJK> +<U4510> /x8e/xa3/xce/xbf <CJK> +<U8501> /x8e/xa3/xce/xc0 <CJK> +<U4514> /x8e/xa3/xce/xc1 <CJK> +<U84F8> /x8e/xa3/xce/xc2 <CJK> +<U450E> /x8e/xa3/xce/xc3 <CJK> +<U84F5> /x8e/xa3/xce/xc4 <CJK> +<U451A> /x8e/xa3/xce/xc5 <CJK> +<U8504> /x8e/xa3/xce/xc6 <CJK> +<U4519> /x8e/xa3/xce/xc7 <CJK> +<U4521> /x8e/xa3/xce/xc8 <CJK> +<U4523> /x8e/xa3/xce/xc9 <CJK> +<U451F> /x8e/xa3/xce/xca <CJK> +<U851B> /x8e/xa3/xce/xcb <CJK> +<U8503> /x8e/xa3/xce/xcc <CJK> +<U8533> /x8e/xa3/xce/xcd <CJK> +<U8534> /x8e/xa3/xce/xce <CJK> +<U84ED> /x8e/xa3/xce/xcf <CJK> +<U4525> /x8e/xa3/xce/xd0 <CJK> +<U452B> /x8e/xa3/xce/xd1 <CJK> +<U8535> /x8e/xa3/xce/xd2 <CJK> +<U4516> /x8e/xa3/xce/xd3 <CJK> +<U8505> /x8e/xa3/xce/xd4 <CJK> +<U4522> /x8e/xa3/xce/xd5 <CJK> +<U451B> /x8e/xa3/xce/xd6 <CJK> +<U45CE> /x8e/xa3/xce/xd7 <CJK> +<U45CF> /x8e/xa3/xce/xd8 <CJK> +<U877D> /x8e/xa3/xce/xd9 <CJK> +<U45CB> /x8e/xa3/xce/xda <CJK> +<U45D1> /x8e/xa3/xce/xdb <CJK> +<U45CC> /x8e/xa3/xce/xdc <CJK> +<U8771> /x8e/xa3/xce/xdd <CJK> +<U4617> /x8e/xa3/xce/xde <CJK> +<U885C> /x8e/xa3/xce/xdf <CJK> +<U88E6> /x8e/xa3/xce/xe0 <CJK> +<U890F> /x8e/xa3/xce/xe1 <CJK> +<U891B> /x8e/xa3/xce/xe2 <CJK> +<U4651> /x8e/xa3/xce/xe3 <CJK> +<U89A9> /x8e/xa3/xce/xe4 <CJK> +<U89A5> /x8e/xa3/xce/xe5 <CJK> +<U89EE> /x8e/xa3/xce/xe6 <CJK> +<U8AB1> /x8e/xa3/xce/xe7 <CJK> +<U46ED> /x8e/xa3/xce/xe8 <CJK> +<U8ACC> /x8e/xa3/xce/xe9 <CJK> +<U8ACE> /x8e/xa3/xce/xea <CJK> +<U46F4> /x8e/xa3/xce/xeb <CJK> +<U8AB7> /x8e/xa3/xce/xec <CJK> +<U46F1> /x8e/xa3/xce/xed <CJK> +<U8AB5> /x8e/xa3/xce/xee <CJK> +<U8AE9> /x8e/xa3/xce/xef <CJK> +<U8AB4> /x8e/xa3/xce/xf0 <CJK> +<U46F8> /x8e/xa3/xce/xf1 <CJK> +<U8AB3> /x8e/xa3/xce/xf2 <CJK> +<U8AC1> /x8e/xa3/xce/xf3 <CJK> +<U8AAF> /x8e/xa3/xce/xf4 <CJK> +<U8ACA> /x8e/xa3/xce/xf5 <CJK> +<U8AD0> /x8e/xa3/xce/xf6 <CJK> +<U472F> /x8e/xa3/xce/xf7 <CJK> +<U475E> /x8e/xa3/xce/xf8 <CJK> +<U475D> /x8e/xa3/xce/xf9 <CJK> +<U8C8E> /x8e/xa3/xce/xfa <CJK> +<U4776> /x8e/xa3/xce/xfb <CJK> +<U4777> /x8e/xa3/xce/xfc <CJK> +<U8CE9> /x8e/xa3/xce/xfd <CJK> +<U8CDB> /x8e/xa3/xce/xfe <CJK> +<U477E> /x8e/xa3/xcf/xa1 <CJK> +<U8CEB> /x8e/xa3/xcf/xa2 <CJK> +<U8DA4> /x8e/xa3/xcf/xa3 <CJK> +<U47B6> /x8e/xa3/xcf/xa4 <CJK> +<U8DA2> /x8e/xa3/xcf/xa5 <CJK> +<U8D9D> /x8e/xa3/xcf/xa6 <CJK> +<U47B3> /x8e/xa3/xcf/xa7 <CJK> +<U47FC> /x8e/xa3/xcf/xa8 <CJK> +<U4803> /x8e/xa3/xcf/xa9 <CJK> +<U4800> /x8e/xa3/xcf/xaa <CJK> +<U8E2A> /x8e/xa3/xcf/xab <CJK> +<U8E28> /x8e/xa3/xcf/xac <CJK> +<U480A> /x8e/xa3/xcf/xad <CJK> +<U4802> /x8e/xa3/xcf/xae <CJK> +<U8EB8> /x8e/xa3/xcf/xaf <CJK> +<U8EB6> /x8e/xa3/xcf/xb0 <CJK> +<U8EB9> /x8e/xa3/xcf/xb1 <CJK> +<U8EB7> /x8e/xa3/xcf/xb2 <CJK> +<U8F22> /x8e/xa3/xcf/xb3 <CJK> +<U8F2B> /x8e/xa3/xcf/xb4 <CJK> +<U8F27> /x8e/xa3/xcf/xb5 <CJK> +<U8F19> /x8e/xa3/xcf/xb6 <CJK> +<U8FA4> /x8e/xa3/xcf/xb7 <CJK> +<U4887> /x8e/xa3/xcf/xb8 <CJK> +<U8FB3> /x8e/xa3/xcf/xb9 <CJK> +<U48A6> /x8e/xa3/xcf/xba <CJK> +<U9071> /x8e/xa3/xcf/xbb <CJK> +<U906A> /x8e/xa3/xcf/xbc <CJK> +<U48A9> /x8e/xa3/xcf/xbd <CJK> +<U48DE> /x8e/xa3/xcf/xbe <CJK> +<U9188> /x8e/xa3/xcf/xbf <CJK> +<U918C> /x8e/xa3/xcf/xc0 <CJK> +<U92BF> /x8e/xa3/xcf/xc1 <CJK> +<U92B8> /x8e/xa3/xcf/xc2 <CJK> +<U92BE> /x8e/xa3/xcf/xc3 <CJK> +<U92DC> /x8e/xa3/xcf/xc4 <CJK> +<U92E5> /x8e/xa3/xcf/xc5 <CJK> +<U492E> /x8e/xa3/xcf/xc6 <CJK> +<U492D> /x8e/xa3/xcf/xc7 <CJK> +<U92D4> /x8e/xa3/xcf/xc8 <CJK> +<U92D6> /x8e/xa3/xcf/xc9 <CJK> +<U4930> /x8e/xa3/xcf/xca <CJK> +<U92DA> /x8e/xa3/xcf/xcb <CJK> +<U92ED> /x8e/xa3/xcf/xcc <CJK> +<U92F3> /x8e/xa3/xcf/xcd <CJK> +<U92DB> /x8e/xa3/xcf/xce <CJK> +<U492B> /x8e/xa3/xcf/xcf <CJK> +<U92B9> /x8e/xa3/xcf/xd0 <CJK> +<U92E2> /x8e/xa3/xcf/xd1 <CJK> +<U92EB> /x8e/xa3/xcf/xd2 <CJK> +<U95AF> /x8e/xa3/xcf/xd3 <CJK> +<U499E> /x8e/xa3/xcf/xd4 <CJK> +<U95B2> /x8e/xa3/xcf/xd5 <CJK> +<U95B3> /x8e/xa3/xcf/xd6 <CJK> +<U499F> /x8e/xa3/xcf/xd7 <CJK> +<U49E5> /x8e/xa3/xcf/xd8 <CJK> +<U49E4> /x8e/xa3/xcf/xd9 <CJK> +<U96A3> /x8e/xa3/xcf/xda <CJK> +<U96A5> /x8e/xa3/xcf/xdb <CJK> +<U49FD> /x8e/xa3/xcf/xdc <CJK> +<U49FC> /x8e/xa3/xcf/xdd <CJK> +<U4A17> /x8e/xa3/xcf/xde <CJK> +<U4A19> /x8e/xa3/xcf/xdf <CJK> +<U970A> /x8e/xa3/xcf/xe0 <CJK> +<U4A18> /x8e/xa3/xcf/xe1 <CJK> +<U9787> /x8e/xa3/xcf/xe2 <CJK> +<U9789> /x8e/xa3/xcf/xe3 <CJK> +<U978C> /x8e/xa3/xcf/xe4 <CJK> +<U97EF> /x8e/xa3/xcf/xe5 <CJK> +<U982A> /x8e/xa3/xcf/xe6 <CJK> +<U9822> /x8e/xa3/xcf/xe7 <CJK> +<U4ABF> /x8e/xa3/xcf/xe8 <CJK> +<U981F> /x8e/xa3/xcf/xe9 <CJK> +<U4B3C> /x8e/xa3/xcf/xea <CJK> +<U9919> /x8e/xa3/xcf/xeb <CJK> +<U4B6B> /x8e/xa3/xcf/xec <CJK> +<U99CA> /x8e/xa3/xcf/xed <CJK> +<U99DA> /x8e/xa3/xcf/xee <CJK> +<U4B83> /x8e/xa3/xcf/xef <CJK> +<U4B81> /x8e/xa3/xcf/xf0 <CJK> +<U4B80> /x8e/xa3/xcf/xf1 <CJK> +<U99DE> /x8e/xa3/xcf/xf2 <CJK> +<U99C8> /x8e/xa3/xcf/xf3 <CJK> +<U99E0> /x8e/xa3/xcf/xf4 <CJK> +<U4BCA> /x8e/xa3/xcf/xf5 <CJK> +<U9AB6> /x8e/xa3/xcf/xf6 <CJK> +<U9AB5> /x8e/xa3/xcf/xf7 <CJK> +<U4BCE> /x8e/xa3/xcf/xf8 <CJK> +<U9AF4> /x8e/xa3/xcf/xf9 <CJK> +<U4BF6> /x8e/xa3/xcf/xfa <CJK> +<U9B6B> /x8e/xa3/xcf/xfb <CJK> +<U9B69> /x8e/xa3/xcf/xfc <CJK> +<U9B72> /x8e/xa3/xcf/xfd <CJK> +<U9B63> /x8e/xa3/xcf/xfe <CJK> +<U4C39> /x8e/xa3/xd0/xa1 <CJK> +<U9D0D> /x8e/xa3/xd0/xa2 <CJK> +<U4CAE> /x8e/xa3/xd0/xa3 <CJK> +<U9D01> /x8e/xa3/xd0/xa4 <CJK> +<U9D0C> /x8e/xa3/xd0/xa5 <CJK> +<U4CB5> /x8e/xa3/xd0/xa6 <CJK> +<U9CF8> /x8e/xa3/xd0/xa7 <CJK> +<U4CB3> /x8e/xa3/xd0/xa8 <CJK> +<U4CB4> /x8e/xa3/xd0/xa9 <CJK> +<U9CFE> /x8e/xa3/xd0/xaa <CJK> +<U9D02> /x8e/xa3/xd0/xab <CJK> +<U9E84> /x8e/xa3/xd0/xac <CJK> +<U4D22> /x8e/xa3/xd0/xad <CJK> +<U9EAB> /x8e/xa3/xd0/xae <CJK> +<U9EAA> /x8e/xa3/xd0/xaf <CJK> +<U511D> /x8e/xa3/xd0/xb0 <CJK> +<U5116> /x8e/xa3/xd0/xb1 <CJK> +<U3499> /x8e/xa3/xd0/xb2 <CJK> +<U512B> /x8e/xa3/xd0/xb3 <CJK> +<U511E> /x8e/xa3/xd0/xb4 <CJK> +<U511B> /x8e/xa3/xd0/xb5 <CJK> +<U5290> /x8e/xa3/xd0/xb6 <CJK> +<U5294> /x8e/xa3/xd0/xb7 <CJK> +<U5314> /x8e/xa3/xd0/xb8 <CJK> +<U00020B89> /x8e/xa3/xd0/xb9 <CJK> +<U3602> /x8e/xa3/xd0/xba <CJK> +<U5667> /x8e/xa3/xd0/xbb <CJK> +<U3601> /x8e/xa3/xd0/xbc <CJK> +<U567B> /x8e/xa3/xd0/xbd <CJK> +<U36A1> /x8e/xa3/xd0/xbe <CJK> +<U565F> /x8e/xa3/xd0/xbf <CJK> +<U5661> /x8e/xa3/xd0/xc0 <CJK> +<U35FD> /x8e/xa3/xd0/xc1 <CJK> +<U3673> /x8e/xa3/xd0/xc2 <CJK> +<U3674> /x8e/xa3/xd0/xc3 <CJK> +<U3670> /x8e/xa3/xd0/xc4 <CJK> +<U3676> /x8e/xa3/xd0/xc5 <CJK> +<U3675> /x8e/xa3/xd0/xc6 <CJK> +<U3672> /x8e/xa3/xd0/xc7 <CJK> +<U58C3> /x8e/xa3/xd0/xc8 <CJK> +<U58CA> /x8e/xa3/xd0/xc9 <CJK> +<U58BB> /x8e/xa3/xd0/xca <CJK> +<U58C0> /x8e/xa3/xd0/xcb <CJK> +<U58C4> /x8e/xa3/xd0/xcc <CJK> +<U5901> /x8e/xa3/xd0/xcd <CJK> +<U5B1F> /x8e/xa3/xd0/xce <CJK> +<U5B18> /x8e/xa3/xd0/xcf <CJK> +<U5B11> /x8e/xa3/xd0/xd0 <CJK> +<U5B15> /x8e/xa3/xd0/xd1 <CJK> +<U3729> /x8e/xa3/xd0/xd2 <CJK> +<U5B12> /x8e/xa3/xd0/xd3 <CJK> +<U5B1C> /x8e/xa3/xd0/xd4 <CJK> +<U372A> /x8e/xa3/xd0/xd5 <CJK> +<U5B22> /x8e/xa3/xd0/xd6 <CJK> +<U5B79> /x8e/xa3/xd0/xd7 <CJK> +<U5DA6> /x8e/xa3/xd0/xd8 <CJK> +<U3816> /x8e/xa3/xd0/xd9 <CJK> +<U5DB3> /x8e/xa3/xd0/xda <CJK> +<U5DAB> /x8e/xa3/xd0/xdb <CJK> +<U5EEA> /x8e/xa3/xd0/xdc <CJK> +<U3899> /x8e/xa3/xd0/xdd <CJK> +<U5F5B> /x8e/xa3/xd0/xde <CJK> +<U38D3> /x8e/xa3/xd0/xdf <CJK> +<U38F5> /x8e/xa3/xd0/xe0 <CJK> +<U61B7> /x8e/xa3/xd0/xe1 <CJK> +<U61CE> /x8e/xa3/xd0/xe2 <CJK> +<U61B9> /x8e/xa3/xd0/xe3 <CJK> +<U61BD> /x8e/xa3/xd0/xe4 <CJK> +<U61CF> /x8e/xa3/xd0/xe5 <CJK> +<U61C0> /x8e/xa3/xd0/xe6 <CJK> +<U6199> /x8e/xa3/xd0/xe7 <CJK> +<U6197> /x8e/xa3/xd0/xe8 <CJK> +<U3994> /x8e/xa3/xd0/xe9 <CJK> +<U61BB> /x8e/xa3/xd0/xea <CJK> +<U61D0> /x8e/xa3/xd0/xeb <CJK> +<U61C4> /x8e/xa3/xd0/xec <CJK> +<U6231> /x8e/xa3/xd0/xed <CJK> +<U3A56> /x8e/xa3/xd0/xee <CJK> +<U64D3> /x8e/xa3/xd0/xef <CJK> +<U64C0> /x8e/xa3/xd0/xf0 <CJK> +<U3A59> /x8e/xa3/xd0/xf1 <CJK> +<U3A58> /x8e/xa3/xd0/xf2 <CJK> +<U3A55> /x8e/xa3/xd0/xf3 <CJK> +<U3A52> /x8e/xa3/xd0/xf4 <CJK> +<U64DC> /x8e/xa3/xd0/xf5 <CJK> +<U64D1> /x8e/xa3/xd0/xf6 <CJK> +<U64C8> /x8e/xa3/xd0/xf7 <CJK> +<U3A57> /x8e/xa3/xd0/xf8 <CJK> +<U64D5> /x8e/xa3/xd0/xf9 <CJK> +<U66C3> /x8e/xa3/xd0/xfa <CJK> +<U3B1B> /x8e/xa3/xd0/xfb <CJK> +<U3B1C> /x8e/xa3/xd0/xfc <CJK> +<U66BF> /x8e/xa3/xd0/xfd <CJK> +<U66C5> /x8e/xa3/xd0/xfe <CJK> +<U3B19> /x8e/xa3/xd1/xa1 <CJK> +<U66CD> /x8e/xa3/xd1/xa2 <CJK> +<U66C1> /x8e/xa3/xd1/xa3 <CJK> +<U6706> /x8e/xa3/xd1/xa4 <CJK> +<U3B3F> /x8e/xa3/xd1/xa5 <CJK> +<U6724> /x8e/xa3/xd1/xa6 <CJK> +<U6A63> /x8e/xa3/xd1/xa7 <CJK> +<U6A42> /x8e/xa3/xd1/xa8 <CJK> +<U6A52> /x8e/xa3/xd1/xa9 <CJK> +<U3BDB> /x8e/xa3/xd1/xaa <CJK> +<U6A43> /x8e/xa3/xd1/xab <CJK> +<U6A33> /x8e/xa3/xd1/xac <CJK> +<U3BE2> /x8e/xa3/xd1/xad <CJK> +<U6A6C> /x8e/xa3/xd1/xae <CJK> +<U6A57> /x8e/xa3/xd1/xaf <CJK> +<U3BD7> /x8e/xa3/xd1/xb0 <CJK> +<U6A4C> /x8e/xa3/xd1/xb1 <CJK> +<U6A6E> /x8e/xa3/xd1/xb2 <CJK> +<U3BDE> /x8e/xa3/xd1/xb3 <CJK> +<U3BE5> /x8e/xa3/xd1/xb4 <CJK> +<U3BE4> /x8e/xa3/xd1/xb5 <CJK> +<U3BE6> /x8e/xa3/xd1/xb6 <CJK> +<U3BD6> /x8e/xa3/xd1/xb7 <CJK> +<U6A37> /x8e/xa3/xd1/xb8 <CJK> +<U3BDF> /x8e/xa3/xd1/xb9 <CJK> +<U6A71> /x8e/xa3/xd1/xba <CJK> +<U6A4A> /x8e/xa3/xd1/xbb <CJK> +<U6A36> /x8e/xa3/xd1/xbc <CJK> +<U3BDC> /x8e/xa3/xd1/xbd <CJK> +<U6A53> /x8e/xa3/xd1/xbe <CJK> +<U3BDA> /x8e/xa3/xd1/xbf <CJK> +<U6A45> /x8e/xa3/xd1/xc0 <CJK> +<U6A70> /x8e/xa3/xd1/xc1 <CJK> +<U3BD3> /x8e/xa3/xd1/xc2 <CJK> +<U3BD0> /x8e/xa3/xd1/xc3 <CJK> +<U6A5C> /x8e/xa3/xd1/xc4 <CJK> +<U6B58> /x8e/xa3/xd1/xc5 <CJK> +<U6B57> /x8e/xa3/xd1/xc6 <CJK> +<U3C86> /x8e/xa3/xd1/xc7 <CJK> +<U3C87> /x8e/xa3/xd1/xc8 <CJK> +<U3CAD> /x8e/xa3/xd1/xc9 <CJK> +<U3CB7> /x8e/xa3/xd1/xca <CJK> +<U3D58> /x8e/xa3/xd1/xcb <CJK> +<U3D6A> /x8e/xa3/xd1/xcc <CJK> +<U6FBB> /x8e/xa3/xd1/xcd <CJK> +<U3D62> /x8e/xa3/xd1/xce <CJK> +<U3D61> /x8e/xa3/xd1/xcf <CJK> +<U6FBE> /x8e/xa3/xd1/xd0 <CJK> +<U3D69> /x8e/xa3/xd1/xd1 <CJK> +<U3D6C> /x8e/xa3/xd1/xd2 <CJK> +<U3D65> /x8e/xa3/xd1/xd3 <CJK> +<U6FB5> /x8e/xa3/xd1/xd4 <CJK> +<U6FD3> /x8e/xa3/xd1/xd5 <CJK> +<U6F9F> /x8e/xa3/xd1/xd6 <CJK> +<U3D66> /x8e/xa3/xd1/xd7 <CJK> +<U6FB7> /x8e/xa3/xd1/xd8 <CJK> +<U6FF5> /x8e/xa3/xd1/xd9 <CJK> +<U71B7> /x8e/xa3/xd1/xda <CJK> +<U3DF5> /x8e/xa3/xd1/xdb <CJK> +<U71BB> /x8e/xa3/xd1/xdc <CJK> +<U3DF4> /x8e/xa3/xd1/xdd <CJK> +<U71D1> /x8e/xa3/xd1/xde <CJK> +<U3DF7> /x8e/xa3/xd1/xdf <CJK> +<U71BA> /x8e/xa3/xd1/xe0 <CJK> +<U3DF8> /x8e/xa3/xd1/xe1 <CJK> +<U71B6> /x8e/xa3/xd1/xe2 <CJK> +<U71CC> /x8e/xa3/xd1/xe3 <CJK> +<U3DFB> /x8e/xa3/xd1/xe4 <CJK> +<U3DFC> /x8e/xa3/xd1/xe5 <CJK> +<U71D3> /x8e/xa3/xd1/xe6 <CJK> +<U749B> /x8e/xa3/xd1/xe7 <CJK> +<U3EF5> /x8e/xa3/xd1/xe8 <CJK> +<U3EF8> /x8e/xa3/xd1/xe9 <CJK> +<U7496> /x8e/xa3/xd1/xea <CJK> +<U74A2> /x8e/xa3/xd1/xeb <CJK> +<U749D> /x8e/xa3/xd1/xec <CJK> +<U750A> /x8e/xa3/xd1/xed <CJK> +<U750E> /x8e/xa3/xd1/xee <CJK> +<U3F3C> /x8e/xa3/xd1/xef <CJK> +<U7581> /x8e/xa3/xd1/xf0 <CJK> +<U762C> /x8e/xa3/xd1/xf1 <CJK> +<U7637> /x8e/xa3/xd1/xf2 <CJK> +<U7636> /x8e/xa3/xd1/xf3 <CJK> +<U763B> /x8e/xa3/xd1/xf4 <CJK> +<U3FC5> /x8e/xa3/xd1/xf5 <CJK> +<U76A1> /x8e/xa3/xd1/xf6 <CJK> +<U4062> /x8e/xa3/xd1/xf7 <CJK> +<U4063> /x8e/xa3/xd1/xf8 <CJK> +<U7798> /x8e/xa3/xd1/xf9 <CJK> +<U4067> /x8e/xa3/xd1/xfa <CJK> +<U7796> /x8e/xa3/xd1/xfb <CJK> +<U4066> /x8e/xa3/xd1/xfc <CJK> +<U40D9> /x8e/xa3/xd1/xfd <CJK> +<U40DB> /x8e/xa3/xd1/xfe <CJK> +<U78D6> /x8e/xa3/xd2/xa1 <CJK> +<U78EB> /x8e/xa3/xd2/xa2 <CJK> +<U40D8> /x8e/xa3/xd2/xa3 <CJK> +<U78DC> /x8e/xa3/xd2/xa4 <CJK> +<U411B> /x8e/xa3/xd2/xa5 <CJK> +<U79A5> /x8e/xa3/xd2/xa6 <CJK> +<U79A9> /x8e/xa3/xd2/xa7 <CJK> +<U9834> /x8e/xa3/xd2/xa8 <CJK> +<U7A53> /x8e/xa3/xd2/xa9 <CJK> +<U7A45> /x8e/xa3/xd2/xaa <CJK> +<U4179> /x8e/xa3/xd2/xab <CJK> +<U7A4F> /x8e/xa3/xd2/xac <CJK> +<U417D> /x8e/xa3/xd2/xad <CJK> +<U7ABD> /x8e/xa3/xd2/xae <CJK> +<U7ABB> /x8e/xa3/xd2/xaf <CJK> +<U7AF1> /x8e/xa3/xd2/xb0 <CJK> +<U422C> /x8e/xa3/xd2/xb1 <CJK> +<U4237> /x8e/xa3/xd2/xb2 <CJK> +<U7BEC> /x8e/xa3/xd2/xb3 <CJK> +<U7BED> /x8e/xa3/xd2/xb4 <CJK> +<U4230> /x8e/xa3/xd2/xb5 <CJK> +<U429A> /x8e/xa3/xd2/xb6 <CJK> +<U7CD3> /x8e/xa3/xd2/xb7 <CJK> +<U4A00> /x8e/xa3/xd2/xb8 <CJK> +<U7CE1> /x8e/xa3/xd2/xb9 <CJK> +<U4305> /x8e/xa3/xd2/xba <CJK> +<U7E19> /x8e/xa3/xd2/xbb <CJK> +<U4307> /x8e/xa3/xd2/xbc <CJK> +<U4309> /x8e/xa3/xd2/xbd <CJK> +<U430A> /x8e/xa3/xd2/xbe <CJK> +<U7E27> /x8e/xa3/xd2/xbf <CJK> +<U7E26> /x8e/xa3/xd2/xc0 <CJK> +<U4379> /x8e/xa3/xd2/xc1 <CJK> +<U43C2> /x8e/xa3/xd2/xc2 <CJK> +<U806E> /x8e/xa3/xd2/xc3 <CJK> +<U81AF> /x8e/xa3/xd2/xc4 <CJK> +<U4438> /x8e/xa3/xd2/xc5 <CJK> +<U4437> /x8e/xa3/xd2/xc6 <CJK> +<U81AD> /x8e/xa3/xd2/xc7 <CJK> +<U4421> /x8e/xa3/xd2/xc8 <CJK> +<U81AA> /x8e/xa3/xd2/xc9 <CJK> +<U8218> /x8e/xa3/xd2/xca <CJK> +<U445E> /x8e/xa3/xd2/xcb <CJK> +<U453D> /x8e/xa3/xd2/xcc <CJK> +<U4537> /x8e/xa3/xd2/xcd <CJK> +<U4540> /x8e/xa3/xd2/xce <CJK> +<U856F> /x8e/xa3/xd2/xcf <CJK> +<U854C> /x8e/xa3/xd2/xd0 <CJK> +<U451D> /x8e/xa3/xd2/xd1 <CJK> +<U8542> /x8e/xa3/xd2/xd2 <CJK> +<U4533> /x8e/xa3/xd2/xd3 <CJK> +<U855C> /x8e/xa3/xd2/xd4 <CJK> +<U8570> /x8e/xa3/xd2/xd5 <CJK> +<U855F> /x8e/xa3/xd2/xd6 <CJK> +<U4535> /x8e/xa3/xd2/xd7 <CJK> +<U855A> /x8e/xa3/xd2/xd8 <CJK> +<U854B> /x8e/xa3/xd2/xd9 <CJK> +<U853F> /x8e/xa3/xd2/xda <CJK> +<U878A> /x8e/xa3/xd2/xdb <CJK> +<U45D8> /x8e/xa3/xd2/xdc <CJK> +<U878B> /x8e/xa3/xd2/xdd <CJK> +<U87A1> /x8e/xa3/xd2/xde <CJK> +<U878E> /x8e/xa3/xd2/xdf <CJK> +<U45DC> /x8e/xa3/xd2/xe0 <CJK> +<U45DE> /x8e/xa3/xd2/xe1 <CJK> +<U8799> /x8e/xa3/xd2/xe2 <CJK> +<U885E> /x8e/xa3/xd2/xe3 <CJK> +<U885F> /x8e/xa3/xd2/xe4 <CJK> +<U8924> /x8e/xa3/xd2/xe5 <CJK> +<U89A7> /x8e/xa3/xd2/xe6 <CJK> +<U8AEA> /x8e/xa3/xd2/xe7 <CJK> +<U8AFD> /x8e/xa3/xd2/xe8 <CJK> +<U8AF9> /x8e/xa3/xd2/xe9 <CJK> +<U8AE3> /x8e/xa3/xd2/xea <CJK> +<U8AE5> /x8e/xa3/xd2/xeb <CJK> +<U46FA> /x8e/xa3/xd2/xec <CJK> +<U46FB> /x8e/xa3/xd2/xed <CJK> +<U8AEC> /x8e/xa3/xd2/xee <CJK> +<U473D> /x8e/xa3/xd2/xef <CJK> +<U473B> /x8e/xa3/xd2/xf0 <CJK> +<U473F> /x8e/xa3/xd2/xf1 <CJK> +<U475F> /x8e/xa3/xd2/xf2 <CJK> +<U8CF2> /x8e/xa3/xd2/xf3 <CJK> +<U477F> /x8e/xa3/xd2/xf4 <CJK> +<U8CEF> /x8e/xa3/xd2/xf5 <CJK> +<U4784> /x8e/xa3/xd2/xf6 <CJK> +<U8DA6> /x8e/xa3/xd2/xf7 <CJK> +<U47BC> /x8e/xa3/xd2/xf8 <CJK> +<U4814> /x8e/xa3/xd2/xf9 <CJK> +<U480F> /x8e/xa3/xd2/xfa <CJK> +<U8E3B> /x8e/xa3/xd2/xfb <CJK> +<U8E43> /x8e/xa3/xd2/xfc <CJK> +<U480E> /x8e/xa3/xd2/xfd <CJK> +<U8E32> /x8e/xa3/xd2/xfe <CJK> +<U8F31> /x8e/xa3/xd3/xa1 <CJK> +<U8F30> /x8e/xa3/xd3/xa2 <CJK> +<U4860> /x8e/xa3/xd3/xa3 <CJK> +<U8F2D> /x8e/xa3/xd3/xa4 <CJK> +<U8F3C> /x8e/xa3/xd3/xa5 <CJK> +<U8FA7> /x8e/xa3/xd3/xa6 <CJK> +<U8FA5> /x8e/xa3/xd3/xa7 <CJK> +<U48AB> /x8e/xa3/xd3/xa8 <CJK> +<U48AC> /x8e/xa3/xd3/xa9 <CJK> +<U48AA> /x8e/xa3/xd3/xaa <CJK> +<U9137> /x8e/xa3/xd3/xab <CJK> +<U9195> /x8e/xa3/xd3/xac <CJK> +<U918E> /x8e/xa3/xd3/xad <CJK> +<U4904> /x8e/xa3/xd3/xae <CJK> +<U9196> /x8e/xa3/xd3/xaf <CJK> +<U4908> /x8e/xa3/xd3/xb0 <CJK> +<U9345> /x8e/xa3/xd3/xb1 <CJK> +<U930A> /x8e/xa3/xd3/xb2 <CJK> +<U4933> /x8e/xa3/xd3/xb3 <CJK> +<U4934> /x8e/xa3/xd3/xb4 <CJK> +<U92FD> /x8e/xa3/xd3/xb5 <CJK> +<U9317> /x8e/xa3/xd3/xb6 <CJK> +<U931C> /x8e/xa3/xd3/xb7 <CJK> +<U9307> /x8e/xa3/xd3/xb8 <CJK> +<U9331> /x8e/xa3/xd3/xb9 <CJK> +<U9332> /x8e/xa3/xd3/xba <CJK> +<U932C> /x8e/xa3/xd3/xbb <CJK> +<U9330> /x8e/xa3/xd3/xbc <CJK> +<U9303> /x8e/xa3/xd3/xbd <CJK> +<U9305> /x8e/xa3/xd3/xbe <CJK> +<U49A2> /x8e/xa3/xd3/xbf <CJK> +<U95C2> /x8e/xa3/xd3/xc0 <CJK> +<U49A4> /x8e/xa3/xd3/xc1 <CJK> +<U95B8> /x8e/xa3/xd3/xc2 <CJK> +<U49A5> /x8e/xa3/xd3/xc3 <CJK> +<U95C1> /x8e/xa3/xd3/xc4 <CJK> +<U49A7> /x8e/xa3/xd3/xc5 <CJK> +<U49A6> /x8e/xa3/xd3/xc6 <CJK> +<U49E7> /x8e/xa3/xd3/xc7 <CJK> +<U96AB> /x8e/xa3/xd3/xc8 <CJK> +<U96B7> /x8e/xa3/xd3/xc9 <CJK> +<U49FF> /x8e/xa3/xd3/xca <CJK> +<U49FE> /x8e/xa3/xd3/xcb <CJK> +<U9715> /x8e/xa3/xd3/xcc <CJK> +<U9714> /x8e/xa3/xd3/xcd <CJK> +<U4A1D> /x8e/xa3/xd3/xce <CJK> +<U4A1C> /x8e/xa3/xd3/xcf <CJK> +<U970C> /x8e/xa3/xd3/xd0 <CJK> +<U9717> /x8e/xa3/xd3/xd1 <CJK> +<U4A67> /x8e/xa3/xd3/xd2 <CJK> +<U9793> /x8e/xa3/xd3/xd3 <CJK> +<U4A94> /x8e/xa3/xd3/xd4 <CJK> +<U97D2> /x8e/xa3/xd3/xd5 <CJK> +<U4AC5> /x8e/xa3/xd3/xd6 <CJK> +<U4AC8> /x8e/xa3/xd3/xd7 <CJK> +<U9836> /x8e/xa3/xd3/xd8 <CJK> +<U9831> /x8e/xa3/xd3/xd9 <CJK> +<U9833> /x8e/xa3/xd3/xda <CJK> +<U983C> /x8e/xa3/xd3/xdb <CJK> +<U982E> /x8e/xa3/xd3/xdc <CJK> +<U983A> /x8e/xa3/xd3/xdd <CJK> +<U4AC9> /x8e/xa3/xd3/xde <CJK> +<U983D> /x8e/xa3/xd3/xdf <CJK> +<U4AC7> /x8e/xa3/xd3/xe0 <CJK> +<U98B5> /x8e/xa3/xd3/xe1 <CJK> +<U9922> /x8e/xa3/xd3/xe2 <CJK> +<U9923> /x8e/xa3/xd3/xe3 <CJK> +<U9920> /x8e/xa3/xd3/xe4 <CJK> +<U991C> /x8e/xa3/xd3/xe5 <CJK> +<U991D> /x8e/xa3/xd3/xe6 <CJK> +<U4B6C> /x8e/xa3/xd3/xe7 <CJK> +<U99A0> /x8e/xa3/xd3/xe8 <CJK> +<U4B8A> /x8e/xa3/xd3/xe9 <CJK> +<U99EF> /x8e/xa3/xd3/xea <CJK> +<U99E8> /x8e/xa3/xd3/xeb <CJK> +<U99EB> /x8e/xa3/xd3/xec <CJK> +<U4B88> /x8e/xa3/xd3/xed <CJK> +<U4B87> /x8e/xa3/xd3/xee <CJK> +<U4B86> /x8e/xa3/xd3/xef <CJK> +<U99E1> /x8e/xa3/xd3/xf0 <CJK> +<U99E6> /x8e/xa3/xd3/xf1 <CJK> +<U4BCF> /x8e/xa3/xd3/xf2 <CJK> +<U4BD0> /x8e/xa3/xd3/xf3 <CJK> +<U9AF8> /x8e/xa3/xd3/xf4 <CJK> +<U9AF5> /x8e/xa3/xd3/xf5 <CJK> +<U4C1C> /x8e/xa3/xd3/xf6 <CJK> +<U4C23> /x8e/xa3/xd3/xf7 <CJK> +<U9B83> /x8e/xa3/xd3/xf8 <CJK> +<U9B94> /x8e/xa3/xd3/xf9 <CJK> +<U9B84> /x8e/xa3/xd3/xfa <CJK> +<U4C49> /x8e/xa3/xd3/xfb <CJK> +<U9B8B> /x8e/xa3/xd3/xfc <CJK> +<U9B8F> /x8e/xa3/xd3/xfd <CJK> +<U4C43> /x8e/xa3/xd3/xfe <CJK> +<U9B8C> /x8e/xa3/xd4/xa1 <CJK> +<U4C48> /x8e/xa3/xd4/xa2 <CJK> +<U9B89> /x8e/xa3/xd4/xa3 <CJK> +<U4C47> /x8e/xa3/xd4/xa4 <CJK> +<U9B8E> /x8e/xa3/xd4/xa5 <CJK> +<U4C46> /x8e/xa3/xd4/xa6 <CJK> +<U4C3F> /x8e/xa3/xd4/xa7 <CJK> +<U4C44> /x8e/xa3/xd4/xa8 <CJK> +<U9D24> /x8e/xa3/xd4/xa9 <CJK> +<U9D0F> /x8e/xa3/xd4/xaa <CJK> +<U4CBE> /x8e/xa3/xd4/xab <CJK> +<U9D13> /x8e/xa3/xd4/xac <CJK> +<U9D0A> /x8e/xa3/xd4/xad <CJK> +<U4CC2> /x8e/xa3/xd4/xae <CJK> +<U4CBA> /x8e/xa3/xd4/xaf <CJK> +<U4CBC> /x8e/xa3/xd4/xb0 <CJK> +<U4CC6> /x8e/xa3/xd4/xb1 <CJK> +<U9D2A> /x8e/xa3/xd4/xb2 <CJK> +<U9D1A> /x8e/xa3/xd4/xb3 <CJK> +<U4CC8> /x8e/xa3/xd4/xb4 <CJK> +<U9D27> /x8e/xa3/xd4/xb5 <CJK> +<U9D16> /x8e/xa3/xd4/xb6 <CJK> +<U9D21> /x8e/xa3/xd4/xb7 <CJK> +<U4D23> /x8e/xa3/xd4/xb8 <CJK> +<U9E85> /x8e/xa3/xd4/xb9 <CJK> +<U9EAC> /x8e/xa3/xd4/xba <CJK> +<U9EC6> /x8e/xa3/xd4/xbb <CJK> +<U9EC5> /x8e/xa3/xd4/xbc <CJK> +<U9ED7> /x8e/xa3/xd4/xbd <CJK> +<U9F53> /x8e/xa3/xd4/xbe <CJK> +<U349D> /x8e/xa3/xd4/xbf <CJK> +<U5128> /x8e/xa3/xd4/xc0 <CJK> +<U5127> /x8e/xa3/xd4/xc1 <CJK> +<U51DF> /x8e/xa3/xd4/xc2 <CJK> +<U3524> /x8e/xa3/xd4/xc3 <CJK> +<U5335> /x8e/xa3/xd4/xc4 <CJK> +<U53B3> /x8e/xa3/xd4/xc5 <CJK> +<U3607> /x8e/xa3/xd4/xc6 <CJK> +<U568A> /x8e/xa3/xd4/xc7 <CJK> +<U567D> /x8e/xa3/xd4/xc8 <CJK> +<U5689> /x8e/xa3/xd4/xc9 <CJK> +<U3679> /x8e/xa3/xd4/xca <CJK> +<U58CD> /x8e/xa3/xd4/xcb <CJK> +<U58D0> /x8e/xa3/xd4/xcc <CJK> +<U3678> /x8e/xa3/xd4/xcd <CJK> +<U5B2B> /x8e/xa3/xd4/xce <CJK> +<U5B33> /x8e/xa3/xd4/xcf <CJK> +<U5B29> /x8e/xa3/xd4/xd0 <CJK> +<U5B35> /x8e/xa3/xd4/xd1 <CJK> +<U5B31> /x8e/xa3/xd4/xd2 <CJK> +<U5B37> /x8e/xa3/xd4/xd3 <CJK> +<U5C36> /x8e/xa3/xd4/xd4 <CJK> +<U5DBE> /x8e/xa3/xd4/xd5 <CJK> +<U3819> /x8e/xa3/xd4/xd6 <CJK> +<U5DB9> /x8e/xa3/xd4/xd7 <CJK> +<U381C> /x8e/xa3/xd4/xd8 <CJK> +<U5DBB> /x8e/xa3/xd4/xd9 <CJK> +<U3818> /x8e/xa3/xd4/xda <CJK> +<U61E2> /x8e/xa3/xd4/xdb <CJK> +<U61DB> /x8e/xa3/xd4/xdc <CJK> +<U61DD> /x8e/xa3/xd4/xdd <CJK> +<U61DC> /x8e/xa3/xd4/xde <CJK> +<U61DA> /x8e/xa3/xd4/xdf <CJK> +<U61D9> /x8e/xa3/xd4/xe1 <CJK> +<U39BD> /x8e/xa3/xd4/xe2 <CJK> +<U3A5D> /x8e/xa3/xd4/xe3 <CJK> +<U64DF> /x8e/xa3/xd4/xe4 <CJK> +<U3A5A> /x8e/xa3/xd4/xe5 <CJK> +<U3A5E> /x8e/xa3/xd4/xe6 <CJK> +<U64E1> /x8e/xa3/xd4/xe7 <CJK> +<U3A5C> /x8e/xa3/xd4/xe8 <CJK> +<U64EE> /x8e/xa3/xd4/xe9 <CJK> +<U3A5B> /x8e/xa3/xd4/xea <CJK> +<U65B5> /x8e/xa3/xd4/xeb <CJK> +<U66D4> /x8e/xa3/xd4/xec <CJK> +<U66D5> /x8e/xa3/xd4/xed <CJK> +<U3B21> /x8e/xa3/xd4/xee <CJK> +<U66D0> /x8e/xa3/xd4/xef <CJK> +<U66D1> /x8e/xa3/xd4/xf0 <CJK> +<U66CE> /x8e/xa3/xd4/xf1 <CJK> +<U66D7> /x8e/xa3/xd4/xf2 <CJK> +<U3B20> /x8e/xa3/xd4/xf3 <CJK> +<U3B32> /x8e/xa3/xd4/xf4 <CJK> +<U6A7D> /x8e/xa3/xd4/xf5 <CJK> +<U6A8A> /x8e/xa3/xd4/xf6 <CJK> +<U3BF2> /x8e/xa3/xd4/xf7 <CJK> +<U6AA7> /x8e/xa3/xd4/xf8 <CJK> +<U3BF5> /x8e/xa3/xd4/xf9 <CJK> +<U6A99> /x8e/xa3/xd4/xfa <CJK> +<U6A82> /x8e/xa3/xd4/xfb <CJK> +<U6A88> /x8e/xa3/xd4/xfc <CJK> +<U3BEE> /x8e/xa3/xd4/xfd <CJK> +<U3BEC> /x8e/xa3/xd4/xfe <CJK> +<U6A86> /x8e/xa3/xd5/xa1 <CJK> +<U3BEA> /x8e/xa3/xd5/xa2 <CJK> +<U6A98> /x8e/xa3/xd5/xa3 <CJK> +<U6A9D> /x8e/xa3/xd5/xa4 <CJK> +<U3BED> /x8e/xa3/xd5/xa5 <CJK> +<U3BF3> /x8e/xa3/xd5/xa6 <CJK> +<U6A8F> /x8e/xa3/xd5/xa7 <CJK> +<U3BF6> /x8e/xa3/xd5/xa8 <CJK> +<U6AAA> /x8e/xa3/xd5/xa9 <CJK> +<U3C48> /x8e/xa3/xd5/xaa <CJK> +<U6B5D> /x8e/xa3/xd5/xab <CJK> +<U3C49> /x8e/xa3/xd5/xac <CJK> +<U6C0A> /x8e/xa3/xd5/xad <CJK> +<U3D75> /x8e/xa3/xd5/xae <CJK> +<U6FD7> /x8e/xa3/xd5/xaf <CJK> +<U6FD6> /x8e/xa3/xd5/xb0 <CJK> +<U6FE5> /x8e/xa3/xd5/xb1 <CJK> +<U3D6F> /x8e/xa3/xd5/xb2 <CJK> +<U3D7B> /x8e/xa3/xd5/xb3 <CJK> +<U3D73> /x8e/xa3/xd5/xb4 <CJK> +<U6FD9> /x8e/xa3/xd5/xb5 <CJK> +<U6FDA> /x8e/xa3/xd5/xb6 <CJK> +<U6FEA> /x8e/xa3/xd5/xb7 <CJK> +<U3D70> /x8e/xa3/xd5/xb8 <CJK> +<U6FF6> /x8e/xa3/xd5/xb9 <CJK> +<U00024039> /x8e/xa3/xd5/xba <CJK> +<U3D78> /x8e/xa3/xd5/xbb <CJK> +<U71E3> /x8e/xa3/xd5/xbc <CJK> +<U3DFE> /x8e/xa3/xd5/xbd <CJK> +<U71E9> /x8e/xa3/xd5/xbe <CJK> +<U3E00> /x8e/xa3/xd5/xbf <CJK> +<U71EB> /x8e/xa3/xd5/xc0 <CJK> +<U71EF> /x8e/xa3/xd5/xc1 <CJK> +<U71F3> /x8e/xa3/xd5/xc2 <CJK> +<U71EA> /x8e/xa3/xd5/xc3 <CJK> +<U3E01> /x8e/xa3/xd5/xc4 <CJK> +<U3E55> /x8e/xa3/xd5/xc6 <CJK> +<U3E56> /x8e/xa3/xd5/xc7 <CJK> +<U3E9D> /x8e/xa3/xd5/xc8 <CJK> +<U7371> /x8e/xa3/xd5/xc9 <CJK> +<U3EF9> /x8e/xa3/xd5/xca <CJK> +<U74AE> /x8e/xa3/xd5/xcb <CJK> +<U3EFF> /x8e/xa3/xd5/xcc <CJK> +<U74B3> /x8e/xa3/xd5/xcd <CJK> +<U3EFD> /x8e/xa3/xd5/xce <CJK> +<U74AC> /x8e/xa3/xd5/xcf <CJK> +<U3F43> /x8e/xa3/xd5/xd0 <CJK> +<U3F41> /x8e/xa3/xd5/xd1 <CJK> +<U7583> /x8e/xa3/xd5/xd2 <CJK> +<U7645> /x8e/xa3/xd5/xd3 <CJK> +<U764E> /x8e/xa3/xd5/xd4 <CJK> +<U7644> /x8e/xa3/xd5/xd5 <CJK> +<U76A3> /x8e/xa3/xd5/xd6 <CJK> +<U76A5> /x8e/xa3/xd5/xd7 <CJK> +<U77A6> /x8e/xa3/xd5/xd8 <CJK> +<U77A4> /x8e/xa3/xd5/xd9 <CJK> +<U406F> /x8e/xa3/xd5/xda <CJK> +<U77A9> /x8e/xa3/xd5/xdb <CJK> +<U77AF> /x8e/xa3/xd5/xdc <CJK> +<U408A> /x8e/xa3/xd5/xdd <CJK> +<U40E5> /x8e/xa3/xd5/xde <CJK> +<U40E6> /x8e/xa3/xd5/xdf <CJK> +<U78F0> /x8e/xa3/xd5/xe0 <CJK> +<U78F8> /x8e/xa3/xd5/xe1 <CJK> +<U78F1> /x8e/xa3/xd5/xe2 <CJK> +<U417F> /x8e/xa3/xd5/xe3 <CJK> +<U7A49> /x8e/xa3/xd5/xe4 <CJK> +<U41B5> /x8e/xa3/xd5/xe5 <CJK> +<U41B6> /x8e/xa3/xd5/xe6 <CJK> +<U41BB> /x8e/xa3/xd5/xe7 <CJK> +<U7AC2> /x8e/xa3/xd5/xe8 <CJK> +<U7AF2> /x8e/xa3/xd5/xe9 <CJK> +<U7AF3> /x8e/xa3/xd5/xea <CJK> +<U7BFA> /x8e/xa3/xd5/xeb <CJK> +<U4240> /x8e/xa3/xd5/xec <CJK> +<U7BF6> /x8e/xa3/xd5/xed <CJK> +<U7BFC> /x8e/xa3/xd5/xee <CJK> +<U7C18> /x8e/xa3/xd5/xef <CJK> +<U7C08> /x8e/xa3/xd5/xf0 <CJK> +<U7C12> /x8e/xa3/xd5/xf1 <CJK> +<U429D> /x8e/xa3/xd5/xf2 <CJK> +<U429C> /x8e/xa3/xd5/xf3 <CJK> +<U7CDB> /x8e/xa3/xd5/xf4 <CJK> +<U7CDA> /x8e/xa3/xd5/xf5 <CJK> +<U430F> /x8e/xa3/xd5/xf6 <CJK> +<U4311> /x8e/xa3/xd5/xf7 <CJK> +<U430D> /x8e/xa3/xd5/xf8 <CJK> +<U7E2C> /x8e/xa3/xd5/xf9 <CJK> +<U7E4D> /x8e/xa3/xd5/xfa <CJK> +<U4314> /x8e/xa3/xd5/xfb <CJK> +<U4313> /x8e/xa3/xd5/xfc <CJK> +<U7F46> /x8e/xa3/xd5/xfd <CJK> +<U7FF6> /x8e/xa3/xd5/xfe <CJK> +<U802B> /x8e/xa3/xd6/xa1 <CJK> +<U8074> /x8e/xa3/xd6/xa2 <CJK> +<U81B8> /x8e/xa3/xd6/xa3 <CJK> +<U81C8> /x8e/xa3/xd6/xa4 <CJK> +<U4482> /x8e/xa3/xd6/xa5 <CJK> +<U4483> /x8e/xa3/xd6/xa6 <CJK> +<U454D> /x8e/xa3/xd6/xa7 <CJK> +<U8592> /x8e/xa3/xd6/xa8 <CJK> +<U8593> /x8e/xa3/xd6/xa9 <CJK> +<U454F> /x8e/xa3/xd6/xaa <CJK> +<U857F> /x8e/xa3/xd6/xab <CJK> +<U85AB> /x8e/xa3/xd6/xac <CJK> +<U8597> /x8e/xa3/xd6/xad <CJK> +<U454C> /x8e/xa3/xd6/xae <CJK> +<U4551> /x8e/xa3/xd6/xaf <CJK> +<U85AC> /x8e/xa3/xd6/xb0 <CJK> +<U45EE> /x8e/xa3/xd6/xb1 <CJK> +<U45E8> /x8e/xa3/xd6/xb2 <CJK> +<U4CCB> /x8e/xa3/xd6/xb3 <CJK> +<U87CE> /x8e/xa3/xd6/xb4 <CJK> +<U45EB> /x8e/xa3/xd6/xb5 <CJK> +<U87CD> /x8e/xa3/xd6/xb6 <CJK> +<U45E2> /x8e/xa3/xd6/xb7 <CJK> +<U45E6> /x8e/xa3/xd6/xb8 <CJK> +<U87C1> /x8e/xa3/xd6/xb9 <CJK> +<U87B1> /x8e/xa3/xd6/xba <CJK> +<U87C7> /x8e/xa3/xd6/xbb <CJK> +<U45EC> /x8e/xa3/xd6/xbc <CJK> +<U8940> /x8e/xa3/xd6/xbd <CJK> +<U4659> /x8e/xa3/xd6/xbe <CJK> +<U893F> /x8e/xa3/xd6/xbf <CJK> +<U8939> /x8e/xa3/xd6/xc0 <CJK> +<U465D> /x8e/xa3/xd6/xc1 <CJK> +<U8943> /x8e/xa3/xd6/xc2 <CJK> +<U4657> /x8e/xa3/xd6/xc3 <CJK> +<U465B> /x8e/xa3/xd6/xc4 <CJK> +<U4656> /x8e/xa3/xd6/xc5 <CJK> +<U89AB> /x8e/xa3/xd6/xc6 <CJK> +<U46FE> /x8e/xa3/xd6/xc7 <CJK> +<U8B1F> /x8e/xa3/xd6/xc8 <CJK> +<U8B09> /x8e/xa3/xd6/xc9 <CJK> +<U8B0C> /x8e/xa3/xd6/xca <CJK> +<U4700> /x8e/xa3/xd6/xcb <CJK> +<U4701> /x8e/xa3/xd6/xcc <CJK> +<U8C40> /x8e/xa3/xd6/xcd <CJK> +<U4742> /x8e/xa3/xd6/xce <CJK> +<U8C96> /x8e/xa3/xd6/xcf <CJK> +<U4760> /x8e/xa3/xd6/xd0 <CJK> +<U8CF6> /x8e/xa3/xd6/xd1 <CJK> +<U8CF7> /x8e/xa3/xd6/xd2 <CJK> +<U481D> /x8e/xa3/xd6/xd3 <CJK> +<U8E46> /x8e/xa3/xd6/xd4 <CJK> +<U8E4F> /x8e/xa3/xd6/xd5 <CJK> +<U483E> /x8e/xa3/xd6/xd6 <CJK> +<U4869> /x8e/xa3/xd6/xd7 <CJK> +<U4865> /x8e/xa3/xd6/xd8 <CJK> +<U8F3D> /x8e/xa3/xd6/xd9 <CJK> +<U8F41> /x8e/xa3/xd6/xda <CJK> +<U9366> /x8e/xa3/xd6/xdb <CJK> +<U9378> /x8e/xa3/xd6/xdc <CJK> +<U935D> /x8e/xa3/xd6/xdd <CJK> +<U9369> /x8e/xa3/xd6/xde <CJK> +<U9374> /x8e/xa3/xd6/xdf <CJK> +<U937D> /x8e/xa3/xd6/xe0 <CJK> +<U936E> /x8e/xa3/xd6/xe1 <CJK> +<U9372> /x8e/xa3/xd6/xe2 <CJK> +<U9373> /x8e/xa3/xd6/xe3 <CJK> +<U9362> /x8e/xa3/xd6/xe4 <CJK> +<U9348> /x8e/xa3/xd6/xe5 <CJK> +<U9353> /x8e/xa3/xd6/xe6 <CJK> +<U935F> /x8e/xa3/xd6/xe7 <CJK> +<U9368> /x8e/xa3/xd6/xe8 <CJK> +<U4938> /x8e/xa3/xd6/xe9 <CJK> +<U937F> /x8e/xa3/xd6/xea <CJK> +<U936B> /x8e/xa3/xd6/xeb <CJK> +<U49AE> /x8e/xa3/xd6/xec <CJK> +<U95C4> /x8e/xa3/xd6/xed <CJK> +<U49AD> /x8e/xa3/xd6/xee <CJK> +<U96AF> /x8e/xa3/xd6/xef <CJK> +<U96AD> /x8e/xa3/xd6/xf0 <CJK> +<U96B2> /x8e/xa3/xd6/xf1 <CJK> +<U4A02> /x8e/xa3/xd6/xf2 <CJK> +<U4A1F> /x8e/xa3/xd6/xf3 <CJK> +<U971A> /x8e/xa3/xd6/xf4 <CJK> +<U971B> /x8e/xa3/xd6/xf5 <CJK> +<U4A22> /x8e/xa3/xd6/xf6 <CJK> +<U4A20> /x8e/xa3/xd6/xf7 <CJK> +<U4A6C> /x8e/xa3/xd6/xf9 <CJK> +<U979B> /x8e/xa3/xd6/xfa <CJK> +<U979F> /x8e/xa3/xd6/xfb <CJK> +<U4A68> /x8e/xa3/xd6/xfc <CJK> +<U4A6D> /x8e/xa3/xd6/xfd <CJK> +<U4A6E> /x8e/xa3/xd6/xfe <CJK> +<U4AA0> /x8e/xa3/xd7/xa1 <CJK> +<U4ACE> /x8e/xa3/xd7/xa2 <CJK> +<U4AD0> /x8e/xa3/xd7/xa3 <CJK> +<U4AD1> /x8e/xa3/xd7/xa4 <CJK> +<U4ACB> /x8e/xa3/xd7/xa5 <CJK> +<U9840> /x8e/xa3/xd7/xa6 <CJK> +<U4AD2> /x8e/xa3/xd7/xa7 <CJK> +<U9847> /x8e/xa3/xd7/xa8 <CJK> +<U4AD3> /x8e/xa3/xd7/xa9 <CJK> +<U98B7> /x8e/xa3/xd7/xaa <CJK> +<U4B20> /x8e/xa3/xd7/xab <CJK> +<U4B4E> /x8e/xa3/xd7/xac <CJK> +<U4B4B> /x8e/xa3/xd7/xad <CJK> +<U4B72> /x8e/xa3/xd7/xae <CJK> +<U4B70> /x8e/xa3/xd7/xaf <CJK> +<U99A2> /x8e/xa3/xd7/xb0 <CJK> +<U4B92> /x8e/xa3/xd7/xb1 <CJK> +<U4B8F> /x8e/xa3/xd7/xb2 <CJK> +<U9A00> /x8e/xa3/xd7/xb3 <CJK> +<U99F3> /x8e/xa3/xd7/xb4 <CJK> +<U4B90> /x8e/xa3/xd7/xb5 <CJK> +<U00029937> /x8e/xa3/xd7/xb6 <CJK> +<U99F5> /x8e/xa3/xd7/xb7 <CJK> +<U4BD9> /x8e/xa3/xd7/xb8 <CJK> +<U4BD5> /x8e/xa3/xd7/xb9 <CJK> +<U9ABD> /x8e/xa3/xd7/xba <CJK> +<U9B00> /x8e/xa3/xd7/xbb <CJK> +<U9B02> /x8e/xa3/xd7/xbc <CJK> +<U4BFA> /x8e/xa3/xd7/xbd <CJK> +<U9B34> /x8e/xa3/xd7/xbe <CJK> +<U9B49> /x8e/xa3/xd7/xbf <CJK> +<U9B9F> /x8e/xa3/xd7/xc0 <CJK> +<U4C4B> /x8e/xa3/xd7/xc1 <CJK> +<U9BA3> /x8e/xa3/xd7/xc2 <CJK> +<U9BCD> /x8e/xa3/xd7/xc3 <CJK> +<U9B99> /x8e/xa3/xd7/xc4 <CJK> +<U9B9D> /x8e/xa3/xd7/xc5 <CJK> +<U4CD0> /x8e/xa3/xd7/xc6 <CJK> +<U4CCE> /x8e/xa3/xd7/xc7 <CJK> +<U9D39> /x8e/xa3/xd7/xc8 <CJK> +<U4CCF> /x8e/xa3/xd7/xc9 <CJK> +<U9D44> /x8e/xa3/xd7/xca <CJK> +<U4CC4> /x8e/xa3/xd7/xcb <CJK> +<U4CCC> /x8e/xa3/xd7/xcc <CJK> +<U9D35> /x8e/xa3/xd7/xcd <CJK> +<U4CD2> /x8e/xa3/xd7/xce <CJK> +<U4D35> /x8e/xa3/xd7/xcf <CJK> +<U9EAF> /x8e/xa3/xd7/xd0 <CJK> +<U3E03> /x8e/xa3/xd7/xd1 <CJK> +<U512F> /x8e/xa3/xd7/xd2 <CJK> +<U349E> /x8e/xa3/xd7/xd3 <CJK> +<U34AF> /x8e/xa3/xd7/xd4 <CJK> +<U9F8E> /x8e/xa3/xd7/xd5 <CJK> +<U360C> /x8e/xa3/xd7/xd6 <CJK> +<U569F> /x8e/xa3/xd7/xd7 <CJK> +<U569B> /x8e/xa3/xd7/xd8 <CJK> +<U569E> /x8e/xa3/xd7/xd9 <CJK> +<U5696> /x8e/xa3/xd7/xda <CJK> +<U5694> /x8e/xa3/xd7/xdb <CJK> +<U56A0> /x8e/xa3/xd7/xdc <CJK> +<U367C> /x8e/xa3/xd7/xdd <CJK> +<U5B3B> /x8e/xa3/xd7/xde <CJK> +<U3730> /x8e/xa3/xd7/xdf <CJK> +<U3731> /x8e/xa3/xd7/xe0 <CJK> +<U5B3A> /x8e/xa3/xd7/xe1 <CJK> +<U5DC1> /x8e/xa3/xd7/xe2 <CJK> +<U5F4D> /x8e/xa3/xd7/xe3 <CJK> +<U5F5D> /x8e/xa3/xd7/xe4 <CJK> +<U61F3> /x8e/xa3/xd7/xe5 <CJK> +<U39A1> /x8e/xa3/xd7/xe6 <CJK> +<U399E> /x8e/xa3/xd7/xe7 <CJK> +<U3A68> /x8e/xa3/xd7/xe8 <CJK> +<U3A61> /x8e/xa3/xd7/xe9 <CJK> +<U64F6> /x8e/xa3/xd7/xea <CJK> +<U64E5> /x8e/xa3/xd7/xeb <CJK> +<U64EA> /x8e/xa3/xd7/xec <CJK> +<U64E7> /x8e/xa3/xd7/xed <CJK> +<U6505> /x8e/xa3/xd7/xee <CJK> +<U3A65> /x8e/xa3/xd7/xef <CJK> +<U64F9> /x8e/xa3/xd7/xf0 <CJK> +<U3A66> /x8e/xa3/xd7/xf1 <CJK> +<U3A6A> /x8e/xa3/xd7/xf2 <CJK> +<U3AAB> /x8e/xa3/xd7/xf3 <CJK> +<U6AAB> /x8e/xa3/xd7/xf4 <CJK> +<U6AED> /x8e/xa3/xd7/xf5 <CJK> +<U6AB2> /x8e/xa3/xd7/xf6 <CJK> +<U6AB0> /x8e/xa3/xd7/xf7 <CJK> +<U6AB5> /x8e/xa3/xd7/xf8 <CJK> +<U6ABE> /x8e/xa3/xd7/xf9 <CJK> +<U6AC1> /x8e/xa3/xd7/xfa <CJK> +<U6AC8> /x8e/xa3/xd7/xfb <CJK> +<U3BF9> /x8e/xa3/xd7/xfc <CJK> +<U6AC0> /x8e/xa3/xd7/xfd <CJK> +<U6ABC> /x8e/xa3/xd7/xfe <CJK> +<U6AB1> /x8e/xa3/xd8/xa1 <CJK> +<U6AC4> /x8e/xa3/xd8/xa2 <CJK> +<U6ABF> /x8e/xa3/xd8/xa3 <CJK> +<U3C58> /x8e/xa3/xd8/xa4 <CJK> +<U3C8A> /x8e/xa3/xd8/xa5 <CJK> +<U7008> /x8e/xa3/xd8/xa6 <CJK> +<U7003> /x8e/xa3/xd8/xa7 <CJK> +<U6FFD> /x8e/xa3/xd8/xa8 <CJK> +<U7010> /x8e/xa3/xd8/xa9 <CJK> +<U7002> /x8e/xa3/xd8/xaa <CJK> +<U7013> /x8e/xa3/xd8/xab <CJK> +<U3E04> /x8e/xa3/xd8/xac <CJK> +<U71FA> /x8e/xa3/xd8/xad <CJK> +<U7200> /x8e/xa3/xd8/xae <CJK> +<U74B9> /x8e/xa3/xd8/xaf <CJK> +<U74BC> /x8e/xa3/xd8/xb0 <CJK> +<U3F02> /x8e/xa3/xd8/xb1 <CJK> +<U765B> /x8e/xa3/xd8/xb2 <CJK> +<U7651> /x8e/xa3/xd8/xb3 <CJK> +<U764F> /x8e/xa3/xd8/xb4 <CJK> +<U76EB> /x8e/xa3/xd8/xb5 <CJK> +<U77B8> /x8e/xa3/xd8/xb6 <CJK> +<U4079> /x8e/xa3/xd8/xb7 <CJK> +<U77B9> /x8e/xa3/xd8/xb8 <CJK> +<U77C1> /x8e/xa3/xd8/xb9 <CJK> +<U77C0> /x8e/xa3/xd8/xba <CJK> +<U77BE> /x8e/xa3/xd8/xbb <CJK> +<U790B> /x8e/xa3/xd8/xbc <CJK> +<U40EB> /x8e/xa3/xd8/xbd <CJK> +<U7907> /x8e/xa3/xd8/xbe <CJK> +<U790A> /x8e/xa3/xd8/xbf <CJK> +<U7908> /x8e/xa3/xd8/xc0 <CJK> +<U40E9> /x8e/xa3/xd8/xc1 <CJK> +<U790D> /x8e/xa3/xd8/xc2 <CJK> +<U7906> /x8e/xa3/xd8/xc3 <CJK> +<U7915> /x8e/xa3/xd8/xc4 <CJK> +<U79AF> /x8e/xa3/xd8/xc5 <CJK> +<U4120> /x8e/xa3/xd8/xc6 <CJK> +<U4121> /x8e/xa3/xd8/xc7 <CJK> +<U4181> /x8e/xa3/xd8/xc8 <CJK> +<U7AF5> /x8e/xa3/xd8/xc9 <CJK> +<U424D> /x8e/xa3/xd8/xca <CJK> +<U4259> /x8e/xa3/xd8/xcb <CJK> +<U7C2E> /x8e/xa3/xd8/xcc <CJK> +<U4258> /x8e/xa3/xd8/xcd <CJK> +<U7C1B> /x8e/xa3/xd8/xce <CJK> +<U00025CD1> /x8e/xa3/xd8/xcf <CJK> +<U7C1A> /x8e/xa3/xd8/xd0 <CJK> +<U7C24> /x8e/xa3/xd8/xd1 <CJK> +<U42A5> /x8e/xa3/xd8/xd2 <CJK> +<U42A9> /x8e/xa3/xd8/xd3 <CJK> +<U7CE6> /x8e/xa3/xd8/xd4 <CJK> +<U7CE3> /x8e/xa3/xd8/xd5 <CJK> +<U431A> /x8e/xa3/xd8/xd6 <CJK> +<U4319> /x8e/xa3/xd8/xd7 <CJK> +<U7E5D> /x8e/xa3/xd8/xd8 <CJK> +<U7E4F> /x8e/xa3/xd8/xd9 <CJK> +<U7E66> /x8e/xa3/xd8/xda <CJK> +<U7E5B> /x8e/xa3/xd8/xdb <CJK> +<U7F47> /x8e/xa3/xd8/xdc <CJK> +<U7FB4> /x8e/xa3/xd8/xdd <CJK> +<U4396> /x8e/xa3/xd8/xde <CJK> +<U4398> /x8e/xa3/xd8/xdf <CJK> +<U4397> /x8e/xa3/xd8/xe0 <CJK> +<U7FFA> /x8e/xa3/xd8/xe1 <CJK> +<U802E> /x8e/xa3/xd8/xe2 <CJK> +<U000265DF> /x8e/xa3/xd8/xe3 <CJK> +<U43C8> /x8e/xa3/xd8/xe4 <CJK> +<U81CE> /x8e/xa3/xd8/xe5 <CJK> +<U4443> /x8e/xa3/xd8/xe6 <CJK> +<U4445> /x8e/xa3/xd8/xe7 <CJK> +<U8219> /x8e/xa3/xd8/xe8 <CJK> +<U4552> /x8e/xa3/xd8/xe9 <CJK> +<U4557> /x8e/xa3/xd8/xea <CJK> +<U85CC> /x8e/xa3/xd8/xeb <CJK> +<U85B2> /x8e/xa3/xd8/xec <CJK> +<U4555> /x8e/xa3/xd8/xed <CJK> +<U85BB> /x8e/xa3/xd8/xee <CJK> +<U85C1> /x8e/xa3/xd8/xef <CJK> +<U4556> /x8e/xa3/xd8/xf0 <CJK> +<U4558> /x8e/xa3/xd8/xf1 <CJK> +<U45F2> /x8e/xa3/xd8/xf2 <CJK> +<U87E9> /x8e/xa3/xd8/xf3 <CJK> +<U87EE> /x8e/xa3/xd8/xf4 <CJK> +<U87F0> /x8e/xa3/xd8/xf5 <CJK> +<U87D6> /x8e/xa3/xd8/xf6 <CJK> +<U880E> /x8e/xa3/xd8/xf7 <CJK> +<U87DA> /x8e/xa3/xd8/xf8 <CJK> +<U8948> /x8e/xa3/xd8/xf9 <CJK> +<U894A> /x8e/xa3/xd8/xfa <CJK> +<U894E> /x8e/xa3/xd8/xfb <CJK> +<U894D> /x8e/xa3/xd8/xfc <CJK> +<U89B1> /x8e/xa3/xd8/xfd <CJK> +<U89B0> /x8e/xa3/xd8/xfe <CJK> +<U89B3> /x8e/xa3/xd9/xa1 <CJK> +<U4707> /x8e/xa3/xd9/xa2 <CJK> +<U8B38> /x8e/xa3/xd9/xa3 <CJK> +<U8B32> /x8e/xa3/xd9/xa4 <CJK> +<U4708> /x8e/xa3/xd9/xa5 <CJK> +<U8B2D> /x8e/xa3/xd9/xa6 <CJK> +<U470A> /x8e/xa3/xd9/xa7 <CJK> +<U8B34> /x8e/xa3/xd9/xa8 <CJK> +<U431B> /x8e/xa3/xd9/xa9 <CJK> +<U8B29> /x8e/xa3/xd9/xaa <CJK> +<U8C74> /x8e/xa3/xd9/xab <CJK> +<U4761> /x8e/xa3/xd9/xac <CJK> +<U4762> /x8e/xa3/xd9/xad <CJK> +<U8D03> /x8e/xa3/xd9/xae <CJK> +<U47C2> /x8e/xa3/xd9/xaf <CJK> +<U47C6> /x8e/xa3/xd9/xb0 <CJK> +<U8DA9> /x8e/xa3/xd9/xb1 <CJK> +<U8E58> /x8e/xa3/xd9/xb2 <CJK> +<U481E> /x8e/xa3/xd9/xb3 <CJK> +<U4825> /x8e/xa3/xd9/xb4 <CJK> +<U8EBF> /x8e/xa3/xd9/xb5 <CJK> +<U8EC1> /x8e/xa3/xd9/xb6 <CJK> +<U8F4A> /x8e/xa3/xd9/xb7 <CJK> +<U8FAC> /x8e/xa3/xd9/xb8 <CJK> +<U48B0> /x8e/xa3/xd9/xb9 <CJK> +<U9089> /x8e/xa3/xd9/xba <CJK> +<U913D> /x8e/xa3/xd9/xbb <CJK> +<U913C> /x8e/xa3/xd9/xbc <CJK> +<U91A9> /x8e/xa3/xd9/xbd <CJK> +<U93A0> /x8e/xa3/xd9/xbe <CJK> +<U493D> /x8e/xa3/xd9/xbf <CJK> +<U9390> /x8e/xa3/xd9/xc0 <CJK> +<U493E> /x8e/xa3/xd9/xc1 <CJK> +<U9393> /x8e/xa3/xd9/xc2 <CJK> +<U938B> /x8e/xa3/xd9/xc3 <CJK> +<U93AD> /x8e/xa3/xd9/xc4 <CJK> +<U93BB> /x8e/xa3/xd9/xc5 <CJK> +<U93B8> /x8e/xa3/xd9/xc6 <CJK> +<U4946> /x8e/xa3/xd9/xc7 <CJK> +<U4945> /x8e/xa3/xd9/xc8 <CJK> +<U939C> /x8e/xa3/xd9/xc9 <CJK> +<U95D8> /x8e/xa3/xd9/xca <CJK> +<U95D7> /x8e/xa3/xd9/xcb <CJK> +<U4A03> /x8e/xa3/xd9/xcc <CJK> +<U4A26> /x8e/xa3/xd9/xcd <CJK> +<U4A27> /x8e/xa3/xd9/xce <CJK> +<U975D> /x8e/xa3/xd9/xcf <CJK> +<U97A9> /x8e/xa3/xd9/xd0 <CJK> +<U97DA> /x8e/xa3/xd9/xd1 <CJK> +<U4A98> /x8e/xa3/xd9/xd2 <CJK> +<U4AAD> /x8e/xa3/xd9/xd3 <CJK> +<U4AD5> /x8e/xa3/xd9/xd4 <CJK> +<U4ADA> /x8e/xa3/xd9/xd5 <CJK> +<U9854> /x8e/xa3/xd9/xd6 <CJK> +<U4AD9> /x8e/xa3/xd9/xd7 <CJK> +<U9855> /x8e/xa3/xd9/xd8 <CJK> +<U984B> /x8e/xa3/xd9/xd9 <CJK> +<U4ADD> /x8e/xa3/xd9/xda <CJK> +<U983F> /x8e/xa3/xd9/xdb <CJK> +<U98B9> /x8e/xa3/xd9/xdc <CJK> +<U4B15> /x8e/xa3/xd9/xdd <CJK> +<U4B16> /x8e/xa3/xd9/xde <CJK> +<U4B17> /x8e/xa3/xd9/xdf <CJK> +<U4B21> /x8e/xa3/xd9/xe0 <CJK> +<U9938> /x8e/xa3/xd9/xe1 <CJK> +<U9936> /x8e/xa3/xd9/xe2 <CJK> +<U9940> /x8e/xa3/xd9/xe3 <CJK> +<U4B4C> /x8e/xa3/xd9/xe4 <CJK> +<U993B> /x8e/xa3/xd9/xe5 <CJK> +<U9939> /x8e/xa3/xd9/xe6 <CJK> +<U99A4> /x8e/xa3/xd9/xe7 <CJK> +<U4B96> /x8e/xa3/xd9/xe8 <CJK> +<U4B98> /x8e/xa3/xd9/xe9 <CJK> +<U9A08> /x8e/xa3/xd9/xea <CJK> +<U9A0C> /x8e/xa3/xd9/xeb <CJK> +<U4B9B> /x8e/xa3/xd9/xec <CJK> +<U9A10> /x8e/xa3/xd9/xed <CJK> +<U4BFF> /x8e/xa3/xd9/xee <CJK> +<U9B07> /x8e/xa3/xd9/xef <CJK> +<U4C25> /x8e/xa3/xd9/xf0 <CJK> +<U9BD2> /x8e/xa3/xd9/xf1 <CJK> +<U4C4F> /x8e/xa3/xd9/xf2 <CJK> +<U9BC2> /x8e/xa3/xd9/xf3 <CJK> +<U9BBB> /x8e/xa3/xd9/xf4 <CJK> +<U9BCC> /x8e/xa3/xd9/xf5 <CJK> +<U9BCB> /x8e/xa3/xd9/xf6 <CJK> +<U4C56> /x8e/xa3/xd9/xf7 <CJK> +<U4C54> /x8e/xa3/xd9/xf8 <CJK> +<U9D4D> /x8e/xa3/xd9/xf9 <CJK> +<U9D63> /x8e/xa3/xd9/xfa <CJK> +<U9D4E> /x8e/xa3/xd9/xfb <CJK> +<U4CD8> /x8e/xa3/xd9/xfc <CJK> +<U9D50> /x8e/xa3/xd9/xfd <CJK> +<U9D55> /x8e/xa3/xd9/xfe <CJK> +<U4CD7> /x8e/xa3/xda/xa1 <CJK> +<U9D5E> /x8e/xa3/xda/xa2 <CJK> +<U4D26> /x8e/xa3/xda/xa3 <CJK> +<U9E90> /x8e/xa3/xda/xa4 <CJK> +<U9EB2> /x8e/xa3/xda/xa5 <CJK> +<U9EB1> /x8e/xa3/xda/xa6 <CJK> +<U4D38> /x8e/xa3/xda/xa7 <CJK> +<U9ECA> /x8e/xa3/xda/xa8 <CJK> +<U9F02> /x8e/xa3/xda/xa9 <CJK> +<U9F27> /x8e/xa3/xda/xaa <CJK> +<U9F26> /x8e/xa3/xda/xab <CJK> +<U4D8A> /x8e/xa3/xda/xac <CJK> +<U56AF> /x8e/xa3/xda/xad <CJK> +<U58E0> /x8e/xa3/xda/xae <CJK> +<U58DC> /x8e/xa3/xda/xaf <CJK> +<U3734> /x8e/xa3/xda/xb0 <CJK> +<U5B39> /x8e/xa3/xda/xb1 <CJK> +<U3735> /x8e/xa3/xda/xb2 <CJK> +<U5B7C> /x8e/xa3/xda/xb4 <CJK> +<U5BF3> /x8e/xa3/xda/xb5 <CJK> +<U37A1> /x8e/xa3/xda/xb7 <CJK> +<U5C6B> /x8e/xa3/xda/xb8 <CJK> +<U5DC4> /x8e/xa3/xda/xb9 <CJK> +<U650B> /x8e/xa3/xda/xba <CJK> +<U6508> /x8e/xa3/xda/xbb <CJK> +<U650A> /x8e/xa3/xda/xbc <CJK> +<U3A6C> /x8e/xa3/xda/xbd <CJK> +<U3A6D> /x8e/xa3/xda/xbe <CJK> +<U65DC> /x8e/xa3/xda/xbf <CJK> +<U3B29> /x8e/xa3/xda/xc0 <CJK> +<U3B2A> /x8e/xa3/xda/xc1 <CJK> +<U66E1> /x8e/xa3/xda/xc2 <CJK> +<U66DF> /x8e/xa3/xda/xc3 <CJK> +<U6ACE> /x8e/xa3/xda/xc4 <CJK> +<U6AD4> /x8e/xa3/xda/xc5 <CJK> +<U6AE3> /x8e/xa3/xda/xc6 <CJK> +<U6AD7> /x8e/xa3/xda/xc7 <CJK> +<U6AE2> /x8e/xa3/xda/xc8 <CJK> +<U3C00> /x8e/xa3/xda/xc9 <CJK> +<U3C08> /x8e/xa3/xda/xca <CJK> +<U3C06> /x8e/xa3/xda/xcb <CJK> +<U3C05> /x8e/xa3/xda/xcc <CJK> +<U6AD8> /x8e/xa3/xda/xcd <CJK> +<U6AD5> /x8e/xa3/xda/xce <CJK> +<U6AD2> /x8e/xa3/xda/xcf <CJK> +<U3CB1> /x8e/xa3/xda/xd0 <CJK> +<U3D88> /x8e/xa3/xda/xd1 <CJK> +<U701E> /x8e/xa3/xda/xd2 <CJK> +<U702C> /x8e/xa3/xda/xd3 <CJK> +<U7025> /x8e/xa3/xda/xd4 <CJK> +<U6FF3> /x8e/xa3/xda/xd5 <CJK> +<U7204> /x8e/xa3/xda/xd6 <CJK> +<U7208> /x8e/xa3/xda/xd7 <CJK> +<U7215> /x8e/xa3/xda/xd8 <CJK> +<U3E09> /x8e/xa3/xda/xd9 <CJK> +<U74C4> /x8e/xa3/xda/xda <CJK> +<U74C9> /x8e/xa3/xda/xdb <CJK> +<U74C7> /x8e/xa3/xda/xdc <CJK> +<U74C8> /x8e/xa3/xda/xdd <CJK> +<U76A9> /x8e/xa3/xda/xde <CJK> +<U77C6> /x8e/xa3/xda/xdf <CJK> +<U77C5> /x8e/xa3/xda/xe0 <CJK> +<U7918> /x8e/xa3/xda/xe1 <CJK> +<U791A> /x8e/xa3/xda/xe2 <CJK> +<U7920> /x8e/xa3/xda/xe3 <CJK> +<U4122> /x8e/xa3/xda/xe4 <CJK> +<U7A66> /x8e/xa3/xda/xe5 <CJK> +<U7A64> /x8e/xa3/xda/xe6 <CJK> +<U7A6A> /x8e/xa3/xda/xe7 <CJK> +<U41D5> /x8e/xa3/xda/xe8 <CJK> +<U4261> /x8e/xa3/xda/xe9 <CJK> +<U425D> /x8e/xa3/xda/xea <CJK> +<U4262> /x8e/xa3/xda/xeb <CJK> +<U424F> /x8e/xa3/xda/xec <CJK> +<U4260> /x8e/xa3/xda/xed <CJK> +<U7C35> /x8e/xa3/xda/xee <CJK> +<U7C34> /x8e/xa3/xda/xef <CJK> +<U42AA> /x8e/xa3/xda/xf0 <CJK> +<U4322> /x8e/xa3/xda/xf1 <CJK> +<U7E6C> /x8e/xa3/xda/xf2 <CJK> +<U4321> /x8e/xa3/xda/xf3 <CJK> +<U7E6E> /x8e/xa3/xda/xf4 <CJK> +<U7E71> /x8e/xa3/xda/xf5 <CJK> +<U4446> /x8e/xa3/xda/xf6 <CJK> +<U81D4> /x8e/xa3/xda/xf7 <CJK> +<U81D6> /x8e/xa3/xda/xf8 <CJK> +<U821A> /x8e/xa3/xda/xf9 <CJK> +<U8262> /x8e/xa3/xda/xfa <CJK> +<U8265> /x8e/xa3/xda/xfb <CJK> +<U8276> /x8e/xa3/xda/xfc <CJK> +<U85DB> /x8e/xa3/xda/xfd <CJK> +<U85D6> /x8e/xa3/xda/xfe <CJK> +<U4562> /x8e/xa3/xdb/xa1 <CJK> +<U85E7> /x8e/xa3/xdb/xa2 <CJK> +<U4560> /x8e/xa3/xdb/xa3 <CJK> +<U4564> /x8e/xa3/xdb/xa4 <CJK> +<U85F4> /x8e/xa3/xdb/xa5 <CJK> +<U87FD> /x8e/xa3/xdb/xa7 <CJK> +<U87D5> /x8e/xa3/xdb/xa8 <CJK> +<U8807> /x8e/xa3/xdb/xa9 <CJK> +<U45F6> /x8e/xa3/xdb/xaa <CJK> +<U880F> /x8e/xa3/xdb/xab <CJK> +<U87F8> /x8e/xa3/xdb/xac <CJK> +<U4619> /x8e/xa3/xdb/xae <CJK> +<U8987> /x8e/xa3/xdb/xaf <CJK> +<U4691> /x8e/xa3/xdb/xb0 <CJK> +<U89B5> /x8e/xa3/xdb/xb1 <CJK> +<U89F5> /x8e/xa3/xdb/xb2 <CJK> +<U470D> /x8e/xa3/xdb/xb3 <CJK> +<U8B3F> /x8e/xa3/xdb/xb4 <CJK> +<U8B43> /x8e/xa3/xdb/xb5 <CJK> +<U8B4C> /x8e/xa3/xdb/xb6 <CJK> +<U4765> /x8e/xa3/xdb/xb7 <CJK> +<U8D0B> /x8e/xa3/xdb/xb8 <CJK> +<U8E6B> /x8e/xa3/xdb/xb9 <CJK> +<U8E68> /x8e/xa3/xdb/xba <CJK> +<U8E70> /x8e/xa3/xdb/xbb <CJK> +<U8E75> /x8e/xa3/xdb/xbc <CJK> +<U8E77> /x8e/xa3/xdb/xbd <CJK> +<U483F> /x8e/xa3/xdb/xbe <CJK> +<U8EC3> /x8e/xa3/xdb/xbf <CJK> +<U494B> /x8e/xa3/xdb/xc0 <CJK> +<U93E9> /x8e/xa3/xdb/xc1 <CJK> +<U93EA> /x8e/xa3/xdb/xc2 <CJK> +<U93CB> /x8e/xa3/xdb/xc3 <CJK> +<U93C5> /x8e/xa3/xdb/xc4 <CJK> +<U93C6> /x8e/xa3/xdb/xc5 <CJK> +<U4948> /x8e/xa3/xdb/xc6 <CJK> +<U93ED> /x8e/xa3/xdb/xc7 <CJK> +<U93D3> /x8e/xa3/xdb/xc8 <CJK> +<U4952> /x8e/xa3/xdb/xc9 <CJK> +<U93E5> /x8e/xa3/xdb/xca <CJK> +<U494A> /x8e/xa3/xdb/xcb <CJK> +<U4951> /x8e/xa3/xdb/xcc <CJK> +<U93DB> /x8e/xa3/xdb/xcd <CJK> +<U93EB> /x8e/xa3/xdb/xce <CJK> +<U93E0> /x8e/xa3/xdb/xcf <CJK> +<U93C1> /x8e/xa3/xdb/xd0 <CJK> +<U4950> /x8e/xa3/xdb/xd1 <CJK> +<U494C> /x8e/xa3/xdb/xd2 <CJK> +<U95DD> /x8e/xa3/xdb/xd3 <CJK> +<U49EE> /x8e/xa3/xdb/xd4 <CJK> +<U4A04> /x8e/xa3/xdb/xd5 <CJK> +<U4A06> /x8e/xa3/xdb/xd6 <CJK> +<U4A2D> /x8e/xa3/xdb/xd7 <CJK> +<U4A2E> /x8e/xa3/xdb/xd8 <CJK> +<U4A2F> /x8e/xa3/xdb/xd9 <CJK> +<U4A7B> /x8e/xa3/xdb/xda <CJK> +<U4A78> /x8e/xa3/xdb/xdb <CJK> +<U4A77> /x8e/xa3/xdb/xdc <CJK> +<U97B2> /x8e/xa3/xdb/xdd <CJK> +<U97B4> /x8e/xa3/xdb/xde <CJK> +<U97B1> /x8e/xa3/xdb/xdf <CJK> +<U97B5> /x8e/xa3/xdb/xe0 <CJK> +<U97F2> /x8e/xa3/xdb/xe1 <CJK> +<U4AA2> /x8e/xa3/xdb/xe2 <CJK> +<U4AA1> /x8e/xa3/xdb/xe3 <CJK> +<U4AE3> /x8e/xa3/xdb/xe4 <CJK> +<U9856> /x8e/xa3/xdb/xe5 <CJK> +<U4B1A> /x8e/xa3/xdb/xe6 <CJK> +<U4B19> /x8e/xa3/xdb/xe7 <CJK> +<U4B57> /x8e/xa3/xdb/xe8 <CJK> +<U9944> /x8e/xa3/xdb/xe9 <CJK> +<U4B9E> /x8e/xa3/xdb/xea <CJK> +<U9A26> /x8e/xa3/xdb/xeb <CJK> +<U9A1F> /x8e/xa3/xdb/xec <CJK> +<U9A18> /x8e/xa3/xdb/xed <CJK> +<U9A21> /x8e/xa3/xdb/xee <CJK> +<U9A17> /x8e/xa3/xdb/xef <CJK> +<U4BDD> /x8e/xa3/xdb/xf0 <CJK> +<U9B09> /x8e/xa3/xdb/xf1 <CJK> +<U4C05> /x8e/xa3/xdb/xf2 <CJK> +<U4C28> /x8e/xa3/xdb/xf3 <CJK> +<U9BC5> /x8e/xa3/xdb/xf4 <CJK> +<U9BDF> /x8e/xa3/xdb/xf5 <CJK> +<U4C60> /x8e/xa3/xdb/xf6 <CJK> +<U9BE3> /x8e/xa3/xdb/xf7 <CJK> +<U4C66> /x8e/xa3/xdb/xf8 <CJK> +<U9BE9> /x8e/xa3/xdb/xf9 <CJK> +<U9BEE> /x8e/xa3/xdb/xfa <CJK> +<U4C67> /x8e/xa3/xdb/xfb <CJK> +<U4C68> /x8e/xa3/xdb/xfc <CJK> +<U9D66> /x8e/xa3/xdb/xfd <CJK> +<U9D7A> /x8e/xa3/xdb/xfe <CJK> +<U4CDE> /x8e/xa3/xdc/xa1 <CJK> +<U9D6E> /x8e/xa3/xdc/xa2 <CJK> +<U9D91> /x8e/xa3/xdc/xa3 <CJK> +<U9D83> /x8e/xa3/xdc/xa4 <CJK> +<U9D76> /x8e/xa3/xdc/xa5 <CJK> +<U9D7E> /x8e/xa3/xdc/xa6 <CJK> +<U9D6D> /x8e/xa3/xdc/xa7 <CJK> +<U4CE1> /x8e/xa3/xdc/xa8 <CJK> +<U9E95> /x8e/xa3/xdc/xa9 <CJK> +<U9EE3> /x8e/xa3/xdc/xaa <CJK> +<U4D69> /x8e/xa3/xdc/xab <CJK> +<U4D77> /x8e/xa3/xdc/xac <CJK> +<U9F03> /x8e/xa3/xdc/xad <CJK> +<U9F04> /x8e/xa3/xdc/xae <CJK> +<U9F17> /x8e/xa3/xdc/xb0 <CJK> +<U34A6> /x8e/xa3/xdc/xb1 <CJK> +<U5136> /x8e/xa3/xdc/xb2 <CJK> +<U34A5> /x8e/xa3/xdc/xb3 <CJK> +<U5336> /x8e/xa3/xdc/xb4 <CJK> +<U3614> /x8e/xa3/xdc/xb5 <CJK> +<U5B42> /x8e/xa3/xdc/xb6 <CJK> +<U3736> /x8e/xa3/xdc/xb7 <CJK> +<U3738> /x8e/xa3/xdc/xb8 <CJK> +<U5B44> /x8e/xa3/xdc/xb9 <CJK> +<U5B46> /x8e/xa3/xdc/xba <CJK> +<U5B7E> /x8e/xa3/xdc/xbb <CJK> +<U5DCA> /x8e/xa3/xdc/xbc <CJK> +<U5DC8> /x8e/xa3/xdc/xbd <CJK> +<U5DCC> /x8e/xa3/xdc/xbe <CJK> +<U5EF0> /x8e/xa3/xdc/xbf <CJK> +<U3A70> /x8e/xa3/xdc/xc0 <CJK> +<U6585> /x8e/xa3/xdc/xc1 <CJK> +<U66E5> /x8e/xa3/xdc/xc2 <CJK> +<U66E7> /x8e/xa3/xdc/xc3 <CJK> +<U3B2B> /x8e/xa3/xdc/xc4 <CJK> +<U3C11> /x8e/xa3/xdc/xc5 <CJK> +<U3C0A> /x8e/xa3/xdc/xc6 <CJK> +<U6AF4> /x8e/xa3/xdc/xc7 <CJK> +<U3C0D> /x8e/xa3/xdc/xc8 <CJK> +<U6AE9> /x8e/xa3/xdc/xc9 <CJK> +<U3C16> /x8e/xa3/xdc/xca <CJK> +<U3C10> /x8e/xa3/xdc/xcb <CJK> +<U3C09> /x8e/xa3/xdc/xcc <CJK> +<U3C0E> /x8e/xa3/xdc/xcd <CJK> +<U3C7A> /x8e/xa3/xdc/xce <CJK> +<U703D> /x8e/xa3/xdc/xcf <CJK> +<U3D8C> /x8e/xa3/xdc/xd0 <CJK> +<U7036> /x8e/xa3/xdc/xd1 <CJK> +<U3D91> /x8e/xa3/xdc/xd2 <CJK> +<U7216> /x8e/xa3/xdc/xd3 <CJK> +<U3E0A> /x8e/xa3/xdc/xd4 <CJK> +<U7212> /x8e/xa3/xdc/xd5 <CJK> +<U720F> /x8e/xa3/xdc/xd6 <CJK> +<U7217> /x8e/xa3/xdc/xd7 <CJK> +<U7211> /x8e/xa3/xdc/xd8 <CJK> +<U720B> /x8e/xa3/xdc/xd9 <CJK> +<U3E08> /x8e/xa3/xdc/xda <CJK> +<U3E0B> /x8e/xa3/xdc/xdb <CJK> +<U74CD> /x8e/xa3/xdc/xdc <CJK> +<U74D0> /x8e/xa3/xdc/xdd <CJK> +<U74CC> /x8e/xa3/xdc/xde <CJK> +<U74CE> /x8e/xa3/xdc/xdf <CJK> +<U74D1> /x8e/xa3/xdc/xe0 <CJK> +<U3F07> /x8e/xa3/xdc/xe1 <CJK> +<U7589> /x8e/xa3/xdc/xe2 <CJK> +<U40F2> /x8e/xa3/xdc/xe3 <CJK> +<U7A6F> /x8e/xa3/xdc/xe4 <CJK> +<U7C4B> /x8e/xa3/xdc/xe5 <CJK> +<U7C44> /x8e/xa3/xdc/xe6 <CJK> +<U7C55> /x8e/xa3/xdc/xe7 <CJK> +<U42AE> /x8e/xa3/xdc/xe8 <CJK> +<U4324> /x8e/xa3/xdc/xe9 <CJK> +<U4326> /x8e/xa3/xdc/xea <CJK> +<U4327> /x8e/xa3/xdc/xeb <CJK> +<U7E7F> /x8e/xa3/xdc/xec <CJK> +<U8B71> /x8e/xa3/xdc/xed <CJK> +<U4399> /x8e/xa3/xdc/xee <CJK> +<U802F> /x8e/xa3/xdc/xef <CJK> +<U807A> /x8e/xa3/xdc/xf0 <CJK> +<U807B> /x8e/xa3/xdc/xf1 <CJK> +<U807C> /x8e/xa3/xdc/xf2 <CJK> +<U455F> /x8e/xa3/xdc/xf3 <CJK> +<U456A> /x8e/xa3/xdc/xf4 <CJK> +<U4571> /x8e/xa3/xdc/xf5 <CJK> +<U85FC> /x8e/xa3/xdc/xf6 <CJK> +<U8610> /x8e/xa3/xdc/xf7 <CJK> +<U8602> /x8e/xa3/xdc/xf8 <CJK> +<U456C> /x8e/xa3/xdc/xf9 <CJK> +<U456F> /x8e/xa3/xdc/xfa <CJK> +<U85EE> /x8e/xa3/xdc/xfb <CJK> +<U8603> /x8e/xa3/xdc/xfc <CJK> +<U4568> /x8e/xa3/xdc/xfd <CJK> +<U860D> /x8e/xa3/xdc/xfe <CJK> +<U8613> /x8e/xa3/xdd/xa1 <CJK> +<U8608> /x8e/xa3/xdd/xa2 <CJK> +<U860F> /x8e/xa3/xdd/xa3 <CJK> +<U8818> /x8e/xa3/xdd/xa4 <CJK> +<U8812> /x8e/xa3/xdd/xa5 <CJK> +<U4601> /x8e/xa3/xdd/xa6 <CJK> +<U4668> /x8e/xa3/xdd/xa7 <CJK> +<U8967> /x8e/xa3/xdd/xa8 <CJK> +<U8965> /x8e/xa3/xdd/xa9 <CJK> +<U89BB> /x8e/xa3/xdd/xaa <CJK> +<U8B69> /x8e/xa3/xdd/xab <CJK> +<U8B62> /x8e/xa3/xdd/xac <CJK> +<U4713> /x8e/xa3/xdd/xad <CJK> +<U8B6E> /x8e/xa3/xdd/xae <CJK> +<U4716> /x8e/xa3/xdd/xaf <CJK> +<U8B61> /x8e/xa3/xdd/xb0 <CJK> +<U4718> /x8e/xa3/xdd/xb1 <CJK> +<U8B64> /x8e/xa3/xdd/xb2 <CJK> +<U8B4D> /x8e/xa3/xdd/xb3 <CJK> +<U8C51> /x8e/xa3/xdd/xb4 <CJK> +<U4789> /x8e/xa3/xdd/xb5 <CJK> +<U47C8> /x8e/xa3/xdd/xb6 <CJK> +<U8E83> /x8e/xa3/xdd/xb7 <CJK> +<U8EC6> /x8e/xa3/xdd/xb8 <CJK> +<U4884> /x8e/xa3/xdd/xb9 <CJK> +<U941F> /x8e/xa3/xdd/xba <CJK> +<U4954> /x8e/xa3/xdd/xbb <CJK> +<U9404> /x8e/xa3/xdd/xbc <CJK> +<U9417> /x8e/xa3/xdd/xbd <CJK> +<U9408> /x8e/xa3/xdd/xbe <CJK> +<U9405> /x8e/xa3/xdd/xbf <CJK> +<U4956> /x8e/xa3/xdd/xc0 <CJK> +<U93F3> /x8e/xa3/xdd/xc1 <CJK> +<U941E> /x8e/xa3/xdd/xc2 <CJK> +<U9402> /x8e/xa3/xdd/xc3 <CJK> +<U941A> /x8e/xa3/xdd/xc4 <CJK> +<U941B> /x8e/xa3/xdd/xc5 <CJK> +<U9427> /x8e/xa3/xdd/xc6 <CJK> +<U941C> /x8e/xa3/xdd/xc7 <CJK> +<U495A> /x8e/xa3/xdd/xc8 <CJK> +<U96B5> /x8e/xa3/xdd/xc9 <CJK> +<U4A05> /x8e/xa3/xdd/xca <CJK> +<U4A07> /x8e/xa3/xdd/xcb <CJK> +<U9733> /x8e/xa3/xdd/xcc <CJK> +<U4A31> /x8e/xa3/xdd/xcd <CJK> +<U9734> /x8e/xa3/xdd/xce <CJK> +<U9731> /x8e/xa3/xdd/xcf <CJK> +<U97B8> /x8e/xa3/xdd/xd0 <CJK> +<U97BA> /x8e/xa3/xdd/xd1 <CJK> +<U4AA3> /x8e/xa3/xdd/xd2 <CJK> +<U97FC> /x8e/xa3/xdd/xd3 <CJK> +<U4AEB> /x8e/xa3/xdd/xd4 <CJK> +<U4B1C> /x8e/xa3/xdd/xd5 <CJK> +<U98C3> /x8e/xa3/xdd/xd6 <CJK> +<U4B5A> /x8e/xa3/xdd/xd7 <CJK> +<U994D> /x8e/xa3/xdd/xd8 <CJK> +<U4B5B> /x8e/xa3/xdd/xd9 <CJK> +<U9A2F> /x8e/xa3/xdd/xda <CJK> +<U4BA6> /x8e/xa3/xdd/xdb <CJK> +<U4BAA> /x8e/xa3/xdd/xdc <CJK> +<U4BA5> /x8e/xa3/xdd/xdd <CJK> +<U9AC9> /x8e/xa3/xdd/xde <CJK> +<U4BE1> /x8e/xa3/xdd/xdf <CJK> +<U9AC8> /x8e/xa3/xdd/xe0 <CJK> +<U9AC4> /x8e/xa3/xdd/xe1 <CJK> +<U9B2A> /x8e/xa3/xdd/xe2 <CJK> +<U9B38> /x8e/xa3/xdd/xe3 <CJK> +<U9B50> /x8e/xa3/xdd/xe4 <CJK> +<U4C2A> /x8e/xa3/xdd/xe5 <CJK> +<U9C0A> /x8e/xa3/xdd/xe6 <CJK> +<U9BFB> /x8e/xa3/xdd/xe7 <CJK> +<U9C04> /x8e/xa3/xdd/xe8 <CJK> +<U9BFC> /x8e/xa3/xdd/xe9 <CJK> +<U9BFE> /x8e/xa3/xdd/xea <CJK> +<U4C72> /x8e/xa3/xdd/xeb <CJK> +<U4C6F> /x8e/xa3/xdd/xec <CJK> +<U4C73> /x8e/xa3/xdd/xed <CJK> +<U9C02> /x8e/xa3/xdd/xee <CJK> +<U9BF6> /x8e/xa3/xdd/xef <CJK> +<U9C1B> /x8e/xa3/xdd/xf0 <CJK> +<U9BF9> /x8e/xa3/xdd/xf1 <CJK> +<U9C15> /x8e/xa3/xdd/xf2 <CJK> +<U9C10> /x8e/xa3/xdd/xf3 <CJK> +<U9BFF> /x8e/xa3/xdd/xf4 <CJK> +<U9C00> /x8e/xa3/xdd/xf5 <CJK> +<U9C0C> /x8e/xa3/xdd/xf6 <CJK> +<U4C6B> /x8e/xa3/xdd/xf7 <CJK> +<U4CE6> /x8e/xa3/xdd/xf8 <CJK> +<U9D95> /x8e/xa3/xdd/xf9 <CJK> +<U9DA5> /x8e/xa3/xdd/xfa <CJK> +<U4CE9> /x8e/xa3/xdd/xfb <CJK> +<U4CEC> /x8e/xa3/xdd/xfc <CJK> +<U4CE8> /x8e/xa3/xdd/xfd <CJK> +<U4CF0> /x8e/xa3/xdd/xfe <CJK> +<U9E98> /x8e/xa3/xde/xa1 <CJK> +<U9EC1> /x8e/xa3/xde/xa2 <CJK> +<U4D8C> /x8e/xa3/xde/xa3 <CJK> +<U9F5A> /x8e/xa3/xde/xa4 <CJK> +<U5164> /x8e/xa3/xde/xa5 <CJK> +<U56BB> /x8e/xa3/xde/xa6 <CJK> +<U3615> /x8e/xa3/xde/xa7 <CJK> +<U58E6> /x8e/xa3/xde/xa8 <CJK> +<U5B49> /x8e/xa3/xde/xa9 <CJK> +<U5BF7> /x8e/xa3/xde/xaa <CJK> +<U3771> /x8e/xa3/xde/xab <CJK> +<U3826> /x8e/xa3/xde/xac <CJK> +<U5DD0> /x8e/xa3/xde/xad <CJK> +<U38C6> /x8e/xa3/xde/xae <CJK> +<U5FC2> /x8e/xa3/xde/xaf <CJK> +<U39A8> /x8e/xa3/xde/xb0 <CJK> +<U6511> /x8e/xa3/xde/xb1 <CJK> +<U3A73> /x8e/xa3/xde/xb2 <CJK> +<U6AFF> /x8e/xa3/xde/xb3 <CJK> +<U6AFE> /x8e/xa3/xde/xb4 <CJK> +<U6AFD> /x8e/xa3/xde/xb5 <CJK> +<U3C15> /x8e/xa3/xde/xb6 <CJK> +<U6B01> /x8e/xa3/xde/xb7 <CJK> +<U3D98> /x8e/xa3/xde/xb8 <CJK> +<U3D97> /x8e/xa3/xde/xb9 <CJK> +<U704B> /x8e/xa3/xde/xba <CJK> +<U704D> /x8e/xa3/xde/xbb <CJK> +<U7047> /x8e/xa3/xde/xbc <CJK> +<U74D3> /x8e/xa3/xde/xbd <CJK> +<U7668> /x8e/xa3/xde/xbe <CJK> +<U7667> /x8e/xa3/xde/xbf <CJK> +<U3FD7> /x8e/xa3/xde/xc0 <CJK> +<U4080> /x8e/xa3/xde/xc1 <CJK> +<U77D1> /x8e/xa3/xde/xc2 <CJK> +<U7930> /x8e/xa3/xde/xc3 <CJK> +<U7932> /x8e/xa3/xde/xc4 <CJK> +<U792E> /x8e/xa3/xde/xc5 <CJK> +<U4188> /x8e/xa3/xde/xc6 <CJK> +<U9F9D> /x8e/xa3/xde/xc7 <CJK> +<U7AC9> /x8e/xa3/xde/xc8 <CJK> +<U7AC8> /x8e/xa3/xde/xc9 <CJK> +<U4269> /x8e/xa3/xde/xca <CJK> +<U7C56> /x8e/xa3/xde/xcb <CJK> +<U7C51> /x8e/xa3/xde/xcc <CJK> +<U426B> /x8e/xa3/xde/xcd <CJK> +<U4329> /x8e/xa3/xde/xce <CJK> +<U4328> /x8e/xa3/xde/xcf <CJK> +<U7E85> /x8e/xa3/xde/xd0 <CJK> +<U7E89> /x8e/xa3/xde/xd1 <CJK> +<U7E8E> /x8e/xa3/xde/xd2 <CJK> +<U7E84> /x8e/xa3/xde/xd3 <CJK> +<U445F> /x8e/xa3/xde/xd4 <CJK> +<U826A> /x8e/xa3/xde/xd5 <CJK> +<U862B> /x8e/xa3/xde/xd6 <CJK> +<U862F> /x8e/xa3/xde/xd7 <CJK> +<U8628> /x8e/xa3/xde/xd8 <CJK> +<U4574> /x8e/xa3/xde/xd9 <CJK> +<U8616> /x8e/xa3/xde/xda <CJK> +<U8615> /x8e/xa3/xde/xdb <CJK> +<U861D> /x8e/xa3/xde/xdc <CJK> +<U881A> /x8e/xa3/xde/xdd <CJK> +<U4602> /x8e/xa3/xde/xde <CJK> +<U466A> /x8e/xa3/xde/xdf <CJK> +<U4694> /x8e/xa3/xde/xe0 <CJK> +<U89BC> /x8e/xa3/xde/xe1 <CJK> +<U8B75> /x8e/xa3/xde/xe2 <CJK> +<U8B7C> /x8e/xa3/xde/xe3 <CJK> +<U478A> /x8e/xa3/xde/xe4 <CJK> +<U8D11> /x8e/xa3/xde/xe5 <CJK> +<U8D12> /x8e/xa3/xde/xe6 <CJK> +<U8F5C> /x8e/xa3/xde/xe7 <CJK> +<U91BB> /x8e/xa3/xde/xe8 <CJK> +<U4964> /x8e/xa3/xde/xe9 <CJK> +<U93F4> /x8e/xa3/xde/xea <CJK> +<U495E> /x8e/xa3/xde/xeb <CJK> +<U4961> /x8e/xa3/xde/xec <CJK> +<U942D> /x8e/xa3/xde/xed <CJK> +<U4965> /x8e/xa3/xde/xee <CJK> +<U4966> /x8e/xa3/xde/xef <CJK> +<U96E4> /x8e/xa3/xde/xf0 <CJK> +<U9737> /x8e/xa3/xde/xf1 <CJK> +<U9736> /x8e/xa3/xde/xf2 <CJK> +<U9767> /x8e/xa3/xde/xf3 <CJK> +<U97BE> /x8e/xa3/xde/xf4 <CJK> +<U97BD> /x8e/xa3/xde/xf5 <CJK> +<U97E2> /x8e/xa3/xde/xf6 <CJK> +<U9868> /x8e/xa3/xde/xf7 <CJK> +<U9866> /x8e/xa3/xde/xf8 <CJK> +<U98C8> /x8e/xa3/xde/xf9 <CJK> +<U98CA> /x8e/xa3/xde/xfa <CJK> +<U98C7> /x8e/xa3/xde/xfb <CJK> +<U98DC> /x8e/xa3/xde/xfc <CJK> +<U4B5F> /x8e/xa3/xde/xfd <CJK> +<U994F> /x8e/xa3/xde/xfe <CJK> +<U99A9> /x8e/xa3/xdf/xa1 <CJK> +<U9A3C> /x8e/xa3/xdf/xa2 <CJK> +<U4BAF> /x8e/xa3/xdf/xa3 <CJK> +<U9A3B> /x8e/xa3/xdf/xa4 <CJK> +<U9ACE> /x8e/xa3/xdf/xa5 <CJK> +<U4C0D> /x8e/xa3/xdf/xa6 <CJK> +<U9B14> /x8e/xa3/xdf/xa7 <CJK> +<U9B53> /x8e/xa3/xdf/xa8 <CJK> +<U4C7C> /x8e/xa3/xdf/xa9 <CJK> +<U9C2E> /x8e/xa3/xdf/xaa <CJK> +<U4C7A> /x8e/xa3/xdf/xab <CJK> +<U9C1F> /x8e/xa3/xdf/xac <CJK> +<U4C76> /x8e/xa3/xdf/xad <CJK> +<U4C79> /x8e/xa3/xdf/xae <CJK> +<U4C7D> /x8e/xa3/xdf/xaf <CJK> +<U4C77> /x8e/xa3/xdf/xb0 <CJK> +<U9DB0> /x8e/xa3/xdf/xb1 <CJK> +<U9DBD> /x8e/xa3/xdf/xb2 <CJK> +<U4CF6> /x8e/xa3/xdf/xb3 <CJK> +<U4CF1> /x8e/xa3/xdf/xb4 <CJK> +<U9DAE> /x8e/xa3/xdf/xb5 <CJK> +<U9DC4> /x8e/xa3/xdf/xb6 <CJK> +<U9E7B> /x8e/xa3/xdf/xb7 <CJK> +<U400B> /x8e/xa3/xdf/xb8 <CJK> +<U4D29> /x8e/xa3/xdf/xb9 <CJK> +<U9E9E> /x8e/xa3/xdf/xba <CJK> +<U4D6F> /x8e/xa3/xdf/xbb <CJK> +<U9F05> /x8e/xa3/xdf/xbc <CJK> +<U4D9A> /x8e/xa3/xdf/xbd <CJK> +<U9F69> /x8e/xa3/xdf/xbe <CJK> +<U9FA1> /x8e/xa3/xdf/xbf <CJK> +<U56C7> /x8e/xa3/xdf/xc0 <CJK> +<U571D> /x8e/xa3/xdf/xc1 <CJK> +<U5B4A> /x8e/xa3/xdf/xc2 <CJK> +<U5DD3> /x8e/xa3/xdf/xc3 <CJK> +<U3869> /x8e/xa3/xdf/xc4 <CJK> +<U5F72> /x8e/xa3/xdf/xc5 <CJK> +<U6202> /x8e/xa3/xdf/xc6 <CJK> +<U39AB> /x8e/xa3/xdf/xc7 <CJK> +<U6235> /x8e/xa3/xdf/xc8 <CJK> +<U6527> /x8e/xa3/xdf/xc9 <CJK> +<U651E> /x8e/xa3/xdf/xca <CJK> +<U651F> /x8e/xa3/xdf/xcb <CJK> +<U3B2C> /x8e/xa3/xdf/xcc <CJK> +<U3B2D> /x8e/xa3/xdf/xcd <CJK> +<U6B07> /x8e/xa3/xdf/xce <CJK> +<U6B06> /x8e/xa3/xdf/xcf <CJK> +<U3C17> /x8e/xa3/xdf/xd0 <CJK> +<U3D9A> /x8e/xa3/xdf/xd1 <CJK> +<U7054> /x8e/xa3/xdf/xd2 <CJK> +<U721C> /x8e/xa3/xdf/xd3 <CJK> +<U7220> /x8e/xa3/xdf/xd4 <CJK> +<U7AF8> /x8e/xa3/xdf/xd5 <CJK> +<U426E> /x8e/xa3/xdf/xd6 <CJK> +<U7C5D> /x8e/xa3/xdf/xd7 <CJK> +<U7C58> /x8e/xa3/xdf/xd8 <CJK> +<U432C> /x8e/xa3/xdf/xd9 <CJK> +<U7E92> /x8e/xa3/xdf/xda <CJK> +<U7F4E> /x8e/xa3/xdf/xdb <CJK> +<U43CA> /x8e/xa3/xdf/xdc <CJK> +<U4578> /x8e/xa3/xdf/xdd <CJK> +<U4606> /x8e/xa3/xdf/xde <CJK> +<U8827> /x8e/xa3/xdf/xdf <CJK> +<U4607> /x8e/xa3/xdf/xe0 <CJK> +<U8B81> /x8e/xa3/xdf/xe1 <CJK> +<U8B83> /x8e/xa3/xdf/xe2 <CJK> +<U4720> /x8e/xa3/xdf/xe3 <CJK> +<U8C44> /x8e/xa3/xdf/xe4 <CJK> +<U4753> /x8e/xa3/xdf/xe5 <CJK> +<U47CE> /x8e/xa3/xdf/xe6 <CJK> +<U487A> /x8e/xa3/xdf/xe7 <CJK> +<U4879> /x8e/xa3/xdf/xe8 <CJK> +<U9442> /x8e/xa3/xdf/xe9 <CJK> +<U944D> /x8e/xa3/xdf/xea <CJK> +<U9454> /x8e/xa3/xdf/xeb <CJK> +<U944E> /x8e/xa3/xdf/xec <CJK> +<U496B> /x8e/xa3/xdf/xed <CJK> +<U9443> /x8e/xa3/xdf/xee <CJK> +<U4967> /x8e/xa3/xdf/xef <CJK> +<U496D> /x8e/xa3/xdf/xf0 <CJK> +<U973C> /x8e/xa3/xdf/xf1 <CJK> +<U9740> /x8e/xa3/xdf/xf2 <CJK> +<U97C0> /x8e/xa3/xdf/xf3 <CJK> +<U4A85> /x8e/xa3/xdf/xf4 <CJK> +<U4AB0> /x8e/xa3/xdf/xf5 <CJK> +<U4AF3> /x8e/xa3/xdf/xf6 <CJK> +<U4B63> /x8e/xa3/xdf/xf7 <CJK> +<U995A> /x8e/xa3/xdf/xf8 <CJK> +<U9A51> /x8e/xa3/xdf/xf9 <CJK> +<U4BB6> /x8e/xa3/xdf/xfa <CJK> +<U9ADD> /x8e/xa3/xdf/xfb <CJK> +<U4C82> /x8e/xa3/xdf/xfc <CJK> +<U4C7F> /x8e/xa3/xdf/xfd <CJK> +<U9C38> /x8e/xa3/xdf/xfe <CJK> +<U4C86> /x8e/xa3/xe0/xa1 <CJK> +<U9C45> /x8e/xa3/xe0/xa2 <CJK> +<U9C3A> /x8e/xa3/xe0/xa3 <CJK> +<U4C84> /x8e/xa3/xe0/xa4 <CJK> +<U9C35> /x8e/xa3/xe0/xa5 <CJK> +<U4CFC> /x8e/xa3/xe0/xa6 <CJK> +<U4CFD> /x8e/xa3/xe0/xa7 <CJK> +<U4CFA> /x8e/xa3/xe0/xa8 <CJK> +<U9EF1> /x8e/xa3/xe0/xa9 <CJK> +<U4D87> /x8e/xa3/xe0/xaa <CJK> +<U9F93> /x8e/xa3/xe0/xab <CJK> +<U529A> /x8e/xa3/xe0/xac <CJK> +<U361A> /x8e/xa3/xe0/xad <CJK> +<U3619> /x8e/xa3/xe0/xae <CJK> +<U8641> /x8e/xa3/xe0/xaf <CJK> +<U5DD7> /x8e/xa3/xe0/xb0 <CJK> +<U3A75> /x8e/xa3/xe0/xb1 <CJK> +<U6528> /x8e/xa3/xe0/xb2 <CJK> +<U3C1A> /x8e/xa3/xe0/xb3 <CJK> +<U3C1B> /x8e/xa3/xe0/xb4 <CJK> +<U3C19> /x8e/xa3/xe0/xb5 <CJK> +<U7053> /x8e/xa3/xe0/xb6 <CJK> +<U7059> /x8e/xa3/xe0/xb7 <CJK> +<U3D9C> /x8e/xa3/xe0/xb8 <CJK> +<U7221> /x8e/xa3/xe0/xb9 <CJK> +<U3E10> /x8e/xa3/xe0/xba <CJK> +<U766F> /x8e/xa3/xe0/xbb <CJK> +<U7937> /x8e/xa3/xe0/xbc <CJK> +<U79B5> /x8e/xa3/xe0/xbd <CJK> +<U7C62> /x8e/xa3/xe0/xbe <CJK> +<U7C5E> /x8e/xa3/xe0/xbf <CJK> +<U7CF5> /x8e/xa3/xe0/xc0 <CJK> +<U457B> /x8e/xa3/xe0/xc1 <CJK> +<U457C> /x8e/xa3/xe0/xc2 <CJK> +<U863D> /x8e/xa3/xe0/xc3 <CJK> +<U4608> /x8e/xa3/xe0/xc4 <CJK> +<U882D> /x8e/xa3/xe0/xc5 <CJK> +<U8989> /x8e/xa3/xe0/xc6 <CJK> +<U8B8D> /x8e/xa3/xe0/xc7 <CJK> +<U8B87> /x8e/xa3/xe0/xc8 <CJK> +<U8B90> /x8e/xa3/xe0/xc9 <CJK> +<U8D1A> /x8e/xa3/xe0/xca <CJK> +<U8E99> /x8e/xa3/xe0/xcb <CJK> +<U4841> /x8e/xa3/xe0/xcc <CJK> +<U48E3> /x8e/xa3/xe0/xcd <CJK> +<U4972> /x8e/xa3/xe0/xce <CJK> +<U945F> /x8e/xa3/xe0/xcf <CJK> +<U4973> /x8e/xa3/xe0/xd0 <CJK> +<U4968> /x8e/xa3/xe0/xd1 <CJK> +<U9456> /x8e/xa3/xe0/xd2 <CJK> +<U9461> /x8e/xa3/xe0/xd3 <CJK> +<U945B> /x8e/xa3/xe0/xd4 <CJK> +<U945A> /x8e/xa3/xe0/xd5 <CJK> +<U945C> /x8e/xa3/xe0/xd6 <CJK> +<U9465> /x8e/xa3/xe0/xd7 <CJK> +<U4A35> /x8e/xa3/xe0/xd8 <CJK> +<U9741> /x8e/xa3/xe0/xd9 <CJK> +<U4A88> /x8e/xa3/xe0/xda <CJK> +<U4A9D> /x8e/xa3/xe0/xdb <CJK> +<U986E> /x8e/xa3/xe0/xdc <CJK> +<U986C> /x8e/xa3/xe0/xdd <CJK> +<U986D> /x8e/xa3/xe0/xde <CJK> +<U4275> /x8e/xa3/xe0/xdf <CJK> +<U99AA> /x8e/xa3/xe0/xe0 <CJK> +<U9A5C> /x8e/xa3/xe0/xe1 <CJK> +<U9A58> /x8e/xa3/xe0/xe2 <CJK> +<U9ADE> /x8e/xa3/xe0/xe3 <CJK> +<U4C8F> /x8e/xa3/xe0/xe4 <CJK> +<U9C4F> /x8e/xa3/xe0/xe5 <CJK> +<U9C51> /x8e/xa3/xe0/xe6 <CJK> +<U4C8E> /x8e/xa3/xe0/xe7 <CJK> +<U9C53> /x8e/xa3/xe0/xe8 <CJK> +<U4D05> /x8e/xa3/xe0/xe9 <CJK> +<U4D04> /x8e/xa3/xe0/xea <CJK> +<U4CFF> /x8e/xa3/xe0/xeb <CJK> +<U9DFC> /x8e/xa3/xe0/xec <CJK> +<U9F39> /x8e/xa3/xe0/xed <CJK> +<U4D9E> /x8e/xa3/xe0/xee <CJK> +<U513E> /x8e/xa3/xe0/xef <CJK> +<U3554> /x8e/xa3/xe0/xf0 <CJK> +<U56D2> /x8e/xa3/xe0/xf1 <CJK> +<U3681> /x8e/xa3/xe0/xf2 <CJK> +<U5B4F> /x8e/xa3/xe0/xf3 <CJK> +<U6B14> /x8e/xa3/xe0/xf4 <CJK> +<U40FA> /x8e/xa3/xe0/xf5 <CJK> +<U7A72> /x8e/xa3/xe0/xf6 <CJK> +<U7A73> /x8e/xa3/xe0/xf7 <CJK> +<U4332> /x8e/xa3/xe0/xf8 <CJK> +<U4670> /x8e/xa3/xe0/xf9 <CJK> +<U466E> /x8e/xa3/xe0/xfa <CJK> +<U8B91> /x8e/xa3/xe0/xfb <CJK> +<U487C> /x8e/xa3/xe0/xfd <CJK> +<U91BF> /x8e/xa3/xe0/xfe <CJK> +<U4975> /x8e/xa3/xe1/xa1 <CJK> +<U946C> /x8e/xa3/xe1/xa2 <CJK> +<U4974> /x8e/xa3/xe1/xa3 <CJK> +<U4977> /x8e/xa3/xe1/xa4 <CJK> +<U96E6> /x8e/xa3/xe1/xa5 <CJK> +<U9745> /x8e/xa3/xe1/xa6 <CJK> +<U4A37> /x8e/xa3/xe1/xa7 <CJK> +<U97C8> /x8e/xa3/xe1/xa8 <CJK> +<U97E4> /x8e/xa3/xe1/xa9 <CJK> +<U995D> /x8e/xa3/xe1/xaa <CJK> +<U4BBA> /x8e/xa3/xe1/xab <CJK> +<U9B21> /x8e/xa3/xe1/xac <CJK> +<U4C11> /x8e/xa3/xe1/xad <CJK> +<U9B2C> /x8e/xa3/xe1/xae <CJK> +<U9B57> /x8e/xa3/xe1/xaf <CJK> +<U4C92> /x8e/xa3/xe1/xb0 <CJK> +<U4C99> /x8e/xa3/xe1/xb1 <CJK> +<U9C5D> /x8e/xa3/xe1/xb2 <CJK> +<U9C61> /x8e/xa3/xe1/xb3 <CJK> +<U9C65> /x8e/xa3/xe1/xb4 <CJK> +<U9E08> /x8e/xa3/xe1/xb5 <CJK> +<U4D0A> /x8e/xa3/xe1/xb6 <CJK> +<U4D2A> /x8e/xa3/xe1/xb7 <CJK> +<U4D2B> /x8e/xa3/xe1/xb8 <CJK> +<U4D44> /x8e/xa3/xe1/xb9 <CJK> +<U4D79> /x8e/xa3/xe1/xba <CJK> +<U9F45> /x8e/xa3/xe1/xbb <CJK> +<U34AA> /x8e/xa3/xe1/xbc <CJK> +<U3748> /x8e/xa3/xe1/xbd <CJK> +<U6205> /x8e/xa3/xe1/xbe <CJK> +<U66EF> /x8e/xa3/xe1/xbf <CJK> +<U6B1B> /x8e/xa3/xe1/xc0 <CJK> +<U6B1D> /x8e/xa3/xe1/xc1 <CJK> +<U7225> /x8e/xa3/xe1/xc2 <CJK> +<U7224> /x8e/xa3/xe1/xc3 <CJK> +<U7C6D> /x8e/xa3/xe1/xc4 <CJK> +<U42B4> /x8e/xa3/xe1/xc5 <CJK> +<U8642> /x8e/xa3/xe1/xc6 <CJK> +<U8649> /x8e/xa3/xe1/xc7 <CJK> +<U460D> /x8e/xa3/xe1/xc8 <CJK> +<U8978> /x8e/xa3/xe1/xc9 <CJK> +<U898A> /x8e/xa3/xe1/xca <CJK> +<U8B97> /x8e/xa3/xe1/xcb <CJK> +<U4754> /x8e/xa3/xe1/xcc <CJK> +<U8C9B> /x8e/xa3/xe1/xcd <CJK> +<U8D1C> /x8e/xa3/xe1/xce <CJK> +<U4830> /x8e/xa3/xe1/xcf <CJK> +<U8EA2> /x8e/xa3/xe1/xd0 <CJK> +<U4A09> /x8e/xa3/xe1/xd1 <CJK> +<U4A38> /x8e/xa3/xe1/xd2 <CJK> +<U4A36> /x8e/xa3/xe1/xd3 <CJK> +<U4A8B> /x8e/xa3/xe1/xd4 <CJK> +<U4AF7> /x8e/xa3/xe1/xd5 <CJK> +<U4B66> /x8e/xa3/xe1/xd6 <CJK> +<U4BBD> /x8e/xa3/xe1/xd7 <CJK> +<U4C1E> /x8e/xa3/xe1/xd8 <CJK> +<U9C6C> /x8e/xa3/xe1/xd9 <CJK> +<U4C96> /x8e/xa3/xe1/xda <CJK> +<U9C6F> /x8e/xa3/xe1/xdb <CJK> +<U4D0D> /x8e/xa3/xe1/xdc <CJK> +<U9E0E> /x8e/xa3/xe1/xdd <CJK> +<U4D73> /x8e/xa3/xe1/xde <CJK> +<U9F08> /x8e/xa3/xe1/xdf <CJK> +<U9F1D> /x8e/xa3/xe1/xe0 <CJK> +<U9FA3> /x8e/xa3/xe1/xe1 <CJK> +<U373B> /x8e/xa3/xe1/xe2 <CJK> +<U373C> /x8e/xa3/xe1/xe3 <CJK> +<U5F60> /x8e/xa3/xe1/xe4 <CJK> +<U6B1C> /x8e/xa3/xe1/xe5 <CJK> +<U3DA0> /x8e/xa3/xe1/xe6 <CJK> +<U40FB> /x8e/xa3/xe1/xe7 <CJK> +<U7CF3> /x8e/xa3/xe1/xe9 <CJK> +<U4581> /x8e/xa3/xe1/xea <CJK> +<U8B9B> /x8e/xa3/xe1/xeb <CJK> +<U8EA7> /x8e/xa3/xe1/xec <CJK> +<U91C4> /x8e/xa3/xe1/xed <CJK> +<U4978> /x8e/xa3/xe1/xee <CJK> +<U947A> /x8e/xa3/xe1/xef <CJK> +<U4A8D> /x8e/xa3/xe1/xf0 <CJK> +<U4B73> /x8e/xa3/xe1/xf1 <CJK> +<U9A61> /x8e/xa3/xe1/xf2 <CJK> +<U9A63> /x8e/xa3/xe1/xf3 <CJK> +<U9AD7> /x8e/xa3/xe1/xf4 <CJK> +<U9C76> /x8e/xa3/xe1/xf5 <CJK> +<U4DA6> /x8e/xa3/xe1/xf6 <CJK> +<U9FA5> /x8e/xa3/xe1/xf7 <CJK> +<U39AD> /x8e/xa3/xe1/xf8 <CJK> +<U7067> /x8e/xa3/xe1/xf9 <CJK> +<U3E11> /x8e/xa3/xe1/xfa <CJK> +<U72AB> /x8e/xa3/xe1/xfb <CJK> +<U864A> /x8e/xa3/xe1/xfc <CJK> +<U897D> /x8e/xa3/xe1/xfd <CJK> +<U8B9D> /x8e/xa3/xe1/xfe <CJK> +<U8C53> /x8e/xa3/xe2/xa1 <CJK> +<U8F65> /x8e/xa3/xe2/xa2 <CJK> +<U947B> /x8e/xa3/xe2/xa3 <CJK> +<U4A39> /x8e/xa3/xe2/xa4 <CJK> +<U98CD> /x8e/xa3/xe2/xa5 <CJK> +<U98DD> /x8e/xa3/xe2/xa6 <CJK> +<U4BBF> /x8e/xa3/xe2/xa7 <CJK> +<U9B30> /x8e/xa3/xe2/xa8 <CJK> +<U9E16> /x8e/xa3/xe2/xa9 <CJK> +<U4D0F> /x8e/xa3/xe2/xaa <CJK> +<U4DA7> /x8e/xa3/xe2/xab <CJK> +<U4DB5> /x8e/xa3/xe2/xac <CJK> +<U3FDC> /x8e/xa3/xe2/xad <CJK> +<U4831> /x8e/xa3/xe2/xae <CJK> +<U96E7> /x8e/xa3/xe2/xaf <CJK> +<U9E18> /x8e/xa3/xe2/xb0 <CJK> +<U9EA2> /x8e/xa3/xe2/xb1 <CJK> +<U4DA8> /x8e/xa3/xe2/xb2 <CJK> +<U9F7C> /x8e/xa3/xe2/xb3 <CJK> +<U4125> /x8e/xa3/xe2/xb4 <CJK> +<U7E9E> /x8e/xa3/xe2/xb5 <CJK> +<U9484> /x8e/xa3/xe2/xb6 <CJK> +<U4BC1> /x8e/xa3/xe2/xb7 <CJK> +<U9E1C> /x8e/xa3/xe2/xb8 <CJK> +<U4190> /x8e/xa3/xe2/xb9 <CJK> +<U7C71> /x8e/xa3/xe2/xba <CJK> +<U97CA> /x8e/xa3/xe2/xbb <CJK> +<U4696> /x8e/xa3/xe2/xbc <CJK> +<U487F> /x8e/xa3/xe2/xbd <CJK> +<U4D10> /x8e/xa3/xe2/xbe <CJK> +<U9EA3> /x8e/xa3/xe2/xbf <CJK> +<U4A0A> /x8e/xa3/xe2/xc0 <CJK> +<U9C7B> /x8e/xa3/xe2/xc1 <CJK> +<U9F97> /x8e/xa3/xe2/xc2 <CJK> +<U4D12> /x8e/xa3/xe2/xc3 <CJK> +<U4A3A> /x8e/xa3/xe2/xc4 <CJK> +<U9750> /x8e/xa3/xe2/xc5 <CJK> +<U4A3B> /x8e/xa3/xe2/xc6 <CJK> +<U4F66> /x8e/xa3/xe4/xc8 <CJK> +<U4F68> /x8e/xa3/xe4/xc9 <CJK> +<U4FE7> /x8e/xa3/xe4/xca <CJK> +<U503F> /x8e/xa3/xe4/xcb <CJK> +<U50A6> /x8e/xa3/xe4/xcd <CJK> +<U510F> /x8e/xa3/xe4/xce <CJK> +<U523E> /x8e/xa3/xe4/xcf <CJK> +<U5324> /x8e/xa3/xe4/xd0 <CJK> +<U5365> /x8e/xa3/xe4/xd1 <CJK> +<U539B> /x8e/xa3/xe4/xd2 <CJK> +<U517F> /x8e/xa3/xe4/xd3 <CJK> +<U54CB> /x8e/xa3/xe4/xd4 <CJK> +<U5573> /x8e/xa3/xe4/xd5 <CJK> +<U5571> /x8e/xa3/xe4/xd6 <CJK> +<U556B> /x8e/xa3/xe4/xd7 <CJK> +<U55F4> /x8e/xa3/xe4/xd8 <CJK> +<U5622> /x8e/xa3/xe4/xd9 <CJK> +<U5620> /x8e/xa3/xe4/xda <CJK> +<U5692> /x8e/xa3/xe4/xdb <CJK> +<U56BA> /x8e/xa3/xe4/xdc <CJK> +<U5691> /x8e/xa3/xe4/xdd <CJK> +<U56B0> /x8e/xa3/xe4/xde <CJK> +<U5759> /x8e/xa3/xe4/xdf <CJK> +<U578A> /x8e/xa3/xe4/xe0 <CJK> +<U580F> /x8e/xa3/xe4/xe1 <CJK> +<U5812> /x8e/xa3/xe4/xe2 <CJK> +<U5813> /x8e/xa3/xe4/xe3 <CJK> +<U5847> /x8e/xa3/xe4/xe4 <CJK> +<U589B> /x8e/xa3/xe4/xe5 <CJK> +<U5900> /x8e/xa3/xe4/xe6 <CJK> +<U594D> /x8e/xa3/xe4/xe7 <CJK> +<U5AD1> /x8e/xa3/xe4/xe8 <CJK> +<U5AD3> /x8e/xa3/xe4/xe9 <CJK> +<U5B67> /x8e/xa3/xe4/xea <CJK> +<U5C57> /x8e/xa3/xe4/xeb <CJK> +<U5C77> /x8e/xa3/xe4/xec <CJK> +<U5CD5> /x8e/xa3/xe4/xed <CJK> +<U5D75> /x8e/xa3/xe4/xee <CJK> +<U5D8E> /x8e/xa3/xe4/xef <CJK> +<U5DA5> /x8e/xa3/xe4/xf0 <CJK> +<U5DB6> /x8e/xa3/xe4/xf1 <CJK> +<U5DBF> /x8e/xa3/xe4/xf2 <CJK> +<U5E65> /x8e/xa3/xe4/xf3 <CJK> +<U5ECD> /x8e/xa3/xe4/xf4 <CJK> +<U5EED> /x8e/xa3/xe4/xf5 <CJK> +<U5F94> /x8e/xa3/xe4/xf6 <CJK> +<U5F9A> /x8e/xa3/xe4/xf7 <CJK> +<U5FBA> /x8e/xa3/xe4/xf8 <CJK> +<U6125> /x8e/xa3/xe4/xf9 <CJK> +<U6150> /x8e/xa3/xe4/xfa <CJK> +<U62A3> /x8e/xa3/xe4/xfb <CJK> +<U6360> /x8e/xa3/xe4/xfc <CJK> +<U6364> /x8e/xa3/xe4/xfd <CJK> +<U63B6> /x8e/xa3/xe4/xfe <CJK> +<U6403> /x8e/xa3/xe5/xa1 <CJK> +<U64B6> /x8e/xa3/xe5/xa2 <CJK> +<U651A> /x8e/xa3/xe5/xa3 <CJK> +<U7A25> /x8e/xa3/xe5/xa4 <CJK> +<U5C21> /x8e/xa3/xe5/xa5 <CJK> +<U66E2> /x8e/xa3/xe5/xa6 <CJK> +<U6702> /x8e/xa3/xe5/xa7 <CJK> +<U67A4> /x8e/xa3/xe5/xa8 <CJK> +<U67AC> /x8e/xa3/xe5/xa9 <CJK> +<U6810> /x8e/xa3/xe5/xaa <CJK> +<U6806> /x8e/xa3/xe5/xab <CJK> +<U685E> /x8e/xa3/xe5/xac <CJK> +<U685A> /x8e/xa3/xe5/xad <CJK> +<U692C> /x8e/xa3/xe5/xae <CJK> +<U6929> /x8e/xa3/xe5/xaf <CJK> +<U6A2D> /x8e/xa3/xe5/xb0 <CJK> +<U6A77> /x8e/xa3/xe5/xb1 <CJK> +<U6A7A> /x8e/xa3/xe5/xb2 <CJK> +<U6ACA> /x8e/xa3/xe5/xb3 <CJK> +<U6AE6> /x8e/xa3/xe5/xb4 <CJK> +<U6AF5> /x8e/xa3/xe5/xb5 <CJK> +<U6B0D> /x8e/xa3/xe5/xb6 <CJK> +<U6B0E> /x8e/xa3/xe5/xb7 <CJK> +<U6BDC> /x8e/xa3/xe5/xb8 <CJK> +<U6BDD> /x8e/xa3/xe5/xb9 <CJK> +<U6BF6> /x8e/xa3/xe5/xba <CJK> +<U6C1E> /x8e/xa3/xe5/xbb <CJK> +<U6C63> /x8e/xa3/xe5/xbc <CJK> +<U6DA5> /x8e/xa3/xe5/xbd <CJK> +<U6E0F> /x8e/xa3/xe5/xbe <CJK> +<U6E8A> /x8e/xa3/xe5/xbf <CJK> +<U6E84> /x8e/xa3/xe5/xc0 <CJK> +<U6E8B> /x8e/xa3/xe5/xc1 <CJK> +<U6E7C> /x8e/xa3/xe5/xc2 <CJK> +<U6F4C> /x8e/xa3/xe5/xc3 <CJK> +<U6F48> /x8e/xa3/xe5/xc4 <CJK> +<U6F49> /x8e/xa3/xe5/xc5 <CJK> +<U6F9D> /x8e/xa3/xe5/xc6 <CJK> +<U6F99> /x8e/xa3/xe5/xc7 <CJK> +<U6FF8> /x8e/xa3/xe5/xc8 <CJK> +<U702E> /x8e/xa3/xe5/xc9 <CJK> +<U702D> /x8e/xa3/xe5/xca <CJK> +<U705C> /x8e/xa3/xe5/xcb <CJK> +<U79CC> /x8e/xa3/xe5/xcc <CJK> +<U70BF> /x8e/xa3/xe5/xcd <CJK> +<U70EA> /x8e/xa3/xe5/xce <CJK> +<U70E5> /x8e/xa3/xe5/xcf <CJK> +<U7111> /x8e/xa3/xe5/xd0 <CJK> +<U7112> /x8e/xa3/xe5/xd1 <CJK> +<U713F> /x8e/xa3/xe5/xd2 <CJK> +<U7139> /x8e/xa3/xe5/xd3 <CJK> +<U713B> /x8e/xa3/xe5/xd4 <CJK> +<U713D> /x8e/xa3/xe5/xd5 <CJK> +<U7177> /x8e/xa3/xe5/xd6 <CJK> +<U7175> /x8e/xa3/xe5/xd7 <CJK> +<U7176> /x8e/xa3/xe5/xd8 <CJK> +<U7171> /x8e/xa3/xe5/xd9 <CJK> +<U7196> /x8e/xa3/xe5/xda <CJK> +<U7193> /x8e/xa3/xe5/xdb <CJK> +<U71B4> /x8e/xa3/xe5/xdc <CJK> +<U71DD> /x8e/xa3/xe5/xdd <CJK> +<U71DE> /x8e/xa3/xe5/xde <CJK> +<U720E> /x8e/xa3/xe5/xdf <CJK> +<U5911> /x8e/xa3/xe5/xe0 <CJK> +<U7218> /x8e/xa3/xe5/xe1 <CJK> +<U7347> /x8e/xa3/xe5/xe2 <CJK> +<U7348> /x8e/xa3/xe5/xe3 <CJK> +<U73EF> /x8e/xa3/xe5/xe4 <CJK> +<U7412> /x8e/xa3/xe5/xe5 <CJK> +<U743B> /x8e/xa3/xe5/xe6 <CJK> +<U74A4> /x8e/xa3/xe5/xe7 <CJK> +<U748D> /x8e/xa3/xe5/xe8 <CJK> +<U74B4> /x8e/xa3/xe5/xe9 <CJK> +<U7673> /x8e/xa3/xe5/xea <CJK> +<U7677> /x8e/xa3/xe5/xeb <CJK> +<U76BC> /x8e/xa3/xe5/xec <CJK> +<U7819> /x8e/xa3/xe5/xed <CJK> +<U781B> /x8e/xa3/xe5/xee <CJK> +<U783D> /x8e/xa3/xe5/xef <CJK> +<U7853> /x8e/xa3/xe5/xf0 <CJK> +<U7854> /x8e/xa3/xe5/xf1 <CJK> +<U7858> /x8e/xa3/xe5/xf2 <CJK> +<U78B7> /x8e/xa3/xe5/xf3 <CJK> +<U78D8> /x8e/xa3/xe5/xf4 <CJK> +<U78EE> /x8e/xa3/xe5/xf5 <CJK> +<U7922> /x8e/xa3/xe5/xf6 <CJK> +<U794D> /x8e/xa3/xe5/xf7 <CJK> +<U7986> /x8e/xa3/xe5/xf8 <CJK> +<U7999> /x8e/xa3/xe5/xf9 <CJK> +<U79A3> /x8e/xa3/xe5/xfa <CJK> +<U79BC> /x8e/xa3/xe5/xfb <CJK> +<U7AA7> /x8e/xa3/xe5/xfc <CJK> +<U7B37> /x8e/xa3/xe5/xfd <CJK> +<U7B59> /x8e/xa3/xe5/xfe <CJK> +<U7BD0> /x8e/xa3/xe6/xa1 <CJK> +<U7C2F> /x8e/xa3/xe6/xa2 <CJK> +<U7C32> /x8e/xa3/xe6/xa3 <CJK> +<U7C42> /x8e/xa3/xe6/xa4 <CJK> +<U7C4E> /x8e/xa3/xe6/xa5 <CJK> +<U7C68> /x8e/xa3/xe6/xa6 <CJK> +<U7CA9> /x8e/xa3/xe6/xa7 <CJK> +<U7CED> /x8e/xa3/xe6/xa8 <CJK> +<U7DD0> /x8e/xa3/xe6/xa9 <CJK> +<U7E07> /x8e/xa3/xe6/xaa <CJK> +<U7DD3> /x8e/xa3/xe6/xab <CJK> +<U7E64> /x8e/xa3/xe6/xac <CJK> +<U7F40> /x8e/xa3/xe6/xad <CJK> +<U8041> /x8e/xa3/xe6/xaf <CJK> +<U8063> /x8e/xa3/xe6/xb0 <CJK> +<U80BB> /x8e/xa3/xe6/xb1 <CJK> +<U6711> /x8e/xa3/xe6/xb2 <CJK> +<U6725> /x8e/xa3/xe6/xb3 <CJK> +<U8248> /x8e/xa3/xe6/xb4 <CJK> +<U8310> /x8e/xa3/xe6/xb5 <CJK> +<U8362> /x8e/xa3/xe6/xb6 <CJK> +<U8312> /x8e/xa3/xe6/xb7 <CJK> +<U8421> /x8e/xa3/xe6/xb8 <CJK> +<U841E> /x8e/xa3/xe6/xb9 <CJK> +<U84E2> /x8e/xa3/xe6/xba <CJK> +<U84DE> /x8e/xa3/xe6/xbb <CJK> +<U84E1> /x8e/xa3/xe6/xbc <CJK> +<U8573> /x8e/xa3/xe6/xbd <CJK> +<U85D4> /x8e/xa3/xe6/xbe <CJK> +<U85F5> /x8e/xa3/xe6/xbf <CJK> +<U8637> /x8e/xa3/xe6/xc0 <CJK> +<U8645> /x8e/xa3/xe6/xc1 <CJK> +<U8672> /x8e/xa3/xe6/xc2 <CJK> +<U874A> /x8e/xa3/xe6/xc3 <CJK> +<U87A9> /x8e/xa3/xe6/xc4 <CJK> +<U87A5> /x8e/xa3/xe6/xc5 <CJK> +<U87F5> /x8e/xa3/xe6/xc6 <CJK> +<U8834> /x8e/xa3/xe6/xc7 <CJK> +<U8850> /x8e/xa3/xe6/xc8 <CJK> +<U8887> /x8e/xa3/xe6/xc9 <CJK> +<U8954> /x8e/xa3/xe6/xca <CJK> +<U8984> /x8e/xa3/xe6/xcb <CJK> +<U8B03> /x8e/xa3/xe6/xcc <CJK> +<U8C52> /x8e/xa3/xe6/xcd <CJK> +<U8CD8> /x8e/xa3/xe6/xce <CJK> +<U8D0C> /x8e/xa3/xe6/xcf <CJK> +<U8D18> /x8e/xa3/xe6/xd0 <CJK> +<U8DB0> /x8e/xa3/xe6/xd1 <CJK> +<U8EBC> /x8e/xa3/xe6/xd2 <CJK> +<U8ED5> /x8e/xa3/xe6/xd3 <CJK> +<U8FAA> /x8e/xa3/xe6/xd4 <CJK> +<U909C> /x8e/xa3/xe6/xd5 <CJK> +<U915C> /x8e/xa3/xe6/xd7 <CJK> +<U922B> /x8e/xa3/xe6/xd8 <CJK> +<U9221> /x8e/xa3/xe6/xd9 <CJK> +<U9273> /x8e/xa3/xe6/xda <CJK> +<U92F4> /x8e/xa3/xe6/xdb <CJK> +<U92F5> /x8e/xa3/xe6/xdc <CJK> +<U933F> /x8e/xa3/xe6/xdd <CJK> +<U9342> /x8e/xa3/xe6/xde <CJK> +<U9386> /x8e/xa3/xe6/xdf <CJK> +<U93BE> /x8e/xa3/xe6/xe0 <CJK> +<U93BC> /x8e/xa3/xe6/xe1 <CJK> +<U93BD> /x8e/xa3/xe6/xe2 <CJK> +<U93F1> /x8e/xa3/xe6/xe3 <CJK> +<U93F2> /x8e/xa3/xe6/xe4 <CJK> +<U93EF> /x8e/xa3/xe6/xe5 <CJK> +<U9422> /x8e/xa3/xe6/xe6 <CJK> +<U9423> /x8e/xa3/xe6/xe7 <CJK> +<U9424> /x8e/xa3/xe6/xe8 <CJK> +<U9467> /x8e/xa3/xe6/xe9 <CJK> +<U9466> /x8e/xa3/xe6/xea <CJK> +<U9597> /x8e/xa3/xe6/xeb <CJK> +<U95CE> /x8e/xa3/xe6/xec <CJK> +<U95E7> /x8e/xa3/xe6/xed <CJK> +<U973B> /x8e/xa3/xe6/xee <CJK> +<U974D> /x8e/xa3/xe6/xef <CJK> +<U98E4> /x8e/xa3/xe6/xf0 <CJK> +<U9942> /x8e/xa3/xe6/xf1 <CJK> +<U9B1D> /x8e/xa3/xe6/xf2 <CJK> +<U9B98> /x8e/xa3/xe6/xf3 <CJK> +<U9D49> /x8e/xa3/xe6/xf5 <CJK> +<U6449> /x8e/xa3/xe6/xf6 <CJK> +<U5E71> /x8e/xa3/xe6/xf7 <CJK> +<U5E85> /x8e/xa3/xe6/xf8 <CJK> +<U61D3> /x8e/xa3/xe6/xf9 <CJK> +<U990E> /x8e/xa3/xe6/xfa <CJK> +<U8002> /x8e/xa3/xe6/xfb <CJK> +<U781E> /x8e/xa3/xe6/xfc <CJK> +<U5528> /x8e/xa3/xe7/xa1 <CJK> +<U5572> /x8e/xa3/xe7/xa2 <CJK> +<U55BA> /x8e/xa3/xe7/xa3 <CJK> +<U55F0> /x8e/xa3/xe7/xa4 <CJK> +<U55EE> /x8e/xa3/xe7/xa5 <CJK> +<U56B8> /x8e/xa3/xe7/xa6 <CJK> +<U56B9> /x8e/xa3/xe7/xa7 <CJK> +<U56C4> /x8e/xa3/xe7/xa8 <CJK> +<U8053> /x8e/xa3/xe7/xa9 <CJK> +<U92B0> /x8e/xa3/xe7/xaa <CJK> +<U00020086> /x8e/xa4/xa1/xa1 <CJK> +<U4E40> /x8e/xa4/xa1/xa2 <CJK> +<U4E41> /x8e/xa4/xa1/xa3 <CJK> +<U4E5A> /x8e/xa4/xa1/xa4 <CJK> +<U00021FE8> /x8e/xa4/xa1/xa5 <CJK> +<U4E02> /x8e/xa4/xa1/xa6 <CJK> +<U4E29> /x8e/xa4/xa1/xa7 <CJK> +<U0002010E> /x8e/xa4/xa1/xa8 <CJK> +<U00020627> /x8e/xa4/xa1/xa9 <CJK> +<U5202> /x8e/xa4/xa1/xaa <CJK> +<U353E> /x8e/xa4/xa1/xab <CJK> +<U5DDC> /x8e/xa4/xa1/xac <CJK> +<U0002053C> /x8e/xa4/xa1/xad <CJK> +<U00020675> /x8e/xa4/xa1/xae <CJK> +<U5342> /x8e/xa4/xa1/xb0 <CJK> +<U536A> /x8e/xa4/xa1/xb1 <CJK> +<U5B52> /x8e/xa4/xa1/xb2 <CJK> +<U0002193C> /x8e/xa4/xa1/xb3 <CJK> +<U5FC4> /x8e/xa4/xa1/xb6 <CJK> +<U624C> /x8e/xa4/xa1/xb7 <CJK> +<U72AD> /x8e/xa4/xa1/xb8 <CJK> +<U4E12> /x8e/xa4/xa1/xb9 <CJK> +<U4E2F> /x8e/xa4/xa1/xba <CJK> +<U4E96> /x8e/xa4/xa1/xbb <CJK> +<U4ED0> /x8e/xa4/xa1/xbc <CJK> +<U5142> /x8e/xa4/xa1/xbd <CJK> +<U5183> /x8e/xa4/xa1/xbe <CJK> +<U000206A5> /x8e/xa4/xa1/xc0 <CJK> +<U000206AA> /x8e/xa4/xa1/xc1 <CJK> +<U0002090F> /x8e/xa4/xa1/xc2 <CJK> +<U00020A0E> /x8e/xa4/xa1/xc3 <CJK> +<U5383> /x8e/xa4/xa1/xc4 <CJK> +<U53B8> /x8e/xa4/xa1/xc5 <CJK> +<U00020B9C> /x8e/xa4/xa1/xc6 <CJK> +<U00020B9B> /x8e/xa4/xa1/xc7 <CJK> +<U0002123C> /x8e/xa4/xa1/xc8 <CJK> +<U5928> /x8e/xa4/xa1/xc9 <CJK> +<U00021BC2> /x8e/xa4/xa1/xca <CJK> +<U5C23> /x8e/xa4/xa1/xcb <CJK> +<U5E01> /x8e/xa4/xa1/xcc <CJK> +<U5F00> /x8e/xa4/xa1/xcd <CJK> +<U000233B4> /x8e/xa4/xa1/xce <CJK> +<U3CB8> /x8e/xa4/xa1/xcf <CJK> +<U706C> /x8e/xa4/xa1/xd0 <CJK> +<U722B> /x8e/xa4/xa1/xd1 <CJK> +<U5188> /x8e/xa4/xa1/xd2 <CJK> +<U8279> /x8e/xa4/xa1/xd3 <CJK> +<U8FB6> /x8e/xa4/xa1/xd4 <CJK> +<U4E17> /x8e/xa4/xa1/xd5 <CJK> +<U00020065> /x8e/xa4/xa1/xd6 <CJK> +<U340C> /x8e/xa4/xa1/xd7 <CJK> +<U000201B2> /x8e/xa4/xa1/xd8 <CJK> +<U3430> /x8e/xa4/xa1/xd9 <CJK> +<U4EE2> /x8e/xa4/xa1/xda <CJK> +<U4EDB> /x8e/xa4/xa1/xdb <CJK> +<U00020477> /x8e/xa4/xa1/xdc <CJK> +<U00020542> /x8e/xa4/xa1/xdd <CJK> +<U51AD> /x8e/xa4/xa1/xde <CJK> +<U00020633> /x8e/xa4/xa1/xdf <CJK> +<U51F7> /x8e/xa4/xa1/xe0 <CJK> +<U34DA> /x8e/xa4/xa1/xe1 <CJK> +<U000206AF> /x8e/xa4/xa1/xe2 <CJK> +<U00020836> /x8e/xa4/xa1/xe3 <CJK> +<U3513> /x8e/xa4/xa1/xe4 <CJK> +<U531B> /x8e/xa4/xa1/xe5 <CJK> +<U5388> /x8e/xa4/xa1/xe6 <CJK> +<U5387> /x8e/xa4/xa1/xe7 <CJK> +<U00020B22> /x8e/xa4/xa1/xe8 <CJK> +<U53CF> /x8e/xa4/xa1/xe9 <CJK> +<U53FD> /x8e/xa4/xa1/xea <CJK> +<U3563> /x8e/xa4/xa1/xeb <CJK> +<U53E7> /x8e/xa4/xa1/xec <CJK> +<U56DC> /x8e/xa4/xa1/xed <CJK> +<U000211A3> /x8e/xa4/xa1/xee <CJK> +<U56D9> /x8e/xa4/xa1/xef <CJK> +<U5725> /x8e/xa4/xa1/xf0 <CJK> +<U5727> /x8e/xa4/xa1/xf1 <CJK> +<U5933> /x8e/xa4/xa1/xf2 <CJK> +<U5C13> /x8e/xa4/xa1/xf3 <CJK> +<U00021C25> /x8e/xa4/xa1/xf4 <CJK> +<U00021C24> /x8e/xa4/xa1/xf5 <CJK> +<U5C75> /x8e/xa4/xa1/xf6 <CJK> +<U00022052> /x8e/xa4/xa1/xf7 <CJK> +<U00022189> /x8e/xa4/xa1/xf8 <CJK> +<U000224BF> /x8e/xa4/xa1/xf9 <CJK> +<U39C4> /x8e/xa4/xa1/xfa <CJK> +<U39C3> /x8e/xa4/xa1/xfb <CJK> +<U66F1> /x8e/xa4/xa1/xfc <CJK> +<U000233B5> /x8e/xa4/xa1/xfd <CJK> +<U0002574C> /x8e/xa4/xa1/xfe <CJK> +<U7F52> /x8e/xa4/xa2/xa1 <CJK> +<U00028E14> /x8e/xa4/xa2/xa2 <CJK> +<U00028E12> /x8e/xa4/xa2/xa3 <CJK> +<U3401> /x8e/xa4/xa2/xa4 <CJK> +<U000200A3> /x8e/xa4/xa2/xa5 <CJK> +<U000200A2> /x8e/xa4/xa2/xa6 <CJK> +<U4E51> /x8e/xa4/xa2/xa7 <CJK> +<U4E6A> /x8e/xa4/xa2/xa8 <CJK> +<U000201B6> /x8e/xa4/xa2/xa9 <CJK> +<U4F0C> /x8e/xa4/xa2/xaa <CJK> +<U000201B5> /x8e/xa4/xa2/xab <CJK> +<U000201B4> /x8e/xa4/xa2/xac <CJK> +<U4EFE> /x8e/xa4/xa2/xad <CJK> +<U4F1B> /x8e/xa4/xa2/xae <CJK> +<U000201C2> /x8e/xa4/xa2/xaf <CJK> +<U000201B8> /x8e/xa4/xa2/xb0 <CJK> +<U343A> /x8e/xa4/xa2/xb1 <CJK> +<U00020479> /x8e/xa4/xa2/xb2 <CJK> +<U34AB> /x8e/xa4/xa2/xb3 <CJK> +<U5173> /x8e/xa4/xa2/xb4 <CJK> +<U00020508> /x8e/xa4/xa2/xb5 <CJK> +<U518E> /x8e/xa4/xa2/xb6 <CJK> +<U0002057A> /x8e/xa4/xa2/xb7 <CJK> +<U000205B6> /x8e/xa4/xa2/xb8 <CJK> +<U000206BD> /x8e/xa4/xa2/xb9 <CJK> +<U000206B7> /x8e/xa4/xa2/xba <CJK> +<U000206BC> /x8e/xa4/xa2/xbb <CJK> +<U34DD> /x8e/xa4/xa2/xbc <CJK> +<U000206C4> /x8e/xa4/xa2/xbd <CJK> +<U000206C9> /x8e/xa4/xa2/xbe <CJK> +<U52A5> /x8e/xa4/xa2/xbf <CJK> +<U3515> /x8e/xa4/xa2/xc0 <CJK> +<U52A7> /x8e/xa4/xa2/xc1 <CJK> +<U52A4> /x8e/xa4/xa2/xc2 <CJK> +<U00020930> /x8e/xa4/xa2/xc3 <CJK> +<U00020983> /x8e/xa4/xa2/xc4 <CJK> +<U00020985> /x8e/xa4/xa2/xc5 <CJK> +<U00020A12> /x8e/xa4/xa2/xc6 <CJK> +<U00020A34> /x8e/xa4/xa2/xc7 <CJK> +<U53BD> /x8e/xa4/xa2/xc8 <CJK> +<U00020AE4> /x8e/xa4/xa2/xc9 <CJK> +<U00020ADE> /x8e/xa4/xa2/xca <CJK> +<U00020B2A> /x8e/xa4/xa2/xcb <CJK> +<U5402> /x8e/xa4/xa2/xcc <CJK> +<U00020BAF> /x8e/xa4/xa2/xcd <CJK> +<U00020BB4> /x8e/xa4/xa2/xce <CJK> +<U00020BB3> /x8e/xa4/xa2/xcf <CJK> +<U00020BB1> /x8e/xa4/xa2/xd0 <CJK> +<U572B> /x8e/xa4/xa2/xd1 <CJK> +<U591B> /x8e/xa4/xa2/xd2 <CJK> +<U5935> /x8e/xa4/xa2/xd3 <CJK> +<U000215DE> /x8e/xa4/xa2/xd4 <CJK> +<U36A7> /x8e/xa4/xa2/xd5 <CJK> +<U36A5> /x8e/xa4/xa2/xd6 <CJK> +<U000216B8> /x8e/xa4/xa2/xd7 <CJK> +<U000216B0> /x8e/xa4/xa2/xd8 <CJK> +<U36A6> /x8e/xa4/xa2/xd9 <CJK> +<U000219C2> /x8e/xa4/xa2/xda <CJK> +<U5C17> /x8e/xa4/xa2/xdc <CJK> +<U377C> /x8e/xa4/xa2/xdd <CJK> +<U00021C2A> /x8e/xa4/xa2/xde <CJK> +<U5C70> /x8e/xa4/xa2/xdf <CJK> +<U5C7D> /x8e/xa4/xa2/xe0 <CJK> +<U37A9> /x8e/xa4/xa2/xe1 <CJK> +<U00021FE9> /x8e/xa4/xa2/xe2 <CJK> +<U5DE9> /x8e/xa4/xa2/xe3 <CJK> +<U00022057> /x8e/xa4/xa2/xe4 <CJK> +<U3834> /x8e/xa4/xa2/xe5 <CJK> +<U3835> /x8e/xa4/xa2/xe6 <CJK> +<U000221B6> /x8e/xa4/xa2/xe7 <CJK> +<U000221D7> /x8e/xa4/xa2/xe8 <CJK> +<U000221DE> /x8e/xa4/xa2/xe9 <CJK> +<U38A8> /x8e/xa4/xa2/xea <CJK> +<U5F19> /x8e/xa4/xa2/xeb <CJK> +<U5F1C> /x8e/xa4/xa2/xec <CJK> +<U5F75> /x8e/xa4/xa2/xed <CJK> +<U000224C2> /x8e/xa4/xa2/xee <CJK> +<U000225AB> /x8e/xa4/xa2/xef <CJK> +<U38FF> /x8e/xa4/xa2/xf0 <CJK> +<U5FC8> /x8e/xa4/xa2/xf1 <CJK> +<U0002298F> /x8e/xa4/xa2/xf2 <CJK> +<U39C7> /x8e/xa4/xa2/xf3 <CJK> +<U39C6> /x8e/xa4/xa2/xf4 <CJK> +<U39C8> /x8e/xa4/xa2/xf5 <CJK> +<U00022A6D> /x8e/xa4/xa2/xf6 <CJK> +<U00022EB5> /x8e/xa4/xa2/xf7 <CJK> +<U3AD0> /x8e/xa4/xa2/xf8 <CJK> +<U3AD1> /x8e/xa4/xa2/xf9 <CJK> +<U000233C0> /x8e/xa4/xa2/xfa <CJK> +<U000233BF> /x8e/xa4/xa2/xfb <CJK> +<U3C59> /x8e/xa4/xa2/xfc <CJK> +<U000239B9> /x8e/xa4/xa2/xfd <CJK> +<U00023B1C> /x8e/xa4/xa2/xfe <CJK> +<U6C12> /x8e/xa4/xa3/xa1 <CJK> +<U3CBD> /x8e/xa4/xa3/xa2 <CJK> +<U00023C80> /x8e/xa4/xa3/xa3 <CJK> +<U00024184> /x8e/xa4/xa3/xa4 <CJK> +<U00024185> /x8e/xa4/xa3/xa5 <CJK> +<U3E28> /x8e/xa4/xa3/xa6 <CJK> +<U72B3> /x8e/xa4/xa3/xa7 <CJK> +<U00024724> /x8e/xa4/xa3/xa8 <CJK> +<U3EA9> /x8e/xa4/xa3/xa9 <CJK> +<U7390> /x8e/xa4/xa3/xaa <CJK> +<U7536> /x8e/xa4/xa3/xab <CJK> +<U0002634C> /x8e/xa4/xa3/xac <CJK> +<U43CC> /x8e/xa4/xa3/xad <CJK> +<U00026AF6> /x8e/xa4/xa3/xae <CJK> +<U8281> /x8e/xa4/xa3/xaf <CJK> +<U8FB8> /x8e/xa4/xa3/xb0 <CJK> +<U00028670> /x8e/xa4/xa3/xb1 <CJK> +<U48B4> /x8e/xa4/xa3/xb2 <CJK> +<U00028675> /x8e/xa4/xa3/xb3 <CJK> +<U00028E17> /x8e/xa4/xa3/xb4 <CJK> +<U4E23> /x8e/xa4/xa3/xb5 <CJK> +<U3416> /x8e/xa4/xa3/xb6 <CJK> +<U342C> /x8e/xa4/xa3/xb7 <CJK> +<U000201F1> /x8e/xa4/xa3/xb8 <CJK> +<U4F2E> /x8e/xa4/xa3/xb9 <CJK> +<U000201DA> /x8e/xa4/xa3/xba <CJK> +<U514F> /x8e/xa4/xa3/xbb <CJK> +<U000205B9> /x8e/xa4/xa3/xbc <CJK> +<U51BA> /x8e/xa4/xa3/xbd <CJK> +<U34DF> /x8e/xa4/xa3/xbe <CJK> +<U34E0> /x8e/xa4/xa3/xbf <CJK> +<U5222> /x8e/xa4/xa3/xc0 <CJK> +<U000206CE> /x8e/xa4/xa3/xc1 <CJK> +<U000206D2> /x8e/xa4/xa3/xc2 <CJK> +<U000206D0> /x8e/xa4/xa3/xc3 <CJK> +<U3517> /x8e/xa4/xa3/xc4 <CJK> +<U00020843> /x8e/xa4/xa3/xc5 <CJK> +<U52AF> /x8e/xa4/xa3/xc6 <CJK> +<U52B0> /x8e/xa4/xa3/xc7 <CJK> +<U52B1> /x8e/xa4/xa3/xc8 <CJK> +<U0002084D> /x8e/xa4/xa3/xc9 <CJK> +<U00020934> /x8e/xa4/xa3/xca <CJK> +<U352F> /x8e/xa4/xa3/xcb <CJK> +<U000209D9> /x8e/xa4/xa3/xcc <CJK> +<U5364> /x8e/xa4/xa3/xcd <CJK> +<U00020A18> /x8e/xa4/xa3/xce <CJK> +<U53D3> /x8e/xa4/xa3/xcf <CJK> +<U00020B38> /x8e/xa4/xa3/xd0 <CJK> +<U356A> /x8e/xa4/xa3/xd1 <CJK> +<U00020BD7> /x8e/xa4/xa3/xd2 <CJK> +<U3570> /x8e/xa4/xa3/xd3 <CJK> +<U356D> /x8e/xa4/xa3/xd4 <CJK> +<U00020BDC> /x8e/xa4/xa3/xd5 <CJK> +<U00020BCB> /x8e/xa4/xa3/xd6 <CJK> +<U00020BD6> /x8e/xa4/xa3/xd7 <CJK> +<U00020BD8> /x8e/xa4/xa3/xd8 <CJK> +<U356E> /x8e/xa4/xa3/xd9 <CJK> +<U00020BD1> /x8e/xa4/xa3/xda <CJK> +<U00020BD2> /x8e/xa4/xa3/xdd <CJK> +<U362B> /x8e/xa4/xa3/xde <CJK> +<U3628> /x8e/xa4/xa3/xdf <CJK> +<U00021259> /x8e/xa4/xa3/xe0 <CJK> +<U593F> /x8e/xa4/xa3/xe2 <CJK> +<U000215E5> /x8e/xa4/xa3/xe3 <CJK> +<U000215E6> /x8e/xa4/xa3/xe4 <CJK> +<U3692> /x8e/xa4/xa3/xe5 <CJK> +<U000215E8> /x8e/xa4/xa3/xe6 <CJK> +<U598B> /x8e/xa4/xa3/xe7 <CJK> +<U000216BD> /x8e/xa4/xa3/xe8 <CJK> +<U5991> /x8e/xa4/xa3/xe9 <CJK> +<U5995> /x8e/xa4/xa3/xea <CJK> +<U000216BE> /x8e/xa4/xa3/xeb <CJK> +<U00021949> /x8e/xa4/xa3/xec <CJK> +<U373F> /x8e/xa4/xa3/xed <CJK> +<U000219CD> /x8e/xa4/xa3/xee <CJK> +<U5B8A> /x8e/xa4/xa3/xef <CJK> +<U374F> /x8e/xa4/xa3/xf0 <CJK> +<U3774> /x8e/xa4/xa3/xf1 <CJK> +<U00021B5E> /x8e/xa4/xa3/xf2 <CJK> +<U00021BD0> /x8e/xa4/xa3/xf3 <CJK> +<U377D> /x8e/xa4/xa3/xf4 <CJK> +<U00021D06> /x8e/xa4/xa3/xf5 <CJK> +<U37B7> /x8e/xa4/xa3/xf6 <CJK> +<U37A3> /x8e/xa4/xa3/xf7 <CJK> +<U37B0> /x8e/xa4/xa3/xf8 <CJK> +<U37B1> /x8e/xa4/xa3/xf9 <CJK> +<U5C87> /x8e/xa4/xa3/xfa <CJK> +<U37AB> /x8e/xa4/xa3/xfb <CJK> +<U00021D7C> /x8e/xa4/xa3/xfc <CJK> +<U00021D71> /x8e/xa4/xa3/xfd <CJK> +<U00021FEF> /x8e/xa4/xa3/xfe <CJK> +<U383A> /x8e/xa4/xa4/xa1 <CJK> +<U3837> /x8e/xa4/xa4/xa2 <CJK> +<U5E0D> /x8e/xa4/xa4/xa3 <CJK> +<U3838> /x8e/xa4/xa4/xa4 <CJK> +<U3840> /x8e/xa4/xa4/xa5 <CJK> +<U0002218D> /x8e/xa4/xa4/xa6 <CJK> +<U000221B7> /x8e/xa4/xa4/xa7 <CJK> +<U5E8E> /x8e/xa4/xa4/xa8 <CJK> +<U389F> /x8e/xa4/xa4/xa9 <CJK> +<U00022333> /x8e/xa4/xa4/xaa <CJK> +<U0002237F> /x8e/xa4/xa4/xab <CJK> +<U5F7A> /x8e/xa4/xa4/xac <CJK> +<U000225F2> /x8e/xa4/xa4/xad <CJK> +<U3904> /x8e/xa4/xa4/xae <CJK> +<U3909> /x8e/xa4/xa4/xaf <CJK> +<U3906> /x8e/xa4/xa4/xb0 <CJK> +<U38FD> /x8e/xa4/xa4/xb1 <CJK> +<U390A> /x8e/xa4/xa4/xb2 <CJK> +<U3907> /x8e/xa4/xa4/xb3 <CJK> +<U00022A2A> /x8e/xa4/xa4/xb4 <CJK> +<U00022A8B> /x8e/xa4/xa4/xb5 <CJK> +<U39CA> /x8e/xa4/xa4/xb6 <CJK> +<U00022A83> /x8e/xa4/xa4/xb7 <CJK> +<U00022A8A> /x8e/xa4/xa4/xb8 <CJK> +<U6290> /x8e/xa4/xa4/xb9 <CJK> +<U39C9> /x8e/xa4/xa4/xba <CJK> +<U00022A8E> /x8e/xa4/xa4/xbb <CJK> +<U629A> /x8e/xa4/xa4/xbc <CJK> +<U00022EB6> /x8e/xa4/xa4/xbd <CJK> +<U653C> /x8e/xa4/xa4/xbe <CJK> +<U653A> /x8e/xa4/xa4/xbf <CJK> +<U3A7F> /x8e/xa4/xa4/xc0 <CJK> +<U6598> /x8e/xa4/xa4/xc1 <CJK> +<U000230D8> /x8e/xa4/xa4/xc2 <CJK> +<U3AD2> /x8e/xa4/xa4/xc3 <CJK> +<U00023156> /x8e/xa4/xa4/xc4 <CJK> +<U000233D2> /x8e/xa4/xa4/xc5 <CJK> +<U6765> /x8e/xa4/xa4/xc6 <CJK> +<U3B43> /x8e/xa4/xa4/xc8 <CJK> +<U000233C2> /x8e/xa4/xa4/xc9 <CJK> +<U00023887> /x8e/xa4/xa4/xca <CJK> +<U00023881> /x8e/xa4/xa4/xcb <CJK> +<U000239C2> /x8e/xa4/xa4/xcc <CJK> +<U000239BC> /x8e/xa4/xa4/xcd <CJK> +<U00023B23> /x8e/xa4/xa4/xce <CJK> +<U3CC1> /x8e/xa4/xa4/xcf <CJK> +<U00023C93> /x8e/xa4/xa4/xd0 <CJK> +<U3CC5> /x8e/xa4/xa4/xd1 <CJK> +<U3DA3> /x8e/xa4/xa4/xd2 <CJK> +<U0002418D> /x8e/xa4/xa4/xd3 <CJK> +<U0002418E> /x8e/xa4/xa4/xd4 <CJK> +<U3E2A> /x8e/xa4/xa4/xd5 <CJK> +<U3E5F> /x8e/xa4/xa4/xd6 <CJK> +<U0002473B> /x8e/xa4/xa4/xd7 <CJK> +<U0002474D> /x8e/xa4/xa4/xd8 <CJK> +<U3E5D> /x8e/xa4/xa4/xd9 <CJK> +<U00024734> /x8e/xa4/xa4/xda <CJK> +<U00024731> /x8e/xa4/xa4/xdb <CJK> +<U000248F2> /x8e/xa4/xa4/xdc <CJK> +<U000248F0> /x8e/xa4/xa4/xdd <CJK> +<U3F17> /x8e/xa4/xa4/xde <CJK> +<U00024C15> /x8e/xa4/xa4/xdf <CJK> +<U00024D28> /x8e/xa4/xa4/xe0 <CJK> +<U3F71> /x8e/xa4/xa4/xe1 <CJK> +<U3F72> /x8e/xa4/xa4/xe2 <CJK> +<U00024F25> /x8e/xa4/xa4/xe3 <CJK> +<U000250E7> /x8e/xa4/xa4/xe4 <CJK> +<U400F> /x8e/xa4/xa4/xe5 <CJK> +<U000250E9> /x8e/xa4/xa4/xe6 <CJK> +<U00025417> /x8e/xa4/xa4/xe7 <CJK> +<U79C2> /x8e/xa4/xa4/xe8 <CJK> +<U4191> /x8e/xa4/xa4/xe9 <CJK> +<U0002626C> /x8e/xa4/xa4/xea <CJK> +<U00026280> /x8e/xa4/xa4/xeb <CJK> +<U0002634B> /x8e/xa4/xa4/xec <CJK> +<U43B2> /x8e/xa4/xa4/xed <CJK> +<U43CF> /x8e/xa4/xa4/xee <CJK> +<U43CE> /x8e/xa4/xa4/xef <CJK> +<U809E> /x8e/xa4/xa4/xf0 <CJK> +<U000268DE> /x8e/xa4/xa4/xf1 <CJK> +<U000268FB> /x8e/xa4/xa4/xf2 <CJK> +<U81EB> /x8e/xa4/xa4/xf3 <CJK> +<U00026951> /x8e/xa4/xa4/xf4 <CJK> +<U8289> /x8e/xa4/xa4/xf5 <CJK> +<U4496> /x8e/xa4/xa4/xf6 <CJK> +<U00026B01> /x8e/xa4/xa4/xf7 <CJK> +<U00026B02> /x8e/xa4/xa4/xf8 <CJK> +<U8296> /x8e/xa4/xa4/xf9 <CJK> +<U00026B05> /x8e/xa4/xa4/xfa <CJK> +<U8287> /x8e/xa4/xa4/xfb <CJK> +<U00026B03> /x8e/xa4/xa4/xfc <CJK> +<U4497> /x8e/xa4/xa4/xfd <CJK> +<U00028451> /x8e/xa4/xa4/xfe <CJK> +<U8FC0> /x8e/xa4/xa5/xa1 <CJK> +<U488B> /x8e/xa4/xa5/xa2 <CJK> +<U8FC3> /x8e/xa4/xa5/xa3 <CJK> +<U00028453> /x8e/xa4/xa5/xa4 <CJK> +<U0002867A> /x8e/xa4/xa5/xa5 <CJK> +<U00028678> /x8e/xa4/xa5/xa6 <CJK> +<U00028676> /x8e/xa4/xa5/xa7 <CJK> +<U00028679> /x8e/xa4/xa5/xa8 <CJK> +<U0002868F> /x8e/xa4/xa5/xa9 <CJK> +<U0002867C> /x8e/xa4/xa5/xaa <CJK> +<U9578> /x8e/xa4/xa5/xab <CJK> +<U00028E1B> /x8e/xa4/xa5/xac <CJK> +<U00028E1C> /x8e/xa4/xa5/xad <CJK> +<U9625> /x8e/xa4/xa5/xae <CJK> +<U00023D92> /x8e/xa4/xa5/xaf <CJK> +<U4E75> /x8e/xa4/xa5/xb0 <CJK> +<U4E74> /x8e/xa4/xa5/xb1 <CJK> +<U0002012E> /x8e/xa4/xa5/xb2 <CJK> +<U0002012C> /x8e/xa4/xa5/xb3 <CJK> +<U342D> /x8e/xa4/xa5/xb4 <CJK> +<U0002020C> /x8e/xa4/xa5/xb5 <CJK> +<U4F99> /x8e/xa4/xa5/xb6 <CJK> +<U0002020B> /x8e/xa4/xa5/xb7 <CJK> +<U3450> /x8e/xa4/xa5/xb8 <CJK> +<U344B> /x8e/xa4/xa5/xb9 <CJK> +<U00020205> /x8e/xa4/xa5/xba <CJK> +<U344F> /x8e/xa4/xa5/xbb <CJK> +<U344C> /x8e/xa4/xa5/xbc <CJK> +<U4F71> /x8e/xa4/xa5/xbe <CJK> +<U5153> /x8e/xa4/xa5/xbf <CJK> +<U51BF> /x8e/xa4/xa5/xc0 <CJK> +<U000205C2> /x8e/xa4/xa5/xc1 <CJK> +<U000205C3> /x8e/xa4/xa5/xc2 <CJK> +<U51C0> /x8e/xa4/xa5/xc3 <CJK> +<U00020648> /x8e/xa4/xa5/xc4 <CJK> +<U51EE> /x8e/xa4/xa5/xc5 <CJK> +<U00020646> /x8e/xa4/xa5/xc6 <CJK> +<U34E4> /x8e/xa4/xa5/xc7 <CJK> +<U34E3> /x8e/xa4/xa5/xc8 <CJK> +<U000206EA> /x8e/xa4/xa5/xc9 <CJK> +<U34E1> /x8e/xa4/xa5/xca <CJK> +<U000206EB> /x8e/xa4/xa5/xcb <CJK> +<U34E2> /x8e/xa4/xa5/xcc <CJK> +<U000206EE> /x8e/xa4/xa5/xcd <CJK> +<U523D> /x8e/xa4/xa5/xce <CJK> +<U3519> /x8e/xa4/xa5/xcf <CJK> +<U52BD> /x8e/xa4/xa5/xd0 <CJK> +<U530C> /x8e/xa4/xa5/xd1 <CJK> +<U000208D8> /x8e/xa4/xa5/xd2 <CJK> +<U00024C1E> /x8e/xa4/xa5/xd3 <CJK> +<U000209DF> /x8e/xa4/xa5/xd4 <CJK> +<U000209DE> /x8e/xa4/xa5/xd5 <CJK> +<U3541> /x8e/xa4/xa5/xd6 <CJK> +<U7F37> /x8e/xa4/xa5/xd7 <CJK> +<U00020A4F> /x8e/xa4/xa5/xd8 <CJK> +<U53C0> /x8e/xa4/xa5/xd9 <CJK> +<U355E> /x8e/xa4/xa5/xda <CJK> +<U00020C0D> /x8e/xa4/xa5/xdb <CJK> +<U00020C08> /x8e/xa4/xa5/xdc <CJK> +<U3579> /x8e/xa4/xa5/xdd <CJK> +<U00020C09> /x8e/xa4/xa5/xde <CJK> +<U546E> /x8e/xa4/xa5/xdf <CJK> +<U5483> /x8e/xa4/xa5/xe0 <CJK> +<U00020C12> /x8e/xa4/xa5/xe1 <CJK> +<U00020C65> /x8e/xa4/xa5/xe2 <CJK> +<U545E> /x8e/xa4/xa5/xe3 <CJK> +<U545D> /x8e/xa4/xa5/xe4 <CJK> +<U577E> /x8e/xa4/xa5/xe5 <CJK> +<U5779> /x8e/xa4/xa5/xe6 <CJK> +<U00021289> /x8e/xa4/xa5/xe7 <CJK> +<U577A> /x8e/xa4/xa5/xe8 <CJK> +<U576C> /x8e/xa4/xa5/xe9 <CJK> +<U00021284> /x8e/xa4/xa5/xea <CJK> +<U0002129E> /x8e/xa4/xa5/xeb <CJK> +<U0002128B> /x8e/xa4/xa5/xec <CJK> +<U3632> /x8e/xa4/xa5/xed <CJK> +<U5787> /x8e/xa4/xa5/xee <CJK> +<U00021562> /x8e/xa4/xa5/xef <CJK> +<U591D> /x8e/xa4/xa5/xf0 <CJK> +<U3694> /x8e/xa4/xa5/xf1 <CJK> +<U5946> /x8e/xa4/xa5/xf2 <CJK> +<U3697> /x8e/xa4/xa5/xf3 <CJK> +<U000215F9> /x8e/xa4/xa5/xf4 <CJK> +<U5943> /x8e/xa4/xa5/xf5 <CJK> +<U000215F7> /x8e/xa4/xa5/xf6 <CJK> +<U3696> /x8e/xa4/xa5/xf7 <CJK> +<U3698> /x8e/xa4/xa5/xf8 <CJK> +<U00021606> /x8e/xa4/xa5/xf9 <CJK> +<U000216DD> /x8e/xa4/xa5/xfa <CJK> +<U36B2> /x8e/xa4/xa5/xfb <CJK> +<U000216D9> /x8e/xa4/xa5/xfc <CJK> +<U000216DF> /x8e/xa4/xa5/xfd <CJK> +<U000216E2> /x8e/xa4/xa5/xfe <CJK> +<U36B9> /x8e/xa4/xa6/xa1 <CJK> +<U5B61> /x8e/xa4/xa6/xa2 <CJK> +<U5B66> /x8e/xa4/xa6/xa3 <CJK> +<U000200F1> /x8e/xa4/xa6/xa4 <CJK> +<U5B90> /x8e/xa4/xa6/xa5 <CJK> +<U3775> /x8e/xa4/xa6/xa6 <CJK> +<U377F> /x8e/xa4/xa6/xa7 <CJK> +<U377E> /x8e/xa4/xa6/xa8 <CJK> +<U5C29> /x8e/xa4/xa6/xa9 <CJK> +<U378F> /x8e/xa4/xa6/xaa <CJK> +<U00021C3F> /x8e/xa4/xa6/xab <CJK> +<U00021C3E> /x8e/xa4/xa6/xac <CJK> +<U00021D0B> /x8e/xa4/xa6/xad <CJK> +<U37BD> /x8e/xa4/xa6/xae <CJK> +<U5CB2> /x8e/xa4/xa6/xaf <CJK> +<U00021D83> /x8e/xa4/xa6/xb0 <CJK> +<U37BB> /x8e/xa4/xa6/xb1 <CJK> +<U37BC> /x8e/xa4/xa6/xb2 <CJK> +<U00021D86> /x8e/xa4/xa6/xb3 <CJK> +<U5CC0> /x8e/xa4/xa6/xb4 <CJK> +<U0002207C> /x8e/xa4/xa6/xb5 <CJK> +<U383D> /x8e/xa4/xa6/xb6 <CJK> +<U383E> /x8e/xa4/xa6/xb7 <CJK> +<U3874> /x8e/xa4/xa6/xb8 <CJK> +<U000221F7> /x8e/xa4/xa6/xb9 <CJK> +<U387A> /x8e/xa4/xa6/xba <CJK> +<U3876> /x8e/xa4/xa6/xbb <CJK> +<U3878> /x8e/xa4/xa6/xbc <CJK> +<U3875> /x8e/xa4/xa6/xbd <CJK> +<U000221FB> /x8e/xa4/xa6/xbe <CJK> +<U0002233B> /x8e/xa4/xa6/xbf <CJK> +<U38AF> /x8e/xa4/xa6/xc0 <CJK> +<U38B0> /x8e/xa4/xa6/xc1 <CJK> +<U38C7> /x8e/xa4/xa6/xc2 <CJK> +<U38CC> /x8e/xa4/xa6/xc3 <CJK> +<U000225F9> /x8e/xa4/xa6/xc4 <CJK> +<U000225CA> /x8e/xa4/xa6/xc5 <CJK> +<U3916> /x8e/xa4/xa6/xc6 <CJK> +<U000225FF> /x8e/xa4/xa6/xc7 <CJK> +<U3912> /x8e/xa4/xa6/xc8 <CJK> +<U391D> /x8e/xa4/xa6/xc9 <CJK> +<U00022609> /x8e/xa4/xa6/xca <CJK> +<U00022603> /x8e/xa4/xa6/xcb <CJK> +<U3915> /x8e/xa4/xa6/xcc <CJK> +<U390F> /x8e/xa4/xa6/xcd <CJK> +<U3914> /x8e/xa4/xa6/xce <CJK> +<U601F> /x8e/xa4/xa6/xcf <CJK> +<U5FE2> /x8e/xa4/xa6/xd0 <CJK> +<U00022610> /x8e/xa4/xa6/xd1 <CJK> +<U0002299A> /x8e/xa4/xa6/xd2 <CJK> +<U0002299F> /x8e/xa4/xa6/xd3 <CJK> +<U39B0> /x8e/xa4/xa6/xd4 <CJK> +<U39BF> /x8e/xa4/xa6/xd5 <CJK> +<U39C0> /x8e/xa4/xa6/xd6 <CJK> +<U00022A87> /x8e/xa4/xa6/xd7 <CJK> +<U39D2> /x8e/xa4/xa6/xd8 <CJK> +<U39D9> /x8e/xa4/xa6/xd9 <CJK> +<U00022EB7> /x8e/xa4/xa6/xda <CJK> +<U3A7A> /x8e/xa4/xa6/xdb <CJK> +<U00022F08> /x8e/xa4/xa6/xdc <CJK> +<U00022EF9> /x8e/xa4/xa6/xdd <CJK> +<U00022EF4> /x8e/xa4/xa6/xe0 <CJK> +<U6616> /x8e/xa4/xa6/xe1 <CJK> +<U65F9> /x8e/xa4/xa6/xe2 <CJK> +<U3ADA> /x8e/xa4/xa6/xe3 <CJK> +<U00026657> /x8e/xa4/xa6/xe4 <CJK> +<U6788> /x8e/xa4/xa6/xe5 <CJK> +<U000233D6> /x8e/xa4/xa6/xe6 <CJK> +<U679B> /x8e/xa4/xa6/xe7 <CJK> +<U676E> /x8e/xa4/xa6/xe9 <CJK> +<U679E> /x8e/xa4/xa6/xea <CJK> +<U000233D4> /x8e/xa4/xa6/xeb <CJK> +<U3C22> /x8e/xa4/xa6/xec <CJK> +<U3C1F> /x8e/xa4/xa6/xed <CJK> +<U00023890> /x8e/xa4/xa6/xee <CJK> +<U0002388D> /x8e/xa4/xa6/xef <CJK> +<U3C21> /x8e/xa4/xa6/xf0 <CJK> +<U6B24> /x8e/xa4/xa6/xf1 <CJK> +<U00023960> /x8e/xa4/xa6/xf2 <CJK> +<U000239CE> /x8e/xa4/xa6/xf3 <CJK> +<U000239CF> /x8e/xa4/xa6/xf4 <CJK> +<U3C5C> /x8e/xa4/xa6/xf5 <CJK> +<U6B7D> /x8e/xa4/xa6/xf6 <CJK> +<U000239D1> /x8e/xa4/xa6/xf7 <CJK> +<U3C7D> /x8e/xa4/xa6/xf8 <CJK> +<U3C8D> /x8e/xa4/xa6/xf9 <CJK> +<U3C8F> /x8e/xa4/xa6/xfa <CJK> +<U6CE6> /x8e/xa4/xa6/xfb <CJK> +<U00023CCA> /x8e/xa4/xa6/xfc <CJK> +<U6CCB> /x8e/xa4/xa6/xfd <CJK> +<U3CD0> /x8e/xa4/xa6/xfe <CJK> +<U00023CB7> /x8e/xa4/xa7/xa1 <CJK> +<U3CD8> /x8e/xa4/xa7/xa2 <CJK> +<U00023CB2> /x8e/xa4/xa7/xa3 <CJK> +<U00023CBB> /x8e/xa4/xa7/xa4 <CJK> +<U00023CB9> /x8e/xa4/xa7/xa5 <CJK> +<U6CB5> /x8e/xa4/xa7/xa6 <CJK> +<U3DA7> /x8e/xa4/xa7/xa7 <CJK> +<U0002419E> /x8e/xa4/xa7/xa8 <CJK> +<U7097> /x8e/xa4/xa7/xa9 <CJK> +<U000241B2> /x8e/xa4/xa7/xaa <CJK> +<U709B> /x8e/xa4/xa7/xab <CJK> +<U3E12> /x8e/xa4/xa7/xac <CJK> +<U0002456F> /x8e/xa4/xa7/xad <CJK> +<U000245AC> /x8e/xa4/xa7/xae <CJK> +<U3E2F> /x8e/xa4/xa7/xaf <CJK> +<U00024623> /x8e/xa4/xa7/xb0 <CJK> +<U726B> /x8e/xa4/xa7/xb1 <CJK> +<U3E2E> /x8e/xa4/xa7/xb2 <CJK> +<U3E2C> /x8e/xa4/xa7/xb3 <CJK> +<U3E5C> /x8e/xa4/xa7/xb4 <CJK> +<U0002476C> /x8e/xa4/xa7/xb5 <CJK> +<U72D5> /x8e/xa4/xa7/xb6 <CJK> +<U00024732> /x8e/xa4/xa7/xb7 <CJK> +<U0002475E> /x8e/xa4/xa7/xb8 <CJK> +<U3E62> /x8e/xa4/xa7/xb9 <CJK> +<U3E67> /x8e/xa4/xa7/xba <CJK> +<U3EB4> /x8e/xa4/xa7/xbb <CJK> +<U000248FB> /x8e/xa4/xa7/xbc <CJK> +<U00024B29> /x8e/xa4/xa7/xbd <CJK> +<U00024BBD> /x8e/xa4/xa7/xbe <CJK> +<U00024C1F> /x8e/xa4/xa7/xbf <CJK> +<U7543> /x8e/xa4/xa7/xc0 <CJK> +<U00022341> /x8e/xa4/xa7/xc1 <CJK> +<U00024C1D> /x8e/xa4/xa7/xc2 <CJK> +<U759C> /x8e/xa4/xa7/xc3 <CJK> +<U00024D31> /x8e/xa4/xa7/xc4 <CJK> +<U00024D2F> /x8e/xa4/xa7/xc5 <CJK> +<U3FEA> /x8e/xa4/xa7/xc6 <CJK> +<U00025043> /x8e/xa4/xa7/xc7 <CJK> +<U3FFB> /x8e/xa4/xa7/xc8 <CJK> +<U00025041> /x8e/xa4/xa7/xc9 <CJK> +<U4014> /x8e/xa4/xa7/xca <CJK> +<U000250F5> /x8e/xa4/xa7/xcb <CJK> +<U4013> /x8e/xa4/xa7/xcc <CJK> +<U4012> /x8e/xa4/xa7/xcd <CJK> +<U4010> /x8e/xa4/xa7/xce <CJK> +<U4011> /x8e/xa4/xa7/xcf <CJK> +<U000250F2> /x8e/xa4/xa7/xd0 <CJK> +<U4086> /x8e/xa4/xa7/xd1 <CJK> +<U77E4> /x8e/xa4/xa7/xd2 <CJK> +<U4098> /x8e/xa4/xa7/xd3 <CJK> +<U0002541E> /x8e/xa4/xa7/xd4 <CJK> +<U00025754> /x8e/xa4/xa7/xd5 <CJK> +<U412A> /x8e/xa4/xa7/xd6 <CJK> +<U00025756> /x8e/xa4/xa7/xd7 <CJK> +<U00025929> /x8e/xa4/xa7/xd8 <CJK> +<U00025927> /x8e/xa4/xa7/xd9 <CJK> +<U00025928> /x8e/xa4/xa7/xda <CJK> +<U7ACE> /x8e/xa4/xa7/xdb <CJK> +<U42B5> /x8e/xa4/xa7/xdc <CJK> +<U00026279> /x8e/xa4/xa7/xdd <CJK> +<U0002627E> /x8e/xa4/xa7/xde <CJK> +<U000264B6> /x8e/xa4/xa7/xdf <CJK> +<U000264B7> /x8e/xa4/xa7/xe0 <CJK> +<U8013> /x8e/xa4/xa7/xe1 <CJK> +<U43D6> /x8e/xa4/xa7/xe2 <CJK> +<U43D8> /x8e/xa4/xa7/xe3 <CJK> +<U80B7> /x8e/xa4/xa7/xe4 <CJK> +<U43D9> /x8e/xa4/xa7/xe5 <CJK> +<U43D4> /x8e/xa4/xa7/xe6 <CJK> +<U43D7> /x8e/xa4/xa7/xe7 <CJK> +<U80B9> /x8e/xa4/xa7/xe9 <CJK> +<U0002664D> /x8e/xa4/xa7/xeb <CJK> +<U81E4> /x8e/xa4/xa7/xec <CJK> +<U81FD> /x8e/xa4/xa7/xed <CJK> +<U820F> /x8e/xa4/xa7/xee <CJK> +<U4460> /x8e/xa4/xa7/xef <CJK> +<U00026A09> /x8e/xa4/xa7/xf0 <CJK> +<U00026A08> /x8e/xa4/xa7/xf1 <CJK> +<U449E> /x8e/xa4/xa7/xf2 <CJK> +<U44A1> /x8e/xa4/xa7/xf3 <CJK> +<U00026B1E> /x8e/xa4/xa7/xf4 <CJK> +<U00026B1A> /x8e/xa4/xa7/xf5 <CJK> +<U00026B23> /x8e/xa4/xa7/xf6 <CJK> +<U00026B15> /x8e/xa4/xa7/xf7 <CJK> +<U00026B19> /x8e/xa4/xa7/xf8 <CJK> +<U00026B16> /x8e/xa4/xa7/xf9 <CJK> +<U82BF> /x8e/xa4/xa7/xfa <CJK> +<U82CA> /x8e/xa4/xa7/xfb <CJK> +<U00026B14> /x8e/xa4/xa7/xfc <CJK> +<U00026B18> /x8e/xa4/xa7/xfd <CJK> +<U82C1> /x8e/xa4/xa7/xfe <CJK> +<U44A0> /x8e/xa4/xa8/xa1 <CJK> +<U0002721F> /x8e/xa4/xa8/xa2 <CJK> +<U000275DD> /x8e/xa4/xa8/xa3 <CJK> +<U000275DF> /x8e/xa4/xa8/xa4 <CJK> +<U00028469> /x8e/xa4/xa8/xa5 <CJK> +<U8FD0> /x8e/xa4/xa8/xa6 <CJK> +<U0002846C> /x8e/xa4/xa8/xa8 <CJK> +<U48B9> /x8e/xa4/xa8/xa9 <CJK> +<U00028693> /x8e/xa4/xa8/xaa <CJK> +<U90AE> /x8e/xa4/xa8/xab <CJK> +<U00028695> /x8e/xa4/xa8/xac <CJK> +<U00028694> /x8e/xa4/xa8/xad <CJK> +<U00028691> /x8e/xa4/xa8/xae <CJK> +<U00028697> /x8e/xa4/xa8/xaf <CJK> +<U00028E30> /x8e/xa4/xa8/xb0 <CJK> +<U49C1> /x8e/xa4/xa8/xb1 <CJK> +<U49C2> /x8e/xa4/xa8/xb2 <CJK> +<U9638> /x8e/xa4/xa8/xb3 <CJK> +<U341C> /x8e/xa4/xa8/xb5 <CJK> +<U00020231> /x8e/xa4/xa8/xb6 <CJK> +<U345E> /x8e/xa4/xa8/xb7 <CJK> +<U4FBC> /x8e/xa4/xa8/xb8 <CJK> +<U3459> /x8e/xa4/xa8/xb9 <CJK> +<U345C> /x8e/xa4/xa8/xba <CJK> +<U00020236> /x8e/xa4/xa8/xbb <CJK> +<U345F> /x8e/xa4/xa8/xbc <CJK> +<U4FE9> /x8e/xa4/xa8/xbd <CJK> +<U4FBD> /x8e/xa4/xa8/xbe <CJK> +<U4FE2> /x8e/xa4/xa8/xbf <CJK> +<U5158> /x8e/xa4/xa8/xc0 <CJK> +<U000205C9> /x8e/xa4/xa8/xc1 <CJK> +<U000205CA> /x8e/xa4/xa8/xc2 <CJK> +<U34CE> /x8e/xa4/xa8/xc3 <CJK> +<U00020718> /x8e/xa4/xa8/xc4 <CJK> +<U00020712> /x8e/xa4/xa8/xc5 <CJK> +<U00020719> /x8e/xa4/xa8/xc6 <CJK> +<U00020710> /x8e/xa4/xa8/xc7 <CJK> +<U00020716> /x8e/xa4/xa8/xc8 <CJK> +<U52C6> /x8e/xa4/xa8/xc9 <CJK> +<U0002085F> /x8e/xa4/xa8/xca <CJK> +<U52C8> /x8e/xa4/xa8/xcb <CJK> +<U000208DF> /x8e/xa4/xa8/xcc <CJK> +<U00020917> /x8e/xa4/xa8/xcd <CJK> +<U5328> /x8e/xa4/xa8/xce <CJK> +<U0002093C> /x8e/xa4/xa8/xcf <CJK> +<U5329> /x8e/xa4/xa8/xd0 <CJK> +<U000209EA> /x8e/xa4/xa8/xd1 <CJK> +<U000209E9> /x8e/xa4/xa8/xd2 <CJK> +<U00020A1C> /x8e/xa4/xa8/xd3 <CJK> +<U00020A58> /x8e/xa4/xa8/xd4 <CJK> +<U00020A64> /x8e/xa4/xa8/xd5 <CJK> +<U00020AF3> /x8e/xa4/xa8/xd6 <CJK> +<U355F> /x8e/xa4/xa8/xd7 <CJK> +<U00020C97> /x8e/xa4/xa8/xd8 <CJK> +<U3585> /x8e/xa4/xa8/xd9 <CJK> +<U00020C5A> /x8e/xa4/xa8/xda <CJK> +<U00020C59> /x8e/xa4/xa8/xdb <CJK> +<U3586> /x8e/xa4/xa8/xdc <CJK> +<U00020C8E> /x8e/xa4/xa8/xdd <CJK> +<U57B4> /x8e/xa4/xa8/xde <CJK> +<U000212BC> /x8e/xa4/xa8/xdf <CJK> +<U57A9> /x8e/xa4/xa8/xe0 <CJK> +<U3687> /x8e/xa4/xa8/xe1 <CJK> +<U0002160D> /x8e/xa4/xa8/xe2 <CJK> +<U000215FC> /x8e/xa4/xa8/xe3 <CJK> +<U0002160C> /x8e/xa4/xa8/xe4 <CJK> +<U00021707> /x8e/xa4/xa8/xe5 <CJK> +<U0002170A> /x8e/xa4/xa8/xe6 <CJK> +<U36CA> /x8e/xa4/xa8/xe7 <CJK> +<U00021702> /x8e/xa4/xa8/xe8 <CJK> +<U36C3> /x8e/xa4/xa8/xe9 <CJK> +<U00021726> /x8e/xa4/xa8/xea <CJK> +<U00021708> /x8e/xa4/xa8/xeb <CJK> +<U0002171D> /x8e/xa4/xa8/xec <CJK> +<U36C2> /x8e/xa4/xa8/xed <CJK> +<U5B68> /x8e/xa4/xa8/xee <CJK> +<U0002194E> /x8e/xa4/xa8/xef <CJK> +<U3741> /x8e/xa4/xa8/xf0 <CJK> +<U000219ED> /x8e/xa4/xa8/xf1 <CJK> +<U000219EE> /x8e/xa4/xa8/xf2 <CJK> +<U000219EF> /x8e/xa4/xa8/xf3 <CJK> +<U3780> /x8e/xa4/xa8/xf4 <CJK> +<U3781> /x8e/xa4/xa8/xf5 <CJK> +<U00021C50> /x8e/xa4/xa8/xf6 <CJK> +<U00021C4C> /x8e/xa4/xa8/xf7 <CJK> +<U3793> /x8e/xa4/xa8/xf8 <CJK> +<U3792> /x8e/xa4/xa8/xf9 <CJK> +<U00021C4F> /x8e/xa4/xa8/xfa <CJK> +<U37C5> /x8e/xa4/xa8/xfb <CJK> +<U00021DD4> /x8e/xa4/xa8/xfc <CJK> +<U00021DB0> /x8e/xa4/xa8/xfe <CJK> +<U3846> /x8e/xa4/xa9/xa1 <CJK> +<U3841> /x8e/xa4/xa9/xa2 <CJK> +<U3845> /x8e/xa4/xa9/xa3 <CJK> +<U3842> /x8e/xa4/xa9/xa4 <CJK> +<U383F> /x8e/xa4/xa9/xa5 <CJK> +<U000220A5> /x8e/xa4/xa9/xa6 <CJK> +<U00022209> /x8e/xa4/xa9/xa7 <CJK> +<U3882> /x8e/xa4/xa9/xa8 <CJK> +<U3881> /x8e/xa4/xa9/xa9 <CJK> +<U387F> /x8e/xa4/xa9/xaa <CJK> +<U38A5> /x8e/xa4/xa9/xab <CJK> +<U5F2B> /x8e/xa4/xa9/xac <CJK> +<U38B3> /x8e/xa4/xa9/xad <CJK> +<U38B5> /x8e/xa4/xa9/xae <CJK> +<U000223F3> /x8e/xa4/xa9/xaf <CJK> +<U000223D7> /x8e/xa4/xa9/xb0 <CJK> +<U5F8D> /x8e/xa4/xa9/xb1 <CJK> +<U38DA> /x8e/xa4/xa9/xb2 <CJK> +<U000224DC> /x8e/xa4/xa9/xb3 <CJK> +<U38DB> /x8e/xa4/xa9/xb4 <CJK> +<U390D> /x8e/xa4/xa9/xb5 <CJK> +<U6018> /x8e/xa4/xa9/xb6 <CJK> +<U390E> /x8e/xa4/xa9/xb7 <CJK> +<U0002260B> /x8e/xa4/xa9/xb8 <CJK> +<U391E> /x8e/xa4/xa9/xb9 <CJK> +<U3925> /x8e/xa4/xa9/xba <CJK> +<U3926> /x8e/xa4/xa9/xbb <CJK> +<U391C> /x8e/xa4/xa9/xbc <CJK> +<U3921> /x8e/xa4/xa9/xbd <CJK> +<U6057> /x8e/xa4/xa9/xbe <CJK> +<U6048> /x8e/xa4/xa9/xbf <CJK> +<U3927> /x8e/xa4/xa9/xc0 <CJK> +<U391A> /x8e/xa4/xa9/xc1 <CJK> +<U0002263A> /x8e/xa4/xa9/xc2 <CJK> +<U0002260D> /x8e/xa4/xa9/xc3 <CJK> +<U00022611> /x8e/xa4/xa9/xc4 <CJK> +<U6038> /x8e/xa4/xa9/xc5 <CJK> +<U00022620> /x8e/xa4/xa9/xc6 <CJK> +<U00022601> /x8e/xa4/xa9/xc7 <CJK> +<U3924> /x8e/xa4/xa9/xc8 <CJK> +<U00022637> /x8e/xa4/xa9/xc9 <CJK> +<U6071> /x8e/xa4/xa9/xcb <CJK> +<U000229AA> /x8e/xa4/xa9/xcc <CJK> +<U39C1> /x8e/xa4/xa9/xcd <CJK> +<U39E1> /x8e/xa4/xa9/xce <CJK> +<U00022AE7> /x8e/xa4/xa9/xcf <CJK> +<U00022AE8> /x8e/xa4/xa9/xd0 <CJK> +<U6312> /x8e/xa4/xa9/xd1 <CJK> +<U39EB> /x8e/xa4/xa9/xd2 <CJK> +<U00022AF5> /x8e/xa4/xa9/xd3 <CJK> +<U39E2> /x8e/xa4/xa9/xd4 <CJK> +<U39D7> /x8e/xa4/xa9/xd5 <CJK> +<U39E9> /x8e/xa4/xa9/xd6 <CJK> +<U00022B35> /x8e/xa4/xa9/xd7 <CJK> +<U00022AE6> /x8e/xa4/xa9/xd8 <CJK> +<U630A> /x8e/xa4/xa9/xd9 <CJK> +<U00022AF8> /x8e/xa4/xa9/xda <CJK> +<U6323> /x8e/xa4/xa9/xdb <CJK> +<U00022AF1> /x8e/xa4/xa9/xdc <CJK> +<U3A84> /x8e/xa4/xa9/xdd <CJK> +<U00022F14> /x8e/xa4/xa9/xde <CJK> +<U00022F15> /x8e/xa4/xa9/xdf <CJK> +<U00022F09> /x8e/xa4/xa9/xe0 <CJK> +<U3AB5> /x8e/xa4/xa9/xe1 <CJK> +<U3ABC> /x8e/xa4/xa9/xe2 <CJK> +<U3ADC> /x8e/xa4/xa9/xe3 <CJK> +<U3ADE> /x8e/xa4/xa9/xe4 <CJK> +<U3ADF> /x8e/xa4/xa9/xe5 <CJK> +<U0002317B> /x8e/xa4/xa9/xe6 <CJK> +<U662A> /x8e/xa4/xa9/xe7 <CJK> +<U0002317E> /x8e/xa4/xa9/xe8 <CJK> +<U00023366> /x8e/xa4/xa9/xe9 <CJK> +<U00023367> /x8e/xa4/xa9/xea <CJK> +<U0002340A> /x8e/xa4/xa9/xeb <CJK> +<U3B54> /x8e/xa4/xa9/xec <CJK> +<U67E0> /x8e/xa4/xa9/xed <CJK> +<U67BE> /x8e/xa4/xa9/xee <CJK> +<U3B53> /x8e/xa4/xa9/xef <CJK> +<U3C24> /x8e/xa4/xa9/xf0 <CJK> +<U3C25> /x8e/xa4/xa9/xf1 <CJK> +<U6B29> /x8e/xa4/xa9/xf2 <CJK> +<U3C28> /x8e/xa4/xa9/xf3 <CJK> +<U3C27> /x8e/xa4/xa9/xf4 <CJK> +<U0002389C> /x8e/xa4/xa9/xf5 <CJK> +<U00023962> /x8e/xa4/xa9/xf6 <CJK> +<U000239E1> /x8e/xa4/xa9/xf7 <CJK> +<U000239DE> /x8e/xa4/xa9/xf8 <CJK> +<U000239DF> /x8e/xa4/xa9/xf9 <CJK> +<U000239E9> /x8e/xa4/xa9/xfa <CJK> +<U3C8B> /x8e/xa4/xa9/xfb <CJK> +<U00023CE4> /x8e/xa4/xa9/xfc <CJK> +<U00023CF7> /x8e/xa4/xa9/xfd <CJK> +<U3CDC> /x8e/xa4/xa9/xfe <CJK> +<U6D43> /x8e/xa4/xaa/xa1 <CJK> +<U00023CEA> /x8e/xa4/xaa/xa2 <CJK> +<U00023CF6> /x8e/xa4/xaa/xa3 <CJK> +<U00023D12> /x8e/xa4/xaa/xa4 <CJK> +<U70A6> /x8e/xa4/xaa/xa6 <CJK> +<U3DB2> /x8e/xa4/xaa/xa7 <CJK> +<U70C0> /x8e/xa4/xaa/xa8 <CJK> +<U000241D9> /x8e/xa4/xaa/xa9 <CJK> +<U722F> /x8e/xa4/xaa/xaa <CJK> +<U0002455F> /x8e/xa4/xaa/xab <CJK> +<U3E1B> /x8e/xa4/xaa/xac <CJK> +<U00024573> /x8e/xa4/xaa/xad <CJK> +<U3E32> /x8e/xa4/xaa/xae <CJK> +<U7271> /x8e/xa4/xaa/xaf <CJK> +<U0002463F> /x8e/xa4/xaa/xb0 <CJK> +<U00024778> /x8e/xa4/xaa/xb1 <CJK> +<U3E6B> /x8e/xa4/xaa/xb2 <CJK> +<U0002477D> /x8e/xa4/xaa/xb3 <CJK> +<U3E6C> /x8e/xa4/xaa/xb4 <CJK> +<U3E6D> /x8e/xa4/xaa/xb5 <CJK> +<U00024912> /x8e/xa4/xaa/xb6 <CJK> +<U3EB9> /x8e/xa4/xaa/xb7 <CJK> +<U3EBA> /x8e/xa4/xaa/xb8 <CJK> +<U3F09> /x8e/xa4/xaa/xb9 <CJK> +<U3F0A> /x8e/xa4/xaa/xba <CJK> +<U00024B2F> /x8e/xa4/xaa/xbb <CJK> +<U74EA> /x8e/xa4/xaa/xbc <CJK> +<U3F1B> /x8e/xa4/xaa/xbd <CJK> +<U00024B30> /x8e/xa4/xaa/xbe <CJK> +<U00024BDB> /x8e/xa4/xaa/xbf <CJK> +<U7520> /x8e/xa4/xaa/xc0 <CJK> +<U3F58> /x8e/xa4/xaa/xc1 <CJK> +<U00024C29> /x8e/xa4/xaa/xc2 <CJK> +<U3F5A> /x8e/xa4/xaa/xc3 <CJK> +<U00024D40> /x8e/xa4/xaa/xc5 <CJK> +<U3F77> /x8e/xa4/xaa/xc6 <CJK> +<U00024D3D> /x8e/xa4/xaa/xc7 <CJK> +<U00024D3E> /x8e/xa4/xaa/xc8 <CJK> +<U3F79> /x8e/xa4/xaa/xc9 <CJK> +<U75A9> /x8e/xa4/xaa/xca <CJK> +<U00024D38> /x8e/xa4/xaa/xcb <CJK> +<U7685> /x8e/xa4/xaa/xcc <CJK> +<U00024F48> /x8e/xa4/xaa/xcd <CJK> +<U3FEB> /x8e/xa4/xaa/xce <CJK> +<U00024FD0> /x8e/xa4/xaa/xcf <CJK> +<U3FFD> /x8e/xa4/xaa/xd0 <CJK> +<U3FFC> /x8e/xa4/xaa/xd1 <CJK> +<U7706> /x8e/xa4/xaa/xd2 <CJK> +<U4015> /x8e/xa4/xaa/xd3 <CJK> +<U4018> /x8e/xa4/xaa/xd4 <CJK> +<U76F6> /x8e/xa4/xaa/xd5 <CJK> +<U4016> /x8e/xa4/xaa/xd6 <CJK> +<U4017> /x8e/xa4/xaa/xd7 <CJK> +<U4019> /x8e/xa4/xaa/xd8 <CJK> +<U7700> /x8e/xa4/xaa/xd9 <CJK> +<U401B> /x8e/xa4/xaa/xda <CJK> +<U0002510E> /x8e/xa4/xaa/xdb <CJK> +<U00025109> /x8e/xa4/xaa/xdc <CJK> +<U7702> /x8e/xa4/xaa/xdd <CJK> +<U00025107> /x8e/xa4/xaa/xde <CJK> +<U4087> /x8e/xa4/xaa/xdf <CJK> +<U0002535F> /x8e/xa4/xaa/xe0 <CJK> +<U00025360> /x8e/xa4/xaa/xe1 <CJK> +<U409C> /x8e/xa4/xaa/xe2 <CJK> +<U0002542A> /x8e/xa4/xaa/xe3 <CJK> +<U409A> /x8e/xa4/xaa/xe4 <CJK> +<U00025429> /x8e/xa4/xaa/xe5 <CJK> +<U40FF> /x8e/xa4/xaa/xe6 <CJK> +<U40FE> /x8e/xa4/xaa/xe7 <CJK> +<U0002564D> /x8e/xa4/xaa/xe8 <CJK> +<U4131> /x8e/xa4/xaa/xe9 <CJK> +<U412E> /x8e/xa4/xaa/xea <CJK> +<U4130> /x8e/xa4/xaa/xeb <CJK> +<U4132> /x8e/xa4/xaa/xec <CJK> +<U0002576C> /x8e/xa4/xaa/xed <CJK> +<U412F> /x8e/xa4/xaa/xef <CJK> +<U00025767> /x8e/xa4/xaa/xf0 <CJK> +<U4195> /x8e/xa4/xaa/xf1 <CJK> +<U4196> /x8e/xa4/xaa/xf2 <CJK> +<U00025939> /x8e/xa4/xaa/xf3 <CJK> +<U00025934> /x8e/xa4/xaa/xf4 <CJK> +<U00025A59> /x8e/xa4/xaa/xf5 <CJK> +<U41C5> /x8e/xa4/xaa/xf6 <CJK> +<U427A> /x8e/xa4/xaa/xf7 <CJK> +<U00026223> /x8e/xa4/xaa/xf8 <CJK> +<U4342> /x8e/xa4/xaa/xf9 <CJK> +<U00026282> /x8e/xa4/xaa/xfa <CJK> +<U4354> /x8e/xa4/xaa/xfb <CJK> +<U00026283> /x8e/xa4/xaa/xfc <CJK> +<U000262A8> /x8e/xa4/xaa/xfd <CJK> +<U00026355> /x8e/xa4/xaa/xfe <CJK> +<U000263F9> /x8e/xa4/xab/xa1 <CJK> +<U000263F8> /x8e/xa4/xab/xa2 <CJK> +<U000263FC> /x8e/xa4/xab/xa3 <CJK> +<U000263FA> /x8e/xa4/xab/xa4 <CJK> +<U8009> /x8e/xa4/xab/xa5 <CJK> +<U439F> /x8e/xa4/xab/xa7 <CJK> +<U43A0> /x8e/xa4/xab/xa8 <CJK> +<U43A2> /x8e/xa4/xab/xa9 <CJK> +<U43E0> /x8e/xa4/xab/xaa <CJK> +<U00026674> /x8e/xa4/xab/xab <CJK> +<U43E1> /x8e/xa4/xab/xac <CJK> +<U0002666B> /x8e/xa4/xab/xad <CJK> +<U00026671> /x8e/xa4/xab/xae <CJK> +<U43DF> /x8e/xa4/xab/xaf <CJK> +<U00026676> /x8e/xa4/xab/xb0 <CJK> +<U00026A0E> /x8e/xa4/xab/xb1 <CJK> +<U4462> /x8e/xa4/xab/xb2 <CJK> +<U4461> /x8e/xa4/xab/xb3 <CJK> +<U00026A10> /x8e/xa4/xab/xb4 <CJK> +<U00026A0F> /x8e/xa4/xab/xb5 <CJK> +<U44A7> /x8e/xa4/xab/xb6 <CJK> +<U00026B38> /x8e/xa4/xab/xb7 <CJK> +<U00026B39> /x8e/xa4/xab/xb8 <CJK> +<U00026B3A> /x8e/xa4/xab/xb9 <CJK> +<U82DA> /x8e/xa4/xab/xba <CJK> +<U00026B37> /x8e/xa4/xab/xbb <CJK> +<U00026B3E> /x8e/xa4/xab/xbc <CJK> +<U830A> /x8e/xa4/xab/xbd <CJK> +<U4589> /x8e/xa4/xab/xbe <CJK> +<U0002719C> /x8e/xa4/xab/xbf <CJK> +<U0002722A> /x8e/xa4/xab/xc0 <CJK> +<U0002723A> /x8e/xa4/xab/xc1 <CJK> +<U0002722B> /x8e/xa4/xab/xc2 <CJK> +<U00027228> /x8e/xa4/xab/xc3 <CJK> +<U000275AA> /x8e/xa4/xab/xc4 <CJK> +<U0002760F> /x8e/xa4/xab/xc5 <CJK> +<U461D> /x8e/xa4/xab/xc6 <CJK> +<U00027610> /x8e/xa4/xab/xc7 <CJK> +<U000277E6> /x8e/xa4/xab/xc8 <CJK> +<U472A> /x8e/xa4/xab/xc9 <CJK> +<U00027D25> /x8e/xa4/xab/xca <CJK> +<U00027E8E> /x8e/xa4/xab/xcb <CJK> +<U47D3> /x8e/xa4/xab/xcc <CJK> +<U4842> /x8e/xa4/xab/xcd <CJK> +<U4843> /x8e/xa4/xab/xce <CJK> +<U0002848B> /x8e/xa4/xab/xcf <CJK> +<U4891> /x8e/xa4/xab/xd0 <CJK> +<U0002848C> /x8e/xa4/xab/xd1 <CJK> +<U0002849A> /x8e/xa4/xab/xd2 <CJK> +<U4890> /x8e/xa4/xab/xd3 <CJK> +<U48BF> /x8e/xa4/xab/xd4 <CJK> +<U000286B3> /x8e/xa4/xab/xd5 <CJK> +<U48BC> /x8e/xa4/xab/xd6 <CJK> +<U000286B2> /x8e/xa4/xab/xd7 <CJK> +<U48C0> /x8e/xa4/xab/xd8 <CJK> +<U49C7> /x8e/xa4/xab/xd9 <CJK> +<U49C5> /x8e/xa4/xab/xda <CJK> +<U9655> /x8e/xa4/xab/xdb <CJK> +<U00028E44> /x8e/xa4/xab/xdc <CJK> +<U9652> /x8e/xa4/xab/xdd <CJK> +<U4E35> /x8e/xa4/xab/xde <CJK> +<U00020158> /x8e/xa4/xab/xdf <CJK> +<U000202A7> /x8e/xa4/xab/xe0 <CJK> +<U5034> /x8e/xa4/xab/xe1 <CJK> +<U5001> /x8e/xa4/xab/xe2 <CJK> +<U00020263> /x8e/xa4/xab/xe3 <CJK> +<U500A> /x8e/xa4/xab/xe4 <CJK> +<U3466> /x8e/xa4/xab/xe5 <CJK> +<U0002026A> /x8e/xa4/xab/xe6 <CJK> +<U00020265> /x8e/xa4/xab/xe7 <CJK> +<U0002026B> /x8e/xa4/xab/xe8 <CJK> +<U34AD> /x8e/xa4/xab/xe9 <CJK> +<U000204ED> /x8e/xa4/xab/xea <CJK> +<U000205D9> /x8e/xa4/xab/xeb <CJK> +<U0002073B> /x8e/xa4/xab/xec <CJK> +<U00020732> /x8e/xa4/xab/xed <CJK> +<U5258> /x8e/xa4/xab/xee <CJK> +<U00020735> /x8e/xa4/xab/xef <CJK> +<U00020731> /x8e/xa4/xab/xf0 <CJK> +<U0002073E> /x8e/xa4/xab/xf1 <CJK> +<U00020743> /x8e/xa4/xab/xf2 <CJK> +<U00020736> /x8e/xa4/xab/xf3 <CJK> +<U0002086D> /x8e/xa4/xab/xf4 <CJK> +<U351D> /x8e/xa4/xab/xf5 <CJK> +<U000208E4> /x8e/xa4/xab/xf6 <CJK> +<U3531> /x8e/xa4/xab/xf7 <CJK> +<U532B> /x8e/xa4/xab/xf8 <CJK> +<U000209F4> /x8e/xa4/xab/xf9 <CJK> +<U354C> /x8e/xa4/xab/xfa <CJK> +<U00020A69> /x8e/xa4/xab/xfb <CJK> +<U00020A6B> /x8e/xa4/xab/xfc <CJK> +<U3595> /x8e/xa4/xab/xfd <CJK> +<U3591> /x8e/xa4/xab/xfe <CJK> +<U3594> /x8e/xa4/xac/xa1 <CJK> +<U00020CBF> /x8e/xa4/xac/xa2 <CJK> +<U00020CC3> /x8e/xa4/xac/xa3 <CJK> +<U00020CAE> /x8e/xa4/xac/xa4 <CJK> +<U358F> /x8e/xa4/xac/xa5 <CJK> +<U54EC> /x8e/xa4/xac/xa6 <CJK> +<U00020CB1> /x8e/xa4/xac/xa7 <CJK> +<U5515> /x8e/xa4/xac/xa8 <CJK> +<U54FE> /x8e/xa4/xac/xa9 <CJK> +<U00020CBB> /x8e/xa4/xac/xaa <CJK> +<U00020CAF> /x8e/xa4/xac/xab <CJK> +<U00020CB0> /x8e/xa4/xac/xac <CJK> +<U54E3> /x8e/xa4/xac/xad <CJK> +<U5516> /x8e/xa4/xac/xae <CJK> +<U3640> /x8e/xa4/xac/xaf <CJK> +<U000212EF> /x8e/xa4/xac/xb0 <CJK> +<U3641> /x8e/xa4/xac/xb1 <CJK> +<U000212ED> /x8e/xa4/xac/xb2 <CJK> +<U57D3> /x8e/xa4/xac/xb3 <CJK> +<U000212F0> /x8e/xa4/xac/xb4 <CJK> +<U00021593> /x8e/xa4/xac/xb5 <CJK> +<U00021634> /x8e/xa4/xac/xb6 <CJK> +<U0002162B> /x8e/xa4/xac/xb7 <CJK> +<U5959> /x8e/xa4/xac/xb8 <CJK> +<U5A27> /x8e/xa4/xac/xb9 <CJK> +<U36D8> /x8e/xa4/xac/xba <CJK> +<U36D2> /x8e/xa4/xac/xbb <CJK> +<U36DA> /x8e/xa4/xac/xbc <CJK> +<U5A28> /x8e/xa4/xac/xbd <CJK> +<U5A10> /x8e/xa4/xac/xbe <CJK> +<U36D7> /x8e/xa4/xac/xbf <CJK> +<U5A0E> /x8e/xa4/xac/xc0 <CJK> +<U3742> /x8e/xa4/xac/xc1 <CJK> +<U3757> /x8e/xa4/xac/xc2 <CJK> +<U00021A04> /x8e/xa4/xac/xc3 <CJK> +<U00021A03> /x8e/xa4/xac/xc4 <CJK> +<U00021A02> /x8e/xa4/xac/xc5 <CJK> +<U5BAF> /x8e/xa4/xac/xc6 <CJK> +<U00021A05> /x8e/xa4/xac/xc7 <CJK> +<U5BBA> /x8e/xa4/xac/xc8 <CJK> +<U5BB1> /x8e/xa4/xac/xc9 <CJK> +<U00021A00> /x8e/xa4/xac/xca <CJK> +<U00021B74> /x8e/xa4/xac/xcb <CJK> +<U3778> /x8e/xa4/xac/xcc <CJK> +<U3782> /x8e/xa4/xac/xcd <CJK> +<U3797> /x8e/xa4/xac/xce <CJK> +<U00021C65> /x8e/xa4/xac/xcf <CJK> +<U00021C63> /x8e/xa4/xac/xd0 <CJK> +<U37C9> /x8e/xa4/xac/xd1 <CJK> +<U00021DD7> /x8e/xa4/xac/xd2 <CJK> +<U37C8> /x8e/xa4/xac/xd3 <CJK> +<U37D6> /x8e/xa4/xac/xd4 <CJK> +<U37CC> /x8e/xa4/xac/xd5 <CJK> +<U00021DE8> /x8e/xa4/xac/xd6 <CJK> +<U37D0> /x8e/xa4/xac/xd7 <CJK> +<U00021DDB> /x8e/xa4/xac/xd8 <CJK> +<U00021DD8> /x8e/xa4/xac/xd9 <CJK> +<U37CE> /x8e/xa4/xac/xda <CJK> +<U37C7> /x8e/xa4/xac/xdb <CJK> +<U5CFC> /x8e/xa4/xac/xdc <CJK> +<U00021E09> /x8e/xa4/xac/xdd <CJK> +<U37CF> /x8e/xa4/xac/xde <CJK> +<U37CB> /x8e/xa4/xac/xdf <CJK> +<U5CF2> /x8e/xa4/xac/xe0 <CJK> +<U5CFE> /x8e/xa4/xac/xe1 <CJK> +<U00021DE5> /x8e/xa4/xac/xe2 <CJK> +<U00021DE7> /x8e/xa4/xac/xe3 <CJK> +<U5DF8> /x8e/xa4/xac/xe4 <CJK> +<U0002203F> /x8e/xa4/xac/xe5 <CJK> +<U3847> /x8e/xa4/xac/xe6 <CJK> +<U000220C0> /x8e/xa4/xac/xe7 <CJK> +<U3848> /x8e/xa4/xac/xe8 <CJK> +<U000220B9> /x8e/xa4/xac/xe9 <CJK> +<U000220BA> /x8e/xa4/xac/xea <CJK> +<U3883> /x8e/xa4/xac/xeb <CJK> +<U3885> /x8e/xa4/xac/xec <CJK> +<U3884> /x8e/xa4/xac/xed <CJK> +<U00022220> /x8e/xa4/xac/xee <CJK> +<U0002234F> /x8e/xa4/xac/xef <CJK> +<U5F2C> /x8e/xa4/xac/xf0 <CJK> +<U38B8> /x8e/xa4/xac/xf1 <CJK> +<U38BC> /x8e/xa4/xac/xf2 <CJK> +<U00022491> /x8e/xa4/xac/xf3 <CJK> +<U00022490> /x8e/xa4/xac/xf4 <CJK> +<U000224EE> /x8e/xa4/xac/xf5 <CJK> +<U000224F3> /x8e/xa4/xac/xf6 <CJK> +<U000224EC> /x8e/xa4/xac/xf7 <CJK> +<U000224F1> /x8e/xa4/xac/xf8 <CJK> +<U000224EB> /x8e/xa4/xac/xf9 <CJK> +<U000224F2> /x8e/xa4/xac/xfa <CJK> +<U000224F4> /x8e/xa4/xac/xfb <CJK> +<U000224ED> /x8e/xa4/xac/xfc <CJK> +<U00022641> /x8e/xa4/xac/xfd <CJK> +<U00022648> /x8e/xa4/xac/xfe <CJK> +<U00022645> /x8e/xa4/xad/xa1 <CJK> +<U3931> /x8e/xa4/xad/xa2 <CJK> +<U3934> /x8e/xa4/xad/xa3 <CJK> +<U3936> /x8e/xa4/xad/xa4 <CJK> +<U6082> /x8e/xa4/xad/xa5 <CJK> +<U0002267F> /x8e/xa4/xad/xa6 <CJK> +<U0002268B> /x8e/xa4/xad/xa7 <CJK> +<U3923> /x8e/xa4/xad/xa8 <CJK> +<U0002263B> /x8e/xa4/xad/xa9 <CJK> +<U0002264E> /x8e/xa4/xad/xaa <CJK> +<U393A> /x8e/xa4/xad/xab <CJK> +<U6091> /x8e/xa4/xad/xac <CJK> +<U608F> /x8e/xa4/xad/xad <CJK> +<U0002267C> /x8e/xa4/xad/xae <CJK> +<U39B4> /x8e/xa4/xad/xaf <CJK> +<U39B5> /x8e/xa4/xad/xb0 <CJK> +<U39ED> /x8e/xa4/xad/xb1 <CJK> +<U39EC> /x8e/xa4/xad/xb2 <CJK> +<U39D8> /x8e/xa4/xad/xb3 <CJK> +<U00022AF0> /x8e/xa4/xad/xb4 <CJK> +<U00022B36> /x8e/xa4/xad/xb5 <CJK> +<U00022B3F> /x8e/xa4/xad/xb6 <CJK> +<U00022B43> /x8e/xa4/xad/xb7 <CJK> +<U00022B31> /x8e/xa4/xad/xb8 <CJK> +<U00022B34> /x8e/xa4/xad/xb9 <CJK> +<U00022B46> /x8e/xa4/xad/xba <CJK> +<U39F6> /x8e/xa4/xad/xbb <CJK> +<U39E7> /x8e/xa4/xad/xbc <CJK> +<U00022B2F> /x8e/xa4/xad/xbd <CJK> +<U00022EC3> /x8e/xa4/xad/xbe <CJK> +<U3A7C> /x8e/xa4/xad/xbf <CJK> +<U3A7B> /x8e/xa4/xad/xc0 <CJK> +<U00022F36> /x8e/xa4/xad/xc1 <CJK> +<U6547> /x8e/xa4/xad/xc3 <CJK> +<U654C> /x8e/xa4/xad/xc4 <CJK> +<U00022F21> /x8e/xa4/xad/xc5 <CJK> +<U658A> /x8e/xa4/xad/xc7 <CJK> +<U00023073> /x8e/xa4/xad/xc8 <CJK> +<U3ABE> /x8e/xa4/xad/xc9 <CJK> +<U000230E6> /x8e/xa4/xad/xca <CJK> +<U3AE7> /x8e/xa4/xad/xcb <CJK> +<U3AE5> /x8e/xa4/xad/xcc <CJK> +<U3AEE> /x8e/xa4/xad/xcd <CJK> +<U67E1> /x8e/xa4/xad/xce <CJK> +<U684A> /x8e/xa4/xad/xcf <CJK> +<U0002343F> /x8e/xa4/xad/xd0 <CJK> +<U3B59> /x8e/xa4/xad/xd1 <CJK> +<U3B5E> /x8e/xa4/xad/xd2 <CJK> +<U0002346B> /x8e/xa4/xad/xd3 <CJK> +<U3B5A> /x8e/xa4/xad/xd4 <CJK> +<U683F> /x8e/xa4/xad/xd5 <CJK> +<U3B61> /x8e/xa4/xad/xd6 <CJK> +<U3B58> /x8e/xa4/xad/xd7 <CJK> +<U3B5B> /x8e/xa4/xad/xd8 <CJK> +<U67BD> /x8e/xa4/xad/xd9 <CJK> +<U00023471> /x8e/xa4/xad/xda <CJK> +<U3B5F> /x8e/xa4/xad/xdb <CJK> +<U3C2A> /x8e/xa4/xad/xdd <CJK> +<U3C2D> /x8e/xa4/xad/xde <CJK> +<U000238B0> /x8e/xa4/xad/xdf <CJK> +<U3C23> /x8e/xa4/xad/xe0 <CJK> +<U3C2B> /x8e/xa4/xad/xe1 <CJK> +<U3C2C> /x8e/xa4/xad/xe2 <CJK> +<U000239F3> /x8e/xa4/xad/xe3 <CJK> +<U3C7E> /x8e/xa4/xad/xe4 <CJK> +<U3C93> /x8e/xa4/xad/xe6 <CJK> +<U3C99> /x8e/xa4/xad/xe7 <CJK> +<U00023B61> /x8e/xa4/xad/xe8 <CJK> +<U00023B5F> /x8e/xa4/xad/xe9 <CJK> +<U3CB3> /x8e/xa4/xad/xea <CJK> +<U3CE7> /x8e/xa4/xad/xeb <CJK> +<U3CEA> /x8e/xa4/xad/xec <CJK> +<U00023D28> /x8e/xa4/xad/xed <CJK> +<U00023D1E> /x8e/xa4/xad/xee <CJK> +<U00023D29> /x8e/xa4/xad/xef <CJK> +<U00023CEB> /x8e/xa4/xad/xf1 <CJK> +<U00023D66> /x8e/xa4/xad/xf2 <CJK> +<U3DB4> /x8e/xa4/xad/xf3 <CJK> +<U000241F6> /x8e/xa4/xad/xf4 <CJK> +<U70C9> /x8e/xa4/xad/xf5 <CJK> +<U3E17> /x8e/xa4/xad/xf6 <CJK> +<U00024560> /x8e/xa4/xad/xf7 <CJK> +<U00024577> /x8e/xa4/xad/xf8 <CJK> +<U000245BB> /x8e/xa4/xad/xf9 <CJK> +<U3E21> /x8e/xa4/xad/xfa <CJK> +<U000245BC> /x8e/xa4/xad/xfb <CJK> +<U3E38> /x8e/xa4/xad/xfc <CJK> +<U3E37> /x8e/xa4/xad/xfd <CJK> +<U3E74> /x8e/xa4/xad/xfe <CJK> +<U3E73> /x8e/xa4/xae/xa1 <CJK> +<U3E75> /x8e/xa4/xae/xa2 <CJK> +<U000247A2> /x8e/xa4/xae/xa3 <CJK> +<U000247B2> /x8e/xa4/xae/xa4 <CJK> +<U0002479E> /x8e/xa4/xae/xa5 <CJK> +<U3E76> /x8e/xa4/xae/xa6 <CJK> +<U3E78> /x8e/xa4/xae/xa7 <CJK> +<U0002493A> /x8e/xa4/xae/xa8 <CJK> +<U00024938> /x8e/xa4/xae/xa9 <CJK> +<U73BA> /x8e/xa4/xae/xaa <CJK> +<U3F0C> /x8e/xa4/xae/xab <CJK> +<U3F20> /x8e/xa4/xae/xac <CJK> +<U3F1E> /x8e/xa4/xae/xad <CJK> +<U00024C4D> /x8e/xa4/xae/xae <CJK> +<U3F5B> /x8e/xa4/xae/xaf <CJK> +<U00024C5E> /x8e/xa4/xae/xb0 <CJK> +<U3F5C> /x8e/xa4/xae/xb1 <CJK> +<U00024D17> /x8e/xa4/xae/xb2 <CJK> +<U3F83> /x8e/xa4/xae/xb3 <CJK> +<U75C6> /x8e/xa4/xae/xb4 <CJK> +<U3F80> /x8e/xa4/xae/xb5 <CJK> +<U3F81> /x8e/xa4/xae/xb6 <CJK> +<U3F7E> /x8e/xa4/xae/xb7 <CJK> +<U3F88> /x8e/xa4/xae/xb8 <CJK> +<U3F85> /x8e/xa4/xae/xb9 <CJK> +<U3F89> /x8e/xa4/xae/xba <CJK> +<U3F7F> /x8e/xa4/xae/xbb <CJK> +<U3F8E> /x8e/xa4/xae/xbc <CJK> +<U00024D64> /x8e/xa4/xae/xbd <CJK> +<U00024D67> /x8e/xa4/xae/xbe <CJK> +<U3F84> /x8e/xa4/xae/xbf <CJK> +<U75B7> /x8e/xa4/xae/xc0 <CJK> +<U768C> /x8e/xa4/xae/xc1 <CJK> +<U00024F59> /x8e/xa4/xae/xc2 <CJK> +<U768D> /x8e/xa4/xae/xc3 <CJK> +<U00024FDA> /x8e/xa4/xae/xc4 <CJK> +<U3FEE> /x8e/xa4/xae/xc5 <CJK> +<U3FED> /x8e/xa4/xae/xc6 <CJK> +<U3FFE> /x8e/xa4/xae/xc7 <CJK> +<U00025051> /x8e/xa4/xae/xc8 <CJK> +<U3FFF> /x8e/xa4/xae/xc9 <CJK> +<U00025055> /x8e/xa4/xae/xca <CJK> +<U0002513B> /x8e/xa4/xae/xcb <CJK> +<U00025134> /x8e/xa4/xae/xcc <CJK> +<U4023> /x8e/xa4/xae/xcd <CJK> +<U00025137> /x8e/xa4/xae/xce <CJK> +<U7717> /x8e/xa4/xae/xcf <CJK> +<U00025131> /x8e/xa4/xae/xd0 <CJK> +<U771C> /x8e/xa4/xae/xd1 <CJK> +<U401F> /x8e/xa4/xae/xd2 <CJK> +<U0002513F> /x8e/xa4/xae/xd3 <CJK> +<U00025159> /x8e/xa4/xae/xd4 <CJK> +<U7714> /x8e/xa4/xae/xd5 <CJK> +<U00025361> /x8e/xa4/xae/xd6 <CJK> +<U408F> /x8e/xa4/xae/xd7 <CJK> +<U4090> /x8e/xa4/xae/xd8 <CJK> +<U00025458> /x8e/xa4/xae/xd9 <CJK> +<U00025462> /x8e/xa4/xae/xda <CJK> +<U00025450> /x8e/xa4/xae/xdb <CJK> +<U40A0> /x8e/xa4/xae/xdc <CJK> +<U00025451> /x8e/xa4/xae/xdd <CJK> +<U40A6> /x8e/xa4/xae/xde <CJK> +<U409F> /x8e/xa4/xae/xdf <CJK> +<U00025446> /x8e/xa4/xae/xe0 <CJK> +<U40A7> /x8e/xa4/xae/xe1 <CJK> +<U40A1> /x8e/xa4/xae/xe2 <CJK> +<U0002562D> /x8e/xa4/xae/xe3 <CJK> +<U4102> /x8e/xa4/xae/xe4 <CJK> +<U4136> /x8e/xa4/xae/xe5 <CJK> +<U00025948> /x8e/xa4/xae/xe6 <CJK> +<U00025951> /x8e/xa4/xae/xe7 <CJK> +<U0002594A> /x8e/xa4/xae/xe8 <CJK> +<U0002594F> /x8e/xa4/xae/xe9 <CJK> +<U00025950> /x8e/xa4/xae/xea <CJK> +<U00025949> /x8e/xa4/xae/xeb <CJK> +<U00025A63> /x8e/xa4/xae/xec <CJK> +<U41C8> /x8e/xa4/xae/xed <CJK> +<U00025A66> /x8e/xa4/xae/xee <CJK> +<U00025A60> /x8e/xa4/xae/xef <CJK> +<U41D8> /x8e/xa4/xae/xf0 <CJK> +<U7B0C> /x8e/xa4/xae/xf1 <CJK> +<U41DD> /x8e/xa4/xae/xf2 <CJK> +<U41DC> /x8e/xa4/xae/xf3 <CJK> +<U00025AF1> /x8e/xa4/xae/xf4 <CJK> +<U41D7> /x8e/xa4/xae/xf5 <CJK> +<U00025B07> /x8e/xa4/xae/xf6 <CJK> +<U41DA> /x8e/xa4/xae/xf7 <CJK> +<U42BA> /x8e/xa4/xae/xf8 <CJK> +<U00025F9B> /x8e/xa4/xae/xf9 <CJK> +<U00025FA3> /x8e/xa4/xae/xfa <CJK> +<U00025F9D> /x8e/xa4/xae/xfb <CJK> +<U42BE> /x8e/xa4/xae/xfc <CJK> +<U42C2> /x8e/xa4/xae/xfd <CJK> +<U42BB> /x8e/xa4/xae/xfe <CJK> +<U42C0> /x8e/xa4/xaf/xa1 <CJK> +<U00025FA9> /x8e/xa4/xaf/xa2 <CJK> +<U00025FA7> /x8e/xa4/xaf/xa3 <CJK> +<U00025FA4> /x8e/xa4/xaf/xa4 <CJK> +<U7D23> /x8e/xa4/xaf/xa5 <CJK> +<U00025FBA> /x8e/xa4/xaf/xa6 <CJK> +<U000221C1> /x8e/xa4/xaf/xa7 <CJK> +<U00026226> /x8e/xa4/xaf/xa8 <CJK> +<U4343> /x8e/xa4/xaf/xa9 <CJK> +<U4355> /x8e/xa4/xaf/xaa <CJK> +<U00026294> /x8e/xa4/xaf/xab <CJK> +<U00026293> /x8e/xa4/xaf/xac <CJK> +<U4357> /x8e/xa4/xaf/xad <CJK> +<U4368> /x8e/xa4/xaf/xae <CJK> +<U7F98> /x8e/xa4/xaf/xaf <CJK> +<U7F90> /x8e/xa4/xaf/xb0 <CJK> +<U00026407> /x8e/xa4/xaf/xb1 <CJK> +<U0002640D> /x8e/xa4/xaf/xb2 <CJK> +<U00026402> /x8e/xa4/xaf/xb3 <CJK> +<U0002640C> /x8e/xa4/xaf/xb4 <CJK> +<U00026409> /x8e/xa4/xaf/xb5 <CJK> +<U00026408> /x8e/xa4/xaf/xb6 <CJK> +<U00026413> /x8e/xa4/xaf/xb7 <CJK> +<U43A1> /x8e/xa4/xaf/xb8 <CJK> +<U000264D2> /x8e/xa4/xaf/xb9 <CJK> +<U803A> /x8e/xa4/xaf/xba <CJK> +<U0002653E> /x8e/xa4/xaf/xbb <CJK> +<U0002653C> /x8e/xa4/xaf/xbc <CJK> +<U00026667> /x8e/xa4/xaf/xbd <CJK> +<U0002669E> /x8e/xa4/xaf/xbe <CJK> +<U43EA> /x8e/xa4/xaf/xbf <CJK> +<U000266AD> /x8e/xa4/xaf/xc0 <CJK> +<U43E7> /x8e/xa4/xaf/xc1 <CJK> +<U000266D9> /x8e/xa4/xaf/xc2 <CJK> +<U00026642> /x8e/xa4/xaf/xc3 <CJK> +<U000266A3> /x8e/xa4/xaf/xc4 <CJK> +<U000266A0> /x8e/xa4/xaf/xc5 <CJK> +<U43E8> /x8e/xa4/xaf/xc6 <CJK> +<U43E9> /x8e/xa4/xaf/xc7 <CJK> +<U0002667C> /x8e/xa4/xaf/xc8 <CJK> +<U00026904> /x8e/xa4/xaf/xc9 <CJK> +<U4454> /x8e/xa4/xaf/xca <CJK> +<U00026958> /x8e/xa4/xaf/xcb <CJK> +<U00026960> /x8e/xa4/xaf/xcc <CJK> +<U000269C9> /x8e/xa4/xaf/xcd <CJK> +<U000269C8> /x8e/xa4/xaf/xce <CJK> +<U8226> /x8e/xa4/xaf/xcf <CJK> +<U4465> /x8e/xa4/xaf/xd0 <CJK> +<U00026A1C> /x8e/xa4/xaf/xd1 <CJK> +<U00026A1A> /x8e/xa4/xaf/xd2 <CJK> +<U448A> /x8e/xa4/xaf/xd3 <CJK> +<U00026B74> /x8e/xa4/xaf/xd4 <CJK> +<U44B0> /x8e/xa4/xaf/xd5 <CJK> +<U00026B6E> /x8e/xa4/xaf/xd6 <CJK> +<U00026B6F> /x8e/xa4/xaf/xd7 <CJK> +<U00026B79> /x8e/xa4/xaf/xd8 <CJK> +<U44BC> /x8e/xa4/xaf/xd9 <CJK> +<U832E> /x8e/xa4/xaf/xda <CJK> +<U00026B77> /x8e/xa4/xaf/xdb <CJK> +<U8355> /x8e/xa4/xaf/xdc <CJK> +<U831A> /x8e/xa4/xaf/xdd <CJK> +<U44B8> /x8e/xa4/xaf/xde <CJK> +<U833D> /x8e/xa4/xaf/xdf <CJK> +<U00026B7C> /x8e/xa4/xaf/xe0 <CJK> +<U44B2> /x8e/xa4/xaf/xe1 <CJK> +<U00026B70> /x8e/xa4/xaf/xe2 <CJK> +<U8330> /x8e/xa4/xaf/xe3 <CJK> +<U44BD> /x8e/xa4/xaf/xe4 <CJK> +<U00026B7A> /x8e/xa4/xaf/xe5 <CJK> +<U00026B82> /x8e/xa4/xaf/xe6 <CJK> +<U458A> /x8e/xa4/xaf/xe7 <CJK> +<U8651> /x8e/xa4/xaf/xe8 <CJK> +<U45A1> /x8e/xa4/xaf/xe9 <CJK> +<U00027244> /x8e/xa4/xaf/xea <CJK> +<U45A2> /x8e/xa4/xaf/xeb <CJK> +<U00027243> /x8e/xa4/xaf/xec <CJK> +<U8688> /x8e/xa4/xaf/xed <CJK> +<U00027245> /x8e/xa4/xaf/xee <CJK> +<U4615> /x8e/xa4/xaf/xef <CJK> +<U00027625> /x8e/xa4/xaf/xf0 <CJK> +<U0002761F> /x8e/xa4/xaf/xf1 <CJK> +<U4620> /x8e/xa4/xaf/xf2 <CJK> +<U4673> /x8e/xa4/xaf/xf3 <CJK> +<U000277E8> /x8e/xa4/xaf/xf4 <CJK> +<U898E> /x8e/xa4/xaf/xf5 <CJK> +<U898D> /x8e/xa4/xaf/xf6 <CJK> +<U00027809> /x8e/xa4/xaf/xf7 <CJK> +<U000278B7> /x8e/xa4/xaf/xf8 <CJK> +<U000278B9> /x8e/xa4/xaf/xf9 <CJK> +<U00027964> /x8e/xa4/xaf/xfa <CJK> +<U00027963> /x8e/xa4/xaf/xfb <CJK> +<U8A09> /x8e/xa4/xaf/xfc <CJK> +<U8A14> /x8e/xa4/xaf/xfd <CJK> +<U46B1> /x8e/xa4/xaf/xfe <CJK> +<U00027962> /x8e/xa4/xb0/xa1 <CJK> +<U00027965> /x8e/xa4/xb0/xa2 <CJK> +<U472B> /x8e/xa4/xb0/xa3 <CJK> +<U00027BAC> /x8e/xa4/xb0/xa4 <CJK> +<U4745> /x8e/xa4/xb0/xa5 <CJK> +<U00027D2A> /x8e/xa4/xb0/xa6 <CJK> +<U4797> /x8e/xa4/xb0/xa7 <CJK> +<U4798> /x8e/xa4/xb0/xa8 <CJK> +<U00027E96> /x8e/xa4/xb0/xa9 <CJK> +<U47D5> /x8e/xa4/xb0/xaa <CJK> +<U00027FC2> /x8e/xa4/xb0/xab <CJK> +<U4893> /x8e/xa4/xb0/xad <CJK> +<U4896> /x8e/xa4/xb0/xae <CJK> +<U9007> /x8e/xa4/xb0/xaf <CJK> +<U4894> /x8e/xa4/xb0/xb0 <CJK> +<U000284AA> /x8e/xa4/xb0/xb1 <CJK> +<U000284B0> /x8e/xa4/xb0/xb2 <CJK> +<U48C7> /x8e/xa4/xb0/xb3 <CJK> +<U48C5> /x8e/xa4/xb0/xb4 <CJK> +<U000286D4> /x8e/xa4/xb0/xb5 <CJK> +<U000286CD> /x8e/xa4/xb0/xb6 <CJK> +<U000286D6> /x8e/xa4/xb0/xb7 <CJK> +<U48C4> /x8e/xa4/xb0/xb8 <CJK> +<U000287F0> /x8e/xa4/xb0/xb9 <CJK> +<U9579> /x8e/xa4/xb0/xba <CJK> +<U9584> /x8e/xa4/xb0/xbb <CJK> +<U49CE> /x8e/xa4/xb0/xbc <CJK> +<U49CA> /x8e/xa4/xb0/xbd <CJK> +<U49CC> /x8e/xa4/xb0/xbe <CJK> +<U9657> /x8e/xa4/xb0/xbf <CJK> +<U49C9> /x8e/xa4/xb0/xc0 <CJK> +<U96BA> /x8e/xa4/xb0/xc1 <CJK> +<U00029D4B> /x8e/xa4/xb0/xc3 <CJK> +<U00020162> /x8e/xa4/xb0/xc4 <CJK> +<U346E> /x8e/xa4/xb0/xc5 <CJK> +<U000202B7> /x8e/xa4/xb0/xc6 <CJK> +<U5067> /x8e/xa4/xb0/xc7 <CJK> +<U000202AC> /x8e/xa4/xb0/xc8 <CJK> +<U000202AB> /x8e/xa4/xb0/xc9 <CJK> +<U3471> /x8e/xa4/xb0/xca <CJK> +<U000202C1> /x8e/xa4/xb0/xcb <CJK> +<U34BB> /x8e/xa4/xb0/xcc <CJK> +<U34D3> /x8e/xa4/xb0/xcd <CJK> +<U000205E8> /x8e/xa4/xb0/xce <CJK> +<U00020769> /x8e/xa4/xb0/xcf <CJK> +<U0002075D> /x8e/xa4/xb0/xd0 <CJK> +<U0002075F> /x8e/xa4/xb0/xd1 <CJK> +<U34F3> /x8e/xa4/xb0/xd2 <CJK> +<U34ED> /x8e/xa4/xb0/xd3 <CJK> +<U34F5> /x8e/xa4/xb0/xd4 <CJK> +<U00020764> /x8e/xa4/xb0/xd5 <CJK> +<U00020762> /x8e/xa4/xb0/xd6 <CJK> +<U34F1> /x8e/xa4/xb0/xd7 <CJK> +<U34F2> /x8e/xa4/xb0/xd8 <CJK> +<U34F6> /x8e/xa4/xb0/xd9 <CJK> +<U3520> /x8e/xa4/xb0/xda <CJK> +<U000208F9> /x8e/xa4/xb0/xdb <CJK> +<U3528> /x8e/xa4/xb0/xdc <CJK> +<U000208EE> /x8e/xa4/xb0/xdd <CJK> +<U5318> /x8e/xa4/xb0/xde <CJK> +<U532C> /x8e/xa4/xb0/xdf <CJK> +<U5359> /x8e/xa4/xb0/xe0 <CJK> +<U000209AB> /x8e/xa4/xb0/xe1 <CJK> +<U000209AC> /x8e/xa4/xb0/xe2 <CJK> +<U000209AA> /x8e/xa4/xb0/xe3 <CJK> +<U5368> /x8e/xa4/xb0/xe4 <CJK> +<U537E> /x8e/xa4/xb0/xe5 <CJK> +<U00020A86> /x8e/xa4/xb0/xe6 <CJK> +<U00020A7A> /x8e/xa4/xb0/xe7 <CJK> +<U53A1> /x8e/xa4/xb0/xe8 <CJK> +<U00020D28> /x8e/xa4/xb0/xe9 <CJK> +<U35A1> /x8e/xa4/xb0/xea <CJK> +<U555B> /x8e/xa4/xb0/xeb <CJK> +<U35AA> /x8e/xa4/xb0/xec <CJK> +<U35A9> /x8e/xa4/xb0/xed <CJK> +<U00020D31> /x8e/xa4/xb0/xee <CJK> +<U35B5> /x8e/xa4/xb0/xef <CJK> +<U35A5> /x8e/xa4/xb0/xf0 <CJK> +<U35A8> /x8e/xa4/xb0/xf1 <CJK> +<U5542> /x8e/xa4/xb0/xf2 <CJK> +<U35A7> /x8e/xa4/xb0/xf3 <CJK> +<U5547> /x8e/xa4/xb0/xf4 <CJK> +<U00020D2D> /x8e/xa4/xb0/xf5 <CJK> +<U553D> /x8e/xa4/xb0/xf7 <CJK> +<U00020D2B> /x8e/xa4/xb0/xf8 <CJK> +<U00020D32> /x8e/xa4/xb0/xf9 <CJK> +<U5560> /x8e/xa4/xb0/xfa <CJK> +<U57EB> /x8e/xa4/xb0/xfb <CJK> +<U00021329> /x8e/xa4/xb0/xfc <CJK> +<U00021326> /x8e/xa4/xb0/xfd <CJK> +<U00021353> /x8e/xa4/xb0/xfe <CJK> +<U364D> /x8e/xa4/xb1/xa1 <CJK> +<U00021333> /x8e/xa4/xb1/xa2 <CJK> +<U00021334> /x8e/xa4/xb1/xa3 <CJK> +<U0002159D> /x8e/xa4/xb1/xa4 <CJK> +<U369C> /x8e/xa4/xb1/xa5 <CJK> +<U595F> /x8e/xa4/xb1/xa6 <CJK> +<U00021641> /x8e/xa4/xb1/xa7 <CJK> +<U36EA> /x8e/xa4/xb1/xa8 <CJK> +<U36E5> /x8e/xa4/xb1/xa9 <CJK> +<U00021791> /x8e/xa4/xb1/xaa <CJK> +<U00021769> /x8e/xa4/xb1/xab <CJK> +<U5B6F> /x8e/xa4/xb1/xac <CJK> +<U00021A22> /x8e/xa4/xb1/xad <CJK> +<U375E> /x8e/xa4/xb1/xae <CJK> +<U00021A34> /x8e/xa4/xb1/xaf <CJK> +<U00021B2E> /x8e/xa4/xb1/xb1 <CJK> +<U3786> /x8e/xa4/xb1/xb2 <CJK> +<U3784> /x8e/xa4/xb1/xb3 <CJK> +<U00021BF4> /x8e/xa4/xb1/xb4 <CJK> +<U5C5A> /x8e/xa4/xb1/xb5 <CJK> +<U00021E28> /x8e/xa4/xb1/xb6 <CJK> +<U37D9> /x8e/xa4/xb1/xb7 <CJK> +<U00021E1C> /x8e/xa4/xb1/xb8 <CJK> +<U37DE> /x8e/xa4/xb1/xb9 <CJK> +<U00021E11> /x8e/xa4/xb1/xba <CJK> +<U00021E24> /x8e/xa4/xb1/xbb <CJK> +<U00021E15> /x8e/xa4/xb1/xbc <CJK> +<U37DB> /x8e/xa4/xb1/xbd <CJK> +<U00021E16> /x8e/xa4/xb1/xbe <CJK> +<U00021E54> /x8e/xa4/xb1/xbf <CJK> +<U00021E23> /x8e/xa4/xb1/xc0 <CJK> +<U00021FFF> /x8e/xa4/xb1/xc1 <CJK> +<U3831> /x8e/xa4/xb1/xc2 <CJK> +<U000220CF> /x8e/xa4/xb1/xc3 <CJK> +<U000220D0> /x8e/xa4/xb1/xc4 <CJK> +<U384B> /x8e/xa4/xb1/xc5 <CJK> +<U000220CE> /x8e/xa4/xb1/xc6 <CJK> +<U3849> /x8e/xa4/xb1/xc7 <CJK> +<U384A> /x8e/xa4/xb1/xc8 <CJK> +<U384C> /x8e/xa4/xb1/xc9 <CJK> +<U000221C7> /x8e/xa4/xb1/xca <CJK> +<U0002225C> /x8e/xa4/xb1/xcb <CJK> +<U388A> /x8e/xa4/xb1/xcc <CJK> +<U00022236> /x8e/xa4/xb1/xcd <CJK> +<U3889> /x8e/xa4/xb1/xce <CJK> +<U388B> /x8e/xa4/xb1/xcf <CJK> +<U00022243> /x8e/xa4/xb1/xd0 <CJK> +<U38BB> /x8e/xa4/xb1/xd1 <CJK> +<U5FA2> /x8e/xa4/xb1/xd2 <CJK> +<U5F9D> /x8e/xa4/xb1/xd3 <CJK> +<U38E4> /x8e/xa4/xb1/xd4 <CJK> +<U0002252A> /x8e/xa4/xb1/xd5 <CJK> +<U00022501> /x8e/xa4/xb1/xd6 <CJK> +<U5FA3> /x8e/xa4/xb1/xd7 <CJK> +<U0002250B> /x8e/xa4/xb1/xd8 <CJK> +<U0002250F> /x8e/xa4/xb1/xd9 <CJK> +<U393B> /x8e/xa4/xb1/xda <CJK> +<U392E> /x8e/xa4/xb1/xdb <CJK> +<U393E> /x8e/xa4/xb1/xdc <CJK> +<U3946> /x8e/xa4/xb1/xdd <CJK> +<U3953> /x8e/xa4/xb1/xde <CJK> +<U000226DF> /x8e/xa4/xb1/xdf <CJK> +<U3944> /x8e/xa4/xb1/xe0 <CJK> +<U000226D2> /x8e/xa4/xb1/xe1 <CJK> +<U393F> /x8e/xa4/xb1/xe2 <CJK> +<U3942> /x8e/xa4/xb1/xe3 <CJK> +<U394F> /x8e/xa4/xb1/xe4 <CJK> +<U000226CD> /x8e/xa4/xb1/xe5 <CJK> +<U3952> /x8e/xa4/xb1/xe6 <CJK> +<U394A> /x8e/xa4/xb1/xe7 <CJK> +<U60C2> /x8e/xa4/xb1/xe8 <CJK> +<U000226DB> /x8e/xa4/xb1/xe9 <CJK> +<U395A> /x8e/xa4/xb1/xea <CJK> +<U60A5> /x8e/xa4/xb1/xeb <CJK> +<U3949> /x8e/xa4/xb1/xec <CJK> +<U000226CF> /x8e/xa4/xb1/xed <CJK> +<U621C> /x8e/xa4/xb1/xee <CJK> +<U000229C0> /x8e/xa4/xb1/xef <CJK> +<U621D> /x8e/xa4/xb1/xf0 <CJK> +<U3A03> /x8e/xa4/xb1/xf1 <CJK> +<U00022B81> /x8e/xa4/xb1/xf2 <CJK> +<U00022B82> /x8e/xa4/xb1/xf3 <CJK> +<U00022B8A> /x8e/xa4/xb1/xf4 <CJK> +<U00022BA8> /x8e/xa4/xb1/xf5 <CJK> +<U00022B8C> /x8e/xa4/xb1/xf6 <CJK> +<U6395> /x8e/xa4/xb1/xf7 <CJK> +<U639A> /x8e/xa4/xb1/xf8 <CJK> +<U3A01> /x8e/xa4/xb1/xf9 <CJK> +<U3A06> /x8e/xa4/xb1/xfa <CJK> +<U39FB> /x8e/xa4/xb1/xfb <CJK> +<U39F9> /x8e/xa4/xb1/xfc <CJK> +<U00022B8E> /x8e/xa4/xb1/xfd <CJK> +<U3A05> /x8e/xa4/xb1/xfe <CJK> +<U39FA> /x8e/xa4/xb2/xa1 <CJK> +<U00022B8B> /x8e/xa4/xb2/xa2 <CJK> +<U63A6> /x8e/xa4/xb2/xa3 <CJK> +<U00022B96> /x8e/xa4/xb2/xa4 <CJK> +<U39FE> /x8e/xa4/xb2/xa5 <CJK> +<U00022BCC> /x8e/xa4/xb2/xa6 <CJK> +<U3A7D> /x8e/xa4/xb2/xa7 <CJK> +<U00022F4F> /x8e/xa4/xb2/xa9 <CJK> +<U00022F4A> /x8e/xa4/xb2/xaa <CJK> +<U6550> /x8e/xa4/xb2/xab <CJK> +<U00022F4B> /x8e/xa4/xb2/xad <CJK> +<U00022F3D> /x8e/xa4/xb2/xae <CJK> +<U6552> /x8e/xa4/xb2/xaf <CJK> +<U00022F44> /x8e/xa4/xb2/xb0 <CJK> +<U00022F49> /x8e/xa4/xb2/xb1 <CJK> +<U0002309E> /x8e/xa4/xb2/xb2 <CJK> +<U000230F3> /x8e/xa4/xb2/xb3 <CJK> +<U65C8> /x8e/xa4/xb2/xb4 <CJK> +<U000230F5> /x8e/xa4/xb2/xb5 <CJK> +<U3AF0> /x8e/xa4/xb2/xb6 <CJK> +<U3AF2> /x8e/xa4/xb2/xb7 <CJK> +<U000231B3> /x8e/xa4/xb2/xb8 <CJK> +<U6658> /x8e/xa4/xb2/xb9 <CJK> +<U3AF1> /x8e/xa4/xb2/xba <CJK> +<U3AE6> /x8e/xa4/xb2/xbb <CJK> +<U000231E5> /x8e/xa4/xb2/xbc <CJK> +<U000231B6> /x8e/xa4/xb2/xbd <CJK> +<U6888> /x8e/xa4/xb2/xbf <CJK> +<U00023486> /x8e/xa4/xb2/xc0 <CJK> +<U3B6F> /x8e/xa4/xb2/xc1 <CJK> +<U3B6D> /x8e/xa4/xb2/xc2 <CJK> +<U3B69> /x8e/xa4/xb2/xc3 <CJK> +<U000234B6> /x8e/xa4/xb2/xc4 <CJK> +<U00023485> /x8e/xa4/xb2/xc5 <CJK> +<U3B6E> /x8e/xa4/xb2/xc6 <CJK> +<U000234AB> /x8e/xa4/xb2/xc7 <CJK> +<U3C2F> /x8e/xa4/xb2/xc8 <CJK> +<U3C30> /x8e/xa4/xb2/xc9 <CJK> +<U3C63> /x8e/xa4/xb2/xca <CJK> +<U00023A0D> /x8e/xa4/xb2/xcb <CJK> +<U00023A8B> /x8e/xa4/xb2/xcc <CJK> +<U00023A8C> /x8e/xa4/xb2/xcd <CJK> +<U6BB8> /x8e/xa4/xb2/xce <CJK> +<U3C80> /x8e/xa4/xb2/xcf <CJK> +<U6BB9> /x8e/xa4/xb2/xd0 <CJK> +<U3C9A> /x8e/xa4/xb2/xd1 <CJK> +<U3C94> /x8e/xa4/xb2/xd2 <CJK> +<U3C96> /x8e/xa4/xb2/xd3 <CJK> +<U3C95> /x8e/xa4/xb2/xd4 <CJK> +<U3C97> /x8e/xa4/xb2/xd5 <CJK> +<U00023B72> /x8e/xa4/xb2/xd6 <CJK> +<U3CF4> /x8e/xa4/xb2/xd7 <CJK> +<U3CFE> /x8e/xa4/xb2/xd8 <CJK> +<U00023D8F> /x8e/xa4/xb2/xd9 <CJK> +<U3D01> /x8e/xa4/xb2/xda <CJK> +<U00023D79> /x8e/xa4/xb2/xdb <CJK> +<U3D02> /x8e/xa4/xb2/xdc <CJK> +<U00023D77> /x8e/xa4/xb2/xdd <CJK> +<U3CF9> /x8e/xa4/xb2/xde <CJK> +<U00023D90> /x8e/xa4/xb2/xdf <CJK> +<U00023D88> /x8e/xa4/xb2/xe0 <CJK> +<U00023D80> /x8e/xa4/xb2/xe1 <CJK> +<U00023D9E> /x8e/xa4/xb2/xe2 <CJK> +<U3CF6> /x8e/xa4/xb2/xe3 <CJK> +<U3CF7> /x8e/xa4/xb2/xe4 <CJK> +<U00023D82> /x8e/xa4/xb2/xe5 <CJK> +<U00023D34> /x8e/xa4/xb2/xe6 <CJK> +<U00023D89> /x8e/xa4/xb2/xe7 <CJK> +<U3CFF> /x8e/xa4/xb2/xe8 <CJK> +<U00023D85> /x8e/xa4/xb2/xe9 <CJK> +<U00023D7E> /x8e/xa4/xb2/xea <CJK> +<U00023D7A> /x8e/xa4/xb2/xeb <CJK> +<U00023DA6> /x8e/xa4/xb2/xec <CJK> +<U6E0B> /x8e/xa4/xb2/xed <CJK> +<U00023DB5> /x8e/xa4/xb2/xee <CJK> +<U000241F4> /x8e/xa4/xb2/xef <CJK> +<U3DBF> /x8e/xa4/xb2/xf0 <CJK> +<U3DBC> /x8e/xa4/xb2/xf1 <CJK> +<U7105> /x8e/xa4/xb2/xf2 <CJK> +<U00024229> /x8e/xa4/xb2/xf3 <CJK> +<U00024226> /x8e/xa4/xb2/xf4 <CJK> +<U0002422A> /x8e/xa4/xb2/xf5 <CJK> +<U3DBE> /x8e/xa4/xb2/xf6 <CJK> +<U3DC0> /x8e/xa4/xb2/xf7 <CJK> +<U0002457E> /x8e/xa4/xb2/xf8 <CJK> +<U3E3B> /x8e/xa4/xb2/xf9 <CJK> +<U3E39> /x8e/xa4/xb2/xfa <CJK> +<U0002465B> /x8e/xa4/xb2/xfb <CJK> +<U00024661> /x8e/xa4/xb2/xfc <CJK> +<U00024660> /x8e/xa4/xb2/xfd <CJK> +<U3E3C> /x8e/xa4/xb2/xfe <CJK> +<U0002479B> /x8e/xa4/xb3/xa1 <CJK> +<U7314> /x8e/xa4/xb3/xa2 <CJK> +<U7304> /x8e/xa4/xb3/xa3 <CJK> +<U000247C3> /x8e/xa4/xb3/xa4 <CJK> +<U3E7D> /x8e/xa4/xb3/xa5 <CJK> +<U000247CD> /x8e/xa4/xb3/xa6 <CJK> +<U3E7F> /x8e/xa4/xb3/xa7 <CJK> +<U3E7A> /x8e/xa4/xb3/xa8 <CJK> +<U3E7C> /x8e/xa4/xb3/xa9 <CJK> +<U7305> /x8e/xa4/xb3/xaa <CJK> +<U3E7E> /x8e/xa4/xb3/xab <CJK> +<U7315> /x8e/xa4/xb3/xac <CJK> +<U730D> /x8e/xa4/xb3/xad <CJK> +<U3E80> /x8e/xa4/xb3/xae <CJK> +<U3EBF> /x8e/xa4/xb3/xaf <CJK> +<U3EC3> /x8e/xa4/xb3/xb0 <CJK> +<U00024954> /x8e/xa4/xb3/xb1 <CJK> +<U00024959> /x8e/xa4/xb3/xb2 <CJK> +<U3ECC> /x8e/xa4/xb3/xb3 <CJK> +<U3F0E> /x8e/xa4/xb3/xb4 <CJK> +<U3F0D> /x8e/xa4/xb3/xb5 <CJK> +<U00024AF5> /x8e/xa4/xb3/xb6 <CJK> +<U3F26> /x8e/xa4/xb3/xb7 <CJK> +<U3F24> /x8e/xa4/xb3/xb8 <CJK> +<U3F25> /x8e/xa4/xb3/xb9 <CJK> +<U3F23> /x8e/xa4/xb3/xba <CJK> +<U3F21> /x8e/xa4/xb3/xbb <CJK> +<U3F29> /x8e/xa4/xb3/xbc <CJK> +<U00024C69> /x8e/xa4/xb3/xbd <CJK> +<U00024C65> /x8e/xa4/xb3/xbe <CJK> +<U3F8F> /x8e/xa4/xb3/xbf <CJK> +<U3F8D> /x8e/xa4/xb3/xc0 <CJK> +<U00024D7C> /x8e/xa4/xb3/xc1 <CJK> +<U3F8B> /x8e/xa4/xb3/xc2 <CJK> +<U3F92> /x8e/xa4/xb3/xc3 <CJK> +<U00024D80> /x8e/xa4/xb3/xc4 <CJK> +<U3F90> /x8e/xa4/xb3/xc5 <CJK> +<U00024F65> /x8e/xa4/xb3/xc6 <CJK> +<U3FEF> /x8e/xa4/xb3/xc7 <CJK> +<U3FF0> /x8e/xa4/xb3/xc8 <CJK> +<U00024FDF> /x8e/xa4/xb3/xc9 <CJK> +<U00025060> /x8e/xa4/xb3/xca <CJK> +<U4001> /x8e/xa4/xb3/xcb <CJK> +<U0002505E> /x8e/xa4/xb3/xcc <CJK> +<U402E> /x8e/xa4/xb3/xcd <CJK> +<U402D> /x8e/xa4/xb3/xce <CJK> +<U772E> /x8e/xa4/xb3/xcf <CJK> +<U4028> /x8e/xa4/xb3/xd0 <CJK> +<U4029> /x8e/xa4/xb3/xd1 <CJK> +<U402C> /x8e/xa4/xb3/xd2 <CJK> +<U0002518F> /x8e/xa4/xb3/xd3 <CJK> +<U00025161> /x8e/xa4/xb3/xd4 <CJK> +<U0002515A> /x8e/xa4/xb3/xd5 <CJK> +<U7741> /x8e/xa4/xb3/xd6 <CJK> +<U4088> /x8e/xa4/xb3/xd7 <CJK> +<U00025367> /x8e/xa4/xb3/xd8 <CJK> +<U4092> /x8e/xa4/xb3/xd9 <CJK> +<U4091> /x8e/xa4/xb3/xda <CJK> +<U77EA> /x8e/xa4/xb3/xdb <CJK> +<U000253BB> /x8e/xa4/xb3/xdc <CJK> +<U7844> /x8e/xa4/xb3/xdd <CJK> +<U40A9> /x8e/xa4/xb3/xde <CJK> +<U40AC> /x8e/xa4/xb3/xdf <CJK> +<U40AE> /x8e/xa4/xb3/xe0 <CJK> +<U40AA> /x8e/xa4/xb3/xe1 <CJK> +<U4106> /x8e/xa4/xb3/xe2 <CJK> +<U4105> /x8e/xa4/xb3/xe3 <CJK> +<U414A> /x8e/xa4/xb3/xe4 <CJK> +<U413E> /x8e/xa4/xb3/xe5 <CJK> +<U413C> /x8e/xa4/xb3/xe6 <CJK> +<U413B> /x8e/xa4/xb3/xe7 <CJK> +<U0002579B> /x8e/xa4/xb3/xe8 <CJK> +<U4142> /x8e/xa4/xb3/xe9 <CJK> +<U4141> /x8e/xa4/xb3/xea <CJK> +<U4143> /x8e/xa4/xb3/xeb <CJK> +<U000257A9> /x8e/xa4/xb3/xec <CJK> +<U4145> /x8e/xa4/xb3/xed <CJK> +<U00025966> /x8e/xa4/xb3/xee <CJK> +<U419A> /x8e/xa4/xb3/xef <CJK> +<U419B> /x8e/xa4/xb3/xf0 <CJK> +<U419F> /x8e/xa4/xb3/xf1 <CJK> +<U419E> /x8e/xa4/xb3/xf2 <CJK> +<U00025A72> /x8e/xa4/xb3/xf3 <CJK> +<U00025A76> /x8e/xa4/xb3/xf4 <CJK> +<U00025B14> /x8e/xa4/xb3/xf5 <CJK> +<U41DE> /x8e/xa4/xb3/xf6 <CJK> +<U41E2> /x8e/xa4/xb3/xf7 <CJK> +<U41E6> /x8e/xa4/xb3/xf8 <CJK> +<U00025B0F> /x8e/xa4/xb3/xf9 <CJK> +<U7B29> /x8e/xa4/xb3/xfa <CJK> +<U41E3> /x8e/xa4/xb3/xfb <CJK> +<U7B27> /x8e/xa4/xb3/xfc <CJK> +<U41DF> /x8e/xa4/xb3/xfd <CJK> +<U00025E41> /x8e/xa4/xb3/xfe <CJK> +<U00025E46> /x8e/xa4/xb4/xa1 <CJK> +<U7C9D> /x8e/xa4/xb4/xa2 <CJK> +<U00025E4B> /x8e/xa4/xb4/xa3 <CJK> +<U00025E43> /x8e/xa4/xb4/xa4 <CJK> +<U427E> /x8e/xa4/xb4/xa5 <CJK> +<U42C9> /x8e/xa4/xb4/xa6 <CJK> +<U42CC> /x8e/xa4/xb4/xa7 <CJK> +<U00025FC6> /x8e/xa4/xb4/xa8 <CJK> +<U42D1> /x8e/xa4/xb4/xa9 <CJK> +<U00025FC7> /x8e/xa4/xb4/xaa <CJK> +<U42D0> /x8e/xa4/xb4/xab <CJK> +<U00025FCE> /x8e/xa4/xb4/xac <CJK> +<U42CF> /x8e/xa4/xb4/xad <CJK> +<U42C8> /x8e/xa4/xb4/xae <CJK> +<U00025FC9> /x8e/xa4/xb4/xaf <CJK> +<U42CD> /x8e/xa4/xb4/xb0 <CJK> +<U00025FCB> /x8e/xa4/xb4/xb1 <CJK> +<U00025FC5> /x8e/xa4/xb4/xb2 <CJK> +<U4349> /x8e/xa4/xb4/xb3 <CJK> +<U4347> /x8e/xa4/xb4/xb4 <CJK> +<U4358> /x8e/xa4/xb4/xb5 <CJK> +<U436B> /x8e/xa4/xb4/xb6 <CJK> +<U436C> /x8e/xa4/xb4/xb7 <CJK> +<U436A> /x8e/xa4/xb4/xb8 <CJK> +<U00026369> /x8e/xa4/xb4/xb9 <CJK> +<U4380> /x8e/xa4/xb4/xba <CJK> +<U4382> /x8e/xa4/xb4/xbb <CJK> +<U4384> /x8e/xa4/xb4/xbc <CJK> +<U7FC8> /x8e/xa4/xb4/xbd <CJK> +<U4383> /x8e/xa4/xb4/xbe <CJK> +<U0002641E> /x8e/xa4/xb4/xbf <CJK> +<U000264BA> /x8e/xa4/xb4/xc0 <CJK> +<U43B6> /x8e/xa4/xb4/xc1 <CJK> +<U00026552> /x8e/xa4/xb4/xc2 <CJK> +<U00026551> /x8e/xa4/xb4/xc3 <CJK> +<U00026553> /x8e/xa4/xb4/xc4 <CJK> +<U0002669F> /x8e/xa4/xb4/xc5 <CJK> +<U000266DB> /x8e/xa4/xb4/xc6 <CJK> +<U8126> /x8e/xa4/xb4/xc7 <CJK> +<U43F1> /x8e/xa4/xb4/xc8 <CJK> +<U000266E3> /x8e/xa4/xb4/xc9 <CJK> +<U43F6> /x8e/xa4/xb4/xca <CJK> +<U43F3> /x8e/xa4/xb4/xcb <CJK> +<U43F0> /x8e/xa4/xb4/xcc <CJK> +<U811C> /x8e/xa4/xb4/xcd <CJK> +<U000266D7> /x8e/xa4/xb4/xce <CJK> +<U000266E9> /x8e/xa4/xb4/xcf <CJK> +<U8128> /x8e/xa4/xb4/xd0 <CJK> +<U43F5> /x8e/xa4/xb4/xd1 <CJK> +<U43F4> /x8e/xa4/xb4/xd2 <CJK> +<U43F7> /x8e/xa4/xb4/xd3 <CJK> +<U000266DE> /x8e/xa4/xb4/xd4 <CJK> +<U000266DC> /x8e/xa4/xb4/xd5 <CJK> +<U0002693C> /x8e/xa4/xb4/xd6 <CJK> +<U4455> /x8e/xa4/xb4/xd8 <CJK> +<U00026A22> /x8e/xa4/xb4/xd9 <CJK> +<U00026A32> /x8e/xa4/xb4/xda <CJK> +<U00026A23> /x8e/xa4/xb4/xdb <CJK> +<U448B> /x8e/xa4/xb4/xdc <CJK> +<U44CB> /x8e/xa4/xb4/xdd <CJK> +<U44C2> /x8e/xa4/xb4/xde <CJK> +<U00026BD4> /x8e/xa4/xb4/xdf <CJK> +<U00026BC8> /x8e/xa4/xb4/xe0 <CJK> +<U00026BBC> /x8e/xa4/xb4/xe1 <CJK> +<U44CA> /x8e/xa4/xb4/xe2 <CJK> +<U44CC> /x8e/xa4/xb4/xe3 <CJK> +<U00026BCD> /x8e/xa4/xb4/xe4 <CJK> +<U44C7> /x8e/xa4/xb4/xe5 <CJK> +<U44C9> /x8e/xa4/xb4/xe6 <CJK> +<U8370> /x8e/xa4/xb4/xe7 <CJK> +<U00026BBE> /x8e/xa4/xb4/xe8 <CJK> +<U44C6> /x8e/xa4/xb4/xe9 <CJK> +<U00026C40> /x8e/xa4/xb4/xea <CJK> +<U00026BD6> /x8e/xa4/xb4/xeb <CJK> +<U44C3> /x8e/xa4/xb4/xec <CJK> +<U8382> /x8e/xa4/xb4/xed <CJK> +<U00026BBD> /x8e/xa4/xb4/xee <CJK> +<U83AC> /x8e/xa4/xb4/xef <CJK> +<U00026BBA> /x8e/xa4/xb4/xf0 <CJK> +<U44C4> /x8e/xa4/xb4/xf1 <CJK> +<U00026BC0> /x8e/xa4/xb4/xf2 <CJK> +<U00026BC1> /x8e/xa4/xb4/xf5 <CJK> +<U000271A6> /x8e/xa4/xb4/xf6 <CJK> +<U000271A5> /x8e/xa4/xb4/xf7 <CJK> +<U000271A8> /x8e/xa4/xb4/xf8 <CJK> +<U45A9> /x8e/xa4/xb4/xf9 <CJK> +<U86AD> /x8e/xa4/xb4/xfa <CJK> +<U45A8> /x8e/xa4/xb4/xfb <CJK> +<U45A6> /x8e/xa4/xb4/xfc <CJK> +<U0002725F> /x8e/xa4/xb4/xfd <CJK> +<U00027270> /x8e/xa4/xb4/xfe <CJK> +<U0002726A> /x8e/xa4/xb5/xa1 <CJK> +<U00027265> /x8e/xa4/xb5/xa2 <CJK> +<U00027267> /x8e/xa4/xb5/xa3 <CJK> +<U0002726F> /x8e/xa4/xb5/xa4 <CJK> +<U00027287> /x8e/xa4/xb5/xa5 <CJK> +<U86CA> /x8e/xa4/xb5/xa6 <CJK> +<U8851> /x8e/xa4/xb5/xa7 <CJK> +<U0002763D> /x8e/xa4/xb5/xa8 <CJK> +<U00027643> /x8e/xa4/xb5/xa9 <CJK> +<U4622> /x8e/xa4/xb5/xaa <CJK> +<U00027640> /x8e/xa4/xb5/xab <CJK> +<U4626> /x8e/xa4/xb5/xac <CJK> +<U4624> /x8e/xa4/xb5/xad <CJK> +<U4625> /x8e/xa4/xb5/xae <CJK> +<U889D> /x8e/xa4/xb5/xaf <CJK> +<U462A> /x8e/xa4/xb5/xb0 <CJK> +<U4674> /x8e/xa4/xb5/xb1 <CJK> +<U00027818> /x8e/xa4/xb5/xb2 <CJK> +<U4679> /x8e/xa4/xb5/xb3 <CJK> +<U8990> /x8e/xa4/xb5/xb4 <CJK> +<U467A> /x8e/xa4/xb5/xb5 <CJK> +<U00027819> /x8e/xa4/xb5/xb6 <CJK> +<U000278C1> /x8e/xa4/xb5/xb7 <CJK> +<U89D8> /x8e/xa4/xb5/xb8 <CJK> +<U89D7> /x8e/xa4/xb5/xb9 <CJK> +<U4697> /x8e/xa4/xb5/xba <CJK> +<U000278BC> /x8e/xa4/xb5/xbb <CJK> +<U000278C8> /x8e/xa4/xb5/xbc <CJK> +<U8A2E> /x8e/xa4/xb5/xbd <CJK> +<U00027971> /x8e/xa4/xb5/xbe <CJK> +<U46BC> /x8e/xa4/xb5/xbf <CJK> +<U0002796E> /x8e/xa4/xb5/xc0 <CJK> +<U46B3> /x8e/xa4/xb5/xc1 <CJK> +<U00027978> /x8e/xa4/xb5/xc2 <CJK> +<U46BF> /x8e/xa4/xb5/xc3 <CJK> +<U46B7> /x8e/xa4/xb5/xc4 <CJK> +<U0002797A> /x8e/xa4/xb5/xc6 <CJK> +<U00027BB1> /x8e/xa4/xb5/xc7 <CJK> +<U00027BAF> /x8e/xa4/xb5/xc8 <CJK> +<U00027BB0> /x8e/xa4/xb5/xc9 <CJK> +<U4734> /x8e/xa4/xb5/xca <CJK> +<U4746> /x8e/xa4/xb5/xcb <CJK> +<U4748> /x8e/xa4/xb5/xcc <CJK> +<U8C59> /x8e/xa4/xb5/xcd <CJK> +<U00027CA8> /x8e/xa4/xb5/xce <CJK> +<U00027CA6> /x8e/xa4/xb5/xcf <CJK> +<U4756> /x8e/xa4/xb5/xd0 <CJK> +<U4767> /x8e/xa4/xb5/xd1 <CJK> +<U00027D48> /x8e/xa4/xb5/xd2 <CJK> +<U00027D45> /x8e/xa4/xb5/xd3 <CJK> +<U4768> /x8e/xa4/xb5/xd4 <CJK> +<U4799> /x8e/xa4/xb5/xd5 <CJK> +<U479A> /x8e/xa4/xb5/xd6 <CJK> +<U00027EA0> /x8e/xa4/xb5/xd7 <CJK> +<U00027EA4> /x8e/xa4/xb5/xd8 <CJK> +<U47D8> /x8e/xa4/xb5/xd9 <CJK> +<U00027FD4> /x8e/xa4/xb5/xda <CJK> +<U47DB> /x8e/xa4/xb5/xdb <CJK> +<U47DC> /x8e/xa4/xb5/xdc <CJK> +<U47DD> /x8e/xa4/xb5/xdd <CJK> +<U47D7> /x8e/xa4/xb5/xde <CJK> +<U00027FD2> /x8e/xa4/xb5/xdf <CJK> +<U00028222> /x8e/xa4/xb5/xe0 <CJK> +<U4849> /x8e/xa4/xb5/xe1 <CJK> +<U484A> /x8e/xa4/xb5/xe2 <CJK> +<U8EDA> /x8e/xa4/xb5/xe3 <CJK> +<U000282B7> /x8e/xa4/xb5/xe4 <CJK> +<U000282CC> /x8e/xa4/xb5/xe5 <CJK> +<U9033> /x8e/xa4/xb5/xe6 <CJK> +<U000284E6> /x8e/xa4/xb5/xe7 <CJK> +<U9018> /x8e/xa4/xb5/xe8 <CJK> +<U489A> /x8e/xa4/xb5/xe9 <CJK> +<U000284C8> /x8e/xa4/xb5/xea <CJK> +<U48CD> /x8e/xa4/xb5/xeb <CJK> +<U48CA> /x8e/xa4/xb5/xec <CJK> +<U000286F4> /x8e/xa4/xb5/xed <CJK> +<U48CB> /x8e/xa4/xb5/xee <CJK> +<U000286ED> /x8e/xa4/xb5/xef <CJK> +<U48CF> /x8e/xa4/xb5/xf0 <CJK> +<U0002867E> /x8e/xa4/xb5/xf1 <CJK> +<U48CC> /x8e/xa4/xb5/xf3 <CJK> +<U48EA> /x8e/xa4/xb5/xf4 <CJK> +<U48ED> /x8e/xa4/xb5/xf5 <CJK> +<U000287F9> /x8e/xa4/xb5/xf6 <CJK> +<U000287FD> /x8e/xa4/xb5/xf7 <CJK> +<U48E9> /x8e/xa4/xb5/xf8 <CJK> +<U00028807> /x8e/xa4/xb5/xf9 <CJK> +<U491A> /x8e/xa4/xb5/xfa <CJK> +<U91EF> /x8e/xa4/xb5/xfb <CJK> +<U498D> /x8e/xa4/xb5/xfc <CJK> +<U49D2> /x8e/xa4/xb5/xfd <CJK> +<U00028E78> /x8e/xa4/xb5/xfe <CJK> +<U00028E7A> /x8e/xa4/xb6/xa1 <CJK> +<U00028E79> /x8e/xa4/xb6/xa2 <CJK> +<U00028F8A> /x8e/xa4/xb6/xa3 <CJK> +<U49F2> /x8e/xa4/xb6/xa4 <CJK> +<U0002907B> /x8e/xa4/xb6/xa5 <CJK> +<U000291D5> /x8e/xa4/xb6/xa6 <CJK> +<U000291E9> /x8e/xa4/xb6/xa7 <CJK> +<U4A3D> /x8e/xa4/xb6/xa8 <CJK> +<U000291EB> /x8e/xa4/xb6/xa9 <CJK> +<U4A3E> /x8e/xa4/xb6/xaa <CJK> +<U4AF8> /x8e/xa4/xb6/xab <CJK> +<U4B23> /x8e/xa4/xb6/xac <CJK> +<U9AD9> /x8e/xa4/xb6/xad <CJK> +<U4EB4> /x8e/xa4/xb6/xae <CJK> +<U0002016C> /x8e/xa4/xb6/xaf <CJK> +<U50A0> /x8e/xa4/xb6/xb0 <CJK> +<U5090> /x8e/xa4/xb6/xb1 <CJK> +<U3475> /x8e/xa4/xb6/xb2 <CJK> +<U5086> /x8e/xa4/xb6/xb3 <CJK> +<U5084> /x8e/xa4/xb6/xb4 <CJK> +<U000202FA> /x8e/xa4/xb6/xb5 <CJK> +<U508A> /x8e/xa4/xb6/xb6 <CJK> +<U3476> /x8e/xa4/xb6/xb7 <CJK> +<U3473> /x8e/xa4/xb6/xb8 <CJK> +<U509F> /x8e/xa4/xb6/xb9 <CJK> +<U50A1> /x8e/xa4/xb6/xba <CJK> +<U00020318> /x8e/xa4/xb6/xbb <CJK> +<U5093> /x8e/xa4/xb6/xbc <CJK> +<U34BD> /x8e/xa4/xb6/xbd <CJK> +<U000205F6> /x8e/xa4/xb6/xbe <CJK> +<U51D5> /x8e/xa4/xb6/xbf <CJK> +<U0002078A> /x8e/xa4/xb6/xc0 <CJK> +<U00020789> /x8e/xa4/xb6/xc1 <CJK> +<U34F9> /x8e/xa4/xb6/xc2 <CJK> +<U0002077F> /x8e/xa4/xb6/xc3 <CJK> +<U00020788> /x8e/xa4/xb6/xc4 <CJK> +<U34FA> /x8e/xa4/xb6/xc5 <CJK> +<U00020783> /x8e/xa4/xb6/xc6 <CJK> +<U00020784> /x8e/xa4/xb6/xc7 <CJK> +<U00020798> /x8e/xa4/xb6/xc8 <CJK> +<U00020763> /x8e/xa4/xb6/xc9 <CJK> +<U00020787> /x8e/xa4/xb6/xca <CJK> +<U3521> /x8e/xa4/xb6/xcb <CJK> +<U3529> /x8e/xa4/xb6/xcd <CJK> +<U000208F5> /x8e/xa4/xb6/xce <CJK> +<U00020950> /x8e/xa4/xb6/xcf <CJK> +<U3538> /x8e/xa4/xb6/xd0 <CJK> +<U354E> /x8e/xa4/xb6/xd1 <CJK> +<U00020A87> /x8e/xa4/xb6/xd2 <CJK> +<U00020A8A> /x8e/xa4/xb6/xd3 <CJK> +<U00020B65> /x8e/xa4/xb6/xd4 <CJK> +<U00020DB7> /x8e/xa4/xb6/xd5 <CJK> +<U00020DC1> /x8e/xa4/xb6/xd6 <CJK> +<U00020DC7> /x8e/xa4/xb6/xd7 <CJK> +<U35C8> /x8e/xa4/xb6/xd8 <CJK> +<U35BC> /x8e/xa4/xb6/xd9 <CJK> +<U00020DC5> /x8e/xa4/xb6/xda <CJK> +<U00020DCB> /x8e/xa4/xb6/xdb <CJK> +<U5590> /x8e/xa4/xb6/xdc <CJK> +<U00020DD1> /x8e/xa4/xb6/xdd <CJK> +<U35BB> /x8e/xa4/xb6/xde <CJK> +<U35C2> /x8e/xa4/xb6/xdf <CJK> +<U35C0> /x8e/xa4/xb6/xe0 <CJK> +<U00020DB8> /x8e/xa4/xb6/xe1 <CJK> +<U00020DCA> /x8e/xa4/xb6/xe2 <CJK> +<U35CA> /x8e/xa4/xb6/xe3 <CJK> +<U00020DDE> /x8e/xa4/xb6/xe4 <CJK> +<U35C9> /x8e/xa4/xb6/xe5 <CJK> +<U00020DCE> /x8e/xa4/xb6/xe6 <CJK> +<U35B8> /x8e/xa4/xb6/xe7 <CJK> +<U5710> /x8e/xa4/xb6/xe8 <CJK> +<U5817> /x8e/xa4/xb6/xe9 <CJK> +<U00021368> /x8e/xa4/xb6/xea <CJK> +<U364E> /x8e/xa4/xb6/xeb <CJK> +<U0002136B> /x8e/xa4/xb6/xec <CJK> +<U5844> /x8e/xa4/xb6/xed <CJK> +<U3650> /x8e/xa4/xb6/xee <CJK> +<U582B> /x8e/xa4/xb6/xef <CJK> +<U0002136A> /x8e/xa4/xb6/xf0 <CJK> +<U5845> /x8e/xa4/xb6/xf1 <CJK> +<U00021366> /x8e/xa4/xb6/xf2 <CJK> +<U00021377> /x8e/xa4/xb6/xf3 <CJK> +<U00021396> /x8e/xa4/xb6/xf4 <CJK> +<U0002136E> /x8e/xa4/xb6/xf5 <CJK> +<U368A> /x8e/xa4/xb6/xf7 <CJK> +<U00021657> /x8e/xa4/xb6/xf8 <CJK> +<U5965> /x8e/xa4/xb6/xf9 <CJK> +<U00021656> /x8e/xa4/xb6/xfa <CJK> +<U0002179C> /x8e/xa4/xb6/xfb <CJK> +<U0002179E> /x8e/xa4/xb6/xfc <CJK> +<U36FC> /x8e/xa4/xb6/xfd <CJK> +<U36F9> /x8e/xa4/xb6/xfe <CJK> +<U000217A1> /x8e/xa4/xb7/xa1 <CJK> +<U3763> /x8e/xa4/xb7/xa2 <CJK> +<U00021A42> /x8e/xa4/xb7/xa3 <CJK> +<U5BCF> /x8e/xa4/xb7/xa4 <CJK> +<U00021A46> /x8e/xa4/xb7/xa5 <CJK> +<U00021A3E> /x8e/xa4/xb7/xa6 <CJK> +<U00021B33> /x8e/xa4/xb7/xa7 <CJK> +<U3787> /x8e/xa4/xb7/xa8 <CJK> +<U3788> /x8e/xa4/xb7/xa9 <CJK> +<U00021BFA> /x8e/xa4/xb7/xaa <CJK> +<U379A> /x8e/xa4/xb7/xab <CJK> +<U00021C97> /x8e/xa4/xb7/xac <CJK> +<U00021C9B> /x8e/xa4/xb7/xad <CJK> +<U00021CAA> /x8e/xa4/xb7/xae <CJK> +<U5D56> /x8e/xa4/xb7/xaf <CJK> +<U00021E73> /x8e/xa4/xb7/xb0 <CJK> +<U00021E7C> /x8e/xa4/xb7/xb1 <CJK> +<U37E9> /x8e/xa4/xb7/xb2 <CJK> +<U00021E86> /x8e/xa4/xb7/xb3 <CJK> +<U37EA> /x8e/xa4/xb7/xb4 <CJK> +<U5D54> /x8e/xa4/xb7/xb5 <CJK> +<U3850> /x8e/xa4/xb7/xb6 <CJK> +<U000220F3> /x8e/xa4/xb7/xb7 <CJK> +<U000220F0> /x8e/xa4/xb7/xb8 <CJK> +<U3856> /x8e/xa4/xb7/xb9 <CJK> +<U3852> /x8e/xa4/xb7/xba <CJK> +<U384F> /x8e/xa4/xb7/xbb <CJK> +<U3854> /x8e/xa4/xb7/xbc <CJK> +<U3851> /x8e/xa4/xb7/xbd <CJK> +<U000220EC> /x8e/xa4/xb7/xbe <CJK> +<U000222AF> /x8e/xa4/xb7/xbf <CJK> +<U388E> /x8e/xa4/xb7/xc0 <CJK> +<U388F> /x8e/xa4/xb7/xc1 <CJK> +<U00022264> /x8e/xa4/xb7/xc2 <CJK> +<U00022268> /x8e/xa4/xb7/xc3 <CJK> +<U0002235A> /x8e/xa4/xb7/xc4 <CJK> +<U5F3D> /x8e/xa4/xb7/xc5 <CJK> +<U0002251F> /x8e/xa4/xb7/xc6 <CJK> +<U00022525> /x8e/xa4/xb7/xc7 <CJK> +<U38ED> /x8e/xa4/xb7/xc8 <CJK> +<U38EB> /x8e/xa4/xb7/xc9 <CJK> +<U5FA4> /x8e/xa4/xb7/xca <CJK> +<U000226C6> /x8e/xa4/xb7/xcb <CJK> +<U000226D6> /x8e/xa4/xb7/xcc <CJK> +<U000226C3> /x8e/xa4/xb7/xcd <CJK> +<U3962> /x8e/xa4/xb7/xce <CJK> +<U0002272C> /x8e/xa4/xb7/xcf <CJK> +<U395D> /x8e/xa4/xb7/xd0 <CJK> +<U0002272E> /x8e/xa4/xb7/xd1 <CJK> +<U0002275E> /x8e/xa4/xb7/xd2 <CJK> +<U00022733> /x8e/xa4/xb7/xd3 <CJK> +<U3961> /x8e/xa4/xb7/xd4 <CJK> +<U3965> /x8e/xa4/xb7/xd5 <CJK> +<U395C> /x8e/xa4/xb7/xd6 <CJK> +<U0002272D> /x8e/xa4/xb7/xd7 <CJK> +<U00022746> /x8e/xa4/xb7/xd8 <CJK> +<U395F> /x8e/xa4/xb7/xd9 <CJK> +<U000226C1> /x8e/xa4/xb7/xda <CJK> +<U0002273A> /x8e/xa4/xb7/xdb <CJK> +<U000229CC> /x8e/xa4/xb7/xdc <CJK> +<U00022B9D> /x8e/xa4/xb7/xdd <CJK> +<U00022B83> /x8e/xa4/xb7/xde <CJK> +<U00022BF6> /x8e/xa4/xb7/xdf <CJK> +<U63EC> /x8e/xa4/xb7/xe0 <CJK> +<U3A16> /x8e/xa4/xb7/xe1 <CJK> +<U3A0A> /x8e/xa4/xb7/xe2 <CJK> +<U00022BF8> /x8e/xa4/xb7/xe3 <CJK> +<U3A0E> /x8e/xa4/xb7/xe4 <CJK> +<U3A12> /x8e/xa4/xb7/xe5 <CJK> +<U00022BFE> /x8e/xa4/xb7/xe6 <CJK> +<U00022BF3> /x8e/xa4/xb7/xe7 <CJK> +<U3A11> /x8e/xa4/xb7/xe8 <CJK> +<U00022BEB> /x8e/xa4/xb7/xe9 <CJK> +<U00022BFA> /x8e/xa4/xb7/xea <CJK> +<U3A10> /x8e/xa4/xb7/xeb <CJK> +<U00022C07> /x8e/xa4/xb7/xec <CJK> +<U00022BFC> /x8e/xa4/xb7/xed <CJK> +<U3A09> /x8e/xa4/xb7/xee <CJK> +<U63FA> /x8e/xa4/xb7/xef <CJK> +<U3A15> /x8e/xa4/xb7/xf0 <CJK> +<U63D4> /x8e/xa4/xb7/xf1 <CJK> +<U00022F72> /x8e/xa4/xb7/xf2 <CJK> +<U00022F73> /x8e/xa4/xb7/xf3 <CJK> +<U00022F74> /x8e/xa4/xb7/xf4 <CJK> +<U3A91> /x8e/xa4/xb7/xf5 <CJK> +<U3A95> /x8e/xa4/xb7/xf6 <CJK> +<U3A93> /x8e/xa4/xb7/xf7 <CJK> +<U3A92> /x8e/xa4/xb7/xf8 <CJK> +<U3A8F> /x8e/xa4/xb7/xf9 <CJK> +<U00022F5F> /x8e/xa4/xb7/xfa <CJK> +<U00022F60> /x8e/xa4/xb7/xfb <CJK> +<U000230AA> /x8e/xa4/xb7/xfc <CJK> +<U00023134> /x8e/xa4/xb7/xfd <CJK> +<U3AF6> /x8e/xa4/xb7/xfe <CJK> +<U000231B4> /x8e/xa4/xb8/xa1 <CJK> +<U3AFB> /x8e/xa4/xb8/xa2 <CJK> +<U000231F0> /x8e/xa4/xb8/xa3 <CJK> +<U6675> /x8e/xa4/xb8/xa4 <CJK> +<U3AF9> /x8e/xa4/xb8/xa5 <CJK> +<U0002320D> /x8e/xa4/xb8/xa6 <CJK> +<U000231F3> /x8e/xa4/xb8/xa7 <CJK> +<U0002320F> /x8e/xa4/xb8/xa8 <CJK> +<U671C> /x8e/xa4/xb8/xa9 <CJK> +<U3B7D> /x8e/xa4/xb8/xaa <CJK> +<U000234C9> /x8e/xa4/xb8/xab <CJK> +<U3B7A> /x8e/xa4/xb8/xac <CJK> +<U3B7F> /x8e/xa4/xb8/xad <CJK> +<U000234C5> /x8e/xa4/xb8/xae <CJK> +<U3B78> /x8e/xa4/xb8/xaf <CJK> +<U000234D7> /x8e/xa4/xb8/xb0 <CJK> +<U000234CC> /x8e/xa4/xb8/xb1 <CJK> +<U68D9> /x8e/xa4/xb8/xb2 <CJK> +<U000234E7> /x8e/xa4/xb8/xb3 <CJK> +<U3B70> /x8e/xa4/xb8/xb4 <CJK> +<U3B82> /x8e/xa4/xb8/xb5 <CJK> +<U000234C1> /x8e/xa4/xb8/xb6 <CJK> +<U3B84> /x8e/xa4/xb8/xb7 <CJK> +<U000234E8> /x8e/xa4/xb8/xb8 <CJK> +<U3C33> /x8e/xa4/xb8/xb9 <CJK> +<U000238CB> /x8e/xa4/xb8/xba <CJK> +<U3C32> /x8e/xa4/xb8/xbb <CJK> +<U3C36> /x8e/xa4/xb8/xbc <CJK> +<U000238C8> /x8e/xa4/xb8/xbd <CJK> +<U0002397A> /x8e/xa4/xb8/xbe <CJK> +<U3C56> /x8e/xa4/xb8/xbf <CJK> +<U00023979> /x8e/xa4/xb8/xc0 <CJK> +<U0002397E> /x8e/xa4/xb8/xc1 <CJK> +<U3C67> /x8e/xa4/xb8/xc2 <CJK> +<U00023A1B> /x8e/xa4/xb8/xc3 <CJK> +<U3C65> /x8e/xa4/xb8/xc4 <CJK> +<U3C64> /x8e/xa4/xb8/xc5 <CJK> +<U3C66> /x8e/xa4/xb8/xc6 <CJK> +<U00023A1F> /x8e/xa4/xb8/xc7 <CJK> +<U00023A19> /x8e/xa4/xb8/xc8 <CJK> +<U3C81> /x8e/xa4/xb8/xc9 <CJK> +<U3C82> /x8e/xa4/xb8/xca <CJK> +<U3C83> /x8e/xa4/xb8/xcb <CJK> +<U3C9E> /x8e/xa4/xb8/xcc <CJK> +<U00023B89> /x8e/xa4/xb8/xcd <CJK> +<U6BF1> /x8e/xa4/xb8/xce <CJK> +<U3C9D> /x8e/xa4/xb8/xcf <CJK> +<U00023B8B> /x8e/xa4/xb8/xd0 <CJK> +<U3D0F> /x8e/xa4/xb8/xd1 <CJK> +<U3D12> /x8e/xa4/xb8/xd2 <CJK> +<U00023E09> /x8e/xa4/xb8/xd3 <CJK> +<U00023DFE> /x8e/xa4/xb8/xd4 <CJK> +<U00023E00> /x8e/xa4/xb8/xd5 <CJK> +<U3D10> /x8e/xa4/xb8/xd6 <CJK> +<U3D18> /x8e/xa4/xb8/xd7 <CJK> +<U00023E0B> /x8e/xa4/xb8/xd8 <CJK> +<U3D14> /x8e/xa4/xb8/xd9 <CJK> +<U3D19> /x8e/xa4/xb8/xda <CJK> +<U6E37> /x8e/xa4/xb8/xdb <CJK> +<U00023E4A> /x8e/xa4/xb8/xdd <CJK> +<U6E7D> /x8e/xa4/xb8/xde <CJK> +<U6E86> /x8e/xa4/xb8/xdf <CJK> +<U3DC8> /x8e/xa4/xb8/xe0 <CJK> +<U3DC4> /x8e/xa4/xb8/xe1 <CJK> +<U3DC6> /x8e/xa4/xb8/xe2 <CJK> +<U00024279> /x8e/xa4/xb8/xe3 <CJK> +<U3DC7> /x8e/xa4/xb8/xe4 <CJK> +<U3DC3> /x8e/xa4/xb8/xe5 <CJK> +<U0002426C> /x8e/xa4/xb8/xe6 <CJK> +<U00024299> /x8e/xa4/xb8/xe7 <CJK> +<U00024262> /x8e/xa4/xb8/xe9 <CJK> +<U00024514> /x8e/xa4/xb8/xea <CJK> +<U3E19> /x8e/xa4/xb8/xeb <CJK> +<U3E1C> /x8e/xa4/xb8/xec <CJK> +<U000245C8> /x8e/xa4/xb8/xed <CJK> +<U000245D7> /x8e/xa4/xb8/xee <CJK> +<U0002460C> /x8e/xa4/xb8/xef <CJK> +<U3E41> /x8e/xa4/xb8/xf0 <CJK> +<U00024670> /x8e/xa4/xb8/xf1 <CJK> +<U3E42> /x8e/xa4/xb8/xf2 <CJK> +<U3E43> /x8e/xa4/xb8/xf3 <CJK> +<U00024671> /x8e/xa4/xb8/xf4 <CJK> +<U000247DF> /x8e/xa4/xb8/xf5 <CJK> +<U000247E4> /x8e/xa4/xb8/xf6 <CJK> +<U3E82> /x8e/xa4/xb8/xf7 <CJK> +<U000247E7> /x8e/xa4/xb8/xf8 <CJK> +<U3E81> /x8e/xa4/xb8/xf9 <CJK> +<U3E94> /x8e/xa4/xb8/xfa <CJK> +<U3E84> /x8e/xa4/xb8/xfb <CJK> +<U00024990> /x8e/xa4/xb8/xfc <CJK> +<U3ED2> /x8e/xa4/xb8/xfd <CJK> +<U3F0F> /x8e/xa4/xb8/xfe <CJK> +<U3F22> /x8e/xa4/xb9/xa1 <CJK> +<U00024B4C> /x8e/xa4/xb9/xa2 <CJK> +<U3F27> /x8e/xa4/xb9/xa3 <CJK> +<U3F2A> /x8e/xa4/xb9/xa4 <CJK> +<U74FA> /x8e/xa4/xb9/xa5 <CJK> +<U3F28> /x8e/xa4/xb9/xa6 <CJK> +<U00024B4F> /x8e/xa4/xb9/xa7 <CJK> +<U3F60> /x8e/xa4/xb9/xa8 <CJK> +<U00024C7D> /x8e/xa4/xb9/xa9 <CJK> +<U00024C7E> /x8e/xa4/xb9/xaa <CJK> +<U00024C7C> /x8e/xa4/xb9/xab <CJK> +<U7572> /x8e/xa4/xb9/xac <CJK> +<U00024C8D> /x8e/xa4/xb9/xad <CJK> +<U00024D19> /x8e/xa4/xb9/xae <CJK> +<U3F9B> /x8e/xa4/xb9/xaf <CJK> +<U3F9C> /x8e/xa4/xb9/xb0 <CJK> +<U00024DC0> /x8e/xa4/xb9/xb1 <CJK> +<U3F93> /x8e/xa4/xb9/xb2 <CJK> +<U3F94> /x8e/xa4/xb9/xb3 <CJK> +<U75DC> /x8e/xa4/xb9/xb4 <CJK> +<U3FA0> /x8e/xa4/xb9/xb5 <CJK> +<U3F99> /x8e/xa4/xb9/xb6 <CJK> +<U00024DB6> /x8e/xa4/xb9/xb7 <CJK> +<U3FA1> /x8e/xa4/xb9/xb8 <CJK> +<U00024DA8> /x8e/xa4/xb9/xb9 <CJK> +<U3FF1> /x8e/xa4/xb9/xba <CJK> +<U00024FEB> /x8e/xa4/xb9/xbb <CJK> +<U00024FE7> /x8e/xa4/xb9/xbc <CJK> +<U0002506F> /x8e/xa4/xb9/xbd <CJK> +<U000251C7> /x8e/xa4/xb9/xbe <CJK> +<U4036> /x8e/xa4/xb9/xbf <CJK> +<U0002519F> /x8e/xa4/xb9/xc0 <CJK> +<U4037> /x8e/xa4/xb9/xc1 <CJK> +<U403F> /x8e/xa4/xb9/xc2 <CJK> +<U403C> /x8e/xa4/xb9/xc3 <CJK> +<U000251C4> /x8e/xa4/xb9/xc4 <CJK> +<U4034> /x8e/xa4/xb9/xc5 <CJK> +<U4039> /x8e/xa4/xb9/xc6 <CJK> +<U403B> /x8e/xa4/xb9/xc7 <CJK> +<U4035> /x8e/xa4/xb9/xc8 <CJK> +<U4030> /x8e/xa4/xb9/xc9 <CJK> +<U4032> /x8e/xa4/xb9/xca <CJK> +<U4038> /x8e/xa4/xb9/xcb <CJK> +<U403E> /x8e/xa4/xb9/xcc <CJK> +<U403A> /x8e/xa4/xb9/xcd <CJK> +<U0002519B> /x8e/xa4/xb9/xce <CJK> +<U00025197> /x8e/xa4/xb9/xcf <CJK> +<U000251C5> /x8e/xa4/xb9/xd0 <CJK> +<U0002536B> /x8e/xa4/xb9/xd1 <CJK> +<U000253CE> /x8e/xa4/xb9/xd2 <CJK> +<U40B6> /x8e/xa4/xb9/xd3 <CJK> +<U7867> /x8e/xa4/xb9/xd4 <CJK> +<U000254B1> /x8e/xa4/xb9/xd5 <CJK> +<U000254AE> /x8e/xa4/xb9/xd6 <CJK> +<U000254B0> /x8e/xa4/xb9/xd7 <CJK> +<U40B3> /x8e/xa4/xb9/xd8 <CJK> +<U4109> /x8e/xa4/xb9/xd9 <CJK> +<U7977> /x8e/xa4/xb9/xda <CJK> +<U0002573E> /x8e/xa4/xb9/xdb <CJK> +<U000257B5> /x8e/xa4/xb9/xdc <CJK> +<U000257BA> /x8e/xa4/xb9/xdd <CJK> +<U414C> /x8e/xa4/xb9/xde <CJK> +<U000257B2> /x8e/xa4/xb9/xdf <CJK> +<U000257B4> /x8e/xa4/xb9/xe0 <CJK> +<U4153> /x8e/xa4/xb9/xe1 <CJK> +<U414D> /x8e/xa4/xb9/xe2 <CJK> +<U4151> /x8e/xa4/xb9/xe3 <CJK> +<U414F> /x8e/xa4/xb9/xe4 <CJK> +<U7A9B> /x8e/xa4/xb9/xe5 <CJK> +<U00025977> /x8e/xa4/xb9/xe6 <CJK> +<U41A2> /x8e/xa4/xb9/xe7 <CJK> +<U00025986> /x8e/xa4/xb9/xe8 <CJK> +<U0002597B> /x8e/xa4/xb9/xe9 <CJK> +<U41CD> /x8e/xa4/xb9/xea <CJK> +<U00025A7E> /x8e/xa4/xb9/xeb <CJK> +<U00025B2E> /x8e/xa4/xb9/xec <CJK> +<U41E7> /x8e/xa4/xb9/xed <CJK> +<U00025B2F> /x8e/xa4/xb9/xee <CJK> +<U41F0> /x8e/xa4/xb9/xef <CJK> +<U00025B37> /x8e/xa4/xb9/xf0 <CJK> +<U41E9> /x8e/xa4/xb9/xf1 <CJK> +<U41EC> /x8e/xa4/xb9/xf2 <CJK> +<U00025B32> /x8e/xa4/xb9/xf3 <CJK> +<U41E8> /x8e/xa4/xb9/xf4 <CJK> +<U41EE> /x8e/xa4/xb9/xf5 <CJK> +<U4202> /x8e/xa4/xb9/xf6 <CJK> +<U00025B36> /x8e/xa4/xb9/xf7 <CJK> +<U00025B39> /x8e/xa4/xb9/xf8 <CJK> +<U00025B35> /x8e/xa4/xb9/xf9 <CJK> +<U00025E5C> /x8e/xa4/xb9/xfa <CJK> +<U4282> /x8e/xa4/xb9/xfb <CJK> +<U4283> /x8e/xa4/xb9/xfc <CJK> +<U4286> /x8e/xa4/xb9/xfd <CJK> +<U00025E7B> /x8e/xa4/xb9/xfe <CJK> +<U00025E61> /x8e/xa4/xba/xa1 <CJK> +<U00025FEE> /x8e/xa4/xba/xa2 <CJK> +<U00025FEB> /x8e/xa4/xba/xa3 <CJK> +<U00025FEF> /x8e/xa4/xba/xa4 <CJK> +<U00026020> /x8e/xa4/xba/xa5 <CJK> +<U7D2A> /x8e/xa4/xba/xa6 <CJK> +<U7D65> /x8e/xa4/xba/xa7 <CJK> +<U434A> /x8e/xa4/xba/xa8 <CJK> +<U00026230> /x8e/xa4/xba/xa9 <CJK> +<U435A> /x8e/xa4/xba/xaa <CJK> +<U7F64> /x8e/xa4/xba/xab <CJK> +<U000262BE> /x8e/xa4/xba/xac <CJK> +<U436E> /x8e/xa4/xba/xad <CJK> +<U00026367> /x8e/xa4/xba/xae <CJK> +<U0002637C> /x8e/xa4/xba/xaf <CJK> +<U4370> /x8e/xa4/xba/xb0 <CJK> +<U436F> /x8e/xa4/xba/xb1 <CJK> +<U00026424> /x8e/xa4/xba/xb2 <CJK> +<U438A> /x8e/xa4/xba/xb3 <CJK> +<U4387> /x8e/xa4/xba/xb4 <CJK> +<U4388> /x8e/xa4/xba/xb5 <CJK> +<U00026429> /x8e/xa4/xba/xb6 <CJK> +<U000264EF> /x8e/xa4/xba/xb7 <CJK> +<U8020> /x8e/xa4/xba/xb8 <CJK> +<U43B7> /x8e/xa4/xba/xb9 <CJK> +<U43FD> /x8e/xa4/xba/xba <CJK> +<U8120> /x8e/xa4/xba/xbb <CJK> +<U0002670D> /x8e/xa4/xba/xbc <CJK> +<U4405> /x8e/xa4/xba/xbd <CJK> +<U813C> /x8e/xa4/xba/xbe <CJK> +<U4408> /x8e/xa4/xba/xbf <CJK> +<U4403> /x8e/xa4/xba/xc0 <CJK> +<U4402> /x8e/xa4/xba/xc1 <CJK> +<U4404> /x8e/xa4/xba/xc2 <CJK> +<U3B39> /x8e/xa4/xba/xc3 <CJK> +<U4409> /x8e/xa4/xba/xc4 <CJK> +<U43FF> /x8e/xa4/xba/xc5 <CJK> +<U00026764> /x8e/xa4/xba/xc6 <CJK> +<U813F> /x8e/xa4/xba/xc7 <CJK> +<U00026715> /x8e/xa4/xba/xc8 <CJK> +<U43FC> /x8e/xa4/xba/xc9 <CJK> +<U4401> /x8e/xa4/xba/xca <CJK> +<U440A> /x8e/xa4/xba/xcb <CJK> +<U81F0> /x8e/xa4/xba/xcc <CJK> +<U81F5> /x8e/xa4/xba/xcd <CJK> +<U446B> /x8e/xa4/xba/xce <CJK> +<U446C> /x8e/xa4/xba/xcf <CJK> +<U00026A35> /x8e/xa4/xba/xd0 <CJK> +<U00026A36> /x8e/xa4/xba/xd1 <CJK> +<U00026A34> /x8e/xa4/xba/xd2 <CJK> +<U00026A37> /x8e/xa4/xba/xd3 <CJK> +<U00026C47> /x8e/xa4/xba/xd4 <CJK> +<U00026C2B> /x8e/xa4/xba/xd5 <CJK> +<U44DE> /x8e/xa4/xba/xd6 <CJK> +<U00026C41> /x8e/xa4/xba/xd7 <CJK> +<U00026C43> /x8e/xa4/xba/xd8 <CJK> +<U44DB> /x8e/xa4/xba/xd9 <CJK> +<U00026C42> /x8e/xa4/xba/xda <CJK> +<U44DD> /x8e/xa4/xba/xdb <CJK> +<U44E3> /x8e/xa4/xba/xdc <CJK> +<U00026C32> /x8e/xa4/xba/xdd <CJK> +<U44E0> /x8e/xa4/xba/xde <CJK> +<U44D9> /x8e/xa4/xba/xdf <CJK> +<U44D8> /x8e/xa4/xba/xe0 <CJK> +<U44E4> /x8e/xa4/xba/xe1 <CJK> +<U00026C44> /x8e/xa4/xba/xe2 <CJK> +<U00026C4A> /x8e/xa4/xba/xe3 <CJK> +<U44DA> /x8e/xa4/xba/xe4 <CJK> +<U44EF> /x8e/xa4/xba/xe5 <CJK> +<U8415> /x8e/xa4/xba/xe7 <CJK> +<U83BE> /x8e/xa4/xba/xe8 <CJK> +<U00026C54> /x8e/xa4/xba/xe9 <CJK> +<U00026C6E> /x8e/xa4/xba/xea <CJK> +<U00026C52> /x8e/xa4/xba/xeb <CJK> +<U44D7> /x8e/xa4/xba/xec <CJK> +<U45B3> /x8e/xa4/xba/xed <CJK> +<U45BB> /x8e/xa4/xba/xee <CJK> +<U86E5> /x8e/xa4/xba/xef <CJK> +<U45B2> /x8e/xa4/xba/xf0 <CJK> +<U86D2> /x8e/xa4/xba/xf1 <CJK> +<U45AD> /x8e/xa4/xba/xf2 <CJK> +<U00027292> /x8e/xa4/xba/xf3 <CJK> +<U45AF> /x8e/xa4/xba/xf4 <CJK> +<U86E0> /x8e/xa4/xba/xf6 <CJK> +<U000272BF> /x8e/xa4/xba/xf7 <CJK> +<U4616> /x8e/xa4/xba/xf8 <CJK> +<U4628> /x8e/xa4/xba/xf9 <CJK> +<U4623> /x8e/xa4/xba/xfa <CJK> +<U88B3> /x8e/xa4/xba/xfb <CJK> +<U00027641> /x8e/xa4/xba/xfc <CJK> +<U00027669> /x8e/xa4/xba/xfd <CJK> +<U00027665> /x8e/xa4/xba/xfe <CJK> +<U4675> /x8e/xa4/xbb/xa1 <CJK> +<U467E> /x8e/xa4/xbb/xa2 <CJK> +<U467C> /x8e/xa4/xbb/xa3 <CJK> +<U00027822> /x8e/xa4/xbb/xa4 <CJK> +<U0002781D> /x8e/xa4/xbb/xa5 <CJK> +<U000278D2> /x8e/xa4/xbb/xa6 <CJK> +<U000278DA> /x8e/xa4/xbb/xa7 <CJK> +<U000278DB> /x8e/xa4/xbb/xa8 <CJK> +<U46CE> /x8e/xa4/xbb/xa9 <CJK> +<U46CD> /x8e/xa4/xbb/xaa <CJK> +<U46CF> /x8e/xa4/xbb/xab <CJK> +<U8A53> /x8e/xa4/xbb/xac <CJK> +<U000279A4> /x8e/xa4/xbb/xad <CJK> +<U0002799E> /x8e/xa4/xbb/xae <CJK> +<U8A37> /x8e/xa4/xbb/xaf <CJK> +<U8A47> /x8e/xa4/xbb/xb0 <CJK> +<U8A5C> /x8e/xa4/xbb/xb1 <CJK> +<U0002799D> /x8e/xa4/xbb/xb2 <CJK> +<U46C4> /x8e/xa4/xbb/xb3 <CJK> +<U46CC> /x8e/xa4/xbb/xb4 <CJK> +<U46C8> /x8e/xa4/xbb/xb5 <CJK> +<U46C7> /x8e/xa4/xbb/xb6 <CJK> +<U000279AD> /x8e/xa4/xbb/xb7 <CJK> +<U000279A6> /x8e/xa4/xbb/xb8 <CJK> +<U000279A7> /x8e/xa4/xbb/xb9 <CJK> +<U00027BB3> /x8e/xa4/xbb/xba <CJK> +<U00027BE0> /x8e/xa4/xbb/xbb <CJK> +<U00027C35> /x8e/xa4/xbb/xbc <CJK> +<U00027C37> /x8e/xa4/xbb/xbd <CJK> +<U475A> /x8e/xa4/xbb/xbe <CJK> +<U476A> /x8e/xa4/xbb/xbf <CJK> +<U00027D4A> /x8e/xa4/xbb/xc0 <CJK> +<U476B> /x8e/xa4/xbb/xc1 <CJK> +<U476D> /x8e/xa4/xbb/xc2 <CJK> +<U476F> /x8e/xa4/xbb/xc3 <CJK> +<U00027E5E> /x8e/xa4/xbb/xc4 <CJK> +<U479E> /x8e/xa4/xbb/xc5 <CJK> +<U00027EC0> /x8e/xa4/xbb/xc6 <CJK> +<U47A4> /x8e/xa4/xbb/xc7 <CJK> +<U47A3> /x8e/xa4/xbb/xc8 <CJK> +<U47E4> /x8e/xa4/xbb/xc9 <CJK> +<U47E8> /x8e/xa4/xbb/xca <CJK> +<U47E9> /x8e/xa4/xbb/xcb <CJK> +<U47E0> /x8e/xa4/xbb/xcc <CJK> +<U47E3> /x8e/xa4/xbb/xcd <CJK> +<U00027FF9> /x8e/xa4/xbb/xce <CJK> +<U47EA> /x8e/xa4/xbb/xcf <CJK> +<U47E1> /x8e/xa4/xbb/xd0 <CJK> +<U47ED> /x8e/xa4/xbb/xd1 <CJK> +<U4834> /x8e/xa4/xbb/xd2 <CJK> +<U4835> /x8e/xa4/xbb/xd3 <CJK> +<U4851> /x8e/xa4/xbb/xd4 <CJK> +<U8EF0> /x8e/xa4/xbb/xd5 <CJK> +<U000284F0> /x8e/xa4/xbb/xd6 <CJK> +<U489D> /x8e/xa4/xbb/xd7 <CJK> +<U000284F3> /x8e/xa4/xbb/xd8 <CJK> +<U0002851B> /x8e/xa4/xbb/xd9 <CJK> +<U000284F2> /x8e/xa4/xbb/xda <CJK> +<U000284FB> /x8e/xa4/xbb/xdb <CJK> +<U0002871C> /x8e/xa4/xbb/xdc <CJK> +<U00028713> /x8e/xa4/xbb/xdd <CJK> +<U48D0> /x8e/xa4/xbb/xde <CJK> +<U0002870F> /x8e/xa4/xbb/xdf <CJK> +<U48EE> /x8e/xa4/xbb/xe0 <CJK> +<U00028816> /x8e/xa4/xbb/xe1 <CJK> +<U00028811> /x8e/xa4/xbb/xe2 <CJK> +<U00028812> /x8e/xa4/xbb/xe3 <CJK> +<U48F2> /x8e/xa4/xbb/xe4 <CJK> +<U0002880E> /x8e/xa4/xbb/xe5 <CJK> +<U921D> /x8e/xa4/xbb/xe6 <CJK> +<U4988> /x8e/xa4/xbb/xe7 <CJK> +<U00028C67> /x8e/xa4/xbb/xe8 <CJK> +<U00028CF2> /x8e/xa4/xbb/xe9 <CJK> +<U00028CDA> /x8e/xa4/xbb/xea <CJK> +<U498F> /x8e/xa4/xbb/xeb <CJK> +<U00028CDC> /x8e/xa4/xbb/xec <CJK> +<U49D8> /x8e/xa4/xbb/xed <CJK> +<U00028F94> /x8e/xa4/xbb/xee <CJK> +<U00028F9B> /x8e/xa4/xbb/xef <CJK> +<U00028F92> /x8e/xa4/xbb/xf0 <CJK> +<U00028F9A> /x8e/xa4/xbb/xf1 <CJK> +<U00029088> /x8e/xa4/xbb/xf2 <CJK> +<U00029086> /x8e/xa4/xbb/xf3 <CJK> +<U4A3F> /x8e/xa4/xbb/xf4 <CJK> +<U000291EF> /x8e/xa4/xbb/xf5 <CJK> +<U4A52> /x8e/xa4/xbb/xf6 <CJK> +<U976B> /x8e/xa4/xbb/xf7 <CJK> +<U0002925E> /x8e/xa4/xbb/xf8 <CJK> +<U4A50> /x8e/xa4/xbb/xf9 <CJK> +<U00029458> /x8e/xa4/xbb/xfa <CJK> +<U4AB1> /x8e/xa4/xbb/xfb <CJK> +<U00029456> /x8e/xa4/xbb/xfc <CJK> +<U00029454> /x8e/xa4/xbb/xfd <CJK> +<U4AF9> /x8e/xa4/xbb/xfe <CJK> +<U0002959B> /x8e/xa4/xbc/xa1 <CJK> +<U00029696> /x8e/xa4/xbc/xa2 <CJK> +<U000296A4> /x8e/xa4/xbc/xa3 <CJK> +<U4B26> /x8e/xa4/xbc/xa4 <CJK> +<U4B28> /x8e/xa4/xbc/xa5 <CJK> +<U0002969A> /x8e/xa4/xbc/xa6 <CJK> +<U00029A12> /x8e/xa4/xbc/xa7 <CJK> +<U3480> /x8e/xa4/xbc/xa8 <CJK> +<U50C0> /x8e/xa4/xbc/xa9 <CJK> +<U3481> /x8e/xa4/xbc/xaa <CJK> +<U0002036B> /x8e/xa4/xbc/xab <CJK> +<U347E> /x8e/xa4/xbc/xac <CJK> +<U347F> /x8e/xa4/xbc/xad <CJK> +<U00020337> /x8e/xa4/xbc/xae <CJK> +<U0002033C> /x8e/xa4/xbc/xaf <CJK> +<U000204F7> /x8e/xa4/xbc/xb1 <CJK> +<U34BE> /x8e/xa4/xbc/xb2 <CJK> +<U00020566> /x8e/xa4/xbc/xb3 <CJK> +<U34D6> /x8e/xa4/xbc/xb4 <CJK> +<U000207A9> /x8e/xa4/xbc/xb5 <CJK> +<U000207AE> /x8e/xa4/xbc/xb6 <CJK> +<U000207AD> /x8e/xa4/xbc/xb7 <CJK> +<U000207C8> /x8e/xa4/xbc/xb8 <CJK> +<U000207A5> /x8e/xa4/xbc/xb9 <CJK> +<U000207B0> /x8e/xa4/xbc/xba <CJK> +<U00020895> /x8e/xa4/xbc/xbb <CJK> +<U52E5> /x8e/xa4/xbc/xbc <CJK> +<U00020925> /x8e/xa4/xbc/xbd <CJK> +<U3534> /x8e/xa4/xbc/xbe <CJK> +<U00020A99> /x8e/xa4/xbc/xbf <CJK> +<U53AF> /x8e/xa4/xbc/xc0 <CJK> +<U00020B74> /x8e/xa4/xbc/xc1 <CJK> +<U00020B70> /x8e/xa4/xbc/xc2 <CJK> +<U00020B6F> /x8e/xa4/xbc/xc3 <CJK> +<U00020E41> /x8e/xa4/xbc/xc4 <CJK> +<U00020E54> /x8e/xa4/xbc/xc5 <CJK> +<U35D5> /x8e/xa4/xbc/xc6 <CJK> +<U35D8> /x8e/xa4/xbc/xc7 <CJK> +<U00020E40> /x8e/xa4/xbc/xc8 <CJK> +<U00020E38> /x8e/xa4/xbc/xc9 <CJK> +<U35D4> /x8e/xa4/xbc/xca <CJK> +<U55D8> /x8e/xa4/xbc/xcb <CJK> +<U35D9> /x8e/xa4/xbc/xcc <CJK> +<U00020E52> /x8e/xa4/xbc/xcd <CJK> +<U00020E3A> /x8e/xa4/xbc/xce <CJK> +<U00020E57> /x8e/xa4/xbc/xcf <CJK> +<U00020E59> /x8e/xa4/xbc/xd1 <CJK> +<U5711> /x8e/xa4/xbc/xd2 <CJK> +<U5867> /x8e/xa4/xbc/xd3 <CJK> +<U000213B4> /x8e/xa4/xbc/xd4 <CJK> +<U000213C0> /x8e/xa4/xbc/xd5 <CJK> +<U365D> /x8e/xa4/xbc/xd6 <CJK> +<U5843> /x8e/xa4/xbc/xd7 <CJK> +<U365E> /x8e/xa4/xbc/xd8 <CJK> +<U3659> /x8e/xa4/xbc/xd9 <CJK> +<U00021375> /x8e/xa4/xbc/xda <CJK> +<U365A> /x8e/xa4/xbc/xdb <CJK> +<U36A0> /x8e/xa4/xbc/xdc <CJK> +<U00021660> /x8e/xa4/xbc/xdd <CJK> +<U00021647> /x8e/xa4/xbc/xde <CJK> +<U3705> /x8e/xa4/xbc/xdf <CJK> +<U000217F0> /x8e/xa4/xbc/xe0 <CJK> +<U3707> /x8e/xa4/xbc/xe1 <CJK> +<U000217EF> /x8e/xa4/xbc/xe2 <CJK> +<U370E> /x8e/xa4/xbc/xe3 <CJK> +<U370C> /x8e/xa4/xbc/xe4 <CJK> +<U000217EC> /x8e/xa4/xbc/xe5 <CJK> +<U00021983> /x8e/xa4/xbc/xe6 <CJK> +<U3745> /x8e/xa4/xbc/xe7 <CJK> +<U00021984> /x8e/xa4/xbc/xe8 <CJK> +<U0002198F> /x8e/xa4/xbc/xe9 <CJK> +<U3764> /x8e/xa4/xbc/xea <CJK> +<U00021A61> /x8e/xa4/xbc/xeb <CJK> +<U3765> /x8e/xa4/xbc/xec <CJK> +<U00021A69> /x8e/xa4/xbc/xed <CJK> +<U5BDD> /x8e/xa4/xbc/xee <CJK> +<U3766> /x8e/xa4/xbc/xef <CJK> +<U00021A62> /x8e/xa4/xbc/xf0 <CJK> +<U3789> /x8e/xa4/xbc/xf1 <CJK> +<U37EC> /x8e/xa4/xbc/xf2 <CJK> +<U37F1> /x8e/xa4/xbc/xf3 <CJK> +<U5D70> /x8e/xa4/xbc/xf4 <CJK> +<U5D6A> /x8e/xa4/xbc/xf5 <CJK> +<U37F0> /x8e/xa4/xbc/xf6 <CJK> +<U37F8> /x8e/xa4/xbc/xf7 <CJK> +<U5D74> /x8e/xa4/xbc/xf8 <CJK> +<U5D5F> /x8e/xa4/xbc/xf9 <CJK> +<U00021EAE> /x8e/xa4/xbc/xfa <CJK> +<U5D61> /x8e/xa4/xbc/xfb <CJK> +<U5D73> /x8e/xa4/xbc/xfc <CJK> +<U00021EB2> /x8e/xa4/xbc/xfd <CJK> +<U37F2> /x8e/xa4/xbc/xfe <CJK> +<U37F4> /x8e/xa4/xbd/xa1 <CJK> +<U0002210B> /x8e/xa4/xbd/xa2 <CJK> +<U3858> /x8e/xa4/xbd/xa3 <CJK> +<U00022110> /x8e/xa4/xbd/xa4 <CJK> +<U0002210D> /x8e/xa4/xbd/xa5 <CJK> +<U385A> /x8e/xa4/xbd/xa6 <CJK> +<U3859> /x8e/xa4/xbd/xa7 <CJK> +<U3857> /x8e/xa4/xbd/xa8 <CJK> +<U385B> /x8e/xa4/xbd/xa9 <CJK> +<U5E50> /x8e/xa4/xbd/xaa <CJK> +<U0002227F> /x8e/xa4/xbd/xab <CJK> +<U00022281> /x8e/xa4/xbd/xac <CJK> +<U38A6> /x8e/xa4/xbd/xad <CJK> +<U38C2> /x8e/xa4/xbd/xae <CJK> +<U38C1> /x8e/xa4/xbd/xaf <CJK> +<U5F3F> /x8e/xa4/xbd/xb0 <CJK> +<U0002240B> /x8e/xa4/xbd/xb1 <CJK> +<U0002254E> /x8e/xa4/xbd/xb2 <CJK> +<U38EF> /x8e/xa4/xbd/xb3 <CJK> +<U5FB0> /x8e/xa4/xbd/xb4 <CJK> +<U000227EA> /x8e/xa4/xbd/xb5 <CJK> +<U00022745> /x8e/xa4/xbd/xb6 <CJK> +<U3968> /x8e/xa4/xbd/xb7 <CJK> +<U6135> /x8e/xa4/xbd/xb8 <CJK> +<U612D> /x8e/xa4/xbd/xb9 <CJK> +<U3973> /x8e/xa4/xbd/xba <CJK> +<U396E> /x8e/xa4/xbd/xbb <CJK> +<U3974> /x8e/xa4/xbd/xbc <CJK> +<U6102> /x8e/xa4/xbd/xbd <CJK> +<U3966> /x8e/xa4/xbd/xbe <CJK> +<U00022728> /x8e/xa4/xbd/xbf <CJK> +<U0002275D> /x8e/xa4/xbd/xc0 <CJK> +<U000229DC> /x8e/xa4/xbd/xc1 <CJK> +<U39B9> /x8e/xa4/xbd/xc2 <CJK> +<U6226> /x8e/xa4/xbd/xc3 <CJK> +<U000229D4> /x8e/xa4/xbd/xc4 <CJK> +<U3A0C> /x8e/xa4/xbd/xc5 <CJK> +<U00022C64> /x8e/xa4/xbd/xc6 <CJK> +<U00022C68> /x8e/xa4/xbd/xc7 <CJK> +<U3A20> /x8e/xa4/xbd/xc8 <CJK> +<U00022C62> /x8e/xa4/xbd/xc9 <CJK> +<U3A1D> /x8e/xa4/xbd/xca <CJK> +<U00022C61> /x8e/xa4/xbd/xcb <CJK> +<U3A1C> /x8e/xa4/xbd/xcc <CJK> +<U00022C66> /x8e/xa4/xbd/xcd <CJK> +<U3A21> /x8e/xa4/xbd/xce <CJK> +<U3A1A> /x8e/xa4/xbd/xcf <CJK> +<U3A19> /x8e/xa4/xbd/xd0 <CJK> +<U00022BF2> /x8e/xa4/xbd/xd1 <CJK> +<U00022C69> /x8e/xa4/xbd/xd2 <CJK> +<U00022C67> /x8e/xa4/xbd/xd3 <CJK> +<U3A7E> /x8e/xa4/xbd/xd4 <CJK> +<U00022F9A> /x8e/xa4/xbd/xd5 <CJK> +<U00022F9B> /x8e/xa4/xbd/xd6 <CJK> +<U00022F85> /x8e/xa4/xbd/xd7 <CJK> +<U00022F9C> /x8e/xa4/xbd/xd8 <CJK> +<U3A9D> /x8e/xa4/xbd/xd9 <CJK> +<U00022FA4> /x8e/xa4/xbd/xda <CJK> +<U3A9E> /x8e/xa4/xbd/xdb <CJK> +<U656E> /x8e/xa4/xbd/xdd <CJK> +<U00022F99> /x8e/xa4/xbd/xde <CJK> +<U00022F86> /x8e/xa4/xbd/xdf <CJK> +<U00022F90> /x8e/xa4/xbd/xe0 <CJK> +<U00023081> /x8e/xa4/xbd/xe1 <CJK> +<U000230AE> /x8e/xa4/xbd/xe2 <CJK> +<U65B1> /x8e/xa4/xbd/xe3 <CJK> +<U65D4> /x8e/xa4/xbd/xe4 <CJK> +<U3ACD> /x8e/xa4/xbd/xe5 <CJK> +<U00023138> /x8e/xa4/xbd/xe6 <CJK> +<U3B0B> /x8e/xa4/xbd/xe7 <CJK> +<U3B0A> /x8e/xa4/xbd/xe8 <CJK> +<U6685> /x8e/xa4/xbd/xe9 <CJK> +<U0002353B> /x8e/xa4/xbd/xea <CJK> +<U3B8F> /x8e/xa4/xbd/xeb <CJK> +<U6972> /x8e/xa4/xbd/xec <CJK> +<U3B95> /x8e/xa4/xbd/xed <CJK> +<U3B90> /x8e/xa4/xbd/xee <CJK> +<U3B91> /x8e/xa4/xbd/xef <CJK> +<U0002354C> /x8e/xa4/xbd/xf0 <CJK> +<U693A> /x8e/xa4/xbd/xf1 <CJK> +<U3BB9> /x8e/xa4/xbd/xf2 <CJK> +<U00023547> /x8e/xa4/xbd/xf3 <CJK> +<U00023535> /x8e/xa4/xbd/xf4 <CJK> +<U3B97> /x8e/xa4/xbd/xf5 <CJK> +<U3B9E> /x8e/xa4/xbd/xf6 <CJK> +<U00023533> /x8e/xa4/xbd/xf7 <CJK> +<U3B8B> /x8e/xa4/xbd/xf8 <CJK> +<U00023582> /x8e/xa4/xbd/xf9 <CJK> +<U00023540> /x8e/xa4/xbd/xfa <CJK> +<U3C3B> /x8e/xa4/xbd/xfb <CJK> +<U3C3A> /x8e/xa4/xbd/xfc <CJK> +<U3C3C> /x8e/xa4/xbd/xfd <CJK> +<U3C3D> /x8e/xa4/xbd/xfe <CJK> +<U3C39> /x8e/xa4/xbe/xa1 <CJK> +<U3C3E> /x8e/xa4/xbe/xa2 <CJK> +<U3C6B> /x8e/xa4/xbe/xa3 <CJK> +<U3C6C> /x8e/xa4/xbe/xa4 <CJK> +<U00023A36> /x8e/xa4/xbe/xa5 <CJK> +<U00023B0E> /x8e/xa4/xbe/xa6 <CJK> +<U3CA2> /x8e/xa4/xbe/xa7 <CJK> +<U3CA1> /x8e/xa4/xbe/xa8 <CJK> +<U3C9F> /x8e/xa4/xbe/xa9 <CJK> +<U00023BAD> /x8e/xa4/xbe/xaa <CJK> +<U00023BAA> /x8e/xa4/xbe/xab <CJK> +<U00023E17> /x8e/xa4/xbe/xac <CJK> +<U3D2D> /x8e/xa4/xbe/xad <CJK> +<U00023E67> /x8e/xa4/xbe/xae <CJK> +<U3D36> /x8e/xa4/xbe/xaf <CJK> +<U3D2B> /x8e/xa4/xbe/xb0 <CJK> +<U00023E72> /x8e/xa4/xbe/xb1 <CJK> +<U3D37> /x8e/xa4/xbe/xb2 <CJK> +<U00023E61> /x8e/xa4/xbe/xb4 <CJK> +<U00023EB0> /x8e/xa4/xbe/xb5 <CJK> +<U6EAD> /x8e/xa4/xbe/xb6 <CJK> +<U3D25> /x8e/xa4/xbe/xb7 <CJK> +<U3D2F> /x8e/xa4/xbe/xb8 <CJK> +<U3D2C> /x8e/xa4/xbe/xb9 <CJK> +<U00023E6E> /x8e/xa4/xbe/xba <CJK> +<U00023E64> /x8e/xa4/xbe/xbb <CJK> +<U3D32> /x8e/xa4/xbe/xbc <CJK> +<U00023E8C> /x8e/xa4/xbe/xbd <CJK> +<U00023E66> /x8e/xa4/xbe/xbe <CJK> +<U6E95> /x8e/xa4/xbe/xbf <CJK> +<U00023E6B> /x8e/xa4/xbe/xc0 <CJK> +<U00023E5F> /x8e/xa4/xbe/xc1 <CJK> +<U00023E74> /x8e/xa4/xbe/xc2 <CJK> +<U00023E65> /x8e/xa4/xbe/xc3 <CJK> +<U000242BB> /x8e/xa4/xbe/xc4 <CJK> +<U000242BE> /x8e/xa4/xbe/xc5 <CJK> +<U3DD5> /x8e/xa4/xbe/xc6 <CJK> +<U000242B9> /x8e/xa4/xbe/xc7 <CJK> +<U3DD4> /x8e/xa4/xbe/xc8 <CJK> +<U3DD6> /x8e/xa4/xbe/xc9 <CJK> +<U000242EF> /x8e/xa4/xbe/xca <CJK> +<U3DD1> /x8e/xa4/xbe/xcb <CJK> +<U7243> /x8e/xa4/xbe/xcc <CJK> +<U000245DA> /x8e/xa4/xbe/xcd <CJK> +<U3E46> /x8e/xa4/xbe/xce <CJK> +<U728F> /x8e/xa4/xbe/xcf <CJK> +<U00024690> /x8e/xa4/xbe/xd0 <CJK> +<U000247E9> /x8e/xa4/xbe/xd1 <CJK> +<U3E8C> /x8e/xa4/xbe/xd2 <CJK> +<U3E8A> /x8e/xa4/xbe/xd3 <CJK> +<U3E88> /x8e/xa4/xbe/xd4 <CJK> +<U00024811> /x8e/xa4/xbe/xd5 <CJK> +<U0002480D> /x8e/xa4/xbe/xd6 <CJK> +<U000247ED> /x8e/xa4/xbe/xd7 <CJK> +<U00024821> /x8e/xa4/xbe/xd8 <CJK> +<U3EDD> /x8e/xa4/xbe/xd9 <CJK> +<U00024981> /x8e/xa4/xbe/xda <CJK> +<U000249B1> /x8e/xa4/xbe/xdb <CJK> +<U00024B01> /x8e/xa4/xbe/xdc <CJK> +<U3F2D> /x8e/xa4/xbe/xdd <CJK> +<U00024B5E> /x8e/xa4/xbe/xde <CJK> +<U00024B62> /x8e/xa4/xbe/xdf <CJK> +<U3F2E> /x8e/xa4/xbe/xe0 <CJK> +<U3F2C> /x8e/xa4/xbe/xe1 <CJK> +<U3F2B> /x8e/xa4/xbe/xe2 <CJK> +<U3F30> /x8e/xa4/xbe/xe3 <CJK> +<U00024B5B> /x8e/xa4/xbe/xe4 <CJK> +<U3F4E> /x8e/xa4/xbe/xe5 <CJK> +<U00024C96> /x8e/xa4/xbe/xe6 <CJK> +<U00024C93> /x8e/xa4/xbe/xe7 <CJK> +<U3F64> /x8e/xa4/xbe/xe8 <CJK> +<U3F61> /x8e/xa4/xbe/xe9 <CJK> +<U00024C92> /x8e/xa4/xbe/xea <CJK> +<U7575> /x8e/xa4/xbe/xeb <CJK> +<U3F70> /x8e/xa4/xbe/xed <CJK> +<U3FA6> /x8e/xa4/xbe/xee <CJK> +<U3FA4> /x8e/xa4/xbe/xef <CJK> +<U00024DC4> /x8e/xa4/xbe/xf0 <CJK> +<U00024DC7> /x8e/xa4/xbe/xf1 <CJK> +<U00024DC3> /x8e/xa4/xbe/xf2 <CJK> +<U3FA8> /x8e/xa4/xbe/xf3 <CJK> +<U3FA2> /x8e/xa4/xbe/xf4 <CJK> +<U00024DC8> /x8e/xa4/xbe/xf5 <CJK> +<U3FA7> /x8e/xa4/xbe/xf6 <CJK> +<U75EC> /x8e/xa4/xbe/xf7 <CJK> +<U3FA5> /x8e/xa4/xbe/xf8 <CJK> +<U00024DCA> /x8e/xa4/xbe/xf9 <CJK> +<U3FA9> /x8e/xa4/xbe/xfa <CJK> +<U00024DC5> /x8e/xa4/xbe/xfb <CJK> +<U00024DCF> /x8e/xa4/xbe/xfc <CJK> +<U00024DDC> /x8e/xa4/xbe/xfd <CJK> +<U00024F7C> /x8e/xa4/xbe/xfe <CJK> +<U00025001> /x8e/xa4/xbf/xa1 <CJK> +<U403D> /x8e/xa4/xbf/xa2 <CJK> +<U000251D3> /x8e/xa4/xbf/xa3 <CJK> +<U000251DC> /x8e/xa4/xbf/xa4 <CJK> +<U4044> /x8e/xa4/xbf/xa5 <CJK> +<U4045> /x8e/xa4/xbf/xa6 <CJK> +<U4046> /x8e/xa4/xbf/xa7 <CJK> +<U000251D4> /x8e/xa4/xbf/xa8 <CJK> +<U7757> /x8e/xa4/xbf/xa9 <CJK> +<U000251CC> /x8e/xa4/xbf/xaa <CJK> +<U4047> /x8e/xa4/xbf/xab <CJK> +<U4048> /x8e/xa4/xbf/xac <CJK> +<U4042> /x8e/xa4/xbf/xad <CJK> +<U000251D6> /x8e/xa4/xbf/xae <CJK> +<U000251DB> /x8e/xa4/xbf/xaf <CJK> +<U4041> /x8e/xa4/xbf/xb0 <CJK> +<U000251D5> /x8e/xa4/xbf/xb1 <CJK> +<U000253D9> /x8e/xa4/xbf/xb2 <CJK> +<U4094> /x8e/xa4/xbf/xb3 <CJK> +<U000253DD> /x8e/xa4/xbf/xb4 <CJK> +<U000253DC> /x8e/xa4/xbf/xb5 <CJK> +<U000253E0> /x8e/xa4/xbf/xb6 <CJK> +<U000254CC> /x8e/xa4/xbf/xb7 <CJK> +<U40C0> /x8e/xa4/xbf/xb8 <CJK> +<U40B8> /x8e/xa4/xbf/xb9 <CJK> +<U40C1> /x8e/xa4/xbf/xba <CJK> +<U40C2> /x8e/xa4/xbf/xbb <CJK> +<U40BB> /x8e/xa4/xbf/xbc <CJK> +<U40BD> /x8e/xa4/xbf/xbd <CJK> +<U40BF> /x8e/xa4/xbf/xbe <CJK> +<U40B9> /x8e/xa4/xbf/xbf <CJK> +<U40B7> /x8e/xa4/xbf/xc0 <CJK> +<U000254D2> /x8e/xa4/xbf/xc1 <CJK> +<U40C7> /x8e/xa4/xbf/xc2 <CJK> +<U000254D3> /x8e/xa4/xbf/xc3 <CJK> +<U410C> /x8e/xa4/xbf/xc4 <CJK> +<U410B> /x8e/xa4/xbf/xc5 <CJK> +<U797B> /x8e/xa4/xbf/xc6 <CJK> +<U4110> /x8e/xa4/xbf/xc7 <CJK> +<U0002568D> /x8e/xa4/xbf/xc8 <CJK> +<U415D> /x8e/xa4/xbf/xc9 <CJK> +<U7A21> /x8e/xa4/xbf/xca <CJK> +<U415A> /x8e/xa4/xbf/xcb <CJK> +<U4158> /x8e/xa4/xbf/xcc <CJK> +<U4156> /x8e/xa4/xbf/xcd <CJK> +<U000257D8> /x8e/xa4/xbf/xce <CJK> +<U4154> /x8e/xa4/xbf/xcf <CJK> +<U7A16> /x8e/xa4/xbf/xd0 <CJK> +<U000257BC> /x8e/xa4/xbf/xd1 <CJK> +<U41A8> /x8e/xa4/xbf/xd2 <CJK> +<U41A7> /x8e/xa4/xbf/xd3 <CJK> +<U41CF> /x8e/xa4/xbf/xd4 <CJK> +<U41D0> /x8e/xa4/xbf/xd5 <CJK> +<U00025A8A> /x8e/xa4/xbf/xd6 <CJK> +<U7AE8> /x8e/xa4/xbf/xd7 <CJK> +<U00025A8B> /x8e/xa4/xbf/xd8 <CJK> +<U00025A8D> /x8e/xa4/xbf/xd9 <CJK> +<U41D1> /x8e/xa4/xbf/xda <CJK> +<U41EB> /x8e/xa4/xbf/xdb <CJK> +<U00025B53> /x8e/xa4/xbf/xdc <CJK> +<U41FB> /x8e/xa4/xbf/xdd <CJK> +<U7B6A> /x8e/xa4/xbf/xde <CJK> +<U00025B59> /x8e/xa4/xbf/xdf <CJK> +<U41FD> /x8e/xa4/xbf/xe0 <CJK> +<U41F8> /x8e/xa4/xbf/xe1 <CJK> +<U41F7> /x8e/xa4/xbf/xe2 <CJK> +<U4200> /x8e/xa4/xbf/xe3 <CJK> +<U00025B56> /x8e/xa4/xbf/xe4 <CJK> +<U00025B57> /x8e/xa4/xbf/xe5 <CJK> +<U41F6> /x8e/xa4/xbf/xe6 <CJK> +<U7B5F> /x8e/xa4/xbf/xe7 <CJK> +<U00025E73> /x8e/xa4/xbf/xe8 <CJK> +<U0002601B> /x8e/xa4/xbf/xe9 <CJK> +<U42DF> /x8e/xa4/xbf/xea <CJK> +<U00026021> /x8e/xa4/xbf/xeb <CJK> +<U00026016> /x8e/xa4/xbf/xec <CJK> +<U00026018> /x8e/xa4/xbf/xed <CJK> +<U42E2> /x8e/xa4/xbf/xee <CJK> +<U42E4> /x8e/xa4/xbf/xef <CJK> +<U00026044> /x8e/xa4/xbf/xf0 <CJK> +<U7D82> /x8e/xa4/xbf/xf1 <CJK> +<U00026026> /x8e/xa4/xbf/xf2 <CJK> +<U42E3> /x8e/xa4/xbf/xf3 <CJK> +<U00026236> /x8e/xa4/xbf/xf4 <CJK> +<U4359> /x8e/xa4/xbf/xf5 <CJK> +<U4371> /x8e/xa4/xbf/xf6 <CJK> +<U438E> /x8e/xa4/xbf/xf7 <CJK> +<U438C> /x8e/xa4/xbf/xf8 <CJK> +<U0002643A> /x8e/xa4/xbf/xf9 <CJK> +<U43A4> /x8e/xa4/xbf/xfa <CJK> +<U000264F4> /x8e/xa4/xbf/xfb <CJK> +<U8055> /x8e/xa4/xbf/xfc <CJK> +<U4414> /x8e/xa4/xbf/xfd <CJK> +<U00026762> /x8e/xa4/xbf/xfe <CJK> +<U0002675B> /x8e/xa4/xc0/xa1 <CJK> +<U0002676A> /x8e/xa4/xc0/xa2 <CJK> +<U4411> /x8e/xa4/xc0/xa3 <CJK> +<U00026768> /x8e/xa4/xc0/xa4 <CJK> +<U441B> /x8e/xa4/xc0/xa5 <CJK> +<U4412> /x8e/xa4/xc0/xa6 <CJK> +<U440E> /x8e/xa4/xc0/xa7 <CJK> +<U4415> /x8e/xa4/xc0/xa8 <CJK> +<U8168> /x8e/xa4/xc0/xa9 <CJK> +<U4410> /x8e/xa4/xc0/xaa <CJK> +<U00026781> /x8e/xa4/xc0/xab <CJK> +<U4417> /x8e/xa4/xc0/xac <CJK> +<U8246> /x8e/xa4/xc0/xad <CJK> +<U8243> /x8e/xa4/xc0/xae <CJK> +<U4470> /x8e/xa4/xc0/xaf <CJK> +<U44ED> /x8e/xa4/xc0/xb0 <CJK> +<U00026CE7> /x8e/xa4/xc0/xb1 <CJK> +<U44EE> /x8e/xa4/xc0/xb2 <CJK> +<U00026CE6> /x8e/xa4/xc0/xb3 <CJK> +<U00026CD1> /x8e/xa4/xc0/xb4 <CJK> +<U00026D11> /x8e/xa4/xc0/xb5 <CJK> +<U8481> /x8e/xa4/xc0/xb6 <CJK> +<U00026CD0> /x8e/xa4/xc0/xb7 <CJK> +<U00026CD9> /x8e/xa4/xc0/xb8 <CJK> +<U00026D0A> /x8e/xa4/xc0/xb9 <CJK> +<U44F4> /x8e/xa4/xc0/xba <CJK> +<U00026CDA> /x8e/xa4/xc0/xbb <CJK> +<U00026CDD> /x8e/xa4/xc0/xbc <CJK> +<U00026CC8> /x8e/xa4/xc0/xbd <CJK> +<U00026CE2> /x8e/xa4/xc0/xbe <CJK> +<U00026CE9> /x8e/xa4/xc0/xbf <CJK> +<U00026CCB> /x8e/xa4/xc0/xc0 <CJK> +<U847C> /x8e/xa4/xc0/xc1 <CJK> +<U00026CCC> /x8e/xa4/xc0/xc2 <CJK> +<U00026CC1> /x8e/xa4/xc0/xc3 <CJK> +<U846A> /x8e/xa4/xc0/xc4 <CJK> +<U00026CDE> /x8e/xa4/xc0/xc5 <CJK> +<U8488> /x8e/xa4/xc0/xc6 <CJK> +<U44F2> /x8e/xa4/xc0/xc7 <CJK> +<U44F8> /x8e/xa4/xc0/xc8 <CJK> +<U44F3> /x8e/xa4/xc0/xc9 <CJK> +<U00026D51> /x8e/xa4/xc0/xca <CJK> +<U00026D12> /x8e/xa4/xc0/xcb <CJK> +<U44FA> /x8e/xa4/xc0/xcc <CJK> +<U00026CE0> /x8e/xa4/xc0/xcd <CJK> +<U00026D2B> /x8e/xa4/xc0/xce <CJK> +<U000272D8> /x8e/xa4/xc0/xd0 <CJK> +<U000272D1> /x8e/xa4/xc0/xd1 <CJK> +<U8710> /x8e/xa4/xc0/xd2 <CJK> +<U000272D2> /x8e/xa4/xc0/xd3 <CJK> +<U000272CD> /x8e/xa4/xc0/xd4 <CJK> +<U871F> /x8e/xa4/xc0/xd5 <CJK> +<U45B6> /x8e/xa4/xc0/xd6 <CJK> +<U45B7> /x8e/xa4/xc0/xd7 <CJK> +<U0002733D> /x8e/xa4/xc0/xd8 <CJK> +<U870F> /x8e/xa4/xc0/xd9 <CJK> +<U000272CA> /x8e/xa4/xc0/xda <CJK> +<U45BA> /x8e/xa4/xc0/xdb <CJK> +<U000272CB> /x8e/xa4/xc0/xdc <CJK> +<U45BC> /x8e/xa4/xc0/xdd <CJK> +<U000272D7> /x8e/xa4/xc0/xde <CJK> +<U000275F4> /x8e/xa4/xc0/xdf <CJK> +<U463B> /x8e/xa4/xc0/xe0 <CJK> +<U88D3> /x8e/xa4/xc0/xe1 <CJK> +<U462F> /x8e/xa4/xc0/xe2 <CJK> +<U00027687> /x8e/xa4/xc0/xe3 <CJK> +<U0002768B> /x8e/xa4/xc0/xe4 <CJK> +<U00027683> /x8e/xa4/xc0/xe5 <CJK> +<U4637> /x8e/xa4/xc0/xe6 <CJK> +<U4699> /x8e/xa4/xc0/xe7 <CJK> +<U000279C5> /x8e/xa4/xc0/xe8 <CJK> +<U000279D2> /x8e/xa4/xc0/xe9 <CJK> +<U000279C6> /x8e/xa4/xc0/xea <CJK> +<U000279D3> /x8e/xa4/xc0/xeb <CJK> +<U46D9> /x8e/xa4/xc0/xec <CJK> +<U46D8> /x8e/xa4/xc0/xed <CJK> +<U46D7> /x8e/xa4/xc0/xee <CJK> +<U000279F0> /x8e/xa4/xc0/xef <CJK> +<U000279CD> /x8e/xa4/xc0/xf0 <CJK> +<U000279CC> /x8e/xa4/xc0/xf1 <CJK> +<U000279DC> /x8e/xa4/xc0/xf2 <CJK> +<U000279D6> /x8e/xa4/xc0/xf3 <CJK> +<U4736> /x8e/xa4/xc0/xf4 <CJK> +<U00027BE6> /x8e/xa4/xc0/xf5 <CJK> +<U00027C41> /x8e/xa4/xc0/xf6 <CJK> +<U00027C3F> /x8e/xa4/xc0/xf7 <CJK> +<U8C87> /x8e/xa4/xc0/xf8 <CJK> +<U00027CC5> /x8e/xa4/xc0/xf9 <CJK> +<U00027CC0> /x8e/xa4/xc0/xfa <CJK> +<U00027CC6> /x8e/xa4/xc0/xfb <CJK> +<U00027CBE> /x8e/xa4/xc0/xfc <CJK> +<U00027CBF> /x8e/xa4/xc0/xfd <CJK> +<U8CC6> /x8e/xa4/xc0/xfe <CJK> +<U4770> /x8e/xa4/xc1/xa1 <CJK> +<U00027D63> /x8e/xa4/xc1/xa2 <CJK> +<U00027ED3> /x8e/xa4/xc1/xa3 <CJK> +<U00027EDA> /x8e/xa4/xc1/xa4 <CJK> +<U00027ED5> /x8e/xa4/xc1/xa5 <CJK> +<U47A5> /x8e/xa4/xc1/xa6 <CJK> +<U47A6> /x8e/xa4/xc1/xa7 <CJK> +<U47A9> /x8e/xa4/xc1/xa8 <CJK> +<U47EE> /x8e/xa4/xc1/xa9 <CJK> +<U4854> /x8e/xa4/xc1/xaa <CJK> +<U000282EE> /x8e/xa4/xc1/xab <CJK> +<U4857> /x8e/xa4/xc1/xac <CJK> +<U000282FC> /x8e/xa4/xc1/xad <CJK> +<U00028414> /x8e/xa4/xc1/xae <CJK> +<U48A1> /x8e/xa4/xc1/xaf <CJK> +<U00028523> /x8e/xa4/xc1/xb0 <CJK> +<U00028522> /x8e/xa4/xc1/xb1 <CJK> +<U00028530> /x8e/xa4/xc1/xb2 <CJK> +<U000286B5> /x8e/xa4/xc1/xb3 <CJK> +<U48D3> /x8e/xa4/xc1/xb4 <CJK> +<U00028738> /x8e/xa4/xc1/xb5 <CJK> +<U48D4> /x8e/xa4/xc1/xb6 <CJK> +<U0002873F> /x8e/xa4/xc1/xb7 <CJK> +<U48D7> /x8e/xa4/xc1/xb8 <CJK> +<U90CC> /x8e/xa4/xc1/xb9 <CJK> +<U916D> /x8e/xa4/xc1/xba <CJK> +<U9170> /x8e/xa4/xc1/xbb <CJK> +<U48F7> /x8e/xa4/xc1/xbc <CJK> +<U48F6> /x8e/xa4/xc1/xbd <CJK> +<U48F9> /x8e/xa4/xc1/xbe <CJK> +<U48F8> /x8e/xa4/xc1/xbf <CJK> +<U9258> /x8e/xa4/xc1/xc0 <CJK> +<U9242> /x8e/xa4/xc1/xc1 <CJK> +<U9268> /x8e/xa4/xc1/xc2 <CJK> +<U9269> /x8e/xa4/xc1/xc3 <CJK> +<U00028968> /x8e/xa4/xc1/xc4 <CJK> +<U00028967> /x8e/xa4/xc1/xc5 <CJK> +<U9243> /x8e/xa4/xc1/xc6 <CJK> +<U00028965> /x8e/xa4/xc1/xc7 <CJK> +<U9247> /x8e/xa4/xc1/xc8 <CJK> +<U498A> /x8e/xa4/xc1/xc9 <CJK> +<U00028C75> /x8e/xa4/xc1/xca <CJK> +<U00028CF7> /x8e/xa4/xc1/xcb <CJK> +<U00028CF3> /x8e/xa4/xc1/xcc <CJK> +<U00028CF6> /x8e/xa4/xc1/xcd <CJK> +<U4994> /x8e/xa4/xc1/xce <CJK> +<U00028D00> /x8e/xa4/xc1/xcf <CJK> +<U4993> /x8e/xa4/xc1/xd0 <CJK> +<U00028CFF> /x8e/xa4/xc1/xd1 <CJK> +<U00028CF5> /x8e/xa4/xc1/xd2 <CJK> +<U959D> /x8e/xa4/xc1/xd3 <CJK> +<U49DD> /x8e/xa4/xc1/xd4 <CJK> +<U49DC> /x8e/xa4/xc1/xd5 <CJK> +<U49F7> /x8e/xa4/xc1/xd6 <CJK> +<U96CF> /x8e/xa4/xc1/xd7 <CJK> +<U00029092> /x8e/xa4/xc1/xd8 <CJK> +<U00029206> /x8e/xa4/xc1/xd9 <CJK> +<U4A42> /x8e/xa4/xc1/xda <CJK> +<U00029207> /x8e/xa4/xc1/xdb <CJK> +<U0002926B> /x8e/xa4/xc1/xdc <CJK> +<U4A54> /x8e/xa4/xc1/xdd <CJK> +<U0002926C> /x8e/xa4/xc1/xde <CJK> +<U4A55> /x8e/xa4/xc1/xdf <CJK> +<U00029393> /x8e/xa4/xc1/xe0 <CJK> +<U4A8F> /x8e/xa4/xc1/xe1 <CJK> +<U00029394> /x8e/xa4/xc1/xe2 <CJK> +<U97F4> /x8e/xa4/xc1/xe3 <CJK> +<U4AB4> /x8e/xa4/xc1/xe4 <CJK> +<U4AB3> /x8e/xa4/xc1/xe5 <CJK> +<U00029462> /x8e/xa4/xc1/xe6 <CJK> +<U00029463> /x8e/xa4/xc1/xe7 <CJK> +<U9809> /x8e/xa4/xc1/xe8 <CJK> +<U0002945F> /x8e/xa4/xc1/xe9 <CJK> +<U00029464> /x8e/xa4/xc1/xea <CJK> +<U0002945B> /x8e/xa4/xc1/xeb <CJK> +<U00029459> /x8e/xa4/xc1/xec <CJK> +<U4AFB> /x8e/xa4/xc1/xed <CJK> +<U4AFD> /x8e/xa4/xc1/xee <CJK> +<U000295A4> /x8e/xa4/xc1/xef <CJK> +<U000295AC> /x8e/xa4/xc1/xf0 <CJK> +<U98AB> /x8e/xa4/xc1/xf1 <CJK> +<U4AFC> /x8e/xa4/xc1/xf2 <CJK> +<U000296B5> /x8e/xa4/xc1/xf3 <CJK> +<U4B2C> /x8e/xa4/xc1/xf4 <CJK> +<U4B2F> /x8e/xa4/xc1/xf5 <CJK> +<U000296AE> /x8e/xa4/xc1/xf6 <CJK> +<U4B2B> /x8e/xa4/xc1/xf7 <CJK> +<U000296C5> /x8e/xa4/xc1/xf8 <CJK> +<U4B33> /x8e/xa4/xc1/xf9 <CJK> +<U4B34> /x8e/xa4/xc1/xfa <CJK> +<U98FB> /x8e/xa4/xc1/xfb <CJK> +<U0002983B> /x8e/xa4/xc1/xfc <CJK> +<U9AAC> /x8e/xa4/xc1/xfd <CJK> +<U9AAE> /x8e/xa4/xc1/xfe <CJK> +<U9AAA> /x8e/xa4/xc2/xa1 <CJK> +<U4BE8> /x8e/xa4/xc2/xa2 <CJK> +<U00029ABF> /x8e/xa4/xc2/xa3 <CJK> +<U00029C2B> /x8e/xa4/xc2/xa4 <CJK> +<U00029C84> /x8e/xa4/xc2/xa5 <CJK> +<U00029C80> /x8e/xa4/xc2/xa6 <CJK> +<U00029D4D> /x8e/xa4/xc2/xa7 <CJK> +<U00029D4F> /x8e/xa4/xc2/xa8 <CJK> +<U9B5C> /x8e/xa4/xc2/xa9 <CJK> +<U00029D4C> /x8e/xa4/xc2/xaa <CJK> +<U00029F92> /x8e/xa4/xc2/xab <CJK> +<U4D5D> /x8e/xa4/xc2/xac <CJK> +<U50D2> /x8e/xa4/xc2/xad <CJK> +<U3485> /x8e/xa4/xc2/xae <CJK> +<U3488> /x8e/xa4/xc2/xaf <CJK> +<U000203AE> /x8e/xa4/xc2/xb0 <CJK> +<U00020379> /x8e/xa4/xc2/xb1 <CJK> +<U348E> /x8e/xa4/xc2/xb2 <CJK> +<U3484> /x8e/xa4/xc2/xb3 <CJK> +<U00020371> /x8e/xa4/xc2/xb4 <CJK> +<U50DF> /x8e/xa4/xc2/xb5 <CJK> +<U000203B3> /x8e/xa4/xc2/xb6 <CJK> +<U3483> /x8e/xa4/xc2/xb7 <CJK> +<U0002032C> /x8e/xa4/xc2/xb8 <CJK> +<U00020377> /x8e/xa4/xc2/xb9 <CJK> +<U0002052F> /x8e/xa4/xc2/xba <CJK> +<U000207C3> /x8e/xa4/xc2/xbb <CJK> +<U3502> /x8e/xa4/xc2/xbc <CJK> +<U000207CD> /x8e/xa4/xc2/xbd <CJK> +<U3506> /x8e/xa4/xc2/xbe <CJK> +<U3505> /x8e/xa4/xc2/xbf <CJK> +<U000207C9> /x8e/xa4/xc2/xc0 <CJK> +<U34FE> /x8e/xa4/xc2/xc1 <CJK> +<U3501> /x8e/xa4/xc2/xc2 <CJK> +<U3500> /x8e/xa4/xc2/xc3 <CJK> +<U000207CE> /x8e/xa4/xc2/xc4 <CJK> +<U000208A5> /x8e/xa4/xc2/xc5 <CJK> +<U000208A0> /x8e/xa4/xc2/xc6 <CJK> +<U000208FE> /x8e/xa4/xc2/xc7 <CJK> +<U00020959> /x8e/xa4/xc2/xc8 <CJK> +<U00020A9A> /x8e/xa4/xc2/xc9 <CJK> +<U35E7> /x8e/xa4/xc2/xca <CJK> +<U5619> /x8e/xa4/xc2/xcb <CJK> +<U00020EE4> /x8e/xa4/xc2/xcc <CJK> +<U00020ED7> /x8e/xa4/xc2/xcd <CJK> +<U00020EDC> /x8e/xa4/xc2/xce <CJK> +<U35E6> /x8e/xa4/xc2/xcf <CJK> +<U00020EE7> /x8e/xa4/xc2/xd0 <CJK> +<U35ED> /x8e/xa4/xc2/xd1 <CJK> +<U35E2> /x8e/xa4/xc2/xd2 <CJK> +<U35EB> /x8e/xa4/xc2/xd3 <CJK> +<U00020EE5> /x8e/xa4/xc2/xd4 <CJK> +<U35E8> /x8e/xa4/xc2/xd5 <CJK> +<U35EC> /x8e/xa4/xc2/xd6 <CJK> +<U560A> /x8e/xa4/xc2/xd7 <CJK> +<U3624> /x8e/xa4/xc2/xd8 <CJK> +<U589A> /x8e/xa4/xc2/xd9 <CJK> +<U00021414> /x8e/xa4/xc2/xda <CJK> +<U3662> /x8e/xa4/xc2/xdb <CJK> +<U000213F1> /x8e/xa4/xc2/xdc <CJK> +<U3661> /x8e/xa4/xc2/xdd <CJK> +<U3660> /x8e/xa4/xc2/xde <CJK> +<U3664> /x8e/xa4/xc2/xdf <CJK> +<U368B> /x8e/xa4/xc2/xe0 <CJK> +<U000215B6> /x8e/xa4/xc2/xe1 <CJK> +<U0002166E> /x8e/xa4/xc2/xe2 <CJK> +<U0002166C> /x8e/xa4/xc2/xe3 <CJK> +<U00021681> /x8e/xa4/xc2/xe4 <CJK> +<U00021842> /x8e/xa4/xc2/xe5 <CJK> +<U3719> /x8e/xa4/xc2/xe6 <CJK> +<U3716> /x8e/xa4/xc2/xe7 <CJK> +<U3718> /x8e/xa4/xc2/xe8 <CJK> +<U3722> /x8e/xa4/xc2/xe9 <CJK> +<U0002181A> /x8e/xa4/xc2/xea <CJK> +<U371D> /x8e/xa4/xc2/xeb <CJK> +<U3717> /x8e/xa4/xc2/xec <CJK> +<U371E> /x8e/xa4/xc2/xed <CJK> +<U00021827> /x8e/xa4/xc2/xee <CJK> +<U00021825> /x8e/xa4/xc2/xef <CJK> +<U00021817> /x8e/xa4/xc2/xf0 <CJK> +<U0002181C> /x8e/xa4/xc2/xf1 <CJK> +<U0002183D> /x8e/xa4/xc2/xf2 <CJK> +<U00021820> /x8e/xa4/xc2/xf3 <CJK> +<U3769> /x8e/xa4/xc2/xf4 <CJK> +<U376A> /x8e/xa4/xc2/xf5 <CJK> +<U00021A81> /x8e/xa4/xc2/xf6 <CJK> +<U376C> /x8e/xa4/xc2/xf7 <CJK> +<U377A> /x8e/xa4/xc2/xf8 <CJK> +<U378A> /x8e/xa4/xc2/xf9 <CJK> +<U00021C09> /x8e/xa4/xc2/xfa <CJK> +<U00021CC6> /x8e/xa4/xc2/xfb <CJK> +<U00021CC4> /x8e/xa4/xc2/xfc <CJK> +<U379C> /x8e/xa4/xc2/xfd <CJK> +<U00021CC5> /x8e/xa4/xc2/xfe <CJK> +<U37FD> /x8e/xa4/xc3/xa1 <CJK> +<U37F9> /x8e/xa4/xc3/xa2 <CJK> +<U00021EEF> /x8e/xa4/xc3/xa3 <CJK> +<U37FF> /x8e/xa4/xc3/xa4 <CJK> +<U00021EDF> /x8e/xa4/xc3/xa5 <CJK> +<U00021EDE> /x8e/xa4/xc3/xa6 <CJK> +<U00021EEE> /x8e/xa4/xc3/xa7 <CJK> +<U00021EF5> /x8e/xa4/xc3/xa8 <CJK> +<U00021EEC> /x8e/xa4/xc3/xa9 <CJK> +<U37FC> /x8e/xa4/xc3/xaa <CJK> +<U00021EDD> /x8e/xa4/xc3/xab <CJK> +<U5D85> /x8e/xa4/xc3/xac <CJK> +<U37FB> /x8e/xa4/xc3/xad <CJK> +<U3802> /x8e/xa4/xc3/xae <CJK> +<U385F> /x8e/xa4/xc3/xaf <CJK> +<U5E56> /x8e/xa4/xc3/xb0 <CJK> +<U385E> /x8e/xa4/xc3/xb1 <CJK> +<U385D> /x8e/xa4/xc3/xb2 <CJK> +<U385C> /x8e/xa4/xc3/xb3 <CJK> +<U00022122> /x8e/xa4/xc3/xb4 <CJK> +<U5E51> /x8e/xa4/xc3/xb5 <CJK> +<U3892> /x8e/xa4/xc3/xb6 <CJK> +<U00022297> /x8e/xa4/xc3/xb7 <CJK> +<U00022295> /x8e/xa4/xc3/xb8 <CJK> +<U3894> /x8e/xa4/xc3/xb9 <CJK> +<U3895> /x8e/xa4/xc3/xba <CJK> +<U38D1> /x8e/xa4/xc3/xbb <CJK> +<U000224A9> /x8e/xa4/xc3/xbc <CJK> +<U38F1> /x8e/xa4/xc3/xbd <CJK> +<U00022553> /x8e/xa4/xc3/xbe <CJK> +<U5FB1> /x8e/xa4/xc3/xbf <CJK> +<U00022556> /x8e/xa4/xc3/xc0 <CJK> +<U00022555> /x8e/xa4/xc3/xc1 <CJK> +<U3977> /x8e/xa4/xc3/xc2 <CJK> +<U396F> /x8e/xa4/xc3/xc3 <CJK> +<U000227E3> /x8e/xa4/xc3/xc4 <CJK> +<U000227E2> /x8e/xa4/xc3/xc5 <CJK> +<U3987> /x8e/xa4/xc3/xc6 <CJK> +<U397D> /x8e/xa4/xc3/xc7 <CJK> +<U397C> /x8e/xa4/xc3/xc8 <CJK> +<U397E> /x8e/xa4/xc3/xc9 <CJK> +<U3985> /x8e/xa4/xc3/xca <CJK> +<U398B> /x8e/xa4/xc3/xcb <CJK> +<U3986> /x8e/xa4/xc3/xcc <CJK> +<U3980> /x8e/xa4/xc3/xcd <CJK> +<U000227A9> /x8e/xa4/xc3/xcf <CJK> +<U3978> /x8e/xa4/xc3/xd0 <CJK> +<U00022833> /x8e/xa4/xc3/xd2 <CJK> +<U0002280A> /x8e/xa4/xc3/xd3 <CJK> +<U39BA> /x8e/xa4/xc3/xd4 <CJK> +<U00022A59> /x8e/xa4/xc3/xd5 <CJK> +<U3A33> /x8e/xa4/xc3/xd6 <CJK> +<U00022CBC> /x8e/xa4/xc3/xd7 <CJK> +<U3A2D> /x8e/xa4/xc3/xd8 <CJK> +<U00022CC4> /x8e/xa4/xc3/xd9 <CJK> +<U00022CC7> /x8e/xa4/xc3/xda <CJK> +<U00022CC6> /x8e/xa4/xc3/xdb <CJK> +<U3A37> /x8e/xa4/xc3/xdc <CJK> +<U645A> /x8e/xa4/xc3/xdd <CJK> +<U6463> /x8e/xa4/xc3/xde <CJK> +<U00022CB8> /x8e/xa4/xc3/xdf <CJK> +<U00022CDA> /x8e/xa4/xc3/xe0 <CJK> +<U3A2E> /x8e/xa4/xc3/xe1 <CJK> +<U00022CB7> /x8e/xa4/xc3/xe2 <CJK> +<U00022CC0> /x8e/xa4/xc3/xe3 <CJK> +<U3A3D> /x8e/xa4/xc3/xe4 <CJK> +<U00022CCD> /x8e/xa4/xc3/xe5 <CJK> +<U3AA0> /x8e/xa4/xc3/xe6 <CJK> +<U00022FBC> /x8e/xa4/xc3/xe7 <CJK> +<U00022FAB> /x8e/xa4/xc3/xe8 <CJK> +<U3AA3> /x8e/xa4/xc3/xe9 <CJK> +<U00023086> /x8e/xa4/xc3/xea <CJK> +<U669B> /x8e/xa4/xc3/xeb <CJK> +<U0002325A> /x8e/xa4/xc3/xec <CJK> +<U66A3> /x8e/xa4/xc3/xed <CJK> +<U3B0E> /x8e/xa4/xc3/xee <CJK> +<U669E> /x8e/xa4/xc3/xef <CJK> +<U00023343> /x8e/xa4/xc3/xf0 <CJK> +<U3BB6> /x8e/xa4/xc3/xf1 <CJK> +<U000235AC> /x8e/xa4/xc3/xf2 <CJK> +<U3BAB> /x8e/xa4/xc3/xf3 <CJK> +<U3BAD> /x8e/xa4/xc3/xf4 <CJK> +<U3BA6> /x8e/xa4/xc3/xf5 <CJK> +<U000235BE> /x8e/xa4/xc3/xf6 <CJK> +<U69B8> /x8e/xa4/xc3/xf7 <CJK> +<U3BAA> /x8e/xa4/xc3/xf8 <CJK> +<U69BA> /x8e/xa4/xc3/xf9 <CJK> +<U3BB1> /x8e/xa4/xc3/xfa <CJK> +<U000235AB> /x8e/xa4/xc3/xfb <CJK> +<U3BA8> /x8e/xa4/xc3/xfc <CJK> +<U3BAF> /x8e/xa4/xc3/xfd <CJK> +<U3BB0> /x8e/xa4/xc3/xfe <CJK> +<U3BA7> /x8e/xa4/xc4/xa1 <CJK> +<U3BB2> /x8e/xa4/xc4/xa2 <CJK> +<U3B9D> /x8e/xa4/xc4/xa3 <CJK> +<U3BA5> /x8e/xa4/xc4/xa4 <CJK> +<U3BB5> /x8e/xa4/xc4/xa5 <CJK> +<U00021B3E> /x8e/xa4/xc4/xa6 <CJK> +<U69C7> /x8e/xa4/xc4/xa7 <CJK> +<U69D7> /x8e/xa4/xc4/xa8 <CJK> +<U000238F9> /x8e/xa4/xc4/xa9 <CJK> +<U3C41> /x8e/xa4/xc4/xaa <CJK> +<U000238F3> /x8e/xa4/xc4/xab <CJK> +<U000238F7> /x8e/xa4/xc4/xac <CJK> +<U6B70> /x8e/xa4/xc4/xad <CJK> +<U00023A45> /x8e/xa4/xc4/xae <CJK> +<U00023A48> /x8e/xa4/xc4/xaf <CJK> +<U3C72> /x8e/xa4/xc4/xb0 <CJK> +<U6B9D> /x8e/xa4/xc4/xb1 <CJK> +<U3C6F> /x8e/xa4/xc4/xb2 <CJK> +<U3C71> /x8e/xa4/xc4/xb3 <CJK> +<U00023A44> /x8e/xa4/xc4/xb4 <CJK> +<U3C85> /x8e/xa4/xc4/xb5 <CJK> +<U00023AAF> /x8e/xa4/xc4/xb6 <CJK> +<U00023AB1> /x8e/xa4/xc4/xb7 <CJK> +<U3CA4> /x8e/xa4/xc4/xb8 <CJK> +<U3CA5> /x8e/xa4/xc4/xb9 <CJK> +<U3CA6> /x8e/xa4/xc4/xba <CJK> +<U00023BCF> /x8e/xa4/xc4/xbb <CJK> +<U3CA8> /x8e/xa4/xc4/xbc <CJK> +<U00023BCB> /x8e/xa4/xc4/xbd <CJK> +<U00023BCD> /x8e/xa4/xc4/xbe <CJK> +<U3CA3> /x8e/xa4/xc4/xbf <CJK> +<U00023C50> /x8e/xa4/xc4/xc0 <CJK> +<U00023EEC> /x8e/xa4/xc4/xc1 <CJK> +<U00023F1A> /x8e/xa4/xc4/xc2 <CJK> +<U6F16> /x8e/xa4/xc4/xc3 <CJK> +<U6F24> /x8e/xa4/xc4/xc4 <CJK> +<U00023ED8> /x8e/xa4/xc4/xc5 <CJK> +<U3D43> /x8e/xa4/xc4/xc6 <CJK> +<U00023ED0> /x8e/xa4/xc4/xc7 <CJK> +<U00023ED1> /x8e/xa4/xc4/xc8 <CJK> +<U3D3D> /x8e/xa4/xc4/xc9 <CJK> +<U3D45> /x8e/xa4/xc4/xca <CJK> +<U00023E7B> /x8e/xa4/xc4/xcb <CJK> +<U00023ED2> /x8e/xa4/xc4/xcc <CJK> +<U3D44> /x8e/xa4/xc4/xcd <CJK> +<U00023ED4> /x8e/xa4/xc4/xce <CJK> +<U00023EE7> /x8e/xa4/xc4/xcf <CJK> +<U00023EDF> /x8e/xa4/xc4/xd0 <CJK> +<U00023EDE> /x8e/xa4/xc4/xd1 <CJK> +<U6F45> /x8e/xa4/xc4/xd2 <CJK> +<U00023ED9> /x8e/xa4/xc4/xd3 <CJK> +<U00023ECF> /x8e/xa4/xc4/xd4 <CJK> +<U0002430D> /x8e/xa4/xc4/xd5 <CJK> +<U3DE3> /x8e/xa4/xc4/xd6 <CJK> +<U7179> /x8e/xa4/xc4/xd7 <CJK> +<U3DDF> /x8e/xa4/xc4/xd9 <CJK> +<U3DE4> /x8e/xa4/xc4/xda <CJK> +<U717A> /x8e/xa4/xc4/xdb <CJK> +<U3DE5> /x8e/xa4/xc4/xdc <CJK> +<U00024338> /x8e/xa4/xc4/xdd <CJK> +<U7254> /x8e/xa4/xc4/xde <CJK> +<U3E22> /x8e/xa4/xc4/xdf <CJK> +<U3E4A> /x8e/xa4/xc4/xe0 <CJK> +<U000246A9> /x8e/xa4/xc4/xe1 <CJK> +<U3E49> /x8e/xa4/xc4/xe2 <CJK> +<U3E44> /x8e/xa4/xc4/xe3 <CJK> +<U3E4B> /x8e/xa4/xc4/xe4 <CJK> +<U3E87> /x8e/xa4/xc4/xe5 <CJK> +<U3E89> /x8e/xa4/xc4/xe6 <CJK> +<U3E92> /x8e/xa4/xc4/xe7 <CJK> +<U3E91> /x8e/xa4/xc4/xe8 <CJK> +<U3E90> /x8e/xa4/xc4/xe9 <CJK> +<U3E8E> /x8e/xa4/xc4/xea <CJK> +<U0002483E> /x8e/xa4/xc4/xeb <CJK> +<U00024846> /x8e/xa4/xc4/xec <CJK> +<U000249ED> /x8e/xa4/xc4/xed <CJK> +<U3F12> /x8e/xa4/xc4/xef <CJK> +<U3F10> /x8e/xa4/xc4/xf0 <CJK> +<U3F11> /x8e/xa4/xc4/xf1 <CJK> +<U00024B6C> /x8e/xa4/xc4/xf2 <CJK> +<U3F32> /x8e/xa4/xc4/xf3 <CJK> +<U3F34> /x8e/xa4/xc4/xf4 <CJK> +<U3F37> /x8e/xa4/xc4/xf5 <CJK> +<U3F33> /x8e/xa4/xc4/xf6 <CJK> +<U3F36> /x8e/xa4/xc4/xf7 <CJK> +<U3F35> /x8e/xa4/xc4/xf8 <CJK> +<U3F65> /x8e/xa4/xc4/xf9 <CJK> +<U00024CAC> /x8e/xa4/xc4/xfa <CJK> +<U757C> /x8e/xa4/xc4/xfb <CJK> +<U757B> /x8e/xa4/xc4/xfc <CJK> +<U00024DC9> /x8e/xa4/xc4/xfd <CJK> +<U7612> /x8e/xa4/xc4/xfe <CJK> +<U3FB0> /x8e/xa4/xc5/xa1 <CJK> +<U00024E12> /x8e/xa4/xc5/xa2 <CJK> +<U3FAF> /x8e/xa4/xc5/xa3 <CJK> +<U3FAA> /x8e/xa4/xc5/xa4 <CJK> +<U00024DFD> /x8e/xa4/xc5/xa5 <CJK> +<U00024E01> /x8e/xa4/xc5/xa6 <CJK> +<U00024E11> /x8e/xa4/xc5/xa7 <CJK> +<U3FAB> /x8e/xa4/xc5/xa8 <CJK> +<U00024E89> /x8e/xa4/xc5/xa9 <CJK> +<U00024E05> /x8e/xa4/xc5/xaa <CJK> +<U00024DFE> /x8e/xa4/xc5/xab <CJK> +<U00024E0B> /x8e/xa4/xc5/xac <CJK> +<U00024E20> /x8e/xa4/xc5/xad <CJK> +<U00024E04> /x8e/xa4/xc5/xae <CJK> +<U00024F88> /x8e/xa4/xc5/xaf <CJK> +<U3FF3> /x8e/xa4/xc5/xb0 <CJK> +<U00025002> /x8e/xa4/xc5/xb1 <CJK> +<U3FF4> /x8e/xa4/xc5/xb2 <CJK> +<U00025003> /x8e/xa4/xc5/xb3 <CJK> +<U76B6> /x8e/xa4/xc5/xb4 <CJK> +<U76E0> /x8e/xa4/xc5/xb5 <CJK> +<U4008> /x8e/xa4/xc5/xb6 <CJK> +<U404E> /x8e/xa4/xc5/xb7 <CJK> +<U4055> /x8e/xa4/xc5/xb8 <CJK> +<U404B> /x8e/xa4/xc5/xb9 <CJK> +<U00025229> /x8e/xa4/xc5/xba <CJK> +<U0002523B> /x8e/xa4/xc5/xbb <CJK> +<U404D> /x8e/xa4/xc5/xbc <CJK> +<U7773> /x8e/xa4/xc5/xbd <CJK> +<U00025206> /x8e/xa4/xc5/xbe <CJK> +<U4052> /x8e/xa4/xc5/xbf <CJK> +<U7772> /x8e/xa4/xc5/xc0 <CJK> +<U404C> /x8e/xa4/xc5/xc1 <CJK> +<U7770> /x8e/xa4/xc5/xc2 <CJK> +<U4050> /x8e/xa4/xc5/xc3 <CJK> +<U4053> /x8e/xa4/xc5/xc4 <CJK> +<U00025203> /x8e/xa4/xc5/xc5 <CJK> +<U4051> /x8e/xa4/xc5/xc6 <CJK> +<U00025378> /x8e/xa4/xc5/xc7 <CJK> +<U00025379> /x8e/xa4/xc5/xc8 <CJK> +<U0002537D> /x8e/xa4/xc5/xc9 <CJK> +<U4089> /x8e/xa4/xc5/xca <CJK> +<U0002537F> /x8e/xa4/xc5/xcb <CJK> +<U4095> /x8e/xa4/xc5/xcc <CJK> +<U40CC> /x8e/xa4/xc5/xcd <CJK> +<U40C8> /x8e/xa4/xc5/xce <CJK> +<U40CE> /x8e/xa4/xc5/xcf <CJK> +<U00025532> /x8e/xa4/xc5/xd0 <CJK> +<U40CA> /x8e/xa4/xc5/xd1 <CJK> +<U00025500> /x8e/xa4/xc5/xd2 <CJK> +<U789D> /x8e/xa4/xc5/xd3 <CJK> +<U00025522> /x8e/xa4/xc5/xd4 <CJK> +<U40CD> /x8e/xa4/xc5/xd5 <CJK> +<U000256A9> /x8e/xa4/xc5/xd6 <CJK> +<U415C> /x8e/xa4/xc5/xd7 <CJK> +<U4167> /x8e/xa4/xc5/xd8 <CJK> +<U4169> /x8e/xa4/xc5/xd9 <CJK> +<U4165> /x8e/xa4/xc5/xda <CJK> +<U4162> /x8e/xa4/xc5/xdb <CJK> +<U00025804> /x8e/xa4/xc5/xdc <CJK> +<U7A27> /x8e/xa4/xc5/xdd <CJK> +<U7A35> /x8e/xa4/xc5/xde <CJK> +<U41AA> /x8e/xa4/xc5/xe0 <CJK> +<U000259B8> /x8e/xa4/xc5/xe1 <CJK> +<U00025A9B> /x8e/xa4/xc5/xe2 <CJK> +<U41D2> /x8e/xa4/xc5/xe3 <CJK> +<U7BA2> /x8e/xa4/xc5/xe4 <CJK> +<U4203> /x8e/xa4/xc5/xe5 <CJK> +<U420C> /x8e/xa4/xc5/xe6 <CJK> +<U00025B92> /x8e/xa4/xc5/xe7 <CJK> +<U4209> /x8e/xa4/xc5/xe8 <CJK> +<U4206> /x8e/xa4/xc5/xe9 <CJK> +<U4205> /x8e/xa4/xc5/xea <CJK> +<U7B89> /x8e/xa4/xc5/xeb <CJK> +<U00025B8F> /x8e/xa4/xc5/xec <CJK> +<U420B> /x8e/xa4/xc5/xed <CJK> +<U4208> /x8e/xa4/xc5/xee <CJK> +<U00025B98> /x8e/xa4/xc5/xef <CJK> +<U7BA5> /x8e/xa4/xc5/xf0 <CJK> +<U00025BAE> /x8e/xa4/xc5/xf1 <CJK> +<U428E> /x8e/xa4/xc5/xf2 <CJK> +<U00025E9D> /x8e/xa4/xc5/xf3 <CJK> +<U7CB6> /x8e/xa4/xc5/xf4 <CJK> +<U42E8> /x8e/xa4/xc5/xf5 <CJK> +<U00026049> /x8e/xa4/xc5/xf6 <CJK> +<U00026050> /x8e/xa4/xc5/xf7 <CJK> +<U00026046> /x8e/xa4/xc5/xf8 <CJK> +<U42EA> /x8e/xa4/xc5/xf9 <CJK> +<U0002604E> /x8e/xa4/xc5/xfa <CJK> +<U7DA5> /x8e/xa4/xc5/xfb <CJK> +<U7DC3> /x8e/xa4/xc5/xfc <CJK> +<U00026055> /x8e/xa4/xc5/xfd <CJK> +<U42E9> /x8e/xa4/xc5/xfe <CJK> +<U42EB> /x8e/xa4/xc6/xa1 <CJK> +<U00026064> /x8e/xa4/xc6/xa2 <CJK> +<U42F0> /x8e/xa4/xc6/xa3 <CJK> +<U00026238> /x8e/xa4/xc6/xa4 <CJK> +<U434B> /x8e/xa4/xc6/xa5 <CJK> +<U7FAB> /x8e/xa4/xc6/xa6 <CJK> +<U4373> /x8e/xa4/xc6/xa7 <CJK> +<U4375> /x8e/xa4/xc6/xa8 <CJK> +<U4392> /x8e/xa4/xc6/xa9 <CJK> +<U4391> /x8e/xa4/xc6/xaa <CJK> +<U4393> /x8e/xa4/xc6/xab <CJK> +<U8025> /x8e/xa4/xc6/xac <CJK> +<U43A7> /x8e/xa4/xc6/xad <CJK> +<U43A6> /x8e/xa4/xc6/xae <CJK> +<U43A8> /x8e/xa4/xc6/xaf <CJK> +<U43AA> /x8e/xa4/xc6/xb0 <CJK> +<U000264FE> /x8e/xa4/xc6/xb1 <CJK> +<U43A9> /x8e/xa4/xc6/xb2 <CJK> +<U8059> /x8e/xa4/xc6/xb3 <CJK> +<U43BB> /x8e/xa4/xc6/xb4 <CJK> +<U43BC> /x8e/xa4/xc6/xb5 <CJK> +<U43BA> /x8e/xa4/xc6/xb6 <CJK> +<U43BD> /x8e/xa4/xc6/xb7 <CJK> +<U4427> /x8e/xa4/xc6/xb8 <CJK> +<U8185> /x8e/xa4/xc6/xb9 <CJK> +<U000267A6> /x8e/xa4/xc6/xba <CJK> +<U4424> /x8e/xa4/xc6/xbb <CJK> +<U441E> /x8e/xa4/xc6/xbc <CJK> +<U441F> /x8e/xa4/xc6/xbd <CJK> +<U441D> /x8e/xa4/xc6/xbe <CJK> +<U4420> /x8e/xa4/xc6/xbf <CJK> +<U4423> /x8e/xa4/xc6/xc0 <CJK> +<U4429> /x8e/xa4/xc6/xc1 <CJK> +<U4422> /x8e/xa4/xc6/xc2 <CJK> +<U0002679C> /x8e/xa4/xc6/xc3 <CJK> +<U00026799> /x8e/xa4/xc6/xc4 <CJK> +<U441C> /x8e/xa4/xc6/xc5 <CJK> +<U818E> /x8e/xa4/xc6/xc6 <CJK> +<U4428> /x8e/xa4/xc6/xc7 <CJK> +<U000267B5> /x8e/xa4/xc6/xc8 <CJK> +<U000267A3> /x8e/xa4/xc6/xc9 <CJK> +<U000267A0> /x8e/xa4/xc6/xca <CJK> +<U000267A7> /x8e/xa4/xc6/xcb <CJK> +<U0002679B> /x8e/xa4/xc6/xcc <CJK> +<U000269DF> /x8e/xa4/xc6/xcd <CJK> +<U000269E1> /x8e/xa4/xc6/xce <CJK> +<U4471> /x8e/xa4/xc6/xcf <CJK> +<U4473> /x8e/xa4/xc6/xd0 <CJK> +<U4472> /x8e/xa4/xc6/xd1 <CJK> +<U00026A4D> /x8e/xa4/xc6/xd2 <CJK> +<U4502> /x8e/xa4/xc6/xd3 <CJK> +<U00026DF3> /x8e/xa4/xc6/xd4 <CJK> +<U00026D6F> /x8e/xa4/xc6/xd5 <CJK> +<U00026D69> /x8e/xa4/xc6/xd6 <CJK> +<U44FE> /x8e/xa4/xc6/xd7 <CJK> +<U84BE> /x8e/xa4/xc6/xd8 <CJK> +<U00026D6B> /x8e/xa4/xc6/xd9 <CJK> +<U00026D78> /x8e/xa4/xc6/xda <CJK> +<U00026D87> /x8e/xa4/xc6/xdb <CJK> +<U4508> /x8e/xa4/xc6/xdc <CJK> +<U00026D85> /x8e/xa4/xc6/xdd <CJK> +<U00026D82> /x8e/xa4/xc6/xde <CJK> +<U00026D90> /x8e/xa4/xc6/xdf <CJK> +<U4507> /x8e/xa4/xc6/xe0 <CJK> +<U4504> /x8e/xa4/xc6/xe1 <CJK> +<U00026D80> /x8e/xa4/xc6/xe2 <CJK> +<U00026D67> /x8e/xa4/xc6/xe3 <CJK> +<U4500> /x8e/xa4/xc6/xe4 <CJK> +<U44FC> /x8e/xa4/xc6/xe5 <CJK> +<U00026D61> /x8e/xa4/xc6/xe6 <CJK> +<U4544> /x8e/xa4/xc6/xe7 <CJK> +<U00026D93> /x8e/xa4/xc6/xe8 <CJK> +<U44F1> /x8e/xa4/xc6/xe9 <CJK> +<U00026DF2> /x8e/xa4/xc6/xea <CJK> +<U00026D86> /x8e/xa4/xc6/xeb <CJK> +<U84A6> /x8e/xa4/xc6/xec <CJK> +<U4506> /x8e/xa4/xc6/xed <CJK> +<U000271CD> /x8e/xa4/xc6/xee <CJK> +<U000271C4> /x8e/xa4/xc6/xef <CJK> +<U45C6> /x8e/xa4/xc6/xf0 <CJK> +<U45C3> /x8e/xa4/xc6/xf1 <CJK> +<U45C1> /x8e/xa4/xc6/xf2 <CJK> +<U45C2> /x8e/xa4/xc6/xf3 <CJK> +<U0002730F> /x8e/xa4/xc6/xf4 <CJK> +<U45C4> /x8e/xa4/xc6/xf5 <CJK> +<U45C7> /x8e/xa4/xc6/xf6 <CJK> +<U0002730D> /x8e/xa4/xc6/xf7 <CJK> +<U45BF> /x8e/xa4/xc6/xf8 <CJK> +<U45D2> /x8e/xa4/xc6/xf9 <CJK> +<U00027373> /x8e/xa4/xc6/xfa <CJK> +<U45CA> /x8e/xa4/xc6/xfb <CJK> +<U0002730A> /x8e/xa4/xc6/xfd <CJK> +<U872F> /x8e/xa4/xc6/xfe <CJK> +<U00027308> /x8e/xa4/xc7/xa1 <CJK> +<U00027313> /x8e/xa4/xc7/xa2 <CJK> +<U4613> /x8e/xa4/xc7/xa3 <CJK> +<U000275F8> /x8e/xa4/xc7/xa4 <CJK> +<U4630> /x8e/xa4/xc7/xa5 <CJK> +<U463E> /x8e/xa4/xc7/xa6 <CJK> +<U4639> /x8e/xa4/xc7/xa7 <CJK> +<U000276AB> /x8e/xa4/xc7/xa8 <CJK> +<U000276A8> /x8e/xa4/xc7/xa9 <CJK> +<U463C> /x8e/xa4/xc7/xaa <CJK> +<U463F> /x8e/xa4/xc7/xab <CJK> +<U000276A5> /x8e/xa4/xc7/xac <CJK> +<U4634> /x8e/xa4/xc7/xad <CJK> +<U463D> /x8e/xa4/xc7/xae <CJK> +<U000276C3> /x8e/xa4/xc7/xaf <CJK> +<U000276A4> /x8e/xa4/xc7/xb0 <CJK> +<U4638> /x8e/xa4/xc7/xb1 <CJK> +<U000276D4> /x8e/xa4/xc7/xb2 <CJK> +<U000276BA> /x8e/xa4/xc7/xb3 <CJK> +<U000277F1> /x8e/xa4/xc7/xb4 <CJK> +<U89A0> /x8e/xa4/xc7/xb5 <CJK> +<U4682> /x8e/xa4/xc7/xb6 <CJK> +<U0002783F> /x8e/xa4/xc7/xb7 <CJK> +<U4683> /x8e/xa4/xc7/xb8 <CJK> +<U000278EA> /x8e/xa4/xc7/xb9 <CJK> +<U469B> /x8e/xa4/xc7/xba <CJK> +<U000279F7> /x8e/xa4/xc7/xbb <CJK> +<U46E0> /x8e/xa4/xc7/xbc <CJK> +<U46DD> /x8e/xa4/xc7/xbd <CJK> +<U000279FA> /x8e/xa4/xc7/xbe <CJK> +<U000279F5> /x8e/xa4/xc7/xbf <CJK> +<U46DE> /x8e/xa4/xc7/xc0 <CJK> +<U000279FE> /x8e/xa4/xc7/xc1 <CJK> +<U46E3> /x8e/xa4/xc7/xc2 <CJK> +<U46E5> /x8e/xa4/xc7/xc3 <CJK> +<U00027A00> /x8e/xa4/xc7/xc4 <CJK> +<U8A97> /x8e/xa4/xc7/xc5 <CJK> +<U46E2> /x8e/xa4/xc7/xc6 <CJK> +<U00027A02> /x8e/xa4/xc7/xc7 <CJK> +<U000279FB> /x8e/xa4/xc7/xc8 <CJK> +<U00027A07> /x8e/xa4/xc7/xc9 <CJK> +<U46DF> /x8e/xa4/xc7/xca <CJK> +<U00027A1A> /x8e/xa4/xc7/xcb <CJK> +<U472E> /x8e/xa4/xc7/xcc <CJK> +<U00027BB8> /x8e/xa4/xc7/xcd <CJK> +<U4737> /x8e/xa4/xc7/xce <CJK> +<U4738> /x8e/xa4/xc7/xcf <CJK> +<U00027BE9> /x8e/xa4/xc7/xd0 <CJK> +<U00027BEB> /x8e/xa4/xc7/xd1 <CJK> +<U00027C50> /x8e/xa4/xc7/xd2 <CJK> +<U00027C4F> /x8e/xa4/xc7/xd3 <CJK> +<U8C8B> /x8e/xa4/xc7/xd4 <CJK> +<U00027D86> /x8e/xa4/xc7/xd5 <CJK> +<U3562> /x8e/xa4/xc7/xd6 <CJK> +<U00027D8E> /x8e/xa4/xc7/xd7 <CJK> +<U4794> /x8e/xa4/xc7/xd8 <CJK> +<U4793> /x8e/xa4/xc7/xd9 <CJK> +<U47AB> /x8e/xa4/xc7/xda <CJK> +<U47AD> /x8e/xa4/xc7/xdb <CJK> +<U00027EF0> /x8e/xa4/xc7/xdc <CJK> +<U00027EFB> /x8e/xa4/xc7/xdd <CJK> +<U47F5> /x8e/xa4/xc7/xde <CJK> +<U47F7> /x8e/xa4/xc7/xdf <CJK> +<U00028042> /x8e/xa4/xc7/xe0 <CJK> +<U47F6> /x8e/xa4/xc7/xe1 <CJK> +<U47F8> /x8e/xa4/xc7/xe2 <CJK> +<U00028085> /x8e/xa4/xc7/xe3 <CJK> +<U47FB> /x8e/xa4/xc7/xe4 <CJK> +<U47F9> /x8e/xa4/xc7/xe5 <CJK> +<U4858> /x8e/xa4/xc7/xe6 <CJK> +<U485A> /x8e/xa4/xc7/xe7 <CJK> +<U00028305> /x8e/xa4/xc7/xe8 <CJK> +<U4859> /x8e/xa4/xc7/xe9 <CJK> +<U8F0F> /x8e/xa4/xc7/xea <CJK> +<U4885> /x8e/xa4/xc7/xeb <CJK> +<U48A4> /x8e/xa4/xc7/xec <CJK> +<U48D8> /x8e/xa4/xc7/xed <CJK> +<U48D9> /x8e/xa4/xc7/xee <CJK> +<U0002874B> /x8e/xa4/xc7/xef <CJK> +<U48DD> /x8e/xa4/xc7/xf0 <CJK> +<U48C8> /x8e/xa4/xc7/xf1 <CJK> +<U00028763> /x8e/xa4/xc7/xf2 <CJK> +<U48FA> /x8e/xa4/xc7/xf3 <CJK> +<U48FB> /x8e/xa4/xc7/xf4 <CJK> +<U9275> /x8e/xa4/xc7/xf5 <CJK> +<U4927> /x8e/xa4/xc7/xf6 <CJK> +<U929F> /x8e/xa4/xc7/xf7 <CJK> +<U492A> /x8e/xa4/xc7/xf8 <CJK> +<U4925> /x8e/xa4/xc7/xf9 <CJK> +<U00028999> /x8e/xa4/xc7/xfa <CJK> +<U4928> /x8e/xa4/xc7/xfb <CJK> +<U00028C81> /x8e/xa4/xc7/xfc <CJK> +<U00028D17> /x8e/xa4/xc7/xfd <CJK> +<U00028D10> /x8e/xa4/xc7/xfe <CJK> +<U00028D12> /x8e/xa4/xc8/xa1 <CJK> +<U95A6> /x8e/xa4/xc8/xa2 <CJK> +<U4995> /x8e/xa4/xc8/xa3 <CJK> +<U969A> /x8e/xa4/xc8/xa4 <CJK> +<U00028EFA> /x8e/xa4/xc8/xa5 <CJK> +<U00028EF3> /x8e/xa4/xc8/xa6 <CJK> +<U00028EF2> /x8e/xa4/xc8/xa7 <CJK> +<U00028EF5> /x8e/xa4/xc8/xa8 <CJK> +<U00028EF6> /x8e/xa4/xc8/xa9 <CJK> +<U00028FBB> /x8e/xa4/xc8/xaa <CJK> +<U00028FC2> /x8e/xa4/xc8/xab <CJK> +<U000290A7> /x8e/xa4/xc8/xac <CJK> +<U4A0F> /x8e/xa4/xc8/xad <CJK> +<U4A11> /x8e/xa4/xc8/xae <CJK> +<U000290A8> /x8e/xa4/xc8/xaf <CJK> +<U000290A3> /x8e/xa4/xc8/xb0 <CJK> +<U4A10> /x8e/xa4/xc8/xb1 <CJK> +<U000290AA> /x8e/xa4/xc8/xb2 <CJK> +<U4A15> /x8e/xa4/xc8/xb3 <CJK> +<U4A13> /x8e/xa4/xc8/xb4 <CJK> +<U9757> /x8e/xa4/xc8/xb5 <CJK> +<U000291DC> /x8e/xa4/xc8/xb6 <CJK> +<U4A47> /x8e/xa4/xc8/xb7 <CJK> +<U4A46> /x8e/xa4/xc8/xb8 <CJK> +<U0002920F> /x8e/xa4/xc8/xb9 <CJK> +<U4A59> /x8e/xa4/xc8/xba <CJK> +<U4A5B> /x8e/xa4/xc8/xbb <CJK> +<U00029279> /x8e/xa4/xc8/xbc <CJK> +<U4A5E> /x8e/xa4/xc8/xbd <CJK> +<U0002927F> /x8e/xa4/xc8/xbe <CJK> +<U00029285> /x8e/xa4/xc8/xbf <CJK> +<U4A5A> /x8e/xa4/xc8/xc0 <CJK> +<U4A91> /x8e/xa4/xc8/xc1 <CJK> +<U4A92> /x8e/xa4/xc8/xc2 <CJK> +<U4A90> /x8e/xa4/xc8/xc3 <CJK> +<U4A93> /x8e/xa4/xc8/xc4 <CJK> +<U0002941B> /x8e/xa4/xc8/xc5 <CJK> +<U97F7> /x8e/xa4/xc8/xc6 <CJK> +<U4ABE> /x8e/xa4/xc8/xc7 <CJK> +<U00029477> /x8e/xa4/xc8/xc8 <CJK> +<U00029476> /x8e/xa4/xc8/xc9 <CJK> +<U00029498> /x8e/xa4/xc8/xca <CJK> +<U4ABC> /x8e/xa4/xc8/xcb <CJK> +<U4ABB> /x8e/xa4/xc8/xcc <CJK> +<U4AB7> /x8e/xa4/xc8/xcd <CJK> +<U4AB9> /x8e/xa4/xc8/xce <CJK> +<U0002947A> /x8e/xa4/xc8/xcf <CJK> +<U4B01> /x8e/xa4/xc8/xd0 <CJK> +<U4AFE> /x8e/xa4/xc8/xd1 <CJK> +<U000295BC> /x8e/xa4/xc8/xd2 <CJK> +<U000295BA> /x8e/xa4/xc8/xd3 <CJK> +<U4B02> /x8e/xa4/xc8/xd4 <CJK> +<U000295B6> /x8e/xa4/xc8/xd5 <CJK> +<U4AFF> /x8e/xa4/xc8/xd6 <CJK> +<U98B0> /x8e/xa4/xc8/xd7 <CJK> +<U000295B4> /x8e/xa4/xc8/xd8 <CJK> +<U4B00> /x8e/xa4/xc8/xd9 <CJK> +<U000296CF> /x8e/xa4/xc8/xda <CJK> +<U4B37> /x8e/xa4/xc8/xdb <CJK> +<U4B3A> /x8e/xa4/xc8/xdc <CJK> +<U4B6F> /x8e/xa4/xc8/xdd <CJK> +<U4B77> /x8e/xa4/xc8/xde <CJK> +<U4B79> /x8e/xa4/xc8/xdf <CJK> +<U99C6> /x8e/xa4/xc8/xe0 <CJK> +<U0002987B> /x8e/xa4/xc8/xe1 <CJK> +<U4BC8> /x8e/xa4/xc8/xe2 <CJK> +<U00029A1C> /x8e/xa4/xc8/xe3 <CJK> +<U00029A21> /x8e/xa4/xc8/xe4 <CJK> +<U00029A1D> /x8e/xa4/xc8/xe5 <CJK> +<U00029AC0> /x8e/xa4/xc8/xe6 <CJK> +<U4BF2> /x8e/xa4/xc8/xe7 <CJK> +<U00029AFF> /x8e/xa4/xc8/xe8 <CJK> +<U4BF1> /x8e/xa4/xc8/xe9 <CJK> +<U4BF0> /x8e/xa4/xc8/xea <CJK> +<U9B62> /x8e/xa4/xc8/xeb <CJK> +<U00029D56> /x8e/xa4/xc8/xec <CJK> +<U4C34> /x8e/xa4/xc8/xed <CJK> +<U00029FA1> /x8e/xa4/xc8/xee <CJK> +<U00029FA2> /x8e/xa4/xc8/xef <CJK> +<U00029FA6> /x8e/xa4/xc8/xf0 <CJK> +<U0002A256> /x8e/xa4/xc8/xf1 <CJK> +<U0002A257> /x8e/xa4/xc8/xf2 <CJK> +<U4D2C> /x8e/xa4/xc8/xf3 <CJK> +<U4D2D> /x8e/xa4/xc8/xf4 <CJK> +<U0002A301> /x8e/xa4/xc8/xf5 <CJK> +<U0002A3ED> /x8e/xa4/xc8/xf6 <CJK> +<U0002A5F2> /x8e/xa4/xc8/xf8 <CJK> +<U50FA> /x8e/xa4/xc8/xf9 <CJK> +<U000203B8> /x8e/xa4/xc8/xfa <CJK> +<U3491> /x8e/xa4/xc8/xfb <CJK> +<U000203C0> /x8e/xa4/xc8/xfc <CJK> +<U3494> /x8e/xa4/xc8/xfd <CJK> +<U000203B7> /x8e/xa4/xc8/xfe <CJK> +<U000203E1> /x8e/xa4/xc9/xa1 <CJK> +<U34C4> /x8e/xa4/xc9/xa2 <CJK> +<U350A> /x8e/xa4/xc9/xa3 <CJK> +<U000207E8> /x8e/xa4/xc9/xa4 <CJK> +<U5285> /x8e/xa4/xc9/xa5 <CJK> +<U000208B2> /x8e/xa4/xc9/xa6 <CJK> +<U3552> /x8e/xa4/xc9/xa7 <CJK> +<U00020AAE> /x8e/xa4/xc9/xa8 <CJK> +<U3559> /x8e/xa4/xc9/xa9 <CJK> +<U366F> /x8e/xa4/xc9/xaa <CJK> +<U00020F7E> /x8e/xa4/xc9/xab <CJK> +<U35F2> /x8e/xa4/xc9/xac <CJK> +<U35F4> /x8e/xa4/xc9/xad <CJK> +<U5643> /x8e/xa4/xc9/xae <CJK> +<U00020F76> /x8e/xa4/xc9/xaf <CJK> +<U35F1> /x8e/xa4/xc9/xb0 <CJK> +<U563C> /x8e/xa4/xc9/xb1 <CJK> +<U00020F96> /x8e/xa4/xc9/xb2 <CJK> +<U366A> /x8e/xa4/xc9/xb3 <CJK> +<U00021420> /x8e/xa4/xc9/xb4 <CJK> +<U00021421> /x8e/xa4/xc9/xb5 <CJK> +<U00021423> /x8e/xa4/xc9/xb6 <CJK> +<U00021429> /x8e/xa4/xc9/xb7 <CJK> +<U00021677> /x8e/xa4/xc9/xb8 <CJK> +<U00021851> /x8e/xa4/xc9/xb9 <CJK> +<U3724> /x8e/xa4/xc9/xba <CJK> +<U00021856> /x8e/xa4/xc9/xbb <CJK> +<U3723> /x8e/xa4/xc9/xbc <CJK> +<U00021888> /x8e/xa4/xc9/xbd <CJK> +<U00021859> /x8e/xa4/xc9/xbe <CJK> +<U00021855> /x8e/xa4/xc9/xbf <CJK> +<U3727> /x8e/xa4/xc9/xc0 <CJK> +<U00021997> /x8e/xa4/xc9/xc1 <CJK> +<U00021998> /x8e/xa4/xc9/xc2 <CJK> +<U376D> /x8e/xa4/xc9/xc3 <CJK> +<U5BED> /x8e/xa4/xc9/xc4 <CJK> +<U376E> /x8e/xa4/xc9/xc5 <CJK> +<U376F> /x8e/xa4/xc9/xc6 <CJK> +<U00021AA1> /x8e/xa4/xc9/xc7 <CJK> +<U00021AA3> /x8e/xa4/xc9/xc8 <CJK> +<U5C35> /x8e/xa4/xc9/xc9 <CJK> +<U379F> /x8e/xa4/xc9/xca <CJK> +<U380A> /x8e/xa4/xc9/xcb <CJK> +<U3806> /x8e/xa4/xc9/xcc <CJK> +<U380E> /x8e/xa4/xc9/xcd <CJK> +<U00021F0A> /x8e/xa4/xc9/xce <CJK> +<U380D> /x8e/xa4/xc9/xcf <CJK> +<U3805> /x8e/xa4/xc9/xd0 <CJK> +<U00021F3D> /x8e/xa4/xc9/xd1 <CJK> +<U00021F0C> /x8e/xa4/xc9/xd2 <CJK> +<U380B> /x8e/xa4/xc9/xd3 <CJK> +<U3810> /x8e/xa4/xc9/xd4 <CJK> +<U382E> /x8e/xa4/xc9/xd5 <CJK> +<U0002213D> /x8e/xa4/xc9/xd6 <CJK> +<U00022139> /x8e/xa4/xc9/xd7 <CJK> +<U000222B0> /x8e/xa4/xc9/xd8 <CJK> +<U000222B2> /x8e/xa4/xc9/xd9 <CJK> +<U000222AE> /x8e/xa4/xc9/xda <CJK> +<U3896> /x8e/xa4/xc9/xdb <CJK> +<U3897> /x8e/xa4/xc9/xdc <CJK> +<U38C4> /x8e/xa4/xc9/xdd <CJK> +<U5F47> /x8e/xa4/xc9/xde <CJK> +<U38C5> /x8e/xa4/xc9/xdf <CJK> +<U00022420> /x8e/xa4/xc9/xe0 <CJK> +<U38D2> /x8e/xa4/xc9/xe1 <CJK> +<U0002256E> /x8e/xa4/xc9/xe2 <CJK> +<U0002256D> /x8e/xa4/xc9/xe3 <CJK> +<U0002256A> /x8e/xa4/xc9/xe4 <CJK> +<U3981> /x8e/xa4/xc9/xe5 <CJK> +<U00022832> /x8e/xa4/xc9/xe6 <CJK> +<U398E> /x8e/xa4/xc9/xe7 <CJK> +<U3990> /x8e/xa4/xc9/xe8 <CJK> +<U398F> /x8e/xa4/xc9/xe9 <CJK> +<U00022839> /x8e/xa4/xc9/xea <CJK> +<U3991> /x8e/xa4/xc9/xeb <CJK> +<U3995> /x8e/xa4/xc9/xec <CJK> +<U3993> /x8e/xa4/xc9/xed <CJK> +<U000227A3> /x8e/xa4/xc9/xee <CJK> +<U616D> /x8e/xa4/xc9/xef <CJK> +<U0002287F> /x8e/xa4/xc9/xf0 <CJK> +<U00022835> /x8e/xa4/xc9/xf1 <CJK> +<U0002283D> /x8e/xa4/xc9/xf2 <CJK> +<U000229F4> /x8e/xa4/xc9/xf3 <CJK> +<U000229F5> /x8e/xa4/xc9/xf4 <CJK> +<U3A3B> /x8e/xa4/xc9/xf5 <CJK> +<U3A48> /x8e/xa4/xc9/xf6 <CJK> +<U00022D48> /x8e/xa4/xc9/xf7 <CJK> +<U00022D28> /x8e/xa4/xc9/xf8 <CJK> +<U3A46> /x8e/xa4/xc9/xf9 <CJK> +<U3A47> /x8e/xa4/xc9/xfa <CJK> +<U00022D27> /x8e/xa4/xc9/xfb <CJK> +<U00022D32> /x8e/xa4/xc9/xfc <CJK> +<U00022D2C> /x8e/xa4/xc9/xfd <CJK> +<U3A4C> /x8e/xa4/xc9/xfe <CJK> +<U00022D2E> /x8e/xa4/xca/xa1 <CJK> +<U3A4A> /x8e/xa4/xca/xa2 <CJK> +<U3A50> /x8e/xa4/xca/xa3 <CJK> +<U3A43> /x8e/xa4/xca/xa4 <CJK> +<U00022D23> /x8e/xa4/xca/xa5 <CJK> +<U00022D31> /x8e/xa4/xca/xa6 <CJK> +<U3A49> /x8e/xa4/xca/xa8 <CJK> +<U3AA6> /x8e/xa4/xca/xa9 <CJK> +<U3AA5> /x8e/xa4/xca/xaa <CJK> +<U3AA4> /x8e/xa4/xca/xab <CJK> +<U00022FC9> /x8e/xa4/xca/xac <CJK> +<U00023089> /x8e/xa4/xca/xad <CJK> +<U3AB9> /x8e/xa4/xca/xae <CJK> +<U000230BB> /x8e/xa4/xca/xaf <CJK> +<U3ACE> /x8e/xa4/xca/xb0 <CJK> +<U3ACF> /x8e/xa4/xca/xb1 <CJK> +<U3B13> /x8e/xa4/xca/xb2 <CJK> +<U00023397> /x8e/xa4/xca/xb3 <CJK> +<U00023393> /x8e/xa4/xca/xb4 <CJK> +<U00023628> /x8e/xa4/xca/xb5 <CJK> +<U3BC6> /x8e/xa4/xca/xb6 <CJK> +<U3BC5> /x8e/xa4/xca/xb7 <CJK> +<U3BCA> /x8e/xa4/xca/xb8 <CJK> +<U3BD9> /x8e/xa4/xca/xb9 <CJK> +<U3BC1> /x8e/xa4/xca/xba <CJK> +<U00023618> /x8e/xa4/xca/xbb <CJK> +<U0002363B> /x8e/xa4/xca/xbc <CJK> +<U69F5> /x8e/xa4/xca/xbd <CJK> +<U00023627> /x8e/xa4/xca/xbe <CJK> +<U00023624> /x8e/xa4/xca/xbf <CJK> +<U0002361B> /x8e/xa4/xca/xc0 <CJK> +<U00023631> /x8e/xa4/xca/xc1 <CJK> +<U3BCB> /x8e/xa4/xca/xc2 <CJK> +<U00023626> /x8e/xa4/xca/xc3 <CJK> +<U000236A3> /x8e/xa4/xca/xc4 <CJK> +<U0002363F> /x8e/xa4/xca/xc5 <CJK> +<U00023622> /x8e/xa4/xca/xc6 <CJK> +<U00023619> /x8e/xa4/xca/xc7 <CJK> +<U6A03> /x8e/xa4/xca/xc8 <CJK> +<U00023641> /x8e/xa4/xca/xc9 <CJK> +<U0002362B> /x8e/xa4/xca/xca <CJK> +<U6A65> /x8e/xa4/xca/xcb <CJK> +<U3C42> /x8e/xa4/xca/xcc <CJK> +<U0002390C> /x8e/xa4/xca/xcd <CJK> +<U6B75> /x8e/xa4/xca/xce <CJK> +<U3C74> /x8e/xa4/xca/xcf <CJK> +<U3C73> /x8e/xa4/xca/xd0 <CJK> +<U00023A4E> /x8e/xa4/xca/xd1 <CJK> +<U00023AB9> /x8e/xa4/xca/xd2 <CJK> +<U00023AFA> /x8e/xa4/xca/xd3 <CJK> +<U00023BE9> /x8e/xa4/xca/xd4 <CJK> +<U00023BE8> /x8e/xa4/xca/xd5 <CJK> +<U00023BE4> /x8e/xa4/xca/xd6 <CJK> +<U6F8A> /x8e/xa4/xca/xd7 <CJK> +<U6F56> /x8e/xa4/xca/xd8 <CJK> +<U3D52> /x8e/xa4/xca/xd9 <CJK> +<U00023F5F> /x8e/xa4/xca/xda <CJK> +<U00023F5D> /x8e/xa4/xca/xdb <CJK> +<U00023F52> /x8e/xa4/xca/xdc <CJK> +<U3D50> /x8e/xa4/xca/xdd <CJK> +<U00023F74> /x8e/xa4/xca/xde <CJK> +<U3D4B> /x8e/xa4/xca/xdf <CJK> +<U00023F46> /x8e/xa4/xca/xe0 <CJK> +<U3D4C> /x8e/xa4/xca/xe1 <CJK> +<U3D6D> /x8e/xa4/xca/xe2 <CJK> +<U00023FAA> /x8e/xa4/xca/xe3 <CJK> +<U6F98> /x8e/xa4/xca/xe4 <CJK> +<U00023F4A> /x8e/xa4/xca/xe5 <CJK> +<U00023F59> /x8e/xa4/xca/xe6 <CJK> +<U00023F4B> /x8e/xa4/xca/xe7 <CJK> +<U3D4F> /x8e/xa4/xca/xe8 <CJK> +<U6F68> /x8e/xa4/xca/xe9 <CJK> +<U3DF0> /x8e/xa4/xca/xea <CJK> +<U00024350> /x8e/xa4/xca/xeb <CJK> +<U7234> /x8e/xa4/xca/xec <CJK> +<U7245> /x8e/xa4/xca/xed <CJK> +<U3E4D> /x8e/xa4/xca/xee <CJK> +<U3E4C> /x8e/xa4/xca/xef <CJK> +<U000246D0> /x8e/xa4/xca/xf0 <CJK> +<U3E4F> /x8e/xa4/xca/xf1 <CJK> +<U3E4E> /x8e/xa4/xca/xf2 <CJK> +<U3E50> /x8e/xa4/xca/xf3 <CJK> +<U000246CC> /x8e/xa4/xca/xf4 <CJK> +<U735C> /x8e/xa4/xca/xf5 <CJK> +<U3E96> /x8e/xa4/xca/xf6 <CJK> +<U7356> /x8e/xa4/xca/xf7 <CJK> +<U00024864> /x8e/xa4/xca/xf8 <CJK> +<U00024865> /x8e/xa4/xca/xf9 <CJK> +<U3E97> /x8e/xa4/xca/xfa <CJK> +<U3E95> /x8e/xa4/xca/xfb <CJK> +<U3E98> /x8e/xa4/xca/xfc <CJK> +<U0002485C> /x8e/xa4/xca/xfd <CJK> +<U00024A15> /x8e/xa4/xca/xfe <CJK> +<U3EEC> /x8e/xa4/xcb/xa1 <CJK> +<U3EEB> /x8e/xa4/xcb/xa2 <CJK> +<U3F13> /x8e/xa4/xcb/xa3 <CJK> +<U3F14> /x8e/xa4/xcb/xa4 <CJK> +<U3F38> /x8e/xa4/xcb/xa5 <CJK> +<U3F3A> /x8e/xa4/xcb/xa6 <CJK> +<U3F39> /x8e/xa4/xcb/xa7 <CJK> +<U00024B79> /x8e/xa4/xcb/xa8 <CJK> +<U3F68> /x8e/xa4/xcb/xa9 <CJK> +<U3F67> /x8e/xa4/xcb/xaa <CJK> +<U00024CC5> /x8e/xa4/xcb/xab <CJK> +<U00024CB8> /x8e/xa4/xcb/xac <CJK> +<U00024E2C> /x8e/xa4/xcb/xad <CJK> +<U3FBE> /x8e/xa4/xcb/xae <CJK> +<U3FBC> /x8e/xa4/xcb/xaf <CJK> +<U00024E37> /x8e/xa4/xcb/xb0 <CJK> +<U00024E35> /x8e/xa4/xcb/xb1 <CJK> +<U00024E31> /x8e/xa4/xcb/xb2 <CJK> +<U3FBB> /x8e/xa4/xcb/xb3 <CJK> +<U00024E2F> /x8e/xa4/xcb/xb4 <CJK> +<U3FBA> /x8e/xa4/xcb/xb5 <CJK> +<U00024E2B> /x8e/xa4/xcb/xb6 <CJK> +<U3FB9> /x8e/xa4/xcb/xb7 <CJK> +<U3FB7> /x8e/xa4/xcb/xb8 <CJK> +<U00024E2D> /x8e/xa4/xcb/xb9 <CJK> +<U00024E2A> /x8e/xa4/xcb/xba <CJK> +<U3FC1> /x8e/xa4/xcb/xbb <CJK> +<U00024F95> /x8e/xa4/xcb/xbc <CJK> +<U3FF7> /x8e/xa4/xcb/xbd <CJK> +<U0002523E> /x8e/xa4/xcb/xbe <CJK> +<U4060> /x8e/xa4/xcb/xbf <CJK> +<U00025247> /x8e/xa4/xcb/xc0 <CJK> +<U00025245> /x8e/xa4/xcb/xc1 <CJK> +<U4059> /x8e/xa4/xcb/xc2 <CJK> +<U405C> /x8e/xa4/xcb/xc3 <CJK> +<U405A> /x8e/xa4/xcb/xc4 <CJK> +<U4058> /x8e/xa4/xcb/xc5 <CJK> +<U00025252> /x8e/xa4/xcb/xc6 <CJK> +<U405B> /x8e/xa4/xcb/xc7 <CJK> +<U00025270> /x8e/xa4/xcb/xc8 <CJK> +<U00025250> /x8e/xa4/xcb/xc9 <CJK> +<U00025258> /x8e/xa4/xcb/xca <CJK> +<U00025251> /x8e/xa4/xcb/xcb <CJK> +<U0002523D> /x8e/xa4/xcb/xcc <CJK> +<U405D> /x8e/xa4/xcb/xcd <CJK> +<U00025241> /x8e/xa4/xcb/xce <CJK> +<U0002520C> /x8e/xa4/xcb/xcf <CJK> +<U0002523C> /x8e/xa4/xcb/xd0 <CJK> +<U00025386> /x8e/xa4/xcb/xd1 <CJK> +<U00025383> /x8e/xa4/xcb/xd2 <CJK> +<U00025389> /x8e/xa4/xcb/xd3 <CJK> +<U000253F3> /x8e/xa4/xcb/xd4 <CJK> +<U40D4> /x8e/xa4/xcb/xd5 <CJK> +<U40D3> /x8e/xa4/xcb/xd6 <CJK> +<U78BF> /x8e/xa4/xcb/xd7 <CJK> +<U40D2> /x8e/xa4/xcb/xd8 <CJK> +<U78BD> /x8e/xa4/xcb/xd9 <CJK> +<U0002552D> /x8e/xa4/xcb/xda <CJK> +<U40D7> /x8e/xa4/xcb/xdb <CJK> +<U40D1> /x8e/xa4/xcb/xdc <CJK> +<U78E4> /x8e/xa4/xcb/xdd <CJK> +<U40D5> /x8e/xa4/xcb/xde <CJK> +<U000256C5> /x8e/xa4/xcb/xdf <CJK> +<U416D> /x8e/xa4/xcb/xe1 <CJK> +<U416F> /x8e/xa4/xcb/xe2 <CJK> +<U7A34> /x8e/xa4/xcb/xe3 <CJK> +<U4175> /x8e/xa4/xcb/xe4 <CJK> +<U416C> /x8e/xa4/xcb/xe5 <CJK> +<U4174> /x8e/xa4/xcb/xe6 <CJK> +<U00025843> /x8e/xa4/xcb/xe7 <CJK> +<U4173> /x8e/xa4/xcb/xe8 <CJK> +<U00025837> /x8e/xa4/xcb/xe9 <CJK> +<U00025845> /x8e/xa4/xcb/xea <CJK> +<U7A36> /x8e/xa4/xcb/xeb <CJK> +<U41AC> /x8e/xa4/xcb/xec <CJK> +<U000259E5> /x8e/xa4/xcb/xed <CJK> +<U00025AA6> /x8e/xa4/xcb/xee <CJK> +<U00025BDB> /x8e/xa4/xcb/xef <CJK> +<U4210> /x8e/xa4/xcb/xf0 <CJK> +<U00025BDA> /x8e/xa4/xcb/xf1 <CJK> +<U00025BE6> /x8e/xa4/xcb/xf2 <CJK> +<U7BBA> /x8e/xa4/xcb/xf3 <CJK> +<U7BBC> /x8e/xa4/xcb/xf4 <CJK> +<U420F> /x8e/xa4/xcb/xf5 <CJK> +<U7BC8> /x8e/xa4/xcb/xf6 <CJK> +<U4223> /x8e/xa4/xcb/xf7 <CJK> +<U7BC3> /x8e/xa4/xcb/xf8 <CJK> +<U421D> /x8e/xa4/xcb/xf9 <CJK> +<U7BB6> /x8e/xa4/xcb/xfa <CJK> +<U420E> /x8e/xa4/xcb/xfb <CJK> +<U00025BF8> /x8e/xa4/xcb/xfc <CJK> +<U00025BE9> /x8e/xa4/xcb/xfd <CJK> +<U4215> /x8e/xa4/xcb/xfe <CJK> +<U7BC2> /x8e/xa4/xcc/xa1 <CJK> +<U4213> /x8e/xa4/xcc/xa2 <CJK> +<U00025BE8> /x8e/xa4/xcc/xa3 <CJK> +<U00025BF6> /x8e/xa4/xcc/xa4 <CJK> +<U421B> /x8e/xa4/xcc/xa5 <CJK> +<U7BC5> /x8e/xa4/xcc/xa6 <CJK> +<U4222> /x8e/xa4/xcc/xa7 <CJK> +<U4226> /x8e/xa4/xcc/xa8 <CJK> +<U00025BE7> /x8e/xa4/xcc/xa9 <CJK> +<U7BBD> /x8e/xa4/xcc/xaa <CJK> +<U7BB0> /x8e/xa4/xcc/xab <CJK> +<U4221> /x8e/xa4/xcc/xac <CJK> +<U421C> /x8e/xa4/xcc/xad <CJK> +<U4217> /x8e/xa4/xcc/xae <CJK> +<U00025BD5> /x8e/xa4/xcc/xaf <CJK> +<U421A> /x8e/xa4/xcc/xb0 <CJK> +<U7BBB> /x8e/xa4/xcc/xb1 <CJK> +<U00025ED3> /x8e/xa4/xcc/xb2 <CJK> +<U00025EC7> /x8e/xa4/xcc/xb3 <CJK> +<U00025ED1> /x8e/xa4/xcc/xb4 <CJK> +<U4299> /x8e/xa4/xcc/xb5 <CJK> +<U00025EC3> /x8e/xa4/xcc/xb6 <CJK> +<U4297> /x8e/xa4/xcc/xb7 <CJK> +<U00026080> /x8e/xa4/xcc/xb8 <CJK> +<U00026098> /x8e/xa4/xcc/xb9 <CJK> +<U42FD> /x8e/xa4/xcc/xba <CJK> +<U00026084> /x8e/xa4/xcc/xbb <CJK> +<U42F6> /x8e/xa4/xcc/xbc <CJK> +<U42FE> /x8e/xa4/xcc/xbd <CJK> +<U42F5> /x8e/xa4/xcc/xbe <CJK> +<U42FF> /x8e/xa4/xcc/xbf <CJK> +<U42F7> /x8e/xa4/xcc/xc0 <CJK> +<U00026097> /x8e/xa4/xcc/xc1 <CJK> +<U00026083> /x8e/xa4/xcc/xc2 <CJK> +<U00026081> /x8e/xa4/xcc/xc3 <CJK> +<U4301> /x8e/xa4/xcc/xc4 <CJK> +<U7E04> /x8e/xa4/xcc/xc5 <CJK> +<U0002608C> /x8e/xa4/xcc/xc6 <CJK> +<U00026242> /x8e/xa4/xcc/xc7 <CJK> +<U000263AB> /x8e/xa4/xcc/xc8 <CJK> +<U4377> /x8e/xa4/xcc/xc9 <CJK> +<U000263A3> /x8e/xa4/xcc/xca <CJK> +<U000263A6> /x8e/xa4/xcc/xcb <CJK> +<U0002645C> /x8e/xa4/xcc/xcc <CJK> +<U00026469> /x8e/xa4/xcc/xcd <CJK> +<U00026467> /x8e/xa4/xcc/xce <CJK> +<U43AB> /x8e/xa4/xcc/xcf <CJK> +<U0002658B> /x8e/xa4/xcc/xd0 <CJK> +<U000265A8> /x8e/xa4/xcc/xd1 <CJK> +<U43C0> /x8e/xa4/xcc/xd2 <CJK> +<U000267D8> /x8e/xa4/xcc/xd3 <CJK> +<U4431> /x8e/xa4/xcc/xd4 <CJK> +<U442E> /x8e/xa4/xcc/xd5 <CJK> +<U000267DC> /x8e/xa4/xcc/xd7 <CJK> +<U442C> /x8e/xa4/xcc/xd8 <CJK> +<U000267E0> /x8e/xa4/xcc/xd9 <CJK> +<U000267E5> /x8e/xa4/xcc/xda <CJK> +<U4432> /x8e/xa4/xcc/xdb <CJK> +<U442F> /x8e/xa4/xcc/xdc <CJK> +<U442B> /x8e/xa4/xcc/xdd <CJK> +<U442D> /x8e/xa4/xcc/xde <CJK> +<U4433> /x8e/xa4/xcc/xdf <CJK> +<U00026918> /x8e/xa4/xcc/xe0 <CJK> +<U00026919> /x8e/xa4/xcc/xe1 <CJK> +<U81F1> /x8e/xa4/xcc/xe2 <CJK> +<U4457> /x8e/xa4/xcc/xe3 <CJK> +<U445C> /x8e/xa4/xcc/xe4 <CJK> +<U447B> /x8e/xa4/xcc/xe5 <CJK> +<U00026A5F> /x8e/xa4/xcc/xe6 <CJK> +<U00026A5E> /x8e/xa4/xcc/xe7 <CJK> +<U447A> /x8e/xa4/xcc/xe8 <CJK> +<U00026E02> /x8e/xa4/xcc/xe9 <CJK> +<U8522> /x8e/xa4/xcc/xea <CJK> +<U4513> /x8e/xa4/xcc/xeb <CJK> +<U451E> /x8e/xa4/xcc/xec <CJK> +<U4517> /x8e/xa4/xcc/xed <CJK> +<U4520> /x8e/xa4/xcc/xee <CJK> +<U452A> /x8e/xa4/xcc/xef <CJK> +<U4511> /x8e/xa4/xcc/xf0 <CJK> +<U4515> /x8e/xa4/xcc/xf1 <CJK> +<U450F> /x8e/xa4/xcc/xf2 <CJK> +<U4518> /x8e/xa4/xcc/xf3 <CJK> +<U8538> /x8e/xa4/xcc/xf4 <CJK> +<U00026E12> /x8e/xa4/xcc/xf5 <CJK> +<U00026E36> /x8e/xa4/xcc/xf6 <CJK> +<U452C> /x8e/xa4/xcc/xf7 <CJK> +<U8532> /x8e/xa4/xcc/xf8 <CJK> +<U8510> /x8e/xa4/xcc/xfa <CJK> +<U00026E23> /x8e/xa4/xcc/xfb <CJK> +<U00026E03> /x8e/xa4/xcc/xfc <CJK> +<U451C> /x8e/xa4/xcc/xfd <CJK> +<U00026E00> /x8e/xa4/xcc/xfe <CJK> +<U4529> /x8e/xa4/xcd/xa1 <CJK> +<U00026E46> /x8e/xa4/xcd/xa2 <CJK> +<U00026E61> /x8e/xa4/xcd/xa3 <CJK> +<U4512> /x8e/xa4/xcd/xa4 <CJK> +<U854F> /x8e/xa4/xcd/xa5 <CJK> +<U4597> /x8e/xa4/xcd/xa6 <CJK> +<U00027384> /x8e/xa4/xcd/xa7 <CJK> +<U8772> /x8e/xa4/xcd/xa8 <CJK> +<U0002736B> /x8e/xa4/xcd/xa9 <CJK> +<U00027362> /x8e/xa4/xcd/xaa <CJK> +<U00027356> /x8e/xa4/xcd/xab <CJK> +<U0002736A> /x8e/xa4/xcd/xac <CJK> +<U00027352> /x8e/xa4/xcd/xad <CJK> +<U00027355> /x8e/xa4/xcd/xae <CJK> +<U45D4> /x8e/xa4/xcd/xaf <CJK> +<U45D0> /x8e/xa4/xcd/xb0 <CJK> +<U877C> /x8e/xa4/xcd/xb1 <CJK> +<U00027361> /x8e/xa4/xcd/xb2 <CJK> +<U00027358> /x8e/xa4/xcd/xb4 <CJK> +<U00027377> /x8e/xa4/xcd/xb5 <CJK> +<U45D3> /x8e/xa4/xcd/xb6 <CJK> +<U4614> /x8e/xa4/xcd/xb7 <CJK> +<U000276D7> /x8e/xa4/xcd/xb8 <CJK> +<U4646> /x8e/xa4/xcd/xb9 <CJK> +<U4645> /x8e/xa4/xcd/xba <CJK> +<U000276DE> /x8e/xa4/xcd/xbb <CJK> +<U4643> /x8e/xa4/xcd/xbc <CJK> +<U000276DF> /x8e/xa4/xcd/xbd <CJK> +<U890D> /x8e/xa4/xcd/xbe <CJK> +<U4644> /x8e/xa4/xcd/xbf <CJK> +<U4648> /x8e/xa4/xcd/xc0 <CJK> +<U000276D1> /x8e/xa4/xcd/xc1 <CJK> +<U4647> /x8e/xa4/xcd/xc2 <CJK> +<U000276E2> /x8e/xa4/xcd/xc3 <CJK> +<U000276E1> /x8e/xa4/xcd/xc4 <CJK> +<U000276DD> /x8e/xa4/xcd/xc5 <CJK> +<U8908> /x8e/xa4/xcd/xc6 <CJK> +<U4649> /x8e/xa4/xcd/xc7 <CJK> +<U4685> /x8e/xa4/xcd/xc8 <CJK> +<U0002784B> /x8e/xa4/xcd/xc9 <CJK> +<U4684> /x8e/xa4/xcd/xca <CJK> +<U0002784E> /x8e/xa4/xcd/xcb <CJK> +<U469D> /x8e/xa4/xcd/xcc <CJK> +<U000278FC> /x8e/xa4/xcd/xcd <CJK> +<U469E> /x8e/xa4/xcd/xce <CJK> +<U46A0> /x8e/xa4/xcd/xcf <CJK> +<U000278FA> /x8e/xa4/xcd/xd0 <CJK> +<U469C> /x8e/xa4/xcd/xd1 <CJK> +<U000278FB> /x8e/xa4/xcd/xd2 <CJK> +<U469F> /x8e/xa4/xcd/xd3 <CJK> +<U000278FE> /x8e/xa4/xcd/xd4 <CJK> +<U46F7> /x8e/xa4/xcd/xd5 <CJK> +<U46EA> /x8e/xa4/xcd/xd6 <CJK> +<U00027A31> /x8e/xa4/xcd/xd7 <CJK> +<U46EF> /x8e/xa4/xcd/xd8 <CJK> +<U46E9> /x8e/xa4/xcd/xd9 <CJK> +<U46F3> /x8e/xa4/xcd/xda <CJK> +<U46F0> /x8e/xa4/xcd/xdb <CJK> +<U46EB> /x8e/xa4/xcd/xdc <CJK> +<U00027A38> /x8e/xa4/xcd/xdd <CJK> +<U46EC> /x8e/xa4/xcd/xde <CJK> +<U46F2> /x8e/xa4/xcd/xdf <CJK> +<U46F5> /x8e/xa4/xcd/xe0 <CJK> +<U46EE> /x8e/xa4/xcd/xe1 <CJK> +<U00027A3A> /x8e/xa4/xcd/xe2 <CJK> +<U00027BBB> /x8e/xa4/xcd/xe3 <CJK> +<U473A> /x8e/xa4/xcd/xe4 <CJK> +<U474B> /x8e/xa4/xcd/xe5 <CJK> +<U00027C59> /x8e/xa4/xcd/xe6 <CJK> +<U474A> /x8e/xa4/xcd/xe7 <CJK> +<U474C> /x8e/xa4/xcd/xe8 <CJK> +<U00027CDB> /x8e/xa4/xcd/xe9 <CJK> +<U00027CDF> /x8e/xa4/xcd/xea <CJK> +<U00027CE2> /x8e/xa4/xcd/xeb <CJK> +<U4779> /x8e/xa4/xcd/xec <CJK> +<U477B> /x8e/xa4/xcd/xed <CJK> +<U4778> /x8e/xa4/xcd/xee <CJK> +<U00027D9E> /x8e/xa4/xcd/xef <CJK> +<U00027DA1> /x8e/xa4/xcd/xf0 <CJK> +<U47B5> /x8e/xa4/xcd/xf1 <CJK> +<U00027F10> /x8e/xa4/xcd/xf2 <CJK> +<U47B4> /x8e/xa4/xcd/xf3 <CJK> +<U47B7> /x8e/xa4/xcd/xf4 <CJK> +<U8D9E> /x8e/xa4/xcd/xf5 <CJK> +<U4809> /x8e/xa4/xcd/xf6 <CJK> +<U47FE> /x8e/xa4/xcd/xf7 <CJK> +<U4808> /x8e/xa4/xcd/xf8 <CJK> +<U4807> /x8e/xa4/xcd/xf9 <CJK> +<U00028076> /x8e/xa4/xcd/xfa <CJK> +<U0002807F> /x8e/xa4/xcd/xfb <CJK> +<U0002807D> /x8e/xa4/xcd/xfc <CJK> +<U4806> /x8e/xa4/xcd/xfd <CJK> +<U4804> /x8e/xa4/xcd/xfe <CJK> +<U4805> /x8e/xa4/xce/xa1 <CJK> +<U47FF> /x8e/xa4/xce/xa2 <CJK> +<U480B> /x8e/xa4/xce/xa3 <CJK> +<U00028082> /x8e/xa4/xce/xa4 <CJK> +<U00028257> /x8e/xa4/xce/xa5 <CJK> +<U483B> /x8e/xa4/xce/xa6 <CJK> +<U485D> /x8e/xa4/xce/xa7 <CJK> +<U485C> /x8e/xa4/xce/xa8 <CJK> +<U485F> /x8e/xa4/xce/xa9 <CJK> +<U485E> /x8e/xa4/xce/xaa <CJK> +<U8F28> /x8e/xa4/xce/xab <CJK> +<U0002832E> /x8e/xa4/xce/xac <CJK> +<U8F21> /x8e/xa4/xce/xad <CJK> +<U4883> /x8e/xa4/xce/xae <CJK> +<U0002858B> /x8e/xa4/xce/xaf <CJK> +<U0002858D> /x8e/xa4/xce/xb0 <CJK> +<U48A7> /x8e/xa4/xce/xb1 <CJK> +<U9066> /x8e/xa4/xce/xb2 <CJK> +<U906C> /x8e/xa4/xce/xb3 <CJK> +<U00028590> /x8e/xa4/xce/xb4 <CJK> +<U48A8> /x8e/xa4/xce/xb5 <CJK> +<U000286EC> /x8e/xa4/xce/xb6 <CJK> +<U0002876F> /x8e/xa4/xce/xb7 <CJK> +<U0002876B> /x8e/xa4/xce/xb8 <CJK> +<U00028771> /x8e/xa4/xce/xb9 <CJK> +<U00028778> /x8e/xa4/xce/xba <CJK> +<U90F6> /x8e/xa4/xce/xbb <CJK> +<U48E0> /x8e/xa4/xce/xbc <CJK> +<U48DF> /x8e/xa4/xce/xbd <CJK> +<U48FE> /x8e/xa4/xce/xbe <CJK> +<U48FC> /x8e/xa4/xce/xbf <CJK> +<U48FF> /x8e/xa4/xce/xc0 <CJK> +<U48FD> /x8e/xa4/xce/xc1 <CJK> +<U000289AD> /x8e/xa4/xce/xc2 <CJK> +<U492C> /x8e/xa4/xce/xc3 <CJK> +<U92EC> /x8e/xa4/xce/xc4 <CJK> +<U92BA> /x8e/xa4/xce/xc5 <CJK> +<U92E3> /x8e/xa4/xce/xc6 <CJK> +<U92BD> /x8e/xa4/xce/xc7 <CJK> +<U499D> /x8e/xa4/xce/xc8 <CJK> +<U00028D2F> /x8e/xa4/xce/xc9 <CJK> +<U95B4> /x8e/xa4/xce/xca <CJK> +<U00028F78> /x8e/xa4/xce/xcb <CJK> +<U4A40> /x8e/xa4/xce/xcc <CJK> +<U000291F8> /x8e/xa4/xce/xcd <CJK> +<U00029219> /x8e/xa4/xce/xce <CJK> +<U4A5F> /x8e/xa4/xce/xcf <CJK> +<U0002929B> /x8e/xa4/xce/xd0 <CJK> +<U00029294> /x8e/xa4/xce/xd1 <CJK> +<U00029297> /x8e/xa4/xce/xd2 <CJK> +<U00029299> /x8e/xa4/xce/xd3 <CJK> +<U000293A6> /x8e/xa4/xce/xd4 <CJK> +<U000293A4> /x8e/xa4/xce/xd5 <CJK> +<U000293A7> /x8e/xa4/xce/xd6 <CJK> +<U97D1> /x8e/xa4/xce/xd7 <CJK> +<U00029495> /x8e/xa4/xce/xd8 <CJK> +<U4AC0> /x8e/xa4/xce/xd9 <CJK> +<U9823> /x8e/xa4/xce/xda <CJK> +<U00029490> /x8e/xa4/xce/xdb <CJK> +<U4AC1> /x8e/xa4/xce/xdc <CJK> +<U4AC6> /x8e/xa4/xce/xdd <CJK> +<U0002949B> /x8e/xa4/xce/xde <CJK> +<U000295C4> /x8e/xa4/xce/xdf <CJK> +<U4B04> /x8e/xa4/xce/xe0 <CJK> +<U4B05> /x8e/xa4/xce/xe1 <CJK> +<U000295C6> /x8e/xa4/xce/xe2 <CJK> +<U990B> /x8e/xa4/xce/xe3 <CJK> +<U4B3E> /x8e/xa4/xce/xe4 <CJK> +<U4B3D> /x8e/xa4/xce/xe5 <CJK> +<U4B40> /x8e/xa4/xce/xe6 <CJK> +<U4B3F> /x8e/xa4/xce/xe7 <CJK> +<U000296E3> /x8e/xa4/xce/xe8 <CJK> +<U4B42> /x8e/xa4/xce/xe9 <CJK> +<U000296DF> /x8e/xa4/xce/xea <CJK> +<U000296DD> /x8e/xa4/xce/xeb <CJK> +<U000296E7> /x8e/xa4/xce/xec <CJK> +<U4B84> /x8e/xa4/xce/xed <CJK> +<U4B82> /x8e/xa4/xce/xee <CJK> +<U4B7F> /x8e/xa4/xce/xef <CJK> +<U4B85> /x8e/xa4/xce/xf0 <CJK> +<U00029A2D> /x8e/xa4/xce/xf1 <CJK> +<U00029A2C> /x8e/xa4/xce/xf2 <CJK> +<U4BCC> /x8e/xa4/xce/xf3 <CJK> +<U9AB2> /x8e/xa4/xce/xf4 <CJK> +<U4BCB> /x8e/xa4/xce/xf5 <CJK> +<U4BCD> /x8e/xa4/xce/xf6 <CJK> +<U00029A34> /x8e/xa4/xce/xf7 <CJK> +<U00029A38> /x8e/xa4/xce/xf8 <CJK> +<U9ADB> /x8e/xa4/xce/xf9 <CJK> +<U00029B1D> /x8e/xa4/xce/xfa <CJK> +<U4BF5> /x8e/xa4/xce/xfb <CJK> +<U00029B1A> /x8e/xa4/xce/xfc <CJK> +<U00029B1B> /x8e/xa4/xce/xfd <CJK> +<U00029B14> /x8e/xa4/xce/xfe <CJK> +<U9AF0> /x8e/xa4/xcf/xa1 <CJK> +<U00029B17> /x8e/xa4/xcf/xa2 <CJK> +<U00029C21> /x8e/xa4/xcf/xa3 <CJK> +<U4C20> /x8e/xa4/xcf/xa4 <CJK> +<U4C21> /x8e/xa4/xcf/xa5 <CJK> +<U00029CAA> /x8e/xa4/xcf/xa6 <CJK> +<U00029CA1> /x8e/xa4/xcf/xa7 <CJK> +<U4C37> /x8e/xa4/xcf/xa8 <CJK> +<U4C3E> /x8e/xa4/xcf/xa9 <CJK> +<U9B73> /x8e/xa4/xcf/xaa <CJK> +<U4C3D> /x8e/xa4/xcf/xab <CJK> +<U9B6E> /x8e/xa4/xcf/xac <CJK> +<U00029D63> /x8e/xa4/xcf/xad <CJK> +<U00029D79> /x8e/xa4/xcf/xae <CJK> +<U00029D60> /x8e/xa4/xcf/xaf <CJK> +<U9B65> /x8e/xa4/xcf/xb0 <CJK> +<U00029D62> /x8e/xa4/xcf/xb1 <CJK> +<U4C3C> /x8e/xa4/xcf/xb2 <CJK> +<U00029D61> /x8e/xa4/xcf/xb3 <CJK> +<U4C38> /x8e/xa4/xcf/xb4 <CJK> +<U9B6A> /x8e/xa4/xcf/xb5 <CJK> +<U00029D70> /x8e/xa4/xcf/xb6 <CJK> +<U9B6D> /x8e/xa4/xcf/xb7 <CJK> +<U00029D6A> /x8e/xa4/xcf/xb8 <CJK> +<U4C3B> /x8e/xa4/xcf/xb9 <CJK> +<U00029FC8> /x8e/xa4/xcf/xba <CJK> +<U4CB0> /x8e/xa4/xcf/xbb <CJK> +<U00029FC5> /x8e/xa4/xcf/xbc <CJK> +<U00029FBE> /x8e/xa4/xcf/xbd <CJK> +<U00029FC2> /x8e/xa4/xcf/xbe <CJK> +<U4CAD> /x8e/xa4/xcf/xbf <CJK> +<U4CB2> /x8e/xa4/xcf/xc0 <CJK> +<U4CB8> /x8e/xa4/xcf/xc1 <CJK> +<U9D0B> /x8e/xa4/xcf/xc2 <CJK> +<U00029FC7> /x8e/xa4/xcf/xc3 <CJK> +<U4CAF> /x8e/xa4/xcf/xc4 <CJK> +<U00029FB0> /x8e/xa4/xcf/xc5 <CJK> +<U00029FCA> /x8e/xa4/xcf/xc6 <CJK> +<U4D1A> /x8e/xa4/xcf/xc7 <CJK> +<U9E76> /x8e/xa4/xcf/xc8 <CJK> +<U4D20> /x8e/xa4/xcf/xc9 <CJK> +<U4D21> /x8e/xa4/xcf/xca <CJK> +<U4D30> /x8e/xa4/xcf/xcb <CJK> +<U9EA8> /x8e/xa4/xcf/xcc <CJK> +<U4D2F> /x8e/xa4/xcf/xcd <CJK> +<U0002A30D> /x8e/xa4/xcf/xce <CJK> +<U0002A307> /x8e/xa4/xcf/xcf <CJK> +<U0002A396> /x8e/xa4/xcf/xd0 <CJK> +<U0002A3EF> /x8e/xa4/xcf/xd1 <CJK> +<U4D5F> /x8e/xa4/xcf/xd2 <CJK> +<U4D60> /x8e/xa4/xcf/xd3 <CJK> +<U0002A41E> /x8e/xa4/xcf/xd4 <CJK> +<U0002A41D> /x8e/xa4/xcf/xd5 <CJK> +<U9F11> /x8e/xa4/xcf/xd6 <CJK> +<U0002A590> /x8e/xa4/xcf/xd7 <CJK> +<U000203EB> /x8e/xa4/xcf/xd8 <CJK> +<U348A> /x8e/xa4/xcf/xd9 <CJK> +<U5119> /x8e/xa4/xcf/xda <CJK> +<U349C> /x8e/xa4/xcf/xdb <CJK> +<U000203EE> /x8e/xa4/xcf/xdc <CJK> +<U349A> /x8e/xa4/xcf/xdd <CJK> +<U000203EF> /x8e/xa4/xcf/xde <CJK> +<U000203EC> /x8e/xa4/xcf/xdf <CJK> +<U000207FA> /x8e/xa4/xcf/xe0 <CJK> +<U350C> /x8e/xa4/xcf/xe1 <CJK> +<U350B> /x8e/xa4/xcf/xe2 <CJK> +<U350D> /x8e/xa4/xcf/xe3 <CJK> +<U5292> /x8e/xa4/xcf/xe4 <CJK> +<U00020904> /x8e/xa4/xcf/xe5 <CJK> +<U00020FD3> /x8e/xa4/xcf/xe6 <CJK> +<U35FE> /x8e/xa4/xcf/xe7 <CJK> +<U00020FD1> /x8e/xa4/xcf/xe8 <CJK> +<U00020FFA> /x8e/xa4/xcf/xe9 <CJK> +<U35FF> /x8e/xa4/xcf/xea <CJK> +<U35FB> /x8e/xa4/xcf/xeb <CJK> +<U35FC> /x8e/xa4/xcf/xec <CJK> +<U3609> /x8e/xa4/xcf/xed <CJK> +<U00020FC8> /x8e/xa4/xcf/xee <CJK> +<U3600> /x8e/xa4/xcf/xef <CJK> +<U00020FD5> /x8e/xa4/xcf/xf0 <CJK> +<U5675> /x8e/xa4/xcf/xf1 <CJK> +<U00020FCD> /x8e/xa4/xcf/xf2 <CJK> +<U00020FD2> /x8e/xa4/xcf/xf3 <CJK> +<U00020FFB> /x8e/xa4/xcf/xf4 <CJK> +<U0002122A> /x8e/xa4/xcf/xf5 <CJK> +<U00021488> /x8e/xa4/xcf/xf6 <CJK> +<U00021461> /x8e/xa4/xcf/xf7 <CJK> +<U3671> /x8e/xa4/xcf/xf8 <CJK> +<U00021463> /x8e/xa4/xcf/xf9 <CJK> +<U00021462> /x8e/xa4/xcf/xfa <CJK> +<U596F> /x8e/xa4/xcf/xfb <CJK> +<U00020057> /x8e/xa4/xcf/xfc <CJK> +<U000218C8> /x8e/xa4/xcf/xfd <CJK> +<U00021898> /x8e/xa4/xcf/xfe <CJK> +<U372B> /x8e/xa4/xd0/xa1 <CJK> +<U00021AC1> /x8e/xa4/xd0/xa2 <CJK> +<U00021F3F> /x8e/xa4/xd0/xa3 <CJK> +<U00021F41> /x8e/xa4/xd0/xa4 <CJK> +<U3814> /x8e/xa4/xd0/xa5 <CJK> +<U3811> /x8e/xa4/xd0/xa6 <CJK> +<U3812> /x8e/xa4/xd0/xa7 <CJK> +<U00022152> /x8e/xa4/xd0/xa8 <CJK> +<U3863> /x8e/xa4/xd0/xa9 <CJK> +<U0002215E> /x8e/xa4/xd0/xaa <CJK> +<U386E> /x8e/xa4/xd0/xab <CJK> +<U389A> /x8e/xa4/xd0/xac <CJK> +<U000222C7> /x8e/xa4/xd0/xad <CJK> +<U389B> /x8e/xa4/xd0/xae <CJK> +<U00022370> /x8e/xa4/xd0/xaf <CJK> +<U00022427> /x8e/xa4/xd0/xb0 <CJK> +<U38C8> /x8e/xa4/xd0/xb1 <CJK> +<U00022471> /x8e/xa4/xd0/xb2 <CJK> +<U000224B0> /x8e/xa4/xd0/xb3 <CJK> +<U38F6> /x8e/xa4/xd0/xb4 <CJK> +<U00022842> /x8e/xa4/xd0/xb5 <CJK> +<U00022843> /x8e/xa4/xd0/xb6 <CJK> +<U61A5> /x8e/xa4/xd0/xb7 <CJK> +<U398C> /x8e/xa4/xd0/xb8 <CJK> +<U3997> /x8e/xa4/xd0/xb9 <CJK> +<U39A2> /x8e/xa4/xd0/xba <CJK> +<U61A0> /x8e/xa4/xd0/xbb <CJK> +<U00022857> /x8e/xa4/xd0/xbc <CJK> +<U0002289D> /x8e/xa4/xd0/xbd <CJK> +<U00022D89> /x8e/xa4/xd0/xbe <CJK> +<U00022D8D> /x8e/xa4/xd0/xbf <CJK> +<U00022D8B> /x8e/xa4/xd0/xc0 <CJK> +<U00022D80> /x8e/xa4/xd0/xc1 <CJK> +<U00022D92> /x8e/xa4/xd0/xc2 <CJK> +<U00022D8A> /x8e/xa4/xd0/xc3 <CJK> +<U00022DC8> /x8e/xa4/xd0/xc4 <CJK> +<U3A54> /x8e/xa4/xd0/xc5 <CJK> +<U00022D8F> /x8e/xa4/xd0/xc6 <CJK> +<U00022D93> /x8e/xa4/xd0/xc7 <CJK> +<U00022D91> /x8e/xa4/xd0/xc8 <CJK> +<U3AA8> /x8e/xa4/xd0/xc9 <CJK> +<U00022FF2> /x8e/xa4/xd0/xca <CJK> +<U00022FDE> /x8e/xa4/xd0/xcb <CJK> +<U3AA9> /x8e/xa4/xd0/xcc <CJK> +<U000230C8> /x8e/xa4/xd0/xcd <CJK> +<U65B4> /x8e/xa4/xd0/xce <CJK> +<U65D8> /x8e/xa4/xd0/xcf <CJK> +<U66C2> /x8e/xa4/xd0/xd0 <CJK> +<U3B18> /x8e/xa4/xd0/xd1 <CJK> +<U3B17> /x8e/xa4/xd0/xd2 <CJK> +<U3B1D> /x8e/xa4/xd0/xd3 <CJK> +<U000232A7> /x8e/xa4/xd0/xd4 <CJK> +<U000232A1> /x8e/xa4/xd0/xd5 <CJK> +<U3B31> /x8e/xa4/xd0/xd6 <CJK> +<U0002368C> /x8e/xa4/xd0/xd7 <CJK> +<U0002367F> /x8e/xa4/xd0/xd8 <CJK> +<U3BD8> /x8e/xa4/xd0/xd9 <CJK> +<U3BD5> /x8e/xa4/xd0/xda <CJK> +<U0002367B> /x8e/xa4/xd0/xdb <CJK> +<U00023695> /x8e/xa4/xd0/xdc <CJK> +<U00023699> /x8e/xa4/xd0/xdd <CJK> +<U3BE1> /x8e/xa4/xd0/xde <CJK> +<U0002368E> /x8e/xa4/xd0/xdf <CJK> +<U3BD4> /x8e/xa4/xd0/xe0 <CJK> +<U000236DA> /x8e/xa4/xd0/xe1 <CJK> +<U0002368A> /x8e/xa4/xd0/xe2 <CJK> +<U0002369C> /x8e/xa4/xd0/xe3 <CJK> +<U3BE3> /x8e/xa4/xd0/xe4 <CJK> +<U0002367E> /x8e/xa4/xd0/xe5 <CJK> +<U3C44> /x8e/xa4/xd0/xe6 <CJK> +<U3C45> /x8e/xa4/xd0/xe7 <CJK> +<U0002391A> /x8e/xa4/xd0/xe8 <CJK> +<U00023A55> /x8e/xa4/xd0/xe9 <CJK> +<U3C76> /x8e/xa4/xd0/xea <CJK> +<U3C75> /x8e/xa4/xd0/xeb <CJK> +<U00023A60> /x8e/xa4/xd0/xec <CJK> +<U6BA8> /x8e/xa4/xd0/xed <CJK> +<U3C88> /x8e/xa4/xd0/xee <CJK> +<U3CAA> /x8e/xa4/xd0/xef <CJK> +<U00023BFB> /x8e/xa4/xd0/xf0 <CJK> +<U3CAB> /x8e/xa4/xd0/xf1 <CJK> +<U3CAC> /x8e/xa4/xd0/xf2 <CJK> +<U00023BFD> /x8e/xa4/xd0/xf3 <CJK> +<U3D57> /x8e/xa4/xd0/xf4 <CJK> +<U6F83> /x8e/xa4/xd0/xf5 <CJK> +<U3D60> /x8e/xa4/xd0/xf6 <CJK> +<U3D5D> /x8e/xa4/xd0/xf7 <CJK> +<U3D6B> /x8e/xa4/xd0/xf8 <CJK> +<U00023FD0> /x8e/xa4/xd0/xf9 <CJK> +<U3D63> /x8e/xa4/xd0/xfa <CJK> +<U3D67> /x8e/xa4/xd0/xfb <CJK> +<U00023FC5> /x8e/xa4/xd0/xfc <CJK> +<U3D5E> /x8e/xa4/xd0/xfd <CJK> +<U00023FD2> /x8e/xa4/xd0/xfe <CJK> +<U00024011> /x8e/xa4/xd1/xa1 <CJK> +<U6FC5> /x8e/xa4/xd1/xa2 <CJK> +<U71CD> /x8e/xa4/xd1/xa3 <CJK> +<U3DF9> /x8e/xa4/xd1/xa4 <CJK> +<U3DF3> /x8e/xa4/xd1/xa5 <CJK> +<U000243AD> /x8e/xa4/xd1/xa6 <CJK> +<U000243A4> /x8e/xa4/xd1/xa7 <CJK> +<U000243A9> /x8e/xa4/xd1/xa8 <CJK> +<U000243B0> /x8e/xa4/xd1/xa9 <CJK> +<U0002439D> /x8e/xa4/xd1/xaa <CJK> +<U3DF6> /x8e/xa4/xd1/xab <CJK> +<U00024598> /x8e/xa4/xd1/xac <CJK> +<U729C> /x8e/xa4/xd1/xad <CJK> +<U3E51> /x8e/xa4/xd1/xae <CJK> +<U3E53> /x8e/xa4/xd1/xaf <CJK> +<U3E52> /x8e/xa4/xd1/xb0 <CJK> +<U00024892> /x8e/xa4/xd1/xb1 <CJK> +<U3E9B> /x8e/xa4/xd1/xb2 <CJK> +<U0002488A> /x8e/xa4/xd1/xb3 <CJK> +<U3E9C> /x8e/xa4/xd1/xb4 <CJK> +<U0002488D> /x8e/xa4/xd1/xb5 <CJK> +<U00024896> /x8e/xa4/xd1/xb6 <CJK> +<U3EF7> /x8e/xa4/xd1/xb7 <CJK> +<U7499> /x8e/xa4/xd1/xb8 <CJK> +<U00024A45> /x8e/xa4/xd1/xbb <CJK> +<U00024A4B> /x8e/xa4/xd1/xbc <CJK> +<U00024B0F> /x8e/xa4/xd1/xbd <CJK> +<U00024B16> /x8e/xa4/xd1/xbe <CJK> +<U3F3B> /x8e/xa4/xd1/xbf <CJK> +<U00024B8A> /x8e/xa4/xd1/xc0 <CJK> +<U3F3E> /x8e/xa4/xd1/xc1 <CJK> +<U3F3D> /x8e/xa4/xd1/xc2 <CJK> +<U00024CC9> /x8e/xa4/xd1/xc3 <CJK> +<U3F69> /x8e/xa4/xd1/xc4 <CJK> +<U00024CC8> /x8e/xa4/xd1/xc5 <CJK> +<U00024CCA> /x8e/xa4/xd1/xc6 <CJK> +<U00024E64> /x8e/xa4/xd1/xc7 <CJK> +<U3FC3> /x8e/xa4/xd1/xc8 <CJK> +<U3FC4> /x8e/xa4/xd1/xc9 <CJK> +<U3FC7> /x8e/xa4/xd1/xca <CJK> +<U00024E5D> /x8e/xa4/xd1/xcb <CJK> +<U00024E63> /x8e/xa4/xd1/xcc <CJK> +<U7639> /x8e/xa4/xd1/xcd <CJK> +<U3FC6> /x8e/xa4/xd1/xce <CJK> +<U762E> /x8e/xa4/xd1/xcf <CJK> +<U3FC8> /x8e/xa4/xd1/xd0 <CJK> +<U00024E88> /x8e/xa4/xd1/xd1 <CJK> +<U00024F3A> /x8e/xa4/xd1/xd2 <CJK> +<U00024F39> /x8e/xa4/xd1/xd3 <CJK> +<U769F> /x8e/xa4/xd1/xd4 <CJK> +<U76A0> /x8e/xa4/xd1/xd5 <CJK> +<U3FE6> /x8e/xa4/xd1/xd6 <CJK> +<U3FF8> /x8e/xa4/xd1/xd7 <CJK> +<U00025017> /x8e/xa4/xd1/xd8 <CJK> +<U00025093> /x8e/xa4/xd1/xd9 <CJK> +<U4007> /x8e/xa4/xd1/xda <CJK> +<U00025095> /x8e/xa4/xd1/xdb <CJK> +<U4064> /x8e/xa4/xd1/xdc <CJK> +<U4068> /x8e/xa4/xd1/xdd <CJK> +<U00025276> /x8e/xa4/xd1/xde <CJK> +<U7794> /x8e/xa4/xd1/xdf <CJK> +<U4065> /x8e/xa4/xd1/xe0 <CJK> +<U77AE> /x8e/xa4/xd1/xe1 <CJK> +<U00025280> /x8e/xa4/xd1/xe2 <CJK> +<U0002527B> /x8e/xa4/xd1/xe3 <CJK> +<U4069> /x8e/xa4/xd1/xe4 <CJK> +<U00025248> /x8e/xa4/xd1/xe5 <CJK> +<U000252A8> /x8e/xa4/xd1/xe6 <CJK> +<U00025288> /x8e/xa4/xd1/xe7 <CJK> +<U0002538B> /x8e/xa4/xd1/xe8 <CJK> +<U0002538A> /x8e/xa4/xd1/xe9 <CJK> +<U0002538C> /x8e/xa4/xd1/xea <CJK> +<U000253FC> /x8e/xa4/xd1/xeb <CJK> +<U40DA> /x8e/xa4/xd1/xec <CJK> +<U40E0> /x8e/xa4/xd1/xed <CJK> +<U78E6> /x8e/xa4/xd1/xee <CJK> +<U00025558> /x8e/xa4/xd1/xef <CJK> +<U40DE> /x8e/xa4/xd1/xf0 <CJK> +<U00025551> /x8e/xa4/xd1/xf1 <CJK> +<U00025555> /x8e/xa4/xd1/xf2 <CJK> +<U00025553> /x8e/xa4/xd1/xf3 <CJK> +<U411C> /x8e/xa4/xd1/xf4 <CJK> +<U411D> /x8e/xa4/xd1/xf5 <CJK> +<U411A> /x8e/xa4/xd1/xf6 <CJK> +<U000256DC> /x8e/xa4/xd1/xf7 <CJK> +<U417B> /x8e/xa4/xd1/xf8 <CJK> +<U417A> /x8e/xa4/xd1/xf9 <CJK> +<U417C> /x8e/xa4/xd1/xfa <CJK> +<U0002585C> /x8e/xa4/xd1/xfb <CJK> +<U4178> /x8e/xa4/xd1/xfc <CJK> +<U4177> /x8e/xa4/xd1/xfd <CJK> +<U00025865> /x8e/xa4/xd1/xfe <CJK> +<U41B1> /x8e/xa4/xd2/xa2 <CJK> +<U000259EE> /x8e/xa4/xd2/xa3 <CJK> +<U41B2> /x8e/xa4/xd2/xa4 <CJK> +<U41B0> /x8e/xa4/xd2/xa5 <CJK> +<U000259F0> /x8e/xa4/xd2/xa6 <CJK> +<U7ABC> /x8e/xa4/xd2/xa7 <CJK> +<U000259F2> /x8e/xa4/xd2/xa8 <CJK> +<U4236> /x8e/xa4/xd2/xa9 <CJK> +<U00025C35> /x8e/xa4/xd2/xaa <CJK> +<U422E> /x8e/xa4/xd2/xab <CJK> +<U00025C22> /x8e/xa4/xd2/xac <CJK> +<U7BD6> /x8e/xa4/xd2/xad <CJK> +<U00025C20> /x8e/xa4/xd2/xae <CJK> +<U4234> /x8e/xa4/xd2/xaf <CJK> +<U00025C2D> /x8e/xa4/xd2/xb0 <CJK> +<U00025C28> /x8e/xa4/xd2/xb1 <CJK> +<U00025C26> /x8e/xa4/xd2/xb2 <CJK> +<U00025C3C> /x8e/xa4/xd2/xb3 <CJK> +<U422A> /x8e/xa4/xd2/xb4 <CJK> +<U00025C38> /x8e/xa4/xd2/xb5 <CJK> +<U4233> /x8e/xa4/xd2/xb6 <CJK> +<U422D> /x8e/xa4/xd2/xb7 <CJK> +<U422F> /x8e/xa4/xd2/xb8 <CJK> +<U4231> /x8e/xa4/xd2/xb9 <CJK> +<U422B> /x8e/xa4/xd2/xba <CJK> +<U4232> /x8e/xa4/xd2/xbb <CJK> +<U00025C2A> /x8e/xa4/xd2/xbc <CJK> +<U4235> /x8e/xa4/xd2/xbd <CJK> +<U00025C1A> /x8e/xa4/xd2/xbe <CJK> +<U00025C30> /x8e/xa4/xd2/xbf <CJK> +<U00025BE3> /x8e/xa4/xd2/xc0 <CJK> +<U00025C19> /x8e/xa4/xd2/xc1 <CJK> +<U00025EE9> /x8e/xa4/xd2/xc2 <CJK> +<U00025EE7> /x8e/xa4/xd2/xc3 <CJK> +<U7CCF> /x8e/xa4/xd2/xc4 <CJK> +<U000260D6> /x8e/xa4/xd2/xc5 <CJK> +<U000260C4> /x8e/xa4/xd2/xc6 <CJK> +<U4308> /x8e/xa4/xd2/xc7 <CJK> +<U00026087> /x8e/xa4/xd2/xc8 <CJK> +<U4306> /x8e/xa4/xd2/xc9 <CJK> +<U000260C7> /x8e/xa4/xd2/xca <CJK> +<U000260D9> /x8e/xa4/xd2/xcb <CJK> +<U7E18> /x8e/xa4/xd2/xcc <CJK> +<U000260DF> /x8e/xa4/xd2/xcd <CJK> +<U434D> /x8e/xa4/xd2/xce <CJK> +<U4361> /x8e/xa4/xd2/xcf <CJK> +<U0002630A> /x8e/xa4/xd2/xd0 <CJK> +<U00026301> /x8e/xa4/xd2/xd1 <CJK> +<U000263B1> /x8e/xa4/xd2/xd2 <CJK> +<U4378> /x8e/xa4/xd2/xd3 <CJK> +<U000263C1> /x8e/xa4/xd2/xd4 <CJK> +<U4394> /x8e/xa4/xd2/xd5 <CJK> +<U4395> /x8e/xa4/xd2/xd6 <CJK> +<U00026476> /x8e/xa4/xd2/xd7 <CJK> +<U0002650D> /x8e/xa4/xd2/xd8 <CJK> +<U0002650E> /x8e/xa4/xd2/xd9 <CJK> +<U43C1> /x8e/xa4/xd2/xda <CJK> +<U43C3> /x8e/xa4/xd2/xdb <CJK> +<U806D> /x8e/xa4/xd2/xdc <CJK> +<U00026807> /x8e/xa4/xd2/xdd <CJK> +<U4439> /x8e/xa4/xd2/xde <CJK> +<U00026809> /x8e/xa4/xd2/xdf <CJK> +<U00026816> /x8e/xa4/xd2/xe0 <CJK> +<U443A> /x8e/xa4/xd2/xe1 <CJK> +<U443B> /x8e/xa4/xd2/xe2 <CJK> +<U4435> /x8e/xa4/xd2/xe3 <CJK> +<U4436> /x8e/xa4/xd2/xe4 <CJK> +<U0002680E> /x8e/xa4/xd2/xe5 <CJK> +<U443C> /x8e/xa4/xd2/xe6 <CJK> +<U8190> /x8e/xa4/xd2/xe7 <CJK> +<U00026806> /x8e/xa4/xd2/xe8 <CJK> +<U0002691E> /x8e/xa4/xd2/xe9 <CJK> +<U0002694A> /x8e/xa4/xd2/xea <CJK> +<U4458> /x8e/xa4/xd2/xeb <CJK> +<U447C> /x8e/xa4/xd2/xec <CJK> +<U447D> /x8e/xa4/xd2/xed <CJK> +<U448D> /x8e/xa4/xd2/xee <CJK> +<U448C> /x8e/xa4/xd2/xef <CJK> +<U00026EA6> /x8e/xa4/xd2/xf0 <CJK> +<U00026E91> /x8e/xa4/xd2/xf1 <CJK> +<U453B> /x8e/xa4/xd2/xf2 <CJK> +<U453F> /x8e/xa4/xd2/xf3 <CJK> +<U00026EB8> /x8e/xa4/xd2/xf4 <CJK> +<U00026E96> /x8e/xa4/xd2/xf5 <CJK> +<U4532> /x8e/xa4/xd2/xf6 <CJK> +<U452D> /x8e/xa4/xd2/xf7 <CJK> +<U00026EC5> /x8e/xa4/xd2/xf8 <CJK> +<U452F> /x8e/xa4/xd2/xf9 <CJK> +<U4539> /x8e/xa4/xd2/xfa <CJK> +<U452E> /x8e/xa4/xd2/xfb <CJK> +<U453A> /x8e/xa4/xd2/xfc <CJK> +<U00026F0A> /x8e/xa4/xd2/xfd <CJK> +<U4536> /x8e/xa4/xd2/xfe <CJK> +<U4531> /x8e/xa4/xd3/xa1 <CJK> +<U453E> /x8e/xa4/xd3/xa2 <CJK> +<U4538> /x8e/xa4/xd3/xa3 <CJK> +<U8552> /x8e/xa4/xd3/xa4 <CJK> +<U4534> /x8e/xa4/xd3/xa5 <CJK> +<U00026EB2> /x8e/xa4/xd3/xa6 <CJK> +<U4541> /x8e/xa4/xd3/xa7 <CJK> +<U00026EB7> /x8e/xa4/xd3/xa8 <CJK> +<U00026EB4> /x8e/xa4/xd3/xa9 <CJK> +<U00026E89> /x8e/xa4/xd3/xaa <CJK> +<U00026E8D> /x8e/xa4/xd3/xab <CJK> +<U4530> /x8e/xa4/xd3/xac <CJK> +<U00026E87> /x8e/xa4/xd3/xad <CJK> +<U00026EC2> /x8e/xa4/xd3/xae <CJK> +<U00026E9C> /x8e/xa4/xd3/xaf <CJK> +<U00026E92> /x8e/xa4/xd3/xb0 <CJK> +<U4543> /x8e/xa4/xd3/xb1 <CJK> +<U00026ECA> /x8e/xa4/xd3/xb2 <CJK> +<U8550> /x8e/xa4/xd3/xb3 <CJK> +<U00026E8A> /x8e/xa4/xd3/xb4 <CJK> +<U000271E0> /x8e/xa4/xd3/xb5 <CJK> +<U4598> /x8e/xa4/xd3/xb6 <CJK> +<U000271E6> /x8e/xa4/xd3/xb7 <CJK> +<U000271E5> /x8e/xa4/xd3/xb8 <CJK> +<U87A0> /x8e/xa4/xd3/xb9 <CJK> +<U000273A5> /x8e/xa4/xd3/xba <CJK> +<U000273B3> /x8e/xa4/xd3/xbb <CJK> +<U8786> /x8e/xa4/xd3/xbc <CJK> +<U45DA> /x8e/xa4/xd3/xbd <CJK> +<U45D7> /x8e/xa4/xd3/xbe <CJK> +<U000273B5> /x8e/xa4/xd3/xbf <CJK> +<U000273AF> /x8e/xa4/xd3/xc0 <CJK> +<U8795> /x8e/xa4/xd3/xc1 <CJK> +<U000273B0> /x8e/xa4/xd3/xc2 <CJK> +<U000273CC> /x8e/xa4/xd3/xc3 <CJK> +<U878C> /x8e/xa4/xd3/xc4 <CJK> +<U000273A2> /x8e/xa4/xd3/xc5 <CJK> +<U000273BE> /x8e/xa4/xd3/xc6 <CJK> +<U000273C6> /x8e/xa4/xd3/xc7 <CJK> +<U000273AC> /x8e/xa4/xd3/xc8 <CJK> +<U000273AE> /x8e/xa4/xd3/xc9 <CJK> +<U4618> /x8e/xa4/xd3/xca <CJK> +<U8860> /x8e/xa4/xd3/xcb <CJK> +<U00027708> /x8e/xa4/xd3/xcd <CJK> +<U00027705> /x8e/xa4/xd3/xce <CJK> +<U4652> /x8e/xa4/xd3/xcf <CJK> +<U8928> /x8e/xa4/xd3/xd0 <CJK> +<U000276FE> /x8e/xa4/xd3/xd1 <CJK> +<U464E> /x8e/xa4/xd3/xd2 <CJK> +<U8920> /x8e/xa4/xd3/xd3 <CJK> +<U00027700> /x8e/xa4/xd3/xd4 <CJK> +<U464F> /x8e/xa4/xd3/xd5 <CJK> +<U4650> /x8e/xa4/xd3/xd6 <CJK> +<U00027864> /x8e/xa4/xd3/xd7 <CJK> +<U00027868> /x8e/xa4/xd3/xd8 <CJK> +<U89A8> /x8e/xa4/xd3/xd9 <CJK> +<U4686> /x8e/xa4/xd3/xda <CJK> +<U4687> /x8e/xa4/xd3/xdb <CJK> +<U4689> /x8e/xa4/xd3/xdc <CJK> +<U0002786A> /x8e/xa4/xd3/xdd <CJK> +<U00027869> /x8e/xa4/xd3/xde <CJK> +<U0002790D> /x8e/xa4/xd3/xdf <CJK> +<U00027912> /x8e/xa4/xd3/xe0 <CJK> +<U46A2> /x8e/xa4/xd3/xe1 <CJK> +<U46A3> /x8e/xa4/xd3/xe2 <CJK> +<U0002790F> /x8e/xa4/xd3/xe3 <CJK> +<U46A1> /x8e/xa4/xd3/xe4 <CJK> +<U00027A67> /x8e/xa4/xd3/xe5 <CJK> +<U00027A79> /x8e/xa4/xd3/xe6 <CJK> +<U00027A72> /x8e/xa4/xd3/xe7 <CJK> +<U00027A66> /x8e/xa4/xd3/xe8 <CJK> +<U00027A7C> /x8e/xa4/xd3/xe9 <CJK> +<U46F9> /x8e/xa4/xd3/xea <CJK> +<U46FD> /x8e/xa4/xd3/xeb <CJK> +<U00027A68> /x8e/xa4/xd3/xec <CJK> +<U00027A85> /x8e/xa4/xd3/xed <CJK> +<U00027A76> /x8e/xa4/xd3/xee <CJK> +<U00027A74> /x8e/xa4/xd3/xef <CJK> +<U00027A71> /x8e/xa4/xd3/xf0 <CJK> +<U00027A64> /x8e/xa4/xd3/xf1 <CJK> +<U473E> /x8e/xa4/xd3/xf2 <CJK> +<U473C> /x8e/xa4/xd3/xf3 <CJK> +<U00027BF8> /x8e/xa4/xd3/xf4 <CJK> +<U474D> /x8e/xa4/xd3/xf5 <CJK> +<U00027C6C> /x8e/xa4/xd3/xf6 <CJK> +<U474E> /x8e/xa4/xd3/xf7 <CJK> +<U00027CEB> /x8e/xa4/xd3/xf8 <CJK> +<U4781> /x8e/xa4/xd3/xf9 <CJK> +<U4783> /x8e/xa4/xd3/xfa <CJK> +<U4782> /x8e/xa4/xd3/xfb <CJK> +<U00027DB8> /x8e/xa4/xd3/xfc <CJK> +<U4780> /x8e/xa4/xd3/xfd <CJK> +<U4788> /x8e/xa4/xd3/xfe <CJK> +<U00027F2D> /x8e/xa4/xd4/xa1 <CJK> +<U00027F2E> /x8e/xa4/xd4/xa2 <CJK> +<U00027F28> /x8e/xa4/xd4/xa3 <CJK> +<U00027F29> /x8e/xa4/xd4/xa4 <CJK> +<U00027F31> /x8e/xa4/xd4/xa5 <CJK> +<U47B9> /x8e/xa4/xd4/xa6 <CJK> +<U00027F2F> /x8e/xa4/xd4/xa7 <CJK> +<U00027F2A> /x8e/xa4/xd4/xa8 <CJK> +<U8E3A> /x8e/xa4/xd4/xa9 <CJK> +<U000280A4> /x8e/xa4/xd4/xaa <CJK> +<U000280B7> /x8e/xa4/xd4/xab <CJK> +<U000280BF> /x8e/xa4/xd4/xac <CJK> +<U4811> /x8e/xa4/xd4/xad <CJK> +<U480D> /x8e/xa4/xd4/xae <CJK> +<U4810> /x8e/xa4/xd4/xaf <CJK> +<U4813> /x8e/xa4/xd4/xb0 <CJK> +<U00028263> /x8e/xa4/xd4/xb1 <CJK> +<U483C> /x8e/xa4/xd4/xb2 <CJK> +<U4862> /x8e/xa4/xd4/xb3 <CJK> +<U4863> /x8e/xa4/xd4/xb4 <CJK> +<U00028367> /x8e/xa4/xd4/xb5 <CJK> +<U000285BE> /x8e/xa4/xd4/xb6 <CJK> +<U00028795> /x8e/xa4/xd4/xb8 <CJK> +<U0002879C> /x8e/xa4/xd4/xb9 <CJK> +<U4903> /x8e/xa4/xd4/xba <CJK> +<U4906> /x8e/xa4/xd4/xbb <CJK> +<U4902> /x8e/xa4/xd4/xbc <CJK> +<U4901> /x8e/xa4/xd4/xbd <CJK> +<U00028871> /x8e/xa4/xd4/xbe <CJK> +<U00028872> /x8e/xa4/xd4/xbf <CJK> +<U4905> /x8e/xa4/xd4/xc0 <CJK> +<U0002886F> /x8e/xa4/xd4/xc1 <CJK> +<U9194> /x8e/xa4/xd4/xc2 <CJK> +<U9311> /x8e/xa4/xd4/xc3 <CJK> +<U000289F1> /x8e/xa4/xd4/xc4 <CJK> +<U9337> /x8e/xa4/xd4/xc5 <CJK> +<U4936> /x8e/xa4/xd4/xc6 <CJK> +<U000289E8> /x8e/xa4/xd4/xc7 <CJK> +<U4935> /x8e/xa4/xd4/xc8 <CJK> +<U9343> /x8e/xa4/xd4/xc9 <CJK> +<U49A1> /x8e/xa4/xd4/xcb <CJK> +<U49A3> /x8e/xa4/xd4/xcc <CJK> +<U00028D49> /x8e/xa4/xd4/xcd <CJK> +<U00028D64> /x8e/xa4/xd4/xce <CJK> +<U49A0> /x8e/xa4/xd4/xcf <CJK> +<U00028D48> /x8e/xa4/xd4/xd0 <CJK> +<U49EA> /x8e/xa4/xd4/xd1 <CJK> +<U96A6> /x8e/xa4/xd4/xd2 <CJK> +<U49E8> /x8e/xa4/xd4/xd3 <CJK> +<U00028F2C> /x8e/xa4/xd4/xd4 <CJK> +<U00028FE1> /x8e/xa4/xd4/xd5 <CJK> +<U00028FEF> /x8e/xa4/xd4/xd6 <CJK> +<U000290C0> /x8e/xa4/xd4/xd7 <CJK> +<U4A21> /x8e/xa4/xd4/xd8 <CJK> +<U4A1B> /x8e/xa4/xd4/xd9 <CJK> +<U000290D7> /x8e/xa4/xd4/xda <CJK> +<U000290D4> /x8e/xa4/xd4/xdb <CJK> +<U4A49> /x8e/xa4/xd4/xdc <CJK> +<U4A48> /x8e/xa4/xd4/xdd <CJK> +<U000292AD> /x8e/xa4/xd4/xde <CJK> +<U9795> /x8e/xa4/xd4/xdf <CJK> +<U4A62> /x8e/xa4/xd4/xe0 <CJK> +<U4A61> /x8e/xa4/xd4/xe1 <CJK> +<U4A64> /x8e/xa4/xd4/xe2 <CJK> +<U4A60> /x8e/xa4/xd4/xe3 <CJK> +<U4A63> /x8e/xa4/xd4/xe4 <CJK> +<U000292AE> /x8e/xa4/xd4/xe5 <CJK> +<U000292AC> /x8e/xa4/xd4/xe6 <CJK> +<U9796> /x8e/xa4/xd4/xe7 <CJK> +<U4A66> /x8e/xa4/xd4/xe8 <CJK> +<U4AAC> /x8e/xa4/xd4/xe9 <CJK> +<U4AAB> /x8e/xa4/xd4/xea <CJK> +<U00029427> /x8e/xa4/xd4/xeb <CJK> +<U000294AE> /x8e/xa4/xd4/xec <CJK> +<U4AC3> /x8e/xa4/xd4/xed <CJK> +<U000294B0> /x8e/xa4/xd4/xee <CJK> +<U4AC4> /x8e/xa4/xd4/xef <CJK> +<U9825> /x8e/xa4/xd4/xf0 <CJK> +<U000294C0> /x8e/xa4/xd4/xf1 <CJK> +<U000294C4> /x8e/xa4/xd4/xf2 <CJK> +<U4B08> /x8e/xa4/xd4/xf3 <CJK> +<U4B09> /x8e/xa4/xd4/xf4 <CJK> +<U4B0A> /x8e/xa4/xd4/xf5 <CJK> +<U4B06> /x8e/xa4/xd4/xf6 <CJK> +<U4B07> /x8e/xa4/xd4/xf7 <CJK> +<U4B41> /x8e/xa4/xd4/xf8 <CJK> +<U00029707> /x8e/xa4/xd4/xf9 <CJK> +<U4B45> /x8e/xa4/xd4/xfa <CJK> +<U000296FD> /x8e/xa4/xd4/xfb <CJK> +<U4B43> /x8e/xa4/xd4/xfc <CJK> +<U4B44> /x8e/xa4/xd4/xfd <CJK> +<U9926> /x8e/xa4/xd4/xfe <CJK> +<U9934> /x8e/xa4/xd5/xa1 <CJK> +<U4B47> /x8e/xa4/xd5/xa2 <CJK> +<U0002981B> /x8e/xa4/xd5/xa4 <CJK> +<U0002981C> /x8e/xa4/xd5/xa5 <CJK> +<U4B71> /x8e/xa4/xd5/xa6 <CJK> +<U000298B2> /x8e/xa4/xd5/xa7 <CJK> +<U000298B4> /x8e/xa4/xd5/xa8 <CJK> +<U000298B7> /x8e/xa4/xd5/xa9 <CJK> +<U000298B1> /x8e/xa4/xd5/xaa <CJK> +<U000298B3> /x8e/xa4/xd5/xab <CJK> +<U000298AE> /x8e/xa4/xd5/xac <CJK> +<U4B8B> /x8e/xa4/xd5/xad <CJK> +<U4BD4> /x8e/xa4/xd5/xae <CJK> +<U4BD3> /x8e/xa4/xd5/xaf <CJK> +<U4BD1> /x8e/xa4/xd5/xb0 <CJK> +<U9ABA> /x8e/xa4/xd5/xb1 <CJK> +<U4BD2> /x8e/xa4/xd5/xb2 <CJK> +<U00029A3F> /x8e/xa4/xd5/xb3 <CJK> +<U00029B36> /x8e/xa4/xd5/xb4 <CJK> +<U4BF7> /x8e/xa4/xd5/xb5 <CJK> +<U4BF8> /x8e/xa4/xd5/xb6 <CJK> +<U00029B31> /x8e/xa4/xd5/xb7 <CJK> +<U00029B3B> /x8e/xa4/xd5/xb8 <CJK> +<U00029B35> /x8e/xa4/xd5/xb9 <CJK> +<U00029B3A> /x8e/xa4/xd5/xba <CJK> +<U00029B37> /x8e/xa4/xd5/xbb <CJK> +<U00029C22> /x8e/xa4/xd5/xbc <CJK> +<U00029C36> /x8e/xa4/xd5/xbd <CJK> +<U00029C32> /x8e/xa4/xd5/xbe <CJK> +<U4C22> /x8e/xa4/xd5/xbf <CJK> +<U00029CC0> /x8e/xa4/xd5/xc0 <CJK> +<U4C45> /x8e/xa4/xd5/xc1 <CJK> +<U4C41> /x8e/xa4/xd5/xc2 <CJK> +<U9B81> /x8e/xa4/xd5/xc3 <CJK> +<U4C40> /x8e/xa4/xd5/xc4 <CJK> +<U9B8A> /x8e/xa4/xd5/xc5 <CJK> +<U00029D85> /x8e/xa4/xd5/xc6 <CJK> +<U9B7F> /x8e/xa4/xd5/xc7 <CJK> +<U4C42> /x8e/xa4/xd5/xc8 <CJK> +<U00029D89> /x8e/xa4/xd5/xc9 <CJK> +<U4CC1> /x8e/xa4/xd5/xca <CJK> +<U4CC5> /x8e/xa4/xd5/xcb <CJK> +<U00029FE1> /x8e/xa4/xd5/xcc <CJK> +<U4CBB> /x8e/xa4/xd5/xcd <CJK> +<U4CB9> /x8e/xa4/xd5/xce <CJK> +<U4CBD> /x8e/xa4/xd5/xcf <CJK> +<U4CC9> /x8e/xa4/xd5/xd0 <CJK> +<U0002A00A> /x8e/xa4/xd5/xd1 <CJK> +<U9D11> /x8e/xa4/xd5/xd2 <CJK> +<U0002A009> /x8e/xa4/xd5/xd3 <CJK> +<U4CBF> /x8e/xa4/xd5/xd4 <CJK> +<U4CC7> /x8e/xa4/xd5/xd5 <CJK> +<U00029FE8> /x8e/xa4/xd5/xd6 <CJK> +<U4CC3> /x8e/xa4/xd5/xd7 <CJK> +<U4D24> /x8e/xa4/xd5/xd8 <CJK> +<U4D31> /x8e/xa4/xd5/xd9 <CJK> +<U4D33> /x8e/xa4/xd5/xda <CJK> +<U0002A318> /x8e/xa4/xd5/xdb <CJK> +<U4D32> /x8e/xa4/xd5/xdc <CJK> +<U4D34> /x8e/xa4/xd5/xdd <CJK> +<U4D52> /x8e/xa4/xd5/xde <CJK> +<U4D61> /x8e/xa4/xd5/xdf <CJK> +<U9ED9> /x8e/xa4/xd5/xe0 <CJK> +<U4D7A> /x8e/xa4/xd5/xe1 <CJK> +<U4D82> /x8e/xa4/xd5/xe2 <CJK> +<U9F3C> /x8e/xa4/xd5/xe3 <CJK> +<U0002A5C5> /x8e/xa4/xd5/xe4 <CJK> +<U5123> /x8e/xa4/xd5/xe5 <CJK> +<U0002040D> /x8e/xa4/xd5/xe6 <CJK> +<U0002040C> /x8e/xa4/xd5/xe7 <CJK> +<U00020421> /x8e/xa4/xd5/xe8 <CJK> +<U512C> /x8e/xa4/xd5/xe9 <CJK> +<U00020616> /x8e/xa4/xd5/xea <CJK> +<U0002080E> /x8e/xa4/xd5/xeb <CJK> +<U350F> /x8e/xa4/xd5/xec <CJK> +<U5295> /x8e/xa4/xd5/xed <CJK> +<U00020817> /x8e/xa4/xd5/xee <CJK> +<U3523> /x8e/xa4/xd5/xef <CJK> +<U3525> /x8e/xa4/xd5/xf0 <CJK> +<U00021048> /x8e/xa4/xd5/xf1 <CJK> +<U3606> /x8e/xa4/xd5/xf2 <CJK> +<U3608> /x8e/xa4/xd5/xf3 <CJK> +<U5688> /x8e/xa4/xd5/xf4 <CJK> +<U00021055> /x8e/xa4/xd5/xf5 <CJK> +<U00021049> /x8e/xa4/xd5/xf6 <CJK> +<U0002104C> /x8e/xa4/xd5/xf7 <CJK> +<U568B> /x8e/xa4/xd5/xf8 <CJK> +<U0002104F> /x8e/xa4/xd5/xf9 <CJK> +<U0002103D> /x8e/xa4/xd5/xfa <CJK> +<U367A> /x8e/xa4/xd5/xfb <CJK> +<U3677> /x8e/xa4/xd5/xfc <CJK> +<U0002148A> /x8e/xa4/xd5/xfd <CJK> +<U000214A8> /x8e/xa4/xd5/xfe <CJK> +<U0002168A> /x8e/xa4/xd6/xa1 <CJK> +<U372E> /x8e/xa4/xd6/xa2 <CJK> +<U000218CB> /x8e/xa4/xd6/xa3 <CJK> +<U372F> /x8e/xa4/xd6/xa4 <CJK> +<U000218D5> /x8e/xa4/xd6/xa5 <CJK> +<U000221D4> /x8e/xa4/xd6/xa6 <CJK> +<U381B> /x8e/xa4/xd6/xa7 <CJK> +<U3813> /x8e/xa4/xd6/xa8 <CJK> +<U00021F5C> /x8e/xa4/xd6/xa9 <CJK> +<U00021F75> /x8e/xa4/xd6/xaa <CJK> +<U3866> /x8e/xa4/xd6/xab <CJK> +<U00022161> /x8e/xa4/xd6/xac <CJK> +<U3865> /x8e/xa4/xd6/xad <CJK> +<U00021696> /x8e/xa4/xd6/xae <CJK> +<U38F7> /x8e/xa4/xd6/xaf <CJK> +<U0002258A> /x8e/xa4/xd6/xb0 <CJK> +<U000228D0> /x8e/xa4/xd6/xb1 <CJK> +<U61E1> /x8e/xa4/xd6/xb2 <CJK> +<U61D7> /x8e/xa4/xd6/xb3 <CJK> +<U00022849> /x8e/xa4/xd6/xb4 <CJK> +<U000228CF> /x8e/xa4/xd6/xb5 <CJK> +<U399C> /x8e/xa4/xd6/xb6 <CJK> +<U00022DD6> /x8e/xa4/xd6/xb7 <CJK> +<U00022D7F> /x8e/xa4/xd6/xb8 <CJK> +<U3A53> /x8e/xa4/xd6/xb9 <CJK> +<U00022DD2> /x8e/xa4/xd6/xba <CJK> +<U00022DCF> /x8e/xa4/xd6/xbb <CJK> +<U00023006> /x8e/xa4/xd6/xbc <CJK> +<U00023009> /x8e/xa4/xd6/xbd <CJK> +<U3ABA> /x8e/xa4/xd6/xbe <CJK> +<U65A3> /x8e/xa4/xd6/xbf <CJK> +<U3B22> /x8e/xa4/xd6/xc0 <CJK> +<U66D3> /x8e/xa4/xd6/xc1 <CJK> +<U00023706> /x8e/xa4/xd6/xc2 <CJK> +<U000236F1> /x8e/xa4/xd6/xc3 <CJK> +<U00023704> /x8e/xa4/xd6/xc4 <CJK> +<U6A8B> /x8e/xa4/xd6/xc5 <CJK> +<U000236FA> /x8e/xa4/xd6/xc6 <CJK> +<U000236F4> /x8e/xa4/xd6/xc7 <CJK> +<U3BEB> /x8e/xa4/xd6/xc8 <CJK> +<U3BDD> /x8e/xa4/xd6/xc9 <CJK> +<U000236F9> /x8e/xa4/xd6/xca <CJK> +<U3BEF> /x8e/xa4/xd6/xcb <CJK> +<U0002368B> /x8e/xa4/xd6/xcc <CJK> +<U00023703> /x8e/xa4/xd6/xcd <CJK> +<U3C47> /x8e/xa4/xd6/xce <CJK> +<U3C46> /x8e/xa4/xd6/xcf <CJK> +<U000239A2> /x8e/xa4/xd6/xd0 <CJK> +<U3C78> /x8e/xa4/xd6/xd1 <CJK> +<U6BAC> /x8e/xa4/xd6/xd2 <CJK> +<U3C89> /x8e/xa4/xd6/xd3 <CJK> +<U00023C0C> /x8e/xa4/xd6/xd4 <CJK> +<U00023C0B> /x8e/xa4/xd6/xd5 <CJK> +<U3D68> /x8e/xa4/xd6/xd6 <CJK> +<U3D76> /x8e/xa4/xd6/xd7 <CJK> +<U3D74> /x8e/xa4/xd6/xd8 <CJK> +<U3D79> /x8e/xa4/xd6/xd9 <CJK> +<U00024024> /x8e/xa4/xd6/xda <CJK> +<U3D7A> /x8e/xa4/xd6/xdb <CJK> +<U3D77> /x8e/xa4/xd6/xdc <CJK> +<U3D71> /x8e/xa4/xd6/xde <CJK> +<U00024025> /x8e/xa4/xd6/xdf <CJK> +<U3D72> /x8e/xa4/xd6/xe0 <CJK> +<U000243F6> /x8e/xa4/xd6/xe1 <CJK> +<U3DFF> /x8e/xa4/xd6/xe2 <CJK> +<U000243FB> /x8e/xa4/xd6/xe3 <CJK> +<U3E05> /x8e/xa4/xd6/xe4 <CJK> +<U00024532> /x8e/xa4/xd6/xe5 <CJK> +<U000245FB> /x8e/xa4/xd6/xe6 <CJK> +<U3E54> /x8e/xa4/xd6/xe7 <CJK> +<U000246F2> /x8e/xa4/xd6/xe8 <CJK> +<U000246F3> /x8e/xa4/xd6/xe9 <CJK> +<U3E9E> /x8e/xa4/xd6/xea <CJK> +<U3E9F> /x8e/xa4/xd6/xeb <CJK> +<U7374> /x8e/xa4/xd6/xec <CJK> +<U0002489C> /x8e/xa4/xd6/xed <CJK> +<U00024A72> /x8e/xa4/xd6/xee <CJK> +<U3EFA> /x8e/xa4/xd6/xef <CJK> +<U00024A74> /x8e/xa4/xd6/xf0 <CJK> +<U3F44> /x8e/xa4/xd6/xf1 <CJK> +<U3F3F> /x8e/xa4/xd6/xf2 <CJK> +<U3F40> /x8e/xa4/xd6/xf3 <CJK> +<U00024B86> /x8e/xa4/xd6/xf4 <CJK> +<U3F42> /x8e/xa4/xd6/xf5 <CJK> +<U00024B8E> /x8e/xa4/xd6/xf6 <CJK> +<U00024B90> /x8e/xa4/xd6/xf7 <CJK> +<U3F51> /x8e/xa4/xd6/xf8 <CJK> +<U00024BCD> /x8e/xa4/xd6/xf9 <CJK> +<U00024BF7> /x8e/xa4/xd6/xfa <CJK> +<U00024CD6> /x8e/xa4/xd6/xfb <CJK> +<U00024E84> /x8e/xa4/xd6/xfc <CJK> +<U00024E95> /x8e/xa4/xd6/xfd <CJK> +<U00024E8A> /x8e/xa4/xd6/xfe <CJK> +<U7640> /x8e/xa4/xd7/xa1 <CJK> +<U3FCA> /x8e/xa4/xd7/xa2 <CJK> +<U00024E97> /x8e/xa4/xd7/xa3 <CJK> +<U7641> /x8e/xa4/xd7/xa4 <CJK> +<U3FCE> /x8e/xa4/xd7/xa5 <CJK> +<U3FC9> /x8e/xa4/xd7/xa6 <CJK> +<U00024FA0> /x8e/xa4/xd7/xa7 <CJK> +<U00024FA1> /x8e/xa4/xd7/xa8 <CJK> +<U00025022> /x8e/xa4/xd7/xa9 <CJK> +<U000250A6> /x8e/xa4/xd7/xaa <CJK> +<U000250A4> /x8e/xa4/xd7/xab <CJK> +<U4009> /x8e/xa4/xd7/xac <CJK> +<U76E8> /x8e/xa4/xd7/xad <CJK> +<U406C> /x8e/xa4/xd7/xae <CJK> +<U406E> /x8e/xa4/xd7/xaf <CJK> +<U4070> /x8e/xa4/xd7/xb0 <CJK> +<U406D> /x8e/xa4/xd7/xb1 <CJK> +<U406B> /x8e/xa4/xd7/xb2 <CJK> +<U4071> /x8e/xa4/xd7/xb3 <CJK> +<U4072> /x8e/xa4/xd7/xb4 <CJK> +<U000252AF> /x8e/xa4/xd7/xb5 <CJK> +<U000252B0> /x8e/xa4/xd7/xb6 <CJK> +<U000252BD> /x8e/xa4/xd7/xb7 <CJK> +<U408C> /x8e/xa4/xd7/xb8 <CJK> +<U40E4> /x8e/xa4/xd7/xb9 <CJK> +<U00025576> /x8e/xa4/xd7/xba <CJK> +<U40E1> /x8e/xa4/xd7/xbb <CJK> +<U0002557B> /x8e/xa4/xd7/xbc <CJK> +<U00025579> /x8e/xa4/xd7/xbd <CJK> +<U78F6> /x8e/xa4/xd7/xbe <CJK> +<U40E7> /x8e/xa4/xd7/xbf <CJK> +<U7900> /x8e/xa4/xd7/xc0 <CJK> +<U40E2> /x8e/xa4/xd7/xc1 <CJK> +<U411F> /x8e/xa4/xd7/xc2 <CJK> +<U000256EE> /x8e/xa4/xd7/xc3 <CJK> +<U000256F1> /x8e/xa4/xd7/xc4 <CJK> +<U417E> /x8e/xa4/xd7/xc5 <CJK> +<U00025894> /x8e/xa4/xd7/xc6 <CJK> +<U4180> /x8e/xa4/xd7/xc7 <CJK> +<U7A59> /x8e/xa4/xd7/xc8 <CJK> +<U7A55> /x8e/xa4/xd7/xc9 <CJK> +<U00025891> /x8e/xa4/xd7/xca <CJK> +<U41B9> /x8e/xa4/xd7/xcb <CJK> +<U41B7> /x8e/xa4/xd7/xcc <CJK> +<U41B8> /x8e/xa4/xd7/xcd <CJK> +<U00025A10> /x8e/xa4/xd7/xce <CJK> +<U41BA> /x8e/xa4/xd7/xcf <CJK> +<U7AF4> /x8e/xa4/xd7/xd0 <CJK> +<U00025AAF> /x8e/xa4/xd7/xd1 <CJK> +<U41D3> /x8e/xa4/xd7/xd2 <CJK> +<U423F> /x8e/xa4/xd7/xd3 <CJK> +<U7C04> /x8e/xa4/xd7/xd4 <CJK> +<U4245> /x8e/xa4/xd7/xd5 <CJK> +<U4241> /x8e/xa4/xd7/xd6 <CJK> +<U7C15> /x8e/xa4/xd7/xd7 <CJK> +<U4242> /x8e/xa4/xd7/xd8 <CJK> +<U4243> /x8e/xa4/xd7/xd9 <CJK> +<U423B> /x8e/xa4/xd7/xda <CJK> +<U4238> /x8e/xa4/xd7/xdb <CJK> +<U00025C7B> /x8e/xa4/xd7/xdc <CJK> +<U00025C77> /x8e/xa4/xd7/xdd <CJK> +<U423A> /x8e/xa4/xd7/xde <CJK> +<U7BF5> /x8e/xa4/xd7/xdf <CJK> +<U00025C80> /x8e/xa4/xd7/xe0 <CJK> +<U00025CC6> /x8e/xa4/xd7/xe1 <CJK> +<U423C> /x8e/xa4/xd7/xe2 <CJK> +<U00025C7C> /x8e/xa4/xd7/xe3 <CJK> +<U00025C90> /x8e/xa4/xd7/xe4 <CJK> +<U423E> /x8e/xa4/xd7/xe5 <CJK> +<U00025CA3> /x8e/xa4/xd7/xe6 <CJK> +<U00025C7D> /x8e/xa4/xd7/xe7 <CJK> +<U00025CBD> /x8e/xa4/xd7/xe8 <CJK> +<U429E> /x8e/xa4/xd7/xe9 <CJK> +<U429F> /x8e/xa4/xd7/xea <CJK> +<U42A1> /x8e/xa4/xd7/xeb <CJK> +<U00025F13> /x8e/xa4/xd7/xec <CJK> +<U429B> /x8e/xa4/xd7/xed <CJK> +<U4312> /x8e/xa4/xd7/xee <CJK> +<U00026111> /x8e/xa4/xd7/xef <CJK> +<U00026144> /x8e/xa4/xd7/xf0 <CJK> +<U0002610D> /x8e/xa4/xd7/xf1 <CJK> +<U4318> /x8e/xa4/xd7/xf2 <CJK> +<U430C> /x8e/xa4/xd7/xf3 <CJK> +<U00026314> /x8e/xa4/xd7/xf4 <CJK> +<U4362> /x8e/xa4/xd7/xf5 <CJK> +<U000263B8> /x8e/xa4/xd7/xf6 <CJK> +<U437A> /x8e/xa4/xd7/xf7 <CJK> +<U000263B7> /x8e/xa4/xd7/xf8 <CJK> +<U00026483> /x8e/xa4/xd7/xf9 <CJK> +<U43AE> /x8e/xa4/xd7/xfa <CJK> +<U43AF> /x8e/xa4/xd7/xfb <CJK> +<U00026514> /x8e/xa4/xd7/xfc <CJK> +<U43AD> /x8e/xa4/xd7/xfd <CJK> +<U0002651C> /x8e/xa4/xd7/xfe <CJK> +<U43C4> /x8e/xa4/xd8/xa1 <CJK> +<U43C7> /x8e/xa4/xd8/xa2 <CJK> +<U43C6> /x8e/xa4/xd8/xa3 <CJK> +<U43C5> /x8e/xa4/xd8/xa4 <CJK> +<U000265D4> /x8e/xa4/xd8/xa5 <CJK> +<U000265D5> /x8e/xa4/xd8/xa6 <CJK> +<U81C1> /x8e/xa4/xd8/xa7 <CJK> +<U4440> /x8e/xa4/xd8/xa8 <CJK> +<U00026843> /x8e/xa4/xd8/xa9 <CJK> +<U00026842> /x8e/xa4/xd8/xaa <CJK> +<U443F> /x8e/xa4/xd8/xab <CJK> +<U4441> /x8e/xa4/xd8/xac <CJK> +<U00026841> /x8e/xa4/xd8/xae <CJK> +<U0002694E> /x8e/xa4/xd8/xaf <CJK> +<U447F> /x8e/xa4/xd8/xb0 <CJK> +<U00026A87> /x8e/xa4/xd8/xb1 <CJK> +<U4486> /x8e/xa4/xd8/xb2 <CJK> +<U4481> /x8e/xa4/xd8/xb3 <CJK> +<U4480> /x8e/xa4/xd8/xb4 <CJK> +<U448E> /x8e/xa4/xd8/xb5 <CJK> +<U454A> /x8e/xa4/xd8/xb6 <CJK> +<U00026F39> /x8e/xa4/xd8/xb7 <CJK> +<U4547> /x8e/xa4/xd8/xb8 <CJK> +<U00026F8F> /x8e/xa4/xd8/xb9 <CJK> +<U00026F2A> /x8e/xa4/xd8/xba <CJK> +<U454B> /x8e/xa4/xd8/xbb <CJK> +<U4546> /x8e/xa4/xd8/xbc <CJK> +<U454E> /x8e/xa4/xd8/xbd <CJK> +<U857D> /x8e/xa4/xd8/xbe <CJK> +<U00026F2B> /x8e/xa4/xd8/xbf <CJK> +<U85A5> /x8e/xa4/xd8/xc0 <CJK> +<U00026F50> /x8e/xa4/xd8/xc1 <CJK> +<U4548> /x8e/xa4/xd8/xc2 <CJK> +<U00026F6E> /x8e/xa4/xd8/xc3 <CJK> +<U4545> /x8e/xa4/xd8/xc4 <CJK> +<U00026F3B> /x8e/xa4/xd8/xc5 <CJK> +<U00026F53> /x8e/xa4/xd8/xc6 <CJK> +<U00026F5F> /x8e/xa4/xd8/xc7 <CJK> +<U00026F2F> /x8e/xa4/xd8/xc8 <CJK> +<U00026F30> /x8e/xa4/xd8/xc9 <CJK> +<U00026F38> /x8e/xa4/xd8/xca <CJK> +<U00026F4C> /x8e/xa4/xd8/xcb <CJK> +<U000271F1> /x8e/xa4/xd8/xcc <CJK> +<U45DB> /x8e/xa4/xd8/xcd <CJK> +<U45E7> /x8e/xa4/xd8/xce <CJK> +<U45E4> /x8e/xa4/xd8/xcf <CJK> +<U00027407> /x8e/xa4/xd8/xd0 <CJK> +<U00027416> /x8e/xa4/xd8/xd1 <CJK> +<U45E1> /x8e/xa4/xd8/xd2 <CJK> +<U00027414> /x8e/xa4/xd8/xd3 <CJK> +<U45E9> /x8e/xa4/xd8/xd4 <CJK> +<U000273FB> /x8e/xa4/xd8/xd5 <CJK> +<U45E5> /x8e/xa4/xd8/xd6 <CJK> +<U45E0> /x8e/xa4/xd8/xd7 <CJK> +<U45E3> /x8e/xa4/xd8/xd8 <CJK> +<U000273F8> /x8e/xa4/xd8/xd9 <CJK> +<U00027410> /x8e/xa4/xd8/xda <CJK> +<U0002741D> /x8e/xa4/xd8/xdb <CJK> +<U000273FF> /x8e/xa4/xd8/xdc <CJK> +<U0002740B> /x8e/xa4/xd8/xdd <CJK> +<U00027404> /x8e/xa4/xd8/xde <CJK> +<U45EA> /x8e/xa4/xd8/xdf <CJK> +<U000273FE> /x8e/xa4/xd8/xe0 <CJK> +<U000275FF> /x8e/xa4/xd8/xe1 <CJK> +<U893A> /x8e/xa4/xd8/xe2 <CJK> +<U4654> /x8e/xa4/xd8/xe3 <CJK> +<U4658> /x8e/xa4/xd8/xe4 <CJK> +<U465C> /x8e/xa4/xd8/xe5 <CJK> +<U00027723> /x8e/xa4/xd8/xe6 <CJK> +<U4655> /x8e/xa4/xd8/xe7 <CJK> +<U468B> /x8e/xa4/xd8/xe8 <CJK> +<U468C> /x8e/xa4/xd8/xe9 <CJK> +<U46A6> /x8e/xa4/xd8/xea <CJK> +<U46A5> /x8e/xa4/xd8/xeb <CJK> +<U0002792A> /x8e/xa4/xd8/xec <CJK> +<U00027AA0> /x8e/xa4/xd8/xed <CJK> +<U00027A98> /x8e/xa4/xd8/xee <CJK> +<U00027A9C> /x8e/xa4/xd8/xef <CJK> +<U46FF> /x8e/xa4/xd8/xf0 <CJK> +<U00027A9E> /x8e/xa4/xd8/xf1 <CJK> +<U00027AA6> /x8e/xa4/xd8/xf2 <CJK> +<U00027AB5> /x8e/xa4/xd8/xf3 <CJK> +<U00027AB0> /x8e/xa4/xd8/xf4 <CJK> +<U4730> /x8e/xa4/xd8/xf5 <CJK> +<U4740> /x8e/xa4/xd8/xf6 <CJK> +<U4741> /x8e/xa4/xd8/xf7 <CJK> +<U00027CF9> /x8e/xa4/xd8/xf8 <CJK> +<U00027CF5> /x8e/xa4/xd8/xf9 <CJK> +<U4786> /x8e/xa4/xd8/xfa <CJK> +<U00027DD2> /x8e/xa4/xd8/xfb <CJK> +<U47BF> /x8e/xa4/xd8/xfc <CJK> +<U47BD> /x8e/xa4/xd8/xfd <CJK> +<U00027F50> /x8e/xa4/xd8/xfe <CJK> +<U00027F4E> /x8e/xa4/xd9/xa1 <CJK> +<U00027F4B> /x8e/xa4/xd9/xa2 <CJK> +<U00027F52> /x8e/xa4/xd9/xa3 <CJK> +<U00027F4D> /x8e/xa4/xd9/xa4 <CJK> +<U47BE> /x8e/xa4/xd9/xa5 <CJK> +<U4819> /x8e/xa4/xd9/xa6 <CJK> +<U000280E4> /x8e/xa4/xd9/xa7 <CJK> +<U481C> /x8e/xa4/xd9/xa8 <CJK> +<U000280DA> /x8e/xa4/xd9/xa9 <CJK> +<U481B> /x8e/xa4/xd9/xaa <CJK> +<U4817> /x8e/xa4/xd9/xab <CJK> +<U4818> /x8e/xa4/xd9/xac <CJK> +<U8E51> /x8e/xa4/xd9/xad <CJK> +<U000280DF> /x8e/xa4/xd9/xae <CJK> +<U000280E8> /x8e/xa4/xd9/xaf <CJK> +<U483D> /x8e/xa4/xd9/xb0 <CJK> +<U486A> /x8e/xa4/xd9/xb1 <CJK> +<U4866> /x8e/xa4/xd9/xb2 <CJK> +<U00028370> /x8e/xa4/xd9/xb3 <CJK> +<U00028372> /x8e/xa4/xd9/xb4 <CJK> +<U4867> /x8e/xa4/xd9/xb5 <CJK> +<U00028377> /x8e/xa4/xd9/xb6 <CJK> +<U4868> /x8e/xa4/xd9/xb7 <CJK> +<U48AD> /x8e/xa4/xd9/xb8 <CJK> +<U48AE> /x8e/xa4/xd9/xb9 <CJK> +<U000285E6> /x8e/xa4/xd9/xba <CJK> +<U000287AA> /x8e/xa4/xd9/xbb <CJK> +<U48D6> /x8e/xa4/xd9/xbc <CJK> +<U4909> /x8e/xa4/xd9/xbd <CJK> +<U0002888C> /x8e/xa4/xd9/xbe <CJK> +<U9198> /x8e/xa4/xd9/xbf <CJK> +<U00028889> /x8e/xa4/xd9/xc0 <CJK> +<U490C> /x8e/xa4/xd9/xc1 <CJK> +<U490A> /x8e/xa4/xd9/xc2 <CJK> +<U00028A32> /x8e/xa4/xd9/xc3 <CJK> +<U493B> /x8e/xa4/xd9/xc4 <CJK> +<U493A> /x8e/xa4/xd9/xc5 <CJK> +<U9384> /x8e/xa4/xd9/xc6 <CJK> +<U9381> /x8e/xa4/xd9/xc7 <CJK> +<U00028A7A> /x8e/xa4/xd9/xc8 <CJK> +<U936F> /x8e/xa4/xd9/xc9 <CJK> +<U00028C9E> /x8e/xa4/xd9/xca <CJK> +<U00028CA0> /x8e/xa4/xd9/xcb <CJK> +<U00028D70> /x8e/xa4/xd9/xcc <CJK> +<U49AF> /x8e/xa4/xd9/xcd <CJK> +<U49AA> /x8e/xa4/xd9/xce <CJK> +<U49AB> /x8e/xa4/xd9/xcf <CJK> +<U00028D6E> /x8e/xa4/xd9/xd0 <CJK> +<U00028D66> /x8e/xa4/xd9/xd1 <CJK> +<U49B1> /x8e/xa4/xd9/xd2 <CJK> +<U00028D65> /x8e/xa4/xd9/xd3 <CJK> +<U49AC> /x8e/xa4/xd9/xd4 <CJK> +<U49EC> /x8e/xa4/xd9/xd5 <CJK> +<U00028F7F> /x8e/xa4/xd9/xd6 <CJK> +<U00028FE0> /x8e/xa4/xd9/xd7 <CJK> +<U4A01> /x8e/xa4/xd9/xd8 <CJK> +<U00028FFF> /x8e/xa4/xd9/xd9 <CJK> +<U000290F6> /x8e/xa4/xd9/xda <CJK> +<U000290F7> /x8e/xa4/xd9/xdb <CJK> +<U000290F5> /x8e/xa4/xd9/xdc <CJK> +<U4A23> /x8e/xa4/xd9/xdd <CJK> +<U000290FC> /x8e/xa4/xd9/xde <CJK> +<U4A24> /x8e/xa4/xd9/xdf <CJK> +<U4A1E> /x8e/xa4/xd9/xe0 <CJK> +<U000290F9> /x8e/xa4/xd9/xe1 <CJK> +<U4A4A> /x8e/xa4/xd9/xe2 <CJK> +<U4A65> /x8e/xa4/xd9/xe3 <CJK> +<U4A6A> /x8e/xa4/xd9/xe4 <CJK> +<U000292CA> /x8e/xa4/xd9/xe5 <CJK> +<U000292C3> /x8e/xa4/xd9/xe6 <CJK> +<U000292C6> /x8e/xa4/xd9/xe7 <CJK> +<U4A69> /x8e/xa4/xd9/xe8 <CJK> +<U000293B8> /x8e/xa4/xd9/xe9 <CJK> +<U000293BD> /x8e/xa4/xd9/xea <CJK> +<U4A95> /x8e/xa4/xd9/xeb <CJK> +<U000293BC> /x8e/xa4/xd9/xec <CJK> +<U00029405> /x8e/xa4/xd9/xed <CJK> +<U000294E0> /x8e/xa4/xd9/xee <CJK> +<U000294E9> /x8e/xa4/xd9/xef <CJK> +<U9842> /x8e/xa4/xd9/xf0 <CJK> +<U000294DF> /x8e/xa4/xd9/xf1 <CJK> +<U000294EC> /x8e/xa4/xd9/xf2 <CJK> +<U4ACC> /x8e/xa4/xd9/xf3 <CJK> +<U000294E5> /x8e/xa4/xd9/xf4 <CJK> +<U000294DE> /x8e/xa4/xd9/xf5 <CJK> +<U4ACF> /x8e/xa4/xd9/xf7 <CJK> +<U000294F0> /x8e/xa4/xd9/xf8 <CJK> +<U000294E3> /x8e/xa4/xd9/xf9 <CJK> +<U4B0F> /x8e/xa4/xd9/xfa <CJK> +<U000295EC> /x8e/xa4/xd9/xfb <CJK> +<U4B0E> /x8e/xa4/xd9/xfc <CJK> +<U4B0B> /x8e/xa4/xd9/xfd <CJK> +<U4B10> /x8e/xa4/xd9/xfe <CJK> +<U4B0D> /x8e/xa4/xda/xa1 <CJK> +<U4B0C> /x8e/xa4/xda/xa2 <CJK> +<U000295F2> /x8e/xa4/xda/xa3 <CJK> +<U000295EF> /x8e/xa4/xda/xa4 <CJK> +<U000295E9> /x8e/xa4/xda/xa5 <CJK> +<U000296FB> /x8e/xa4/xda/xa6 <CJK> +<U4B46> /x8e/xa4/xda/xa7 <CJK> +<U4B48> /x8e/xa4/xda/xa8 <CJK> +<U9937> /x8e/xa4/xda/xa9 <CJK> +<U4B49> /x8e/xa4/xda/xaa <CJK> +<U00029737> /x8e/xa4/xda/xab <CJK> +<U000298DE> /x8e/xa4/xda/xac <CJK> +<U4B91> /x8e/xa4/xda/xad <CJK> +<U4B8E> /x8e/xa4/xda/xae <CJK> +<U000298DA> /x8e/xa4/xda/xaf <CJK> +<U4BD8> /x8e/xa4/xda/xb0 <CJK> +<U4BD6> /x8e/xa4/xda/xb1 <CJK> +<U00029A4B> /x8e/xa4/xda/xb2 <CJK> +<U4BDA> /x8e/xa4/xda/xb3 <CJK> +<U00029A49> /x8e/xa4/xda/xb4 <CJK> +<U4BD7> /x8e/xa4/xda/xb5 <CJK> +<U00029AD5> /x8e/xa4/xda/xb6 <CJK> +<U9AFF> /x8e/xa4/xda/xb7 <CJK> +<U4BF9> /x8e/xa4/xda/xb8 <CJK> +<U00029B52> /x8e/xa4/xda/xb9 <CJK> +<U00029B47> /x8e/xa4/xda/xba <CJK> +<U4BFC> /x8e/xa4/xda/xbb <CJK> +<U00029B48> /x8e/xa4/xda/xbc <CJK> +<U00029CCC> /x8e/xa4/xda/xbd <CJK> +<U00029CD0> /x8e/xa4/xda/xbe <CJK> +<U9BA9> /x8e/xa4/xda/xbf <CJK> +<U4C4A> /x8e/xa4/xda/xc0 <CJK> +<U9BA7> /x8e/xa4/xda/xc1 <CJK> +<U4C4E> /x8e/xa4/xda/xc2 <CJK> +<U9BB3> /x8e/xa4/xda/xc3 <CJK> +<U9BAC> /x8e/xa4/xda/xc4 <CJK> +<U9BB0> /x8e/xa4/xda/xc5 <CJK> +<U00029D86> /x8e/xa4/xda/xc6 <CJK> +<U00029DA7> /x8e/xa4/xda/xc7 <CJK> +<U00029DA3> /x8e/xa4/xda/xc8 <CJK> +<U9B9C> /x8e/xa4/xda/xc9 <CJK> +<U00029DB6> /x8e/xa4/xda/xca <CJK> +<U00029DAD> /x8e/xa4/xda/xcb <CJK> +<U0002A013> /x8e/xa4/xda/xcc <CJK> +<U9D3C> /x8e/xa4/xda/xcd <CJK> +<U9D1C> /x8e/xa4/xda/xce <CJK> +<U9D3A> /x8e/xa4/xda/xcf <CJK> +<U4CD3> /x8e/xa4/xda/xd0 <CJK> +<U4CCD> /x8e/xa4/xda/xd1 <CJK> +<U4CD1> /x8e/xa4/xda/xd2 <CJK> +<U0002A017> /x8e/xa4/xda/xd3 <CJK> +<U0002A022> /x8e/xa4/xda/xd4 <CJK> +<U9D32> /x8e/xa4/xda/xd5 <CJK> +<U9D34> /x8e/xa4/xda/xd6 <CJK> +<U0002A049> /x8e/xa4/xda/xd7 <CJK> +<U0002A026> /x8e/xa4/xda/xd8 <CJK> +<U0002A03C> /x8e/xa4/xda/xda <CJK> +<U0002A028> /x8e/xa4/xda/xdb <CJK> +<U0002A2A8> /x8e/xa4/xda/xdc <CJK> +<U9EC7> /x8e/xa4/xda/xdd <CJK> +<U0002A3FB> /x8e/xa4/xda/xde <CJK> +<U4D62> /x8e/xa4/xda/xdf <CJK> +<U0002A432> /x8e/xa4/xda/xe0 <CJK> +<U0002A4D6> /x8e/xa4/xda/xe1 <CJK> +<U0002A548> /x8e/xa4/xda/xe2 <CJK> +<U4D83> /x8e/xa4/xda/xe3 <CJK> +<U9F3F> /x8e/xa4/xda/xe4 <CJK> +<U0002A5C6> /x8e/xa4/xda/xe5 <CJK> +<U4D92> /x8e/xa4/xda/xe6 <CJK> +<U349F> /x8e/xa4/xda/xe7 <CJK> +<U34A0> /x8e/xa4/xda/xe8 <CJK> +<U00020425> /x8e/xa4/xda/xe9 <CJK> +<U00020426> /x8e/xa4/xda/xea <CJK> +<U00020424> /x8e/xa4/xda/xeb <CJK> +<U00020433> /x8e/xa4/xda/xec <CJK> +<U00020570> /x8e/xa4/xda/xed <CJK> +<U3527> /x8e/xa4/xda/xee <CJK> +<U00020B90> /x8e/xa4/xda/xef <CJK> +<U360B> /x8e/xa4/xda/xf0 <CJK> +<U00021095> /x8e/xa4/xda/xf1 <CJK> +<U000210A1> /x8e/xa4/xda/xf2 <CJK> +<U00021092> /x8e/xa4/xda/xf3 <CJK> +<U0002108F> /x8e/xa4/xda/xf4 <CJK> +<U0002109F> /x8e/xa4/xda/xf5 <CJK> +<U00021096> /x8e/xa4/xda/xf6 <CJK> +<U00021098> /x8e/xa4/xda/xf7 <CJK> +<U0002109D> /x8e/xa4/xda/xf8 <CJK> +<U000210A0> /x8e/xa4/xda/xf9 <CJK> +<U368D> /x8e/xa4/xda/xfa <CJK> +<U00021697> /x8e/xa4/xda/xfb <CJK> +<U000218EB> /x8e/xa4/xda/xfc <CJK> +<U3770> /x8e/xa4/xda/xfd <CJK> +<U00021F87> /x8e/xa4/xda/xfe <CJK> +<U5EEB> /x8e/xa4/xdb/xa1 <CJK> +<U00022432> /x8e/xa4/xdb/xa2 <CJK> +<U399A> /x8e/xa4/xdb/xa3 <CJK> +<U399F> /x8e/xa4/xdb/xa4 <CJK> +<U399D> /x8e/xa4/xdb/xa5 <CJK> +<U000228D8> /x8e/xa4/xdb/xa6 <CJK> +<U000228FB> /x8e/xa4/xdb/xa7 <CJK> +<U00022906> /x8e/xa4/xdb/xa8 <CJK> +<U399B> /x8e/xa4/xdb/xa9 <CJK> +<U000228D1> /x8e/xa4/xdb/xaa <CJK> +<U61D5> /x8e/xa4/xdb/xab <CJK> +<U3A60> /x8e/xa4/xdb/xad <CJK> +<U3A64> /x8e/xa4/xdb/xae <CJK> +<U3A69> /x8e/xa4/xdb/xaf <CJK> +<U3A63> /x8e/xa4/xdb/xb0 <CJK> +<U3A67> /x8e/xa4/xdb/xb1 <CJK> +<U3A62> /x8e/xa4/xdb/xb2 <CJK> +<U00022DF6> /x8e/xa4/xdb/xb3 <CJK> +<U00022E04> /x8e/xa4/xdb/xb4 <CJK> +<U00022DFE> /x8e/xa4/xdb/xb5 <CJK> +<U6502> /x8e/xa4/xdb/xb6 <CJK> +<U00022DFF> /x8e/xa4/xdb/xb7 <CJK> +<U00022DF7> /x8e/xa4/xdb/xb8 <CJK> +<U00023018> /x8e/xa4/xdb/xb9 <CJK> +<U00023014> /x8e/xa4/xdb/xbb <CJK> +<U000230CD> /x8e/xa4/xdb/xbc <CJK> +<U00023120> /x8e/xa4/xdb/xbd <CJK> +<U000232DE> /x8e/xa4/xdb/xbe <CJK> +<U3B26> /x8e/xa4/xdb/xbf <CJK> +<U3B23> /x8e/xa4/xdb/xc0 <CJK> +<U3B25> /x8e/xa4/xdb/xc1 <CJK> +<U00023745> /x8e/xa4/xdb/xc2 <CJK> +<U00023753> /x8e/xa4/xdb/xc3 <CJK> +<U3BF8> /x8e/xa4/xdb/xc4 <CJK> +<U0002374B> /x8e/xa4/xdb/xc5 <CJK> +<U00023755> /x8e/xa4/xdb/xc6 <CJK> +<U00023741> /x8e/xa4/xdb/xc7 <CJK> +<U3BF7> /x8e/xa4/xdb/xc8 <CJK> +<U3BFB> /x8e/xa4/xdb/xc9 <CJK> +<U3BFA> /x8e/xa4/xdb/xca <CJK> +<U0002375C> /x8e/xa4/xdb/xcb <CJK> +<U00023754> /x8e/xa4/xdb/xcc <CJK> +<U00023A71> /x8e/xa4/xdb/xcd <CJK> +<U00023AD0> /x8e/xa4/xdb/xce <CJK> +<U3CB0> /x8e/xa4/xdb/xcf <CJK> +<U3CAF> /x8e/xa4/xdb/xd0 <CJK> +<U00023C53> /x8e/xa4/xdb/xd1 <CJK> +<U00024029> /x8e/xa4/xdb/xd2 <CJK> +<U0002407E> /x8e/xa4/xdb/xd3 <CJK> +<U3D7E> /x8e/xa4/xdb/xd4 <CJK> +<U00024079> /x8e/xa4/xdb/xd5 <CJK> +<U3D7D> /x8e/xa4/xdb/xd6 <CJK> +<U3D80> /x8e/xa4/xdb/xd7 <CJK> +<U00024070> /x8e/xa4/xdb/xd8 <CJK> +<U0002406A> /x8e/xa4/xdb/xd9 <CJK> +<U3D7F> /x8e/xa4/xdb/xda <CJK> +<U3D86> /x8e/xa4/xdb/xdb <CJK> +<U00024085> /x8e/xa4/xdb/xdc <CJK> +<U00024064> /x8e/xa4/xdb/xdd <CJK> +<U7012> /x8e/xa4/xdb/xde <CJK> +<U00024078> /x8e/xa4/xdb/xdf <CJK> +<U3D81> /x8e/xa4/xdb/xe0 <CJK> +<U00024432> /x8e/xa4/xdb/xe1 <CJK> +<U00024427> /x8e/xa4/xdb/xe2 <CJK> +<U0002442F> /x8e/xa4/xdb/xe3 <CJK> +<U3E24> /x8e/xa4/xdb/xe4 <CJK> +<U3E58> /x8e/xa4/xdb/xe5 <CJK> +<U3E57> /x8e/xa4/xdb/xe6 <CJK> +<U3EA0> /x8e/xa4/xdb/xe7 <CJK> +<U000248BA> /x8e/xa4/xdb/xe8 <CJK> +<U3EFE> /x8e/xa4/xdb/xe9 <CJK> +<U00024A71> /x8e/xa4/xdb/xea <CJK> +<U00024A8C> /x8e/xa4/xdb/xeb <CJK> +<U3F15> /x8e/xa4/xdb/xec <CJK> +<U00024B1A> /x8e/xa4/xdb/xed <CJK> +<U3F47> /x8e/xa4/xdb/xee <CJK> +<U3F46> /x8e/xa4/xdb/xef <CJK> +<U00024B98> /x8e/xa4/xdb/xf0 <CJK> +<U00024CE4> /x8e/xa4/xdb/xf1 <CJK> +<U3F6B> /x8e/xa4/xdb/xf2 <CJK> +<U3F6C> /x8e/xa4/xdb/xf3 <CJK> +<U7585> /x8e/xa4/xdb/xf4 <CJK> +<U7654> /x8e/xa4/xdb/xf5 <CJK> +<U00024EC2> /x8e/xa4/xdb/xf6 <CJK> +<U3FCC> /x8e/xa4/xdb/xf7 <CJK> +<U00024EBA> /x8e/xa4/xdb/xf8 <CJK> +<U7655> /x8e/xa4/xdb/xf9 <CJK> +<U00024EC8> /x8e/xa4/xdb/xfa <CJK> +<U3FCB> /x8e/xa4/xdb/xfb <CJK> +<U76A7> /x8e/xa4/xdb/xfc <CJK> +<U76A8> /x8e/xa4/xdb/xfd <CJK> +<U3FF9> /x8e/xa4/xdb/xfe <CJK> +<U000250B9> /x8e/xa4/xdc/xa1 <CJK> +<U000250B8> /x8e/xa4/xdc/xa2 <CJK> +<U000250A5> /x8e/xa4/xdc/xa3 <CJK> +<U000252E2> /x8e/xa4/xdc/xa4 <CJK> +<U4078> /x8e/xa4/xdc/xa5 <CJK> +<U407A> /x8e/xa4/xdc/xa6 <CJK> +<U4075> /x8e/xa4/xdc/xa7 <CJK> +<U000252D9> /x8e/xa4/xdc/xa8 <CJK> +<U4076> /x8e/xa4/xdc/xa9 <CJK> +<U4077> /x8e/xa4/xdc/xaa <CJK> +<U000252AC> /x8e/xa4/xdc/xab <CJK> +<U000252DD> /x8e/xa4/xdc/xac <CJK> +<U40EA> /x8e/xa4/xdc/xad <CJK> +<U40EE> /x8e/xa4/xdc/xae <CJK> +<U40ED> /x8e/xa4/xdc/xaf <CJK> +<U0002559D> /x8e/xa4/xdc/xb0 <CJK> +<U40EC> /x8e/xa4/xdc/xb1 <CJK> +<U790F> /x8e/xa4/xdc/xb2 <CJK> +<U00025711> /x8e/xa4/xdc/xb3 <CJK> +<U00025703> /x8e/xa4/xdc/xb4 <CJK> +<U4184> /x8e/xa4/xdc/xb5 <CJK> +<U4185> /x8e/xa4/xdc/xb6 <CJK> +<U4183> /x8e/xa4/xdc/xb7 <CJK> +<U000258EE> /x8e/xa4/xdc/xb8 <CJK> +<U41BC> /x8e/xa4/xdc/xb9 <CJK> +<U41BD> /x8e/xa4/xdc/xba <CJK> +<U41D4> /x8e/xa4/xdc/xbb <CJK> +<U00025CA4> /x8e/xa4/xdc/xbc <CJK> +<U00025CD8> /x8e/xa4/xdc/xbd <CJK> +<U00025CDD> /x8e/xa4/xdc/xbe <CJK> +<U00025CDE> /x8e/xa4/xdc/xbf <CJK> +<U4255> /x8e/xa4/xdc/xc0 <CJK> +<U00025CE7> /x8e/xa4/xdc/xc1 <CJK> +<U4250> /x8e/xa4/xdc/xc2 <CJK> +<U424C> /x8e/xa4/xdc/xc3 <CJK> +<U4248> /x8e/xa4/xdc/xc4 <CJK> +<U00025CD4> /x8e/xa4/xdc/xc5 <CJK> +<U4253> /x8e/xa4/xdc/xc6 <CJK> +<U00025CCE> /x8e/xa4/xdc/xc7 <CJK> +<U4257> /x8e/xa4/xdc/xc8 <CJK> +<U4254> /x8e/xa4/xdc/xc9 <CJK> +<U424E> /x8e/xa4/xdc/xca <CJK> +<U424A> /x8e/xa4/xdc/xcb <CJK> +<U4251> /x8e/xa4/xdc/xcc <CJK> +<U00025CF1> /x8e/xa4/xdc/xcd <CJK> +<U00025CD3> /x8e/xa4/xdc/xce <CJK> +<U4249> /x8e/xa4/xdc/xcf <CJK> +<U424B> /x8e/xa4/xdc/xd0 <CJK> +<U4263> /x8e/xa4/xdc/xd1 <CJK> +<U00025CCA> /x8e/xa4/xdc/xd2 <CJK> +<U00025CE9> /x8e/xa4/xdc/xd3 <CJK> +<U42A7> /x8e/xa4/xdc/xd4 <CJK> +<U42A6> /x8e/xa4/xdc/xd5 <CJK> +<U42A4> /x8e/xa4/xdc/xd6 <CJK> +<U00025F1A> /x8e/xa4/xdc/xd7 <CJK> +<U00025F41> /x8e/xa4/xdc/xd8 <CJK> +<U7CE4> /x8e/xa4/xdc/xda <CJK> +<U7CE5> /x8e/xa4/xdc/xdb <CJK> +<U0002613D> /x8e/xa4/xdc/xdc <CJK> +<U00026140> /x8e/xa4/xdc/xdd <CJK> +<U7E65> /x8e/xa4/xdc/xde <CJK> +<U7E4E> /x8e/xa4/xdc/xdf <CJK> +<U4317> /x8e/xa4/xdc/xe0 <CJK> +<U00026143> /x8e/xa4/xdc/xe1 <CJK> +<U4316> /x8e/xa4/xdc/xe2 <CJK> +<U0002613F> /x8e/xa4/xdc/xe3 <CJK> +<U0002613C> /x8e/xa4/xdc/xe4 <CJK> +<U4363> /x8e/xa4/xdc/xe5 <CJK> +<U00026321> /x8e/xa4/xdc/xe6 <CJK> +<U00026320> /x8e/xa4/xdc/xe7 <CJK> +<U7F82> /x8e/xa4/xdc/xe8 <CJK> +<U000263C6> /x8e/xa4/xdc/xe9 <CJK> +<U437B> /x8e/xa4/xdc/xea <CJK> +<U437C> /x8e/xa4/xdc/xeb <CJK> +<U000263D1> /x8e/xa4/xdc/xec <CJK> +<U000263CA> /x8e/xa4/xdc/xed <CJK> +<U0002648E> /x8e/xa4/xdc/xee <CJK> +<U00026491> /x8e/xa4/xdc/xef <CJK> +<U43B0> /x8e/xa4/xdc/xf0 <CJK> +<U802D> /x8e/xa4/xdc/xf1 <CJK> +<U000265E3> /x8e/xa4/xdc/xf2 <CJK> +<U00026888> /x8e/xa4/xdc/xf3 <CJK> +<U4442> /x8e/xa4/xdc/xf4 <CJK> +<U00026870> /x8e/xa4/xdc/xf5 <CJK> +<U4444> /x8e/xa4/xdc/xf6 <CJK> +<U0002699D> /x8e/xa4/xdc/xf7 <CJK> +<U00026A9D> /x8e/xa4/xdc/xf8 <CJK> +<U00026A91> /x8e/xa4/xdc/xf9 <CJK> +<U00026A98> /x8e/xa4/xdc/xfa <CJK> +<U00026A99> /x8e/xa4/xdc/xfb <CJK> +<U4488> /x8e/xa4/xdc/xfc <CJK> +<U448F> /x8e/xa4/xdc/xfd <CJK> +<U4553> /x8e/xa4/xdc/xfe <CJK> +<U455B> /x8e/xa4/xdd/xa1 <CJK> +<U00026FBF> /x8e/xa4/xdd/xa2 <CJK> +<U4559> /x8e/xa4/xdd/xa3 <CJK> +<U00026FAE> /x8e/xa4/xdd/xa4 <CJK> +<U00026FB1> /x8e/xa4/xdd/xa5 <CJK> +<U00026FCC> /x8e/xa4/xdd/xa6 <CJK> +<U00027004> /x8e/xa4/xdd/xa7 <CJK> +<U85CA> /x8e/xa4/xdd/xa8 <CJK> +<U00027016> /x8e/xa4/xdd/xa9 <CJK> +<U00026FCD> /x8e/xa4/xdd/xaa <CJK> +<U4554> /x8e/xa4/xdd/xab <CJK> +<U85BC> /x8e/xa4/xdd/xac <CJK> +<U00026FE0> /x8e/xa4/xdd/xad <CJK> +<U00026FCB> /x8e/xa4/xdd/xae <CJK> +<U00026FD4> /x8e/xa4/xdd/xaf <CJK> +<U00026FC9> /x8e/xa4/xdd/xb0 <CJK> +<U000271FF> /x8e/xa4/xdd/xb1 <CJK> +<U4599> /x8e/xa4/xdd/xb2 <CJK> +<U000271FD> /x8e/xa4/xdd/xb3 <CJK> +<U00027457> /x8e/xa4/xdd/xb4 <CJK> +<U00027452> /x8e/xa4/xdd/xb5 <CJK> +<U00027450> /x8e/xa4/xdd/xb6 <CJK> +<U00027445> /x8e/xa4/xdd/xb7 <CJK> +<U0002744D> /x8e/xa4/xdd/xb8 <CJK> +<U45F1> /x8e/xa4/xdd/xb9 <CJK> +<U00027453> /x8e/xa4/xdd/xba <CJK> +<U45EF> /x8e/xa4/xdd/xbb <CJK> +<U00027482> /x8e/xa4/xdd/xbc <CJK> +<U00027444> /x8e/xa4/xdd/xbd <CJK> +<U000275CE> /x8e/xa4/xdd/xbe <CJK> +<U000275CF> /x8e/xa4/xdd/xbf <CJK> +<U000275D2> /x8e/xa4/xdd/xc0 <CJK> +<U00027602> /x8e/xa4/xdd/xc1 <CJK> +<U0002774F> /x8e/xa4/xdd/xc2 <CJK> +<U00027758> /x8e/xa4/xdd/xc3 <CJK> +<U4662> /x8e/xa4/xdd/xc4 <CJK> +<U00027743> /x8e/xa4/xdd/xc5 <CJK> +<U4663> /x8e/xa4/xdd/xc6 <CJK> +<U00027752> /x8e/xa4/xdd/xc7 <CJK> +<U4660> /x8e/xa4/xdd/xc8 <CJK> +<U4661> /x8e/xa4/xdd/xc9 <CJK> +<U465F> /x8e/xa4/xdd/xca <CJK> +<U00027749> /x8e/xa4/xdd/xcb <CJK> +<U00027753> /x8e/xa4/xdd/xcc <CJK> +<U0002774D> /x8e/xa4/xdd/xcd <CJK> +<U468D> /x8e/xa4/xdd/xce <CJK> +<U00027884> /x8e/xa4/xdd/xcf <CJK> +<U468E> /x8e/xa4/xdd/xd0 <CJK> +<U00027883> /x8e/xa4/xdd/xd1 <CJK> +<U00027932> /x8e/xa4/xdd/xd2 <CJK> +<U00027AE2> /x8e/xa4/xdd/xd3 <CJK> +<U4709> /x8e/xa4/xdd/xd4 <CJK> +<U00027AE4> /x8e/xa4/xdd/xd5 <CJK> +<U00027AD3> /x8e/xa4/xdd/xd6 <CJK> +<U4705> /x8e/xa4/xdd/xd7 <CJK> +<U00027AD5> /x8e/xa4/xdd/xd8 <CJK> +<U00027ADD> /x8e/xa4/xdd/xd9 <CJK> +<U4703> /x8e/xa4/xdd/xda <CJK> +<U4706> /x8e/xa4/xdd/xdb <CJK> +<U00027AEC> /x8e/xa4/xdd/xdc <CJK> +<U00027AE6> /x8e/xa4/xdd/xdd <CJK> +<U00027AD2> /x8e/xa4/xdd/xde <CJK> +<U00027AFA> /x8e/xa4/xdd/xdf <CJK> +<U00027ADA> /x8e/xa4/xdd/xe0 <CJK> +<U4731> /x8e/xa4/xdd/xe1 <CJK> +<U00027C06> /x8e/xa4/xdd/xe2 <CJK> +<U00027C04> /x8e/xa4/xdd/xe3 <CJK> +<U474F> /x8e/xa4/xdd/xe4 <CJK> +<U00027C7B> /x8e/xa4/xdd/xe5 <CJK> +<U00027D04> /x8e/xa4/xdd/xe6 <CJK> +<U00027D02> /x8e/xa4/xdd/xe7 <CJK> +<U4766> /x8e/xa4/xdd/xe8 <CJK> +<U8CFF> /x8e/xa4/xdd/xe9 <CJK> +<U47C4> /x8e/xa4/xdd/xea <CJK> +<U00027F60> /x8e/xa4/xdd/xeb <CJK> +<U47C3> /x8e/xa4/xdd/xec <CJK> +<U47C1> /x8e/xa4/xdd/xed <CJK> +<U47C5> /x8e/xa4/xdd/xee <CJK> +<U00028107> /x8e/xa4/xdd/xef <CJK> +<U00028105> /x8e/xa4/xdd/xf0 <CJK> +<U0002810C> /x8e/xa4/xdd/xf1 <CJK> +<U4821> /x8e/xa4/xdd/xf2 <CJK> +<U0002815A> /x8e/xa4/xdd/xf3 <CJK> +<U481F> /x8e/xa4/xdd/xf4 <CJK> +<U4822> /x8e/xa4/xdd/xf5 <CJK> +<U0002811A> /x8e/xa4/xdd/xf6 <CJK> +<U4827> /x8e/xa4/xdd/xf7 <CJK> +<U4820> /x8e/xa4/xdd/xf8 <CJK> +<U0002838A> /x8e/xa4/xdd/xf9 <CJK> +<U486D> /x8e/xa4/xdd/xfa <CJK> +<U486C> /x8e/xa4/xdd/xfb <CJK> +<U486B> /x8e/xa4/xdd/xfc <CJK> +<U486F> /x8e/xa4/xdd/xfd <CJK> +<U4870> /x8e/xa4/xdd/xfe <CJK> +<U0002838C> /x8e/xa4/xde/xa1 <CJK> +<U00028609> /x8e/xa4/xde/xa2 <CJK> +<U000288A6> /x8e/xa4/xde/xa3 <CJK> +<U91A6> /x8e/xa4/xde/xa4 <CJK> +<U000288AC> /x8e/xa4/xde/xa5 <CJK> +<U000288A9> /x8e/xa4/xde/xa6 <CJK> +<U4942> /x8e/xa4/xde/xa7 <CJK> +<U00028A8B> /x8e/xa4/xde/xa8 <CJK> +<U93B6> /x8e/xa4/xde/xa9 <CJK> +<U00028A8C> /x8e/xa4/xde/xaa <CJK> +<U4944> /x8e/xa4/xde/xab <CJK> +<U4940> /x8e/xa4/xde/xac <CJK> +<U00028A88> /x8e/xa4/xde/xad <CJK> +<U00028A89> /x8e/xa4/xde/xae <CJK> +<U493F> /x8e/xa4/xde/xaf <CJK> +<U00028A93> /x8e/xa4/xde/xb0 <CJK> +<U93AB> /x8e/xa4/xde/xb1 <CJK> +<U498B> /x8e/xa4/xde/xb2 <CJK> +<U00028D83> /x8e/xa4/xde/xb3 <CJK> +<U00028F4F> /x8e/xa4/xde/xb4 <CJK> +<U4A25> /x8e/xa4/xde/xb5 <CJK> +<U4A28> /x8e/xa4/xde/xb6 <CJK> +<U00029120> /x8e/xa4/xde/xb7 <CJK> +<U9721> /x8e/xa4/xde/xb8 <CJK> +<U00029236> /x8e/xa4/xde/xb9 <CJK> +<U000292E2> /x8e/xa4/xde/xba <CJK> +<U4A75> /x8e/xa4/xde/xbb <CJK> +<U4A72> /x8e/xa4/xde/xbc <CJK> +<U000292EE> /x8e/xa4/xde/xbd <CJK> +<U4A6F> /x8e/xa4/xde/xbe <CJK> +<U000292E7> /x8e/xa4/xde/xbf <CJK> +<U000292E9> /x8e/xa4/xde/xc0 <CJK> +<U4A76> /x8e/xa4/xde/xc1 <CJK> +<U4A71> /x8e/xa4/xde/xc2 <CJK> +<U97A7> /x8e/xa4/xde/xc3 <CJK> +<U000292DF> /x8e/xa4/xde/xc4 <CJK> +<U4A97> /x8e/xa4/xde/xc5 <CJK> +<U000293C7> /x8e/xa4/xde/xc6 <CJK> +<U4AD7> /x8e/xa4/xde/xc7 <CJK> +<U00029509> /x8e/xa4/xde/xc8 <CJK> +<U4AD6> /x8e/xa4/xde/xc9 <CJK> +<U00029501> /x8e/xa4/xde/xca <CJK> +<U4AD8> /x8e/xa4/xde/xcb <CJK> +<U4ADC> /x8e/xa4/xde/xcc <CJK> +<U4ADB> /x8e/xa4/xde/xcd <CJK> +<U4AD4> /x8e/xa4/xde/xce <CJK> +<U983E> /x8e/xa4/xde/xcf <CJK> +<U4B13> /x8e/xa4/xde/xd0 <CJK> +<U4B11> /x8e/xa4/xde/xd1 <CJK> +<U4B14> /x8e/xa4/xde/xd2 <CJK> +<U00029605> /x8e/xa4/xde/xd3 <CJK> +<U0002960C> /x8e/xa4/xde/xd4 <CJK> +<U00029778> /x8e/xa4/xde/xd5 <CJK> +<U0002975D> /x8e/xa4/xde/xd6 <CJK> +<U4B51> /x8e/xa4/xde/xd7 <CJK> +<U4B50> /x8e/xa4/xde/xd8 <CJK> +<U4B53> /x8e/xa4/xde/xd9 <CJK> +<U4B54> /x8e/xa4/xde/xda <CJK> +<U4B52> /x8e/xa4/xde/xdb <CJK> +<U0002975E> /x8e/xa4/xde/xdc <CJK> +<U00029760> /x8e/xa4/xde/xdd <CJK> +<U00029767> /x8e/xa4/xde/xde <CJK> +<U4B6D> /x8e/xa4/xde/xdf <CJK> +<U000298F4> /x8e/xa4/xde/xe1 <CJK> +<U4B95> /x8e/xa4/xde/xe2 <CJK> +<U4B99> /x8e/xa4/xde/xe3 <CJK> +<U000298F1> /x8e/xa4/xde/xe4 <CJK> +<U4B9A> /x8e/xa4/xde/xe5 <CJK> +<U000298FA> /x8e/xa4/xde/xe6 <CJK> +<U4B93> /x8e/xa4/xde/xe7 <CJK> +<U4B97> /x8e/xa4/xde/xe8 <CJK> +<U000298F8> /x8e/xa4/xde/xe9 <CJK> +<U000298F9> /x8e/xa4/xde/xea <CJK> +<U00029909> /x8e/xa4/xde/xeb <CJK> +<U000298FD> /x8e/xa4/xde/xec <CJK> +<U000298F7> /x8e/xa4/xde/xed <CJK> +<U4BDC> /x8e/xa4/xde/xee <CJK> +<U00029A59> /x8e/xa4/xde/xef <CJK> +<U4BFD> /x8e/xa4/xde/xf0 <CJK> +<U00029B60> /x8e/xa4/xde/xf1 <CJK> +<U00029B68> /x8e/xa4/xde/xf2 <CJK> +<U4BFE> /x8e/xa4/xde/xf3 <CJK> +<U4C00> /x8e/xa4/xde/xf4 <CJK> +<U4C02> /x8e/xa4/xde/xf5 <CJK> +<U4C01> /x8e/xa4/xde/xf6 <CJK> +<U4C03> /x8e/xa4/xde/xf7 <CJK> +<U00029B6A> /x8e/xa4/xde/xf8 <CJK> +<U00029C14> /x8e/xa4/xde/xf9 <CJK> +<U00029C3E> /x8e/xa4/xde/xfa <CJK> +<U00029CE4> /x8e/xa4/xde/xfb <CJK> +<U4C27> /x8e/xa4/xde/xfc <CJK> +<U4C26> /x8e/xa4/xde/xfd <CJK> +<U4C24> /x8e/xa4/xde/xfe <CJK> +<U4C4C> /x8e/xa4/xdf/xa1 <CJK> +<U9BBC> /x8e/xa4/xdf/xa2 <CJK> +<U4C50> /x8e/xa4/xdf/xa3 <CJK> +<U4C55> /x8e/xa4/xdf/xa4 <CJK> +<U4C53> /x8e/xa4/xdf/xa5 <CJK> +<U9BB7> /x8e/xa4/xdf/xa6 <CJK> +<U4C52> /x8e/xa4/xdf/xa7 <CJK> +<U00029DD2> /x8e/xa4/xdf/xa8 <CJK> +<U4C57> /x8e/xa4/xdf/xa9 <CJK> +<U9BBE> /x8e/xa4/xdf/xaa <CJK> +<U4C58> /x8e/xa4/xdf/xab <CJK> +<U4CD6> /x8e/xa4/xdf/xac <CJK> +<U0002A058> /x8e/xa4/xdf/xad <CJK> +<U0002A050> /x8e/xa4/xdf/xae <CJK> +<U4CD4> /x8e/xa4/xdf/xaf <CJK> +<U0002A05C> /x8e/xa4/xdf/xb0 <CJK> +<U4CDA> /x8e/xa4/xdf/xb1 <CJK> +<U4CD9> /x8e/xa4/xdf/xb2 <CJK> +<U00028119> /x8e/xa4/xdf/xb3 <CJK> +<U9D62> /x8e/xa4/xdf/xb4 <CJK> +<U4CD5> /x8e/xa4/xdf/xb5 <CJK> +<U4CE4> /x8e/xa4/xdf/xb6 <CJK> +<U4CDC> /x8e/xa4/xdf/xb8 <CJK> +<U4D1B> /x8e/xa4/xdf/xb9 <CJK> +<U9E8F> /x8e/xa4/xdf/xba <CJK> +<U4D37> /x8e/xa4/xdf/xbb <CJK> +<U4D36> /x8e/xa4/xdf/xbc <CJK> +<U4D4B> /x8e/xa4/xdf/xbd <CJK> +<U9ECB> /x8e/xa4/xdf/xbe <CJK> +<U4D66> /x8e/xa4/xdf/xbf <CJK> +<U4D76> /x8e/xa4/xdf/xc0 <CJK> +<U0002A4DF> /x8e/xa4/xdf/xc1 <CJK> +<U4D7E> /x8e/xa4/xdf/xc2 <CJK> +<U4D7D> /x8e/xa4/xdf/xc3 <CJK> +<U4D7F> /x8e/xa4/xdf/xc4 <CJK> +<U4D84> /x8e/xa4/xdf/xc5 <CJK> +<U4D8B> /x8e/xa4/xdf/xc6 <CJK> +<U0002A5D9> /x8e/xa4/xdf/xc7 <CJK> +<U4D94> /x8e/xa4/xdf/xc8 <CJK> +<U34A1> /x8e/xa4/xdf/xc9 <CJK> +<U3511> /x8e/xa4/xdf/xca <CJK> +<U00020966> /x8e/xa4/xdf/xcb <CJK> +<U3610> /x8e/xa4/xdf/xcc <CJK> +<U56A9> /x8e/xa4/xdf/xcd <CJK> +<U000210E1> /x8e/xa4/xdf/xce <CJK> +<U000210EF> /x8e/xa4/xdf/xcf <CJK> +<U000210E8> /x8e/xa4/xdf/xd0 <CJK> +<U00021233> /x8e/xa4/xdf/xd1 <CJK> +<U5913> /x8e/xa4/xdf/xd2 <CJK> +<U000218FE> /x8e/xa4/xdf/xd3 <CJK> +<U3732> /x8e/xa4/xdf/xd4 <CJK> +<U5BF4> /x8e/xa4/xdf/xd5 <CJK> +<U00021AEF> /x8e/xa4/xdf/xd6 <CJK> +<U00021AEC> /x8e/xa4/xdf/xd7 <CJK> +<U00021CEC> /x8e/xa4/xdf/xd8 <CJK> +<U00021F9C> /x8e/xa4/xdf/xd9 <CJK> +<U3820> /x8e/xa4/xdf/xda <CJK> +<U00021F99> /x8e/xa4/xdf/xdb <CJK> +<U00022170> /x8e/xa4/xdf/xdc <CJK> +<U0002216E> /x8e/xa4/xdf/xdd <CJK> +<U389D> /x8e/xa4/xdf/xde <CJK> +<U00022441> /x8e/xa4/xdf/xdf <CJK> +<U61EC> /x8e/xa4/xdf/xe0 <CJK> +<U61EF> /x8e/xa4/xdf/xe1 <CJK> +<U00022902> /x8e/xa4/xdf/xe2 <CJK> +<U00022901> /x8e/xa4/xdf/xe3 <CJK> +<U39A5> /x8e/xa4/xdf/xe4 <CJK> +<U00022A1B> /x8e/xa4/xdf/xe5 <CJK> +<U00022E23> /x8e/xa4/xdf/xe6 <CJK> +<U00022E25> /x8e/xa4/xdf/xe7 <CJK> +<U00022E24> /x8e/xa4/xdf/xe8 <CJK> +<U00022E26> /x8e/xa4/xdf/xe9 <CJK> +<U00022E33> /x8e/xa4/xdf/xea <CJK> +<U00022E2F> /x8e/xa4/xdf/xeb <CJK> +<U0002308F> /x8e/xa4/xdf/xec <CJK> +<U00023356> /x8e/xa4/xdf/xed <CJK> +<U3C02> /x8e/xa4/xdf/xee <CJK> +<U3BFE> /x8e/xa4/xdf/xef <CJK> +<U3C01> /x8e/xa4/xdf/xf0 <CJK> +<U6AD6> /x8e/xa4/xdf/xf1 <CJK> +<U3C03> /x8e/xa4/xdf/xf2 <CJK> +<U3BFF> /x8e/xa4/xdf/xf3 <CJK> +<U00023799> /x8e/xa4/xdf/xf4 <CJK> +<U3C04> /x8e/xa4/xdf/xf5 <CJK> +<U3C4A> /x8e/xa4/xdf/xf7 <CJK> +<U00023AD9> /x8e/xa4/xdf/xf8 <CJK> +<U3D87> /x8e/xa4/xdf/xf9 <CJK> +<U000240B7> /x8e/xa4/xdf/xfa <CJK> +<U3D84> /x8e/xa4/xdf/xfb <CJK> +<U000240B6> /x8e/xa4/xdf/xfc <CJK> +<U3D85> /x8e/xa4/xdf/xfd <CJK> +<U7209> /x8e/xa4/xdf/xfe <CJK> +<U00024454> /x8e/xa4/xe0/xa1 <CJK> +<U00024457> /x8e/xa4/xe0/xa2 <CJK> +<U0002447A> /x8e/xa4/xe0/xa3 <CJK> +<U3E59> /x8e/xa4/xe0/xa4 <CJK> +<U7379> /x8e/xa4/xe0/xa5 <CJK> +<U00024A8E> /x8e/xa4/xe0/xa6 <CJK> +<U74C6> /x8e/xa4/xe0/xa7 <CJK> +<U00024A90> /x8e/xa4/xe0/xa8 <CJK> +<U00024AB9> /x8e/xa4/xe0/xa9 <CJK> +<U3F04> /x8e/xa4/xe0/xaa <CJK> +<U3F49> /x8e/xa4/xe0/xab <CJK> +<U3F48> /x8e/xa4/xe0/xac <CJK> +<U00024CEF> /x8e/xa4/xe0/xad <CJK> +<U3F6D> /x8e/xa4/xe0/xae <CJK> +<U3FD2> /x8e/xa4/xe0/xaf <CJK> +<U3FD3> /x8e/xa4/xe0/xb0 <CJK> +<U00024EE2> /x8e/xa4/xe0/xb1 <CJK> +<U3FD1> /x8e/xa4/xe0/xb2 <CJK> +<U00024ED6> /x8e/xa4/xe0/xb3 <CJK> +<U00024ED8> /x8e/xa4/xe0/xb4 <CJK> +<U00024EDA> /x8e/xa4/xe0/xb5 <CJK> +<U00024EDE> /x8e/xa4/xe0/xb6 <CJK> +<U3FE7> /x8e/xa4/xe0/xb7 <CJK> +<U400A> /x8e/xa4/xe0/xb8 <CJK> +<U77C3> /x8e/xa4/xe0/xb9 <CJK> +<U00025308> /x8e/xa4/xe0/xba <CJK> +<U00025304> /x8e/xa4/xe0/xbb <CJK> +<U0002530A> /x8e/xa4/xe0/xbc <CJK> +<U0002530B> /x8e/xa4/xe0/xbd <CJK> +<U00025302> /x8e/xa4/xe0/xbe <CJK> +<U40F0> /x8e/xa4/xe0/xbf <CJK> +<U000255AA> /x8e/xa4/xe0/xc0 <CJK> +<U000255C1> /x8e/xa4/xe0/xc1 <CJK> +<U791F> /x8e/xa4/xe0/xc2 <CJK> +<U000258D7> /x8e/xa4/xe0/xc3 <CJK> +<U000258D9> /x8e/xa4/xe0/xc4 <CJK> +<U7A65> /x8e/xa4/xe0/xc5 <CJK> +<U000258DE> /x8e/xa4/xe0/xc6 <CJK> +<U000258DA> /x8e/xa4/xe0/xc7 <CJK> +<U41BE> /x8e/xa4/xe0/xc8 <CJK> +<U41BF> /x8e/xa4/xe0/xc9 <CJK> +<U00025A2A> /x8e/xa4/xe0/xca <CJK> +<U7AC6> /x8e/xa4/xe0/xcb <CJK> +<U7C3A> /x8e/xa4/xe0/xcc <CJK> +<U00025D31> /x8e/xa4/xe0/xcd <CJK> +<U7C36> /x8e/xa4/xe0/xce <CJK> +<U00025D2B> /x8e/xa4/xe0/xcf <CJK> +<U00025D2C> /x8e/xa4/xe0/xd0 <CJK> +<U00025D29> /x8e/xa4/xe0/xd1 <CJK> +<U00025D2E> /x8e/xa4/xe0/xd2 <CJK> +<U425E> /x8e/xa4/xe0/xd3 <CJK> +<U00025D27> /x8e/xa4/xe0/xd4 <CJK> +<U00025D28> /x8e/xa4/xe0/xd5 <CJK> +<U425B> /x8e/xa4/xe0/xd6 <CJK> +<U00025D5F> /x8e/xa4/xe0/xd7 <CJK> +<U00025D30> /x8e/xa4/xe0/xd8 <CJK> +<U00025D24> /x8e/xa4/xe0/xd9 <CJK> +<U7CEB> /x8e/xa4/xe0/xda <CJK> +<U42AB> /x8e/xa4/xe0/xdb <CJK> +<U00025F3A> /x8e/xa4/xe0/xdc <CJK> +<U42AC> /x8e/xa4/xe0/xdd <CJK> +<U00025F39> /x8e/xa4/xe0/xde <CJK> +<U00025F40> /x8e/xa4/xe0/xdf <CJK> +<U00026180> /x8e/xa4/xe0/xe0 <CJK> +<U00026184> /x8e/xa4/xe0/xe1 <CJK> +<U431F> /x8e/xa4/xe0/xe2 <CJK> +<U431D> /x8e/xa4/xe0/xe3 <CJK> +<U00026175> /x8e/xa4/xe0/xe4 <CJK> +<U00026176> /x8e/xa4/xe0/xe5 <CJK> +<U431C> /x8e/xa4/xe0/xe6 <CJK> +<U0002617C> /x8e/xa4/xe0/xe7 <CJK> +<U431E> /x8e/xa4/xe0/xe8 <CJK> +<U00026178> /x8e/xa4/xe0/xe9 <CJK> +<U0002619B> /x8e/xa4/xe0/xea <CJK> +<U0002617E> /x8e/xa4/xe0/xeb <CJK> +<U0002625A> /x8e/xa4/xe0/xec <CJK> +<U4364> /x8e/xa4/xe0/xed <CJK> +<U0002632C> /x8e/xa4/xe0/xee <CJK> +<U7F84> /x8e/xa4/xe0/xef <CJK> +<U0002649C> /x8e/xa4/xe0/xf0 <CJK> +<U00026847> /x8e/xa4/xe0/xf1 <CJK> +<U0002688A> /x8e/xa4/xe0/xf2 <CJK> +<U4448> /x8e/xa4/xe0/xf3 <CJK> +<U4447> /x8e/xa4/xe0/xf4 <CJK> +<U00026927> /x8e/xa4/xe0/xf5 <CJK> +<U0002704A> /x8e/xa4/xe0/xf6 <CJK> +<U455E> /x8e/xa4/xe0/xf7 <CJK> +<U4561> /x8e/xa4/xe0/xf8 <CJK> +<U00027027> /x8e/xa4/xe0/xf9 <CJK> +<U85E0> /x8e/xa4/xe0/xfa <CJK> +<U85F3> /x8e/xa4/xe0/xfb <CJK> +<U0002702E> /x8e/xa4/xe0/xfc <CJK> +<U00027026> /x8e/xa4/xe0/xfd <CJK> +<U00027208> /x8e/xa4/xe0/xfe <CJK> +<U45F7> /x8e/xa4/xe1/xa1 <CJK> +<U000274BD> /x8e/xa4/xe1/xa2 <CJK> +<U00027496> /x8e/xa4/xe1/xa3 <CJK> +<U45F4> /x8e/xa4/xe1/xa4 <CJK> +<U45F8> /x8e/xa4/xe1/xa5 <CJK> +<U881E> /x8e/xa4/xe1/xa6 <CJK> +<U000274BE> /x8e/xa4/xe1/xa7 <CJK> +<U0002748E> /x8e/xa4/xe1/xa8 <CJK> +<U00027774> /x8e/xa4/xe1/xa9 <CJK> +<U4664> /x8e/xa4/xe1/xaa <CJK> +<U00027780> /x8e/xa4/xe1/xab <CJK> +<U4692> /x8e/xa4/xe1/xac <CJK> +<U468F> /x8e/xa4/xe1/xad <CJK> +<U4690> /x8e/xa4/xe1/xae <CJK> +<U89B4> /x8e/xa4/xe1/xaf <CJK> +<U4693> /x8e/xa4/xe1/xb0 <CJK> +<U46A8> /x8e/xa4/xe1/xb1 <CJK> +<U0002793C> /x8e/xa4/xe1/xb2 <CJK> +<U0002793D> /x8e/xa4/xe1/xb3 <CJK> +<U46A9> /x8e/xa4/xe1/xb4 <CJK> +<U0002793A> /x8e/xa4/xe1/xb5 <CJK> +<U00027942> /x8e/xa4/xe1/xb6 <CJK> +<U89F9> /x8e/xa4/xe1/xb7 <CJK> +<U00027B24> /x8e/xa4/xe1/xb8 <CJK> +<U00027B06> /x8e/xa4/xe1/xb9 <CJK> +<U8B44> /x8e/xa4/xe1/xba <CJK> +<U470E> /x8e/xa4/xe1/xbb <CJK> +<U00027B15> /x8e/xa4/xe1/xbc <CJK> +<U470F> /x8e/xa4/xe1/xbd <CJK> +<U00027B02> /x8e/xa4/xe1/xbe <CJK> +<U00027B0C> /x8e/xa4/xe1/xbf <CJK> +<U470B> /x8e/xa4/xe1/xc0 <CJK> +<U00027B08> /x8e/xa4/xe1/xc1 <CJK> +<U00027B0A> /x8e/xa4/xe1/xc2 <CJK> +<U00027B05> /x8e/xa4/xe1/xc3 <CJK> +<U00027B1C> /x8e/xa4/xe1/xc4 <CJK> +<U4710> /x8e/xa4/xe1/xc5 <CJK> +<U4751> /x8e/xa4/xe1/xc6 <CJK> +<U00027C82> /x8e/xa4/xe1/xc7 <CJK> +<U4750> /x8e/xa4/xe1/xc8 <CJK> +<U00027C86> /x8e/xa4/xe1/xc9 <CJK> +<U4763> /x8e/xa4/xe1/xca <CJK> +<U00027E03> /x8e/xa4/xe1/xcb <CJK> +<U00027F7B> /x8e/xa4/xe1/xcc <CJK> +<U47C7> /x8e/xa4/xe1/xcd <CJK> +<U00027F7A> /x8e/xa4/xe1/xce <CJK> +<U8E71> /x8e/xa4/xe1/xcf <CJK> +<U4824> /x8e/xa4/xe1/xd0 <CJK> +<U4826> /x8e/xa4/xe1/xd1 <CJK> +<U8E6E> /x8e/xa4/xe1/xd2 <CJK> +<U00028180> /x8e/xa4/xe1/xd3 <CJK> +<U8E79> /x8e/xa4/xe1/xd4 <CJK> +<U00028158> /x8e/xa4/xe1/xd5 <CJK> +<U8EC4> /x8e/xa4/xe1/xd6 <CJK> +<U4874> /x8e/xa4/xe1/xd7 <CJK> +<U4873> /x8e/xa4/xe1/xd8 <CJK> +<U4872> /x8e/xa4/xe1/xd9 <CJK> +<U000283AA> /x8e/xa4/xe1/xda <CJK> +<U000283AB> /x8e/xa4/xe1/xdb <CJK> +<U00028436> /x8e/xa4/xe1/xdc <CJK> +<U0002844A> /x8e/xa4/xe1/xdd <CJK> +<U48B1> /x8e/xa4/xe1/xde <CJK> +<U908C> /x8e/xa4/xe1/xdf <CJK> +<U000287D6> /x8e/xa4/xe1/xe0 <CJK> +<U490E> /x8e/xa4/xe1/xe1 <CJK> +<U4911> /x8e/xa4/xe1/xe2 <CJK> +<U4910> /x8e/xa4/xe1/xe3 <CJK> +<U490F> /x8e/xa4/xe1/xe4 <CJK> +<U4912> /x8e/xa4/xe1/xe5 <CJK> +<U4949> /x8e/xa4/xe1/xe6 <CJK> +<U93C9> /x8e/xa4/xe1/xe7 <CJK> +<U494F> /x8e/xa4/xe1/xe8 <CJK> +<U494D> /x8e/xa4/xe1/xe9 <CJK> +<U00028B03> /x8e/xa4/xe1/xea <CJK> +<U00028ACF> /x8e/xa4/xe1/xeb <CJK> +<U4955> /x8e/xa4/xe1/xec <CJK> +<U00028D9F> /x8e/xa4/xe1/xed <CJK> +<U00028DA2> /x8e/xa4/xe1/xee <CJK> +<U0002902A> /x8e/xa4/xe1/xef <CJK> +<U0002902F> /x8e/xa4/xe1/xf0 <CJK> +<U00029144> /x8e/xa4/xe1/xf1 <CJK> +<U00029140> /x8e/xa4/xe1/xf2 <CJK> +<U4A2C> /x8e/xa4/xe1/xf3 <CJK> +<U4A2B> /x8e/xa4/xe1/xf4 <CJK> +<U00029311> /x8e/xa4/xe1/xf5 <CJK> +<U0002930F> /x8e/xa4/xe1/xf6 <CJK> +<U4A79> /x8e/xa4/xe1/xf7 <CJK> +<U0002930D> /x8e/xa4/xe1/xf8 <CJK> +<U00029307> /x8e/xa4/xe1/xf9 <CJK> +<U00029303> /x8e/xa4/xe1/xfa <CJK> +<U4A7A> /x8e/xa4/xe1/xfb <CJK> +<U97B0> /x8e/xa4/xe1/xfc <CJK> +<U4A99> /x8e/xa4/xe1/xfd <CJK> +<U4A9A> /x8e/xa4/xe1/xfe <CJK> +<U00029435> /x8e/xa4/xe2/xa1 <CJK> +<U4AAE> /x8e/xa4/xe2/xa2 <CJK> +<U4AAF> /x8e/xa4/xe2/xa3 <CJK> +<U00029504> /x8e/xa4/xe2/xa4 <CJK> +<U4AE4> /x8e/xa4/xe2/xa5 <CJK> +<U4AE1> /x8e/xa4/xe2/xa6 <CJK> +<U4ADE> /x8e/xa4/xe2/xa7 <CJK> +<U4AE6> /x8e/xa4/xe2/xa8 <CJK> +<U4ADF> /x8e/xa4/xe2/xa9 <CJK> +<U00029526> /x8e/xa4/xe2/xaa <CJK> +<U4AE7> /x8e/xa4/xe2/xab <CJK> +<U4AE2> /x8e/xa4/xe2/xac <CJK> +<U4AE0> /x8e/xa4/xe2/xad <CJK> +<U0002951E> /x8e/xa4/xe2/xae <CJK> +<U4AE5> /x8e/xa4/xe2/xaf <CJK> +<U985A> /x8e/xa4/xe2/xb0 <CJK> +<U0002960E> /x8e/xa4/xe2/xb1 <CJK> +<U4B18> /x8e/xa4/xe2/xb2 <CJK> +<U0002961D> /x8e/xa4/xe2/xb3 <CJK> +<U0002961E> /x8e/xa4/xe2/xb4 <CJK> +<U0002961F> /x8e/xa4/xe2/xb5 <CJK> +<U4B56> /x8e/xa4/xe2/xb6 <CJK> +<U00029788> /x8e/xa4/xe2/xb7 <CJK> +<U9946> /x8e/xa4/xe2/xb8 <CJK> +<U0002978D> /x8e/xa4/xe2/xb9 <CJK> +<U00029791> /x8e/xa4/xe2/xba <CJK> +<U00029780> /x8e/xa4/xe2/xbb <CJK> +<U4B6E> /x8e/xa4/xe2/xbc <CJK> +<U00029854> /x8e/xa4/xe2/xbd <CJK> +<U00029855> /x8e/xa4/xe2/xbe <CJK> +<U4B9D> /x8e/xa4/xe2/xbf <CJK> +<U4BA0> /x8e/xa4/xe2/xc0 <CJK> +<U4B9C> /x8e/xa4/xe2/xc1 <CJK> +<U00029925> /x8e/xa4/xe2/xc2 <CJK> +<U0002991A> /x8e/xa4/xe2/xc3 <CJK> +<U4BA1> /x8e/xa4/xe2/xc4 <CJK> +<U4BA2> /x8e/xa4/xe2/xc5 <CJK> +<U4B9F> /x8e/xa4/xe2/xc6 <CJK> +<U4BDF> /x8e/xa4/xe2/xc7 <CJK> +<U4BDE> /x8e/xa4/xe2/xc8 <CJK> +<U9AC3> /x8e/xa4/xe2/xc9 <CJK> +<U4BEA> /x8e/xa4/xe2/xca <CJK> +<U00029B88> /x8e/xa4/xe2/xcb <CJK> +<U4C06> /x8e/xa4/xe2/xcc <CJK> +<U00029B7A> /x8e/xa4/xe2/xcd <CJK> +<U4C04> /x8e/xa4/xe2/xce <CJK> +<U9B0F> /x8e/xa4/xe2/xcf <CJK> +<U00029B80> /x8e/xa4/xe2/xd0 <CJK> +<U00029D1E> /x8e/xa4/xe2/xd1 <CJK> +<U00029DFC> /x8e/xa4/xe2/xd2 <CJK> +<U00029E25> /x8e/xa4/xe2/xd3 <CJK> +<U4C5F> /x8e/xa4/xe2/xd4 <CJK> +<U9BF4> /x8e/xa4/xe2/xd5 <CJK> +<U9BFA> /x8e/xa4/xe2/xd6 <CJK> +<U4C5C> /x8e/xa4/xe2/xd7 <CJK> +<U00029E0B> /x8e/xa4/xe2/xd8 <CJK> +<U4C5E> /x8e/xa4/xe2/xd9 <CJK> +<U00029E06> /x8e/xa4/xe2/xda <CJK> +<U00029E04> /x8e/xa4/xe2/xdb <CJK> +<U9BDD> /x8e/xa4/xe2/xdc <CJK> +<U4C59> /x8e/xa4/xe2/xdd <CJK> +<U00029DF9> /x8e/xa4/xe2/xde <CJK> +<U00029E00> /x8e/xa4/xe2/xdf <CJK> +<U4C64> /x8e/xa4/xe2/xe0 <CJK> +<U4C5D> /x8e/xa4/xe2/xe1 <CJK> +<U4C62> /x8e/xa4/xe2/xe2 <CJK> +<U00029E02> /x8e/xa4/xe2/xe3 <CJK> +<U4C65> /x8e/xa4/xe2/xe4 <CJK> +<U00029E07> /x8e/xa4/xe2/xe5 <CJK> +<U9BED> /x8e/xa4/xe2/xe6 <CJK> +<U4C5B> /x8e/xa4/xe2/xe7 <CJK> +<U9BEF> /x8e/xa4/xe2/xe8 <CJK> +<U0002A0B5> /x8e/xa4/xe2/xe9 <CJK> +<U4CDD> /x8e/xa4/xe2/xea <CJK> +<U0002A087> /x8e/xa4/xe2/xeb <CJK> +<U4CDF> /x8e/xa4/xe2/xec <CJK> +<U0002A093> /x8e/xa4/xe2/xed <CJK> +<U4CE2> /x8e/xa4/xe2/xef <CJK> +<U0002A0BE> /x8e/xa4/xe2/xf0 <CJK> +<U0002A266> /x8e/xa4/xe2/xf1 <CJK> +<U4D27> /x8e/xa4/xe2/xf2 <CJK> +<U0002A2C7> /x8e/xa4/xe2/xf3 <CJK> +<U0002A2CF> /x8e/xa4/xe2/xf4 <CJK> +<U9E96> /x8e/xa4/xe2/xf5 <CJK> +<U4D3A> /x8e/xa4/xe2/xf6 <CJK> +<U4D3C> /x8e/xa4/xe2/xf7 <CJK> +<U0002A33D> /x8e/xa4/xe2/xf8 <CJK> +<U4D39> /x8e/xa4/xe2/xf9 <CJK> +<U0002A33C> /x8e/xa4/xe2/xfa <CJK> +<U0002A347> /x8e/xa4/xe2/xfb <CJK> +<U4D3D> /x8e/xa4/xe2/xfc <CJK> +<U4D3B> /x8e/xa4/xe2/xfd <CJK> +<U9EB3> /x8e/xa4/xe2/xfe <CJK> +<U4D4C> /x8e/xa4/xe3/xa1 <CJK> +<U0002A3C3> /x8e/xa4/xe3/xa2 <CJK> +<U4D68> /x8e/xa4/xe3/xa3 <CJK> +<U9EE2> /x8e/xa4/xe3/xa4 <CJK> +<U0002A51B> /x8e/xa4/xe3/xa5 <CJK> +<U4D80> /x8e/xa4/xe3/xa6 <CJK> +<U4D85> /x8e/xa4/xe3/xa7 <CJK> +<U0002A5C9> /x8e/xa4/xe3/xa8 <CJK> +<U4D95> /x8e/xa4/xe3/xa9 <CJK> +<U0002A5DD> /x8e/xa4/xe3/xaa <CJK> +<U4D96> /x8e/xa4/xe3/xab <CJK> +<U0002A693> /x8e/xa4/xe3/xac <CJK> +<U9F8F> /x8e/xa4/xe3/xad <CJK> +<U0002043D> /x8e/xa4/xe3/xae <CJK> +<U34A4> /x8e/xa4/xe3/xaf <CJK> +<U3512> /x8e/xa4/xe3/xb0 <CJK> +<U56B1> /x8e/xa4/xe3/xb1 <CJK> +<U3625> /x8e/xa4/xe3/xb2 <CJK> +<U000214E6> /x8e/xa4/xe3/xb3 <CJK> +<U5B41> /x8e/xa4/xe3/xb4 <CJK> +<U3737> /x8e/xa4/xe3/xb5 <CJK> +<U00021AF7> /x8e/xa4/xe3/xb6 <CJK> +<U00021FB0> /x8e/xa4/xe3/xb7 <CJK> +<U00021FAE> /x8e/xa4/xe3/xb8 <CJK> +<U3868> /x8e/xa4/xe3/xba <CJK> +<U3867> /x8e/xa4/xe3/xbb <CJK> +<U389E> /x8e/xa4/xe3/xbc <CJK> +<U0002259F> /x8e/xa4/xe3/xbd <CJK> +<U0002259E> /x8e/xa4/xe3/xbe <CJK> +<U00022930> /x8e/xa4/xe3/xbf <CJK> +<U39AA> /x8e/xa4/xe3/xc0 <CJK> +<U0002294F> /x8e/xa4/xe3/xc1 <CJK> +<U39A9> /x8e/xa4/xe3/xc2 <CJK> +<U39A4> /x8e/xa4/xe3/xc3 <CJK> +<U00022927> /x8e/xa4/xe3/xc4 <CJK> +<U00022951> /x8e/xa4/xe3/xc5 <CJK> +<U3A71> /x8e/xa4/xe3/xc6 <CJK> +<U3A6F> /x8e/xa4/xe3/xc7 <CJK> +<U00022E51> /x8e/xa4/xe3/xc8 <CJK> +<U00022E54> /x8e/xa4/xe3/xc9 <CJK> +<U00022E56> /x8e/xa4/xe3/xca <CJK> +<U00023027> /x8e/xa4/xe3/xcb <CJK> +<U3AAD> /x8e/xa4/xe3/xcc <CJK> +<U00023024> /x8e/xa4/xe3/xcd <CJK> +<U6AF6> /x8e/xa4/xe3/xce <CJK> +<U3C0C> /x8e/xa4/xe3/xcf <CJK> +<U6AF2> /x8e/xa4/xe3/xd0 <CJK> +<U3C0B> /x8e/xa4/xe3/xd1 <CJK> +<U000237EC> /x8e/xa4/xe3/xd2 <CJK> +<U000237C4> /x8e/xa4/xe3/xd3 <CJK> +<U3C0F> /x8e/xa4/xe3/xd4 <CJK> +<U3C79> /x8e/xa4/xe3/xd5 <CJK> +<U000240F8> /x8e/xa4/xe3/xd6 <CJK> +<U000240F6> /x8e/xa4/xe3/xd7 <CJK> +<U000240F7> /x8e/xa4/xe3/xd8 <CJK> +<U000240ED> /x8e/xa4/xe3/xd9 <CJK> +<U3D8D> /x8e/xa4/xe3/xda <CJK> +<U3D8F> /x8e/xa4/xe3/xdb <CJK> +<U000240F4> /x8e/xa4/xe3/xdc <CJK> +<U000240EF> /x8e/xa4/xe3/xdd <CJK> +<U3D8E> /x8e/xa4/xe3/xde <CJK> +<U3E0C> /x8e/xa4/xe3/xdf <CJK> +<U0002447F> /x8e/xa4/xe3/xe0 <CJK> +<U000244A2> /x8e/xa4/xe3/xe1 <CJK> +<U0002447E> /x8e/xa4/xe3/xe2 <CJK> +<U3EA6> /x8e/xa4/xe3/xe3 <CJK> +<U000248C5> /x8e/xa4/xe3/xe4 <CJK> +<U3EA3> /x8e/xa4/xe3/xe5 <CJK> +<U3EA4> /x8e/xa4/xe3/xe6 <CJK> +<U3EA5> /x8e/xa4/xe3/xe7 <CJK> +<U7588> /x8e/xa4/xe3/xe8 <CJK> +<U3F6E> /x8e/xa4/xe3/xe9 <CJK> +<U00024EF1> /x8e/xa4/xe3/xea <CJK> +<U00024EF2> /x8e/xa4/xe3/xeb <CJK> +<U3FFA> /x8e/xa4/xe3/xec <CJK> +<U0002502F> /x8e/xa4/xe3/xed <CJK> +<U407C> /x8e/xa4/xe3/xee <CJK> +<U407E> /x8e/xa4/xe3/xef <CJK> +<U407B> /x8e/xa4/xe3/xf0 <CJK> +<U407D> /x8e/xa4/xe3/xf1 <CJK> +<U00025323> /x8e/xa4/xe3/xf2 <CJK> +<U00025329> /x8e/xa4/xe3/xf3 <CJK> +<U408D> /x8e/xa4/xe3/xf4 <CJK> +<U40F4> /x8e/xa4/xe3/xf5 <CJK> +<U40F3> /x8e/xa4/xe3/xf6 <CJK> +<U0002571B> /x8e/xa4/xe3/xf7 <CJK> +<U000258EB> /x8e/xa4/xe3/xf8 <CJK> +<U4189> /x8e/xa4/xe3/xf9 <CJK> +<U000258EA> /x8e/xa4/xe3/xfa <CJK> +<U00025A33> /x8e/xa4/xe3/xfb <CJK> +<U41C0> /x8e/xa4/xe3/xfc <CJK> +<U00025D63> /x8e/xa4/xe3/xfd <CJK> +<U4265> /x8e/xa4/xe3/xfe <CJK> +<U00025D92> /x8e/xa4/xe4/xa1 <CJK> +<U00025D65> /x8e/xa4/xe4/xa2 <CJK> +<U42AD> /x8e/xa4/xe4/xa3 <CJK> +<U4325> /x8e/xa4/xe4/xa4 <CJK> +<U000261A0> /x8e/xa4/xe4/xa5 <CJK> +<U0002625E> /x8e/xa4/xe4/xa7 <CJK> +<U43C9> /x8e/xa4/xe4/xa8 <CJK> +<U000268AA> /x8e/xa4/xe4/xa9 <CJK> +<U444A> /x8e/xa4/xe4/xaa <CJK> +<U000268A9> /x8e/xa4/xe4/xab <CJK> +<U8267> /x8e/xa4/xe4/xac <CJK> +<U4489> /x8e/xa4/xe4/xad <CJK> +<U0002709C> /x8e/xa4/xe4/xae <CJK> +<U4566> /x8e/xa4/xe4/xaf <CJK> +<U4570> /x8e/xa4/xe4/xb0 <CJK> +<U00027092> /x8e/xa4/xe4/xb1 <CJK> +<U456D> /x8e/xa4/xe4/xb2 <CJK> +<U4569> /x8e/xa4/xe4/xb3 <CJK> +<U4567> /x8e/xa4/xe4/xb4 <CJK> +<U00027086> /x8e/xa4/xe4/xb5 <CJK> +<U4572> /x8e/xa4/xe4/xb6 <CJK> +<U860E> /x8e/xa4/xe4/xb7 <CJK> +<U456E> /x8e/xa4/xe4/xb8 <CJK> +<U00027083> /x8e/xa4/xe4/xb9 <CJK> +<U459C> /x8e/xa4/xe4/xba <CJK> +<U45FC> /x8e/xa4/xe4/xbb <CJK> +<U45FD> /x8e/xa4/xe4/xbc <CJK> +<U4604> /x8e/xa4/xe4/xbd <CJK> +<U45FF> /x8e/xa4/xe4/xbe <CJK> +<U45FE> /x8e/xa4/xe4/xc0 <CJK> +<U4600> /x8e/xa4/xe4/xc1 <CJK> +<U000274CE> /x8e/xa4/xe4/xc2 <CJK> +<U4666> /x8e/xa4/xe4/xc3 <CJK> +<U4669> /x8e/xa4/xe4/xc4 <CJK> +<U00027793> /x8e/xa4/xe4/xc5 <CJK> +<U46AA> /x8e/xa4/xe4/xc6 <CJK> +<U46AB> /x8e/xa4/xe4/xc7 <CJK> +<U4717> /x8e/xa4/xe4/xc8 <CJK> +<U00027B2E> /x8e/xa4/xe4/xc9 <CJK> +<U00027B27> /x8e/xa4/xe4/xca <CJK> +<U00027B28> /x8e/xa4/xe4/xcb <CJK> +<U4715> /x8e/xa4/xe4/xcc <CJK> +<U8B5E> /x8e/xa4/xe4/xcd <CJK> +<U4712> /x8e/xa4/xe4/xce <CJK> +<U8D0E> /x8e/xa4/xe4/xcf <CJK> +<U00027E18> /x8e/xa4/xe4/xd0 <CJK> +<U00027E16> /x8e/xa4/xe4/xd1 <CJK> +<U00027F8D> /x8e/xa4/xe4/xd2 <CJK> +<U47CA> /x8e/xa4/xe4/xd3 <CJK> +<U00027F8E> /x8e/xa4/xe4/xd4 <CJK> +<U47C9> /x8e/xa4/xe4/xd5 <CJK> +<U47CB> /x8e/xa4/xe4/xd6 <CJK> +<U00027F90> /x8e/xa4/xe4/xd7 <CJK> +<U00027F8F> /x8e/xa4/xe4/xd8 <CJK> +<U00028181> /x8e/xa4/xe4/xd9 <CJK> +<U4829> /x8e/xa4/xe4/xda <CJK> +<U4828> /x8e/xa4/xe4/xdb <CJK> +<U0002818A> /x8e/xa4/xe4/xdc <CJK> +<U0002818C> /x8e/xa4/xe4/xdd <CJK> +<U0002828D> /x8e/xa4/xe4/xde <CJK> +<U4840> /x8e/xa4/xe4/xdf <CJK> +<U4875> /x8e/xa4/xe4/xe0 <CJK> +<U4876> /x8e/xa4/xe4/xe1 <CJK> +<U000283B2> /x8e/xa4/xe4/xe2 <CJK> +<U4888> /x8e/xa4/xe4/xe3 <CJK> +<U000287D9> /x8e/xa4/xe4/xe4 <CJK> +<U91B6> /x8e/xa4/xe4/xe5 <CJK> +<U4957> /x8e/xa4/xe4/xe6 <CJK> +<U9401> /x8e/xa4/xe4/xe7 <CJK> +<U00028B0D> /x8e/xa4/xe4/xe8 <CJK> +<U495F> /x8e/xa4/xe4/xe9 <CJK> +<U00028B13> /x8e/xa4/xe4/xea <CJK> +<U941D> /x8e/xa4/xe4/xeb <CJK> +<U4958> /x8e/xa4/xe4/xec <CJK> +<U495B> /x8e/xa4/xe4/xed <CJK> +<U00028B1B> /x8e/xa4/xe4/xee <CJK> +<U942F> /x8e/xa4/xe4/xef <CJK> +<U00028DAC> /x8e/xa4/xe4/xf0 <CJK> +<U49B3> /x8e/xa4/xe4/xf1 <CJK> +<U00028DB3> /x8e/xa4/xe4/xf2 <CJK> +<U49EF> /x8e/xa4/xe4/xf3 <CJK> +<U0002915E> /x8e/xa4/xe4/xf4 <CJK> +<U4A30> /x8e/xa4/xe4/xf5 <CJK> +<U00029160> /x8e/xa4/xe4/xf6 <CJK> +<U00029168> /x8e/xa4/xe4/xf7 <CJK> +<U00029163> /x8e/xa4/xe4/xf8 <CJK> +<U00029169> /x8e/xa4/xe4/xf9 <CJK> +<U00029167> /x8e/xa4/xe4/xfa <CJK> +<U4A41> /x8e/xa4/xe4/xfb <CJK> +<U4A4B> /x8e/xa4/xe4/xfc <CJK> +<U00029328> /x8e/xa4/xe4/xfd <CJK> +<U4A7D> /x8e/xa4/xe4/xfe <CJK> +<U0002932E> /x8e/xa4/xe5/xa1 <CJK> +<U00029330> /x8e/xa4/xe5/xa2 <CJK> +<U4A7C> /x8e/xa4/xe5/xa3 <CJK> +<U00029326> /x8e/xa4/xe5/xa4 <CJK> +<U00029331> /x8e/xa4/xe5/xa5 <CJK> +<U00029341> /x8e/xa4/xe5/xa6 <CJK> +<U97E0> /x8e/xa4/xe5/xa7 <CJK> +<U000293DA> /x8e/xa4/xe5/xa8 <CJK> +<U97DB> /x8e/xa4/xe5/xa9 <CJK> +<U0002940B> /x8e/xa4/xe5/xab <CJK> +<U9861> /x8e/xa4/xe5/xac <CJK> +<U00029534> /x8e/xa4/xe5/xad <CJK> +<U00029533> /x8e/xa4/xe5/xae <CJK> +<U4AE8> /x8e/xa4/xe5/xaf <CJK> +<U4AEA> /x8e/xa4/xe5/xb0 <CJK> +<U4AE9> /x8e/xa4/xe5/xb1 <CJK> +<U00029539> /x8e/xa4/xe5/xb2 <CJK> +<U0002953B> /x8e/xa4/xe5/xb3 <CJK> +<U00029540> /x8e/xa4/xe5/xb4 <CJK> +<U00029630> /x8e/xa4/xe5/xb5 <CJK> +<U4B1B> /x8e/xa4/xe5/xb6 <CJK> +<U00029632> /x8e/xa4/xe5/xb7 <CJK> +<U00029637> /x8e/xa4/xe5/xb8 <CJK> +<U4B55> /x8e/xa4/xe5/xb9 <CJK> +<U994A> /x8e/xa4/xe5/xba <CJK> +<U4B59> /x8e/xa4/xe5/xbb <CJK> +<U4B58> /x8e/xa4/xe5/xbc <CJK> +<U00029781> /x8e/xa4/xe5/xbd <CJK> +<U0002979F> /x8e/xa4/xe5/xbe <CJK> +<U000297A7> /x8e/xa4/xe5/xbf <CJK> +<U4BA4> /x8e/xa4/xe5/xc0 <CJK> +<U4BA3> /x8e/xa4/xe5/xc1 <CJK> +<U00029944> /x8e/xa4/xe5/xc2 <CJK> +<U00029947> /x8e/xa4/xe5/xc3 <CJK> +<U00029948> /x8e/xa4/xe5/xc4 <CJK> +<U0002993D> /x8e/xa4/xe5/xc5 <CJK> +<U9A33> /x8e/xa4/xe5/xc6 <CJK> +<U4BA7> /x8e/xa4/xe5/xc7 <CJK> +<U00029949> /x8e/xa4/xe5/xc8 <CJK> +<U4BE0> /x8e/xa4/xe5/xc9 <CJK> +<U00029A80> /x8e/xa4/xe5/xca <CJK> +<U00029BA0> /x8e/xa4/xe5/xcb <CJK> +<U00029B9D> /x8e/xa4/xe5/xcc <CJK> +<U4C08> /x8e/xa4/xe5/xcd <CJK> +<U4C0A> /x8e/xa4/xe5/xce <CJK> +<U4C09> /x8e/xa4/xe5/xcf <CJK> +<U00029B9C> /x8e/xa4/xe5/xd0 <CJK> +<U00029C47> /x8e/xa4/xe5/xd1 <CJK> +<U00029D07> /x8e/xa4/xe5/xd2 <CJK> +<U4C71> /x8e/xa4/xe5/xd3 <CJK> +<U9C0F> /x8e/xa4/xe5/xd4 <CJK> +<U4C6C> /x8e/xa4/xe5/xd5 <CJK> +<U00029E49> /x8e/xa4/xe5/xd6 <CJK> +<U9C11> /x8e/xa4/xe5/xd7 <CJK> +<U00029E44> /x8e/xa4/xe5/xd8 <CJK> +<U9C03> /x8e/xa4/xe5/xd9 <CJK> +<U9C01> /x8e/xa4/xe5/xda <CJK> +<U4C6E> /x8e/xa4/xe5/xdb <CJK> +<U00029EDF> /x8e/xa4/xe5/xdc <CJK> +<U9C16> /x8e/xa4/xe5/xdd <CJK> +<U00029E4C> /x8e/xa4/xe5/xde <CJK> +<U00029E4F> /x8e/xa4/xe5/xe0 <CJK> +<U4CE0> /x8e/xa4/xe5/xe1 <CJK> +<U4CEE> /x8e/xa4/xe5/xe2 <CJK> +<U0002A0C1> /x8e/xa4/xe5/xe3 <CJK> +<U4CEB> /x8e/xa4/xe5/xe4 <CJK> +<U0002A0B9> /x8e/xa4/xe5/xe5 <CJK> +<U0002A0CB> /x8e/xa4/xe5/xe6 <CJK> +<U0002A0CF> /x8e/xa4/xe5/xe7 <CJK> +<U0002A0C4> /x8e/xa4/xe5/xe8 <CJK> +<U9D93> /x8e/xa4/xe5/xe9 <CJK> +<U4CEA> /x8e/xa4/xe5/xea <CJK> +<U4CEF> /x8e/xa4/xe5/xeb <CJK> +<U4CE7> /x8e/xa4/xe5/xec <CJK> +<U0002A0CA> /x8e/xa4/xe5/xed <CJK> +<U0002A0C3> /x8e/xa4/xe5/xee <CJK> +<U0002A2D0> /x8e/xa4/xe5/xef <CJK> +<U0002A351> /x8e/xa4/xe5/xf0 <CJK> +<U4D48> /x8e/xa4/xe5/xf1 <CJK> +<U4D49> /x8e/xa4/xe5/xf2 <CJK> +<U0002A3A8> /x8e/xa4/xe5/xf3 <CJK> +<U0002A3C7> /x8e/xa4/xe5/xf4 <CJK> +<U0002A3C6> /x8e/xa4/xe5/xf5 <CJK> +<U4D4D> /x8e/xa4/xe5/xf6 <CJK> +<U0002A3CA> /x8e/xa4/xe5/xf7 <CJK> +<U0002A402> /x8e/xa4/xe5/xf8 <CJK> +<U4D55> /x8e/xa4/xe5/xf9 <CJK> +<U0002A45D> /x8e/xa4/xe5/xfa <CJK> +<U0002A45A> /x8e/xa4/xe5/xfb <CJK> +<U4D6A> /x8e/xa4/xe5/xfc <CJK> +<U4D6C> /x8e/xa4/xe5/xfd <CJK> +<U0002A459> /x8e/xa4/xe5/xfe <CJK> +<U4D6B> /x8e/xa4/xe6/xa1 <CJK> +<U0002A4CC> /x8e/xa4/xe6/xa2 <CJK> +<U0002A51C> /x8e/xa4/xe6/xa3 <CJK> +<U0002A5CC> /x8e/xa4/xe6/xa4 <CJK> +<U4D98> /x8e/xa4/xe6/xa5 <CJK> +<U4D99> /x8e/xa4/xe6/xa6 <CJK> +<U4D97> /x8e/xa4/xe6/xa7 <CJK> +<U0002A5E8> /x8e/xa4/xe6/xa8 <CJK> +<U0002A5EC> /x8e/xa4/xe6/xa9 <CJK> +<U0002A5EA> /x8e/xa4/xe6/xaa <CJK> +<U0002A6AD> /x8e/xa4/xe6/xab <CJK> +<U0002A6B0> /x8e/xa4/xe6/xac <CJK> +<U0002045F> /x8e/xa4/xe6/xad <CJK> +<U00020458> /x8e/xa4/xe6/xae <CJK> +<U00020457> /x8e/xa4/xe6/xaf <CJK> +<U535B> /x8e/xa4/xe6/xb0 <CJK> +<U00020B93> /x8e/xa4/xe6/xb1 <CJK> +<U3616> /x8e/xa4/xe6/xb2 <CJK> +<U0002113B> /x8e/xa4/xe6/xb3 <CJK> +<U56BF> /x8e/xa4/xe6/xb4 <CJK> +<U00021134> /x8e/xa4/xe6/xb5 <CJK> +<U000214F2> /x8e/xa4/xe6/xb6 <CJK> +<U3739> /x8e/xa4/xe6/xb7 <CJK> +<U00021AFD> /x8e/xa4/xe6/xb8 <CJK> +<U00021C1D> /x8e/xa4/xe6/xb9 <CJK> +<U3825> /x8e/xa4/xe6/xba <CJK> +<U5DCE> /x8e/xa4/xe6/xbb <CJK> +<U00022304> /x8e/xa4/xe6/xbc <CJK> +<U00022448> /x8e/xa4/xe6/xbd <CJK> +<U00022958> /x8e/xa4/xe6/xbe <CJK> +<U00022E4F> /x8e/xa4/xe6/xbf <CJK> +<U3A74> /x8e/xa4/xe6/xc0 <CJK> +<U00022E6E> /x8e/xa4/xe6/xc1 <CJK> +<U00022E72> /x8e/xa4/xe6/xc2 <CJK> +<U3AAE> /x8e/xa4/xe6/xc3 <CJK> +<U0002302E> /x8e/xa4/xe6/xc4 <CJK> +<U000237FC> /x8e/xa4/xe6/xc5 <CJK> +<U000237F4> /x8e/xa4/xe6/xc6 <CJK> +<U00023C36> /x8e/xa4/xe6/xc7 <CJK> +<U0002410E> /x8e/xa4/xe6/xc8 <CJK> +<U3D92> /x8e/xa4/xe6/xc9 <CJK> +<U3D94> /x8e/xa4/xe6/xca <CJK> +<U00024114> /x8e/xa4/xe6/xcb <CJK> +<U3D95> /x8e/xa4/xe6/xcc <CJK> +<U00024119> /x8e/xa4/xe6/xcd <CJK> +<U3E0D> /x8e/xa4/xe6/xce <CJK> +<U000244A6> /x8e/xa4/xe6/xcf <CJK> +<U3E25> /x8e/xa4/xe6/xd0 <CJK> +<U00024AC9> /x8e/xa4/xe6/xd1 <CJK> +<U00024AC0> /x8e/xa4/xe6/xd2 <CJK> +<U00024ACC> /x8e/xa4/xe6/xd3 <CJK> +<U00024B1B> /x8e/xa4/xe6/xd4 <CJK> +<U00024BAA> /x8e/xa4/xe6/xd5 <CJK> +<U00024BA8> /x8e/xa4/xe6/xd6 <CJK> +<U00024F03> /x8e/xa4/xe6/xd7 <CJK> +<U3FD5> /x8e/xa4/xe6/xd8 <CJK> +<U3FD6> /x8e/xa4/xe6/xd9 <CJK> +<U76AC> /x8e/xa4/xe6/xda <CJK> +<U3FE8> /x8e/xa4/xe6/xdb <CJK> +<U00025035> /x8e/xa4/xe6/xdc <CJK> +<U407F> /x8e/xa4/xe6/xdd <CJK> +<U77D2> /x8e/xa4/xe6/xde <CJK> +<U40F5> /x8e/xa4/xe6/xdf <CJK> +<U40F6> /x8e/xa4/xe6/xe0 <CJK> +<U40F7> /x8e/xa4/xe6/xe1 <CJK> +<U000255D9> /x8e/xa4/xe6/xe2 <CJK> +<U4124> /x8e/xa4/xe6/xe3 <CJK> +<U418D> /x8e/xa4/xe6/xe4 <CJK> +<U418A> /x8e/xa4/xe6/xe5 <CJK> +<U00025A3F> /x8e/xa4/xe6/xe6 <CJK> +<U00025A3D> /x8e/xa4/xe6/xe7 <CJK> +<U426C> /x8e/xa4/xe6/xe8 <CJK> +<U4266> /x8e/xa4/xe6/xe9 <CJK> +<U426A> /x8e/xa4/xe6/xea <CJK> +<U00025D8B> /x8e/xa4/xe6/xeb <CJK> +<U4267> /x8e/xa4/xe6/xec <CJK> +<U426D> /x8e/xa4/xe6/xed <CJK> +<U4268> /x8e/xa4/xe6/xee <CJK> +<U7C52> /x8e/xa4/xe6/xef <CJK> +<U00025D68> /x8e/xa4/xe6/xf0 <CJK> +<U00025D8A> /x8e/xa4/xe6/xf1 <CJK> +<U00025F58> /x8e/xa4/xe6/xf2 <CJK> +<U00025F57> /x8e/xa4/xe6/xf3 <CJK> +<U000261CE> /x8e/xa4/xe6/xf4 <CJK> +<U000261BC> /x8e/xa4/xe6/xf5 <CJK> +<U000261C0> /x8e/xa4/xe6/xf6 <CJK> +<U000261C1> /x8e/xa4/xe6/xf7 <CJK> +<U000261BF> /x8e/xa4/xe6/xf8 <CJK> +<U000261AB> /x8e/xa4/xe6/xf9 <CJK> +<U0002625F> /x8e/xa4/xe6/xfa <CJK> +<U4365> /x8e/xa4/xe6/xfb <CJK> +<U000264A6> /x8e/xa4/xe6/xfc <CJK> +<U439A> /x8e/xa4/xe6/xfd <CJK> +<U00026529> /x8e/xa4/xe6/xfe <CJK> +<U43B1> /x8e/xa4/xe7/xa1 <CJK> +<U444B> /x8e/xa4/xe7/xa2 <CJK> +<U444D> /x8e/xa4/xe7/xa3 <CJK> +<U444C> /x8e/xa4/xe7/xa4 <CJK> +<U444E> /x8e/xa4/xe7/xa5 <CJK> +<U000268B8> /x8e/xa4/xe7/xa6 <CJK> +<U4573> /x8e/xa4/xe7/xa7 <CJK> +<U4575> /x8e/xa4/xe7/xa8 <CJK> +<U000270DD> /x8e/xa4/xe7/xa9 <CJK> +<U000270D6> /x8e/xa4/xe7/xaa <CJK> +<U000270D5> /x8e/xa4/xe7/xac <CJK> +<U000270E7> /x8e/xa4/xe7/xad <CJK> +<U000270D8> /x8e/xa4/xe7/xae <CJK> +<U000274EC> /x8e/xa4/xe7/xaf <CJK> +<U4603> /x8e/xa4/xe7/xb0 <CJK> +<U00027500> /x8e/xa4/xe7/xb1 <CJK> +<U00027507> /x8e/xa4/xe7/xb2 <CJK> +<U000274FD> /x8e/xa4/xe7/xb3 <CJK> +<U000274F1> /x8e/xa4/xe7/xb4 <CJK> +<U000274FF> /x8e/xa4/xe7/xb5 <CJK> +<U000277AA> /x8e/xa4/xe7/xb6 <CJK> +<U000277B0> /x8e/xa4/xe7/xb7 <CJK> +<U00027B48> /x8e/xa4/xe7/xb8 <CJK> +<U471E> /x8e/xa4/xe7/xb9 <CJK> +<U00027B53> /x8e/xa4/xe7/xba <CJK> +<U8B73> /x8e/xa4/xe7/xbb <CJK> +<U00027B4D> /x8e/xa4/xe7/xbc <CJK> +<U4719> /x8e/xa4/xe7/xbd <CJK> +<U471C> /x8e/xa4/xe7/xbe <CJK> +<U471A> /x8e/xa4/xe7/xbf <CJK> +<U471D> /x8e/xa4/xe7/xc0 <CJK> +<U8B76> /x8e/xa4/xe7/xc1 <CJK> +<U00027B43> /x8e/xa4/xe7/xc2 <CJK> +<U00027B50> /x8e/xa4/xe7/xc3 <CJK> +<U4743> /x8e/xa4/xe7/xc4 <CJK> +<U4752> /x8e/xa4/xe7/xc5 <CJK> +<U00027C8C> /x8e/xa4/xe7/xc6 <CJK> +<U00027E27> /x8e/xa4/xe7/xc7 <CJK> +<U4795> /x8e/xa4/xe7/xc8 <CJK> +<U00027F99> /x8e/xa4/xe7/xc9 <CJK> +<U47CC> /x8e/xa4/xe7/xca <CJK> +<U000281B1> /x8e/xa4/xe7/xcb <CJK> +<U482B> /x8e/xa4/xe7/xcc <CJK> +<U000281B0> /x8e/xa4/xe7/xcd <CJK> +<U000281AA> /x8e/xa4/xe7/xce <CJK> +<U000281AC> /x8e/xa4/xe7/xcf <CJK> +<U482A> /x8e/xa4/xe7/xd0 <CJK> +<U8EC7> /x8e/xa4/xe7/xd1 <CJK> +<U4877> /x8e/xa4/xe7/xd2 <CJK> +<U000283C8> /x8e/xa4/xe7/xd3 <CJK> +<U000283CA> /x8e/xa4/xe7/xd4 <CJK> +<U00028642> /x8e/xa4/xe7/xd5 <CJK> +<U000287E0> /x8e/xa4/xe7/xd6 <CJK> +<U000288E7> /x8e/xa4/xe7/xd7 <CJK> +<U000288E8> /x8e/xa4/xe7/xd8 <CJK> +<U000288E6> /x8e/xa4/xe7/xd9 <CJK> +<U4913> /x8e/xa4/xe7/xda <CJK> +<U4914> /x8e/xa4/xe7/xdb <CJK> +<U9434> /x8e/xa4/xe7/xdc <CJK> +<U00028B5B> /x8e/xa4/xe7/xdd <CJK> +<U00028B56> /x8e/xa4/xe7/xde <CJK> +<U495D> /x8e/xa4/xe7/xdf <CJK> +<U00028B5A> /x8e/xa4/xe7/xe0 <CJK> +<U4960> /x8e/xa4/xe7/xe1 <CJK> +<U943E> /x8e/xa4/xe7/xe2 <CJK> +<U4962> /x8e/xa4/xe7/xe3 <CJK> +<U00028CB8> /x8e/xa4/xe7/xe4 <CJK> +<U00028DC5> /x8e/xa4/xe7/xe5 <CJK> +<U49B2> /x8e/xa4/xe7/xe6 <CJK> +<U49F0> /x8e/xa4/xe7/xe7 <CJK> +<U00029048> /x8e/xa4/xe7/xe8 <CJK> +<U0002917D> /x8e/xa4/xe7/xe9 <CJK> +<U0002917C> /x8e/xa4/xe7/xea <CJK> +<U00029181> /x8e/xa4/xe7/xeb <CJK> +<U00029182> /x8e/xa4/xe7/xec <CJK> +<U00029162> /x8e/xa4/xe7/xed <CJK> +<U4A4C> /x8e/xa4/xe7/xee <CJK> +<U00029345> /x8e/xa4/xe7/xef <CJK> +<U4A82> /x8e/xa4/xe7/xf0 <CJK> +<U97BC> /x8e/xa4/xe7/xf1 <CJK> +<U4A81> /x8e/xa4/xe7/xf2 <CJK> +<U4A9B> /x8e/xa4/xe7/xf3 <CJK> +<U000293E3> /x8e/xa4/xe7/xf4 <CJK> +<U4AA4> /x8e/xa4/xe7/xf5 <CJK> +<U4AEE> /x8e/xa4/xe7/xf6 <CJK> +<U4AEC> /x8e/xa4/xe7/xf7 <CJK> +<U00029550> /x8e/xa4/xe7/xf8 <CJK> +<U4AED> /x8e/xa4/xe7/xf9 <CJK> +<U0002954F> /x8e/xa4/xe7/xfa <CJK> +<U4AF0> /x8e/xa4/xe7/xfb <CJK> +<U4AEF> /x8e/xa4/xe7/xfc <CJK> +<U00029639> /x8e/xa4/xe7/xfd <CJK> +<U4B1D> /x8e/xa4/xe7/xfe <CJK> +<U0002963A> /x8e/xa4/xe8/xa1 <CJK> +<U4B60> /x8e/xa4/xe8/xa2 <CJK> +<U4B5E> /x8e/xa4/xe8/xa3 <CJK> +<U4B5D> /x8e/xa4/xe8/xa4 <CJK> +<U000297C1> /x8e/xa4/xe8/xa5 <CJK> +<U0002994E> /x8e/xa4/xe8/xa6 <CJK> +<U0002996E> /x8e/xa4/xe8/xa7 <CJK> +<U4BB1> /x8e/xa4/xe8/xa8 <CJK> +<U4BAB> /x8e/xa4/xe8/xa9 <CJK> +<U4BAC> /x8e/xa4/xe8/xaa <CJK> +<U4BAD> /x8e/xa4/xe8/xab <CJK> +<U00029971> /x8e/xa4/xe8/xac <CJK> +<U4BAE> /x8e/xa4/xe8/xad <CJK> +<U00029A8C> /x8e/xa4/xe8/xae <CJK> +<U00029A89> /x8e/xa4/xe8/xaf <CJK> +<U4BE2> /x8e/xa4/xe8/xb0 <CJK> +<U00029AE5> /x8e/xa4/xe8/xb1 <CJK> +<U00029BB3> /x8e/xa4/xe8/xb2 <CJK> +<U00029BB6> /x8e/xa4/xe8/xb3 <CJK> +<U00029BB4> /x8e/xa4/xe8/xb4 <CJK> +<U00029C4D> /x8e/xa4/xe8/xb5 <CJK> +<U9B39> /x8e/xa4/xe8/xb6 <CJK> +<U00029D13> /x8e/xa4/xe8/xb7 <CJK> +<U00029E78> /x8e/xa4/xe8/xb8 <CJK> +<U9C2A> /x8e/xa4/xe8/xb9 <CJK> +<U4C7B> /x8e/xa4/xe8/xba <CJK> +<U9C26> /x8e/xa4/xe8/xbb <CJK> +<U4C78> /x8e/xa4/xe8/xbc <CJK> +<U4C75> /x8e/xa4/xe8/xbd <CJK> +<U9C27> /x8e/xa4/xe8/xbe <CJK> +<U00029E72> /x8e/xa4/xe8/xbf <CJK> +<U4CF2> /x8e/xa4/xe8/xc0 <CJK> +<U4CF4> /x8e/xa4/xe8/xc1 <CJK> +<U4CF3> /x8e/xa4/xe8/xc2 <CJK> +<U9DC0> /x8e/xa4/xe8/xc3 <CJK> +<U9DC9> /x8e/xa4/xe8/xc4 <CJK> +<U0002A275> /x8e/xa4/xe8/xc5 <CJK> +<U0002A2DA> /x8e/xa4/xe8/xc6 <CJK> +<U0002A2D7> /x8e/xa4/xe8/xc7 <CJK> +<U4D3F> /x8e/xa4/xe8/xc8 <CJK> +<U4D3E> /x8e/xa4/xe8/xc9 <CJK> +<U4D40> /x8e/xa4/xe8/xca <CJK> +<U4D4E> /x8e/xa4/xe8/xcb <CJK> +<U4D57> /x8e/xa4/xe8/xcc <CJK> +<U4D59> /x8e/xa4/xe8/xcd <CJK> +<U4D58> /x8e/xa4/xe8/xce <CJK> +<U4D56> /x8e/xa4/xe8/xcf <CJK> +<U0002A469> /x8e/xa4/xe8/xd0 <CJK> +<U0002A467> /x8e/xa4/xe8/xd1 <CJK> +<U4D6E> /x8e/xa4/xe8/xd2 <CJK> +<U0002A466> /x8e/xa4/xe8/xd3 <CJK> +<U0002A46F> /x8e/xa4/xe8/xd4 <CJK> +<U0002A471> /x8e/xa4/xe8/xd5 <CJK> +<U9EEC> /x8e/xa4/xe8/xd6 <CJK> +<U0002A4CF> /x8e/xa4/xe8/xd7 <CJK> +<U0002A523> /x8e/xa4/xe8/xd8 <CJK> +<U4D81> /x8e/xa4/xe8/xd9 <CJK> +<U4D86> /x8e/xa4/xe8/xda <CJK> +<U0002A5A5> /x8e/xa4/xe8/xdb <CJK> +<U4D8F> /x8e/xa4/xe8/xdc <CJK> +<U0002A5FE> /x8e/xa4/xe8/xdd <CJK> +<U0002A5FB> /x8e/xa4/xe8/xde <CJK> +<U0002A5FD> /x8e/xa4/xe8/xdf <CJK> +<U9F68> /x8e/xa4/xe8/xe0 <CJK> +<U4D9B> /x8e/xa4/xe8/xe1 <CJK> +<U4DB1> /x8e/xa4/xe8/xe2 <CJK> +<U4DB3> /x8e/xa4/xe8/xe3 <CJK> +<U0002116D> /x8e/xa4/xe8/xe4 <CJK> +<U373A> /x8e/xa4/xe8/xe5 <CJK> +<U00021B05> /x8e/xa4/xe8/xe6 <CJK> +<U00021C20> /x8e/xa4/xe8/xe7 <CJK> +<U3827> /x8e/xa4/xe8/xe8 <CJK> +<U00021FC8> /x8e/xa4/xe8/xe9 <CJK> +<U00021FC9> /x8e/xa4/xe8/xea <CJK> +<U386A> /x8e/xa4/xe8/xeb <CJK> +<U39AC> /x8e/xa4/xe8/xec <CJK> +<U00023127> /x8e/xa4/xe8/xed <CJK> +<U3C18> /x8e/xa4/xe8/xee <CJK> +<U0002381E> /x8e/xa4/xe8/xef <CJK> +<U00023936> /x8e/xa4/xe8/xf0 <CJK> +<U3C4C> /x8e/xa4/xe8/xf1 <CJK> +<U0002413D> /x8e/xa4/xe8/xf2 <CJK> +<U3D96> /x8e/xa4/xe8/xf3 <CJK> +<U000248D7> /x8e/xa4/xe8/xf4 <CJK> +<U3F4A> /x8e/xa4/xe8/xf5 <CJK> +<U00024BAD> /x8e/xa4/xe8/xf6 <CJK> +<U00024D00> /x8e/xa4/xe8/xf7 <CJK> +<U4081> /x8e/xa4/xe8/xf8 <CJK> +<U0002533A> /x8e/xa4/xe8/xf9 <CJK> +<U4083> /x8e/xa4/xe8/xfa <CJK> +<U40F9> /x8e/xa4/xe8/xfb <CJK> +<U40F8> /x8e/xa4/xe8/xfc <CJK> +<U00025726> /x8e/xa4/xe8/xfd <CJK> +<U418E> /x8e/xa4/xe8/xfe <CJK> +<U418F> /x8e/xa4/xe9/xa1 <CJK> +<U41C1> /x8e/xa4/xe9/xa2 <CJK> +<U00025DB7> /x8e/xa4/xe9/xa3 <CJK> +<U00025DB6> /x8e/xa4/xe9/xa4 <CJK> +<U00025DC0> /x8e/xa4/xe9/xa5 <CJK> +<U4270> /x8e/xa4/xe9/xa6 <CJK> +<U00025D9B> /x8e/xa4/xe9/xa7 <CJK> +<U4271> /x8e/xa4/xe9/xa8 <CJK> +<U000261D8> /x8e/xa4/xe9/xa9 <CJK> +<U432A> /x8e/xa4/xe9/xaa <CJK> +<U432D> /x8e/xa4/xe9/xab <CJK> +<U437D> /x8e/xa4/xe9/xac <CJK> +<U8032> /x8e/xa4/xe9/xad <CJK> +<U8031> /x8e/xa4/xe9/xae <CJK> +<U000268C0> /x8e/xa4/xe9/xaf <CJK> +<U444F> /x8e/xa4/xe9/xb0 <CJK> +<U000268BF> /x8e/xa4/xe9/xb1 <CJK> +<U00026ABF> /x8e/xa4/xe9/xb2 <CJK> +<U4490> /x8e/xa4/xe9/xb3 <CJK> +<U00027120> /x8e/xa4/xe9/xb4 <CJK> +<U000270D0> /x8e/xa4/xe9/xb5 <CJK> +<U0002710E> /x8e/xa4/xe9/xb6 <CJK> +<U4579> /x8e/xa4/xe9/xb7 <CJK> +<U0002711D> /x8e/xa4/xe9/xb8 <CJK> +<U0002711E> /x8e/xa4/xe9/xb9 <CJK> +<U00027115> /x8e/xa4/xe9/xba <CJK> +<U00027114> /x8e/xa4/xe9/xbb <CJK> +<U0002751E> /x8e/xa4/xe9/xbc <CJK> +<U0002752C> /x8e/xa4/xe9/xbd <CJK> +<U4605> /x8e/xa4/xe9/xbe <CJK> +<U000277B9> /x8e/xa4/xe9/xbf <CJK> +<U000277B8> /x8e/xa4/xe9/xc0 <CJK> +<U000277B6> /x8e/xa4/xe9/xc1 <CJK> +<U0002789E> /x8e/xa4/xe9/xc2 <CJK> +<U0002789C> /x8e/xa4/xe9/xc3 <CJK> +<U0002794D> /x8e/xa4/xe9/xc4 <CJK> +<U89FD> /x8e/xa4/xe9/xc5 <CJK> +<U00027B6E> /x8e/xa4/xe9/xc6 <CJK> +<U00027B60> /x8e/xa4/xe9/xc7 <CJK> +<U4721> /x8e/xa4/xe9/xc8 <CJK> +<U00027B64> /x8e/xa4/xe9/xc9 <CJK> +<U00027B62> /x8e/xa4/xe9/xca <CJK> +<U000261E5> /x8e/xa4/xe9/xcb <CJK> +<U4732> /x8e/xa4/xe9/xcc <CJK> +<U00027FA3> /x8e/xa4/xe9/xcd <CJK> +<U47CF> /x8e/xa4/xe9/xcf <CJK> +<U000283D2> /x8e/xa4/xe9/xd0 <CJK> +<U000283D5> /x8e/xa4/xe9/xd1 <CJK> +<U908E> /x8e/xa4/xe9/xd2 <CJK> +<U4916> /x8e/xa4/xe9/xd3 <CJK> +<U4915> /x8e/xa4/xe9/xd4 <CJK> +<U49B5> /x8e/xa4/xe9/xd5 <CJK> +<U4A08> /x8e/xa4/xe9/xd6 <CJK> +<U00029055> /x8e/xa4/xe9/xd7 <CJK> +<U4A32> /x8e/xa4/xe9/xd8 <CJK> +<U00029193> /x8e/xa4/xe9/xd9 <CJK> +<U4A33> /x8e/xa4/xe9/xda <CJK> +<U4A34> /x8e/xa4/xe9/xdb <CJK> +<U4A3C> /x8e/xa4/xe9/xdc <CJK> +<U00029356> /x8e/xa4/xe9/xdd <CJK> +<U97C2> /x8e/xa4/xe9/xde <CJK> +<U000293E9> /x8e/xa4/xe9/xdf <CJK> +<U4A9C> /x8e/xa4/xe9/xe0 <CJK> +<U00029445> /x8e/xa4/xe9/xe1 <CJK> +<U4AF4> /x8e/xa4/xe9/xe2 <CJK> +<U4AF2> /x8e/xa4/xe9/xe3 <CJK> +<U0002967C> /x8e/xa4/xe9/xe4 <CJK> +<U4B62> /x8e/xa4/xe9/xe5 <CJK> +<U000297D3> /x8e/xa4/xe9/xe6 <CJK> +<U4B61> /x8e/xa4/xe9/xe7 <CJK> +<U4B64> /x8e/xa4/xe9/xe8 <CJK> +<U4BB5> /x8e/xa4/xe9/xe9 <CJK> +<U9A4B> /x8e/xa4/xe9/xea <CJK> +<U4BB4> /x8e/xa4/xe9/xeb <CJK> +<U0002998E> /x8e/xa4/xe9/xec <CJK> +<U00029A97> /x8e/xa4/xe9/xed <CJK> +<U4BE3> /x8e/xa4/xe9/xee <CJK> +<U00029A9B> /x8e/xa4/xe9/xef <CJK> +<U00029A99> /x8e/xa4/xe9/xf0 <CJK> +<U9B1C> /x8e/xa4/xe9/xf1 <CJK> +<U4C0E> /x8e/xa4/xe9/xf2 <CJK> +<U00029BCF> /x8e/xa4/xe9/xf3 <CJK> +<U9B1B> /x8e/xa4/xe9/xf4 <CJK> +<U00029C59> /x8e/xa4/xe9/xf5 <CJK> +<U4C2C> /x8e/xa4/xe9/xf6 <CJK> +<U4C2B> /x8e/xa4/xe9/xf7 <CJK> +<U00029D20> /x8e/xa4/xe9/xf8 <CJK> +<U00029D23> /x8e/xa4/xe9/xf9 <CJK> +<U00029D2A> /x8e/xa4/xe9/xfa <CJK> +<U4C85> /x8e/xa4/xe9/xfb <CJK> +<U4C81> /x8e/xa4/xe9/xfc <CJK> +<U4C7E> /x8e/xa4/xe9/xfd <CJK> +<U4C83> /x8e/xa4/xe9/xfe <CJK> +<U4C80> /x8e/xa4/xea/xa1 <CJK> +<U00029EB0> /x8e/xa4/xea/xa2 <CJK> +<U9C42> /x8e/xa4/xea/xa3 <CJK> +<U0002A12F> /x8e/xa4/xea/xa4 <CJK> +<U9DD4> /x8e/xa4/xea/xa5 <CJK> +<U4CFB> /x8e/xa4/xea/xa6 <CJK> +<U4CF7> /x8e/xa4/xea/xa7 <CJK> +<U0002A132> /x8e/xa4/xea/xa8 <CJK> +<U0002A143> /x8e/xa4/xea/xa9 <CJK> +<U0002A13F> /x8e/xa4/xea/xaa <CJK> +<U0002A139> /x8e/xa4/xea/xab <CJK> +<U4CF8> /x8e/xa4/xea/xac <CJK> +<U0002A130> /x8e/xa4/xea/xad <CJK> +<U0002A2DD> /x8e/xa4/xea/xae <CJK> +<U0002A3DA> /x8e/xa4/xea/xaf <CJK> +<U0002A3DB> /x8e/xa4/xea/xb0 <CJK> +<U4D5A> /x8e/xa4/xea/xb1 <CJK> +<U0002A484> /x8e/xa4/xea/xb2 <CJK> +<U0002A47F> /x8e/xa4/xea/xb3 <CJK> +<U0002A472> /x8e/xa4/xea/xb4 <CJK> +<U0002A480> /x8e/xa4/xea/xb5 <CJK> +<U0002A4EE> /x8e/xa4/xea/xb6 <CJK> +<U4D78> /x8e/xa4/xea/xb7 <CJK> +<U0002A52A> /x8e/xa4/xea/xb8 <CJK> +<U0002A522> /x8e/xa4/xea/xb9 <CJK> +<U0002A571> /x8e/xa4/xea/xba <CJK> +<U0002A5CD> /x8e/xa4/xea/xbb <CJK> +<U4D9D> /x8e/xa4/xea/xbc <CJK> +<U4D9C> /x8e/xa4/xea/xbd <CJK> +<U0002A60F> /x8e/xa4/xea/xbe <CJK> +<U0002A618> /x8e/xa4/xea/xbf <CJK> +<U0002046A> /x8e/xa4/xea/xc0 <CJK> +<U34A9> /x8e/xa4/xea/xc1 <CJK> +<U34BF> /x8e/xa4/xea/xc2 <CJK> +<U56D0> /x8e/xa4/xea/xc3 <CJK> +<U56CF> /x8e/xa4/xea/xc4 <CJK> +<U00021B0C> /x8e/xa4/xea/xc5 <CJK> +<U5DDA> /x8e/xa4/xea/xc6 <CJK> +<U000225A6> /x8e/xa4/xea/xc7 <CJK> +<U3A77> /x8e/xa4/xea/xc8 <CJK> +<U3A76> /x8e/xa4/xea/xc9 <CJK> +<U00023037> /x8e/xa4/xea/xca <CJK> +<U3ABB> /x8e/xa4/xea/xcb <CJK> +<U66EA> /x8e/xa4/xea/xcc <CJK> +<U00023AE2> /x8e/xa4/xea/xcd <CJK> +<U3D9B> /x8e/xa4/xea/xce <CJK> +<U000244BC> /x8e/xa4/xea/xcf <CJK> +<U3E0F> /x8e/xa4/xea/xd0 <CJK> +<U3E5B> /x8e/xa4/xea/xd1 <CJK> +<U00024AD5> /x8e/xa4/xea/xd2 <CJK> +<U3F4C> /x8e/xa4/xea/xd3 <CJK> +<U3F6F> /x8e/xa4/xea/xd4 <CJK> +<U3FD9> /x8e/xa4/xea/xd5 <CJK> +<U00024F12> /x8e/xa4/xea/xd6 <CJK> +<U4082> /x8e/xa4/xea/xd7 <CJK> +<U0002534B> /x8e/xa4/xea/xd8 <CJK> +<U00025341> /x8e/xa4/xea/xd9 <CJK> +<U000253A1> /x8e/xa4/xea/xda <CJK> +<U000255EC> /x8e/xa4/xea/xdb <CJK> +<U4274> /x8e/xa4/xea/xdc <CJK> +<U4272> /x8e/xa4/xea/xdd <CJK> +<U00025DD4> /x8e/xa4/xea/xde <CJK> +<U00025DD8> /x8e/xa4/xea/xdf <CJK> +<U00025DD9> /x8e/xa4/xea/xe0 <CJK> +<U4273> /x8e/xa4/xea/xe1 <CJK> +<U00025DDA> /x8e/xa4/xea/xe2 <CJK> +<U00025F6C> /x8e/xa4/xea/xe3 <CJK> +<U00025F6D> /x8e/xa4/xea/xe4 <CJK> +<U42B1> /x8e/xa4/xea/xe5 <CJK> +<U432E> /x8e/xa4/xea/xe6 <CJK> +<U000261E7> /x8e/xa4/xea/xe7 <CJK> +<U000261EB> /x8e/xa4/xea/xe8 <CJK> +<U000261EC> /x8e/xa4/xea/xe9 <CJK> +<U00026262> /x8e/xa4/xea/xea <CJK> +<U434E> /x8e/xa4/xea/xeb <CJK> +<U0002652B> /x8e/xa4/xea/xec <CJK> +<U0002660D> /x8e/xa4/xea/xed <CJK> +<U000268CD> /x8e/xa4/xea/xee <CJK> +<U00026AC3> /x8e/xa4/xea/xef <CJK> +<U0002713F> /x8e/xa4/xea/xf0 <CJK> +<U0002713C> /x8e/xa4/xea/xf1 <CJK> +<U0002713E> /x8e/xa4/xea/xf2 <CJK> +<U0002713D> /x8e/xa4/xea/xf3 <CJK> +<U0002713A> /x8e/xa4/xea/xf4 <CJK> +<U00027138> /x8e/xa4/xea/xf5 <CJK> +<U00027544> /x8e/xa4/xea/xf6 <CJK> +<U00027545> /x8e/xa4/xea/xf7 <CJK> +<U460B> /x8e/xa4/xea/xf8 <CJK> +<U00027548> /x8e/xa4/xea/xf9 <CJK> +<U00027550> /x8e/xa4/xea/xfa <CJK> +<U466C> /x8e/xa4/xea/xfb <CJK> +<U8B89> /x8e/xa4/xea/xfc <CJK> +<U00027B78> /x8e/xa4/xea/xfd <CJK> +<U00027B79> /x8e/xa4/xea/xfe <CJK> +<U478B> /x8e/xa4/xeb/xa1 <CJK> +<U00027E3E> /x8e/xa4/xeb/xa2 <CJK> +<U47D0> /x8e/xa4/xeb/xa3 <CJK> +<U482D> /x8e/xa4/xeb/xa4 <CJK> +<U00028654> /x8e/xa4/xeb/xa5 <CJK> +<U48E4> /x8e/xa4/xeb/xa6 <CJK> +<U4971> /x8e/xa4/xeb/xa7 <CJK> +<U00028BB9> /x8e/xa4/xeb/xa8 <CJK> +<U9458> /x8e/xa4/xeb/xa9 <CJK> +<U496F> /x8e/xa4/xeb/xaa <CJK> +<U0002905F> /x8e/xa4/xeb/xab <CJK> +<U4A87> /x8e/xa4/xeb/xac <CJK> +<U4AA5> /x8e/xa4/xeb/xad <CJK> +<U00029572> /x8e/xa4/xeb/xae <CJK> +<U00029575> /x8e/xa4/xeb/xaf <CJK> +<U4B1E> /x8e/xa4/xeb/xb0 <CJK> +<U4B65> /x8e/xa4/xeb/xb1 <CJK> +<U4BB9> /x8e/xa4/xeb/xb2 <CJK> +<U4BB7> /x8e/xa4/xeb/xb3 <CJK> +<U4BB8> /x8e/xa4/xeb/xb4 <CJK> +<U4BE4> /x8e/xa4/xeb/xb5 <CJK> +<U00029AA3> /x8e/xa4/xeb/xb6 <CJK> +<U00029AA5> /x8e/xa4/xeb/xb7 <CJK> +<U00029BDC> /x8e/xa4/xeb/xb8 <CJK> +<U00029BDD> /x8e/xa4/xeb/xb9 <CJK> +<U00029C5A> /x8e/xa4/xeb/xba <CJK> +<U4C8C> /x8e/xa4/xeb/xbb <CJK> +<U4C89> /x8e/xa4/xeb/xbc <CJK> +<U4C8A> /x8e/xa4/xeb/xbd <CJK> +<U00029EDB> /x8e/xa4/xeb/xbe <CJK> +<U00029EDC> /x8e/xa4/xeb/xbf <CJK> +<U4C8B> /x8e/xa4/xeb/xc0 <CJK> +<U0002A1AB> /x8e/xa4/xeb/xc1 <CJK> +<U0002A184> /x8e/xa4/xeb/xc2 <CJK> +<U0002A176> /x8e/xa4/xeb/xc3 <CJK> +<U4D01> /x8e/xa4/xeb/xc4 <CJK> +<U4CFE> /x8e/xa4/xeb/xc5 <CJK> +<U9DE7> /x8e/xa4/xeb/xc6 <CJK> +<U4D03> /x8e/xa4/xeb/xc7 <CJK> +<U4D06> /x8e/xa4/xeb/xc8 <CJK> +<U0002A183> /x8e/xa4/xeb/xc9 <CJK> +<U9DEA> /x8e/xa4/xeb/xca <CJK> +<U9DF1> /x8e/xa4/xeb/xcb <CJK> +<U0002A27F> /x8e/xa4/xeb/xcc <CJK> +<U4D1D> /x8e/xa4/xeb/xcd <CJK> +<U4D43> /x8e/xa4/xeb/xce <CJK> +<U0002A373> /x8e/xa4/xeb/xcf <CJK> +<U0002A3AD> /x8e/xa4/xeb/xd0 <CJK> +<U0002A3B0> /x8e/xa4/xeb/xd1 <CJK> +<U4D4F> /x8e/xa4/xeb/xd2 <CJK> +<U0002A40F> /x8e/xa4/xeb/xd3 <CJK> +<U0002A40C> /x8e/xa4/xeb/xd4 <CJK> +<U4D5B> /x8e/xa4/xeb/xd5 <CJK> +<U4D70> /x8e/xa4/xeb/xd6 <CJK> +<U0002A579> /x8e/xa4/xeb/xd7 <CJK> +<U4D88> /x8e/xa4/xeb/xd8 <CJK> +<U0002A577> /x8e/xa4/xeb/xd9 <CJK> +<U0002A57A> /x8e/xa4/xeb/xda <CJK> +<U4D89> /x8e/xa4/xeb/xdb <CJK> +<U9F44> /x8e/xa4/xeb/xdc <CJK> +<U0002A632> /x8e/xa4/xeb/xdd <CJK> +<U0002A627> /x8e/xa4/xeb/xde <CJK> +<U0002A62A> /x8e/xa4/xeb/xdf <CJK> +<U0002A62C> /x8e/xa4/xeb/xe0 <CJK> +<U9F6D> /x8e/xa4/xeb/xe1 <CJK> +<U0002A628> /x8e/xa4/xeb/xe2 <CJK> +<U0002A629> /x8e/xa4/xeb/xe3 <CJK> +<U0002A638> /x8e/xa4/xeb/xe4 <CJK> +<U0002082F> /x8e/xa4/xeb/xe5 <CJK> +<U0002117B> /x8e/xa4/xeb/xe6 <CJK> +<U00021B0D> /x8e/xa4/xeb/xe7 <CJK> +<U5DD9> /x8e/xa4/xeb/xe8 <CJK> +<U00021FD6> /x8e/xa4/xeb/xe9 <CJK> +<U00021FD5> /x8e/xa4/xeb/xea <CJK> +<U00022EA1> /x8e/xa4/xeb/xeb <CJK> +<U0002384C> /x8e/xa4/xeb/xec <CJK> +<U3D9E> /x8e/xa4/xeb/xed <CJK> +<U3D9F> /x8e/xa4/xeb/xee <CJK> +<U3EA7> /x8e/xa4/xeb/xef <CJK> +<U3F4B> /x8e/xa4/xeb/xf0 <CJK> +<U3FDB> /x8e/xa4/xeb/xf1 <CJK> +<U3FDA> /x8e/xa4/xeb/xf2 <CJK> +<U00024FC0> /x8e/xa4/xeb/xf3 <CJK> +<U77D6> /x8e/xa4/xeb/xf4 <CJK> +<U408E> /x8e/xa4/xeb/xf5 <CJK> +<U4276> /x8e/xa4/xeb/xf6 <CJK> +<U00025DF4> /x8e/xa4/xeb/xf7 <CJK> +<U4330> /x8e/xa4/xeb/xf8 <CJK> +<U432F> /x8e/xa4/xeb/xf9 <CJK> +<U000261F0> /x8e/xa4/xeb/xfa <CJK> +<U4366> /x8e/xa4/xeb/xfb <CJK> +<U0002633F> /x8e/xa4/xeb/xfc <CJK> +<U457E> /x8e/xa4/xeb/xfd <CJK> +<U0002755D> /x8e/xa4/xeb/xfe <CJK> +<U00027572> /x8e/xa4/xec/xa1 <CJK> +<U00027562> /x8e/xa4/xec/xa2 <CJK> +<U883A> /x8e/xa4/xec/xa3 <CJK> +<U00027566> /x8e/xa4/xec/xa4 <CJK> +<U8975> /x8e/xa4/xec/xa5 <CJK> +<U466F> /x8e/xa4/xec/xa6 <CJK> +<U00027B88> /x8e/xa4/xec/xa7 <CJK> +<U47D1> /x8e/xa4/xec/xa8 <CJK> +<U482F> /x8e/xa4/xec/xa9 <CJK> +<U000281E8> /x8e/xa4/xec/xaa <CJK> +<U000281E4> /x8e/xa4/xec/xab <CJK> +<U48B2> /x8e/xa4/xec/xac <CJK> +<U4918> /x8e/xa4/xec/xad <CJK> +<U4917> /x8e/xa4/xec/xae <CJK> +<U000288FF> /x8e/xa4/xec/xaf <CJK> +<U4976> /x8e/xa4/xec/xb0 <CJK> +<U000291AF> /x8e/xa4/xec/xb1 <CJK> +<U000291AE> /x8e/xa4/xec/xb2 <CJK> +<U4A4F> /x8e/xa4/xec/xb3 <CJK> +<U4A89> /x8e/xa4/xec/xb4 <CJK> +<U000293F2> /x8e/xa4/xec/xb5 <CJK> +<U00029448> /x8e/xa4/xec/xb6 <CJK> +<U00029581> /x8e/xa4/xec/xb7 <CJK> +<U0002957E> /x8e/xa4/xec/xb8 <CJK> +<U4AF5> /x8e/xa4/xec/xb9 <CJK> +<U4B1F> /x8e/xa4/xec/xba <CJK> +<U00029652> /x8e/xa4/xec/xbb <CJK> +<U000297EF> /x8e/xa4/xec/xbc <CJK> +<U9A5D> /x8e/xa4/xec/xbd <CJK> +<U4BE5> /x8e/xa4/xec/xbe <CJK> +<U00029AAD> /x8e/xa4/xec/xbf <CJK> +<U00029BE6> /x8e/xa4/xec/xc0 <CJK> +<U4C10> /x8e/xa4/xec/xc1 <CJK> +<U00029BED> /x8e/xa4/xec/xc2 <CJK> +<U4C0F> /x8e/xa4/xec/xc3 <CJK> +<U00029BE9> /x8e/xa4/xec/xc4 <CJK> +<U00029C61> /x8e/xa4/xec/xc5 <CJK> +<U00029C60> /x8e/xa4/xec/xc6 <CJK> +<U00029D33> /x8e/xa4/xec/xc7 <CJK> +<U4C2F> /x8e/xa4/xec/xc8 <CJK> +<U4C30> /x8e/xa4/xec/xc9 <CJK> +<U9C64> /x8e/xa4/xec/xca <CJK> +<U00029F0B> /x8e/xa4/xec/xcb <CJK> +<U00029F08> /x8e/xa4/xec/xcc <CJK> +<U4C93> /x8e/xa4/xec/xcd <CJK> +<U4C94> /x8e/xa4/xec/xce <CJK> +<U00029F07> /x8e/xa4/xec/xcf <CJK> +<U4D07> /x8e/xa4/xec/xd0 <CJK> +<U4D09> /x8e/xa4/xec/xd1 <CJK> +<U4D08> /x8e/xa4/xec/xd2 <CJK> +<U0002A1CA> /x8e/xa4/xec/xd3 <CJK> +<U4D0B> /x8e/xa4/xec/xd4 <CJK> +<U0002A1C6> /x8e/xa4/xec/xd5 <CJK> +<U9E0A> /x8e/xa4/xec/xd6 <CJK> +<U0002A284> /x8e/xa4/xec/xd7 <CJK> +<U0002A2EB> /x8e/xa4/xec/xd8 <CJK> +<U0002A37D> /x8e/xa4/xec/xd9 <CJK> +<U4D50> /x8e/xa4/xec/xda <CJK> +<U4D71> /x8e/xa4/xec/xdb <CJK> +<U0002A49B> /x8e/xa4/xec/xdc <CJK> +<U0002A4A2> /x8e/xa4/xec/xdd <CJK> +<U0002A4A1> /x8e/xa4/xec/xde <CJK> +<U0002A4A0> /x8e/xa4/xec/xdf <CJK> +<U0002A49C> /x8e/xa4/xec/xe0 <CJK> +<U4D7B> /x8e/xa4/xec/xe1 <CJK> +<U4D7C> /x8e/xa4/xec/xe2 <CJK> +<U0002A580> /x8e/xa4/xec/xe3 <CJK> +<U9F73> /x8e/xa4/xec/xe4 <CJK> +<U0002A640> /x8e/xa4/xec/xe5 <CJK> +<U4DA1> /x8e/xa4/xec/xe6 <CJK> +<U0002A639> /x8e/xa4/xec/xe7 <CJK> +<U0002A63C> /x8e/xa4/xec/xe8 <CJK> +<U4DA0> /x8e/xa4/xec/xe9 <CJK> +<U4DA2> /x8e/xa4/xec/xea <CJK> +<U000208CA> /x8e/xa4/xec/xeb <CJK> +<U361B> /x8e/xa4/xec/xec <CJK> +<U00021189> /x8e/xa4/xec/xed <CJK> +<U3682> /x8e/xa4/xec/xee <CJK> +<U0002303C> /x8e/xa4/xec/xef <CJK> +<U00023940> /x8e/xa4/xec/xf0 <CJK> +<U00024163> /x8e/xa4/xec/xf1 <CJK> +<U00024169> /x8e/xa4/xec/xf2 <CJK> +<U3FE9> /x8e/xa4/xec/xf3 <CJK> +<U00025353> /x8e/xa4/xec/xf4 <CJK> +<U4084> /x8e/xa4/xec/xf5 <CJK> +<U77E1> /x8e/xa4/xec/xf6 <CJK> +<U00025917> /x8e/xa4/xec/xf7 <CJK> +<U0002591A> /x8e/xa4/xec/xf8 <CJK> +<U00025E00> /x8e/xa4/xec/xf9 <CJK> +<U42B3> /x8e/xa4/xec/xfa <CJK> +<U4334> /x8e/xa4/xec/xfb <CJK> +<U4333> /x8e/xa4/xec/xfc <CJK> +<U4580> /x8e/xa4/xec/xfd <CJK> +<U0002756F> /x8e/xa4/xec/xfe <CJK> +<U000278AB> /x8e/xa4/xed/xa1 <CJK> +<U46AD> /x8e/xa4/xed/xa2 <CJK> +<U00027B91> /x8e/xa4/xed/xa3 <CJK> +<U4744> /x8e/xa4/xed/xa4 <CJK> +<U4755> /x8e/xa4/xed/xa5 <CJK> +<U00027FB1> /x8e/xa4/xed/xa6 <CJK> +<U47D2> /x8e/xa4/xed/xa7 <CJK> +<U000281EF> /x8e/xa4/xed/xa8 <CJK> +<U00028DF1> /x8e/xa4/xed/xa9 <CJK> +<U00028DF2> /x8e/xa4/xed/xaa <CJK> +<U000291B7> /x8e/xa4/xed/xab <CJK> +<U000291B5> /x8e/xa4/xed/xac <CJK> +<U4A8A> /x8e/xa4/xed/xad <CJK> +<U00029586> /x8e/xa4/xed/xae <CJK> +<U0002965A> /x8e/xa4/xed/xaf <CJK> +<U4B67> /x8e/xa4/xed/xb0 <CJK> +<U000299C6> /x8e/xa4/xed/xb1 <CJK> +<U000299CB> /x8e/xa4/xed/xb2 <CJK> +<U4BE6> /x8e/xa4/xed/xb3 <CJK> +<U00029AB2> /x8e/xa4/xed/xb4 <CJK> +<U4C13> /x8e/xa4/xed/xb5 <CJK> +<U00029BF3> /x8e/xa4/xed/xb6 <CJK> +<U9B2D> /x8e/xa4/xed/xb7 <CJK> +<U00029F27> /x8e/xa4/xed/xb8 <CJK> +<U4C97> /x8e/xa4/xed/xb9 <CJK> +<U9E0C> /x8e/xa4/xed/xba <CJK> +<U0002A1D5> /x8e/xa4/xed/xbb <CJK> +<U0002A1D8> /x8e/xa4/xed/xbc <CJK> +<U4D0C> /x8e/xa4/xed/xbd <CJK> +<U0002A1EC> /x8e/xa4/xed/xbe <CJK> +<U0002A287> /x8e/xa4/xed/xbf <CJK> +<U0002A2F2> /x8e/xa4/xed/xc0 <CJK> +<U4D46> /x8e/xa4/xed/xc1 <CJK> +<U4D5C> /x8e/xa4/xed/xc2 <CJK> +<U4D74> /x8e/xa4/xed/xc3 <CJK> +<U4D72> /x8e/xa4/xed/xc4 <CJK> +<U0002A4AD> /x8e/xa4/xed/xc5 <CJK> +<U0002A4B0> /x8e/xa4/xed/xc6 <CJK> +<U0002A4FD> /x8e/xa4/xed/xc7 <CJK> +<U9F1F> /x8e/xa4/xed/xc8 <CJK> +<U0002A587> /x8e/xa4/xed/xc9 <CJK> +<U0002A64A> /x8e/xa4/xed/xca <CJK> +<U4DA4> /x8e/xa4/xed/xcb <CJK> +<U4DA3> /x8e/xa4/xed/xcc <CJK> +<U0002A64E> /x8e/xa4/xed/xcd <CJK> +<U0002A649> /x8e/xa4/xed/xce <CJK> +<U0002A651> /x8e/xa4/xed/xcf <CJK> +<U0002A64D> /x8e/xa4/xed/xd0 <CJK> +<U4DB4> /x8e/xa4/xed/xd1 <CJK> +<U00020472> /x8e/xa4/xed/xd2 <CJK> +<U3536> /x8e/xa4/xed/xd3 <CJK> +<U00021B16> /x8e/xa4/xed/xd4 <CJK> +<U0002386D> /x8e/xa4/xed/xd5 <CJK> +<U00023941> /x8e/xa4/xed/xd6 <CJK> +<U3CB2> /x8e/xa4/xed/xd7 <CJK> +<U00024171> /x8e/xa4/xed/xd8 <CJK> +<U00024174> /x8e/xa4/xed/xd9 <CJK> +<U3F16> /x8e/xa4/xed/xda <CJK> +<U7C70> /x8e/xa4/xed/xdb <CJK> +<U4277> /x8e/xa4/xed/xdc <CJK> +<U00025F7C> /x8e/xa4/xed/xdd <CJK> +<U457F> /x8e/xa4/xed/xde <CJK> +<U0002718A> /x8e/xa4/xed/xdf <CJK> +<U00027956> /x8e/xa4/xed/xe0 <CJK> +<U487D> /x8e/xa4/xed/xe1 <CJK> +<U9479> /x8e/xa4/xed/xe2 <CJK> +<U00028BFA> /x8e/xa4/xed/xe3 <CJK> +<U974A> /x8e/xa4/xed/xe4 <CJK> +<U4A8C> /x8e/xa4/xed/xe5 <CJK> +<U0002965B> /x8e/xa4/xed/xe6 <CJK> +<U4B68> /x8e/xa4/xed/xe7 <CJK> +<U4BBE> /x8e/xa4/xed/xe8 <CJK> +<U4C15> /x8e/xa4/xed/xe9 <CJK> +<U0002A1F5> /x8e/xa4/xed/xea <CJK> +<U0002A1F0> /x8e/xa4/xed/xeb <CJK> +<U0002A2F3> /x8e/xa4/xed/xec <CJK> +<U0002A37F> /x8e/xa4/xed/xed <CJK> +<U0002A413> /x8e/xa4/xed/xee <CJK> +<U4D75> /x8e/xa4/xed/xef <CJK> +<U4DA5> /x8e/xa4/xed/xf0 <CJK> +<U00021B19> /x8e/xa4/xed/xf1 <CJK> +<U00022985> /x8e/xa4/xed/xf2 <CJK> +<U00022EB0> /x8e/xa4/xed/xf3 <CJK> +<U00024177> /x8e/xa4/xed/xf4 <CJK> +<U000255FF> /x8e/xa4/xed/xf5 <CJK> +<U4278> /x8e/xa4/xed/xf6 <CJK> +<U4335> /x8e/xa4/xed/xf7 <CJK> +<U7E9D> /x8e/xa4/xed/xf8 <CJK> +<U4582> /x8e/xa4/xed/xf9 <CJK> +<U00027187> /x8e/xa4/xed/xfa <CJK> +<U4583> /x8e/xa4/xed/xfb <CJK> +<U0002718B> /x8e/xa4/xed/xfc <CJK> +<U4671> /x8e/xa4/xed/xfd <CJK> +<U00027B9E> /x8e/xa4/xed/xfe <CJK> +<U487E> /x8e/xa4/xee/xa1 <CJK> +<U4A8E> /x8e/xa4/xee/xa2 <CJK> +<U0002958F> /x8e/xa4/xee/xa3 <CJK> +<U9960> /x8e/xa4/xee/xa4 <CJK> +<U4B69> /x8e/xa4/xee/xa5 <CJK> +<U00029839> /x8e/xa4/xee/xa6 <CJK> +<U000299D4> /x8e/xa4/xee/xa7 <CJK> +<U00029AF1> /x8e/xa4/xee/xa8 <CJK> +<U00029C02> /x8e/xa4/xee/xa9 <CJK> +<U00029C6B> /x8e/xa4/xee/xaa <CJK> +<U00029D40> /x8e/xa4/xee/xab <CJK> +<U4C9A> /x8e/xa4/xee/xac <CJK> +<U4C9B> /x8e/xa4/xee/xad <CJK> +<U0002A210> /x8e/xa4/xee/xae <CJK> +<U0002A4BE> /x8e/xa4/xee/xaf <CJK> +<U0002A4B9> /x8e/xa4/xee/xb0 <CJK> +<U4D90> /x8e/xa4/xee/xb1 <CJK> +<U0002A664> /x8e/xa4/xee/xb2 <CJK> +<U9F9E> /x8e/xa4/xee/xb3 <CJK> +<U00024AE9> /x8e/xa4/xee/xb4 <CJK> +<U00027190> /x8e/xa4/xee/xb5 <CJK> +<U4586> /x8e/xa4/xee/xb6 <CJK> +<U4585> /x8e/xa4/xee/xb7 <CJK> +<U0002721C> /x8e/xa4/xee/xb8 <CJK> +<U460E> /x8e/xa4/xee/xb9 <CJK> +<U00027592> /x8e/xa4/xee/xba <CJK> +<U000278AE> /x8e/xa4/xee/xbb <CJK> +<U00027BA3> /x8e/xa4/xee/xbc <CJK> +<U4919> /x8e/xa4/xee/xbd <CJK> +<U000291C9> /x8e/xa4/xee/xbe <CJK> +<U4BC0> /x8e/xa4/xee/xbf <CJK> +<U000299D8> /x8e/xa4/xee/xc0 <CJK> +<U00029D44> /x8e/xa4/xee/xc1 <CJK> +<U0002A224> /x8e/xa4/xee/xc2 <CJK> +<U9EF8> /x8e/xa4/xee/xc3 <CJK> +<U9F3A> /x8e/xa4/xee/xc4 <CJK> +<U9F7D> /x8e/xa4/xee/xc5 <CJK> +<U0002A670> /x8e/xa4/xee/xc6 <CJK> +<U0002A6D3> /x8e/xa4/xee/xc7 <CJK> +<U400D> /x8e/xa4/xee/xc8 <CJK> +<U4C16> /x8e/xa4/xee/xc9 <CJK> +<U0002A4C3> /x8e/xa4/xee/xca <CJK> +<U4DA9> /x8e/xa4/xee/xcb <CJK> +<U4DAA> /x8e/xa4/xee/xcc <CJK> +<U4085> /x8e/xa4/xee/xcd <CJK> +<U00025E21> /x8e/xa4/xee/xce <CJK> +<U00026ACA> /x8e/xa4/xee/xcf <CJK> +<U0002759C> /x8e/xa4/xee/xd0 <CJK> +<U00029C73> /x8e/xa4/xee/xd1 <CJK> +<U0002A386> /x8e/xa4/xee/xd2 <CJK> +<U0002A5C1> /x8e/xa4/xee/xd3 <CJK> +<U00029C09> /x8e/xa4/xee/xd4 <CJK> +<U9F96> /x8e/xa4/xee/xd5 <CJK> +<U0002A6D5> /x8e/xa4/xee/xd6 <CJK> +<U4BC2> /x8e/xa4/xee/xd7 <CJK> +<U4C31> /x8e/xa4/xee/xd8 <CJK> +<U4D11> /x8e/xa4/xee/xd9 <CJK> +<U4DAB> /x8e/xa4/xee/xda <CJK> +<U4C9C> /x8e/xa4/xee/xdb <CJK> +<U000291D4> /x8e/xa4/xee/xdc <CJK> +<U000200D1> /x8e/xa5/xa1/xa1 <CJK> +<U000200CB> /x8e/xa5/xa1/xa2 <CJK> +<U000200C9> /x8e/xa5/xa1/xa3 <CJK> +<U0002010C> /x8e/xa5/xa1/xa4 <CJK> +<U00020000> /x8e/xa5/xa1/xa5 <CJK> +<U00020087> /x8e/xa5/xa1/xa6 <CJK> +<U0002010D> /x8e/xa5/xa1/xa7 <CJK> +<U0002010F> /x8e/xa5/xa1/xa8 <CJK> +<U00022398> /x8e/xa5/xa1/xaa <CJK> +<U000200D2> /x8e/xa5/xa1/xab <CJK> +<U00020111> /x8e/xa5/xa1/xac <CJK> +<U0002007E> /x8e/xa5/xa1/xad <CJK> +<U00020AD3> /x8e/xa5/xa1/xae <CJK> +<U00021552> /x8e/xa5/xa1/xaf <CJK> +<U00021CFE> /x8e/xa5/xa1/xb0 <CJK> +<U000225A9> /x8e/xa5/xa1/xb1 <CJK> +<U00023942> /x8e/xa5/xa1/xb2 <CJK> +<U00020009> /x8e/xa5/xa1/xb3 <CJK> +<U000200D6> /x8e/xa5/xa1/xb4 <CJK> +<U000204DD> /x8e/xa5/xa1/xb5 <CJK> +<U000204DC> /x8e/xa5/xa1/xb6 <CJK> +<U00020502> /x8e/xa5/xa1/xb7 <CJK> +<U00020573> /x8e/xa5/xa1/xb8 <CJK> +<U00020676> /x8e/xa5/xa1/xb9 <CJK> +<U000206A7> /x8e/xa5/xa1/xba <CJK> +<U000206A8> /x8e/xa5/xa1/xbb <CJK> +<U00020833> /x8e/xa5/xa1/xbc <CJK> +<U000208CC> /x8e/xa5/xa1/xbd <CJK> +<U00020A0D> /x8e/xa5/xa1/xbe <CJK> +<U00020A2C> /x8e/xa5/xa1/xbf <CJK> +<U00020B1B> /x8e/xa5/xa1/xc0 <CJK> +<U355A> /x8e/xa5/xa1/xc1 <CJK> +<U00020B1D> /x8e/xa5/xa1/xc2 <CJK> +<U00020B99> /x8e/xa5/xa1/xc3 <CJK> +<U0002123E> /x8e/xa5/xa1/xc4 <CJK> +<U00021D2D> /x8e/xa5/xa1/xc5 <CJK> +<U00021D2F> /x8e/xa5/xa1/xc6 <CJK> +<U00022399> /x8e/xa5/xa1/xc7 <CJK> +<U6729> /x8e/xa5/xa1/xc8 <CJK> +<U000239B6> /x8e/xa5/xa1/xc9 <CJK> +<U00023B1B> /x8e/xa5/xa1/xca <CJK> +<U000244EF> /x8e/xa5/xa1/xcb <CJK> +<U000248E9> /x8e/xa5/xa1/xcc <CJK> +<U00020014> /x8e/xa5/xa1/xcd <CJK> +<U00020094> /x8e/xa5/xa1/xce <CJK> +<U000200E1> /x8e/xa5/xa1/xcf <CJK> +<U00020506> /x8e/xa5/xa1/xd0 <CJK> +<U0002054A> /x8e/xa5/xa1/xd1 <CJK> +<U00020544> /x8e/xa5/xa1/xd2 <CJK> +<U00020631> /x8e/xa5/xa1/xd3 <CJK> +<U0002067A> /x8e/xa5/xa1/xd4 <CJK> +<U000206AD> /x8e/xa5/xa1/xd5 <CJK> +<U000206AE> /x8e/xa5/xa1/xd6 <CJK> +<U000206B1> /x8e/xa5/xa1/xd7 <CJK> +<U00020838> /x8e/xa5/xa1/xd8 <CJK> +<U00020837> /x8e/xa5/xa1/xd9 <CJK> +<U0002097D> /x8e/xa5/xa1/xda <CJK> +<U0002097E> /x8e/xa5/xa1/xdb <CJK> +<U00020A2D> /x8e/xa5/xa1/xdc <CJK> +<U00020A32> /x8e/xa5/xa1/xdd <CJK> +<U00020B23> /x8e/xa5/xa1/xde <CJK> +<U00020B26> /x8e/xa5/xa1/xdf <CJK> +<U00020BA0> /x8e/xa5/xa1/xe1 <CJK> +<U000216A8> /x8e/xa5/xa1/xe2 <CJK> +<U0002193F> /x8e/xa5/xa1/xe3 <CJK> +<U000219BC> /x8e/xa5/xa1/xe4 <CJK> +<U00021BC4> /x8e/xa5/xa1/xe5 <CJK> +<U00021D3B> /x8e/xa5/xa1/xe6 <CJK> +<U00022019> /x8e/xa5/xa1/xe7 <CJK> +<U00022018> /x8e/xa5/xa1/xe8 <CJK> +<U000221B3> /x8e/xa5/xa1/xe9 <CJK> +<U000223AA> /x8e/xa5/xa1/xea <CJK> +<U000224BE> /x8e/xa5/xa1/xeb <CJK> +<U000225AC> /x8e/xa5/xa1/xec <CJK> +<U00022A25> /x8e/xa5/xa1/xed <CJK> +<U00022A66> /x8e/xa5/xa1/xee <CJK> +<U00022A6B> /x8e/xa5/xa1/xef <CJK> +<U00023943> /x8e/xa5/xa1/xf0 <CJK> +<U000239B5> /x8e/xa5/xa1/xf1 <CJK> +<U00023AEC> /x8e/xa5/xa1/xf2 <CJK> +<U00023C76> /x8e/xa5/xa1/xf3 <CJK> +<U3CBC> /x8e/xa5/xa1/xf4 <CJK> +<U00024614> /x8e/xa5/xa1/xf5 <CJK> +<U000215DC> /x8e/xa5/xa1/xf6 <CJK> +<U0002471C> /x8e/xa5/xa1/xf7 <CJK> +<U0002471D> /x8e/xa5/xa1/xf8 <CJK> +<U000264D0> /x8e/xa5/xa1/xf9 <CJK> +<U00026612> /x8e/xa5/xa1/xfa <CJK> +<U00026AF3> /x8e/xa5/xa1/xfb <CJK> +<U00028669> /x8e/xa5/xa1/xfc <CJK> +<U49B9> /x8e/xa5/xa1/xfd <CJK> +<U00028E11> /x8e/xa5/xa1/xfe <CJK> +<U00028E15> /x8e/xa5/xa2/xa1 <CJK> +<U00028E10> /x8e/xa5/xa2/xa2 <CJK> +<U00028E13> /x8e/xa5/xa2/xa3 <CJK> +<U000200A4> /x8e/xa5/xa2/xa4 <CJK> +<U000200A5> /x8e/xa5/xa2/xa5 <CJK> +<U000201D0> /x8e/xa5/xa2/xa6 <CJK> +<U000201BA> /x8e/xa5/xa2/xa7 <CJK> +<U000201CB> /x8e/xa5/xa2/xa8 <CJK> +<U0002057B> /x8e/xa5/xa2/xa9 <CJK> +<U00020686> /x8e/xa5/xa2/xaa <CJK> +<U000206BB> /x8e/xa5/xa2/xab <CJK> +<U000206BA> /x8e/xa5/xa2/xac <CJK> +<U000206C3> /x8e/xa5/xa2/xad <CJK> +<U000206B9> /x8e/xa5/xa2/xae <CJK> +<U000206C0> /x8e/xa5/xa2/xaf <CJK> +<U34DE> /x8e/xa5/xa2/xb0 <CJK> +<U00020839> /x8e/xa5/xa2/xb1 <CJK> +<U0002083B> /x8e/xa5/xa2/xb2 <CJK> +<U00020841> /x8e/xa5/xa2/xb3 <CJK> +<U000208D1> /x8e/xa5/xa2/xb4 <CJK> +<U000208CF> /x8e/xa5/xa2/xb5 <CJK> +<U000208D2> /x8e/xa5/xa2/xb6 <CJK> +<U0002092E> /x8e/xa5/xa2/xb7 <CJK> +<U0002096E> /x8e/xa5/xa2/xb8 <CJK> +<U0002098C> /x8e/xa5/xa2/xb9 <CJK> +<U00020988> /x8e/xa5/xa2/xba <CJK> +<U00020A35> /x8e/xa5/xa2/xbb <CJK> +<U3543> /x8e/xa5/xa2/xbc <CJK> +<U00020A3A> /x8e/xa5/xa2/xbd <CJK> +<U00020A3B> /x8e/xa5/xa2/xbe <CJK> +<U00020A38> /x8e/xa5/xa2/xbf <CJK> +<U00020A39> /x8e/xa5/xa2/xc0 <CJK> +<U00020B2E> /x8e/xa5/xa2/xc1 <CJK> +<U00020B2C> /x8e/xa5/xa2/xc2 <CJK> +<U00020BC8> /x8e/xa5/xa2/xc3 <CJK> +<U00020BB5> /x8e/xa5/xa2/xc4 <CJK> +<U00020BAD> /x8e/xa5/xa2/xc5 <CJK> +<U00020BB0> /x8e/xa5/xa2/xc6 <CJK> +<U00020BAB> /x8e/xa5/xa2/xc7 <CJK> +<U000211B3> /x8e/xa5/xa2/xc8 <CJK> +<U000211A9> /x8e/xa5/xa2/xc9 <CJK> +<U000216BB> /x8e/xa5/xa2/xca <CJK> +<U000216B9> /x8e/xa5/xa2/xcb <CJK> +<U00021B5A> /x8e/xa5/xa2/xcc <CJK> +<U00021BCD> /x8e/xa5/xa2/xcd <CJK> +<U00021C2B> /x8e/xa5/xa2/xce <CJK> +<U00021D05> /x8e/xa5/xa2/xcf <CJK> +<U37AC> /x8e/xa5/xa2/xd0 <CJK> +<U37AA> /x8e/xa5/xa2/xd1 <CJK> +<U00021D51> /x8e/xa5/xa2/xd2 <CJK> +<U00021D4B> /x8e/xa5/xa2/xd3 <CJK> +<U00021FEA> /x8e/xa5/xa2/xd4 <CJK> +<U00021FED> /x8e/xa5/xa2/xd5 <CJK> +<U00022036> /x8e/xa5/xa2/xd6 <CJK> +<U00022062> /x8e/xa5/xa2/xd7 <CJK> +<U00022056> /x8e/xa5/xa2/xd8 <CJK> +<U00022055> /x8e/xa5/xa2/xd9 <CJK> +<U00022064> /x8e/xa5/xa2/xda <CJK> +<U00022058> /x8e/xa5/xa2/xdb <CJK> +<U5E07> /x8e/xa5/xa2/xdc <CJK> +<U000221DA> /x8e/xa5/xa2/xdd <CJK> +<U000221D8> /x8e/xa5/xa2/xde <CJK> +<U000223AD> /x8e/xa5/xa2/xdf <CJK> +<U000223AB> /x8e/xa5/xa2/xe0 <CJK> +<U000224C0> /x8e/xa5/xa2/xe1 <CJK> +<U000224C3> /x8e/xa5/xa2/xe2 <CJK> +<U000225B3> /x8e/xa5/xa2/xe3 <CJK> +<U000225B7> /x8e/xa5/xa2/xe4 <CJK> +<U000225BA> /x8e/xa5/xa2/xe5 <CJK> +<U5FCB> /x8e/xa5/xa2/xe6 <CJK> +<U38FE> /x8e/xa5/xa2/xe7 <CJK> +<U000225C7> /x8e/xa5/xa2/xe8 <CJK> +<U000225B5> /x8e/xa5/xa2/xe9 <CJK> +<U0002298E> /x8e/xa5/xa2/xea <CJK> +<U00022A73> /x8e/xa5/xa2/xeb <CJK> +<U00022A6C> /x8e/xa5/xa2/xec <CJK> +<U00022A74> /x8e/xa5/xa2/xed <CJK> +<U00022A72> /x8e/xa5/xa2/xef <CJK> +<U00022A71> /x8e/xa5/xa2/xf0 <CJK> +<U00022A82> /x8e/xa5/xa2/xf1 <CJK> +<U00022A70> /x8e/xa5/xa2/xf2 <CJK> +<U0002313F> /x8e/xa5/xa2/xf3 <CJK> +<U000233BA> /x8e/xa5/xa2/xf4 <CJK> +<U000233B8> /x8e/xa5/xa2/xf5 <CJK> +<U000239B7> /x8e/xa5/xa2/xf6 <CJK> +<U00024723> /x8e/xa5/xa2/xf7 <CJK> +<U00024721> /x8e/xa5/xa2/xf8 <CJK> +<U0002472B> /x8e/xa5/xa2/xf9 <CJK> +<U00024726> /x8e/xa5/xa2/xfa <CJK> +<U00024722> /x8e/xa5/xa2/xfb <CJK> +<U00024D25> /x8e/xa5/xa2/xfc <CJK> +<U000250E4> /x8e/xa5/xa2/xfd <CJK> +<U00025415> /x8e/xa5/xa2/xfe <CJK> +<U000264E4> /x8e/xa5/xa3/xa1 <CJK> +<U00026633> /x8e/xa5/xa3/xa2 <CJK> +<U0002662A> /x8e/xa5/xa3/xa3 <CJK> +<U00026632> /x8e/xa5/xa3/xa4 <CJK> +<U00026629> /x8e/xa5/xa3/xa5 <CJK> +<U00026AFB> /x8e/xa5/xa3/xa6 <CJK> +<U0002795B> /x8e/xa5/xa3/xa7 <CJK> +<U0002795C> /x8e/xa5/xa3/xa8 <CJK> +<U00027C28> /x8e/xa5/xa3/xa9 <CJK> +<U0002866F> /x8e/xa5/xa3/xaa <CJK> +<U0002866D> /x8e/xa5/xa3/xab <CJK> +<U0002866B> /x8e/xa5/xa3/xac <CJK> +<U0002866E> /x8e/xa5/xa3/xad <CJK> +<U00028E16> /x8e/xa5/xa3/xae <CJK> +<U00020022> /x8e/xa5/xa3/xaf <CJK> +<U00020116> /x8e/xa5/xa3/xb0 <CJK> +<U00020148> /x8e/xa5/xa3/xb1 <CJK> +<U000201D8> /x8e/xa5/xa3/xb2 <CJK> +<U00020200> /x8e/xa5/xa3/xb3 <CJK> +<U3441> /x8e/xa5/xa3/xb4 <CJK> +<U00020480> /x8e/xa5/xa3/xb5 <CJK> +<U000204E4> /x8e/xa5/xa3/xb6 <CJK> +<U34B4> /x8e/xa5/xa3/xb7 <CJK> +<U000204E7> /x8e/xa5/xa3/xb8 <CJK> +<U0002050C> /x8e/xa5/xa3/xb9 <CJK> +<U00020553> /x8e/xa5/xa3/xba <CJK> +<U000205B7> /x8e/xa5/xa3/xbb <CJK> +<U00020AE8> /x8e/xa5/xa3/xbc <CJK> +<U000206D1> /x8e/xa5/xa3/xbd <CJK> +<U000206E5> /x8e/xa5/xa3/xbe <CJK> +<U000206D8> /x8e/xa5/xa3/xbf <CJK> +<U000206D6> /x8e/xa5/xa3/xc0 <CJK> +<U000206DA> /x8e/xa5/xa3/xc1 <CJK> +<U000206D9> /x8e/xa5/xa3/xc2 <CJK> +<U000206D5> /x8e/xa5/xa3/xc3 <CJK> +<U000206E6> /x8e/xa5/xa3/xc4 <CJK> +<U000206D4> /x8e/xa5/xa3/xc5 <CJK> +<U000206D3> /x8e/xa5/xa3/xc6 <CJK> +<U00020844> /x8e/xa5/xa3/xc7 <CJK> +<U000208D6> /x8e/xa5/xa3/xc8 <CJK> +<U000208D7> /x8e/xa5/xa3/xc9 <CJK> +<U00020913> /x8e/xa5/xa3/xca <CJK> +<U00020970> /x8e/xa5/xa3/xcc <CJK> +<U00020992> /x8e/xa5/xa3/xcd <CJK> +<U000209DB> /x8e/xa5/xa3/xce <CJK> +<U000209DA> /x8e/xa5/xa3/xcf <CJK> +<U00020A41> /x8e/xa5/xa3/xd0 <CJK> +<U00020A43> /x8e/xa5/xa3/xd1 <CJK> +<U00020B33> /x8e/xa5/xa3/xd2 <CJK> +<U00020BF6> /x8e/xa5/xa3/xd3 <CJK> +<U00020BD4> /x8e/xa5/xa3/xd4 <CJK> +<U00020BDD> /x8e/xa5/xa3/xd5 <CJK> +<U00020BD0> /x8e/xa5/xa3/xd6 <CJK> +<U00020C04> /x8e/xa5/xa3/xd7 <CJK> +<U00020BD9> /x8e/xa5/xa3/xd8 <CJK> +<U00020BDB> /x8e/xa5/xa3/xd9 <CJK> +<U00020C05> /x8e/xa5/xa3/xda <CJK> +<U00020BD3> /x8e/xa5/xa3/xdb <CJK> +<U00020BE1> /x8e/xa5/xa3/xdc <CJK> +<U00021280> /x8e/xa5/xa3/xdd <CJK> +<U00021277> /x8e/xa5/xa3/xde <CJK> +<U00021281> /x8e/xa5/xa3/xdf <CJK> +<U00021282> /x8e/xa5/xa3/xe0 <CJK> +<U00021283> /x8e/xa5/xa3/xe1 <CJK> +<U00021561> /x8e/xa5/xa3/xe3 <CJK> +<U00021560> /x8e/xa5/xa3/xe4 <CJK> +<U000216D8> /x8e/xa5/xa3/xe5 <CJK> +<U000216D6> /x8e/xa5/xa3/xe6 <CJK> +<U000216D7> /x8e/xa5/xa3/xe7 <CJK> +<U00024605> /x8e/xa5/xa3/xe8 <CJK> +<U0002194D> /x8e/xa5/xa3/xe9 <CJK> +<U00021948> /x8e/xa5/xa3/xea <CJK> +<U00021BD6> /x8e/xa5/xa3/xeb <CJK> +<U00021BCF> /x8e/xa5/xa3/xec <CJK> +<U00021BD9> /x8e/xa5/xa3/xed <CJK> +<U00021BD8> /x8e/xa5/xa3/xee <CJK> +<U00021C3D> /x8e/xa5/xa3/xef <CJK> +<U37B3> /x8e/xa5/xa3/xf0 <CJK> +<U00021D54> /x8e/xa5/xa3/xf1 <CJK> +<U00021D5B> /x8e/xa5/xa3/xf2 <CJK> +<U00021D5C> /x8e/xa5/xa3/xf3 <CJK> +<U37B4> /x8e/xa5/xa3/xf4 <CJK> +<U00021D59> /x8e/xa5/xa3/xf5 <CJK> +<U00021D58> /x8e/xa5/xa3/xf6 <CJK> +<U00021D5A> /x8e/xa5/xa3/xf7 <CJK> +<U00021D55> /x8e/xa5/xa3/xf8 <CJK> +<U00021D56> /x8e/xa5/xa3/xf9 <CJK> +<U00021D82> /x8e/xa5/xa3/xfa <CJK> +<U00021FF0> /x8e/xa5/xa3/xfb <CJK> +<U0002201C> /x8e/xa5/xa3/xfc <CJK> +<U0002206A> /x8e/xa5/xa3/xfd <CJK> +<U00022069> /x8e/xa5/xa3/xfe <CJK> +<U00022071> /x8e/xa5/xa4/xa1 <CJK> +<U00022067> /x8e/xa5/xa4/xa2 <CJK> +<U0002206C> /x8e/xa5/xa4/xa3 <CJK> +<U0002206E> /x8e/xa5/xa4/xa4 <CJK> +<U00022079> /x8e/xa5/xa4/xa5 <CJK> +<U0002218B> /x8e/xa5/xa4/xa6 <CJK> +<U000221B8> /x8e/xa5/xa4/xa7 <CJK> +<U000221E7> /x8e/xa5/xa4/xa8 <CJK> +<U000221E8> /x8e/xa5/xa4/xa9 <CJK> +<U000221E4> /x8e/xa5/xa4/xaa <CJK> +<U000221E6> /x8e/xa5/xa4/xab <CJK> +<U000221E5> /x8e/xa5/xa4/xac <CJK> +<U000221F0> /x8e/xa5/xa4/xad <CJK> +<U00022383> /x8e/xa5/xa4/xae <CJK> +<U000223B7> /x8e/xa5/xa4/xaf <CJK> +<U000223BB> /x8e/xa5/xa4/xb0 <CJK> +<U000223B9> /x8e/xa5/xa4/xb1 <CJK> +<U000223C5> /x8e/xa5/xa4/xb2 <CJK> +<U00022453> /x8e/xa5/xa4/xb3 <CJK> +<U000224C4> /x8e/xa5/xa4/xb4 <CJK> +<U000224C6> /x8e/xa5/xa4/xb5 <CJK> +<U000224CB> /x8e/xa5/xa4/xb6 <CJK> +<U000225C8> /x8e/xa5/xa4/xb7 <CJK> +<U000225C9> /x8e/xa5/xa4/xb9 <CJK> +<U000225DB> /x8e/xa5/xa4/xba <CJK> +<U00022994> /x8e/xa5/xa4/xbb <CJK> +<U00022A95> /x8e/xa5/xa4/xbc <CJK> +<U00022A88> /x8e/xa5/xa4/xbd <CJK> +<U00022A8D> /x8e/xa5/xa4/xbe <CJK> +<U00022EEC> /x8e/xa5/xa4/xbf <CJK> +<U00022EEE> /x8e/xa5/xa4/xc0 <CJK> +<U00022EF1> /x8e/xa5/xa4/xc1 <CJK> +<U0002312E> /x8e/xa5/xa4/xc2 <CJK> +<U00023149> /x8e/xa5/xa4/xc3 <CJK> +<U0002335F> /x8e/xa5/xa4/xc4 <CJK> +<U000233D1> /x8e/xa5/xa4/xc5 <CJK> +<U000233CB> /x8e/xa5/xa4/xc6 <CJK> +<U00023885> /x8e/xa5/xa4/xc7 <CJK> +<U3C1D> /x8e/xa5/xa4/xc8 <CJK> +<U0002394A> /x8e/xa5/xa4/xc9 <CJK> +<U00023947> /x8e/xa5/xa4/xca <CJK> +<U0002394B> /x8e/xa5/xa4/xcb <CJK> +<U000239BB> /x8e/xa5/xa4/xcc <CJK> +<U000239C4> /x8e/xa5/xa4/xcd <CJK> +<U3C7C> /x8e/xa5/xa4/xce <CJK> +<U00023B02> /x8e/xa5/xa4/xcf <CJK> +<U00023C82> /x8e/xa5/xa4/xd0 <CJK> +<U00023C91> /x8e/xa5/xa4/xd1 <CJK> +<U00023C8F> /x8e/xa5/xa4/xd2 <CJK> +<U00023C92> /x8e/xa5/xa4/xd3 <CJK> +<U0002418F> /x8e/xa5/xa4/xd4 <CJK> +<U00024191> /x8e/xa5/xa4/xd5 <CJK> +<U000241B4> /x8e/xa5/xa4/xd6 <CJK> +<U00024192> /x8e/xa5/xa4/xd7 <CJK> +<U000244F4> /x8e/xa5/xa4/xd8 <CJK> +<U000245AA> /x8e/xa5/xa4/xd9 <CJK> +<U00024735> /x8e/xa5/xa4/xda <CJK> +<U00024737> /x8e/xa5/xa4/xdb <CJK> +<U0002473D> /x8e/xa5/xa4/xdc <CJK> +<U0002473C> /x8e/xa5/xa4/xdd <CJK> +<U0002472F> /x8e/xa5/xa4/xde <CJK> +<U00024730> /x8e/xa5/xa4/xdf <CJK> +<U000248F8> /x8e/xa5/xa4/xe0 <CJK> +<U000248EF> /x8e/xa5/xa4/xe1 <CJK> +<U00024B26> /x8e/xa5/xa4/xe2 <CJK> +<U3F55> /x8e/xa5/xa4/xe3 <CJK> +<U00024D26> /x8e/xa5/xa4/xe4 <CJK> +<U00024D27> /x8e/xa5/xa4/xe5 <CJK> +<U00024F41> /x8e/xa5/xa4/xe6 <CJK> +<U00024FC6> /x8e/xa5/xa4/xe7 <CJK> +<U00024FC7> /x8e/xa5/xa4/xe8 <CJK> +<U000250EB> /x8e/xa5/xa4/xe9 <CJK> +<U000250E8> /x8e/xa5/xa4/xea <CJK> +<U000250EA> /x8e/xa5/xa4/xeb <CJK> +<U0002541A> /x8e/xa5/xa4/xec <CJK> +<U00025419> /x8e/xa5/xa4/xed <CJK> +<U4126> /x8e/xa5/xa4/xee <CJK> +<U00025923> /x8e/xa5/xa4/xef <CJK> +<U00025924> /x8e/xa5/xa4/xf0 <CJK> +<U00025E25> /x8e/xa5/xa4/xf1 <CJK> +<U00026635> /x8e/xa5/xa4/xf2 <CJK> +<U00026634> /x8e/xa5/xa4/xf3 <CJK> +<U00026A07> /x8e/xa5/xa4/xf4 <CJK> +<U0002721D> /x8e/xa5/xa4/xf5 <CJK> +<U000277E1> /x8e/xa5/xa4/xf6 <CJK> +<U00027BAB> /x8e/xa5/xa4/xf7 <CJK> +<U00028460> /x8e/xa5/xa4/xf8 <CJK> +<U00028677> /x8e/xa5/xa4/xf9 <CJK> +<U0002867D> /x8e/xa5/xa4/xfa <CJK> +<U49BC> /x8e/xa5/xa4/xfb <CJK> +<U00028E1E> /x8e/xa5/xa4/xfc <CJK> +<U00028E1A> /x8e/xa5/xa4/xfd <CJK> +<U00028E1D> /x8e/xa5/xa4/xfe <CJK> +<U0002006B> /x8e/xa5/xa5/xa1 <CJK> +<U0002012D> /x8e/xa5/xa5/xa2 <CJK> +<U0002014C> /x8e/xa5/xa5/xa3 <CJK> +<U0002022A> /x8e/xa5/xa5/xa4 <CJK> +<U344A> /x8e/xa5/xa5/xa5 <CJK> +<U00020215> /x8e/xa5/xa5/xa6 <CJK> +<U0002022C> /x8e/xa5/xa5/xa7 <CJK> +<U00020206> /x8e/xa5/xa5/xa8 <CJK> +<U00020208> /x8e/xa5/xa5/xa9 <CJK> +<U0002020A> /x8e/xa5/xa5/xaa <CJK> +<U344E> /x8e/xa5/xa5/xab <CJK> +<U00020556> /x8e/xa5/xa5/xac <CJK> +<U00020584> /x8e/xa5/xa5/xad <CJK> +<U34C9> /x8e/xa5/xa5/xae <CJK> +<U000205C6> /x8e/xa5/xa5/xaf <CJK> +<U000206F5> /x8e/xa5/xa5/xb0 <CJK> +<U00020709> /x8e/xa5/xa5/xb1 <CJK> +<U000206F8> /x8e/xa5/xa5/xb2 <CJK> +<U000206E8> /x8e/xa5/xa5/xb3 <CJK> +<U000206FB> /x8e/xa5/xa5/xb4 <CJK> +<U000206E9> /x8e/xa5/xa5/xb5 <CJK> +<U000206F6> /x8e/xa5/xa5/xb6 <CJK> +<U52B7> /x8e/xa5/xa5/xb7 <CJK> +<U52B8> /x8e/xa5/xa5/xb8 <CJK> +<U00020852> /x8e/xa5/xa5/xb9 <CJK> +<U52B6> /x8e/xa5/xa5/xba <CJK> +<U52BA> /x8e/xa5/xa5/xbb <CJK> +<U00020854> /x8e/xa5/xa5/xbc <CJK> +<U00020851> /x8e/xa5/xa5/xbd <CJK> +<U00020939> /x8e/xa5/xa5/xbe <CJK> +<U0002093A> /x8e/xa5/xa5/xbf <CJK> +<U00020998> /x8e/xa5/xa5/xc0 <CJK> +<U00020A4E> /x8e/xa5/xa5/xc1 <CJK> +<U357B> /x8e/xa5/xa5/xc2 <CJK> +<U00020C36> /x8e/xa5/xa5/xc3 <CJK> +<U00020C0C> /x8e/xa5/xa5/xc4 <CJK> +<U00020C10> /x8e/xa5/xa5/xc5 <CJK> +<U00020C32> /x8e/xa5/xa5/xc6 <CJK> +<U00020C11> /x8e/xa5/xa5/xc7 <CJK> +<U00020C18> /x8e/xa5/xa5/xc8 <CJK> +<U00020C1C> /x8e/xa5/xa5/xc9 <CJK> +<U00020C1A> /x8e/xa5/xa5/xca <CJK> +<U00020C19> /x8e/xa5/xa5/xcb <CJK> +<U00020C0B> /x8e/xa5/xa5/xcc <CJK> +<U00020C0F> /x8e/xa5/xa5/xcd <CJK> +<U00020C1D> /x8e/xa5/xa5/xce <CJK> +<U00020C21> /x8e/xa5/xa5/xcf <CJK> +<U00020C13> /x8e/xa5/xa5/xd0 <CJK> +<U00020C1B> /x8e/xa5/xa5/xd1 <CJK> +<U00020C15> /x8e/xa5/xa5/xd2 <CJK> +<U3620> /x8e/xa5/xa5/xd3 <CJK> +<U000211D1> /x8e/xa5/xa5/xd4 <CJK> +<U000211C8> /x8e/xa5/xa5/xd5 <CJK> +<U0002128D> /x8e/xa5/xa5/xd6 <CJK> +<U000212B5> /x8e/xa5/xa5/xd7 <CJK> +<U3689> /x8e/xa5/xa5/xd8 <CJK> +<U3695> /x8e/xa5/xa5/xd9 <CJK> +<U000215F8> /x8e/xa5/xa5/xda <CJK> +<U000216E0> /x8e/xa5/xa5/xdb <CJK> +<U000216E1> /x8e/xa5/xa5/xdc <CJK> +<U36BE> /x8e/xa5/xa5/xdd <CJK> +<U000216DE> /x8e/xa5/xa5/xde <CJK> +<U000216FE> /x8e/xa5/xa5/xdf <CJK> +<U000216DC> /x8e/xa5/xa5/xe0 <CJK> +<U00021701> /x8e/xa5/xa5/xe1 <CJK> +<U000216FD> /x8e/xa5/xa5/xe2 <CJK> +<U00021700> /x8e/xa5/xa5/xe3 <CJK> +<U000219D7> /x8e/xa5/xa5/xe4 <CJK> +<U000219D6> /x8e/xa5/xa5/xe5 <CJK> +<U000219D9> /x8e/xa5/xa5/xe6 <CJK> +<U00021B65> /x8e/xa5/xa5/xe7 <CJK> +<U00021BD2> /x8e/xa5/xa5/xe8 <CJK> +<U00021BDC> /x8e/xa5/xa5/xe9 <CJK> +<U00021BE1> /x8e/xa5/xa5/xea <CJK> +<U00021BDE> /x8e/xa5/xa5/xeb <CJK> +<U00021C42> /x8e/xa5/xa5/xec <CJK> +<U00021C4B> /x8e/xa5/xa5/xed <CJK> +<U37C3> /x8e/xa5/xa5/xee <CJK> +<U00021D8E> /x8e/xa5/xa5/xef <CJK> +<U00021D91> /x8e/xa5/xa5/xf0 <CJK> +<U00021D8B> /x8e/xa5/xa5/xf1 <CJK> +<U00021D90> /x8e/xa5/xa5/xf2 <CJK> +<U00021D88> /x8e/xa5/xa5/xf3 <CJK> +<U00021D89> /x8e/xa5/xa5/xf4 <CJK> +<U00021D84> /x8e/xa5/xa5/xf5 <CJK> +<U00021DAA> /x8e/xa5/xa5/xf6 <CJK> +<U0002208D> /x8e/xa5/xa5/xf7 <CJK> +<U0002208F> /x8e/xa5/xa5/xf8 <CJK> +<U0002207D> /x8e/xa5/xa5/xf9 <CJK> +<U0002207F> /x8e/xa5/xa5/xfa <CJK> +<U0002207B> /x8e/xa5/xa5/xfb <CJK> +<U00022080> /x8e/xa5/xa5/xfc <CJK> +<U0002207E> /x8e/xa5/xa5/xfd <CJK> +<U00022083> /x8e/xa5/xa5/xfe <CJK> +<U00022081> /x8e/xa5/xa6/xa1 <CJK> +<U00022086> /x8e/xa5/xa6/xa2 <CJK> +<U0002208A> /x8e/xa5/xa6/xa3 <CJK> +<U000221BD> /x8e/xa5/xa6/xa4 <CJK> +<U000221BE> /x8e/xa5/xa6/xa5 <CJK> +<U3877> /x8e/xa5/xa6/xa6 <CJK> +<U000221F4> /x8e/xa5/xa6/xa7 <CJK> +<U000221F3> /x8e/xa5/xa6/xa8 <CJK> +<U00022202> /x8e/xa5/xa6/xa9 <CJK> +<U000221F6> /x8e/xa5/xa6/xaa <CJK> +<U000221F5> /x8e/xa5/xa6/xab <CJK> +<U000221F2> /x8e/xa5/xa6/xac <CJK> +<U00022204> /x8e/xa5/xa6/xad <CJK> +<U0002233D> /x8e/xa5/xa6/xae <CJK> +<U000223C6> /x8e/xa5/xa6/xaf <CJK> +<U00022489> /x8e/xa5/xa6/xb0 <CJK> +<U000224D4> /x8e/xa5/xa6/xb1 <CJK> +<U000224D6> /x8e/xa5/xa6/xb2 <CJK> +<U000224D2> /x8e/xa5/xa6/xb3 <CJK> +<U000225FA> /x8e/xa5/xa6/xb4 <CJK> +<U00022606> /x8e/xa5/xa6/xb5 <CJK> +<U0002260C> /x8e/xa5/xa6/xb6 <CJK> +<U0002260A> /x8e/xa5/xa6/xb7 <CJK> +<U0002260F> /x8e/xa5/xa6/xb8 <CJK> +<U00022A2F> /x8e/xa5/xa6/xb9 <CJK> +<U39D4> /x8e/xa5/xa6/xba <CJK> +<U00022AB7> /x8e/xa5/xa6/xbb <CJK> +<U00022ABE> /x8e/xa5/xa6/xbc <CJK> +<U00022ABC> /x8e/xa5/xa6/xbd <CJK> +<U00022AE2> /x8e/xa5/xa6/xbe <CJK> +<U00022F06> /x8e/xa5/xa6/xbf <CJK> +<U00022EF7> /x8e/xa5/xa6/xc0 <CJK> +<U00022F07> /x8e/xa5/xa6/xc1 <CJK> +<U00022EF6> /x8e/xa5/xa6/xc2 <CJK> +<U00023B35> /x8e/xa5/xa6/xc3 <CJK> +<U0002315F> /x8e/xa5/xa6/xc4 <CJK> +<U00023165> /x8e/xa5/xa6/xc5 <CJK> +<U00023164> /x8e/xa5/xa6/xc6 <CJK> +<U00023161> /x8e/xa5/xa6/xc7 <CJK> +<U0002315A> /x8e/xa5/xa6/xc8 <CJK> +<U0002315D> /x8e/xa5/xa6/xc9 <CJK> +<U000233D7> /x8e/xa5/xa6/xcb <CJK> +<U000233D5> /x8e/xa5/xa6/xcc <CJK> +<U000233DE> /x8e/xa5/xa6/xcd <CJK> +<U000233E1> /x8e/xa5/xa6/xce <CJK> +<U000233E0> /x8e/xa5/xa6/xcf <CJK> +<U000233D9> /x8e/xa5/xa6/xd0 <CJK> +<U3B4C> /x8e/xa5/xa6/xd1 <CJK> +<U000233DA> /x8e/xa5/xa6/xd2 <CJK> +<U000233DF> /x8e/xa5/xa6/xd3 <CJK> +<U000233F6> /x8e/xa5/xa6/xd4 <CJK> +<U00023403> /x8e/xa5/xa6/xd5 <CJK> +<U3C20> /x8e/xa5/xa6/xd6 <CJK> +<U00023893> /x8e/xa5/xa6/xd7 <CJK> +<U0002388B> /x8e/xa5/xa6/xd8 <CJK> +<U00023891> /x8e/xa5/xa6/xd9 <CJK> +<U00023892> /x8e/xa5/xa6/xda <CJK> +<U0002388A> /x8e/xa5/xa6/xdb <CJK> +<U00023889> /x8e/xa5/xa6/xdc <CJK> +<U0002388F> /x8e/xa5/xa6/xdd <CJK> +<U00023956> /x8e/xa5/xa6/xde <CJK> +<U00023959> /x8e/xa5/xa6/xdf <CJK> +<U000239CA> /x8e/xa5/xa6/xe0 <CJK> +<U000239CC> /x8e/xa5/xa6/xe1 <CJK> +<U3C5B> /x8e/xa5/xa6/xe2 <CJK> +<U000239D0> /x8e/xa5/xa6/xe3 <CJK> +<U000239CD> /x8e/xa5/xa6/xe4 <CJK> +<U000239D6> /x8e/xa5/xa6/xe5 <CJK> +<U000239CB> /x8e/xa5/xa6/xe6 <CJK> +<U00023A83> /x8e/xa5/xa6/xe7 <CJK> +<U00023A82> /x8e/xa5/xa6/xe8 <CJK> +<U00023B06> /x8e/xa5/xa6/xe9 <CJK> +<U00023B2A> /x8e/xa5/xa6/xea <CJK> +<U00023B2C> /x8e/xa5/xa6/xeb <CJK> +<U00023B2B> /x8e/xa5/xa6/xec <CJK> +<U00023B29> /x8e/xa5/xa6/xed <CJK> +<U00023CBD> /x8e/xa5/xa6/xee <CJK> +<U00023CB3> /x8e/xa5/xa6/xef <CJK> +<U00023CBE> /x8e/xa5/xa6/xf0 <CJK> +<U00023CC0> /x8e/xa5/xa6/xf1 <CJK> +<U00023CB5> /x8e/xa5/xa6/xf2 <CJK> +<U00023CB6> /x8e/xa5/xa6/xf3 <CJK> +<U0002419D> /x8e/xa5/xa6/xf4 <CJK> +<U0002419F> /x8e/xa5/xa6/xf5 <CJK> +<U00024620> /x8e/xa5/xa6/xf6 <CJK> +<U3E2D> /x8e/xa5/xa6/xf7 <CJK> +<U0002461E> /x8e/xa5/xa6/xf8 <CJK> +<U0002461C> /x8e/xa5/xa6/xf9 <CJK> +<U00024632> /x8e/xa5/xa6/xfa <CJK> +<U0002461F> /x8e/xa5/xa6/xfb <CJK> +<U0002462B> /x8e/xa5/xa6/xfc <CJK> +<U00024621> /x8e/xa5/xa6/xfd <CJK> +<U00024626> /x8e/xa5/xa6/xfe <CJK> +<U00024624> /x8e/xa5/xa7/xa1 <CJK> +<U0002461D> /x8e/xa5/xa7/xa2 <CJK> +<U00024627> /x8e/xa5/xa7/xa3 <CJK> +<U0002475B> /x8e/xa5/xa7/xa4 <CJK> +<U00024759> /x8e/xa5/xa7/xa5 <CJK> +<U00024780> /x8e/xa5/xa7/xa6 <CJK> +<U00024755> /x8e/xa5/xa7/xa7 <CJK> +<U00024750> /x8e/xa5/xa7/xa8 <CJK> +<U0002475A> /x8e/xa5/xa7/xa9 <CJK> +<U00024756> /x8e/xa5/xa7/xaa <CJK> +<U00024763> /x8e/xa5/xa7/xab <CJK> +<U00024752> /x8e/xa5/xa7/xac <CJK> +<U00024758> /x8e/xa5/xa7/xad <CJK> +<U3E63> /x8e/xa5/xa7/xae <CJK> +<U00024739> /x8e/xa5/xa7/xaf <CJK> +<U000248F9> /x8e/xa5/xa7/xb0 <CJK> +<U00024B28> /x8e/xa5/xa7/xb1 <CJK> +<U3F18> /x8e/xa5/xa7/xb2 <CJK> +<U00024BBC> /x8e/xa5/xa7/xb3 <CJK> +<U00024BD6> /x8e/xa5/xa7/xb4 <CJK> +<U00024C05> /x8e/xa5/xa7/xb5 <CJK> +<U00024C20> /x8e/xa5/xa7/xb6 <CJK> +<U3F74> /x8e/xa5/xa7/xb7 <CJK> +<U00024D33> /x8e/xa5/xa7/xb8 <CJK> +<U00024F46> /x8e/xa5/xa7/xb9 <CJK> +<U00024F42> /x8e/xa5/xa7/xba <CJK> +<U00024F43> /x8e/xa5/xa7/xbb <CJK> +<U00024F47> /x8e/xa5/xa7/xbc <CJK> +<U00024FCB> /x8e/xa5/xa7/xbd <CJK> +<U00025042> /x8e/xa5/xa7/xbe <CJK> +<U00025045> /x8e/xa5/xa7/xbf <CJK> +<U000250FD> /x8e/xa5/xa7/xc0 <CJK> +<U000250F4> /x8e/xa5/xa7/xc1 <CJK> +<U000250F9> /x8e/xa5/xa7/xc2 <CJK> +<U000250FA> /x8e/xa5/xa7/xc3 <CJK> +<U0002535E> /x8e/xa5/xa7/xc4 <CJK> +<U0002541D> /x8e/xa5/xa7/xc5 <CJK> +<U4128> /x8e/xa5/xa7/xc6 <CJK> +<U00025758> /x8e/xa5/xa7/xc7 <CJK> +<U00025755> /x8e/xa5/xa7/xc8 <CJK> +<U00025A57> /x8e/xa5/xa7/xc9 <CJK> +<U00025A58> /x8e/xa5/xa7/xca <CJK> +<U00025AD9> /x8e/xa5/xa7/xcb <CJK> +<U00025ADC> /x8e/xa5/xa7/xcc <CJK> +<U00025ADB> /x8e/xa5/xa7/xcd <CJK> +<U00025E27> /x8e/xa5/xa7/xce <CJK> +<U00025F85> /x8e/xa5/xa7/xcf <CJK> +<U00025F87> /x8e/xa5/xa7/xd0 <CJK> +<U00025F8A> /x8e/xa5/xa7/xd1 <CJK> +<U0002628B> /x8e/xa5/xa7/xd2 <CJK> +<U0002634F> /x8e/xa5/xa7/xd3 <CJK> +<U00026530> /x8e/xa5/xa7/xd4 <CJK> +<U0002652F> /x8e/xa5/xa7/xd5 <CJK> +<U00026668> /x8e/xa5/xa7/xd6 <CJK> +<U00026649> /x8e/xa5/xa7/xd7 <CJK> +<U43DA> /x8e/xa5/xa7/xd8 <CJK> +<U00026648> /x8e/xa5/xa7/xd9 <CJK> +<U0002663F> /x8e/xa5/xa7/xda <CJK> +<U0002664B> /x8e/xa5/xa7/xdb <CJK> +<U0002665C> /x8e/xa5/xa7/xdc <CJK> +<U00026646> /x8e/xa5/xa7/xdd <CJK> +<U00026640> /x8e/xa5/xa7/xde <CJK> +<U00026A0D> /x8e/xa5/xa7/xdf <CJK> +<U00026B1B> /x8e/xa5/xa7/xe0 <CJK> +<U00026B1D> /x8e/xa5/xa7/xe1 <CJK> +<U00026B17> /x8e/xa5/xa7/xe2 <CJK> +<U44A4> /x8e/xa5/xa7/xe3 <CJK> +<U00026B22> /x8e/xa5/xa7/xe4 <CJK> +<U000275A7> /x8e/xa5/xa7/xe5 <CJK> +<U00027608> /x8e/xa5/xa7/xe6 <CJK> +<U00027806> /x8e/xa5/xa7/xe7 <CJK> +<U0002847D> /x8e/xa5/xa7/xe8 <CJK> +<U488E> /x8e/xa5/xa7/xe9 <CJK> +<U00028463> /x8e/xa5/xa7/xea <CJK> +<U00028464> /x8e/xa5/xa7/xeb <CJK> +<U0002847F> /x8e/xa5/xa7/xec <CJK> +<U0002846B> /x8e/xa5/xa7/xed <CJK> +<U0002847C> /x8e/xa5/xa7/xee <CJK> +<U00028468> /x8e/xa5/xa7/xef <CJK> +<U00028465> /x8e/xa5/xa7/xf0 <CJK> +<U0002846A> /x8e/xa5/xa7/xf1 <CJK> +<U00028698> /x8e/xa5/xa7/xf2 <CJK> +<U00028699> /x8e/xa5/xa7/xf3 <CJK> +<U000286AE> /x8e/xa5/xa7/xf4 <CJK> +<U00028E2B> /x8e/xa5/xa7/xf5 <CJK> +<U00028E2D> /x8e/xa5/xa7/xf6 <CJK> +<U00028E31> /x8e/xa5/xa7/xf7 <CJK> +<U00028E2E> /x8e/xa5/xa7/xf8 <CJK> +<U00028E2F> /x8e/xa5/xa7/xf9 <CJK> +<U0002006D> /x8e/xa5/xa7/xfa <CJK> +<U00020131> /x8e/xa5/xa7/xfb <CJK> +<U0002022D> /x8e/xa5/xa7/xfc <CJK> +<U00020239> /x8e/xa5/xa7/xfd <CJK> +<U00020238> /x8e/xa5/xa7/xfe <CJK> +<U345B> /x8e/xa5/xa8/xa1 <CJK> +<U0002023A> /x8e/xa5/xa8/xa2 <CJK> +<U00020235> /x8e/xa5/xa8/xa3 <CJK> +<U00020262> /x8e/xa5/xa8/xa4 <CJK> +<U000204EA> /x8e/xa5/xa8/xa5 <CJK> +<U000204EB> /x8e/xa5/xa8/xa6 <CJK> +<U00020515> /x8e/xa5/xa8/xa7 <CJK> +<U000205CC> /x8e/xa5/xa8/xa8 <CJK> +<U000205C8> /x8e/xa5/xa8/xa9 <CJK> +<U000205CD> /x8e/xa5/xa8/xaa <CJK> +<U000205DB> /x8e/xa5/xa8/xab <CJK> +<U000205CB> /x8e/xa5/xa8/xac <CJK> +<U00020711> /x8e/xa5/xa8/xad <CJK> +<U00020726> /x8e/xa5/xa8/xae <CJK> +<U00020862> /x8e/xa5/xa8/xaf <CJK> +<U0002085E> /x8e/xa5/xa8/xb0 <CJK> +<U00020861> /x8e/xa5/xa8/xb1 <CJK> +<U00020941> /x8e/xa5/xa8/xb2 <CJK> +<U0002093F> /x8e/xa5/xa8/xb3 <CJK> +<U00020975> /x8e/xa5/xa8/xb4 <CJK> +<U00023965> /x8e/xa5/xa8/xb5 <CJK> +<U00020B49> /x8e/xa5/xa8/xb6 <CJK> +<U000209EB> /x8e/xa5/xa8/xb7 <CJK> +<U00020A1A> /x8e/xa5/xa8/xb8 <CJK> +<U00020A57> /x8e/xa5/xa8/xb9 <CJK> +<U00020C6B> /x8e/xa5/xa8/xba <CJK> +<U00020CA9> /x8e/xa5/xa8/xbb <CJK> +<U00020C54> /x8e/xa5/xa8/xbc <CJK> +<U00020C62> /x8e/xa5/xa8/xbd <CJK> +<U00020CAA> /x8e/xa5/xa8/xbe <CJK> +<U00020C58> /x8e/xa5/xa8/xbf <CJK> +<U00020C72> /x8e/xa5/xa8/xc0 <CJK> +<U00020C63> /x8e/xa5/xa8/xc1 <CJK> +<U00020C73> /x8e/xa5/xa8/xc2 <CJK> +<U00020C8B> /x8e/xa5/xa8/xc3 <CJK> +<U00020C8C> /x8e/xa5/xa8/xc4 <CJK> +<U00020C5C> /x8e/xa5/xa8/xc5 <CJK> +<U00020C51> /x8e/xa5/xa8/xc6 <CJK> +<U00020C16> /x8e/xa5/xa8/xc7 <CJK> +<U00020C60> /x8e/xa5/xa8/xc8 <CJK> +<U00020C61> /x8e/xa5/xa8/xc9 <CJK> +<U00020C5E> /x8e/xa5/xa8/xca <CJK> +<U00020C5D> /x8e/xa5/xa8/xcb <CJK> +<U00020C64> /x8e/xa5/xa8/xcc <CJK> +<U00020C53> /x8e/xa5/xa8/xcd <CJK> +<U00020C5F> /x8e/xa5/xa8/xce <CJK> +<U00020C5B> /x8e/xa5/xa8/xcf <CJK> +<U00020C6E> /x8e/xa5/xa8/xd0 <CJK> +<U00020C55> /x8e/xa5/xa8/xd1 <CJK> +<U00020C52> /x8e/xa5/xa8/xd2 <CJK> +<U00020C68> /x8e/xa5/xa8/xd3 <CJK> +<U000211D2> /x8e/xa5/xa8/xd4 <CJK> +<U000211D6> /x8e/xa5/xa8/xd5 <CJK> +<U000211D3> /x8e/xa5/xa8/xd6 <CJK> +<U000212B8> /x8e/xa5/xa8/xd7 <CJK> +<U000212BB> /x8e/xa5/xa8/xd8 <CJK> +<U000212EB> /x8e/xa5/xa8/xd9 <CJK> +<U000212E8> /x8e/xa5/xa8/xda <CJK> +<U000212B6> /x8e/xa5/xa8/xdb <CJK> +<U000212EA> /x8e/xa5/xa8/xdc <CJK> +<U000212E7> /x8e/xa5/xa8/xdd <CJK> +<U000212E9> /x8e/xa5/xa8/xde <CJK> +<U00021591> /x8e/xa5/xa8/xdf <CJK> +<U00021610> /x8e/xa5/xa8/xe0 <CJK> +<U0002160E> /x8e/xa5/xa8/xe1 <CJK> +<U0002160F> /x8e/xa5/xa8/xe2 <CJK> +<U0002170B> /x8e/xa5/xa8/xe3 <CJK> +<U00021703> /x8e/xa5/xa8/xe4 <CJK> +<U0002172B> /x8e/xa5/xa8/xe5 <CJK> +<U00021709> /x8e/xa5/xa8/xe6 <CJK> +<U00021728> /x8e/xa5/xa8/xe7 <CJK> +<U0002172C> /x8e/xa5/xa8/xe8 <CJK> +<U00021725> /x8e/xa5/xa8/xe9 <CJK> +<U00021727> /x8e/xa5/xa8/xea <CJK> +<U0002170F> /x8e/xa5/xa8/xeb <CJK> +<U000219E9> /x8e/xa5/xa8/xec <CJK> +<U000219EC> /x8e/xa5/xa8/xed <CJK> +<U3753> /x8e/xa5/xa8/xee <CJK> +<U00021B27> /x8e/xa5/xa8/xef <CJK> +<U00021B73> /x8e/xa5/xa8/xf0 <CJK> +<U00021BE2> /x8e/xa5/xa8/xf1 <CJK> +<U00021BE6> /x8e/xa5/xa8/xf2 <CJK> +<U00021C61> /x8e/xa5/xa8/xf4 <CJK> +<U00021C51> /x8e/xa5/xa8/xf5 <CJK> +<U00021D12> /x8e/xa5/xa8/xf6 <CJK> +<U00021D0E> /x8e/xa5/xa8/xf7 <CJK> +<U00021DAD> /x8e/xa5/xa8/xf8 <CJK> +<U00021DAF> /x8e/xa5/xa8/xf9 <CJK> +<U00021DB1> /x8e/xa5/xa8/xfa <CJK> +<U00021DD3> /x8e/xa5/xa8/xfb <CJK> +<U00022094> /x8e/xa5/xa8/xfc <CJK> +<U00022092> /x8e/xa5/xa8/xfd <CJK> +<U00022090> /x8e/xa5/xa8/xfe <CJK> +<U0002209D> /x8e/xa5/xa9/xa1 <CJK> +<U00022093> /x8e/xa5/xa9/xa2 <CJK> +<U00022095> /x8e/xa5/xa9/xa3 <CJK> +<U00022098> /x8e/xa5/xa9/xa4 <CJK> +<U00022097> /x8e/xa5/xa9/xa5 <CJK> +<U3880> /x8e/xa5/xa9/xa6 <CJK> +<U00022207> /x8e/xa5/xa9/xa8 <CJK> +<U0002220B> /x8e/xa5/xa9/xa9 <CJK> +<U00022208> /x8e/xa5/xa9/xaa <CJK> +<U000223D9> /x8e/xa5/xa9/xab <CJK> +<U000223D5> /x8e/xa5/xa9/xac <CJK> +<U000224D7> /x8e/xa5/xa9/xad <CJK> +<U000224DF> /x8e/xa5/xa9/xae <CJK> +<U38DD> /x8e/xa5/xa9/xaf <CJK> +<U000224DE> /x8e/xa5/xa9/xb0 <CJK> +<U000224E3> /x8e/xa5/xa9/xb1 <CJK> +<U000224E2> /x8e/xa5/xa9/xb2 <CJK> +<U38DE> /x8e/xa5/xa9/xb3 <CJK> +<U00022647> /x8e/xa5/xa9/xb4 <CJK> +<U3922> /x8e/xa5/xa9/xb5 <CJK> +<U0002263D> /x8e/xa5/xa9/xb6 <CJK> +<U00022638> /x8e/xa5/xa9/xb7 <CJK> +<U00022A44> /x8e/xa5/xa9/xb8 <CJK> +<U00022A3A> /x8e/xa5/xa9/xb9 <CJK> +<U00022AB8> /x8e/xa5/xa9/xba <CJK> +<U00022B2A> /x8e/xa5/xa9/xbb <CJK> +<U00022B00> /x8e/xa5/xa9/xbc <CJK> +<U00022AF3> /x8e/xa5/xa9/xbd <CJK> +<U00022AF2> /x8e/xa5/xa9/xbe <CJK> +<U00022AEB> /x8e/xa5/xa9/xbf <CJK> +<U00022AFA> /x8e/xa5/xa9/xc0 <CJK> +<U00022AED> /x8e/xa5/xa9/xc1 <CJK> +<U00022AEC> /x8e/xa5/xa9/xc2 <CJK> +<U00022AFF> /x8e/xa5/xa9/xc3 <CJK> +<U00022AFB> /x8e/xa5/xa9/xc4 <CJK> +<U6306> /x8e/xa5/xa9/xc5 <CJK> +<U00022B4E> /x8e/xa5/xa9/xc6 <CJK> +<U00022AEF> /x8e/xa5/xa9/xc7 <CJK> +<U00022AF7> /x8e/xa5/xa9/xc8 <CJK> +<U00022F10> /x8e/xa5/xa9/xc9 <CJK> +<U00022F11> /x8e/xa5/xa9/xca <CJK> +<U00022F0C> /x8e/xa5/xa9/xcb <CJK> +<U00022F0B> /x8e/xa5/xa9/xcc <CJK> +<U000230DD> /x8e/xa5/xa9/xcd <CJK> +<U00023130> /x8e/xa5/xa9/xce <CJK> +<U3ADB> /x8e/xa5/xa9/xcf <CJK> +<U0002317A> /x8e/xa5/xa9/xd0 <CJK> +<U00023177> /x8e/xa5/xa9/xd1 <CJK> +<U00023328> /x8e/xa5/xa9/xd2 <CJK> +<U00023327> /x8e/xa5/xa9/xd3 <CJK> +<U00023365> /x8e/xa5/xa9/xd4 <CJK> +<U0002340E> /x8e/xa5/xa9/xd5 <CJK> +<U0002340B> /x8e/xa5/xa9/xd6 <CJK> +<U00023441> /x8e/xa5/xa9/xd7 <CJK> +<U00023413> /x8e/xa5/xa9/xd8 <CJK> +<U0002340F> /x8e/xa5/xa9/xd9 <CJK> +<U00023412> /x8e/xa5/xa9/xda <CJK> +<U00023430> /x8e/xa5/xa9/xdb <CJK> +<U000238A0> /x8e/xa5/xa9/xdc <CJK> +<U000238A3> /x8e/xa5/xa9/xdd <CJK> +<U0002389E> /x8e/xa5/xa9/xde <CJK> +<U00023897> /x8e/xa5/xa9/xdf <CJK> +<U000238A1> /x8e/xa5/xa9/xe0 <CJK> +<U0002389D> /x8e/xa5/xa9/xe1 <CJK> +<U0002389B> /x8e/xa5/xa9/xe2 <CJK> +<U00023963> /x8e/xa5/xa9/xe3 <CJK> +<U000239E3> /x8e/xa5/xa9/xe4 <CJK> +<U000239E4> /x8e/xa5/xa9/xe5 <CJK> +<U000239E6> /x8e/xa5/xa9/xe6 <CJK> +<U000239E7> /x8e/xa5/xa9/xe7 <CJK> +<U000239DD> /x8e/xa5/xa9/xe8 <CJK> +<U6B85> /x8e/xa5/xa9/xe9 <CJK> +<U000239EC> /x8e/xa5/xa9/xea <CJK> +<U000239E5> /x8e/xa5/xa9/xeb <CJK> +<U000239F1> /x8e/xa5/xa9/xec <CJK> +<U00023B3B> /x8e/xa5/xa9/xed <CJK> +<U00023B39> /x8e/xa5/xa9/xee <CJK> +<U00023B3A> /x8e/xa5/xa9/xef <CJK> +<U00023B3C> /x8e/xa5/xa9/xf0 <CJK> +<U00023B3D> /x8e/xa5/xa9/xf1 <CJK> +<U00023B47> /x8e/xa5/xa9/xf2 <CJK> +<U00023B3F> /x8e/xa5/xa9/xf3 <CJK> +<U00023B44> /x8e/xa5/xa9/xf4 <CJK> +<U00023C48> /x8e/xa5/xa9/xf5 <CJK> +<U00023C49> /x8e/xa5/xa9/xf6 <CJK> +<U00023C60> /x8e/xa5/xa9/xf7 <CJK> +<U00023CE3> /x8e/xa5/xa9/xf8 <CJK> +<U00023CE9> /x8e/xa5/xa9/xf9 <CJK> +<U00023CF0> /x8e/xa5/xa9/xfa <CJK> +<U3CDA> /x8e/xa5/xa9/xfb <CJK> +<U3CDB> /x8e/xa5/xa9/xfc <CJK> +<U00023CF2> /x8e/xa5/xa9/xfd <CJK> +<U00023CED> /x8e/xa5/xa9/xfe <CJK> +<U00023CEC> /x8e/xa5/xaa/xa1 <CJK> +<U00023CE6> /x8e/xa5/xaa/xa2 <CJK> +<U00023D16> /x8e/xa5/xaa/xa3 <CJK> +<U3CD7> /x8e/xa5/xaa/xa4 <CJK> +<U000241BC> /x8e/xa5/xaa/xa5 <CJK> +<U000241BE> /x8e/xa5/xaa/xa6 <CJK> +<U000241C0> /x8e/xa5/xaa/xa7 <CJK> +<U000241E0> /x8e/xa5/xaa/xa8 <CJK> +<U00024500> /x8e/xa5/xaa/xa9 <CJK> +<U00024502> /x8e/xa5/xaa/xaa <CJK> +<U000244FE> /x8e/xa5/xaa/xab <CJK> +<U0002455E> /x8e/xa5/xaa/xac <CJK> +<U000245B3> /x8e/xa5/xaa/xad <CJK> +<U000245B7> /x8e/xa5/xaa/xae <CJK> +<U0002463A> /x8e/xa5/xaa/xaf <CJK> +<U00024639> /x8e/xa5/xaa/xb0 <CJK> +<U0002463E> /x8e/xa5/xaa/xb1 <CJK> +<U00024638> /x8e/xa5/xaa/xb2 <CJK> +<U0002463D> /x8e/xa5/xaa/xb3 <CJK> +<U0002464F> /x8e/xa5/xaa/xb4 <CJK> +<U0002476E> /x8e/xa5/xaa/xb5 <CJK> +<U0002475F> /x8e/xa5/xaa/xb6 <CJK> +<U00024781> /x8e/xa5/xaa/xb7 <CJK> +<U00024782> /x8e/xa5/xaa/xb8 <CJK> +<U00024771> /x8e/xa5/xaa/xb9 <CJK> +<U0002477B> /x8e/xa5/xaa/xba <CJK> +<U00024779> /x8e/xa5/xaa/xbb <CJK> +<U00024777> /x8e/xa5/xaa/xbc <CJK> +<U00024773> /x8e/xa5/xaa/xbd <CJK> +<U0002476F> /x8e/xa5/xaa/xbe <CJK> +<U00024797> /x8e/xa5/xaa/xbf <CJK> +<U0002477E> /x8e/xa5/xaa/xc0 <CJK> +<U000248FC> /x8e/xa5/xaa/xc1 <CJK> +<U00024911> /x8e/xa5/xaa/xc2 <CJK> +<U00024932> /x8e/xa5/xaa/xc3 <CJK> +<U00024931> /x8e/xa5/xaa/xc4 <CJK> +<U00024910> /x8e/xa5/xaa/xc5 <CJK> +<U00024AEC> /x8e/xa5/xaa/xc6 <CJK> +<U00024AEB> /x8e/xa5/xaa/xc7 <CJK> +<U00024B2C> /x8e/xa5/xaa/xc8 <CJK> +<U00024B2D> /x8e/xa5/xaa/xc9 <CJK> +<U00024BDA> /x8e/xa5/xaa/xca <CJK> +<U00024C2E> /x8e/xa5/xaa/xcb <CJK> +<U00024C2C> /x8e/xa5/xaa/xcc <CJK> +<U00024C2A> /x8e/xa5/xaa/xcd <CJK> +<U00024C33> /x8e/xa5/xaa/xce <CJK> +<U00024C4B> /x8e/xa5/xaa/xcf <CJK> +<U00024D18> /x8e/xa5/xaa/xd0 <CJK> +<U00024D42> /x8e/xa5/xaa/xd1 <CJK> +<U00024D3B> /x8e/xa5/xaa/xd2 <CJK> +<U00024D3F> /x8e/xa5/xaa/xd3 <CJK> +<U00024D41> /x8e/xa5/xaa/xd4 <CJK> +<U00024D43> /x8e/xa5/xaa/xd5 <CJK> +<U00024D3C> /x8e/xa5/xaa/xd6 <CJK> +<U00024F4C> /x8e/xa5/xaa/xd7 <CJK> +<U00024F4A> /x8e/xa5/xaa/xd8 <CJK> +<U00024F49> /x8e/xa5/xaa/xd9 <CJK> +<U00024F56> /x8e/xa5/xaa/xda <CJK> +<U00024FCF> /x8e/xa5/xaa/xdb <CJK> +<U00025047> /x8e/xa5/xaa/xdc <CJK> +<U00025048> /x8e/xa5/xaa/xdd <CJK> +<U00025046> /x8e/xa5/xaa/xde <CJK> +<U0002511B> /x8e/xa5/xaa/xdf <CJK> +<U00025111> /x8e/xa5/xaa/xe0 <CJK> +<U00025114> /x8e/xa5/xaa/xe1 <CJK> +<U0002511D> /x8e/xa5/xaa/xe2 <CJK> +<U00025117> /x8e/xa5/xaa/xe3 <CJK> +<U0002511E> /x8e/xa5/xaa/xe4 <CJK> +<U0002510B> /x8e/xa5/xaa/xe5 <CJK> +<U0002511C> /x8e/xa5/xaa/xe6 <CJK> +<U00025112> /x8e/xa5/xaa/xe7 <CJK> +<U00025116> /x8e/xa5/xaa/xe8 <CJK> +<U0002510D> /x8e/xa5/xaa/xe9 <CJK> +<U00025115> /x8e/xa5/xaa/xea <CJK> +<U00025113> /x8e/xa5/xaa/xeb <CJK> +<U00025118> /x8e/xa5/xaa/xec <CJK> +<U401A> /x8e/xa5/xaa/xed <CJK> +<U000253AC> /x8e/xa5/xaa/xee <CJK> +<U00025444> /x8e/xa5/xaa/xef <CJK> +<U0002542C> /x8e/xa5/xaa/xf0 <CJK> +<U00025445> /x8e/xa5/xaa/xf1 <CJK> +<U00025766> /x8e/xa5/xaa/xf2 <CJK> +<U0002576E> /x8e/xa5/xaa/xf3 <CJK> +<U00025765> /x8e/xa5/xaa/xf4 <CJK> +<U00025768> /x8e/xa5/xaa/xf5 <CJK> +<U00025784> /x8e/xa5/xaa/xf6 <CJK> +<U00025938> /x8e/xa5/xaa/xf7 <CJK> +<U0002593B> /x8e/xa5/xaa/xf8 <CJK> +<U0002593A> /x8e/xa5/xaa/xf9 <CJK> +<U0002593F> /x8e/xa5/xaa/xfa <CJK> +<U00025ADF> /x8e/xa5/xaa/xfb <CJK> +<U00025ADD> /x8e/xa5/xaa/xfc <CJK> +<U00025ADE> /x8e/xa5/xaa/xfd <CJK> +<U00025AE2> /x8e/xa5/xaa/xfe <CJK> +<U41D6> /x8e/xa5/xab/xa1 <CJK> +<U00025E2C> /x8e/xa5/xab/xa2 <CJK> +<U00025E2F> /x8e/xa5/xab/xa3 <CJK> +<U00025F8F> /x8e/xa5/xab/xa4 <CJK> +<U00025F90> /x8e/xa5/xab/xa5 <CJK> +<U00025F8C> /x8e/xa5/xab/xa6 <CJK> +<U00025F93> /x8e/xa5/xab/xa7 <CJK> +<U00026225> /x8e/xa5/xab/xa8 <CJK> +<U00026288> /x8e/xa5/xab/xa9 <CJK> +<U000262A7> /x8e/xa5/xab/xaa <CJK> +<U000263F7> /x8e/xa5/xab/xab <CJK> +<U000264BB> /x8e/xa5/xab/xac <CJK> +<U00026538> /x8e/xa5/xab/xad <CJK> +<U00026539> /x8e/xa5/xab/xae <CJK> +<U00026537> /x8e/xa5/xab/xaf <CJK> +<U00026614> /x8e/xa5/xab/xb0 <CJK> +<U0002666E> /x8e/xa5/xab/xb1 <CJK> +<U0002667B> /x8e/xa5/xab/xb2 <CJK> +<U43DE> /x8e/xa5/xab/xb3 <CJK> +<U0002666C> /x8e/xa5/xab/xb4 <CJK> +<U0002667F> /x8e/xa5/xab/xb5 <CJK> +<U00026678> /x8e/xa5/xab/xb6 <CJK> +<U0002667A> /x8e/xa5/xab/xb7 <CJK> +<U0002666F> /x8e/xa5/xab/xb8 <CJK> +<U43E5> /x8e/xa5/xab/xb9 <CJK> +<U000268FE> /x8e/xa5/xab/xba <CJK> +<U00026B48> /x8e/xa5/xab/xbb <CJK> +<U00026B4B> /x8e/xa5/xab/xbc <CJK> +<U00026B41> /x8e/xa5/xab/xbd <CJK> +<U00026B49> /x8e/xa5/xab/xbe <CJK> +<U00026B3B> /x8e/xa5/xab/xbf <CJK> +<U0002722D> /x8e/xa5/xab/xc0 <CJK> +<U000275E3> /x8e/xa5/xab/xc1 <CJK> +<U0002761A> /x8e/xa5/xab/xc2 <CJK> +<U0002760D> /x8e/xa5/xab/xc3 <CJK> +<U00027613> /x8e/xa5/xab/xc4 <CJK> +<U00027611> /x8e/xa5/xab/xc5 <CJK> +<U0002761C> /x8e/xa5/xab/xc6 <CJK> +<U4672> /x8e/xa5/xab/xc7 <CJK> +<U000278B5> /x8e/xa5/xab/xc8 <CJK> +<U46AF> /x8e/xa5/xab/xc9 <CJK> +<U00027C29> /x8e/xa5/xab/xca <CJK> +<U00027CA1> /x8e/xa5/xab/xcb <CJK> +<U00027D24> /x8e/xa5/xab/xcc <CJK> +<U00027FBB> /x8e/xa5/xab/xcd <CJK> +<U000282A1> /x8e/xa5/xab/xce <CJK> +<U00028483> /x8e/xa5/xab/xcf <CJK> +<U0002848D> /x8e/xa5/xab/xd0 <CJK> +<U00028487> /x8e/xa5/xab/xd1 <CJK> +<U00028485> /x8e/xa5/xab/xd2 <CJK> +<U0002848A> /x8e/xa5/xab/xd3 <CJK> +<U000284A3> /x8e/xa5/xab/xd4 <CJK> +<U00028489> /x8e/xa5/xab/xd5 <CJK> +<U00028484> /x8e/xa5/xab/xd6 <CJK> +<U000284A2> /x8e/xa5/xab/xd7 <CJK> +<U000286B1> /x8e/xa5/xab/xd8 <CJK> +<U000286B0> /x8e/xa5/xab/xd9 <CJK> +<U000286AF> /x8e/xa5/xab/xda <CJK> +<U000286B6> /x8e/xa5/xab/xdb <CJK> +<U000286C9> /x8e/xa5/xab/xdc <CJK> +<U000286CA> /x8e/xa5/xab/xdd <CJK> +<U000286C8> /x8e/xa5/xab/xde <CJK> +<U000286B4> /x8e/xa5/xab/xdf <CJK> +<U00028C59> /x8e/xa5/xab/xe0 <CJK> +<U00028CC9> /x8e/xa5/xab/xe1 <CJK> +<U00028E41> /x8e/xa5/xab/xe2 <CJK> +<U00028E4C> /x8e/xa5/xab/xe3 <CJK> +<U49C4> /x8e/xa5/xab/xe4 <CJK> +<U00028E45> /x8e/xa5/xab/xe5 <CJK> +<U00028E5A> /x8e/xa5/xab/xe6 <CJK> +<U000200B9> /x8e/xa5/xab/xe7 <CJK> +<U00020294> /x8e/xa5/xab/xe8 <CJK> +<U0002026E> /x8e/xa5/xab/xe9 <CJK> +<U000202A2> /x8e/xa5/xab/xea <CJK> +<U00020267> /x8e/xa5/xab/xeb <CJK> +<U3463> /x8e/xa5/xab/xec <CJK> +<U000202A3> /x8e/xa5/xab/xed <CJK> +<U00020276> /x8e/xa5/xab/xee <CJK> +<U0002026C> /x8e/xa5/xab/xef <CJK> +<U00020264> /x8e/xa5/xab/xf0 <CJK> +<U000202A5> /x8e/xa5/xab/xf1 <CJK> +<U00020230> /x8e/xa5/xab/xf2 <CJK> +<U000202A6> /x8e/xa5/xab/xf3 <CJK> +<U00020269> /x8e/xa5/xab/xf4 <CJK> +<U000202A4> /x8e/xa5/xab/xf5 <CJK> +<U00020490> /x8e/xa5/xab/xf6 <CJK> +<U0002055F> /x8e/xa5/xab/xf7 <CJK> +<U00020560> /x8e/xa5/xab/xf8 <CJK> +<U000205DA> /x8e/xa5/xab/xf9 <CJK> +<U000205D8> /x8e/xa5/xab/xfa <CJK> +<U000205DD> /x8e/xa5/xab/xfb <CJK> +<U34EC> /x8e/xa5/xab/xfc <CJK> +<U00020759> /x8e/xa5/xab/xfd <CJK> +<U0002075B> /x8e/xa5/xab/xfe <CJK> +<U0002075A> /x8e/xa5/xac/xa1 <CJK> +<U00020739> /x8e/xa5/xac/xa2 <CJK> +<U00020734> /x8e/xa5/xac/xa3 <CJK> +<U00020744> /x8e/xa5/xac/xa4 <CJK> +<U00020733> /x8e/xa5/xac/xa5 <CJK> +<U0002073C> /x8e/xa5/xac/xa6 <CJK> +<U00020758> /x8e/xa5/xac/xa7 <CJK> +<U0002076A> /x8e/xa5/xac/xa8 <CJK> +<U0002086F> /x8e/xa5/xac/xa9 <CJK> +<U00020872> /x8e/xa5/xac/xaa <CJK> +<U00020870> /x8e/xa5/xac/xab <CJK> +<U00020871> /x8e/xa5/xac/xac <CJK> +<U0002086E> /x8e/xa5/xac/xad <CJK> +<U000208F0> /x8e/xa5/xac/xae <CJK> +<U000208EB> /x8e/xa5/xac/xaf <CJK> +<U00020949> /x8e/xa5/xac/xb0 <CJK> +<U0002094C> /x8e/xa5/xac/xb1 <CJK> +<U000209F5> /x8e/xa5/xac/xb2 <CJK> +<U00020A20> /x8e/xa5/xac/xb3 <CJK> +<U00020A6A> /x8e/xa5/xac/xb4 <CJK> +<U00020A72> /x8e/xa5/xac/xb5 <CJK> +<U00020B4B> /x8e/xa5/xac/xb6 <CJK> +<U00020B5D> /x8e/xa5/xac/xb7 <CJK> +<U00020C50> /x8e/xa5/xac/xb8 <CJK> +<U00020CF9> /x8e/xa5/xac/xb9 <CJK> +<U00020CFA> /x8e/xa5/xac/xba <CJK> +<U00020CFB> /x8e/xa5/xac/xbb <CJK> +<U00020D23> /x8e/xa5/xac/xbc <CJK> +<U00020CB7> /x8e/xa5/xac/xbd <CJK> +<U00020D22> /x8e/xa5/xac/xbe <CJK> +<U00020CB5> /x8e/xa5/xac/xbf <CJK> +<U00020CC4> /x8e/xa5/xac/xc0 <CJK> +<U00020CB4> /x8e/xa5/xac/xc1 <CJK> +<U00020CEF> /x8e/xa5/xac/xc2 <CJK> +<U3598> /x8e/xa5/xac/xc3 <CJK> +<U00020CCD> /x8e/xa5/xac/xc4 <CJK> +<U00020CF0> /x8e/xa5/xac/xc5 <CJK> +<U00020CB8> /x8e/xa5/xac/xc6 <CJK> +<U00020CCB> /x8e/xa5/xac/xc7 <CJK> +<U00020CF1> /x8e/xa5/xac/xc8 <CJK> +<U00020CBA> /x8e/xa5/xac/xc9 <CJK> +<U00020D03> /x8e/xa5/xac/xca <CJK> +<U00020CF8> /x8e/xa5/xac/xcb <CJK> +<U00020CB6> /x8e/xa5/xac/xcc <CJK> +<U00020CBC> /x8e/xa5/xac/xcd <CJK> +<U00020CB3> /x8e/xa5/xac/xce <CJK> +<U00020D21> /x8e/xa5/xac/xcf <CJK> +<U00020CF7> /x8e/xa5/xac/xd0 <CJK> +<U00020CC2> /x8e/xa5/xac/xd1 <CJK> +<U00020CBE> /x8e/xa5/xac/xd2 <CJK> +<U00020CC9> /x8e/xa5/xac/xd3 <CJK> +<U00020CBD> /x8e/xa5/xac/xd4 <CJK> +<U00020CCE> /x8e/xa5/xac/xd5 <CJK> +<U00020CB9> /x8e/xa5/xac/xd6 <CJK> +<U00020CC7> /x8e/xa5/xac/xd7 <CJK> +<U00020CCA> /x8e/xa5/xac/xd8 <CJK> +<U00020CCC> /x8e/xa5/xac/xd9 <CJK> +<U00020D26> /x8e/xa5/xac/xda <CJK> +<U000211E4> /x8e/xa5/xac/xdb <CJK> +<U000211E0> /x8e/xa5/xac/xdc <CJK> +<U000211F0> /x8e/xa5/xac/xdd <CJK> +<U000212EC> /x8e/xa5/xac/xde <CJK> +<U00021324> /x8e/xa5/xac/xdf <CJK> +<U00021318> /x8e/xa5/xac/xe0 <CJK> +<U0002132F> /x8e/xa5/xac/xe1 <CJK> +<U00021325> /x8e/xa5/xac/xe2 <CJK> +<U00021528> /x8e/xa5/xac/xe3 <CJK> +<U00021522> /x8e/xa5/xac/xe4 <CJK> +<U0002156A> /x8e/xa5/xac/xe5 <CJK> +<U00020157> /x8e/xa5/xac/xe6 <CJK> +<U00021594> /x8e/xa5/xac/xe7 <CJK> +<U00021592> /x8e/xa5/xac/xe8 <CJK> +<U0002159C> /x8e/xa5/xac/xe9 <CJK> +<U00021622> /x8e/xa5/xac/xea <CJK> +<U00021630> /x8e/xa5/xac/xeb <CJK> +<U0002161D> /x8e/xa5/xac/xec <CJK> +<U00021623> /x8e/xa5/xac/xed <CJK> +<U00021735> /x8e/xa5/xac/xee <CJK> +<U00021733> /x8e/xa5/xac/xef <CJK> +<U0002172F> /x8e/xa5/xac/xf0 <CJK> +<U0002174D> /x8e/xa5/xac/xf1 <CJK> +<U00021731> /x8e/xa5/xac/xf2 <CJK> +<U0002175B> /x8e/xa5/xac/xf3 <CJK> +<U0002175A> /x8e/xa5/xac/xf4 <CJK> +<U00021732> /x8e/xa5/xac/xf5 <CJK> +<U0002175C> /x8e/xa5/xac/xf6 <CJK> +<U00021759> /x8e/xa5/xac/xf7 <CJK> +<U0002175D> /x8e/xa5/xac/xf8 <CJK> +<U00021969> /x8e/xa5/xac/xf9 <CJK> +<U0002196D> /x8e/xa5/xac/xfa <CJK> +<U00022232> /x8e/xa5/xac/xfb <CJK> +<U3758> /x8e/xa5/xac/xfc <CJK> +<U00021A0A> /x8e/xa5/xac/xfd <CJK> +<U00021A20> /x8e/xa5/xac/xfe <CJK> +<U00021A1F> /x8e/xa5/xad/xa1 <CJK> +<U00021A0D> /x8e/xa5/xad/xa2 <CJK> +<U00021BE8> /x8e/xa5/xad/xa3 <CJK> +<U00021BEC> /x8e/xa5/xad/xa4 <CJK> +<U00021C77> /x8e/xa5/xad/xa5 <CJK> +<U00021C70> /x8e/xa5/xad/xa6 <CJK> +<U00021C71> /x8e/xa5/xad/xa7 <CJK> +<U00021DF8> /x8e/xa5/xad/xa8 <CJK> +<U00021DD6> /x8e/xa5/xad/xa9 <CJK> +<U00021DD9> /x8e/xa5/xad/xaa <CJK> +<U00021DDE> /x8e/xa5/xad/xab <CJK> +<U00021DD5> /x8e/xa5/xad/xac <CJK> +<U00021DE1> /x8e/xa5/xad/xad <CJK> +<U37D3> /x8e/xa5/xad/xae <CJK> +<U00021DE2> /x8e/xa5/xad/xaf <CJK> +<U00021DDD> /x8e/xa5/xad/xb0 <CJK> +<U00021DE0> /x8e/xa5/xad/xb1 <CJK> +<U00021E0E> /x8e/xa5/xad/xb2 <CJK> +<U00021E08> /x8e/xa5/xad/xb3 <CJK> +<U00021DDC> /x8e/xa5/xad/xb4 <CJK> +<U00021E0A> /x8e/xa5/xad/xb5 <CJK> +<U00021E0C> /x8e/xa5/xad/xb6 <CJK> +<U000220B4> /x8e/xa5/xad/xb7 <CJK> +<U000220B1> /x8e/xa5/xad/xb8 <CJK> +<U000220B6> /x8e/xa5/xad/xb9 <CJK> +<U000220BC> /x8e/xa5/xad/xba <CJK> +<U0002221D> /x8e/xa5/xad/xbb <CJK> +<U00022224> /x8e/xa5/xad/xbc <CJK> +<U00022219> /x8e/xa5/xad/xbd <CJK> +<U0002221B> /x8e/xa5/xad/xbe <CJK> +<U00022222> /x8e/xa5/xad/xbf <CJK> +<U0002221A> /x8e/xa5/xad/xc0 <CJK> +<U0002221C> /x8e/xa5/xad/xc1 <CJK> +<U00022221> /x8e/xa5/xad/xc2 <CJK> +<U000223E6> /x8e/xa5/xad/xc3 <CJK> +<U000223E4> /x8e/xa5/xad/xc4 <CJK> +<U000223E7> /x8e/xa5/xad/xc5 <CJK> +<U000223EA> /x8e/xa5/xad/xc6 <CJK> +<U38E2> /x8e/xa5/xad/xc7 <CJK> +<U000224F0> /x8e/xa5/xad/xc9 <CJK> +<U000224F5> /x8e/xa5/xad/xca <CJK> +<U000224EF> /x8e/xa5/xad/xcb <CJK> +<U00022642> /x8e/xa5/xad/xcc <CJK> +<U0002266E> /x8e/xa5/xad/xcd <CJK> +<U0002263C> /x8e/xa5/xad/xce <CJK> +<U00022697> /x8e/xa5/xad/xcf <CJK> +<U0002268C> /x8e/xa5/xad/xd0 <CJK> +<U00022681> /x8e/xa5/xad/xd1 <CJK> +<U00022671> /x8e/xa5/xad/xd2 <CJK> +<U000226CE> /x8e/xa5/xad/xd3 <CJK> +<U000226BA> /x8e/xa5/xad/xd4 <CJK> +<U0002267A> /x8e/xa5/xad/xd5 <CJK> +<U0002267E> /x8e/xa5/xad/xd6 <CJK> +<U3954> /x8e/xa5/xad/xd7 <CJK> +<U00022672> /x8e/xa5/xad/xd8 <CJK> +<U000226BB> /x8e/xa5/xad/xd9 <CJK> +<U392F> /x8e/xa5/xad/xda <CJK> +<U00022673> /x8e/xa5/xad/xdb <CJK> +<U00022682> /x8e/xa5/xad/xdc <CJK> +<U39B6> /x8e/xa5/xad/xdd <CJK> +<U000229BA> /x8e/xa5/xad/xde <CJK> +<U000229B8> /x8e/xa5/xad/xdf <CJK> +<U00022A4B> /x8e/xa5/xad/xe0 <CJK> +<U00022A48> /x8e/xa5/xad/xe1 <CJK> +<U00022B2B> /x8e/xa5/xad/xe2 <CJK> +<U00022AF4> /x8e/xa5/xad/xe3 <CJK> +<U00022B2C> /x8e/xa5/xad/xe4 <CJK> +<U00022B42> /x8e/xa5/xad/xe5 <CJK> +<U00022B48> /x8e/xa5/xad/xe6 <CJK> +<U00022B44> /x8e/xa5/xad/xe7 <CJK> +<U00022B45> /x8e/xa5/xad/xe8 <CJK> +<U00022B3C> /x8e/xa5/xad/xe9 <CJK> +<U00022B37> /x8e/xa5/xad/xea <CJK> +<U00022B33> /x8e/xa5/xad/xeb <CJK> +<U00022B41> /x8e/xa5/xad/xec <CJK> +<U00022B32> /x8e/xa5/xad/xed <CJK> +<U00022B87> /x8e/xa5/xad/xee <CJK> +<U00022F27> /x8e/xa5/xad/xef <CJK> +<U00022F23> /x8e/xa5/xad/xf0 <CJK> +<U00022F2D> /x8e/xa5/xad/xf1 <CJK> +<U00022F1F> /x8e/xa5/xad/xf2 <CJK> +<U00022F2C> /x8e/xa5/xad/xf3 <CJK> +<U00022F28> /x8e/xa5/xad/xf4 <CJK> +<U00023075> /x8e/xa5/xad/xf5 <CJK> +<U00023074> /x8e/xa5/xad/xf6 <CJK> +<U000230E7> /x8e/xa5/xad/xf7 <CJK> +<U00023132> /x8e/xa5/xad/xf8 <CJK> +<U00023131> /x8e/xa5/xad/xf9 <CJK> +<U00023199> /x8e/xa5/xad/xfa <CJK> +<U00023196> /x8e/xa5/xad/xfb <CJK> +<U00023198> /x8e/xa5/xad/xfc <CJK> +<U0002319D> /x8e/xa5/xad/xfd <CJK> +<U00023192> /x8e/xa5/xad/xfe <CJK> +<U00023194> /x8e/xa5/xae/xa1 <CJK> +<U00023195> /x8e/xa5/xae/xa2 <CJK> +<U00023197> /x8e/xa5/xae/xa3 <CJK> +<U000266B9> /x8e/xa5/xae/xa4 <CJK> +<U3B35> /x8e/xa5/xae/xa5 <CJK> +<U00023411> /x8e/xa5/xae/xa6 <CJK> +<U0002343B> /x8e/xa5/xae/xa7 <CJK> +<U00023479> /x8e/xa5/xae/xa8 <CJK> +<U00023442> /x8e/xa5/xae/xa9 <CJK> +<U00023443> /x8e/xa5/xae/xaa <CJK> +<U3B5D> /x8e/xa5/xae/xab <CJK> +<U00023478> /x8e/xa5/xae/xac <CJK> +<U000238AC> /x8e/xa5/xae/xad <CJK> +<U3C29> /x8e/xa5/xae/xae <CJK> +<U000238B1> /x8e/xa5/xae/xaf <CJK> +<U000238B4> /x8e/xa5/xae/xb0 <CJK> +<U000238B3> /x8e/xa5/xae/xb1 <CJK> +<U000238AF> /x8e/xa5/xae/xb2 <CJK> +<U000238AA> /x8e/xa5/xae/xb3 <CJK> +<U000238B2> /x8e/xa5/xae/xb4 <CJK> +<U00023968> /x8e/xa5/xae/xb5 <CJK> +<U000239F2> /x8e/xa5/xae/xb6 <CJK> +<U000239FE> /x8e/xa5/xae/xb7 <CJK> +<U000239F8> /x8e/xa5/xae/xb8 <CJK> +<U000239F9> /x8e/xa5/xae/xb9 <CJK> +<U000239FF> /x8e/xa5/xae/xba <CJK> +<U000239F5> /x8e/xa5/xae/xbb <CJK> +<U000239F7> /x8e/xa5/xae/xbc <CJK> +<U000239FD> /x8e/xa5/xae/xbd <CJK> +<U00023A00> /x8e/xa5/xae/xbe <CJK> +<U00023A88> /x8e/xa5/xae/xbf <CJK> +<U00023B6E> /x8e/xa5/xae/xc0 <CJK> +<U00023B5D> /x8e/xa5/xae/xc1 <CJK> +<U00023B63> /x8e/xa5/xae/xc2 <CJK> +<U00023B60> /x8e/xa5/xae/xc3 <CJK> +<U00023C61> /x8e/xa5/xae/xc4 <CJK> +<U00023D37> /x8e/xa5/xae/xc5 <CJK> +<U00023D71> /x8e/xa5/xae/xc6 <CJK> +<U00023D23> /x8e/xa5/xae/xc7 <CJK> +<U00023D22> /x8e/xa5/xae/xc8 <CJK> +<U00023D1F> /x8e/xa5/xae/xc9 <CJK> +<U00023D25> /x8e/xa5/xae/xca <CJK> +<U000241FD> /x8e/xa5/xae/xcb <CJK> +<U00024211> /x8e/xa5/xae/xcc <CJK> +<U00024223> /x8e/xa5/xae/xcd <CJK> +<U000241F0> /x8e/xa5/xae/xce <CJK> +<U000241EF> /x8e/xa5/xae/xcf <CJK> +<U0002450E> /x8e/xa5/xae/xd0 <CJK> +<U0002450C> /x8e/xa5/xae/xd1 <CJK> +<U000245BA> /x8e/xa5/xae/xd2 <CJK> +<U3E1F> /x8e/xa5/xae/xd3 <CJK> +<U00024652> /x8e/xa5/xae/xd4 <CJK> +<U00024655> /x8e/xa5/xae/xd5 <CJK> +<U00024653> /x8e/xa5/xae/xd6 <CJK> +<U00024654> /x8e/xa5/xae/xd7 <CJK> +<U00024651> /x8e/xa5/xae/xd8 <CJK> +<U00024658> /x8e/xa5/xae/xd9 <CJK> +<U000247B0> /x8e/xa5/xae/xda <CJK> +<U0002479F> /x8e/xa5/xae/xdb <CJK> +<U3E72> /x8e/xa5/xae/xdc <CJK> +<U000247A1> /x8e/xa5/xae/xdd <CJK> +<U0002479A> /x8e/xa5/xae/xde <CJK> +<U000247BE> /x8e/xa5/xae/xdf <CJK> +<U000247A0> /x8e/xa5/xae/xe0 <CJK> +<U00024937> /x8e/xa5/xae/xe1 <CJK> +<U3F0B> /x8e/xa5/xae/xe2 <CJK> +<U00024AF1> /x8e/xa5/xae/xe3 <CJK> +<U00024AF2> /x8e/xa5/xae/xe4 <CJK> +<U00024B34> /x8e/xa5/xae/xe5 <CJK> +<U00024B37> /x8e/xa5/xae/xe6 <CJK> +<U00024B35> /x8e/xa5/xae/xe7 <CJK> +<U0002238C> /x8e/xa5/xae/xe8 <CJK> +<U00024BDF> /x8e/xa5/xae/xe9 <CJK> +<U00024C4C> /x8e/xa5/xae/xea <CJK> +<U00024C4E> /x8e/xa5/xae/xeb <CJK> +<U00024C64> /x8e/xa5/xae/xec <CJK> +<U00024C63> /x8e/xa5/xae/xed <CJK> +<U00024C36> /x8e/xa5/xae/xee <CJK> +<U00024D58> /x8e/xa5/xae/xef <CJK> +<U00024D68> /x8e/xa5/xae/xf0 <CJK> +<U00024D5B> /x8e/xa5/xae/xf1 <CJK> +<U00024D5F> /x8e/xa5/xae/xf2 <CJK> +<U00024D59> /x8e/xa5/xae/xf3 <CJK> +<U00024D65> /x8e/xa5/xae/xf4 <CJK> +<U00024D60> /x8e/xa5/xae/xf5 <CJK> +<U00024D5E> /x8e/xa5/xae/xf6 <CJK> +<U00024FD5> /x8e/xa5/xae/xf7 <CJK> +<U00024FD6> /x8e/xa5/xae/xf8 <CJK> +<U0002504E> /x8e/xa5/xae/xf9 <CJK> +<U00025052> /x8e/xa5/xae/xfa <CJK> +<U00025135> /x8e/xa5/xae/xfb <CJK> +<U00025139> /x8e/xa5/xae/xfc <CJK> +<U00025158> /x8e/xa5/xae/xfd <CJK> +<U00025141> /x8e/xa5/xae/xfe <CJK> +<U00025157> /x8e/xa5/xaf/xa1 <CJK> +<U00025138> /x8e/xa5/xaf/xa2 <CJK> +<U0002513D> /x8e/xa5/xaf/xa3 <CJK> +<U00025132> /x8e/xa5/xaf/xa4 <CJK> +<U00025144> /x8e/xa5/xaf/xa5 <CJK> +<U00025363> /x8e/xa5/xaf/xa7 <CJK> +<U00025362> /x8e/xa5/xaf/xa8 <CJK> +<U000253B8> /x8e/xa5/xaf/xa9 <CJK> +<U000253B0> /x8e/xa5/xaf/xaa <CJK> +<U000253B1> /x8e/xa5/xaf/xab <CJK> +<U0002544D> /x8e/xa5/xaf/xac <CJK> +<U00025463> /x8e/xa5/xaf/xad <CJK> +<U00025470> /x8e/xa5/xaf/xae <CJK> +<U0002544B> /x8e/xa5/xaf/xaf <CJK> +<U0002544F> /x8e/xa5/xaf/xb0 <CJK> +<U0002544E> /x8e/xa5/xaf/xb1 <CJK> +<U00025453> /x8e/xa5/xaf/xb2 <CJK> +<U00025447> /x8e/xa5/xaf/xb3 <CJK> +<U40A2> /x8e/xa5/xaf/xb4 <CJK> +<U00025454> /x8e/xa5/xaf/xb5 <CJK> +<U00025452> /x8e/xa5/xaf/xb6 <CJK> +<U00025459> /x8e/xa5/xaf/xb7 <CJK> +<U0002547E> /x8e/xa5/xaf/xb8 <CJK> +<U0002562B> /x8e/xa5/xaf/xb9 <CJK> +<U0002562E> /x8e/xa5/xaf/xba <CJK> +<U0002577F> /x8e/xa5/xaf/xbb <CJK> +<U0002577E> /x8e/xa5/xaf/xbc <CJK> +<U00025781> /x8e/xa5/xaf/xbd <CJK> +<U00025783> /x8e/xa5/xaf/xbe <CJK> +<U00025947> /x8e/xa5/xaf/xbf <CJK> +<U00025954> /x8e/xa5/xaf/xc0 <CJK> +<U0002594D> /x8e/xa5/xaf/xc1 <CJK> +<U0002594C> /x8e/xa5/xaf/xc2 <CJK> +<U0002594B> /x8e/xa5/xaf/xc3 <CJK> +<U00025957> /x8e/xa5/xaf/xc4 <CJK> +<U00025A65> /x8e/xa5/xaf/xc5 <CJK> +<U00025A64> /x8e/xa5/xaf/xc6 <CJK> +<U00025A61> /x8e/xa5/xaf/xc7 <CJK> +<U00025A62> /x8e/xa5/xaf/xc8 <CJK> +<U00025AF0> /x8e/xa5/xaf/xc9 <CJK> +<U00025AF3> /x8e/xa5/xaf/xca <CJK> +<U00025AF9> /x8e/xa5/xaf/xcb <CJK> +<U00025AF4> /x8e/xa5/xaf/xcc <CJK> +<U00025AF5> /x8e/xa5/xaf/xcd <CJK> +<U00025AEF> /x8e/xa5/xaf/xce <CJK> +<U00025AF8> /x8e/xa5/xaf/xcf <CJK> +<U00025AFC> /x8e/xa5/xaf/xd0 <CJK> +<U00025AF7> /x8e/xa5/xaf/xd1 <CJK> +<U00025AFD> /x8e/xa5/xaf/xd2 <CJK> +<U00025B17> /x8e/xa5/xaf/xd3 <CJK> +<U00025E34> /x8e/xa5/xaf/xd4 <CJK> +<U00025E36> /x8e/xa5/xaf/xd5 <CJK> +<U00025E38> /x8e/xa5/xaf/xd6 <CJK> +<U00025FAF> /x8e/xa5/xaf/xd7 <CJK> +<U00025FAE> /x8e/xa5/xaf/xd8 <CJK> +<U00025FAC> /x8e/xa5/xaf/xd9 <CJK> +<U00025FA2> /x8e/xa5/xaf/xda <CJK> +<U00026228> /x8e/xa5/xaf/xdb <CJK> +<U00022EC2> /x8e/xa5/xaf/xdc <CJK> +<U0002629C> /x8e/xa5/xaf/xdd <CJK> +<U000262B3> /x8e/xa5/xaf/xde <CJK> +<U00026290> /x8e/xa5/xaf/xdf <CJK> +<U00026406> /x8e/xa5/xaf/xe0 <CJK> +<U00026404> /x8e/xa5/xaf/xe1 <CJK> +<U0002640B> /x8e/xa5/xaf/xe2 <CJK> +<U00026405> /x8e/xa5/xaf/xe3 <CJK> +<U00026540> /x8e/xa5/xaf/xe4 <CJK> +<U0002654F> /x8e/xa5/xaf/xe5 <CJK> +<U000266AB> /x8e/xa5/xaf/xe6 <CJK> +<U0002669D> /x8e/xa5/xaf/xe7 <CJK> +<U000266B8> /x8e/xa5/xaf/xe8 <CJK> +<U000266B2> /x8e/xa5/xaf/xe9 <CJK> +<U000266D2> /x8e/xa5/xaf/xea <CJK> +<U000266CF> /x8e/xa5/xaf/xeb <CJK> +<U000266A2> /x8e/xa5/xaf/xec <CJK> +<U43EC> /x8e/xa5/xaf/xed <CJK> +<U000266A5> /x8e/xa5/xaf/xee <CJK> +<U000266A9> /x8e/xa5/xaf/xef <CJK> +<U000266A7> /x8e/xa5/xaf/xf0 <CJK> +<U000266D0> /x8e/xa5/xaf/xf1 <CJK> +<U00026902> /x8e/xa5/xaf/xf2 <CJK> +<U000269CF> /x8e/xa5/xaf/xf3 <CJK> +<U000269D0> /x8e/xa5/xaf/xf4 <CJK> +<U00026A16> /x8e/xa5/xaf/xf5 <CJK> +<U00026A19> /x8e/xa5/xaf/xf6 <CJK> +<U00026B75> /x8e/xa5/xaf/xf7 <CJK> +<U00026B71> /x8e/xa5/xaf/xf8 <CJK> +<U00026B91> /x8e/xa5/xaf/xf9 <CJK> +<U00026B72> /x8e/xa5/xaf/xfa <CJK> +<U00026B8E> /x8e/xa5/xaf/xfb <CJK> +<U00026B6D> /x8e/xa5/xaf/xfc <CJK> +<U00026B88> /x8e/xa5/xaf/xfd <CJK> +<U00026B73> /x8e/xa5/xaf/xfe <CJK> +<U44BB> /x8e/xa5/xb0/xa1 <CJK> +<U00026B81> /x8e/xa5/xb0/xa2 <CJK> +<U00026B76> /x8e/xa5/xb0/xa3 <CJK> +<U00026B7B> /x8e/xa5/xb0/xa4 <CJK> +<U00026B7F> /x8e/xa5/xb0/xa5 <CJK> +<U00026B90> /x8e/xa5/xb0/xa6 <CJK> +<U00026B78> /x8e/xa5/xb0/xa7 <CJK> +<U0002724B> /x8e/xa5/xb0/xa8 <CJK> +<U00027248> /x8e/xa5/xb0/xa9 <CJK> +<U0002725B> /x8e/xa5/xb0/xaa <CJK> +<U00027251> /x8e/xa5/xb0/xab <CJK> +<U0002723D> /x8e/xa5/xb0/xac <CJK> +<U00027240> /x8e/xa5/xb0/xad <CJK> +<U00027246> /x8e/xa5/xb0/xae <CJK> +<U0002724D> /x8e/xa5/xb0/xaf <CJK> +<U0002723B> /x8e/xa5/xb0/xb0 <CJK> +<U0002724A> /x8e/xa5/xb0/xb1 <CJK> +<U00027241> /x8e/xa5/xb0/xb2 <CJK> +<U0002723E> /x8e/xa5/xb0/xb3 <CJK> +<U0002724E> /x8e/xa5/xb0/xb4 <CJK> +<U000275AC> /x8e/xa5/xb0/xb5 <CJK> +<U000275E6> /x8e/xa5/xb0/xb6 <CJK> +<U000275E9> /x8e/xa5/xb0/xb7 <CJK> +<U00027629> /x8e/xa5/xb0/xb8 <CJK> +<U4621> /x8e/xa5/xb0/xb9 <CJK> +<U00027633> /x8e/xa5/xb0/xba <CJK> +<U0002762E> /x8e/xa5/xb0/xbb <CJK> +<U0002761E> /x8e/xa5/xb0/xbc <CJK> +<U461F> /x8e/xa5/xb0/xbd <CJK> +<U00027622> /x8e/xa5/xb0/xbf <CJK> +<U00027627> /x8e/xa5/xb0/xc0 <CJK> +<U000277E7> /x8e/xa5/xb0/xc1 <CJK> +<U0002780B> /x8e/xa5/xb0/xc2 <CJK> +<U00027966> /x8e/xa5/xb0/xc3 <CJK> +<U00027BAD> /x8e/xa5/xb0/xc4 <CJK> +<U00027BAE> /x8e/xa5/xb0/xc5 <CJK> +<U8C38> /x8e/xa5/xb0/xc6 <CJK> +<U00027C2B> /x8e/xa5/xb0/xc7 <CJK> +<U00027C2A> /x8e/xa5/xb0/xc8 <CJK> +<U00027D2C> /x8e/xa5/xb0/xc9 <CJK> +<U00027D2D> /x8e/xa5/xb0/xca <CJK> +<U4791> /x8e/xa5/xb0/xcb <CJK> +<U4796> /x8e/xa5/xb0/xcc <CJK> +<U00027E8F> /x8e/xa5/xb0/xcd <CJK> +<U00027E93> /x8e/xa5/xb0/xce <CJK> +<U00027FC6> /x8e/xa5/xb0/xcf <CJK> +<U00027FC5> /x8e/xa5/xb0/xd0 <CJK> +<U00028215> /x8e/xa5/xb0/xd1 <CJK> +<U00028213> /x8e/xa5/xb0/xd2 <CJK> +<U000282B1> /x8e/xa5/xb0/xd3 <CJK> +<U000282A9> /x8e/xa5/xb0/xd4 <CJK> +<U000284A8> /x8e/xa5/xb0/xd6 <CJK> +<U000284AB> /x8e/xa5/xb0/xd7 <CJK> +<U000284BE> /x8e/xa5/xb0/xd8 <CJK> +<U000284AC> /x8e/xa5/xb0/xd9 <CJK> +<U000284A9> /x8e/xa5/xb0/xda <CJK> +<U000284A6> /x8e/xa5/xb0/xdb <CJK> +<U000284C1> /x8e/xa5/xb0/xdc <CJK> +<U000286CC> /x8e/xa5/xb0/xdd <CJK> +<U000286D1> /x8e/xa5/xb0/xde <CJK> +<U000286D3> /x8e/xa5/xb0/xdf <CJK> +<U000286E4> /x8e/xa5/xb0/xe0 <CJK> +<U000286CB> /x8e/xa5/xb0/xe1 <CJK> +<U000286E1> /x8e/xa5/xb0/xe2 <CJK> +<U000286D2> /x8e/xa5/xb0/xe3 <CJK> +<U000286E3> /x8e/xa5/xb0/xe4 <CJK> +<U000286CF> /x8e/xa5/xb0/xe5 <CJK> +<U000286D0> /x8e/xa5/xb0/xe6 <CJK> +<U000286E5> /x8e/xa5/xb0/xe7 <CJK> +<U0002870E> /x8e/xa5/xb0/xe8 <CJK> +<U00028CCC> /x8e/xa5/xb0/xe9 <CJK> +<U00028CCA> /x8e/xa5/xb0/xea <CJK> +<U00028CCB> /x8e/xa5/xb0/xeb <CJK> +<U00028E5C> /x8e/xa5/xb0/xec <CJK> +<U00028E61> /x8e/xa5/xb0/xed <CJK> +<U00028E5D> /x8e/xa5/xb0/xee <CJK> +<U00028E59> /x8e/xa5/xb0/xef <CJK> +<U00029077> /x8e/xa5/xb0/xf0 <CJK> +<U00029684> /x8e/xa5/xb0/xf1 <CJK> +<U00020041> /x8e/xa5/xb0/xf2 <CJK> +<U000200FD> /x8e/xa5/xb0/xf3 <CJK> +<U0002011A> /x8e/xa5/xb0/xf4 <CJK> +<U00020163> /x8e/xa5/xb0/xf5 <CJK> +<U000202B6> /x8e/xa5/xb0/xf6 <CJK> +<U000202B2> /x8e/xa5/xb0/xf7 <CJK> +<U000202E9> /x8e/xa5/xb0/xf8 <CJK> +<U000202E7> /x8e/xa5/xb0/xf9 <CJK> +<U000202D6> /x8e/xa5/xb0/xfa <CJK> +<U00020330> /x8e/xa5/xb0/xfb <CJK> +<U000202EC> /x8e/xa5/xb0/xfc <CJK> +<U000202DD> /x8e/xa5/xb0/xfd <CJK> +<U000202E8> /x8e/xa5/xb0/xfe <CJK> +<U000202B0> /x8e/xa5/xb1/xa1 <CJK> +<U000202B5> /x8e/xa5/xb1/xa2 <CJK> +<U000202E1> /x8e/xa5/xb1/xa3 <CJK> +<U00020498> /x8e/xa5/xb1/xa4 <CJK> +<U00020499> /x8e/xa5/xb1/xa5 <CJK> +<U34BC> /x8e/xa5/xb1/xa6 <CJK> +<U00020593> /x8e/xa5/xb1/xa7 <CJK> +<U000205E5> /x8e/xa5/xb1/xa8 <CJK> +<U34D8> /x8e/xa5/xb1/xa9 <CJK> +<U00020760> /x8e/xa5/xb1/xaa <CJK> +<U0002075E> /x8e/xa5/xb1/xab <CJK> +<U34F4> /x8e/xa5/xb1/xac <CJK> +<U0002087B> /x8e/xa5/xb1/xad <CJK> +<U000208F1> /x8e/xa5/xb1/xae <CJK> +<U000208F3> /x8e/xa5/xb1/xaf <CJK> +<U00020A7F> /x8e/xa5/xb1/xb0 <CJK> +<U00020B57> /x8e/xa5/xb1/xb2 <CJK> +<U00020B58> /x8e/xa5/xb1/xb3 <CJK> +<U00020D39> /x8e/xa5/xb1/xb4 <CJK> +<U00020DA7> /x8e/xa5/xb1/xb5 <CJK> +<U00020D35> /x8e/xa5/xb1/xb6 <CJK> +<U00020D60> /x8e/xa5/xb1/xb7 <CJK> +<U00020D51> /x8e/xa5/xb1/xb8 <CJK> +<U00020D62> /x8e/xa5/xb1/xb9 <CJK> +<U00020D42> /x8e/xa5/xb1/xba <CJK> +<U00020D3C> /x8e/xa5/xb1/xbb <CJK> +<U00020D43> /x8e/xa5/xb1/xbc <CJK> +<U00020DAB> /x8e/xa5/xb1/xbd <CJK> +<U00020DA9> /x8e/xa5/xb1/xbe <CJK> +<U00020DB4> /x8e/xa5/xb1/xbf <CJK> +<U00020D79> /x8e/xa5/xb1/xc0 <CJK> +<U00020D6A> /x8e/xa5/xb1/xc1 <CJK> +<U00020D3B> /x8e/xa5/xb1/xc2 <CJK> +<U00020DAA> /x8e/xa5/xb1/xc3 <CJK> +<U00020D33> /x8e/xa5/xb1/xc4 <CJK> +<U00020D37> /x8e/xa5/xb1/xc5 <CJK> +<U00020D27> /x8e/xa5/xb1/xc6 <CJK> +<U00020DA8> /x8e/xa5/xb1/xc7 <CJK> +<U00020D70> /x8e/xa5/xb1/xc8 <CJK> +<U00020D2F> /x8e/xa5/xb1/xc9 <CJK> +<U00020D36> /x8e/xa5/xb1/xca <CJK> +<U00020DB5> /x8e/xa5/xb1/xcb <CJK> +<U00020D30> /x8e/xa5/xb1/xcc <CJK> +<U00020D3A> /x8e/xa5/xb1/xcd <CJK> +<U00020D38> /x8e/xa5/xb1/xce <CJK> +<U00020DB1> /x8e/xa5/xb1/xcf <CJK> +<U00020DAC> /x8e/xa5/xb1/xd0 <CJK> +<U00020D2E> /x8e/xa5/xb1/xd1 <CJK> +<U00020D75> /x8e/xa5/xb1/xd2 <CJK> +<U00020DB0> /x8e/xa5/xb1/xd3 <CJK> +<U000211F7> /x8e/xa5/xb1/xd4 <CJK> +<U00021200> /x8e/xa5/xb1/xd5 <CJK> +<U000211F1> /x8e/xa5/xb1/xd6 <CJK> +<U000211F3> /x8e/xa5/xb1/xd7 <CJK> +<U00021360> /x8e/xa5/xb1/xd8 <CJK> +<U00021361> /x8e/xa5/xb1/xd9 <CJK> +<U00021332> /x8e/xa5/xb1/xda <CJK> +<U0002132D> /x8e/xa5/xb1/xdb <CJK> +<U0002134A> /x8e/xa5/xb1/xdc <CJK> +<U0002132A> /x8e/xa5/xb1/xdd <CJK> +<U00021567> /x8e/xa5/xb1/xde <CJK> +<U000215A2> /x8e/xa5/xb1/xdf <CJK> +<U000215A3> /x8e/xa5/xb1/xe0 <CJK> +<U0002159E> /x8e/xa5/xb1/xe1 <CJK> +<U000215A4> /x8e/xa5/xb1/xe2 <CJK> +<U00021644> /x8e/xa5/xb1/xe3 <CJK> +<U00021632> /x8e/xa5/xb1/xe4 <CJK> +<U0002179B> /x8e/xa5/xb1/xe5 <CJK> +<U00021798> /x8e/xa5/xb1/xe6 <CJK> +<U00021799> /x8e/xa5/xb1/xe7 <CJK> +<U0002179A> /x8e/xa5/xb1/xe8 <CJK> +<U00021766> /x8e/xa5/xb1/xe9 <CJK> +<U00021762> /x8e/xa5/xb1/xea <CJK> +<U0002176B> /x8e/xa5/xb1/xeb <CJK> +<U00024562> /x8e/xa5/xb1/xec <CJK> +<U00021767> /x8e/xa5/xb1/xed <CJK> +<U00021A3B> /x8e/xa5/xb1/xee <CJK> +<U00021A23> /x8e/xa5/xb1/xef <CJK> +<U00021A29> /x8e/xa5/xb1/xf0 <CJK> +<U00021B7E> /x8e/xa5/xb1/xf1 <CJK> +<U00021BF3> /x8e/xa5/xb1/xf2 <CJK> +<U3785> /x8e/xa5/xb1/xf3 <CJK> +<U00021BF5> /x8e/xa5/xb1/xf4 <CJK> +<U3783> /x8e/xa5/xb1/xf5 <CJK> +<U00021C80> /x8e/xa5/xb1/xf6 <CJK> +<U00021C7E> /x8e/xa5/xb1/xf7 <CJK> +<U00021C7C> /x8e/xa5/xb1/xf8 <CJK> +<U00021C7F> /x8e/xa5/xb1/xf9 <CJK> +<U00021C7D> /x8e/xa5/xb1/xfa <CJK> +<U00021C81> /x8e/xa5/xb1/xfb <CJK> +<U00021E25> /x8e/xa5/xb1/xfc <CJK> +<U00021E29> /x8e/xa5/xb1/xfd <CJK> +<U00021E17> /x8e/xa5/xb1/xfe <CJK> +<U00021E63> /x8e/xa5/xb2/xa1 <CJK> +<U00021E67> /x8e/xa5/xb2/xa2 <CJK> +<U00021E65> /x8e/xa5/xb2/xa3 <CJK> +<U00021E2A> /x8e/xa5/xb2/xa4 <CJK> +<U00021E68> /x8e/xa5/xb2/xa5 <CJK> +<U00021E26> /x8e/xa5/xb2/xa6 <CJK> +<U00021E64> /x8e/xa5/xb2/xa7 <CJK> +<U00021E1B> /x8e/xa5/xb2/xa8 <CJK> +<U00021E62> /x8e/xa5/xb2/xa9 <CJK> +<U00021E69> /x8e/xa5/xb2/xaa <CJK> +<U00021FFE> /x8e/xa5/xb2/xab <CJK> +<U00022044> /x8e/xa5/xb2/xac <CJK> +<U00022042> /x8e/xa5/xb2/xad <CJK> +<U000220B7> /x8e/xa5/xb2/xae <CJK> +<U000220D2> /x8e/xa5/xb2/xaf <CJK> +<U000220D4> /x8e/xa5/xb2/xb0 <CJK> +<U000220D7> /x8e/xa5/xb2/xb1 <CJK> +<U000220DC> /x8e/xa5/xb2/xb2 <CJK> +<U000220D1> /x8e/xa5/xb2/xb3 <CJK> +<U000220D5> /x8e/xa5/xb2/xb4 <CJK> +<U000220CD> /x8e/xa5/xb2/xb5 <CJK> +<U000220D8> /x8e/xa5/xb2/xb6 <CJK> +<U0002219A> /x8e/xa5/xb2/xb7 <CJK> +<U00022242> /x8e/xa5/xb2/xb8 <CJK> +<U00022235> /x8e/xa5/xb2/xb9 <CJK> +<U00022258> /x8e/xa5/xb2/xba <CJK> +<U00022234> /x8e/xa5/xb2/xbb <CJK> +<U0002223C> /x8e/xa5/xb2/xbc <CJK> +<U0002223B> /x8e/xa5/xb2/xbd <CJK> +<U0002223E> /x8e/xa5/xb2/xbe <CJK> +<U0002223D> /x8e/xa5/xb2/xbf <CJK> +<U0002225A> /x8e/xa5/xb2/xc0 <CJK> +<U00022241> /x8e/xa5/xb2/xc1 <CJK> +<U00022238> /x8e/xa5/xb2/xc2 <CJK> +<U00022245> /x8e/xa5/xb2/xc3 <CJK> +<U00022233> /x8e/xa5/xb2/xc4 <CJK> +<U00022326> /x8e/xa5/xb2/xc5 <CJK> +<U38BA> /x8e/xa5/xb2/xc6 <CJK> +<U000223F7> /x8e/xa5/xb2/xc7 <CJK> +<U000223EF> /x8e/xa5/xb2/xc8 <CJK> +<U000223F0> /x8e/xa5/xb2/xc9 <CJK> +<U000223EE> /x8e/xa5/xb2/xca <CJK> +<U0002249D> /x8e/xa5/xb2/xcb <CJK> +<U00022506> /x8e/xa5/xb2/xcc <CJK> +<U00022511> /x8e/xa5/xb2/xcd <CJK> +<U00022508> /x8e/xa5/xb2/xce <CJK> +<U00022502> /x8e/xa5/xb2/xcf <CJK> +<U0002250A> /x8e/xa5/xb2/xd0 <CJK> +<U00022507> /x8e/xa5/xb2/xd1 <CJK> +<U00022691> /x8e/xa5/xb2/xd2 <CJK> +<U0002268E> /x8e/xa5/xb2/xd3 <CJK> +<U00022685> /x8e/xa5/xb2/xd4 <CJK> +<U000226E8> /x8e/xa5/xb2/xd5 <CJK> +<U00022717> /x8e/xa5/xb2/xd6 <CJK> +<U000226D4> /x8e/xa5/xb2/xd7 <CJK> +<U3969> /x8e/xa5/xb2/xd8 <CJK> +<U000226C4> /x8e/xa5/xb2/xd9 <CJK> +<U000226D5> /x8e/xa5/xb2/xda <CJK> +<U3945> /x8e/xa5/xb2/xdb <CJK> +<U000226D8> /x8e/xa5/xb2/xdc <CJK> +<U00022680> /x8e/xa5/xb2/xdd <CJK> +<U000226DE> /x8e/xa5/xb2/xde <CJK> +<U00022742> /x8e/xa5/xb2/xdf <CJK> +<U000229C7> /x8e/xa5/xb2/xe0 <CJK> +<U000229BF> /x8e/xa5/xb2/xe1 <CJK> +<U00022B8D> /x8e/xa5/xb2/xe2 <CJK> +<U00022B89> /x8e/xa5/xb2/xe3 <CJK> +<U00022B90> /x8e/xa5/xb2/xe4 <CJK> +<U00022B9A> /x8e/xa5/xb2/xe5 <CJK> +<U00022BC8> /x8e/xa5/xb2/xe6 <CJK> +<U00022B92> /x8e/xa5/xb2/xe7 <CJK> +<U00022BA1> /x8e/xa5/xb2/xe8 <CJK> +<U00022B84> /x8e/xa5/xb2/xe9 <CJK> +<U00022F57> /x8e/xa5/xb2/xea <CJK> +<U00022F47> /x8e/xa5/xb2/xeb <CJK> +<U00022F77> /x8e/xa5/xb2/xec <CJK> +<U00022F3A> /x8e/xa5/xb2/xed <CJK> +<U00022F50> /x8e/xa5/xb2/xee <CJK> +<U00022F42> /x8e/xa5/xb2/xef <CJK> +<U00022F43> /x8e/xa5/xb2/xf0 <CJK> +<U00022FA3> /x8e/xa5/xb2/xf1 <CJK> +<U00023077> /x8e/xa5/xb2/xf2 <CJK> +<U000231B2> /x8e/xa5/xb2/xf3 <CJK> +<U000231E2> /x8e/xa5/xb2/xf4 <CJK> +<U000231BD> /x8e/xa5/xb2/xf5 <CJK> +<U00023374> /x8e/xa5/xb2/xf6 <CJK> +<U00023482> /x8e/xa5/xb2/xf7 <CJK> +<U000234B8> /x8e/xa5/xb2/xf8 <CJK> +<U3B6C> /x8e/xa5/xb2/xf9 <CJK> +<U000234BA> /x8e/xa5/xb2/xfa <CJK> +<U000234B9> /x8e/xa5/xb2/xfb <CJK> +<U000234BB> /x8e/xa5/xb2/xfc <CJK> +<U00023487> /x8e/xa5/xb2/xfd <CJK> +<U00023483> /x8e/xa5/xb3/xa1 <CJK> +<U000234B7> /x8e/xa5/xb3/xa2 <CJK> +<U00020043> /x8e/xa5/xb3/xa3 <CJK> +<U000238CE> /x8e/xa5/xb3/xa4 <CJK> +<U000238BA> /x8e/xa5/xb3/xa5 <CJK> +<U00023973> /x8e/xa5/xb3/xa6 <CJK> +<U00023A09> /x8e/xa5/xb3/xa7 <CJK> +<U00023A0A> /x8e/xa5/xb3/xa8 <CJK> +<U00023A0B> /x8e/xa5/xb3/xa9 <CJK> +<U00023A07> /x8e/xa5/xb3/xaa <CJK> +<U00023A05> /x8e/xa5/xb3/xab <CJK> +<U00023A0E> /x8e/xa5/xb3/xac <CJK> +<U00023A97> /x8e/xa5/xb3/xad <CJK> +<U00023B77> /x8e/xa5/xb3/xae <CJK> +<U00023B7B> /x8e/xa5/xb3/xaf <CJK> +<U00023B7A> /x8e/xa5/xb3/xb0 <CJK> +<U00023B74> /x8e/xa5/xb3/xb1 <CJK> +<U00023B79> /x8e/xa5/xb3/xb2 <CJK> +<U00023D86> /x8e/xa5/xb3/xb3 <CJK> +<U00023DF5> /x8e/xa5/xb3/xb4 <CJK> +<U00023DA5> /x8e/xa5/xb3/xb5 <CJK> +<U00023D9D> /x8e/xa5/xb3/xb6 <CJK> +<U00023DBE> /x8e/xa5/xb3/xb7 <CJK> +<U00023D96> /x8e/xa5/xb3/xb8 <CJK> +<U00023DE1> /x8e/xa5/xb3/xb9 <CJK> +<U00023DA4> /x8e/xa5/xb3/xba <CJK> +<U00023DA1> /x8e/xa5/xb3/xbb <CJK> +<U00023DF6> /x8e/xa5/xb3/xbc <CJK> +<U3D04> /x8e/xa5/xb3/xbd <CJK> +<U00023D8D> /x8e/xa5/xb3/xbe <CJK> +<U00023D8B> /x8e/xa5/xb3/xbf <CJK> +<U00023D78> /x8e/xa5/xb3/xc0 <CJK> +<U00023D98> /x8e/xa5/xb3/xc1 <CJK> +<U00023E0A> /x8e/xa5/xb3/xc2 <CJK> +<U0002425D> /x8e/xa5/xb3/xc3 <CJK> +<U00024227> /x8e/xa5/xb3/xc4 <CJK> +<U0002425F> /x8e/xa5/xb3/xc5 <CJK> +<U000245C0> /x8e/xa5/xb3/xc6 <CJK> +<U000245C1> /x8e/xa5/xb3/xc7 <CJK> +<U0002466D> /x8e/xa5/xb3/xc8 <CJK> +<U0002465E> /x8e/xa5/xb3/xc9 <CJK> +<U0002468A> /x8e/xa5/xb3/xca <CJK> +<U00024662> /x8e/xa5/xb3/xcb <CJK> +<U00024664> /x8e/xa5/xb3/xcc <CJK> +<U3E3A> /x8e/xa5/xb3/xcd <CJK> +<U000247C0> /x8e/xa5/xb3/xce <CJK> +<U000247CA> /x8e/xa5/xb3/xcf <CJK> +<U000247D1> /x8e/xa5/xb3/xd0 <CJK> +<U3E79> /x8e/xa5/xb3/xd1 <CJK> +<U000247C7> /x8e/xa5/xb3/xd2 <CJK> +<U000247CE> /x8e/xa5/xb3/xd3 <CJK> +<U7309> /x8e/xa5/xb3/xd4 <CJK> +<U000247C5> /x8e/xa5/xb3/xd5 <CJK> +<U00024936> /x8e/xa5/xb3/xd6 <CJK> +<U00024957> /x8e/xa5/xb3/xd7 <CJK> +<U00024977> /x8e/xa5/xb3/xd8 <CJK> +<U00024AF6> /x8e/xa5/xb3/xd9 <CJK> +<U00024AF7> /x8e/xa5/xb3/xda <CJK> +<U00024B55> /x8e/xa5/xb3/xdb <CJK> +<U00024B44> /x8e/xa5/xb3/xdc <CJK> +<U00024B3E> /x8e/xa5/xb3/xdd <CJK> +<U00024B42> /x8e/xa5/xb3/xde <CJK> +<U00024B52> /x8e/xa5/xb3/xdf <CJK> +<U00024BE1> /x8e/xa5/xb3/xe0 <CJK> +<U00024C08> /x8e/xa5/xb3/xe1 <CJK> +<U00024C68> /x8e/xa5/xb3/xe2 <CJK> +<U00024C67> /x8e/xa5/xb3/xe3 <CJK> +<U3F5D> /x8e/xa5/xb3/xe4 <CJK> +<U00024D7E> /x8e/xa5/xb3/xe6 <CJK> +<U00024D93> /x8e/xa5/xb3/xe7 <CJK> +<U00024D79> /x8e/xa5/xb3/xe8 <CJK> +<U00024D81> /x8e/xa5/xb3/xe9 <CJK> +<U00024D7D> /x8e/xa5/xb3/xea <CJK> +<U00024D7B> /x8e/xa5/xb3/xeb <CJK> +<U00024D94> /x8e/xa5/xb3/xec <CJK> +<U3F8A> /x8e/xa5/xb3/xed <CJK> +<U00024F66> /x8e/xa5/xb3/xee <CJK> +<U00024FD9> /x8e/xa5/xb3/xef <CJK> +<U00024FE0> /x8e/xa5/xb3/xf0 <CJK> +<U0002505F> /x8e/xa5/xb3/xf2 <CJK> +<U0002515F> /x8e/xa5/xb3/xf3 <CJK> +<U0002515E> /x8e/xa5/xb3/xf4 <CJK> +<U00025168> /x8e/xa5/xb3/xf5 <CJK> +<U4027> /x8e/xa5/xb3/xf6 <CJK> +<U00025188> /x8e/xa5/xb3/xf7 <CJK> +<U0002516A> /x8e/xa5/xb3/xf8 <CJK> +<U0002516C> /x8e/xa5/xb3/xf9 <CJK> +<U00025166> /x8e/xa5/xb3/xfa <CJK> +<U00025167> /x8e/xa5/xb3/xfb <CJK> +<U00025189> /x8e/xa5/xb3/xfc <CJK> +<U00025160> /x8e/xa5/xb3/xfd <CJK> +<U00025185> /x8e/xa5/xb3/xfe <CJK> +<U0002032A> /x8e/xa5/xb4/xa1 <CJK> +<U00025368> /x8e/xa5/xb4/xa2 <CJK> +<U000253B9> /x8e/xa5/xb4/xa3 <CJK> +<U000253BA> /x8e/xa5/xb4/xa4 <CJK> +<U000253BE> /x8e/xa5/xb4/xa5 <CJK> +<U0002546F> /x8e/xa5/xb4/xa6 <CJK> +<U00025480> /x8e/xa5/xb4/xa7 <CJK> +<U00025474> /x8e/xa5/xb4/xa8 <CJK> +<U00025481> /x8e/xa5/xb4/xa9 <CJK> +<U0002547A> /x8e/xa5/xb4/xaa <CJK> +<U0002549C> /x8e/xa5/xb4/xab <CJK> +<U00025473> /x8e/xa5/xb4/xac <CJK> +<U00025482> /x8e/xa5/xb4/xad <CJK> +<U0002547F> /x8e/xa5/xb4/xae <CJK> +<U000254A7> /x8e/xa5/xb4/xaf <CJK> +<U00025479> /x8e/xa5/xb4/xb0 <CJK> +<U00025478> /x8e/xa5/xb4/xb1 <CJK> +<U0002547D> /x8e/xa5/xb4/xb2 <CJK> +<U000254A8> /x8e/xa5/xb4/xb3 <CJK> +<U0002547C> /x8e/xa5/xb4/xb4 <CJK> +<U00025668> /x8e/xa5/xb4/xb5 <CJK> +<U0002564E> /x8e/xa5/xb4/xb6 <CJK> +<U0002579E> /x8e/xa5/xb4/xb7 <CJK> +<U4146> /x8e/xa5/xb4/xb8 <CJK> +<U4140> /x8e/xa5/xb4/xb9 <CJK> +<U00025798> /x8e/xa5/xb4/xba <CJK> +<U413F> /x8e/xa5/xb4/xbb <CJK> +<U00025785> /x8e/xa5/xb4/xbc <CJK> +<U0002579C> /x8e/xa5/xb4/xbd <CJK> +<U000257C5> /x8e/xa5/xb4/xbe <CJK> +<U0002579A> /x8e/xa5/xb4/xbf <CJK> +<U00025968> /x8e/xa5/xb4/xc0 <CJK> +<U00025965> /x8e/xa5/xb4/xc1 <CJK> +<U00025967> /x8e/xa5/xb4/xc2 <CJK> +<U00025961> /x8e/xa5/xb4/xc3 <CJK> +<U00025960> /x8e/xa5/xb4/xc4 <CJK> +<U419D> /x8e/xa5/xb4/xc5 <CJK> +<U41CB> /x8e/xa5/xb4/xc6 <CJK> +<U00025A7B> /x8e/xa5/xb4/xc7 <CJK> +<U41E1> /x8e/xa5/xb4/xc8 <CJK> +<U00025B19> /x8e/xa5/xb4/xc9 <CJK> +<U00025B0E> /x8e/xa5/xb4/xca <CJK> +<U00025B31> /x8e/xa5/xb4/xcb <CJK> +<U00025B12> /x8e/xa5/xb4/xcc <CJK> +<U00025B10> /x8e/xa5/xb4/xcd <CJK> +<U00025B15> /x8e/xa5/xb4/xce <CJK> +<U00025B3F> /x8e/xa5/xb4/xcf <CJK> +<U00025B1D> /x8e/xa5/xb4/xd0 <CJK> +<U00025B1E> /x8e/xa5/xb4/xd1 <CJK> +<U00025E4D> /x8e/xa5/xb4/xd2 <CJK> +<U00025E48> /x8e/xa5/xb4/xd3 <CJK> +<U00025E45> /x8e/xa5/xb4/xd4 <CJK> +<U00025E42> /x8e/xa5/xb4/xd5 <CJK> +<U00025E49> /x8e/xa5/xb4/xd6 <CJK> +<U00025E4A> /x8e/xa5/xb4/xd7 <CJK> +<U00025E47> /x8e/xa5/xb4/xd8 <CJK> +<U427F> /x8e/xa5/xb4/xd9 <CJK> +<U00025E4C> /x8e/xa5/xb4/xda <CJK> +<U00025FCD> /x8e/xa5/xb4/xdb <CJK> +<U00025FD5> /x8e/xa5/xb4/xdc <CJK> +<U00025FC4> /x8e/xa5/xb4/xdd <CJK> +<U00025FCA> /x8e/xa5/xb4/xde <CJK> +<U00025FC3> /x8e/xa5/xb4/xdf <CJK> +<U4346> /x8e/xa5/xb4/xe0 <CJK> +<U00026229> /x8e/xa5/xb4/xe1 <CJK> +<U000262B4> /x8e/xa5/xb4/xe2 <CJK> +<U0002636D> /x8e/xa5/xb4/xe3 <CJK> +<U00026366> /x8e/xa5/xb4/xe4 <CJK> +<U0002636A> /x8e/xa5/xb4/xe5 <CJK> +<U00026415> /x8e/xa5/xb4/xe6 <CJK> +<U000264D3> /x8e/xa5/xb4/xe7 <CJK> +<U000264EC> /x8e/xa5/xb4/xe8 <CJK> +<U00026555> /x8e/xa5/xb4/xe9 <CJK> +<U441A> /x8e/xa5/xb4/xea <CJK> +<U000266D6> /x8e/xa5/xb4/xeb <CJK> +<U000266D8> /x8e/xa5/xb4/xec <CJK> +<U00026751> /x8e/xa5/xb4/xed <CJK> +<U000266E0> /x8e/xa5/xb4/xee <CJK> +<U00026703> /x8e/xa5/xb4/xef <CJK> +<U00026704> /x8e/xa5/xb4/xf0 <CJK> +<U000266DA> /x8e/xa5/xb4/xf1 <CJK> +<U000266EA> /x8e/xa5/xb4/xf2 <CJK> +<U00026702> /x8e/xa5/xb4/xf3 <CJK> +<U000266D3> /x8e/xa5/xb4/xf4 <CJK> +<U000266E4> /x8e/xa5/xb4/xf5 <CJK> +<U000266E5> /x8e/xa5/xb4/xf6 <CJK> +<U0002693B> /x8e/xa5/xb4/xf7 <CJK> +<U00026966> /x8e/xa5/xb4/xf8 <CJK> +<U00026A2C> /x8e/xa5/xb4/xf9 <CJK> +<U00026A21> /x8e/xa5/xb4/xfa <CJK> +<U00026A26> /x8e/xa5/xb4/xfb <CJK> +<U00026AD4> /x8e/xa5/xb4/xfc <CJK> +<U00026AD5> /x8e/xa5/xb4/xfd <CJK> +<U00026AD9> /x8e/xa5/xb4/xfe <CJK> +<U00026BD5> /x8e/xa5/xb5/xa1 <CJK> +<U00026BEB> /x8e/xa5/xb5/xa2 <CJK> +<U00026BC5> /x8e/xa5/xb5/xa3 <CJK> +<U44D3> /x8e/xa5/xb5/xa4 <CJK> +<U00026C27> /x8e/xa5/xb5/xa5 <CJK> +<U00026BF0> /x8e/xa5/xb5/xa6 <CJK> +<U00026BB9> /x8e/xa5/xb5/xa7 <CJK> +<U00026C18> /x8e/xa5/xb5/xa8 <CJK> +<U00026BEE> /x8e/xa5/xb5/xa9 <CJK> +<U44D0> /x8e/xa5/xb5/xaa <CJK> +<U00026BB7> /x8e/xa5/xb5/xab <CJK> +<U00026BBB> /x8e/xa5/xb5/xac <CJK> +<U00026BEF> /x8e/xa5/xb5/xad <CJK> +<U00026BB8> /x8e/xa5/xb5/xae <CJK> +<U00026BDF> /x8e/xa5/xb5/xaf <CJK> +<U00026BDA> /x8e/xa5/xb5/xb0 <CJK> +<U00026BE3> /x8e/xa5/xb5/xb1 <CJK> +<U00026BC9> /x8e/xa5/xb5/xb2 <CJK> +<U00026BEC> /x8e/xa5/xb5/xb3 <CJK> +<U000271A4> /x8e/xa5/xb5/xb4 <CJK> +<U458E> /x8e/xa5/xb5/xb5 <CJK> +<U000271A3> /x8e/xa5/xb5/xb6 <CJK> +<U0002725E> /x8e/xa5/xb5/xb7 <CJK> +<U00027261> /x8e/xa5/xb5/xb8 <CJK> +<U00027262> /x8e/xa5/xb5/xb9 <CJK> +<U00027263> /x8e/xa5/xb5/xba <CJK> +<U0002728E> /x8e/xa5/xb5/xbb <CJK> +<U00027269> /x8e/xa5/xb5/xbc <CJK> +<U0002726B> /x8e/xa5/xb5/xbd <CJK> +<U00027285> /x8e/xa5/xb5/xbe <CJK> +<U0002728D> /x8e/xa5/xb5/xbf <CJK> +<U00027264> /x8e/xa5/xb5/xc0 <CJK> +<U0002726D> /x8e/xa5/xb5/xc1 <CJK> +<U0002764C> /x8e/xa5/xb5/xc2 <CJK> +<U00027649> /x8e/xa5/xb5/xc3 <CJK> +<U00027647> /x8e/xa5/xb5/xc4 <CJK> +<U00027648> /x8e/xa5/xb5/xc5 <CJK> +<U00027642> /x8e/xa5/xb5/xc6 <CJK> +<U00027645> /x8e/xa5/xb5/xc7 <CJK> +<U0002765B> /x8e/xa5/xb5/xc8 <CJK> +<U0002765D> /x8e/xa5/xb5/xc9 <CJK> +<U00027646> /x8e/xa5/xb5/xca <CJK> +<U00027813> /x8e/xa5/xb5/xcb <CJK> +<U0002781A> /x8e/xa5/xb5/xcc <CJK> +<U0002780E> /x8e/xa5/xb5/xcd <CJK> +<U0002780F> /x8e/xa5/xb5/xce <CJK> +<U0002781B> /x8e/xa5/xb5/xcf <CJK> +<U00027812> /x8e/xa5/xb5/xd0 <CJK> +<U000278C3> /x8e/xa5/xb5/xd1 <CJK> +<U000278BE> /x8e/xa5/xb5/xd2 <CJK> +<U000278BD> /x8e/xa5/xb5/xd3 <CJK> +<U00027979> /x8e/xa5/xb5/xd4 <CJK> +<U0002797C> /x8e/xa5/xb5/xd5 <CJK> +<U46C3> /x8e/xa5/xb5/xd6 <CJK> +<U46B6> /x8e/xa5/xb5/xd7 <CJK> +<U00027980> /x8e/xa5/xb5/xd8 <CJK> +<U00027975> /x8e/xa5/xb5/xd9 <CJK> +<U0002799B> /x8e/xa5/xb5/xda <CJK> +<U8A2F> /x8e/xa5/xb5/xdb <CJK> +<U00027974> /x8e/xa5/xb5/xdc <CJK> +<U46C0> /x8e/xa5/xb5/xdd <CJK> +<U46B8> /x8e/xa5/xb5/xde <CJK> +<U00022041> /x8e/xa5/xb5/xdf <CJK> +<U00022494> /x8e/xa5/xb5/xe0 <CJK> +<U00027C30> /x8e/xa5/xb5/xe1 <CJK> +<U00027CA7> /x8e/xa5/xb5/xe2 <CJK> +<U00027CA5> /x8e/xa5/xb5/xe3 <CJK> +<U00027CA4> /x8e/xa5/xb5/xe4 <CJK> +<U00027D3A> /x8e/xa5/xb5/xe5 <CJK> +<U00027E5B> /x8e/xa5/xb5/xe6 <CJK> +<U00027E9F> /x8e/xa5/xb5/xe7 <CJK> +<U00027EA8> /x8e/xa5/xb5/xe8 <CJK> +<U00027EB3> /x8e/xa5/xb5/xe9 <CJK> +<U00027EA1> /x8e/xa5/xb5/xea <CJK> +<U00027EA7> /x8e/xa5/xb5/xeb <CJK> +<U00027EB2> /x8e/xa5/xb5/xec <CJK> +<U00027E9D> /x8e/xa5/xb5/xed <CJK> +<U00027EA3> /x8e/xa5/xb5/xee <CJK> +<U00027EA2> /x8e/xa5/xb5/xef <CJK> +<U00027FEF> /x8e/xa5/xb5/xf0 <CJK> +<U00027FD9> /x8e/xa5/xb5/xf1 <CJK> +<U47D9> /x8e/xa5/xb5/xf2 <CJK> +<U00027FD5> /x8e/xa5/xb5/xf3 <CJK> +<U00027FDD> /x8e/xa5/xb5/xf4 <CJK> +<U00027FDA> /x8e/xa5/xb5/xf5 <CJK> +<U00027FEE> /x8e/xa5/xb5/xf6 <CJK> +<U00027FD7> /x8e/xa5/xb5/xf7 <CJK> +<U0002821A> /x8e/xa5/xb5/xf8 <CJK> +<U00028219> /x8e/xa5/xb5/xf9 <CJK> +<U00028218> /x8e/xa5/xb5/xfa <CJK> +<U000282B3> /x8e/xa5/xb5/xfb <CJK> +<U000282BF> /x8e/xa5/xb5/xfc <CJK> +<U000282BB> /x8e/xa5/xb5/xfd <CJK> +<U000282C0> /x8e/xa5/xb5/xfe <CJK> +<U000282B9> /x8e/xa5/xb6/xa1 <CJK> +<U000282B8> /x8e/xa5/xb6/xa2 <CJK> +<U000282D5> /x8e/xa5/xb6/xa3 <CJK> +<U00028411> /x8e/xa5/xb6/xa4 <CJK> +<U00028410> /x8e/xa5/xb6/xa5 <CJK> +<U000284C3> /x8e/xa5/xb6/xa6 <CJK> +<U000284C2> /x8e/xa5/xb6/xa7 <CJK> +<U000284E9> /x8e/xa5/xb6/xa8 <CJK> +<U000284CD> /x8e/xa5/xb6/xa9 <CJK> +<U000284E5> /x8e/xa5/xb6/xaa <CJK> +<U000284CA> /x8e/xa5/xb6/xab <CJK> +<U000284C7> /x8e/xa5/xb6/xac <CJK> +<U000284E8> /x8e/xa5/xb6/xad <CJK> +<U000286F1> /x8e/xa5/xb6/xae <CJK> +<U0002870C> /x8e/xa5/xb6/xaf <CJK> +<U000286EF> /x8e/xa5/xb6/xb0 <CJK> +<U000286EE> /x8e/xa5/xb6/xb1 <CJK> +<U000286F3> /x8e/xa5/xb6/xb2 <CJK> +<U0002870D> /x8e/xa5/xb6/xb3 <CJK> +<U000286F6> /x8e/xa5/xb6/xb4 <CJK> +<U000286F0> /x8e/xa5/xb6/xb5 <CJK> +<U48EC> /x8e/xa5/xb6/xb6 <CJK> +<U000287F5> /x8e/xa5/xb6/xb7 <CJK> +<U000287F4> /x8e/xa5/xb6/xb8 <CJK> +<U000287F8> /x8e/xa5/xb6/xb9 <CJK> +<U000287FE> /x8e/xa5/xb6/xba <CJK> +<U00028911> /x8e/xa5/xb6/xbb <CJK> +<U00028922> /x8e/xa5/xb6/xbc <CJK> +<U00028942> /x8e/xa5/xb6/xbd <CJK> +<U00028C5C> /x8e/xa5/xb6/xbe <CJK> +<U00028C5A> /x8e/xa5/xb6/xbf <CJK> +<U00028C5D> /x8e/xa5/xb6/xc0 <CJK> +<U00028CD1> /x8e/xa5/xb6/xc1 <CJK> +<U00028CD0> /x8e/xa5/xb6/xc2 <CJK> +<U00028E75> /x8e/xa5/xb6/xc3 <CJK> +<U00028E7B> /x8e/xa5/xb6/xc4 <CJK> +<U00028F89> /x8e/xa5/xb6/xc5 <CJK> +<U0002944D> /x8e/xa5/xb6/xc6 <CJK> +<U00029689> /x8e/xa5/xb6/xc7 <CJK> +<U00029692> /x8e/xa5/xb6/xc8 <CJK> +<U0002968C> /x8e/xa5/xb6/xc9 <CJK> +<U00029688> /x8e/xa5/xb6/xca <CJK> +<U00029867> /x8e/xa5/xb6/xcb <CJK> +<U00029868> /x8e/xa5/xb6/xcc <CJK> +<U00020321> /x8e/xa5/xb6/xcd <CJK> +<U000202F2> /x8e/xa5/xb6/xce <CJK> +<U00020309> /x8e/xa5/xb6/xcf <CJK> +<U000202F8> /x8e/xa5/xb6/xd0 <CJK> +<U000202F0> /x8e/xa5/xb6/xd1 <CJK> +<U000202F3> /x8e/xa5/xb6/xd2 <CJK> +<U000202F5> /x8e/xa5/xb6/xd3 <CJK> +<U000202FB> /x8e/xa5/xb6/xd4 <CJK> +<U000202F7> /x8e/xa5/xb6/xd5 <CJK> +<U000202EF> /x8e/xa5/xb6/xd6 <CJK> +<U0002030B> /x8e/xa5/xb6/xd7 <CJK> +<U000204A2> /x8e/xa5/xb6/xd8 <CJK> +<U000205F5> /x8e/xa5/xb6/xd9 <CJK> +<U000205F3> /x8e/xa5/xb6/xda <CJK> +<U000205F4> /x8e/xa5/xb6/xdb <CJK> +<U000205F2> /x8e/xa5/xb6/xdc <CJK> +<U00020698> /x8e/xa5/xb6/xdd <CJK> +<U00020768> /x8e/xa5/xb6/xde <CJK> +<U00020780> /x8e/xa5/xb6/xdf <CJK> +<U00020785> /x8e/xa5/xb6/xe0 <CJK> +<U0002078E> /x8e/xa5/xb6/xe1 <CJK> +<U0002078F> /x8e/xa5/xb6/xe2 <CJK> +<U000202F4> /x8e/xa5/xb6/xe3 <CJK> +<U00020786> /x8e/xa5/xb6/xe4 <CJK> +<U000207A4> /x8e/xa5/xb6/xe5 <CJK> +<U00020886> /x8e/xa5/xb6/xe6 <CJK> +<U00020889> /x8e/xa5/xb6/xe7 <CJK> +<U00020887> /x8e/xa5/xb6/xe8 <CJK> +<U00020885> /x8e/xa5/xb6/xe9 <CJK> +<U52DC> /x8e/xa5/xb6/xea <CJK> +<U00020888> /x8e/xa5/xb6/xeb <CJK> +<U00020AFF> /x8e/xa5/xb6/xec <CJK> +<U00020B66> /x8e/xa5/xb6/xed <CJK> +<U35CC> /x8e/xa5/xb6/xee <CJK> +<U00020DC3> /x8e/xa5/xb6/xef <CJK> +<U35A2> /x8e/xa5/xb6/xf0 <CJK> +<U00020DC4> /x8e/xa5/xb6/xf1 <CJK> +<U00020E3B> /x8e/xa5/xb6/xf2 <CJK> +<U00020DE7> /x8e/xa5/xb6/xf3 <CJK> +<U00020DF8> /x8e/xa5/xb6/xf4 <CJK> +<U00020DFB> /x8e/xa5/xb6/xf5 <CJK> +<U35B6> /x8e/xa5/xb6/xf6 <CJK> +<U00020DBE> /x8e/xa5/xb6/xf7 <CJK> +<U00020DC6> /x8e/xa5/xb6/xf8 <CJK> +<U35C5> /x8e/xa5/xb6/xf9 <CJK> +<U35C6> /x8e/xa5/xb6/xfa <CJK> +<U00020DFC> /x8e/xa5/xb6/xfb <CJK> +<U00020DC0> /x8e/xa5/xb6/xfc <CJK> +<U00020E33> /x8e/xa5/xb6/xfd <CJK> +<U00020DC9> /x8e/xa5/xb6/xfe <CJK> +<U00020DFE> /x8e/xa5/xb7/xa1 <CJK> +<U00020DDA> /x8e/xa5/xb7/xa2 <CJK> +<U00020DCC> /x8e/xa5/xb7/xa3 <CJK> +<U00020DBB> /x8e/xa5/xb7/xa4 <CJK> +<U00020DFD> /x8e/xa5/xb7/xa5 <CJK> +<U00020DDF> /x8e/xa5/xb7/xa6 <CJK> +<U00020DCD> /x8e/xa5/xb7/xa7 <CJK> +<U00020DC2> /x8e/xa5/xb7/xa8 <CJK> +<U00020DC8> /x8e/xa5/xb7/xa9 <CJK> +<U00020E32> /x8e/xa5/xb7/xaa <CJK> +<U00020E2D> /x8e/xa5/xb7/xab <CJK> +<U00020DD2> /x8e/xa5/xb7/xac <CJK> +<U00020E31> /x8e/xa5/xb7/xad <CJK> +<U00020DD3> /x8e/xa5/xb7/xae <CJK> +<U00020E2E> /x8e/xa5/xb7/xaf <CJK> +<U00020DCF> /x8e/xa5/xb7/xb0 <CJK> +<U000211FF> /x8e/xa5/xb7/xb1 <CJK> +<U00021209> /x8e/xa5/xb7/xb2 <CJK> +<U000211FC> /x8e/xa5/xb7/xb3 <CJK> +<U00021372> /x8e/xa5/xb7/xb4 <CJK> +<U000213AA> /x8e/xa5/xb7/xb5 <CJK> +<U000213AB> /x8e/xa5/xb7/xb6 <CJK> +<U000213A7> /x8e/xa5/xb7/xb7 <CJK> +<U0002137B> /x8e/xa5/xb7/xb8 <CJK> +<U00021376> /x8e/xa5/xb7/xb9 <CJK> +<U000213A8> /x8e/xa5/xb7/xba <CJK> +<U000213AC> /x8e/xa5/xb7/xbb <CJK> +<U3683> /x8e/xa5/xb7/xbc <CJK> +<U5921> /x8e/xa5/xb7/xbd <CJK> +<U000215AA> /x8e/xa5/xb7/xbe <CJK> +<U00020A03> /x8e/xa5/xb7/xbf <CJK> +<U000215AC> /x8e/xa5/xb7/xc0 <CJK> +<U000215AD> /x8e/xa5/xb7/xc1 <CJK> +<U000215AB> /x8e/xa5/xb7/xc2 <CJK> +<U00021650> /x8e/xa5/xb7/xc3 <CJK> +<U00021658> /x8e/xa5/xb7/xc4 <CJK> +<U000217DD> /x8e/xa5/xb7/xc5 <CJK> +<U36F8> /x8e/xa5/xb7/xc6 <CJK> +<U000217AE> /x8e/xa5/xb7/xc7 <CJK> +<U000217A2> /x8e/xa5/xb7/xc8 <CJK> +<U000217AB> /x8e/xa5/xb7/xc9 <CJK> +<U000217E3> /x8e/xa5/xb7/xca <CJK> +<U000217AF> /x8e/xa5/xb7/xcb <CJK> +<U000217E0> /x8e/xa5/xb7/xcc <CJK> +<U000217E4> /x8e/xa5/xb7/xcd <CJK> +<U36F6> /x8e/xa5/xb7/xce <CJK> +<U000217A7> /x8e/xa5/xb7/xcf <CJK> +<U000217AA> /x8e/xa5/xb7/xd0 <CJK> +<U000217E2> /x8e/xa5/xb7/xd1 <CJK> +<U000217E1> /x8e/xa5/xb7/xd2 <CJK> +<U000217DF> /x8e/xa5/xb7/xd3 <CJK> +<U000217AD> /x8e/xa5/xb7/xd4 <CJK> +<U000217E5> /x8e/xa5/xb7/xd5 <CJK> +<U000217D1> /x8e/xa5/xb7/xd6 <CJK> +<U000217AC> /x8e/xa5/xb7/xd7 <CJK> +<U000217D5> /x8e/xa5/xb7/xd8 <CJK> +<U000217A3> /x8e/xa5/xb7/xd9 <CJK> +<U0002179F> /x8e/xa5/xb7/xda <CJK> +<U00021979> /x8e/xa5/xb7/xdb <CJK> +<U00021976> /x8e/xa5/xb7/xdc <CJK> +<U00021A43> /x8e/xa5/xb7/xdd <CJK> +<U00021A3D> /x8e/xa5/xb7/xde <CJK> +<U00021A47> /x8e/xa5/xb7/xdf <CJK> +<U00021A44> /x8e/xa5/xb7/xe0 <CJK> +<U00021A3F> /x8e/xa5/xb7/xe1 <CJK> +<U00021A5B> /x8e/xa5/xb7/xe2 <CJK> +<U00021B7F> /x8e/xa5/xb7/xe3 <CJK> +<U00021C9A> /x8e/xa5/xb7/xe4 <CJK> +<U00021C9C> /x8e/xa5/xb7/xe5 <CJK> +<U379B> /x8e/xa5/xb7/xe6 <CJK> +<U00021D1E> /x8e/xa5/xb7/xe7 <CJK> +<U00021E88> /x8e/xa5/xb7/xe8 <CJK> +<U00021E6A> /x8e/xa5/xb7/xe9 <CJK> +<U00021E76> /x8e/xa5/xb7/xea <CJK> +<U00021E72> /x8e/xa5/xb7/xeb <CJK> +<U00021E70> /x8e/xa5/xb7/xec <CJK> +<U00021E7E> /x8e/xa5/xb7/xed <CJK> +<U00021E6C> /x8e/xa5/xb7/xee <CJK> +<U00021E6F> /x8e/xa5/xb7/xef <CJK> +<U00021E75> /x8e/xa5/xb7/xf0 <CJK> +<U00021E77> /x8e/xa5/xb7/xf1 <CJK> +<U00021E78> /x8e/xa5/xb7/xf2 <CJK> +<U00021E8A> /x8e/xa5/xb7/xf3 <CJK> +<U00021E79> /x8e/xa5/xb7/xf4 <CJK> +<U00021E94> /x8e/xa5/xb7/xf5 <CJK> +<U00022001> /x8e/xa5/xb7/xf6 <CJK> +<U00022105> /x8e/xa5/xb7/xf7 <CJK> +<U000220F1> /x8e/xa5/xb7/xf8 <CJK> +<U000220EE> /x8e/xa5/xb7/xf9 <CJK> +<U000220EF> /x8e/xa5/xb7/xfa <CJK> +<U00022104> /x8e/xa5/xb7/xfb <CJK> +<U5E3F> /x8e/xa5/xb7/xfc <CJK> +<U000220FA> /x8e/xa5/xb7/xfd <CJK> +<U00022107> /x8e/xa5/xb7/xfe <CJK> +<U000220F4> /x8e/xa5/xb8/xa1 <CJK> +<U000220F5> /x8e/xa5/xb8/xa2 <CJK> +<U0002219C> /x8e/xa5/xb8/xa3 <CJK> +<U0002226D> /x8e/xa5/xb8/xa4 <CJK> +<U00022269> /x8e/xa5/xb8/xa5 <CJK> +<U00022266> /x8e/xa5/xb8/xa6 <CJK> +<U00022262> /x8e/xa5/xb8/xa7 <CJK> +<U00022246> /x8e/xa5/xb8/xa8 <CJK> +<U388D> /x8e/xa5/xb8/xa9 <CJK> +<U00022265> /x8e/xa5/xb8/xaa <CJK> +<U0002225D> /x8e/xa5/xb8/xab <CJK> +<U0002225E> /x8e/xa5/xb8/xac <CJK> +<U0002225F> /x8e/xa5/xb8/xad <CJK> +<U0002238E> /x8e/xa5/xb8/xae <CJK> +<U00022402> /x8e/xa5/xb8/xaf <CJK> +<U00022406> /x8e/xa5/xb8/xb0 <CJK> +<U00022404> /x8e/xa5/xb8/xb1 <CJK> +<U00022403> /x8e/xa5/xb8/xb2 <CJK> +<U00022462> /x8e/xa5/xb8/xb3 <CJK> +<U00022527> /x8e/xa5/xb8/xb4 <CJK> +<U00022521> /x8e/xa5/xb8/xb5 <CJK> +<U00022520> /x8e/xa5/xb8/xb6 <CJK> +<U00022524> /x8e/xa5/xb8/xb7 <CJK> +<U00022529> /x8e/xa5/xb8/xb8 <CJK> +<U00022531> /x8e/xa5/xb8/xb9 <CJK> +<U00022523> /x8e/xa5/xb8/xba <CJK> +<U00022522> /x8e/xa5/xb8/xbb <CJK> +<U000226DC> /x8e/xa5/xb8/xbc <CJK> +<U0002274D> /x8e/xa5/xb8/xbd <CJK> +<U000226E5> /x8e/xa5/xb8/xbe <CJK> +<U000226D3> /x8e/xa5/xb8/xbf <CJK> +<U000226EE> /x8e/xa5/xb8/xc0 <CJK> +<U000226E6> /x8e/xa5/xb8/xc1 <CJK> +<U3956> /x8e/xa5/xb8/xc2 <CJK> +<U00022736> /x8e/xa5/xb8/xc3 <CJK> +<U00022740> /x8e/xa5/xb8/xc4 <CJK> +<U0002283F> /x8e/xa5/xb8/xc5 <CJK> +<U0002273D> /x8e/xa5/xb8/xc6 <CJK> +<U00022744> /x8e/xa5/xb8/xc7 <CJK> +<U395B> /x8e/xa5/xb8/xc8 <CJK> +<U0002275F> /x8e/xa5/xb8/xc9 <CJK> +<U00022729> /x8e/xa5/xb8/xca <CJK> +<U00022749> /x8e/xa5/xb8/xcb <CJK> +<U0002278A> /x8e/xa5/xb8/xcc <CJK> +<U0002272A> /x8e/xa5/xb8/xcd <CJK> +<U00022787> /x8e/xa5/xb8/xce <CJK> +<U0002274C> /x8e/xa5/xb8/xcf <CJK> +<U00022731> /x8e/xa5/xb8/xd0 <CJK> +<U00022748> /x8e/xa5/xb8/xd1 <CJK> +<U0002272B> /x8e/xa5/xb8/xd2 <CJK> +<U0002273B> /x8e/xa5/xb8/xd3 <CJK> +<U00022741> /x8e/xa5/xb8/xd4 <CJK> +<U000226C9> /x8e/xa5/xb8/xd5 <CJK> +<U00022734> /x8e/xa5/xb8/xd6 <CJK> +<U00022753> /x8e/xa5/xb8/xd7 <CJK> +<U00022735> /x8e/xa5/xb8/xd8 <CJK> +<U00022747> /x8e/xa5/xb8/xd9 <CJK> +<U00022738> /x8e/xa5/xb8/xda <CJK> +<U000229D1> /x8e/xa5/xb8/xdb <CJK> +<U000229D2> /x8e/xa5/xb8/xdc <CJK> +<U00022A51> /x8e/xa5/xb8/xdd <CJK> +<U00022A55> /x8e/xa5/xb8/xde <CJK> +<U00022A52> /x8e/xa5/xb8/xdf <CJK> +<U00022A53> /x8e/xa5/xb8/xe0 <CJK> +<U00022B8F> /x8e/xa5/xb8/xe1 <CJK> +<U00022BF4> /x8e/xa5/xb8/xe2 <CJK> +<U00022C47> /x8e/xa5/xb8/xe3 <CJK> +<U00022C0D> /x8e/xa5/xb8/xe4 <CJK> +<U00022C1C> /x8e/xa5/xb8/xe5 <CJK> +<U00022BFB> /x8e/xa5/xb8/xe6 <CJK> +<U00022C19> /x8e/xa5/xb8/xe7 <CJK> +<U00022BF7> /x8e/xa5/xb8/xe8 <CJK> +<U00022BF9> /x8e/xa5/xb8/xe9 <CJK> +<U00022BF5> /x8e/xa5/xb8/xea <CJK> +<U00022BE9> /x8e/xa5/xb8/xeb <CJK> +<U00022C0A> /x8e/xa5/xb8/xec <CJK> +<U00022BEE> /x8e/xa5/xb8/xed <CJK> +<U00022C0B> /x8e/xa5/xb8/xee <CJK> +<U00022BFD> /x8e/xa5/xb8/xef <CJK> +<U00022C06> /x8e/xa5/xb8/xf0 <CJK> +<U00022C02> /x8e/xa5/xb8/xf1 <CJK> +<U00022C16> /x8e/xa5/xb8/xf2 <CJK> +<U00022C18> /x8e/xa5/xb8/xf3 <CJK> +<U00022BF0> /x8e/xa5/xb8/xf4 <CJK> +<U00022ED4> /x8e/xa5/xb8/xf5 <CJK> +<U00022F66> /x8e/xa5/xb8/xf6 <CJK> +<U00022F6A> /x8e/xa5/xb8/xf7 <CJK> +<U00022F75> /x8e/xa5/xb8/xf8 <CJK> +<U00022F76> /x8e/xa5/xb8/xf9 <CJK> +<U00022F80> /x8e/xa5/xb8/xfa <CJK> +<U00022F6D> /x8e/xa5/xb8/xfb <CJK> +<U3A96> /x8e/xa5/xb8/xfc <CJK> +<U00022F69> /x8e/xa5/xb8/xfd <CJK> +<U00022F67> /x8e/xa5/xb8/xfe <CJK> +<U00022F68> /x8e/xa5/xb9/xa1 <CJK> +<U00022F5D> /x8e/xa5/xb9/xa2 <CJK> +<U000230A4> /x8e/xa5/xb9/xa3 <CJK> +<U000230FE> /x8e/xa5/xb9/xa4 <CJK> +<U000230FD> /x8e/xa5/xb9/xa5 <CJK> +<U000231EC> /x8e/xa5/xb9/xa6 <CJK> +<U000231E9> /x8e/xa5/xb9/xa7 <CJK> +<U00023221> /x8e/xa5/xb9/xa8 <CJK> +<U000231EB> /x8e/xa5/xb9/xa9 <CJK> +<U000231E7> /x8e/xa5/xb9/xaa <CJK> +<U000231F2> /x8e/xa5/xb9/xab <CJK> +<U00023220> /x8e/xa5/xb9/xac <CJK> +<U0002337A> /x8e/xa5/xb9/xad <CJK> +<U0002352D> /x8e/xa5/xb9/xae <CJK> +<U0002352E> /x8e/xa5/xb9/xaf <CJK> +<U000234CA> /x8e/xa5/xb9/xb0 <CJK> +<U0002352F> /x8e/xa5/xb9/xb1 <CJK> +<U000234C8> /x8e/xa5/xb9/xb2 <CJK> +<U3B7E> /x8e/xa5/xb9/xb3 <CJK> +<U000234CB> /x8e/xa5/xb9/xb4 <CJK> +<U000234C3> /x8e/xa5/xb9/xb5 <CJK> +<U00023484> /x8e/xa5/xb9/xb6 <CJK> +<U000234D2> /x8e/xa5/xb9/xb7 <CJK> +<U000234C6> /x8e/xa5/xb9/xb8 <CJK> +<U3B81> /x8e/xa5/xb9/xb9 <CJK> +<U000234CF> /x8e/xa5/xb9/xba <CJK> +<U000234D5> /x8e/xa5/xb9/xbb <CJK> +<U000234D4> /x8e/xa5/xb9/xbc <CJK> +<U000234DD> /x8e/xa5/xb9/xbd <CJK> +<U0002352B> /x8e/xa5/xb9/xbe <CJK> +<U000235A3> /x8e/xa5/xb9/xbf <CJK> +<U000234DB> /x8e/xa5/xb9/xc0 <CJK> +<U0002352C> /x8e/xa5/xb9/xc1 <CJK> +<U00023513> /x8e/xa5/xb9/xc2 <CJK> +<U3C35> /x8e/xa5/xb9/xc3 <CJK> +<U000238D1> /x8e/xa5/xb9/xc4 <CJK> +<U000238CC> /x8e/xa5/xb9/xc5 <CJK> +<U000238D5> /x8e/xa5/xb9/xc6 <CJK> +<U000238C9> /x8e/xa5/xb9/xc7 <CJK> +<U000238CF> /x8e/xa5/xb9/xc8 <CJK> +<U000238D2> /x8e/xa5/xb9/xc9 <CJK> +<U0002397B> /x8e/xa5/xb9/xca <CJK> +<U0002397C> /x8e/xa5/xb9/xcb <CJK> +<U00023A23> /x8e/xa5/xb9/xcc <CJK> +<U00023A1D> /x8e/xa5/xb9/xcd <CJK> +<U00023A1C> /x8e/xa5/xb9/xce <CJK> +<U00023A1E> /x8e/xa5/xb9/xcf <CJK> +<U00023A22> /x8e/xa5/xb9/xd0 <CJK> +<U00023A24> /x8e/xa5/xb9/xd1 <CJK> +<U00023A20> /x8e/xa5/xb9/xd2 <CJK> +<U00023A18> /x8e/xa5/xb9/xd3 <CJK> +<U00023A21> /x8e/xa5/xb9/xd4 <CJK> +<U00023B88> /x8e/xa5/xb9/xd5 <CJK> +<U00023B8A> /x8e/xa5/xb9/xd6 <CJK> +<U00023B94> /x8e/xa5/xb9/xd7 <CJK> +<U00023B8F> /x8e/xa5/xb9/xd8 <CJK> +<U00023B8E> /x8e/xa5/xb9/xd9 <CJK> +<U00023B90> /x8e/xa5/xb9/xda <CJK> +<U3C9B> /x8e/xa5/xb9/xdb <CJK> +<U00023BA7> /x8e/xa5/xb9/xdc <CJK> +<U00023C64> /x8e/xa5/xb9/xdd <CJK> +<U3D00> /x8e/xa5/xb9/xde <CJK> +<U00023E18> /x8e/xa5/xb9/xdf <CJK> +<U00023E14> /x8e/xa5/xb9/xe0 <CJK> +<U00023E1D> /x8e/xa5/xb9/xe1 <CJK> +<U00023E05> /x8e/xa5/xb9/xe2 <CJK> +<U00023DFF> /x8e/xa5/xb9/xe3 <CJK> +<U00023E1B> /x8e/xa5/xb9/xe4 <CJK> +<U00023E1A> /x8e/xa5/xb9/xe5 <CJK> +<U00023E19> /x8e/xa5/xb9/xe6 <CJK> +<U00023E03> /x8e/xa5/xb9/xe7 <CJK> +<U00023E0E> /x8e/xa5/xb9/xe8 <CJK> +<U00023E47> /x8e/xa5/xb9/xe9 <CJK> +<U00023E04> /x8e/xa5/xb9/xea <CJK> +<U00023E5A> /x8e/xa5/xb9/xeb <CJK> +<U00023E07> /x8e/xa5/xb9/xec <CJK> +<U00023E20> /x8e/xa5/xb9/xed <CJK> +<U0002426A> /x8e/xa5/xb9/xee <CJK> +<U00024266> /x8e/xa5/xb9/xef <CJK> +<U0002427A> /x8e/xa5/xb9/xf0 <CJK> +<U00024265> /x8e/xa5/xb9/xf1 <CJK> +<U000242AF> /x8e/xa5/xb9/xf2 <CJK> +<U000245CD> /x8e/xa5/xb9/xf3 <CJK> +<U000245CF> /x8e/xa5/xb9/xf4 <CJK> +<U000245D1> /x8e/xa5/xb9/xf5 <CJK> +<U000245CE> /x8e/xa5/xb9/xf6 <CJK> +<U0002465F> /x8e/xa5/xb9/xf7 <CJK> +<U00024677> /x8e/xa5/xb9/xf8 <CJK> +<U00024674> /x8e/xa5/xb9/xf9 <CJK> +<U00024688> /x8e/xa5/xb9/xfa <CJK> +<U00024675> /x8e/xa5/xb9/xfb <CJK> +<U00024689> /x8e/xa5/xb9/xfc <CJK> +<U00024672> /x8e/xa5/xb9/xfd <CJK> +<U000247C6> /x8e/xa5/xb9/xfe <CJK> +<U000247EA> /x8e/xa5/xba/xa1 <CJK> +<U000247E0> /x8e/xa5/xba/xa2 <CJK> +<U00024807> /x8e/xa5/xba/xa3 <CJK> +<U000247E6> /x8e/xa5/xba/xa4 <CJK> +<U000247E5> /x8e/xa5/xba/xa5 <CJK> +<U000247DD> /x8e/xa5/xba/xa6 <CJK> +<U000247E3> /x8e/xa5/xba/xa7 <CJK> +<U000247DA> /x8e/xa5/xba/xa8 <CJK> +<U000249AE> /x8e/xa5/xba/xa9 <CJK> +<U0002497E> /x8e/xa5/xba/xaa <CJK> +<U0002497D> /x8e/xa5/xba/xab <CJK> +<U0002497F> /x8e/xa5/xba/xac <CJK> +<U3ED3> /x8e/xa5/xba/xad <CJK> +<U000249D9> /x8e/xa5/xba/xae <CJK> +<U00024AFA> /x8e/xa5/xba/xaf <CJK> +<U00024AFB> /x8e/xa5/xba/xb0 <CJK> +<U00024B4D> /x8e/xa5/xba/xb1 <CJK> +<U00024B54> /x8e/xa5/xba/xb2 <CJK> +<U00024B51> /x8e/xa5/xba/xb3 <CJK> +<U00024B50> /x8e/xa5/xba/xb4 <CJK> +<U00024D98> /x8e/xa5/xba/xb5 <CJK> +<U00024D95> /x8e/xa5/xba/xb6 <CJK> +<U00024D9D> /x8e/xa5/xba/xb7 <CJK> +<U00024DC1> /x8e/xa5/xba/xb8 <CJK> +<U00024D9A> /x8e/xa5/xba/xb9 <CJK> +<U00024D9B> /x8e/xa5/xba/xba <CJK> +<U3F9F> /x8e/xa5/xba/xbb <CJK> +<U00024D9C> /x8e/xa5/xba/xbc <CJK> +<U00024DD7> /x8e/xa5/xba/xbd <CJK> +<U00024DA4> /x8e/xa5/xba/xbe <CJK> +<U00024D96> /x8e/xa5/xba/xbf <CJK> +<U00024DA0> /x8e/xa5/xba/xc0 <CJK> +<U00024F31> /x8e/xa5/xba/xc1 <CJK> +<U00024FE9> /x8e/xa5/xba/xc2 <CJK> +<U0002506E> /x8e/xa5/xba/xc3 <CJK> +<U0002519A> /x8e/xa5/xba/xc4 <CJK> +<U000251A5> /x8e/xa5/xba/xc5 <CJK> +<U00025194> /x8e/xa5/xba/xc6 <CJK> +<U000251A6> /x8e/xa5/xba/xc7 <CJK> +<U00025199> /x8e/xa5/xba/xc8 <CJK> +<U0002518B> /x8e/xa5/xba/xc9 <CJK> +<U00025198> /x8e/xa5/xba/xca <CJK> +<U00025191> /x8e/xa5/xba/xcb <CJK> +<U0002518C> /x8e/xa5/xba/xcc <CJK> +<U000251A1> /x8e/xa5/xba/xcd <CJK> +<U000251A3> /x8e/xa5/xba/xce <CJK> +<U000251C6> /x8e/xa5/xba/xcf <CJK> +<U0002536F> /x8e/xa5/xba/xd0 <CJK> +<U0002536D> /x8e/xa5/xba/xd1 <CJK> +<U0002536A> /x8e/xa5/xba/xd2 <CJK> +<U0002536C> /x8e/xa5/xba/xd3 <CJK> +<U00025371> /x8e/xa5/xba/xd4 <CJK> +<U0002536E> /x8e/xa5/xba/xd5 <CJK> +<U000253DF> /x8e/xa5/xba/xd6 <CJK> +<U000254AC> /x8e/xa5/xba/xd7 <CJK> +<U000254AA> /x8e/xa5/xba/xd8 <CJK> +<U40B1> /x8e/xa5/xba/xd9 <CJK> +<U000254B5> /x8e/xa5/xba/xda <CJK> +<U000254AD> /x8e/xa5/xba/xdb <CJK> +<U000254B2> /x8e/xa5/xba/xdc <CJK> +<U000254B3> /x8e/xa5/xba/xdd <CJK> +<U000254AB> /x8e/xa5/xba/xde <CJK> +<U000254B6> /x8e/xa5/xba/xdf <CJK> +<U000254C7> /x8e/xa5/xba/xe0 <CJK> +<U000254C6> /x8e/xa5/xba/xe1 <CJK> +<U0002566C> /x8e/xa5/xba/xe2 <CJK> +<U00025670> /x8e/xa5/xba/xe3 <CJK> +<U000257B3> /x8e/xa5/xba/xe4 <CJK> +<U414B> /x8e/xa5/xba/xe5 <CJK> +<U0002598C> /x8e/xa5/xba/xe6 <CJK> +<U00025981> /x8e/xa5/xba/xe7 <CJK> +<U00025983> /x8e/xa5/xba/xe8 <CJK> +<U0002597D> /x8e/xa5/xba/xe9 <CJK> +<U00025985> /x8e/xa5/xba/xea <CJK> +<U00025990> /x8e/xa5/xba/xeb <CJK> +<U000259A2> /x8e/xa5/xba/xec <CJK> +<U0002598D> /x8e/xa5/xba/xed <CJK> +<U0002598F> /x8e/xa5/xba/xee <CJK> +<U0002597E> /x8e/xa5/xba/xef <CJK> +<U0002598A> /x8e/xa5/xba/xf0 <CJK> +<U0002597F> /x8e/xa5/xba/xf1 <CJK> +<U00025976> /x8e/xa5/xba/xf2 <CJK> +<U00025987> /x8e/xa5/xba/xf3 <CJK> +<U00025978> /x8e/xa5/xba/xf4 <CJK> +<U00025A80> /x8e/xa5/xba/xf5 <CJK> +<U00025A82> /x8e/xa5/xba/xf6 <CJK> +<U00025A81> /x8e/xa5/xba/xf7 <CJK> +<U00025A83> /x8e/xa5/xba/xf8 <CJK> +<U00025B5A> /x8e/xa5/xba/xf9 <CJK> +<U00025B34> /x8e/xa5/xba/xfa <CJK> +<U00025B2C> /x8e/xa5/xba/xfb <CJK> +<U00025B2A> /x8e/xa5/xba/xfc <CJK> +<U00025B40> /x8e/xa5/xba/xfd <CJK> +<U00025B2D> /x8e/xa5/xba/xfe <CJK> +<U00025B33> /x8e/xa5/xbb/xa1 <CJK> +<U00025B2B> /x8e/xa5/xbb/xa2 <CJK> +<U00025B4B> /x8e/xa5/xbb/xa3 <CJK> +<U7B3F> /x8e/xa5/xbb/xa4 <CJK> +<U00025B3C> /x8e/xa5/xbb/xa5 <CJK> +<U00025E5A> /x8e/xa5/xbb/xa6 <CJK> +<U00025E77> /x8e/xa5/xbb/xa7 <CJK> +<U00025E60> /x8e/xa5/xbb/xa8 <CJK> +<U00025FFA> /x8e/xa5/xbb/xa9 <CJK> +<U00025FF9> /x8e/xa5/xbb/xaa <CJK> +<U00025FFC> /x8e/xa5/xbb/xab <CJK> +<U42D6> /x8e/xa5/xbb/xac <CJK> +<U00025FF5> /x8e/xa5/xbb/xad <CJK> +<U00025FE8> /x8e/xa5/xbb/xae <CJK> +<U00026009> /x8e/xa5/xbb/xaf <CJK> +<U00025FE7> /x8e/xa5/xbb/xb0 <CJK> +<U00025FE6> /x8e/xa5/xbb/xb1 <CJK> +<U00025FE9> /x8e/xa5/xbb/xb2 <CJK> +<U00026232> /x8e/xa5/xbb/xb3 <CJK> +<U0002622C> /x8e/xa5/xbb/xb4 <CJK> +<U000262BD> /x8e/xa5/xbb/xb5 <CJK> +<U000262BC> /x8e/xa5/xbb/xb6 <CJK> +<U0002637A> /x8e/xa5/xbb/xb7 <CJK> +<U0002637E> /x8e/xa5/xbb/xb8 <CJK> +<U00026379> /x8e/xa5/xbb/xb9 <CJK> +<U4389> /x8e/xa5/xbb/xba <CJK> +<U00026423> /x8e/xa5/xbb/xbb <CJK> +<U00026430> /x8e/xa5/xbb/xbc <CJK> +<U00026428> /x8e/xa5/xbb/xbd <CJK> +<U000264D4> /x8e/xa5/xbb/xbe <CJK> +<U00026ACE> /x8e/xa5/xbb/xbf <CJK> +<U000264F1> /x8e/xa5/xbb/xc0 <CJK> +<U000264F0> /x8e/xa5/xbb/xc1 <CJK> +<U00026560> /x8e/xa5/xbb/xc2 <CJK> +<U00026565> /x8e/xa5/xbb/xc3 <CJK> +<U000266A8> /x8e/xa5/xbb/xc4 <CJK> +<U0002670A> /x8e/xa5/xbb/xc5 <CJK> +<U0002671B> /x8e/xa5/xbb/xc6 <CJK> +<U00026712> /x8e/xa5/xbb/xc7 <CJK> +<U00026707> /x8e/xa5/xbb/xc8 <CJK> +<U0002674F> /x8e/xa5/xbb/xc9 <CJK> +<U0002670E> /x8e/xa5/xbb/xca <CJK> +<U00026752> /x8e/xa5/xbb/xcb <CJK> +<U00026716> /x8e/xa5/xbb/xcc <CJK> +<U4400> /x8e/xa5/xbb/xcd <CJK> +<U00026753> /x8e/xa5/xbb/xce <CJK> +<U00026754> /x8e/xa5/xbb/xcf <CJK> +<U00026756> /x8e/xa5/xbb/xd1 <CJK> +<U0002696D> /x8e/xa5/xbb/xd2 <CJK> +<U00026972> /x8e/xa5/xbb/xd3 <CJK> +<U00026A2F> /x8e/xa5/xbb/xd4 <CJK> +<U00026C2A> /x8e/xa5/xbb/xd5 <CJK> +<U44DC> /x8e/xa5/xbb/xd6 <CJK> +<U00026C63> /x8e/xa5/xbb/xd7 <CJK> +<U00026C84> /x8e/xa5/xbb/xd8 <CJK> +<U00026CAF> /x8e/xa5/xbb/xd9 <CJK> +<U00026C45> /x8e/xa5/xbb/xda <CJK> +<U00026C70> /x8e/xa5/xbb/xdb <CJK> +<U00026C56> /x8e/xa5/xbb/xdc <CJK> +<U00026C16> /x8e/xa5/xbb/xdd <CJK> +<U00026C3D> /x8e/xa5/xbb/xde <CJK> +<U00026C38> /x8e/xa5/xbb/xdf <CJK> +<U00026C6F> /x8e/xa5/xbb/xe0 <CJK> +<U00026C77> /x8e/xa5/xbb/xe1 <CJK> +<U00026C2E> /x8e/xa5/xbb/xe2 <CJK> +<U00026C31> /x8e/xa5/xbb/xe3 <CJK> +<U00026C4C> /x8e/xa5/xbb/xe4 <CJK> +<U00026C5F> /x8e/xa5/xbb/xe5 <CJK> +<U00026C75> /x8e/xa5/xbb/xe6 <CJK> +<U00026C39> /x8e/xa5/xbb/xe7 <CJK> +<U00026C3A> /x8e/xa5/xbb/xe8 <CJK> +<U00026C2C> /x8e/xa5/xbb/xe9 <CJK> +<U00026C2D> /x8e/xa5/xbb/xea <CJK> +<U00026C3F> /x8e/xa5/xbb/xeb <CJK> +<U00026C2F> /x8e/xa5/xbb/xec <CJK> +<U00026C30> /x8e/xa5/xbb/xed <CJK> +<U00026C3E> /x8e/xa5/xbb/xee <CJK> +<U83D0> /x8e/xa5/xbb/xef <CJK> +<U4590> /x8e/xa5/xbb/xf0 <CJK> +<U000271B2> /x8e/xa5/xbb/xf1 <CJK> +<U000272B7> /x8e/xa5/xbb/xf2 <CJK> +<U0002728F> /x8e/xa5/xbb/xf3 <CJK> +<U45B1> /x8e/xa5/xbb/xf4 <CJK> +<U00027296> /x8e/xa5/xbb/xf5 <CJK> +<U0002729E> /x8e/xa5/xbb/xf6 <CJK> +<U00027297> /x8e/xa5/xbb/xf7 <CJK> +<U00027295> /x8e/xa5/xbb/xf8 <CJK> +<U000272A5> /x8e/xa5/xbb/xf9 <CJK> +<U00027298> /x8e/xa5/xbb/xfa <CJK> +<U86E7> /x8e/xa5/xbb/xfb <CJK> +<U000272A3> /x8e/xa5/xbb/xfc <CJK> +<U0002729A> /x8e/xa5/xbb/xfd <CJK> +<U000272AD> /x8e/xa5/xbb/xfe <CJK> +<U000272A6> /x8e/xa5/xbc/xa1 <CJK> +<U000272B6> /x8e/xa5/xbc/xa2 <CJK> +<U00027299> /x8e/xa5/xbc/xa3 <CJK> +<U000272AF> /x8e/xa5/xbc/xa4 <CJK> +<U000272AC> /x8e/xa5/xbc/xa5 <CJK> +<U45AA> /x8e/xa5/xbc/xa6 <CJK> +<U0002729F> /x8e/xa5/xbc/xa7 <CJK> +<U00027294> /x8e/xa5/xbc/xa8 <CJK> +<U000275EB> /x8e/xa5/xbc/xa9 <CJK> +<U0002766F> /x8e/xa5/xbc/xaa <CJK> +<U0002766D> /x8e/xa5/xbc/xab <CJK> +<U0002767E> /x8e/xa5/xbc/xac <CJK> +<U0002766C> /x8e/xa5/xbc/xad <CJK> +<U00027661> /x8e/xa5/xbc/xae <CJK> +<U00027663> /x8e/xa5/xbc/xaf <CJK> +<U0002766B> /x8e/xa5/xbc/xb0 <CJK> +<U0002765E> /x8e/xa5/xbc/xb1 <CJK> +<U0002763E> /x8e/xa5/xbc/xb2 <CJK> +<U00027664> /x8e/xa5/xbc/xb3 <CJK> +<U000276AD> /x8e/xa5/xbc/xb4 <CJK> +<U467D> /x8e/xa5/xbc/xb5 <CJK> +<U00027820> /x8e/xa5/xbc/xb6 <CJK> +<U000278D1> /x8e/xa5/xbc/xb7 <CJK> +<U000278D5> /x8e/xa5/xbc/xb8 <CJK> +<U000279AE> /x8e/xa5/xbc/xb9 <CJK> +<U000279AF> /x8e/xa5/xbc/xba <CJK> +<U0002799F> /x8e/xa5/xbc/xbb <CJK> +<U000279A8> /x8e/xa5/xbc/xbc <CJK> +<U000279CA> /x8e/xa5/xbc/xbd <CJK> +<U00027BE1> /x8e/xa5/xbc/xbe <CJK> +<U00027C39> /x8e/xa5/xbc/xbf <CJK> +<U00027C38> /x8e/xa5/xbc/xc0 <CJK> +<U00027C3B> /x8e/xa5/xbc/xc1 <CJK> +<U00027CAD> /x8e/xa5/xbc/xc2 <CJK> +<U00027CB5> /x8e/xa5/xbc/xc3 <CJK> +<U00027CAF> /x8e/xa5/xbc/xc4 <CJK> +<U00027CB1> /x8e/xa5/xbc/xc5 <CJK> +<U00027CAE> /x8e/xa5/xbc/xc6 <CJK> +<U00027CB4> /x8e/xa5/xbc/xc7 <CJK> +<U00027CB0> /x8e/xa5/xbc/xc8 <CJK> +<U00027D4B> /x8e/xa5/xbc/xc9 <CJK> +<U00027D51> /x8e/xa5/xbc/xca <CJK> +<U00027D4C> /x8e/xa5/xbc/xcb <CJK> +<U4769> /x8e/xa5/xbc/xcc <CJK> +<U00027D60> /x8e/xa5/xbc/xcd <CJK> +<U00027EBE> /x8e/xa5/xbc/xce <CJK> +<U00027EB9> /x8e/xa5/xbc/xcf <CJK> +<U00027EB7> /x8e/xa5/xbc/xd0 <CJK> +<U00027EB6> /x8e/xa5/xbc/xd1 <CJK> +<U47A1> /x8e/xa5/xbc/xd2 <CJK> +<U00027EBD> /x8e/xa5/xbc/xd3 <CJK> +<U00027EB8> /x8e/xa5/xbc/xd4 <CJK> +<U00027EC1> /x8e/xa5/xbc/xd5 <CJK> +<U00027FF7> /x8e/xa5/xbc/xd6 <CJK> +<U00027FF3> /x8e/xa5/xbc/xd7 <CJK> +<U00027FF4> /x8e/xa5/xbc/xd8 <CJK> +<U00027FFB> /x8e/xa5/xbc/xd9 <CJK> +<U00027FFD> /x8e/xa5/xbc/xda <CJK> +<U00027FF5> /x8e/xa5/xbc/xdb <CJK> +<U47E7> /x8e/xa5/xbc/xdc <CJK> +<U00027FFA> /x8e/xa5/xbc/xdd <CJK> +<U00028014> /x8e/xa5/xbc/xde <CJK> +<U47EC> /x8e/xa5/xbc/xdf <CJK> +<U00027FF2> /x8e/xa5/xbc/xe0 <CJK> +<U00027FFC> /x8e/xa5/xbc/xe1 <CJK> +<U00028000> /x8e/xa5/xbc/xe2 <CJK> +<U47DF> /x8e/xa5/xbc/xe3 <CJK> +<U0002822B> /x8e/xa5/xbc/xe4 <CJK> +<U00028229> /x8e/xa5/xbc/xe5 <CJK> +<U0002822E> /x8e/xa5/xbc/xe6 <CJK> +<U4833> /x8e/xa5/xbc/xe7 <CJK> +<U000282D7> /x8e/xa5/xbc/xe8 <CJK> +<U000282DB> /x8e/xa5/xbc/xe9 <CJK> +<U000282D9> /x8e/xa5/xbc/xea <CJK> +<U000282D8> /x8e/xa5/xbc/xeb <CJK> +<U000282E6> /x8e/xa5/xbc/xec <CJK> +<U000282D6> /x8e/xa5/xbc/xed <CJK> +<U000282D1> /x8e/xa5/xbc/xee <CJK> +<U000282E7> /x8e/xa5/xbc/xef <CJK> +<U000282D0> /x8e/xa5/xbc/xf0 <CJK> +<U000282DC> /x8e/xa5/xbc/xf1 <CJK> +<U000284ED> /x8e/xa5/xbc/xf2 <CJK> +<U0002851A> /x8e/xa5/xbc/xf3 <CJK> +<U00028519> /x8e/xa5/xbc/xf4 <CJK> +<U00028516> /x8e/xa5/xbc/xf5 <CJK> +<U000284EC> /x8e/xa5/xbc/xf6 <CJK> +<U000284EF> /x8e/xa5/xbc/xf7 <CJK> +<U000284EE> /x8e/xa5/xbc/xf8 <CJK> +<U000284F4> /x8e/xa5/xbc/xf9 <CJK> +<U0002852F> /x8e/xa5/xbc/xfa <CJK> +<U00028730> /x8e/xa5/xbc/xfb <CJK> +<U00028719> /x8e/xa5/xbc/xfc <CJK> +<U00028718> /x8e/xa5/xbc/xfd <CJK> +<U00028711> /x8e/xa5/xbc/xfe <CJK> +<U00028716> /x8e/xa5/xbd/xa1 <CJK> +<U00028712> /x8e/xa5/xbd/xa2 <CJK> +<U00028710> /x8e/xa5/xbd/xa3 <CJK> +<U00028714> /x8e/xa5/xbd/xa4 <CJK> +<U0002880C> /x8e/xa5/xbd/xa5 <CJK> +<U0002880D> /x8e/xa5/xbd/xa6 <CJK> +<U00028910> /x8e/xa5/xbd/xa7 <CJK> +<U00028929> /x8e/xa5/xbd/xa8 <CJK> +<U00028928> /x8e/xa5/xbd/xa9 <CJK> +<U00028C65> /x8e/xa5/xbd/xaa <CJK> +<U00028C66> /x8e/xa5/xbd/xab <CJK> +<U00028CDE> /x8e/xa5/xbd/xac <CJK> +<U00028CDF> /x8e/xa5/xbd/xad <CJK> +<U00028CE0> /x8e/xa5/xbd/xae <CJK> +<U00028CD9> /x8e/xa5/xbd/xaf <CJK> +<U00028CDB> /x8e/xa5/xbd/xb0 <CJK> +<U00028CD8> /x8e/xa5/xbd/xb1 <CJK> +<U00028CE3> /x8e/xa5/xbd/xb2 <CJK> +<U00028CD7> /x8e/xa5/xbd/xb3 <CJK> +<U00028EA6> /x8e/xa5/xbd/xb4 <CJK> +<U00028EA7> /x8e/xa5/xbd/xb5 <CJK> +<U00028EBF> /x8e/xa5/xbd/xb6 <CJK> +<U00028EA8> /x8e/xa5/xbd/xb7 <CJK> +<U00028E9F> /x8e/xa5/xbd/xb8 <CJK> +<U00028EA1> /x8e/xa5/xbd/xb9 <CJK> +<U00028EA2> /x8e/xa5/xbd/xba <CJK> +<U00028EAD> /x8e/xa5/xbd/xbb <CJK> +<U00028EA3> /x8e/xa5/xbd/xbc <CJK> +<U00028EA0> /x8e/xa5/xbd/xbd <CJK> +<U00029083> /x8e/xa5/xbd/xbe <CJK> +<U00029085> /x8e/xa5/xbd/xbf <CJK> +<U00029082> /x8e/xa5/xbd/xc0 <CJK> +<U00029084> /x8e/xa5/xbd/xc1 <CJK> +<U000291EE> /x8e/xa5/xbd/xc2 <CJK> +<U0002925D> /x8e/xa5/xbd/xc3 <CJK> +<U00029392> /x8e/xa5/xbd/xc4 <CJK> +<U00029455> /x8e/xa5/xbd/xc5 <CJK> +<U00029453> /x8e/xa5/xbd/xc6 <CJK> +<U00029451> /x8e/xa5/xbd/xc8 <CJK> +<U00029452> /x8e/xa5/xbd/xc9 <CJK> +<U00029450> /x8e/xa5/xbd/xca <CJK> +<U0002959D> /x8e/xa5/xbd/xcb <CJK> +<U00029687> /x8e/xa5/xbd/xcc <CJK> +<U00029697> /x8e/xa5/xbd/xcd <CJK> +<U0002969B> /x8e/xa5/xbd/xce <CJK> +<U0002969D> /x8e/xa5/xbd/xcf <CJK> +<U00029869> /x8e/xa5/xbd/xd0 <CJK> +<U00029A11> /x8e/xa5/xbd/xd1 <CJK> +<U4BEE> /x8e/xa5/xbd/xd2 <CJK> +<U00029C7A> /x8e/xa5/xbd/xd3 <CJK> +<U4C32> /x8e/xa5/xbd/xd4 <CJK> +<U00023244> /x8e/xa5/xbd/xd5 <CJK> +<U000200C6> /x8e/xa5/xbd/xd6 <CJK> +<U00020340> /x8e/xa5/xbd/xd7 <CJK> +<U0002032E> /x8e/xa5/xbd/xd8 <CJK> +<U00020368> /x8e/xa5/xbd/xd9 <CJK> +<U0002032D> /x8e/xa5/xbd/xda <CJK> +<U00020334> /x8e/xa5/xbd/xdb <CJK> +<U00020332> /x8e/xa5/xbd/xdc <CJK> +<U00020369> /x8e/xa5/xbd/xdd <CJK> +<U00020331> /x8e/xa5/xbd/xde <CJK> +<U0002036A> /x8e/xa5/xbd/xdf <CJK> +<U0002033E> /x8e/xa5/xbd/xe0 <CJK> +<U0002036F> /x8e/xa5/xbd/xe1 <CJK> +<U00020375> /x8e/xa5/xbd/xe2 <CJK> +<U000204F6> /x8e/xa5/xbd/xe3 <CJK> +<U00020520> /x8e/xa5/xbd/xe4 <CJK> +<U00020528> /x8e/xa5/xbd/xe5 <CJK> +<U00020567> /x8e/xa5/xbd/xe6 <CJK> +<U000205FB> /x8e/xa5/xbd/xe7 <CJK> +<U000205FE> /x8e/xa5/xbd/xe8 <CJK> +<U000205FC> /x8e/xa5/xbd/xe9 <CJK> +<U000205FD> /x8e/xa5/xbd/xea <CJK> +<U000205FF> /x8e/xa5/xbd/xeb <CJK> +<U000205FA> /x8e/xa5/xbd/xec <CJK> +<U000207AC> /x8e/xa5/xbd/xed <CJK> +<U000207AF> /x8e/xa5/xbd/xee <CJK> +<U000207B1> /x8e/xa5/xbd/xef <CJK> +<U34FC> /x8e/xa5/xbd/xf0 <CJK> +<U000207BF> /x8e/xa5/xbd/xf1 <CJK> +<U000207BE> /x8e/xa5/xbd/xf2 <CJK> +<U000207A7> /x8e/xa5/xbd/xf3 <CJK> +<U000207AA> /x8e/xa5/xbd/xf4 <CJK> +<U00020894> /x8e/xa5/xbd/xf5 <CJK> +<U00020893> /x8e/xa5/xbd/xf6 <CJK> +<U00020899> /x8e/xa5/xbd/xf7 <CJK> +<U352A> /x8e/xa5/xbd/xf8 <CJK> +<U000208FA> /x8e/xa5/xbd/xf9 <CJK> +<U00020956> /x8e/xa5/xbd/xfa <CJK> +<U00020A22> /x8e/xa5/xbd/xfb <CJK> +<U00020A91> /x8e/xa5/xbd/xfc <CJK> +<U00020A92> /x8e/xa5/xbd/xfd <CJK> +<U00020B08> /x8e/xa5/xbd/xfe <CJK> +<U00020B06> /x8e/xa5/xbe/xa1 <CJK> +<U00020DD6> /x8e/xa5/xbe/xa2 <CJK> +<U00020E37> /x8e/xa5/xbe/xa3 <CJK> +<U00020E4B> /x8e/xa5/xbe/xa4 <CJK> +<U00020ECE> /x8e/xa5/xbe/xa5 <CJK> +<U00020ED0> /x8e/xa5/xbe/xa6 <CJK> +<U00020E39> /x8e/xa5/xbe/xa7 <CJK> +<U00020E64> /x8e/xa5/xbe/xa8 <CJK> +<U00020ECF> /x8e/xa5/xbe/xa9 <CJK> +<U00020E46> /x8e/xa5/xbe/xaa <CJK> +<U00020E66> /x8e/xa5/xbe/xab <CJK> +<U00020E56> /x8e/xa5/xbe/xac <CJK> +<U00020E43> /x8e/xa5/xbe/xad <CJK> +<U00020E4A> /x8e/xa5/xbe/xae <CJK> +<U00020E58> /x8e/xa5/xbe/xaf <CJK> +<U00020E65> /x8e/xa5/xbe/xb0 <CJK> +<U00020E5A> /x8e/xa5/xbe/xb1 <CJK> +<U00020E5B> /x8e/xa5/xbe/xb2 <CJK> +<U00020E55> /x8e/xa5/xbe/xb3 <CJK> +<U00020E50> /x8e/xa5/xbe/xb4 <CJK> +<U00020E4C> /x8e/xa5/xbe/xb5 <CJK> +<U00020ECD> /x8e/xa5/xbe/xb6 <CJK> +<U00020E51> /x8e/xa5/xbe/xb7 <CJK> +<U00020E47> /x8e/xa5/xbe/xb8 <CJK> +<U35D3> /x8e/xa5/xbe/xb9 <CJK> +<U00020E53> /x8e/xa5/xbe/xba <CJK> +<U00020E62> /x8e/xa5/xbe/xbb <CJK> +<U00020ECC> /x8e/xa5/xbe/xbc <CJK> +<U35D7> /x8e/xa5/xbe/xbd <CJK> +<U00020E7F> /x8e/xa5/xbe/xbe <CJK> +<U00020E4D> /x8e/xa5/xbe/xbf <CJK> +<U0002120A> /x8e/xa5/xbe/xc0 <CJK> +<U0002120C> /x8e/xa5/xbe/xc1 <CJK> +<U0002120F> /x8e/xa5/xbe/xc2 <CJK> +<U000213BB> /x8e/xa5/xbe/xc3 <CJK> +<U000213B9> /x8e/xa5/xbe/xc4 <CJK> +<U000213EB> /x8e/xa5/xbe/xc5 <CJK> +<U000213AE> /x8e/xa5/xbe/xc6 <CJK> +<U000213C1> /x8e/xa5/xbe/xc7 <CJK> +<U000213EA> /x8e/xa5/xbe/xc8 <CJK> +<U000213BE> /x8e/xa5/xbe/xc9 <CJK> +<U000213BF> /x8e/xa5/xbe/xca <CJK> +<U000213BA> /x8e/xa5/xbe/xcb <CJK> +<U000213B7> /x8e/xa5/xbe/xcc <CJK> +<U000213B3> /x8e/xa5/xbe/xcd <CJK> +<U000213E9> /x8e/xa5/xbe/xce <CJK> +<U0002156E> /x8e/xa5/xbe/xcf <CJK> +<U000215AF> /x8e/xa5/xbe/xd0 <CJK> +<U000215B3> /x8e/xa5/xbe/xd1 <CJK> +<U000215B2> /x8e/xa5/xbe/xd2 <CJK> +<U00021668> /x8e/xa5/xbe/xd3 <CJK> +<U00021669> /x8e/xa5/xbe/xd4 <CJK> +<U0002166A> /x8e/xa5/xbe/xd5 <CJK> +<U000217DE> /x8e/xa5/xbe/xd6 <CJK> +<U000217EB> /x8e/xa5/xbe/xd7 <CJK> +<U00021811> /x8e/xa5/xbe/xd8 <CJK> +<U000217ED> /x8e/xa5/xbe/xd9 <CJK> +<U000217E9> /x8e/xa5/xbe/xda <CJK> +<U000217F7> /x8e/xa5/xbe/xdb <CJK> +<U000217F4> /x8e/xa5/xbe/xdc <CJK> +<U000217EA> /x8e/xa5/xbe/xdd <CJK> +<U00021812> /x8e/xa5/xbe/xde <CJK> +<U000217E8> /x8e/xa5/xbe/xdf <CJK> +<U00021813> /x8e/xa5/xbe/xe0 <CJK> +<U0002198E> /x8e/xa5/xbe/xe1 <CJK> +<U00021986> /x8e/xa5/xbe/xe2 <CJK> +<U00021A63> /x8e/xa5/xbe/xe3 <CJK> +<U00021A65> /x8e/xa5/xbe/xe4 <CJK> +<U00021B99> /x8e/xa5/xbe/xe5 <CJK> +<U00021CC2> /x8e/xa5/xbe/xe6 <CJK> +<U00021CAE> /x8e/xa5/xbe/xe7 <CJK> +<U00021CB0> /x8e/xa5/xbe/xe8 <CJK> +<U00021CAD> /x8e/xa5/xbe/xe9 <CJK> +<U00021EB4> /x8e/xa5/xbe/xea <CJK> +<U00021ED1> /x8e/xa5/xbe/xeb <CJK> +<U00021EAD> /x8e/xa5/xbe/xec <CJK> +<U37F3> /x8e/xa5/xbe/xed <CJK> +<U00021EBD> /x8e/xa5/xbe/xee <CJK> +<U00021EB7> /x8e/xa5/xbe/xef <CJK> +<U00021EAB> /x8e/xa5/xbe/xf0 <CJK> +<U00021EAF> /x8e/xa5/xbe/xf1 <CJK> +<U00021EC1> /x8e/xa5/xbe/xf2 <CJK> +<U00021EB5> /x8e/xa5/xbe/xf3 <CJK> +<U0002210F> /x8e/xa5/xbe/xf4 <CJK> +<U0002210E> /x8e/xa5/xbe/xf5 <CJK> +<U0002211C> /x8e/xa5/xbe/xf6 <CJK> +<U00022113> /x8e/xa5/xbe/xf7 <CJK> +<U0002210A> /x8e/xa5/xbe/xf8 <CJK> +<U0002211E> /x8e/xa5/xbe/xf9 <CJK> +<U00022114> /x8e/xa5/xbe/xfa <CJK> +<U0002211A> /x8e/xa5/xbe/xfb <CJK> +<U000221CB> /x8e/xa5/xbe/xfc <CJK> +<U00022287> /x8e/xa5/xbe/xfd <CJK> +<U00022293> /x8e/xa5/xbe/xfe <CJK> +<U3891> /x8e/xa5/xbf/xa1 <CJK> +<U00022284> /x8e/xa5/xbf/xa2 <CJK> +<U00022285> /x8e/xa5/xbf/xa3 <CJK> +<U00022292> /x8e/xa5/xbf/xa4 <CJK> +<U00022280> /x8e/xa5/xbf/xa5 <CJK> +<U0002232B> /x8e/xa5/xbf/xa6 <CJK> +<U00022363> /x8e/xa5/xbf/xa7 <CJK> +<U0002240A> /x8e/xa5/xbf/xa8 <CJK> +<U38C0> /x8e/xa5/xbf/xa9 <CJK> +<U00022466> /x8e/xa5/xbf/xaa <CJK> +<U00022534> /x8e/xa5/xbf/xab <CJK> +<U00022533> /x8e/xa5/xbf/xac <CJK> +<U0002254D> /x8e/xa5/xbf/xad <CJK> +<U00022789> /x8e/xa5/xbf/xae <CJK> +<U00022757> /x8e/xa5/xbf/xaf <CJK> +<U6117> /x8e/xa5/xbf/xb0 <CJK> +<U0002274A> /x8e/xa5/xbf/xb1 <CJK> +<U3963> /x8e/xa5/xbf/xb2 <CJK> +<U00022739> /x8e/xa5/xbf/xb3 <CJK> +<U0002273F> /x8e/xa5/xbf/xb4 <CJK> +<U00022790> /x8e/xa5/xbf/xb5 <CJK> +<U0002278F> /x8e/xa5/xbf/xb6 <CJK> +<U000227B2> /x8e/xa5/xbf/xb7 <CJK> +<U0002279F> /x8e/xa5/xbf/xb8 <CJK> +<U00022795> /x8e/xa5/xbf/xb9 <CJK> +<U000227A1> /x8e/xa5/xbf/xba <CJK> +<U0002279C> /x8e/xa5/xbf/xbb <CJK> +<U0002278E> /x8e/xa5/xbf/xbc <CJK> +<U000227A0> /x8e/xa5/xbf/xbd <CJK> +<U000227AE> /x8e/xa5/xbf/xbe <CJK> +<U00022796> /x8e/xa5/xbf/xbf <CJK> +<U000227CA> /x8e/xa5/xbf/xc0 <CJK> +<U000227AC> /x8e/xa5/xbf/xc1 <CJK> +<U3970> /x8e/xa5/xbf/xc2 <CJK> +<U000227A6> /x8e/xa5/xbf/xc3 <CJK> +<U00022797> /x8e/xa5/xbf/xc4 <CJK> +<U00022793> /x8e/xa5/xbf/xc5 <CJK> +<U000203B6> /x8e/xa5/xbf/xc6 <CJK> +<U000229D6> /x8e/xa5/xbf/xc7 <CJK> +<U000229E0> /x8e/xa5/xbf/xc8 <CJK> +<U000229D8> /x8e/xa5/xbf/xc9 <CJK> +<U00022A56> /x8e/xa5/xbf/xca <CJK> +<U00022C6E> /x8e/xa5/xbf/xcb <CJK> +<U00022C7E> /x8e/xa5/xbf/xcc <CJK> +<U00022C74> /x8e/xa5/xbf/xcd <CJK> +<U00022C77> /x8e/xa5/xbf/xce <CJK> +<U00022C80> /x8e/xa5/xbf/xcf <CJK> +<U00022C7A> /x8e/xa5/xbf/xd0 <CJK> +<U00022C6B> /x8e/xa5/xbf/xd1 <CJK> +<U00022C5F> /x8e/xa5/xbf/xd2 <CJK> +<U00022C76> /x8e/xa5/xbf/xd3 <CJK> +<U00022CB0> /x8e/xa5/xbf/xd4 <CJK> +<U00022C63> /x8e/xa5/xbf/xd5 <CJK> +<U00022F92> /x8e/xa5/xbf/xd6 <CJK> +<U00022F82> /x8e/xa5/xbf/xd7 <CJK> +<U00022F9D> /x8e/xa5/xbf/xd8 <CJK> +<U00022F94> /x8e/xa5/xbf/xd9 <CJK> +<U00022F83> /x8e/xa5/xbf/xda <CJK> +<U00022F8B> /x8e/xa5/xbf/xdb <CJK> +<U00022F84> /x8e/xa5/xbf/xdc <CJK> +<U00023057> /x8e/xa5/xbf/xdd <CJK> +<U00023084> /x8e/xa5/xbf/xde <CJK> +<U000230B5> /x8e/xa5/xbf/xdf <CJK> +<U00023109> /x8e/xa5/xbf/xe0 <CJK> +<U000231E6> /x8e/xa5/xbf/xe1 <CJK> +<U3B02> /x8e/xa5/xbf/xe2 <CJK> +<U00023225> /x8e/xa5/xbf/xe3 <CJK> +<U00023251> /x8e/xa5/xbf/xe4 <CJK> +<U0002333E> /x8e/xa5/xbf/xe5 <CJK> +<U00023385> /x8e/xa5/xbf/xe7 <CJK> +<U0002353F> /x8e/xa5/xbf/xe8 <CJK> +<U00023542> /x8e/xa5/xbf/xe9 <CJK> +<U00023538> /x8e/xa5/xbf/xea <CJK> +<U0002353A> /x8e/xa5/xbf/xeb <CJK> +<U0002354E> /x8e/xa5/xbf/xec <CJK> +<U00023545> /x8e/xa5/xbf/xed <CJK> +<U00023539> /x8e/xa5/xbf/xee <CJK> +<U00023537> /x8e/xa5/xbf/xef <CJK> +<U00023544> /x8e/xa5/xbf/xf0 <CJK> +<U000235A4> /x8e/xa5/xbf/xf2 <CJK> +<U0002353D> /x8e/xa5/xbf/xf3 <CJK> +<U00023541> /x8e/xa5/xbf/xf4 <CJK> +<U000238DF> /x8e/xa5/xbf/xf5 <CJK> +<U000238DE> /x8e/xa5/xbf/xf6 <CJK> +<U000238CA> /x8e/xa5/xbf/xf7 <CJK> +<U000238E9> /x8e/xa5/xbf/xf8 <CJK> +<U000238E2> /x8e/xa5/xbf/xf9 <CJK> +<U000238E0> /x8e/xa5/xbf/xfa <CJK> +<U00023989> /x8e/xa5/xbf/xfb <CJK> +<U00023987> /x8e/xa5/xbf/xfc <CJK> +<U00023A32> /x8e/xa5/xbf/xfd <CJK> +<U00023A33> /x8e/xa5/xbf/xfe <CJK> +<U00023AAC> /x8e/xa5/xc0/xa1 <CJK> +<U00023AF9> /x8e/xa5/xc0/xa2 <CJK> +<U00023B0D> /x8e/xa5/xc0/xa3 <CJK> +<U00023BB9> /x8e/xa5/xc0/xa4 <CJK> +<U00023E5E> /x8e/xa5/xc0/xa5 <CJK> +<U00023E6A> /x8e/xa5/xc0/xa6 <CJK> +<U3D35> /x8e/xa5/xc0/xa7 <CJK> +<U00023E81> /x8e/xa5/xc0/xa8 <CJK> +<U00023E69> /x8e/xa5/xc0/xa9 <CJK> +<U00023EAC> /x8e/xa5/xc0/xaa <CJK> +<U00023E80> /x8e/xa5/xc0/xab <CJK> +<U00023E75> /x8e/xa5/xc0/xac <CJK> +<U00023E71> /x8e/xa5/xc0/xad <CJK> +<U00023E76> /x8e/xa5/xc0/xae <CJK> +<U00023E6F> /x8e/xa5/xc0/xaf <CJK> +<U000242B6> /x8e/xa5/xc0/xb0 <CJK> +<U00024303> /x8e/xa5/xc0/xb1 <CJK> +<U000242BF> /x8e/xa5/xc0/xb2 <CJK> +<U00024301> /x8e/xa5/xc0/xb3 <CJK> +<U000242B2> /x8e/xa5/xc0/xb4 <CJK> +<U000242C4> /x8e/xa5/xc0/xb5 <CJK> +<U000245DB> /x8e/xa5/xc0/xb6 <CJK> +<U000245DC> /x8e/xa5/xc0/xb7 <CJK> +<U000245D8> /x8e/xa5/xc0/xb8 <CJK> +<U00029672> /x8e/xa5/xc0/xb9 <CJK> +<U000246B5> /x8e/xa5/xc0/xba <CJK> +<U000246A8> /x8e/xa5/xc0/xbb <CJK> +<U0002468F> /x8e/xa5/xc0/xbc <CJK> +<U0002469E> /x8e/xa5/xc0/xbd <CJK> +<U0002468E> /x8e/xa5/xc0/xbe <CJK> +<U000247DE> /x8e/xa5/xc0/xbf <CJK> +<U000247E2> /x8e/xa5/xc0/xc0 <CJK> +<U00024820> /x8e/xa5/xc0/xc1 <CJK> +<U0002481D> /x8e/xa5/xc0/xc2 <CJK> +<U0002481A> /x8e/xa5/xc0/xc3 <CJK> +<U00024819> /x8e/xa5/xc0/xc4 <CJK> +<U0002482B> /x8e/xa5/xc0/xc5 <CJK> +<U00024818> /x8e/xa5/xc0/xc6 <CJK> +<U00024810> /x8e/xa5/xc0/xc7 <CJK> +<U0002480E> /x8e/xa5/xc0/xc8 <CJK> +<U00024824> /x8e/xa5/xc0/xc9 <CJK> +<U0002481F> /x8e/xa5/xc0/xca <CJK> +<U00024813> /x8e/xa5/xc0/xcb <CJK> +<U00024835> /x8e/xa5/xc0/xcc <CJK> +<U00024983> /x8e/xa5/xc0/xcd <CJK> +<U3EE0> /x8e/xa5/xc0/xce <CJK> +<U000249D7> /x8e/xa5/xc0/xcf <CJK> +<U00024B02> /x8e/xa5/xc0/xd0 <CJK> +<U00024B03> /x8e/xa5/xc0/xd1 <CJK> +<U00024B5C> /x8e/xa5/xc0/xd2 <CJK> +<U00024B5F> /x8e/xa5/xc0/xd3 <CJK> +<U00024BC7> /x8e/xa5/xc0/xd4 <CJK> +<U00024C9A> /x8e/xa5/xc0/xd5 <CJK> +<U00024C97> /x8e/xa5/xc0/xd6 <CJK> +<U00024CA3> /x8e/xa5/xc0/xd7 <CJK> +<U00024DF7> /x8e/xa5/xc0/xd8 <CJK> +<U00024DC6> /x8e/xa5/xc0/xd9 <CJK> +<U00024DCC> /x8e/xa5/xc0/xda <CJK> +<U00024DD6> /x8e/xa5/xc0/xdb <CJK> +<U00024DCD> /x8e/xa5/xc0/xdc <CJK> +<U00024DF9> /x8e/xa5/xc0/xdd <CJK> +<U00024DD9> /x8e/xa5/xc0/xde <CJK> +<U00024DD8> /x8e/xa5/xc0/xdf <CJK> +<U3F9A> /x8e/xa5/xc0/xe0 <CJK> +<U00024DD1> /x8e/xa5/xc0/xe1 <CJK> +<U00024DCE> /x8e/xa5/xc0/xe2 <CJK> +<U00024DD5> /x8e/xa5/xc0/xe3 <CJK> +<U3FA3> /x8e/xa5/xc0/xe4 <CJK> +<U00024DD4> /x8e/xa5/xc0/xe5 <CJK> +<U00024DF8> /x8e/xa5/xc0/xe6 <CJK> +<U00024F7A> /x8e/xa5/xc0/xe7 <CJK> +<U00024F79> /x8e/xa5/xc0/xe8 <CJK> +<U00024F7F> /x8e/xa5/xc0/xe9 <CJK> +<U00024FF3> /x8e/xa5/xc0/xea <CJK> +<U00024FF5> /x8e/xa5/xc0/xeb <CJK> +<U00024FF6> /x8e/xa5/xc0/xec <CJK> +<U00024FF4> /x8e/xa5/xc0/xed <CJK> +<U00024FF7> /x8e/xa5/xc0/xee <CJK> +<U4005> /x8e/xa5/xc0/xef <CJK> +<U00025079> /x8e/xa5/xc0/xf0 <CJK> +<U0002519C> /x8e/xa5/xc0/xf1 <CJK> +<U000251DF> /x8e/xa5/xc0/xf2 <CJK> +<U000251F5> /x8e/xa5/xc0/xf3 <CJK> +<U000251FF> /x8e/xa5/xc0/xf4 <CJK> +<U000251D1> /x8e/xa5/xc0/xf5 <CJK> +<U000251DA> /x8e/xa5/xc0/xf6 <CJK> +<U000251CF> /x8e/xa5/xc0/xf7 <CJK> +<U000251CD> /x8e/xa5/xc0/xf8 <CJK> +<U000251DE> /x8e/xa5/xc0/xf9 <CJK> +<U000251D8> /x8e/xa5/xc0/xfa <CJK> +<U00023AAD> /x8e/xa5/xc0/xfb <CJK> +<U000251E0> /x8e/xa5/xc0/xfc <CJK> +<U000251FE> /x8e/xa5/xc0/xfd <CJK> +<U0002519E> /x8e/xa5/xc0/xfe <CJK> +<U00025375> /x8e/xa5/xc1/xa1 <CJK> +<U00025373> /x8e/xa5/xc1/xa2 <CJK> +<U00025372> /x8e/xa5/xc1/xa3 <CJK> +<U000253D8> /x8e/xa5/xc1/xa4 <CJK> +<U000254D0> /x8e/xa5/xc1/xa5 <CJK> +<U000254D6> /x8e/xa5/xc1/xa6 <CJK> +<U000254D7> /x8e/xa5/xc1/xa7 <CJK> +<U000254CA> /x8e/xa5/xc1/xa8 <CJK> +<U000254CD> /x8e/xa5/xc1/xa9 <CJK> +<U0002568A> /x8e/xa5/xc1/xaa <CJK> +<U00025689> /x8e/xa5/xc1/xab <CJK> +<U0002568B> /x8e/xa5/xc1/xac <CJK> +<U000257D3> /x8e/xa5/xc1/xad <CJK> +<U000257DA> /x8e/xa5/xc1/xae <CJK> +<U000257CE> /x8e/xa5/xc1/xaf <CJK> +<U000257D2> /x8e/xa5/xc1/xb0 <CJK> +<U415E> /x8e/xa5/xc1/xb1 <CJK> +<U000257D4> /x8e/xa5/xc1/xb2 <CJK> +<U000257D7> /x8e/xa5/xc1/xb3 <CJK> +<U000257D5> /x8e/xa5/xc1/xb4 <CJK> +<U000257FB> /x8e/xa5/xc1/xb5 <CJK> +<U000257CD> /x8e/xa5/xc1/xb6 <CJK> +<U000257FA> /x8e/xa5/xc1/xb7 <CJK> +<U000257D6> /x8e/xa5/xc1/xb8 <CJK> +<U41A6> /x8e/xa5/xc1/xb9 <CJK> +<U0002599B> /x8e/xa5/xc1/xba <CJK> +<U0002599E> /x8e/xa5/xc1/xbb <CJK> +<U0002599D> /x8e/xa5/xc1/xbc <CJK> +<U000259A4> /x8e/xa5/xc1/xbd <CJK> +<U0002599F> /x8e/xa5/xc1/xbe <CJK> +<U000259A5> /x8e/xa5/xc1/xbf <CJK> +<U000259A8> /x8e/xa5/xc1/xc0 <CJK> +<U00025A8F> /x8e/xa5/xc1/xc1 <CJK> +<U00025A8C> /x8e/xa5/xc1/xc2 <CJK> +<U00025A95> /x8e/xa5/xc1/xc3 <CJK> +<U00025B60> /x8e/xa5/xc1/xc4 <CJK> +<U00025B55> /x8e/xa5/xc1/xc5 <CJK> +<U00025B5C> /x8e/xa5/xc1/xc6 <CJK> +<U00025B6F> /x8e/xa5/xc1/xc7 <CJK> +<U00025B51> /x8e/xa5/xc1/xc8 <CJK> +<U00025B61> /x8e/xa5/xc1/xc9 <CJK> +<U00025BA7> /x8e/xa5/xc1/xca <CJK> +<U00025B5E> /x8e/xa5/xc1/xcb <CJK> +<U00025B62> /x8e/xa5/xc1/xcc <CJK> +<U00025B54> /x8e/xa5/xc1/xcd <CJK> +<U00025B6E> /x8e/xa5/xc1/xce <CJK> +<U00025B52> /x8e/xa5/xc1/xcf <CJK> +<U00025B58> /x8e/xa5/xc1/xd0 <CJK> +<U00025B6D> /x8e/xa5/xc1/xd1 <CJK> +<U00025B5F> /x8e/xa5/xc1/xd2 <CJK> +<U00025B6C> /x8e/xa5/xc1/xd3 <CJK> +<U00025B50> /x8e/xa5/xc1/xd4 <CJK> +<U00025B5D> /x8e/xa5/xc1/xd5 <CJK> +<U00025B8E> /x8e/xa5/xc1/xd6 <CJK> +<U00025E72> /x8e/xa5/xc1/xd7 <CJK> +<U00025E78> /x8e/xa5/xc1/xd8 <CJK> +<U00025E75> /x8e/xa5/xc1/xd9 <CJK> +<U00025E76> /x8e/xa5/xc1/xda <CJK> +<U00025E7C> /x8e/xa5/xc1/xdb <CJK> +<U00025E7E> /x8e/xa5/xc1/xdc <CJK> +<U00025E7D> /x8e/xa5/xc1/xdd <CJK> +<U00026015> /x8e/xa5/xc1/xde <CJK> +<U00026014> /x8e/xa5/xc1/xdf <CJK> +<U0002601D> /x8e/xa5/xc1/xe0 <CJK> +<U0002601C> /x8e/xa5/xc1/xe1 <CJK> +<U00026023> /x8e/xa5/xc1/xe2 <CJK> +<U00026057> /x8e/xa5/xc1/xe3 <CJK> +<U000262C8> /x8e/xa5/xc1/xe4 <CJK> +<U435D> /x8e/xa5/xc1/xe5 <CJK> +<U000262C9> /x8e/xa5/xc1/xe6 <CJK> +<U000262C5> /x8e/xa5/xc1/xe7 <CJK> +<U00026387> /x8e/xa5/xc1/xe8 <CJK> +<U0002638A> /x8e/xa5/xc1/xe9 <CJK> +<U00026394> /x8e/xa5/xc1/xea <CJK> +<U00026439> /x8e/xa5/xc1/xeb <CJK> +<U00026440> /x8e/xa5/xc1/xec <CJK> +<U0002643E> /x8e/xa5/xc1/xed <CJK> +<U00026438> /x8e/xa5/xc1/xee <CJK> +<U000264D6> /x8e/xa5/xc1/xef <CJK> +<U43B8> /x8e/xa5/xc1/xf0 <CJK> +<U00026577> /x8e/xa5/xc1/xf1 <CJK> +<U00026578> /x8e/xa5/xc1/xf2 <CJK> +<U0002657D> /x8e/xa5/xc1/xf3 <CJK> +<U000266DD> /x8e/xa5/xc1/xf4 <CJK> +<U0002675E> /x8e/xa5/xc1/xf5 <CJK> +<U00026777> /x8e/xa5/xc1/xf6 <CJK> +<U000267D4> /x8e/xa5/xc1/xf7 <CJK> +<U00026766> /x8e/xa5/xc1/xf8 <CJK> +<U0002675F> /x8e/xa5/xc1/xf9 <CJK> +<U00026773> /x8e/xa5/xc1/xfa <CJK> +<U00026772> /x8e/xa5/xc1/xfb <CJK> +<U00026797> /x8e/xa5/xc1/xfc <CJK> +<U0002675A> /x8e/xa5/xc1/xfd <CJK> +<U00026796> /x8e/xa5/xc1/xfe <CJK> +<U0002675D> /x8e/xa5/xc2/xa1 <CJK> +<U00026765> /x8e/xa5/xc2/xa2 <CJK> +<U00026770> /x8e/xa5/xc2/xa3 <CJK> +<U00026775> /x8e/xa5/xc2/xa4 <CJK> +<U00026774> /x8e/xa5/xc2/xa5 <CJK> +<U0002675C> /x8e/xa5/xc2/xa6 <CJK> +<U00026760> /x8e/xa5/xc2/xa7 <CJK> +<U4434> /x8e/xa5/xc2/xa8 <CJK> +<U0002676D> /x8e/xa5/xc2/xa9 <CJK> +<U00026941> /x8e/xa5/xc2/xaa <CJK> +<U00026A3C> /x8e/xa5/xc2/xab <CJK> +<U00026A3E> /x8e/xa5/xc2/xac <CJK> +<U446F> /x8e/xa5/xc2/xad <CJK> +<U00026A49> /x8e/xa5/xc2/xae <CJK> +<U00026BE4> /x8e/xa5/xc2/xaf <CJK> +<U00026D0C> /x8e/xa5/xc2/xb0 <CJK> +<U00026D15> /x8e/xa5/xc2/xb1 <CJK> +<U00026D0E> /x8e/xa5/xc2/xb2 <CJK> +<U00026CD4> /x8e/xa5/xc2/xb3 <CJK> +<U00026CC7> /x8e/xa5/xc2/xb4 <CJK> +<U00026D14> /x8e/xa5/xc2/xb5 <CJK> +<U00026CDB> /x8e/xa5/xc2/xb6 <CJK> +<U00026D5F> /x8e/xa5/xc2/xb7 <CJK> +<U00026CED> /x8e/xa5/xc2/xb8 <CJK> +<U00026D09> /x8e/xa5/xc2/xb9 <CJK> +<U00026CCF> /x8e/xa5/xc2/xba <CJK> +<U00026CFF> /x8e/xa5/xc2/xbb <CJK> +<U00026D1A> /x8e/xa5/xc2/xbc <CJK> +<U00026CF5> /x8e/xa5/xc2/xbd <CJK> +<U00026CEE> /x8e/xa5/xc2/xbe <CJK> +<U00026CE5> /x8e/xa5/xc2/xbf <CJK> +<U00026D0D> /x8e/xa5/xc2/xc0 <CJK> +<U00026CDF> /x8e/xa5/xc2/xc1 <CJK> +<U00026CEC> /x8e/xa5/xc2/xc2 <CJK> +<U00026CD7> /x8e/xa5/xc2/xc3 <CJK> +<U00026D2C> /x8e/xa5/xc2/xc4 <CJK> +<U00026CCD> /x8e/xa5/xc2/xc5 <CJK> +<U00026CE3> /x8e/xa5/xc2/xc6 <CJK> +<U00026D00> /x8e/xa5/xc2/xc7 <CJK> +<U00026CEB> /x8e/xa5/xc2/xc8 <CJK> +<U00026CFD> /x8e/xa5/xc2/xc9 <CJK> +<U00026D0F> /x8e/xa5/xc2/xca <CJK> +<U00026D2D> /x8e/xa5/xc2/xcb <CJK> +<U00026D50> /x8e/xa5/xc2/xcc <CJK> +<U00026CFE> /x8e/xa5/xc2/xcd <CJK> +<U00026CC4> /x8e/xa5/xc2/xce <CJK> +<U00026CE1> /x8e/xa5/xc2/xcf <CJK> +<U00026CF9> /x8e/xa5/xc2/xd0 <CJK> +<U000271BB> /x8e/xa5/xc2/xd1 <CJK> +<U000271BC> /x8e/xa5/xc2/xd2 <CJK> +<U4594> /x8e/xa5/xc2/xd3 <CJK> +<U4593> /x8e/xa5/xc2/xd4 <CJK> +<U000271BA> /x8e/xa5/xc2/xd5 <CJK> +<U000272D0> /x8e/xa5/xc2/xd6 <CJK> +<U000272D6> /x8e/xa5/xc2/xd7 <CJK> +<U000272CE> /x8e/xa5/xc2/xd8 <CJK> +<U000272E1> /x8e/xa5/xc2/xd9 <CJK> +<U000272D5> /x8e/xa5/xc2/xda <CJK> +<U000272CF> /x8e/xa5/xc2/xdb <CJK> +<U000272D3> /x8e/xa5/xc2/xdc <CJK> +<U8714> /x8e/xa5/xc2/xdd <CJK> +<U000272D4> /x8e/xa5/xc2/xde <CJK> +<U000275B5> /x8e/xa5/xc2/xdf <CJK> +<U00027690> /x8e/xa5/xc2/xe0 <CJK> +<U000276A1> /x8e/xa5/xc2/xe1 <CJK> +<U00027681> /x8e/xa5/xc2/xe2 <CJK> +<U00027685> /x8e/xa5/xc2/xe3 <CJK> +<U0002766E> /x8e/xa5/xc2/xe4 <CJK> +<U00027688> /x8e/xa5/xc2/xe5 <CJK> +<U00027682> /x8e/xa5/xc2/xe6 <CJK> +<U00027686> /x8e/xa5/xc2/xe7 <CJK> +<U0002768F> /x8e/xa5/xc2/xe8 <CJK> +<U00027689> /x8e/xa5/xc2/xe9 <CJK> +<U00027680> /x8e/xa5/xc2/xea <CJK> +<U00027684> /x8e/xa5/xc2/xeb <CJK> +<U88D1> /x8e/xa5/xc2/xec <CJK> +<U00027829> /x8e/xa5/xc2/xed <CJK> +<U0002782B> /x8e/xa5/xc2/xee <CJK> +<U0002782A> /x8e/xa5/xc2/xef <CJK> +<U00027830> /x8e/xa5/xc2/xf0 <CJK> +<U000278E2> /x8e/xa5/xc2/xf1 <CJK> +<U000278E3> /x8e/xa5/xc2/xf2 <CJK> +<U000278E1> /x8e/xa5/xc2/xf3 <CJK> +<U000279D5> /x8e/xa5/xc2/xf4 <CJK> +<U000279C4> /x8e/xa5/xc2/xf5 <CJK> +<U000279C9> /x8e/xa5/xc2/xf6 <CJK> +<U000279E0> /x8e/xa5/xc2/xf7 <CJK> +<U000279DF> /x8e/xa5/xc2/xf8 <CJK> +<U000279CB> /x8e/xa5/xc2/xf9 <CJK> +<U000279DD> /x8e/xa5/xc2/xfa <CJK> +<U000279E8> /x8e/xa5/xc2/xfb <CJK> +<U000279D4> /x8e/xa5/xc2/xfc <CJK> +<U00027A1C> /x8e/xa5/xc2/xfd <CJK> +<U00027BB5> /x8e/xa5/xc2/xfe <CJK> +<U00027BB6> /x8e/xa5/xc3/xa1 <CJK> +<U00027BE5> /x8e/xa5/xc3/xa2 <CJK> +<U00027C45> /x8e/xa5/xc3/xa3 <CJK> +<U00027C49> /x8e/xa5/xc3/xa4 <CJK> +<U00027C40> /x8e/xa5/xc3/xa5 <CJK> +<U00027C46> /x8e/xa5/xc3/xa6 <CJK> +<U00027C44> /x8e/xa5/xc3/xa7 <CJK> +<U00027C4A> /x8e/xa5/xc3/xa8 <CJK> +<U00027CC9> /x8e/xa5/xc3/xa9 <CJK> +<U00027CC4> /x8e/xa5/xc3/xaa <CJK> +<U00027CC2> /x8e/xa5/xc3/xab <CJK> +<U00027D68> /x8e/xa5/xc3/xac <CJK> +<U8CCB> /x8e/xa5/xc3/xad <CJK> +<U00027D82> /x8e/xa5/xc3/xae <CJK> +<U00027D6B> /x8e/xa5/xc3/xaf <CJK> +<U00027D67> /x8e/xa5/xc3/xb0 <CJK> +<U00027D6C> /x8e/xa5/xc3/xb1 <CJK> +<U00027D6D> /x8e/xa5/xc3/xb2 <CJK> +<U00027D71> /x8e/xa5/xc3/xb3 <CJK> +<U4792> /x8e/xa5/xc3/xb4 <CJK> +<U00027ED7> /x8e/xa5/xc3/xb5 <CJK> +<U00027ED2> /x8e/xa5/xc3/xb6 <CJK> +<U00027ED9> /x8e/xa5/xc3/xb7 <CJK> +<U47AA> /x8e/xa5/xc3/xb8 <CJK> +<U00027EBC> /x8e/xa5/xc3/xb9 <CJK> +<U00027EDD> /x8e/xa5/xc3/xba <CJK> +<U00027ED6> /x8e/xa5/xc3/xbb <CJK> +<U47A7> /x8e/xa5/xc3/xbc <CJK> +<U00027ED8> /x8e/xa5/xc3/xbd <CJK> +<U00028020> /x8e/xa5/xc3/xbe <CJK> +<U00028016> /x8e/xa5/xc3/xbf <CJK> +<U00028018> /x8e/xa5/xc3/xc0 <CJK> +<U00028015> /x8e/xa5/xc3/xc1 <CJK> +<U00028019> /x8e/xa5/xc3/xc2 <CJK> +<U00028027> /x8e/xa5/xc3/xc3 <CJK> +<U00028050> /x8e/xa5/xc3/xc4 <CJK> +<U0002801D> /x8e/xa5/xc3/xc5 <CJK> +<U0002802C> /x8e/xa5/xc3/xc6 <CJK> +<U0002801C> /x8e/xa5/xc3/xc7 <CJK> +<U00028029> /x8e/xa5/xc3/xc8 <CJK> +<U0002802B> /x8e/xa5/xc3/xc9 <CJK> +<U00028024> /x8e/xa5/xc3/xca <CJK> +<U47EF> /x8e/xa5/xc3/xcb <CJK> +<U00028028> /x8e/xa5/xc3/xcc <CJK> +<U00028239> /x8e/xa5/xc3/xcd <CJK> +<U000282F2> /x8e/xa5/xc3/xce <CJK> +<U000282F0> /x8e/xa5/xc3/xcf <CJK> +<U8EED> /x8e/xa5/xc3/xd0 <CJK> +<U000282ED> /x8e/xa5/xc3/xd1 <CJK> +<U000282EF> /x8e/xa5/xc3/xd2 <CJK> +<U000282EA> /x8e/xa5/xc3/xd3 <CJK> +<U00028301> /x8e/xa5/xc3/xd4 <CJK> +<U000284BC> /x8e/xa5/xc3/xd5 <CJK> +<U0002855C> /x8e/xa5/xc3/xd6 <CJK> +<U0002855B> /x8e/xa5/xc3/xd7 <CJK> +<U0002855A> /x8e/xa5/xc3/xd8 <CJK> +<U00028526> /x8e/xa5/xc3/xd9 <CJK> +<U00028743> /x8e/xa5/xc3/xda <CJK> +<U00028733> /x8e/xa5/xc3/xdb <CJK> +<U0002873A> /x8e/xa5/xc3/xdc <CJK> +<U00028737> /x8e/xa5/xc3/xdd <CJK> +<U00028736> /x8e/xa5/xc3/xde <CJK> +<U0002873C> /x8e/xa5/xc3/xdf <CJK> +<U00028734> /x8e/xa5/xc3/xe0 <CJK> +<U0002874A> /x8e/xa5/xc3/xe1 <CJK> +<U0002873B> /x8e/xa5/xc3/xe2 <CJK> +<U00028735> /x8e/xa5/xc3/xe3 <CJK> +<U0002873D> /x8e/xa5/xc3/xe4 <CJK> +<U00028740> /x8e/xa5/xc3/xe5 <CJK> +<U0002873E> /x8e/xa5/xc3/xe6 <CJK> +<U00028717> /x8e/xa5/xc3/xe7 <CJK> +<U00028826> /x8e/xa5/xc3/xe8 <CJK> +<U00028824> /x8e/xa5/xc3/xe9 <CJK> +<U00028810> /x8e/xa5/xc3/xea <CJK> +<U00028836> /x8e/xa5/xc3/xeb <CJK> +<U00028825> /x8e/xa5/xc3/xec <CJK> +<U4922> /x8e/xa5/xc3/xed <CJK> +<U00028966> /x8e/xa5/xc3/xee <CJK> +<U00028C7F> /x8e/xa5/xc3/xef <CJK> +<U00028C7A> /x8e/xa5/xc3/xf0 <CJK> +<U00028CFB> /x8e/xa5/xc3/xf1 <CJK> +<U00028CFD> /x8e/xa5/xc3/xf2 <CJK> +<U00028CFC> /x8e/xa5/xc3/xf3 <CJK> +<U00028CFA> /x8e/xa5/xc3/xf4 <CJK> +<U00028ED6> /x8e/xa5/xc3/xf5 <CJK> +<U00028ED2> /x8e/xa5/xc3/xf6 <CJK> +<U00028EC8> /x8e/xa5/xc3/xf7 <CJK> +<U00028EC2> /x8e/xa5/xc3/xf8 <CJK> +<U00028EC7> /x8e/xa5/xc3/xf9 <CJK> +<U00028ECD> /x8e/xa5/xc3/xfa <CJK> +<U00028EC1> /x8e/xa5/xc3/xfb <CJK> +<U00028EC6> /x8e/xa5/xc3/xfc <CJK> +<U00028ECC> /x8e/xa5/xc3/xfd <CJK> +<U00028FA1> /x8e/xa5/xc3/xfe <CJK> +<U00029095> /x8e/xa5/xc4/xa1 <CJK> +<U00029094> /x8e/xa5/xc4/xa2 <CJK> +<U00029097> /x8e/xa5/xc4/xa3 <CJK> +<U00029096> /x8e/xa5/xc4/xa4 <CJK> +<U00029093> /x8e/xa5/xc4/xa5 <CJK> +<U000290A1> /x8e/xa5/xc4/xa6 <CJK> +<U00029209> /x8e/xa5/xc4/xa7 <CJK> +<U00029208> /x8e/xa5/xc4/xa8 <CJK> +<U00029267> /x8e/xa5/xc4/xa9 <CJK> +<U00029265> /x8e/xa5/xc4/xaa <CJK> +<U00029262> /x8e/xa5/xc4/xab <CJK> +<U00029261> /x8e/xa5/xc4/xac <CJK> +<U00029397> /x8e/xa5/xc4/xad <CJK> +<U00029401> /x8e/xa5/xc4/xae <CJK> +<U00029419> /x8e/xa5/xc4/xaf <CJK> +<U00029418> /x8e/xa5/xc4/xb0 <CJK> +<U0002945C> /x8e/xa5/xc4/xb1 <CJK> +<U00029467> /x8e/xa5/xc4/xb2 <CJK> +<U0002946C> /x8e/xa5/xc4/xb3 <CJK> +<U4AB5> /x8e/xa5/xc4/xb4 <CJK> +<U00029466> /x8e/xa5/xc4/xb6 <CJK> +<U00029461> /x8e/xa5/xc4/xb7 <CJK> +<U0002946E> /x8e/xa5/xc4/xb8 <CJK> +<U0002945D> /x8e/xa5/xc4/xb9 <CJK> +<U0002945A> /x8e/xa5/xc4/xba <CJK> +<U000295A2> /x8e/xa5/xc4/xbb <CJK> +<U000295A9> /x8e/xa5/xc4/xbc <CJK> +<U000295A5> /x8e/xa5/xc4/xbd <CJK> +<U000295A6> /x8e/xa5/xc4/xbe <CJK> +<U000295B2> /x8e/xa5/xc4/xbf <CJK> +<U000295A3> /x8e/xa5/xc4/xc0 <CJK> +<U000296AC> /x8e/xa5/xc4/xc1 <CJK> +<U000296AA> /x8e/xa5/xc4/xc2 <CJK> +<U000296AF> /x8e/xa5/xc4/xc3 <CJK> +<U000296AB> /x8e/xa5/xc4/xc4 <CJK> +<U000296B1> /x8e/xa5/xc4/xc5 <CJK> +<U000296C6> /x8e/xa5/xc4/xc6 <CJK> +<U000296AD> /x8e/xa5/xc4/xc7 <CJK> +<U000296B9> /x8e/xa5/xc4/xc8 <CJK> +<U00029870> /x8e/xa5/xc4/xc9 <CJK> +<U4B75> /x8e/xa5/xc4/xca <CJK> +<U00029C0C> /x8e/xa5/xc4/xcb <CJK> +<U00029C81> /x8e/xa5/xc4/xcc <CJK> +<U00029C83> /x8e/xa5/xc4/xcd <CJK> +<U00029C7E> /x8e/xa5/xc4/xce <CJK> +<U00029D51> /x8e/xa5/xc4/xcf <CJK> +<U00029F99> /x8e/xa5/xc4/xd0 <CJK> +<U00029F94> /x8e/xa5/xc4/xd1 <CJK> +<U00029F95> /x8e/xa5/xc4/xd2 <CJK> +<U0002A2FE> /x8e/xa5/xc4/xd3 <CJK> +<U0002A418> /x8e/xa5/xc4/xd4 <CJK> +<U00020105> /x8e/xa5/xc4/xd5 <CJK> +<U00020372> /x8e/xa5/xc4/xd6 <CJK> +<U3482> /x8e/xa5/xc4/xd7 <CJK> +<U00020399> /x8e/xa5/xc4/xd8 <CJK> +<U000204AD> /x8e/xa5/xc4/xd9 <CJK> +<U00020606> /x8e/xa5/xc4/xda <CJK> +<U000207C2> /x8e/xa5/xc4/xdb <CJK> +<U000207CB> /x8e/xa5/xc4/xdc <CJK> +<U000207D5> /x8e/xa5/xc4/xdd <CJK> +<U000207D2> /x8e/xa5/xc4/xde <CJK> +<U000207CC> /x8e/xa5/xc4/xdf <CJK> +<U000207D7> /x8e/xa5/xc4/xe0 <CJK> +<U000207C5> /x8e/xa5/xc4/xe1 <CJK> +<U000207CA> /x8e/xa5/xc4/xe2 <CJK> +<U52EC> /x8e/xa5/xc4/xe3 <CJK> +<U000208A2> /x8e/xa5/xc4/xe4 <CJK> +<U000208A3> /x8e/xa5/xc4/xe5 <CJK> +<U000208A1> /x8e/xa5/xc4/xe6 <CJK> +<U52E8> /x8e/xa5/xc4/xe7 <CJK> +<U000208A6> /x8e/xa5/xc4/xe8 <CJK> +<U000208A4> /x8e/xa5/xc4/xe9 <CJK> +<U000208FF> /x8e/xa5/xc4/xea <CJK> +<U00020900> /x8e/xa5/xc4/xeb <CJK> +<U3535> /x8e/xa5/xc4/xec <CJK> +<U00020A06> /x8e/xa5/xc4/xed <CJK> +<U00020A25> /x8e/xa5/xc4/xee <CJK> +<U00020A9F> /x8e/xa5/xc4/xef <CJK> +<U00020B7F> /x8e/xa5/xc4/xf0 <CJK> +<U00020EEA> /x8e/xa5/xc4/xf1 <CJK> +<U00020EEB> /x8e/xa5/xc4/xf2 <CJK> +<U00020EDE> /x8e/xa5/xc4/xf3 <CJK> +<U00020F18> /x8e/xa5/xc4/xf4 <CJK> +<U00020EE0> /x8e/xa5/xc4/xf5 <CJK> +<U00020EE8> /x8e/xa5/xc4/xf6 <CJK> +<U00020EDF> /x8e/xa5/xc4/xf7 <CJK> +<U00020EF1> /x8e/xa5/xc4/xf8 <CJK> +<U00020EEC> /x8e/xa5/xc4/xf9 <CJK> +<U00020F1A> /x8e/xa5/xc4/xfa <CJK> +<U00020EE6> /x8e/xa5/xc4/xfb <CJK> +<U00020EE1> /x8e/xa5/xc4/xfc <CJK> +<U00020F5D> /x8e/xa5/xc4/xfd <CJK> +<U00020077> /x8e/xa5/xc4/xfe <CJK> +<U00020F1E> /x8e/xa5/xc5/xa1 <CJK> +<U35F0> /x8e/xa5/xc5/xa2 <CJK> +<U00020F80> /x8e/xa5/xc5/xa3 <CJK> +<U00021217> /x8e/xa5/xc5/xa4 <CJK> +<U0002141D> /x8e/xa5/xc5/xa5 <CJK> +<U000213F7> /x8e/xa5/xc5/xa6 <CJK> +<U000213EF> /x8e/xa5/xc5/xa7 <CJK> +<U000213EE> /x8e/xa5/xc5/xa8 <CJK> +<U000213ED> /x8e/xa5/xc5/xa9 <CJK> +<U000213F5> /x8e/xa5/xc5/xaa <CJK> +<U0002141E> /x8e/xa5/xc5/xab <CJK> +<U000215BD> /x8e/xa5/xc5/xac <CJK> +<U000257FF> /x8e/xa5/xc5/xad <CJK> +<U000215BE> /x8e/xa5/xc5/xae <CJK> +<U0002166D> /x8e/xa5/xc5/xaf <CJK> +<U00021676> /x8e/xa5/xc5/xb0 <CJK> +<U0002184C> /x8e/xa5/xc5/xb1 <CJK> +<U00021819> /x8e/xa5/xc5/xb2 <CJK> +<U00021848> /x8e/xa5/xc5/xb3 <CJK> +<U0002181E> /x8e/xa5/xc5/xb4 <CJK> +<U0002184A> /x8e/xa5/xc5/xb5 <CJK> +<U00021849> /x8e/xa5/xc5/xb6 <CJK> +<U00021826> /x8e/xa5/xc5/xb7 <CJK> +<U00021995> /x8e/xa5/xc5/xb8 <CJK> +<U00021A85> /x8e/xa5/xc5/xb9 <CJK> +<U00021A7E> /x8e/xa5/xc5/xba <CJK> +<U00021A97> /x8e/xa5/xc5/xbb <CJK> +<U00021A7D> /x8e/xa5/xc5/xbc <CJK> +<U00021B42> /x8e/xa5/xc5/xbd <CJK> +<U00021B9E> /x8e/xa5/xc5/xbe <CJK> +<U00021C0C> /x8e/xa5/xc5/xbf <CJK> +<U00021C0B> /x8e/xa5/xc5/xc0 <CJK> +<U00021C0E> /x8e/xa5/xc5/xc1 <CJK> +<U00021CCF> /x8e/xa5/xc5/xc2 <CJK> +<U00021ED8> /x8e/xa5/xc5/xc3 <CJK> +<U00021EE0> /x8e/xa5/xc5/xc4 <CJK> +<U00021EE8> /x8e/xa5/xc5/xc5 <CJK> +<U00021EE9> /x8e/xa5/xc5/xc6 <CJK> +<U00021EE2> /x8e/xa5/xc5/xc7 <CJK> +<U00021EE1> /x8e/xa5/xc5/xc8 <CJK> +<U00021EDA> /x8e/xa5/xc5/xc9 <CJK> +<U00021EE3> /x8e/xa5/xc5/xca <CJK> +<U00021ED9> /x8e/xa5/xc5/xcb <CJK> +<U00021EF0> /x8e/xa5/xc5/xcc <CJK> +<U00021EE7> /x8e/xa5/xc5/xcd <CJK> +<U00021EE4> /x8e/xa5/xc5/xce <CJK> +<U00022123> /x8e/xa5/xc5/xcf <CJK> +<U00022131> /x8e/xa5/xc5/xd0 <CJK> +<U00022133> /x8e/xa5/xc5/xd1 <CJK> +<U0002210C> /x8e/xa5/xc5/xd2 <CJK> +<U000269E0> /x8e/xa5/xc5/xd3 <CJK> +<U00022126> /x8e/xa5/xc5/xd4 <CJK> +<U00022124> /x8e/xa5/xc5/xd5 <CJK> +<U00022132> /x8e/xa5/xc5/xd6 <CJK> +<U00022127> /x8e/xa5/xc5/xd7 <CJK> +<U00022121> /x8e/xa5/xc5/xd8 <CJK> +<U00022130> /x8e/xa5/xc5/xd9 <CJK> +<U000221A2> /x8e/xa5/xc5/xda <CJK> +<U000221CC> /x8e/xa5/xc5/xdb <CJK> +<U00022296> /x8e/xa5/xc5/xdc <CJK> +<U00022298> /x8e/xa5/xc5/xde <CJK> +<U0002229C> /x8e/xa5/xc5/xdf <CJK> +<U0002229B> /x8e/xa5/xc5/xe0 <CJK> +<U0002236B> /x8e/xa5/xc5/xe1 <CJK> +<U00022412> /x8e/xa5/xc5/xe2 <CJK> +<U00022414> /x8e/xa5/xc5/xe3 <CJK> +<U0002255A> /x8e/xa5/xc5/xe4 <CJK> +<U00022554> /x8e/xa5/xc5/xe5 <CJK> +<U00022551> /x8e/xa5/xc5/xe6 <CJK> +<U0002255E> /x8e/xa5/xc5/xe7 <CJK> +<U00022558> /x8e/xa5/xc5/xe8 <CJK> +<U38F0> /x8e/xa5/xc5/xe9 <CJK> +<U00022559> /x8e/xa5/xc5/xea <CJK> +<U0002279A> /x8e/xa5/xc5/xeb <CJK> +<U000227F2> /x8e/xa5/xc5/xec <CJK> +<U000227AD> /x8e/xa5/xc5/xed <CJK> +<U00022820> /x8e/xa5/xc5/xee <CJK> +<U000227F1> /x8e/xa5/xc5/xef <CJK> +<U000227F0> /x8e/xa5/xc5/xf0 <CJK> +<U000227F3> /x8e/xa5/xc5/xf1 <CJK> +<U000227F4> /x8e/xa5/xc5/xf2 <CJK> +<U000227E9> /x8e/xa5/xc5/xf3 <CJK> +<U000227FE> /x8e/xa5/xc5/xf4 <CJK> +<U0002282E> /x8e/xa5/xc5/xf5 <CJK> +<U000227E8> /x8e/xa5/xc5/xf6 <CJK> +<U000227E7> /x8e/xa5/xc5/xf7 <CJK> +<U000227FF> /x8e/xa5/xc5/xf8 <CJK> +<U000227F5> /x8e/xa5/xc5/xf9 <CJK> +<U000229E5> /x8e/xa5/xc5/xfa <CJK> +<U000229E7> /x8e/xa5/xc5/xfb <CJK> +<U000229E6> /x8e/xa5/xc5/xfc <CJK> +<U000229E9> /x8e/xa5/xc5/xfd <CJK> +<U00022A58> /x8e/xa5/xc5/xfe <CJK> +<U00022C6C> /x8e/xa5/xc6/xa1 <CJK> +<U00022CD9> /x8e/xa5/xc6/xa2 <CJK> +<U3A3E> /x8e/xa5/xc6/xa3 <CJK> +<U00022CCB> /x8e/xa5/xc6/xa4 <CJK> +<U3A39> /x8e/xa5/xc6/xa5 <CJK> +<U00022CBE> /x8e/xa5/xc6/xa6 <CJK> +<U00022CB5> /x8e/xa5/xc6/xa7 <CJK> +<U00022CD1> /x8e/xa5/xc6/xa8 <CJK> +<U00022CC2> /x8e/xa5/xc6/xa9 <CJK> +<U00022CB6> /x8e/xa5/xc6/xaa <CJK> +<U00022CD3> /x8e/xa5/xc6/xab <CJK> +<U00022EDA> /x8e/xa5/xc6/xad <CJK> +<U00022FAE> /x8e/xa5/xc6/xaf <CJK> +<U3AA1> /x8e/xa5/xc6/xb0 <CJK> +<U00022FAC> /x8e/xa5/xc6/xb1 <CJK> +<U00022FA9> /x8e/xa5/xc6/xb2 <CJK> +<U00022FBA> /x8e/xa5/xc6/xb3 <CJK> +<U00022FA7> /x8e/xa5/xc6/xb4 <CJK> +<U00022FB3> /x8e/xa5/xc6/xb5 <CJK> +<U00022FBD> /x8e/xa5/xc6/xb6 <CJK> +<U00022FB1> /x8e/xa5/xc6/xb7 <CJK> +<U0002310E> /x8e/xa5/xc6/xb8 <CJK> +<U00023111> /x8e/xa5/xc6/xb9 <CJK> +<U0002310F> /x8e/xa5/xc6/xba <CJK> +<U00023252> /x8e/xa5/xc6/xbb <CJK> +<U0002326A> /x8e/xa5/xc6/xbc <CJK> +<U00023254> /x8e/xa5/xc6/xbd <CJK> +<U00023255> /x8e/xa5/xc6/xbe <CJK> +<U00023253> /x8e/xa5/xc6/xbf <CJK> +<U00023257> /x8e/xa5/xc6/xc0 <CJK> +<U0002325B> /x8e/xa5/xc6/xc2 <CJK> +<U00023258> /x8e/xa5/xc6/xc3 <CJK> +<U00023259> /x8e/xa5/xc6/xc4 <CJK> +<U3B3B> /x8e/xa5/xc6/xc5 <CJK> +<U000235B8> /x8e/xa5/xc6/xc6 <CJK> +<U000235B5> /x8e/xa5/xc6/xc7 <CJK> +<U000235BF> /x8e/xa5/xc6/xc8 <CJK> +<U000235C1> /x8e/xa5/xc6/xc9 <CJK> +<U000235BB> /x8e/xa5/xc6/xca <CJK> +<U3BB7> /x8e/xa5/xc6/xcb <CJK> +<U000235C3> /x8e/xa5/xc6/xcc <CJK> +<U000235AD> /x8e/xa5/xc6/xcd <CJK> +<U000235A8> /x8e/xa5/xc6/xce <CJK> +<U000235AE> /x8e/xa5/xc6/xcf <CJK> +<U000235AA> /x8e/xa5/xc6/xd0 <CJK> +<U000235D0> /x8e/xa5/xc6/xd1 <CJK> +<U000235B1> /x8e/xa5/xc6/xd2 <CJK> +<U000235BC> /x8e/xa5/xc6/xd3 <CJK> +<U000235B7> /x8e/xa5/xc6/xd4 <CJK> +<U000235B0> /x8e/xa5/xc6/xd5 <CJK> +<U000235FA> /x8e/xa5/xc6/xd6 <CJK> +<U000235FB> /x8e/xa5/xc6/xd7 <CJK> +<U000235B9> /x8e/xa5/xc6/xd8 <CJK> +<U00023907> /x8e/xa5/xc6/xd9 <CJK> +<U000238FC> /x8e/xa5/xc6/xda <CJK> +<U000238FF> /x8e/xa5/xc6/xdb <CJK> +<U000238F2> /x8e/xa5/xc6/xdc <CJK> +<U000238F8> /x8e/xa5/xc6/xdd <CJK> +<U000238F4> /x8e/xa5/xc6/xde <CJK> +<U3C57> /x8e/xa5/xc6/xdf <CJK> +<U3C70> /x8e/xa5/xc6/xe0 <CJK> +<U00023AAE> /x8e/xa5/xc6/xe1 <CJK> +<U00023B0F> /x8e/xa5/xc6/xe2 <CJK> +<U00023B10> /x8e/xa5/xc6/xe3 <CJK> +<U00029AC1> /x8e/xa5/xc6/xe4 <CJK> +<U00023BC7> /x8e/xa5/xc6/xe5 <CJK> +<U00023BC6> /x8e/xa5/xc6/xe6 <CJK> +<U00023BCE> /x8e/xa5/xc6/xe7 <CJK> +<U3CA7> /x8e/xa5/xc6/xe8 <CJK> +<U00023BDC> /x8e/xa5/xc6/xe9 <CJK> +<U00023ED5> /x8e/xa5/xc6/xea <CJK> +<U00023ED3> /x8e/xa5/xc6/xeb <CJK> +<U00023F20> /x8e/xa5/xc6/xec <CJK> +<U00023EE2> /x8e/xa5/xc6/xed <CJK> +<U00023EF1> /x8e/xa5/xc6/xee <CJK> +<U00023EDB> /x8e/xa5/xc6/xef <CJK> +<U00023EEA> /x8e/xa5/xc6/xf0 <CJK> +<U00023EEB> /x8e/xa5/xc6/xf1 <CJK> +<U00023EE1> /x8e/xa5/xc6/xf2 <CJK> +<U00023EFF> /x8e/xa5/xc6/xf3 <CJK> +<U00023ED6> /x8e/xa5/xc6/xf4 <CJK> +<U00023EE0> /x8e/xa5/xc6/xf5 <CJK> +<U00023ED7> /x8e/xa5/xc6/xf6 <CJK> +<U00023EE5> /x8e/xa5/xc6/xf7 <CJK> +<U3D54> /x8e/xa5/xc6/xf8 <CJK> +<U0002431B> /x8e/xa5/xc6/xf9 <CJK> +<U00024310> /x8e/xa5/xc6/xfa <CJK> +<U0002430F> /x8e/xa5/xc6/xfb <CJK> +<U0002430E> /x8e/xa5/xc6/xfc <CJK> +<U00024339> /x8e/xa5/xc6/xfd <CJK> +<U0002430A> /x8e/xa5/xc6/xfe <CJK> +<U00024314> /x8e/xa5/xc7/xa1 <CJK> +<U0002430C> /x8e/xa5/xc7/xa2 <CJK> +<U00024523> /x8e/xa5/xc7/xa3 <CJK> +<U0002455A> /x8e/xa5/xc7/xa4 <CJK> +<U000245E2> /x8e/xa5/xc7/xa5 <CJK> +<U00024693> /x8e/xa5/xc7/xa6 <CJK> +<U000246B0> /x8e/xa5/xc7/xa7 <CJK> +<U000246AB> /x8e/xa5/xc7/xa8 <CJK> +<U000246BD> /x8e/xa5/xc7/xa9 <CJK> +<U000246B1> /x8e/xa5/xc7/xaa <CJK> +<U0002468D> /x8e/xa5/xc7/xab <CJK> +<U000246AD> /x8e/xa5/xc7/xac <CJK> +<U000246AA> /x8e/xa5/xc7/xad <CJK> +<U000246AC> /x8e/xa5/xc7/xae <CJK> +<U000246BC> /x8e/xa5/xc7/xaf <CJK> +<U000246C9> /x8e/xa5/xc7/xb0 <CJK> +<U00024847> /x8e/xa5/xc7/xb1 <CJK> +<U00024862> /x8e/xa5/xc7/xb2 <CJK> +<U00024840> /x8e/xa5/xc7/xb3 <CJK> +<U00024844> /x8e/xa5/xc7/xb4 <CJK> +<U0002483F> /x8e/xa5/xc7/xb5 <CJK> +<U00024843> /x8e/xa5/xc7/xb6 <CJK> +<U0002483D> /x8e/xa5/xc7/xb7 <CJK> +<U00024860> /x8e/xa5/xc7/xb8 <CJK> +<U0002485F> /x8e/xa5/xc7/xb9 <CJK> +<U0002483A> /x8e/xa5/xc7/xba <CJK> +<U00024842> /x8e/xa5/xc7/xbb <CJK> +<U0002485E> /x8e/xa5/xc7/xbc <CJK> +<U0002485D> /x8e/xa5/xc7/xbd <CJK> +<U000249BC> /x8e/xa5/xc7/xbe <CJK> +<U000249E0> /x8e/xa5/xc7/xbf <CJK> +<U000249EE> /x8e/xa5/xc7/xc0 <CJK> +<U000249EB> /x8e/xa5/xc7/xc1 <CJK> +<U00024A0D> /x8e/xa5/xc7/xc2 <CJK> +<U00024B09> /x8e/xa5/xc7/xc3 <CJK> +<U00024B0C> /x8e/xa5/xc7/xc4 <CJK> +<U00024B69> /x8e/xa5/xc7/xc5 <CJK> +<U00024B74> /x8e/xa5/xc7/xc6 <CJK> +<U00024B67> /x8e/xa5/xc7/xc7 <CJK> +<U3F31> /x8e/xa5/xc7/xc8 <CJK> +<U7527> /x8e/xa5/xc7/xc9 <CJK> +<U00024CAD> /x8e/xa5/xc7/xca <CJK> +<U00024DFF> /x8e/xa5/xc7/xcb <CJK> +<U00024E16> /x8e/xa5/xc7/xcc <CJK> +<U00024E08> /x8e/xa5/xc7/xcd <CJK> +<U00024E09> /x8e/xa5/xc7/xce <CJK> +<U00024E00> /x8e/xa5/xc7/xcf <CJK> +<U00024DFC> /x8e/xa5/xc7/xd0 <CJK> +<U00024E13> /x8e/xa5/xc7/xd1 <CJK> +<U00024E14> /x8e/xa5/xc7/xd2 <CJK> +<U00024E0A> /x8e/xa5/xc7/xd3 <CJK> +<U0002983E> /x8e/xa5/xc7/xd4 <CJK> +<U00024E29> /x8e/xa5/xc7/xd5 <CJK> +<U00024E17> /x8e/xa5/xc7/xd6 <CJK> +<U00024E3B> /x8e/xa5/xc7/xd7 <CJK> +<U00024DFB> /x8e/xa5/xc7/xd8 <CJK> +<U3FBF> /x8e/xa5/xc7/xd9 <CJK> +<U00024E0E> /x8e/xa5/xc7/xda <CJK> +<U3FE4> /x8e/xa5/xc7/xdb <CJK> +<U00025008> /x8e/xa5/xc7/xdc <CJK> +<U0002521B> /x8e/xa5/xc7/xdd <CJK> +<U0002521A> /x8e/xa5/xc7/xde <CJK> +<U00025219> /x8e/xa5/xc7/xdf <CJK> +<U00025202> /x8e/xa5/xc7/xe0 <CJK> +<U404A> /x8e/xa5/xc7/xe1 <CJK> +<U00025217> /x8e/xa5/xc7/xe2 <CJK> +<U00025207> /x8e/xa5/xc7/xe3 <CJK> +<U00025213> /x8e/xa5/xc7/xe4 <CJK> +<U00025209> /x8e/xa5/xc7/xe5 <CJK> +<U0002520A> /x8e/xa5/xc7/xe6 <CJK> +<U00025212> /x8e/xa5/xc7/xe7 <CJK> +<U000252AA> /x8e/xa5/xc7/xe8 <CJK> +<U00025238> /x8e/xa5/xc7/xe9 <CJK> +<U0002537B> /x8e/xa5/xc7/xea <CJK> +<U0002537C> /x8e/xa5/xc7/xeb <CJK> +<U0002537A> /x8e/xa5/xc7/xec <CJK> +<U000253EA> /x8e/xa5/xc7/xed <CJK> +<U000253EB> /x8e/xa5/xc7/xee <CJK> +<U000253EF> /x8e/xa5/xc7/xef <CJK> +<U000253F0> /x8e/xa5/xc7/xf0 <CJK> +<U00025509> /x8e/xa5/xc7/xf1 <CJK> +<U00025502> /x8e/xa5/xc7/xf2 <CJK> +<U00025501> /x8e/xa5/xc7/xf3 <CJK> +<U0002552B> /x8e/xa5/xc7/xf4 <CJK> +<U00025507> /x8e/xa5/xc7/xf5 <CJK> +<U40CF> /x8e/xa5/xc7/xf6 <CJK> +<U00025528> /x8e/xa5/xc7/xf7 <CJK> +<U000254FB> /x8e/xa5/xc7/xf8 <CJK> +<U0002552A> /x8e/xa5/xc7/xf9 <CJK> +<U000254FE> /x8e/xa5/xc7/xfa <CJK> +<U00025504> /x8e/xa5/xc7/xfb <CJK> +<U00025529> /x8e/xa5/xc7/xfc <CJK> +<U0002550A> /x8e/xa5/xc7/xfd <CJK> +<U798C> /x8e/xa5/xc7/xfe <CJK> +<U000256C2> /x8e/xa5/xc8/xa1 <CJK> +<U7991> /x8e/xa5/xc8/xa2 <CJK> +<U000256A6> /x8e/xa5/xc8/xa3 <CJK> +<U4114> /x8e/xa5/xc8/xa4 <CJK> +<U00022FC6> /x8e/xa5/xc8/xa5 <CJK> +<U00021C07> /x8e/xa5/xc8/xa6 <CJK> +<U0002580A> /x8e/xa5/xc8/xa7 <CJK> +<U000257FD> /x8e/xa5/xc8/xa8 <CJK> +<U00025806> /x8e/xa5/xc8/xa9 <CJK> +<U0002580D> /x8e/xa5/xc8/xaa <CJK> +<U00025809> /x8e/xa5/xc8/xab <CJK> +<U0002580B> /x8e/xa5/xc8/xac <CJK> +<U00025800> /x8e/xa5/xc8/xad <CJK> +<U00025805> /x8e/xa5/xc8/xae <CJK> +<U0002583D> /x8e/xa5/xc8/xaf <CJK> +<U000259D5> /x8e/xa5/xc8/xb0 <CJK> +<U000259BF> /x8e/xa5/xc8/xb1 <CJK> +<U000259BA> /x8e/xa5/xc8/xb2 <CJK> +<U000259C7> /x8e/xa5/xc8/xb3 <CJK> +<U00025A98> /x8e/xa5/xc8/xb4 <CJK> +<U00025A9A> /x8e/xa5/xc8/xb5 <CJK> +<U420D> /x8e/xa5/xc8/xb6 <CJK> +<U00025BA4> /x8e/xa5/xc8/xb7 <CJK> +<U00025B9C> /x8e/xa5/xc8/xb8 <CJK> +<U00025B9D> /x8e/xa5/xc8/xb9 <CJK> +<U00025BA2> /x8e/xa5/xc8/xba <CJK> +<U00025B96> /x8e/xa5/xc8/xbb <CJK> +<U00025B95> /x8e/xa5/xc8/xbc <CJK> +<U00025BA5> /x8e/xa5/xc8/xbd <CJK> +<U00025BAA> /x8e/xa5/xc8/xbe <CJK> +<U00025BAD> /x8e/xa5/xc8/xbf <CJK> +<U00025B9A> /x8e/xa5/xc8/xc0 <CJK> +<U00025BA3> /x8e/xa5/xc8/xc1 <CJK> +<U00025B97> /x8e/xa5/xc8/xc2 <CJK> +<U00025B90> /x8e/xa5/xc8/xc3 <CJK> +<U00025BAF> /x8e/xa5/xc8/xc4 <CJK> +<U00025B8D> /x8e/xa5/xc8/xc5 <CJK> +<U4201> /x8e/xa5/xc8/xc6 <CJK> +<U00025BA8> /x8e/xa5/xc8/xc7 <CJK> +<U00025BEE> /x8e/xa5/xc8/xc8 <CJK> +<U00025EA3> /x8e/xa5/xc8/xc9 <CJK> +<U00025E99> /x8e/xa5/xc8/xca <CJK> +<U00025EA1> /x8e/xa5/xc8/xcb <CJK> +<U00025E9C> /x8e/xa5/xc8/xcc <CJK> +<U00025EA4> /x8e/xa5/xc8/xcd <CJK> +<U00025ECB> /x8e/xa5/xc8/xce <CJK> +<U00026056> /x8e/xa5/xc8/xcf <CJK> +<U00026048> /x8e/xa5/xc8/xd0 <CJK> +<U00026059> /x8e/xa5/xc8/xd1 <CJK> +<U0002604A> /x8e/xa5/xc8/xd2 <CJK> +<U0002605C> /x8e/xa5/xc8/xd3 <CJK> +<U42F1> /x8e/xa5/xc8/xd4 <CJK> +<U0002604F> /x8e/xa5/xc8/xd5 <CJK> +<U0002604D> /x8e/xa5/xc8/xd6 <CJK> +<U0002605D> /x8e/xa5/xc8/xd7 <CJK> +<U0002623A> /x8e/xa5/xc8/xd8 <CJK> +<U000262E3> /x8e/xa5/xc8/xd9 <CJK> +<U000262E1> /x8e/xa5/xc8/xda <CJK> +<U000262DE> /x8e/xa5/xc8/xdb <CJK> +<U00026397> /x8e/xa5/xc8/xdc <CJK> +<U0002639A> /x8e/xa5/xc8/xdd <CJK> +<U00026448> /x8e/xa5/xc8/xde <CJK> +<U0002644A> /x8e/xa5/xc8/xdf <CJK> +<U0002644C> /x8e/xa5/xc8/xe0 <CJK> +<U0002644E> /x8e/xa5/xc8/xe1 <CJK> +<U0002644F> /x8e/xa5/xc8/xe2 <CJK> +<U0002644B> /x8e/xa5/xc8/xe3 <CJK> +<U0002644D> /x8e/xa5/xc8/xe4 <CJK> +<U00026447> /x8e/xa5/xc8/xe5 <CJK> +<U00026451> /x8e/xa5/xc8/xe6 <CJK> +<U000264DA> /x8e/xa5/xc8/xe7 <CJK> +<U000264F9> /x8e/xa5/xc8/xe8 <CJK> +<U000264FC> /x8e/xa5/xc8/xe9 <CJK> +<U000264FB> /x8e/xa5/xc8/xea <CJK> +<U000264FD> /x8e/xa5/xc8/xeb <CJK> +<U000264F8> /x8e/xa5/xc8/xec <CJK> +<U000264FA> /x8e/xa5/xc8/xed <CJK> +<U0002658A> /x8e/xa5/xc8/xee <CJK> +<U0002658E> /x8e/xa5/xc8/xef <CJK> +<U00026588> /x8e/xa5/xc8/xf0 <CJK> +<U00026589> /x8e/xa5/xc8/xf1 <CJK> +<U0002658D> /x8e/xa5/xc8/xf2 <CJK> +<U00026590> /x8e/xa5/xc8/xf3 <CJK> +<U0002671C> /x8e/xa5/xc8/xf5 <CJK> +<U000267AB> /x8e/xa5/xc8/xf6 <CJK> +<U000267A4> /x8e/xa5/xc8/xf7 <CJK> +<U000267A8> /x8e/xa5/xc8/xf8 <CJK> +<U000267AD> /x8e/xa5/xc8/xf9 <CJK> +<U0002679F> /x8e/xa5/xc8/xfa <CJK> +<U0002679A> /x8e/xa5/xc8/xfb <CJK> +<U000267B0> /x8e/xa5/xc8/xfc <CJK> +<U000267A5> /x8e/xa5/xc8/xfd <CJK> +<U000267D5> /x8e/xa5/xc8/xfe <CJK> +<U000267A2> /x8e/xa5/xc9/xa1 <CJK> +<U000267B2> /x8e/xa5/xc9/xa2 <CJK> +<U0002679D> /x8e/xa5/xc9/xa3 <CJK> +<U000267A1> /x8e/xa5/xc9/xa4 <CJK> +<U00026915> /x8e/xa5/xc9/xa5 <CJK> +<U00026942> /x8e/xa5/xc9/xa6 <CJK> +<U00026973> /x8e/xa5/xc9/xa7 <CJK> +<U00026984> /x8e/xa5/xc9/xa8 <CJK> +<U000269DD> /x8e/xa5/xc9/xa9 <CJK> +<U00026A5C> /x8e/xa5/xc9/xaa <CJK> +<U00026A4C> /x8e/xa5/xc9/xab <CJK> +<U4476> /x8e/xa5/xc9/xac <CJK> +<U00026A4B> /x8e/xa5/xc9/xad <CJK> +<U00026C67> /x8e/xa5/xc9/xae <CJK> +<U00026DA8> /x8e/xa5/xc9/xaf <CJK> +<U00026D7F> /x8e/xa5/xc9/xb0 <CJK> +<U00026D8D> /x8e/xa5/xc9/xb1 <CJK> +<U00026D8B> /x8e/xa5/xc9/xb2 <CJK> +<U00026DF7> /x8e/xa5/xc9/xb3 <CJK> +<U00026DA9> /x8e/xa5/xc9/xb4 <CJK> +<U00026DF4> /x8e/xa5/xc9/xb5 <CJK> +<U00026D9A> /x8e/xa5/xc9/xb6 <CJK> +<U00026D8C> /x8e/xa5/xc9/xb7 <CJK> +<U00026D95> /x8e/xa5/xc9/xb8 <CJK> +<U00026D7E> /x8e/xa5/xc9/xb9 <CJK> +<U00026D77> /x8e/xa5/xc9/xba <CJK> +<U450A> /x8e/xa5/xc9/xbb <CJK> +<U4503> /x8e/xa5/xc9/xbc <CJK> +<U00026D71> /x8e/xa5/xc9/xbd <CJK> +<U00026DFD> /x8e/xa5/xc9/xbe <CJK> +<U00026D88> /x8e/xa5/xc9/xbf <CJK> +<U00026D99> /x8e/xa5/xc9/xc0 <CJK> +<U00026D6D> /x8e/xa5/xc9/xc1 <CJK> +<U00026DD4> /x8e/xa5/xc9/xc2 <CJK> +<U00026D91> /x8e/xa5/xc9/xc3 <CJK> +<U00026D7D> /x8e/xa5/xc9/xc4 <CJK> +<U00026D63> /x8e/xa5/xc9/xc5 <CJK> +<U00026D75> /x8e/xa5/xc9/xc6 <CJK> +<U00026DF9> /x8e/xa5/xc9/xc7 <CJK> +<U00026D8E> /x8e/xa5/xc9/xc8 <CJK> +<U00026D74> /x8e/xa5/xc9/xc9 <CJK> +<U00026DD9> /x8e/xa5/xc9/xca <CJK> +<U00026D66> /x8e/xa5/xc9/xcb <CJK> +<U00026DFA> /x8e/xa5/xc9/xcc <CJK> +<U00026DF5> /x8e/xa5/xc9/xcd <CJK> +<U8660> /x8e/xa5/xc9/xce <CJK> +<U000271C1> /x8e/xa5/xc9/xcf <CJK> +<U000271C9> /x8e/xa5/xc9/xd0 <CJK> +<U00027303> /x8e/xa5/xc9/xd1 <CJK> +<U0002732C> /x8e/xa5/xc9/xd2 <CJK> +<U00027334> /x8e/xa5/xc9/xd3 <CJK> +<U00027317> /x8e/xa5/xc9/xd4 <CJK> +<U00027309> /x8e/xa5/xc9/xd5 <CJK> +<U00027304> /x8e/xa5/xc9/xd6 <CJK> +<U00027306> /x8e/xa5/xc9/xd7 <CJK> +<U0002731A> /x8e/xa5/xc9/xd8 <CJK> +<U0002730E> /x8e/xa5/xc9/xd9 <CJK> +<U00027327> /x8e/xa5/xc9/xda <CJK> +<U00027305> /x8e/xa5/xc9/xdb <CJK> +<U00027307> /x8e/xa5/xc9/xdc <CJK> +<U00027319> /x8e/xa5/xc9/xdd <CJK> +<U00027314> /x8e/xa5/xc9/xde <CJK> +<U0002730C> /x8e/xa5/xc9/xdf <CJK> +<U0002731D> /x8e/xa5/xc9/xe0 <CJK> +<U00027322> /x8e/xa5/xc9/xe1 <CJK> +<U00027323> /x8e/xa5/xc9/xe2 <CJK> +<U000275BB> /x8e/xa5/xc9/xe3 <CJK> +<U000275BC> /x8e/xa5/xc9/xe4 <CJK> +<U000275BA> /x8e/xa5/xc9/xe5 <CJK> +<U000276A9> /x8e/xa5/xc9/xe6 <CJK> +<U000276B5> /x8e/xa5/xc9/xe7 <CJK> +<U000276AC> /x8e/xa5/xc9/xe8 <CJK> +<U000276AA> /x8e/xa5/xc9/xe9 <CJK> +<U000276AF> /x8e/xa5/xc9/xea <CJK> +<U000276B7> /x8e/xa5/xc9/xeb <CJK> +<U4635> /x8e/xa5/xc9/xec <CJK> +<U4636> /x8e/xa5/xc9/xed <CJK> +<U0002783D> /x8e/xa5/xc9/xee <CJK> +<U00027845> /x8e/xa5/xc9/xef <CJK> +<U00027848> /x8e/xa5/xc9/xf0 <CJK> +<U0002783C> /x8e/xa5/xc9/xf1 <CJK> +<U0002783E> /x8e/xa5/xc9/xf2 <CJK> +<U000278EC> /x8e/xa5/xc9/xf3 <CJK> +<U000278ED> /x8e/xa5/xc9/xf4 <CJK> +<U000278E9> /x8e/xa5/xc9/xf5 <CJK> +<U00027A0A> /x8e/xa5/xc9/xf6 <CJK> +<U00027A0B> /x8e/xa5/xc9/xf7 <CJK> +<U000279F8> /x8e/xa5/xc9/xf8 <CJK> +<U00027A04> /x8e/xa5/xc9/xf9 <CJK> +<U000279F6> /x8e/xa5/xc9/xfa <CJK> +<U000279F9> /x8e/xa5/xc9/xfb <CJK> +<U00027C53> /x8e/xa5/xc9/xfc <CJK> +<U00027C52> /x8e/xa5/xc9/xfd <CJK> +<U00027C60> /x8e/xa5/xc9/xfe <CJK> +<U00027C63> /x8e/xa5/xca/xa1 <CJK> +<U00027CCE> /x8e/xa5/xca/xa2 <CJK> +<U00027CCD> /x8e/xa5/xca/xa3 <CJK> +<U00027CD0> /x8e/xa5/xca/xa4 <CJK> +<U00027CCC> /x8e/xa5/xca/xa5 <CJK> +<U00027D87> /x8e/xa5/xca/xa6 <CJK> +<U00027D8D> /x8e/xa5/xca/xa7 <CJK> +<U00027D9D> /x8e/xa5/xca/xa8 <CJK> +<U4773> /x8e/xa5/xca/xa9 <CJK> +<U00027E63> /x8e/xa5/xca/xaa <CJK> +<U00027EF4> /x8e/xa5/xca/xab <CJK> +<U00027EF1> /x8e/xa5/xca/xac <CJK> +<U00027EFF> /x8e/xa5/xca/xad <CJK> +<U00027EF5> /x8e/xa5/xca/xae <CJK> +<U00027EFC> /x8e/xa5/xca/xaf <CJK> +<U00027EF2> /x8e/xa5/xca/xb0 <CJK> +<U00027EF6> /x8e/xa5/xca/xb1 <CJK> +<U47B1> /x8e/xa5/xca/xb2 <CJK> +<U00027EFA> /x8e/xa5/xca/xb3 <CJK> +<U47AF> /x8e/xa5/xca/xb4 <CJK> +<U0002802E> /x8e/xa5/xca/xb5 <CJK> +<U00028045> /x8e/xa5/xca/xb6 <CJK> +<U00028043> /x8e/xa5/xca/xb7 <CJK> +<U00028051> /x8e/xa5/xca/xb8 <CJK> +<U0002804C> /x8e/xa5/xca/xb9 <CJK> +<U00028073> /x8e/xa5/xca/xba <CJK> +<U00028047> /x8e/xa5/xca/xbb <CJK> +<U0002804B> /x8e/xa5/xca/xbc <CJK> +<U0002804F> /x8e/xa5/xca/xbd <CJK> +<U47F4> /x8e/xa5/xca/xbe <CJK> +<U00028044> /x8e/xa5/xca/xbf <CJK> +<U0002804D> /x8e/xa5/xca/xc0 <CJK> +<U0002804E> /x8e/xa5/xca/xc1 <CJK> +<U0002804A> /x8e/xa5/xca/xc2 <CJK> +<U00028041> /x8e/xa5/xca/xc3 <CJK> +<U00028052> /x8e/xa5/xca/xc4 <CJK> +<U0002809F> /x8e/xa5/xca/xc5 <CJK> +<U00028054> /x8e/xa5/xca/xc6 <CJK> +<U00028059> /x8e/xa5/xca/xc7 <CJK> +<U000280A2> /x8e/xa5/xca/xc8 <CJK> +<U0002824B> /x8e/xa5/xca/xc9 <CJK> +<U00028248> /x8e/xa5/xca/xca <CJK> +<U0002830D> /x8e/xa5/xca/xcb <CJK> +<U0002831F> /x8e/xa5/xca/xcc <CJK> +<U00028308> /x8e/xa5/xca/xcd <CJK> +<U0002830E> /x8e/xa5/xca/xce <CJK> +<U0002831D> /x8e/xa5/xca/xcf <CJK> +<U00028304> /x8e/xa5/xca/xd0 <CJK> +<U00028418> /x8e/xa5/xca/xd1 <CJK> +<U0002841B> /x8e/xa5/xca/xd2 <CJK> +<U00028566> /x8e/xa5/xca/xd3 <CJK> +<U00028562> /x8e/xa5/xca/xd4 <CJK> +<U00028583> /x8e/xa5/xca/xd5 <CJK> +<U00028567> /x8e/xa5/xca/xd6 <CJK> +<U00028762> /x8e/xa5/xca/xd7 <CJK> +<U0002874F> /x8e/xa5/xca/xd8 <CJK> +<U0002874E> /x8e/xa5/xca/xd9 <CJK> +<U00028767> /x8e/xa5/xca/xda <CJK> +<U00028753> /x8e/xa5/xca/xdb <CJK> +<U0002874D> /x8e/xa5/xca/xdc <CJK> +<U0002874C> /x8e/xa5/xca/xdd <CJK> +<U00028768> /x8e/xa5/xca/xde <CJK> +<U00028751> /x8e/xa5/xca/xdf <CJK> +<U48DC> /x8e/xa5/xca/xe0 <CJK> +<U00028758> /x8e/xa5/xca/xe1 <CJK> +<U0002875B> /x8e/xa5/xca/xe2 <CJK> +<U00028750> /x8e/xa5/xca/xe3 <CJK> +<U0002876A> /x8e/xa5/xca/xe4 <CJK> +<U00028839> /x8e/xa5/xca/xe5 <CJK> +<U00028838> /x8e/xa5/xca/xe6 <CJK> +<U00028982> /x8e/xa5/xca/xe7 <CJK> +<U00028984> /x8e/xa5/xca/xe8 <CJK> +<U00028986> /x8e/xa5/xca/xe9 <CJK> +<U00028C80> /x8e/xa5/xca/xea <CJK> +<U00028C86> /x8e/xa5/xca/xeb <CJK> +<U00028D25> /x8e/xa5/xca/xec <CJK> +<U00028D11> /x8e/xa5/xca/xed <CJK> +<U4999> /x8e/xa5/xca/xee <CJK> +<U00028D0E> /x8e/xa5/xca/xef <CJK> +<U00028D15> /x8e/xa5/xca/xf0 <CJK> +<U00028D0F> /x8e/xa5/xca/xf1 <CJK> +<U00028D18> /x8e/xa5/xca/xf2 <CJK> +<U00028D0D> /x8e/xa5/xca/xf3 <CJK> +<U00028D13> /x8e/xa5/xca/xf4 <CJK> +<U00028D16> /x8e/xa5/xca/xf5 <CJK> +<U00028D19> /x8e/xa5/xca/xf6 <CJK> +<U00028F08> /x8e/xa5/xca/xf7 <CJK> +<U00028EF7> /x8e/xa5/xca/xf8 <CJK> +<U00028EFB> /x8e/xa5/xca/xf9 <CJK> +<U00028EFC> /x8e/xa5/xca/xfa <CJK> +<U00028FB4> /x8e/xa5/xca/xfb <CJK> +<U00028FBE> /x8e/xa5/xca/xfc <CJK> +<U00028FC1> /x8e/xa5/xca/xfd <CJK> +<U000290A6> /x8e/xa5/xca/xfe <CJK> +<U000290A5> /x8e/xa5/xcb/xa1 <CJK> +<U000290A2> /x8e/xa5/xcb/xa2 <CJK> +<U000290A4> /x8e/xa5/xcb/xa3 <CJK> +<U00029212> /x8e/xa5/xcb/xa4 <CJK> +<U0002920E> /x8e/xa5/xcb/xa5 <CJK> +<U0002927A> /x8e/xa5/xcb/xa6 <CJK> +<U00029278> /x8e/xa5/xcb/xa7 <CJK> +<U0002927D> /x8e/xa5/xcb/xa8 <CJK> +<U0002927E> /x8e/xa5/xcb/xa9 <CJK> +<U00029281> /x8e/xa5/xcb/xaa <CJK> +<U00029283> /x8e/xa5/xcb/xab <CJK> +<U00029280> /x8e/xa5/xcb/xac <CJK> +<U00029282> /x8e/xa5/xcb/xad <CJK> +<U0002939B> /x8e/xa5/xcb/xae <CJK> +<U00029399> /x8e/xa5/xcb/xaf <CJK> +<U0002939C> /x8e/xa5/xcb/xb0 <CJK> +<U0002939A> /x8e/xa5/xcb/xb1 <CJK> +<U000293A1> /x8e/xa5/xcb/xb2 <CJK> +<U0002941A> /x8e/xa5/xcb/xb3 <CJK> +<U0002941C> /x8e/xa5/xcb/xb4 <CJK> +<U0002948A> /x8e/xa5/xcb/xb5 <CJK> +<U00029479> /x8e/xa5/xcb/xb6 <CJK> +<U00029473> /x8e/xa5/xcb/xb7 <CJK> +<U00029475> /x8e/xa5/xcb/xb8 <CJK> +<U0002947C> /x8e/xa5/xcb/xb9 <CJK> +<U00029478> /x8e/xa5/xcb/xba <CJK> +<U00029460> /x8e/xa5/xcb/xbb <CJK> +<U00029483> /x8e/xa5/xcb/xbc <CJK> +<U00029470> /x8e/xa5/xcb/xbd <CJK> +<U4AB6> /x8e/xa5/xcb/xbe <CJK> +<U4ABD> /x8e/xa5/xcb/xbf <CJK> +<U00029487> /x8e/xa5/xcb/xc0 <CJK> +<U00029484> /x8e/xa5/xcb/xc1 <CJK> +<U0002947B> /x8e/xa5/xcb/xc2 <CJK> +<U0002947E> /x8e/xa5/xcb/xc3 <CJK> +<U00029474> /x8e/xa5/xcb/xc4 <CJK> +<U000295B9> /x8e/xa5/xcb/xc5 <CJK> +<U000295B8> /x8e/xa5/xcb/xc6 <CJK> +<U000295B7> /x8e/xa5/xcb/xc7 <CJK> +<U000295B5> /x8e/xa5/xcb/xc8 <CJK> +<U000296CC> /x8e/xa5/xcb/xc9 <CJK> +<U000296CE> /x8e/xa5/xcb/xca <CJK> +<U000296D1> /x8e/xa5/xcb/xcb <CJK> +<U9904> /x8e/xa5/xcb/xcc <CJK> +<U000296CB> /x8e/xa5/xcb/xcd <CJK> +<U999B> /x8e/xa5/xcb/xce <CJK> +<U0002987E> /x8e/xa5/xcb/xcf <CJK> +<U0002987A> /x8e/xa5/xcb/xd0 <CJK> +<U00029877> /x8e/xa5/xcb/xd1 <CJK> +<U0002988C> /x8e/xa5/xcb/xd2 <CJK> +<U000298E1> /x8e/xa5/xcb/xd3 <CJK> +<U00029A20> /x8e/xa5/xcb/xd4 <CJK> +<U00029A1E> /x8e/xa5/xcb/xd5 <CJK> +<U00029AC2> /x8e/xa5/xcb/xd6 <CJK> +<U00029B0F> /x8e/xa5/xcb/xd7 <CJK> +<U00029B00> /x8e/xa5/xcb/xd8 <CJK> +<U4BF4> /x8e/xa5/xcb/xd9 <CJK> +<U00029B10> /x8e/xa5/xcb/xda <CJK> +<U00029C0D> /x8e/xa5/xcb/xdb <CJK> +<U00029C0E> /x8e/xa5/xcb/xdc <CJK> +<U00029C8E> /x8e/xa5/xcb/xdd <CJK> +<U00029C8D> /x8e/xa5/xcb/xde <CJK> +<U00029C8A> /x8e/xa5/xcb/xdf <CJK> +<U00029C8B> /x8e/xa5/xcb/xe0 <CJK> +<U00029C8C> /x8e/xa5/xcb/xe1 <CJK> +<U00029C8F> /x8e/xa5/xcb/xe2 <CJK> +<U00029D57> /x8e/xa5/xcb/xe3 <CJK> +<U4C35> /x8e/xa5/xcb/xe4 <CJK> +<U00029D55> /x8e/xa5/xcb/xe5 <CJK> +<U00029D5B> /x8e/xa5/xcb/xe6 <CJK> +<U00029FAC> /x8e/xa5/xcb/xe7 <CJK> +<U00029FA7> /x8e/xa5/xcb/xe8 <CJK> +<U00029FA0> /x8e/xa5/xcb/xe9 <CJK> +<U00029F9E> /x8e/xa5/xcb/xea <CJK> +<U4CAA> /x8e/xa5/xcb/xeb <CJK> +<U0002A28D> /x8e/xa5/xcb/xec <CJK> +<U4D1F> /x8e/xa5/xcb/xed <CJK> +<U0002A393> /x8e/xa5/xcb/xee <CJK> +<U0002A394> /x8e/xa5/xcb/xef <CJK> +<U0002A392> /x8e/xa5/xcb/xf0 <CJK> +<U00020181> /x8e/xa5/xcb/xf1 <CJK> +<U000203D6> /x8e/xa5/xcb/xf2 <CJK> +<U000203C3> /x8e/xa5/xcb/xf3 <CJK> +<U000203E4> /x8e/xa5/xcb/xf4 <CJK> +<U000203E2> /x8e/xa5/xcb/xf5 <CJK> +<U00020409> /x8e/xa5/xcb/xf6 <CJK> +<U000203BF> /x8e/xa5/xcb/xf7 <CJK> +<U000203C8> /x8e/xa5/xcb/xf8 <CJK> +<U000203C7> /x8e/xa5/xcb/xf9 <CJK> +<U000204B5> /x8e/xa5/xcb/xfa <CJK> +<U000204B2> /x8e/xa5/xcb/xfb <CJK> +<U0002060C> /x8e/xa5/xcb/xfc <CJK> +<U0002060B> /x8e/xa5/xcb/xfd <CJK> +<U0002060A> /x8e/xa5/xcb/xfe <CJK> +<U00020605> /x8e/xa5/xcc/xa1 <CJK> +<U000207D3> /x8e/xa5/xcc/xa2 <CJK> +<U000207E6> /x8e/xa5/xcc/xa3 <CJK> +<U000207E9> /x8e/xa5/xcc/xa4 <CJK> +<U000207F0> /x8e/xa5/xcc/xa5 <CJK> +<U000207EA> /x8e/xa5/xcc/xa6 <CJK> +<U000207E7> /x8e/xa5/xcc/xa7 <CJK> +<U000208B1> /x8e/xa5/xcc/xa8 <CJK> +<U000208B3> /x8e/xa5/xcc/xa9 <CJK> +<U000208B4> /x8e/xa5/xcc/xaa <CJK> +<U000208B0> /x8e/xa5/xcc/xab <CJK> +<U0002095C> /x8e/xa5/xcc/xac <CJK> +<U0002095D> /x8e/xa5/xcc/xad <CJK> +<U0002095E> /x8e/xa5/xcc/xae <CJK> +<U000209C0> /x8e/xa5/xcc/xaf <CJK> +<U00020AAF> /x8e/xa5/xcc/xb0 <CJK> +<U3550> /x8e/xa5/xcc/xb1 <CJK> +<U00020B86> /x8e/xa5/xcc/xb2 <CJK> +<U00020B83> /x8e/xa5/xcc/xb3 <CJK> +<U00020B84> /x8e/xa5/xcc/xb4 <CJK> +<U00020F5C> /x8e/xa5/xcc/xb5 <CJK> +<U00020F70> /x8e/xa5/xcc/xb6 <CJK> +<U00020F8C> /x8e/xa5/xcc/xb7 <CJK> +<U00020F7B> /x8e/xa5/xcc/xb8 <CJK> +<U00020F66> /x8e/xa5/xcc/xb9 <CJK> +<U00020F79> /x8e/xa5/xcc/xba <CJK> +<U00020F63> /x8e/xa5/xcc/xbb <CJK> +<U00020FC5> /x8e/xa5/xcc/xbc <CJK> +<U00020F6B> /x8e/xa5/xcc/xbd <CJK> +<U00020F6D> /x8e/xa5/xcc/xbe <CJK> +<U00020F72> /x8e/xa5/xcc/xbf <CJK> +<U00020F69> /x8e/xa5/xcc/xc0 <CJK> +<U00020F75> /x8e/xa5/xcc/xc1 <CJK> +<U00020F89> /x8e/xa5/xcc/xc2 <CJK> +<U00020FC6> /x8e/xa5/xcc/xc3 <CJK> +<U00020FA5> /x8e/xa5/xcc/xc4 <CJK> +<U000203E7> /x8e/xa5/xcc/xc5 <CJK> +<U00020F6A> /x8e/xa5/xcc/xc6 <CJK> +<U00020F97> /x8e/xa5/xcc/xc7 <CJK> +<U0002145A> /x8e/xa5/xcc/xc8 <CJK> +<U0002145C> /x8e/xa5/xcc/xc9 <CJK> +<U00021459> /x8e/xa5/xcc/xca <CJK> +<U00021424> /x8e/xa5/xcc/xcb <CJK> +<U00021425> /x8e/xa5/xcc/xcc <CJK> +<U00021430> /x8e/xa5/xcc/xcd <CJK> +<U00021458> /x8e/xa5/xcc/xce <CJK> +<U00021431> /x8e/xa5/xcc/xcf <CJK> +<U00021576> /x8e/xa5/xcc/xd0 <CJK> +<U000215C1> /x8e/xa5/xcc/xd1 <CJK> +<U00021685> /x8e/xa5/xcc/xd2 <CJK> +<U0002167D> /x8e/xa5/xcc/xd3 <CJK> +<U00021865> /x8e/xa5/xcc/xd4 <CJK> +<U00021887> /x8e/xa5/xcc/xd5 <CJK> +<U00021852> /x8e/xa5/xcc/xd6 <CJK> +<U00021854> /x8e/xa5/xcc/xd7 <CJK> +<U0002188A> /x8e/xa5/xcc/xd8 <CJK> +<U00021850> /x8e/xa5/xcc/xd9 <CJK> +<U00021886> /x8e/xa5/xcc/xda <CJK> +<U0002184F> /x8e/xa5/xcc/xdb <CJK> +<U00021868> /x8e/xa5/xcc/xdc <CJK> +<U0002199D> /x8e/xa5/xcc/xdd <CJK> +<U00021AA0> /x8e/xa5/xcc/xde <CJK> +<U00021ABA> /x8e/xa5/xcc/xdf <CJK> +<U00021ABD> /x8e/xa5/xcc/xe0 <CJK> +<U00021AB8> /x8e/xa5/xcc/xe1 <CJK> +<U00021BA6> /x8e/xa5/xcc/xe2 <CJK> +<U377B> /x8e/xa5/xcc/xe3 <CJK> +<U00021CDE> /x8e/xa5/xcc/xe4 <CJK> +<U00021CD8> /x8e/xa5/xcc/xe5 <CJK> +<U00021CD1> /x8e/xa5/xcc/xe6 <CJK> +<U00021F13> /x8e/xa5/xcc/xe7 <CJK> +<U3809> /x8e/xa5/xcc/xe8 <CJK> +<U00021F0E> /x8e/xa5/xcc/xe9 <CJK> +<U00021F1B> /x8e/xa5/xcc/xea <CJK> +<U00021F3A> /x8e/xa5/xcc/xeb <CJK> +<U3807> /x8e/xa5/xcc/xec <CJK> +<U00021F1C> /x8e/xa5/xcc/xed <CJK> +<U00021F12> /x8e/xa5/xcc/xee <CJK> +<U00021F16> /x8e/xa5/xcc/xef <CJK> +<U00021F1A> /x8e/xa5/xcc/xf0 <CJK> +<U00021448> /x8e/xa5/xcc/xf1 <CJK> +<U0002214B> /x8e/xa5/xcc/xf2 <CJK> +<U00022137> /x8e/xa5/xcc/xf3 <CJK> +<U00022136> /x8e/xa5/xcc/xf4 <CJK> +<U00022138> /x8e/xa5/xcc/xf5 <CJK> +<U0002213A> /x8e/xa5/xcc/xf6 <CJK> +<U00022149> /x8e/xa5/xcc/xf7 <CJK> +<U0002213C> /x8e/xa5/xcc/xf8 <CJK> +<U0002214A> /x8e/xa5/xcc/xf9 <CJK> +<U000222B1> /x8e/xa5/xcc/xfa <CJK> +<U000222C2> /x8e/xa5/xcc/xfb <CJK> +<U000222B5> /x8e/xa5/xcc/xfc <CJK> +<U000222C4> /x8e/xa5/xcc/xfd <CJK> +<U000222B6> /x8e/xa5/xcc/xfe <CJK> +<U0002241E> /x8e/xa5/xcd/xa1 <CJK> +<U0002241F> /x8e/xa5/xcd/xa2 <CJK> +<U000224AF> /x8e/xa5/xcd/xa3 <CJK> +<U0002256B> /x8e/xa5/xcd/xa4 <CJK> +<U0002256F> /x8e/xa5/xcd/xa5 <CJK> +<U00022792> /x8e/xa5/xcd/xa6 <CJK> +<U000227E4> /x8e/xa5/xcd/xa7 <CJK> +<U0002282C> /x8e/xa5/xcd/xa8 <CJK> +<U000227EF> /x8e/xa5/xcd/xa9 <CJK> +<U0002284F> /x8e/xa5/xcd/xab <CJK> +<U00022852> /x8e/xa5/xcd/xac <CJK> +<U00022850> /x8e/xa5/xcd/xad <CJK> +<U0002283A> /x8e/xa5/xcd/xae <CJK> +<U00022837> /x8e/xa5/xcd/xaf <CJK> +<U00022847> /x8e/xa5/xcd/xb0 <CJK> +<U00022864> /x8e/xa5/xcd/xb1 <CJK> +<U00022840> /x8e/xa5/xcd/xb2 <CJK> +<U0002283C> /x8e/xa5/xcd/xb3 <CJK> +<U00022845> /x8e/xa5/xcd/xb4 <CJK> +<U00022841> /x8e/xa5/xcd/xb5 <CJK> +<U000229F3> /x8e/xa5/xcd/xb6 <CJK> +<U39BB> /x8e/xa5/xcd/xb7 <CJK> +<U00022CC1> /x8e/xa5/xcd/xb8 <CJK> +<U00022CB4> /x8e/xa5/xcd/xb9 <CJK> +<U3A4B> /x8e/xa5/xcd/xba <CJK> +<U00022D2A> /x8e/xa5/xcd/xbb <CJK> +<U00022D22> /x8e/xa5/xcd/xbc <CJK> +<U00022D29> /x8e/xa5/xcd/xbd <CJK> +<U3A4D> /x8e/xa5/xcd/xbe <CJK> +<U00022D3E> /x8e/xa5/xcd/xbf <CJK> +<U00022D3C> /x8e/xa5/xcd/xc0 <CJK> +<U00022D30> /x8e/xa5/xcd/xc1 <CJK> +<U00022FC7> /x8e/xa5/xcd/xc2 <CJK> +<U00022FD5> /x8e/xa5/xcd/xc3 <CJK> +<U00022FD6> /x8e/xa5/xcd/xc4 <CJK> +<U00022FD3> /x8e/xa5/xcd/xc5 <CJK> +<U00022FCE> /x8e/xa5/xcd/xc6 <CJK> +<U00022FC8> /x8e/xa5/xcd/xc7 <CJK> +<U0002305C> /x8e/xa5/xcd/xc8 <CJK> +<U0002305F> /x8e/xa5/xcd/xc9 <CJK> +<U00023062> /x8e/xa5/xcd/xca <CJK> +<U3AC2> /x8e/xa5/xcd/xcb <CJK> +<U000230BD> /x8e/xa5/xcd/xcc <CJK> +<U000230BF> /x8e/xa5/xcd/xcd <CJK> +<U0002325C> /x8e/xa5/xcd/xce <CJK> +<U000232B6> /x8e/xa5/xcd/xcf <CJK> +<U3B1A> /x8e/xa5/xcd/xd0 <CJK> +<U0002329D> /x8e/xa5/xcd/xd1 <CJK> +<U0002327F> /x8e/xa5/xcd/xd2 <CJK> +<U3B12> /x8e/xa5/xcd/xd3 <CJK> +<U00023294> /x8e/xa5/xcd/xd4 <CJK> +<U00023281> /x8e/xa5/xcd/xd5 <CJK> +<U00023347> /x8e/xa5/xcd/xd6 <CJK> +<U00023346> /x8e/xa5/xcd/xd7 <CJK> +<U3B3C> /x8e/xa5/xcd/xd8 <CJK> +<U00023394> /x8e/xa5/xcd/xd9 <CJK> +<U00023675> /x8e/xa5/xcd/xda <CJK> +<U0002361A> /x8e/xa5/xcd/xdb <CJK> +<U0002362A> /x8e/xa5/xcd/xdc <CJK> +<U00023632> /x8e/xa5/xcd/xdd <CJK> +<U00023617> /x8e/xa5/xcd/xde <CJK> +<U00023623> /x8e/xa5/xcd/xdf <CJK> +<U00023674> /x8e/xa5/xcd/xe0 <CJK> +<U3BC3> /x8e/xa5/xcd/xe1 <CJK> +<U00023676> /x8e/xa5/xcd/xe2 <CJK> +<U0002362E> /x8e/xa5/xcd/xe3 <CJK> +<U00023625> /x8e/xa5/xcd/xe4 <CJK> +<U00023620> /x8e/xa5/xcd/xe5 <CJK> +<U00023671> /x8e/xa5/xcd/xe6 <CJK> +<U00023616> /x8e/xa5/xcd/xe7 <CJK> +<U00023670> /x8e/xa5/xcd/xe8 <CJK> +<U0002362C> /x8e/xa5/xcd/xe9 <CJK> +<U0002362F> /x8e/xa5/xcd/xea <CJK> +<U0002361F> /x8e/xa5/xcd/xeb <CJK> +<U00023664> /x8e/xa5/xcd/xec <CJK> +<U3BC0> /x8e/xa5/xcd/xed <CJK> +<U00023908> /x8e/xa5/xcd/xee <CJK> +<U00023914> /x8e/xa5/xcd/xef <CJK> +<U0002390A> /x8e/xa5/xcd/xf0 <CJK> +<U0002390B> /x8e/xa5/xcd/xf1 <CJK> +<U00023A4F> /x8e/xa5/xcd/xf2 <CJK> +<U00023A59> /x8e/xa5/xcd/xf3 <CJK> +<U00023A54> /x8e/xa5/xcd/xf4 <CJK> +<U00023A51> /x8e/xa5/xcd/xf5 <CJK> +<U00023AB6> /x8e/xa5/xcd/xf6 <CJK> +<U00023BEC> /x8e/xa5/xcd/xf7 <CJK> +<U00023BED> /x8e/xa5/xcd/xf8 <CJK> +<U00023BEA> /x8e/xa5/xcd/xf9 <CJK> +<U00023EEE> /x8e/xa5/xcd/xfa <CJK> +<U00023F5A> /x8e/xa5/xcd/xfb <CJK> +<U00023F73> /x8e/xa5/xcd/xfc <CJK> +<U00023F65> /x8e/xa5/xcd/xfd <CJK> +<U00023F61> /x8e/xa5/xcd/xfe <CJK> +<U00023F55> /x8e/xa5/xce/xa1 <CJK> +<U00023F6B> /x8e/xa5/xce/xa2 <CJK> +<U00023F64> /x8e/xa5/xce/xa3 <CJK> +<U00023F5B> /x8e/xa5/xce/xa4 <CJK> +<U00023F4C> /x8e/xa5/xce/xa5 <CJK> +<U00023F6F> /x8e/xa5/xce/xa6 <CJK> +<U00023F84> /x8e/xa5/xce/xa7 <CJK> +<U00023F70> /x8e/xa5/xce/xa8 <CJK> +<U0002435D> /x8e/xa5/xce/xa9 <CJK> +<U00024357> /x8e/xa5/xce/xaa <CJK> +<U00024366> /x8e/xa5/xce/xab <CJK> +<U00024353> /x8e/xa5/xce/xac <CJK> +<U00024398> /x8e/xa5/xce/xad <CJK> +<U00024397> /x8e/xa5/xce/xae <CJK> +<U00024528> /x8e/xa5/xce/xaf <CJK> +<U000245EB> /x8e/xa5/xce/xb0 <CJK> +<U000245EA> /x8e/xa5/xce/xb1 <CJK> +<U000245E8> /x8e/xa5/xce/xb2 <CJK> +<U000245EC> /x8e/xa5/xce/xb3 <CJK> +<U000245EF> /x8e/xa5/xce/xb4 <CJK> +<U000246D1> /x8e/xa5/xce/xb5 <CJK> +<U000246CA> /x8e/xa5/xce/xb6 <CJK> +<U729F> /x8e/xa5/xce/xb7 <CJK> +<U000246CF> /x8e/xa5/xce/xb8 <CJK> +<U000246CD> /x8e/xa5/xce/xb9 <CJK> +<U000246CE> /x8e/xa5/xce/xba <CJK> +<U00024870> /x8e/xa5/xce/xbb <CJK> +<U00024867> /x8e/xa5/xce/xbc <CJK> +<U00024873> /x8e/xa5/xce/xbd <CJK> +<U0002486D> /x8e/xa5/xce/xbe <CJK> +<U00024876> /x8e/xa5/xce/xbf <CJK> +<U00024879> /x8e/xa5/xce/xc0 <CJK> +<U0002486A> /x8e/xa5/xce/xc1 <CJK> +<U0002488B> /x8e/xa5/xce/xc2 <CJK> +<U00024872> /x8e/xa5/xce/xc3 <CJK> +<U00024871> /x8e/xa5/xce/xc4 <CJK> +<U0002486E> /x8e/xa5/xce/xc5 <CJK> +<U0002487A> /x8e/xa5/xce/xc6 <CJK> +<U00024A16> /x8e/xa5/xce/xc7 <CJK> +<U00024A39> /x8e/xa5/xce/xc8 <CJK> +<U00024A3B> /x8e/xa5/xce/xc9 <CJK> +<U00024B10> /x8e/xa5/xce/xca <CJK> +<U00024B96> /x8e/xa5/xce/xcb <CJK> +<U00024B7B> /x8e/xa5/xce/xcc <CJK> +<U00024B7C> /x8e/xa5/xce/xcd <CJK> +<U00024B7D> /x8e/xa5/xce/xce <CJK> +<U00024CBE> /x8e/xa5/xce/xcf <CJK> +<U00024E5C> /x8e/xa5/xce/xd0 <CJK> +<U00024E38> /x8e/xa5/xce/xd1 <CJK> +<U00024E39> /x8e/xa5/xce/xd2 <CJK> +<U00024E2E> /x8e/xa5/xce/xd3 <CJK> +<U00024E34> /x8e/xa5/xce/xd4 <CJK> +<U00024E32> /x8e/xa5/xce/xd5 <CJK> +<U00024E5B> /x8e/xa5/xce/xd6 <CJK> +<U00024E33> /x8e/xa5/xce/xd7 <CJK> +<U00024E3C> /x8e/xa5/xce/xd8 <CJK> +<U3FE5> /x8e/xa5/xce/xd9 <CJK> +<U0002500E> /x8e/xa5/xce/xda <CJK> +<U0002500F> /x8e/xa5/xce/xdb <CJK> +<U00025010> /x8e/xa5/xce/xdc <CJK> +<U00025087> /x8e/xa5/xce/xdd <CJK> +<U0002525B> /x8e/xa5/xce/xde <CJK> +<U00025253> /x8e/xa5/xce/xdf <CJK> +<U405F> /x8e/xa5/xce/xe0 <CJK> +<U0002525C> /x8e/xa5/xce/xe1 <CJK> +<U0002523F> /x8e/xa5/xce/xe2 <CJK> +<U00025259> /x8e/xa5/xce/xe3 <CJK> +<U0002524A> /x8e/xa5/xce/xe4 <CJK> +<U00025244> /x8e/xa5/xce/xe5 <CJK> +<U0002524C> /x8e/xa5/xce/xe6 <CJK> +<U00025240> /x8e/xa5/xce/xe7 <CJK> +<U0002525F> /x8e/xa5/xce/xe8 <CJK> +<U0002525E> /x8e/xa5/xce/xe9 <CJK> +<U0002524E> /x8e/xa5/xce/xea <CJK> +<U00025254> /x8e/xa5/xce/xeb <CJK> +<U00025243> /x8e/xa5/xce/xec <CJK> +<U00025287> /x8e/xa5/xce/xed <CJK> +<U00025382> /x8e/xa5/xce/xee <CJK> +<U00025385> /x8e/xa5/xce/xef <CJK> +<U00025531> /x8e/xa5/xce/xf0 <CJK> +<U00025547> /x8e/xa5/xce/xf1 <CJK> +<U0002552E> /x8e/xa5/xce/xf2 <CJK> +<U0002552F> /x8e/xa5/xce/xf3 <CJK> +<U00025548> /x8e/xa5/xce/xf4 <CJK> +<U00025534> /x8e/xa5/xce/xf5 <CJK> +<U4118> /x8e/xa5/xce/xf6 <CJK> +<U0002059F> /x8e/xa5/xce/xf7 <CJK> +<U00025832> /x8e/xa5/xce/xf8 <CJK> +<U00025836> /x8e/xa5/xce/xf9 <CJK> +<U00025833> /x8e/xa5/xce/xfa <CJK> +<U00025831> /x8e/xa5/xce/xfb <CJK> +<U00025840> /x8e/xa5/xce/xfc <CJK> +<U00025841> /x8e/xa5/xce/xfd <CJK> +<U000259DD> /x8e/xa5/xce/xfe <CJK> +<U000259D2> /x8e/xa5/xcf/xa1 <CJK> +<U000259D9> /x8e/xa5/xcf/xa2 <CJK> +<U41AD> /x8e/xa5/xcf/xa3 <CJK> +<U000259DF> /x8e/xa5/xcf/xa4 <CJK> +<U000259DB> /x8e/xa5/xcf/xa5 <CJK> +<U000259D8> /x8e/xa5/xcf/xa6 <CJK> +<U000259D3> /x8e/xa5/xcf/xa7 <CJK> +<U000259DE> /x8e/xa5/xcf/xa8 <CJK> +<U000259E0> /x8e/xa5/xcf/xa9 <CJK> +<U000259D4> /x8e/xa5/xcf/xaa <CJK> +<U000259D7> /x8e/xa5/xcf/xab <CJK> +<U000259DA> /x8e/xa5/xcf/xac <CJK> +<U00025AA7> /x8e/xa5/xcf/xad <CJK> +<U00025BFE> /x8e/xa5/xcf/xae <CJK> +<U00025BDD> /x8e/xa5/xcf/xaf <CJK> +<U00025C40> /x8e/xa5/xcf/xb0 <CJK> +<U00025BE2> /x8e/xa5/xcf/xb1 <CJK> +<U421E> /x8e/xa5/xcf/xb2 <CJK> +<U00025BD6> /x8e/xa5/xcf/xb3 <CJK> +<U00025BDE> /x8e/xa5/xcf/xb4 <CJK> +<U00025BEF> /x8e/xa5/xcf/xb5 <CJK> +<U4227> /x8e/xa5/xcf/xb6 <CJK> +<U00025BEB> /x8e/xa5/xcf/xb7 <CJK> +<U00025BEA> /x8e/xa5/xcf/xb8 <CJK> +<U00025BE4> /x8e/xa5/xcf/xb9 <CJK> +<U00025BD1> /x8e/xa5/xcf/xba <CJK> +<U4218> /x8e/xa5/xcf/xbb <CJK> +<U00025BEC> /x8e/xa5/xcf/xbc <CJK> +<U00025BFA> /x8e/xa5/xcf/xbd <CJK> +<U00025BD9> /x8e/xa5/xcf/xbe <CJK> +<U00025BF3> /x8e/xa5/xcf/xbf <CJK> +<U00025BE1> /x8e/xa5/xcf/xc0 <CJK> +<U00025BDC> /x8e/xa5/xcf/xc1 <CJK> +<U00025BE5> /x8e/xa5/xcf/xc2 <CJK> +<U00025BDF> /x8e/xa5/xcf/xc3 <CJK> +<U00025BD4> /x8e/xa5/xcf/xc4 <CJK> +<U4220> /x8e/xa5/xcf/xc5 <CJK> +<U00025C05> /x8e/xa5/xcf/xc6 <CJK> +<U00025ED6> /x8e/xa5/xcf/xc7 <CJK> +<U00025ED5> /x8e/xa5/xcf/xc8 <CJK> +<U00025ED0> /x8e/xa5/xcf/xc9 <CJK> +<U00025EC8> /x8e/xa5/xcf/xca <CJK> +<U00025EC4> /x8e/xa5/xcf/xcb <CJK> +<U00025EC9> /x8e/xa5/xcf/xcc <CJK> +<U00025ECD> /x8e/xa5/xcf/xcd <CJK> +<U00025ED2> /x8e/xa5/xcf/xce <CJK> +<U00025ECC> /x8e/xa5/xcf/xcf <CJK> +<U00025ECA> /x8e/xa5/xcf/xd0 <CJK> +<U000260A0> /x8e/xa5/xcf/xd1 <CJK> +<U00026092> /x8e/xa5/xcf/xd2 <CJK> +<U42F4> /x8e/xa5/xcf/xd3 <CJK> +<U4302> /x8e/xa5/xcf/xd4 <CJK> +<U0002608B> /x8e/xa5/xcf/xd5 <CJK> +<U000260A1> /x8e/xa5/xcf/xd6 <CJK> +<U00026095> /x8e/xa5/xcf/xd7 <CJK> +<U00026088> /x8e/xa5/xcf/xd8 <CJK> +<U00026086> /x8e/xa5/xcf/xd9 <CJK> +<U0002608D> /x8e/xa5/xcf/xda <CJK> +<U00026085> /x8e/xa5/xcf/xdb <CJK> +<U00026091> /x8e/xa5/xcf/xdc <CJK> +<U00026089> /x8e/xa5/xcf/xdd <CJK> +<U000260A2> /x8e/xa5/xcf/xde <CJK> +<U000262F0> /x8e/xa5/xcf/xdf <CJK> +<U000262F3> /x8e/xa5/xcf/xe0 <CJK> +<U000262F4> /x8e/xa5/xcf/xe1 <CJK> +<U000262EF> /x8e/xa5/xcf/xe2 <CJK> +<U00026306> /x8e/xa5/xcf/xe3 <CJK> +<U000263A2> /x8e/xa5/xcf/xe4 <CJK> +<U0002645E> /x8e/xa5/xcf/xe5 <CJK> +<U00026463> /x8e/xa5/xcf/xe6 <CJK> +<U00026460> /x8e/xa5/xcf/xe7 <CJK> +<U0002645B> /x8e/xa5/xcf/xe8 <CJK> +<U0002647B> /x8e/xa5/xcf/xe9 <CJK> +<U00026458> /x8e/xa5/xcf/xea <CJK> +<U00026459> /x8e/xa5/xcf/xeb <CJK> +<U0002645D> /x8e/xa5/xcf/xec <CJK> +<U00026505> /x8e/xa5/xcf/xed <CJK> +<U00026506> /x8e/xa5/xcf/xee <CJK> +<U00026502> /x8e/xa5/xcf/xef <CJK> +<U00026503> /x8e/xa5/xcf/xf0 <CJK> +<U00026504> /x8e/xa5/xcf/xf1 <CJK> +<U000265A2> /x8e/xa5/xcf/xf2 <CJK> +<U000265A7> /x8e/xa5/xcf/xf3 <CJK> +<U000265A6> /x8e/xa5/xcf/xf4 <CJK> +<U000265A4> /x8e/xa5/xcf/xf5 <CJK> +<U000265AC> /x8e/xa5/xcf/xf6 <CJK> +<U000265A9> /x8e/xa5/xcf/xf7 <CJK> +<U000267E7> /x8e/xa5/xcf/xf8 <CJK> +<U00026801> /x8e/xa5/xcf/xf9 <CJK> +<U000267DF> /x8e/xa5/xcf/xfa <CJK> +<U000267D9> /x8e/xa5/xcf/xfb <CJK> +<U000267E3> /x8e/xa5/xcf/xfc <CJK> +<U0002680F> /x8e/xa5/xcf/xfd <CJK> +<U0002691A> /x8e/xa5/xcf/xfe <CJK> +<U00026945> /x8e/xa5/xd0/xa1 <CJK> +<U00026948> /x8e/xa5/xd0/xa2 <CJK> +<U0002697B> /x8e/xa5/xd0/xa3 <CJK> +<U00026985> /x8e/xa5/xd0/xa4 <CJK> +<U00026986> /x8e/xa5/xd0/xa5 <CJK> +<U000269FE> /x8e/xa5/xd0/xa6 <CJK> +<U000269FF> /x8e/xa5/xd0/xa7 <CJK> +<U00026A64> /x8e/xa5/xd0/xa8 <CJK> +<U00026A71> /x8e/xa5/xd0/xa9 <CJK> +<U00026A72> /x8e/xa5/xd0/xaa <CJK> +<U00026A61> /x8e/xa5/xd0/xab <CJK> +<U00026A62> /x8e/xa5/xd0/xac <CJK> +<U00026A6C> /x8e/xa5/xd0/xad <CJK> +<U00026A60> /x8e/xa5/xd0/xae <CJK> +<U00026A5D> /x8e/xa5/xd0/xaf <CJK> +<U00026A63> /x8e/xa5/xd0/xb0 <CJK> +<U00026A67> /x8e/xa5/xd0/xb1 <CJK> +<U00026E01> /x8e/xa5/xd0/xb2 <CJK> +<U00026E2A> /x8e/xa5/xd0/xb3 <CJK> +<U00026E30> /x8e/xa5/xd0/xb4 <CJK> +<U00026E06> /x8e/xa5/xd0/xb5 <CJK> +<U00026E7D> /x8e/xa5/xd0/xb6 <CJK> +<U00026E22> /x8e/xa5/xd0/xb7 <CJK> +<U00026EB9> /x8e/xa5/xd0/xb8 <CJK> +<U00026E0A> /x8e/xa5/xd0/xb9 <CJK> +<U00026E10> /x8e/xa5/xd0/xba <CJK> +<U00026D8F> /x8e/xa5/xd0/xbb <CJK> +<U00026E80> /x8e/xa5/xd0/xbc <CJK> +<U00026E13> /x8e/xa5/xd0/xbd <CJK> +<U00026E2E> /x8e/xa5/xd0/xbe <CJK> +<U00026E18> /x8e/xa5/xd0/xbf <CJK> +<U00026E17> /x8e/xa5/xd0/xc0 <CJK> +<U00026E1A> /x8e/xa5/xd0/xc1 <CJK> +<U00026E14> /x8e/xa5/xd0/xc2 <CJK> +<U00026E47> /x8e/xa5/xd0/xc3 <CJK> +<U00026E63> /x8e/xa5/xd0/xc4 <CJK> +<U00026E38> /x8e/xa5/xd0/xc5 <CJK> +<U4524> /x8e/xa5/xd0/xc6 <CJK> +<U00026E7F> /x8e/xa5/xd0/xc7 <CJK> +<U00026E21> /x8e/xa5/xd0/xc8 <CJK> +<U00026E37> /x8e/xa5/xd0/xc9 <CJK> +<U00026E31> /x8e/xa5/xd0/xca <CJK> +<U00026E1B> /x8e/xa5/xd0/xcb <CJK> +<U00026EA5> /x8e/xa5/xd0/xcc <CJK> +<U00026F6C> /x8e/xa5/xd0/xcd <CJK> +<U000271D3> /x8e/xa5/xd0/xce <CJK> +<U00027388> /x8e/xa5/xd0/xcf <CJK> +<U0002736E> /x8e/xa5/xd0/xd0 <CJK> +<U0002735C> /x8e/xa5/xd0/xd1 <CJK> +<U00027374> /x8e/xa5/xd0/xd2 <CJK> +<U00027354> /x8e/xa5/xd0/xd3 <CJK> +<U00027383> /x8e/xa5/xd0/xd4 <CJK> +<U8770> /x8e/xa5/xd0/xd5 <CJK> +<U00027365> /x8e/xa5/xd0/xd6 <CJK> +<U00027360> /x8e/xa5/xd0/xd7 <CJK> +<U00027370> /x8e/xa5/xd0/xd8 <CJK> +<U0002736F> /x8e/xa5/xd0/xd9 <CJK> +<U0002736D> /x8e/xa5/xd0/xda <CJK> +<U00027372> /x8e/xa5/xd0/xdb <CJK> +<U0002736C> /x8e/xa5/xd0/xdc <CJK> +<U00027376> /x8e/xa5/xd0/xdd <CJK> +<U00027375> /x8e/xa5/xd0/xde <CJK> +<U00027359> /x8e/xa5/xd0/xdf <CJK> +<U000273C7> /x8e/xa5/xd0/xe0 <CJK> +<U000275C1> /x8e/xa5/xd0/xe1 <CJK> +<U000275F9> /x8e/xa5/xd0/xe2 <CJK> +<U000276E3> /x8e/xa5/xd0/xe3 <CJK> +<U000276E7> /x8e/xa5/xd0/xe4 <CJK> +<U000276D6> /x8e/xa5/xd0/xe5 <CJK> +<U000276CF> /x8e/xa5/xd0/xe6 <CJK> +<U000276DA> /x8e/xa5/xd0/xe7 <CJK> +<U000276E9> /x8e/xa5/xd0/xe8 <CJK> +<U000276D2> /x8e/xa5/xd0/xe9 <CJK> +<U00027855> /x8e/xa5/xd0/xea <CJK> +<U0002784F> /x8e/xa5/xd0/xeb <CJK> +<U0002784D> /x8e/xa5/xd0/xec <CJK> +<U00027851> /x8e/xa5/xd0/xed <CJK> +<U00027856> /x8e/xa5/xd0/xee <CJK> +<U000278F9> /x8e/xa5/xd0/xef <CJK> +<U000278F8> /x8e/xa5/xd0/xf0 <CJK> +<U00027906> /x8e/xa5/xd0/xf1 <CJK> +<U00027903> /x8e/xa5/xd0/xf2 <CJK> +<U00027909> /x8e/xa5/xd0/xf3 <CJK> +<U000278F7> /x8e/xa5/xd0/xf4 <CJK> +<U000278F5> /x8e/xa5/xd0/xf5 <CJK> +<U00027A47> /x8e/xa5/xd0/xf6 <CJK> +<U00027A45> /x8e/xa5/xd0/xf7 <CJK> +<U00027A3E> /x8e/xa5/xd0/xf8 <CJK> +<U00027A46> /x8e/xa5/xd0/xf9 <CJK> +<U00027A29> /x8e/xa5/xd0/xfa <CJK> +<U00027A34> /x8e/xa5/xd0/xfb <CJK> +<U00027A3F> /x8e/xa5/xd0/xfc <CJK> +<U00027A44> /x8e/xa5/xd0/xfd <CJK> +<U00027A35> /x8e/xa5/xd0/xfe <CJK> +<U00027A5A> /x8e/xa5/xd1/xa1 <CJK> +<U00027A2A> /x8e/xa5/xd1/xa2 <CJK> +<U00027A33> /x8e/xa5/xd1/xa3 <CJK> +<U00027A37> /x8e/xa5/xd1/xa4 <CJK> +<U00027A43> /x8e/xa5/xd1/xa5 <CJK> +<U00027A39> /x8e/xa5/xd1/xa6 <CJK> +<U00027A30> /x8e/xa5/xd1/xa7 <CJK> +<U00027A5D> /x8e/xa5/xd1/xa8 <CJK> +<U00027A32> /x8e/xa5/xd1/xa9 <CJK> +<U00027A27> /x8e/xa5/xd1/xaa <CJK> +<U00027BBD> /x8e/xa5/xd1/xab <CJK> +<U00027BBA> /x8e/xa5/xd1/xac <CJK> +<U00027BBC> /x8e/xa5/xd1/xad <CJK> +<U00027BF1> /x8e/xa5/xd1/xae <CJK> +<U00027BF0> /x8e/xa5/xd1/xaf <CJK> +<U00027C61> /x8e/xa5/xd1/xb0 <CJK> +<U00027C5C> /x8e/xa5/xd1/xb1 <CJK> +<U00027C58> /x8e/xa5/xd1/xb2 <CJK> +<U00027C5D> /x8e/xa5/xd1/xb3 <CJK> +<U00027CDA> /x8e/xa5/xd1/xb4 <CJK> +<U00027CD9> /x8e/xa5/xd1/xb5 <CJK> +<U00027CDD> /x8e/xa5/xd1/xb6 <CJK> +<U00027CDC> /x8e/xa5/xd1/xb7 <CJK> +<U00027CDE> /x8e/xa5/xd1/xb8 <CJK> +<U477D> /x8e/xa5/xd1/xb9 <CJK> +<U00027DA0> /x8e/xa5/xd1/xba <CJK> +<U00027DA2> /x8e/xa5/xd1/xbb <CJK> +<U00027F0F> /x8e/xa5/xd1/xbc <CJK> +<U00027F13> /x8e/xa5/xd1/xbd <CJK> +<U00027F12> /x8e/xa5/xd1/xbe <CJK> +<U00027F11> /x8e/xa5/xd1/xbf <CJK> +<U00027F14> /x8e/xa5/xd1/xc0 <CJK> +<U00027F19> /x8e/xa5/xd1/xc1 <CJK> +<U00027F0E> /x8e/xa5/xd1/xc2 <CJK> +<U00027F17> /x8e/xa5/xd1/xc3 <CJK> +<U00027F21> /x8e/xa5/xd1/xc4 <CJK> +<U00027F20> /x8e/xa5/xd1/xc5 <CJK> +<U00027F16> /x8e/xa5/xd1/xc6 <CJK> +<U00028078> /x8e/xa5/xd1/xc7 <CJK> +<U8E37> /x8e/xa5/xd1/xc8 <CJK> +<U00028087> /x8e/xa5/xd1/xc9 <CJK> +<U00028079> /x8e/xa5/xd1/xca <CJK> +<U00028080> /x8e/xa5/xd1/xcb <CJK> +<U00028077> /x8e/xa5/xd1/xcc <CJK> +<U00028081> /x8e/xa5/xd1/xcd <CJK> +<U00028046> /x8e/xa5/xd1/xce <CJK> +<U0002807A> /x8e/xa5/xd1/xcf <CJK> +<U0002809C> /x8e/xa5/xd1/xd0 <CJK> +<U00028083> /x8e/xa5/xd1/xd1 <CJK> +<U00028084> /x8e/xa5/xd1/xd2 <CJK> +<U000280AD> /x8e/xa5/xd1/xd3 <CJK> +<U0002809D> /x8e/xa5/xd1/xd4 <CJK> +<U0002809E> /x8e/xa5/xd1/xd5 <CJK> +<U00028255> /x8e/xa5/xd1/xd6 <CJK> +<U00028336> /x8e/xa5/xd1/xd7 <CJK> +<U0002832B> /x8e/xa5/xd1/xd8 <CJK> +<U00028327> /x8e/xa5/xd1/xd9 <CJK> +<U00028346> /x8e/xa5/xd1/xda <CJK> +<U0002832C> /x8e/xa5/xd1/xdb <CJK> +<U00028345> /x8e/xa5/xd1/xdc <CJK> +<U00028333> /x8e/xa5/xd1/xdd <CJK> +<U0002832D> /x8e/xa5/xd1/xde <CJK> +<U00028334> /x8e/xa5/xd1/xdf <CJK> +<U00028322> /x8e/xa5/xd1/xe0 <CJK> +<U4864> /x8e/xa5/xd1/xe1 <CJK> +<U0002841F> /x8e/xa5/xd1/xe2 <CJK> +<U000285B3> /x8e/xa5/xd1/xe3 <CJK> +<U0002858C> /x8e/xa5/xd1/xe4 <CJK> +<U0002858F> /x8e/xa5/xd1/xe5 <CJK> +<U000285AF> /x8e/xa5/xd1/xe6 <CJK> +<U000285AD> /x8e/xa5/xd1/xe7 <CJK> +<U0002858E> /x8e/xa5/xd1/xe8 <CJK> +<U000285AC> /x8e/xa5/xd1/xe9 <CJK> +<U000285B0> /x8e/xa5/xd1/xea <CJK> +<U000285B1> /x8e/xa5/xd1/xeb <CJK> +<U000285AE> /x8e/xa5/xd1/xec <CJK> +<U00028599> /x8e/xa5/xd1/xed <CJK> +<U000286EB> /x8e/xa5/xd1/xee <CJK> +<U00028774> /x8e/xa5/xd1/xef <CJK> +<U00028775> /x8e/xa5/xd1/xf0 <CJK> +<U0002878E> /x8e/xa5/xd1/xf1 <CJK> +<U0002876D> /x8e/xa5/xd1/xf2 <CJK> +<U00028770> /x8e/xa5/xd1/xf3 <CJK> +<U0002878C> /x8e/xa5/xd1/xf4 <CJK> +<U0002884F> /x8e/xa5/xd1/xf5 <CJK> +<U00028851> /x8e/xa5/xd1/xf6 <CJK> +<U00028858> /x8e/xa5/xd1/xf7 <CJK> +<U0002884C> /x8e/xa5/xd1/xf8 <CJK> +<U0002884E> /x8e/xa5/xd1/xf9 <CJK> +<U00028915> /x8e/xa5/xd1/xfa <CJK> +<U000289BE> /x8e/xa5/xd1/xfb <CJK> +<U000289DB> /x8e/xa5/xd1/xfc <CJK> +<U000289B3> /x8e/xa5/xd1/xfd <CJK> +<U000289AE> /x8e/xa5/xd1/xfe <CJK> +<U00028C87> /x8e/xa5/xd2/xa1 <CJK> +<U00028C8A> /x8e/xa5/xd2/xa2 <CJK> +<U00028C88> /x8e/xa5/xd2/xa3 <CJK> +<U00028C8B> /x8e/xa5/xd2/xa4 <CJK> +<U00028C8C> /x8e/xa5/xd2/xa5 <CJK> +<U00028D44> /x8e/xa5/xd2/xa6 <CJK> +<U00028D2D> /x8e/xa5/xd2/xa7 <CJK> +<U00028D2A> /x8e/xa5/xd2/xa8 <CJK> +<U00028D31> /x8e/xa5/xd2/xa9 <CJK> +<U00028D2C> /x8e/xa5/xd2/xaa <CJK> +<U00028D45> /x8e/xa5/xd2/xab <CJK> +<U00028D30> /x8e/xa5/xd2/xac <CJK> +<U00028D29> /x8e/xa5/xd2/xad <CJK> +<U00028D46> /x8e/xa5/xd2/xae <CJK> +<U00028EF4> /x8e/xa5/xd2/xaf <CJK> +<U00028F14> /x8e/xa5/xd2/xb0 <CJK> +<U00028F10> /x8e/xa5/xd2/xb1 <CJK> +<U00028F0F> /x8e/xa5/xd2/xb2 <CJK> +<U00028F12> /x8e/xa5/xd2/xb3 <CJK> +<U00028F0B> /x8e/xa5/xd2/xb4 <CJK> +<U00028F0C> /x8e/xa5/xd2/xb5 <CJK> +<U00028F0A> /x8e/xa5/xd2/xb6 <CJK> +<U00028F13> /x8e/xa5/xd2/xb7 <CJK> +<U00028F0E> /x8e/xa5/xd2/xb8 <CJK> +<U00028FD9> /x8e/xa5/xd2/xb9 <CJK> +<U00028FD0> /x8e/xa5/xd2/xba <CJK> +<U9703> /x8e/xa5/xd2/xbb <CJK> +<U000290C1> /x8e/xa5/xd2/xbc <CJK> +<U000290BF> /x8e/xa5/xd2/xbd <CJK> +<U000290BD> /x8e/xa5/xd2/xbe <CJK> +<U000290BC> /x8e/xa5/xd2/xbf <CJK> +<U000290BA> /x8e/xa5/xd2/xc0 <CJK> +<U000290BB> /x8e/xa5/xd2/xc1 <CJK> +<U000290D1> /x8e/xa5/xd2/xc2 <CJK> +<U000290BE> /x8e/xa5/xd2/xc3 <CJK> +<U000290D0> /x8e/xa5/xd2/xc4 <CJK> +<U000290B9> /x8e/xa5/xd2/xc5 <CJK> +<U0002921A> /x8e/xa5/xd2/xc6 <CJK> +<U0002921C> /x8e/xa5/xd2/xc7 <CJK> +<U0002921B> /x8e/xa5/xd2/xc8 <CJK> +<U00029291> /x8e/xa5/xd2/xc9 <CJK> +<U00029296> /x8e/xa5/xd2/xca <CJK> +<U0002929F> /x8e/xa5/xd2/xcb <CJK> +<U0002929C> /x8e/xa5/xd2/xcc <CJK> +<U0002929A> /x8e/xa5/xd2/xcd <CJK> +<U0002929D> /x8e/xa5/xd2/xce <CJK> +<U000293AD> /x8e/xa5/xd2/xcf <CJK> +<U000293A5> /x8e/xa5/xd2/xd0 <CJK> +<U000293AE> /x8e/xa5/xd2/xd1 <CJK> +<U00029403> /x8e/xa5/xd2/xd2 <CJK> +<U00029426> /x8e/xa5/xd2/xd3 <CJK> +<U00029420> /x8e/xa5/xd2/xd4 <CJK> +<U00029423> /x8e/xa5/xd2/xd5 <CJK> +<U00029424> /x8e/xa5/xd2/xd6 <CJK> +<U00029421> /x8e/xa5/xd2/xd7 <CJK> +<U00029428> /x8e/xa5/xd2/xd8 <CJK> +<U00029425> /x8e/xa5/xd2/xd9 <CJK> +<U0002941E> /x8e/xa5/xd2/xda <CJK> +<U00029494> /x8e/xa5/xd2/xdb <CJK> +<U00029493> /x8e/xa5/xd2/xdc <CJK> +<U0002948F> /x8e/xa5/xd2/xdd <CJK> +<U0002949A> /x8e/xa5/xd2/xde <CJK> +<U000294AD> /x8e/xa5/xd2/xdf <CJK> +<U4AC2> /x8e/xa5/xd2/xe0 <CJK> +<U000295CA> /x8e/xa5/xd2/xe1 <CJK> +<U000295C5> /x8e/xa5/xd2/xe2 <CJK> +<U000296BB> /x8e/xa5/xd2/xe3 <CJK> +<U000296E1> /x8e/xa5/xd2/xe4 <CJK> +<U000296EA> /x8e/xa5/xd2/xe5 <CJK> +<U000296E4> /x8e/xa5/xd2/xe6 <CJK> +<U000296ED> /x8e/xa5/xd2/xe7 <CJK> +<U000296E6> /x8e/xa5/xd2/xe8 <CJK> +<U000296E0> /x8e/xa5/xd2/xe9 <CJK> +<U000296E8> /x8e/xa5/xd2/xea <CJK> +<U000296E5> /x8e/xa5/xd2/xeb <CJK> +<U0002981A> /x8e/xa5/xd2/xec <CJK> +<U00029894> /x8e/xa5/xd2/xed <CJK> +<U00029896> /x8e/xa5/xd2/xee <CJK> +<U0002989E> /x8e/xa5/xd2/xef <CJK> +<U00029895> /x8e/xa5/xd2/xf0 <CJK> +<U000298A1> /x8e/xa5/xd2/xf1 <CJK> +<U0002988E> /x8e/xa5/xd2/xf2 <CJK> +<U0002989B> /x8e/xa5/xd2/xf3 <CJK> +<U00029892> /x8e/xa5/xd2/xf4 <CJK> +<U00029897> /x8e/xa5/xd2/xf5 <CJK> +<U00029899> /x8e/xa5/xd2/xf6 <CJK> +<U00029893> /x8e/xa5/xd2/xf7 <CJK> +<U00029A32> /x8e/xa5/xd2/xf8 <CJK> +<U00029A2F> /x8e/xa5/xd2/xf9 <CJK> +<U00029A2E> /x8e/xa5/xd2/xfa <CJK> +<U00029A33> /x8e/xa5/xd2/xfb <CJK> +<U00029B1C> /x8e/xa5/xd2/xfc <CJK> +<U00029B1E> /x8e/xa5/xd2/xfd <CJK> +<U00029B11> /x8e/xa5/xd2/xfe <CJK> +<U00029B20> /x8e/xa5/xd3/xa1 <CJK> +<U00029B1F> /x8e/xa5/xd3/xa2 <CJK> +<U00029B19> /x8e/xa5/xd3/xa3 <CJK> +<U00029B16> /x8e/xa5/xd3/xa4 <CJK> +<U00029CAC> /x8e/xa5/xd3/xa5 <CJK> +<U00029CB9> /x8e/xa5/xd3/xa6 <CJK> +<U00029CB3> /x8e/xa5/xd3/xa7 <CJK> +<U00029CA6> /x8e/xa5/xd3/xa8 <CJK> +<U00029CA2> /x8e/xa5/xd3/xa9 <CJK> +<U00029CA9> /x8e/xa5/xd3/xaa <CJK> +<U00029CA7> /x8e/xa5/xd3/xab <CJK> +<U00029D6C> /x8e/xa5/xd3/xac <CJK> +<U00029D6D> /x8e/xa5/xd3/xad <CJK> +<U00029D69> /x8e/xa5/xd3/xae <CJK> +<U00029D80> /x8e/xa5/xd3/xaf <CJK> +<U00029D66> /x8e/xa5/xd3/xb0 <CJK> +<U00029D65> /x8e/xa5/xd3/xb1 <CJK> +<U00029D71> /x8e/xa5/xd3/xb2 <CJK> +<U00029D6B> /x8e/xa5/xd3/xb3 <CJK> +<U00029FBD> /x8e/xa5/xd3/xb4 <CJK> +<U00029FC1> /x8e/xa5/xd3/xb5 <CJK> +<U00029FD3> /x8e/xa5/xd3/xb6 <CJK> +<U00029FB6> /x8e/xa5/xd3/xb7 <CJK> +<U4CAC> /x8e/xa5/xd3/xb8 <CJK> +<U00029FB9> /x8e/xa5/xd3/xb9 <CJK> +<U00029FD4> /x8e/xa5/xd3/xba <CJK> +<U00029FB7> /x8e/xa5/xd3/xbb <CJK> +<U00029FDB> /x8e/xa5/xd3/xbc <CJK> +<U00029FB8> /x8e/xa5/xd3/xbd <CJK> +<U00029FC0> /x8e/xa5/xd3/xbe <CJK> +<U00029FBC> /x8e/xa5/xd3/xbf <CJK> +<U00029FD5> /x8e/xa5/xd3/xc0 <CJK> +<U00029FBF> /x8e/xa5/xd3/xc1 <CJK> +<U00029FC3> /x8e/xa5/xd3/xc2 <CJK> +<U00029FC9> /x8e/xa5/xd3/xc3 <CJK> +<U0002A258> /x8e/xa5/xd3/xc4 <CJK> +<U0002A290> /x8e/xa5/xd3/xc5 <CJK> +<U0002A295> /x8e/xa5/xd3/xc6 <CJK> +<U0002A297> /x8e/xa5/xd3/xc7 <CJK> +<U0002A309> /x8e/xa5/xd3/xc8 <CJK> +<U0002A308> /x8e/xa5/xd3/xc9 <CJK> +<U0002A306> /x8e/xa5/xd3/xca <CJK> +<U0002A305> /x8e/xa5/xd3/xcb <CJK> +<U0002A310> /x8e/xa5/xd3/xcc <CJK> +<U0002A397> /x8e/xa5/xd3/xcd <CJK> +<U0002A395> /x8e/xa5/xd3/xce <CJK> +<U0002A3EE> /x8e/xa5/xd3/xcf <CJK> +<U0002A41F> /x8e/xa5/xd3/xd0 <CJK> +<U00021B4B> /x8e/xa5/xd3/xd2 <CJK> +<U0002018E> /x8e/xa5/xd3/xd3 <CJK> +<U000203E8> /x8e/xa5/xd3/xd4 <CJK> +<U000203F0> /x8e/xa5/xd3/xd5 <CJK> +<U000203F4> /x8e/xa5/xd3/xd6 <CJK> +<U00020406> /x8e/xa5/xd3/xd7 <CJK> +<U000203ED> /x8e/xa5/xd3/xd8 <CJK> +<U349B> /x8e/xa5/xd3/xd9 <CJK> +<U000203E9> /x8e/xa5/xd3/xda <CJK> +<U00020400> /x8e/xa5/xd3/xdb <CJK> +<U000204B8> /x8e/xa5/xd3/xdc <CJK> +<U0002056D> /x8e/xa5/xd3/xdd <CJK> +<U00020804> /x8e/xa5/xd3/xde <CJK> +<U00020801> /x8e/xa5/xd3/xdf <CJK> +<U00020803> /x8e/xa5/xd3/xe0 <CJK> +<U00020802> /x8e/xa5/xd3/xe1 <CJK> +<U52F6> /x8e/xa5/xd3/xe2 <CJK> +<U3526> /x8e/xa5/xd3/xe3 <CJK> +<U00020962> /x8e/xa5/xd3/xe4 <CJK> +<U00020ABA> /x8e/xa5/xd3/xe5 <CJK> +<U00020B13> /x8e/xa5/xd3/xe6 <CJK> +<U00020FDE> /x8e/xa5/xd3/xe7 <CJK> +<U00020FD7> /x8e/xa5/xd3/xe8 <CJK> +<U00020FE4> /x8e/xa5/xd3/xe9 <CJK> +<U00020FCE> /x8e/xa5/xd3/xea <CJK> +<U00020FE3> /x8e/xa5/xd3/xeb <CJK> +<U00020FDD> /x8e/xa5/xd3/xec <CJK> +<U0002103A> /x8e/xa5/xd3/xed <CJK> +<U00020FDB> /x8e/xa5/xd3/xee <CJK> +<U00020FD6> /x8e/xa5/xd3/xef <CJK> +<U00020FE0> /x8e/xa5/xd3/xf0 <CJK> +<U00020FD4> /x8e/xa5/xd3/xf1 <CJK> +<U00020FCB> /x8e/xa5/xd3/xf2 <CJK> +<U00020FE1> /x8e/xa5/xd3/xf3 <CJK> +<U00020FC9> /x8e/xa5/xd3/xf4 <CJK> +<U00020FDF> /x8e/xa5/xd3/xf5 <CJK> +<U0002103C> /x8e/xa5/xd3/xf6 <CJK> +<U00020FFC> /x8e/xa5/xd3/xf7 <CJK> +<U00020FCF> /x8e/xa5/xd3/xf8 <CJK> +<U00021479> /x8e/xa5/xd3/xf9 <CJK> +<U00021476> /x8e/xa5/xd3/xfa <CJK> +<U00021478> /x8e/xa5/xd3/xfb <CJK> +<U00021687> /x8e/xa5/xd3/xfc <CJK> +<U0002189C> /x8e/xa5/xd3/xfd <CJK> +<U000218B1> /x8e/xa5/xd3/xfe <CJK> +<U000218C1> /x8e/xa5/xd4/xa1 <CJK> +<U0002189A> /x8e/xa5/xd4/xa2 <CJK> +<U00021892> /x8e/xa5/xd4/xa3 <CJK> +<U000218C2> /x8e/xa5/xd4/xa5 <CJK> +<U00021896> /x8e/xa5/xd4/xa6 <CJK> +<U000218C0> /x8e/xa5/xd4/xa7 <CJK> +<U00021891> /x8e/xa5/xd4/xa8 <CJK> +<U00021895> /x8e/xa5/xd4/xa9 <CJK> +<U000219A2> /x8e/xa5/xd4/xaa <CJK> +<U00021AC3> /x8e/xa5/xd4/xab <CJK> +<U00021AC0> /x8e/xa5/xd4/xac <CJK> +<U00021AC2> /x8e/xa5/xd4/xad <CJK> +<U00020B8A> /x8e/xa5/xd4/xae <CJK> +<U00021BB0> /x8e/xa5/xd4/xaf <CJK> +<U00021C16> /x8e/xa5/xd4/xb0 <CJK> +<U00021F46> /x8e/xa5/xd4/xb1 <CJK> +<U00021F4A> /x8e/xa5/xd4/xb2 <CJK> +<U00021F3E> /x8e/xa5/xd4/xb3 <CJK> +<U00021F45> /x8e/xa5/xd4/xb4 <CJK> +<U00021F42> /x8e/xa5/xd4/xb5 <CJK> +<U3815> /x8e/xa5/xd4/xb6 <CJK> +<U00021F5B> /x8e/xa5/xd4/xb7 <CJK> +<U00021F44> /x8e/xa5/xd4/xb8 <CJK> +<U00022004> /x8e/xa5/xd4/xb9 <CJK> +<U00024022> /x8e/xa5/xd4/xba <CJK> +<U00022155> /x8e/xa5/xd4/xbb <CJK> +<U00022157> /x8e/xa5/xd4/xbc <CJK> +<U00022151> /x8e/xa5/xd4/xbd <CJK> +<U0002214E> /x8e/xa5/xd4/xbe <CJK> +<U0002215A> /x8e/xa5/xd4/xbf <CJK> +<U000222C6> /x8e/xa5/xd4/xc0 <CJK> +<U000222C3> /x8e/xa5/xd4/xc1 <CJK> +<U389C> /x8e/xa5/xd4/xc2 <CJK> +<U000222C5> /x8e/xa5/xd4/xc3 <CJK> +<U000222CC> /x8e/xa5/xd4/xc4 <CJK> +<U00022371> /x8e/xa5/xd4/xc5 <CJK> +<U00022426> /x8e/xa5/xd4/xc6 <CJK> +<U000224B2> /x8e/xa5/xd4/xc7 <CJK> +<U0002257A> /x8e/xa5/xd4/xc8 <CJK> +<U00022584> /x8e/xa5/xd4/xc9 <CJK> +<U0002257B> /x8e/xa5/xd4/xca <CJK> +<U00022874> /x8e/xa5/xd4/xcb <CJK> +<U0002288C> /x8e/xa5/xd4/xcc <CJK> +<U00022851> /x8e/xa5/xd4/xcd <CJK> +<U00022848> /x8e/xa5/xd4/xce <CJK> +<U0002288D> /x8e/xa5/xd4/xcf <CJK> +<U00022892> /x8e/xa5/xd4/xd0 <CJK> +<U00022898> /x8e/xa5/xd4/xd1 <CJK> +<U00022893> /x8e/xa5/xd4/xd2 <CJK> +<U000228B0> /x8e/xa5/xd4/xd3 <CJK> +<U0002284E> /x8e/xa5/xd4/xd4 <CJK> +<U00022896> /x8e/xa5/xd4/xd5 <CJK> +<U00022897> /x8e/xa5/xd4/xd6 <CJK> +<U0002289C> /x8e/xa5/xd4/xd7 <CJK> +<U000228CA> /x8e/xa5/xd4/xd8 <CJK> +<U00022D33> /x8e/xa5/xd4/xd9 <CJK> +<U00022D83> /x8e/xa5/xd4/xda <CJK> +<U00022D84> /x8e/xa5/xd4/xdb <CJK> +<U00022D9A> /x8e/xa5/xd4/xdc <CJK> +<U00022D8C> /x8e/xa5/xd4/xdd <CJK> +<U64CC> /x8e/xa5/xd4/xde <CJK> +<U00022D99> /x8e/xa5/xd4/xdf <CJK> +<U00022EE0> /x8e/xa5/xd4/xe0 <CJK> +<U00022FE4> /x8e/xa5/xd4/xe1 <CJK> +<U00022FF8> /x8e/xa5/xd4/xe2 <CJK> +<U00022FED> /x8e/xa5/xd4/xe3 <CJK> +<U00022FF3> /x8e/xa5/xd4/xe4 <CJK> +<U00022FF4> /x8e/xa5/xd4/xe5 <CJK> +<U00022FF5> /x8e/xa5/xd4/xe6 <CJK> +<U00022FFD> /x8e/xa5/xd4/xe7 <CJK> +<U00023119> /x8e/xa5/xd4/xe8 <CJK> +<U0002329E> /x8e/xa5/xd4/xe9 <CJK> +<U000232C4> /x8e/xa5/xd4/xea <CJK> +<U0002329F> /x8e/xa5/xd4/xeb <CJK> +<U0002339B> /x8e/xa5/xd4/xec <CJK> +<U0002339F> /x8e/xa5/xd4/xed <CJK> +<U0002339A> /x8e/xa5/xd4/xee <CJK> +<U000236AA> /x8e/xa5/xd4/xef <CJK> +<U0002369D> /x8e/xa5/xd4/xf0 <CJK> +<U00023692> /x8e/xa5/xd4/xf1 <CJK> +<U000236A2> /x8e/xa5/xd4/xf2 <CJK> +<U000236AF> /x8e/xa5/xd4/xf3 <CJK> +<U000236EB> /x8e/xa5/xd4/xf4 <CJK> +<U000236A0> /x8e/xa5/xd4/xf5 <CJK> +<U000236A1> /x8e/xa5/xd4/xf6 <CJK> +<U00023694> /x8e/xa5/xd4/xf7 <CJK> +<U00023698> /x8e/xa5/xd4/xf8 <CJK> +<U0002368F> /x8e/xa5/xd4/xf9 <CJK> +<U00023687> /x8e/xa5/xd4/xfa <CJK> +<U00023684> /x8e/xa5/xd4/xfb <CJK> +<U000236A9> /x8e/xa5/xd4/xfc <CJK> +<U0002367C> /x8e/xa5/xd4/xfd <CJK> +<U00023918> /x8e/xa5/xd4/xfe <CJK> +<U00023A5F> /x8e/xa5/xd5/xa1 <CJK> +<U00023A62> /x8e/xa5/xd5/xa2 <CJK> +<U00023A61> /x8e/xa5/xd5/xa3 <CJK> +<U00023AC0> /x8e/xa5/xd5/xa4 <CJK> +<U00023B15> /x8e/xa5/xd5/xa5 <CJK> +<U00023BFC> /x8e/xa5/xd5/xa6 <CJK> +<U00023BF9> /x8e/xa5/xd5/xa7 <CJK> +<U00023FC8> /x8e/xa5/xd5/xa8 <CJK> +<U00023FC9> /x8e/xa5/xd5/xa9 <CJK> +<U00023FDE> /x8e/xa5/xd5/xaa <CJK> +<U00023FCA> /x8e/xa5/xd5/xab <CJK> +<U00023FE2> /x8e/xa5/xd5/xac <CJK> +<U3D64> /x8e/xa5/xd5/xad <CJK> +<U3D6E> /x8e/xa5/xd5/xae <CJK> +<U00024004> /x8e/xa5/xd5/xaf <CJK> +<U00023FCC> /x8e/xa5/xd5/xb0 <CJK> +<U00023FDD> /x8e/xa5/xd5/xb1 <CJK> +<U00023FE4> /x8e/xa5/xd5/xb2 <CJK> +<U00023FD3> /x8e/xa5/xd5/xb3 <CJK> +<U00023FC7> /x8e/xa5/xd5/xb4 <CJK> +<U00023FC6> /x8e/xa5/xd5/xb5 <CJK> +<U3D5F> /x8e/xa5/xd5/xb6 <CJK> +<U00024037> /x8e/xa5/xd5/xb7 <CJK> +<U000243D8> /x8e/xa5/xd5/xb8 <CJK> +<U000243EE> /x8e/xa5/xd5/xb9 <CJK> +<U000243B2> /x8e/xa5/xd5/xba <CJK> +<U000243A3> /x8e/xa5/xd5/xbb <CJK> +<U000243B3> /x8e/xa5/xd5/xbc <CJK> +<U000243ED> /x8e/xa5/xd5/xbd <CJK> +<U000243F8> /x8e/xa5/xd5/xbe <CJK> +<U00024531> /x8e/xa5/xd5/xbf <CJK> +<U0002455B> /x8e/xa5/xd5/xc0 <CJK> +<U00024566> /x8e/xa5/xd5/xc1 <CJK> +<U00024569> /x8e/xa5/xd5/xc2 <CJK> +<U00024596> /x8e/xa5/xd5/xc3 <CJK> +<U0002459B> /x8e/xa5/xd5/xc4 <CJK> +<U000245F7> /x8e/xa5/xd5/xc5 <CJK> +<U000245F3> /x8e/xa5/xd5/xc6 <CJK> +<U000245F4> /x8e/xa5/xd5/xc7 <CJK> +<U000245F5> /x8e/xa5/xd5/xc8 <CJK> +<U000246E2> /x8e/xa5/xd5/xc9 <CJK> +<U000246E7> /x8e/xa5/xd5/xca <CJK> +<U000246E5> /x8e/xa5/xd5/xcb <CJK> +<U000246E9> /x8e/xa5/xd5/xcc <CJK> +<U000246E6> /x8e/xa5/xd5/xcd <CJK> +<U000246E3> /x8e/xa5/xd5/xce <CJK> +<U00024874> /x8e/xa5/xd5/xcf <CJK> +<U0002487F> /x8e/xa5/xd5/xd0 <CJK> +<U0002488F> /x8e/xa5/xd5/xd1 <CJK> +<U00024890> /x8e/xa5/xd5/xd2 <CJK> +<U00024897> /x8e/xa5/xd5/xd3 <CJK> +<U000248A3> /x8e/xa5/xd5/xd4 <CJK> +<U0002488E> /x8e/xa5/xd5/xd5 <CJK> +<U00024898> /x8e/xa5/xd5/xd6 <CJK> +<U0002488C> /x8e/xa5/xd5/xd7 <CJK> +<U00024A42> /x8e/xa5/xd5/xd8 <CJK> +<U00024A44> /x8e/xa5/xd5/xd9 <CJK> +<U00024A69> /x8e/xa5/xd5/xda <CJK> +<U00024A43> /x8e/xa5/xd5/xdb <CJK> +<U00024A68> /x8e/xa5/xd5/xdc <CJK> +<U3EF6> /x8e/xa5/xd5/xdd <CJK> +<U00024B8D> /x8e/xa5/xd5/xde <CJK> +<U00024B88> /x8e/xa5/xd5/xdf <CJK> +<U00024B8B> /x8e/xa5/xd5/xe0 <CJK> +<U00024B89> /x8e/xa5/xd5/xe1 <CJK> +<U00024CCC> /x8e/xa5/xd5/xe2 <CJK> +<U00024D1F> /x8e/xa5/xd5/xe3 <CJK> +<U00024E80> /x8e/xa5/xd5/xe4 <CJK> +<U00024E5E> /x8e/xa5/xd5/xe5 <CJK> +<U00024E67> /x8e/xa5/xd5/xe6 <CJK> +<U00024E68> /x8e/xa5/xd5/xe7 <CJK> +<U00024E65> /x8e/xa5/xd5/xe8 <CJK> +<U764A> /x8e/xa5/xd5/xe9 <CJK> +<U00024E74> /x8e/xa5/xd5/xea <CJK> +<U00024E69> /x8e/xa5/xd5/xeb <CJK> +<U00024E61> /x8e/xa5/xd5/xec <CJK> +<U00024E62> /x8e/xa5/xd5/xed <CJK> +<U00024E6C> /x8e/xa5/xd5/xee <CJK> +<U00024E93> /x8e/xa5/xd5/xef <CJK> +<U00024E86> /x8e/xa5/xd5/xf0 <CJK> +<U00024F9D> /x8e/xa5/xd5/xf1 <CJK> +<U00024F9B> /x8e/xa5/xd5/xf2 <CJK> +<U0002501B> /x8e/xa5/xd5/xf3 <CJK> +<U00025016> /x8e/xa5/xd5/xf4 <CJK> +<U00025019> /x8e/xa5/xd5/xf5 <CJK> +<U00025014> /x8e/xa5/xd5/xf6 <CJK> +<U00025018> /x8e/xa5/xd5/xf7 <CJK> +<U00025015> /x8e/xa5/xd5/xf8 <CJK> +<U00025099> /x8e/xa5/xd5/xf9 <CJK> +<U00025098> /x8e/xa5/xd5/xfa <CJK> +<U0002525D> /x8e/xa5/xd5/xfb <CJK> +<U00025289> /x8e/xa5/xd5/xfc <CJK> +<U0002527A> /x8e/xa5/xd5/xfd <CJK> +<U0002527D> /x8e/xa5/xd5/xfe <CJK> +<U0002524B> /x8e/xa5/xd6/xa1 <CJK> +<U4073> /x8e/xa5/xd6/xa2 <CJK> +<U00025278> /x8e/xa5/xd6/xa3 <CJK> +<U0002527F> /x8e/xa5/xd6/xa4 <CJK> +<U00025277> /x8e/xa5/xd6/xa5 <CJK> +<U0002527E> /x8e/xa5/xd6/xa6 <CJK> +<U00025279> /x8e/xa5/xd6/xa7 <CJK> +<U000252AB> /x8e/xa5/xd6/xa8 <CJK> +<U0002527C> /x8e/xa5/xd6/xa9 <CJK> +<U00025274> /x8e/xa5/xd6/xaa <CJK> +<U00025275> /x8e/xa5/xd6/xab <CJK> +<U000252A7> /x8e/xa5/xd6/xac <CJK> +<U0002538D> /x8e/xa5/xd6/xad <CJK> +<U0002554E> /x8e/xa5/xd6/xae <CJK> +<U00025566> /x8e/xa5/xd6/xaf <CJK> +<U00025561> /x8e/xa5/xd6/xb0 <CJK> +<U0002554D> /x8e/xa5/xd6/xb1 <CJK> +<U0002554F> /x8e/xa5/xd6/xb2 <CJK> +<U40DD> /x8e/xa5/xd6/xb3 <CJK> +<U00025554> /x8e/xa5/xd6/xb4 <CJK> +<U0002557C> /x8e/xa5/xd6/xb5 <CJK> +<U000256DA> /x8e/xa5/xd6/xb6 <CJK> +<U000256DE> /x8e/xa5/xd6/xb7 <CJK> +<U000256D8> /x8e/xa5/xd6/xb8 <CJK> +<U000256DD> /x8e/xa5/xd6/xb9 <CJK> +<U000256DF> /x8e/xa5/xd6/xba <CJK> +<U00025866> /x8e/xa5/xd6/xbb <CJK> +<U00025862> /x8e/xa5/xd6/xbc <CJK> +<U0002585F> /x8e/xa5/xd6/xbd <CJK> +<U00025864> /x8e/xa5/xd6/xbe <CJK> +<U00025863> /x8e/xa5/xd6/xbf <CJK> +<U00025860> /x8e/xa5/xd6/xc0 <CJK> +<U00025888> /x8e/xa5/xd6/xc1 <CJK> +<U0002586A> /x8e/xa5/xd6/xc2 <CJK> +<U00025867> /x8e/xa5/xd6/xc3 <CJK> +<U00025887> /x8e/xa5/xd6/xc4 <CJK> +<U0002583F> /x8e/xa5/xd6/xc5 <CJK> +<U0002586C> /x8e/xa5/xd6/xc6 <CJK> +<U0002586E> /x8e/xa5/xd6/xc7 <CJK> +<U000258AD> /x8e/xa5/xd6/xc8 <CJK> +<U000259F1> /x8e/xa5/xd6/xc9 <CJK> +<U000259F4> /x8e/xa5/xd6/xca <CJK> +<U000259F6> /x8e/xa5/xd6/xcb <CJK> +<U000259F5> /x8e/xa5/xd6/xcc <CJK> +<U000259F8> /x8e/xa5/xd6/xcd <CJK> +<U000259FB> /x8e/xa5/xd6/xce <CJK> +<U000259EC> /x8e/xa5/xd6/xcf <CJK> +<U000259EF> /x8e/xa5/xd6/xd0 <CJK> +<U000259ED> /x8e/xa5/xd6/xd1 <CJK> +<U7AB9> /x8e/xa5/xd6/xd2 <CJK> +<U000259F7> /x8e/xa5/xd6/xd3 <CJK> +<U000259F9> /x8e/xa5/xd6/xd4 <CJK> +<U000259FD> /x8e/xa5/xd6/xd5 <CJK> +<U00025AB1> /x8e/xa5/xd6/xd6 <CJK> +<U00025C36> /x8e/xa5/xd6/xd7 <CJK> +<U00025C1B> /x8e/xa5/xd6/xd8 <CJK> +<U00025C32> /x8e/xa5/xd6/xd9 <CJK> +<U00025C42> /x8e/xa5/xd6/xda <CJK> +<U00025C4D> /x8e/xa5/xd6/xdb <CJK> +<U00025C1F> /x8e/xa5/xd6/xdc <CJK> +<U00025C21> /x8e/xa5/xd6/xdd <CJK> +<U00025C1C> /x8e/xa5/xd6/xde <CJK> +<U00025C31> /x8e/xa5/xd6/xdf <CJK> +<U00025C2E> /x8e/xa5/xd6/xe0 <CJK> +<U00025C47> /x8e/xa5/xd6/xe1 <CJK> +<U00025C3B> /x8e/xa5/xd6/xe2 <CJK> +<U00025C41> /x8e/xa5/xd6/xe3 <CJK> +<U00025C18> /x8e/xa5/xd6/xe4 <CJK> +<U00025C39> /x8e/xa5/xd6/xe5 <CJK> +<U00025C1D> /x8e/xa5/xd6/xe6 <CJK> +<U00025C27> /x8e/xa5/xd6/xe7 <CJK> +<U00025C23> /x8e/xa5/xd6/xe8 <CJK> +<U7BD7> /x8e/xa5/xd6/xe9 <CJK> +<U00025EEE> /x8e/xa5/xd6/xea <CJK> +<U00025EE8> /x8e/xa5/xd6/xeb <CJK> +<U00025EE5> /x8e/xa5/xd6/xec <CJK> +<U00025EEF> /x8e/xa5/xd6/xed <CJK> +<U00025EE4> /x8e/xa5/xd6/xee <CJK> +<U00025EEC> /x8e/xa5/xd6/xef <CJK> +<U00025EF0> /x8e/xa5/xd6/xf0 <CJK> +<U000260D7> /x8e/xa5/xd6/xf1 <CJK> +<U000260D8> /x8e/xa5/xd6/xf2 <CJK> +<U000260D4> /x8e/xa5/xd6/xf3 <CJK> +<U000260CA> /x8e/xa5/xd6/xf4 <CJK> +<U000260D2> /x8e/xa5/xd6/xf5 <CJK> +<U000260CB> /x8e/xa5/xd6/xf6 <CJK> +<U000260D3> /x8e/xa5/xd6/xf7 <CJK> +<U000260E6> /x8e/xa5/xd6/xf8 <CJK> +<U000260E2> /x8e/xa5/xd6/xf9 <CJK> +<U00026249> /x8e/xa5/xd6/xfa <CJK> +<U00026248> /x8e/xa5/xd6/xfb <CJK> +<U000262FF> /x8e/xa5/xd6/xfc <CJK> +<U00026309> /x8e/xa5/xd6/xfd <CJK> +<U000263B0> /x8e/xa5/xd6/xfe <CJK> +<U000263AF> /x8e/xa5/xd7/xa1 <CJK> +<U0002647C> /x8e/xa5/xd7/xa2 <CJK> +<U00026478> /x8e/xa5/xd7/xa3 <CJK> +<U0002647A> /x8e/xa5/xd7/xa4 <CJK> +<U00026472> /x8e/xa5/xd7/xa5 <CJK> +<U00026479> /x8e/xa5/xd7/xa6 <CJK> +<U0002647E> /x8e/xa5/xd7/xa7 <CJK> +<U0002650C> /x8e/xa5/xd7/xa8 <CJK> +<U0002650B> /x8e/xa5/xd7/xa9 <CJK> +<U000265CD> /x8e/xa5/xd7/xaa <CJK> +<U000265BE> /x8e/xa5/xd7/xab <CJK> +<U000265BC> /x8e/xa5/xd7/xac <CJK> +<U000265BF> /x8e/xa5/xd7/xad <CJK> +<U000265C0> /x8e/xa5/xd7/xae <CJK> +<U000265BD> /x8e/xa5/xd7/xaf <CJK> +<U00026838> /x8e/xa5/xd7/xb0 <CJK> +<U00026808> /x8e/xa5/xd7/xb1 <CJK> +<U00026805> /x8e/xa5/xd7/xb2 <CJK> +<U0002683B> /x8e/xa5/xd7/xb3 <CJK> +<U00026810> /x8e/xa5/xd7/xb4 <CJK> +<U0002680C> /x8e/xa5/xd7/xb5 <CJK> +<U0002680D> /x8e/xa5/xd7/xb6 <CJK> +<U00026804> /x8e/xa5/xd7/xb7 <CJK> +<U0002683A> /x8e/xa5/xd7/xb8 <CJK> +<U00026813> /x8e/xa5/xd7/xb9 <CJK> +<U00026837> /x8e/xa5/xd7/xba <CJK> +<U00026839> /x8e/xa5/xd7/xbb <CJK> +<U0002691F> /x8e/xa5/xd7/xbc <CJK> +<U0002694B> /x8e/xa5/xd7/xbd <CJK> +<U000269EE> /x8e/xa5/xd7/xbe <CJK> +<U00026A75> /x8e/xa5/xd7/xbf <CJK> +<U00026A78> /x8e/xa5/xd7/xc0 <CJK> +<U00026A7C> /x8e/xa5/xd7/xc1 <CJK> +<U00026A74> /x8e/xa5/xd7/xc2 <CJK> +<U00026A76> /x8e/xa5/xd7/xc3 <CJK> +<U00026AEA> /x8e/xa5/xd7/xc4 <CJK> +<U00026AEB> /x8e/xa5/xd7/xc5 <CJK> +<U00026DFB> /x8e/xa5/xd7/xc6 <CJK> +<U00026E19> /x8e/xa5/xd7/xc7 <CJK> +<U00026EA7> /x8e/xa5/xd7/xc8 <CJK> +<U00026E8C> /x8e/xa5/xd7/xc9 <CJK> +<U00026EDC> /x8e/xa5/xd7/xca <CJK> +<U00026E98> /x8e/xa5/xd7/xcb <CJK> +<U00026EBE> /x8e/xa5/xd7/xcc <CJK> +<U00026E9E> /x8e/xa5/xd7/xcd <CJK> +<U00026F0F> /x8e/xa5/xd7/xce <CJK> +<U00026E9F> /x8e/xa5/xd7/xcf <CJK> +<U00026EDD> /x8e/xa5/xd7/xd0 <CJK> +<U00026E93> /x8e/xa5/xd7/xd1 <CJK> +<U00026EBB> /x8e/xa5/xd7/xd2 <CJK> +<U00026EB6> /x8e/xa5/xd7/xd3 <CJK> +<U00026E90> /x8e/xa5/xd7/xd4 <CJK> +<U00026EA1> /x8e/xa5/xd7/xd5 <CJK> +<U00026EBD> /x8e/xa5/xd7/xd6 <CJK> +<U00026EDE> /x8e/xa5/xd7/xd7 <CJK> +<U00026E3A> /x8e/xa5/xd7/xd8 <CJK> +<U00026F22> /x8e/xa5/xd7/xd9 <CJK> +<U00026E97> /x8e/xa5/xd7/xda <CJK> +<U00026E94> /x8e/xa5/xd7/xdb <CJK> +<U00026EC3> /x8e/xa5/xd7/xdc <CJK> +<U00026E8E> /x8e/xa5/xd7/xdd <CJK> +<U00026EA8> /x8e/xa5/xd7/xde <CJK> +<U00026E99> /x8e/xa5/xd7/xdf <CJK> +<U00026EAD> /x8e/xa5/xd7/xe0 <CJK> +<U00026E9B> /x8e/xa5/xd7/xe1 <CJK> +<U00026EA2> /x8e/xa5/xd7/xe2 <CJK> +<U00026F21> /x8e/xa5/xd7/xe3 <CJK> +<U00026EAC> /x8e/xa5/xd7/xe4 <CJK> +<U00026F0E> /x8e/xa5/xd7/xe5 <CJK> +<U00026F31> /x8e/xa5/xd7/xe6 <CJK> +<U000271E1> /x8e/xa5/xd7/xe7 <CJK> +<U000271DE> /x8e/xa5/xd7/xe8 <CJK> +<U000271DF> /x8e/xa5/xd7/xe9 <CJK> +<U000271DC> /x8e/xa5/xd7/xea <CJK> +<U000271DD> /x8e/xa5/xd7/xeb <CJK> +<U000271EC> /x8e/xa5/xd7/xec <CJK> +<U000271E7> /x8e/xa5/xd7/xed <CJK> +<U00027369> /x8e/xa5/xd7/xee <CJK> +<U000273B8> /x8e/xa5/xd7/xef <CJK> +<U000273A1> /x8e/xa5/xd7/xf0 <CJK> +<U000273A8> /x8e/xa5/xd7/xf1 <CJK> +<U000273BA> /x8e/xa5/xd7/xf2 <CJK> +<U000273C2> /x8e/xa5/xd7/xf3 <CJK> +<U000273A6> /x8e/xa5/xd7/xf4 <CJK> +<U000273A4> /x8e/xa5/xd7/xf5 <CJK> +<U000273A3> /x8e/xa5/xd7/xf6 <CJK> +<U000273AB> /x8e/xa5/xd7/xf7 <CJK> +<U000273BC> /x8e/xa5/xd7/xf8 <CJK> +<U000273B7> /x8e/xa5/xd7/xf9 <CJK> +<U000273BF> /x8e/xa5/xd7/xfa <CJK> +<U000273AD> /x8e/xa5/xd7/xfb <CJK> +<U000273B1> /x8e/xa5/xd7/xfc <CJK> +<U000273CA> /x8e/xa5/xd7/xfd <CJK> +<U000273C4> /x8e/xa5/xd7/xfe <CJK> +<U000273B9> /x8e/xa5/xd8/xa1 <CJK> +<U000275C8> /x8e/xa5/xd8/xa2 <CJK> +<U000275C6> /x8e/xa5/xd8/xa3 <CJK> +<U000275C7> /x8e/xa5/xd8/xa4 <CJK> +<U0002770A> /x8e/xa5/xd8/xa5 <CJK> +<U0002770D> /x8e/xa5/xd8/xa6 <CJK> +<U000276FB> /x8e/xa5/xd8/xa7 <CJK> +<U00027703> /x8e/xa5/xd8/xa8 <CJK> +<U00027702> /x8e/xa5/xd8/xa9 <CJK> +<U000276FC> /x8e/xa5/xd8/xaa <CJK> +<U000276F9> /x8e/xa5/xd8/xab <CJK> +<U000276F8> /x8e/xa5/xd8/xac <CJK> +<U0002786E> /x8e/xa5/xd8/xad <CJK> +<U00027863> /x8e/xa5/xd8/xae <CJK> +<U00027862> /x8e/xa5/xd8/xaf <CJK> +<U00027861> /x8e/xa5/xd8/xb0 <CJK> +<U0002786B> /x8e/xa5/xd8/xb1 <CJK> +<U4688> /x8e/xa5/xd8/xb2 <CJK> +<U0002786F> /x8e/xa5/xd8/xb3 <CJK> +<U00027866> /x8e/xa5/xd8/xb4 <CJK> +<U0002786C> /x8e/xa5/xd8/xb5 <CJK> +<U0002790E> /x8e/xa5/xd8/xb6 <CJK> +<U00027915> /x8e/xa5/xd8/xb7 <CJK> +<U00027916> /x8e/xa5/xd8/xb8 <CJK> +<U00027910> /x8e/xa5/xd8/xb9 <CJK> +<U00027917> /x8e/xa5/xd8/xba <CJK> +<U00027911> /x8e/xa5/xd8/xbb <CJK> +<U00027A6E> /x8e/xa5/xd8/xbc <CJK> +<U00027A6C> /x8e/xa5/xd8/xbd <CJK> +<U00027A87> /x8e/xa5/xd8/xbe <CJK> +<U00027A83> /x8e/xa5/xd8/xbf <CJK> +<U00027A63> /x8e/xa5/xd8/xc0 <CJK> +<U00027ADC> /x8e/xa5/xd8/xc1 <CJK> +<U00027BC0> /x8e/xa5/xd8/xc2 <CJK> +<U00027BF7> /x8e/xa5/xd8/xc3 <CJK> +<U00027BFA> /x8e/xa5/xd8/xc4 <CJK> +<U00027C70> /x8e/xa5/xd8/xc5 <CJK> +<U00027C6A> /x8e/xa5/xd8/xc6 <CJK> +<U00027C68> /x8e/xa5/xd8/xc7 <CJK> +<U00027C69> /x8e/xa5/xd8/xc8 <CJK> +<U00027C84> /x8e/xa5/xd8/xc9 <CJK> +<U00027CEC> /x8e/xa5/xd8/xca <CJK> +<U00027CE7> /x8e/xa5/xd8/xcb <CJK> +<U00027CEE> /x8e/xa5/xd8/xcc <CJK> +<U00027DBA> /x8e/xa5/xd8/xcd <CJK> +<U00027DB2> /x8e/xa5/xd8/xce <CJK> +<U00027DB5> /x8e/xa5/xd8/xcf <CJK> +<U00027DCB> /x8e/xa5/xd8/xd0 <CJK> +<U0002080B> /x8e/xa5/xd8/xd1 <CJK> +<U00027DD0> /x8e/xa5/xd8/xd2 <CJK> +<U00027E6D> /x8e/xa5/xd8/xd3 <CJK> +<U00027E6C> /x8e/xa5/xd8/xd4 <CJK> +<U47BB> /x8e/xa5/xd8/xd5 <CJK> +<U00027F45> /x8e/xa5/xd8/xd6 <CJK> +<U00027F46> /x8e/xa5/xd8/xd7 <CJK> +<U00027F34> /x8e/xa5/xd8/xd8 <CJK> +<U00027F2C> /x8e/xa5/xd8/xd9 <CJK> +<U00027F35> /x8e/xa5/xd8/xda <CJK> +<U00027F44> /x8e/xa5/xd8/xdb <CJK> +<U47BA> /x8e/xa5/xd8/xdc <CJK> +<U00027F76> /x8e/xa5/xd8/xdd <CJK> +<U000280B1> /x8e/xa5/xd8/xde <CJK> +<U000280AA> /x8e/xa5/xd8/xdf <CJK> +<U000280A1> /x8e/xa5/xd8/xe0 <CJK> +<U000280B2> /x8e/xa5/xd8/xe1 <CJK> +<U4812> /x8e/xa5/xd8/xe2 <CJK> +<U000280A6> /x8e/xa5/xd8/xe3 <CJK> +<U000280B5> /x8e/xa5/xd8/xe4 <CJK> +<U000280B4> /x8e/xa5/xd8/xe5 <CJK> +<U000280B8> /x8e/xa5/xd8/xe6 <CJK> +<U000280AF> /x8e/xa5/xd8/xe7 <CJK> +<U000280B0> /x8e/xa5/xd8/xe8 <CJK> +<U000280A3> /x8e/xa5/xd8/xe9 <CJK> +<U00028262> /x8e/xa5/xd8/xea <CJK> +<U00028264> /x8e/xa5/xd8/xeb <CJK> +<U00028356> /x8e/xa5/xd8/xec <CJK> +<U00028351> /x8e/xa5/xd8/xed <CJK> +<U0002834F> /x8e/xa5/xd8/xee <CJK> +<U00028368> /x8e/xa5/xd8/xef <CJK> +<U0002834C> /x8e/xa5/xd8/xf0 <CJK> +<U00028350> /x8e/xa5/xd8/xf1 <CJK> +<U4861> /x8e/xa5/xd8/xf2 <CJK> +<U00028348> /x8e/xa5/xd8/xf3 <CJK> +<U0002834A> /x8e/xa5/xd8/xf4 <CJK> +<U00028421> /x8e/xa5/xd8/xf5 <CJK> +<U000285E3> /x8e/xa5/xd8/xf6 <CJK> +<U000285B9> /x8e/xa5/xd8/xf7 <CJK> +<U000285DE> /x8e/xa5/xd8/xf8 <CJK> +<U000285B7> /x8e/xa5/xd8/xf9 <CJK> +<U000285E1> /x8e/xa5/xd8/xfa <CJK> +<U000285B6> /x8e/xa5/xd8/xfb <CJK> +<U000285B5> /x8e/xa5/xd8/xfc <CJK> +<U000285DF> /x8e/xa5/xd8/xfd <CJK> +<U48E1> /x8e/xa5/xd8/xfe <CJK> +<U00028797> /x8e/xa5/xd9/xa1 <CJK> +<U0002879A> /x8e/xa5/xd9/xa2 <CJK> +<U0002879B> /x8e/xa5/xd9/xa3 <CJK> +<U00028798> /x8e/xa5/xd9/xa4 <CJK> +<U00028792> /x8e/xa5/xd9/xa5 <CJK> +<U00028793> /x8e/xa5/xd9/xa6 <CJK> +<U000287D7> /x8e/xa5/xd9/xa7 <CJK> +<U00028773> /x8e/xa5/xd9/xa8 <CJK> +<U0002886B> /x8e/xa5/xd9/xa9 <CJK> +<U00028874> /x8e/xa5/xd9/xaa <CJK> +<U00028878> /x8e/xa5/xd9/xab <CJK> +<U0002886D> /x8e/xa5/xd9/xac <CJK> +<U00028918> /x8e/xa5/xd9/xad <CJK> +<U000289E9> /x8e/xa5/xd9/xae <CJK> +<U000289F5> /x8e/xa5/xd9/xaf <CJK> +<U000289EA> /x8e/xa5/xd9/xb0 <CJK> +<U00028A2E> /x8e/xa5/xd9/xb1 <CJK> +<U000289E7> /x8e/xa5/xd9/xb2 <CJK> +<U000289FE> /x8e/xa5/xd9/xb3 <CJK> +<U000289E5> /x8e/xa5/xd9/xb4 <CJK> +<U00028A36> /x8e/xa5/xd9/xb5 <CJK> +<U000289F0> /x8e/xa5/xd9/xb6 <CJK> +<U000289E6> /x8e/xa5/xd9/xb7 <CJK> +<U00028A2C> /x8e/xa5/xd9/xb8 <CJK> +<U00028C89> /x8e/xa5/xd9/xb9 <CJK> +<U00028C95> /x8e/xa5/xd9/xba <CJK> +<U00028C93> /x8e/xa5/xd9/xbb <CJK> +<U00028D4D> /x8e/xa5/xd9/xbc <CJK> +<U00028D4A> /x8e/xa5/xd9/xbd <CJK> +<U00028D4F> /x8e/xa5/xd9/xbe <CJK> +<U00028D50> /x8e/xa5/xd9/xbf <CJK> +<U00028D4B> /x8e/xa5/xd9/xc0 <CJK> +<U00028F2A> /x8e/xa5/xd9/xc1 <CJK> +<U00028F2B> /x8e/xa5/xd9/xc2 <CJK> +<U00028F2F> /x8e/xa5/xd9/xc3 <CJK> +<U00028F2E> /x8e/xa5/xd9/xc4 <CJK> +<U00028F7C> /x8e/xa5/xd9/xc5 <CJK> +<U00028FED> /x8e/xa5/xd9/xc6 <CJK> +<U00028FE2> /x8e/xa5/xd9/xc7 <CJK> +<U000290E0> /x8e/xa5/xd9/xc8 <CJK> +<U000290DC> /x8e/xa5/xd9/xc9 <CJK> +<U000290DA> /x8e/xa5/xd9/xca <CJK> +<U000290D6> /x8e/xa5/xd9/xcb <CJK> +<U000290F4> /x8e/xa5/xd9/xcc <CJK> +<U000290D9> /x8e/xa5/xd9/xcd <CJK> +<U000290D5> /x8e/xa5/xd9/xce <CJK> +<U00029222> /x8e/xa5/xd9/xcf <CJK> +<U00029221> /x8e/xa5/xd9/xd0 <CJK> +<U00029224> /x8e/xa5/xd9/xd1 <CJK> +<U00029225> /x8e/xa5/xd9/xd2 <CJK> +<U00029226> /x8e/xa5/xd9/xd3 <CJK> +<U00029223> /x8e/xa5/xd9/xd4 <CJK> +<U000292AA> /x8e/xa5/xd9/xd5 <CJK> +<U000292AF> /x8e/xa5/xd9/xd6 <CJK> +<U000292B0> /x8e/xa5/xd9/xd7 <CJK> +<U000292AB> /x8e/xa5/xd9/xd8 <CJK> +<U000293AF> /x8e/xa5/xd9/xd9 <CJK> +<U000293B7> /x8e/xa5/xd9/xda <CJK> +<U000293B5> /x8e/xa5/xd9/xdb <CJK> +<U000293B2> /x8e/xa5/xd9/xdc <CJK> +<U000293B3> /x8e/xa5/xd9/xdd <CJK> +<U0002942B> /x8e/xa5/xd9/xde <CJK> +<U000294D8> /x8e/xa5/xd9/xdf <CJK> +<U000294C2> /x8e/xa5/xd9/xe0 <CJK> +<U000294AF> /x8e/xa5/xd9/xe1 <CJK> +<U000294BC> /x8e/xa5/xd9/xe2 <CJK> +<U000294B8> /x8e/xa5/xd9/xe3 <CJK> +<U000294BE> /x8e/xa5/xd9/xe4 <CJK> +<U000294B7> /x8e/xa5/xd9/xe5 <CJK> +<U000294B4> /x8e/xa5/xd9/xe6 <CJK> +<U000294BF> /x8e/xa5/xd9/xe7 <CJK> +<U000294B3> /x8e/xa5/xd9/xe8 <CJK> +<U000294B1> /x8e/xa5/xd9/xe9 <CJK> +<U000294BB> /x8e/xa5/xd9/xea <CJK> +<U000294BD> /x8e/xa5/xd9/xeb <CJK> +<U000294D6> /x8e/xa5/xd9/xec <CJK> +<U000294DD> /x8e/xa5/xd9/xed <CJK> +<U000295D8> /x8e/xa5/xd9/xee <CJK> +<U000295D3> /x8e/xa5/xd9/xef <CJK> +<U000295D5> /x8e/xa5/xd9/xf0 <CJK> +<U000295E3> /x8e/xa5/xd9/xf1 <CJK> +<U000295E2> /x8e/xa5/xd9/xf2 <CJK> +<U000295D9> /x8e/xa5/xd9/xf3 <CJK> +<U000295DE> /x8e/xa5/xd9/xf4 <CJK> +<U000295DF> /x8e/xa5/xd9/xf5 <CJK> +<U000295DA> /x8e/xa5/xd9/xf6 <CJK> +<U000295D4> /x8e/xa5/xd9/xf7 <CJK> +<U000296F3> /x8e/xa5/xd9/xf8 <CJK> +<U000296E2> /x8e/xa5/xd9/xf9 <CJK> +<U0002970D> /x8e/xa5/xd9/xfa <CJK> +<U00029701> /x8e/xa5/xd9/xfb <CJK> +<U00029705> /x8e/xa5/xd9/xfc <CJK> +<U0002971A> /x8e/xa5/xd9/xfd <CJK> +<U00029703> /x8e/xa5/xd9/xfe <CJK> +<U0002971F> /x8e/xa5/xda/xa1 <CJK> +<U00029716> /x8e/xa5/xda/xa2 <CJK> +<U000296FA> /x8e/xa5/xda/xa3 <CJK> +<U000296FC> /x8e/xa5/xda/xa4 <CJK> +<U0002970A> /x8e/xa5/xda/xa5 <CJK> +<U999F> /x8e/xa5/xda/xa6 <CJK> +<U000298BC> /x8e/xa5/xda/xa7 <CJK> +<U000298CA> /x8e/xa5/xda/xa8 <CJK> +<U000298B6> /x8e/xa5/xda/xa9 <CJK> +<U000298C7> /x8e/xa5/xda/xaa <CJK> +<U000298BF> /x8e/xa5/xda/xab <CJK> +<U4B89> /x8e/xa5/xda/xac <CJK> +<U000298B9> /x8e/xa5/xda/xad <CJK> +<U4B8C> /x8e/xa5/xda/xae <CJK> +<U000298B0> /x8e/xa5/xda/xaf <CJK> +<U000298B8> /x8e/xa5/xda/xb0 <CJK> +<U000298BD> /x8e/xa5/xda/xb1 <CJK> +<U00029891> /x8e/xa5/xda/xb2 <CJK> +<U000298BB> /x8e/xa5/xda/xb3 <CJK> +<U000298BE> /x8e/xa5/xda/xb4 <CJK> +<U00029A3E> /x8e/xa5/xda/xb5 <CJK> +<U00029A3D> /x8e/xa5/xda/xb6 <CJK> +<U00029B38> /x8e/xa5/xda/xb7 <CJK> +<U00029B3D> /x8e/xa5/xda/xb8 <CJK> +<U00029B39> /x8e/xa5/xda/xb9 <CJK> +<U00029B33> /x8e/xa5/xda/xba <CJK> +<U00029C33> /x8e/xa5/xda/xbb <CJK> +<U00029CBB> /x8e/xa5/xda/xbc <CJK> +<U00029CC6> /x8e/xa5/xda/xbd <CJK> +<U00029CC5> /x8e/xa5/xda/xbe <CJK> +<U00029CC7> /x8e/xa5/xda/xbf <CJK> +<U00029CCB> /x8e/xa5/xda/xc0 <CJK> +<U00029CA8> /x8e/xa5/xda/xc1 <CJK> +<U00029CC8> /x8e/xa5/xda/xc2 <CJK> +<U00029CBE> /x8e/xa5/xda/xc3 <CJK> +<U00029CC1> /x8e/xa5/xda/xc4 <CJK> +<U00029CBD> /x8e/xa5/xda/xc5 <CJK> +<U00029D82> /x8e/xa5/xda/xc6 <CJK> +<U00029D9E> /x8e/xa5/xda/xc7 <CJK> +<U00029D81> /x8e/xa5/xda/xc8 <CJK> +<U00029D84> /x8e/xa5/xda/xc9 <CJK> +<U9B8D> /x8e/xa5/xda/xca <CJK> +<U00029D96> /x8e/xa5/xda/xcb <CJK> +<U00029D8E> /x8e/xa5/xda/xcc <CJK> +<U00029D88> /x8e/xa5/xda/xcd <CJK> +<U00029D87> /x8e/xa5/xda/xce <CJK> +<U00029FE0> /x8e/xa5/xda/xcf <CJK> +<U0002A00D> /x8e/xa5/xda/xd0 <CJK> +<U00029FDF> /x8e/xa5/xda/xd1 <CJK> +<U00029FE4> /x8e/xa5/xda/xd2 <CJK> +<U00029FE2> /x8e/xa5/xda/xd3 <CJK> +<U00029FDD> /x8e/xa5/xda/xd4 <CJK> +<U00029FEC> /x8e/xa5/xda/xd5 <CJK> +<U00029FDE> /x8e/xa5/xda/xd6 <CJK> +<U00029FE7> /x8e/xa5/xda/xd7 <CJK> +<U00029FEA> /x8e/xa5/xda/xd8 <CJK> +<U00029FE3> /x8e/xa5/xda/xd9 <CJK> +<U0002A25C> /x8e/xa5/xda/xda <CJK> +<U9E77> /x8e/xa5/xda/xdb <CJK> +<U0002A25D> /x8e/xa5/xda/xdc <CJK> +<U0002A29C> /x8e/xa5/xda/xdd <CJK> +<U0002A31D> /x8e/xa5/xda/xde <CJK> +<U0002A39D> /x8e/xa5/xda/xdf <CJK> +<U0002A39E> /x8e/xa5/xda/xe0 <CJK> +<U0002A39B> /x8e/xa5/xda/xe1 <CJK> +<U0002A3B5> /x8e/xa5/xda/xe2 <CJK> +<U0002A3B9> /x8e/xa5/xda/xe3 <CJK> +<U0002A3B6> /x8e/xa5/xda/xe4 <CJK> +<U0002A3F3> /x8e/xa5/xda/xe5 <CJK> +<U0002A3F2> /x8e/xa5/xda/xe6 <CJK> +<U0002A3F4> /x8e/xa5/xda/xe7 <CJK> +<U0002A426> /x8e/xa5/xda/xe8 <CJK> +<U0002A427> /x8e/xa5/xda/xe9 <CJK> +<U0002A425> /x8e/xa5/xda/xea <CJK> +<U0002A506> /x8e/xa5/xda/xeb <CJK> +<U0002A50B> /x8e/xa5/xda/xec <CJK> +<U0002A53A> /x8e/xa5/xda/xed <CJK> +<U0002A53C> /x8e/xa5/xda/xee <CJK> +<U0002040A> /x8e/xa5/xda/xef <CJK> +<U0002040B> /x8e/xa5/xda/xf0 <CJK> +<U000204BF> /x8e/xa5/xda/xf1 <CJK> +<U000204FD> /x8e/xa5/xda/xf2 <CJK> +<U00020618> /x8e/xa5/xda/xf3 <CJK> +<U000291DF> /x8e/xa5/xda/xf4 <CJK> +<U00025390> /x8e/xa5/xda/xf5 <CJK> +<U0002069E> /x8e/xa5/xda/xf6 <CJK> +<U000207FC> /x8e/xa5/xda/xf7 <CJK> +<U00020810> /x8e/xa5/xda/xf8 <CJK> +<U0002080F> /x8e/xa5/xda/xf9 <CJK> +<U0002080D> /x8e/xa5/xda/xfa <CJK> +<U000208B9> /x8e/xa5/xda/xfb <CJK> +<U000208B7> /x8e/xa5/xda/xfc <CJK> +<U000208BA> /x8e/xa5/xda/xfd <CJK> +<U0002090A> /x8e/xa5/xda/xfe <CJK> +<U00021041> /x8e/xa5/xdb/xa1 <CJK> +<U0002108B> /x8e/xa5/xdb/xa2 <CJK> +<U00021046> /x8e/xa5/xdb/xa3 <CJK> +<U00021053> /x8e/xa5/xdb/xa4 <CJK> +<U000210E2> /x8e/xa5/xdb/xa5 <CJK> +<U0002103F> /x8e/xa5/xdb/xa6 <CJK> +<U00020F7C> /x8e/xa5/xdb/xa7 <CJK> +<U0002104B> /x8e/xa5/xdb/xa8 <CJK> +<U0002104E> /x8e/xa5/xdb/xa9 <CJK> +<U0002108A> /x8e/xa5/xdb/xaa <CJK> +<U00021047> /x8e/xa5/xdb/xab <CJK> +<U00021493> /x8e/xa5/xdb/xac <CJK> +<U00027DCE> /x8e/xa5/xdb/xad <CJK> +<U0002148C> /x8e/xa5/xdb/xae <CJK> +<U000214AF> /x8e/xa5/xdb/xaf <CJK> +<U000214C9> /x8e/xa5/xdb/xb0 <CJK> +<U000215C6> /x8e/xa5/xdb/xb1 <CJK> +<U000215C8> /x8e/xa5/xdb/xb2 <CJK> +<U00021691> /x8e/xa5/xdb/xb3 <CJK> +<U000218CF> /x8e/xa5/xdb/xb4 <CJK> +<U000218D4> /x8e/xa5/xdb/xb5 <CJK> +<U000218CE> /x8e/xa5/xdb/xb6 <CJK> +<U00021ADD> /x8e/xa5/xdb/xb7 <CJK> +<U00021AD4> /x8e/xa5/xdb/xb8 <CJK> +<U00021F49> /x8e/xa5/xdb/xb9 <CJK> +<U00021F63> /x8e/xa5/xdb/xba <CJK> +<U00021F5D> /x8e/xa5/xdb/xbb <CJK> +<U381A> /x8e/xa5/xdb/xbc <CJK> +<U00021F67> /x8e/xa5/xdb/xbd <CJK> +<U00021FBB> /x8e/xa5/xdb/xbe <CJK> +<U00021F60> /x8e/xa5/xdb/xbf <CJK> +<U00021F80> /x8e/xa5/xdb/xc0 <CJK> +<U0002215F> /x8e/xa5/xdb/xc1 <CJK> +<U00022160> /x8e/xa5/xdb/xc2 <CJK> +<U000222DA> /x8e/xa5/xdb/xc3 <CJK> +<U000222D2> /x8e/xa5/xdb/xc4 <CJK> +<U000222DD> /x8e/xa5/xdb/xc5 <CJK> +<U0002258E> /x8e/xa5/xdb/xc6 <CJK> +<U00022588> /x8e/xa5/xdb/xc7 <CJK> +<U0002256C> /x8e/xa5/xdb/xc8 <CJK> +<U0002289E> /x8e/xa5/xdb/xc9 <CJK> +<U000228C9> /x8e/xa5/xdb/xca <CJK> +<U000228A4> /x8e/xa5/xdb/xcb <CJK> +<U3998> /x8e/xa5/xdb/xcc <CJK> +<U000228D9> /x8e/xa5/xdb/xcd <CJK> +<U000228D2> /x8e/xa5/xdb/xce <CJK> +<U000228DA> /x8e/xa5/xdb/xcf <CJK> +<U000228DD> /x8e/xa5/xdb/xd0 <CJK> +<U000228CE> /x8e/xa5/xdb/xd1 <CJK> +<U000228FC> /x8e/xa5/xdb/xd2 <CJK> +<U00022A14> /x8e/xa5/xdb/xd3 <CJK> +<U00022A60> /x8e/xa5/xdb/xd4 <CJK> +<U00022DD7> /x8e/xa5/xdb/xd5 <CJK> +<U00022DCB> /x8e/xa5/xdb/xd6 <CJK> +<U00022DCD> /x8e/xa5/xdb/xd7 <CJK> +<U00022DD5> /x8e/xa5/xdb/xd8 <CJK> +<U00022EE7> /x8e/xa5/xdb/xd9 <CJK> +<U00023000> /x8e/xa5/xdb/xda <CJK> +<U0002300A> /x8e/xa5/xdb/xdb <CJK> +<U0002300F> /x8e/xa5/xdb/xdc <CJK> +<U00023002> /x8e/xa5/xdb/xdd <CJK> +<U00023001> /x8e/xa5/xdb/xde <CJK> +<U0002311D> /x8e/xa5/xdb/xdf <CJK> +<U000232CA> /x8e/xa5/xdb/xe0 <CJK> +<U000232CB> /x8e/xa5/xdb/xe1 <CJK> +<U000232CD> /x8e/xa5/xdb/xe2 <CJK> +<U0002334F> /x8e/xa5/xdb/xe3 <CJK> +<U0002339C> /x8e/xa5/xdb/xe4 <CJK> +<U00023680> /x8e/xa5/xdb/xe5 <CJK> +<U0002370D> /x8e/xa5/xdb/xe6 <CJK> +<U00023702> /x8e/xa5/xdb/xe7 <CJK> +<U3BF1> /x8e/xa5/xdb/xe8 <CJK> +<U00023707> /x8e/xa5/xdb/xe9 <CJK> +<U000236F7> /x8e/xa5/xdb/xea <CJK> +<U000236F8> /x8e/xa5/xdb/xeb <CJK> +<U000236FD> /x8e/xa5/xdb/xec <CJK> +<U00023724> /x8e/xa5/xdb/xed <CJK> +<U000236FB> /x8e/xa5/xdb/xee <CJK> +<U00023739> /x8e/xa5/xdb/xef <CJK> +<U0002373A> /x8e/xa5/xdb/xf0 <CJK> +<U00023922> /x8e/xa5/xdb/xf1 <CJK> +<U00023A6A> /x8e/xa5/xdb/xf3 <CJK> +<U00023A6D> /x8e/xa5/xdb/xf4 <CJK> +<U00023A74> /x8e/xa5/xdb/xf5 <CJK> +<U00023C0E> /x8e/xa5/xdb/xf6 <CJK> +<U00023FDF> /x8e/xa5/xdb/xf7 <CJK> +<U0002402B> /x8e/xa5/xdb/xf8 <CJK> +<U00023FE3> /x8e/xa5/xdb/xf9 <CJK> +<U00024026> /x8e/xa5/xdb/xfa <CJK> +<U0002402A> /x8e/xa5/xdb/xfb <CJK> +<U00024023> /x8e/xa5/xdb/xfc <CJK> +<U00024035> /x8e/xa5/xdb/xfd <CJK> +<U0002404A> /x8e/xa5/xdb/xfe <CJK> +<U000243FD> /x8e/xa5/xdc/xa1 <CJK> +<U00024400> /x8e/xa5/xdc/xa2 <CJK> +<U0002441E> /x8e/xa5/xdc/xa3 <CJK> +<U000243FF> /x8e/xa5/xdc/xa4 <CJK> +<U0002459E> /x8e/xa5/xdc/xa5 <CJK> +<U000245FA> /x8e/xa5/xdc/xa6 <CJK> +<U000246F1> /x8e/xa5/xdc/xa7 <CJK> +<U00024895> /x8e/xa5/xdc/xa8 <CJK> +<U000248A8> /x8e/xa5/xdc/xa9 <CJK> +<U000248A6> /x8e/xa5/xdc/xaa <CJK> +<U00024A6E> /x8e/xa5/xdc/xab <CJK> +<U00024A83> /x8e/xa5/xdc/xac <CJK> +<U00024A6D> /x8e/xa5/xdc/xad <CJK> +<U00024B8F> /x8e/xa5/xdc/xae <CJK> +<U3F6A> /x8e/xa5/xdc/xaf <CJK> +<U00024CDF> /x8e/xa5/xdc/xb0 <CJK> +<U00024CD5> /x8e/xa5/xdc/xb1 <CJK> +<U00024CE0> /x8e/xa5/xdc/xb2 <CJK> +<U00024CD3> /x8e/xa5/xdc/xb3 <CJK> +<U00024CD8> /x8e/xa5/xdc/xb4 <CJK> +<U00024E8C> /x8e/xa5/xdc/xb5 <CJK> +<U764B> /x8e/xa5/xdc/xb6 <CJK> +<U00024E94> /x8e/xa5/xdc/xb7 <CJK> +<U00024E96> /x8e/xa5/xdc/xb8 <CJK> +<U00024E85> /x8e/xa5/xdc/xb9 <CJK> +<U00024E8F> /x8e/xa5/xdc/xba <CJK> +<U00024EA9> /x8e/xa5/xdc/xbb <CJK> +<U00024E8E> /x8e/xa5/xdc/xbc <CJK> +<U00024E90> /x8e/xa5/xdc/xbd <CJK> +<U00024EB8> /x8e/xa5/xdc/xbe <CJK> +<U00024EC3> /x8e/xa5/xdc/xbf <CJK> +<U00024EBB> /x8e/xa5/xdc/xc0 <CJK> +<U00024FA5> /x8e/xa5/xdc/xc1 <CJK> +<U00024FA2> /x8e/xa5/xdc/xc2 <CJK> +<U76A2> /x8e/xa5/xdc/xc3 <CJK> +<U00024FA3> /x8e/xa5/xdc/xc4 <CJK> +<U000250B5> /x8e/xa5/xdc/xc5 <CJK> +<U000250AC> /x8e/xa5/xdc/xc6 <CJK> +<U000250A8> /x8e/xa5/xdc/xc7 <CJK> +<U000252AD> /x8e/xa5/xdc/xc8 <CJK> +<U000252B8> /x8e/xa5/xdc/xc9 <CJK> +<U000252B4> /x8e/xa5/xdc/xca <CJK> +<U000252AE> /x8e/xa5/xdc/xcb <CJK> +<U000252B6> /x8e/xa5/xdc/xcc <CJK> +<U4485> /x8e/xa5/xdc/xcd <CJK> +<U000252C1> /x8e/xa5/xdc/xce <CJK> +<U000252BF> /x8e/xa5/xdc/xcf <CJK> +<U00025392> /x8e/xa5/xdc/xd0 <CJK> +<U00025400> /x8e/xa5/xdc/xd1 <CJK> +<U00025401> /x8e/xa5/xdc/xd2 <CJK> +<U00025575> /x8e/xa5/xdc/xd3 <CJK> +<U00025572> /x8e/xa5/xdc/xd4 <CJK> +<U00025578> /x8e/xa5/xdc/xd5 <CJK> +<U00025570> /x8e/xa5/xdc/xd6 <CJK> +<U0002557E> /x8e/xa5/xdc/xd7 <CJK> +<U0002557D> /x8e/xa5/xdc/xd8 <CJK> +<U0002557F> /x8e/xa5/xdc/xd9 <CJK> +<U000256EF> /x8e/xa5/xdc/xda <CJK> +<U0002586D> /x8e/xa5/xdc/xdb <CJK> +<U0002588E> /x8e/xa5/xdc/xdc <CJK> +<U0002588F> /x8e/xa5/xdc/xdd <CJK> +<U0002588A> /x8e/xa5/xdc/xde <CJK> +<U0002588D> /x8e/xa5/xdc/xdf <CJK> +<U00025895> /x8e/xa5/xdc/xe0 <CJK> +<U0002588B> /x8e/xa5/xdc/xe1 <CJK> +<U0002588C> /x8e/xa5/xdc/xe2 <CJK> +<U000258B0> /x8e/xa5/xdc/xe3 <CJK> +<U00025893> /x8e/xa5/xdc/xe4 <CJK> +<U000259FC> /x8e/xa5/xdc/xe5 <CJK> +<U00025A15> /x8e/xa5/xdc/xe6 <CJK> +<U00025A0E> /x8e/xa5/xdc/xe7 <CJK> +<U00025A18> /x8e/xa5/xdc/xe8 <CJK> +<U00025A11> /x8e/xa5/xdc/xe9 <CJK> +<U00025A0D> /x8e/xa5/xdc/xea <CJK> +<U00025ABB> /x8e/xa5/xdc/xeb <CJK> +<U00025AB3> /x8e/xa5/xdc/xec <CJK> +<U4239> /x8e/xa5/xdc/xed <CJK> +<U00025CA1> /x8e/xa5/xdc/xee <CJK> +<U00025C9A> /x8e/xa5/xdc/xef <CJK> +<U00025C84> /x8e/xa5/xdc/xf0 <CJK> +<U00025CA0> /x8e/xa5/xdc/xf1 <CJK> +<U00025C86> /x8e/xa5/xdc/xf2 <CJK> +<U00025C9D> /x8e/xa5/xdc/xf3 <CJK> +<U00025CAA> /x8e/xa5/xdc/xf4 <CJK> +<U00025C78> /x8e/xa5/xdc/xf5 <CJK> +<U00025C8D> /x8e/xa5/xdc/xf6 <CJK> +<U00025C8A> /x8e/xa5/xdc/xf7 <CJK> +<U00025CA6> /x8e/xa5/xdc/xf8 <CJK> +<U00025C7A> /x8e/xa5/xdc/xf9 <CJK> +<U00025C97> /x8e/xa5/xdc/xfa <CJK> +<U00025C88> /x8e/xa5/xdc/xfb <CJK> +<U00025C8E> /x8e/xa5/xdc/xfc <CJK> +<U423D> /x8e/xa5/xdc/xfd <CJK> +<U4244> /x8e/xa5/xdc/xfe <CJK> +<U00025C76> /x8e/xa5/xdd/xa1 <CJK> +<U00025C81> /x8e/xa5/xdd/xa2 <CJK> +<U00025C85> /x8e/xa5/xdd/xa3 <CJK> +<U00025C75> /x8e/xa5/xdd/xa4 <CJK> +<U00025CA8> /x8e/xa5/xdd/xa5 <CJK> +<U00025C8F> /x8e/xa5/xdd/xa6 <CJK> +<U00025C91> /x8e/xa5/xdd/xa7 <CJK> +<U00025CA2> /x8e/xa5/xdd/xa8 <CJK> +<U00025C9C> /x8e/xa5/xdd/xa9 <CJK> +<U00025C89> /x8e/xa5/xdd/xaa <CJK> +<U00025C7F> /x8e/xa5/xdd/xab <CJK> +<U00025C96> /x8e/xa5/xdd/xac <CJK> +<U00025C79> /x8e/xa5/xdd/xad <CJK> +<U00025C9F> /x8e/xa5/xdd/xae <CJK> +<U00025CA7> /x8e/xa5/xdd/xaf <CJK> +<U4246> /x8e/xa5/xdd/xb0 <CJK> +<U00025C87> /x8e/xa5/xdd/xb1 <CJK> +<U00025C9B> /x8e/xa5/xdd/xb2 <CJK> +<U00025CA5> /x8e/xa5/xdd/xb3 <CJK> +<U00025C8B> /x8e/xa5/xdd/xb4 <CJK> +<U00025CC9> /x8e/xa5/xdd/xb5 <CJK> +<U00025EFF> /x8e/xa5/xdd/xb6 <CJK> +<U00025F03> /x8e/xa5/xdd/xb7 <CJK> +<U00025F00> /x8e/xa5/xdd/xb8 <CJK> +<U00025F02> /x8e/xa5/xdd/xb9 <CJK> +<U00025F04> /x8e/xa5/xdd/xba <CJK> +<U00025F05> /x8e/xa5/xdd/xbb <CJK> +<U00025EE6> /x8e/xa5/xdd/xbc <CJK> +<U00025F1F> /x8e/xa5/xdd/xbd <CJK> +<U00026114> /x8e/xa5/xdd/xbe <CJK> +<U430E> /x8e/xa5/xdd/xbf <CJK> +<U0002610C> /x8e/xa5/xdd/xc0 <CJK> +<U0002610F> /x8e/xa5/xdd/xc1 <CJK> +<U00026119> /x8e/xa5/xdd/xc2 <CJK> +<U0002610B> /x8e/xa5/xdd/xc3 <CJK> +<U00026113> /x8e/xa5/xdd/xc4 <CJK> +<U000260D5> /x8e/xa5/xdd/xc5 <CJK> +<U4310> /x8e/xa5/xdd/xc6 <CJK> +<U0002611C> /x8e/xa5/xdd/xc7 <CJK> +<U00026250> /x8e/xa5/xdd/xc8 <CJK> +<U0002624E> /x8e/xa5/xdd/xc9 <CJK> +<U00026312> /x8e/xa5/xdd/xca <CJK> +<U000263B9> /x8e/xa5/xdd/xcb <CJK> +<U00026485> /x8e/xa5/xdd/xcc <CJK> +<U00026488> /x8e/xa5/xdd/xcd <CJK> +<U00026490> /x8e/xa5/xdd/xce <CJK> +<U00026513> /x8e/xa5/xdd/xcf <CJK> +<U000265D0> /x8e/xa5/xdd/xd0 <CJK> +<U000265D1> /x8e/xa5/xdd/xd1 <CJK> +<U000265D2> /x8e/xa5/xdd/xd2 <CJK> +<U000265D7> /x8e/xa5/xdd/xd3 <CJK> +<U000265D6> /x8e/xa5/xdd/xd4 <CJK> +<U000265E5> /x8e/xa5/xdd/xd5 <CJK> +<U00026846> /x8e/xa5/xdd/xd6 <CJK> +<U0002686B> /x8e/xa5/xdd/xd7 <CJK> +<U00026845> /x8e/xa5/xdd/xd8 <CJK> +<U0002683F> /x8e/xa5/xdd/xd9 <CJK> +<U0002683E> /x8e/xa5/xdd/xda <CJK> +<U443E> /x8e/xa5/xdd/xdb <CJK> +<U0002686A> /x8e/xa5/xdd/xdc <CJK> +<U00026868> /x8e/xa5/xdd/xdd <CJK> +<U0002684C> /x8e/xa5/xdd/xde <CJK> +<U00026923> /x8e/xa5/xdd/xdf <CJK> +<U00026922> /x8e/xa5/xdd/xe0 <CJK> +<U00026997> /x8e/xa5/xdd/xe1 <CJK> +<U00026991> /x8e/xa5/xdd/xe2 <CJK> +<U00025AB5> /x8e/xa5/xdd/xe3 <CJK> +<U00026998> /x8e/xa5/xdd/xe4 <CJK> +<U0002699C> /x8e/xa5/xdd/xe5 <CJK> +<U00026A89> /x8e/xa5/xdd/xe6 <CJK> +<U4484> /x8e/xa5/xdd/xe7 <CJK> +<U00026A8B> /x8e/xa5/xdd/xe8 <CJK> +<U00026A8A> /x8e/xa5/xdd/xe9 <CJK> +<U00026A8D> /x8e/xa5/xdd/xea <CJK> +<U00026A8E> /x8e/xa5/xdd/xeb <CJK> +<U00026A88> /x8e/xa5/xdd/xec <CJK> +<U00026F4E> /x8e/xa5/xdd/xed <CJK> +<U00026F44> /x8e/xa5/xdd/xee <CJK> +<U00026F37> /x8e/xa5/xdd/xef <CJK> +<U00026F75> /x8e/xa5/xdd/xf0 <CJK> +<U00026F54> /x8e/xa5/xdd/xf1 <CJK> +<U00026F76> /x8e/xa5/xdd/xf2 <CJK> +<U00026F34> /x8e/xa5/xdd/xf3 <CJK> +<U00026F6B> /x8e/xa5/xdd/xf4 <CJK> +<U00026F32> /x8e/xa5/xdd/xf5 <CJK> +<U00026F57> /x8e/xa5/xdd/xf6 <CJK> +<U00026F52> /x8e/xa5/xdd/xf7 <CJK> +<U00026F45> /x8e/xa5/xdd/xf8 <CJK> +<U4549> /x8e/xa5/xdd/xf9 <CJK> +<U00026EB1> /x8e/xa5/xdd/xfa <CJK> +<U00026F4B> /x8e/xa5/xdd/xfb <CJK> +<U00026F47> /x8e/xa5/xdd/xfc <CJK> +<U00026F33> /x8e/xa5/xdd/xfd <CJK> +<U00026F40> /x8e/xa5/xdd/xfe <CJK> +<U00026F3C> /x8e/xa5/xde/xa1 <CJK> +<U00026F43> /x8e/xa5/xde/xa2 <CJK> +<U00026F4F> /x8e/xa5/xde/xa3 <CJK> +<U00026F55> /x8e/xa5/xde/xa4 <CJK> +<U00026F41> /x8e/xa5/xde/xa5 <CJK> +<U00026FB2> /x8e/xa5/xde/xa6 <CJK> +<U00026FC0> /x8e/xa5/xde/xa7 <CJK> +<U00027434> /x8e/xa5/xde/xa8 <CJK> +<U000273F9> /x8e/xa5/xde/xa9 <CJK> +<U00027419> /x8e/xa5/xde/xaa <CJK> +<U0002740D> /x8e/xa5/xde/xab <CJK> +<U000273FA> /x8e/xa5/xde/xac <CJK> +<U0002741E> /x8e/xa5/xde/xad <CJK> +<U0002741F> /x8e/xa5/xde/xae <CJK> +<U0002740E> /x8e/xa5/xde/xaf <CJK> +<U00027440> /x8e/xa5/xde/xb0 <CJK> +<U00027408> /x8e/xa5/xde/xb1 <CJK> +<U45DF> /x8e/xa5/xde/xb2 <CJK> +<U00027413> /x8e/xa5/xde/xb3 <CJK> +<U0002744C> /x8e/xa5/xde/xb4 <CJK> +<U45F0> /x8e/xa5/xde/xb5 <CJK> +<U000275CC> /x8e/xa5/xde/xb6 <CJK> +<U000275CB> /x8e/xa5/xde/xb7 <CJK> +<U00027724> /x8e/xa5/xde/xb8 <CJK> +<U00027725> /x8e/xa5/xde/xb9 <CJK> +<U0002773D> /x8e/xa5/xde/xba <CJK> +<U00027720> /x8e/xa5/xde/xbb <CJK> +<U00027727> /x8e/xa5/xde/xbc <CJK> +<U00027726> /x8e/xa5/xde/xbd <CJK> +<U0002771D> /x8e/xa5/xde/xbe <CJK> +<U0002771E> /x8e/xa5/xde/xbf <CJK> +<U00027732> /x8e/xa5/xde/xc0 <CJK> +<U0002776C> /x8e/xa5/xde/xc1 <CJK> +<U00027759> /x8e/xa5/xde/xc2 <CJK> +<U468A> /x8e/xa5/xde/xc3 <CJK> +<U0002787A> /x8e/xa5/xde/xc4 <CJK> +<U00027879> /x8e/xa5/xde/xc5 <CJK> +<U0002791B> /x8e/xa5/xde/xc6 <CJK> +<U0002792E> /x8e/xa5/xde/xc7 <CJK> +<U00027923> /x8e/xa5/xde/xc8 <CJK> +<U00027920> /x8e/xa5/xde/xc9 <CJK> +<U0002791F> /x8e/xa5/xde/xca <CJK> +<U00027AB6> /x8e/xa5/xde/xcb <CJK> +<U00027AB9> /x8e/xa5/xde/xcc <CJK> +<U00027AA1> /x8e/xa5/xde/xcd <CJK> +<U00027AA3> /x8e/xa5/xde/xce <CJK> +<U00027AA8> /x8e/xa5/xde/xcf <CJK> +<U00027AAF> /x8e/xa5/xde/xd0 <CJK> +<U00027A9A> /x8e/xa5/xde/xd1 <CJK> +<U00027A99> /x8e/xa5/xde/xd2 <CJK> +<U00027AA2> /x8e/xa5/xde/xd3 <CJK> +<U00027A9D> /x8e/xa5/xde/xd4 <CJK> +<U4702> /x8e/xa5/xde/xd5 <CJK> +<U00027AAB> /x8e/xa5/xde/xd6 <CJK> +<U00027BC9> /x8e/xa5/xde/xd7 <CJK> +<U00027BFE> /x8e/xa5/xde/xd8 <CJK> +<U00027C00> /x8e/xa5/xde/xd9 <CJK> +<U00027BFC> /x8e/xa5/xde/xda <CJK> +<U00027C07> /x8e/xa5/xde/xdb <CJK> +<U00027C75> /x8e/xa5/xde/xdc <CJK> +<U00027C72> /x8e/xa5/xde/xdd <CJK> +<U00027C73> /x8e/xa5/xde/xde <CJK> +<U00027C74> /x8e/xa5/xde/xdf <CJK> +<U00027CFA> /x8e/xa5/xde/xe0 <CJK> +<U00027CFC> /x8e/xa5/xde/xe1 <CJK> +<U00027CF8> /x8e/xa5/xde/xe2 <CJK> +<U00027CF6> /x8e/xa5/xde/xe3 <CJK> +<U00027CFB> /x8e/xa5/xde/xe4 <CJK> +<U00027DCD> /x8e/xa5/xde/xe5 <CJK> +<U00027DD1> /x8e/xa5/xde/xe6 <CJK> +<U00027DCF> /x8e/xa5/xde/xe7 <CJK> +<U00027E74> /x8e/xa5/xde/xe8 <CJK> +<U00027E72> /x8e/xa5/xde/xe9 <CJK> +<U00027E73> /x8e/xa5/xde/xea <CJK> +<U00027F54> /x8e/xa5/xde/xeb <CJK> +<U00027F51> /x8e/xa5/xde/xec <CJK> +<U47C0> /x8e/xa5/xde/xed <CJK> +<U00027F53> /x8e/xa5/xde/xee <CJK> +<U00027F49> /x8e/xa5/xde/xef <CJK> +<U00027F4C> /x8e/xa5/xde/xf0 <CJK> +<U00027F4A> /x8e/xa5/xde/xf1 <CJK> +<U00027F4F> /x8e/xa5/xde/xf2 <CJK> +<U00027F56> /x8e/xa5/xde/xf3 <CJK> +<U00028100> /x8e/xa5/xde/xf4 <CJK> +<U000280D5> /x8e/xa5/xde/xf5 <CJK> +<U000280D7> /x8e/xa5/xde/xf6 <CJK> +<U000280FF> /x8e/xa5/xde/xf7 <CJK> +<U000280D9> /x8e/xa5/xde/xf8 <CJK> +<U000280E3> /x8e/xa5/xde/xf9 <CJK> +<U000280D3> /x8e/xa5/xde/xfa <CJK> +<U4815> /x8e/xa5/xde/xfb <CJK> +<U000280D8> /x8e/xa5/xde/xfc <CJK> +<U000280D4> /x8e/xa5/xde/xfd <CJK> +<U000280DE> /x8e/xa5/xde/xfe <CJK> +<U00028271> /x8e/xa5/xdf/xa1 <CJK> +<U00028374> /x8e/xa5/xdf/xa2 <CJK> +<U00028388> /x8e/xa5/xdf/xa3 <CJK> +<U0002837F> /x8e/xa5/xdf/xa4 <CJK> +<U0002836B> /x8e/xa5/xdf/xa5 <CJK> +<U00028387> /x8e/xa5/xdf/xa6 <CJK> +<U00028379> /x8e/xa5/xdf/xa7 <CJK> +<U00028378> /x8e/xa5/xdf/xa8 <CJK> +<U00028389> /x8e/xa5/xdf/xa9 <CJK> +<U00028380> /x8e/xa5/xdf/xaa <CJK> +<U00028376> /x8e/xa5/xdf/xab <CJK> +<U00028429> /x8e/xa5/xdf/xac <CJK> +<U00028428> /x8e/xa5/xdf/xad <CJK> +<U0002842F> /x8e/xa5/xdf/xae <CJK> +<U000285E5> /x8e/xa5/xdf/xaf <CJK> +<U00028604> /x8e/xa5/xdf/xb0 <CJK> +<U00028603> /x8e/xa5/xdf/xb1 <CJK> +<U000285F0> /x8e/xa5/xdf/xb2 <CJK> +<U000285E8> /x8e/xa5/xdf/xb3 <CJK> +<U000285EA> /x8e/xa5/xdf/xb4 <CJK> +<U000285F1> /x8e/xa5/xdf/xb5 <CJK> +<U00028601> /x8e/xa5/xdf/xb6 <CJK> +<U00028602> /x8e/xa5/xdf/xb7 <CJK> +<U000287A9> /x8e/xa5/xdf/xb8 <CJK> +<U000287AB> /x8e/xa5/xdf/xb9 <CJK> +<U000287B7> /x8e/xa5/xdf/xba <CJK> +<U000287B6> /x8e/xa5/xdf/xbb <CJK> +<U48E2> /x8e/xa5/xdf/xbc <CJK> +<U000288A0> /x8e/xa5/xdf/xbd <CJK> +<U0002888E> /x8e/xa5/xdf/xbe <CJK> +<U00028886> /x8e/xa5/xdf/xbf <CJK> +<U00028887> /x8e/xa5/xdf/xc0 <CJK> +<U00028885> /x8e/xa5/xdf/xc1 <CJK> +<U0002888B> /x8e/xa5/xdf/xc2 <CJK> +<U00028888> /x8e/xa5/xdf/xc3 <CJK> +<U00028890> /x8e/xa5/xdf/xc4 <CJK> +<U0002891A> /x8e/xa5/xdf/xc5 <CJK> +<U00028934> /x8e/xa5/xdf/xc6 <CJK> +<U00028A37> /x8e/xa5/xdf/xc7 <CJK> +<U00028A2F> /x8e/xa5/xdf/xc8 <CJK> +<U00028A30> /x8e/xa5/xdf/xc9 <CJK> +<U00028A39> /x8e/xa5/xdf/xca <CJK> +<U00028A34> /x8e/xa5/xdf/xcb <CJK> +<U00028A33> /x8e/xa5/xdf/xcc <CJK> +<U00028A85> /x8e/xa5/xdf/xcd <CJK> +<U00028A84> /x8e/xa5/xdf/xce <CJK> +<U00028A3A> /x8e/xa5/xdf/xcf <CJK> +<U00028C9F> /x8e/xa5/xdf/xd0 <CJK> +<U00028D69> /x8e/xa5/xdf/xd1 <CJK> +<U00028D6C> /x8e/xa5/xdf/xd2 <CJK> +<U00028D6A> /x8e/xa5/xdf/xd3 <CJK> +<U00028D67> /x8e/xa5/xdf/xd4 <CJK> +<U00028D6B> /x8e/xa5/xdf/xd5 <CJK> +<U00028F3F> /x8e/xa5/xdf/xd6 <CJK> +<U00028F40> /x8e/xa5/xdf/xd7 <CJK> +<U0002900B> /x8e/xa5/xdf/xd8 <CJK> +<U000290D2> /x8e/xa5/xdf/xd9 <CJK> +<U000290F8> /x8e/xa5/xdf/xda <CJK> +<U00029101> /x8e/xa5/xdf/xdb <CJK> +<U000290FA> /x8e/xa5/xdf/xdc <CJK> +<U00029116> /x8e/xa5/xdf/xdd <CJK> +<U0002922C> /x8e/xa5/xdf/xdf <CJK> +<U0002922D> /x8e/xa5/xdf/xe0 <CJK> +<U0002922F> /x8e/xa5/xdf/xe1 <CJK> +<U0002922E> /x8e/xa5/xdf/xe2 <CJK> +<U000292C1> /x8e/xa5/xdf/xe3 <CJK> +<U000292F5> /x8e/xa5/xdf/xe4 <CJK> +<U000292C4> /x8e/xa5/xdf/xe5 <CJK> +<U000292DE> /x8e/xa5/xdf/xe6 <CJK> +<U000292CC> /x8e/xa5/xdf/xe7 <CJK> +<U000292D2> /x8e/xa5/xdf/xe8 <CJK> +<U000292C2> /x8e/xa5/xdf/xe9 <CJK> +<U000292CD> /x8e/xa5/xdf/xea <CJK> +<U000292CF> /x8e/xa5/xdf/xeb <CJK> +<U000292DD> /x8e/xa5/xdf/xec <CJK> +<U000292C8> /x8e/xa5/xdf/xed <CJK> +<U000293BA> /x8e/xa5/xdf/xee <CJK> +<U000293BE> /x8e/xa5/xdf/xef <CJK> +<U000293BF> /x8e/xa5/xdf/xf0 <CJK> +<U0002942E> /x8e/xa5/xdf/xf1 <CJK> +<U00029430> /x8e/xa5/xdf/xf2 <CJK> +<U000294E7> /x8e/xa5/xdf/xf3 <CJK> +<U000294EE> /x8e/xa5/xdf/xf4 <CJK> +<U000294E8> /x8e/xa5/xdf/xf5 <CJK> +<U000294E6> /x8e/xa5/xdf/xf6 <CJK> +<U000294E2> /x8e/xa5/xdf/xf7 <CJK> +<U000294E4> /x8e/xa5/xdf/xf8 <CJK> +<U000294FB> /x8e/xa5/xdf/xf9 <CJK> +<U000294FC> /x8e/xa5/xdf/xfa <CJK> +<U000294EA> /x8e/xa5/xdf/xfb <CJK> +<U000295ED> /x8e/xa5/xdf/xfc <CJK> +<U000295F6> /x8e/xa5/xdf/xfd <CJK> +<U000295F3> /x8e/xa5/xdf/xfe <CJK> +<U000295F4> /x8e/xa5/xe0/xa1 <CJK> +<U000295F1> /x8e/xa5/xe0/xa2 <CJK> +<U000295F7> /x8e/xa5/xe0/xa3 <CJK> +<U000295F5> /x8e/xa5/xe0/xa4 <CJK> +<U000295EA> /x8e/xa5/xe0/xa5 <CJK> +<U000295EB> /x8e/xa5/xe0/xa6 <CJK> +<U00029700> /x8e/xa5/xe0/xa7 <CJK> +<U0002972C> /x8e/xa5/xe0/xa8 <CJK> +<U00029712> /x8e/xa5/xe0/xa9 <CJK> +<U0002973D> /x8e/xa5/xe0/xaa <CJK> +<U00029733> /x8e/xa5/xe0/xab <CJK> +<U4B4D> /x8e/xa5/xe0/xac <CJK> +<U00029730> /x8e/xa5/xe0/xad <CJK> +<U00029740> /x8e/xa5/xe0/xae <CJK> +<U00029731> /x8e/xa5/xe0/xaf <CJK> +<U00029757> /x8e/xa5/xe0/xb0 <CJK> +<U4B4A> /x8e/xa5/xe0/xb1 <CJK> +<U00029735> /x8e/xa5/xe0/xb2 <CJK> +<U00029732> /x8e/xa5/xe0/xb3 <CJK> +<U0002972D> /x8e/xa5/xe0/xb4 <CJK> +<U00029736> /x8e/xa5/xe0/xb5 <CJK> +<U00029738> /x8e/xa5/xe0/xb6 <CJK> +<U00029762> /x8e/xa5/xe0/xb7 <CJK> +<U0002975F> /x8e/xa5/xe0/xb8 <CJK> +<U0002978A> /x8e/xa5/xe0/xb9 <CJK> +<U000298D6> /x8e/xa5/xe0/xba <CJK> +<U000298D8> /x8e/xa5/xe0/xbb <CJK> +<U000298DD> /x8e/xa5/xe0/xbc <CJK> +<U000298E4> /x8e/xa5/xe0/xbd <CJK> +<U000298E3> /x8e/xa5/xe0/xbe <CJK> +<U00029A4D> /x8e/xa5/xe0/xbf <CJK> +<U00029AD7> /x8e/xa5/xe0/xc0 <CJK> +<U00029B4A> /x8e/xa5/xe0/xc1 <CJK> +<U00029B4C> /x8e/xa5/xe0/xc2 <CJK> +<U00029B50> /x8e/xa5/xe0/xc3 <CJK> +<U00029B4B> /x8e/xa5/xe0/xc4 <CJK> +<U00029B4E> /x8e/xa5/xe0/xc5 <CJK> +<U00029B4F> /x8e/xa5/xe0/xc6 <CJK> +<U00029C39> /x8e/xa5/xe0/xc7 <CJK> +<U00029CD2> /x8e/xa5/xe0/xc8 <CJK> +<U00029CCD> /x8e/xa5/xe0/xc9 <CJK> +<U00029CD3> /x8e/xa5/xe0/xca <CJK> +<U00029CE1> /x8e/xa5/xe0/xcb <CJK> +<U00029CCE> /x8e/xa5/xe0/xcc <CJK> +<U00029CD5> /x8e/xa5/xe0/xcd <CJK> +<U00029CDD> /x8e/xa5/xe0/xce <CJK> +<U00029CD4> /x8e/xa5/xe0/xcf <CJK> +<U00029CCF> /x8e/xa5/xe0/xd0 <CJK> +<U00029DCB> /x8e/xa5/xe0/xd1 <CJK> +<U00029DA6> /x8e/xa5/xe0/xd2 <CJK> +<U00029DC2> /x8e/xa5/xe0/xd3 <CJK> +<U00029DA5> /x8e/xa5/xe0/xd4 <CJK> +<U00029DA9> /x8e/xa5/xe0/xd5 <CJK> +<U00029DA2> /x8e/xa5/xe0/xd6 <CJK> +<U00029DA4> /x8e/xa5/xe0/xd7 <CJK> +<U00029DB0> /x8e/xa5/xe0/xd8 <CJK> +<U00029DCC> /x8e/xa5/xe0/xd9 <CJK> +<U00029DAF> /x8e/xa5/xe0/xda <CJK> +<U00029DBF> /x8e/xa5/xe0/xdb <CJK> +<U0002A024> /x8e/xa5/xe0/xdc <CJK> +<U0002A01A> /x8e/xa5/xe0/xdd <CJK> +<U0002A014> /x8e/xa5/xe0/xde <CJK> +<U0002A03A> /x8e/xa5/xe0/xdf <CJK> +<U0002A020> /x8e/xa5/xe0/xe0 <CJK> +<U0002A01B> /x8e/xa5/xe0/xe1 <CJK> +<U0002A021> /x8e/xa5/xe0/xe2 <CJK> +<U0002A025> /x8e/xa5/xe0/xe3 <CJK> +<U0002A01E> /x8e/xa5/xe0/xe4 <CJK> +<U0002A03F> /x8e/xa5/xe0/xe5 <CJK> +<U0002A040> /x8e/xa5/xe0/xe6 <CJK> +<U0002A018> /x8e/xa5/xe0/xe7 <CJK> +<U0002A02C> /x8e/xa5/xe0/xe8 <CJK> +<U0002A015> /x8e/xa5/xe0/xe9 <CJK> +<U0002A02D> /x8e/xa5/xe0/xea <CJK> +<U0002A01F> /x8e/xa5/xe0/xeb <CJK> +<U0002A029> /x8e/xa5/xe0/xec <CJK> +<U0002A04B> /x8e/xa5/xe0/xed <CJK> +<U0002A2B3> /x8e/xa5/xe0/xee <CJK> +<U0002A2A5> /x8e/xa5/xe0/xef <CJK> +<U0002A2A7> /x8e/xa5/xe0/xf0 <CJK> +<U0002A2AB> /x8e/xa5/xe0/xf1 <CJK> +<U0002A2A6> /x8e/xa5/xe0/xf2 <CJK> +<U0002A2AA> /x8e/xa5/xe0/xf3 <CJK> +<U0002A322> /x8e/xa5/xe0/xf4 <CJK> +<U0002A323> /x8e/xa5/xe0/xf5 <CJK> +<U0002A3A1> /x8e/xa5/xe0/xf6 <CJK> +<U0002A3A3> /x8e/xa5/xe0/xf7 <CJK> +<U0002A3A0> /x8e/xa5/xe0/xf8 <CJK> +<U0002A3BD> /x8e/xa5/xe0/xf9 <CJK> +<U0002A3BA> /x8e/xa5/xe0/xfa <CJK> +<U0002A3FA> /x8e/xa5/xe0/xfb <CJK> +<U0002A3F8> /x8e/xa5/xe0/xfc <CJK> +<U0002A3FC> /x8e/xa5/xe0/xfd <CJK> +<U0002A3F6> /x8e/xa5/xe0/xfe <CJK> +<U0002A434> /x8e/xa5/xe1/xa1 <CJK> +<U0002A443> /x8e/xa5/xe1/xa2 <CJK> +<U4D63> /x8e/xa5/xe1/xa3 <CJK> +<U0002A4D4> /x8e/xa5/xe1/xa4 <CJK> +<U0002A50D> /x8e/xa5/xe1/xa5 <CJK> +<U0002A543> /x8e/xa5/xe1/xa6 <CJK> +<U0002A541> /x8e/xa5/xe1/xa7 <CJK> +<U0002A53D> /x8e/xa5/xe1/xa8 <CJK> +<U0002A540> /x8e/xa5/xe1/xa9 <CJK> +<U0002A53E> /x8e/xa5/xe1/xaa <CJK> +<U0002A53F> /x8e/xa5/xe1/xab <CJK> +<U0002A546> /x8e/xa5/xe1/xac <CJK> +<U4D93> /x8e/xa5/xe1/xad <CJK> +<U0002A5D4> /x8e/xa5/xe1/xae <CJK> +<U00020435> /x8e/xa5/xe1/xaf <CJK> +<U00020436> /x8e/xa5/xe1/xb0 <CJK> +<U00020432> /x8e/xa5/xe1/xb1 <CJK> +<U0002043A> /x8e/xa5/xe1/xb2 <CJK> +<U000204C8> /x8e/xa5/xe1/xb3 <CJK> +<U00020536> /x8e/xa5/xe1/xb4 <CJK> +<U0002061E> /x8e/xa5/xe1/xb5 <CJK> +<U0002061D> /x8e/xa5/xe1/xb6 <CJK> +<U0002061F> /x8e/xa5/xe1/xb7 <CJK> +<U0002081C> /x8e/xa5/xe1/xb8 <CJK> +<U0002081D> /x8e/xa5/xe1/xb9 <CJK> +<U00020820> /x8e/xa5/xe1/xba <CJK> +<U350E> /x8e/xa5/xe1/xbb <CJK> +<U000208C0> /x8e/xa5/xe1/xbc <CJK> +<U0002109A> /x8e/xa5/xe1/xbd <CJK> +<U00021093> /x8e/xa5/xe1/xbe <CJK> +<U000210DD> /x8e/xa5/xe1/xbf <CJK> +<U360A> /x8e/xa5/xe1/xc0 <CJK> +<U000210A3> /x8e/xa5/xe1/xc1 <CJK> +<U000210A9> /x8e/xa5/xe1/xc2 <CJK> +<U0002109C> /x8e/xa5/xe1/xc3 <CJK> +<U0002109B> /x8e/xa5/xe1/xc4 <CJK> +<U360D> /x8e/xa5/xe1/xc5 <CJK> +<U00021097> /x8e/xa5/xe1/xc6 <CJK> +<U000214B1> /x8e/xa5/xe1/xc7 <CJK> +<U000214CA> /x8e/xa5/xe1/xc8 <CJK> +<U000214B3> /x8e/xa5/xe1/xc9 <CJK> +<U000214CD> /x8e/xa5/xe1/xca <CJK> +<U000218EA> /x8e/xa5/xe1/xcb <CJK> +<U000218EE> /x8e/xa5/xe1/xcc <CJK> +<U000218EF> /x8e/xa5/xe1/xcd <CJK> +<U00021ADF> /x8e/xa5/xe1/xce <CJK> +<U00021B50> /x8e/xa5/xe1/xcf <CJK> +<U00021BBB> /x8e/xa5/xe1/xd0 <CJK> +<U00021F88> /x8e/xa5/xe1/xd1 <CJK> +<U00021F89> /x8e/xa5/xe1/xd2 <CJK> +<U00021F8C> /x8e/xa5/xe1/xd3 <CJK> +<U00021F85> /x8e/xa5/xe1/xd4 <CJK> +<U00021F5E> /x8e/xa5/xe1/xd5 <CJK> +<U00021F94> /x8e/xa5/xe1/xd6 <CJK> +<U00021F95> /x8e/xa5/xe1/xd7 <CJK> +<U0002216B> /x8e/xa5/xe1/xd8 <CJK> +<U0002216A> /x8e/xa5/xe1/xd9 <CJK> +<U00022169> /x8e/xa5/xe1/xda <CJK> +<U000222E3> /x8e/xa5/xe1/xdb <CJK> +<U000222F1> /x8e/xa5/xe1/xdc <CJK> +<U00022437> /x8e/xa5/xe1/xdd <CJK> +<U00022433> /x8e/xa5/xe1/xde <CJK> +<U00022591> /x8e/xa5/xe1/xdf <CJK> +<U0002258F> /x8e/xa5/xe1/xe0 <CJK> +<U00022597> /x8e/xa5/xe1/xe1 <CJK> +<U000228D4> /x8e/xa5/xe1/xe2 <CJK> +<U000228DE> /x8e/xa5/xe1/xe3 <CJK> +<U000228D3> /x8e/xa5/xe1/xe4 <CJK> +<U000228E0> /x8e/xa5/xe1/xe5 <CJK> +<U00022943> /x8e/xa5/xe1/xe6 <CJK> +<U0002290B> /x8e/xa5/xe1/xe7 <CJK> +<U000228FF> /x8e/xa5/xe1/xe8 <CJK> +<U00022904> /x8e/xa5/xe1/xe9 <CJK> +<U00022907> /x8e/xa5/xe1/xea <CJK> +<U00022DF9> /x8e/xa5/xe1/xeb <CJK> +<U00022DFA> /x8e/xa5/xe1/xec <CJK> +<U00022DFB> /x8e/xa5/xe1/xed <CJK> +<U00022DF8> /x8e/xa5/xe1/xee <CJK> +<U00023012> /x8e/xa5/xe1/xef <CJK> +<U00023010> /x8e/xa5/xe1/xf0 <CJK> +<U0002311F> /x8e/xa5/xe1/xf1 <CJK> +<U000232DF> /x8e/xa5/xe1/xf2 <CJK> +<U000232E3> /x8e/xa5/xe1/xf3 <CJK> +<U00023352> /x8e/xa5/xe1/xf4 <CJK> +<U000233A9> /x8e/xa5/xe1/xf5 <CJK> +<U00023765> /x8e/xa5/xe1/xf6 <CJK> +<U00023787> /x8e/xa5/xe1/xf7 <CJK> +<U00023742> /x8e/xa5/xe1/xf8 <CJK> +<U00023752> /x8e/xa5/xe1/xf9 <CJK> +<U0002374C> /x8e/xa5/xe1/xfa <CJK> +<U0002369F> /x8e/xa5/xe1/xfb <CJK> +<U00023701> /x8e/xa5/xe1/xfc <CJK> +<U00023748> /x8e/xa5/xe1/xfd <CJK> +<U0002374F> /x8e/xa5/xe1/xfe <CJK> +<U0002377E> /x8e/xa5/xe2/xa1 <CJK> +<U0002374D> /x8e/xa5/xe2/xa2 <CJK> +<U00023758> /x8e/xa5/xe2/xa3 <CJK> +<U00023747> /x8e/xa5/xe2/xa4 <CJK> +<U0002375E> /x8e/xa5/xe2/xa5 <CJK> +<U00023749> /x8e/xa5/xe2/xa6 <CJK> +<U0002374E> /x8e/xa5/xe2/xa7 <CJK> +<U0002375D> /x8e/xa5/xe2/xa8 <CJK> +<U0002375A> /x8e/xa5/xe2/xa9 <CJK> +<U00023786> /x8e/xa5/xe2/xaa <CJK> +<U00023751> /x8e/xa5/xe2/xab <CJK> +<U00023929> /x8e/xa5/xe2/xac <CJK> +<U000239A6> /x8e/xa5/xe2/xad <CJK> +<U000239A7> /x8e/xa5/xe2/xae <CJK> +<U00023A70> /x8e/xa5/xe2/xaf <CJK> +<U00023A6F> /x8e/xa5/xe2/xb0 <CJK> +<U00023AD3> /x8e/xa5/xe2/xb1 <CJK> +<U00023AD2> /x8e/xa5/xe2/xb2 <CJK> +<U00023C28> /x8e/xa5/xe2/xb3 <CJK> +<U00023C1B> /x8e/xa5/xe2/xb4 <CJK> +<U00023C1A> /x8e/xa5/xe2/xb5 <CJK> +<U00023C1C> /x8e/xa5/xe2/xb6 <CJK> +<U00023C21> /x8e/xa5/xe2/xb7 <CJK> +<U00024032> /x8e/xa5/xe2/xb8 <CJK> +<U00024066> /x8e/xa5/xe2/xb9 <CJK> +<U0002407D> /x8e/xa5/xe2/xba <CJK> +<U00024073> /x8e/xa5/xe2/xbb <CJK> +<U0002407F> /x8e/xa5/xe2/xbc <CJK> +<U00024065> /x8e/xa5/xe2/xbd <CJK> +<U00024080> /x8e/xa5/xe2/xbe <CJK> +<U00024061> /x8e/xa5/xe2/xbf <CJK> +<U00024075> /x8e/xa5/xe2/xc0 <CJK> +<U0002406E> /x8e/xa5/xe2/xc1 <CJK> +<U00024067> /x8e/xa5/xe2/xc2 <CJK> +<U00024071> /x8e/xa5/xe2/xc3 <CJK> +<U0002406C> /x8e/xa5/xe2/xc4 <CJK> +<U00024063> /x8e/xa5/xe2/xc5 <CJK> +<U00024062> /x8e/xa5/xe2/xc6 <CJK> +<U00024083> /x8e/xa5/xe2/xc7 <CJK> +<U000240B2> /x8e/xa5/xe2/xc8 <CJK> +<U00024081> /x8e/xa5/xe2/xc9 <CJK> +<U0002406F> /x8e/xa5/xe2/xca <CJK> +<U0002406B> /x8e/xa5/xe2/xcb <CJK> +<U00024082> /x8e/xa5/xe2/xcc <CJK> +<U0002408A> /x8e/xa5/xe2/xcd <CJK> +<U00024429> /x8e/xa5/xe2/xce <CJK> +<U00024430> /x8e/xa5/xe2/xcf <CJK> +<U00024431> /x8e/xa5/xe2/xd0 <CJK> +<U00024597> /x8e/xa5/xe2/xd1 <CJK> +<U00024600> /x8e/xa5/xe2/xd2 <CJK> +<U000245FF> /x8e/xa5/xe2/xd3 <CJK> +<U000248B6> /x8e/xa5/xe2/xd4 <CJK> +<U000248B5> /x8e/xa5/xe2/xd5 <CJK> +<U000248C3> /x8e/xa5/xe2/xd6 <CJK> +<U00024A8D> /x8e/xa5/xe2/xd7 <CJK> +<U00024B18> /x8e/xa5/xe2/xd8 <CJK> +<U00024B9C> /x8e/xa5/xe2/xd9 <CJK> +<U00024B9A> /x8e/xa5/xe2/xda <CJK> +<U00024B99> /x8e/xa5/xe2/xdb <CJK> +<U00024EB7> /x8e/xa5/xe2/xdc <CJK> +<U00024EC4> /x8e/xa5/xe2/xdd <CJK> +<U00024EC6> /x8e/xa5/xe2/xde <CJK> +<U00024EC7> /x8e/xa5/xe2/xdf <CJK> +<U00024EBC> /x8e/xa5/xe2/xe0 <CJK> +<U00024EC0> /x8e/xa5/xe2/xe1 <CJK> +<U00024EC5> /x8e/xa5/xe2/xe2 <CJK> +<U00024ECD> /x8e/xa5/xe2/xe3 <CJK> +<U00024EC1> /x8e/xa5/xe2/xe4 <CJK> +<U00024EBE> /x8e/xa5/xe2/xe5 <CJK> +<U00024FA7> /x8e/xa5/xe2/xe6 <CJK> +<U00024FB8> /x8e/xa5/xe2/xe7 <CJK> +<U00025023> /x8e/xa5/xe2/xe8 <CJK> +<U4074> /x8e/xa5/xe2/xe9 <CJK> +<U000252E8> /x8e/xa5/xe2/xea <CJK> +<U000252DE> /x8e/xa5/xe2/xeb <CJK> +<U000252E3> /x8e/xa5/xe2/xec <CJK> +<U000252EF> /x8e/xa5/xe2/xed <CJK> +<U000252DC> /x8e/xa5/xe2/xee <CJK> +<U000252E4> /x8e/xa5/xe2/xef <CJK> +<U000252E1> /x8e/xa5/xe2/xf0 <CJK> +<U000252E5> /x8e/xa5/xe2/xf1 <CJK> +<U00025395> /x8e/xa5/xe2/xf2 <CJK> +<U00025394> /x8e/xa5/xe2/xf3 <CJK> +<U00025393> /x8e/xa5/xe2/xf4 <CJK> +<U0002538E> /x8e/xa5/xe2/xf5 <CJK> +<U00025598> /x8e/xa5/xe2/xf6 <CJK> +<U0002559C> /x8e/xa5/xe2/xf7 <CJK> +<U00025599> /x8e/xa5/xe2/xf8 <CJK> +<U000255A0> /x8e/xa5/xe2/xf9 <CJK> +<U0002559E> /x8e/xa5/xe2/xfa <CJK> +<U00025704> /x8e/xa5/xe2/xfb <CJK> +<U000258D3> /x8e/xa5/xe2/xfc <CJK> +<U000258B4> /x8e/xa5/xe2/xfd <CJK> +<U000258BB> /x8e/xa5/xe2/xfe <CJK> +<U000258B7> /x8e/xa5/xe3/xa1 <CJK> +<U000258B8> /x8e/xa5/xe3/xa2 <CJK> +<U000258BD> /x8e/xa5/xe3/xa3 <CJK> +<U000258B6> /x8e/xa5/xe3/xa4 <CJK> +<U000258B9> /x8e/xa5/xe3/xa5 <CJK> +<U000258B5> /x8e/xa5/xe3/xa6 <CJK> +<U00025A22> /x8e/xa5/xe3/xa7 <CJK> +<U00025A21> /x8e/xa5/xe3/xa8 <CJK> +<U00025AC3> /x8e/xa5/xe3/xa9 <CJK> +<U00025ABC> /x8e/xa5/xe3/xaa <CJK> +<U00025CFF> /x8e/xa5/xe3/xab <CJK> +<U00025CE5> /x8e/xa5/xe3/xac <CJK> +<U00025CF7> /x8e/xa5/xe3/xad <CJK> +<U00025CD2> /x8e/xa5/xe3/xae <CJK> +<U00025D00> /x8e/xa5/xe3/xaf <CJK> +<U00025CDB> /x8e/xa5/xe3/xb0 <CJK> +<U00025CF0> /x8e/xa5/xe3/xb1 <CJK> +<U00025CE2> /x8e/xa5/xe3/xb2 <CJK> +<U00025CCD> /x8e/xa5/xe3/xb3 <CJK> +<U4256> /x8e/xa5/xe3/xb4 <CJK> +<U00025CE1> /x8e/xa5/xe3/xb5 <CJK> +<U00025CF2> /x8e/xa5/xe3/xb6 <CJK> +<U00025CDC> /x8e/xa5/xe3/xb7 <CJK> +<U00025CCC> /x8e/xa5/xe3/xb8 <CJK> +<U00025CD6> /x8e/xa5/xe3/xb9 <CJK> +<U00025CF3> /x8e/xa5/xe3/xba <CJK> +<U00025CFA> /x8e/xa5/xe3/xbb <CJK> +<U00025CF6> /x8e/xa5/xe3/xbc <CJK> +<U00025CEC> /x8e/xa5/xe3/xbd <CJK> +<U00025CEA> /x8e/xa5/xe3/xbe <CJK> +<U00025CE3> /x8e/xa5/xe3/xbf <CJK> +<U00025CD0> /x8e/xa5/xe3/xc0 <CJK> +<U425A> /x8e/xa5/xe3/xc1 <CJK> +<U00025C95> /x8e/xa5/xe3/xc2 <CJK> +<U00025CD5> /x8e/xa5/xe3/xc3 <CJK> +<U00025CF4> /x8e/xa5/xe3/xc4 <CJK> +<U00025CCB> /x8e/xa5/xe3/xc5 <CJK> +<U00025CDA> /x8e/xa5/xe3/xc6 <CJK> +<U00025CC8> /x8e/xa5/xe3/xc7 <CJK> +<U00025CDF> /x8e/xa5/xe3/xc8 <CJK> +<U00025CF5> /x8e/xa5/xe3/xc9 <CJK> +<U00025CCF> /x8e/xa5/xe3/xca <CJK> +<U00025CC7> /x8e/xa5/xe3/xcb <CJK> +<U00025CD7> /x8e/xa5/xe3/xcc <CJK> +<U00025F24> /x8e/xa5/xe3/xcd <CJK> +<U42A3> /x8e/xa5/xe3/xce <CJK> +<U00025F1C> /x8e/xa5/xe3/xcf <CJK> +<U00025F21> /x8e/xa5/xe3/xd0 <CJK> +<U00025F1E> /x8e/xa5/xe3/xd1 <CJK> +<U00025F18> /x8e/xa5/xe3/xd2 <CJK> +<U00025F1B> /x8e/xa5/xe3/xd3 <CJK> +<U42A8> /x8e/xa5/xe3/xd4 <CJK> +<U00026146> /x8e/xa5/xe3/xd5 <CJK> +<U0002614B> /x8e/xa5/xe3/xd6 <CJK> +<U00026148> /x8e/xa5/xe3/xd7 <CJK> +<U00026147> /x8e/xa5/xe3/xd8 <CJK> +<U00026167> /x8e/xa5/xe3/xd9 <CJK> +<U00026154> /x8e/xa5/xe3/xda <CJK> +<U00026315> /x8e/xa5/xe3/xdb <CJK> +<U00026322> /x8e/xa5/xe3/xdc <CJK> +<U000263C5> /x8e/xa5/xe3/xdd <CJK> +<U00026329> /x8e/xa5/xe3/xde <CJK> +<U000263C7> /x8e/xa5/xe3/xdf <CJK> +<U0002648D> /x8e/xa5/xe3/xe0 <CJK> +<U0002651B> /x8e/xa5/xe3/xe1 <CJK> +<U00026520> /x8e/xa5/xe3/xe2 <CJK> +<U000265E2> /x8e/xa5/xe3/xe3 <CJK> +<U000265E7> /x8e/xa5/xe3/xe4 <CJK> +<U000265E8> /x8e/xa5/xe3/xe5 <CJK> +<U000265E1> /x8e/xa5/xe3/xe6 <CJK> +<U00026872> /x8e/xa5/xe3/xe7 <CJK> +<U0002687B> /x8e/xa5/xe3/xe8 <CJK> +<U00026874> /x8e/xa5/xe3/xe9 <CJK> +<U00026871> /x8e/xa5/xe3/xea <CJK> +<U00026879> /x8e/xa5/xe3/xeb <CJK> +<U00026875> /x8e/xa5/xe3/xec <CJK> +<U00026890> /x8e/xa5/xe3/xed <CJK> +<U00026877> /x8e/xa5/xe3/xee <CJK> +<U0002687D> /x8e/xa5/xe3/xef <CJK> +<U0002694F> /x8e/xa5/xe3/xf0 <CJK> +<U00026950> /x8e/xa5/xe3/xf1 <CJK> +<U000269A3> /x8e/xa5/xe3/xf2 <CJK> +<U000269A2> /x8e/xa5/xe3/xf3 <CJK> +<U000269F4> /x8e/xa5/xe3/xf4 <CJK> +<U00026A94> /x8e/xa5/xe3/xf5 <CJK> +<U00026A9A> /x8e/xa5/xe3/xf6 <CJK> +<U00026A9B> /x8e/xa5/xe3/xf7 <CJK> +<U00026AA7> /x8e/xa5/xe3/xf8 <CJK> +<U00026A97> /x8e/xa5/xe3/xf9 <CJK> +<U00026A95> /x8e/xa5/xe3/xfa <CJK> +<U00026A92> /x8e/xa5/xe3/xfb <CJK> +<U00026A9C> /x8e/xa5/xe3/xfc <CJK> +<U00026A96> /x8e/xa5/xe3/xfd <CJK> +<U00026FB6> /x8e/xa5/xe3/xfe <CJK> +<U00026FB8> /x8e/xa5/xe4/xa1 <CJK> +<U00026FB0> /x8e/xa5/xe4/xa2 <CJK> +<U00027018> /x8e/xa5/xe4/xa3 <CJK> +<U00026FC5> /x8e/xa5/xe4/xa4 <CJK> +<U00026FB5> /x8e/xa5/xe4/xa5 <CJK> +<U00026FC2> /x8e/xa5/xe4/xa6 <CJK> +<U00027006> /x8e/xa5/xe4/xa7 <CJK> +<U00027019> /x8e/xa5/xe4/xa8 <CJK> +<U00026FB9> /x8e/xa5/xe4/xa9 <CJK> +<U00027015> /x8e/xa5/xe4/xaa <CJK> +<U00026FD6> /x8e/xa5/xe4/xab <CJK> +<U00026FAC> /x8e/xa5/xe4/xac <CJK> +<U453C> /x8e/xa5/xe4/xad <CJK> +<U00026FC6> /x8e/xa5/xe4/xae <CJK> +<U00026FB3> /x8e/xa5/xe4/xaf <CJK> +<U00026FC3> /x8e/xa5/xe4/xb0 <CJK> +<U00026FCA> /x8e/xa5/xe4/xb1 <CJK> +<U00026FCF> /x8e/xa5/xe4/xb2 <CJK> +<U00026FBD> /x8e/xa5/xe4/xb3 <CJK> +<U00026FCE> /x8e/xa5/xe4/xb4 <CJK> +<U00027014> /x8e/xa5/xe4/xb5 <CJK> +<U00026FBA> /x8e/xa5/xe4/xb6 <CJK> +<U0002701A> /x8e/xa5/xe4/xb7 <CJK> +<U00026FC1> /x8e/xa5/xe4/xb8 <CJK> +<U00026FBB> /x8e/xa5/xe4/xb9 <CJK> +<U459B> /x8e/xa5/xe4/xba <CJK> +<U459A> /x8e/xa5/xe4/xbb <CJK> +<U00027201> /x8e/xa5/xe4/xbc <CJK> +<U000271FC> /x8e/xa5/xe4/xbd <CJK> +<U0002745A> /x8e/xa5/xe4/xbe <CJK> +<U00027454> /x8e/xa5/xe4/xbf <CJK> +<U00027461> /x8e/xa5/xe4/xc0 <CJK> +<U0002745C> /x8e/xa5/xe4/xc1 <CJK> +<U00027455> /x8e/xa5/xe4/xc2 <CJK> +<U0002744A> /x8e/xa5/xe4/xc3 <CJK> +<U0002744B> /x8e/xa5/xe4/xc4 <CJK> +<U00027451> /x8e/xa5/xe4/xc5 <CJK> +<U00027469> /x8e/xa5/xe4/xc6 <CJK> +<U0002746B> /x8e/xa5/xe4/xc7 <CJK> +<U87F1> /x8e/xa5/xe4/xc8 <CJK> +<U00027466> /x8e/xa5/xe4/xc9 <CJK> +<U00027458> /x8e/xa5/xe4/xca <CJK> +<U0002745D> /x8e/xa5/xe4/xcb <CJK> +<U00027467> /x8e/xa5/xe4/xcc <CJK> +<U00027456> /x8e/xa5/xe4/xcd <CJK> +<U00027488> /x8e/xa5/xe4/xce <CJK> +<U00027464> /x8e/xa5/xe4/xcf <CJK> +<U0002744E> /x8e/xa5/xe4/xd0 <CJK> +<U00027757> /x8e/xa5/xe4/xd1 <CJK> +<U0002775A> /x8e/xa5/xe4/xd2 <CJK> +<U00027751> /x8e/xa5/xe4/xd3 <CJK> +<U0002774A> /x8e/xa5/xe4/xd4 <CJK> +<U0002774B> /x8e/xa5/xe4/xd5 <CJK> +<U465E> /x8e/xa5/xe4/xd6 <CJK> +<U00027747> /x8e/xa5/xe4/xd7 <CJK> +<U0002776F> /x8e/xa5/xe4/xd8 <CJK> +<U0002776A> /x8e/xa5/xe4/xd9 <CJK> +<U0002776B> /x8e/xa5/xe4/xda <CJK> +<U00027746> /x8e/xa5/xe4/xdb <CJK> +<U0002776D> /x8e/xa5/xe4/xdc <CJK> +<U00027754> /x8e/xa5/xe4/xdd <CJK> +<U0002776E> /x8e/xa5/xe4/xde <CJK> +<U0002774C> /x8e/xa5/xe4/xdf <CJK> +<U00027878> /x8e/xa5/xe4/xe0 <CJK> +<U00027886> /x8e/xa5/xe4/xe1 <CJK> +<U00027882> /x8e/xa5/xe4/xe2 <CJK> +<U46A7> /x8e/xa5/xe4/xe3 <CJK> +<U00027AE1> /x8e/xa5/xe4/xe4 <CJK> +<U00027AE5> /x8e/xa5/xe4/xe5 <CJK> +<U00027ADB> /x8e/xa5/xe4/xe6 <CJK> +<U00027ADE> /x8e/xa5/xe4/xe7 <CJK> +<U00027AD7> /x8e/xa5/xe4/xe8 <CJK> +<U00027C03> /x8e/xa5/xe4/xe9 <CJK> +<U00027C7C> /x8e/xa5/xe4/xea <CJK> +<U00027C7E> /x8e/xa5/xe4/xeb <CJK> +<U00027D05> /x8e/xa5/xe4/xec <CJK> +<U00027D07> /x8e/xa5/xe4/xed <CJK> +<U00027DE6> /x8e/xa5/xe4/xee <CJK> +<U00027DE1> /x8e/xa5/xe4/xef <CJK> +<U00027DFB> /x8e/xa5/xe4/xf0 <CJK> +<U00027DE5> /x8e/xa5/xe4/xf1 <CJK> +<U00027DE7> /x8e/xa5/xe4/xf2 <CJK> +<U00027DDF> /x8e/xa5/xe4/xf3 <CJK> +<U00027DFF> /x8e/xa5/xe4/xf4 <CJK> +<U00027E76> /x8e/xa5/xe4/xf5 <CJK> +<U00027F63> /x8e/xa5/xe4/xf6 <CJK> +<U00027F66> /x8e/xa5/xe4/xf7 <CJK> +<U00027F65> /x8e/xa5/xe4/xf8 <CJK> +<U00027F5E> /x8e/xa5/xe4/xf9 <CJK> +<U00027F64> /x8e/xa5/xe4/xfa <CJK> +<U00027F6B> /x8e/xa5/xe4/xfb <CJK> +<U00027F5F> /x8e/xa5/xe4/xfc <CJK> +<U00027F67> /x8e/xa5/xe4/xfd <CJK> +<U00027F68> /x8e/xa5/xe4/xfe <CJK> +<U00028108> /x8e/xa5/xe5/xa1 <CJK> +<U00028109> /x8e/xa5/xe5/xa2 <CJK> +<U00028117> /x8e/xa5/xe5/xa3 <CJK> +<U00028115> /x8e/xa5/xe5/xa4 <CJK> +<U0002811B> /x8e/xa5/xe5/xa5 <CJK> +<U0002810B> /x8e/xa5/xe5/xa6 <CJK> +<U00028128> /x8e/xa5/xe5/xa7 <CJK> +<U0002810E> /x8e/xa5/xe5/xa8 <CJK> +<U00028118> /x8e/xa5/xe5/xa9 <CJK> +<U00028153> /x8e/xa5/xe5/xaa <CJK> +<U00028145> /x8e/xa5/xe5/xab <CJK> +<U0002810D> /x8e/xa5/xe5/xac <CJK> +<U0002810A> /x8e/xa5/xe5/xad <CJK> +<U00028113> /x8e/xa5/xe5/xae <CJK> +<U0002814A> /x8e/xa5/xe5/xaf <CJK> +<U00028279> /x8e/xa5/xe5/xb0 <CJK> +<U000283A1> /x8e/xa5/xe5/xb1 <CJK> +<U0002838D> /x8e/xa5/xe5/xb2 <CJK> +<U000283A2> /x8e/xa5/xe5/xb3 <CJK> +<U00028390> /x8e/xa5/xe5/xb4 <CJK> +<U486E> /x8e/xa5/xe5/xb5 <CJK> +<U00028431> /x8e/xa5/xe5/xb6 <CJK> +<U00028430> /x8e/xa5/xe5/xb7 <CJK> +<U0002861F> /x8e/xa5/xe5/xb8 <CJK> +<U00028619> /x8e/xa5/xe5/xb9 <CJK> +<U0002860C> /x8e/xa5/xe5/xba <CJK> +<U0002861E> /x8e/xa5/xe5/xbb <CJK> +<U0002861D> /x8e/xa5/xe5/xbc <CJK> +<U00028607> /x8e/xa5/xe5/xbd <CJK> +<U00028766> /x8e/xa5/xe5/xbe <CJK> +<U000287C5> /x8e/xa5/xe5/xbf <CJK> +<U000287BA> /x8e/xa5/xe5/xc0 <CJK> +<U000287BD> /x8e/xa5/xe5/xc1 <CJK> +<U000287C2> /x8e/xa5/xe5/xc2 <CJK> +<U000287C3> /x8e/xa5/xe5/xc3 <CJK> +<U000287BF> /x8e/xa5/xe5/xc4 <CJK> +<U490D> /x8e/xa5/xe5/xc5 <CJK> +<U000288A1> /x8e/xa5/xe5/xc6 <CJK> +<U000288A2> /x8e/xa5/xe5/xc7 <CJK> +<U000288A8> /x8e/xa5/xe5/xc8 <CJK> +<U000288A3> /x8e/xa5/xe5/xc9 <CJK> +<U000288AA> /x8e/xa5/xe5/xca <CJK> +<U000288AF> /x8e/xa5/xe5/xcb <CJK> +<U000288B9> /x8e/xa5/xe5/xcc <CJK> +<U00028937> /x8e/xa5/xe5/xcd <CJK> +<U00028A8F> /x8e/xa5/xe5/xce <CJK> +<U4943> /x8e/xa5/xe5/xcf <CJK> +<U00028A8E> /x8e/xa5/xe5/xd0 <CJK> +<U00028A87> /x8e/xa5/xe5/xd1 <CJK> +<U00028A8A> /x8e/xa5/xe5/xd2 <CJK> +<U00028A92> /x8e/xa5/xe5/xd3 <CJK> +<U00028A97> /x8e/xa5/xe5/xd4 <CJK> +<U00028A9F> /x8e/xa5/xe5/xd5 <CJK> +<U00028B05> /x8e/xa5/xe5/xd6 <CJK> +<U00028CA9> /x8e/xa5/xe5/xd7 <CJK> +<U00028CA7> /x8e/xa5/xe5/xd8 <CJK> +<U00028D8A> /x8e/xa5/xe5/xd9 <CJK> +<U00028D82> /x8e/xa5/xe5/xda <CJK> +<U00028D85> /x8e/xa5/xe5/xdb <CJK> +<U00028D8B> /x8e/xa5/xe5/xdc <CJK> +<U00028D89> /x8e/xa5/xe5/xdd <CJK> +<U00028D81> /x8e/xa5/xe5/xde <CJK> +<U00028D80> /x8e/xa5/xe5/xdf <CJK> +<U00028D87> /x8e/xa5/xe5/xe0 <CJK> +<U00028D86> /x8e/xa5/xe5/xe1 <CJK> +<U00028F4D> /x8e/xa5/xe5/xe2 <CJK> +<U0002901C> /x8e/xa5/xe5/xe3 <CJK> +<U0002901F> /x8e/xa5/xe5/xe4 <CJK> +<U00029121> /x8e/xa5/xe5/xe5 <CJK> +<U0002911D> /x8e/xa5/xe5/xe6 <CJK> +<U00029122> /x8e/xa5/xe5/xe7 <CJK> +<U000290FE> /x8e/xa5/xe5/xe8 <CJK> +<U0002911B> /x8e/xa5/xe5/xe9 <CJK> +<U0002913A> /x8e/xa5/xe5/xea <CJK> +<U00029137> /x8e/xa5/xe5/xeb <CJK> +<U00029117> /x8e/xa5/xe5/xec <CJK> +<U00029138> /x8e/xa5/xe5/xed <CJK> +<U00029126> /x8e/xa5/xe5/xee <CJK> +<U00029118> /x8e/xa5/xe5/xef <CJK> +<U00029234> /x8e/xa5/xe5/xf0 <CJK> +<U00029235> /x8e/xa5/xe5/xf1 <CJK> +<U00029232> /x8e/xa5/xe5/xf2 <CJK> +<U4A73> /x8e/xa5/xe5/xf3 <CJK> +<U000292E1> /x8e/xa5/xe5/xf4 <CJK> +<U000292FD> /x8e/xa5/xe5/xf5 <CJK> +<U000292E3> /x8e/xa5/xe5/xf6 <CJK> +<U000292E8> /x8e/xa5/xe5/xf7 <CJK> +<U000292F9> /x8e/xa5/xe5/xf8 <CJK> +<U000292FF> /x8e/xa5/xe5/xf9 <CJK> +<U000292FE> /x8e/xa5/xe5/xfa <CJK> +<U4A74> /x8e/xa5/xe5/xfb <CJK> +<U000292E0> /x8e/xa5/xe5/xfc <CJK> +<U00029300> /x8e/xa5/xe5/xfd <CJK> +<U4A70> /x8e/xa5/xe5/xfe <CJK> +<U000292EC> /x8e/xa5/xe6/xa1 <CJK> +<U000292E4> /x8e/xa5/xe6/xa2 <CJK> +<U000292EF> /x8e/xa5/xe6/xa3 <CJK> +<U000292FA> /x8e/xa5/xe6/xa4 <CJK> +<U000293CA> /x8e/xa5/xe6/xa5 <CJK> +<U00029431> /x8e/xa5/xe6/xa6 <CJK> +<U00029432> /x8e/xa5/xe6/xa7 <CJK> +<U00029434> /x8e/xa5/xe6/xa8 <CJK> +<U00029441> /x8e/xa5/xe6/xa9 <CJK> +<U00029500> /x8e/xa5/xe6/xaa <CJK> +<U00029506> /x8e/xa5/xe6/xab <CJK> +<U00029508> /x8e/xa5/xe6/xac <CJK> +<U00029505> /x8e/xa5/xe6/xad <CJK> +<U00029503> /x8e/xa5/xe6/xae <CJK> +<U0002950B> /x8e/xa5/xe6/xaf <CJK> +<U00029502> /x8e/xa5/xe6/xb0 <CJK> +<U0002950A> /x8e/xa5/xe6/xb1 <CJK> +<U000295F0> /x8e/xa5/xe6/xb2 <CJK> +<U00029613> /x8e/xa5/xe6/xb3 <CJK> +<U0002960A> /x8e/xa5/xe6/xb4 <CJK> +<U0002960F> /x8e/xa5/xe6/xb5 <CJK> +<U00029611> /x8e/xa5/xe6/xb6 <CJK> +<U00029608> /x8e/xa5/xe6/xb7 <CJK> +<U0002960B> /x8e/xa5/xe6/xb8 <CJK> +<U00029612> /x8e/xa5/xe6/xb9 <CJK> +<U0002960D> /x8e/xa5/xe6/xba <CJK> +<U0002975B> /x8e/xa5/xe6/xbb <CJK> +<U00029763> /x8e/xa5/xe6/xbc <CJK> +<U00029761> /x8e/xa5/xe6/xbd <CJK> +<U00029768> /x8e/xa5/xe6/xbe <CJK> +<U0002975A> /x8e/xa5/xe6/xbf <CJK> +<U0002984E> /x8e/xa5/xe6/xc0 <CJK> +<U0002984D> /x8e/xa5/xe6/xc1 <CJK> +<U00029850> /x8e/xa5/xe6/xc2 <CJK> +<U000298FC> /x8e/xa5/xe6/xc3 <CJK> +<U00029912> /x8e/xa5/xe6/xc4 <CJK> +<U000298F5> /x8e/xa5/xe6/xc5 <CJK> +<U0002991E> /x8e/xa5/xe6/xc6 <CJK> +<U000298F0> /x8e/xa5/xe6/xc7 <CJK> +<U000298F3> /x8e/xa5/xe6/xc8 <CJK> +<U000298F2> /x8e/xa5/xe6/xc9 <CJK> +<U00029901> /x8e/xa5/xe6/xca <CJK> +<U000298EF> /x8e/xa5/xe6/xcb <CJK> +<U000298EE> /x8e/xa5/xe6/xcc <CJK> +<U00029916> /x8e/xa5/xe6/xcd <CJK> +<U000298F6> /x8e/xa5/xe6/xce <CJK> +<U000298FB> /x8e/xa5/xe6/xcf <CJK> +<U0002991C> /x8e/xa5/xe6/xd0 <CJK> +<U4BDB> /x8e/xa5/xe6/xd1 <CJK> +<U00029A5D> /x8e/xa5/xe6/xd2 <CJK> +<U00029A60> /x8e/xa5/xe6/xd3 <CJK> +<U00029A66> /x8e/xa5/xe6/xd4 <CJK> +<U00029A5F> /x8e/xa5/xe6/xd5 <CJK> +<U00029A61> /x8e/xa5/xe6/xd6 <CJK> +<U00029A5B> /x8e/xa5/xe6/xd7 <CJK> +<U00029A62> /x8e/xa5/xe6/xd8 <CJK> +<U00029A57> /x8e/xa5/xe6/xd9 <CJK> +<U00029B69> /x8e/xa5/xe6/xda <CJK> +<U00029B6B> /x8e/xa5/xe6/xdb <CJK> +<U00029B61> /x8e/xa5/xe6/xdc <CJK> +<U00029B77> /x8e/xa5/xe6/xdd <CJK> +<U00029B5F> /x8e/xa5/xe6/xde <CJK> +<U00029B63> /x8e/xa5/xe6/xdf <CJK> +<U00029B62> /x8e/xa5/xe6/xe0 <CJK> +<U00029B65> /x8e/xa5/xe6/xe1 <CJK> +<U00029CEF> /x8e/xa5/xe6/xe2 <CJK> +<U00029CE2> /x8e/xa5/xe6/xe3 <CJK> +<U00029D00> /x8e/xa5/xe6/xe4 <CJK> +<U00029CE8> /x8e/xa5/xe6/xe5 <CJK> +<U00029CF2> /x8e/xa5/xe6/xe6 <CJK> +<U00029CE7> /x8e/xa5/xe6/xe7 <CJK> +<U4C29> /x8e/xa5/xe6/xe8 <CJK> +<U00029CE5> /x8e/xa5/xe6/xe9 <CJK> +<U00029DD5> /x8e/xa5/xe6/xea <CJK> +<U00029DD0> /x8e/xa5/xe6/xeb <CJK> +<U00029DDA> /x8e/xa5/xe6/xec <CJK> +<U00029DD3> /x8e/xa5/xe6/xed <CJK> +<U4C51> /x8e/xa5/xe6/xee <CJK> +<U00029DD9> /x8e/xa5/xe6/xef <CJK> +<U00029DCF> /x8e/xa5/xe6/xf0 <CJK> +<U00029DD6> /x8e/xa5/xe6/xf1 <CJK> +<U00029DD8> /x8e/xa5/xe6/xf2 <CJK> +<U00029DF5> /x8e/xa5/xe6/xf3 <CJK> +<U00029DCE> /x8e/xa5/xe6/xf4 <CJK> +<U00029DD7> /x8e/xa5/xe6/xf5 <CJK> +<U00029DF4> /x8e/xa5/xe6/xf6 <CJK> +<U00029DCD> /x8e/xa5/xe6/xf7 <CJK> +<U00029E01> /x8e/xa5/xe6/xf8 <CJK> +<U9BBA> /x8e/xa5/xe6/xf9 <CJK> +<U0002A052> /x8e/xa5/xe6/xfa <CJK> +<U0002A055> /x8e/xa5/xe6/xfb <CJK> +<U0002A05A> /x8e/xa5/xe6/xfc <CJK> +<U0002A04D> /x8e/xa5/xe6/xfd <CJK> +<U0002A054> /x8e/xa5/xe6/xfe <CJK> +<U0002A053> /x8e/xa5/xe7/xa1 <CJK> +<U0002A05E> /x8e/xa5/xe7/xa2 <CJK> +<U0002A067> /x8e/xa5/xe7/xa3 <CJK> +<U0002A065> /x8e/xa5/xe7/xa4 <CJK> +<U0002A04E> /x8e/xa5/xe7/xa5 <CJK> +<U4CDB> /x8e/xa5/xe7/xa6 <CJK> +<U0002A04F> /x8e/xa5/xe7/xa7 <CJK> +<U0002A061> /x8e/xa5/xe7/xa8 <CJK> +<U0002A06E> /x8e/xa5/xe7/xa9 <CJK> +<U0002A051> /x8e/xa5/xe7/xaa <CJK> +<U0002A05B> /x8e/xa5/xe7/xab <CJK> +<U0002A263> /x8e/xa5/xe7/xac <CJK> +<U0002A2B7> /x8e/xa5/xe7/xad <CJK> +<U0002A2B6> /x8e/xa5/xe7/xae <CJK> +<U0002A2C3> /x8e/xa5/xe7/xaf <CJK> +<U0002A2BB> /x8e/xa5/xe7/xb0 <CJK> +<U0002A2B5> /x8e/xa5/xe7/xb1 <CJK> +<U0002A32E> /x8e/xa5/xe7/xb2 <CJK> +<U0002A330> /x8e/xa5/xe7/xb3 <CJK> +<U0002A333> /x8e/xa5/xe7/xb4 <CJK> +<U0002A331> /x8e/xa5/xe7/xb5 <CJK> +<U0002A3A4> /x8e/xa5/xe7/xb6 <CJK> +<U0002A3C1> /x8e/xa5/xe7/xb7 <CJK> +<U0002A3BB> /x8e/xa5/xe7/xb8 <CJK> +<U0002A3BE> /x8e/xa5/xe7/xb9 <CJK> +<U0002A400> /x8e/xa5/xe7/xba <CJK> +<U0002A3FF> /x8e/xa5/xe7/xbb <CJK> +<U0002A440> /x8e/xa5/xe7/xbc <CJK> +<U4D65> /x8e/xa5/xe7/xbd <CJK> +<U0002A43F> /x8e/xa5/xe7/xbe <CJK> +<U0002A444> /x8e/xa5/xe7/xbf <CJK> +<U4D64> /x8e/xa5/xe7/xc0 <CJK> +<U4D67> /x8e/xa5/xe7/xc1 <CJK> +<U0002A4DB> /x8e/xa5/xe7/xc2 <CJK> +<U0002A50F> /x8e/xa5/xe7/xc3 <CJK> +<U0002A511> /x8e/xa5/xe7/xc4 <CJK> +<U0002A54E> /x8e/xa5/xe7/xc5 <CJK> +<U0002A54D> /x8e/xa5/xe7/xc6 <CJK> +<U0002A54B> /x8e/xa5/xe7/xc7 <CJK> +<U0002A54C> /x8e/xa5/xe7/xc8 <CJK> +<U0002A595> /x8e/xa5/xe7/xc9 <CJK> +<U0002043B> /x8e/xa5/xe7/xca <CJK> +<U00020445> /x8e/xa5/xe7/xcb <CJK> +<U00020444> /x8e/xa5/xe7/xcc <CJK> +<U0002043E> /x8e/xa5/xe7/xcd <CJK> +<U0002043C> /x8e/xa5/xe7/xce <CJK> +<U0002043F> /x8e/xa5/xe7/xcf <CJK> +<U000204CC> /x8e/xa5/xe7/xd0 <CJK> +<U000204CE> /x8e/xa5/xe7/xd1 <CJK> +<U00020622> /x8e/xa5/xe7/xd2 <CJK> +<U00020623> /x8e/xa5/xe7/xd3 <CJK> +<U0002069F> /x8e/xa5/xe7/xd4 <CJK> +<U000208C5> /x8e/xa5/xe7/xd5 <CJK> +<U000208C4> /x8e/xa5/xe7/xd6 <CJK> +<U000210E9> /x8e/xa5/xe7/xd7 <CJK> +<U00021099> /x8e/xa5/xe7/xd8 <CJK> +<U3611> /x8e/xa5/xe7/xd9 <CJK> +<U000210E6> /x8e/xa5/xe7/xda <CJK> +<U000210E7> /x8e/xa5/xe7/xdb <CJK> +<U000210F7> /x8e/xa5/xe7/xdc <CJK> +<U000214D2> /x8e/xa5/xe7/xdd <CJK> +<U3733> /x8e/xa5/xe7/xde <CJK> +<U000218FD> /x8e/xa5/xe7/xdf <CJK> +<U0002190C> /x8e/xa5/xe7/xe0 <CJK> +<U0002190B> /x8e/xa5/xe7/xe1 <CJK> +<U00021CED> /x8e/xa5/xe7/xe2 <CJK> +<U3821> /x8e/xa5/xe7/xe3 <CJK> +<U3822> /x8e/xa5/xe7/xe4 <CJK> +<U00021F9B> /x8e/xa5/xe7/xe5 <CJK> +<U0002200A> /x8e/xa5/xe7/xe6 <CJK> +<U0002216F> /x8e/xa5/xe7/xe7 <CJK> +<U00022175> /x8e/xa5/xe7/xe8 <CJK> +<U000222F2> /x8e/xa5/xe7/xe9 <CJK> +<U000222F8> /x8e/xa5/xe7/xea <CJK> +<U0002243E> /x8e/xa5/xe7/xeb <CJK> +<U00022924> /x8e/xa5/xe7/xec <CJK> +<U0002290E> /x8e/xa5/xe7/xed <CJK> +<U00022916> /x8e/xa5/xe7/xee <CJK> +<U00022918> /x8e/xa5/xe7/xef <CJK> +<U00022910> /x8e/xa5/xe7/xf0 <CJK> +<U00022931> /x8e/xa5/xe7/xf1 <CJK> +<U00022944> /x8e/xa5/xe7/xf2 <CJK> +<U39A6> /x8e/xa5/xe7/xf3 <CJK> +<U00022929> /x8e/xa5/xe7/xf4 <CJK> +<U0002292F> /x8e/xa5/xe7/xf5 <CJK> +<U0002294B> /x8e/xa5/xe7/xf6 <CJK> +<U00022936> /x8e/xa5/xe7/xf7 <CJK> +<U39A3> /x8e/xa5/xe7/xf8 <CJK> +<U00022E34> /x8e/xa5/xe7/xf9 <CJK> +<U00022E00> /x8e/xa5/xe7/xfa <CJK> +<U00022E2B> /x8e/xa5/xe7/xfb <CJK> +<U00023020> /x8e/xa5/xe7/xfc <CJK> +<U00023021> /x8e/xa5/xe7/xfd <CJK> +<U0002301E> /x8e/xa5/xe7/xfe <CJK> +<U0002301D> /x8e/xa5/xe8/xa1 <CJK> +<U000232F5> /x8e/xa5/xe8/xa2 <CJK> +<U000232F2> /x8e/xa5/xe8/xa3 <CJK> +<U000232F6> /x8e/xa5/xe8/xa4 <CJK> +<U00023790> /x8e/xa5/xe8/xa5 <CJK> +<U0002379D> /x8e/xa5/xe8/xa6 <CJK> +<U0002379C> /x8e/xa5/xe8/xa7 <CJK> +<U00023792> /x8e/xa5/xe8/xa8 <CJK> +<U00023794> /x8e/xa5/xe8/xa9 <CJK> +<U000237D1> /x8e/xa5/xe8/xaa <CJK> +<U00023793> /x8e/xa5/xe8/xab <CJK> +<U000237B7> /x8e/xa5/xe8/xac <CJK> +<U00023797> /x8e/xa5/xe8/xad <CJK> +<U000237B0> /x8e/xa5/xe8/xae <CJK> +<U0002379F> /x8e/xa5/xe8/xaf <CJK> +<U000237C9> /x8e/xa5/xe8/xb0 <CJK> +<U0002392D> /x8e/xa5/xe8/xb1 <CJK> +<U0002392C> /x8e/xa5/xe8/xb2 <CJK> +<U00023A77> /x8e/xa5/xe8/xb3 <CJK> +<U00023C2C> /x8e/xa5/xe8/xb4 <CJK> +<U000240C0> /x8e/xa5/xe8/xb5 <CJK> +<U000240B9> /x8e/xa5/xe8/xb6 <CJK> +<U00024453> /x8e/xa5/xe8/xb7 <CJK> +<U00024540> /x8e/xa5/xe8/xb8 <CJK> +<U00024702> /x8e/xa5/xe8/xb9 <CJK> +<U000246FB> /x8e/xa5/xe8/xba <CJK> +<U3EA1> /x8e/xa5/xe8/xbb <CJK> +<U00024A8B> /x8e/xa5/xe8/xbc <CJK> +<U00024AAE> /x8e/xa5/xe8/xbd <CJK> +<U00024AAB> /x8e/xa5/xe8/xbe <CJK> +<U00024BA1> /x8e/xa5/xe8/xbf <CJK> +<U0002A2CD> /x8e/xa5/xe8/xc0 <CJK> +<U00024CEA> /x8e/xa5/xe8/xc1 <CJK> +<U00024EDD> /x8e/xa5/xe8/xc2 <CJK> +<U00024EDC> /x8e/xa5/xe8/xc3 <CJK> +<U00024ED9> /x8e/xa5/xe8/xc4 <CJK> +<U00024FAB> /x8e/xa5/xe8/xc5 <CJK> +<U00024FAC> /x8e/xa5/xe8/xc6 <CJK> +<U00024FAD> /x8e/xa5/xe8/xc7 <CJK> +<U00024FB2> /x8e/xa5/xe8/xc8 <CJK> +<U0002502C> /x8e/xa5/xe8/xc9 <CJK> +<U0002502B> /x8e/xa5/xe8/xca <CJK> +<U000250C2> /x8e/xa5/xe8/xcb <CJK> +<U00025300> /x8e/xa5/xe8/xcc <CJK> +<U0002530D> /x8e/xa5/xe8/xcd <CJK> +<U00025306> /x8e/xa5/xe8/xce <CJK> +<U000252FF> /x8e/xa5/xe8/xcf <CJK> +<U00025303> /x8e/xa5/xe8/xd0 <CJK> +<U00025301> /x8e/xa5/xe8/xd1 <CJK> +<U00025310> /x8e/xa5/xe8/xd2 <CJK> +<U0002530F> /x8e/xa5/xe8/xd3 <CJK> +<U00025305> /x8e/xa5/xe8/xd4 <CJK> +<U00025398> /x8e/xa5/xe8/xd5 <CJK> +<U00025397> /x8e/xa5/xe8/xd6 <CJK> +<U00025396> /x8e/xa5/xe8/xd7 <CJK> +<U00025399> /x8e/xa5/xe8/xd8 <CJK> +<U000255AC> /x8e/xa5/xe8/xd9 <CJK> +<U000255AB> /x8e/xa5/xe8/xda <CJK> +<U00025712> /x8e/xa5/xe8/xdb <CJK> +<U000258D8> /x8e/xa5/xe8/xdc <CJK> +<U000258DF> /x8e/xa5/xe8/xdd <CJK> +<U000258D6> /x8e/xa5/xe8/xde <CJK> +<U00025A2D> /x8e/xa5/xe8/xdf <CJK> +<U00025A32> /x8e/xa5/xe8/xe0 <CJK> +<U00025D3F> /x8e/xa5/xe8/xe1 <CJK> +<U00025D2F> /x8e/xa5/xe8/xe2 <CJK> +<U00025D26> /x8e/xa5/xe8/xe3 <CJK> +<U00025D3A> /x8e/xa5/xe8/xe4 <CJK> +<U00025D39> /x8e/xa5/xe8/xe5 <CJK> +<U425F> /x8e/xa5/xe8/xe6 <CJK> +<U00025D3B> /x8e/xa5/xe8/xe7 <CJK> +<U00025D35> /x8e/xa5/xe8/xe8 <CJK> +<U00025D2A> /x8e/xa5/xe8/xe9 <CJK> +<U00025D21> /x8e/xa5/xe8/xea <CJK> +<U00025D38> /x8e/xa5/xe8/xeb <CJK> +<U00025D37> /x8e/xa5/xe8/xec <CJK> +<U00025D34> /x8e/xa5/xe8/xed <CJK> +<U425C> /x8e/xa5/xe8/xee <CJK> +<U00025D22> /x8e/xa5/xe8/xef <CJK> +<U00025D36> /x8e/xa5/xe8/xf0 <CJK> +<U00025D44> /x8e/xa5/xe8/xf1 <CJK> +<U00025F45> /x8e/xa5/xe8/xf2 <CJK> +<U00025F3B> /x8e/xa5/xe8/xf3 <CJK> +<U00025F36> /x8e/xa5/xe8/xf4 <CJK> +<U00025F42> /x8e/xa5/xe8/xf5 <CJK> +<U0002617A> /x8e/xa5/xe8/xf6 <CJK> +<U00026186> /x8e/xa5/xe8/xf7 <CJK> +<U0002618B> /x8e/xa5/xe8/xf8 <CJK> +<U0002617F> /x8e/xa5/xe8/xf9 <CJK> +<U00026181> /x8e/xa5/xe8/xfa <CJK> +<U0002632A> /x8e/xa5/xe8/xfb <CJK> +<U000263D5> /x8e/xa5/xe8/xfc <CJK> +<U0002649F> /x8e/xa5/xe8/xfd <CJK> +<U0002649D> /x8e/xa5/xe8/xfe <CJK> +<U00026526> /x8e/xa5/xe9/xa1 <CJK> +<U000265F4> /x8e/xa5/xe9/xa2 <CJK> +<U000265F5> /x8e/xa5/xe9/xa3 <CJK> +<U00026815> /x8e/xa5/xe9/xa4 <CJK> +<U0002688E> /x8e/xa5/xe9/xa5 <CJK> +<U0002688F> /x8e/xa5/xe9/xa6 <CJK> +<U00026926> /x8e/xa5/xe9/xa7 <CJK> +<U000269A7> /x8e/xa5/xe9/xa8 <CJK> +<U000269AF> /x8e/xa5/xe9/xa9 <CJK> +<U00026AAD> /x8e/xa5/xe9/xaa <CJK> +<U00026AAC> /x8e/xa5/xe9/xab <CJK> +<U00026AAB> /x8e/xa5/xe9/xac <CJK> +<U00026AAA> /x8e/xa5/xe9/xad <CJK> +<U0002702F> /x8e/xa5/xe9/xae <CJK> +<U00027021> /x8e/xa5/xe9/xaf <CJK> +<U00027023> /x8e/xa5/xe9/xb0 <CJK> +<U000270A3> /x8e/xa5/xe9/xb1 <CJK> +<U00027049> /x8e/xa5/xe9/xb2 <CJK> +<U0002703A> /x8e/xa5/xe9/xb3 <CJK> +<U00027048> /x8e/xa5/xe9/xb4 <CJK> +<U0002702D> /x8e/xa5/xe9/xb5 <CJK> +<U00027025> /x8e/xa5/xe9/xb6 <CJK> +<U00027029> /x8e/xa5/xe9/xb7 <CJK> +<U00027032> /x8e/xa5/xe9/xb8 <CJK> +<U00027034> /x8e/xa5/xe9/xb9 <CJK> +<U00027024> /x8e/xa5/xe9/xba <CJK> +<U0002702C> /x8e/xa5/xe9/xbb <CJK> +<U0002704B> /x8e/xa5/xe9/xbc <CJK> +<U0002703B> /x8e/xa5/xe9/xbd <CJK> +<U00027020> /x8e/xa5/xe9/xbe <CJK> +<U00027028> /x8e/xa5/xe9/xbf <CJK> +<U00027498> /x8e/xa5/xe9/xc0 <CJK> +<U45F5> /x8e/xa5/xe9/xc1 <CJK> +<U00027497> /x8e/xa5/xe9/xc2 <CJK> +<U8804> /x8e/xa5/xe9/xc3 <CJK> +<U0002749D> /x8e/xa5/xe9/xc4 <CJK> +<U000274A8> /x8e/xa5/xe9/xc5 <CJK> +<U000275D5> /x8e/xa5/xe9/xc6 <CJK> +<U00027777> /x8e/xa5/xe9/xc7 <CJK> +<U00027778> /x8e/xa5/xe9/xc8 <CJK> +<U00027772> /x8e/xa5/xe9/xc9 <CJK> +<U00027773> /x8e/xa5/xe9/xca <CJK> +<U00027802> /x8e/xa5/xe9/xcb <CJK> +<U0002793B> /x8e/xa5/xe9/xcc <CJK> +<U00027AFE> /x8e/xa5/xe9/xcd <CJK> +<U00027B0B> /x8e/xa5/xe9/xce <CJK> +<U00027AFF> /x8e/xa5/xe9/xcf <CJK> +<U00027B07> /x8e/xa5/xe9/xd0 <CJK> +<U4711> /x8e/xa5/xe9/xd1 <CJK> +<U470C> /x8e/xa5/xe9/xd2 <CJK> +<U00027B30> /x8e/xa5/xe9/xd3 <CJK> +<U00027BCD> /x8e/xa5/xe9/xd4 <CJK> +<U00027BCF> /x8e/xa5/xe9/xd5 <CJK> +<U00027C10> /x8e/xa5/xe9/xd6 <CJK> +<U00027C0A> /x8e/xa5/xe9/xd7 <CJK> +<U00027C83> /x8e/xa5/xe9/xd8 <CJK> +<U00027D15> /x8e/xa5/xe9/xd9 <CJK> +<U00027D0E> /x8e/xa5/xe9/xda <CJK> +<U00027D0C> /x8e/xa5/xe9/xdb <CJK> +<U00027E02> /x8e/xa5/xe9/xdc <CJK> +<U00027DFE> /x8e/xa5/xe9/xdd <CJK> +<U00027E05> /x8e/xa5/xe9/xde <CJK> +<U00027E15> /x8e/xa5/xe9/xdf <CJK> +<U00027E08> /x8e/xa5/xe9/xe0 <CJK> +<U00027F7F> /x8e/xa5/xe9/xe1 <CJK> +<U00027F77> /x8e/xa5/xe9/xe2 <CJK> +<U00027F7C> /x8e/xa5/xe9/xe3 <CJK> +<U00027F82> /x8e/xa5/xe9/xe4 <CJK> +<U00027F7E> /x8e/xa5/xe9/xe5 <CJK> +<U00027F78> /x8e/xa5/xe9/xe6 <CJK> +<U00027F7D> /x8e/xa5/xe9/xe7 <CJK> +<U00027F79> /x8e/xa5/xe9/xe8 <CJK> +<U00027F81> /x8e/xa5/xe9/xe9 <CJK> +<U0002814B> /x8e/xa5/xe9/xea <CJK> +<U00028163> /x8e/xa5/xe9/xeb <CJK> +<U00028164> /x8e/xa5/xe9/xec <CJK> +<U00028156> /x8e/xa5/xe9/xed <CJK> +<U00028154> /x8e/xa5/xe9/xee <CJK> +<U0002814E> /x8e/xa5/xe9/xef <CJK> +<U00028110> /x8e/xa5/xe9/xf0 <CJK> +<U0002814F> /x8e/xa5/xe9/xf1 <CJK> +<U00028157> /x8e/xa5/xe9/xf2 <CJK> +<U0002815E> /x8e/xa5/xe9/xf3 <CJK> +<U00028151> /x8e/xa5/xe9/xf4 <CJK> +<U0002816A> /x8e/xa5/xe9/xf5 <CJK> +<U00028169> /x8e/xa5/xe9/xf6 <CJK> +<U000283AD> /x8e/xa5/xe9/xf7 <CJK> +<U000283A4> /x8e/xa5/xe9/xf8 <CJK> +<U000283AC> /x8e/xa5/xe9/xf9 <CJK> +<U000283A9> /x8e/xa5/xe9/xfa <CJK> +<U000283AE> /x8e/xa5/xe9/xfb <CJK> +<U0002044C> /x8e/xa5/xe9/xfc <CJK> +<U00028650> /x8e/xa5/xe9/xfd <CJK> +<U00028635> /x8e/xa5/xe9/xfe <CJK> +<U00028632> /x8e/xa5/xea/xa1 <CJK> +<U000287D8> /x8e/xa5/xea/xa2 <CJK> +<U000287D1> /x8e/xa5/xea/xa3 <CJK> +<U000287CF> /x8e/xa5/xea/xa4 <CJK> +<U000287BE> /x8e/xa5/xea/xa5 <CJK> +<U000288D5> /x8e/xa5/xea/xa6 <CJK> +<U000288C1> /x8e/xa5/xea/xa7 <CJK> +<U000288C6> /x8e/xa5/xea/xa8 <CJK> +<U000288C3> /x8e/xa5/xea/xa9 <CJK> +<U000288C2> /x8e/xa5/xea/xaa <CJK> +<U000288C0> /x8e/xa5/xea/xab <CJK> +<U000288C5> /x8e/xa5/xea/xac <CJK> +<U000288C7> /x8e/xa5/xea/xad <CJK> +<U000288BF> /x8e/xa5/xea/xae <CJK> +<U000288C4> /x8e/xa5/xea/xaf <CJK> +<U000288D4> /x8e/xa5/xea/xb0 <CJK> +<U00028A90> /x8e/xa5/xea/xb1 <CJK> +<U00028AD2> /x8e/xa5/xea/xb2 <CJK> +<U494E> /x8e/xa5/xea/xb3 <CJK> +<U00028AD4> /x8e/xa5/xea/xb4 <CJK> +<U00028CAF> /x8e/xa5/xea/xb5 <CJK> +<U00028CAE> /x8e/xa5/xea/xb6 <CJK> +<U00028CB2> /x8e/xa5/xea/xb7 <CJK> +<U00028CAD> /x8e/xa5/xea/xb8 <CJK> +<U00028D9C> /x8e/xa5/xea/xb9 <CJK> +<U00028DA0> /x8e/xa5/xea/xba <CJK> +<U00028DB6> /x8e/xa5/xea/xbb <CJK> +<U00028F3D> /x8e/xa5/xea/xbc <CJK> +<U00028F56> /x8e/xa5/xea/xbd <CJK> +<U00028F82> /x8e/xa5/xea/xbe <CJK> +<U00029028> /x8e/xa5/xea/xbf <CJK> +<U0002902B> /x8e/xa5/xea/xc0 <CJK> +<U0002913C> /x8e/xa5/xea/xc1 <CJK> +<U0002913E> /x8e/xa5/xea/xc2 <CJK> +<U0002913F> /x8e/xa5/xea/xc3 <CJK> +<U00029142> /x8e/xa5/xea/xc4 <CJK> +<U0002913D> /x8e/xa5/xea/xc5 <CJK> +<U00029141> /x8e/xa5/xea/xc6 <CJK> +<U0002913B> /x8e/xa5/xea/xc7 <CJK> +<U00029149> /x8e/xa5/xea/xc8 <CJK> +<U00029143> /x8e/xa5/xea/xc9 <CJK> +<U00029239> /x8e/xa5/xea/xca <CJK> +<U00029238> /x8e/xa5/xea/xcb <CJK> +<U00029322> /x8e/xa5/xea/xcc <CJK> +<U00029308> /x8e/xa5/xea/xcd <CJK> +<U0002930C> /x8e/xa5/xea/xce <CJK> +<U00029306> /x8e/xa5/xea/xcf <CJK> +<U00029313> /x8e/xa5/xea/xd0 <CJK> +<U00029304> /x8e/xa5/xea/xd1 <CJK> +<U00029320> /x8e/xa5/xea/xd2 <CJK> +<U0002931D> /x8e/xa5/xea/xd3 <CJK> +<U00029305> /x8e/xa5/xea/xd4 <CJK> +<U0002930A> /x8e/xa5/xea/xd5 <CJK> +<U000293D6> /x8e/xa5/xea/xd6 <CJK> +<U000293D7> /x8e/xa5/xea/xd7 <CJK> +<U00029436> /x8e/xa5/xea/xd8 <CJK> +<U00029437> /x8e/xa5/xea/xd9 <CJK> +<U00029523> /x8e/xa5/xea/xda <CJK> +<U00029522> /x8e/xa5/xea/xdb <CJK> +<U00029520> /x8e/xa5/xea/xdc <CJK> +<U0002951A> /x8e/xa5/xea/xdd <CJK> +<U0002951D> /x8e/xa5/xea/xde <CJK> +<U0002961C> /x8e/xa5/xea/xdf <CJK> +<U00029620> /x8e/xa5/xea/xe0 <CJK> +<U00029677> /x8e/xa5/xea/xe1 <CJK> +<U0002977F> /x8e/xa5/xea/xe2 <CJK> +<U0002978B> /x8e/xa5/xea/xe3 <CJK> +<U0002977D> /x8e/xa5/xea/xe4 <CJK> +<U00029799> /x8e/xa5/xea/xe5 <CJK> +<U00029784> /x8e/xa5/xea/xe6 <CJK> +<U00029789> /x8e/xa5/xea/xe7 <CJK> +<U00029785> /x8e/xa5/xea/xe8 <CJK> +<U00029783> /x8e/xa5/xea/xe9 <CJK> +<U00029786> /x8e/xa5/xea/xea <CJK> +<U0002979E> /x8e/xa5/xea/xeb <CJK> +<U00029853> /x8e/xa5/xea/xec <CJK> +<U00029917> /x8e/xa5/xea/xed <CJK> +<U4B94> /x8e/xa5/xea/xee <CJK> +<U00029919> /x8e/xa5/xea/xef <CJK> +<U00029920> /x8e/xa5/xea/xf0 <CJK> +<U0002991F> /x8e/xa5/xea/xf1 <CJK> +<U00029923> /x8e/xa5/xea/xf2 <CJK> +<U00029918> /x8e/xa5/xea/xf3 <CJK> +<U00029921> /x8e/xa5/xea/xf4 <CJK> +<U00029929> /x8e/xa5/xea/xf5 <CJK> +<U00029924> /x8e/xa5/xea/xf6 <CJK> +<U00029926> /x8e/xa5/xea/xf7 <CJK> +<U00029A5E> /x8e/xa5/xea/xf8 <CJK> +<U00029A6F> /x8e/xa5/xea/xf9 <CJK> +<U00029A6E> /x8e/xa5/xea/xfa <CJK> +<U00029A74> /x8e/xa5/xea/xfb <CJK> +<U00029A72> /x8e/xa5/xea/xfc <CJK> +<U00029A73> /x8e/xa5/xea/xfd <CJK> +<U00029B7D> /x8e/xa5/xea/xfe <CJK> +<U00029B7E> /x8e/xa5/xeb/xa1 <CJK> +<U00029B85> /x8e/xa5/xeb/xa2 <CJK> +<U00029B7F> /x8e/xa5/xeb/xa3 <CJK> +<U00029B84> /x8e/xa5/xeb/xa4 <CJK> +<U00029C44> /x8e/xa5/xeb/xa5 <CJK> +<U00029CF5> /x8e/xa5/xeb/xa6 <CJK> +<U00029CF8> /x8e/xa5/xeb/xa7 <CJK> +<U00029D03> /x8e/xa5/xeb/xa8 <CJK> +<U00029CF6> /x8e/xa5/xeb/xa9 <CJK> +<U00029E28> /x8e/xa5/xeb/xaa <CJK> +<U4C63> /x8e/xa5/xeb/xab <CJK> +<U00029E39> /x8e/xa5/xeb/xac <CJK> +<U00029DFB> /x8e/xa5/xeb/xad <CJK> +<U00029E0E> /x8e/xa5/xeb/xae <CJK> +<U00029DFD> /x8e/xa5/xeb/xaf <CJK> +<U00029E1F> /x8e/xa5/xeb/xb0 <CJK> +<U4C61> /x8e/xa5/xeb/xb1 <CJK> +<U00029E03> /x8e/xa5/xeb/xb2 <CJK> +<U9BD8> /x8e/xa5/xeb/xb3 <CJK> +<U00029E10> /x8e/xa5/xeb/xb4 <CJK> +<U4C5A> /x8e/xa5/xeb/xb5 <CJK> +<U00029E0D> /x8e/xa5/xeb/xb6 <CJK> +<U00029E27> /x8e/xa5/xeb/xb7 <CJK> +<U00029E41> /x8e/xa5/xeb/xb8 <CJK> +<U0002A072> /x8e/xa5/xeb/xb9 <CJK> +<U0002A078> /x8e/xa5/xeb/xba <CJK> +<U0002A080> /x8e/xa5/xeb/xbb <CJK> +<U4CE3> /x8e/xa5/xeb/xbc <CJK> +<U0002A085> /x8e/xa5/xeb/xbd <CJK> +<U0002A07B> /x8e/xa5/xeb/xbe <CJK> +<U9D7C> /x8e/xa5/xeb/xbf <CJK> +<U0002A07D> /x8e/xa5/xeb/xc0 <CJK> +<U0002A091> /x8e/xa5/xeb/xc1 <CJK> +<U0002A088> /x8e/xa5/xeb/xc2 <CJK> +<U0002A0AA> /x8e/xa5/xeb/xc3 <CJK> +<U0002A08D> /x8e/xa5/xeb/xc4 <CJK> +<U0002A089> /x8e/xa5/xeb/xc5 <CJK> +<U0002A095> /x8e/xa5/xeb/xc6 <CJK> +<U0002A09B> /x8e/xa5/xeb/xc7 <CJK> +<U0002A08C> /x8e/xa5/xeb/xc8 <CJK> +<U0002A09E> /x8e/xa5/xeb/xc9 <CJK> +<U0002A07C> /x8e/xa5/xeb/xca <CJK> +<U0002A086> /x8e/xa5/xeb/xcb <CJK> +<U0002A084> /x8e/xa5/xeb/xcc <CJK> +<U0002A268> /x8e/xa5/xeb/xcd <CJK> +<U0002A2C5> /x8e/xa5/xeb/xce <CJK> +<U0002A2C4> /x8e/xa5/xeb/xcf <CJK> +<U0002A2C9> /x8e/xa5/xeb/xd0 <CJK> +<U0002A2C6> /x8e/xa5/xeb/xd1 <CJK> +<U0002A342> /x8e/xa5/xeb/xd2 <CJK> +<U0002A345> /x8e/xa5/xeb/xd3 <CJK> +<U0002A341> /x8e/xa5/xeb/xd4 <CJK> +<U0002A344> /x8e/xa5/xeb/xd5 <CJK> +<U0002A3A6> /x8e/xa5/xeb/xd6 <CJK> +<U0002A3C2> /x8e/xa5/xeb/xd7 <CJK> +<U0002A442> /x8e/xa5/xeb/xd8 <CJK> +<U0002A449> /x8e/xa5/xeb/xd9 <CJK> +<U0002A448> /x8e/xa5/xeb/xda <CJK> +<U0002A44A> /x8e/xa5/xeb/xdb <CJK> +<U0002A44C> /x8e/xa5/xeb/xdc <CJK> +<U0002A44B> /x8e/xa5/xeb/xdd <CJK> +<U0002A517> /x8e/xa5/xeb/xde <CJK> +<U0002A518> /x8e/xa5/xeb/xdf <CJK> +<U0002A515> /x8e/xa5/xeb/xe0 <CJK> +<U0002A552> /x8e/xa5/xeb/xe1 <CJK> +<U0002A554> /x8e/xa5/xeb/xe2 <CJK> +<U0002A553> /x8e/xa5/xeb/xe3 <CJK> +<U0002A59A> /x8e/xa5/xeb/xe4 <CJK> +<U0002A59B> /x8e/xa5/xeb/xe5 <CJK> +<U0002A5DC> /x8e/xa5/xeb/xe6 <CJK> +<U0002A5E4> /x8e/xa5/xeb/xe7 <CJK> +<U0002A691> /x8e/xa5/xeb/xe8 <CJK> +<U4DAF> /x8e/xa5/xeb/xe9 <CJK> +<U0002A6BA> /x8e/xa5/xeb/xea <CJK> +<U00020451> /x8e/xa5/xeb/xeb <CJK> +<U0002045B> /x8e/xa5/xeb/xec <CJK> +<U000204CF> /x8e/xa5/xeb/xed <CJK> +<U00023305> /x8e/xa5/xeb/xee <CJK> +<U00021113> /x8e/xa5/xeb/xef <CJK> +<U00021115> /x8e/xa5/xeb/xf0 <CJK> +<U00021114> /x8e/xa5/xeb/xf1 <CJK> +<U00021123> /x8e/xa5/xeb/xf2 <CJK> +<U3613> /x8e/xa5/xeb/xf3 <CJK> +<U00021111> /x8e/xa5/xeb/xf4 <CJK> +<U00021112> /x8e/xa5/xeb/xf5 <CJK> +<U3680> /x8e/xa5/xeb/xf6 <CJK> +<U000214F0> /x8e/xa5/xeb/xf7 <CJK> +<U0002169B> /x8e/xa5/xeb/xf8 <CJK> +<U00021912> /x8e/xa5/xeb/xf9 <CJK> +<U00021916> /x8e/xa5/xeb/xfa <CJK> +<U00021917> /x8e/xa5/xeb/xfb <CJK> +<U000219B5> /x8e/xa5/xeb/xfc <CJK> +<U00021CF4> /x8e/xa5/xeb/xfd <CJK> +<U00021FB1> /x8e/xa5/xeb/xfe <CJK> +<U00022179> /x8e/xa5/xec/xa1 <CJK> +<U000222FF> /x8e/xa5/xec/xa2 <CJK> +<U000222FC> /x8e/xa5/xec/xa3 <CJK> +<U000222FB> /x8e/xa5/xec/xa4 <CJK> +<U0002243F> /x8e/xa5/xec/xa5 <CJK> +<U00022444> /x8e/xa5/xec/xa6 <CJK> +<U0002259D> /x8e/xa5/xec/xa7 <CJK> +<U00022932> /x8e/xa5/xec/xa8 <CJK> +<U0002294C> /x8e/xa5/xec/xa9 <CJK> +<U0002292B> /x8e/xa5/xec/xaa <CJK> +<U0002295A> /x8e/xa5/xec/xab <CJK> +<U00022A1F> /x8e/xa5/xec/xac <CJK> +<U00022E01> /x8e/xa5/xec/xad <CJK> +<U00022E2D> /x8e/xa5/xec/xae <CJK> +<U00022E27> /x8e/xa5/xec/xaf <CJK> +<U00022E59> /x8e/xa5/xec/xb0 <CJK> +<U00022E5A> /x8e/xa5/xec/xb1 <CJK> +<U00022E4D> /x8e/xa5/xec/xb2 <CJK> +<U00022E58> /x8e/xa5/xec/xb3 <CJK> +<U00023023> /x8e/xa5/xec/xb4 <CJK> +<U00023025> /x8e/xa5/xec/xb5 <CJK> +<U0002302B> /x8e/xa5/xec/xb6 <CJK> +<U000232FF> /x8e/xa5/xec/xb7 <CJK> +<U000233AE> /x8e/xa5/xec/xb8 <CJK> +<U000237CB> /x8e/xa5/xec/xb9 <CJK> +<U000237CA> /x8e/xa5/xec/xba <CJK> +<U000237D0> /x8e/xa5/xec/xbb <CJK> +<U000237CE> /x8e/xa5/xec/xbc <CJK> +<U000237CC> /x8e/xa5/xec/xbd <CJK> +<U000237D8> /x8e/xa5/xec/xbe <CJK> +<U000237C6> /x8e/xa5/xec/xbf <CJK> +<U000237D2> /x8e/xa5/xec/xc0 <CJK> +<U000237CF> /x8e/xa5/xec/xc1 <CJK> +<U000237C8> /x8e/xa5/xec/xc2 <CJK> +<U00023B17> /x8e/xa5/xec/xc3 <CJK> +<U4DB0> /x8e/xa5/xec/xc4 <CJK> +<U000240C4> /x8e/xa5/xec/xc5 <CJK> +<U00029240> /x8e/xa5/xec/xc6 <CJK> +<U000240E9> /x8e/xa5/xec/xc7 <CJK> +<U000240F2> /x8e/xa5/xec/xc8 <CJK> +<U000240FC> /x8e/xa5/xec/xc9 <CJK> +<U000240EA> /x8e/xa5/xec/xca <CJK> +<U000240EB> /x8e/xa5/xec/xcb <CJK> +<U000240FD> /x8e/xa5/xec/xcc <CJK> +<U00024478> /x8e/xa5/xec/xcd <CJK> +<U00024477> /x8e/xa5/xec/xce <CJK> +<U00024473> /x8e/xa5/xec/xcf <CJK> +<U0002449E> /x8e/xa5/xec/xd0 <CJK> +<U00024479> /x8e/xa5/xec/xd1 <CJK> +<U000245A2> /x8e/xa5/xec/xd2 <CJK> +<U00024603> /x8e/xa5/xec/xd3 <CJK> +<U00024704> /x8e/xa5/xec/xd4 <CJK> +<U00024705> /x8e/xa5/xec/xd5 <CJK> +<U000248CE> /x8e/xa5/xec/xd6 <CJK> +<U00024ABF> /x8e/xa5/xec/xd7 <CJK> +<U00024EF6> /x8e/xa5/xec/xd8 <CJK> +<U00024EF7> /x8e/xa5/xec/xd9 <CJK> +<U00025031> /x8e/xa5/xec/xda <CJK> +<U00025030> /x8e/xa5/xec/xdb <CJK> +<U000250C9> /x8e/xa5/xec/xdc <CJK> +<U000250C7> /x8e/xa5/xec/xdd <CJK> +<U0002531C> /x8e/xa5/xec/xde <CJK> +<U00025328> /x8e/xa5/xec/xdf <CJK> +<U0002531A> /x8e/xa5/xec/xe0 <CJK> +<U0002531E> /x8e/xa5/xec/xe1 <CJK> +<U0002531B> /x8e/xa5/xec/xe2 <CJK> +<U0002531F> /x8e/xa5/xec/xe3 <CJK> +<U000255BF> /x8e/xa5/xec/xe4 <CJK> +<U000255BB> /x8e/xa5/xec/xe5 <CJK> +<U000255BC> /x8e/xa5/xec/xe6 <CJK> +<U000255C0> /x8e/xa5/xec/xe7 <CJK> +<U0002571A> /x8e/xa5/xec/xe8 <CJK> +<U000258EF> /x8e/xa5/xec/xe9 <CJK> +<U000258EC> /x8e/xa5/xec/xea <CJK> +<U000258E9> /x8e/xa5/xec/xeb <CJK> +<U000258F0> /x8e/xa5/xec/xec <CJK> +<U000258FE> /x8e/xa5/xec/xed <CJK> +<U00025A34> /x8e/xa5/xec/xee <CJK> +<U00025D6A> /x8e/xa5/xec/xef <CJK> +<U00025D95> /x8e/xa5/xec/xf0 <CJK> +<U00025D6C> /x8e/xa5/xec/xf1 <CJK> +<U00025D72> /x8e/xa5/xec/xf2 <CJK> +<U00025D67> /x8e/xa5/xec/xf3 <CJK> +<U00025D60> /x8e/xa5/xec/xf4 <CJK> +<U00025D6B> /x8e/xa5/xec/xf5 <CJK> +<U00025D5E> /x8e/xa5/xec/xf6 <CJK> +<U00025D6F> /x8e/xa5/xec/xf7 <CJK> +<U00025D66> /x8e/xa5/xec/xf8 <CJK> +<U7C46> /x8e/xa5/xec/xf9 <CJK> +<U00025D62> /x8e/xa5/xec/xfa <CJK> +<U00025D5D> /x8e/xa5/xec/xfb <CJK> +<U00025D5C> /x8e/xa5/xec/xfc <CJK> +<U00025F50> /x8e/xa5/xec/xfe <CJK> +<U0002619F> /x8e/xa5/xed/xa1 <CJK> +<U4323> /x8e/xa5/xed/xa2 <CJK> +<U0002619E> /x8e/xa5/xed/xa3 <CJK> +<U000261A6> /x8e/xa5/xed/xa4 <CJK> +<U00026335> /x8e/xa5/xed/xa5 <CJK> +<U00026338> /x8e/xa5/xed/xa6 <CJK> +<U00026336> /x8e/xa5/xed/xa7 <CJK> +<U0002633A> /x8e/xa5/xed/xa8 <CJK> +<U000263DC> /x8e/xa5/xed/xa9 <CJK> +<U0002687C> /x8e/xa5/xed/xaa <CJK> +<U000268AB> /x8e/xa5/xed/xab <CJK> +<U4449> /x8e/xa5/xed/xac <CJK> +<U000268A8> /x8e/xa5/xed/xad <CJK> +<U000268A7> /x8e/xa5/xed/xae <CJK> +<U0002692B> /x8e/xa5/xed/xaf <CJK> +<U0002692C> /x8e/xa5/xed/xb0 <CJK> +<U00026928> /x8e/xa5/xed/xb1 <CJK> +<U0002092B> /x8e/xa5/xed/xb2 <CJK> +<U000269A9> /x8e/xa5/xed/xb3 <CJK> +<U000269AA> /x8e/xa5/xed/xb4 <CJK> +<U000269AB> /x8e/xa5/xed/xb5 <CJK> +<U000269F8> /x8e/xa5/xed/xb6 <CJK> +<U00026AB1> /x8e/xa5/xed/xb7 <CJK> +<U00026AF0> /x8e/xa5/xed/xb8 <CJK> +<U00026AEF> /x8e/xa5/xed/xb9 <CJK> +<U000270A8> /x8e/xa5/xed/xba <CJK> +<U0002708B> /x8e/xa5/xed/xbb <CJK> +<U00027094> /x8e/xa5/xed/xbc <CJK> +<U0002709E> /x8e/xa5/xed/xbd <CJK> +<U0002708F> /x8e/xa5/xed/xbe <CJK> +<U00027088> /x8e/xa5/xed/xbf <CJK> +<U0002707E> /x8e/xa5/xed/xc0 <CJK> +<U00027081> /x8e/xa5/xed/xc1 <CJK> +<U00027030> /x8e/xa5/xed/xc2 <CJK> +<U0002709B> /x8e/xa5/xed/xc3 <CJK> +<U00027082> /x8e/xa5/xed/xc4 <CJK> +<U00027090> /x8e/xa5/xed/xc5 <CJK> +<U00027085> /x8e/xa5/xed/xc6 <CJK> +<U0002707F> /x8e/xa5/xed/xc7 <CJK> +<U000270A9> /x8e/xa5/xed/xc8 <CJK> +<U000270DE> /x8e/xa5/xed/xc9 <CJK> +<U0002720D> /x8e/xa5/xed/xca <CJK> +<U45FA> /x8e/xa5/xed/xcb <CJK> +<U000274CF> /x8e/xa5/xed/xcc <CJK> +<U000274CB> /x8e/xa5/xed/xcd <CJK> +<U000274D8> /x8e/xa5/xed/xce <CJK> +<U000274DD> /x8e/xa5/xed/xcf <CJK> +<U000274D3> /x8e/xa5/xed/xd0 <CJK> +<U000274D0> /x8e/xa5/xed/xd1 <CJK> +<U000274D5> /x8e/xa5/xed/xd2 <CJK> +<U000274D6> /x8e/xa5/xed/xd3 <CJK> +<U000275D6> /x8e/xa5/xed/xd4 <CJK> +<U00027792> /x8e/xa5/xed/xd5 <CJK> +<U00027795> /x8e/xa5/xed/xd6 <CJK> +<U0002A5CB> /x8e/xa5/xed/xd7 <CJK> +<U0002778D> /x8e/xa5/xed/xd8 <CJK> +<U0002779B> /x8e/xa5/xed/xd9 <CJK> +<U0002779D> /x8e/xa5/xed/xda <CJK> +<U0002778F> /x8e/xa5/xed/xdb <CJK> +<U0002779E> /x8e/xa5/xed/xdc <CJK> +<U000277A6> /x8e/xa5/xed/xdd <CJK> +<U00027896> /x8e/xa5/xed/xde <CJK> +<U00027892> /x8e/xa5/xed/xdf <CJK> +<U00027B16> /x8e/xa5/xed/xe0 <CJK> +<U00027B2A> /x8e/xa5/xed/xe1 <CJK> +<U00027B29> /x8e/xa5/xed/xe2 <CJK> +<U00027B2C> /x8e/xa5/xed/xe3 <CJK> +<U00027C15> /x8e/xa5/xed/xe4 <CJK> +<U00027C12> /x8e/xa5/xed/xe5 <CJK> +<U00027C11> /x8e/xa5/xed/xe6 <CJK> +<U00027C13> /x8e/xa5/xed/xe7 <CJK> +<U00027C88> /x8e/xa5/xed/xe8 <CJK> +<U00027C8B> /x8e/xa5/xed/xe9 <CJK> +<U00027C8A> /x8e/xa5/xed/xea <CJK> +<U00027C87> /x8e/xa5/xed/xeb <CJK> +<U00027D17> /x8e/xa5/xed/xec <CJK> +<U00027D16> /x8e/xa5/xed/xed <CJK> +<U00027D1A> /x8e/xa5/xed/xee <CJK> +<U00027E19> /x8e/xa5/xed/xef <CJK> +<U00027E17> /x8e/xa5/xed/xf0 <CJK> +<U00027F91> /x8e/xa5/xed/xf1 <CJK> +<U00027F94> /x8e/xa5/xed/xf2 <CJK> +<U0002818B> /x8e/xa5/xed/xf3 <CJK> +<U00028190> /x8e/xa5/xed/xf4 <CJK> +<U0002818F> /x8e/xa5/xed/xf5 <CJK> +<U00028186> /x8e/xa5/xed/xf6 <CJK> +<U00028183> /x8e/xa5/xed/xf7 <CJK> +<U0002818E> /x8e/xa5/xed/xf8 <CJK> +<U00028187> /x8e/xa5/xed/xf9 <CJK> +<U000281A8> /x8e/xa5/xed/xfa <CJK> +<U00028185> /x8e/xa5/xed/xfb <CJK> +<U000281A6> /x8e/xa5/xed/xfc <CJK> +<U00028182> /x8e/xa5/xed/xfd <CJK> +<U000281A7> /x8e/xa5/xed/xfe <CJK> +<U000283B9> /x8e/xa5/xee/xa1 <CJK> +<U000283B7> /x8e/xa5/xee/xa2 <CJK> +<U000283B4> /x8e/xa5/xee/xa3 <CJK> +<U000283B6> /x8e/xa5/xee/xa4 <CJK> +<U000283B3> /x8e/xa5/xee/xa5 <CJK> +<U000283C6> /x8e/xa5/xee/xa6 <CJK> +<U0002863C> /x8e/xa5/xee/xa7 <CJK> +<U00028640> /x8e/xa5/xee/xa8 <CJK> +<U00028638> /x8e/xa5/xee/xa9 <CJK> +<U00028791> /x8e/xa5/xee/xaa <CJK> +<U000287A6> /x8e/xa5/xee/xab <CJK> +<U000287DA> /x8e/xa5/xee/xac <CJK> +<U000288DA> /x8e/xa5/xee/xad <CJK> +<U000288D8> /x8e/xa5/xee/xae <CJK> +<U000288D9> /x8e/xa5/xee/xaf <CJK> +<U000288DB> /x8e/xa5/xee/xb0 <CJK> +<U000288D7> /x8e/xa5/xee/xb1 <CJK> +<U00028B16> /x8e/xa5/xee/xb2 <CJK> +<U00028B12> /x8e/xa5/xee/xb3 <CJK> +<U00028B1F> /x8e/xa5/xee/xb4 <CJK> +<U4959> /x8e/xa5/xee/xb5 <CJK> +<U00028B14> /x8e/xa5/xee/xb6 <CJK> +<U00028B1A> /x8e/xa5/xee/xb7 <CJK> +<U00028B10> /x8e/xa5/xee/xb8 <CJK> +<U00028CB3> /x8e/xa5/xee/xb9 <CJK> +<U00028DAE> /x8e/xa5/xee/xba <CJK> +<U00028DC1> /x8e/xa5/xee/xbb <CJK> +<U00028DB0> /x8e/xa5/xee/xbc <CJK> +<U00028DAF> /x8e/xa5/xee/xbd <CJK> +<U00028DB1> /x8e/xa5/xee/xbe <CJK> +<U00028DAD> /x8e/xa5/xee/xbf <CJK> +<U00028DB2> /x8e/xa5/xee/xc0 <CJK> +<U00028DC4> /x8e/xa5/xee/xc1 <CJK> +<U0002903C> /x8e/xa5/xee/xc2 <CJK> +<U0002903F> /x8e/xa5/xee/xc3 <CJK> +<U00029161> /x8e/xa5/xee/xc4 <CJK> +<U00029166> /x8e/xa5/xee/xc5 <CJK> +<U0002923C> /x8e/xa5/xee/xc6 <CJK> +<U0002923B> /x8e/xa5/xee/xc7 <CJK> +<U0002932C> /x8e/xa5/xee/xc8 <CJK> +<U4A7E> /x8e/xa5/xee/xc9 <CJK> +<U0002932A> /x8e/xa5/xee/xca <CJK> +<U0002933E> /x8e/xa5/xee/xcb <CJK> +<U0002932F> /x8e/xa5/xee/xcc <CJK> +<U00029332> /x8e/xa5/xee/xcd <CJK> +<U00029327> /x8e/xa5/xee/xce <CJK> +<U00029329> /x8e/xa5/xee/xcf <CJK> +<U00029340> /x8e/xa5/xee/xd0 <CJK> +<U000293DF> /x8e/xa5/xee/xd1 <CJK> +<U000293DE> /x8e/xa5/xee/xd2 <CJK> +<U0002943C> /x8e/xa5/xee/xd3 <CJK> +<U0002943B> /x8e/xa5/xee/xd4 <CJK> +<U0002943E> /x8e/xa5/xee/xd5 <CJK> +<U00029521> /x8e/xa5/xee/xd6 <CJK> +<U00029546> /x8e/xa5/xee/xd7 <CJK> +<U0002953C> /x8e/xa5/xee/xd8 <CJK> +<U00029536> /x8e/xa5/xee/xd9 <CJK> +<U00029538> /x8e/xa5/xee/xda <CJK> +<U00029535> /x8e/xa5/xee/xdb <CJK> +<U00029631> /x8e/xa5/xee/xdc <CJK> +<U00029636> /x8e/xa5/xee/xdd <CJK> +<U0002962D> /x8e/xa5/xee/xde <CJK> +<U00029633> /x8e/xa5/xee/xdf <CJK> +<U0002962F> /x8e/xa5/xee/xe0 <CJK> +<U0002962E> /x8e/xa5/xee/xe1 <CJK> +<U00029635> /x8e/xa5/xee/xe2 <CJK> +<U000297AC> /x8e/xa5/xee/xe3 <CJK> +<U000297A9> /x8e/xa5/xee/xe4 <CJK> +<U000297A6> /x8e/xa5/xee/xe5 <CJK> +<U4BA8> /x8e/xa5/xee/xe6 <CJK> +<U0002994C> /x8e/xa5/xee/xe7 <CJK> +<U00029943> /x8e/xa5/xee/xe8 <CJK> +<U00029941> /x8e/xa5/xee/xe9 <CJK> +<U0002994F> /x8e/xa5/xee/xea <CJK> +<U00029942> /x8e/xa5/xee/xeb <CJK> +<U00029951> /x8e/xa5/xee/xec <CJK> +<U4BA9> /x8e/xa5/xee/xed <CJK> +<U00029940> /x8e/xa5/xee/xee <CJK> +<U00029950> /x8e/xa5/xee/xef <CJK> +<U00029945> /x8e/xa5/xee/xf0 <CJK> +<U0002994A> /x8e/xa5/xee/xf1 <CJK> +<U0002994B> /x8e/xa5/xee/xf2 <CJK> +<U00029A83> /x8e/xa5/xee/xf3 <CJK> +<U00029A82> /x8e/xa5/xee/xf4 <CJK> +<U00029A81> /x8e/xa5/xee/xf5 <CJK> +<U00029AE0> /x8e/xa5/xee/xf6 <CJK> +<U00029B98> /x8e/xa5/xee/xf7 <CJK> +<U00029B9F> /x8e/xa5/xee/xf8 <CJK> +<U00029B9B> /x8e/xa5/xee/xf9 <CJK> +<U00029B9A> /x8e/xa5/xee/xfa <CJK> +<U00029B99> /x8e/xa5/xee/xfb <CJK> +<U00029B96> /x8e/xa5/xee/xfc <CJK> +<U00029BAE> /x8e/xa5/xee/xfd <CJK> +<U00029B9E> /x8e/xa5/xee/xfe <CJK> +<U00029D09> /x8e/xa5/xef/xa1 <CJK> +<U00029D0D> /x8e/xa5/xef/xa2 <CJK> +<U00029E4E> /x8e/xa5/xef/xa3 <CJK> +<U00029E4A> /x8e/xa5/xef/xa4 <CJK> +<U00029E4D> /x8e/xa5/xef/xa5 <CJK> +<U00029E40> /x8e/xa5/xef/xa6 <CJK> +<U00029E3E> /x8e/xa5/xef/xa7 <CJK> +<U00029E48> /x8e/xa5/xef/xa8 <CJK> +<U00029E42> /x8e/xa5/xef/xa9 <CJK> +<U00029E62> /x8e/xa5/xef/xaa <CJK> +<U00029E45> /x8e/xa5/xef/xab <CJK> +<U00029E51> /x8e/xa5/xef/xac <CJK> +<U0002A0C6> /x8e/xa5/xef/xad <CJK> +<U0002A0D0> /x8e/xa5/xef/xae <CJK> +<U0002A0C0> /x8e/xa5/xef/xaf <CJK> +<U0002A0B7> /x8e/xa5/xef/xb0 <CJK> +<U0002A0C2> /x8e/xa5/xef/xb1 <CJK> +<U0002A0BC> /x8e/xa5/xef/xb2 <CJK> +<U0002A0C5> /x8e/xa5/xef/xb3 <CJK> +<U0002A0DC> /x8e/xa5/xef/xb4 <CJK> +<U0002A0DB> /x8e/xa5/xef/xb5 <CJK> +<U0002A0D2> /x8e/xa5/xef/xb6 <CJK> +<U0002A0C7> /x8e/xa5/xef/xb7 <CJK> +<U0002A0B6> /x8e/xa5/xef/xb8 <CJK> +<U0002A0C9> /x8e/xa5/xef/xb9 <CJK> +<U9D8D> /x8e/xa5/xef/xba <CJK> +<U0002A0D1> /x8e/xa5/xef/xbb <CJK> +<U0002A0CD> /x8e/xa5/xef/xbc <CJK> +<U0002A0DA> /x8e/xa5/xef/xbd <CJK> +<U0002A0BA> /x8e/xa5/xef/xbe <CJK> +<U0002A0D3> /x8e/xa5/xef/xbf <CJK> +<U0002A0CE> /x8e/xa5/xef/xc0 <CJK> +<U0002A0F6> /x8e/xa5/xef/xc1 <CJK> +<U0002A0BD> /x8e/xa5/xef/xc2 <CJK> +<U0002A0DD> /x8e/xa5/xef/xc3 <CJK> +<U0002A0C8> /x8e/xa5/xef/xc4 <CJK> +<U0002A10D> /x8e/xa5/xef/xc5 <CJK> +<U0002A135> /x8e/xa5/xef/xc6 <CJK> +<U0002A271> /x8e/xa5/xef/xc7 <CJK> +<U0002A26E> /x8e/xa5/xef/xc8 <CJK> +<U0002A26F> /x8e/xa5/xef/xc9 <CJK> +<U0002A2D6> /x8e/xa5/xef/xca <CJK> +<U0002A34C> /x8e/xa5/xef/xcb <CJK> +<U0002A34F> /x8e/xa5/xef/xcc <CJK> +<U0002A354> /x8e/xa5/xef/xcd <CJK> +<U0002A353> /x8e/xa5/xef/xce <CJK> +<U0002A3C9> /x8e/xa5/xef/xcf <CJK> +<U0002A3C8> /x8e/xa5/xef/xd0 <CJK> +<U0002A403> /x8e/xa5/xef/xd1 <CJK> +<U4D54> /x8e/xa5/xef/xd2 <CJK> +<U0002A404> /x8e/xa5/xef/xd3 <CJK> +<U0002A457> /x8e/xa5/xef/xd5 <CJK> +<U0002A452> /x8e/xa5/xef/xd6 <CJK> +<U0002A453> /x8e/xa5/xef/xd7 <CJK> +<U4D6D> /x8e/xa5/xef/xd8 <CJK> +<U0002A456> /x8e/xa5/xef/xd9 <CJK> +<U0002A45C> /x8e/xa5/xef/xda <CJK> +<U0002A455> /x8e/xa5/xef/xdb <CJK> +<U0002A564> /x8e/xa5/xef/xdc <CJK> +<U0002A55D> /x8e/xa5/xef/xdd <CJK> +<U0002A55E> /x8e/xa5/xef/xde <CJK> +<U0002A5A2> /x8e/xa5/xef/xdf <CJK> +<U0002A5A3> /x8e/xa5/xef/xe0 <CJK> +<U4D8E> /x8e/xa5/xef/xe1 <CJK> +<U0002A5E7> /x8e/xa5/xef/xe2 <CJK> +<U0002A5E6> /x8e/xa5/xef/xe3 <CJK> +<U0002A698> /x8e/xa5/xef/xe4 <CJK> +<U0002A6AC> /x8e/xa5/xef/xe5 <CJK> +<U0002A6AF> /x8e/xa5/xef/xe6 <CJK> +<U0002A6AE> /x8e/xa5/xef/xe7 <CJK> +<U00020459> /x8e/xa5/xef/xe8 <CJK> +<U000205A9> /x8e/xa5/xef/xe9 <CJK> +<U0002082A> /x8e/xa5/xef/xea <CJK> +<U000208C7> /x8e/xa5/xef/xeb <CJK> +<U00021141> /x8e/xa5/xef/xec <CJK> +<U00021137> /x8e/xa5/xef/xed <CJK> +<U00021135> /x8e/xa5/xef/xee <CJK> +<U00021133> /x8e/xa5/xef/xef <CJK> +<U00021139> /x8e/xa5/xef/xf0 <CJK> +<U00021132> /x8e/xa5/xef/xf1 <CJK> +<U000214FF> /x8e/xa5/xef/xf2 <CJK> +<U00021501> /x8e/xa5/xef/xf3 <CJK> +<U000214F8> /x8e/xa5/xef/xf4 <CJK> +<U0002191B> /x8e/xa5/xef/xf5 <CJK> +<U00021919> /x8e/xa5/xef/xf6 <CJK> +<U00021BBF> /x8e/xa5/xef/xf7 <CJK> +<U00021FBC> /x8e/xa5/xef/xf8 <CJK> +<U00021FBE> /x8e/xa5/xef/xf9 <CJK> +<U00021FBD> /x8e/xa5/xef/xfa <CJK> +<U0002217D> /x8e/xa5/xef/xfb <CJK> +<U00022446> /x8e/xa5/xef/xfc <CJK> +<U00022447> /x8e/xa5/xef/xfd <CJK> +<U000225A4> /x8e/xa5/xef/xfe <CJK> +<U00022A21> /x8e/xa5/xf0/xa1 <CJK> +<U00022A62> /x8e/xa5/xf0/xa2 <CJK> +<U00022E86> /x8e/xa5/xf0/xa3 <CJK> +<U3A72> /x8e/xa5/xf0/xa4 <CJK> +<U0002302F> /x8e/xa5/xf0/xa5 <CJK> +<U00023031> /x8e/xa5/xf0/xa6 <CJK> +<U3C14> /x8e/xa5/xf0/xa7 <CJK> +<U000237F8> /x8e/xa5/xf0/xa8 <CJK> +<U000237F5> /x8e/xa5/xf0/xa9 <CJK> +<U000237F9> /x8e/xa5/xf0/xaa <CJK> +<U000237F2> /x8e/xa5/xf0/xab <CJK> +<U000237FA> /x8e/xa5/xf0/xac <CJK> +<U000237F3> /x8e/xa5/xf0/xad <CJK> +<U00023814> /x8e/xa5/xf0/xae <CJK> +<U000237FD> /x8e/xa5/xf0/xaf <CJK> +<U0002380F> /x8e/xa5/xf0/xb0 <CJK> +<U0002380E> /x8e/xa5/xf0/xb1 <CJK> +<U00023801> /x8e/xa5/xf0/xb2 <CJK> +<U00023937> /x8e/xa5/xf0/xb3 <CJK> +<U00023935> /x8e/xa5/xf0/xb4 <CJK> +<U00023934> /x8e/xa5/xf0/xb5 <CJK> +<U00023931> /x8e/xa5/xf0/xb6 <CJK> +<U00023A7A> /x8e/xa5/xf0/xb7 <CJK> +<U00023A7B> /x8e/xa5/xf0/xb8 <CJK> +<U00023C37> /x8e/xa5/xf0/xb9 <CJK> +<U0002412B> /x8e/xa5/xf0/xba <CJK> +<U000240FB> /x8e/xa5/xf0/xbb <CJK> +<U00024116> /x8e/xa5/xf0/xbc <CJK> +<U00024113> /x8e/xa5/xf0/xbd <CJK> +<U3D93> /x8e/xa5/xf0/xbe <CJK> +<U00024111> /x8e/xa5/xf0/xbf <CJK> +<U0002410F> /x8e/xa5/xf0/xc0 <CJK> +<U0002411B> /x8e/xa5/xf0/xc1 <CJK> +<U00024138> /x8e/xa5/xf0/xc2 <CJK> +<U000244A4> /x8e/xa5/xf0/xc3 <CJK> +<U00024709> /x8e/xa5/xf0/xc4 <CJK> +<U00024707> /x8e/xa5/xf0/xc5 <CJK> +<U0002470B> /x8e/xa5/xf0/xc6 <CJK> +<U000248D3> /x8e/xa5/xf0/xc7 <CJK> +<U000248D1> /x8e/xa5/xf0/xc8 <CJK> +<U000248D8> /x8e/xa5/xf0/xc9 <CJK> +<U00024B1D> /x8e/xa5/xf0/xca <CJK> +<U00024BA9> /x8e/xa5/xf0/xcb <CJK> +<U00024BD0> /x8e/xa5/xf0/xcc <CJK> +<U00027215> /x8e/xa5/xf0/xcd <CJK> +<U00024F02> /x8e/xa5/xf0/xce <CJK> +<U00024F05> /x8e/xa5/xf0/xcf <CJK> +<U00024F01> /x8e/xa5/xf0/xd0 <CJK> +<U00024F00> /x8e/xa5/xf0/xd1 <CJK> +<U0002532E> /x8e/xa5/xf0/xd2 <CJK> +<U00025330> /x8e/xa5/xf0/xd3 <CJK> +<U0002532F> /x8e/xa5/xf0/xd4 <CJK> +<U00025331> /x8e/xa5/xf0/xd5 <CJK> +<U000255D2> /x8e/xa5/xf0/xd6 <CJK> +<U000255D3> /x8e/xa5/xf0/xd7 <CJK> +<U00025902> /x8e/xa5/xf0/xd8 <CJK> +<U00025A40> /x8e/xa5/xf0/xd9 <CJK> +<U00025A42> /x8e/xa5/xf0/xda <CJK> +<U00025A3B> /x8e/xa5/xf0/xdb <CJK> +<U00025ACE> /x8e/xa5/xf0/xdc <CJK> +<U00025D98> /x8e/xa5/xf0/xdd <CJK> +<U00025D8F> /x8e/xa5/xf0/xde <CJK> +<U00025D94> /x8e/xa5/xf0/xdf <CJK> +<U00025D91> /x8e/xa5/xf0/xe0 <CJK> +<U426F> /x8e/xa5/xf0/xe1 <CJK> +<U00025DBA> /x8e/xa5/xf0/xe2 <CJK> +<U00025D90> /x8e/xa5/xf0/xe3 <CJK> +<U00025D86> /x8e/xa5/xf0/xe4 <CJK> +<U00025D9A> /x8e/xa5/xf0/xe5 <CJK> +<U00025D8C> /x8e/xa5/xf0/xe6 <CJK> +<U00025D93> /x8e/xa5/xf0/xe7 <CJK> +<U00025D87> /x8e/xa5/xf0/xe8 <CJK> +<U00025D88> /x8e/xa5/xf0/xe9 <CJK> +<U00025D97> /x8e/xa5/xf0/xea <CJK> +<U00025D8D> /x8e/xa5/xf0/xeb <CJK> +<U00025D9C> /x8e/xa5/xf0/xec <CJK> +<U00025DBD> /x8e/xa5/xf0/xed <CJK> +<U00025F3C> /x8e/xa5/xf0/xee <CJK> +<U00025F59> /x8e/xa5/xf0/xef <CJK> +<U42B0> /x8e/xa5/xf0/xf0 <CJK> +<U000261D1> /x8e/xa5/xf0/xf1 <CJK> +<U000261BB> /x8e/xa5/xf0/xf2 <CJK> +<U000261BE> /x8e/xa5/xf0/xf3 <CJK> +<U0002625D> /x8e/xa5/xf0/xf4 <CJK> +<U000263E2> /x8e/xa5/xf0/xf5 <CJK> +<U00026605> /x8e/xa5/xf0/xf6 <CJK> +<U000268BA> /x8e/xa5/xf0/xf7 <CJK> +<U352E> /x8e/xa5/xf0/xf8 <CJK> +<U000268F4> /x8e/xa5/xf0/xf9 <CJK> +<U000269B2> /x8e/xa5/xf0/xfa <CJK> +<U000269F9> /x8e/xa5/xf0/xfb <CJK> +<U00026AB7> /x8e/xa5/xf0/xfc <CJK> +<U00026AB6> /x8e/xa5/xf0/xfd <CJK> +<U00027089> /x8e/xa5/xf0/xfe <CJK> +<U000270F9> /x8e/xa5/xf1/xa1 <CJK> +<U000270D9> /x8e/xa5/xf1/xa2 <CJK> +<U000270E8> /x8e/xa5/xf1/xa3 <CJK> +<U000270D4> /x8e/xa5/xf1/xa4 <CJK> +<U000270DB> /x8e/xa5/xf1/xa5 <CJK> +<U000270E2> /x8e/xa5/xf1/xa6 <CJK> +<U000270DF> /x8e/xa5/xf1/xa7 <CJK> +<U000270D1> /x8e/xa5/xf1/xa8 <CJK> +<U000270E9> /x8e/xa5/xf1/xa9 <CJK> +<U000270EA> /x8e/xa5/xf1/xaa <CJK> +<U00027213> /x8e/xa5/xf1/xab <CJK> +<U00027211> /x8e/xa5/xf1/xac <CJK> +<U000274FA> /x8e/xa5/xf1/xad <CJK> +<U000274F8> /x8e/xa5/xf1/xae <CJK> +<U000274F4> /x8e/xa5/xf1/xaf <CJK> +<U000274FB> /x8e/xa5/xf1/xb0 <CJK> +<U0002750E> /x8e/xa5/xf1/xb1 <CJK> +<U00027502> /x8e/xa5/xf1/xb2 <CJK> +<U0002750F> /x8e/xa5/xf1/xb3 <CJK> +<U00027790> /x8e/xa5/xf1/xb4 <CJK> +<U000277AD> /x8e/xa5/xf1/xb5 <CJK> +<U000277A9> /x8e/xa5/xf1/xb6 <CJK> +<U00027948> /x8e/xa5/xf1/xb7 <CJK> +<U00027B5A> /x8e/xa5/xf1/xb8 <CJK> +<U00027B4F> /x8e/xa5/xf1/xb9 <CJK> +<U00027B4E> /x8e/xa5/xf1/xba <CJK> +<U00027B55> /x8e/xa5/xf1/xbb <CJK> +<U00027B54> /x8e/xa5/xf1/xbc <CJK> +<U00027B4A> /x8e/xa5/xf1/xbd <CJK> +<U00027BD5> /x8e/xa5/xf1/xbe <CJK> +<U00027C18> /x8e/xa5/xf1/xbf <CJK> +<U00027C8D> /x8e/xa5/xf1/xc0 <CJK> +<U00027D1D> /x8e/xa5/xf1/xc1 <CJK> +<U00027D19> /x8e/xa5/xf1/xc2 <CJK> +<U00027E26> /x8e/xa5/xf1/xc3 <CJK> +<U00027E28> /x8e/xa5/xf1/xc4 <CJK> +<U00027E2B> /x8e/xa5/xf1/xc5 <CJK> +<U00027E7D> /x8e/xa5/xf1/xc6 <CJK> +<U00027FA0> /x8e/xa5/xf1/xc7 <CJK> +<U00027F9A> /x8e/xa5/xf1/xc8 <CJK> +<U00027F9B> /x8e/xa5/xf1/xc9 <CJK> +<U000281B5> /x8e/xa5/xf1/xca <CJK> +<U000281AD> /x8e/xa5/xf1/xcb <CJK> +<U000281B2> /x8e/xa5/xf1/xcc <CJK> +<U00028294> /x8e/xa5/xf1/xcd <CJK> +<U000283C9> /x8e/xa5/xf1/xce <CJK> +<U0002864E> /x8e/xa5/xf1/xcf <CJK> +<U0002864F> /x8e/xa5/xf1/xd0 <CJK> +<U00028644> /x8e/xa5/xf1/xd1 <CJK> +<U00028652> /x8e/xa5/xf1/xd2 <CJK> +<U000288E9> /x8e/xa5/xf1/xd3 <CJK> +<U00028939> /x8e/xa5/xf1/xd4 <CJK> +<U4969> /x8e/xa5/xf1/xd5 <CJK> +<U957E> /x8e/xa5/xf1/xd6 <CJK> +<U00028DC7> /x8e/xa5/xf1/xd7 <CJK> +<U00028DD3> /x8e/xa5/xf1/xd8 <CJK> +<U00028DC6> /x8e/xa5/xf1/xd9 <CJK> +<U00028DC3> /x8e/xa5/xf1/xda <CJK> +<U49B4> /x8e/xa5/xf1/xdb <CJK> +<U00028DD2> /x8e/xa5/xf1/xdc <CJK> +<U00028F66> /x8e/xa5/xf1/xdd <CJK> +<U0002917F> /x8e/xa5/xf1/xde <CJK> +<U00029180> /x8e/xa5/xf1/xdf <CJK> +<U00029184> /x8e/xa5/xf1/xe0 <CJK> +<U00029185> /x8e/xa5/xf1/xe1 <CJK> +<U000291E3> /x8e/xa5/xf1/xe2 <CJK> +<U4A4D> /x8e/xa5/xf1/xe3 <CJK> +<U00029241> /x8e/xa5/xf1/xe4 <CJK> +<U00029244> /x8e/xa5/xf1/xe5 <CJK> +<U00029243> /x8e/xa5/xf1/xe6 <CJK> +<U0002934E> /x8e/xa5/xf1/xe7 <CJK> +<U0002934F> /x8e/xa5/xf1/xe8 <CJK> +<U4A83> /x8e/xa5/xf1/xe9 <CJK> +<U00029349> /x8e/xa5/xf1/xea <CJK> +<U0002934A> /x8e/xa5/xf1/xeb <CJK> +<U0002934B> /x8e/xa5/xf1/xec <CJK> +<U00029343> /x8e/xa5/xf1/xed <CJK> +<U000293E0> /x8e/xa5/xf1/xee <CJK> +<U000293E5> /x8e/xa5/xf1/xef <CJK> +<U000293E1> /x8e/xa5/xf1/xf0 <CJK> +<U000293E6> /x8e/xa5/xf1/xf1 <CJK> +<U000293E2> /x8e/xa5/xf1/xf2 <CJK> +<U0002940C> /x8e/xa5/xf1/xf3 <CJK> +<U00029440> /x8e/xa5/xf1/xf4 <CJK> +<U00029549> /x8e/xa5/xf1/xf5 <CJK> +<U0002954A> /x8e/xa5/xf1/xf6 <CJK> +<U00029554> /x8e/xa5/xf1/xf7 <CJK> +<U0002954C> /x8e/xa5/xf1/xf8 <CJK> +<U00029555> /x8e/xa5/xf1/xf9 <CJK> +<U00029556> /x8e/xa5/xf1/xfa <CJK> +<U0002963B> /x8e/xa5/xf1/xfb <CJK> +<U0002963D> /x8e/xa5/xf1/xfc <CJK> +<U000297A4> /x8e/xa5/xf1/xfd <CJK> +<U000297A8> /x8e/xa5/xf1/xfe <CJK> +<U000297C3> /x8e/xa5/xf2/xa1 <CJK> +<U000297BF> /x8e/xa5/xf2/xa2 <CJK> +<U000297C8> /x8e/xa5/xf2/xa3 <CJK> +<U000297C2> /x8e/xa5/xf2/xa4 <CJK> +<U000297CA> /x8e/xa5/xf2/xa5 <CJK> +<U000297CC> /x8e/xa5/xf2/xa6 <CJK> +<U000297C9> /x8e/xa5/xf2/xa7 <CJK> +<U000297BE> /x8e/xa5/xf2/xa8 <CJK> +<U000297CD> /x8e/xa5/xf2/xa9 <CJK> +<U000297C7> /x8e/xa5/xf2/xaa <CJK> +<U000297C5> /x8e/xa5/xf2/xab <CJK> +<U0002985D> /x8e/xa5/xf2/xac <CJK> +<U4BB0> /x8e/xa5/xf2/xad <CJK> +<U0002996C> /x8e/xa5/xf2/xae <CJK> +<U0002996B> /x8e/xa5/xf2/xaf <CJK> +<U00029970> /x8e/xa5/xf2/xb0 <CJK> +<U0002996D> /x8e/xa5/xf2/xb1 <CJK> +<U0002996F> /x8e/xa5/xf2/xb2 <CJK> +<U00029989> /x8e/xa5/xf2/xb3 <CJK> +<U00029984> /x8e/xa5/xf2/xb4 <CJK> +<U00029A8D> /x8e/xa5/xf2/xb5 <CJK> +<U00029A8A> /x8e/xa5/xf2/xb6 <CJK> +<U00029A8E> /x8e/xa5/xf2/xb7 <CJK> +<U00029A91> /x8e/xa5/xf2/xb8 <CJK> +<U00029BB5> /x8e/xa5/xf2/xb9 <CJK> +<U00029BB1> /x8e/xa5/xf2/xba <CJK> +<U00029BAF> /x8e/xa5/xf2/xbb <CJK> +<U00029BB9> /x8e/xa5/xf2/xbc <CJK> +<U00029BB7> /x8e/xa5/xf2/xbd <CJK> +<U00029BB0> /x8e/xa5/xf2/xbe <CJK> +<U4C0C> /x8e/xa5/xf2/xbf <CJK> +<U00029C17> /x8e/xa5/xf2/xc0 <CJK> +<U4C18> /x8e/xa5/xf2/xc1 <CJK> +<U00029C4F> /x8e/xa5/xf2/xc2 <CJK> +<U00029D19> /x8e/xa5/xf2/xc3 <CJK> +<U00029D10> /x8e/xa5/xf2/xc4 <CJK> +<U00029D18> /x8e/xa5/xf2/xc5 <CJK> +<U00029D11> /x8e/xa5/xf2/xc6 <CJK> +<U00029D1C> /x8e/xa5/xf2/xc7 <CJK> +<U00029D12> /x8e/xa5/xf2/xc8 <CJK> +<U00029E76> /x8e/xa5/xf2/xc9 <CJK> +<U00029E71> /x8e/xa5/xf2/xca <CJK> +<U9C20> /x8e/xa5/xf2/xcb <CJK> +<U00029E7A> /x8e/xa5/xf2/xcc <CJK> +<U00029E7F> /x8e/xa5/xf2/xcd <CJK> +<U9C22> /x8e/xa5/xf2/xce <CJK> +<U00029E73> /x8e/xa5/xf2/xcf <CJK> +<U00029EAB> /x8e/xa5/xf2/xd0 <CJK> +<U9C1E> /x8e/xa5/xf2/xd1 <CJK> +<U00029E77> /x8e/xa5/xf2/xd2 <CJK> +<U00029E74> /x8e/xa5/xf2/xd3 <CJK> +<U00029E7E> /x8e/xa5/xf2/xd4 <CJK> +<U00029E9B> /x8e/xa5/xf2/xd5 <CJK> +<U00029E84> /x8e/xa5/xf2/xd6 <CJK> +<U00029E7C> /x8e/xa5/xf2/xd7 <CJK> +<U0002A129> /x8e/xa5/xf2/xd8 <CJK> +<U0002A12B> /x8e/xa5/xf2/xd9 <CJK> +<U0002A10E> /x8e/xa5/xf2/xda <CJK> +<U0002A100> /x8e/xa5/xf2/xdb <CJK> +<U0002A10B> /x8e/xa5/xf2/xdc <CJK> +<U0002A0FE> /x8e/xa5/xf2/xdd <CJK> +<U0002A0FA> /x8e/xa5/xf2/xde <CJK> +<U0002A117> /x8e/xa5/xf2/xdf <CJK> +<U0002A0FF> /x8e/xa5/xf2/xe0 <CJK> +<U0002A10C> /x8e/xa5/xf2/xe1 <CJK> +<U0002A10F> /x8e/xa5/xf2/xe2 <CJK> +<U4CF5> /x8e/xa5/xf2/xe3 <CJK> +<U0002A102> /x8e/xa5/xf2/xe4 <CJK> +<U0002A101> /x8e/xa5/xf2/xe5 <CJK> +<U0002A0FC> /x8e/xa5/xf2/xe6 <CJK> +<U0002A149> /x8e/xa5/xf2/xe7 <CJK> +<U0002A106> /x8e/xa5/xf2/xe8 <CJK> +<U0002A112> /x8e/xa5/xf2/xe9 <CJK> +<U0002A113> /x8e/xa5/xf2/xea <CJK> +<U0002A278> /x8e/xa5/xf2/xeb <CJK> +<U0002A35B> /x8e/xa5/xf2/xec <CJK> +<U0002A362> /x8e/xa5/xf2/xed <CJK> +<U0002A35F> /x8e/xa5/xf2/xee <CJK> +<U0002A35D> /x8e/xa5/xf2/xef <CJK> +<U0002A3AB> /x8e/xa5/xf2/xf0 <CJK> +<U0002A3D5> /x8e/xa5/xf2/xf1 <CJK> +<U0002A3D4> /x8e/xa5/xf2/xf2 <CJK> +<U0002A3D3> /x8e/xa5/xf2/xf3 <CJK> +<U0002A407> /x8e/xa5/xf2/xf4 <CJK> +<U0002A46C> /x8e/xa5/xf2/xf5 <CJK> +<U0002A470> /x8e/xa5/xf2/xf6 <CJK> +<U0002A46E> /x8e/xa5/xf2/xf7 <CJK> +<U0002A468> /x8e/xa5/xf2/xf8 <CJK> +<U0002A46D> /x8e/xa5/xf2/xf9 <CJK> +<U0002A477> /x8e/xa5/xf2/xfa <CJK> +<U0002A46A> /x8e/xa5/xf2/xfb <CJK> +<U0002A4CE> /x8e/xa5/xf2/xfc <CJK> +<U0002A4EC> /x8e/xa5/xf2/xfd <CJK> +<U0002A569> /x8e/xa5/xf2/xfe <CJK> +<U0002A568> /x8e/xa5/xf3/xa1 <CJK> +<U0002A5A6> /x8e/xa5/xf3/xa2 <CJK> +<U0002A5A9> /x8e/xa5/xf3/xa3 <CJK> +<U0002A5AA> /x8e/xa5/xf3/xa4 <CJK> +<U0002A600> /x8e/xa5/xf3/xa5 <CJK> +<U0002A60D> /x8e/xa5/xf3/xa6 <CJK> +<U0002A5F8> /x8e/xa5/xf3/xa7 <CJK> +<U0002A5FC> /x8e/xa5/xf3/xa8 <CJK> +<U0002A60A> /x8e/xa5/xf3/xa9 <CJK> +<U0002A5F7> /x8e/xa5/xf3/xaa <CJK> +<U0002A601> /x8e/xa5/xf3/xab <CJK> +<U0002A6B6> /x8e/xa5/xf3/xac <CJK> +<U0002A6BB> /x8e/xa5/xf3/xad <CJK> +<U0002A6B7> /x8e/xa5/xf3/xae <CJK> +<U0002A6B9> /x8e/xa5/xf3/xaf <CJK> +<U0002A6CA> /x8e/xa5/xf3/xb0 <CJK> +<U00020469> /x8e/xa5/xf3/xb1 <CJK> +<U00020625> /x8e/xa5/xf3/xb2 <CJK> +<U00021159> /x8e/xa5/xf3/xb3 <CJK> +<U00021507> /x8e/xa5/xf3/xb4 <CJK> +<U00021509> /x8e/xa5/xf3/xb5 <CJK> +<U00021922> /x8e/xa5/xf3/xb6 <CJK> +<U00021B07> /x8e/xa5/xf3/xb7 <CJK> +<U00021B04> /x8e/xa5/xf3/xb8 <CJK> +<U0002330F> /x8e/xa5/xf3/xb9 <CJK> +<U00021CF8> /x8e/xa5/xf3/xba <CJK> +<U00021FC7> /x8e/xa5/xf3/xbb <CJK> +<U00021FD1> /x8e/xa5/xf3/xbc <CJK> +<U0002217E> /x8e/xa5/xf3/xbd <CJK> +<U00022308> /x8e/xa5/xf3/xbe <CJK> +<U0002244A> /x8e/xa5/xf3/xbf <CJK> +<U000224B9> /x8e/xa5/xf3/xc1 <CJK> +<U00022E88> /x8e/xa5/xf3/xc2 <CJK> +<U00022E91> /x8e/xa5/xf3/xc3 <CJK> +<U00022E84> /x8e/xa5/xf3/xc4 <CJK> +<U00022E73> /x8e/xa5/xf3/xc5 <CJK> +<U00022E89> /x8e/xa5/xf3/xc6 <CJK> +<U00022E85> /x8e/xa5/xf3/xc7 <CJK> +<U00023033> /x8e/xa5/xf3/xc8 <CJK> +<U00023313> /x8e/xa5/xf3/xc9 <CJK> +<U0002381D> /x8e/xa5/xf3/xca <CJK> +<U0002381F> /x8e/xa5/xf3/xcb <CJK> +<U0002381C> /x8e/xa5/xf3/xcc <CJK> +<U00023820> /x8e/xa5/xf3/xcd <CJK> +<U0002381A> /x8e/xa5/xf3/xce <CJK> +<U0002381B> /x8e/xa5/xf3/xcf <CJK> +<U00023939> /x8e/xa5/xf3/xd0 <CJK> +<U000239AF> /x8e/xa5/xf3/xd1 <CJK> +<U00023AE5> /x8e/xa5/xf3/xd2 <CJK> +<U00023C3C> /x8e/xa5/xf3/xd3 <CJK> +<U00024137> /x8e/xa5/xf3/xd4 <CJK> +<U0002413A> /x8e/xa5/xf3/xd5 <CJK> +<U000244BB> /x8e/xa5/xf3/xd6 <CJK> +<U3E0E> /x8e/xa5/xf3/xd7 <CJK> +<U00024710> /x8e/xa5/xf3/xd8 <CJK> +<U0002470D> /x8e/xa5/xf3/xd9 <CJK> +<U00024BAF> /x8e/xa5/xf3/xda <CJK> +<U00024C11> /x8e/xa5/xf3/xdb <CJK> +<U3FD8> /x8e/xa5/xf3/xdc <CJK> +<U00024F0D> /x8e/xa5/xf3/xdd <CJK> +<U00024F0C> /x8e/xa5/xf3/xde <CJK> +<U00024F0B> /x8e/xa5/xf3/xdf <CJK> +<U000250D4> /x8e/xa5/xf3/xe0 <CJK> +<U0002533D> /x8e/xa5/xf3/xe1 <CJK> +<U0002533E> /x8e/xa5/xf3/xe2 <CJK> +<U0002533B> /x8e/xa5/xf3/xe3 <CJK> +<U00025343> /x8e/xa5/xf3/xe4 <CJK> +<U00025340> /x8e/xa5/xf3/xe5 <CJK> +<U00025346> /x8e/xa5/xf3/xe6 <CJK> +<U00025411> /x8e/xa5/xf3/xe7 <CJK> +<U000255DD> /x8e/xa5/xf3/xe8 <CJK> +<U000255DF> /x8e/xa5/xf3/xe9 <CJK> +<U000255EA> /x8e/xa5/xf3/xea <CJK> +<U0002574A> /x8e/xa5/xf3/xeb <CJK> +<U00025906> /x8e/xa5/xf3/xec <CJK> +<U00025DC1> /x8e/xa5/xf3/xed <CJK> +<U00025DB9> /x8e/xa5/xf3/xee <CJK> +<U00025DC6> /x8e/xa5/xf3/xef <CJK> +<U00025DB8> /x8e/xa5/xf3/xf0 <CJK> +<U00025DBB> /x8e/xa5/xf3/xf1 <CJK> +<U00025DC8> /x8e/xa5/xf3/xf2 <CJK> +<U00025DC5> /x8e/xa5/xf3/xf3 <CJK> +<U00025DBF> /x8e/xa5/xf3/xf4 <CJK> +<U00025DC7> /x8e/xa5/xf3/xf5 <CJK> +<U00025DC4> /x8e/xa5/xf3/xf6 <CJK> +<U00025F65> /x8e/xa5/xf3/xf7 <CJK> +<U00025F67> /x8e/xa5/xf3/xf8 <CJK> +<U000261D7> /x8e/xa5/xf3/xf9 <CJK> +<U000261DB> /x8e/xa5/xf3/xfa <CJK> +<U000261D4> /x8e/xa5/xf3/xfb <CJK> +<U000261D6> /x8e/xa5/xf3/xfc <CJK> +<U000263E8> /x8e/xa5/xf3/xfd <CJK> +<U0002660A> /x8e/xa5/xf3/xfe <CJK> +<U00026ABD> /x8e/xa5/xf4/xa1 <CJK> +<U00026ABE> /x8e/xa5/xf4/xa2 <CJK> +<U0002711A> /x8e/xa5/xf4/xa3 <CJK> +<U0002710D> /x8e/xa5/xf4/xa4 <CJK> +<U0002710F> /x8e/xa5/xf4/xa5 <CJK> +<U0002711B> /x8e/xa5/xf4/xa6 <CJK> +<U00027110> /x8e/xa5/xf4/xa7 <CJK> +<U00027111> /x8e/xa5/xf4/xa8 <CJK> +<U00027113> /x8e/xa5/xf4/xa9 <CJK> +<U00027218> /x8e/xa5/xf4/xaa <CJK> +<U00027520> /x8e/xa5/xf4/xab <CJK> +<U0002751F> /x8e/xa5/xf4/xac <CJK> +<U00027523> /x8e/xa5/xf4/xad <CJK> +<U0002751D> /x8e/xa5/xf4/xae <CJK> +<U00027537> /x8e/xa5/xf4/xaf <CJK> +<U00027525> /x8e/xa5/xf4/xb0 <CJK> +<U00027524> /x8e/xa5/xf4/xb1 <CJK> +<U0002752A> /x8e/xa5/xf4/xb2 <CJK> +<U00027527> /x8e/xa5/xf4/xb3 <CJK> +<U00027533> /x8e/xa5/xf4/xb4 <CJK> +<U00027528> /x8e/xa5/xf4/xb5 <CJK> +<U00027534> /x8e/xa5/xf4/xb6 <CJK> +<U000277BA> /x8e/xa5/xf4/xb7 <CJK> +<U8970> /x8e/xa5/xf4/xb8 <CJK> +<U0002789D> /x8e/xa5/xf4/xb9 <CJK> +<U0002794C> /x8e/xa5/xf4/xba <CJK> +<U00027B5C> /x8e/xa5/xf4/xbb <CJK> +<U00027B6A> /x8e/xa5/xf4/xbc <CJK> +<U00027B5D> /x8e/xa5/xf4/xbd <CJK> +<U00027B65> /x8e/xa5/xf4/xbe <CJK> +<U00027B63> /x8e/xa5/xf4/xbf <CJK> +<U00027B5E> /x8e/xa5/xf4/xc0 <CJK> +<U00027C19> /x8e/xa5/xf4/xc1 <CJK> +<U00027C97> /x8e/xa5/xf4/xc2 <CJK> +<U00027E3F> /x8e/xa5/xf4/xc3 <CJK> +<U00027E33> /x8e/xa5/xf4/xc4 <CJK> +<U00027E32> /x8e/xa5/xf4/xc5 <CJK> +<U00027FA1> /x8e/xa5/xf4/xc6 <CJK> +<U00027FA5> /x8e/xa5/xf4/xc7 <CJK> +<U00027FA4> /x8e/xa5/xf4/xc8 <CJK> +<U00027FA2> /x8e/xa5/xf4/xc9 <CJK> +<U000281C1> /x8e/xa5/xf4/xca <CJK> +<U482C> /x8e/xa5/xf4/xcb <CJK> +<U000281C7> /x8e/xa5/xf4/xcc <CJK> +<U000281C4> /x8e/xa5/xf4/xcd <CJK> +<U000281C6> /x8e/xa5/xf4/xce <CJK> +<U000281C5> /x8e/xa5/xf4/xcf <CJK> +<U000281D4> /x8e/xa5/xf4/xd0 <CJK> +<U000281CA> /x8e/xa5/xf4/xd1 <CJK> +<U00028653> /x8e/xa5/xf4/xd2 <CJK> +<U000288F1> /x8e/xa5/xf4/xd3 <CJK> +<U00028921> /x8e/xa5/xf4/xd4 <CJK> +<U496E> /x8e/xa5/xf4/xd5 <CJK> +<U00028BB7> /x8e/xa5/xf4/xd6 <CJK> +<U00028B92> /x8e/xa5/xf4/xd7 <CJK> +<U00028DD4> /x8e/xa5/xf4/xd8 <CJK> +<U00028F44> /x8e/xa5/xf4/xd9 <CJK> +<U00029198> /x8e/xa5/xf4/xda <CJK> +<U0002919B> /x8e/xa5/xf4/xdb <CJK> +<U00029191> /x8e/xa5/xf4/xdc <CJK> +<U00029195> /x8e/xa5/xf4/xdd <CJK> +<U0002919A> /x8e/xa5/xf4/xde <CJK> +<U00029192> /x8e/xa5/xf4/xdf <CJK> +<U00029353> /x8e/xa5/xf4/xe0 <CJK> +<U00029357> /x8e/xa5/xf4/xe1 <CJK> +<U4A86> /x8e/xa5/xf4/xe2 <CJK> +<U0002935C> /x8e/xa5/xf4/xe3 <CJK> +<U0002935D> /x8e/xa5/xf4/xe4 <CJK> +<U00029364> /x8e/xa5/xf4/xe5 <CJK> +<U000293EA> /x8e/xa5/xf4/xe6 <CJK> +<U000293ED> /x8e/xa5/xf4/xe7 <CJK> +<U00029442> /x8e/xa5/xf4/xe8 <CJK> +<U00029443> /x8e/xa5/xf4/xe9 <CJK> +<U00029564> /x8e/xa5/xf4/xea <CJK> +<U00029561> /x8e/xa5/xf4/xeb <CJK> +<U00029560> /x8e/xa5/xf4/xec <CJK> +<U0002967D> /x8e/xa5/xf4/xed <CJK> +<U000297D4> /x8e/xa5/xf4/xee <CJK> +<U000297D5> /x8e/xa5/xf4/xef <CJK> +<U000297D9> /x8e/xa5/xf4/xf0 <CJK> +<U00029987> /x8e/xa5/xf4/xf1 <CJK> +<U00029999> /x8e/xa5/xf4/xf2 <CJK> +<U0002998C> /x8e/xa5/xf4/xf3 <CJK> +<U0002998A> /x8e/xa5/xf4/xf4 <CJK> +<U0002998F> /x8e/xa5/xf4/xf5 <CJK> +<U4BB3> /x8e/xa5/xf4/xf6 <CJK> +<U0002998B> /x8e/xa5/xf4/xf7 <CJK> +<U00029982> /x8e/xa5/xf4/xf8 <CJK> +<U0002999B> /x8e/xa5/xf4/xf9 <CJK> +<U4BEB> /x8e/xa5/xf4/xfa <CJK> +<U00029BC8> /x8e/xa5/xf4/xfb <CJK> +<U00029BC4> /x8e/xa5/xf4/xfc <CJK> +<U00029BCC> /x8e/xa5/xf4/xfd <CJK> +<U00029BC7> /x8e/xa5/xf4/xfe <CJK> +<U00029BC3> /x8e/xa5/xf5/xa1 <CJK> +<U00029BC6> /x8e/xa5/xf5/xa2 <CJK> +<U00029BCB> /x8e/xa5/xf5/xa3 <CJK> +<U00029BCA> /x8e/xa5/xf5/xa4 <CJK> +<U00029BC9> /x8e/xa5/xf5/xa5 <CJK> +<U00029BCD> /x8e/xa5/xf5/xa6 <CJK> +<U00029C53> /x8e/xa5/xf5/xa7 <CJK> +<U00029D21> /x8e/xa5/xf5/xa8 <CJK> +<U00029D29> /x8e/xa5/xf5/xa9 <CJK> +<U00029D1D> /x8e/xa5/xf5/xaa <CJK> +<U00029D24> /x8e/xa5/xf5/xab <CJK> +<U00029D28> /x8e/xa5/xf5/xac <CJK> +<U9C43> /x8e/xa5/xf5/xad <CJK> +<U00029EB1> /x8e/xa5/xf5/xae <CJK> +<U00029EB2> /x8e/xa5/xf5/xaf <CJK> +<U00029EB5> /x8e/xa5/xf5/xb0 <CJK> +<U00029ED6> /x8e/xa5/xf5/xb1 <CJK> +<U00029EAF> /x8e/xa5/xf5/xb2 <CJK> +<U00029ECA> /x8e/xa5/xf5/xb3 <CJK> +<U00029EB8> /x8e/xa5/xf5/xb4 <CJK> +<U0002A145> /x8e/xa5/xf5/xb7 <CJK> +<U0002A147> /x8e/xa5/xf5/xb8 <CJK> +<U0002A134> /x8e/xa5/xf5/xb9 <CJK> +<U0002A16E> /x8e/xa5/xf5/xba <CJK> +<U0002A142> /x8e/xa5/xf5/xbb <CJK> +<U0002A131> /x8e/xa5/xf5/xbc <CJK> +<U0002A12E> /x8e/xa5/xf5/xbd <CJK> +<U0002A156> /x8e/xa5/xf5/xbe <CJK> +<U0002A138> /x8e/xa5/xf5/xbf <CJK> +<U0002A137> /x8e/xa5/xf5/xc0 <CJK> +<U0002A14B> /x8e/xa5/xf5/xc1 <CJK> +<U0002A12D> /x8e/xa5/xf5/xc2 <CJK> +<U0002A133> /x8e/xa5/xf5/xc3 <CJK> +<U0002A136> /x8e/xa5/xf5/xc4 <CJK> +<U9DE0> /x8e/xa5/xf5/xc5 <CJK> +<U0002A148> /x8e/xa5/xf5/xc6 <CJK> +<U0002A2DC> /x8e/xa5/xf5/xc7 <CJK> +<U4D42> /x8e/xa5/xf5/xc8 <CJK> +<U0002A366> /x8e/xa5/xf5/xc9 <CJK> +<U0002A36D> /x8e/xa5/xf5/xca <CJK> +<U0002A363> /x8e/xa5/xf5/xcb <CJK> +<U0002A364> /x8e/xa5/xf5/xcc <CJK> +<U4D41> /x8e/xa5/xf5/xcd <CJK> +<U0002A367> /x8e/xa5/xf5/xce <CJK> +<U0002A3D9> /x8e/xa5/xf5/xcf <CJK> +<U0002A40B> /x8e/xa5/xf5/xd0 <CJK> +<U0002A47E> /x8e/xa5/xf5/xd1 <CJK> +<U0002A48B> /x8e/xa5/xf5/xd2 <CJK> +<U0002A526> /x8e/xa5/xf5/xd3 <CJK> +<U0002A52C> /x8e/xa5/xf5/xd4 <CJK> +<U0002A529> /x8e/xa5/xf5/xd5 <CJK> +<U0002A56F> /x8e/xa5/xf5/xd6 <CJK> +<U0002A56B> /x8e/xa5/xf5/xd7 <CJK> +<U0002A56D> /x8e/xa5/xf5/xd8 <CJK> +<U0002A56E> /x8e/xa5/xf5/xd9 <CJK> +<U0002A61C> /x8e/xa5/xf5/xda <CJK> +<U0002A611> /x8e/xa5/xf5/xdb <CJK> +<U0002A610> /x8e/xa5/xf5/xdc <CJK> +<U0002A624> /x8e/xa5/xf5/xdd <CJK> +<U0002A612> /x8e/xa5/xf5/xde <CJK> +<U0002A615> /x8e/xa5/xf5/xdf <CJK> +<U0002A617> /x8e/xa5/xf5/xe0 <CJK> +<U4DAC> /x8e/xa5/xf5/xe1 <CJK> +<U0002046F> /x8e/xa5/xf5/xe2 <CJK> +<U000205AB> /x8e/xa5/xf5/xe3 <CJK> +<U0002082E> /x8e/xa5/xf5/xe4 <CJK> +<U000208C9> /x8e/xa5/xf5/xe5 <CJK> +<U00020B96> /x8e/xa5/xf5/xe6 <CJK> +<U00021185> /x8e/xa5/xf5/xe7 <CJK> +<U000216A0> /x8e/xa5/xf5/xe8 <CJK> +<U0002192B> /x8e/xa5/xf5/xe9 <CJK> +<U0002230D> /x8e/xa5/xf5/xea <CJK> +<U00023036> /x8e/xa5/xf5/xeb <CJK> +<U3B2F> /x8e/xa5/xf5/xed <CJK> +<U3B2E> /x8e/xa5/xf5/xee <CJK> +<U000233B1> /x8e/xa5/xf5/xef <CJK> +<U0002384A> /x8e/xa5/xf5/xf0 <CJK> +<U00023837> /x8e/xa5/xf5/xf1 <CJK> +<U0002383C> /x8e/xa5/xf5/xf2 <CJK> +<U00023838> /x8e/xa5/xf5/xf3 <CJK> +<U0002383A> /x8e/xa5/xf5/xf4 <CJK> +<U0002383E> /x8e/xa5/xf5/xf5 <CJK> +<U00023849> /x8e/xa5/xf5/xf6 <CJK> +<U3C4D> /x8e/xa5/xf5/xf7 <CJK> +<U3C7B> /x8e/xa5/xf5/xf8 <CJK> +<U00023A80> /x8e/xa5/xf5/xf9 <CJK> +<U00023A7F> /x8e/xa5/xf5/xfa <CJK> +<U00023AE3> /x8e/xa5/xf5/xfb <CJK> +<U00023C3F> /x8e/xa5/xf5/xfc <CJK> +<U00024152> /x8e/xa5/xf5/xfd <CJK> +<U0002414E> /x8e/xa5/xf5/xfe <CJK> +<U0002414A> /x8e/xa5/xf6/xa1 <CJK> +<U0002414B> /x8e/xa5/xf6/xa2 <CJK> +<U000244D5> /x8e/xa5/xf6/xa3 <CJK> +<U00024AD8> /x8e/xa5/xf6/xa4 <CJK> +<U00024B20> /x8e/xa5/xf6/xa5 <CJK> +<U00024BB3> /x8e/xa5/xf6/xa6 <CJK> +<U00024BB1> /x8e/xa5/xf6/xa7 <CJK> +<U00024BB0> /x8e/xa5/xf6/xa8 <CJK> +<U00024F17> /x8e/xa5/xf6/xa9 <CJK> +<U000250D9> /x8e/xa5/xf6/xaa <CJK> +<U00025349> /x8e/xa5/xf6/xab <CJK> +<U00025413> /x8e/xa5/xf6/xac <CJK> +<U000255ED> /x8e/xa5/xf6/xad <CJK> +<U000255EB> /x8e/xa5/xf6/xae <CJK> +<U000255EE> /x8e/xa5/xf6/xaf <CJK> +<U0002590A> /x8e/xa5/xf6/xb0 <CJK> +<U0002590B> /x8e/xa5/xf6/xb1 <CJK> +<U00025A4A> /x8e/xa5/xf6/xb2 <CJK> +<U00025DD5> /x8e/xa5/xf6/xb3 <CJK> +<U00025DD7> /x8e/xa5/xf6/xb4 <CJK> +<U00025DDE> /x8e/xa5/xf6/xb5 <CJK> +<U00025DDC> /x8e/xa5/xf6/xb6 <CJK> +<U00025DEE> /x8e/xa5/xf6/xb7 <CJK> +<U00025F70> /x8e/xa5/xf6/xb8 <CJK> +<U42B2> /x8e/xa5/xf6/xb9 <CJK> +<U000261D9> /x8e/xa5/xf6/xba <CJK> +<U000263D7> /x8e/xa5/xf6/xbb <CJK> +<U000268CB> /x8e/xa5/xf6/xbc <CJK> +<U000268C7> /x8e/xa5/xf6/xbd <CJK> +<U000269FC> /x8e/xa5/xf6/xbe <CJK> +<U0002713B> /x8e/xa5/xf6/xbf <CJK> +<U00027139> /x8e/xa5/xf6/xc0 <CJK> +<U0002714B> /x8e/xa5/xf6/xc1 <CJK> +<U00027143> /x8e/xa5/xf6/xc2 <CJK> +<U00027140> /x8e/xa5/xf6/xc3 <CJK> +<U00027146> /x8e/xa5/xf6/xc4 <CJK> +<U0002754D> /x8e/xa5/xf6/xc5 <CJK> +<U00027543> /x8e/xa5/xf6/xc6 <CJK> +<U00027547> /x8e/xa5/xf6/xc7 <CJK> +<U0002754B> /x8e/xa5/xf6/xc8 <CJK> +<U00027555> /x8e/xa5/xf6/xc9 <CJK> +<U00027552> /x8e/xa5/xf6/xca <CJK> +<U00027B5F> /x8e/xa5/xf6/xcb <CJK> +<U4722> /x8e/xa5/xf6/xcc <CJK> +<U00027B7C> /x8e/xa5/xf6/xcd <CJK> +<U00027B7B> /x8e/xa5/xf6/xce <CJK> +<U00027FA8> /x8e/xa5/xf6/xcf <CJK> +<U00027FA9> /x8e/xa5/xf6/xd0 <CJK> +<U000281DE> /x8e/xa5/xf6/xd1 <CJK> +<U000281D7> /x8e/xa5/xf6/xd2 <CJK> +<U000281DD> /x8e/xa5/xf6/xd3 <CJK> +<U000281D6> /x8e/xa5/xf6/xd4 <CJK> +<U000281D8> /x8e/xa5/xf6/xd5 <CJK> +<U0002829B> /x8e/xa5/xf6/xd6 <CJK> +<U000283E0> /x8e/xa5/xf6/xd7 <CJK> +<U000283E8> /x8e/xa5/xf6/xd8 <CJK> +<U000283E6> /x8e/xa5/xf6/xd9 <CJK> +<U000288F8> /x8e/xa5/xf6/xda <CJK> +<U000288FB> /x8e/xa5/xf6/xdb <CJK> +<U00028BBB> /x8e/xa5/xf6/xdc <CJK> +<U9459> /x8e/xa5/xf6/xdd <CJK> +<U00028BB8> /x8e/xa5/xf6/xde <CJK> +<U4970> /x8e/xa5/xf6/xdf <CJK> +<U00028CC1> /x8e/xa5/xf6/xe0 <CJK> +<U00028CC0> /x8e/xa5/xf6/xe1 <CJK> +<U000291A4> /x8e/xa5/xf6/xe2 <CJK> +<U000291AB> /x8e/xa5/xf6/xe3 <CJK> +<U0002924D> /x8e/xa5/xf6/xe4 <CJK> +<U00029365> /x8e/xa5/xf6/xe5 <CJK> +<U00029367> /x8e/xa5/xf6/xe6 <CJK> +<U0002936A> /x8e/xa5/xf6/xe7 <CJK> +<U00029366> /x8e/xa5/xf6/xe8 <CJK> +<U00029369> /x8e/xa5/xf6/xe9 <CJK> +<U00029573> /x8e/xa5/xf6/xea <CJK> +<U00029580> /x8e/xa5/xf6/xeb <CJK> +<U0002956F> /x8e/xa5/xf6/xec <CJK> +<U00029571> /x8e/xa5/xf6/xed <CJK> +<U000297E4> /x8e/xa5/xf6/xee <CJK> +<U000297E6> /x8e/xa5/xf6/xef <CJK> +<U000297E7> /x8e/xa5/xf6/xf0 <CJK> +<U000299A0> /x8e/xa5/xf6/xf1 <CJK> +<U000299A4> /x8e/xa5/xf6/xf2 <CJK> +<U00029AA2> /x8e/xa5/xf6/xf3 <CJK> +<U00029AA7> /x8e/xa5/xf6/xf4 <CJK> +<U00029AA4> /x8e/xa5/xf6/xf5 <CJK> +<U00029BDE> /x8e/xa5/xf6/xf6 <CJK> +<U00029BDB> /x8e/xa5/xf6/xf7 <CJK> +<U00029C58> /x8e/xa5/xf6/xf8 <CJK> +<U00029C5C> /x8e/xa5/xf6/xf9 <CJK> +<U00029D2F> /x8e/xa5/xf6/xfa <CJK> +<U00029D2E> /x8e/xa5/xf6/xfb <CJK> +<U00029EDD> /x8e/xa5/xf6/xfc <CJK> +<U00029EE4> /x8e/xa5/xf6/xfd <CJK> +<U00029ED8> /x8e/xa5/xf6/xfe <CJK> +<U00029EE7> /x8e/xa5/xf7/xa1 <CJK> +<U00029EDA> /x8e/xa5/xf7/xa2 <CJK> +<U00029E75> /x8e/xa5/xf7/xa3 <CJK> +<U4C95> /x8e/xa5/xf7/xa4 <CJK> +<U0002A179> /x8e/xa5/xf7/xa5 <CJK> +<U0002A180> /x8e/xa5/xf7/xa6 <CJK> +<U0002A17F> /x8e/xa5/xf7/xa7 <CJK> +<U0002A17C> /x8e/xa5/xf7/xa8 <CJK> +<U0002A175> /x8e/xa5/xf7/xa9 <CJK> +<U0002A17B> /x8e/xa5/xf7/xaa <CJK> +<U0002A182> /x8e/xa5/xf7/xab <CJK> +<U4D00> /x8e/xa5/xf7/xac <CJK> +<U0002A189> /x8e/xa5/xf7/xad <CJK> +<U0002A174> /x8e/xa5/xf7/xae <CJK> +<U0002A17D> /x8e/xa5/xf7/xaf <CJK> +<U0002A17A> /x8e/xa5/xf7/xb0 <CJK> +<U0002A186> /x8e/xa5/xf7/xb1 <CJK> +<U0002A1A8> /x8e/xa5/xf7/xb2 <CJK> +<U0002A172> /x8e/xa5/xf7/xb3 <CJK> +<U4D02> /x8e/xa5/xf7/xb4 <CJK> +<U0002A18B> /x8e/xa5/xf7/xb5 <CJK> +<U0002A191> /x8e/xa5/xf7/xb6 <CJK> +<U0002A1B3> /x8e/xa5/xf7/xb7 <CJK> +<U0002A181> /x8e/xa5/xf7/xb8 <CJK> +<U0002A282> /x8e/xa5/xf7/xb9 <CJK> +<U0002A2E1> /x8e/xa5/xf7/xba <CJK> +<U0002A2E3> /x8e/xa5/xf7/xbb <CJK> +<U0002A2E2> /x8e/xa5/xf7/xbc <CJK> +<U0002A376> /x8e/xa5/xf7/xbd <CJK> +<U0002A374> /x8e/xa5/xf7/xbe <CJK> +<U0002A372> /x8e/xa5/xf7/xbf <CJK> +<U0002A375> /x8e/xa5/xf7/xc0 <CJK> +<U0002A40E> /x8e/xa5/xf7/xc1 <CJK> +<U0002A40D> /x8e/xa5/xf7/xc2 <CJK> +<U0002A494> /x8e/xa5/xf7/xc3 <CJK> +<U0002A492> /x8e/xa5/xf7/xc4 <CJK> +<U0002A493> /x8e/xa5/xf7/xc5 <CJK> +<U0002A491> /x8e/xa5/xf7/xc6 <CJK> +<U0002A48F> /x8e/xa5/xf7/xc7 <CJK> +<U0002A495> /x8e/xa5/xf7/xc8 <CJK> +<U0002A4D0> /x8e/xa5/xf7/xc9 <CJK> +<U0002A4F7> /x8e/xa5/xf7/xca <CJK> +<U0002A576> /x8e/xa5/xf7/xcb <CJK> +<U0002A5AF> /x8e/xa5/xf7/xcc <CJK> +<U4D9F> /x8e/xa5/xf7/xcd <CJK> +<U0002A626> /x8e/xa5/xf7/xce <CJK> +<U0002A625> /x8e/xa5/xf7/xcf <CJK> +<U0002A62D> /x8e/xa5/xf7/xd0 <CJK> +<U0002A6A0> /x8e/xa5/xf7/xd1 <CJK> +<U0002A6C3> /x8e/xa5/xf7/xd2 <CJK> +<U000204D7> /x8e/xa5/xf7/xd3 <CJK> +<U00020ACC> /x8e/xa5/xf7/xd4 <CJK> +<U00021179> /x8e/xa5/xf7/xd5 <CJK> +<U0002117A> /x8e/xa5/xf7/xd6 <CJK> +<U00021515> /x8e/xa5/xf7/xd7 <CJK> +<U00021FDB> /x8e/xa5/xf7/xd8 <CJK> +<U00022185> /x8e/xa5/xf7/xd9 <CJK> +<U00022970> /x8e/xa5/xf7/xda <CJK> +<U0002297B> /x8e/xa5/xf7/xdb <CJK> +<U00022EA5> /x8e/xa5/xf7/xdc <CJK> +<U00022E9F> /x8e/xa5/xf7/xdd <CJK> +<U00023317> /x8e/xa5/xf7/xde <CJK> +<U000233B2> /x8e/xa5/xf7/xdf <CJK> +<U00023839> /x8e/xa5/xf7/xe0 <CJK> +<U00023840> /x8e/xa5/xf7/xe1 <CJK> +<U0002384E> /x8e/xa5/xf7/xe2 <CJK> +<U0002393E> /x8e/xa5/xf7/xe3 <CJK> +<U00023AE8> /x8e/xa5/xf7/xe4 <CJK> +<U00023AE7> /x8e/xa5/xf7/xe5 <CJK> +<U00024166> /x8e/xa5/xf7/xe6 <CJK> +<U00024161> /x8e/xa5/xf7/xe7 <CJK> +<U000244DA> /x8e/xa5/xf7/xe8 <CJK> +<U00024714> /x8e/xa5/xf7/xe9 <CJK> +<U000248DF> /x8e/xa5/xf7/xea <CJK> +<U00024F18> /x8e/xa5/xf7/xeb <CJK> +<U00025039> /x8e/xa5/xf7/xec <CJK> +<U0002503A> /x8e/xa5/xf7/xed <CJK> +<U00025730> /x8e/xa5/xf7/xee <CJK> +<U00025732> /x8e/xa5/xf7/xef <CJK> +<U0002590E> /x8e/xa5/xf7/xf0 <CJK> +<U00025A4C> /x8e/xa5/xf7/xf1 <CJK> +<U00025DE8> /x8e/xa5/xf7/xf2 <CJK> +<U00025DF1> /x8e/xa5/xf7/xf3 <CJK> +<U00025DEB> /x8e/xa5/xf7/xf4 <CJK> +<U00025DEC> /x8e/xa5/xf7/xf5 <CJK> +<U00025F74> /x8e/xa5/xf7/xf6 <CJK> +<U00025F73> /x8e/xa5/xf7/xf7 <CJK> +<U000261F1> /x8e/xa5/xf7/xf8 <CJK> +<U00026342> /x8e/xa5/xf7/xf9 <CJK> +<U0002633E> /x8e/xa5/xf7/xfa <CJK> +<U00026341> /x8e/xa5/xf7/xfb <CJK> +<U0002652C> /x8e/xa5/xf7/xfc <CJK> +<U000268D2> /x8e/xa5/xf7/xfd <CJK> +<U000269BB> /x8e/xa5/xf7/xfe <CJK> +<U00027158> /x8e/xa5/xf8/xa1 <CJK> +<U00027157> /x8e/xa5/xf8/xa2 <CJK> +<U00027156> /x8e/xa5/xf8/xa3 <CJK> +<U0002715A> /x8e/xa5/xf8/xa4 <CJK> +<U457D> /x8e/xa5/xf8/xa5 <CJK> +<U00027561> /x8e/xa5/xf8/xa6 <CJK> +<U00027568> /x8e/xa5/xf8/xa7 <CJK> +<U00027565> /x8e/xa5/xf8/xa8 <CJK> +<U0002755F> /x8e/xa5/xf8/xa9 <CJK> +<U00027564> /x8e/xa5/xf8/xaa <CJK> +<U0002755E> /x8e/xa5/xf8/xab <CJK> +<U0002755B> /x8e/xa5/xf8/xac <CJK> +<U00027567> /x8e/xa5/xf8/xad <CJK> +<U000277C3> /x8e/xa5/xf8/xae <CJK> +<U000278A2> /x8e/xa5/xf8/xaf <CJK> +<U00027953> /x8e/xa5/xf8/xb0 <CJK> +<U00027B7D> /x8e/xa5/xf8/xb1 <CJK> +<U00027C20> /x8e/xa5/xf8/xb2 <CJK> +<U00027FAE> /x8e/xa5/xf8/xb3 <CJK> +<U00027FAF> /x8e/xa5/xf8/xb4 <CJK> +<U00027FB0> /x8e/xa5/xf8/xb5 <CJK> +<U000281E7> /x8e/xa5/xf8/xb6 <CJK> +<U000281E6> /x8e/xa5/xf8/xb7 <CJK> +<U000281E9> /x8e/xa5/xf8/xb8 <CJK> +<U000283F1> /x8e/xa5/xf8/xb9 <CJK> +<U000283EB> /x8e/xa5/xf8/xba <CJK> +<U000283EA> /x8e/xa5/xf8/xbb <CJK> +<U000283E9> /x8e/xa5/xf8/xbc <CJK> +<U00028663> /x8e/xa5/xf8/xbd <CJK> +<U00028902> /x8e/xa5/xf8/xbe <CJK> +<U000288FE> /x8e/xa5/xf8/xbf <CJK> +<U00028BDE> /x8e/xa5/xf8/xc0 <CJK> +<U00028CC2> /x8e/xa5/xf8/xc1 <CJK> +<U00028DE6> /x8e/xa5/xf8/xc2 <CJK> +<U00028F5D> /x8e/xa5/xf8/xc3 <CJK> +<U000291AD> /x8e/xa5/xf8/xc4 <CJK> +<U00029375> /x8e/xa5/xf8/xc5 <CJK> +<U00029372> /x8e/xa5/xf8/xc6 <CJK> +<U00029377> /x8e/xa5/xf8/xc7 <CJK> +<U4AF6> /x8e/xa5/xf8/xc8 <CJK> +<U00029651> /x8e/xa5/xf8/xc9 <CJK> +<U000297E8> /x8e/xa5/xf8/xca <CJK> +<U000297ED> /x8e/xa5/xf8/xcb <CJK> +<U000297EE> /x8e/xa5/xf8/xcc <CJK> +<U000299B9> /x8e/xa5/xf8/xcd <CJK> +<U000299A1> /x8e/xa5/xf8/xce <CJK> +<U000299B6> /x8e/xa5/xf8/xcf <CJK> +<U00029AAE> /x8e/xa5/xf8/xd0 <CJK> +<U00029BE8> /x8e/xa5/xf8/xd1 <CJK> +<U4C12> /x8e/xa5/xf8/xd2 <CJK> +<U00029C1E> /x8e/xa5/xf8/xd3 <CJK> +<U00029D31> /x8e/xa5/xf8/xd4 <CJK> +<U00029D32> /x8e/xa5/xf8/xd5 <CJK> +<U4C91> /x8e/xa5/xf8/xd6 <CJK> +<U00029F0E> /x8e/xa5/xf8/xd7 <CJK> +<U00029F12> /x8e/xa5/xf8/xd8 <CJK> +<U00029F09> /x8e/xa5/xf8/xd9 <CJK> +<U00029F05> /x8e/xa5/xf8/xda <CJK> +<U4C90> /x8e/xa5/xf8/xdb <CJK> +<U00029F03> /x8e/xa5/xf8/xdc <CJK> +<U00029F1F> /x8e/xa5/xf8/xdd <CJK> +<U00029F0D> /x8e/xa5/xf8/xde <CJK> +<U00029F0C> /x8e/xa5/xf8/xdf <CJK> +<U00029F04> /x8e/xa5/xf8/xe0 <CJK> +<U00029F0A> /x8e/xa5/xf8/xe1 <CJK> +<U0002A1C2> /x8e/xa5/xf8/xe2 <CJK> +<U0002A1BF> /x8e/xa5/xf8/xe3 <CJK> +<U0002A1C9> /x8e/xa5/xf8/xe4 <CJK> +<U0002A1B2> /x8e/xa5/xf8/xe5 <CJK> +<U0002A1C1> /x8e/xa5/xf8/xe6 <CJK> +<U0002A1AF> /x8e/xa5/xf8/xe7 <CJK> +<U0002A1B4> /x8e/xa5/xf8/xe8 <CJK> +<U0002A1B0> /x8e/xa5/xf8/xe9 <CJK> +<U0002A1B6> /x8e/xa5/xf8/xea <CJK> +<U0002A1B7> /x8e/xa5/xf8/xeb <CJK> +<U0002A1BB> /x8e/xa5/xf8/xec <CJK> +<U0002A1B1> /x8e/xa5/xf8/xed <CJK> +<U0002A2F0> /x8e/xa5/xf8/xee <CJK> +<U0002A378> /x8e/xa5/xf8/xef <CJK> +<U0002A37A> /x8e/xa5/xf8/xf0 <CJK> +<U0002A379> /x8e/xa5/xf8/xf1 <CJK> +<U0002A3E4> /x8e/xa5/xf8/xf2 <CJK> +<U0002A3E6> /x8e/xa5/xf8/xf3 <CJK> +<U0002A49F> /x8e/xa5/xf8/xf4 <CJK> +<U0002A49D> /x8e/xa5/xf8/xf5 <CJK> +<U0002A498> /x8e/xa5/xf8/xf6 <CJK> +<U0002A499> /x8e/xa5/xf8/xf7 <CJK> +<U0002A4F9> /x8e/xa5/xf8/xf8 <CJK> +<U0002A530> /x8e/xa5/xf8/xf9 <CJK> +<U0002A582> /x8e/xa5/xf8/xfa <CJK> +<U0002A581> /x8e/xa5/xf8/xfb <CJK> +<U0002A5B3> /x8e/xa5/xf8/xfc <CJK> +<U0002A57F> /x8e/xa5/xf8/xfd <CJK> +<U0002A63A> /x8e/xa5/xf8/xfe <CJK> +<U0002A63E> /x8e/xa5/xf9/xa1 <CJK> +<U0002A648> /x8e/xa5/xf9/xa2 <CJK> +<U00021186> /x8e/xa5/xf9/xa3 <CJK> +<U00021936> /x8e/xa5/xf9/xa4 <CJK> +<U00021B13> /x8e/xa5/xf9/xa5 <CJK> +<U00021C22> /x8e/xa5/xf9/xa6 <CJK> +<U00021FDD> /x8e/xa5/xf9/xa7 <CJK> +<U000225A7> /x8e/xa5/xf9/xa8 <CJK> +<U0002297D> /x8e/xa5/xf9/xa9 <CJK> +<U3A79> /x8e/xa5/xf9/xaa <CJK> +<U0002331C> /x8e/xa5/xf9/xab <CJK> +<U00023865> /x8e/xa5/xf9/xac <CJK> +<U00023860> /x8e/xa5/xf9/xad <CJK> +<U00023867> /x8e/xa5/xf9/xae <CJK> +<U3C4E> /x8e/xa5/xf9/xaf <CJK> +<U00023B1A> /x8e/xa5/xf9/xb0 <CJK> +<U00024AE3> /x8e/xa5/xf9/xb1 <CJK> +<U00025734> /x8e/xa5/xf9/xb2 <CJK> +<U00025918> /x8e/xa5/xf9/xb3 <CJK> +<U00025A52> /x8e/xa5/xf9/xb4 <CJK> +<U00025DFC> /x8e/xa5/xf9/xb5 <CJK> +<U00025F79> /x8e/xa5/xf9/xb6 <CJK> +<U00025F78> /x8e/xa5/xf9/xb7 <CJK> +<U00025F76> /x8e/xa5/xf9/xb8 <CJK> +<U000261FA> /x8e/xa5/xf9/xb9 <CJK> +<U000261F8> /x8e/xa5/xf9/xba <CJK> +<U0002652D> /x8e/xa5/xf9/xbb <CJK> +<U000268D6> /x8e/xa5/xf9/xbc <CJK> +<U000269BD> /x8e/xa5/xf9/xbd <CJK> +<U000269BF> /x8e/xa5/xf9/xbe <CJK> +<U000269BE> /x8e/xa5/xf9/xbf <CJK> +<U00027144> /x8e/xa5/xf9/xc0 <CJK> +<U00027170> /x8e/xa5/xf9/xc1 <CJK> +<U00027162> /x8e/xa5/xf9/xc2 <CJK> +<U0002716E> /x8e/xa5/xf9/xc3 <CJK> +<U0002756E> /x8e/xa5/xf9/xc4 <CJK> +<U0002757C> /x8e/xa5/xf9/xc5 <CJK> +<U00027574> /x8e/xa5/xf9/xc6 <CJK> +<U00027578> /x8e/xa5/xf9/xc7 <CJK> +<U00027570> /x8e/xa5/xf9/xc8 <CJK> +<U00027579> /x8e/xa5/xf9/xc9 <CJK> +<U00027571> /x8e/xa5/xf9/xca <CJK> +<U000277CC> /x8e/xa5/xf9/xcb <CJK> +<U000278A7> /x8e/xa5/xf9/xcc <CJK> +<U000278A6> /x8e/xa5/xf9/xcd <CJK> +<U00027B93> /x8e/xa5/xf9/xce <CJK> +<U00027C21> /x8e/xa5/xf9/xcf <CJK> +<U00027C9C> /x8e/xa5/xf9/xd0 <CJK> +<U0002829D> /x8e/xa5/xf9/xd1 <CJK> +<U000283F4> /x8e/xa5/xf9/xd2 <CJK> +<U000283F3> /x8e/xa5/xf9/xd3 <CJK> +<U00028DF0> /x8e/xa5/xf9/xd4 <CJK> +<U000291B8> /x8e/xa5/xf9/xd5 <CJK> +<U000291B6> /x8e/xa5/xf9/xd6 <CJK> +<U000291BD> /x8e/xa5/xf9/xd7 <CJK> +<U00029373> /x8e/xa5/xf9/xd8 <CJK> +<U00029382> /x8e/xa5/xf9/xd9 <CJK> +<U00029587> /x8e/xa5/xf9/xda <CJK> +<U00029656> /x8e/xa5/xf9/xdb <CJK> +<U00029659> /x8e/xa5/xf9/xdc <CJK> +<U000297F6> /x8e/xa5/xf9/xdd <CJK> +<U000299C9> /x8e/xa5/xf9/xde <CJK> +<U000299C5> /x8e/xa5/xf9/xdf <CJK> +<U000299C7> /x8e/xa5/xf9/xe0 <CJK> +<U000299CA> /x8e/xa5/xf9/xe1 <CJK> +<U000299C2> /x8e/xa5/xf9/xe2 <CJK> +<U000299C4> /x8e/xa5/xf9/xe3 <CJK> +<U00029BF2> /x8e/xa5/xf9/xe4 <CJK> +<U00029BF0> /x8e/xa5/xf9/xe5 <CJK> +<U00029D3B> /x8e/xa5/xf9/xe6 <CJK> +<U00029D3A> /x8e/xa5/xf9/xe7 <CJK> +<U00029F26> /x8e/xa5/xf9/xe8 <CJK> +<U00029F28> /x8e/xa5/xf9/xe9 <CJK> +<U00029F34> /x8e/xa5/xf9/xea <CJK> +<U00029F2D> /x8e/xa5/xf9/xeb <CJK> +<U0002A1D7> /x8e/xa5/xf9/xec <CJK> +<U0002A1D2> /x8e/xa5/xf9/xed <CJK> +<U0002A1D6> /x8e/xa5/xf9/xee <CJK> +<U0002A1DC> /x8e/xa5/xf9/xef <CJK> +<U0002A1D3> /x8e/xa5/xf9/xf0 <CJK> +<U0002A1D1> /x8e/xa5/xf9/xf1 <CJK> +<U0002A286> /x8e/xa5/xf9/xf2 <CJK> +<U4D1E> /x8e/xa5/xf9/xf3 <CJK> +<U0002A2EF> /x8e/xa5/xf9/xf4 <CJK> +<U0002A2EE> /x8e/xa5/xf9/xf5 <CJK> +<U0002A3E8> /x8e/xa5/xf9/xf6 <CJK> +<U0002A4AC> /x8e/xa5/xf9/xf7 <CJK> +<U0002A4A9> /x8e/xa5/xf9/xf8 <CJK> +<U0002A4AA> /x8e/xa5/xf9/xf9 <CJK> +<U0002A4AB> /x8e/xa5/xf9/xfa <CJK> +<U0002A4FB> /x8e/xa5/xf9/xfb <CJK> +<U0002A533> /x8e/xa5/xf9/xfc <CJK> +<U0002A588> /x8e/xa5/xf9/xfd <CJK> +<U0002A5B6> /x8e/xa5/xf9/xfe <CJK> +<U0002A5B7> /x8e/xa5/xfa/xa1 <CJK> +<U0002A5D0> /x8e/xa5/xfa/xa2 <CJK> +<U0002A5CF> /x8e/xa5/xfa/xa3 <CJK> +<U0002A64F> /x8e/xa5/xfa/xa4 <CJK> +<U0002A659> /x8e/xa5/xfa/xa5 <CJK> +<U0002A64C> /x8e/xa5/xfa/xa6 <CJK> +<U00021B18> /x8e/xa5/xfa/xa7 <CJK> +<U00021FE0> /x8e/xa5/xfa/xa8 <CJK> +<U00023869> /x8e/xa5/xfa/xa9 <CJK> +<U00024173> /x8e/xa5/xfa/xaa <CJK> +<U00024172> /x8e/xa5/xfa/xab <CJK> +<U00024AE8> /x8e/xa5/xfa/xac <CJK> +<U000255FB> /x8e/xa5/xfa/xad <CJK> +<U0002591C> /x8e/xa5/xfa/xae <CJK> +<U00025E09> /x8e/xa5/xfa/xaf <CJK> +<U00025E0A> /x8e/xa5/xfa/xb0 <CJK> +<U00025E08> /x8e/xa5/xfa/xb1 <CJK> +<U00025F7D> /x8e/xa5/xfa/xb2 <CJK> +<U00025F7F> /x8e/xa5/xfa/xb3 <CJK> +<U00026267> /x8e/xa5/xfa/xb4 <CJK> +<U0002717A> /x8e/xa5/xfa/xb5 <CJK> +<U0002717B> /x8e/xa5/xfa/xb6 <CJK> +<U000277D1> /x8e/xa5/xfa/xb7 <CJK> +<U4695> /x8e/xa5/xfa/xb8 <CJK> +<U00027B9D> /x8e/xa5/xfa/xb9 <CJK> +<U00027C9D> /x8e/xa5/xfa/xba <CJK> +<U000281FC> /x8e/xa5/xfa/xbb <CJK> +<U000281FB> /x8e/xa5/xfa/xbc <CJK> +<U000281FD> /x8e/xa5/xfa/xbd <CJK> +<U000283F5> /x8e/xa5/xfa/xbe <CJK> +<U000283F6> /x8e/xa5/xfa/xbf <CJK> +<U00028C0F> /x8e/xa5/xfa/xc0 <CJK> +<U00028C1D> /x8e/xa5/xfa/xc1 <CJK> +<U000291C7> /x8e/xa5/xfa/xc2 <CJK> +<U000291C1> /x8e/xa5/xfa/xc3 <CJK> +<U000291BF> /x8e/xa5/xfa/xc4 <CJK> +<U00029254> /x8e/xa5/xfa/xc5 <CJK> +<U0002937F> /x8e/xa5/xfa/xc6 <CJK> +<U000293F5> /x8e/xa5/xfa/xc7 <CJK> +<U0002958A> /x8e/xa5/xfa/xc8 <CJK> +<U0002958C> /x8e/xa5/xfa/xc9 <CJK> +<U0002965C> /x8e/xa5/xfa/xca <CJK> +<U00029865> /x8e/xa5/xfa/xcb <CJK> +<U000299CF> /x8e/xa5/xfa/xcc <CJK> +<U000299D0> /x8e/xa5/xfa/xcd <CJK> +<U00029AB8> /x8e/xa5/xfa/xce <CJK> +<U00029BFA> /x8e/xa5/xfa/xcf <CJK> +<U00029C66> /x8e/xa5/xfa/xd0 <CJK> +<U00029F40> /x8e/xa5/xfa/xd1 <CJK> +<U00029F41> /x8e/xa5/xfa/xd2 <CJK> +<U9C72> /x8e/xa5/xfa/xd3 <CJK> +<U0002A1F7> /x8e/xa5/xfa/xd4 <CJK> +<U0002A1F3> /x8e/xa5/xfa/xd5 <CJK> +<U0002A1EF> /x8e/xa5/xfa/xd6 <CJK> +<U0002A1F4> /x8e/xa5/xfa/xd7 <CJK> +<U0002A1ED> /x8e/xa5/xfa/xd8 <CJK> +<U0002A1F2> /x8e/xa5/xfa/xd9 <CJK> +<U0002A1F1> /x8e/xa5/xfa/xda <CJK> +<U0002A1F9> /x8e/xa5/xfa/xdb <CJK> +<U0002A4B4> /x8e/xa5/xfa/xdc <CJK> +<U0002A4FC> /x8e/xa5/xfa/xdd <CJK> +<U0002A5BC> /x8e/xa5/xfa/xde <CJK> +<U0002A65E> /x8e/xa5/xfa/xdf <CJK> +<U0002A65B> /x8e/xa5/xfa/xe0 <CJK> +<U0002A65F> /x8e/xa5/xfa/xe1 <CJK> +<U0002A65D> /x8e/xa5/xfa/xe2 <CJK> +<U0002A6CF> /x8e/xa5/xfa/xe3 <CJK> +<U0002A6CE> /x8e/xa5/xfa/xe4 <CJK> +<U0002193A> /x8e/xa5/xfa/xe5 <CJK> +<U00021FE1> /x8e/xa5/xfa/xe6 <CJK> +<U00022315> /x8e/xa5/xfa/xe7 <CJK> +<U00022314> /x8e/xa5/xfa/xe8 <CJK> +<U00024178> /x8e/xa5/xfa/xe9 <CJK> +<U00024179> /x8e/xa5/xfa/xea <CJK> +<U000244E6> /x8e/xa5/xfa/xeb <CJK> +<U00024BB8> /x8e/xa5/xfa/xec <CJK> +<U00024F22> /x8e/xa5/xfa/xed <CJK> +<U000255FE> /x8e/xa5/xfa/xee <CJK> +<U000268DB> /x8e/xa5/xfa/xef <CJK> +<U00026A06> /x8e/xa5/xfa/xf0 <CJK> +<U00026AC8> /x8e/xa5/xfa/xf1 <CJK> +<U00027189> /x8e/xa5/xfa/xf2 <CJK> +<U00027586> /x8e/xa5/xfa/xf3 <CJK> +<U000278AD> /x8e/xa5/xfa/xf4 <CJK> +<U00027B99> /x8e/xa5/xfa/xf5 <CJK> +<U00027BD8> /x8e/xa5/xfa/xf6 <CJK> +<U00027C23> /x8e/xa5/xfa/xf7 <CJK> +<U00027D23> /x8e/xa5/xfa/xf8 <CJK> +<U00027FB5> /x8e/xa5/xfa/xf9 <CJK> +<U000283F9> /x8e/xa5/xfa/xfa <CJK> +<U00028907> /x8e/xa5/xfa/xfb <CJK> +<U00028C1E> /x8e/xa5/xfa/xfc <CJK> +<U00028DFB> /x8e/xa5/xfa/xfd <CJK> +<U00028F72> /x8e/xa5/xfa/xfe <CJK> +<U00028F73> /x8e/xa5/xfb/xa1 <CJK> +<U00029387> /x8e/xa5/xfb/xa2 <CJK> +<U00029449> /x8e/xa5/xfb/xa3 <CJK> +<U0002965D> /x8e/xa5/xfb/xa4 <CJK> +<U000297F8> /x8e/xa5/xfb/xa5 <CJK> +<U00029C03> /x8e/xa5/xfb/xa6 <CJK> +<U00029F4E> /x8e/xa5/xfb/xa7 <CJK> +<U00029F4D> /x8e/xa5/xfb/xa8 <CJK> +<U00029F50> /x8e/xa5/xfb/xa9 <CJK> +<U00029F55> /x8e/xa5/xfb/xaa <CJK> +<U0002A209> /x8e/xa5/xfb/xab <CJK> +<U0002A207> /x8e/xa5/xfb/xac <CJK> +<U0002A20C> /x8e/xa5/xfb/xad <CJK> +<U0002A203> /x8e/xa5/xfb/xae <CJK> +<U0002A206> /x8e/xa5/xfb/xaf <CJK> +<U0002A20B> /x8e/xa5/xfb/xb0 <CJK> +<U0002A20A> /x8e/xa5/xfb/xb1 <CJK> +<U0002A289> /x8e/xa5/xfb/xb2 <CJK> +<U0002A4BB> /x8e/xa5/xfb/xb3 <CJK> +<U0002A4FF> /x8e/xa5/xfb/xb4 <CJK> +<U0002A536> /x8e/xa5/xfb/xb5 <CJK> +<U0002A58B> /x8e/xa5/xfb/xb6 <CJK> +<U0002A666> /x8e/xa5/xfb/xb7 <CJK> +<U0002A669> /x8e/xa5/xfb/xb8 <CJK> +<U0002A667> /x8e/xa5/xfb/xb9 <CJK> +<U0002A6C2> /x8e/xa5/xfb/xba <CJK> +<U0002A6D2> /x8e/xa5/xfb/xbb <CJK> +<U00021FE2> /x8e/xa5/xfb/xbc <CJK> +<U3828> /x8e/xa5/xfb/xbd <CJK> +<U00022988> /x8e/xa5/xfb/xbe <CJK> +<U0002335B> /x8e/xa5/xfb/xbf <CJK> +<U00023876> /x8e/xa5/xfb/xc0 <CJK> +<U0002417D> /x8e/xa5/xfb/xc1 <CJK> +<U000245A6> /x8e/xa5/xfb/xc2 <CJK> +<U0002535A> /x8e/xa5/xfb/xc3 <CJK> +<U00025E17> /x8e/xa5/xfb/xc4 <CJK> +<U000268DC> /x8e/xa5/xfb/xc5 <CJK> +<U0002718F> /x8e/xa5/xfb/xc6 <CJK> +<U00027594> /x8e/xa5/xfb/xc7 <CJK> +<U00027595> /x8e/xa5/xfb/xc8 <CJK> +<U00027FB6> /x8e/xa5/xfb/xc9 <CJK> +<U00028204> /x8e/xa5/xfb/xca <CJK> +<U000287EE> /x8e/xa5/xfb/xcb <CJK> +<U0002938A> /x8e/xa5/xfb/xcc <CJK> +<U000293F9> /x8e/xa5/xfb/xcd <CJK> +<U00029C07> /x8e/xa5/xfb/xce <CJK> +<U00029C1F> /x8e/xa5/xfb/xcf <CJK> +<U00029C2A> /x8e/xa5/xfb/xd0 <CJK> +<U00029D45> /x8e/xa5/xfb/xd1 <CJK> +<U00029F5C> /x8e/xa5/xfb/xd2 <CJK> +<U00029F5B> /x8e/xa5/xfb/xd3 <CJK> +<U00029F61> /x8e/xa5/xfb/xd4 <CJK> +<U00029F5D> /x8e/xa5/xfb/xd5 <CJK> +<U0002A218> /x8e/xa5/xfb/xd6 <CJK> +<U0002A21F> /x8e/xa5/xfb/xd7 <CJK> +<U0002A383> /x8e/xa5/xfb/xd8 <CJK> +<U0002A416> /x8e/xa5/xfb/xd9 <CJK> +<U0002A414> /x8e/xa5/xfb/xda <CJK> +<U0002A4BF> /x8e/xa5/xfb/xdb <CJK> +<U0002A4C0> /x8e/xa5/xfb/xdc <CJK> +<U0002A673> /x8e/xa5/xfb/xdd <CJK> +<U0002A6C0> /x8e/xa5/xfb/xde <CJK> +<U00021517> /x8e/xa5/xfb/xdf <CJK> +<U00022989> /x8e/xa5/xfb/xe0 <CJK> +<U0002591E> /x8e/xa5/xfb/xe1 <CJK> +<U0002591F> /x8e/xa5/xfb/xe2 <CJK> +<U00025A54> /x8e/xa5/xfb/xe3 <CJK> +<U00025E18> /x8e/xa5/xfb/xe4 <CJK> +<U00026205> /x8e/xa5/xfb/xe5 <CJK> +<U00027195> /x8e/xa5/xfb/xe6 <CJK> +<U00027598> /x8e/xa5/xfb/xe7 <CJK> +<U0002759B> /x8e/xa5/xfb/xe8 <CJK> +<U00027959> /x8e/xa5/xfb/xe9 <CJK> +<U00028208> /x8e/xa5/xfb/xea <CJK> +<U00028401> /x8e/xa5/xfb/xeb <CJK> +<U000291CE> /x8e/xa5/xfb/xec <CJK> +<U000293FA> /x8e/xa5/xfb/xed <CJK> +<U00029ABE> /x8e/xa5/xfb/xee <CJK> +<U00029D47> /x8e/xa5/xfb/xef <CJK> +<U00029F6A> /x8e/xa5/xfb/xf0 <CJK> +<U00029F69> /x8e/xa5/xfb/xf1 <CJK> +<U00029F68> /x8e/xa5/xfb/xf2 <CJK> +<U00029F67> /x8e/xa5/xfb/xf3 <CJK> +<U0002A225> /x8e/xa5/xfb/xf4 <CJK> +<U0002A228> /x8e/xa5/xfb/xf5 <CJK> +<U0002A4C4> /x8e/xa5/xfb/xf6 <CJK> +<U0002A537> /x8e/xa5/xfb/xf7 <CJK> +<U0002A58D> /x8e/xa5/xfb/xf8 <CJK> +<U0002A58C> /x8e/xa5/xfb/xf9 <CJK> +<U4D91> /x8e/xa5/xfb/xfa <CJK> +<U00025E22> /x8e/xa5/xfb/xfc <CJK> +<U00025F82> /x8e/xa5/xfb/xfd <CJK> +<U000277D9> /x8e/xa5/xfb/xfe <CJK> +<U00028C38> /x8e/xa5/xfc/xa1 <CJK> +<U000293FB> /x8e/xa5/xfc/xa2 <CJK> +<U000299E1> /x8e/xa5/xfc/xa3 <CJK> +<U00029C72> /x8e/xa5/xfc/xa4 <CJK> +<U00029D48> /x8e/xa5/xfc/xa5 <CJK> +<U00029F6C> /x8e/xa5/xfc/xa6 <CJK> +<U00029F70> /x8e/xa5/xfc/xa7 <CJK> +<U0002A231> /x8e/xa5/xfc/xa8 <CJK> +<U0002A230> /x8e/xa5/xfc/xa9 <CJK> +<U0002A679> /x8e/xa5/xfc/xaa <CJK> +<U00025E23> /x8e/xa5/xfc/xab <CJK> +<U000268F8> /x8e/xa5/xfc/xac <CJK> +<U00029C74> /x8e/xa5/xfc/xad <CJK> +<U00029F73> /x8e/xa5/xfc/xae <CJK> +<U0002A234> /x8e/xa5/xfc/xaf <CJK> +<U0002A387> /x8e/xa5/xfc/xb0 <CJK> +<U0002A3B2> /x8e/xa5/xfc/xb1 <CJK> +<U0002A5C2> /x8e/xa5/xfc/xb2 <CJK> +<U0002A67D> /x8e/xa5/xfc/xb3 <CJK> +<U00021FE5> /x8e/xa5/xfc/xb4 <CJK> +<U0002938C> /x8e/xa5/xfc/xb5 <CJK> +<U00029F77> /x8e/xa5/xfc/xb6 <CJK> +<U00029F75> /x8e/xa5/xfc/xb7 <CJK> +<U0002A238> /x8e/xa5/xfc/xb8 <CJK> +<U0002A23A> /x8e/xa5/xfc/xb9 <CJK> +<U0002A683> /x8e/xa5/xfc/xba <CJK> +<U0002A681> /x8e/xa5/xfc/xbb <CJK> +<U00024180> /x8e/xa5/xfc/xbc <CJK> +<U00027199> /x8e/xa5/xfc/xbd <CJK> +<U4587> /x8e/xa5/xfc/xbe <CJK> +<U0002944A> /x8e/xa5/xfc/xbf <CJK> +<U00029D4A> /x8e/xa5/xfc/xc0 <CJK> +<U0002A23C> /x8e/xa5/xfc/xc1 <CJK> +<U0002A6C8> /x8e/xa5/xfc/xc2 <CJK> +<U00025604> /x8e/xa5/xfc/xc3 <CJK> +<U000278AF> /x8e/xa5/xfc/xc4 <CJK> +<U0002A689> /x8e/xa5/xfc/xc5 <CJK> +<U0002A2FA> /x8e/xa5/xfc/xc6 <CJK> +<U00029661> /x8e/xa5/xfc/xc7 <CJK> +<U0002A23F> /x8e/xa5/xfc/xc8 <CJK> +<U00027193> /x8e/xa5/xfc/xc9 <CJK> +<U0002A4C9> /x8e/xa5/xfc/xca <CJK> +<U000277DE> /x8e/xa5/xfc/xcb <CJK> +<U00029391> /x8e/xa5/xfc/xcc <CJK> +<U0002A68E> /x8e/xa5/xfc/xcd <CJK> +<U0002A68D> /x8e/xa5/xfc/xce <CJK> +<U00027198> /x8e/xa5/xfc/xcf <CJK> +<U000269C5> /x8e/xa5/xfc/xd0 <CJK> +<U0002A6A5> /x8e/xa5/xfc/xd1 <CJK> +<U00020062> /x8e/xa6/xa1/xa2 <CJK> +<U3405> /x8e/xa6/xa1/xa3 <CJK> +<U00020088> /x8e/xa6/xa1/xa4 <CJK> +<U000200D0> /x8e/xa6/xa1/xa5 <CJK> +<U000200CF> /x8e/xa6/xa1/xa6 <CJK> +<U0002011E> /x8e/xa6/xa1/xa7 <CJK> +<U0002011F> /x8e/xa6/xa1/xa8 <CJK> +<U00020120> /x8e/xa6/xa1/xa9 <CJK> +<U0002090E> /x8e/xa6/xa1/xaa <CJK> +<U0002092C> /x8e/xa6/xa1/xab <CJK> +<U00020061> /x8e/xa6/xa1/xac <CJK> +<U00020004> /x8e/xa6/xa1/xad <CJK> +<U00020005> /x8e/xa6/xa1/xae <CJK> +<U00020003> /x8e/xa6/xa1/xaf <CJK> +<U0002007D> /x8e/xa6/xa1/xb2 <CJK> +<U0002008D> /x8e/xa6/xa1/xb3 <CJK> +<U000201A3> /x8e/xa6/xa1/xb4 <CJK> +<U000201A4> /x8e/xa6/xa1/xb5 <CJK> +<U000204DB> /x8e/xa6/xa1/xb6 <CJK> +<U00020500> /x8e/xa6/xa1/xb7 <CJK> +<U000206A3> /x8e/xa6/xa1/xb9 <CJK> +<U00020832> /x8e/xa6/xa1/xba <CJK> +<U353F> /x8e/xa6/xa1/xbb <CJK> +<U00020AD4> /x8e/xa6/xa1/xbc <CJK> +<U00020AD5> /x8e/xa6/xa1/xbd <CJK> +<U00021C23> /x8e/xa6/xa1/xbe <CJK> +<U0002232C> /x8e/xa6/xa1/xbf <CJK> +<U0002237A> /x8e/xa6/xa1/xc0 <CJK> +<U00020503> /x8e/xa6/xa1/xc1 <CJK> +<U00020007> /x8e/xa6/xa1/xc2 <CJK> +<U00020008> /x8e/xa6/xa1/xc3 <CJK> +<U0002008F> /x8e/xa6/xa1/xc4 <CJK> +<U0002009C> /x8e/xa6/xa1/xc5 <CJK> +<U000200D5> /x8e/xa6/xa1/xc6 <CJK> +<U00020112> /x8e/xa6/xa1/xc7 <CJK> +<U00020113> /x8e/xa6/xa1/xc8 <CJK> +<U00020114> /x8e/xa6/xa1/xc9 <CJK> +<U00020121> /x8e/xa6/xa1/xca <CJK> +<U000201A8> /x8e/xa6/xa1/xcb <CJK> +<U000201A6> /x8e/xa6/xa1/xcc <CJK> +<U00020476> /x8e/xa6/xa1/xcd <CJK> +<U00020501> /x8e/xa6/xa1/xce <CJK> +<U0002053D> /x8e/xa6/xa1/xcf <CJK> +<U0002053E> /x8e/xa6/xa1/xd1 <CJK> +<U00020629> /x8e/xa6/xa1/xd2 <CJK> +<U00020677> /x8e/xa6/xa1/xd3 <CJK> +<U00020678> /x8e/xa6/xa1/xd4 <CJK> +<U000206A6> /x8e/xa6/xa1/xd5 <CJK> +<U000206A9> /x8e/xa6/xa1/xd6 <CJK> +<U000206AC> /x8e/xa6/xa1/xd7 <CJK> +<U00020834> /x8e/xa6/xa1/xd8 <CJK> +<U00020504> /x8e/xa6/xa1/xd9 <CJK> +<U0002097B> /x8e/xa6/xa1/xda <CJK> +<U00020A10> /x8e/xa6/xa1/xdb <CJK> +<U0002062F> /x8e/xa6/xa1/xdc <CJK> +<U00020AD7> /x8e/xa6/xa1/xdd <CJK> +<U00020B1C> /x8e/xa6/xa1/xde <CJK> +<U00020B1F> /x8e/xa6/xa1/xdf <CJK> +<U00020B1A> /x8e/xa6/xa1/xe0 <CJK> +<U00020B1E> /x8e/xa6/xa1/xe2 <CJK> +<U00020B9E> /x8e/xa6/xa1/xe3 <CJK> +<U00020B9A> /x8e/xa6/xa1/xe4 <CJK> +<U000211A0> /x8e/xa6/xa1/xe5 <CJK> +<U000211A1> /x8e/xa6/xa1/xe6 <CJK> +<U000215D2> /x8e/xa6/xa1/xe7 <CJK> +<U000215D3> /x8e/xa6/xa1/xe8 <CJK> +<U000219B9> /x8e/xa6/xa1/xe9 <CJK> +<U00021B1D> /x8e/xa6/xa1/xea <CJK> +<U00021B55> /x8e/xa6/xa1/xeb <CJK> +<U00021CFF> /x8e/xa6/xa1/xec <CJK> +<U00021FE7> /x8e/xa6/xa1/xed <CJK> +<U382A> /x8e/xa6/xa1/xee <CJK> +<U00022011> /x8e/xa6/xa1/xef <CJK> +<U00022013> /x8e/xa6/xa1/xf0 <CJK> +<U00022012> /x8e/xa6/xa1/xf1 <CJK> +<U000221AF> /x8e/xa6/xa1/xf2 <CJK> +<U000221B1> /x8e/xa6/xa1/xf3 <CJK> +<U0002232D> /x8e/xa6/xa1/xf5 <CJK> +<U0002237B> /x8e/xa6/xa1/xf6 <CJK> +<U0002239D> /x8e/xa6/xa1/xf7 <CJK> +<U0002239A> /x8e/xa6/xa1/xf8 <CJK> +<U38A7> /x8e/xa6/xa1/xf9 <CJK> +<U0002239F> /x8e/xa6/xa1/xfa <CJK> +<U000223A0> /x8e/xa6/xa1/xfb <CJK> +<U0002239C> /x8e/xa6/xa1/xfc <CJK> +<U000224BD> /x8e/xa6/xa1/xfd <CJK> +<U38FA> /x8e/xa6/xa1/xfe <CJK> +<U000225AA> /x8e/xa6/xa2/xa1 <CJK> +<U0002306C> /x8e/xa6/xa2/xa2 <CJK> +<U00023091> /x8e/xa6/xa2/xa3 <CJK> +<U00023C74> /x8e/xa6/xa2/xa4 <CJK> +<U0002456A> /x8e/xa6/xa2/xa5 <CJK> +<U00025605> /x8e/xa6/xa2/xa7 <CJK> +<U0002626B> /x8e/xa6/xa2/xa8 <CJK> +<U0002626A> /x8e/xa6/xa2/xa9 <CJK> +<U000200E0> /x8e/xa6/xa2/xaa <CJK> +<U00020012> /x8e/xa6/xa2/xab <CJK> +<U3400> /x8e/xa6/xa2/xac <CJK> +<U0002007F> /x8e/xa6/xa2/xad <CJK> +<U000200A0> /x8e/xa6/xa2/xae <CJK> +<U00020099> /x8e/xa6/xa2/xaf <CJK> +<U00020095> /x8e/xa6/xa2/xb0 <CJK> +<U0002009E> /x8e/xa6/xa2/xb1 <CJK> +<U000200DF> /x8e/xa6/xa2/xb2 <CJK> +<U000200DE> /x8e/xa6/xa2/xb3 <CJK> +<U000201AF> /x8e/xa6/xa2/xb4 <CJK> +<U000201AD> /x8e/xa6/xa2/xb5 <CJK> +<U000201B0> /x8e/xa6/xa2/xb6 <CJK> +<U000204DF> /x8e/xa6/xa2/xb7 <CJK> +<U00020543> /x8e/xa6/xa2/xb8 <CJK> +<U00020541> /x8e/xa6/xa2/xb9 <CJK> +<U00020548> /x8e/xa6/xa2/xba <CJK> +<U00020575> /x8e/xa6/xa2/xbb <CJK> +<U00020632> /x8e/xa6/xa2/xbd <CJK> +<U0002067B> /x8e/xa6/xa2/xbe <CJK> +<U00020679> /x8e/xa6/xa2/xbf <CJK> +<U000206B3> /x8e/xa6/xa2/xc0 <CJK> +<U34DB> /x8e/xa6/xa2/xc1 <CJK> +<U00020BA7> /x8e/xa6/xa2/xc2 <CJK> +<U000206B2> /x8e/xa6/xa2/xc3 <CJK> +<U000206B0> /x8e/xa6/xa2/xc4 <CJK> +<U000206B4> /x8e/xa6/xa2/xc5 <CJK> +<U000208CD> /x8e/xa6/xa2/xc7 <CJK> +<U000208CE> /x8e/xa6/xa2/xc8 <CJK> +<U00020910> /x8e/xa6/xa2/xca <CJK> +<U00020980> /x8e/xa6/xa2/xcb <CJK> +<U000209D3> /x8e/xa6/xa2/xcc <CJK> +<U00020A30> /x8e/xa6/xa2/xcd <CJK> +<U00020098> /x8e/xa6/xa2/xce <CJK> +<U00020A2F> /x8e/xa6/xa2/xcf <CJK> +<U00020A31> /x8e/xa6/xa2/xd0 <CJK> +<U00020ADA> /x8e/xa6/xa2/xd1 <CJK> +<U00020AD9> /x8e/xa6/xa2/xd2 <CJK> +<U00020B27> /x8e/xa6/xa2/xd3 <CJK> +<U00020B28> /x8e/xa6/xa2/xd4 <CJK> +<U00020B21> /x8e/xa6/xa2/xd5 <CJK> +<U00020B25> /x8e/xa6/xa2/xd6 <CJK> +<U00020BA6> /x8e/xa6/xa2/xd7 <CJK> +<U00020BA2> /x8e/xa6/xa2/xd8 <CJK> +<U00020BA1> /x8e/xa6/xa2/xd9 <CJK> +<U00020BA4> /x8e/xa6/xa2/xda <CJK> +<U00020BAA> /x8e/xa6/xa2/xdc <CJK> +<U00020BA5> /x8e/xa6/xa2/xdd <CJK> +<U00020BA3> /x8e/xa6/xa2/xde <CJK> +<U00020064> /x8e/xa6/xa2/xdf <CJK> +<U0002123F> /x8e/xa6/xa2/xe0 <CJK> +<U00021244> /x8e/xa6/xa2/xe1 <CJK> +<U0002151B> /x8e/xa6/xa2/xe2 <CJK> +<U00021553> /x8e/xa6/xa2/xe3 <CJK> +<U00021584> /x8e/xa6/xa2/xe4 <CJK> +<U00021586> /x8e/xa6/xa2/xe5 <CJK> +<U000215D5> /x8e/xa6/xa2/xe6 <CJK> +<U0002193E> /x8e/xa6/xa2/xe8 <CJK> +<U00021940> /x8e/xa6/xa2/xe9 <CJK> +<U00021BCA> /x8e/xa6/xa2/xea <CJK> +<U00021BC9> /x8e/xa6/xa2/xeb <CJK> +<U00021C26> /x8e/xa6/xa2/xec <CJK> +<U00021D00> /x8e/xa6/xa2/xed <CJK> +<U00021D31> /x8e/xa6/xa2/xee <CJK> +<U00021D3C> /x8e/xa6/xa2/xef <CJK> +<U00021D30> /x8e/xa6/xa2/xf0 <CJK> +<U00021D33> /x8e/xa6/xa2/xf1 <CJK> +<U00021D32> /x8e/xa6/xa2/xf2 <CJK> +<U00021D38> /x8e/xa6/xa2/xf3 <CJK> +<U00022034> /x8e/xa6/xa2/xf4 <CJK> +<U00022053> /x8e/xa6/xa2/xf5 <CJK> +<U00022054> /x8e/xa6/xa2/xf6 <CJK> +<U000221B4> /x8e/xa6/xa2/xf7 <CJK> +<U000221B2> /x8e/xa6/xa2/xf8 <CJK> +<U0002232F> /x8e/xa6/xa2/xf9 <CJK> +<U000223A5> /x8e/xa6/xa2/xfa <CJK> +<U000223A7> /x8e/xa6/xa2/xfb <CJK> +<U000223A4> /x8e/xa6/xa2/xfc <CJK> +<U000223A8> /x8e/xa6/xa2/xfd <CJK> +<U000223A9> /x8e/xa6/xa2/xfe <CJK> +<U000223A2> /x8e/xa6/xa3/xa1 <CJK> +<U000223A3> /x8e/xa6/xa3/xa2 <CJK> +<U000223A6> /x8e/xa6/xa3/xa3 <CJK> +<U00022481> /x8e/xa6/xa3/xa4 <CJK> +<U00022480> /x8e/xa6/xa3/xa5 <CJK> +<U000225AD> /x8e/xa6/xa3/xa6 <CJK> +<U00022A24> /x8e/xa6/xa3/xa7 <CJK> +<U00022A65> /x8e/xa6/xa3/xa8 <CJK> +<U00022A68> /x8e/xa6/xa3/xa9 <CJK> +<U00022A69> /x8e/xa6/xa3/xaa <CJK> +<U0002313C> /x8e/xa6/xa3/xab <CJK> +<U0002313B> /x8e/xa6/xa3/xac <CJK> +<U0002335D> /x8e/xa6/xa3/xad <CJK> +<U00023944> /x8e/xa6/xa3/xae <CJK> +<U00024182> /x8e/xa6/xa3/xaf <CJK> +<U000244F1> /x8e/xa6/xa3/xb0 <CJK> +<U0002456B> /x8e/xa6/xa3/xb1 <CJK> +<U0002471B> /x8e/xa6/xa3/xb2 <CJK> +<U000248EB> /x8e/xa6/xa3/xb3 <CJK> +<U00024BBA> /x8e/xa6/xa3/xb4 <CJK> +<U00024BD3> /x8e/xa6/xa3/xb5 <CJK> +<U00024D13> /x8e/xa6/xa3/xb6 <CJK> +<U00025922> /x8e/xa6/xa3/xb7 <CJK> +<U00026AF4> /x8e/xa6/xa3/xb8 <CJK> +<U0002820F> /x8e/xa6/xa3/xb9 <CJK> +<U00028210> /x8e/xa6/xa3/xba <CJK> +<U00020507> /x8e/xa6/xa3/xbb <CJK> +<U00029C0B> /x8e/xa6/xa3/xbc <CJK> +<U00029C0A> /x8e/xa6/xa3/xbd <CJK> +<U00020019> /x8e/xa6/xa3/xbe <CJK> +<U0002001A> /x8e/xa6/xa3/xbf <CJK> +<U00020018> /x8e/xa6/xa3/xc0 <CJK> +<U00020066> /x8e/xa6/xa3/xc1 <CJK> +<U00020082> /x8e/xa6/xa3/xc2 <CJK> +<U000200A8> /x8e/xa6/xa3/xc3 <CJK> +<U000200E5> /x8e/xa6/xa3/xc4 <CJK> +<U000200E7> /x8e/xa6/xa3/xc5 <CJK> +<U000200E4> /x8e/xa6/xa3/xc6 <CJK> +<U00020115> /x8e/xa6/xa3/xc7 <CJK> +<U00020123> /x8e/xa6/xa3/xc8 <CJK> +<U00020124> /x8e/xa6/xa3/xc9 <CJK> +<U00020143> /x8e/xa6/xa3/xca <CJK> +<U000201C3> /x8e/xa6/xa3/xcb <CJK> +<U000201BC> /x8e/xa6/xa3/xcc <CJK> +<U000201BB> /x8e/xa6/xa3/xcd <CJK> +<U3438> /x8e/xa6/xa3/xce <CJK> +<U000201B7> /x8e/xa6/xa3/xcf <CJK> +<U000201B9> /x8e/xa6/xa3/xd0 <CJK> +<U000201CF> /x8e/xa6/xa3/xd1 <CJK> +<U0002047A> /x8e/xa6/xa3/xd3 <CJK> +<U0002047B> /x8e/xa6/xa3/xd4 <CJK> +<U000204E1> /x8e/xa6/xa3/xd5 <CJK> +<U000204E0> /x8e/xa6/xa3/xd6 <CJK> +<U00020509> /x8e/xa6/xa3/xd7 <CJK> +<U0002054D> /x8e/xa6/xa3/xd8 <CJK> +<U0002054B> /x8e/xa6/xa3/xda <CJK> +<U00020579> /x8e/xa6/xa3/xdb <CJK> +<U000205B1> /x8e/xa6/xa3/xdc <CJK> +<U00020636> /x8e/xa6/xa3/xdd <CJK> +<U00020635> /x8e/xa6/xa3/xde <CJK> +<U00020637> /x8e/xa6/xa3/xdf <CJK> +<U00020638> /x8e/xa6/xa3/xe0 <CJK> +<U0002067F> /x8e/xa6/xa3/xe1 <CJK> +<U00020680> /x8e/xa6/xa3/xe2 <CJK> +<U00020681> /x8e/xa6/xa3/xe3 <CJK> +<U00026953> /x8e/xa6/xa3/xe4 <CJK> +<U0002067E> /x8e/xa6/xa3/xe5 <CJK> +<U000206CD> /x8e/xa6/xa3/xe6 <CJK> +<U000206BF> /x8e/xa6/xa3/xe7 <CJK> +<U000206BE> /x8e/xa6/xa3/xe8 <CJK> +<U000206C2> /x8e/xa6/xa3/xe9 <CJK> +<U000206B8> /x8e/xa6/xa3/xea <CJK> +<U000206C1> /x8e/xa6/xa3/xeb <CJK> +<U6530> /x8e/xa6/xa3/xec <CJK> +<U00020931> /x8e/xa6/xa3/xed <CJK> +<U0002092F> /x8e/xa6/xa3/xee <CJK> +<U0002096F> /x8e/xa6/xa3/xef <CJK> +<U00020982> /x8e/xa6/xa3/xf0 <CJK> +<U353A> /x8e/xa6/xa3/xf1 <CJK> +<U00020987> /x8e/xa6/xa3/xf2 <CJK> +<U00020986> /x8e/xa6/xa3/xf3 <CJK> +<U0002098D> /x8e/xa6/xa3/xf4 <CJK> +<U00020994> /x8e/xa6/xa3/xf5 <CJK> +<U000209D7> /x8e/xa6/xa3/xf6 <CJK> +<U000209D4> /x8e/xa6/xa3/xf7 <CJK> +<U000209D8> /x8e/xa6/xa3/xf8 <CJK> +<U00020A16> /x8e/xa6/xa3/xf9 <CJK> +<U00020A14> /x8e/xa6/xa3/xfa <CJK> +<U00020A2E> /x8e/xa6/xa3/xfb <CJK> +<U00020A36> /x8e/xa6/xa3/xfc <CJK> +<U00020A37> /x8e/xa6/xa3/xfd <CJK> +<U00021FEE> /x8e/xa6/xa3/xfe <CJK> +<U00020AE0> /x8e/xa6/xa4/xa1 <CJK> +<U00020AE5> /x8e/xa6/xa4/xa2 <CJK> +<U00020ADF> /x8e/xa6/xa4/xa3 <CJK> +<U00020B2B> /x8e/xa6/xa4/xa4 <CJK> +<U00020B29> /x8e/xa6/xa4/xa5 <CJK> +<U00020B2D> /x8e/xa6/xa4/xa6 <CJK> +<U00020B2F> /x8e/xa6/xa4/xa7 <CJK> +<U00020BB7> /x8e/xa6/xa4/xa8 <CJK> +<U00020BC9> /x8e/xa6/xa4/xa9 <CJK> +<U00020BC1> /x8e/xa6/xa4/xaa <CJK> +<U00020BCA> /x8e/xa6/xa4/xab <CJK> +<U00020BB2> /x8e/xa6/xa4/xac <CJK> +<U00020BAC> /x8e/xa6/xa4/xad <CJK> +<U00020BAE> /x8e/xa6/xa4/xae <CJK> +<U000211B2> /x8e/xa6/xa4/xaf <CJK> +<U000211A8> /x8e/xa6/xa4/xb0 <CJK> +<U000211B0> /x8e/xa6/xa4/xb1 <CJK> +<U000211A7> /x8e/xa6/xa4/xb2 <CJK> +<U00021252> /x8e/xa6/xa4/xb4 <CJK> +<U0002124A> /x8e/xa6/xa4/xb5 <CJK> +<U00021556> /x8e/xa6/xa4/xb6 <CJK> +<U00021555> /x8e/xa6/xa4/xb7 <CJK> +<U0002155F> /x8e/xa6/xa4/xb8 <CJK> +<U0002155E> /x8e/xa6/xa4/xb9 <CJK> +<U00021588> /x8e/xa6/xa4/xba <CJK> +<U000215DD> /x8e/xa6/xa4/xbc <CJK> +<U000215E2> /x8e/xa6/xa4/xbd <CJK> +<U000215E1> /x8e/xa6/xa4/xbe <CJK> +<U000215DF> /x8e/xa6/xa4/xbf <CJK> +<U000215E0> /x8e/xa6/xa4/xc0 <CJK> +<U000216AF> /x8e/xa6/xa4/xc1 <CJK> +<U000216B1> /x8e/xa6/xa4/xc2 <CJK> +<U000216BA> /x8e/xa6/xa4/xc3 <CJK> +<U00021945> /x8e/xa6/xa4/xc4 <CJK> +<U00021943> /x8e/xa6/xa4/xc5 <CJK> +<U000219BD> /x8e/xa6/xa4/xc6 <CJK> +<U000219C8> /x8e/xa6/xa4/xc7 <CJK> +<U000219BE> /x8e/xa6/xa4/xc9 <CJK> +<U000219BF> /x8e/xa6/xa4/xca <CJK> +<U00021B59> /x8e/xa6/xa4/xcc <CJK> +<U00021C29> /x8e/xa6/xa4/xcd <CJK> +<U00021C2C> /x8e/xa6/xa4/xce <CJK> +<U00021C2F> /x8e/xa6/xa4/xcf <CJK> +<U00021C2D> /x8e/xa6/xa4/xd0 <CJK> +<U00021C2E> /x8e/xa6/xa4/xd1 <CJK> +<U00021D04> /x8e/xa6/xa4/xd2 <CJK> +<U00021D02> /x8e/xa6/xa4/xd3 <CJK> +<U00021D01> /x8e/xa6/xa4/xd4 <CJK> +<U00021D40> /x8e/xa6/xa4/xd5 <CJK> +<U00021D4A> /x8e/xa6/xa4/xd6 <CJK> +<U00021D3F> /x8e/xa6/xa4/xd7 <CJK> +<U00021D4F> /x8e/xa6/xa4/xd8 <CJK> +<U00021D41> /x8e/xa6/xa4/xd9 <CJK> +<U00021D4E> /x8e/xa6/xa4/xda <CJK> +<U00021FEB> /x8e/xa6/xa4/xdb <CJK> +<U00021FEC> /x8e/xa6/xa4/xdc <CJK> +<U000200AC> /x8e/xa6/xa4/xdd <CJK> +<U0002205B> /x8e/xa6/xa4/xde <CJK> +<U00022063> /x8e/xa6/xa4/xdf <CJK> +<U0002205A> /x8e/xa6/xa4/xe0 <CJK> +<U00022059> /x8e/xa6/xa4/xe1 <CJK> +<U000221DC> /x8e/xa6/xa4/xe2 <CJK> +<U000221DB> /x8e/xa6/xa4/xe3 <CJK> +<U000221D9> /x8e/xa6/xa4/xe4 <CJK> +<U000221E0> /x8e/xa6/xa4/xe5 <CJK> +<U000221DD> /x8e/xa6/xa4/xe6 <CJK> +<U00020020> /x8e/xa6/xa4/xe7 <CJK> +<U000223B0> /x8e/xa6/xa4/xe8 <CJK> +<U000223B1> /x8e/xa6/xa4/xe9 <CJK> +<U000223B2> /x8e/xa6/xa4/xea <CJK> +<U000223B6> /x8e/xa6/xa4/xeb <CJK> +<U00022451> /x8e/xa6/xa4/xec <CJK> +<U00022452> /x8e/xa6/xa4/xed <CJK> +<U00022450> /x8e/xa6/xa4/xee <CJK> +<U00022484> /x8e/xa6/xa4/xef <CJK> +<U38C9> /x8e/xa6/xa4/xf0 <CJK> +<U00022483> /x8e/xa6/xa4/xf1 <CJK> +<U000225C3> /x8e/xa6/xa4/xf2 <CJK> +<U000225B8> /x8e/xa6/xa4/xf3 <CJK> +<U000225B9> /x8e/xa6/xa4/xf4 <CJK> +<U000225B2> /x8e/xa6/xa4/xf5 <CJK> +<U00022990> /x8e/xa6/xa4/xf6 <CJK> +<U00022A26> /x8e/xa6/xa4/xf7 <CJK> +<U00022A29> /x8e/xa6/xa4/xf8 <CJK> +<U00022A6E> /x8e/xa6/xa4/xf9 <CJK> +<U00023140> /x8e/xa6/xa4/xfa <CJK> +<U0002313E> /x8e/xa6/xa4/xfb <CJK> +<U00023141> /x8e/xa6/xa4/xfc <CJK> +<U0002335E> /x8e/xa6/xa4/xfd <CJK> +<U000233BB> /x8e/xa6/xa4/xfe <CJK> +<U000233BC> /x8e/xa6/xa5/xa1 <CJK> +<U000233B9> /x8e/xa6/xa5/xa2 <CJK> +<U00023880> /x8e/xa6/xa5/xa4 <CJK> +<U3C4F> /x8e/xa6/xa5/xa5 <CJK> +<U00023945> /x8e/xa6/xa5/xa6 <CJK> +<U000239BA> /x8e/xa6/xa5/xa7 <CJK> +<U000239BD> /x8e/xa6/xa5/xa8 <CJK> +<U00023C56> /x8e/xa6/xa5/xa9 <CJK> +<U00023C55> /x8e/xa6/xa5/xaa <CJK> +<U00023C75> /x8e/xa6/xa5/xab <CJK> +<U00023C77> /x8e/xa6/xa5/xac <CJK> +<U00023C81> /x8e/xa6/xa5/xad <CJK> +<U00023C83> /x8e/xa6/xa5/xaf <CJK> +<U00023C8B> /x8e/xa6/xa5/xb0 <CJK> +<U00023C84> /x8e/xa6/xa5/xb1 <CJK> +<U00024186> /x8e/xa6/xa5/xb2 <CJK> +<U00024183> /x8e/xa6/xa5/xb3 <CJK> +<U0002418B> /x8e/xa6/xa5/xb4 <CJK> +<U0002456D> /x8e/xa6/xa5/xb5 <CJK> +<U00024616> /x8e/xa6/xa5/xb6 <CJK> +<U00024728> /x8e/xa6/xa5/xb7 <CJK> +<U000248EA> /x8e/xa6/xa5/xb8 <CJK> +<U00024BD4> /x8e/xa6/xa5/xb9 <CJK> +<U00024C03> /x8e/xa6/xa5/xba <CJK> +<U00024D15> /x8e/xa6/xa5/xbb <CJK> +<U00024F3D> /x8e/xa6/xa5/xbc <CJK> +<U00024F3E> /x8e/xa6/xa5/xbd <CJK> +<U00025416> /x8e/xa6/xa5/xbe <CJK> +<U00025606> /x8e/xa6/xa5/xc0 <CJK> +<U0002574D> /x8e/xa6/xa5/xc1 <CJK> +<U00026222> /x8e/xa6/xa5/xc2 <CJK> +<U00026273> /x8e/xa6/xa5/xc3 <CJK> +<U0002626D> /x8e/xa6/xa5/xc4 <CJK> +<U0002626E> /x8e/xa6/xa5/xc5 <CJK> +<U000264B1> /x8e/xa6/xa5/xc6 <CJK> +<U0002054E> /x8e/xa6/xa5/xc7 <CJK> +<U0002662D> /x8e/xa6/xa5/xc8 <CJK> +<U43CD> /x8e/xa6/xa5/xc9 <CJK> +<U000268F9> /x8e/xa6/xa5/xca <CJK> +<U00026952> /x8e/xa6/xa5/xcb <CJK> +<U00026B00> /x8e/xa6/xa5/xcc <CJK> +<U00026AFC> /x8e/xa6/xa5/xcd <CJK> +<U00026AFA> /x8e/xa6/xa5/xce <CJK> +<U4492> /x8e/xa6/xa5/xcf <CJK> +<U00026AF7> /x8e/xa6/xa5/xd0 <CJK> +<U00026AF8> /x8e/xa6/xa5/xd1 <CJK> +<U00027C27> /x8e/xa6/xa5/xd4 <CJK> +<U00028211> /x8e/xa6/xa5/xd5 <CJK> +<U000200AE> /x8e/xa6/xa5/xd6 <CJK> +<U00028450> /x8e/xa6/xa5/xd7 <CJK> +<U0002844F> /x8e/xa6/xa5/xd8 <CJK> +<U0002844D> /x8e/xa6/xa5/xd9 <CJK> +<U00028671> /x8e/xa6/xa5/xda <CJK> +<U00028672> /x8e/xa6/xa5/xdc <CJK> +<U00028E18> /x8e/xa6/xa5/xdd <CJK> +<U00020A44> /x8e/xa6/xa5/xde <CJK> +<U00020021> /x8e/xa6/xa5/xdf <CJK> +<U00020067> /x8e/xa6/xa5/xe0 <CJK> +<U000200AF> /x8e/xa6/xa5/xe1 <CJK> +<U000200B0> /x8e/xa6/xa5/xe2 <CJK> +<U00020029> /x8e/xa6/xa5/xe3 <CJK> +<U00020117> /x8e/xa6/xa5/xe4 <CJK> +<U00020122> /x8e/xa6/xa5/xe5 <CJK> +<U00020025> /x8e/xa6/xa5/xe7 <CJK> +<U00020128> /x8e/xa6/xa5/xe8 <CJK> +<U000201FF> /x8e/xa6/xa5/xe9 <CJK> +<U000201D9> /x8e/xa6/xa5/xea <CJK> +<U000201DB> /x8e/xa6/xa5/xeb <CJK> +<U000201DE> /x8e/xa6/xa5/xec <CJK> +<U000201F2> /x8e/xa6/xa5/xed <CJK> +<U000201FE> /x8e/xa6/xa5/xee <CJK> +<U000201F4> /x8e/xa6/xa5/xef <CJK> +<U000201DD> /x8e/xa6/xa5/xf0 <CJK> +<U3445> /x8e/xa6/xa5/xf1 <CJK> +<U00020201> /x8e/xa6/xa5/xf3 <CJK> +<U000201DC> /x8e/xa6/xa5/xf4 <CJK> +<U0002047D> /x8e/xa6/xa5/xf5 <CJK> +<U00020481> /x8e/xa6/xa5/xf6 <CJK> +<U0002047E> /x8e/xa6/xa5/xf7 <CJK> +<U0002047F> /x8e/xa6/xa5/xf8 <CJK> +<U000204E5> /x8e/xa6/xa5/xf9 <CJK> +<U0002050F> /x8e/xa6/xa5/xfa <CJK> +<U34B5> /x8e/xa6/xa5/xfb <CJK> +<U0002050A> /x8e/xa6/xa5/xfc <CJK> +<U34B6> /x8e/xa6/xa5/xfd <CJK> +<U0002050B> /x8e/xa6/xa5/xfe <CJK> +<U00020551> /x8e/xa6/xa6/xa1 <CJK> +<U00020552> /x8e/xa6/xa6/xa2 <CJK> +<U00020550> /x8e/xa6/xa6/xa3 <CJK> +<U000205B8> /x8e/xa6/xa6/xa4 <CJK> +<U0002063D> /x8e/xa6/xa6/xa5 <CJK> +<U0002063E> /x8e/xa6/xa6/xa6 <CJK> +<U0002063C> /x8e/xa6/xa6/xa7 <CJK> +<U00020687> /x8e/xa6/xa6/xa8 <CJK> +<U000206D7> /x8e/xa6/xa6/xa9 <CJK> +<U000206DB> /x8e/xa6/xa6/xaa <CJK> +<U000206CF> /x8e/xa6/xa6/xab <CJK> +<U000206E0> /x8e/xa6/xa6/xac <CJK> +<U0002084C> /x8e/xa6/xa6/xad <CJK> +<U00020842> /x8e/xa6/xa6/xae <CJK> +<U000208D4> /x8e/xa6/xa6/xaf <CJK> +<U00020911> /x8e/xa6/xa6/xb0 <CJK> +<U00020914> /x8e/xa6/xa6/xb1 <CJK> +<U00020915> /x8e/xa6/xa6/xb2 <CJK> +<U00020912> /x8e/xa6/xa6/xb3 <CJK> +<U00020933> /x8e/xa6/xa6/xb4 <CJK> +<U00020935> /x8e/xa6/xa6/xb5 <CJK> +<U3537> /x8e/xa6/xa6/xb6 <CJK> +<U00020971> /x8e/xa6/xa6/xb7 <CJK> +<U3530> /x8e/xa6/xa6/xb8 <CJK> +<U00020991> /x8e/xa6/xa6/xb9 <CJK> +<U00020993> /x8e/xa6/xa6/xba <CJK> +<U00020995> /x8e/xa6/xa6/xbb <CJK> +<U000209DC> /x8e/xa6/xa6/xbc <CJK> +<U00020A42> /x8e/xa6/xa6/xbd <CJK> +<U00020A40> /x8e/xa6/xa6/xbe <CJK> +<U000253A6> /x8e/xa6/xa6/xbf <CJK> +<U00020AE6> /x8e/xa6/xa6/xc0 <CJK> +<U0002128F> /x8e/xa6/xa6/xc1 <CJK> +<U00020B32> /x8e/xa6/xa6/xc2 <CJK> +<U00020B31> /x8e/xa6/xa6/xc4 <CJK> +<U00020BF5> /x8e/xa6/xa6/xc5 <CJK> +<U00020BCD> /x8e/xa6/xa6/xc6 <CJK> +<U00020BDE> /x8e/xa6/xa6/xc7 <CJK> +<U00020BD5> /x8e/xa6/xa6/xc8 <CJK> +<U00020BDA> /x8e/xa6/xa6/xc9 <CJK> +<U00020BEE> /x8e/xa6/xa6/xca <CJK> +<U00020BEC> /x8e/xa6/xa6/xcb <CJK> +<U00020BCF> /x8e/xa6/xa6/xcc <CJK> +<U00020BCE> /x8e/xa6/xa6/xcd <CJK> +<U00020BCC> /x8e/xa6/xa6/xcf <CJK> +<U00020BF3> /x8e/xa6/xa6/xd0 <CJK> +<U000211C1> /x8e/xa6/xa6/xd1 <CJK> +<U000211C4> /x8e/xa6/xa6/xd2 <CJK> +<U000211C6> /x8e/xa6/xa6/xd3 <CJK> +<U000211B4> /x8e/xa6/xa6/xd4 <CJK> +<U000211C3> /x8e/xa6/xa6/xd5 <CJK> +<U000211B8> /x8e/xa6/xa6/xd6 <CJK> +<U000211BB> /x8e/xa6/xa6/xd7 <CJK> +<U000211B7> /x8e/xa6/xa6/xd8 <CJK> +<U000211BC> /x8e/xa6/xa6/xd9 <CJK> +<U000211BF> /x8e/xa6/xa6/xda <CJK> +<U000211C7> /x8e/xa6/xa6/xdb <CJK> +<U000211BE> /x8e/xa6/xa6/xdc <CJK> +<U00021260> /x8e/xa6/xa6/xdd <CJK> +<U0002125D> /x8e/xa6/xa6/xde <CJK> +<U00021276> /x8e/xa6/xa6/xdf <CJK> +<U0002126C> /x8e/xa6/xa6/xe0 <CJK> +<U00021275> /x8e/xa6/xa6/xe1 <CJK> +<U0002125B> /x8e/xa6/xa6/xe2 <CJK> +<U00021271> /x8e/xa6/xa6/xe3 <CJK> +<U00021273> /x8e/xa6/xa6/xe4 <CJK> +<U00021261> /x8e/xa6/xa6/xe5 <CJK> +<U0002125A> /x8e/xa6/xa6/xe6 <CJK> +<U00021262> /x8e/xa6/xa6/xe7 <CJK> +<U00021272> /x8e/xa6/xa6/xe8 <CJK> +<U0002125F> /x8e/xa6/xa6/xe9 <CJK> +<U00021258> /x8e/xa6/xa6/xea <CJK> +<U0002151E> /x8e/xa6/xa6/xeb <CJK> +<U00021558> /x8e/xa6/xa6/xec <CJK> +<U0002158B> /x8e/xa6/xa6/xed <CJK> +<U0002158A> /x8e/xa6/xa6/xee <CJK> +<U000215F4> /x8e/xa6/xa6/xef <CJK> +<U000215F0> /x8e/xa6/xa6/xf0 <CJK> +<U000216D2> /x8e/xa6/xa6/xf1 <CJK> +<U000216CD> /x8e/xa6/xa6/xf2 <CJK> +<U000216CE> /x8e/xa6/xa6/xf3 <CJK> +<U000216BC> /x8e/xa6/xa6/xf4 <CJK> +<U000216D0> /x8e/xa6/xa6/xf5 <CJK> +<U00021946> /x8e/xa6/xa6/xf6 <CJK> +<U00021947> /x8e/xa6/xa6/xf7 <CJK> +<U373E> /x8e/xa6/xa6/xf8 <CJK> +<U374D> /x8e/xa6/xa6/xf9 <CJK> +<U3751> /x8e/xa6/xa6/xfa <CJK> +<U000219CE> /x8e/xa6/xa6/xfb <CJK> +<U000219CF> /x8e/xa6/xa6/xfc <CJK> +<U000219CC> /x8e/xa6/xa6/xfd <CJK> +<U000219CB> /x8e/xa6/xa6/xfe <CJK> +<U00021B60> /x8e/xa6/xa7/xa2 <CJK> +<U00021B5F> /x8e/xa6/xa7/xa3 <CJK> +<U00021B5D> /x8e/xa6/xa7/xa4 <CJK> +<U00021BD4> /x8e/xa6/xa7/xa5 <CJK> +<U00021C3A> /x8e/xa6/xa7/xa6 <CJK> +<U00021C38> /x8e/xa6/xa7/xa7 <CJK> +<U00021C3C> /x8e/xa6/xa7/xa8 <CJK> +<U00021C36> /x8e/xa6/xa7/xa9 <CJK> +<U00021D08> /x8e/xa6/xa7/xaa <CJK> +<U00021D7E> /x8e/xa6/xa7/xab <CJK> +<U00021D5E> /x8e/xa6/xa7/xac <CJK> +<U00021D6E> /x8e/xa6/xa7/xad <CJK> +<U00021D53> /x8e/xa6/xa7/xae <CJK> +<U00021D70> /x8e/xa6/xa7/xaf <CJK> +<U00021D57> /x8e/xa6/xa7/xb0 <CJK> +<U00021D5D> /x8e/xa6/xa7/xb1 <CJK> +<U00021D63> /x8e/xa6/xa7/xb2 <CJK> +<U00021D7A> /x8e/xa6/xa7/xb3 <CJK> +<U00021D79> /x8e/xa6/xa7/xb4 <CJK> +<U00021D93> /x8e/xa6/xa7/xb5 <CJK> +<U0002201D> /x8e/xa6/xa7/xb7 <CJK> +<U00022068> /x8e/xa6/xa7/xb8 <CJK> +<U00022073> /x8e/xa6/xa7/xb9 <CJK> +<U00022074> /x8e/xa6/xa7/xba <CJK> +<U00022066> /x8e/xa6/xa7/xbb <CJK> +<U0002206F> /x8e/xa6/xa7/xbc <CJK> +<U00022075> /x8e/xa6/xa7/xbd <CJK> +<U0002207A> /x8e/xa6/xa7/xbe <CJK> +<U00022070> /x8e/xa6/xa7/xbf <CJK> +<U0002206D> /x8e/xa6/xa7/xc0 <CJK> +<U00022065> /x8e/xa6/xa7/xc1 <CJK> +<U0002218A> /x8e/xa6/xa7/xc2 <CJK> +<U000221ED> /x8e/xa6/xa7/xc3 <CJK> +<U000221E9> /x8e/xa6/xa7/xc4 <CJK> +<U000221E3> /x8e/xa6/xa7/xc5 <CJK> +<U000221EF> /x8e/xa6/xa7/xc6 <CJK> +<U3873> /x8e/xa6/xa7/xc7 <CJK> +<U000221EA> /x8e/xa6/xa7/xc8 <CJK> +<U00022331> /x8e/xa6/xa7/xc9 <CJK> +<U00022338> /x8e/xa6/xa7/xcb <CJK> +<U00026B20> /x8e/xa6/xa7/xcc <CJK> +<U00022335> /x8e/xa6/xa7/xcd <CJK> +<U0002233A> /x8e/xa6/xa7/xce <CJK> +<U00022381> /x8e/xa6/xa7/xcf <CJK> +<U00022380> /x8e/xa6/xa7/xd0 <CJK> +<U000223B8> /x8e/xa6/xa7/xd1 <CJK> +<U000223C1> /x8e/xa6/xa7/xd2 <CJK> +<U000223BA> /x8e/xa6/xa7/xd3 <CJK> +<U00022488> /x8e/xa6/xa7/xd4 <CJK> +<U000224CF> /x8e/xa6/xa7/xd5 <CJK> +<U000224CA> /x8e/xa6/xa7/xd6 <CJK> +<U000224C7> /x8e/xa6/xa7/xd7 <CJK> +<U000224C5> /x8e/xa6/xa7/xd8 <CJK> +<U000224C8> /x8e/xa6/xa7/xd9 <CJK> +<U000224D0> /x8e/xa6/xa7/xda <CJK> +<U000224C9> /x8e/xa6/xa7/xdb <CJK> +<U000225BB> /x8e/xa6/xa7/xdc <CJK> +<U000225B6> /x8e/xa6/xa7/xdd <CJK> +<U000225BD> /x8e/xa6/xa7/xde <CJK> +<U000225B4> /x8e/xa6/xa7/xe0 <CJK> +<U000225C1> /x8e/xa6/xa7/xe1 <CJK> +<U000225D1> /x8e/xa6/xa7/xe2 <CJK> +<U000225D2> /x8e/xa6/xa7/xe3 <CJK> +<U000225CC> /x8e/xa6/xa7/xe4 <CJK> +<U000225D4> /x8e/xa6/xa7/xe5 <CJK> +<U000225CB> /x8e/xa6/xa7/xe6 <CJK> +<U000225CE> /x8e/xa6/xa7/xe7 <CJK> +<U000225D5> /x8e/xa6/xa7/xe8 <CJK> +<U000225D8> /x8e/xa6/xa7/xe9 <CJK> +<U00022995> /x8e/xa6/xa7/xea <CJK> +<U00022993> /x8e/xa6/xa7/xeb <CJK> +<U00022999> /x8e/xa6/xa7/xec <CJK> +<U00022996> /x8e/xa6/xa7/xed <CJK> +<U39BE> /x8e/xa6/xa7/xee <CJK> +<U00022A89> /x8e/xa6/xa7/xef <CJK> +<U00022A94> /x8e/xa6/xa7/xf0 <CJK> +<U00022A91> /x8e/xa6/xa7/xf1 <CJK> +<U00022A8F> /x8e/xa6/xa7/xf2 <CJK> +<U00022A84> /x8e/xa6/xa7/xf3 <CJK> +<U00022A97> /x8e/xa6/xa7/xf4 <CJK> +<U00022A86> /x8e/xa6/xa7/xf5 <CJK> +<U00022A85> /x8e/xa6/xa7/xf6 <CJK> +<U00022A8C> /x8e/xa6/xa7/xf7 <CJK> +<U00022EF2> /x8e/xa6/xa7/xf8 <CJK> +<U00022EED> /x8e/xa6/xa7/xf9 <CJK> +<U00022EEF> /x8e/xa6/xa7/xfa <CJK> +<U000230D9> /x8e/xa6/xa7/xfb <CJK> +<U00023146> /x8e/xa6/xa7/xfc <CJK> +<U00023147> /x8e/xa6/xa7/xfd <CJK> +<U0002314B> /x8e/xa6/xa7/xfe <CJK> +<U00023150> /x8e/xa6/xa8/xa1 <CJK> +<U0002314A> /x8e/xa6/xa8/xa2 <CJK> +<U0002314E> /x8e/xa6/xa8/xa3 <CJK> +<U0002314C> /x8e/xa6/xa8/xa4 <CJK> +<U00023148> /x8e/xa6/xa8/xa5 <CJK> +<U00023363> /x8e/xa6/xa8/xa6 <CJK> +<U00023361> /x8e/xa6/xa8/xa7 <CJK> +<U00023362> /x8e/xa6/xa8/xa8 <CJK> +<U00023360> /x8e/xa6/xa8/xa9 <CJK> +<U000233C3> /x8e/xa6/xa8/xaa <CJK> +<U000233C5> /x8e/xa6/xa8/xab <CJK> +<U000233C1> /x8e/xa6/xa8/xac <CJK> +<U000233D0> /x8e/xa6/xa8/xad <CJK> +<U00023882> /x8e/xa6/xa8/xaf <CJK> +<U3C1E> /x8e/xa6/xa8/xb0 <CJK> +<U00023886> /x8e/xa6/xa8/xb1 <CJK> +<U00023884> /x8e/xa6/xa8/xb2 <CJK> +<U0002394C> /x8e/xa6/xa8/xb3 <CJK> +<U00023948> /x8e/xa6/xa8/xb4 <CJK> +<U000239B8> /x8e/xa6/xa8/xb5 <CJK> +<U000239BF> /x8e/xa6/xa8/xb6 <CJK> +<U000239C1> /x8e/xa6/xa8/xb7 <CJK> +<U000239C6> /x8e/xa6/xa8/xb8 <CJK> +<U000239C5> /x8e/xa6/xa8/xb9 <CJK> +<U000239C7> /x8e/xa6/xa8/xba <CJK> +<U000239C0> /x8e/xa6/xa8/xbb <CJK> +<U000239C3> /x8e/xa6/xa8/xbc <CJK> +<U00023AED> /x8e/xa6/xa8/xbd <CJK> +<U00023B03> /x8e/xa6/xa8/xbe <CJK> +<U00023B22> /x8e/xa6/xa8/xbf <CJK> +<U00023B21> /x8e/xa6/xa8/xc0 <CJK> +<U00023C9F> /x8e/xa6/xa8/xc1 <CJK> +<U00023C90> /x8e/xa6/xa8/xc2 <CJK> +<U00023C9E> /x8e/xa6/xa8/xc3 <CJK> +<U3CC8> /x8e/xa6/xa8/xc4 <CJK> +<U00023CA0> /x8e/xa6/xa8/xc5 <CJK> +<U00023C94> /x8e/xa6/xa8/xc6 <CJK> +<U00023C95> /x8e/xa6/xa8/xc7 <CJK> +<U00023CA1> /x8e/xa6/xa8/xc8 <CJK> +<U3CC3> /x8e/xa6/xa8/xc9 <CJK> +<U3CC7> /x8e/xa6/xa8/xca <CJK> +<U0002419A> /x8e/xa6/xa8/xcb <CJK> +<U00024190> /x8e/xa6/xa8/xcc <CJK> +<U000244F2> /x8e/xa6/xa8/xcd <CJK> +<U000244F3> /x8e/xa6/xa8/xce <CJK> +<U0002456E> /x8e/xa6/xa8/xcf <CJK> +<U000245AB> /x8e/xa6/xa8/xd0 <CJK> +<U000245A9> /x8e/xa6/xa8/xd1 <CJK> +<U0002461A> /x8e/xa6/xa8/xd2 <CJK> +<U00024618> /x8e/xa6/xa8/xd3 <CJK> +<U0002461B> /x8e/xa6/xa8/xd4 <CJK> +<U00024760> /x8e/xa6/xa8/xd5 <CJK> +<U0002474C> /x8e/xa6/xa8/xd6 <CJK> +<U00024742> /x8e/xa6/xa8/xd7 <CJK> +<U00024733> /x8e/xa6/xa8/xd8 <CJK> +<U0002473F> /x8e/xa6/xa8/xd9 <CJK> +<U0002473E> /x8e/xa6/xa8/xda <CJK> +<U00024738> /x8e/xa6/xa8/xdb <CJK> +<U00024743> /x8e/xa6/xa8/xdc <CJK> +<U00024746> /x8e/xa6/xa8/xdd <CJK> +<U00024736> /x8e/xa6/xa8/xde <CJK> +<U000248EE> /x8e/xa6/xa8/xdf <CJK> +<U000248F5> /x8e/xa6/xa8/xe0 <CJK> +<U000248F4> /x8e/xa6/xa8/xe1 <CJK> +<U3F56> /x8e/xa6/xa8/xe2 <CJK> +<U00024C1B> /x8e/xa6/xa8/xe3 <CJK> +<U3540> /x8e/xa6/xa8/xe4 <CJK> +<U00024D2B> /x8e/xa6/xa8/xe5 <CJK> +<U00024D29> /x8e/xa6/xa8/xe6 <CJK> +<U00024D2A> /x8e/xa6/xa8/xe7 <CJK> +<U00024D2E> /x8e/xa6/xa8/xe8 <CJK> +<U0002503F> /x8e/xa6/xa8/xe9 <CJK> +<U000250E6> /x8e/xa6/xa8/xea <CJK> +<U000253A7> /x8e/xa6/xa8/xeb <CJK> +<U000253A8> /x8e/xa6/xa8/xec <CJK> +<U00025418> /x8e/xa6/xa8/xed <CJK> +<U00025608> /x8e/xa6/xa8/xee <CJK> +<U00025750> /x8e/xa6/xa8/xef <CJK> +<U00025753> /x8e/xa6/xa8/xf0 <CJK> +<U00025A56> /x8e/xa6/xa8/xf1 <CJK> +<U00025A55> /x8e/xa6/xa8/xf2 <CJK> +<U0002626F> /x8e/xa6/xa8/xf3 <CJK> +<U0002627F> /x8e/xa6/xa8/xf4 <CJK> +<U000264B3> /x8e/xa6/xa8/xf5 <CJK> +<U0002663A> /x8e/xa6/xa8/xf6 <CJK> +<U00026638> /x8e/xa6/xa8/xf7 <CJK> +<U00026637> /x8e/xa6/xa8/xf8 <CJK> +<U00026636> /x8e/xa6/xa8/xf9 <CJK> +<U00020554> /x8e/xa6/xa8/xfa <CJK> +<U000268DD> /x8e/xa6/xa8/xfc <CJK> +<U000268FC> /x8e/xa6/xa8/xfd <CJK> +<U000268FA> /x8e/xa6/xa8/xfe <CJK> +<U00026933> /x8e/xa6/xa9/xa1 <CJK> +<U00026B04> /x8e/xa6/xa9/xa2 <CJK> +<U00026B07> /x8e/xa6/xa9/xa3 <CJK> +<U00026B08> /x8e/xa6/xa9/xa4 <CJK> +<U00026B06> /x8e/xa6/xa9/xa5 <CJK> +<U00026B09> /x8e/xa6/xa9/xa6 <CJK> +<U0002721E> /x8e/xa6/xa9/xa9 <CJK> +<U0002840B> /x8e/xa6/xa9/xab <CJK> +<U00028443> /x8e/xa6/xa9/xac <CJK> +<U00028452> /x8e/xa6/xa9/xad <CJK> +<U00028458> /x8e/xa6/xa9/xae <CJK> +<U0002845E> /x8e/xa6/xa9/xaf <CJK> +<U00028668> /x8e/xa6/xa9/xb0 <CJK> +<U0002868D> /x8e/xa6/xa9/xb1 <CJK> +<U00028682> /x8e/xa6/xa9/xb2 <CJK> +<U0002867B> /x8e/xa6/xa9/xb3 <CJK> +<U00028C58> /x8e/xa6/xa9/xb4 <CJK> +<U49BD> /x8e/xa6/xa9/xb5 <CJK> +<U0002002C> /x8e/xa6/xa9/xb7 <CJK> +<U0002002E> /x8e/xa6/xa9/xb8 <CJK> +<U0002160B> /x8e/xa6/xa9/xb9 <CJK> +<U0002002D> /x8e/xa6/xa9/xba <CJK> +<U00020069> /x8e/xa6/xa9/xbb <CJK> +<U000200B2> /x8e/xa6/xa9/xbc <CJK> +<U000200B6> /x8e/xa6/xa9/xbd <CJK> +<U000200A9> /x8e/xa6/xa9/xbe <CJK> +<U000200ED> /x8e/xa6/xa9/xbf <CJK> +<U00020119> /x8e/xa6/xa9/xc0 <CJK> +<U0002014F> /x8e/xa6/xa9/xc1 <CJK> +<U00020216> /x8e/xa6/xa9/xc2 <CJK> +<U00020203> /x8e/xa6/xa9/xc3 <CJK> +<U0002020E> /x8e/xa6/xa9/xc4 <CJK> +<U00020204> /x8e/xa6/xa9/xc5 <CJK> +<U00020207> /x8e/xa6/xa9/xc6 <CJK> +<U00020210> /x8e/xa6/xa9/xc7 <CJK> +<U00020227> /x8e/xa6/xa9/xc8 <CJK> +<U00020228> /x8e/xa6/xa9/xc9 <CJK> +<U0002020D> /x8e/xa6/xa9/xca <CJK> +<U00020229> /x8e/xa6/xa9/xcb <CJK> +<U0002020F> /x8e/xa6/xa9/xcc <CJK> +<U00020222> /x8e/xa6/xa9/xcd <CJK> +<U00020211> /x8e/xa6/xa9/xce <CJK> +<U00020485> /x8e/xa6/xa9/xcf <CJK> +<U00020484> /x8e/xa6/xa9/xd0 <CJK> +<U00020483> /x8e/xa6/xa9/xd1 <CJK> +<U0002048A> /x8e/xa6/xa9/xd2 <CJK> +<U00020486> /x8e/xa6/xa9/xd3 <CJK> +<U00020510> /x8e/xa6/xa9/xd4 <CJK> +<U00020558> /x8e/xa6/xa9/xd5 <CJK> +<U0002055A> /x8e/xa6/xa9/xd6 <CJK> +<U0002070C> /x8e/xa6/xa9/xd7 <CJK> +<U000205C4> /x8e/xa6/xa9/xd8 <CJK> +<U000205C5> /x8e/xa6/xa9/xd9 <CJK> +<U00020647> /x8e/xa6/xa9/xda <CJK> +<U00020649> /x8e/xa6/xa9/xdb <CJK> +<U0002064A> /x8e/xa6/xa9/xdc <CJK> +<U0002064B> /x8e/xa6/xa9/xdd <CJK> +<U000221BB> /x8e/xa6/xa9/xde <CJK> +<U0002068D> /x8e/xa6/xa9/xdf <CJK> +<U0002068B> /x8e/xa6/xa9/xe0 <CJK> +<U00020707> /x8e/xa6/xa9/xe1 <CJK> +<U00020706> /x8e/xa6/xa9/xe2 <CJK> +<U000206EF> /x8e/xa6/xa9/xe4 <CJK> +<U000206F0> /x8e/xa6/xa9/xe5 <CJK> +<U000206ED> /x8e/xa6/xa9/xe6 <CJK> +<U000206F9> /x8e/xa6/xa9/xe7 <CJK> +<U00020702> /x8e/xa6/xa9/xe8 <CJK> +<U000206E7> /x8e/xa6/xa9/xe9 <CJK> +<U000206F4> /x8e/xa6/xa9/xea <CJK> +<U000206F7> /x8e/xa6/xa9/xeb <CJK> +<U000206F1> /x8e/xa6/xa9/xec <CJK> +<U00020853> /x8e/xa6/xa9/xed <CJK> +<U00020855> /x8e/xa6/xa9/xee <CJK> +<U351A> /x8e/xa6/xa9/xef <CJK> +<U000208DA> /x8e/xa6/xa9/xf0 <CJK> +<U000208D9> /x8e/xa6/xa9/xf1 <CJK> +<U352C> /x8e/xa6/xa9/xf2 <CJK> +<U00020938> /x8e/xa6/xa9/xf3 <CJK> +<U00020999> /x8e/xa6/xa9/xf4 <CJK> +<U000209A2> /x8e/xa6/xa9/xf5 <CJK> +<U0002099C> /x8e/xa6/xa9/xf6 <CJK> +<U0002099A> /x8e/xa6/xa9/xf7 <CJK> +<U0002099B> /x8e/xa6/xa9/xf8 <CJK> +<U000209E5> /x8e/xa6/xa9/xf9 <CJK> +<U000209E3> /x8e/xa6/xa9/xfa <CJK> +<U000209E1> /x8e/xa6/xa9/xfb <CJK> +<U000209E0> /x8e/xa6/xa9/xfc <CJK> +<U000209E2> /x8e/xa6/xa9/xfd <CJK> +<U000209E4> /x8e/xa6/xa9/xfe <CJK> +<U000209E8> /x8e/xa6/xaa/xa2 <CJK> +<U00020A13> /x8e/xa6/xaa/xa4 <CJK> +<U00020A56> /x8e/xa6/xaa/xa5 <CJK> +<U00020A4B> /x8e/xa6/xaa/xa6 <CJK> +<U00020A4A> /x8e/xa6/xaa/xa7 <CJK> +<U00020A4D> /x8e/xa6/xaa/xa8 <CJK> +<U00020A4C> /x8e/xa6/xaa/xa9 <CJK> +<U3549> /x8e/xa6/xaa/xaa <CJK> +<U00020AEA> /x8e/xa6/xaa/xab <CJK> +<U00020AE9> /x8e/xa6/xaa/xac <CJK> +<U00020AEB> /x8e/xa6/xaa/xad <CJK> +<U00020AEC> /x8e/xa6/xaa/xae <CJK> +<U00020B3A> /x8e/xa6/xaa/xaf <CJK> +<U00020B3C> /x8e/xa6/xaa/xb0 <CJK> +<U00020B39> /x8e/xa6/xaa/xb1 <CJK> +<U00020B3B> /x8e/xa6/xaa/xb2 <CJK> +<U00020C14> /x8e/xa6/xaa/xb3 <CJK> +<U00020C0E> /x8e/xa6/xaa/xb4 <CJK> +<U00020C35> /x8e/xa6/xaa/xb5 <CJK> +<U00020C0A> /x8e/xa6/xaa/xb6 <CJK> +<U00020C3F> /x8e/xa6/xaa/xb7 <CJK> +<U00020C38> /x8e/xa6/xaa/xb8 <CJK> +<U357C> /x8e/xa6/xaa/xb9 <CJK> +<U00020C4E> /x8e/xa6/xaa/xba <CJK> +<U00020C17> /x8e/xa6/xaa/xbb <CJK> +<U00020C1E> /x8e/xa6/xaa/xbd <CJK> +<U000211B6> /x8e/xa6/xaa/xbe <CJK> +<U000211CE> /x8e/xa6/xaa/xbf <CJK> +<U000211CA> /x8e/xa6/xaa/xc0 <CJK> +<U000211CB> /x8e/xa6/xaa/xc1 <CJK> +<U000211CC> /x8e/xa6/xaa/xc2 <CJK> +<U000211C9> /x8e/xa6/xaa/xc3 <CJK> +<U000212B4> /x8e/xa6/xaa/xc4 <CJK> +<U000212AC> /x8e/xa6/xaa/xc5 <CJK> +<U00021288> /x8e/xa6/xaa/xc6 <CJK> +<U00021286> /x8e/xa6/xaa/xc7 <CJK> +<U0002128C> /x8e/xa6/xaa/xc8 <CJK> +<U00021293> /x8e/xa6/xaa/xc9 <CJK> +<U0002128A> /x8e/xa6/xaa/xca <CJK> +<U000212A4> /x8e/xa6/xaa/xcb <CJK> +<U00021287> /x8e/xa6/xaa/xcc <CJK> +<U000212A5> /x8e/xa6/xaa/xcd <CJK> +<U000212A6> /x8e/xa6/xaa/xce <CJK> +<U00021285> /x8e/xa6/xaa/xcf <CJK> +<U000212A3> /x8e/xa6/xaa/xd0 <CJK> +<U0002128E> /x8e/xa6/xaa/xd1 <CJK> +<U0002151F> /x8e/xa6/xaa/xd2 <CJK> +<U00021563> /x8e/xa6/xaa/xd3 <CJK> +<U0002158D> /x8e/xa6/xaa/xd4 <CJK> +<U000215FA> /x8e/xa6/xaa/xd5 <CJK> +<U000215FB> /x8e/xa6/xaa/xd6 <CJK> +<U00021609> /x8e/xa6/xaa/xd7 <CJK> +<U000215FE> /x8e/xa6/xaa/xd8 <CJK> +<U000215FF> /x8e/xa6/xaa/xd9 <CJK> +<U00021602> /x8e/xa6/xaa/xda <CJK> +<U00021604> /x8e/xa6/xaa/xdb <CJK> +<U000215FD> /x8e/xa6/xaa/xdc <CJK> +<U00021605> /x8e/xa6/xaa/xdd <CJK> +<U000216F9> /x8e/xa6/xaa/xde <CJK> +<U000216F7> /x8e/xa6/xaa/xdf <CJK> +<U000216DB> /x8e/xa6/xaa/xe0 <CJK> +<U000216DA> /x8e/xa6/xaa/xe1 <CJK> +<U00021951> /x8e/xa6/xaa/xe2 <CJK> +<U00021950> /x8e/xa6/xaa/xe3 <CJK> +<U00021957> /x8e/xa6/xaa/xe4 <CJK> +<U000219E2> /x8e/xa6/xaa/xe5 <CJK> +<U000219D8> /x8e/xa6/xaa/xe6 <CJK> +<U000219DA> /x8e/xa6/xaa/xe7 <CJK> +<U000219DC> /x8e/xa6/xaa/xe8 <CJK> +<U00021B20> /x8e/xa6/xaa/xe9 <CJK> +<U00021B1F> /x8e/xa6/xaa/xea <CJK> +<U00021B69> /x8e/xa6/xaa/xeb <CJK> +<U00021BDD> /x8e/xa6/xaa/xec <CJK> +<U00021C40> /x8e/xa6/xaa/xed <CJK> +<U00021C41> /x8e/xa6/xaa/xee <CJK> +<U00021C43> /x8e/xa6/xaa/xef <CJK> +<U00021D0D> /x8e/xa6/xaa/xf0 <CJK> +<U00021D0C> /x8e/xa6/xaa/xf1 <CJK> +<U00021D87> /x8e/xa6/xaa/xf2 <CJK> +<U00021DA9> /x8e/xa6/xaa/xf3 <CJK> +<U00021D92> /x8e/xa6/xaa/xf4 <CJK> +<U00021D85> /x8e/xa6/xaa/xf5 <CJK> +<U37BF> /x8e/xa6/xaa/xf6 <CJK> +<U00021D8C> /x8e/xa6/xaa/xf7 <CJK> +<U00021DA2> /x8e/xa6/xaa/xf8 <CJK> +<U00021D8F> /x8e/xa6/xaa/xf9 <CJK> +<U00021D8A> /x8e/xa6/xaa/xfa <CJK> +<U37BA> /x8e/xa6/xaa/xfb <CJK> +<U00021D8D> /x8e/xa6/xaa/xfc <CJK> +<U00021FF1> /x8e/xa6/xaa/xfd <CJK> +<U00022037> /x8e/xa6/xaa/xfe <CJK> +<U0002208B> /x8e/xa6/xab/xa1 <CJK> +<U00022087> /x8e/xa6/xab/xa2 <CJK> +<U00022082> /x8e/xa6/xab/xa3 <CJK> +<U0002218E> /x8e/xa6/xab/xa4 <CJK> +<U000221BC> /x8e/xa6/xab/xa5 <CJK> +<U000221F8> /x8e/xa6/xab/xa6 <CJK> +<U000221FA> /x8e/xa6/xab/xa7 <CJK> +<U000221EB> /x8e/xa6/xab/xa8 <CJK> +<U000221F9> /x8e/xa6/xab/xa9 <CJK> +<U000221FC> /x8e/xa6/xab/xaa <CJK> +<U00022205> /x8e/xa6/xab/xab <CJK> +<U0002231B> /x8e/xa6/xab/xac <CJK> +<U0002231D> /x8e/xa6/xab/xad <CJK> +<U0002231E> /x8e/xa6/xab/xae <CJK> +<U0002233C> /x8e/xa6/xab/xb0 <CJK> +<U0002233E> /x8e/xa6/xab/xb1 <CJK> +<U00022384> /x8e/xa6/xab/xb2 <CJK> +<U000223C8> /x8e/xa6/xab/xb3 <CJK> +<U000223C9> /x8e/xa6/xab/xb4 <CJK> +<U000223D3> /x8e/xa6/xab/xb5 <CJK> +<U000223C7> /x8e/xa6/xab/xb6 <CJK> +<U000223D2> /x8e/xa6/xab/xb7 <CJK> +<U00022455> /x8e/xa6/xab/xb8 <CJK> +<U0002248C> /x8e/xa6/xab/xba <CJK> +<U0002248A> /x8e/xa6/xab/xbb <CJK> +<U000224D5> /x8e/xa6/xab/xbc <CJK> +<U000224D3> /x8e/xa6/xab/xbd <CJK> +<U38D8> /x8e/xa6/xab/xbe <CJK> +<U000224D8> /x8e/xa6/xab/xbf <CJK> +<U000225D0> /x8e/xa6/xab/xc0 <CJK> +<U000225EE> /x8e/xa6/xab/xc1 <CJK> +<U000225F1> /x8e/xa6/xab/xc2 <CJK> +<U000225FB> /x8e/xa6/xab/xc3 <CJK> +<U000225D3> /x8e/xa6/xab/xc4 <CJK> +<U000225EC> /x8e/xa6/xab/xc5 <CJK> +<U000225CD> /x8e/xa6/xab/xc6 <CJK> +<U00022615> /x8e/xa6/xab/xc7 <CJK> +<U00022626> /x8e/xa6/xab/xc8 <CJK> +<U0002260E> /x8e/xa6/xab/xc9 <CJK> +<U00022627> /x8e/xa6/xab/xca <CJK> +<U0002262A> /x8e/xa6/xab/xcb <CJK> +<U00022600> /x8e/xa6/xab/xcc <CJK> +<U00022604> /x8e/xa6/xab/xcd <CJK> +<U00022628> /x8e/xa6/xab/xce <CJK> +<U00022608> /x8e/xa6/xab/xcf <CJK> +<U00022614> /x8e/xa6/xab/xd0 <CJK> +<U0002299B> /x8e/xa6/xab/xd1 <CJK> +<U39B2> /x8e/xa6/xab/xd2 <CJK> +<U000229A1> /x8e/xa6/xab/xd3 <CJK> +<U0002299D> /x8e/xa6/xab/xd4 <CJK> +<U000229A0> /x8e/xa6/xab/xd5 <CJK> +<U0002299E> /x8e/xa6/xab/xd6 <CJK> +<U000229A2> /x8e/xa6/xab/xd7 <CJK> +<U0002299C> /x8e/xa6/xab/xd8 <CJK> +<U00022A32> /x8e/xa6/xab/xd9 <CJK> +<U00022A34> /x8e/xa6/xab/xda <CJK> +<U00022A93> /x8e/xa6/xab/xdb <CJK> +<U00022A96> /x8e/xa6/xab/xdc <CJK> +<U00022A90> /x8e/xa6/xab/xdd <CJK> +<U00022AB4> /x8e/xa6/xab/xde <CJK> +<U00022AB5> /x8e/xa6/xab/xdf <CJK> +<U00022AB6> /x8e/xa6/xab/xe1 <CJK> +<U00022AC2> /x8e/xa6/xab/xe2 <CJK> +<U00022ABA> /x8e/xa6/xab/xe4 <CJK> +<U00022A92> /x8e/xa6/xab/xe5 <CJK> +<U00022EFB> /x8e/xa6/xab/xe6 <CJK> +<U00022F05> /x8e/xa6/xab/xe7 <CJK> +<U00022EF3> /x8e/xa6/xab/xe8 <CJK> +<U00022EFE> /x8e/xa6/xab/xe9 <CJK> +<U00022EFD> /x8e/xa6/xab/xea <CJK> +<U0002455D> /x8e/xa6/xab/xeb <CJK> +<U00022EFA> /x8e/xa6/xab/xec <CJK> +<U00023043> /x8e/xa6/xab/xed <CJK> +<U00023095> /x8e/xa6/xab/xee <CJK> +<U00023094> /x8e/xa6/xab/xef <CJK> +<U3AC4> /x8e/xa6/xab/xf0 <CJK> +<U0002316F> /x8e/xa6/xab/xf1 <CJK> +<U00023173> /x8e/xa6/xab/xf2 <CJK> +<U0002315C> /x8e/xa6/xab/xf3 <CJK> +<U0002315B> /x8e/xa6/xab/xf4 <CJK> +<U00023166> /x8e/xa6/xab/xf5 <CJK> +<U00023174> /x8e/xa6/xab/xf6 <CJK> +<U00023163> /x8e/xa6/xab/xf7 <CJK> +<U00023167> /x8e/xa6/xab/xf8 <CJK> +<U00023160> /x8e/xa6/xab/xf9 <CJK> +<U00023162> /x8e/xa6/xab/xfa <CJK> +<U00023171> /x8e/xa6/xab/xfb <CJK> +<U00023172> /x8e/xa6/xab/xfc <CJK> +<U0002315E> /x8e/xa6/xab/xfd <CJK> +<U00023323> /x8e/xa6/xab/xfe <CJK> +<U00023326> /x8e/xa6/xac/xa1 <CJK> +<U00023364> /x8e/xa6/xac/xa2 <CJK> +<U000233F2> /x8e/xa6/xac/xa4 <CJK> +<U00023401> /x8e/xa6/xac/xa5 <CJK> +<U000233DD> /x8e/xa6/xac/xa6 <CJK> +<U000233DC> /x8e/xa6/xac/xa7 <CJK> +<U000233DB> /x8e/xa6/xac/xa8 <CJK> +<U000233F3> /x8e/xa6/xac/xa9 <CJK> +<U000233FD> /x8e/xa6/xac/xaa <CJK> +<U000233D8> /x8e/xa6/xac/xab <CJK> +<U000233F8> /x8e/xa6/xac/xac <CJK> +<U000233FB> /x8e/xa6/xac/xad <CJK> +<U00023883> /x8e/xa6/xac/xae <CJK> +<U0002388C> /x8e/xa6/xac/xaf <CJK> +<U0002388E> /x8e/xa6/xac/xb0 <CJK> +<U00023949> /x8e/xa6/xac/xb1 <CJK> +<U00023954> /x8e/xa6/xac/xb2 <CJK> +<U00023952> /x8e/xa6/xac/xb3 <CJK> +<U0002394E> /x8e/xa6/xac/xb4 <CJK> +<U00023958> /x8e/xa6/xac/xb5 <CJK> +<U00023951> /x8e/xa6/xac/xb6 <CJK> +<U00023955> /x8e/xa6/xac/xb7 <CJK> +<U00023953> /x8e/xa6/xac/xb8 <CJK> +<U00023957> /x8e/xa6/xac/xb9 <CJK> +<U00023950> /x8e/xa6/xac/xba <CJK> +<U0002394F> /x8e/xa6/xac/xbb <CJK> +<U0002394D> /x8e/xa6/xac/xbc <CJK> +<U000239D2> /x8e/xa6/xac/xbd <CJK> +<U000239D3> /x8e/xa6/xac/xbe <CJK> +<U000239C9> /x8e/xa6/xac/xbf <CJK> +<U000239D4> /x8e/xa6/xac/xc0 <CJK> +<U00023AEF> /x8e/xa6/xac/xc1 <CJK> +<U000200B1> /x8e/xa6/xac/xc3 <CJK> +<U00023B05> /x8e/xa6/xac/xc4 <CJK> +<U00023B04> /x8e/xa6/xac/xc5 <CJK> +<U00023B2E> /x8e/xa6/xac/xc6 <CJK> +<U00023B2D> /x8e/xa6/xac/xc7 <CJK> +<U00023C45> /x8e/xa6/xac/xc8 <CJK> +<U00023C5B> /x8e/xa6/xac/xc9 <CJK> +<U00023C5A> /x8e/xa6/xac/xca <CJK> +<U00023C59> /x8e/xa6/xac/xcb <CJK> +<U00023C9D> /x8e/xa6/xac/xcc <CJK> +<U00023C8E> /x8e/xa6/xac/xcd <CJK> +<U00023CBC> /x8e/xa6/xac/xce <CJK> +<U00023CDD> /x8e/xa6/xac/xcf <CJK> +<U00023CBA> /x8e/xa6/xac/xd0 <CJK> +<U00023CD8> /x8e/xa6/xac/xd2 <CJK> +<U00023CCB> /x8e/xa6/xac/xd3 <CJK> +<U00023CD9> /x8e/xa6/xac/xd4 <CJK> +<U00023CDA> /x8e/xa6/xac/xd5 <CJK> +<U00023CC4> /x8e/xa6/xac/xd6 <CJK> +<U00023CB8> /x8e/xa6/xac/xd7 <CJK> +<U00023CBF> /x8e/xa6/xac/xd8 <CJK> +<U00023CDB> /x8e/xa6/xac/xd9 <CJK> +<U00023CC1> /x8e/xa6/xac/xda <CJK> +<U00023CC5> /x8e/xa6/xac/xdc <CJK> +<U000241B1> /x8e/xa6/xac/xde <CJK> +<U000241AF> /x8e/xa6/xac/xdf <CJK> +<U000244F7> /x8e/xa6/xac/xe1 <CJK> +<U000244F6> /x8e/xa6/xac/xe2 <CJK> +<U000244F8> /x8e/xa6/xac/xe3 <CJK> +<U00024550> /x8e/xa6/xac/xe4 <CJK> +<U00024551> /x8e/xa6/xac/xe5 <CJK> +<U00024571> /x8e/xa6/xac/xe6 <CJK> +<U00024570> /x8e/xa6/xac/xe7 <CJK> +<U000245B0> /x8e/xa6/xac/xe8 <CJK> +<U000245AF> /x8e/xa6/xac/xe9 <CJK> +<U000245AE> /x8e/xa6/xac/xea <CJK> +<U000245AD> /x8e/xa6/xac/xeb <CJK> +<U00024625> /x8e/xa6/xac/xec <CJK> +<U0002462C> /x8e/xa6/xac/xed <CJK> +<U00024622> /x8e/xa6/xac/xee <CJK> +<U00024633> /x8e/xa6/xac/xef <CJK> +<U00024634> /x8e/xa6/xac/xf0 <CJK> +<U3E2B> /x8e/xa6/xac/xf1 <CJK> +<U0002473A> /x8e/xa6/xac/xf2 <CJK> +<U00024740> /x8e/xa6/xac/xf3 <CJK> +<U00024768> /x8e/xa6/xac/xf4 <CJK> +<U3E61> /x8e/xa6/xac/xf5 <CJK> +<U00024764> /x8e/xa6/xac/xf6 <CJK> +<U0002475C> /x8e/xa6/xac/xf7 <CJK> +<U00024757> /x8e/xa6/xac/xf8 <CJK> +<U00024753> /x8e/xa6/xac/xf9 <CJK> +<U0002474F> /x8e/xa6/xac/xfa <CJK> +<U00024751> /x8e/xa6/xac/xfb <CJK> +<U00024754> /x8e/xa6/xac/xfc <CJK> +<U00024766> /x8e/xa6/xac/xfd <CJK> +<U72DD> /x8e/xa6/xac/xfe <CJK> +<U3EB2> /x8e/xa6/xad/xa1 <CJK> +<U0002490D> /x8e/xa6/xad/xa2 <CJK> +<U00024908> /x8e/xa6/xad/xa3 <CJK> +<U000248FA> /x8e/xa6/xad/xa5 <CJK> +<U00024AEA> /x8e/xa6/xad/xa6 <CJK> +<U00024B2A> /x8e/xa6/xad/xa7 <CJK> +<U00024BBB> /x8e/xa6/xad/xa8 <CJK> +<U00024BD5> /x8e/xa6/xad/xa9 <CJK> +<U00024BD7> /x8e/xa6/xad/xaa <CJK> +<U00021DA4> /x8e/xa6/xad/xab <CJK> +<U000200F0> /x8e/xa6/xad/xac <CJK> +<U000200B5> /x8e/xa6/xad/xad <CJK> +<U00024C06> /x8e/xa6/xad/xae <CJK> +<U00024C28> /x8e/xa6/xad/xaf <CJK> +<U00024C22> /x8e/xa6/xad/xb0 <CJK> +<U00024C21> /x8e/xa6/xad/xb1 <CJK> +<U00022456> /x8e/xa6/xad/xb2 <CJK> +<U00024C23> /x8e/xa6/xad/xb3 <CJK> +<U000211CD> /x8e/xa6/xad/xb4 <CJK> +<U00024D30> /x8e/xa6/xad/xb5 <CJK> +<U00024D34> /x8e/xa6/xad/xb6 <CJK> +<U00024FC9> /x8e/xa6/xad/xb7 <CJK> +<U00024FCA> /x8e/xa6/xad/xb8 <CJK> +<U00024FC8> /x8e/xa6/xad/xb9 <CJK> +<U00025044> /x8e/xa6/xad/xbb <CJK> +<U000250F3> /x8e/xa6/xad/xbc <CJK> +<U000250F8> /x8e/xa6/xad/xbe <CJK> +<U000250FC> /x8e/xa6/xad/xbf <CJK> +<U000250F6> /x8e/xa6/xad/xc0 <CJK> +<U000250FB> /x8e/xa6/xad/xc1 <CJK> +<U000250F7> /x8e/xa6/xad/xc2 <CJK> +<U00025100> /x8e/xa6/xad/xc3 <CJK> +<U00025102> /x8e/xa6/xad/xc4 <CJK> +<U00025424> /x8e/xa6/xad/xc7 <CJK> +<U0002560D> /x8e/xa6/xad/xc8 <CJK> +<U4129> /x8e/xa6/xad/xc9 <CJK> +<U00025762> /x8e/xa6/xad/xca <CJK> +<U00025930> /x8e/xa6/xad/xcb <CJK> +<U0002592B> /x8e/xa6/xad/xcc <CJK> +<U0002592A> /x8e/xa6/xad/xcd <CJK> +<U4192> /x8e/xa6/xad/xce <CJK> +<U0002592D> /x8e/xa6/xad/xcf <CJK> +<U00025ADA> /x8e/xa6/xad/xd0 <CJK> +<U00025E28> /x8e/xa6/xad/xd1 <CJK> +<U00025F86> /x8e/xa6/xad/xd2 <CJK> +<U00026277> /x8e/xa6/xad/xd3 <CJK> +<U0002627C> /x8e/xa6/xad/xd4 <CJK> +<U00026350> /x8e/xa6/xad/xd5 <CJK> +<U0002634E> /x8e/xa6/xad/xd6 <CJK> +<U000263F2> /x8e/xa6/xad/xd7 <CJK> +<U000264B2> /x8e/xa6/xad/xd8 <CJK> +<U000264CE> /x8e/xa6/xad/xd9 <CJK> +<U000264CF> /x8e/xa6/xad/xda <CJK> +<U000264E5> /x8e/xa6/xad/xdb <CJK> +<U00023407> /x8e/xa6/xad/xdc <CJK> +<U00026535> /x8e/xa6/xad/xdd <CJK> +<U00026531> /x8e/xa6/xad/xde <CJK> +<U00026613> /x8e/xa6/xad/xdf <CJK> +<U0002662B> /x8e/xa6/xad/xe0 <CJK> +<U0002662C> /x8e/xa6/xad/xe1 <CJK> +<U00026645> /x8e/xa6/xad/xe2 <CJK> +<U00026660> /x8e/xa6/xad/xe3 <CJK> +<U00026641> /x8e/xa6/xad/xe4 <CJK> +<U00026658> /x8e/xa6/xad/xe5 <CJK> +<U00026647> /x8e/xa6/xad/xe6 <CJK> +<U0002665B> /x8e/xa6/xad/xe7 <CJK> +<U00026650> /x8e/xa6/xad/xe8 <CJK> +<U0002665F> /x8e/xa6/xad/xea <CJK> +<U0002664A> /x8e/xa6/xad/xeb <CJK> +<U00026656> /x8e/xa6/xad/xec <CJK> +<U00026643> /x8e/xa6/xad/xed <CJK> +<U00026644> /x8e/xa6/xad/xee <CJK> +<U00026651> /x8e/xa6/xad/xef <CJK> +<U000268FD> /x8e/xa6/xad/xf0 <CJK> +<U00026934> /x8e/xa6/xad/xf1 <CJK> +<U00026935> /x8e/xa6/xad/xf2 <CJK> +<U00026954> /x8e/xa6/xad/xf3 <CJK> +<U00026955> /x8e/xa6/xad/xf4 <CJK> +<U00026A0C> /x8e/xa6/xad/xf5 <CJK> +<U00026A0B> /x8e/xa6/xad/xf6 <CJK> +<U00026A0A> /x8e/xa6/xad/xf7 <CJK> +<U00026AF9> /x8e/xa6/xad/xf8 <CJK> +<U00026B35> /x8e/xa6/xad/xf9 <CJK> +<U00026B24> /x8e/xa6/xad/xfa <CJK> +<U00026B13> /x8e/xa6/xad/xfb <CJK> +<U00026B1C> /x8e/xa6/xad/xfc <CJK> +<U00026B69> /x8e/xa6/xad/xfd <CJK> +<U00026B25> /x8e/xa6/xad/xfe <CJK> +<U00026B21> /x8e/xa6/xae/xa1 <CJK> +<U00027220> /x8e/xa6/xae/xa5 <CJK> +<U000275A9> /x8e/xa6/xae/xa6 <CJK> +<U000275A8> /x8e/xa6/xae/xa7 <CJK> +<U000275DE> /x8e/xa6/xae/xa8 <CJK> +<U00027609> /x8e/xa6/xae/xa9 <CJK> +<U0002760A> /x8e/xa6/xae/xaa <CJK> +<U0002760B> /x8e/xa6/xae/xab <CJK> +<U000277E3> /x8e/xa6/xae/xac <CJK> +<U00027807> /x8e/xa6/xae/xad <CJK> +<U000278B2> /x8e/xa6/xae/xae <CJK> +<U000278B3> /x8e/xa6/xae/xaf <CJK> +<U0002795D> /x8e/xa6/xae/xb0 <CJK> +<U00027E58> /x8e/xa6/xae/xb1 <CJK> +<U00027E86> /x8e/xa6/xae/xb2 <CJK> +<U00027E87> /x8e/xa6/xae/xb3 <CJK> +<U00027FB9> /x8e/xa6/xae/xb4 <CJK> +<U00027FB8> /x8e/xa6/xae/xb5 <CJK> +<U0002840C> /x8e/xa6/xae/xb6 <CJK> +<U00028444> /x8e/xa6/xae/xb7 <CJK> +<U00028466> /x8e/xa6/xae/xb8 <CJK> +<U00028480> /x8e/xa6/xae/xb9 <CJK> +<U00028475> /x8e/xa6/xae/xba <CJK> +<U0002846D> /x8e/xa6/xae/xbb <CJK> +<U0002847E> /x8e/xa6/xae/xbc <CJK> +<U00028467> /x8e/xa6/xae/xbd <CJK> +<U00028481> /x8e/xa6/xae/xbe <CJK> +<U00028477> /x8e/xa6/xae/xbf <CJK> +<U000286A8> /x8e/xa6/xae/xc0 <CJK> +<U000286A2> /x8e/xa6/xae/xc1 <CJK> +<U000286A5> /x8e/xa6/xae/xc2 <CJK> +<U0002869B> /x8e/xa6/xae/xc3 <CJK> +<U00028C57> /x8e/xa6/xae/xc4 <CJK> +<U00028E0F> /x8e/xa6/xae/xc5 <CJK> +<U00028E32> /x8e/xa6/xae/xc6 <CJK> +<U00028E2C> /x8e/xa6/xae/xc7 <CJK> +<U00028E33> /x8e/xa6/xae/xc8 <CJK> +<U000291E7> /x8e/xa6/xae/xc9 <CJK> +<U0002006E> /x8e/xa6/xae/xca <CJK> +<U000200B7> /x8e/xa6/xae/xcb <CJK> +<U000200F6> /x8e/xa6/xae/xcc <CJK> +<U000200F2> /x8e/xa6/xae/xcd <CJK> +<U000200F3> /x8e/xa6/xae/xce <CJK> +<U00020517> /x8e/xa6/xae/xcf <CJK> +<U00020130> /x8e/xa6/xae/xd0 <CJK> +<U00020154> /x8e/xa6/xae/xd1 <CJK> +<U00020153> /x8e/xa6/xae/xd2 <CJK> +<U00020252> /x8e/xa6/xae/xd3 <CJK> +<U0002023D> /x8e/xa6/xae/xd4 <CJK> +<U0002023C> /x8e/xa6/xae/xd5 <CJK> +<U00020234> /x8e/xa6/xae/xd6 <CJK> +<U00020233> /x8e/xa6/xae/xd7 <CJK> +<U00020254> /x8e/xa6/xae/xd8 <CJK> +<U0002022F> /x8e/xa6/xae/xd9 <CJK> +<U3458> /x8e/xa6/xae/xda <CJK> +<U00020255> /x8e/xa6/xae/xdb <CJK> +<U0002023F> /x8e/xa6/xae/xdc <CJK> +<U00020237> /x8e/xa6/xae/xdd <CJK> +<U00020256> /x8e/xa6/xae/xde <CJK> +<U00020261> /x8e/xa6/xae/xdf <CJK> +<U00020258> /x8e/xa6/xae/xe0 <CJK> +<U0002023B> /x8e/xa6/xae/xe2 <CJK> +<U00020232> /x8e/xa6/xae/xe3 <CJK> +<U0002022E> /x8e/xa6/xae/xe4 <CJK> +<U0002023E> /x8e/xa6/xae/xe5 <CJK> +<U0002003B> /x8e/xa6/xae/xe6 <CJK> +<U0002048C> /x8e/xa6/xae/xe7 <CJK> +<U0002048D> /x8e/xa6/xae/xe8 <CJK> +<U00020513> /x8e/xa6/xae/xe9 <CJK> +<U00020516> /x8e/xa6/xae/xea <CJK> +<U00020512> /x8e/xa6/xae/xeb <CJK> +<U0002055B> /x8e/xa6/xae/xec <CJK> +<U0002058A> /x8e/xa6/xae/xed <CJK> +<U000205D7> /x8e/xa6/xae/xee <CJK> +<U000205CE> /x8e/xa6/xae/xef <CJK> +<U00020650> /x8e/xa6/xae/xf0 <CJK> +<U00020651> /x8e/xa6/xae/xf1 <CJK> +<U0002064F> /x8e/xa6/xae/xf2 <CJK> +<U0002068E> /x8e/xa6/xae/xf3 <CJK> +<U0002068F> /x8e/xa6/xae/xf4 <CJK> +<U000206F2> /x8e/xa6/xae/xf5 <CJK> +<U00020728> /x8e/xa6/xae/xf7 <CJK> +<U0002071A> /x8e/xa6/xae/xf8 <CJK> +<U00020725> /x8e/xa6/xae/xf9 <CJK> +<U0002071D> /x8e/xa6/xae/xfa <CJK> +<U00020714> /x8e/xa6/xae/xfb <CJK> +<U00020720> /x8e/xa6/xae/xfc <CJK> +<U0002071F> /x8e/xa6/xae/xfd <CJK> +<U0002071B> /x8e/xa6/xae/xfe <CJK> +<U00020717> /x8e/xa6/xaf/xa1 <CJK> +<U00020715> /x8e/xa6/xaf/xa2 <CJK> +<U0002071C> /x8e/xa6/xaf/xa3 <CJK> +<U00020713> /x8e/xa6/xaf/xa4 <CJK> +<U00020860> /x8e/xa6/xaf/xa6 <CJK> +<U351C> /x8e/xa6/xaf/xa7 <CJK> +<U00020866> /x8e/xa6/xaf/xa8 <CJK> +<U000208E3> /x8e/xa6/xaf/xa9 <CJK> +<U000208DE> /x8e/xa6/xaf/xaa <CJK> +<U000208E0> /x8e/xa6/xaf/xab <CJK> +<U000208E1> /x8e/xa6/xaf/xac <CJK> +<U0002091A> /x8e/xa6/xaf/xad <CJK> +<U0002091B> /x8e/xa6/xaf/xae <CJK> +<U00020918> /x8e/xa6/xaf/xaf <CJK> +<U0002091C> /x8e/xa6/xaf/xb0 <CJK> +<U00020919> /x8e/xa6/xaf/xb1 <CJK> +<U00020942> /x8e/xa6/xaf/xb2 <CJK> +<U00020940> /x8e/xa6/xaf/xb3 <CJK> +<U0002093E> /x8e/xa6/xaf/xb4 <CJK> +<U00020944> /x8e/xa6/xaf/xb5 <CJK> +<U00020974> /x8e/xa6/xaf/xb6 <CJK> +<U00020943> /x8e/xa6/xaf/xb7 <CJK> +<U000209F2> /x8e/xa6/xaf/xb9 <CJK> +<U00020A1B> /x8e/xa6/xaf/xba <CJK> +<U00020A19> /x8e/xa6/xaf/xbb <CJK> +<U00020A1E> /x8e/xa6/xaf/xbc <CJK> +<U00020A5E> /x8e/xa6/xaf/xbe <CJK> +<U00020A66> /x8e/xa6/xaf/xbf <CJK> +<U00020A5D> /x8e/xa6/xaf/xc0 <CJK> +<U00020A5A> /x8e/xa6/xaf/xc1 <CJK> +<U00020A5F> /x8e/xa6/xaf/xc2 <CJK> +<U00020A60> /x8e/xa6/xaf/xc3 <CJK> +<U00020A5B> /x8e/xa6/xaf/xc4 <CJK> +<U00020A5C> /x8e/xa6/xaf/xc5 <CJK> +<U00020A59> /x8e/xa6/xaf/xc6 <CJK> +<U00020AF0> /x8e/xa6/xaf/xc7 <CJK> +<U00020AF1> /x8e/xa6/xaf/xc8 <CJK> +<U00020B43> /x8e/xa6/xaf/xc9 <CJK> +<U00020B40> /x8e/xa6/xaf/xca <CJK> +<U00020B42> /x8e/xa6/xaf/xcb <CJK> +<U00020B41> /x8e/xa6/xaf/xcc <CJK> +<U00020B3F> /x8e/xa6/xaf/xcd <CJK> +<U00020C57> /x8e/xa6/xaf/xce <CJK> +<U00020C69> /x8e/xa6/xaf/xcf <CJK> +<U00020C6F> /x8e/xa6/xaf/xd0 <CJK> +<U00020CAB> /x8e/xa6/xaf/xd1 <CJK> +<U00020C71> /x8e/xa6/xaf/xd2 <CJK> +<U00020C93> /x8e/xa6/xaf/xd3 <CJK> +<U00020C56> /x8e/xa6/xaf/xd4 <CJK> +<U00020C90> /x8e/xa6/xaf/xd5 <CJK> +<U00020C6D> /x8e/xa6/xaf/xd6 <CJK> +<U00020C6C> /x8e/xa6/xaf/xd7 <CJK> +<U00020C70> /x8e/xa6/xaf/xd8 <CJK> +<U00020C66> /x8e/xa6/xaf/xd9 <CJK> +<U00020C67> /x8e/xa6/xaf/xda <CJK> +<U000211D7> /x8e/xa6/xaf/xdb <CJK> +<U000211B5> /x8e/xa6/xaf/xdc <CJK> +<U000211DB> /x8e/xa6/xaf/xdd <CJK> +<U000211D8> /x8e/xa6/xaf/xde <CJK> +<U000211D5> /x8e/xa6/xaf/xdf <CJK> +<U000211D4> /x8e/xa6/xaf/xe0 <CJK> +<U000212BA> /x8e/xa6/xaf/xe1 <CJK> +<U000212B7> /x8e/xa6/xaf/xe2 <CJK> +<U000212BE> /x8e/xa6/xaf/xe3 <CJK> +<U000212B9> /x8e/xa6/xaf/xe4 <CJK> +<U3637> /x8e/xa6/xaf/xe5 <CJK> +<U000212E0> /x8e/xa6/xaf/xe6 <CJK> +<U000212DD> /x8e/xa6/xaf/xe7 <CJK> +<U000212DE> /x8e/xa6/xaf/xe8 <CJK> +<U00024918> /x8e/xa6/xaf/xe9 <CJK> +<U000212D8> /x8e/xa6/xaf/xea <CJK> +<U000212BD> /x8e/xa6/xaf/xeb <CJK> +<U000212DB> /x8e/xa6/xaf/xec <CJK> +<U0002151D> /x8e/xa6/xaf/xed <CJK> +<U00021525> /x8e/xa6/xaf/xee <CJK> +<U00021721> /x8e/xa6/xaf/xef <CJK> +<U0002170C> /x8e/xa6/xaf/xf0 <CJK> +<U00021729> /x8e/xa6/xaf/xf1 <CJK> +<U0002172D> /x8e/xa6/xaf/xf2 <CJK> +<U0002171B> /x8e/xa6/xaf/xf3 <CJK> +<U0002170E> /x8e/xa6/xaf/xf4 <CJK> +<U0002171F> /x8e/xa6/xaf/xf5 <CJK> +<U00021704> /x8e/xa6/xaf/xf6 <CJK> +<U0002171C> /x8e/xa6/xaf/xf7 <CJK> +<U00021705> /x8e/xa6/xaf/xf8 <CJK> +<U00021706> /x8e/xa6/xaf/xf9 <CJK> +<U00021720> /x8e/xa6/xaf/xfa <CJK> +<U0002170D> /x8e/xa6/xaf/xfb <CJK> +<U0002172A> /x8e/xa6/xaf/xfc <CJK> +<U00021723> /x8e/xa6/xaf/xfd <CJK> +<U00021711> /x8e/xa6/xaf/xfe <CJK> +<U0002195C> /x8e/xa6/xb0/xa1 <CJK> +<U00021966> /x8e/xa6/xb0/xa2 <CJK> +<U0002195B> /x8e/xa6/xb0/xa3 <CJK> +<U0002194F> /x8e/xa6/xb0/xa4 <CJK> +<U0002195E> /x8e/xa6/xb0/xa5 <CJK> +<U0002195D> /x8e/xa6/xb0/xa6 <CJK> +<U000219F1> /x8e/xa6/xb0/xa7 <CJK> +<U000219EA> /x8e/xa6/xb0/xa8 <CJK> +<U000219F4> /x8e/xa6/xb0/xa9 <CJK> +<U000219EB> /x8e/xa6/xb0/xaa <CJK> +<U000219F0> /x8e/xa6/xb0/xab <CJK> +<U000219FA> /x8e/xa6/xb0/xac <CJK> +<U000219FB> /x8e/xa6/xb0/xad <CJK> +<U00021B28> /x8e/xa6/xb0/xae <CJK> +<U00021B2C> /x8e/xa6/xb0/xaf <CJK> +<U00021B6B> /x8e/xa6/xb0/xb0 <CJK> +<U00021B2A> /x8e/xa6/xb0/xb1 <CJK> +<U00021B6A> /x8e/xa6/xb0/xb2 <CJK> +<U00021B6F> /x8e/xa6/xb0/xb3 <CJK> +<U00021BDB> /x8e/xa6/xb0/xb4 <CJK> +<U00021BE0> /x8e/xa6/xb0/xb5 <CJK> +<U00024FD1> /x8e/xa6/xb0/xb6 <CJK> +<U00021BE3> /x8e/xa6/xb0/xb7 <CJK> +<U00021BE5> /x8e/xa6/xb0/xb8 <CJK> +<U00021BE7> /x8e/xa6/xb0/xb9 <CJK> +<U00021C4D> /x8e/xa6/xb0/xba <CJK> +<U00021C55> /x8e/xa6/xb0/xbb <CJK> +<U00021C54> /x8e/xa6/xb0/xbc <CJK> +<U00021C53> /x8e/xa6/xb0/xbd <CJK> +<U00021C52> /x8e/xa6/xb0/xbe <CJK> +<U00021C4E> /x8e/xa6/xb0/xbf <CJK> +<U00021C60> /x8e/xa6/xb0/xc0 <CJK> +<U000221C0> /x8e/xa6/xb0/xc1 <CJK> +<U00021D0F> /x8e/xa6/xb0/xc2 <CJK> +<U00021D11> /x8e/xa6/xb0/xc3 <CJK> +<U00021D13> /x8e/xa6/xb0/xc4 <CJK> +<U00021DC6> /x8e/xa6/xb0/xc5 <CJK> +<U00021DB3> /x8e/xa6/xb0/xc6 <CJK> +<U00021DC7> /x8e/xa6/xb0/xc7 <CJK> +<U00021DD2> /x8e/xa6/xb0/xc8 <CJK> +<U00021DB8> /x8e/xa6/xb0/xc9 <CJK> +<U00021DAC> /x8e/xa6/xb0/xca <CJK> +<U00021DAE> /x8e/xa6/xb0/xcb <CJK> +<U00021DCF> /x8e/xa6/xb0/xcc <CJK> +<U00021DC5> /x8e/xa6/xb0/xcd <CJK> +<U00021DCC> /x8e/xa6/xb0/xcf <CJK> +<U00021DAB> /x8e/xa6/xb0/xd0 <CJK> +<U00021DC9> /x8e/xa6/xb0/xd1 <CJK> +<U00021DB9> /x8e/xa6/xb0/xd2 <CJK> +<U00021FFB> /x8e/xa6/xb0/xd3 <CJK> +<U00021FF8> /x8e/xa6/xb0/xd4 <CJK> +<U00021FF7> /x8e/xa6/xb0/xd5 <CJK> +<U00021FF9> /x8e/xa6/xb0/xd6 <CJK> +<U00022020> /x8e/xa6/xb0/xd7 <CJK> +<U0002203B> /x8e/xa6/xb0/xd8 <CJK> +<U00022039> /x8e/xa6/xb0/xd9 <CJK> +<U0002209E> /x8e/xa6/xb0/xda <CJK> +<U0002209A> /x8e/xa6/xb0/xdb <CJK> +<U000220AA> /x8e/xa6/xb0/xdc <CJK> +<U000220AB> /x8e/xa6/xb0/xdd <CJK> +<U000220AF> /x8e/xa6/xb0/xde <CJK> +<U00022096> /x8e/xa6/xb0/xdf <CJK> +<U000220A9> /x8e/xa6/xb0/xe0 <CJK> +<U000220A6> /x8e/xa6/xb0/xe1 <CJK> +<U00022091> /x8e/xa6/xb0/xe2 <CJK> +<U3843> /x8e/xa6/xb0/xe3 <CJK> +<U000220AE> /x8e/xa6/xb0/xe4 <CJK> +<U0002209F> /x8e/xa6/xb0/xe5 <CJK> +<U000220AC> /x8e/xa6/xb0/xe6 <CJK> +<U000220A0> /x8e/xa6/xb0/xe7 <CJK> +<U00022192> /x8e/xa6/xb0/xe8 <CJK> +<U00022191> /x8e/xa6/xb0/xe9 <CJK> +<U000221BF> /x8e/xa6/xb0/xea <CJK> +<U00022217> /x8e/xa6/xb0/xeb <CJK> +<U0002220A> /x8e/xa6/xb0/xec <CJK> +<U0002220C> /x8e/xa6/xb0/xed <CJK> +<U0002234A> /x8e/xa6/xb0/xee <CJK> +<U00022346> /x8e/xa6/xb0/xef <CJK> +<U00022334> /x8e/xa6/xb0/xf0 <CJK> +<U00022345> /x8e/xa6/xb0/xf1 <CJK> +<U00022343> /x8e/xa6/xb0/xf2 <CJK> +<U00022344> /x8e/xa6/xb0/xf3 <CJK> +<U00022387> /x8e/xa6/xb0/xf5 <CJK> +<U00022386> /x8e/xa6/xb0/xf6 <CJK> +<U0002238A> /x8e/xa6/xb0/xf7 <CJK> +<U000223DA> /x8e/xa6/xb0/xf8 <CJK> +<U000223D8> /x8e/xa6/xb0/xf9 <CJK> +<U38B4> /x8e/xa6/xb0/xfa <CJK> +<U00020518> /x8e/xa6/xb0/xfb <CJK> +<U00020134> /x8e/xa6/xb0/xfc <CJK> +<U000223D6> /x8e/xa6/xb0/xfd <CJK> +<U000223D4> /x8e/xa6/xb0/xfe <CJK> +<U00022454> /x8e/xa6/xb1/xa1 <CJK> +<U00022459> /x8e/xa6/xb1/xa2 <CJK> +<U0002245A> /x8e/xa6/xb1/xa3 <CJK> +<U00022457> /x8e/xa6/xb1/xa4 <CJK> +<U38E0> /x8e/xa6/xb1/xa5 <CJK> +<U000224DD> /x8e/xa6/xb1/xa6 <CJK> +<U000224E9> /x8e/xa6/xb1/xa7 <CJK> +<U000224E0> /x8e/xa6/xb1/xa8 <CJK> +<U00022605> /x8e/xa6/xb1/xa9 <CJK> +<U00022612> /x8e/xa6/xb1/xaa <CJK> +<U00022613> /x8e/xa6/xb1/xab <CJK> +<U00022607> /x8e/xa6/xb1/xac <CJK> +<U00022616> /x8e/xa6/xb1/xad <CJK> +<U00022623> /x8e/xa6/xb1/xae <CJK> +<U00022602> /x8e/xa6/xb1/xaf <CJK> +<U0002264A> /x8e/xa6/xb1/xb1 <CJK> +<U00022636> /x8e/xa6/xb1/xb2 <CJK> +<U00022640> /x8e/xa6/xb1/xb3 <CJK> +<U00022656> /x8e/xa6/xb1/xb4 <CJK> +<U00022643> /x8e/xa6/xb1/xb5 <CJK> +<U0002264B> /x8e/xa6/xb1/xb7 <CJK> +<U00022646> /x8e/xa6/xb1/xb8 <CJK> +<U0002263E> /x8e/xa6/xb1/xb9 <CJK> +<U00022649> /x8e/xa6/xb1/xba <CJK> +<U000229A7> /x8e/xa6/xb1/xbb <CJK> +<U000229B6> /x8e/xa6/xb1/xbc <CJK> +<U000229A6> /x8e/xa6/xb1/xbd <CJK> +<U000229A8> /x8e/xa6/xb1/xbe <CJK> +<U000229AC> /x8e/xa6/xb1/xbf <CJK> +<U000229A9> /x8e/xa6/xb1/xc0 <CJK> +<U000229AB> /x8e/xa6/xb1/xc1 <CJK> +<U00022A38> /x8e/xa6/xb1/xc2 <CJK> +<U00022A37> /x8e/xa6/xb1/xc3 <CJK> +<U00022A39> /x8e/xa6/xb1/xc4 <CJK> +<U00022A41> /x8e/xa6/xb1/xc5 <CJK> +<U00022A3E> /x8e/xa6/xb1/xc6 <CJK> +<U00022AC0> /x8e/xa6/xb1/xc7 <CJK> +<U00022ABB> /x8e/xa6/xb1/xc8 <CJK> +<U00022ABF> /x8e/xa6/xb1/xc9 <CJK> +<U00022ABD> /x8e/xa6/xb1/xca <CJK> +<U00022AFE> /x8e/xa6/xb1/xcb <CJK> +<U00022B1E> /x8e/xa6/xb1/xcc <CJK> +<U00022AEE> /x8e/xa6/xb1/xcd <CJK> +<U00022AFC> /x8e/xa6/xb1/xce <CJK> +<U00022AF9> /x8e/xa6/xb1/xd0 <CJK> +<U00022B06> /x8e/xa6/xb1/xd1 <CJK> +<U00022AE4> /x8e/xa6/xb1/xd2 <CJK> +<U00022AE9> /x8e/xa6/xb1/xd3 <CJK> +<U00022AE5> /x8e/xa6/xb1/xd4 <CJK> +<U00022B03> /x8e/xa6/xb1/xd5 <CJK> +<U00022AFD> /x8e/xa6/xb1/xd6 <CJK> +<U00022B49> /x8e/xa6/xb1/xd7 <CJK> +<U00022EBE> /x8e/xa6/xb1/xd8 <CJK> +<U00022F0A> /x8e/xa6/xb1/xd9 <CJK> +<U00025626> /x8e/xa6/xb1/xda <CJK> +<U00022F18> /x8e/xa6/xb1/xdb <CJK> +<U00022F0D> /x8e/xa6/xb1/xdc <CJK> +<U00022F0F> /x8e/xa6/xb1/xdd <CJK> +<U00022F0E> /x8e/xa6/xb1/xde <CJK> +<U00022F20> /x8e/xa6/xb1/xdf <CJK> +<U00023071> /x8e/xa6/xb1/xe0 <CJK> +<U00023099> /x8e/xa6/xb1/xe1 <CJK> +<U000230E2> /x8e/xa6/xb1/xe2 <CJK> +<U000230DF> /x8e/xa6/xb1/xe3 <CJK> +<U000230DE> /x8e/xa6/xb1/xe4 <CJK> +<U00023178> /x8e/xa6/xb1/xe5 <CJK> +<U00023179> /x8e/xa6/xb1/xe6 <CJK> +<U3AE4> /x8e/xa6/xb1/xe7 <CJK> +<U0002317C> /x8e/xa6/xb1/xe8 <CJK> +<U0002317D> /x8e/xa6/xb1/xe9 <CJK> +<U00023184> /x8e/xa6/xb1/xea <CJK> +<U0002318B> /x8e/xa6/xb1/xeb <CJK> +<U0002318A> /x8e/xa6/xb1/xec <CJK> +<U00023189> /x8e/xa6/xb1/xee <CJK> +<U0002332C> /x8e/xa6/xb1/xef <CJK> +<U00023329> /x8e/xa6/xb1/xf0 <CJK> +<U0002336C> /x8e/xa6/xb1/xf1 <CJK> +<U6804> /x8e/xa6/xb1/xf2 <CJK> +<U00023409> /x8e/xa6/xb1/xf3 <CJK> +<U00023408> /x8e/xa6/xb1/xf4 <CJK> +<U0002340C> /x8e/xa6/xb1/xf5 <CJK> +<U0002340D> /x8e/xa6/xb1/xf6 <CJK> +<U00023410> /x8e/xa6/xb1/xf7 <CJK> +<U3C26> /x8e/xa6/xb1/xf8 <CJK> +<U0002389F> /x8e/xa6/xb1/xf9 <CJK> +<U00023898> /x8e/xa6/xb1/xfa <CJK> +<U000238A2> /x8e/xa6/xb1/xfb <CJK> +<U0002389A> /x8e/xa6/xb1/xfc <CJK> +<U000239D5> /x8e/xa6/xb1/xfd <CJK> +<U000239E2> /x8e/xa6/xb1/xfe <CJK> +<U000239F0> /x8e/xa6/xb2/xa1 <CJK> +<U000239EA> /x8e/xa6/xb2/xa2 <CJK> +<U000239EB> /x8e/xa6/xb2/xa3 <CJK> +<U000239ED> /x8e/xa6/xb2/xa4 <CJK> +<U000239E8> /x8e/xa6/xb2/xa5 <CJK> +<U000239E0> /x8e/xa6/xb2/xa6 <CJK> +<U00023A85> /x8e/xa6/xb2/xa7 <CJK> +<U00023A86> /x8e/xa6/xb2/xa8 <CJK> +<U00023AF0> /x8e/xa6/xb2/xa9 <CJK> +<U00021E46> /x8e/xa6/xb2/xaa <CJK> +<U00023B45> /x8e/xa6/xb2/xab <CJK> +<U00023B38> /x8e/xa6/xb2/xac <CJK> +<U00023B3E> /x8e/xa6/xb2/xad <CJK> +<U00023B42> /x8e/xa6/xb2/xae <CJK> +<U00023B40> /x8e/xa6/xb2/xaf <CJK> +<U00023C47> /x8e/xa6/xb2/xb0 <CJK> +<U00023C5C> /x8e/xa6/xb2/xb1 <CJK> +<U00023C5E> /x8e/xa6/xb2/xb2 <CJK> +<U00023CB4> /x8e/xa6/xb2/xb3 <CJK> +<U00023CC2> /x8e/xa6/xb2/xb4 <CJK> +<U00023D14> /x8e/xa6/xb2/xb5 <CJK> +<U00023CE5> /x8e/xa6/xb2/xb6 <CJK> +<U00023D15> /x8e/xa6/xb2/xb7 <CJK> +<U00023D11> /x8e/xa6/xb2/xb8 <CJK> +<U00023CEE> /x8e/xa6/xb2/xba <CJK> +<U00023CE7> /x8e/xa6/xb2/xbb <CJK> +<U00023CF5> /x8e/xa6/xb2/xbc <CJK> +<U00023CF4> /x8e/xa6/xb2/xbd <CJK> +<U00023CE8> /x8e/xa6/xb2/xbe <CJK> +<U00023D01> /x8e/xa6/xb2/xbf <CJK> +<U00023CEF> /x8e/xa6/xb2/xc0 <CJK> +<U00023CF1> /x8e/xa6/xb2/xc1 <CJK> +<U000241DB> /x8e/xa6/xb2/xc3 <CJK> +<U000241BF> /x8e/xa6/xb2/xc4 <CJK> +<U000241DA> /x8e/xa6/xb2/xc5 <CJK> +<U000241C7> /x8e/xa6/xb2/xc6 <CJK> +<U000241DD> /x8e/xa6/xb2/xc7 <CJK> +<U000241EB> /x8e/xa6/xb2/xc9 <CJK> +<U000241E1> /x8e/xa6/xb2/xca <CJK> +<U000241C1> /x8e/xa6/xb2/xcb <CJK> +<U000241BD> /x8e/xa6/xb2/xcc <CJK> +<U00024507> /x8e/xa6/xb2/xcd <CJK> +<U000244FD> /x8e/xa6/xb2/xce <CJK> +<U00024501> /x8e/xa6/xb2/xcf <CJK> +<U0002450A> /x8e/xa6/xb2/xd0 <CJK> +<U00024503> /x8e/xa6/xb2/xd1 <CJK> +<U00024572> /x8e/xa6/xb2/xd2 <CJK> +<U00024574> /x8e/xa6/xb2/xd3 <CJK> +<U00024575> /x8e/xa6/xb2/xd4 <CJK> +<U000245B2> /x8e/xa6/xb2/xd5 <CJK> +<U000245B1> /x8e/xa6/xb2/xd6 <CJK> +<U000245B4> /x8e/xa6/xb2/xd7 <CJK> +<U0002464C> /x8e/xa6/xb2/xd8 <CJK> +<U00024642> /x8e/xa6/xb2/xd9 <CJK> +<U00024640> /x8e/xa6/xb2/xda <CJK> +<U00024649> /x8e/xa6/xb2/xdb <CJK> +<U0002463C> /x8e/xa6/xb2/xdc <CJK> +<U0002464D> /x8e/xa6/xb2/xdd <CJK> +<U0002464A> /x8e/xa6/xb2/xde <CJK> +<U0002463B> /x8e/xa6/xb2/xdf <CJK> +<U00024761> /x8e/xa6/xb2/xe0 <CJK> +<U00024774> /x8e/xa6/xb2/xe1 <CJK> +<U0002477F> /x8e/xa6/xb2/xe3 <CJK> +<U0002477A> /x8e/xa6/xb2/xe4 <CJK> +<U00024788> /x8e/xa6/xb2/xe5 <CJK> +<U0002477C> /x8e/xa6/xb2/xe6 <CJK> +<U3E6F> /x8e/xa6/xb2/xe7 <CJK> +<U00024770> /x8e/xa6/xb2/xe8 <CJK> +<U0002490F> /x8e/xa6/xb2/xe9 <CJK> +<U00024928> /x8e/xa6/xb2/xea <CJK> +<U00024913> /x8e/xa6/xb2/xeb <CJK> +<U0002492A> /x8e/xa6/xb2/xec <CJK> +<U00024AED> /x8e/xa6/xb2/xed <CJK> +<U00024AEF> /x8e/xa6/xb2/xee <CJK> +<U00024B2E> /x8e/xa6/xb2/xef <CJK> +<U00024BC1> /x8e/xa6/xb2/xf0 <CJK> +<U00024BDD> /x8e/xa6/xb2/xf1 <CJK> +<U00020B47> /x8e/xa6/xb2/xf2 <CJK> +<U00024C2D> /x8e/xa6/xb2/xf3 <CJK> +<U00024C2B> /x8e/xa6/xb2/xf4 <CJK> +<U00024C35> /x8e/xa6/xb2/xf5 <CJK> +<U00024C2F> /x8e/xa6/xb2/xf6 <CJK> +<U00024C31> /x8e/xa6/xb2/xf7 <CJK> +<U00024C34> /x8e/xa6/xb2/xf8 <CJK> +<U00024C30> /x8e/xa6/xb2/xfa <CJK> +<U00024D3A> /x8e/xa6/xb2/xfb <CJK> +<U00024D39> /x8e/xa6/xb2/xfc <CJK> +<U00024D37> /x8e/xa6/xb2/xfd <CJK> +<U00024D4B> /x8e/xa6/xb2/xfe <CJK> +<U00024D54> /x8e/xa6/xb3/xa1 <CJK> +<U00024D4D> /x8e/xa6/xb3/xa2 <CJK> +<U00024D51> /x8e/xa6/xb3/xa3 <CJK> +<U00024D47> /x8e/xa6/xb3/xa4 <CJK> +<U00024F27> /x8e/xa6/xb3/xa5 <CJK> +<U00024F50> /x8e/xa6/xb3/xa6 <CJK> +<U00024F4D> /x8e/xa6/xb3/xa7 <CJK> +<U00024F4E> /x8e/xa6/xb3/xa8 <CJK> +<U00024F54> /x8e/xa6/xb3/xa9 <CJK> +<U00024FD2> /x8e/xa6/xb3/xaa <CJK> +<U00024FCE> /x8e/xa6/xb3/xab <CJK> +<U0002504B> /x8e/xa6/xb3/xac <CJK> +<U00025049> /x8e/xa6/xb3/xad <CJK> +<U00025105> /x8e/xa6/xb3/xae <CJK> +<U0002510F> /x8e/xa6/xb3/xaf <CJK> +<U00025119> /x8e/xa6/xb3/xb0 <CJK> +<U00025106> /x8e/xa6/xb3/xb2 <CJK> +<U0002510C> /x8e/xa6/xb3/xb3 <CJK> +<U00025129> /x8e/xa6/xb3/xb4 <CJK> +<U00025104> /x8e/xa6/xb3/xb5 <CJK> +<U00025108> /x8e/xa6/xb3/xb6 <CJK> +<U00025125> /x8e/xa6/xb3/xb7 <CJK> +<U401C> /x8e/xa6/xb3/xb8 <CJK> +<U00025103> /x8e/xa6/xb3/xb9 <CJK> +<U00025127> /x8e/xa6/xb3/xba <CJK> +<U00025110> /x8e/xa6/xb3/xbb <CJK> +<U0002510A> /x8e/xa6/xb3/xbc <CJK> +<U00026B5D> /x8e/xa6/xb3/xbe <CJK> +<U000253AA> /x8e/xa6/xb3/xbf <CJK> +<U000253AB> /x8e/xa6/xb3/xc0 <CJK> +<U000253A9> /x8e/xa6/xb3/xc1 <CJK> +<U00025441> /x8e/xa6/xb3/xc2 <CJK> +<U0002543A> /x8e/xa6/xb3/xc3 <CJK> +<U0002543C> /x8e/xa6/xb3/xc4 <CJK> +<U0002542B> /x8e/xa6/xb3/xc5 <CJK> +<U00025449> /x8e/xa6/xb3/xc6 <CJK> +<U00025615> /x8e/xa6/xb3/xc7 <CJK> +<U4100> /x8e/xa6/xb3/xc8 <CJK> +<U00025616> /x8e/xa6/xb3/xc9 <CJK> +<U00025631> /x8e/xa6/xb3/xcb <CJK> +<U00023C4A> /x8e/xa6/xb3/xcc <CJK> +<U0002573C> /x8e/xa6/xb3/xcd <CJK> +<U0002577C> /x8e/xa6/xb3/xce <CJK> +<U0002576D> /x8e/xa6/xb3/xcf <CJK> +<U0002576A> /x8e/xa6/xb3/xd0 <CJK> +<U00025763> /x8e/xa6/xb3/xd1 <CJK> +<U0002576B> /x8e/xa6/xb3/xd2 <CJK> +<U0002577B> /x8e/xa6/xb3/xd3 <CJK> +<U00025764> /x8e/xa6/xb3/xd4 <CJK> +<U0002577A> /x8e/xa6/xb3/xd5 <CJK> +<U00025769> /x8e/xa6/xb3/xd6 <CJK> +<U0002576F> /x8e/xa6/xb3/xd7 <CJK> +<U00025937> /x8e/xa6/xb3/xd8 <CJK> +<U00025935> /x8e/xa6/xb3/xd9 <CJK> +<U0002593C> /x8e/xa6/xb3/xda <CJK> +<U00025936> /x8e/xa6/xb3/xdb <CJK> +<U0002593D> /x8e/xa6/xb3/xdc <CJK> +<U0002593E> /x8e/xa6/xb3/xdd <CJK> +<U00025AE1> /x8e/xa6/xb3/xde <CJK> +<U00025AE0> /x8e/xa6/xb3/xdf <CJK> +<U00025E2D> /x8e/xa6/xb3/xe0 <CJK> +<U00025E2B> /x8e/xa6/xb3/xe1 <CJK> +<U00025F8D> /x8e/xa6/xb3/xe2 <CJK> +<U00025F92> /x8e/xa6/xb3/xe3 <CJK> +<U42B6> /x8e/xa6/xb3/xe4 <CJK> +<U00025F8E> /x8e/xa6/xb3/xe5 <CJK> +<U00025F91> /x8e/xa6/xb3/xe7 <CJK> +<U00025F96> /x8e/xa6/xb3/xe8 <CJK> +<U0002627B> /x8e/xa6/xb3/xe9 <CJK> +<U00026278> /x8e/xa6/xb3/xea <CJK> +<U00026281> /x8e/xa6/xb3/xeb <CJK> +<U00026296> /x8e/xa6/xb3/xec <CJK> +<U000262A3> /x8e/xa6/xb3/xed <CJK> +<U00026295> /x8e/xa6/xb3/xee <CJK> +<U00026297> /x8e/xa6/xb3/xef <CJK> +<U00026354> /x8e/xa6/xb3/xf0 <CJK> +<U00026352> /x8e/xa6/xb3/xf1 <CJK> +<U000263F5> /x8e/xa6/xb3/xf2 <CJK> +<U00026400> /x8e/xa6/xb3/xf3 <CJK> +<U000263FB> /x8e/xa6/xb3/xf4 <CJK> +<U000263F4> /x8e/xa6/xb3/xf5 <CJK> +<U000263F6> /x8e/xa6/xb3/xf6 <CJK> +<U000264E8> /x8e/xa6/xb3/xf7 <CJK> +<U000264EA> /x8e/xa6/xb3/xf8 <CJK> +<U0002663E> /x8e/xa6/xb3/xf9 <CJK> +<U0002663D> /x8e/xa6/xb3/xfa <CJK> +<U0002663B> /x8e/xa6/xb3/xfb <CJK> +<U00026680> /x8e/xa6/xb3/xfc <CJK> +<U43E4> /x8e/xa6/xb3/xfd <CJK> +<U00026688> /x8e/xa6/xb3/xfe <CJK> +<U00026681> /x8e/xa6/xb4/xa1 <CJK> +<U00026682> /x8e/xa6/xb4/xa2 <CJK> +<U000266CE> /x8e/xa6/xb4/xa3 <CJK> +<U00026683> /x8e/xa6/xb4/xa4 <CJK> +<U00026677> /x8e/xa6/xb4/xa5 <CJK> +<U00026679> /x8e/xa6/xb4/xa6 <CJK> +<U00026673> /x8e/xa6/xb4/xa7 <CJK> +<U0002666D> /x8e/xa6/xb4/xa8 <CJK> +<U00026670> /x8e/xa6/xb4/xa9 <CJK> +<U0002668D> /x8e/xa6/xb4/xaa <CJK> +<U00026675> /x8e/xa6/xb4/xab <CJK> +<U0002668C> /x8e/xa6/xb4/xac <CJK> +<U0002666A> /x8e/xa6/xb4/xad <CJK> +<U00026691> /x8e/xa6/xb4/xae <CJK> +<U00026689> /x8e/xa6/xb4/xaf <CJK> +<U0002668E> /x8e/xa6/xb4/xb0 <CJK> +<U000212DC> /x8e/xa6/xb4/xb1 <CJK> +<U000268FF> /x8e/xa6/xb4/xb2 <CJK> +<U00026959> /x8e/xa6/xb4/xb3 <CJK> +<U000269C7> /x8e/xa6/xb4/xb4 <CJK> +<U00026A12> /x8e/xa6/xb4/xb5 <CJK> +<U00026A14> /x8e/xa6/xb4/xb6 <CJK> +<U00026A13> /x8e/xa6/xb4/xb7 <CJK> +<U00026ACB> /x8e/xa6/xb4/xb8 <CJK> +<U00026B42> /x8e/xa6/xb4/xb9 <CJK> +<U44AD> /x8e/xa6/xb4/xba <CJK> +<U00026B3D> /x8e/xa6/xb4/xbb <CJK> +<U82FF> /x8e/xa6/xb4/xbc <CJK> +<U00026B40> /x8e/xa6/xb4/xbd <CJK> +<U00026B44> /x8e/xa6/xb4/xbe <CJK> +<U00026B62> /x8e/xa6/xb4/xbf <CJK> +<U00026B43> /x8e/xa6/xb4/xc0 <CJK> +<U00026B3F> /x8e/xa6/xb4/xc1 <CJK> +<U00026B45> /x8e/xa6/xb4/xc2 <CJK> +<U00026B3C> /x8e/xa6/xb4/xc3 <CJK> +<U00026B46> /x8e/xa6/xb4/xc5 <CJK> +<U00026B47> /x8e/xa6/xb4/xc6 <CJK> +<U0002719E> /x8e/xa6/xb4/xc8 <CJK> +<U0002719D> /x8e/xa6/xb4/xc9 <CJK> +<U0002722C> /x8e/xa6/xb4/xca <CJK> +<U00027229> /x8e/xa6/xb4/xcb <CJK> +<U0002722F> /x8e/xa6/xb4/xcc <CJK> +<U0002722E> /x8e/xa6/xb4/xcd <CJK> +<U00027230> /x8e/xa6/xb4/xce <CJK> +<U000275E1> /x8e/xa6/xb4/xcf <CJK> +<U000275E2> /x8e/xa6/xb4/xd0 <CJK> +<U0002760E> /x8e/xa6/xb4/xd1 <CJK> +<U00027619> /x8e/xa6/xb4/xd2 <CJK> +<U00027612> /x8e/xa6/xb4/xd3 <CJK> +<U000278B4> /x8e/xa6/xb4/xd4 <CJK> +<U00027BDA> /x8e/xa6/xb4/xd5 <CJK> +<U00027D26> /x8e/xa6/xb4/xd6 <CJK> +<U00027E59> /x8e/xa6/xb4/xd7 <CJK> +<U00027E5A> /x8e/xa6/xb4/xd8 <CJK> +<U00027E88> /x8e/xa6/xb4/xd9 <CJK> +<U00027FC0> /x8e/xa6/xb4/xda <CJK> +<U00027FBA> /x8e/xa6/xb4/xdb <CJK> +<U000282A0> /x8e/xa6/xb4/xdc <CJK> +<U000282A2> /x8e/xa6/xb4/xde <CJK> +<U00028486> /x8e/xa6/xb4/xdf <CJK> +<U8FEC> /x8e/xa6/xb4/xe0 <CJK> +<U0002849D> /x8e/xa6/xb4/xe1 <CJK> +<U00028488> /x8e/xa6/xb4/xe2 <CJK> +<U0002848F> /x8e/xa6/xb4/xe3 <CJK> +<U0002848E> /x8e/xa6/xb4/xe4 <CJK> +<U0002849B> /x8e/xa6/xb4/xe5 <CJK> +<U000286C1> /x8e/xa6/xb4/xe6 <CJK> +<U000286C3> /x8e/xa6/xb4/xe7 <CJK> +<U000286C4> /x8e/xa6/xb4/xe8 <CJK> +<U00028696> /x8e/xa6/xb4/xe9 <CJK> +<U000286C7> /x8e/xa6/xb4/xea <CJK> +<U000286C6> /x8e/xa6/xb4/xeb <CJK> +<U000286BF> /x8e/xa6/xb4/xec <CJK> +<U48C3> /x8e/xa6/xb4/xed <CJK> +<U0002890F> /x8e/xa6/xb4/xee <CJK> +<U00028E55> /x8e/xa6/xb4/xef <CJK> +<U00028E42> /x8e/xa6/xb4/xf0 <CJK> +<U00028E46> /x8e/xa6/xb4/xf1 <CJK> +<U00028E4B> /x8e/xa6/xb4/xf2 <CJK> +<U00028E43> /x8e/xa6/xb4/xf3 <CJK> +<U00028E53> /x8e/xa6/xb4/xf4 <CJK> +<U00028E48> /x8e/xa6/xb4/xf5 <CJK> +<U00028E49> /x8e/xa6/xb4/xf6 <CJK> +<U00028E4A> /x8e/xa6/xb4/xf7 <CJK> +<U00028E4E> /x8e/xa6/xb4/xf8 <CJK> +<U00024BDE> /x8e/xa6/xb4/xf9 <CJK> +<U00020691> /x8e/xa6/xb4/xfa <CJK> +<U0002944B> /x8e/xa6/xb4/xfb <CJK> +<U00029680> /x8e/xa6/xb4/xfc <CJK> +<U00029681> /x8e/xa6/xb4/xfd <CJK> +<U00029683> /x8e/xa6/xb4/xfe <CJK> +<U0002028A> /x8e/xa6/xb5/xa1 <CJK> +<U00029682> /x8e/xa6/xb5/xa2 <CJK> +<U00022342> /x8e/xa6/xb5/xa3 <CJK> +<U00020922> /x8e/xa6/xb5/xa4 <CJK> +<U00020070> /x8e/xa6/xb5/xa5 <CJK> +<U00020071> /x8e/xa6/xb5/xa6 <CJK> +<U000200BC> /x8e/xa6/xb5/xa7 <CJK> +<U00021D18> /x8e/xa6/xb5/xa8 <CJK> +<U000200BE> /x8e/xa6/xb5/xa9 <CJK> +<U000200BA> /x8e/xa6/xb5/xaa <CJK> +<U000200F8> /x8e/xa6/xb5/xab <CJK> +<U00020137> /x8e/xa6/xb5/xac <CJK> +<U00020135> /x8e/xa6/xb5/xad <CJK> +<U00020AFC> /x8e/xa6/xb5/xae <CJK> +<U00020156> /x8e/xa6/xb5/xaf <CJK> +<U00020159> /x8e/xa6/xb5/xb0 <CJK> +<U0002015E> /x8e/xa6/xb5/xb1 <CJK> +<U0002026D> /x8e/xa6/xb5/xb2 <CJK> +<U00020291> /x8e/xa6/xb5/xb3 <CJK> +<U00020292> /x8e/xa6/xb5/xb4 <CJK> +<U00020268> /x8e/xa6/xb5/xb5 <CJK> +<U00020266> /x8e/xa6/xb5/xb6 <CJK> +<U00020273> /x8e/xa6/xb5/xb7 <CJK> +<U3467> /x8e/xa6/xb5/xb8 <CJK> +<U00020296> /x8e/xa6/xb5/xb9 <CJK> +<U0002028B> /x8e/xa6/xb5/xba <CJK> +<U0002028C> /x8e/xa6/xb5/xbb <CJK> +<U00020496> /x8e/xa6/xb5/xbc <CJK> +<U000204EE> /x8e/xa6/xb5/xbd <CJK> +<U0002051C> /x8e/xa6/xb5/xbe <CJK> +<U0002051A> /x8e/xa6/xb5/xbf <CJK> +<U00020519> /x8e/xa6/xb5/xc0 <CJK> +<U0002051B> /x8e/xa6/xb5/xc1 <CJK> +<U0002055D> /x8e/xa6/xb5/xc2 <CJK> +<U0002055E> /x8e/xa6/xb5/xc3 <CJK> +<U000205DC> /x8e/xa6/xb5/xc5 <CJK> +<U000205E2> /x8e/xa6/xb5/xc6 <CJK> +<U00020652> /x8e/xa6/xb5/xc7 <CJK> +<U00020692> /x8e/xa6/xb5/xc8 <CJK> +<U00020730> /x8e/xa6/xb5/xc9 <CJK> +<U00020752> /x8e/xa6/xb5/xca <CJK> +<U00020742> /x8e/xa6/xb5/xcb <CJK> +<U00020741> /x8e/xa6/xb5/xcc <CJK> +<U00020745> /x8e/xa6/xb5/xcd <CJK> +<U00020737> /x8e/xa6/xb5/xce <CJK> +<U00020740> /x8e/xa6/xb5/xcf <CJK> +<U0002073F> /x8e/xa6/xb5/xd0 <CJK> +<U0002073D> /x8e/xa6/xb5/xd1 <CJK> +<U00020738> /x8e/xa6/xb5/xd2 <CJK> +<U0002073A> /x8e/xa6/xb5/xd3 <CJK> +<U00020749> /x8e/xa6/xb5/xd4 <CJK> +<U0002086B> /x8e/xa6/xb5/xd5 <CJK> +<U00020878> /x8e/xa6/xb5/xd6 <CJK> +<U00020879> /x8e/xa6/xb5/xd7 <CJK> +<U0002086C> /x8e/xa6/xb5/xd9 <CJK> +<U000208E9> /x8e/xa6/xb5/xda <CJK> +<U000208E6> /x8e/xa6/xb5/xdb <CJK> +<U000208E5> /x8e/xa6/xb5/xdc <CJK> +<U000208EA> /x8e/xa6/xb5/xdd <CJK> +<U000208E7> /x8e/xa6/xb5/xde <CJK> +<U000208E8> /x8e/xa6/xb5/xdf <CJK> +<U0002091F> /x8e/xa6/xb5/xe0 <CJK> +<U0002094B> /x8e/xa6/xb5/xe1 <CJK> +<U0002094A> /x8e/xa6/xb5/xe2 <CJK> +<U00020953> /x8e/xa6/xb5/xe3 <CJK> +<U00020976> /x8e/xa6/xb5/xe4 <CJK> +<U000209A3> /x8e/xa6/xb5/xe5 <CJK> +<U000209A4> /x8e/xa6/xb5/xe6 <CJK> +<U000209F6> /x8e/xa6/xb5/xe7 <CJK> +<U000209F3> /x8e/xa6/xb5/xe8 <CJK> +<U000209F9> /x8e/xa6/xb5/xe9 <CJK> +<U000209F7> /x8e/xa6/xb5/xea <CJK> +<U000209FC> /x8e/xa6/xb5/xeb <CJK> +<U00020A1D> /x8e/xa6/xb5/xec <CJK> +<U00020A6D> /x8e/xa6/xb5/xed <CJK> +<U00020A71> /x8e/xa6/xb5/xee <CJK> +<U00020A6C> /x8e/xa6/xb5/xef <CJK> +<U00020A6E> /x8e/xa6/xb5/xf0 <CJK> +<U00020A70> /x8e/xa6/xb5/xf1 <CJK> +<U00020A6F> /x8e/xa6/xb5/xf2 <CJK> +<U00020A67> /x8e/xa6/xb5/xf3 <CJK> +<U00020A68> /x8e/xa6/xb5/xf4 <CJK> +<U00020AFA> /x8e/xa6/xb5/xf5 <CJK> +<U00020AF9> /x8e/xa6/xb5/xf6 <CJK> +<U00020B4E> /x8e/xa6/xb5/xf7 <CJK> +<U53DE> /x8e/xa6/xb5/xf8 <CJK> +<U00020B4D> /x8e/xa6/xb5/xf9 <CJK> +<U00020B4F> /x8e/xa6/xb5/xfa <CJK> +<U00020B4A> /x8e/xa6/xb5/xfb <CJK> +<U00020B4C> /x8e/xa6/xb5/xfc <CJK> +<U3596> /x8e/xa6/xb5/xfd <CJK> +<U00020CEE> /x8e/xa6/xb6/xa1 <CJK> +<U00020CB2> /x8e/xa6/xb6/xa2 <CJK> +<U00020CC0> /x8e/xa6/xb6/xa3 <CJK> +<U00020CC1> /x8e/xa6/xb6/xa4 <CJK> +<U00020CF4> /x8e/xa6/xb6/xa5 <CJK> +<U00020CC8> /x8e/xa6/xb6/xa6 <CJK> +<U00020CC5> /x8e/xa6/xb6/xa7 <CJK> +<U00020CC6> /x8e/xa6/xb6/xa8 <CJK> +<U00020CAD> /x8e/xa6/xb6/xa9 <CJK> +<U000211E2> /x8e/xa6/xb6/xaa <CJK> +<U000211EA> /x8e/xa6/xb6/xab <CJK> +<U000211E3> /x8e/xa6/xb6/xac <CJK> +<U000211E1> /x8e/xa6/xb6/xad <CJK> +<U000212F7> /x8e/xa6/xb6/xae <CJK> +<U00021301> /x8e/xa6/xb6/xaf <CJK> +<U00021312> /x8e/xa6/xb6/xb0 <CJK> +<U000212F6> /x8e/xa6/xb6/xb1 <CJK> +<U000212F1> /x8e/xa6/xb6/xb2 <CJK> +<U0002131F> /x8e/xa6/xb6/xb3 <CJK> +<U000212EE> /x8e/xa6/xb6/xb4 <CJK> +<U000212F3> /x8e/xa6/xb6/xb6 <CJK> +<U00021315> /x8e/xa6/xb6/xb7 <CJK> +<U00021316> /x8e/xa6/xb6/xb8 <CJK> +<U00021317> /x8e/xa6/xb6/xb9 <CJK> +<U000212F8> /x8e/xa6/xb6/xba <CJK> +<U00021319> /x8e/xa6/xb6/xbb <CJK> +<U000212F2> /x8e/xa6/xb6/xbc <CJK> +<U000212F4> /x8e/xa6/xb6/xbd <CJK> +<U000212F5> /x8e/xa6/xb6/xbe <CJK> +<U00021313> /x8e/xa6/xb6/xbf <CJK> +<U00021306> /x8e/xa6/xb6/xc0 <CJK> +<U00021526> /x8e/xa6/xb6/xc1 <CJK> +<U00021524> /x8e/xa6/xb6/xc2 <CJK> +<U0002155A> /x8e/xa6/xb6/xc3 <CJK> +<U00022EC8> /x8e/xa6/xb6/xc4 <CJK> +<U00021597> /x8e/xa6/xb6/xc5 <CJK> +<U00021595> /x8e/xa6/xb6/xc6 <CJK> +<U0002159A> /x8e/xa6/xb6/xc7 <CJK> +<U0002161F> /x8e/xa6/xb6/xc8 <CJK> +<U00020AFB> /x8e/xa6/xb6/xc9 <CJK> +<U00021629> /x8e/xa6/xb6/xca <CJK> +<U00021620> /x8e/xa6/xb6/xcb <CJK> +<U0002174C> /x8e/xa6/xb6/xce <CJK> +<U00021730> /x8e/xa6/xb6/xcf <CJK> +<U00021738> /x8e/xa6/xb6/xd0 <CJK> +<U0002173D> /x8e/xa6/xb6/xd1 <CJK> +<U00021751> /x8e/xa6/xb6/xd2 <CJK> +<U0002174F> /x8e/xa6/xb6/xd3 <CJK> +<U0002174A> /x8e/xa6/xb6/xd4 <CJK> +<U00021734> /x8e/xa6/xb6/xd5 <CJK> +<U00021736> /x8e/xa6/xb6/xd6 <CJK> +<U5A30> /x8e/xa6/xb6/xd7 <CJK> +<U0002196A> /x8e/xa6/xb6/xd8 <CJK> +<U00021968> /x8e/xa6/xb6/xd9 <CJK> +<U00021A1C> /x8e/xa6/xb6/xda <CJK> +<U00021A0E> /x8e/xa6/xb6/xdb <CJK> +<U00021A1E> /x8e/xa6/xb6/xdc <CJK> +<U3759> /x8e/xa6/xb6/xdd <CJK> +<U00021A09> /x8e/xa6/xb6/xde <CJK> +<U00021A08> /x8e/xa6/xb6/xdf <CJK> +<U00021A13> /x8e/xa6/xb6/xe0 <CJK> +<U00021A01> /x8e/xa6/xb6/xe1 <CJK> +<U00021A0F> /x8e/xa6/xb6/xe2 <CJK> +<U00021A14> /x8e/xa6/xb6/xe3 <CJK> +<U00021A06> /x8e/xa6/xb6/xe4 <CJK> +<U00021A07> /x8e/xa6/xb6/xe5 <CJK> +<U5BB2> /x8e/xa6/xb6/xe6 <CJK> +<U3776> /x8e/xa6/xb6/xe8 <CJK> +<U00021B79> /x8e/xa6/xb6/xe9 <CJK> +<U00021BEA> /x8e/xa6/xb6/xea <CJK> +<U00021BED> /x8e/xa6/xb6/xeb <CJK> +<U00021BE9> /x8e/xa6/xb6/xec <CJK> +<U00021BEE> /x8e/xa6/xb6/xed <CJK> +<U00021C68> /x8e/xa6/xb6/xee <CJK> +<U00021C64> /x8e/xa6/xb6/xef <CJK> +<U00021C67> /x8e/xa6/xb6/xf0 <CJK> +<U00021C72> /x8e/xa6/xb6/xf1 <CJK> +<U00021C62> /x8e/xa6/xb6/xf2 <CJK> +<U00021C74> /x8e/xa6/xb6/xf3 <CJK> +<U00021C79> /x8e/xa6/xb6/xf4 <CJK> +<U00021D19> /x8e/xa6/xb6/xf5 <CJK> +<U00021D17> /x8e/xa6/xb6/xf6 <CJK> +<U00021D15> /x8e/xa6/xb6/xf7 <CJK> +<U00021D16> /x8e/xa6/xb6/xf8 <CJK> +<U00021DE6> /x8e/xa6/xb6/xf9 <CJK> +<U000262A4> /x8e/xa6/xb6/xfa <CJK> +<U00021DEE> /x8e/xa6/xb6/xfb <CJK> +<U37D2> /x8e/xa6/xb6/xfc <CJK> +<U00021DDF> /x8e/xa6/xb6/xfd <CJK> +<U00021DE4> /x8e/xa6/xb6/xfe <CJK> +<U00021DDA> /x8e/xa6/xb7/xa1 <CJK> +<U00021DEA> /x8e/xa6/xb7/xa2 <CJK> +<U00021DED> /x8e/xa6/xb7/xa3 <CJK> +<U00021DE3> /x8e/xa6/xb7/xa4 <CJK> +<U00021DE9> /x8e/xa6/xb7/xa5 <CJK> +<U00021FFD> /x8e/xa6/xb7/xa6 <CJK> +<U00020657> /x8e/xa6/xb7/xa7 <CJK> +<U00022021> /x8e/xa6/xb7/xa8 <CJK> +<U000220C6> /x8e/xa6/xb7/xa9 <CJK> +<U000220B8> /x8e/xa6/xb7/xaa <CJK> +<U000220CB> /x8e/xa6/xb7/xab <CJK> +<U000220BD> /x8e/xa6/xb7/xad <CJK> +<U000220B5> /x8e/xa6/xb7/xae <CJK> +<U000220BB> /x8e/xa6/xb7/xaf <CJK> +<U000220BF> /x8e/xa6/xb7/xb0 <CJK> +<U000220BE> /x8e/xa6/xb7/xb1 <CJK> +<U000220B2> /x8e/xa6/xb7/xb2 <CJK> +<U000220C1> /x8e/xa6/xb7/xb3 <CJK> +<U000220C2> /x8e/xa6/xb7/xb4 <CJK> +<U00022199> /x8e/xa6/xb7/xb5 <CJK> +<U000221C6> /x8e/xa6/xb7/xb6 <CJK> +<U0002222C> /x8e/xa6/xb7/xb7 <CJK> +<U0002222D> /x8e/xa6/xb7/xb8 <CJK> +<U00022225> /x8e/xa6/xb7/xb9 <CJK> +<U0002221E> /x8e/xa6/xb7/xba <CJK> +<U0002221F> /x8e/xa6/xb7/xbb <CJK> +<U00022223> /x8e/xa6/xb7/xbc <CJK> +<U00022350> /x8e/xa6/xb7/xbd <CJK> +<U0002234E> /x8e/xa6/xb7/xbe <CJK> +<U0002234D> /x8e/xa6/xb7/xbf <CJK> +<U00022352> /x8e/xa6/xb7/xc0 <CJK> +<U000223E9> /x8e/xa6/xb7/xc1 <CJK> +<U000223EC> /x8e/xa6/xb7/xc2 <CJK> +<U000223E8> /x8e/xa6/xb7/xc3 <CJK> +<U00022458> /x8e/xa6/xb7/xc4 <CJK> +<U0002245C> /x8e/xa6/xb7/xc5 <CJK> +<U0002245B> /x8e/xa6/xb7/xc6 <CJK> +<U0002248F> /x8e/xa6/xb7/xc7 <CJK> +<U00023972> /x8e/xa6/xb7/xc8 <CJK> +<U000224F6> /x8e/xa6/xb7/xc9 <CJK> +<U00022500> /x8e/xa6/xb7/xca <CJK> +<U000224FC> /x8e/xa6/xb7/xcb <CJK> +<U000224F8> /x8e/xa6/xb7/xcc <CJK> +<U000224EA> /x8e/xa6/xb7/xcd <CJK> +<U000224FE> /x8e/xa6/xb7/xce <CJK> +<U000224F7> /x8e/xa6/xb7/xcf <CJK> +<U000224FD> /x8e/xa6/xb7/xd0 <CJK> +<U00022670> /x8e/xa6/xb7/xd1 <CJK> +<U00022662> /x8e/xa6/xb7/xd2 <CJK> +<U00022644> /x8e/xa6/xb7/xd3 <CJK> +<U3920> /x8e/xa6/xb7/xd4 <CJK> +<U0002264D> /x8e/xa6/xb7/xd5 <CJK> +<U0002264C> /x8e/xa6/xb7/xd6 <CJK> +<U0002263F> /x8e/xa6/xb7/xd7 <CJK> +<U00022666> /x8e/xa6/xb7/xd8 <CJK> +<U00022635> /x8e/xa6/xb7/xd9 <CJK> +<U3929> /x8e/xa6/xb7/xda <CJK> +<U00022634> /x8e/xa6/xb7/xdb <CJK> +<U0002268D> /x8e/xa6/xb7/xdc <CJK> +<U00022684> /x8e/xa6/xb7/xdd <CJK> +<U3938> /x8e/xa6/xb7/xde <CJK> +<U00022686> /x8e/xa6/xb7/xdf <CJK> +<U00022689> /x8e/xa6/xb7/xe0 <CJK> +<U00022687> /x8e/xa6/xb7/xe1 <CJK> +<U00022683> /x8e/xa6/xb7/xe2 <CJK> +<U00022675> /x8e/xa6/xb7/xe3 <CJK> +<U00022679> /x8e/xa6/xb7/xe4 <CJK> +<U000226AF> /x8e/xa6/xb7/xe5 <CJK> +<U000226B0> /x8e/xa6/xb7/xe6 <CJK> +<U000229B7> /x8e/xa6/xb7/xe7 <CJK> +<U000229BB> /x8e/xa6/xb7/xe8 <CJK> +<U000229B9> /x8e/xa6/xb7/xe9 <CJK> +<U00022A46> /x8e/xa6/xb7/xea <CJK> +<U00022A47> /x8e/xa6/xb7/xeb <CJK> +<U00022A45> /x8e/xa6/xb7/xec <CJK> +<U00022AEA> /x8e/xa6/xb7/xed <CJK> +<U00022AF6> /x8e/xa6/xb7/xee <CJK> +<U00022B68> /x8e/xa6/xb7/xef <CJK> +<U00022B39> /x8e/xa6/xb7/xf0 <CJK> +<U00022B3D> /x8e/xa6/xb7/xf2 <CJK> +<U00022B3B> /x8e/xa6/xb7/xf3 <CJK> +<U00022B4D> /x8e/xa6/xb7/xf4 <CJK> +<U00022B30> /x8e/xa6/xb7/xf5 <CJK> +<U00022B4A> /x8e/xa6/xb7/xf6 <CJK> +<U00022B3E> /x8e/xa6/xb7/xf7 <CJK> +<U00022B40> /x8e/xa6/xb7/xf8 <CJK> +<U00022B4C> /x8e/xa6/xb7/xf9 <CJK> +<U00022B47> /x8e/xa6/xb7/xfa <CJK> +<U00022B38> /x8e/xa6/xb7/xfb <CJK> +<U00022B52> /x8e/xa6/xb7/xfc <CJK> +<U00022B3A> /x8e/xa6/xb7/xfd <CJK> +<U00022B53> /x8e/xa6/xb7/xfe <CJK> +<U00022EC4> /x8e/xa6/xb8/xa1 <CJK> +<U00022EC1> /x8e/xa6/xb8/xa2 <CJK> +<U00022F1C> /x8e/xa6/xb8/xa3 <CJK> +<U00022F1D> /x8e/xa6/xb8/xa4 <CJK> +<U00022F2A> /x8e/xa6/xb8/xa5 <CJK> +<U00022F1E> /x8e/xa6/xb8/xa6 <CJK> +<U00022F2F> /x8e/xa6/xb8/xa7 <CJK> +<U00022F22> /x8e/xa6/xb8/xa8 <CJK> +<U00022F2E> /x8e/xa6/xb8/xa9 <CJK> +<U00022F25> /x8e/xa6/xb8/xaa <CJK> +<U3A89> /x8e/xa6/xb8/xab <CJK> +<U3AB0> /x8e/xa6/xb8/xac <CJK> +<U0002304A> /x8e/xa6/xb8/xad <CJK> +<U0002304B> /x8e/xa6/xb8/xae <CJK> +<U00023076> /x8e/xa6/xb8/xaf <CJK> +<U3ABF> /x8e/xa6/xb8/xb0 <CJK> +<U000230E8> /x8e/xa6/xb8/xb1 <CJK> +<U000230EF> /x8e/xa6/xb8/xb2 <CJK> +<U000230E9> /x8e/xa6/xb8/xb3 <CJK> +<U3AC5> /x8e/xa6/xb8/xb4 <CJK> +<U000230EA> /x8e/xa6/xb8/xb5 <CJK> +<U3AEA> /x8e/xa6/xb8/xb7 <CJK> +<U0002319B> /x8e/xa6/xb8/xb8 <CJK> +<U0002319E> /x8e/xa6/xb8/xb9 <CJK> +<U00023193> /x8e/xa6/xb8/xba <CJK> +<U000231A7> /x8e/xa6/xb8/xbb <CJK> +<U0002319C> /x8e/xa6/xb8/xbc <CJK> +<U000231A0> /x8e/xa6/xb8/xbd <CJK> +<U0002319A> /x8e/xa6/xb8/xbe <CJK> +<U000231AB> /x8e/xa6/xb8/xbf <CJK> +<U000231BE> /x8e/xa6/xb8/xc0 <CJK> +<U000231A9> /x8e/xa6/xb8/xc1 <CJK> +<U0002332D> /x8e/xa6/xb8/xc2 <CJK> +<U0002336E> /x8e/xa6/xb8/xc3 <CJK> +<U00023444> /x8e/xa6/xb8/xc4 <CJK> +<U0002343D> /x8e/xa6/xb8/xc5 <CJK> +<U0002343A> /x8e/xa6/xb8/xc6 <CJK> +<U00023468> /x8e/xa6/xb8/xc7 <CJK> +<U0002343C> /x8e/xa6/xb8/xc8 <CJK> +<U0002346A> /x8e/xa6/xb8/xc9 <CJK> +<U00023438> /x8e/xa6/xb8/xcb <CJK> +<U00023465> /x8e/xa6/xb8/xcc <CJK> +<U00023439> /x8e/xa6/xb8/xcd <CJK> +<U0002346D> /x8e/xa6/xb8/xce <CJK> +<U00023436> /x8e/xa6/xb8/xcf <CJK> +<U0002343E> /x8e/xa6/xb8/xd1 <CJK> +<U0002347E> /x8e/xa6/xb8/xd2 <CJK> +<U00023437> /x8e/xa6/xb8/xd3 <CJK> +<U00023899> /x8e/xa6/xb8/xd4 <CJK> +<U000238A9> /x8e/xa6/xb8/xd5 <CJK> +<U000238AD> /x8e/xa6/xb8/xd6 <CJK> +<U000238A7> /x8e/xa6/xb8/xd7 <CJK> +<U000238A8> /x8e/xa6/xb8/xd8 <CJK> +<U00023966> /x8e/xa6/xb8/xd9 <CJK> +<U00023969> /x8e/xa6/xb8/xda <CJK> +<U0002396D> /x8e/xa6/xb8/xdb <CJK> +<U00023967> /x8e/xa6/xb8/xdc <CJK> +<U0002396B> /x8e/xa6/xb8/xdd <CJK> +<U0002396A> /x8e/xa6/xb8/xde <CJK> +<U000239EE> /x8e/xa6/xb8/xdf <CJK> +<U00023A01> /x8e/xa6/xb8/xe0 <CJK> +<U00023A03> /x8e/xa6/xb8/xe1 <CJK> +<U000239F4> /x8e/xa6/xb8/xe2 <CJK> +<U000239FB> /x8e/xa6/xb8/xe3 <CJK> +<U3C37> /x8e/xa6/xb8/xe4 <CJK> +<U000239F6> /x8e/xa6/xb8/xe5 <CJK> +<U000239FC> /x8e/xa6/xb8/xe6 <CJK> +<U00023AF4> /x8e/xa6/xb8/xe7 <CJK> +<U00023B08> /x8e/xa6/xb8/xe8 <CJK> +<U00023B0A> /x8e/xa6/xb8/xe9 <CJK> +<U00023B09> /x8e/xa6/xb8/xea <CJK> +<U00023B6D> /x8e/xa6/xb8/xeb <CJK> +<U00023B62> /x8e/xa6/xb8/xec <CJK> +<U00023B41> /x8e/xa6/xb8/xed <CJK> +<U00023B5E> /x8e/xa6/xb8/xee <CJK> +<U00023B5C> /x8e/xa6/xb8/xef <CJK> +<U00023CF3> /x8e/xa6/xb8/xf0 <CJK> +<U00023D26> /x8e/xa6/xb8/xf1 <CJK> +<U3CE4> /x8e/xa6/xb8/xf2 <CJK> +<U00023D39> /x8e/xa6/xb8/xf3 <CJK> +<U00023D6C> /x8e/xa6/xb8/xf5 <CJK> +<U00023D2B> /x8e/xa6/xb8/xf6 <CJK> +<U00023D2E> /x8e/xa6/xb8/xf7 <CJK> +<U00023D3B> /x8e/xa6/xb8/xf8 <CJK> +<U00023D5E> /x8e/xa6/xb8/xf9 <CJK> +<U00023DFB> /x8e/xa6/xb8/xfa <CJK> +<U00023D27> /x8e/xa6/xb8/xfb <CJK> +<U00023D24> /x8e/xa6/xb8/xfc <CJK> +<U00023D69> /x8e/xa6/xb8/xfd <CJK> +<U00023D30> /x8e/xa6/xb8/xfe <CJK> +<U00023D62> /x8e/xa6/xb9/xa2 <CJK> +<U00023D38> /x8e/xa6/xb9/xa3 <CJK> +<U00023D35> /x8e/xa6/xb9/xa4 <CJK> +<U00023D2A> /x8e/xa6/xb9/xa5 <CJK> +<U00023D2C> /x8e/xa6/xb9/xa6 <CJK> +<U00023D68> /x8e/xa6/xb9/xa7 <CJK> +<U00023D31> /x8e/xa6/xb9/xa8 <CJK> +<U00023D2F> /x8e/xa6/xb9/xa9 <CJK> +<U00023D2D> /x8e/xa6/xb9/xaa <CJK> +<U00023D3A> /x8e/xa6/xb9/xab <CJK> +<U00023D36> /x8e/xa6/xb9/xac <CJK> +<U00023D21> /x8e/xa6/xb9/xae <CJK> +<U00023D3C> /x8e/xa6/xb9/xaf <CJK> +<U00023D20> /x8e/xa6/xb9/xb0 <CJK> +<U00023D64> /x8e/xa6/xb9/xb1 <CJK> +<U00023D3E> /x8e/xa6/xb9/xb2 <CJK> +<U3CE8> /x8e/xa6/xb9/xb3 <CJK> +<U000241F7> /x8e/xa6/xb9/xb4 <CJK> +<U00024212> /x8e/xa6/xb9/xb5 <CJK> +<U000241F1> /x8e/xa6/xb9/xb6 <CJK> +<U000241F5> /x8e/xa6/xb9/xb7 <CJK> +<U00024222> /x8e/xa6/xb9/xb8 <CJK> +<U000241F2> /x8e/xa6/xb9/xb9 <CJK> +<U000241DF> /x8e/xa6/xb9/xba <CJK> +<U00024215> /x8e/xa6/xb9/xbb <CJK> +<U00024216> /x8e/xa6/xb9/xbc <CJK> +<U0002457A> /x8e/xa6/xb9/xbd <CJK> +<U00024576> /x8e/xa6/xb9/xbe <CJK> +<U000245BE> /x8e/xa6/xb9/xbf <CJK> +<U3E20> /x8e/xa6/xb9/xc0 <CJK> +<U000245BD> /x8e/xa6/xb9/xc1 <CJK> +<U00024609> /x8e/xa6/xb9/xc2 <CJK> +<U00024608> /x8e/xa6/xb9/xc3 <CJK> +<U00024657> /x8e/xa6/xb9/xc4 <CJK> +<U000247A3> /x8e/xa6/xb9/xc5 <CJK> +<U000247BF> /x8e/xa6/xb9/xc6 <CJK> +<U000247B8> /x8e/xa6/xb9/xc7 <CJK> +<U000247AF> /x8e/xa6/xb9/xc8 <CJK> +<U0002479C> /x8e/xa6/xb9/xc9 <CJK> +<U000247A5> /x8e/xa6/xb9/xca <CJK> +<U00024772> /x8e/xa6/xb9/xcb <CJK> +<U00024775> /x8e/xa6/xb9/xcc <CJK> +<U0002479D> /x8e/xa6/xb9/xcd <CJK> +<U00024799> /x8e/xa6/xb9/xce <CJK> +<U000247B9> /x8e/xa6/xb9/xcf <CJK> +<U0002494E> /x8e/xa6/xb9/xd0 <CJK> +<U00024939> /x8e/xa6/xb9/xd1 <CJK> +<U0002493B> /x8e/xa6/xb9/xd2 <CJK> +<U00024935> /x8e/xa6/xb9/xd3 <CJK> +<U0002493C> /x8e/xa6/xb9/xd4 <CJK> +<U00024955> /x8e/xa6/xb9/xd5 <CJK> +<U00024AF0> /x8e/xa6/xb9/xd6 <CJK> +<U00024AF3> /x8e/xa6/xb9/xd7 <CJK> +<U00024AF4> /x8e/xa6/xb9/xd8 <CJK> +<U00024B3B> /x8e/xa6/xb9/xd9 <CJK> +<U00024B3C> /x8e/xa6/xb9/xda <CJK> +<U00024B3A> /x8e/xa6/xb9/xdb <CJK> +<U00024B36> /x8e/xa6/xb9/xdc <CJK> +<U00024C07> /x8e/xa6/xb9/xdd <CJK> +<U00020CEB> /x8e/xa6/xb9/xde <CJK> +<U00024C55> /x8e/xa6/xb9/xdf <CJK> +<U00024C50> /x8e/xa6/xb9/xe0 <CJK> +<U00024C4F> /x8e/xa6/xb9/xe1 <CJK> +<U00024C52> /x8e/xa6/xb9/xe2 <CJK> +<U00024C56> /x8e/xa6/xb9/xe3 <CJK> +<U000200BD> /x8e/xa6/xb9/xe4 <CJK> +<U00024C32> /x8e/xa6/xb9/xe5 <CJK> +<U00024D63> /x8e/xa6/xb9/xe6 <CJK> +<U00024D6B> /x8e/xa6/xb9/xe7 <CJK> +<U00024D66> /x8e/xa6/xb9/xe8 <CJK> +<U00024D57> /x8e/xa6/xb9/xe9 <CJK> +<U00024D5D> /x8e/xa6/xb9/xea <CJK> +<U3F86> /x8e/xa6/xb9/xeb <CJK> +<U00024D6D> /x8e/xa6/xb9/xec <CJK> +<U00024D61> /x8e/xa6/xb9/xed <CJK> +<U00024D69> /x8e/xa6/xb9/xee <CJK> +<U00024D5A> /x8e/xa6/xb9/xef <CJK> +<U00024D5C> /x8e/xa6/xb9/xf0 <CJK> +<U00024D62> /x8e/xa6/xb9/xf1 <CJK> +<U00024F2A> /x8e/xa6/xb9/xf2 <CJK> +<U00024F29> /x8e/xa6/xb9/xf3 <CJK> +<U00024F58> /x8e/xa6/xb9/xf4 <CJK> +<U00024F5A> /x8e/xa6/xb9/xf5 <CJK> +<U00024FD7> /x8e/xa6/xb9/xf6 <CJK> +<U00024FDB> /x8e/xa6/xb9/xf7 <CJK> +<U00024FDC> /x8e/xa6/xb9/xf8 <CJK> +<U00024FDD> /x8e/xa6/xb9/xf9 <CJK> +<U00024FD8> /x8e/xa6/xb9/xfa <CJK> +<U00025054> /x8e/xa6/xb9/xfb <CJK> +<U0002505B> /x8e/xa6/xb9/xfc <CJK> +<U0002505C> /x8e/xa6/xb9/xfd <CJK> +<U00025053> /x8e/xa6/xb9/xfe <CJK> +<U0002504F> /x8e/xa6/xba/xa1 <CJK> +<U00025056> /x8e/xa6/xba/xa2 <CJK> +<U00025050> /x8e/xa6/xba/xa3 <CJK> +<U0002505A> /x8e/xa6/xba/xa4 <CJK> +<U0002506B> /x8e/xa6/xba/xa5 <CJK> +<U00025136> /x8e/xa6/xba/xa6 <CJK> +<U00025153> /x8e/xa6/xba/xa7 <CJK> +<U0002513A> /x8e/xa6/xba/xa8 <CJK> +<U0002513C> /x8e/xa6/xba/xa9 <CJK> +<U0002513E> /x8e/xa6/xba/xaa <CJK> +<U00025149> /x8e/xa6/xba/xab <CJK> +<U00025140> /x8e/xa6/xba/xac <CJK> +<U00025364> /x8e/xa6/xba/xaf <CJK> +<U00025365> /x8e/xa6/xba/xb0 <CJK> +<U000253B5> /x8e/xa6/xba/xb1 <CJK> +<U000253B6> /x8e/xa6/xba/xb2 <CJK> +<U000253B2> /x8e/xa6/xba/xb3 <CJK> +<U00025448> /x8e/xa6/xba/xb4 <CJK> +<U0002544A> /x8e/xa6/xba/xb5 <CJK> +<U00025472> /x8e/xa6/xba/xb6 <CJK> +<U00025469> /x8e/xa6/xba/xb7 <CJK> +<U0002545A> /x8e/xa6/xba/xb8 <CJK> +<U0002544C> /x8e/xa6/xba/xb9 <CJK> +<U0002562C> /x8e/xa6/xba/xba <CJK> +<U00025630> /x8e/xa6/xba/xbb <CJK> +<U0002564B> /x8e/xa6/xba/xbc <CJK> +<U00025649> /x8e/xa6/xba/xbd <CJK> +<U00025642> /x8e/xa6/xba/xbe <CJK> +<U00025644> /x8e/xa6/xba/xbf <CJK> +<U0002564A> /x8e/xa6/xba/xc0 <CJK> +<U0002564F> /x8e/xa6/xba/xc1 <CJK> +<U00025792> /x8e/xa6/xba/xc2 <CJK> +<U00025797> /x8e/xa6/xba/xc4 <CJK> +<U00025780> /x8e/xa6/xba/xc5 <CJK> +<U00025782> /x8e/xa6/xba/xc6 <CJK> +<U00025786> /x8e/xa6/xba/xc7 <CJK> +<U00025953> /x8e/xa6/xba/xc8 <CJK> +<U0002595E> /x8e/xa6/xba/xc9 <CJK> +<U00025952> /x8e/xa6/xba/xca <CJK> +<U0002595B> /x8e/xa6/xba/xcb <CJK> +<U0002594E> /x8e/xa6/xba/xcc <CJK> +<U00025A6D> /x8e/xa6/xba/xcd <CJK> +<U00025A6E> /x8e/xa6/xba/xce <CJK> +<U00025AFA> /x8e/xa6/xba/xcf <CJK> +<U00025AF6> /x8e/xa6/xba/xd0 <CJK> +<U00025AFB> /x8e/xa6/xba/xd1 <CJK> +<U00025E33> /x8e/xa6/xba/xd2 <CJK> +<U00025E3D> /x8e/xa6/xba/xd3 <CJK> +<U00025E37> /x8e/xa6/xba/xd4 <CJK> +<U00025E3E> /x8e/xa6/xba/xd5 <CJK> +<U00025E35> /x8e/xa6/xba/xd6 <CJK> +<U00025F9A> /x8e/xa6/xba/xd7 <CJK> +<U00025FAB> /x8e/xa6/xba/xd8 <CJK> +<U00025FA6> /x8e/xa6/xba/xd9 <CJK> +<U00025FB0> /x8e/xa6/xba/xda <CJK> +<U00025F99> /x8e/xa6/xba/xdb <CJK> +<U00025FA0> /x8e/xa6/xba/xdc <CJK> +<U00025F9E> /x8e/xa6/xba/xdd <CJK> +<U00025FA8> /x8e/xa6/xba/xde <CJK> +<U00025FA1> /x8e/xa6/xba/xdf <CJK> +<U00025FAA> /x8e/xa6/xba/xe0 <CJK> +<U00025FAD> /x8e/xa6/xba/xe1 <CJK> +<U00025FBB> /x8e/xa6/xba/xe2 <CJK> +<U00025F9C> /x8e/xa6/xba/xe3 <CJK> +<U00025FA5> /x8e/xa6/xba/xe4 <CJK> +<U000200B3> /x8e/xa6/xba/xe5 <CJK> +<U00026227> /x8e/xa6/xba/xe6 <CJK> +<U0002628D> /x8e/xa6/xba/xe7 <CJK> +<U0002628E> /x8e/xa6/xba/xe8 <CJK> +<U0002628F> /x8e/xa6/xba/xe9 <CJK> +<U00026292> /x8e/xa6/xba/xea <CJK> +<U4356> /x8e/xa6/xba/xeb <CJK> +<U00026291> /x8e/xa6/xba/xec <CJK> +<U000262AD> /x8e/xa6/xba/xed <CJK> +<U00026357> /x8e/xa6/xba/xee <CJK> +<U00026358> /x8e/xa6/xba/xef <CJK> +<U0002635E> /x8e/xa6/xba/xf0 <CJK> +<U0002635D> /x8e/xa6/xba/xf1 <CJK> +<U0002635C> /x8e/xa6/xba/xf2 <CJK> +<U0002635B> /x8e/xa6/xba/xf3 <CJK> +<U4367> /x8e/xa6/xba/xf4 <CJK> +<U0002640A> /x8e/xa6/xba/xf5 <CJK> +<U00026403> /x8e/xa6/xba/xf6 <CJK> +<U0002640E> /x8e/xa6/xba/xf7 <CJK> +<U000264B8> /x8e/xa6/xba/xf8 <CJK> +<U0002654D> /x8e/xa6/xba/xf9 <CJK> +<U0002653F> /x8e/xa6/xba/xfa <CJK> +<U00026547> /x8e/xa6/xba/xfb <CJK> +<U0002654B> /x8e/xa6/xba/xfc <CJK> +<U0002654A> /x8e/xa6/xba/xfd <CJK> +<U0002653D> /x8e/xa6/xba/xfe <CJK> +<U8038> /x8e/xa6/xbb/xa1 <CJK> +<U00026541> /x8e/xa6/xbb/xa2 <CJK> +<U0002654C> /x8e/xa6/xbb/xa3 <CJK> +<U8081> /x8e/xa6/xbb/xa4 <CJK> +<U00026662> /x8e/xa6/xbb/xa5 <CJK> +<U00026669> /x8e/xa6/xbb/xa6 <CJK> +<U00026661> /x8e/xa6/xbb/xa7 <CJK> +<U43D1> /x8e/xa6/xbb/xa8 <CJK> +<U000266AA> /x8e/xa6/xbb/xa9 <CJK> +<U000266A6> /x8e/xa6/xbb/xaa <CJK> +<U000266AC> /x8e/xa6/xbb/xab <CJK> +<U000266BD> /x8e/xa6/xbb/xac <CJK> +<U000266BB> /x8e/xa6/xbb/xad <CJK> +<U000266A4> /x8e/xa6/xbb/xae <CJK> +<U000266BA> /x8e/xa6/xbb/xaf <CJK> +<U0002669A> /x8e/xa6/xbb/xb0 <CJK> +<U43EB> /x8e/xa6/xbb/xb1 <CJK> +<U000266A1> /x8e/xa6/xbb/xb2 <CJK> +<U000266C1> /x8e/xa6/xbb/xb3 <CJK> +<U000268E0> /x8e/xa6/xbb/xb4 <CJK> +<U0002690A> /x8e/xa6/xbb/xb5 <CJK> +<U00026903> /x8e/xa6/xbb/xb6 <CJK> +<U00026906> /x8e/xa6/xbb/xb7 <CJK> +<U00026939> /x8e/xa6/xbb/xb8 <CJK> +<U0002693A> /x8e/xa6/xbb/xb9 <CJK> +<U00026936> /x8e/xa6/xbb/xba <CJK> +<U0002695B> /x8e/xa6/xbb/xbb <CJK> +<U0002695F> /x8e/xa6/xbb/xbc <CJK> +<U0002695E> /x8e/xa6/xbb/xbd <CJK> +<U00026967> /x8e/xa6/xbb/xbe <CJK> +<U00026961> /x8e/xa6/xbb/xbf <CJK> +<U00026962> /x8e/xa6/xbb/xc0 <CJK> +<U0002695D> /x8e/xa6/xbb/xc1 <CJK> +<U000269CA> /x8e/xa6/xbb/xc2 <CJK> +<U000269CC> /x8e/xa6/xbb/xc3 <CJK> +<U000269CE> /x8e/xa6/xbb/xc4 <CJK> +<U00026A18> /x8e/xa6/xbb/xc5 <CJK> +<U00026A1D> /x8e/xa6/xbb/xc6 <CJK> +<U00026A1F> /x8e/xa6/xbb/xc7 <CJK> +<U00026A20> /x8e/xa6/xbb/xc8 <CJK> +<U00026A17> /x8e/xa6/xbb/xc9 <CJK> +<U00026A15> /x8e/xa6/xbb/xca <CJK> +<U00026B1F> /x8e/xa6/xbb/xcb <CJK> +<U00026B27> /x8e/xa6/xbb/xcc <CJK> +<U00026B26> /x8e/xa6/xbb/xcd <CJK> +<U00021E10> /x8e/xa6/xbb/xce <CJK> +<U00026B8B> /x8e/xa6/xbb/xcf <CJK> +<U00026BAE> /x8e/xa6/xbb/xd0 <CJK> +<U00026B8A> /x8e/xa6/xbb/xd1 <CJK> +<U00026B92> /x8e/xa6/xbb/xd3 <CJK> +<U00026B89> /x8e/xa6/xbb/xd4 <CJK> +<U00026B87> /x8e/xa6/xbb/xd5 <CJK> +<U44B6> /x8e/xa6/xbb/xd6 <CJK> +<U00026B8F> /x8e/xa6/xbb/xd7 <CJK> +<U00026B84> /x8e/xa6/xbb/xd8 <CJK> +<U00026B83> /x8e/xa6/xbb/xd9 <CJK> +<U00026B8C> /x8e/xa6/xbb/xda <CJK> +<U00026B93> /x8e/xa6/xbb/xdb <CJK> +<U00026B8D> /x8e/xa6/xbb/xdc <CJK> +<U00026B98> /x8e/xa6/xbb/xdd <CJK> +<U00026B7D> /x8e/xa6/xbb/xde <CJK> +<U00026B7E> /x8e/xa6/xbb/xdf <CJK> +<U00026BD2> /x8e/xa6/xbb/xe0 <CJK> +<U00026B80> /x8e/xa6/xbb/xe1 <CJK> +<U00026B99> /x8e/xa6/xbb/xe2 <CJK> +<U000271AC> /x8e/xa6/xbb/xe3 <CJK> +<U00027250> /x8e/xa6/xbb/xe4 <CJK> +<U00027255> /x8e/xa6/xbb/xe5 <CJK> +<U00027242> /x8e/xa6/xbb/xe6 <CJK> +<U0002723F> /x8e/xa6/xbb/xe7 <CJK> +<U0002723C> /x8e/xa6/xbb/xe8 <CJK> +<U45A3> /x8e/xa6/xbb/xe9 <CJK> +<U0002724C> /x8e/xa6/xbb/xea <CJK> +<U00027249> /x8e/xa6/xbb/xeb <CJK> +<U00027257> /x8e/xa6/xbb/xec <CJK> +<U00027258> /x8e/xa6/xbb/xed <CJK> +<U0002724F> /x8e/xa6/xbb/xee <CJK> +<U0002725C> /x8e/xa6/xbb/xef <CJK> +<U00027247> /x8e/xa6/xbb/xf0 <CJK> +<U000275AB> /x8e/xa6/xbb/xf2 <CJK> +<U4610> /x8e/xa6/xbb/xf3 <CJK> +<U000275AF> /x8e/xa6/xbb/xf4 <CJK> +<U000275AD> /x8e/xa6/xbb/xf5 <CJK> +<U000275E8> /x8e/xa6/xbb/xf6 <CJK> +<U000275E7> /x8e/xa6/xbb/xf7 <CJK> +<U00027630> /x8e/xa6/xbb/xf8 <CJK> +<U00027626> /x8e/xa6/xbb/xf9 <CJK> +<U0002762F> /x8e/xa6/xbb/xfa <CJK> +<U00027628> /x8e/xa6/xbb/xfb <CJK> +<U0002762B> /x8e/xa6/xbb/xfc <CJK> +<U0002761D> /x8e/xa6/xbb/xfd <CJK> +<U0002762D> /x8e/xa6/xbb/xfe <CJK> +<U00027620> /x8e/xa6/xbc/xa1 <CJK> +<U0002762A> /x8e/xa6/xbc/xa2 <CJK> +<U0002762C> /x8e/xa6/xbc/xa3 <CJK> +<U00027635> /x8e/xa6/xbc/xa4 <CJK> +<U00027621> /x8e/xa6/xbc/xa5 <CJK> +<U00027623> /x8e/xa6/xbc/xa6 <CJK> +<U00027624> /x8e/xa6/xbc/xa7 <CJK> +<U00027636> /x8e/xa6/xbc/xa8 <CJK> +<U00027637> /x8e/xa6/xbc/xa9 <CJK> +<U000277E9> /x8e/xa6/xbc/xaa <CJK> +<U000278BA> /x8e/xa6/xbc/xab <CJK> +<U000278B8> /x8e/xa6/xbc/xac <CJK> +<U0002796D> /x8e/xa6/xbc/xae <CJK> +<U0002796A> /x8e/xa6/xbc/xaf <CJK> +<U00027968> /x8e/xa6/xbc/xb0 <CJK> +<U00027969> /x8e/xa6/xbc/xb1 <CJK> +<U0002796B> /x8e/xa6/xbc/xb2 <CJK> +<U00027961> /x8e/xa6/xbc/xb3 <CJK> +<U00027BDC> /x8e/xa6/xbc/xb4 <CJK> +<U00027BDB> /x8e/xa6/xbc/xb5 <CJK> +<U00027C2D> /x8e/xa6/xbc/xb6 <CJK> +<U00027C2C> /x8e/xa6/xbc/xb7 <CJK> +<U00027CA2> /x8e/xa6/xbc/xb8 <CJK> +<U00027D2B> /x8e/xa6/xbc/xb9 <CJK> +<U00027D32> /x8e/xa6/xbc/xba <CJK> +<U00027E94> /x8e/xa6/xbc/xbc <CJK> +<U00027E92> /x8e/xa6/xbc/xbd <CJK> +<U00027E90> /x8e/xa6/xbc/xbe <CJK> +<U00027FC9> /x8e/xa6/xbc/xbf <CJK> +<U00027FC4> /x8e/xa6/xbc/xc0 <CJK> +<U00027FC1> /x8e/xa6/xbc/xc1 <CJK> +<U00027FC3> /x8e/xa6/xbc/xc2 <CJK> +<U00027FCD> /x8e/xa6/xbc/xc3 <CJK> +<U00028214> /x8e/xa6/xbc/xc4 <CJK> +<U000282A7> /x8e/xa6/xbc/xc5 <CJK> +<U000282AF> /x8e/xa6/xbc/xc6 <CJK> +<U000282AA> /x8e/xa6/xbc/xc7 <CJK> +<U0002840D> /x8e/xa6/xbc/xc8 <CJK> +<U00028454> /x8e/xa6/xbc/xc9 <CJK> +<U0002845B> /x8e/xa6/xbc/xca <CJK> +<U00028461> /x8e/xa6/xbc/xcb <CJK> +<U000284AE> /x8e/xa6/xbc/xcc <CJK> +<U000284B3> /x8e/xa6/xbc/xcd <CJK> +<U000284C0> /x8e/xa6/xbc/xce <CJK> +<U000284C4> /x8e/xa6/xbc/xcf <CJK> +<U000284BF> /x8e/xa6/xbc/xd0 <CJK> +<U000284CB> /x8e/xa6/xbc/xd1 <CJK> +<U000284AD> /x8e/xa6/xbc/xd2 <CJK> +<U000284A7> /x8e/xa6/xbc/xd3 <CJK> +<U000284A4> /x8e/xa6/xbc/xd4 <CJK> +<U000284BD> /x8e/xa6/xbc/xd5 <CJK> +<U000284AF> /x8e/xa6/xbc/xd6 <CJK> +<U000284B2> /x8e/xa6/xbc/xd7 <CJK> +<U000284A5> /x8e/xa6/xbc/xd8 <CJK> +<U000286E7> /x8e/xa6/xbc/xd9 <CJK> +<U000286E0> /x8e/xa6/xbc/xda <CJK> +<U000286CE> /x8e/xa6/xbc/xdb <CJK> +<U000286DE> /x8e/xa6/xbc/xdc <CJK> +<U000286D5> /x8e/xa6/xbc/xdd <CJK> +<U000286DF> /x8e/xa6/xbc/xde <CJK> +<U000286D9> /x8e/xa6/xbc/xdf <CJK> +<U000287F2> /x8e/xa6/xbc/xe0 <CJK> +<U00028923> /x8e/xa6/xbc/xe1 <CJK> +<U00028940> /x8e/xa6/xbc/xe2 <CJK> +<U491B> /x8e/xa6/xbc/xe3 <CJK> +<U0002893E> /x8e/xa6/xbc/xe4 <CJK> +<U4987> /x8e/xa6/xbc/xe5 <CJK> +<U00028CCF> /x8e/xa6/xbc/xe6 <CJK> +<U00020B54> /x8e/xa6/xbc/xe7 <CJK> +<U00028E5B> /x8e/xa6/xbc/xe8 <CJK> +<U00028E58> /x8e/xa6/xbc/xe9 <CJK> +<U00028E62> /x8e/xa6/xbc/xea <CJK> +<U00028E5F> /x8e/xa6/xbc/xeb <CJK> +<U00028E67> /x8e/xa6/xbc/xec <CJK> +<U00028E63> /x8e/xa6/xbc/xed <CJK> +<U00028E5E> /x8e/xa6/xbc/xee <CJK> +<U00028E60> /x8e/xa6/xbc/xef <CJK> +<U00028F85> /x8e/xa6/xbc/xf0 <CJK> +<U00028F86> /x8e/xa6/xbc/xf1 <CJK> +<U00028F87> /x8e/xa6/xbc/xf2 <CJK> +<U000291E8> /x8e/xa6/xbc/xf3 <CJK> +<U000291E6> /x8e/xa6/xbc/xf4 <CJK> +<U00029671> /x8e/xa6/xbc/xf5 <CJK> +<U00029685> /x8e/xa6/xbc/xf6 <CJK> +<U00029686> /x8e/xa6/xbc/xf8 <CJK> +<U00029810> /x8e/xa6/xbc/xf9 <CJK> +<U000209F8> /x8e/xa6/xbc/xfa <CJK> +<U000200BF> /x8e/xa6/xbc/xfb <CJK> +<U00020B61> /x8e/xa6/xbc/xfc <CJK> +<U000200FE> /x8e/xa6/xbc/xfd <CJK> +<U000200FC> /x8e/xa6/xbc/xfe <CJK> +<U00020139> /x8e/xa6/xbd/xa1 <CJK> +<U00020161> /x8e/xa6/xbd/xa2 <CJK> +<U00020160> /x8e/xa6/xbd/xa3 <CJK> +<U000202E2> /x8e/xa6/xbd/xa4 <CJK> +<U000202EA> /x8e/xa6/xbd/xa5 <CJK> +<U000202E3> /x8e/xa6/xbd/xa6 <CJK> +<U000202B4> /x8e/xa6/xbd/xa7 <CJK> +<U000202AE> /x8e/xa6/xbd/xa8 <CJK> +<U000202BE> /x8e/xa6/xbd/xa9 <CJK> +<U000202B8> /x8e/xa6/xbd/xaa <CJK> +<U000202A8> /x8e/xa6/xbd/xab <CJK> +<U000202AA> /x8e/xa6/xbd/xac <CJK> +<U000202A9> /x8e/xa6/xbd/xad <CJK> +<U000202B3> /x8e/xa6/xbd/xae <CJK> +<U000202D5> /x8e/xa6/xbd/xaf <CJK> +<U000202AD> /x8e/xa6/xbd/xb0 <CJK> +<U000202B9> /x8e/xa6/xbd/xb1 <CJK> +<U000202BB> /x8e/xa6/xbd/xb2 <CJK> +<U000202B1> /x8e/xa6/xbd/xb3 <CJK> +<U000202C2> /x8e/xa6/xbd/xb4 <CJK> +<U000202EB> /x8e/xa6/xbd/xb6 <CJK> +<U000202BA> /x8e/xa6/xbd/xb7 <CJK> +<U000202D2> /x8e/xa6/xbd/xb8 <CJK> +<U000202D4> /x8e/xa6/xbd/xb9 <CJK> +<U000204F1> /x8e/xa6/xbd/xba <CJK> +<U0002051D> /x8e/xa6/xbd/xbb <CJK> +<U00020562> /x8e/xa6/xbd/xbd <CJK> +<U0002058C> /x8e/xa6/xbd/xbe <CJK> +<U000205E6> /x8e/xa6/xbd/xbf <CJK> +<U000205E7> /x8e/xa6/xbd/xc0 <CJK> +<U0002065A> /x8e/xa6/xbd/xc1 <CJK> +<U00020658> /x8e/xa6/xbd/xc2 <CJK> +<U00020659> /x8e/xa6/xbd/xc3 <CJK> +<U00020696> /x8e/xa6/xbd/xc4 <CJK> +<U00020697> /x8e/xa6/xbd/xc5 <CJK> +<U00020761> /x8e/xa6/xbd/xc6 <CJK> +<U00020767> /x8e/xa6/xbd/xc7 <CJK> +<U00020771> /x8e/xa6/xbd/xc8 <CJK> +<U00020765> /x8e/xa6/xbd/xc9 <CJK> +<U0002077D> /x8e/xa6/xbd/xca <CJK> +<U0002077E> /x8e/xa6/xbd/xcb <CJK> +<U0002087D> /x8e/xa6/xbd/xcc <CJK> +<U00020884> /x8e/xa6/xbd/xcd <CJK> +<U0002087C> /x8e/xa6/xbd/xce <CJK> +<U0002087E> /x8e/xa6/xbd/xcf <CJK> +<U0002087F> /x8e/xa6/xbd/xd0 <CJK> +<U00020880> /x8e/xa6/xbd/xd1 <CJK> +<U000208EF> /x8e/xa6/xbd/xd2 <CJK> +<U000208F4> /x8e/xa6/xbd/xd3 <CJK> +<U0002091E> /x8e/xa6/xbd/xd4 <CJK> +<U0002094E> /x8e/xa6/xbd/xd5 <CJK> +<U000209FB> /x8e/xa6/xbd/xd6 <CJK> +<U000209FA> /x8e/xa6/xbd/xd7 <CJK> +<U000209FD> /x8e/xa6/xbd/xd8 <CJK> +<U00020A79> /x8e/xa6/xbd/xdb <CJK> +<U00020A7C> /x8e/xa6/xbd/xdc <CJK> +<U00020A7D> /x8e/xa6/xbd/xdd <CJK> +<U00020A84> /x8e/xa6/xbd/xde <CJK> +<U00020A7B> /x8e/xa6/xbd/xdf <CJK> +<U00020A78> /x8e/xa6/xbd/xe0 <CJK> +<U3557> /x8e/xa6/xbd/xe1 <CJK> +<U00020B5E> /x8e/xa6/xbd/xe2 <CJK> +<U00020B5A> /x8e/xa6/xbd/xe3 <CJK> +<U00020B5C> /x8e/xa6/xbd/xe4 <CJK> +<U00020B59> /x8e/xa6/xbd/xe5 <CJK> +<U00020B55> /x8e/xa6/xbd/xe6 <CJK> +<U00020B63> /x8e/xa6/xbd/xe7 <CJK> +<U00020B56> /x8e/xa6/xbd/xe8 <CJK> +<U00020B5F> /x8e/xa6/xbd/xe9 <CJK> +<U00020B60> /x8e/xa6/xbd/xea <CJK> +<U00020B5B> /x8e/xa6/xbd/xeb <CJK> +<U00020D4A> /x8e/xa6/xbd/xec <CJK> +<U00020D65> /x8e/xa6/xbd/xed <CJK> +<U00020DB3> /x8e/xa6/xbd/xee <CJK> +<U00020D2C> /x8e/xa6/xbd/xef <CJK> +<U00020D77> /x8e/xa6/xbd/xf0 <CJK> +<U00020D3D> /x8e/xa6/xbd/xf1 <CJK> +<U00020D52> /x8e/xa6/xbd/xf2 <CJK> +<U00020D61> /x8e/xa6/xbd/xf3 <CJK> +<U00020D2A> /x8e/xa6/xbd/xf4 <CJK> +<U00020D3E> /x8e/xa6/xbd/xf5 <CJK> +<U00020D34> /x8e/xa6/xbd/xf6 <CJK> +<U00020D29> /x8e/xa6/xbd/xf7 <CJK> +<U00020DB2> /x8e/xa6/xbd/xf8 <CJK> +<U00020DAD> /x8e/xa6/xbd/xf9 <CJK> +<U00020D40> /x8e/xa6/xbd/xfa <CJK> +<U00020D53> /x8e/xa6/xbd/xfb <CJK> +<U00020D3F> /x8e/xa6/xbd/xfd <CJK> +<U00020D41> /x8e/xa6/xbd/xfe <CJK> +<U00020D72> /x8e/xa6/xbe/xa1 <CJK> +<U000211F6> /x8e/xa6/xbe/xa2 <CJK> +<U000211F5> /x8e/xa6/xbe/xa3 <CJK> +<U000211F4> /x8e/xa6/xbe/xa4 <CJK> +<U000211F2> /x8e/xa6/xbe/xa5 <CJK> +<U000211F9> /x8e/xa6/xbe/xa6 <CJK> +<U00021327> /x8e/xa6/xbe/xa7 <CJK> +<U00021354> /x8e/xa6/xbe/xa8 <CJK> +<U00021355> /x8e/xa6/xbe/xa9 <CJK> +<U0002132E> /x8e/xa6/xbe/xaa <CJK> +<U0002132C> /x8e/xa6/xbe/xad <CJK> +<U00021338> /x8e/xa6/xbe/xae <CJK> +<U00021339> /x8e/xa6/xbe/xaf <CJK> +<U00021331> /x8e/xa6/xbe/xb0 <CJK> +<U0002134F> /x8e/xa6/xbe/xb1 <CJK> +<U00021373> /x8e/xa6/xbe/xb2 <CJK> +<U00021330> /x8e/xa6/xbe/xb3 <CJK> +<U0002132B> /x8e/xa6/xbe/xb4 <CJK> +<U00021351> /x8e/xa6/xbe/xb5 <CJK> +<U0002152C> /x8e/xa6/xbe/xb6 <CJK> +<U0002155B> /x8e/xa6/xbe/xb7 <CJK> +<U0002155C> /x8e/xa6/xbe/xb8 <CJK> +<U00021568> /x8e/xa6/xbe/xb9 <CJK> +<U0002156C> /x8e/xa6/xbe/xba <CJK> +<U0002156B> /x8e/xa6/xbe/xbb <CJK> +<U00021569> /x8e/xa6/xbe/xbc <CJK> +<U0002159F> /x8e/xa6/xbe/xbd <CJK> +<U00021638> /x8e/xa6/xbe/xbe <CJK> +<U0002163C> /x8e/xa6/xbe/xbf <CJK> +<U0002163A> /x8e/xa6/xbe/xc0 <CJK> +<U00021635> /x8e/xa6/xbe/xc1 <CJK> +<U369D> /x8e/xa6/xbe/xc2 <CJK> +<U00021639> /x8e/xa6/xbe/xc3 <CJK> +<U00021636> /x8e/xa6/xbe/xc4 <CJK> +<U0002163B> /x8e/xa6/xbe/xc5 <CJK> +<U00021760> /x8e/xa6/xbe/xc6 <CJK> +<U00021761> /x8e/xa6/xbe/xc7 <CJK> +<U00021763> /x8e/xa6/xbe/xc8 <CJK> +<U00021764> /x8e/xa6/xbe/xc9 <CJK> +<U00021794> /x8e/xa6/xbe/xca <CJK> +<U00021793> /x8e/xa6/xbe/xcb <CJK> +<U0002175E> /x8e/xa6/xbe/xcc <CJK> +<U00021768> /x8e/xa6/xbe/xcd <CJK> +<U0002176A> /x8e/xa6/xbe/xce <CJK> +<U00021765> /x8e/xa6/xbe/xcf <CJK> +<U00021790> /x8e/xa6/xbe/xd1 <CJK> +<U0002175F> /x8e/xa6/xbe/xd2 <CJK> +<U00021772> /x8e/xa6/xbe/xd3 <CJK> +<U00021A3C> /x8e/xa6/xbe/xd5 <CJK> +<U00021A27> /x8e/xa6/xbe/xd6 <CJK> +<U00021A24> /x8e/xa6/xbe/xd7 <CJK> +<U00021A26> /x8e/xa6/xbe/xd8 <CJK> +<U00021A25> /x8e/xa6/xbe/xd9 <CJK> +<U375F> /x8e/xa6/xbe/xda <CJK> +<U00021A28> /x8e/xa6/xbe/xdb <CJK> +<U00021A36> /x8e/xa6/xbe/xdc <CJK> +<U00021B31> /x8e/xa6/xbe/xdd <CJK> +<U00021B30> /x8e/xa6/xbe/xde <CJK> +<U00021B34> /x8e/xa6/xbe/xdf <CJK> +<U00021B81> /x8e/xa6/xbe/xe0 <CJK> +<U00021B7D> /x8e/xa6/xbe/xe1 <CJK> +<U00021B82> /x8e/xa6/xbe/xe2 <CJK> +<U00021B80> /x8e/xa6/xbe/xe3 <CJK> +<U3779> /x8e/xa6/xbe/xe4 <CJK> +<U000202D3> /x8e/xa6/xbe/xe5 <CJK> +<U00021BF2> /x8e/xa6/xbe/xe6 <CJK> +<U00021C66> /x8e/xa6/xbe/xe7 <CJK> +<U00021C8C> /x8e/xa6/xbe/xe8 <CJK> +<U00021C7B> /x8e/xa6/xbe/xe9 <CJK> +<U00021C83> /x8e/xa6/xbe/xea <CJK> +<U3798> /x8e/xa6/xbe/xeb <CJK> +<U00021C8E> /x8e/xa6/xbe/xec <CJK> +<U00021C7A> /x8e/xa6/xbe/xed <CJK> +<U00021C92> /x8e/xa6/xbe/xee <CJK> +<U00021C91> /x8e/xa6/xbe/xef <CJK> +<U00021C82> /x8e/xa6/xbe/xf0 <CJK> +<U00021D1B> /x8e/xa6/xbe/xf1 <CJK> +<U00021D1C> /x8e/xa6/xbe/xf2 <CJK> +<U00021E27> /x8e/xa6/xbe/xf3 <CJK> +<U00021E21> /x8e/xa6/xbe/xf4 <CJK> +<U37DC> /x8e/xa6/xbe/xf5 <CJK> +<U00021E43> /x8e/xa6/xbe/xf7 <CJK> +<U37DF> /x8e/xa6/xbe/xf8 <CJK> +<U00021E18> /x8e/xa6/xbe/xf9 <CJK> +<U00021E7B> /x8e/xa6/xbe/xfa <CJK> +<U00021E1A> /x8e/xa6/xbe/xfb <CJK> +<U00021E4B> /x8e/xa6/xbe/xfc <CJK> +<U00021E4A> /x8e/xa6/xbe/xfd <CJK> +<U00021E4D> /x8e/xa6/xbe/xfe <CJK> +<U00021E4F> /x8e/xa6/xbf/xa1 <CJK> +<U00021E19> /x8e/xa6/xbf/xa2 <CJK> +<U00021E35> /x8e/xa6/xbf/xa3 <CJK> +<U00021E13> /x8e/xa6/xbf/xa4 <CJK> +<U00021E52> /x8e/xa6/xbf/xa5 <CJK> +<U00021E14> /x8e/xa6/xbf/xa6 <CJK> +<U00021E1E> /x8e/xa6/xbf/xa7 <CJK> +<U00021E2C> /x8e/xa6/xbf/xa8 <CJK> +<U00021E20> /x8e/xa6/xbf/xa9 <CJK> +<U00021E22> /x8e/xa6/xbf/xaa <CJK> +<U00021E12> /x8e/xa6/xbf/xab <CJK> +<U00021E1F> /x8e/xa6/xbf/xac <CJK> +<U00022000> /x8e/xa6/xbf/xad <CJK> +<U00022023> /x8e/xa6/xbf/xae <CJK> +<U00022040> /x8e/xa6/xbf/xaf <CJK> +<U00022043> /x8e/xa6/xbf/xb0 <CJK> +<U000220E4> /x8e/xa6/xbf/xb1 <CJK> +<U000220DB> /x8e/xa6/xbf/xb2 <CJK> +<U000220EA> /x8e/xa6/xbf/xb3 <CJK> +<U000220DD> /x8e/xa6/xbf/xb4 <CJK> +<U000220CC> /x8e/xa6/xbf/xb5 <CJK> +<U000220D9> /x8e/xa6/xbf/xb6 <CJK> +<U000220E8> /x8e/xa6/xbf/xb7 <CJK> +<U000220F6> /x8e/xa6/xbf/xb8 <CJK> +<U000220E3> /x8e/xa6/xbf/xb9 <CJK> +<U000220D3> /x8e/xa6/xbf/xba <CJK> +<U000220DA> /x8e/xa6/xbf/xbb <CJK> +<U000220D6> /x8e/xa6/xbf/xbc <CJK> +<U000220E7> /x8e/xa6/xbf/xbd <CJK> +<U0002223A> /x8e/xa6/xbf/xbe <CJK> +<U0002223F> /x8e/xa6/xbf/xbf <CJK> +<U00022240> /x8e/xa6/xbf/xc0 <CJK> +<U00022248> /x8e/xa6/xbf/xc1 <CJK> +<U00022259> /x8e/xa6/xbf/xc2 <CJK> +<U00022237> /x8e/xa6/xbf/xc3 <CJK> +<U00022244> /x8e/xa6/xbf/xc4 <CJK> +<U00022255> /x8e/xa6/xbf/xc7 <CJK> +<U00022239> /x8e/xa6/xbf/xc8 <CJK> +<U00022354> /x8e/xa6/xbf/xc9 <CJK> +<U00022355> /x8e/xa6/xbf/xca <CJK> +<U00022356> /x8e/xa6/xbf/xcb <CJK> +<U00022357> /x8e/xa6/xbf/xcc <CJK> +<U00022358> /x8e/xa6/xbf/xcd <CJK> +<U00022359> /x8e/xa6/xbf/xce <CJK> +<U0002238D> /x8e/xa6/xbf/xcf <CJK> +<U000223F2> /x8e/xa6/xbf/xd0 <CJK> +<U000223F8> /x8e/xa6/xbf/xd1 <CJK> +<U000223F5> /x8e/xa6/xbf/xd2 <CJK> +<U000223F6> /x8e/xa6/xbf/xd3 <CJK> +<U000223FC> /x8e/xa6/xbf/xd4 <CJK> +<U000223FE> /x8e/xa6/xbf/xd5 <CJK> +<U000223F1> /x8e/xa6/xbf/xd6 <CJK> +<U000223FD> /x8e/xa6/xbf/xd7 <CJK> +<U0002245E> /x8e/xa6/xbf/xd8 <CJK> +<U00022496> /x8e/xa6/xbf/xd9 <CJK> +<U00022497> /x8e/xa6/xbf/xda <CJK> +<U0002249C> /x8e/xa6/xbf/xdb <CJK> +<U0002249B> /x8e/xa6/xbf/xdc <CJK> +<U00022495> /x8e/xa6/xbf/xdd <CJK> +<U0002251A> /x8e/xa6/xbf/xdf <CJK> +<U00022509> /x8e/xa6/xbf/xe0 <CJK> +<U00022504> /x8e/xa6/xbf/xe1 <CJK> +<U0002250E> /x8e/xa6/xbf/xe2 <CJK> +<U0002251C> /x8e/xa6/xbf/xe3 <CJK> +<U00022518> /x8e/xa6/xbf/xe4 <CJK> +<U0002250D> /x8e/xa6/xbf/xe5 <CJK> +<U00022510> /x8e/xa6/xbf/xe6 <CJK> +<U0002250C> /x8e/xa6/xbf/xe7 <CJK> +<U00022503> /x8e/xa6/xbf/xe8 <CJK> +<U0002267B> /x8e/xa6/xbf/xe9 <CJK> +<U000226A6> /x8e/xa6/xbf/xea <CJK> +<U00022677> /x8e/xa6/xbf/xeb <CJK> +<U00022688> /x8e/xa6/xbf/xec <CJK> +<U00022674> /x8e/xa6/xbf/xed <CJK> +<U000226DA> /x8e/xa6/xbf/xee <CJK> +<U00022676> /x8e/xa6/xbf/xef <CJK> +<U00022678> /x8e/xa6/xbf/xf0 <CJK> +<U0002268A> /x8e/xa6/xbf/xf1 <CJK> +<U0002268F> /x8e/xa6/xbf/xf2 <CJK> +<U0002267D> /x8e/xa6/xbf/xf3 <CJK> +<U00022690> /x8e/xa6/xbf/xf4 <CJK> +<U000226ED> /x8e/xa6/xbf/xf5 <CJK> +<U000226D9> /x8e/xa6/xbf/xf6 <CJK> +<U000226D0> /x8e/xa6/xbf/xf7 <CJK> +<U0002271A> /x8e/xa6/xbf/xf8 <CJK> +<U000226D7> /x8e/xa6/xbf/xf9 <CJK> +<U000226E2> /x8e/xa6/xbf/xfa <CJK> +<U000226E1> /x8e/xa6/xbf/xfb <CJK> +<U000226C5> /x8e/xa6/xbf/xfc <CJK> +<U000226E0> /x8e/xa6/xbf/xfd <CJK> +<U000226CA> /x8e/xa6/xbf/xfe <CJK> +<U00022725> /x8e/xa6/xc0/xa1 <CJK> +<U000226CC> /x8e/xa6/xc0/xa2 <CJK> +<U000229C6> /x8e/xa6/xc0/xa4 <CJK> +<U000229C1> /x8e/xa6/xc0/xa5 <CJK> +<U00022A4D> /x8e/xa6/xc0/xa6 <CJK> +<U00022B4B> /x8e/xa6/xc0/xa7 <CJK> +<U00022B64> /x8e/xa6/xc0/xa8 <CJK> +<U00022B95> /x8e/xa6/xc0/xa9 <CJK> +<U00022B99> /x8e/xa6/xc0/xaa <CJK> +<U00022B94> /x8e/xa6/xc0/xac <CJK> +<U00022BA2> /x8e/xa6/xc0/xad <CJK> +<U00022BAE> /x8e/xa6/xc0/xae <CJK> +<U00022B9E> /x8e/xa6/xc0/xaf <CJK> +<U00022BA7> /x8e/xa6/xc0/xb0 <CJK> +<U00022B86> /x8e/xa6/xc0/xb1 <CJK> +<U39FD> /x8e/xa6/xc0/xb2 <CJK> +<U00022BA4> /x8e/xa6/xc0/xb3 <CJK> +<U00022B91> /x8e/xa6/xc0/xb4 <CJK> +<U00022B93> /x8e/xa6/xc0/xb5 <CJK> +<U00022B88> /x8e/xa6/xc0/xb7 <CJK> +<U00022ECD> /x8e/xa6/xc0/xb8 <CJK> +<U00022ECA> /x8e/xa6/xc0/xb9 <CJK> +<U00022F3F> /x8e/xa6/xc0/xba <CJK> +<U00022F40> /x8e/xa6/xc0/xbb <CJK> +<U00022F46> /x8e/xa6/xc0/xbc <CJK> +<U00022F41> /x8e/xa6/xc0/xbd <CJK> +<U00022F45> /x8e/xa6/xc0/xbe <CJK> +<U00022F58> /x8e/xa6/xc0/xbf <CJK> +<U00022F3B> /x8e/xa6/xc0/xc0 <CJK> +<U00022F48> /x8e/xa6/xc0/xc1 <CJK> +<U0002304E> /x8e/xa6/xc0/xc2 <CJK> +<U00023052> /x8e/xa6/xc0/xc3 <CJK> +<U0002304F> /x8e/xa6/xc0/xc4 <CJK> +<U0002307B> /x8e/xa6/xc0/xc5 <CJK> +<U0002307A> /x8e/xa6/xc0/xc6 <CJK> +<U000230A0> /x8e/xa6/xc0/xc7 <CJK> +<U0002309F> /x8e/xa6/xc0/xc8 <CJK> +<U000230FB> /x8e/xa6/xc0/xc9 <CJK> +<U000230F7> /x8e/xa6/xc0/xca <CJK> +<U000231B8> /x8e/xa6/xc0/xcb <CJK> +<U000231B9> /x8e/xa6/xc0/xcc <CJK> +<U000231BB> /x8e/xa6/xc0/xcd <CJK> +<U000231B7> /x8e/xa6/xc0/xce <CJK> +<U3AF4> /x8e/xa6/xc0/xcf <CJK> +<U000231BA> /x8e/xa6/xc0/xd0 <CJK> +<U3AEF> /x8e/xa6/xc0/xd1 <CJK> +<U000231DA> /x8e/xa6/xc0/xd2 <CJK> +<U000231B5> /x8e/xa6/xc0/xd3 <CJK> +<U000231BF> /x8e/xa6/xc0/xd4 <CJK> +<U000231BC> /x8e/xa6/xc0/xd5 <CJK> +<U000231C0> /x8e/xa6/xc0/xd6 <CJK> +<U00023375> /x8e/xa6/xc0/xd9 <CJK> +<U00023379> /x8e/xa6/xc0/xda <CJK> +<U00023376> /x8e/xa6/xc0/xdb <CJK> +<U00023435> /x8e/xa6/xc0/xdc <CJK> +<U00023440> /x8e/xa6/xc0/xdd <CJK> +<U000234C0> /x8e/xa6/xc0/xde <CJK> +<U00023481> /x8e/xa6/xc0/xdf <CJK> +<U000234AD> /x8e/xa6/xc0/xe0 <CJK> +<U000234AF> /x8e/xa6/xc0/xe1 <CJK> +<U000234AC> /x8e/xa6/xc0/xe2 <CJK> +<U0002348F> /x8e/xa6/xc0/xe3 <CJK> +<U000234A8> /x8e/xa6/xc0/xe4 <CJK> +<U000234AA> /x8e/xa6/xc0/xe5 <CJK> +<U000234A9> /x8e/xa6/xc0/xe6 <CJK> +<U00023488> /x8e/xa6/xc0/xe7 <CJK> +<U0002347F> /x8e/xa6/xc0/xe8 <CJK> +<U00023480> /x8e/xa6/xc0/xe9 <CJK> +<U000234BC> /x8e/xa6/xc0/xea <CJK> +<U000238AE> /x8e/xa6/xc0/xeb <CJK> +<U000238BB> /x8e/xa6/xc0/xec <CJK> +<U000238BD> /x8e/xa6/xc0/xed <CJK> +<U3C31> /x8e/xa6/xc0/xee <CJK> +<U00023978> /x8e/xa6/xc0/xef <CJK> +<U00023974> /x8e/xa6/xc0/xf0 <CJK> +<U00023A0C> /x8e/xa6/xc0/xf1 <CJK> +<U00023A11> /x8e/xa6/xc0/xf2 <CJK> +<U00023A08> /x8e/xa6/xc0/xf3 <CJK> +<U00023A06> /x8e/xa6/xc0/xf4 <CJK> +<U00023A10> /x8e/xa6/xc0/xf5 <CJK> +<U00023A8F> /x8e/xa6/xc0/xf6 <CJK> +<U00023A90> /x8e/xa6/xc0/xf7 <CJK> +<U00023A8D> /x8e/xa6/xc0/xf8 <CJK> +<U00023A8E> /x8e/xa6/xc0/xf9 <CJK> +<U00023A96> /x8e/xa6/xc0/xfa <CJK> +<U00023A95> /x8e/xa6/xc0/xfb <CJK> +<U00023B0B> /x8e/xa6/xc0/xfc <CJK> +<U00023B0C> /x8e/xa6/xc0/xfd <CJK> +<U00023B7C> /x8e/xa6/xc0/xfe <CJK> +<U00023B73> /x8e/xa6/xc1/xa1 <CJK> +<U00023B75> /x8e/xa6/xc1/xa2 <CJK> +<U00023B76> /x8e/xa6/xc1/xa3 <CJK> +<U00023B7D> /x8e/xa6/xc1/xa4 <CJK> +<U00023B78> /x8e/xa6/xc1/xa5 <CJK> +<U00023B71> /x8e/xa6/xc1/xa6 <CJK> +<U00023C4B> /x8e/xa6/xc1/xa7 <CJK> +<U00023C4E> /x8e/xa6/xc1/xa8 <CJK> +<U00023D33> /x8e/xa6/xc1/xa9 <CJK> +<U00023D32> /x8e/xa6/xc1/xaa <CJK> +<U3D03> /x8e/xa6/xc1/xab <CJK> +<U00023D91> /x8e/xa6/xc1/xac <CJK> +<U00023DE7> /x8e/xa6/xc1/xad <CJK> +<U00023DE9> /x8e/xa6/xc1/xae <CJK> +<U00023DA2> /x8e/xa6/xc1/xaf <CJK> +<U00023D94> /x8e/xa6/xc1/xb0 <CJK> +<U00023D87> /x8e/xa6/xc1/xb1 <CJK> +<U00023DA3> /x8e/xa6/xc1/xb2 <CJK> +<U00023DDD> /x8e/xa6/xc1/xb3 <CJK> +<U00023D7B> /x8e/xa6/xc1/xb4 <CJK> +<U00023D83> /x8e/xa6/xc1/xb5 <CJK> +<U00023D81> /x8e/xa6/xc1/xb6 <CJK> +<U00023DDF> /x8e/xa6/xc1/xb7 <CJK> +<U00023D7C> /x8e/xa6/xc1/xb8 <CJK> +<U00023DE4> /x8e/xa6/xc1/xb9 <CJK> +<U00023DE2> /x8e/xa6/xc1/xba <CJK> +<U00023D93> /x8e/xa6/xc1/xbb <CJK> +<U00023D7D> /x8e/xa6/xc1/xbc <CJK> +<U00023DBF> /x8e/xa6/xc1/xbd <CJK> +<U00023D9B> /x8e/xa6/xc1/xbe <CJK> +<U00023D8E> /x8e/xa6/xc1/xbf <CJK> +<U00023D9F> /x8e/xa6/xc1/xc0 <CJK> +<U3D09> /x8e/xa6/xc1/xc1 <CJK> +<U00023D8C> /x8e/xa6/xc1/xc2 <CJK> +<U00023D7F> /x8e/xa6/xc1/xc3 <CJK> +<U00023D9C> /x8e/xa6/xc1/xc4 <CJK> +<U00023D84> /x8e/xa6/xc1/xc5 <CJK> +<U00023D42> /x8e/xa6/xc1/xc6 <CJK> +<U00023DE6> /x8e/xa6/xc1/xc7 <CJK> +<U00024251> /x8e/xa6/xc1/xc8 <CJK> +<U0002424A> /x8e/xa6/xc1/xc9 <CJK> +<U00024264> /x8e/xa6/xc1/xca <CJK> +<U00024225> /x8e/xa6/xc1/xcb <CJK> +<U0002422F> /x8e/xa6/xc1/xcc <CJK> +<U0002422E> /x8e/xa6/xc1/xcd <CJK> +<U0002422B> /x8e/xa6/xc1/xce <CJK> +<U00024228> /x8e/xa6/xc1/xcf <CJK> +<U00024232> /x8e/xa6/xc1/xd0 <CJK> +<U0002422D> /x8e/xa6/xc1/xd1 <CJK> +<U00024231> /x8e/xa6/xc1/xd2 <CJK> +<U00024239> /x8e/xa6/xc1/xd3 <CJK> +<U0002422C> /x8e/xa6/xc1/xd4 <CJK> +<U00024261> /x8e/xa6/xc1/xd5 <CJK> +<U00024511> /x8e/xa6/xc1/xd6 <CJK> +<U00024510> /x8e/xa6/xc1/xd7 <CJK> +<U00024512> /x8e/xa6/xc1/xd8 <CJK> +<U00024553> /x8e/xa6/xc1/xd9 <CJK> +<U00024555> /x8e/xa6/xc1/xda <CJK> +<U0002457B> /x8e/xa6/xc1/xdb <CJK> +<U00024581> /x8e/xa6/xc1/xdc <CJK> +<U0002457D> /x8e/xa6/xc1/xdd <CJK> +<U0002457C> /x8e/xa6/xc1/xde <CJK> +<U000245C2> /x8e/xa6/xc1/xdf <CJK> +<U000245C5> /x8e/xa6/xc1/xe0 <CJK> +<U000245C4> /x8e/xa6/xc1/xe2 <CJK> +<U0002466B> /x8e/xa6/xc1/xe4 <CJK> +<U00024668> /x8e/xa6/xc1/xe5 <CJK> +<U3E3E> /x8e/xa6/xc1/xe6 <CJK> +<U0002465C> /x8e/xa6/xc1/xe7 <CJK> +<U0002465D> /x8e/xa6/xc1/xe8 <CJK> +<U0002466A> /x8e/xa6/xc1/xe9 <CJK> +<U00024C76> /x8e/xa6/xc1/xeb <CJK> +<U00024776> /x8e/xa6/xc1/xec <CJK> +<U3E77> /x8e/xa6/xc1/xed <CJK> +<U000247C4> /x8e/xa6/xc1/xee <CJK> +<U000247CB> /x8e/xa6/xc1/xef <CJK> +<U000247C8> /x8e/xa6/xc1/xf0 <CJK> +<U000247D4> /x8e/xa6/xc1/xf1 <CJK> +<U000247D5> /x8e/xa6/xc1/xf2 <CJK> +<U000247C9> /x8e/xa6/xc1/xf3 <CJK> +<U000247D7> /x8e/xa6/xc1/xf4 <CJK> +<U3E7B> /x8e/xa6/xc1/xf5 <CJK> +<U00024978> /x8e/xa6/xc1/xf6 <CJK> +<U0002495A> /x8e/xa6/xc1/xf7 <CJK> +<U0002495B> /x8e/xa6/xc1/xf8 <CJK> +<U0002495C> /x8e/xa6/xc1/xf9 <CJK> +<U00024956> /x8e/xa6/xc1/xfa <CJK> +<U00024958> /x8e/xa6/xc1/xfb <CJK> +<U00024971> /x8e/xa6/xc1/xfc <CJK> +<U000269D4> /x8e/xa6/xc1/xfd <CJK> +<U00024B40> /x8e/xa6/xc1/xfe <CJK> +<U00024B3F> /x8e/xa6/xc2/xa2 <CJK> +<U00024B43> /x8e/xa6/xc2/xa3 <CJK> +<U00024B41> /x8e/xa6/xc2/xa4 <CJK> +<U00024BE2> /x8e/xa6/xc2/xa5 <CJK> +<U00024BE0> /x8e/xa6/xc2/xa6 <CJK> +<U00024BE3> /x8e/xa6/xc2/xa7 <CJK> +<U00024C66> /x8e/xa6/xc2/xa8 <CJK> +<U00024C73> /x8e/xa6/xc2/xa9 <CJK> +<U00024C6C> /x8e/xa6/xc2/xaa <CJK> +<U00024C71> /x8e/xa6/xc2/xab <CJK> +<U00024C6A> /x8e/xa6/xc2/xac <CJK> +<U00024C6D> /x8e/xa6/xc2/xad <CJK> +<U00024C6E> /x8e/xa6/xc2/xae <CJK> +<U00024C6B> /x8e/xa6/xc2/xaf <CJK> +<U00024D8C> /x8e/xa6/xc2/xb0 <CJK> +<U00024D77> /x8e/xa6/xc2/xb1 <CJK> +<U00024D7F> /x8e/xa6/xc2/xb3 <CJK> +<U00024D89> /x8e/xa6/xc2/xb4 <CJK> +<U00024D7A> /x8e/xa6/xc2/xb5 <CJK> +<U00024D85> /x8e/xa6/xc2/xb6 <CJK> +<U00024D78> /x8e/xa6/xc2/xb7 <CJK> +<U00024D8A> /x8e/xa6/xc2/xb8 <CJK> +<U00024D86> /x8e/xa6/xc2/xb9 <CJK> +<U00024F2C> /x8e/xa6/xc2/xba <CJK> +<U00024F67> /x8e/xa6/xc2/xbb <CJK> +<U00024F5B> /x8e/xa6/xc2/xbc <CJK> +<U00024FE5> /x8e/xa6/xc2/xbd <CJK> +<U00024FE1> /x8e/xa6/xc2/xbe <CJK> +<U00025061> /x8e/xa6/xc2/xbf <CJK> +<U00025069> /x8e/xa6/xc2/xc0 <CJK> +<U0002506A> /x8e/xa6/xc2/xc1 <CJK> +<U00025165> /x8e/xa6/xc2/xc2 <CJK> +<U0002516D> /x8e/xa6/xc2/xc3 <CJK> +<U00025163> /x8e/xa6/xc2/xc4 <CJK> +<U00025186> /x8e/xa6/xc2/xc5 <CJK> +<U0002515C> /x8e/xa6/xc2/xc6 <CJK> +<U00025162> /x8e/xa6/xc2/xc7 <CJK> +<U00025179> /x8e/xa6/xc2/xc9 <CJK> +<U00025169> /x8e/xa6/xc2/xca <CJK> +<U00025170> /x8e/xa6/xc2/xcb <CJK> +<U00025176> /x8e/xa6/xc2/xcc <CJK> +<U0002515D> /x8e/xa6/xc2/xcd <CJK> +<U00025187> /x8e/xa6/xc2/xce <CJK> +<U0002516E> /x8e/xa6/xc2/xcf <CJK> +<U00025171> /x8e/xa6/xc2/xd0 <CJK> +<U0002517C> /x8e/xa6/xc2/xd1 <CJK> +<U00025173> /x8e/xa6/xc2/xd2 <CJK> +<U0002515B> /x8e/xa6/xc2/xd3 <CJK> +<U0002516B> /x8e/xa6/xc2/xd4 <CJK> +<U000253BF> /x8e/xa6/xc2/xd5 <CJK> +<U000253C1> /x8e/xa6/xc2/xd6 <CJK> +<U000253BD> /x8e/xa6/xc2/xd7 <CJK> +<U000253C9> /x8e/xa6/xc2/xd8 <CJK> +<U000253BC> /x8e/xa6/xc2/xd9 <CJK> +<U000253C2> /x8e/xa6/xc2/xda <CJK> +<U000253C0> /x8e/xa6/xc2/xdb <CJK> +<U00025492> /x8e/xa6/xc2/xdc <CJK> +<U000254A9> /x8e/xa6/xc2/xdd <CJK> +<U0002548F> /x8e/xa6/xc2/xde <CJK> +<U00025476> /x8e/xa6/xc2/xdf <CJK> +<U0002547B> /x8e/xa6/xc2/xe0 <CJK> +<U00025475> /x8e/xa6/xc2/xe1 <CJK> +<U000254A4> /x8e/xa6/xc2/xe2 <CJK> +<U00025664> /x8e/xa6/xc2/xe3 <CJK> +<U0002573D> /x8e/xa6/xc2/xe4 <CJK> +<U000257AF> /x8e/xa6/xc2/xe5 <CJK> +<U413A> /x8e/xa6/xc2/xe6 <CJK> +<U0002579D> /x8e/xa6/xc2/xe8 <CJK> +<U00025799> /x8e/xa6/xc2/xe9 <CJK> +<U000257B1> /x8e/xa6/xc2/xea <CJK> +<U00025963> /x8e/xa6/xc2/xeb <CJK> +<U00025962> /x8e/xa6/xc2/xec <CJK> +<U00025964> /x8e/xa6/xc2/xed <CJK> +<U00025969> /x8e/xa6/xc2/xee <CJK> +<U41A0> /x8e/xa6/xc2/xef <CJK> +<U00025A75> /x8e/xa6/xc2/xf0 <CJK> +<U00025A73> /x8e/xa6/xc2/xf1 <CJK> +<U00025A71> /x8e/xa6/xc2/xf2 <CJK> +<U00025A74> /x8e/xa6/xc2/xf3 <CJK> +<U00025B0C> /x8e/xa6/xc2/xf4 <CJK> +<U00025B16> /x8e/xa6/xc2/xf5 <CJK> +<U41E5> /x8e/xa6/xc2/xf6 <CJK> +<U00025B11> /x8e/xa6/xc2/xf7 <CJK> +<U00025B1F> /x8e/xa6/xc2/xf8 <CJK> +<U00025B1A> /x8e/xa6/xc2/xf9 <CJK> +<U00025B0D> /x8e/xa6/xc2/xfa <CJK> +<U00025B1B> /x8e/xa6/xc2/xfb <CJK> +<U00025B13> /x8e/xa6/xc2/xfc <CJK> +<U00025E4E> /x8e/xa6/xc2/xfd <CJK> +<U00025E55> /x8e/xa6/xc2/xfe <CJK> +<U00025E50> /x8e/xa6/xc3/xa1 <CJK> +<U427D> /x8e/xa6/xc3/xa2 <CJK> +<U00025FD2> /x8e/xa6/xc3/xa3 <CJK> +<U00025FD3> /x8e/xa6/xc3/xa4 <CJK> +<U00025FD1> /x8e/xa6/xc3/xa5 <CJK> +<U00025FF1> /x8e/xa6/xc3/xa6 <CJK> +<U00025FDC> /x8e/xa6/xc3/xa7 <CJK> +<U00025FC8> /x8e/xa6/xc3/xa8 <CJK> +<U00025FCC> /x8e/xa6/xc3/xa9 <CJK> +<U00025FD0> /x8e/xa6/xc3/xaa <CJK> +<U00025FCF> /x8e/xa6/xc3/xab <CJK> +<U00025FDF> /x8e/xa6/xc3/xac <CJK> +<U0002622B> /x8e/xa6/xc3/xad <CJK> +<U0002622E> /x8e/xa6/xc3/xae <CJK> +<U0002622D> /x8e/xa6/xc3/xaf <CJK> +<U0002629D> /x8e/xa6/xc3/xb0 <CJK> +<U0002629E> /x8e/xa6/xc3/xb1 <CJK> +<U0002629F> /x8e/xa6/xc3/xb2 <CJK> +<U000262A9> /x8e/xa6/xc3/xb3 <CJK> +<U000262A0> /x8e/xa6/xc3/xb4 <CJK> +<U00026298> /x8e/xa6/xc3/xb5 <CJK> +<U000262A1> /x8e/xa6/xc3/xb6 <CJK> +<U000262AB> /x8e/xa6/xc3/xb7 <CJK> +<U000262AF> /x8e/xa6/xc3/xb8 <CJK> +<U0002636E> /x8e/xa6/xc3/xb9 <CJK> +<U0002635F> /x8e/xa6/xc3/xba <CJK> +<U0002635A> /x8e/xa6/xc3/xbb <CJK> +<U436D> /x8e/xa6/xc3/xbc <CJK> +<U00026365> /x8e/xa6/xc3/xbd <CJK> +<U00026368> /x8e/xa6/xc3/xbe <CJK> +<U00026372> /x8e/xa6/xc3/xbf <CJK> +<U00026417> /x8e/xa6/xc3/xc0 <CJK> +<U00026416> /x8e/xa6/xc3/xc1 <CJK> +<U00026418> /x8e/xa6/xc3/xc2 <CJK> +<U00026419> /x8e/xa6/xc3/xc3 <CJK> +<U0002641A> /x8e/xa6/xc3/xc4 <CJK> +<U00026422> /x8e/xa6/xc3/xc5 <CJK> +<U0002641B> /x8e/xa6/xc3/xc6 <CJK> +<U0002641C> /x8e/xa6/xc3/xc7 <CJK> +<U000264BE> /x8e/xa6/xc3/xc8 <CJK> +<U000264EE> /x8e/xa6/xc3/xc9 <CJK> +<U0002655A> /x8e/xa6/xc3/xca <CJK> +<U00026550> /x8e/xa6/xc3/xcb <CJK> +<U00026558> /x8e/xa6/xc3/xcc <CJK> +<U00026554> /x8e/xa6/xc3/xcd <CJK> +<U00026557> /x8e/xa6/xc3/xce <CJK> +<U00026556> /x8e/xa6/xc3/xcf <CJK> +<U00026615> /x8e/xa6/xc3/xd0 <CJK> +<U0002669B> /x8e/xa6/xc3/xd1 <CJK> +<U00026693> /x8e/xa6/xc3/xd2 <CJK> +<U00026692> /x8e/xa6/xc3/xd3 <CJK> +<U00026672> /x8e/xa6/xc3/xd4 <CJK> +<U00026698> /x8e/xa6/xc3/xd5 <CJK> +<U00026699> /x8e/xa6/xc3/xd6 <CJK> +<U000266DF> /x8e/xa6/xc3/xd7 <CJK> +<U43F8> /x8e/xa6/xc3/xd8 <CJK> +<U000266D5> /x8e/xa6/xc3/xd9 <CJK> +<U8158> /x8e/xa6/xc3/xda <CJK> +<U000266D4> /x8e/xa6/xc3/xdb <CJK> +<U000266F3> /x8e/xa6/xc3/xdc <CJK> +<U000266F4> /x8e/xa6/xc3/xdd <CJK> +<U000266E7> /x8e/xa6/xc3/xde <CJK> +<U000266E1> /x8e/xa6/xc3/xdf <CJK> +<U000266E6> /x8e/xa6/xc3/xe0 <CJK> +<U000266EB> /x8e/xa6/xc3/xe1 <CJK> +<U000266EC> /x8e/xa6/xc3/xe2 <CJK> +<U000202DB> /x8e/xa6/xc3/xe3 <CJK> +<U4450> /x8e/xa6/xc3/xe4 <CJK> +<U0002690D> /x8e/xa6/xc3/xe5 <CJK> +<U0002690C> /x8e/xa6/xc3/xe6 <CJK> +<U00021B2F> /x8e/xa6/xc3/xe7 <CJK> +<U00026968> /x8e/xa6/xc3/xe8 <CJK> +<U00026965> /x8e/xa6/xc3/xe9 <CJK> +<U0002696B> /x8e/xa6/xc3/xea <CJK> +<U00026969> /x8e/xa6/xc3/xeb <CJK> +<U000269D1> /x8e/xa6/xc3/xec <CJK> +<U000269D3> /x8e/xa6/xc3/xed <CJK> +<U00026A27> /x8e/xa6/xc3/xee <CJK> +<U00026A28> /x8e/xa6/xc3/xef <CJK> +<U4468> /x8e/xa6/xc3/xf0 <CJK> +<U4467> /x8e/xa6/xc3/xf1 <CJK> +<U00026A24> /x8e/xa6/xc3/xf2 <CJK> +<U00026AD7> /x8e/xa6/xc3/xf3 <CJK> +<U00026BCA> /x8e/xa6/xc3/xf4 <CJK> +<U00026BC7> /x8e/xa6/xc3/xf5 <CJK> +<U00026BD8> /x8e/xa6/xc3/xf7 <CJK> +<U00026BE1> /x8e/xa6/xc3/xf8 <CJK> +<U00026BC6> /x8e/xa6/xc3/xf9 <CJK> +<U00026BF8> /x8e/xa6/xc3/xfa <CJK> +<U00026BC3> /x8e/xa6/xc3/xfb <CJK> +<U00026BF4> /x8e/xa6/xc3/xfc <CJK> +<U00026C17> /x8e/xa6/xc3/xfd <CJK> +<U00026BEA> /x8e/xa6/xc3/xfe <CJK> +<U00026BCB> /x8e/xa6/xc4/xa1 <CJK> +<U00026B86> /x8e/xa6/xc4/xa2 <CJK> +<U00026BC4> /x8e/xa6/xc4/xa3 <CJK> +<U00026BD9> /x8e/xa6/xc4/xa4 <CJK> +<U00026C19> /x8e/xa6/xc4/xa5 <CJK> +<U00026BC2> /x8e/xa6/xc4/xa6 <CJK> +<U00026BE2> /x8e/xa6/xc4/xa7 <CJK> +<U44CF> /x8e/xa6/xc4/xa8 <CJK> +<U00026BDE> /x8e/xa6/xc4/xa9 <CJK> +<U00026BED> /x8e/xa6/xc4/xaa <CJK> +<U44CD> /x8e/xa6/xc4/xac <CJK> +<U00026C1D> /x8e/xa6/xc4/xad <CJK> +<U00026BDD> /x8e/xa6/xc4/xae <CJK> +<U00026BDB> /x8e/xa6/xc4/xaf <CJK> +<U00026BE8> /x8e/xa6/xc4/xb0 <CJK> +<U00026BE9> /x8e/xa6/xc4/xb1 <CJK> +<U00026BBF> /x8e/xa6/xc4/xb2 <CJK> +<U00026BE0> /x8e/xa6/xc4/xb3 <CJK> +<U00026BD1> /x8e/xa6/xc4/xb4 <CJK> +<U00026BDC> /x8e/xa6/xc4/xb5 <CJK> +<U00026BCE> /x8e/xa6/xc4/xb6 <CJK> +<U00026C1E> /x8e/xa6/xc4/xb7 <CJK> +<U00026BCC> /x8e/xa6/xc4/xb8 <CJK> +<U00026BF2> /x8e/xa6/xc4/xb9 <CJK> +<U00026BF3> /x8e/xa6/xc4/xba <CJK> +<U000271AB> /x8e/xa6/xc4/xbf <CJK> +<U000271AA> /x8e/xa6/xc4/xc0 <CJK> +<U000271A7> /x8e/xa6/xc4/xc1 <CJK> +<U000271A9> /x8e/xa6/xc4/xc2 <CJK> +<U00027288> /x8e/xa6/xc4/xc3 <CJK> +<U00027275> /x8e/xa6/xc4/xc4 <CJK> +<U00027260> /x8e/xa6/xc4/xc5 <CJK> +<U0002726C> /x8e/xa6/xc4/xc6 <CJK> +<U00027273> /x8e/xa6/xc4/xc7 <CJK> +<U45AB> /x8e/xa6/xc4/xc8 <CJK> +<U0002726E> /x8e/xa6/xc4/xc9 <CJK> +<U00027274> /x8e/xa6/xc4/xca <CJK> +<U00027276> /x8e/xa6/xc4/xcb <CJK> +<U00027268> /x8e/xa6/xc4/xcc <CJK> +<U00027277> /x8e/xa6/xc4/xcd <CJK> +<U00027286> /x8e/xa6/xc4/xce <CJK> +<U000275EA> /x8e/xa6/xc4/xcf <CJK> +<U00027651> /x8e/xa6/xc4/xd0 <CJK> +<U00027650> /x8e/xa6/xc4/xd1 <CJK> +<U00027658> /x8e/xa6/xc4/xd2 <CJK> +<U0002764D> /x8e/xa6/xc4/xd3 <CJK> +<U0002764F> /x8e/xa6/xc4/xd4 <CJK> +<U0002764E> /x8e/xa6/xc4/xd5 <CJK> +<U0002765C> /x8e/xa6/xc4/xd6 <CJK> +<U00027652> /x8e/xa6/xc4/xd7 <CJK> +<U00027644> /x8e/xa6/xc4/xd8 <CJK> +<U0002764A> /x8e/xa6/xc4/xd9 <CJK> +<U0002764B> /x8e/xa6/xc4/xda <CJK> +<U000277EA> /x8e/xa6/xc4/xdb <CJK> +<U00027810> /x8e/xa6/xc4/xdc <CJK> +<U00027811> /x8e/xa6/xc4/xdd <CJK> +<U000278CD> /x8e/xa6/xc4/xde <CJK> +<U000278BF> /x8e/xa6/xc4/xdf <CJK> +<U000278C4> /x8e/xa6/xc4/xe0 <CJK> +<U000278D0> /x8e/xa6/xc4/xe1 <CJK> +<U000278CE> /x8e/xa6/xc4/xe2 <CJK> +<U000278C0> /x8e/xa6/xc4/xe3 <CJK> +<U000278C2> /x8e/xa6/xc4/xe4 <CJK> +<U000278CF> /x8e/xa6/xc4/xe5 <CJK> +<U000278C9> /x8e/xa6/xc4/xe6 <CJK> +<U000278BB> /x8e/xa6/xc4/xe7 <CJK> +<U00027997> /x8e/xa6/xc4/xe8 <CJK> +<U00027992> /x8e/xa6/xc4/xe9 <CJK> +<U0002796F> /x8e/xa6/xc4/xea <CJK> +<U0002797E> /x8e/xa6/xc4/xeb <CJK> +<U0002799A> /x8e/xa6/xc4/xec <CJK> +<U46C1> /x8e/xa6/xc4/xed <CJK> +<U00027986> /x8e/xa6/xc4/xee <CJK> +<U00027973> /x8e/xa6/xc4/xef <CJK> +<U8A24> /x8e/xa6/xc4/xf0 <CJK> +<U00027977> /x8e/xa6/xc4/xf1 <CJK> +<U0002798F> /x8e/xa6/xc4/xf2 <CJK> +<U00027970> /x8e/xa6/xc4/xf3 <CJK> +<U00027981> /x8e/xa6/xc4/xf4 <CJK> +<U00027982> /x8e/xa6/xc4/xf5 <CJK> +<U00027999> /x8e/xa6/xc4/xf6 <CJK> +<U0002797D> /x8e/xa6/xc4/xf7 <CJK> +<U0002797F> /x8e/xa6/xc4/xf8 <CJK> +<U0002797B> /x8e/xa6/xc4/xf9 <CJK> +<U00027987> /x8e/xa6/xc4/xfa <CJK> +<U00027BB2> /x8e/xa6/xc4/xfb <CJK> +<U00027C2F> /x8e/xa6/xc4/xfc <CJK> +<U00027C34> /x8e/xa6/xc4/xfd <CJK> +<U00027C2E> /x8e/xa6/xc4/xfe <CJK> +<U00027C32> /x8e/xa6/xc5/xa1 <CJK> +<U4747> /x8e/xa6/xc5/xa2 <CJK> +<U00027CAA> /x8e/xa6/xc5/xa3 <CJK> +<U4757> /x8e/xa6/xc5/xa4 <CJK> +<U00027CA9> /x8e/xa6/xc5/xa5 <CJK> +<U00027D38> /x8e/xa6/xc5/xa6 <CJK> +<U00027D36> /x8e/xa6/xc5/xa7 <CJK> +<U00027D37> /x8e/xa6/xc5/xa8 <CJK> +<U00027D47> /x8e/xa6/xc5/xa9 <CJK> +<U00027D33> /x8e/xa6/xc5/xaa <CJK> +<U00027D39> /x8e/xa6/xc5/xab <CJK> +<U00027D35> /x8e/xa6/xc5/xac <CJK> +<U00027D44> /x8e/xa6/xc5/xad <CJK> +<U00027EA5> /x8e/xa6/xc5/xae <CJK> +<U00027EA6> /x8e/xa6/xc5/xaf <CJK> +<U00027E9E> /x8e/xa6/xc5/xb0 <CJK> +<U00027FE3> /x8e/xa6/xc5/xb1 <CJK> +<U00027FDF> /x8e/xa6/xc5/xb2 <CJK> +<U00027FD3> /x8e/xa6/xc5/xb3 <CJK> +<U00027FF1> /x8e/xa6/xc5/xb4 <CJK> +<U00027FE4> /x8e/xa6/xc5/xb5 <CJK> +<U00027FE0> /x8e/xa6/xc5/xb6 <CJK> +<U00027FD6> /x8e/xa6/xc5/xb7 <CJK> +<U8DC3> /x8e/xa6/xc5/xb8 <CJK> +<U00027FE6> /x8e/xa6/xc5/xb9 <CJK> +<U00027FD8> /x8e/xa6/xc5/xba <CJK> +<U00027FDE> /x8e/xa6/xc5/xbb <CJK> +<U00027FDB> /x8e/xa6/xc5/xbc <CJK> +<U00027FDC> /x8e/xa6/xc5/xbd <CJK> +<U0002821B> /x8e/xa6/xc5/xbe <CJK> +<U0002821F> /x8e/xa6/xc5/xbf <CJK> +<U0002821D> /x8e/xa6/xc5/xc0 <CJK> +<U0002821C> /x8e/xa6/xc5/xc1 <CJK> +<U0002821E> /x8e/xa6/xc5/xc2 <CJK> +<U00028220> /x8e/xa6/xc5/xc3 <CJK> +<U00028221> /x8e/xa6/xc5/xc4 <CJK> +<U484E> /x8e/xa6/xc5/xc5 <CJK> +<U000282B6> /x8e/xa6/xc5/xc6 <CJK> +<U000282BC> /x8e/xa6/xc5/xc7 <CJK> +<U000282C6> /x8e/xa6/xc5/xc8 <CJK> +<U000282C7> /x8e/xa6/xc5/xc9 <CJK> +<U000282BA> /x8e/xa6/xc5/xca <CJK> +<U000282BE> /x8e/xa6/xc5/xcb <CJK> +<U000282BD> /x8e/xa6/xc5/xcc <CJK> +<U000282B5> /x8e/xa6/xc5/xcd <CJK> +<U000282B4> /x8e/xa6/xc5/xce <CJK> +<U0002840F> /x8e/xa6/xc5/xcf <CJK> +<U00028462> /x8e/xa6/xc5/xd0 <CJK> +<U000284EB> /x8e/xa6/xc5/xd1 <CJK> +<U000284D9> /x8e/xa6/xc5/xd2 <CJK> +<U000284E4> /x8e/xa6/xc5/xd3 <CJK> +<U000284D7> /x8e/xa6/xc5/xd4 <CJK> +<U000284D8> /x8e/xa6/xc5/xd5 <CJK> +<U000284D6> /x8e/xa6/xc5/xd6 <CJK> +<U000284CE> /x8e/xa6/xc5/xd7 <CJK> +<U000284DD> /x8e/xa6/xc5/xd8 <CJK> +<U000284E7> /x8e/xa6/xc5/xd9 <CJK> +<U000284D2> /x8e/xa6/xc5/xda <CJK> +<U000284C5> /x8e/xa6/xc5/xdb <CJK> +<U000284C9> /x8e/xa6/xc5/xdc <CJK> +<U000284DB> /x8e/xa6/xc5/xdd <CJK> +<U00028692> /x8e/xa6/xc5/xde <CJK> +<U0002868A> /x8e/xa6/xc5/xdf <CJK> +<U0002868B> /x8e/xa6/xc5/xe0 <CJK> +<U00028689> /x8e/xa6/xc5/xe1 <CJK> +<U00028708> /x8e/xa6/xc5/xe2 <CJK> +<U00028703> /x8e/xa6/xc5/xe3 <CJK> +<U00028706> /x8e/xa6/xc5/xe4 <CJK> +<U00028705> /x8e/xa6/xc5/xe5 <CJK> +<U000286F5> /x8e/xa6/xc5/xe6 <CJK> +<U0002870B> /x8e/xa6/xc5/xe7 <CJK> +<U000286FB> /x8e/xa6/xc5/xe8 <CJK> +<U000287FC> /x8e/xa6/xc5/xe9 <CJK> +<U00028801> /x8e/xa6/xc5/xea <CJK> +<U00028802> /x8e/xa6/xc5/xeb <CJK> +<U000287FA> /x8e/xa6/xc5/xec <CJK> +<U00028808> /x8e/xa6/xc5/xed <CJK> +<U000287F7> /x8e/xa6/xc5/xee <CJK> +<U00028800> /x8e/xa6/xc5/xef <CJK> +<U000287FF> /x8e/xa6/xc5/xf0 <CJK> +<U00028806> /x8e/xa6/xc5/xf1 <CJK> +<U000287F6> /x8e/xa6/xc5/xf2 <CJK> +<U000287FB> /x8e/xa6/xc5/xf3 <CJK> +<U0002880A> /x8e/xa6/xc5/xf4 <CJK> +<U00028925> /x8e/xa6/xc5/xf5 <CJK> +<U00028943> /x8e/xa6/xc5/xf6 <CJK> +<U00028944> /x8e/xa6/xc5/xf7 <CJK> +<U00028C64> /x8e/xa6/xc5/xf8 <CJK> +<U00028C62> /x8e/xa6/xc5/xf9 <CJK> +<U00028C5E> /x8e/xa6/xc5/xfa <CJK> +<U00028C5B> /x8e/xa6/xc5/xfb <CJK> +<U00028CD6> /x8e/xa6/xc5/xfc <CJK> +<U00020072> /x8e/xa6/xc5/xfd <CJK> +<U000200C2> /x8e/xa6/xc5/xfe <CJK> +<U00028E77> /x8e/xa6/xc6/xa1 <CJK> +<U00028E82> /x8e/xa6/xc6/xa2 <CJK> +<U00028E7C> /x8e/xa6/xc6/xa3 <CJK> +<U00028E7D> /x8e/xa6/xc6/xa4 <CJK> +<U00028E86> /x8e/xa6/xc6/xa5 <CJK> +<U00028E81> /x8e/xa6/xc6/xa6 <CJK> +<U00028E84> /x8e/xa6/xc6/xa7 <CJK> +<U00028E76> /x8e/xa6/xc6/xa8 <CJK> +<U00028E83> /x8e/xa6/xc6/xa9 <CJK> +<U00028E7F> /x8e/xa6/xc6/xaa <CJK> +<U00028E7E> /x8e/xa6/xc6/xab <CJK> +<U00028F88> /x8e/xa6/xc6/xac <CJK> +<U00028F8D> /x8e/xa6/xc6/xad <CJK> +<U00028F8B> /x8e/xa6/xc6/xae <CJK> +<U00028F91> /x8e/xa6/xc6/xaf <CJK> +<U00028F8F> /x8e/xa6/xc6/xb0 <CJK> +<U0002907C> /x8e/xa6/xc6/xb1 <CJK> +<U00029079> /x8e/xa6/xc6/xb2 <CJK> +<U0002907A> /x8e/xa6/xc6/xb3 <CJK> +<U000291EA> /x8e/xa6/xc6/xb4 <CJK> +<U0002944C> /x8e/xa6/xc6/xb5 <CJK> +<U00029599> /x8e/xa6/xc6/xb6 <CJK> +<U000202D1> /x8e/xa6/xc6/xb7 <CJK> +<U0002968B> /x8e/xa6/xc6/xb8 <CJK> +<U0002968D> /x8e/xa6/xc6/xb9 <CJK> +<U0002968A> /x8e/xa6/xc6/xba <CJK> +<U0002968E> /x8e/xa6/xc6/xbb <CJK> +<U00029811> /x8e/xa6/xc6/xbc <CJK> +<U00022256> /x8e/xa6/xc6/xbd <CJK> +<U00020074> /x8e/xa6/xc6/xbf <CJK> +<U000200C3> /x8e/xa6/xc6/xc0 <CJK> +<U000200C4> /x8e/xa6/xc6/xc1 <CJK> +<U0002011B> /x8e/xa6/xc6/xc2 <CJK> +<U0002015F> /x8e/xa6/xc6/xc3 <CJK> +<U0002016A> /x8e/xa6/xc6/xc4 <CJK> +<U00020169> /x8e/xa6/xc6/xc5 <CJK> +<U0002016B> /x8e/xa6/xc6/xc6 <CJK> +<U0002030C> /x8e/xa6/xc6/xc7 <CJK> +<U000202F6> /x8e/xa6/xc6/xc8 <CJK> +<U000202ED> /x8e/xa6/xc6/xc9 <CJK> +<U00020329> /x8e/xa6/xc6/xca <CJK> +<U000202FE> /x8e/xa6/xc6/xcb <CJK> +<U000202F1> /x8e/xa6/xc6/xcc <CJK> +<U00020317> /x8e/xa6/xc6/xcd <CJK> +<U000202FF> /x8e/xa6/xc6/xce <CJK> +<U000202EE> /x8e/xa6/xc6/xcf <CJK> +<U000202FD> /x8e/xa6/xc6/xd0 <CJK> +<U0002031C> /x8e/xa6/xc6/xd1 <CJK> +<U000202FC> /x8e/xa6/xc6/xd2 <CJK> +<U00020300> /x8e/xa6/xc6/xd3 <CJK> +<U00020320> /x8e/xa6/xc6/xd4 <CJK> +<U3477> /x8e/xa6/xc6/xd5 <CJK> +<U000202F9> /x8e/xa6/xc6/xd6 <CJK> +<U00020367> /x8e/xa6/xc6/xd7 <CJK> +<U00020308> /x8e/xa6/xc6/xd8 <CJK> +<U0002049E> /x8e/xa6/xc6/xd9 <CJK> +<U000204F3> /x8e/xa6/xc6/xda <CJK> +<U00020525> /x8e/xa6/xc6/xdb <CJK> +<U00020527> /x8e/xa6/xc6/xdc <CJK> +<U0002051F> /x8e/xa6/xc6/xdd <CJK> +<U00020565> /x8e/xa6/xc6/xde <CJK> +<U00020563> /x8e/xa6/xc6/xdf <CJK> +<U00020594> /x8e/xa6/xc6/xe0 <CJK> +<U00020597> /x8e/xa6/xc6/xe1 <CJK> +<U000205F1> /x8e/xa6/xc6/xe2 <CJK> +<U0002065F> /x8e/xa6/xc6/xe3 <CJK> +<U00020662> /x8e/xa6/xc6/xe4 <CJK> +<U51F2> /x8e/xa6/xc6/xe5 <CJK> +<U00020660> /x8e/xa6/xc6/xe6 <CJK> +<U0002078C> /x8e/xa6/xc6/xe8 <CJK> +<U00020782> /x8e/xa6/xc6/xe9 <CJK> +<U00020790> /x8e/xa6/xc6/xea <CJK> +<U0002078B> /x8e/xa6/xc6/xeb <CJK> +<U0002078D> /x8e/xa6/xc6/xec <CJK> +<U00020781> /x8e/xa6/xc6/xed <CJK> +<U0002079D> /x8e/xa6/xc6/xee <CJK> +<U0002088E> /x8e/xa6/xc6/xef <CJK> +<U0002088F> /x8e/xa6/xc6/xf0 <CJK> +<U00020892> /x8e/xa6/xc6/xf1 <CJK> +<U00020923> /x8e/xa6/xc6/xf2 <CJK> +<U00020952> /x8e/xa6/xc6/xf3 <CJK> +<U00020A00> /x8e/xa6/xc6/xf5 <CJK> +<U00020A01> /x8e/xa6/xc6/xf6 <CJK> +<U00020A02> /x8e/xa6/xc6/xf7 <CJK> +<U00020A1F> /x8e/xa6/xc6/xf8 <CJK> +<U00020A8C> /x8e/xa6/xc6/xf9 <CJK> +<U00020A89> /x8e/xa6/xc6/xfa <CJK> +<U00020A8B> /x8e/xa6/xc6/xfb <CJK> +<U00020A88> /x8e/xa6/xc6/xfc <CJK> +<U00020A8D> /x8e/xa6/xc6/xfd <CJK> +<U00020A8F> /x8e/xa6/xc6/xfe <CJK> +<U00026385> /x8e/xa6/xc7/xa1 <CJK> +<U00020B00> /x8e/xa6/xc7/xa2 <CJK> +<U00020B05> /x8e/xa6/xc7/xa3 <CJK> +<U00020B01> /x8e/xa6/xc7/xa4 <CJK> +<U00020B68> /x8e/xa6/xc7/xa5 <CJK> +<U00020B6E> /x8e/xa6/xc7/xa6 <CJK> +<U00020B67> /x8e/xa6/xc7/xa7 <CJK> +<U00020B75> /x8e/xa6/xc7/xa8 <CJK> +<U55B6> /x8e/xa6/xc7/xa9 <CJK> +<U00020DD7> /x8e/xa6/xc7/xab <CJK> +<U00020048> /x8e/xa6/xc7/xad <CJK> +<U00020DD4> /x8e/xa6/xc7/xae <CJK> +<U00020DD8> /x8e/xa6/xc7/xaf <CJK> +<U00020DBA> /x8e/xa6/xc7/xb2 <CJK> +<U00020DDB> /x8e/xa6/xc7/xb4 <CJK> +<U00020DBF> /x8e/xa6/xc7/xb5 <CJK> +<U00020E35> /x8e/xa6/xc7/xb6 <CJK> +<U00020DBC> /x8e/xa6/xc7/xb7 <CJK> +<U00020DD9> /x8e/xa6/xc7/xb8 <CJK> +<U35C4> /x8e/xa6/xc7/xb9 <CJK> +<U00020DDD> /x8e/xa6/xc7/xba <CJK> +<U00020E00> /x8e/xa6/xc7/xbb <CJK> +<U00020DD5> /x8e/xa6/xc7/xbc <CJK> +<U00020E30> /x8e/xa6/xc7/xbd <CJK> +<U00020DBD> /x8e/xa6/xc7/xbe <CJK> +<U00020DDC> /x8e/xa6/xc7/xbf <CJK> +<U000211FD> /x8e/xa6/xc7/xc0 <CJK> +<U000211FE> /x8e/xa6/xc7/xc1 <CJK> +<U00021207> /x8e/xa6/xc7/xc2 <CJK> +<U00024517> /x8e/xa6/xc7/xc3 <CJK> +<U0002136F> /x8e/xa6/xc7/xc4 <CJK> +<U00021369> /x8e/xa6/xc7/xc5 <CJK> +<U00021370> /x8e/xa6/xc7/xc6 <CJK> +<U00021367> /x8e/xa6/xc7/xc7 <CJK> +<U000213A9> /x8e/xa6/xc7/xc8 <CJK> +<U00021395> /x8e/xa6/xc7/xc9 <CJK> +<U00021390> /x8e/xa6/xc7/xca <CJK> +<U0002136C> /x8e/xa6/xc7/xcb <CJK> +<U00021397> /x8e/xa6/xc7/xcc <CJK> +<U00021371> /x8e/xa6/xc7/xcd <CJK> +<U3652> /x8e/xa6/xc7/xce <CJK> +<U00021374> /x8e/xa6/xc7/xcf <CJK> +<U0002136D> /x8e/xa6/xc7/xd0 <CJK> +<U0002138E> /x8e/xa6/xc7/xd1 <CJK> +<U0002152F> /x8e/xa6/xc7/xd2 <CJK> +<U0002A31B> /x8e/xa6/xc7/xd3 <CJK> +<U000215A9> /x8e/xa6/xc7/xd4 <CJK> +<U0002164E> /x8e/xa6/xc7/xd5 <CJK> +<U0002165A> /x8e/xa6/xc7/xd7 <CJK> +<U00021648> /x8e/xa6/xc7/xd8 <CJK> +<U00021655> /x8e/xa6/xc7/xd9 <CJK> +<U0002164C> /x8e/xa6/xc7/xda <CJK> +<U00021649> /x8e/xa6/xc7/xdb <CJK> +<U0002164F> /x8e/xa6/xc7/xdc <CJK> +<U0002164A> /x8e/xa6/xc7/xdd <CJK> +<U000217D6> /x8e/xa6/xc7/xde <CJK> +<U000217A0> /x8e/xa6/xc7/xdf <CJK> +<U000217A9> /x8e/xa6/xc7/xe0 <CJK> +<U0002179D> /x8e/xa6/xc7/xe2 <CJK> +<U000217D4> /x8e/xa6/xc7/xe3 <CJK> +<U000217A4> /x8e/xa6/xc7/xe4 <CJK> +<U000217A8> /x8e/xa6/xc7/xe5 <CJK> +<U000217A6> /x8e/xa6/xc7/xe6 <CJK> +<U000217E6> /x8e/xa6/xc7/xe7 <CJK> +<U0002197D> /x8e/xa6/xc7/xe8 <CJK> +<U00021977> /x8e/xa6/xc7/xe9 <CJK> +<U0002197A> /x8e/xa6/xc7/xea <CJK> +<U00021A41> /x8e/xa6/xc7/xeb <CJK> +<U00021A49> /x8e/xa6/xc7/xec <CJK> +<U00021A59> /x8e/xa6/xc7/xed <CJK> +<U00021A45> /x8e/xa6/xc7/xee <CJK> +<U00021A48> /x8e/xa6/xc7/xef <CJK> +<U00021A40> /x8e/xa6/xc7/xf0 <CJK> +<U00021B8E> /x8e/xa6/xc7/xf1 <CJK> +<U00021B95> /x8e/xa6/xc7/xf2 <CJK> +<U00021B90> /x8e/xa6/xc7/xf3 <CJK> +<U00021BF7> /x8e/xa6/xc7/xf4 <CJK> +<U00021BF8> /x8e/xa6/xc7/xf5 <CJK> +<U00021BF6> /x8e/xa6/xc7/xf6 <CJK> +<U00021BFB> /x8e/xa6/xc7/xf7 <CJK> +<U00021C9E> /x8e/xa6/xc7/xf8 <CJK> +<U00021C9D> /x8e/xa6/xc7/xf9 <CJK> +<U00021C99> /x8e/xa6/xc7/xfa <CJK> +<U00021CA3> /x8e/xa6/xc7/xfc <CJK> +<U00021CA9> /x8e/xa6/xc7/xfd <CJK> +<U00021C98> /x8e/xa6/xc7/xfe <CJK> +<U00021CA0> /x8e/xa6/xc8/xa1 <CJK> +<U00021C96> /x8e/xa6/xc8/xa2 <CJK> +<U00021C94> /x8e/xa6/xc8/xa3 <CJK> +<U00021C95> /x8e/xa6/xc8/xa4 <CJK> +<U00021C9F> /x8e/xa6/xc8/xa5 <CJK> +<U00021CA1> /x8e/xa6/xc8/xa6 <CJK> +<U00021D21> /x8e/xa6/xc8/xa7 <CJK> +<U00021D1D> /x8e/xa6/xc8/xa8 <CJK> +<U00021D1F> /x8e/xa6/xc8/xa9 <CJK> +<U00021E6D> /x8e/xa6/xc8/xaa <CJK> +<U00021E9A> /x8e/xa6/xc8/xac <CJK> +<U00021E92> /x8e/xa6/xc8/xad <CJK> +<U00021E7A> /x8e/xa6/xc8/xae <CJK> +<U00021E7D> /x8e/xa6/xc8/xaf <CJK> +<U00021EA1> /x8e/xa6/xc8/xb0 <CJK> +<U00021E9D> /x8e/xa6/xc8/xb1 <CJK> +<U00021E99> /x8e/xa6/xc8/xb2 <CJK> +<U00021E6B> /x8e/xa6/xc8/xb3 <CJK> +<U00021E6E> /x8e/xa6/xc8/xb4 <CJK> +<U00022045> /x8e/xa6/xc8/xb6 <CJK> +<U000220FB> /x8e/xa6/xc8/xb8 <CJK> +<U000220EB> /x8e/xa6/xc8/xb9 <CJK> +<U000220F2> /x8e/xa6/xc8/xba <CJK> +<U000220F9> /x8e/xa6/xc8/xbb <CJK> +<U000220F8> /x8e/xa6/xc8/xbd <CJK> +<U000220ED> /x8e/xa6/xc8/xbe <CJK> +<U00022101> /x8e/xa6/xc8/xbf <CJK> +<U000220F7> /x8e/xa6/xc8/xc0 <CJK> +<U00022106> /x8e/xa6/xc8/xc1 <CJK> +<U0002219B> /x8e/xa6/xc8/xc2 <CJK> +<U000221CA> /x8e/xa6/xc8/xc3 <CJK> +<U386B> /x8e/xa6/xc8/xc4 <CJK> +<U5EC3> /x8e/xa6/xc8/xc5 <CJK> +<U0002226B> /x8e/xa6/xc8/xc6 <CJK> +<U0002226C> /x8e/xa6/xc8/xc7 <CJK> +<U00022274> /x8e/xa6/xc8/xc8 <CJK> +<U00022267> /x8e/xa6/xc8/xc9 <CJK> +<U0002225B> /x8e/xa6/xc8/xca <CJK> +<U00022260> /x8e/xa6/xc8/xcb <CJK> +<U00022276> /x8e/xa6/xc8/xcc <CJK> +<U00022263> /x8e/xa6/xc8/xcd <CJK> +<U00022261> /x8e/xa6/xc8/xce <CJK> +<U00022328> /x8e/xa6/xc8/xcf <CJK> +<U0002235B> /x8e/xa6/xc8/xd0 <CJK> +<U0002235E> /x8e/xa6/xc8/xd1 <CJK> +<U00022360> /x8e/xa6/xc8/xd2 <CJK> +<U0002235D> /x8e/xa6/xc8/xd3 <CJK> +<U0002235C> /x8e/xa6/xc8/xd4 <CJK> +<U000223F4> /x8e/xa6/xc8/xd5 <CJK> +<U00022400> /x8e/xa6/xc8/xd6 <CJK> +<U00022408> /x8e/xa6/xc8/xd7 <CJK> +<U00022407> /x8e/xa6/xc8/xd8 <CJK> +<U00022401> /x8e/xa6/xc8/xd9 <CJK> +<U00022405> /x8e/xa6/xc8/xda <CJK> +<U00022464> /x8e/xa6/xc8/xdb <CJK> +<U00022463> /x8e/xa6/xc8/xdc <CJK> +<U0002249E> /x8e/xa6/xc8/xdd <CJK> +<U000224A0> /x8e/xa6/xc8/xde <CJK> +<U000224A1> /x8e/xa6/xc8/xdf <CJK> +<U0002249F> /x8e/xa6/xc8/xe0 <CJK> +<U00022526> /x8e/xa6/xc8/xe1 <CJK> +<U0002252D> /x8e/xa6/xc8/xe2 <CJK> +<U00022528> /x8e/xa6/xc8/xe3 <CJK> +<U0002251D> /x8e/xa6/xc8/xe4 <CJK> +<U000226EC> /x8e/xa6/xc8/xe5 <CJK> +<U000226E3> /x8e/xa6/xc8/xe6 <CJK> +<U000226EB> /x8e/xa6/xc8/xe7 <CJK> +<U00022716> /x8e/xa6/xc8/xe8 <CJK> +<U000226C8> /x8e/xa6/xc8/xe9 <CJK> +<U0002661B> /x8e/xa6/xc8/xea <CJK> +<U000226E9> /x8e/xa6/xc8/xeb <CJK> +<U000226E4> /x8e/xa6/xc8/xec <CJK> +<U00022724> /x8e/xa6/xc8/xed <CJK> +<U000226D1> /x8e/xa6/xc8/xee <CJK> +<U3941> /x8e/xa6/xc8/xef <CJK> +<U000226DD> /x8e/xa6/xc8/xf0 <CJK> +<U000226C2> /x8e/xa6/xc8/xf1 <CJK> +<U000226CB> /x8e/xa6/xc8/xf2 <CJK> +<U000226C7> /x8e/xa6/xc8/xf3 <CJK> +<U000226E7> /x8e/xa6/xc8/xf4 <CJK> +<U3950> /x8e/xa6/xc8/xf5 <CJK> +<U000226EA> /x8e/xa6/xc8/xf6 <CJK> +<U0002274B> /x8e/xa6/xc8/xf7 <CJK> +<U00022760> /x8e/xa6/xc8/xf9 <CJK> +<U0002277D> /x8e/xa6/xc8/xfa <CJK> +<U0002273E> /x8e/xa6/xc8/xfb <CJK> +<U00022752> /x8e/xa6/xc8/xfd <CJK> +<U0002274E> /x8e/xa6/xc8/xfe <CJK> +<U0002273C> /x8e/xa6/xc9/xa1 <CJK> +<U00022732> /x8e/xa6/xc9/xa2 <CJK> +<U00022730> /x8e/xa6/xc9/xa3 <CJK> +<U00022723> /x8e/xa6/xc9/xa4 <CJK> +<U000229CA> /x8e/xa6/xc9/xa5 <CJK> +<U000229CB> /x8e/xa6/xc9/xa6 <CJK> +<U000229C9> /x8e/xa6/xc9/xa7 <CJK> +<U000229C8> /x8e/xa6/xc9/xa8 <CJK> +<U000229CD> /x8e/xa6/xc9/xa9 <CJK> +<U00022B98> /x8e/xa6/xc9/xaa <CJK> +<U00022BA0> /x8e/xa6/xc9/xab <CJK> +<U00022B9F> /x8e/xa6/xc9/xac <CJK> +<U00022B9C> /x8e/xa6/xc9/xad <CJK> +<U00022BA3> /x8e/xa6/xc9/xae <CJK> +<U00022B97> /x8e/xa6/xc9/xaf <CJK> +<U00022BF1> /x8e/xa6/xc9/xb1 <CJK> +<U00022C09> /x8e/xa6/xc9/xb2 <CJK> +<U00022C03> /x8e/xa6/xc9/xb3 <CJK> +<U00022BEA> /x8e/xa6/xc9/xb4 <CJK> +<U00022C45> /x8e/xa6/xc9/xb5 <CJK> +<U00022BED> /x8e/xa6/xc9/xb6 <CJK> +<U00022C05> /x8e/xa6/xc9/xb7 <CJK> +<U00022C1A> /x8e/xa6/xc9/xb8 <CJK> +<U00022C15> /x8e/xa6/xc9/xb9 <CJK> +<U00022C01> /x8e/xa6/xc9/xba <CJK> +<U00022BEC> /x8e/xa6/xc9/xbb <CJK> +<U00022C0E> /x8e/xa6/xc9/xbc <CJK> +<U00022C17> /x8e/xa6/xc9/xbd <CJK> +<U00022C42> /x8e/xa6/xc9/xbe <CJK> +<U00022C12> /x8e/xa6/xc9/xbf <CJK> +<U00022C10> /x8e/xa6/xc9/xc0 <CJK> +<U00022BEF> /x8e/xa6/xc9/xc1 <CJK> +<U00022BFF> /x8e/xa6/xc9/xc2 <CJK> +<U00022C00> /x8e/xa6/xc9/xc3 <CJK> +<U00022C0C> /x8e/xa6/xc9/xc4 <CJK> +<U00022C0F> /x8e/xa6/xc9/xc5 <CJK> +<U00022C04> /x8e/xa6/xc9/xc6 <CJK> +<U00022C08> /x8e/xa6/xc9/xc7 <CJK> +<U00022C14> /x8e/xa6/xc9/xc8 <CJK> +<U00022C43> /x8e/xa6/xc9/xc9 <CJK> +<U00022C1B> /x8e/xa6/xc9/xcb <CJK> +<U00022C11> /x8e/xa6/xc9/xcc <CJK> +<U00022C13> /x8e/xa6/xc9/xcd <CJK> +<U00022ECF> /x8e/xa6/xc9/xce <CJK> +<U00022ECE> /x8e/xa6/xc9/xcf <CJK> +<U00022F6F> /x8e/xa6/xc9/xd0 <CJK> +<U00022F6E> /x8e/xa6/xc9/xd1 <CJK> +<U00022F7A> /x8e/xa6/xc9/xd2 <CJK> +<U00022F70> /x8e/xa6/xc9/xd3 <CJK> +<U00022F64> /x8e/xa6/xc9/xd4 <CJK> +<U00022F5E> /x8e/xa6/xc9/xd5 <CJK> +<U00022F6C> /x8e/xa6/xc9/xd6 <CJK> +<U00022F5B> /x8e/xa6/xc9/xd8 <CJK> +<U00022F61> /x8e/xa6/xc9/xd9 <CJK> +<U00022F65> /x8e/xa6/xc9/xda <CJK> +<U0002307F> /x8e/xa6/xc9/xdb <CJK> +<U00023080> /x8e/xa6/xc9/xdc <CJK> +<U0002307C> /x8e/xa6/xc9/xdd <CJK> +<U000230A7> /x8e/xa6/xc9/xde <CJK> +<U000230A6> /x8e/xa6/xc9/xdf <CJK> +<U000230A1> /x8e/xa6/xc9/xe0 <CJK> +<U3AC0> /x8e/xa6/xc9/xe1 <CJK> +<U000230A8> /x8e/xa6/xc9/xe2 <CJK> +<U000230A3> /x8e/xa6/xc9/xe3 <CJK> +<U000230A2> /x8e/xa6/xc9/xe4 <CJK> +<U000230AD> /x8e/xa6/xc9/xe5 <CJK> +<U000230A5> /x8e/xa6/xc9/xe6 <CJK> +<U00023101> /x8e/xa6/xc9/xe7 <CJK> +<U000230FF> /x8e/xa6/xc9/xe8 <CJK> +<U000230FC> /x8e/xa6/xc9/xe9 <CJK> +<U00023100> /x8e/xa6/xc9/xea <CJK> +<U00023135> /x8e/xa6/xc9/xeb <CJK> +<U000231EE> /x8e/xa6/xc9/xec <CJK> +<U000231EF> /x8e/xa6/xc9/xed <CJK> +<U000231F6> /x8e/xa6/xc9/xee <CJK> +<U000231E8> /x8e/xa6/xc9/xef <CJK> +<U000231EA> /x8e/xa6/xc9/xf0 <CJK> +<U000231E3> /x8e/xa6/xc9/xf1 <CJK> +<U0002321F> /x8e/xa6/xc9/xf2 <CJK> +<U3AFC> /x8e/xa6/xc9/xf3 <CJK> +<U000231E4> /x8e/xa6/xc9/xf4 <CJK> +<U000231FA> /x8e/xa6/xc9/xf5 <CJK> +<U000231F1> /x8e/xa6/xc9/xf6 <CJK> +<U000231FB> /x8e/xa6/xc9/xf7 <CJK> +<U0002333D> /x8e/xa6/xc9/xf9 <CJK> +<U0002333C> /x8e/xa6/xc9/xfa <CJK> +<U3479> /x8e/xa6/xc9/xfb <CJK> +<U00023378> /x8e/xa6/xc9/xfc <CJK> +<U00023377> /x8e/xa6/xc9/xfd <CJK> +<U440B> /x8e/xa6/xc9/xfe <CJK> +<U000234D1> /x8e/xa6/xca/xa1 <CJK> +<U000234C7> /x8e/xa6/xca/xa2 <CJK> +<U000234DF> /x8e/xa6/xca/xa3 <CJK> +<U000234D0> /x8e/xa6/xca/xa4 <CJK> +<U000234E0> /x8e/xa6/xca/xa5 <CJK> +<U000234D6> /x8e/xa6/xca/xa6 <CJK> +<U000234D8> /x8e/xa6/xca/xa7 <CJK> +<U00023516> /x8e/xa6/xca/xa8 <CJK> +<U0002350E> /x8e/xa6/xca/xa9 <CJK> +<U000234D9> /x8e/xa6/xca/xaa <CJK> +<U0002350F> /x8e/xa6/xca/xab <CJK> +<U00023511> /x8e/xa6/xca/xac <CJK> +<U000234CD> /x8e/xa6/xca/xad <CJK> +<U00023489> /x8e/xa6/xca/xae <CJK> +<U000234CE> /x8e/xa6/xca/xaf <CJK> +<U00023514> /x8e/xa6/xca/xb0 <CJK> +<U000234DA> /x8e/xa6/xca/xb1 <CJK> +<U00023512> /x8e/xa6/xca/xb2 <CJK> +<U000234D3> /x8e/xa6/xca/xb3 <CJK> +<U000234C2> /x8e/xa6/xca/xb4 <CJK> +<U000234E1> /x8e/xa6/xca/xb5 <CJK> +<U000234E9> /x8e/xa6/xca/xb6 <CJK> +<U000234EA> /x8e/xa6/xca/xb7 <CJK> +<U000234DE> /x8e/xa6/xca/xb8 <CJK> +<U00023515> /x8e/xa6/xca/xb9 <CJK> +<U000238D9> /x8e/xa6/xca/xba <CJK> +<U000238D6> /x8e/xa6/xca/xbb <CJK> +<U000238CD> /x8e/xa6/xca/xbc <CJK> +<U000238D0> /x8e/xa6/xca/xbd <CJK> +<U000238D3> /x8e/xa6/xca/xbe <CJK> +<U00023982> /x8e/xa6/xca/xc0 <CJK> +<U00023985> /x8e/xa6/xca/xc1 <CJK> +<U0002397F> /x8e/xa6/xca/xc2 <CJK> +<U0002397D> /x8e/xa6/xca/xc3 <CJK> +<U00023981> /x8e/xa6/xca/xc4 <CJK> +<U00023983> /x8e/xa6/xca/xc5 <CJK> +<U00023984> /x8e/xa6/xca/xc6 <CJK> +<U000284A0> /x8e/xa6/xca/xc7 <CJK> +<U00023A28> /x8e/xa6/xca/xc8 <CJK> +<U00023A0F> /x8e/xa6/xca/xc9 <CJK> +<U00023A17> /x8e/xa6/xca/xca <CJK> +<U00023A1A> /x8e/xa6/xca/xcb <CJK> +<U00023A25> /x8e/xa6/xca/xcc <CJK> +<U00023A9B> /x8e/xa6/xca/xce <CJK> +<U00023A99> /x8e/xa6/xca/xcf <CJK> +<U00023B92> /x8e/xa6/xca/xd0 <CJK> +<U00023B8C> /x8e/xa6/xca/xd1 <CJK> +<U00023B95> /x8e/xa6/xca/xd2 <CJK> +<U00023B8D> /x8e/xa6/xca/xd3 <CJK> +<U00023BA3> /x8e/xa6/xca/xd4 <CJK> +<U00023B93> /x8e/xa6/xca/xd5 <CJK> +<U00023B91> /x8e/xa6/xca/xd6 <CJK> +<U00023DDB> /x8e/xa6/xca/xd7 <CJK> +<U00023D99> /x8e/xa6/xca/xd8 <CJK> +<U00023D9A> /x8e/xa6/xca/xd9 <CJK> +<U00023E08> /x8e/xa6/xca/xda <CJK> +<U00023E4C> /x8e/xa6/xca/xdb <CJK> +<U00023E0D> /x8e/xa6/xca/xdc <CJK> +<U00023E01> /x8e/xa6/xca/xdd <CJK> +<U00023E4E> /x8e/xa6/xca/xde <CJK> +<U00023E02> /x8e/xa6/xca/xdf <CJK> +<U00023E4D> /x8e/xa6/xca/xe0 <CJK> +<U00023E21> /x8e/xa6/xca/xe1 <CJK> +<U00023DFC> /x8e/xa6/xca/xe2 <CJK> +<U00023D8A> /x8e/xa6/xca/xe4 <CJK> +<U00023D95> /x8e/xa6/xca/xe6 <CJK> +<U00023E11> /x8e/xa6/xca/xe7 <CJK> +<U00023E12> /x8e/xa6/xca/xe8 <CJK> +<U00023E46> /x8e/xa6/xca/xe9 <CJK> +<U00023E1C> /x8e/xa6/xca/xea <CJK> +<U00023E49> /x8e/xa6/xca/xeb <CJK> +<U00023E0C> /x8e/xa6/xca/xec <CJK> +<U3D1E> /x8e/xa6/xca/xed <CJK> +<U00023E13> /x8e/xa6/xca/xee <CJK> +<U00023E16> /x8e/xa6/xca/xef <CJK> +<U00023DFD> /x8e/xa6/xca/xf0 <CJK> +<U00023E0F> /x8e/xa6/xca/xf1 <CJK> +<U00023E1F> /x8e/xa6/xca/xf2 <CJK> +<U00024230> /x8e/xa6/xca/xf3 <CJK> +<U0002426E> /x8e/xa6/xca/xf4 <CJK> +<U0002426B> /x8e/xa6/xca/xf5 <CJK> +<U0002429B> /x8e/xa6/xca/xf6 <CJK> +<U0002427B> /x8e/xa6/xca/xf7 <CJK> +<U00024263> /x8e/xa6/xca/xf8 <CJK> +<U00024297> /x8e/xa6/xca/xf9 <CJK> +<U0002426D> /x8e/xa6/xca/xfa <CJK> +<U0002429C> /x8e/xa6/xca/xfb <CJK> +<U00024298> /x8e/xa6/xca/xfc <CJK> +<U0002426F> /x8e/xa6/xca/xfd <CJK> +<U00024267> /x8e/xa6/xca/xfe <CJK> +<U00024269> /x8e/xa6/xcb/xa1 <CJK> +<U00024515> /x8e/xa6/xcb/xa2 <CJK> +<U00024563> /x8e/xa6/xcb/xa3 <CJK> +<U00024586> /x8e/xa6/xcb/xa4 <CJK> +<U0002458A> /x8e/xa6/xcb/xa5 <CJK> +<U00024587> /x8e/xa6/xcb/xa6 <CJK> +<U00024588> /x8e/xa6/xcb/xa7 <CJK> +<U00024585> /x8e/xa6/xcb/xa8 <CJK> +<U00024589> /x8e/xa6/xcb/xa9 <CJK> +<U000245CA> /x8e/xa6/xcb/xaa <CJK> +<U000245C7> /x8e/xa6/xcb/xab <CJK> +<U000245CB> /x8e/xa6/xcb/xac <CJK> +<U000245CC> /x8e/xa6/xcb/xad <CJK> +<U000245C9> /x8e/xa6/xcb/xae <CJK> +<U0002460D> /x8e/xa6/xcb/xaf <CJK> +<U00024683> /x8e/xa6/xcb/xb0 <CJK> +<U00024684> /x8e/xa6/xcb/xb1 <CJK> +<U00024678> /x8e/xa6/xcb/xb2 <CJK> +<U00024682> /x8e/xa6/xcb/xb3 <CJK> +<U00024673> /x8e/xa6/xcb/xb4 <CJK> +<U00024679> /x8e/xa6/xcb/xb5 <CJK> +<U0002468C> /x8e/xa6/xcb/xb6 <CJK> +<U000247D0> /x8e/xa6/xcb/xb7 <CJK> +<U000247CF> /x8e/xa6/xcb/xb8 <CJK> +<U000247D2> /x8e/xa6/xcb/xb9 <CJK> +<U000247D9> /x8e/xa6/xcb/xba <CJK> +<U000247CC> /x8e/xa6/xcb/xbb <CJK> +<U000247EB> /x8e/xa6/xcb/xbc <CJK> +<U000247FD> /x8e/xa6/xcb/xbd <CJK> +<U000247EC> /x8e/xa6/xcb/xbe <CJK> +<U000247E8> /x8e/xa6/xcb/xbf <CJK> +<U000247F8> /x8e/xa6/xcb/xc0 <CJK> +<U000247FA> /x8e/xa6/xcb/xc1 <CJK> +<U3E85> /x8e/xa6/xcb/xc3 <CJK> +<U000247E1> /x8e/xa6/xcb/xc4 <CJK> +<U000247FB> /x8e/xa6/xcb/xc5 <CJK> +<U000248E7> /x8e/xa6/xcb/xc6 <CJK> +<U000249A5> /x8e/xa6/xcb/xc8 <CJK> +<U00024991> /x8e/xa6/xcb/xc9 <CJK> +<U000249A6> /x8e/xa6/xcb/xca <CJK> +<U0002497C> /x8e/xa6/xcb/xcb <CJK> +<U00024992> /x8e/xa6/xcb/xcc <CJK> +<U000249A2> /x8e/xa6/xcb/xcd <CJK> +<U000249A0> /x8e/xa6/xcb/xce <CJK> +<U00024AFC> /x8e/xa6/xcb/xcf <CJK> +<U00024AFE> /x8e/xa6/xcb/xd0 <CJK> +<U00024B57> /x8e/xa6/xcb/xd1 <CJK> +<U00024B53> /x8e/xa6/xcb/xd2 <CJK> +<U00024B58> /x8e/xa6/xcb/xd3 <CJK> +<U00024BE7> /x8e/xa6/xcb/xd4 <CJK> +<U00024C8E> /x8e/xa6/xcb/xd5 <CJK> +<U00024C83> /x8e/xa6/xcb/xd7 <CJK> +<U00024C8B> /x8e/xa6/xcb/xd8 <CJK> +<U00024C84> /x8e/xa6/xcb/xd9 <CJK> +<U3F97> /x8e/xa6/xcb/xda <CJK> +<U00024DA2> /x8e/xa6/xcb/xdb <CJK> +<U00024DB7> /x8e/xa6/xcb/xdc <CJK> +<U00024DA9> /x8e/xa6/xcb/xdd <CJK> +<U00024DA5> /x8e/xa6/xcb/xde <CJK> +<U00024D9F> /x8e/xa6/xcb/xdf <CJK> +<U00024DAA> /x8e/xa6/xcb/xe0 <CJK> +<U00024D97> /x8e/xa6/xcb/xe1 <CJK> +<U00024DA1> /x8e/xa6/xcb/xe2 <CJK> +<U00024D9E> /x8e/xa6/xcb/xe3 <CJK> +<U00024DAB> /x8e/xa6/xcb/xe4 <CJK> +<U00024D99> /x8e/xa6/xcb/xe5 <CJK> +<U00024DA3> /x8e/xa6/xcb/xe6 <CJK> +<U00024F30> /x8e/xa6/xcb/xe7 <CJK> +<U00024F32> /x8e/xa6/xcb/xe8 <CJK> +<U00024F2F> /x8e/xa6/xcb/xe9 <CJK> +<U00024F70> /x8e/xa6/xcb/xea <CJK> +<U00024F6C> /x8e/xa6/xcb/xeb <CJK> +<U00024F6F> /x8e/xa6/xcb/xec <CJK> +<U00024FE8> /x8e/xa6/xcb/xed <CJK> +<U00024FEE> /x8e/xa6/xcb/xee <CJK> +<U00024FEA> /x8e/xa6/xcb/xef <CJK> +<U0002506D> /x8e/xa6/xcb/xf0 <CJK> +<U00025076> /x8e/xa6/xcb/xf1 <CJK> +<U00025070> /x8e/xa6/xcb/xf2 <CJK> +<U00025071> /x8e/xa6/xcb/xf3 <CJK> +<U0002506C> /x8e/xa6/xcb/xf4 <CJK> +<U000251EB> /x8e/xa6/xcb/xf5 <CJK> +<U000251B5> /x8e/xa6/xcb/xf6 <CJK> +<U00025196> /x8e/xa6/xcb/xf7 <CJK> +<U00025190> /x8e/xa6/xcb/xf8 <CJK> +<U0002518D> /x8e/xa6/xcb/xf9 <CJK> +<U000251A2> /x8e/xa6/xcb/xfb <CJK> +<U000251B0> /x8e/xa6/xcb/xfc <CJK> +<U00025192> /x8e/xa6/xcb/xfd <CJK> +<U000251A0> /x8e/xa6/xcb/xfe <CJK> +<U00025193> /x8e/xa6/xcc/xa1 <CJK> +<U000251C3> /x8e/xa6/xcc/xa2 <CJK> +<U0002518E> /x8e/xa6/xcc/xa3 <CJK> +<U000251B6> /x8e/xa6/xcc/xa4 <CJK> +<U0002519D> /x8e/xa6/xcc/xa5 <CJK> +<U00025195> /x8e/xa6/xcc/xa6 <CJK> +<U000251B3> /x8e/xa6/xcc/xa7 <CJK> +<U000251A4> /x8e/xa6/xcc/xa8 <CJK> +<U00025370> /x8e/xa6/xcc/xa9 <CJK> +<U000253D4> /x8e/xa6/xcc/xaa <CJK> +<U4093> /x8e/xa6/xcc/xab <CJK> +<U000253CF> /x8e/xa6/xcc/xac <CJK> +<U00020170> /x8e/xa6/xcc/xad <CJK> +<U00025494> /x8e/xa6/xcc/xae <CJK> +<U7861> /x8e/xa6/xcc/xaf <CJK> +<U000254C0> /x8e/xa6/xcc/xb0 <CJK> +<U000254B4> /x8e/xa6/xcc/xb1 <CJK> +<U000254C1> /x8e/xa6/xcc/xb2 <CJK> +<U40B2> /x8e/xa6/xcc/xb3 <CJK> +<U000254BD> /x8e/xa6/xcc/xb4 <CJK> +<U000254AF> /x8e/xa6/xcc/xb5 <CJK> +<U00025677> /x8e/xa6/xcc/xb6 <CJK> +<U00025678> /x8e/xa6/xcc/xb7 <CJK> +<U0002566B> /x8e/xa6/xcc/xb8 <CJK> +<U0002566D> /x8e/xa6/xcc/xb9 <CJK> +<U0002566E> /x8e/xa6/xcc/xba <CJK> +<U00025672> /x8e/xa6/xcc/xbb <CJK> +<U0002566F> /x8e/xa6/xcc/xbc <CJK> +<U00025671> /x8e/xa6/xcc/xbd <CJK> +<U000230AB> /x8e/xa6/xcc/xbe <CJK> +<U0002568C> /x8e/xa6/xcc/xbf <CJK> +<U0002573F> /x8e/xa6/xcc/xc0 <CJK> +<U000257B6> /x8e/xa6/xcc/xc1 <CJK> +<U000257B7> /x8e/xa6/xcc/xc2 <CJK> +<U000257BB> /x8e/xa6/xcc/xc4 <CJK> +<U000257B8> /x8e/xa6/xcc/xc5 <CJK> +<U0002079C> /x8e/xa6/xcc/xc6 <CJK> +<U000257B9> /x8e/xa6/xcc/xc7 <CJK> +<U7A01> /x8e/xa6/xcc/xc8 <CJK> +<U0002598B> /x8e/xa6/xcc/xc9 <CJK> +<U0002597A> /x8e/xa6/xcc/xca <CJK> +<U00025984> /x8e/xa6/xcc/xcb <CJK> +<U00025988> /x8e/xa6/xcc/xcc <CJK> +<U00025991> /x8e/xa6/xcc/xcd <CJK> +<U00025979> /x8e/xa6/xcc/xce <CJK> +<U0002598E> /x8e/xa6/xcc/xcf <CJK> +<U00025980> /x8e/xa6/xcc/xd0 <CJK> +<U00025982> /x8e/xa6/xcc/xd1 <CJK> +<U0002597C> /x8e/xa6/xcc/xd2 <CJK> +<U41A4> /x8e/xa6/xcc/xd3 <CJK> +<U00025A84> /x8e/xa6/xcc/xd4 <CJK> +<U00025A7F> /x8e/xa6/xcc/xd5 <CJK> +<U41F2> /x8e/xa6/xcc/xd6 <CJK> +<U00025B3B> /x8e/xa6/xcc/xd7 <CJK> +<U00025B71> /x8e/xa6/xcc/xd8 <CJK> +<U00025B3D> /x8e/xa6/xcc/xd9 <CJK> +<U00025B30> /x8e/xa6/xcc/xda <CJK> +<U41F1> /x8e/xa6/xcc/xdb <CJK> +<U00025B3E> /x8e/xa6/xcc/xdc <CJK> +<U00025B38> /x8e/xa6/xcc/xdd <CJK> +<U00025E5E> /x8e/xa6/xcc/xde <CJK> +<U00025E64> /x8e/xa6/xcc/xdf <CJK> +<U4281> /x8e/xa6/xcc/xe0 <CJK> +<U00025E5D> /x8e/xa6/xcc/xe1 <CJK> +<U00025E6D> /x8e/xa6/xcc/xe2 <CJK> +<U00025E4F> /x8e/xa6/xcc/xe3 <CJK> +<U00025E62> /x8e/xa6/xcc/xe4 <CJK> +<U00025E5F> /x8e/xa6/xcc/xe5 <CJK> +<U00025FEC> /x8e/xa6/xcc/xe6 <CJK> +<U00025FF2> /x8e/xa6/xcc/xe7 <CJK> +<U00025FF4> /x8e/xa6/xcc/xe8 <CJK> +<U00025FF7> /x8e/xa6/xcc/xe9 <CJK> +<U00025FF6> /x8e/xa6/xcc/xea <CJK> +<U00026007> /x8e/xa6/xcc/xeb <CJK> +<U00025FED> /x8e/xa6/xcc/xec <CJK> +<U00025FEA> /x8e/xa6/xcc/xed <CJK> +<U00025FF0> /x8e/xa6/xcc/xee <CJK> +<U00025FF8> /x8e/xa6/xcc/xef <CJK> +<U00025FF3> /x8e/xa6/xcc/xf0 <CJK> +<U42DC> /x8e/xa6/xcc/xf1 <CJK> +<U00026231> /x8e/xa6/xcc/xf3 <CJK> +<U0002622F> /x8e/xa6/xcc/xf4 <CJK> +<U000262B6> /x8e/xa6/xcc/xf5 <CJK> +<U000262AE> /x8e/xa6/xcc/xf6 <CJK> +<U000262AA> /x8e/xa6/xcc/xf7 <CJK> +<U000262BF> /x8e/xa6/xcc/xf8 <CJK> +<U000262CC> /x8e/xa6/xcc/xf9 <CJK> +<U000262C7> /x8e/xa6/xcc/xfa <CJK> +<U00026C83> /x8e/xa6/xcc/xfb <CJK> +<U00026380> /x8e/xa6/xcc/xfc <CJK> +<U0002637B> /x8e/xa6/xcc/xfd <CJK> +<U0002637F> /x8e/xa6/xcc/xfe <CJK> +<U0002637D> /x8e/xa6/xcd/xa1 <CJK> +<U00026383> /x8e/xa6/xcd/xa2 <CJK> +<U00026446> /x8e/xa6/xcd/xa4 <CJK> +<U0002642D> /x8e/xa6/xcd/xa5 <CJK> +<U00026425> /x8e/xa6/xcd/xa6 <CJK> +<U00026426> /x8e/xa6/xcd/xa7 <CJK> +<U0002642C> /x8e/xa6/xcd/xa8 <CJK> +<U00026437> /x8e/xa6/xcd/xa9 <CJK> +<U00026431> /x8e/xa6/xcd/xaa <CJK> +<U00026433> /x8e/xa6/xcd/xab <CJK> +<U00026432> /x8e/xa6/xcd/xac <CJK> +<U00026427> /x8e/xa6/xcd/xad <CJK> +<U0002642A> /x8e/xa6/xcd/xae <CJK> +<U0002642E> /x8e/xa6/xcd/xaf <CJK> +<U0002642F> /x8e/xa6/xcd/xb0 <CJK> +<U000264C0> /x8e/xa6/xcd/xb1 <CJK> +<U00026571> /x8e/xa6/xcd/xb2 <CJK> +<U00026561> /x8e/xa6/xcd/xb3 <CJK> +<U00026562> /x8e/xa6/xcd/xb4 <CJK> +<U00026566> /x8e/xa6/xcd/xb5 <CJK> +<U00026618> /x8e/xa6/xcd/xb6 <CJK> +<U000266C5> /x8e/xa6/xcd/xb7 <CJK> +<U000266C3> /x8e/xa6/xcd/xb8 <CJK> +<U000266C4> /x8e/xa6/xcd/xb9 <CJK> +<U000266C2> /x8e/xa6/xcd/xba <CJK> +<U000266AE> /x8e/xa6/xcd/xbb <CJK> +<U00026710> /x8e/xa6/xcd/xbc <CJK> +<U00026708> /x8e/xa6/xcd/xbd <CJK> +<U0002671F> /x8e/xa6/xcd/xbe <CJK> +<U0002673A> /x8e/xa6/xcd/xbf <CJK> +<U0002673B> /x8e/xa6/xcd/xc0 <CJK> +<U00026736> /x8e/xa6/xcd/xc1 <CJK> +<U0002670C> /x8e/xa6/xcd/xc2 <CJK> +<U00026706> /x8e/xa6/xcd/xc3 <CJK> +<U0002672A> /x8e/xa6/xcd/xc4 <CJK> +<U00026757> /x8e/xa6/xcd/xc5 <CJK> +<U00026750> /x8e/xa6/xcd/xc6 <CJK> +<U00026720> /x8e/xa6/xcd/xc7 <CJK> +<U0002672C> /x8e/xa6/xcd/xc9 <CJK> +<U00026721> /x8e/xa6/xcd/xca <CJK> +<U0002670B> /x8e/xa6/xcd/xcb <CJK> +<U00026719> /x8e/xa6/xcd/xcc <CJK> +<U00026735> /x8e/xa6/xcd/xcd <CJK> +<U00026718> /x8e/xa6/xcd/xce <CJK> +<U0002670F> /x8e/xa6/xcd/xcf <CJK> +<U00026713> /x8e/xa6/xcd/xd0 <CJK> +<U00026755> /x8e/xa6/xcd/xd1 <CJK> +<U00026739> /x8e/xa6/xcd/xd2 <CJK> +<U0002671A> /x8e/xa6/xcd/xd3 <CJK> +<U440C> /x8e/xa6/xcd/xd4 <CJK> +<U00026717> /x8e/xa6/xcd/xd5 <CJK> +<U000268E4> /x8e/xa6/xcd/xd6 <CJK> +<U000268E9> /x8e/xa6/xcd/xd7 <CJK> +<U0002458B> /x8e/xa6/xcd/xd8 <CJK> +<U00026910> /x8e/xa6/xcd/xd9 <CJK> +<U00026912> /x8e/xa6/xcd/xda <CJK> +<U0002693F> /x8e/xa6/xcd/xdb <CJK> +<U0002696E> /x8e/xa6/xcd/xdc <CJK> +<U00024518> /x8e/xa6/xcd/xdd <CJK> +<U000269D6> /x8e/xa6/xcd/xdf <CJK> +<U000269D5> /x8e/xa6/xcd/xe0 <CJK> +<U000269D7> /x8e/xa6/xcd/xe1 <CJK> +<U00020B02> /x8e/xa6/xcd/xe2 <CJK> +<U446D> /x8e/xa6/xcd/xe3 <CJK> +<U00026A31> /x8e/xa6/xcd/xe4 <CJK> +<U00026A30> /x8e/xa6/xcd/xe5 <CJK> +<U00026A3A> /x8e/xa6/xcd/xe6 <CJK> +<U00026B85> /x8e/xa6/xcd/xe7 <CJK> +<U00026B6B> /x8e/xa6/xcd/xe8 <CJK> +<U00026C48> /x8e/xa6/xcd/xe9 <CJK> +<U00026C4B> /x8e/xa6/xcd/xea <CJK> +<U00026C37> /x8e/xa6/xcd/xeb <CJK> +<U00026C7B> /x8e/xa6/xcd/xec <CJK> +<U00026C6C> /x8e/xa6/xcd/xed <CJK> +<U00026C85> /x8e/xa6/xcd/xee <CJK> +<U00026C65> /x8e/xa6/xcd/xef <CJK> +<U00026C36> /x8e/xa6/xcd/xf0 <CJK> +<U00026C86> /x8e/xa6/xcd/xf1 <CJK> +<U00026C34> /x8e/xa6/xcd/xf2 <CJK> +<U00026C68> /x8e/xa6/xcd/xf3 <CJK> +<U00026C5A> /x8e/xa6/xcd/xf4 <CJK> +<U00026C58> /x8e/xa6/xcd/xf5 <CJK> +<U00026C72> /x8e/xa6/xcd/xf6 <CJK> +<U00026C6A> /x8e/xa6/xcd/xf7 <CJK> +<U00026BD3> /x8e/xa6/xcd/xf8 <CJK> +<U00026C3C> /x8e/xa6/xcd/xf9 <CJK> +<U00026C33> /x8e/xa6/xcd/xfa <CJK> +<U00026C3B> /x8e/xa6/xcd/xfb <CJK> +<U00026C4D> /x8e/xa6/xcd/xfc <CJK> +<U00026C4F> /x8e/xa6/xcd/xfd <CJK> +<U00026C7C> /x8e/xa6/xcd/xfe <CJK> +<U00026CB0> /x8e/xa6/xce/xa1 <CJK> +<U00026C5B> /x8e/xa6/xce/xa2 <CJK> +<U00026C55> /x8e/xa6/xce/xa3 <CJK> +<U00026C64> /x8e/xa6/xce/xa4 <CJK> +<U00026C6B> /x8e/xa6/xce/xa5 <CJK> +<U00026C53> /x8e/xa6/xce/xa6 <CJK> +<U44E6> /x8e/xa6/xce/xa7 <CJK> +<U00026C57> /x8e/xa6/xce/xa8 <CJK> +<U00026C5E> /x8e/xa6/xce/xa9 <CJK> +<U00026C6D> /x8e/xa6/xce/xaa <CJK> +<U00026C35> /x8e/xa6/xce/xab <CJK> +<U00026C69> /x8e/xa6/xce/xac <CJK> +<U00026C59> /x8e/xa6/xce/xad <CJK> +<U00026C66> /x8e/xa6/xce/xae <CJK> +<U00026C50> /x8e/xa6/xce/xaf <CJK> +<U00026C51> /x8e/xa6/xce/xb0 <CJK> +<U00026C5C> /x8e/xa6/xce/xb1 <CJK> +<U00026D5D> /x8e/xa6/xce/xb2 <CJK> +<U00026C87> /x8e/xa6/xce/xb3 <CJK> +<U00026C78> /x8e/xa6/xce/xb4 <CJK> +<U00026C49> /x8e/xa6/xce/xb5 <CJK> +<U00026C4E> /x8e/xa6/xce/xb6 <CJK> +<U00026BF1> /x8e/xa6/xce/xb7 <CJK> +<U00026C73> /x8e/xa6/xce/xb8 <CJK> +<U00026C88> /x8e/xa6/xce/xb9 <CJK> +<U00026BCF> /x8e/xa6/xce/xba <CJK> +<U000271B1> /x8e/xa6/xce/xbc <CJK> +<U000271B3> /x8e/xa6/xce/xbd <CJK> +<U0002729C> /x8e/xa6/xce/xbe <CJK> +<U000272A4> /x8e/xa6/xce/xbf <CJK> +<U00027290> /x8e/xa6/xce/xc0 <CJK> +<U000272B8> /x8e/xa6/xce/xc1 <CJK> +<U000272A0> /x8e/xa6/xce/xc2 <CJK> +<U0002729D> /x8e/xa6/xce/xc3 <CJK> +<U000272A8> /x8e/xa6/xce/xc4 <CJK> +<U000272A9> /x8e/xa6/xce/xc5 <CJK> +<U000272B1> /x8e/xa6/xce/xc7 <CJK> +<U00027293> /x8e/xa6/xce/xc8 <CJK> +<U0002729B> /x8e/xa6/xce/xc9 <CJK> +<U000272A2> /x8e/xa6/xce/xca <CJK> +<U000272A1> /x8e/xa6/xce/xcb <CJK> +<U000272B0> /x8e/xa6/xce/xcc <CJK> +<U000272A7> /x8e/xa6/xce/xcd <CJK> +<U000275B3> /x8e/xa6/xce/xce <CJK> +<U8849> /x8e/xa6/xce/xcf <CJK> +<U000275B4> /x8e/xa6/xce/xd0 <CJK> +<U000275F1> /x8e/xa6/xce/xd1 <CJK> +<U000275ED> /x8e/xa6/xce/xd2 <CJK> +<U000275EC> /x8e/xa6/xce/xd3 <CJK> +<U00027668> /x8e/xa6/xce/xd4 <CJK> +<U00027675> /x8e/xa6/xce/xd5 <CJK> +<U0002766A> /x8e/xa6/xce/xd6 <CJK> +<U00027662> /x8e/xa6/xce/xd7 <CJK> +<U00027667> /x8e/xa6/xce/xd8 <CJK> +<U00027660> /x8e/xa6/xce/xd9 <CJK> +<U00027677> /x8e/xa6/xce/xda <CJK> +<U0002765F> /x8e/xa6/xce/xdb <CJK> +<U00027679> /x8e/xa6/xce/xdc <CJK> +<U00027823> /x8e/xa6/xce/xdd <CJK> +<U00027821> /x8e/xa6/xce/xde <CJK> +<U0002781C> /x8e/xa6/xce/xdf <CJK> +<U8999> /x8e/xa6/xce/xe0 <CJK> +<U0002781F> /x8e/xa6/xce/xe1 <CJK> +<U0002781E> /x8e/xa6/xce/xe2 <CJK> +<U000278D6> /x8e/xa6/xce/xe3 <CJK> +<U000278D3> /x8e/xa6/xce/xe4 <CJK> +<U000278D9> /x8e/xa6/xce/xe5 <CJK> +<U000278D7> /x8e/xa6/xce/xe6 <CJK> +<U000278D4> /x8e/xa6/xce/xe7 <CJK> +<U000278DC> /x8e/xa6/xce/xe8 <CJK> +<U000278D8> /x8e/xa6/xce/xe9 <CJK> +<U000279A3> /x8e/xa6/xce/xea <CJK> +<U46D1> /x8e/xa6/xce/xeb <CJK> +<U000279BE> /x8e/xa6/xce/xec <CJK> +<U000279A9> /x8e/xa6/xce/xed <CJK> +<U000279A1> /x8e/xa6/xce/xee <CJK> +<U000279A0> /x8e/xa6/xce/xef <CJK> +<U000279AB> /x8e/xa6/xce/xf0 <CJK> +<U000279A2> /x8e/xa6/xce/xf1 <CJK> +<U000279BA> /x8e/xa6/xce/xf2 <CJK> +<U000279C2> /x8e/xa6/xce/xf3 <CJK> +<U0002799C> /x8e/xa6/xce/xf4 <CJK> +<U000279BB> /x8e/xa6/xce/xf5 <CJK> +<U000279AA> /x8e/xa6/xce/xf6 <CJK> +<U000279AC> /x8e/xa6/xce/xf7 <CJK> +<U000279A5> /x8e/xa6/xce/xf8 <CJK> +<U000279C1> /x8e/xa6/xce/xf9 <CJK> +<U472C> /x8e/xa6/xce/xfa <CJK> +<U00027BE2> /x8e/xa6/xce/xfb <CJK> +<U00027C36> /x8e/xa6/xce/xfc <CJK> +<U00027C3D> /x8e/xa6/xce/xfd <CJK> +<U00027C3A> /x8e/xa6/xce/xfe <CJK> +<U00022461> /x8e/xa6/xcf/xa1 <CJK> +<U00027C48> /x8e/xa6/xcf/xa2 <CJK> +<U00027C3C> /x8e/xa6/xcf/xa3 <CJK> +<U00027CB7> /x8e/xa6/xcf/xa4 <CJK> +<U00027CAC> /x8e/xa6/xcf/xa5 <CJK> +<U00027CB3> /x8e/xa6/xcf/xa6 <CJK> +<U00027CB6> /x8e/xa6/xcf/xa7 <CJK> +<U00027CB2> /x8e/xa6/xcf/xa8 <CJK> +<U476E> /x8e/xa6/xcf/xa9 <CJK> +<U00027D5D> /x8e/xa6/xcf/xaa <CJK> +<U00027D49> /x8e/xa6/xcf/xab <CJK> +<U00027D4E> /x8e/xa6/xcf/xac <CJK> +<U00027D4F> /x8e/xa6/xcf/xad <CJK> +<U00027D4D> /x8e/xa6/xcf/xae <CJK> +<U00027D5C> /x8e/xa6/xcf/xaf <CJK> +<U00027E5D> /x8e/xa6/xcf/xb0 <CJK> +<U00027EBB> /x8e/xa6/xcf/xb1 <CJK> +<U00027ECE> /x8e/xa6/xcf/xb2 <CJK> +<U00027EBF> /x8e/xa6/xcf/xb3 <CJK> +<U00027EBA> /x8e/xa6/xcf/xb4 <CJK> +<U00027EC3> /x8e/xa6/xcf/xb5 <CJK> +<U47E5> /x8e/xa6/xcf/xb6 <CJK> +<U00028006> /x8e/xa6/xcf/xb7 <CJK> +<U00027FF8> /x8e/xa6/xcf/xb8 <CJK> +<U00027FFE> /x8e/xa6/xcf/xb9 <CJK> +<U00028013> /x8e/xa6/xcf/xba <CJK> +<U00027FF6> /x8e/xa6/xcf/xbb <CJK> +<U47E6> /x8e/xa6/xcf/xbc <CJK> +<U00028234> /x8e/xa6/xcf/xbd <CJK> +<U0002822D> /x8e/xa6/xcf/xbe <CJK> +<U0002822A> /x8e/xa6/xcf/xbf <CJK> +<U00028235> /x8e/xa6/xcf/xc0 <CJK> +<U0002822C> /x8e/xa6/xcf/xc1 <CJK> +<U000282D4> /x8e/xa6/xcf/xc2 <CJK> +<U000282DA> /x8e/xa6/xcf/xc3 <CJK> +<U000282D3> /x8e/xa6/xcf/xc4 <CJK> +<U000282D2> /x8e/xa6/xcf/xc5 <CJK> +<U000282CE> /x8e/xa6/xcf/xc6 <CJK> +<U000282CF> /x8e/xa6/xcf/xc7 <CJK> +<U489F> /x8e/xa6/xcf/xc8 <CJK> +<U000284FD> /x8e/xa6/xcf/xc9 <CJK> +<U0002850B> /x8e/xa6/xcf/xca <CJK> +<U000284FE> /x8e/xa6/xcf/xcb <CJK> +<U000284F8> /x8e/xa6/xcf/xcc <CJK> +<U000284F7> /x8e/xa6/xcf/xcd <CJK> +<U00028517> /x8e/xa6/xcf/xce <CJK> +<U000284FA> /x8e/xa6/xcf/xcf <CJK> +<U000284F9> /x8e/xa6/xcf/xd0 <CJK> +<U00028500> /x8e/xa6/xcf/xd1 <CJK> +<U000284F5> /x8e/xa6/xcf/xd2 <CJK> +<U000284F1> /x8e/xa6/xcf/xd3 <CJK> +<U00028503> /x8e/xa6/xcf/xd4 <CJK> +<U00028505> /x8e/xa6/xcf/xd5 <CJK> +<U0002851C> /x8e/xa6/xcf/xd6 <CJK> +<U000286AC> /x8e/xa6/xcf/xd7 <CJK> +<U0002869A> /x8e/xa6/xcf/xd8 <CJK> +<U000286AD> /x8e/xa6/xcf/xd9 <CJK> +<U000286A0> /x8e/xa6/xcf/xda <CJK> +<U0002871B> /x8e/xa6/xcf/xdb <CJK> +<U00028725> /x8e/xa6/xcf/xdc <CJK> +<U00028724> /x8e/xa6/xcf/xdd <CJK> +<U00028726> /x8e/xa6/xcf/xde <CJK> +<U00028727> /x8e/xa6/xcf/xdf <CJK> +<U00028728> /x8e/xa6/xcf/xe0 <CJK> +<U0002872A> /x8e/xa6/xcf/xe1 <CJK> +<U0002871A> /x8e/xa6/xcf/xe2 <CJK> +<U0002872E> /x8e/xa6/xcf/xe3 <CJK> +<U00028715> /x8e/xa6/xcf/xe4 <CJK> +<U00028815> /x8e/xa6/xcf/xe5 <CJK> +<U00028814> /x8e/xa6/xcf/xe6 <CJK> +<U00028817> /x8e/xa6/xcf/xe7 <CJK> +<U00028818> /x8e/xa6/xcf/xe8 <CJK> +<U0002880F> /x8e/xa6/xcf/xe9 <CJK> +<U00028813> /x8e/xa6/xcf/xea <CJK> +<U0002880B> /x8e/xa6/xcf/xeb <CJK> +<U00028822> /x8e/xa6/xcf/xec <CJK> +<U0002137A> /x8e/xa6/xcf/xed <CJK> +<U00028926> /x8e/xa6/xcf/xee <CJK> +<U921F> /x8e/xa6/xcf/xef <CJK> +<U00028951> /x8e/xa6/xcf/xf0 <CJK> +<U0002894D> /x8e/xa6/xcf/xf1 <CJK> +<U0002894E> /x8e/xa6/xcf/xf2 <CJK> +<U0002894A> /x8e/xa6/xcf/xf3 <CJK> +<U0002894B> /x8e/xa6/xcf/xf4 <CJK> +<U0002894C> /x8e/xa6/xcf/xf5 <CJK> +<U00028950> /x8e/xa6/xcf/xf6 <CJK> +<U00028962> /x8e/xa6/xcf/xf7 <CJK> +<U0002894F> /x8e/xa6/xcf/xf8 <CJK> +<U00028952> /x8e/xa6/xcf/xf9 <CJK> +<U00028C68> /x8e/xa6/xcf/xfa <CJK> +<U00028C69> /x8e/xa6/xcf/xfb <CJK> +<U00028CE5> /x8e/xa6/xcf/xfc <CJK> +<U00028CF0> /x8e/xa6/xcf/xfd <CJK> +<U00028CE1> /x8e/xa6/xcf/xfe <CJK> +<U00028CE2> /x8e/xa6/xd0/xa1 <CJK> +<U00028EA5> /x8e/xa6/xd0/xa3 <CJK> +<U00028EA9> /x8e/xa6/xd0/xa4 <CJK> +<U00028EA4> /x8e/xa6/xd0/xa5 <CJK> +<U00028EAF> /x8e/xa6/xd0/xa6 <CJK> +<U00028EAC> /x8e/xa6/xd0/xa7 <CJK> +<U00028EAE> /x8e/xa6/xd0/xa8 <CJK> +<U00028EAA> /x8e/xa6/xd0/xa9 <CJK> +<U00028F95> /x8e/xa6/xd0/xaa <CJK> +<U00028F99> /x8e/xa6/xd0/xab <CJK> +<U00028F93> /x8e/xa6/xd0/xac <CJK> +<U00028F9D> /x8e/xa6/xd0/xad <CJK> +<U00028F98> /x8e/xa6/xd0/xae <CJK> +<U00028F9C> /x8e/xa6/xd0/xaf <CJK> +<U00028F97> /x8e/xa6/xd0/xb0 <CJK> +<U4A0D> /x8e/xa6/xd0/xb1 <CJK> +<U00029089> /x8e/xa6/xd0/xb2 <CJK> +<U00029087> /x8e/xa6/xd0/xb3 <CJK> +<U000291D7> /x8e/xa6/xd0/xb4 <CJK> +<U000291ED> /x8e/xa6/xd0/xb5 <CJK> +<U000291F1> /x8e/xa6/xd0/xb6 <CJK> +<U000291F0> /x8e/xa6/xd0/xb7 <CJK> +<U00029205> /x8e/xa6/xd0/xb8 <CJK> +<U00029203> /x8e/xa6/xd0/xb9 <CJK> +<U00029204> /x8e/xa6/xd0/xba <CJK> +<U0002925F> /x8e/xa6/xd0/xbb <CJK> +<U00029457> /x8e/xa6/xd0/xbc <CJK> +<U0002959C> /x8e/xa6/xd0/xbd <CJK> +<U000295A1> /x8e/xa6/xd0/xbe <CJK> +<U0002959A> /x8e/xa6/xd0/xbf <CJK> +<U0002968F> /x8e/xa6/xd0/xc0 <CJK> +<U00029693> /x8e/xa6/xd0/xc1 <CJK> +<U0002969E> /x8e/xa6/xd0/xc2 <CJK> +<U000296A3> /x8e/xa6/xd0/xc3 <CJK> +<U00029698> /x8e/xa6/xd0/xc4 <CJK> +<U00029699> /x8e/xa6/xd0/xc5 <CJK> +<U00029695> /x8e/xa6/xd0/xc6 <CJK> +<U0002986E> /x8e/xa6/xd0/xc7 <CJK> +<U0002986A> /x8e/xa6/xd0/xc8 <CJK> +<U00029AF4> /x8e/xa6/xd0/xc9 <CJK> +<U00029AF7> /x8e/xa6/xd0/xca <CJK> +<U00029C79> /x8e/xa6/xd0/xcb <CJK> +<U00029F8F> /x8e/xa6/xd0/xcc <CJK> +<U00029F91> /x8e/xa6/xd0/xcd <CJK> +<U0002A00B> /x8e/xa6/xd0/xce <CJK> +<U0002A502> /x8e/xa6/xd0/xcf <CJK> +<U00020084> /x8e/xa6/xd0/xd0 <CJK> +<U00020104> /x8e/xa6/xd0/xd1 <CJK> +<U00020180> /x8e/xa6/xd0/xd2 <CJK> +<U0002032F> /x8e/xa6/xd0/xd3 <CJK> +<U0002033F> /x8e/xa6/xd0/xd4 <CJK> +<U0002033B> /x8e/xa6/xd0/xd5 <CJK> +<U00020362> /x8e/xa6/xd0/xd6 <CJK> +<U00020344> /x8e/xa6/xd0/xd7 <CJK> +<U00020333> /x8e/xa6/xd0/xd8 <CJK> +<U0002035F> /x8e/xa6/xd0/xd9 <CJK> +<U0002032B> /x8e/xa6/xd0/xda <CJK> +<U00020339> /x8e/xa6/xd0/xdc <CJK> +<U00020336> /x8e/xa6/xd0/xdd <CJK> +<U00020348> /x8e/xa6/xd0/xde <CJK> +<U00020335> /x8e/xa6/xd0/xdf <CJK> +<U0002036C> /x8e/xa6/xd0/xe0 <CJK> +<U00020358> /x8e/xa6/xd0/xe1 <CJK> +<U0002033A> /x8e/xa6/xd0/xe2 <CJK> +<U000204A8> /x8e/xa6/xd0/xe3 <CJK> +<U000204F4> /x8e/xa6/xd0/xe4 <CJK> +<U00020529> /x8e/xa6/xd0/xe5 <CJK> +<U0002059A> /x8e/xa6/xd0/xe6 <CJK> +<U00020600> /x8e/xa6/xd0/xe7 <CJK> +<U000207BB> /x8e/xa6/xd0/xe8 <CJK> +<U000207BD> /x8e/xa6/xd0/xe9 <CJK> +<U000207B7> /x8e/xa6/xd0/xea <CJK> +<U000207B2> /x8e/xa6/xd0/xeb <CJK> +<U34F8> /x8e/xa6/xd0/xec <CJK> +<U000207A8> /x8e/xa6/xd0/xed <CJK> +<U000207AB> /x8e/xa6/xd0/xee <CJK> +<U000207A6> /x8e/xa6/xd0/xef <CJK> +<U000207BC> /x8e/xa6/xd0/xf0 <CJK> +<U00020897> /x8e/xa6/xd0/xf1 <CJK> +<U00020896> /x8e/xa6/xd0/xf2 <CJK> +<U000208F8> /x8e/xa6/xd0/xf3 <CJK> +<U5313> /x8e/xa6/xd0/xf4 <CJK> +<U00020951> /x8e/xa6/xd0/xf5 <CJK> +<U3533> /x8e/xa6/xd0/xf6 <CJK> +<U000209B5> /x8e/xa6/xd0/xf7 <CJK> +<U000209B4> /x8e/xa6/xd0/xf8 <CJK> +<U000209B6> /x8e/xa6/xd0/xf9 <CJK> +<U353C> /x8e/xa6/xd0/xfa <CJK> +<U000209B7> /x8e/xa6/xd0/xfb <CJK> +<U00020A05> /x8e/xa6/xd0/xfc <CJK> +<U00020A23> /x8e/xa6/xd0/xfd <CJK> +<U00020A95> /x8e/xa6/xd0/xfe <CJK> +<U00020A98> /x8e/xa6/xd1/xa1 <CJK> +<U354F> /x8e/xa6/xd1/xa2 <CJK> +<U00020A94> /x8e/xa6/xd1/xa3 <CJK> +<U00020A93> /x8e/xa6/xd1/xa4 <CJK> +<U00020B07> /x8e/xa6/xd1/xa5 <CJK> +<U00020B73> /x8e/xa6/xd1/xa6 <CJK> +<U00020B71> /x8e/xa6/xd1/xa7 <CJK> +<U00020B72> /x8e/xa6/xd1/xa8 <CJK> +<U00020B78> /x8e/xa6/xd1/xa9 <CJK> +<U00020E5F> /x8e/xa6/xd1/xaa <CJK> +<U00020E6A> /x8e/xa6/xd1/xab <CJK> +<U00020E67> /x8e/xa6/xd1/xac <CJK> +<U00020E6B> /x8e/xa6/xd1/xad <CJK> +<U00020E69> /x8e/xa6/xd1/xae <CJK> +<U00020E8E> /x8e/xa6/xd1/xaf <CJK> +<U00020E49> /x8e/xa6/xd1/xb0 <CJK> +<U00020E80> /x8e/xa6/xd1/xb1 <CJK> +<U35DC> /x8e/xa6/xd1/xb2 <CJK> +<U00020E44> /x8e/xa6/xd1/xb3 <CJK> +<U00020E8F> /x8e/xa6/xd1/xb4 <CJK> +<U00020E45> /x8e/xa6/xd1/xb5 <CJK> +<U00020E4F> /x8e/xa6/xd1/xb7 <CJK> +<U00020E63> /x8e/xa6/xd1/xb8 <CJK> +<U00020E36> /x8e/xa6/xd1/xb9 <CJK> +<U00020E48> /x8e/xa6/xd1/xba <CJK> +<U00020E5C> /x8e/xa6/xd1/xbb <CJK> +<U00020E93> /x8e/xa6/xd1/xbc <CJK> +<U00020E61> /x8e/xa6/xd1/xbd <CJK> +<U00020E60> /x8e/xa6/xd1/xbe <CJK> +<U00020E4E> /x8e/xa6/xd1/xbf <CJK> +<U00020E5E> /x8e/xa6/xd1/xc0 <CJK> +<U00020E3F> /x8e/xa6/xd1/xc1 <CJK> +<U00020EA4> /x8e/xa6/xd1/xc2 <CJK> +<U55E0> /x8e/xa6/xd1/xc3 <CJK> +<U00020E68> /x8e/xa6/xd1/xc4 <CJK> +<U0002120B> /x8e/xa6/xd1/xc5 <CJK> +<U00021211> /x8e/xa6/xd1/xc6 <CJK> +<U0002120D> /x8e/xa6/xd1/xc7 <CJK> +<U0002120E> /x8e/xa6/xd1/xc8 <CJK> +<U000213C2> /x8e/xa6/xd1/xc9 <CJK> +<U000213B0> /x8e/xa6/xd1/xcb <CJK> +<U000213C3> /x8e/xa6/xd1/xcc <CJK> +<U000213C8> /x8e/xa6/xd1/xcd <CJK> +<U00021365> /x8e/xa6/xd1/xce <CJK> +<U000213D7> /x8e/xa6/xd1/xcf <CJK> +<U000213BD> /x8e/xa6/xd1/xd0 <CJK> +<U000213B8> /x8e/xa6/xd1/xd1 <CJK> +<U000213B6> /x8e/xa6/xd1/xd2 <CJK> +<U000213C7> /x8e/xa6/xd1/xd3 <CJK> +<U000213BC> /x8e/xa6/xd1/xd4 <CJK> +<U000213B1> /x8e/xa6/xd1/xd5 <CJK> +<U000213AF> /x8e/xa6/xd1/xd6 <CJK> +<U00021535> /x8e/xa6/xd1/xd8 <CJK> +<U00021530> /x8e/xa6/xd1/xd9 <CJK> +<U0002155D> /x8e/xa6/xd1/xda <CJK> +<U00020B76> /x8e/xa6/xd1/xdb <CJK> +<U0002156F> /x8e/xa6/xd1/xdc <CJK> +<U000215B0> /x8e/xa6/xd1/xdd <CJK> +<U000215B4> /x8e/xa6/xd1/xdf <CJK> +<U0002165C> /x8e/xa6/xd1/xe0 <CJK> +<U0002165D> /x8e/xa6/xd1/xe1 <CJK> +<U00021808> /x8e/xa6/xd1/xe2 <CJK> +<U000217EE> /x8e/xa6/xd1/xe3 <CJK> +<U0002180B> /x8e/xa6/xd1/xe4 <CJK> +<U000217F2> /x8e/xa6/xd1/xe5 <CJK> +<U000217FD> /x8e/xa6/xd1/xe6 <CJK> +<U000217F1> /x8e/xa6/xd1/xe7 <CJK> +<U00021810> /x8e/xa6/xd1/xe8 <CJK> +<U00021814> /x8e/xa6/xd1/xea <CJK> +<U0002198B> /x8e/xa6/xd1/xeb <CJK> +<U0002198C> /x8e/xa6/xd1/xec <CJK> +<U00021985> /x8e/xa6/xd1/xed <CJK> +<U00021A7A> /x8e/xa6/xd1/xee <CJK> +<U00021A6C> /x8e/xa6/xd1/xef <CJK> +<U00021A60> /x8e/xa6/xd1/xf0 <CJK> +<U00021A67> /x8e/xa6/xd1/xf1 <CJK> +<U00021A66> /x8e/xa6/xd1/xf2 <CJK> +<U00021A6A> /x8e/xa6/xd1/xf3 <CJK> +<U00021A5F> /x8e/xa6/xd1/xf4 <CJK> +<U00021A6D> /x8e/xa6/xd1/xf5 <CJK> +<U00021A68> /x8e/xa6/xd1/xf6 <CJK> +<U00021A64> /x8e/xa6/xd1/xf7 <CJK> +<U00021B3A> /x8e/xa6/xd1/xf8 <CJK> +<U00021B3B> /x8e/xa6/xd1/xf9 <CJK> +<U00021B39> /x8e/xa6/xd1/xfa <CJK> +<U00021C02> /x8e/xa6/xd1/xfb <CJK> +<U00021C04> /x8e/xa6/xd1/xfc <CJK> +<U00021C03> /x8e/xa6/xd1/xfd <CJK> +<U00021CB4> /x8e/xa6/xd1/xfe <CJK> +<U00021CB3> /x8e/xa6/xd2/xa1 <CJK> +<U00021CBB> /x8e/xa6/xd2/xa2 <CJK> +<U00021CAC> /x8e/xa6/xd2/xa3 <CJK> +<U00021CB6> /x8e/xa6/xd2/xa4 <CJK> +<U00021CB1> /x8e/xa6/xd2/xa5 <CJK> +<U00021CAF> /x8e/xa6/xd2/xa6 <CJK> +<U00021CB5> /x8e/xa6/xd2/xa7 <CJK> +<U00021CBE> /x8e/xa6/xd2/xa8 <CJK> +<U00021CB2> /x8e/xa6/xd2/xa9 <CJK> +<U00021D24> /x8e/xa6/xd2/xaa <CJK> +<U00021EB6> /x8e/xa6/xd2/xab <CJK> +<U00021EB9> /x8e/xa6/xd2/xac <CJK> +<U00021EAC> /x8e/xa6/xd2/xad <CJK> +<U00021EB0> /x8e/xa6/xd2/xae <CJK> +<U00021ED7> /x8e/xa6/xd2/xaf <CJK> +<U00021EBB> /x8e/xa6/xd2/xb0 <CJK> +<U00021EFE> /x8e/xa6/xd2/xb1 <CJK> +<U00021ECB> /x8e/xa6/xd2/xb2 <CJK> +<U37F5> /x8e/xa6/xd2/xb4 <CJK> +<U00021EB3> /x8e/xa6/xd2/xb5 <CJK> +<U00021EBE> /x8e/xa6/xd2/xb6 <CJK> +<U00021ECD> /x8e/xa6/xd2/xb7 <CJK> +<U00021EBC> /x8e/xa6/xd2/xb8 <CJK> +<U00021EBA> /x8e/xa6/xd2/xb9 <CJK> +<U00021EC7> /x8e/xa6/xd2/xba <CJK> +<U00022116> /x8e/xa6/xd2/xbb <CJK> +<U0002211B> /x8e/xa6/xd2/xbc <CJK> +<U00022117> /x8e/xa6/xd2/xbd <CJK> +<U00022115> /x8e/xa6/xd2/xbe <CJK> +<U0002219F> /x8e/xa6/xd2/xbf <CJK> +<U00022282> /x8e/xa6/xd2/xc1 <CJK> +<U00022283> /x8e/xa6/xd2/xc2 <CJK> +<U0002228E> /x8e/xa6/xd2/xc3 <CJK> +<U0002226A> /x8e/xa6/xd2/xc4 <CJK> +<U00022289> /x8e/xa6/xd2/xc5 <CJK> +<U00022294> /x8e/xa6/xd2/xc6 <CJK> +<U00022286> /x8e/xa6/xd2/xc7 <CJK> +<U00022290> /x8e/xa6/xd2/xc8 <CJK> +<U00022362> /x8e/xa6/xd2/xc9 <CJK> +<U00022390> /x8e/xa6/xd2/xca <CJK> +<U0002240C> /x8e/xa6/xd2/xcb <CJK> +<U0002240F> /x8e/xa6/xd2/xcc <CJK> +<U38C3> /x8e/xa6/xd2/xcd <CJK> +<U000224A5> /x8e/xa6/xd2/xce <CJK> +<U000224A7> /x8e/xa6/xd2/xcf <CJK> +<U000224A6> /x8e/xa6/xd2/xd0 <CJK> +<U000224A4> /x8e/xa6/xd2/xd1 <CJK> +<U00022535> /x8e/xa6/xd2/xd2 <CJK> +<U00022538> /x8e/xa6/xd2/xd3 <CJK> +<U00022536> /x8e/xa6/xd2/xd4 <CJK> +<U00022543> /x8e/xa6/xd2/xd5 <CJK> +<U00022547> /x8e/xa6/xd2/xd6 <CJK> +<U00022537> /x8e/xa6/xd2/xd7 <CJK> +<U00022743> /x8e/xa6/xd2/xd8 <CJK> +<U000227A2> /x8e/xa6/xd2/xd9 <CJK> +<U00022751> /x8e/xa6/xd2/xda <CJK> +<U00022772> /x8e/xa6/xd2/xdb <CJK> +<U0002276D> /x8e/xa6/xd2/xdc <CJK> +<U0002272F> /x8e/xa6/xd2/xdd <CJK> +<U00022754> /x8e/xa6/xd2/xde <CJK> +<U0002276E> /x8e/xa6/xd2/xdf <CJK> +<U00022755> /x8e/xa6/xd2/xe0 <CJK> +<U00022737> /x8e/xa6/xd2/xe1 <CJK> +<U0002274F> /x8e/xa6/xd2/xe2 <CJK> +<U00022750> /x8e/xa6/xd2/xe3 <CJK> +<U6139> /x8e/xa6/xd2/xe4 <CJK> +<U0002279E> /x8e/xa6/xd2/xe5 <CJK> +<U000227B3> /x8e/xa6/xd2/xe7 <CJK> +<U000227A7> /x8e/xa6/xd2/xe8 <CJK> +<U3971> /x8e/xa6/xd2/xe9 <CJK> +<U000227F9> /x8e/xa6/xd2/xea <CJK> +<U00022791> /x8e/xa6/xd2/xeb <CJK> +<U000227B6> /x8e/xa6/xd2/xed <CJK> +<U000227DD> /x8e/xa6/xd2/xee <CJK> +<U00022799> /x8e/xa6/xd2/xef <CJK> +<U000229DF> /x8e/xa6/xd2/xf0 <CJK> +<U000229D5> /x8e/xa6/xd2/xf1 <CJK> +<U000247F5> /x8e/xa6/xd2/xf2 <CJK> +<U00022C28> /x8e/xa6/xd2/xf3 <CJK> +<U00022C40> /x8e/xa6/xd2/xf4 <CJK> +<U00022C71> /x8e/xa6/xd2/xf5 <CJK> +<U00022C98> /x8e/xa6/xd2/xf6 <CJK> +<U00022C95> /x8e/xa6/xd2/xf7 <CJK> +<U00022C65> /x8e/xa6/xd2/xf8 <CJK> +<U00022C78> /x8e/xa6/xd2/xf9 <CJK> +<U00022C7F> /x8e/xa6/xd2/xfa <CJK> +<U00022C60> /x8e/xa6/xd2/xfb <CJK> +<U00022C7C> /x8e/xa6/xd2/xfc <CJK> +<U00022C96> /x8e/xa6/xd2/xfd <CJK> +<U00022C6A> /x8e/xa6/xd2/xfe <CJK> +<U00022C79> /x8e/xa6/xd3/xa1 <CJK> +<U00022C73> /x8e/xa6/xd3/xa2 <CJK> +<U00022C72> /x8e/xa6/xd3/xa3 <CJK> +<U00022C7B> /x8e/xa6/xd3/xa4 <CJK> +<U00022C70> /x8e/xa6/xd3/xa5 <CJK> +<U00022ED5> /x8e/xa6/xd3/xa6 <CJK> +<U00022ED7> /x8e/xa6/xd3/xa7 <CJK> +<U00022F8F> /x8e/xa6/xd3/xa8 <CJK> +<U00022F89> /x8e/xa6/xd3/xa9 <CJK> +<U00022F9E> /x8e/xa6/xd3/xaa <CJK> +<U00022F87> /x8e/xa6/xd3/xab <CJK> +<U00022FA0> /x8e/xa6/xd3/xac <CJK> +<U00022F8D> /x8e/xa6/xd3/xad <CJK> +<U00022F88> /x8e/xa6/xd3/xae <CJK> +<U00022F7F> /x8e/xa6/xd3/xaf <CJK> +<U00022F8C> /x8e/xa6/xd3/xb0 <CJK> +<U00022F93> /x8e/xa6/xd3/xb1 <CJK> +<U00023059> /x8e/xa6/xd3/xb2 <CJK> +<U000295B0> /x8e/xa6/xd3/xb3 <CJK> +<U000230B1> /x8e/xa6/xd3/xb4 <CJK> +<U000251F4> /x8e/xa6/xd3/xb5 <CJK> +<U000230AF> /x8e/xa6/xd3/xb6 <CJK> +<U000230B2> /x8e/xa6/xd3/xb7 <CJK> +<U00023108> /x8e/xa6/xd3/xb8 <CJK> +<U0002310A> /x8e/xa6/xd3/xb9 <CJK> +<U00023136> /x8e/xa6/xd3/xba <CJK> +<U00023137> /x8e/xa6/xd3/xbb <CJK> +<U3B01> /x8e/xa6/xd3/xbd <CJK> +<U00023236> /x8e/xa6/xd3/xbe <CJK> +<U00023229> /x8e/xa6/xd3/xbf <CJK> +<U0002324A> /x8e/xa6/xd3/xc0 <CJK> +<U00023226> /x8e/xa6/xd3/xc1 <CJK> +<U00023228> /x8e/xa6/xd3/xc2 <CJK> +<U00023224> /x8e/xa6/xd3/xc3 <CJK> +<U0002322A> /x8e/xa6/xd3/xc4 <CJK> +<U00023248> /x8e/xa6/xd3/xc5 <CJK> +<U00023344> /x8e/xa6/xd3/xc6 <CJK> +<U00023384> /x8e/xa6/xd3/xc7 <CJK> +<U0002338C> /x8e/xa6/xd3/xc8 <CJK> +<U000234C4> /x8e/xa6/xd3/xc9 <CJK> +<U000234DC> /x8e/xa6/xd3/xca <CJK> +<U00023587> /x8e/xa6/xd3/xcb <CJK> +<U00023553> /x8e/xa6/xd3/xcc <CJK> +<U0002357F> /x8e/xa6/xd3/xcd <CJK> +<U00023531> /x8e/xa6/xd3/xce <CJK> +<U00023551> /x8e/xa6/xd3/xcf <CJK> +<U0002354B> /x8e/xa6/xd3/xd0 <CJK> +<U00023552> /x8e/xa6/xd3/xd1 <CJK> +<U00023580> /x8e/xa6/xd3/xd2 <CJK> +<U000235A5> /x8e/xa6/xd3/xd3 <CJK> +<U00023581> /x8e/xa6/xd3/xd4 <CJK> +<U00023543> /x8e/xa6/xd3/xd5 <CJK> +<U00023534> /x8e/xa6/xd3/xd6 <CJK> +<U00023536> /x8e/xa6/xd3/xd7 <CJK> +<U00023532> /x8e/xa6/xd3/xd8 <CJK> +<U00023548> /x8e/xa6/xd3/xd9 <CJK> +<U00023549> /x8e/xa6/xd3/xda <CJK> +<U0002353C> /x8e/xa6/xd3/xdb <CJK> +<U0002354D> /x8e/xa6/xd3/xdc <CJK> +<U0002354A> /x8e/xa6/xd3/xdd <CJK> +<U0002358A> /x8e/xa6/xd3/xdf <CJK> +<U00023546> /x8e/xa6/xd3/xe0 <CJK> +<U0002353E> /x8e/xa6/xd3/xe1 <CJK> +<U00023583> /x8e/xa6/xd3/xe2 <CJK> +<U00023550> /x8e/xa6/xd3/xe3 <CJK> +<U000235B4> /x8e/xa6/xd3/xe4 <CJK> +<U000238F0> /x8e/xa6/xd3/xe5 <CJK> +<U000238E4> /x8e/xa6/xd3/xe6 <CJK> +<U000238E3> /x8e/xa6/xd3/xe7 <CJK> +<U000238E5> /x8e/xa6/xd3/xe8 <CJK> +<U000238E6> /x8e/xa6/xd3/xe9 <CJK> +<U000238E7> /x8e/xa6/xd3/xea <CJK> +<U000238E1> /x8e/xa6/xd3/xeb <CJK> +<U000238EF> /x8e/xa6/xd3/xec <CJK> +<U000238E8> /x8e/xa6/xd3/xed <CJK> +<U000238DD> /x8e/xa6/xd3/xee <CJK> +<U00023903> /x8e/xa6/xd3/xef <CJK> +<U00023988> /x8e/xa6/xd3/xf0 <CJK> +<U00023A26> /x8e/xa6/xd3/xf1 <CJK> +<U00023A16> /x8e/xa6/xd3/xf2 <CJK> +<U00023A3B> /x8e/xa6/xd3/xf3 <CJK> +<U00023A2F> /x8e/xa6/xd3/xf4 <CJK> +<U00023A39> /x8e/xa6/xd3/xf5 <CJK> +<U00023A34> /x8e/xa6/xd3/xf6 <CJK> +<U00023A35> /x8e/xa6/xd3/xf8 <CJK> +<U00023A31> /x8e/xa6/xd3/xf9 <CJK> +<U00023A38> /x8e/xa6/xd3/xfa <CJK> +<U00020B81> /x8e/xa6/xd3/xfb <CJK> +<U00023AAA> /x8e/xa6/xd3/xfc <CJK> +<U00023AA3> /x8e/xa6/xd3/xfd <CJK> +<U00023AA4> /x8e/xa6/xd3/xfe <CJK> +<U00023AA0> /x8e/xa6/xd4/xa1 <CJK> +<U00023AA1> /x8e/xa6/xd4/xa2 <CJK> +<U00023AA9> /x8e/xa6/xd4/xa3 <CJK> +<U00023AA5> /x8e/xa6/xd4/xa4 <CJK> +<U00023BAF> /x8e/xa6/xd4/xa5 <CJK> +<U00023BB1> /x8e/xa6/xd4/xa6 <CJK> +<U00023BAB> /x8e/xa6/xd4/xa7 <CJK> +<U00023BAE> /x8e/xa6/xd4/xa8 <CJK> +<U00023BB0> /x8e/xa6/xd4/xa9 <CJK> +<U00023BB3> /x8e/xa6/xd4/xaa <CJK> +<U00023BAC> /x8e/xa6/xd4/xab <CJK> +<U00023BA9> /x8e/xa6/xd4/xac <CJK> +<U00023BB2> /x8e/xa6/xd4/xad <CJK> +<U00023BA8> /x8e/xa6/xd4/xae <CJK> +<U00023BB4> /x8e/xa6/xd4/xaf <CJK> +<U00023BC2> /x8e/xa6/xd4/xb0 <CJK> +<U00023C4F> /x8e/xa6/xd4/xb1 <CJK> +<U00023C66> /x8e/xa6/xd4/xb2 <CJK> +<U00023E1E> /x8e/xa6/xd4/xb3 <CJK> +<U00023E15> /x8e/xa6/xd4/xb4 <CJK> +<U00023E10> /x8e/xa6/xd4/xb5 <CJK> +<U00023E7F> /x8e/xa6/xd4/xb6 <CJK> +<U00023E7E> /x8e/xa6/xd4/xb7 <CJK> +<U00023E60> /x8e/xa6/xd4/xb8 <CJK> +<U00023ECC> /x8e/xa6/xd4/xb9 <CJK> +<U00023EB2> /x8e/xa6/xd4/xba <CJK> +<U00023E62> /x8e/xa6/xd4/xbb <CJK> +<U00023E8D> /x8e/xa6/xd4/xbc <CJK> +<U00023E8E> /x8e/xa6/xd4/xbd <CJK> +<U00023E77> /x8e/xa6/xd4/xbe <CJK> +<U00023E7C> /x8e/xa6/xd4/xbf <CJK> +<U00023E8F> /x8e/xa6/xd4/xc0 <CJK> +<U00023E5D> /x8e/xa6/xd4/xc1 <CJK> +<U00023E6D> /x8e/xa6/xd4/xc2 <CJK> +<U00023E63> /x8e/xa6/xd4/xc3 <CJK> +<U00023EAF> /x8e/xa6/xd4/xc4 <CJK> +<U00023E90> /x8e/xa6/xd4/xc5 <CJK> +<U00023E7D> /x8e/xa6/xd4/xc6 <CJK> +<U00023E7A> /x8e/xa6/xd4/xc7 <CJK> +<U00023E06> /x8e/xa6/xd4/xc8 <CJK> +<U00023E68> /x8e/xa6/xd4/xca <CJK> +<U00023EB4> /x8e/xa6/xd4/xcb <CJK> +<U00023E78> /x8e/xa6/xd4/xcc <CJK> +<U00023EB1> /x8e/xa6/xd4/xcd <CJK> +<U6ED7> /x8e/xa6/xd4/xce <CJK> +<U3D41> /x8e/xa6/xd4/xd0 <CJK> +<U000242E8> /x8e/xa6/xd4/xd1 <CJK> +<U000242E9> /x8e/xa6/xd4/xd2 <CJK> +<U000242C0> /x8e/xa6/xd4/xd3 <CJK> +<U3DD7> /x8e/xa6/xd4/xd4 <CJK> +<U000242EA> /x8e/xa6/xd4/xd5 <CJK> +<U000242B7> /x8e/xa6/xd4/xd6 <CJK> +<U000242BA> /x8e/xa6/xd4/xd7 <CJK> +<U000242B5> /x8e/xa6/xd4/xd8 <CJK> +<U000242B4> /x8e/xa6/xd4/xda <CJK> +<U000242BC> /x8e/xa6/xd4/xdb <CJK> +<U000242C6> /x8e/xa6/xd4/xdc <CJK> +<U000242B8> /x8e/xa6/xd4/xdd <CJK> +<U000242BD> /x8e/xa6/xd4/xde <CJK> +<U000242C2> /x8e/xa6/xd4/xdf <CJK> +<U0002434D> /x8e/xa6/xd4/xe0 <CJK> +<U000242F0> /x8e/xa6/xd4/xe1 <CJK> +<U000242C7> /x8e/xa6/xd4/xe2 <CJK> +<U000242C1> /x8e/xa6/xd4/xe3 <CJK> +<U000242C3> /x8e/xa6/xd4/xe4 <CJK> +<U000242F1> /x8e/xa6/xd4/xe5 <CJK> +<U000242EC> /x8e/xa6/xd4/xe6 <CJK> +<U0002451C> /x8e/xa6/xd4/xe8 <CJK> +<U00024520> /x8e/xa6/xd4/xe9 <CJK> +<U00024558> /x8e/xa6/xd4/xea <CJK> +<U00024565> /x8e/xa6/xd4/xeb <CJK> +<U00024564> /x8e/xa6/xd4/xec <CJK> +<U0002458C> /x8e/xa6/xd4/xed <CJK> +<U0002458D> /x8e/xa6/xd4/xee <CJK> +<U000245D9> /x8e/xa6/xd4/xef <CJK> +<U000245E0> /x8e/xa6/xd4/xf0 <CJK> +<U00024610> /x8e/xa6/xd4/xf1 <CJK> +<U00024694> /x8e/xa6/xd4/xf2 <CJK> +<U00024692> /x8e/xa6/xd4/xf3 <CJK> +<U00024696> /x8e/xa6/xd4/xf4 <CJK> +<U00024695> /x8e/xa6/xd4/xf5 <CJK> +<U000246BF> /x8e/xa6/xd4/xf6 <CJK> +<U000246A0> /x8e/xa6/xd4/xf7 <CJK> +<U3E45> /x8e/xa6/xd4/xf8 <CJK> +<U000247F4> /x8e/xa6/xd4/xf9 <CJK> +<U000247F6> /x8e/xa6/xd4/xfa <CJK> +<U000247DC> /x8e/xa6/xd4/xfb <CJK> +<U733D> /x8e/xa6/xd4/xfc <CJK> +<U00024816> /x8e/xa6/xd4/xfd <CJK> +<U00024815> /x8e/xa6/xd4/xfe <CJK> +<U0002481C> /x8e/xa6/xd5/xa1 <CJK> +<U0002480F> /x8e/xa6/xd5/xa2 <CJK> +<U0002482C> /x8e/xa6/xd5/xa3 <CJK> +<U00024814> /x8e/xa6/xd5/xa4 <CJK> +<U00024825> /x8e/xa6/xd5/xa5 <CJK> +<U00024817> /x8e/xa6/xd5/xa6 <CJK> +<U00024812> /x8e/xa6/xd5/xa7 <CJK> +<U0002481E> /x8e/xa6/xd5/xa8 <CJK> +<U00024980> /x8e/xa6/xd5/xa9 <CJK> +<U000249A8> /x8e/xa6/xd5/xaa <CJK> +<U000249AF> /x8e/xa6/xd5/xab <CJK> +<U000249D6> /x8e/xa6/xd5/xac <CJK> +<U000249E2> /x8e/xa6/xd5/xad <CJK> +<U000249B4> /x8e/xa6/xd5/xae <CJK> +<U000249B3> /x8e/xa6/xd5/xaf <CJK> +<U000249B0> /x8e/xa6/xd5/xb0 <CJK> +<U000249B2> /x8e/xa6/xd5/xb1 <CJK> +<U000249A1> /x8e/xa6/xd5/xb2 <CJK> +<U00024B60> /x8e/xa6/xd5/xb3 <CJK> +<U00024B66> /x8e/xa6/xd5/xb4 <CJK> +<U00024B61> /x8e/xa6/xd5/xb5 <CJK> +<U00024B4E> /x8e/xa6/xd5/xb6 <CJK> +<U00024B5D> /x8e/xa6/xd5/xb7 <CJK> +<U00024B63> /x8e/xa6/xd5/xb8 <CJK> +<U00024BE6> /x8e/xa6/xd5/xb9 <CJK> +<U00024BEF> /x8e/xa6/xd5/xba <CJK> +<U00024BEC> /x8e/xa6/xd5/xbb <CJK> +<U00024C98> /x8e/xa6/xd5/xbc <CJK> +<U00024CA7> /x8e/xa6/xd5/xbd <CJK> +<U00024C94> /x8e/xa6/xd5/xbe <CJK> +<U00024C95> /x8e/xa6/xd5/xbf <CJK> +<U00024C91> /x8e/xa6/xd5/xc0 <CJK> +<U00024C9D> /x8e/xa6/xd5/xc1 <CJK> +<U00024C99> /x8e/xa6/xd5/xc2 <CJK> +<U00024C9B> /x8e/xa6/xd5/xc3 <CJK> +<U00024C9C> /x8e/xa6/xd5/xc4 <CJK> +<U00024D1D> /x8e/xa6/xd5/xc5 <CJK> +<U00024D1C> /x8e/xa6/xd5/xc6 <CJK> +<U00024DD0> /x8e/xa6/xd5/xc7 <CJK> +<U00024DE0> /x8e/xa6/xd5/xc8 <CJK> +<U00024DCB> /x8e/xa6/xd5/xc9 <CJK> +<U00024DDB> /x8e/xa6/xd5/xca <CJK> +<U00024DDA> /x8e/xa6/xd5/xcb <CJK> +<U00024DC2> /x8e/xa6/xd5/xcc <CJK> +<U00024DD3> /x8e/xa6/xd5/xcd <CJK> +<U00024DE5> /x8e/xa6/xd5/xce <CJK> +<U00024F7D> /x8e/xa6/xd5/xcf <CJK> +<U00024F7B> /x8e/xa6/xd5/xd0 <CJK> +<U00024FFF> /x8e/xa6/xd5/xd1 <CJK> +<U3FF2> /x8e/xa6/xd5/xd2 <CJK> +<U00024FF9> /x8e/xa6/xd5/xd3 <CJK> +<U00025077> /x8e/xa6/xd5/xd4 <CJK> +<U0002507C> /x8e/xa6/xd5/xd5 <CJK> +<U00025078> /x8e/xa6/xd5/xd6 <CJK> +<U0002507B> /x8e/xa6/xd5/xd7 <CJK> +<U0002507A> /x8e/xa6/xd5/xd8 <CJK> +<U000251D2> /x8e/xa6/xd5/xd9 <CJK> +<U000251CB> /x8e/xa6/xd5/xda <CJK> +<U000251C9> /x8e/xa6/xd5/xdb <CJK> +<U000251CE> /x8e/xa6/xd5/xdc <CJK> +<U000251E4> /x8e/xa6/xd5/xdd <CJK> +<U000251CA> /x8e/xa6/xd5/xde <CJK> +<U000251D0> /x8e/xa6/xd5/xdf <CJK> +<U00022FA5> /x8e/xa6/xd5/xe0 <CJK> +<U4049> /x8e/xa6/xd5/xe1 <CJK> +<U000251D9> /x8e/xa6/xd5/xe2 <CJK> +<U000251EE> /x8e/xa6/xd5/xe3 <CJK> +<U000251DD> /x8e/xa6/xd5/xe4 <CJK> +<U00025200> /x8e/xa6/xd5/xe5 <CJK> +<U000251E1> /x8e/xa6/xd5/xe6 <CJK> +<U000253DE> /x8e/xa6/xd5/xe7 <CJK> +<U000253E2> /x8e/xa6/xd5/xe8 <CJK> +<U000253DA> /x8e/xa6/xd5/xe9 <CJK> +<U000254CE> /x8e/xa6/xd5/xea <CJK> +<U000254CF> /x8e/xa6/xd5/xec <CJK> +<U000254DA> /x8e/xa6/xd5/xed <CJK> +<U000254D1> /x8e/xa6/xd5/xee <CJK> +<U000254D4> /x8e/xa6/xd5/xef <CJK> +<U000254ED> /x8e/xa6/xd5/xf0 <CJK> +<U000254CB> /x8e/xa6/xd5/xf1 <CJK> +<U000254D5> /x8e/xa6/xd5/xf2 <CJK> +<U000254F1> /x8e/xa6/xd5/xf3 <CJK> +<U0002569C> /x8e/xa6/xd5/xf4 <CJK> +<U00025688> /x8e/xa6/xd5/xf5 <CJK> +<U00025741> /x8e/xa6/xd5/xf6 <CJK> +<U000257D0> /x8e/xa6/xd5/xf7 <CJK> +<U000257F7> /x8e/xa6/xd5/xf8 <CJK> +<U000257CF> /x8e/xa6/xd5/xf9 <CJK> +<U000257D1> /x8e/xa6/xd5/xfa <CJK> +<U000257DB> /x8e/xa6/xd5/xfb <CJK> +<U000257DE> /x8e/xa6/xd5/xfc <CJK> +<U000257F8> /x8e/xa6/xd5/xfd <CJK> +<U000257DC> /x8e/xa6/xd5/xfe <CJK> +<U000257D9> /x8e/xa6/xd6/xa1 <CJK> +<U000259A0> /x8e/xa6/xd6/xa2 <CJK> +<U000259B2> /x8e/xa6/xd6/xa3 <CJK> +<U000259A1> /x8e/xa6/xd6/xa4 <CJK> +<U000259AA> /x8e/xa6/xd6/xa5 <CJK> +<U000259A9> /x8e/xa6/xd6/xa6 <CJK> +<U41A9> /x8e/xa6/xd6/xa7 <CJK> +<U000259A6> /x8e/xa6/xd6/xa8 <CJK> +<U0002599C> /x8e/xa6/xd6/xa9 <CJK> +<U000259B5> /x8e/xa6/xd6/xaa <CJK> +<U000259A7> /x8e/xa6/xd6/xab <CJK> +<U00025A8E> /x8e/xa6/xd6/xac <CJK> +<U00025A90> /x8e/xa6/xd6/xad <CJK> +<U00025A91> /x8e/xa6/xd6/xae <CJK> +<U00025B85> /x8e/xa6/xd6/xaf <CJK> +<U00025B5B> /x8e/xa6/xd6/xb0 <CJK> +<U00025B70> /x8e/xa6/xd6/xb1 <CJK> +<U00025B64> /x8e/xa6/xd6/xb2 <CJK> +<U00025B67> /x8e/xa6/xd6/xb3 <CJK> +<U00025B63> /x8e/xa6/xd6/xb4 <CJK> +<U00025B77> /x8e/xa6/xd6/xb5 <CJK> +<U00025B68> /x8e/xa6/xd6/xb6 <CJK> +<U00025B65> /x8e/xa6/xd6/xb7 <CJK> +<U00025B6A> /x8e/xa6/xd6/xb8 <CJK> +<U00025B78> /x8e/xa6/xd6/xb9 <CJK> +<U00025B66> /x8e/xa6/xd6/xba <CJK> +<U00025E88> /x8e/xa6/xd6/xbb <CJK> +<U00025E9E> /x8e/xa6/xd6/xbc <CJK> +<U00025E74> /x8e/xa6/xd6/xbd <CJK> +<U00025E7A> /x8e/xa6/xd6/xbe <CJK> +<U00025E79> /x8e/xa6/xd6/xbf <CJK> +<U00025E8B> /x8e/xa6/xd6/xc0 <CJK> +<U00025E7F> /x8e/xa6/xd6/xc1 <CJK> +<U00026013> /x8e/xa6/xd6/xc2 <CJK> +<U0002601E> /x8e/xa6/xd6/xc3 <CJK> +<U00026017> /x8e/xa6/xd6/xc4 <CJK> +<U0002601A> /x8e/xa6/xd6/xc5 <CJK> +<U00026022> /x8e/xa6/xd6/xc6 <CJK> +<U00026043> /x8e/xa6/xd6/xc7 <CJK> +<U00026019> /x8e/xa6/xd6/xc8 <CJK> +<U0002601F> /x8e/xa6/xd6/xc9 <CJK> +<U00026027> /x8e/xa6/xd6/xca <CJK> +<U00026012> /x8e/xa6/xd6/xcb <CJK> +<U00026024> /x8e/xa6/xd6/xcc <CJK> +<U00026025> /x8e/xa6/xd6/xcd <CJK> +<U0002035E> /x8e/xa6/xd6/xce <CJK> +<U00026235> /x8e/xa6/xd6/xcf <CJK> +<U00026234> /x8e/xa6/xd6/xd0 <CJK> +<U000262D1> /x8e/xa6/xd6/xd1 <CJK> +<U000262C4> /x8e/xa6/xd6/xd2 <CJK> +<U000262CA> /x8e/xa6/xd6/xd3 <CJK> +<U000262C6> /x8e/xa6/xd6/xd4 <CJK> +<U000262CB> /x8e/xa6/xd6/xd5 <CJK> +<U000262CD> /x8e/xa6/xd6/xd6 <CJK> +<U000262E2> /x8e/xa6/xd6/xd7 <CJK> +<U00026389> /x8e/xa6/xd6/xd8 <CJK> +<U0002638B> /x8e/xa6/xd6/xd9 <CJK> +<U00026386> /x8e/xa6/xd6/xda <CJK> +<U00026388> /x8e/xa6/xd6/xdb <CJK> +<U0002638D> /x8e/xa6/xd6/xdc <CJK> +<U0002643B> /x8e/xa6/xd6/xdd <CJK> +<U0002643C> /x8e/xa6/xd6/xde <CJK> +<U0002643D> /x8e/xa6/xd6/xdf <CJK> +<U000264F5> /x8e/xa6/xd6/xe0 <CJK> +<U00026579> /x8e/xa6/xd6/xe1 <CJK> +<U00026575> /x8e/xa6/xd6/xe2 <CJK> +<U00026582> /x8e/xa6/xd6/xe3 <CJK> +<U0002657F> /x8e/xa6/xd6/xe4 <CJK> +<U00026585> /x8e/xa6/xd6/xe5 <CJK> +<U00026576> /x8e/xa6/xd6/xe6 <CJK> +<U0002657C> /x8e/xa6/xd6/xe7 <CJK> +<U0002657E> /x8e/xa6/xd6/xe8 <CJK> +<U0002657B> /x8e/xa6/xd6/xe9 <CJK> +<U00026580> /x8e/xa6/xd6/xea <CJK> +<U0002657A> /x8e/xa6/xd6/xeb <CJK> +<U00022548> /x8e/xa6/xd6/xec <CJK> +<U43CB> /x8e/xa6/xd6/xed <CJK> +<U0002661D> /x8e/xa6/xd6/xee <CJK> +<U000266F6> /x8e/xa6/xd6/xef <CJK> +<U000266F7> /x8e/xa6/xd6/xf0 <CJK> +<U000266F9> /x8e/xa6/xd6/xf1 <CJK> +<U00026763> /x8e/xa6/xd6/xf2 <CJK> +<U0002676C> /x8e/xa6/xd6/xf3 <CJK> +<U0002676E> /x8e/xa6/xd6/xf4 <CJK> +<U00026714> /x8e/xa6/xd6/xf5 <CJK> +<U440D> /x8e/xa6/xd6/xf6 <CJK> +<U00026767> /x8e/xa6/xd6/xf7 <CJK> +<U0002676F> /x8e/xa6/xd6/xf8 <CJK> +<U00026769> /x8e/xa6/xd6/xf9 <CJK> +<U00026776> /x8e/xa6/xd6/xfa <CJK> +<U00026795> /x8e/xa6/xd6/xfb <CJK> +<U00026771> /x8e/xa6/xd6/xfc <CJK> +<U00026761> /x8e/xa6/xd6/xfd <CJK> +<U00026778> /x8e/xa6/xd6/xfe <CJK> +<U0002676B> /x8e/xa6/xd7/xa1 <CJK> +<U00026785> /x8e/xa6/xd7/xa2 <CJK> +<U00026784> /x8e/xa6/xd7/xa3 <CJK> +<U00026914> /x8e/xa6/xd7/xa4 <CJK> +<U00026976> /x8e/xa6/xd7/xa5 <CJK> +<U000259B6> /x8e/xa6/xd7/xa6 <CJK> +<U00026975> /x8e/xa6/xd7/xa7 <CJK> +<U00026974> /x8e/xa6/xd7/xa8 <CJK> +<U000269E2> /x8e/xa6/xd7/xa9 <CJK> +<U00026A3F> /x8e/xa6/xd7/xaa <CJK> +<U00026A44> /x8e/xa6/xd7/xab <CJK> +<U00026A3D> /x8e/xa6/xd7/xac <CJK> +<U00026A47> /x8e/xa6/xd7/xad <CJK> +<U00026A48> /x8e/xa6/xd7/xae <CJK> +<U00026ADB> /x8e/xa6/xd7/xaf <CJK> +<U00026ADC> /x8e/xa6/xd7/xb0 <CJK> +<U00026ADD> /x8e/xa6/xd7/xb1 <CJK> +<U00026BE5> /x8e/xa6/xd7/xb2 <CJK> +<U00026BE6> /x8e/xa6/xd7/xb3 <CJK> +<U00026CC2> /x8e/xa6/xd7/xb4 <CJK> +<U00026D2E> /x8e/xa6/xd7/xb5 <CJK> +<U00026D1D> /x8e/xa6/xd7/xb6 <CJK> +<U00026CF8> /x8e/xa6/xd7/xb7 <CJK> +<U00026CF0> /x8e/xa6/xd7/xb8 <CJK> +<U00026CF6> /x8e/xa6/xd7/xb9 <CJK> +<U00026CC5> /x8e/xa6/xd7/xba <CJK> +<U00026CC6> /x8e/xa6/xd7/xbb <CJK> +<U00026CFC> /x8e/xa6/xd7/xbc <CJK> +<U00026D52> /x8e/xa6/xd7/xbd <CJK> +<U00026D2F> /x8e/xa6/xd7/xbe <CJK> +<U00026D10> /x8e/xa6/xd7/xbf <CJK> +<U00026CF3> /x8e/xa6/xd7/xc0 <CJK> +<U00026CD2> /x8e/xa6/xd7/xc1 <CJK> +<U00026CEA> /x8e/xa6/xd7/xc2 <CJK> +<U00026CDC> /x8e/xa6/xd7/xc3 <CJK> +<U00026D1B> /x8e/xa6/xd7/xc4 <CJK> +<U00026CFB> /x8e/xa6/xd7/xc5 <CJK> +<U00026CC3> /x8e/xa6/xd7/xc6 <CJK> +<U00026D16> /x8e/xa6/xd7/xc7 <CJK> +<U00026D07> /x8e/xa6/xd7/xc8 <CJK> +<U00026CC9> /x8e/xa6/xd7/xc9 <CJK> +<U00026CD8> /x8e/xa6/xd7/xca <CJK> +<U00026D30> /x8e/xa6/xd7/xcb <CJK> +<U00026D13> /x8e/xa6/xd7/xcc <CJK> +<U00026D31> /x8e/xa6/xd7/xcd <CJK> +<U00026CFA> /x8e/xa6/xd7/xce <CJK> +<U00026CF2> /x8e/xa6/xd7/xcf <CJK> +<U00026DE3> /x8e/xa6/xd7/xd0 <CJK> +<U00026CD5> /x8e/xa6/xd7/xd1 <CJK> +<U00026D01> /x8e/xa6/xd7/xd2 <CJK> +<U00026CF1> /x8e/xa6/xd7/xd3 <CJK> +<U00026D1C> /x8e/xa6/xd7/xd4 <CJK> +<U00026CD6> /x8e/xa6/xd7/xd5 <CJK> +<U00026D08> /x8e/xa6/xd7/xd6 <CJK> +<U00026D0B> /x8e/xa6/xd7/xd7 <CJK> +<U00026D17> /x8e/xa6/xd7/xd8 <CJK> +<U00026D20> /x8e/xa6/xd7/xd9 <CJK> +<U00026CCA> /x8e/xa6/xd7/xda <CJK> +<U00026D32> /x8e/xa6/xd7/xdb <CJK> +<U00026D05> /x8e/xa6/xd7/xdc <CJK> +<U00026CE4> /x8e/xa6/xd7/xdd <CJK> +<U00026CCE> /x8e/xa6/xd7/xde <CJK> +<U00026D33> /x8e/xa6/xd7/xdf <CJK> +<U00026D02> /x8e/xa6/xd7/xe0 <CJK> +<U00026D19> /x8e/xa6/xd7/xe1 <CJK> +<U00026D1E> /x8e/xa6/xd7/xe2 <CJK> +<U00026CD3> /x8e/xa6/xd7/xe3 <CJK> +<U00026CF7> /x8e/xa6/xd7/xe4 <CJK> +<U00026CE8> /x8e/xa6/xd7/xe5 <CJK> +<U00026D1F> /x8e/xa6/xd7/xe6 <CJK> +<U00026CF4> /x8e/xa6/xd7/xe7 <CJK> +<U00026DD8> /x8e/xa6/xd7/xe8 <CJK> +<U000271BF> /x8e/xa6/xd7/xe9 <CJK> +<U000271BE> /x8e/xa6/xd7/xea <CJK> +<U000271BD> /x8e/xa6/xd7/xeb <CJK> +<U000272DC> /x8e/xa6/xd7/xec <CJK> +<U000272DD> /x8e/xa6/xd7/xed <CJK> +<U000272AB> /x8e/xa6/xd7/xee <CJK> +<U000272C9> /x8e/xa6/xd7/xef <CJK> +<U000272C8> /x8e/xa6/xd7/xf0 <CJK> +<U000272DF> /x8e/xa6/xd7/xf1 <CJK> +<U000272D9> /x8e/xa6/xd7/xf2 <CJK> +<U000272DB> /x8e/xa6/xd7/xf3 <CJK> +<U000272CC> /x8e/xa6/xd7/xf4 <CJK> +<U000272E0> /x8e/xa6/xd7/xf5 <CJK> +<U000272EF> /x8e/xa6/xd7/xf6 <CJK> +<U000272F3> /x8e/xa6/xd7/xf7 <CJK> +<U000272AE> /x8e/xa6/xd7/xf8 <CJK> +<U00027301> /x8e/xa6/xd7/xf9 <CJK> +<U000275B7> /x8e/xa6/xd7/xfa <CJK> +<U000275B9> /x8e/xa6/xd7/xfb <CJK> +<U000275B6> /x8e/xa6/xd7/xfc <CJK> +<U000275B8> /x8e/xa6/xd7/xfd <CJK> +<U000275F6> /x8e/xa6/xd7/xfe <CJK> +<U000275F3> /x8e/xa6/xd8/xa1 <CJK> +<U000275F5> /x8e/xa6/xd8/xa2 <CJK> +<U000275F2> /x8e/xa6/xd8/xa3 <CJK> +<U00027691> /x8e/xa6/xd8/xa4 <CJK> +<U0002769D> /x8e/xa6/xd8/xa5 <CJK> +<U0002769B> /x8e/xa6/xd8/xa6 <CJK> +<U00027692> /x8e/xa6/xd8/xa7 <CJK> +<U0002768D> /x8e/xa6/xd8/xa8 <CJK> +<U0002769E> /x8e/xa6/xd8/xa9 <CJK> +<U0002768C> /x8e/xa6/xd8/xaa <CJK> +<U4631> /x8e/xa6/xd8/xab <CJK> +<U00027695> /x8e/xa6/xd8/xad <CJK> +<U0002768A> /x8e/xa6/xd8/xaf <CJK> +<U0002768E> /x8e/xa6/xd8/xb0 <CJK> +<U0002769C> /x8e/xa6/xd8/xb1 <CJK> +<U000277EF> /x8e/xa6/xd8/xb2 <CJK> +<U0002782D> /x8e/xa6/xd8/xb3 <CJK> +<U00027852> /x8e/xa6/xd8/xb4 <CJK> +<U00027835> /x8e/xa6/xd8/xb5 <CJK> +<U00027828> /x8e/xa6/xd8/xb6 <CJK> +<U0002782E> /x8e/xa6/xd8/xb7 <CJK> +<U000278E5> /x8e/xa6/xd8/xb8 <CJK> +<U000279EA> /x8e/xa6/xd8/xb9 <CJK> +<U000279F1> /x8e/xa6/xd8/xba <CJK> +<U000279EB> /x8e/xa6/xd8/xbb <CJK> +<U000279D8> /x8e/xa6/xd8/xbc <CJK> +<U000279D0> /x8e/xa6/xd8/xbd <CJK> +<U000279F3> /x8e/xa6/xd8/xbe <CJK> +<U000279DB> /x8e/xa6/xd8/xbf <CJK> +<U000279CE> /x8e/xa6/xd8/xc0 <CJK> +<U46D5> /x8e/xa6/xd8/xc1 <CJK> +<U000279DA> /x8e/xa6/xd8/xc2 <CJK> +<U000279D7> /x8e/xa6/xd8/xc3 <CJK> +<U000279E1> /x8e/xa6/xd8/xc4 <CJK> +<U000279F2> /x8e/xa6/xd8/xc5 <CJK> +<U000279C8> /x8e/xa6/xd8/xc6 <CJK> +<U000279D9> /x8e/xa6/xd8/xc7 <CJK> +<U000279DE> /x8e/xa6/xd8/xc8 <CJK> +<U000279D1> /x8e/xa6/xd8/xc9 <CJK> +<U000279E7> /x8e/xa6/xd8/xca <CJK> +<U000279CF> /x8e/xa6/xd8/xcb <CJK> +<U00027BB7> /x8e/xa6/xd8/xcc <CJK> +<U00027C47> /x8e/xa6/xd8/xcd <CJK> +<U00027C42> /x8e/xa6/xd8/xce <CJK> +<U00027C43> /x8e/xa6/xd8/xcf <CJK> +<U00027CC3> /x8e/xa6/xd8/xd1 <CJK> +<U00027CC1> /x8e/xa6/xd8/xd2 <CJK> +<U00027CC7> /x8e/xa6/xd8/xd3 <CJK> +<U00027D64> /x8e/xa6/xd8/xd4 <CJK> +<U00027D6A> /x8e/xa6/xd8/xd5 <CJK> +<U00027D66> /x8e/xa6/xd8/xd6 <CJK> +<U00027D50> /x8e/xa6/xd8/xd7 <CJK> +<U00027D6E> /x8e/xa6/xd8/xd8 <CJK> +<U00027D65> /x8e/xa6/xd8/xd9 <CJK> +<U000238EC> /x8e/xa6/xd8/xda <CJK> +<U00027D7F> /x8e/xa6/xd8/xdb <CJK> +<U00027D9A> /x8e/xa6/xd8/xdd <CJK> +<U00027D69> /x8e/xa6/xd8/xde <CJK> +<U00027D72> /x8e/xa6/xd8/xdf <CJK> +<U00027D6F> /x8e/xa6/xd8/xe0 <CJK> +<U00027D7D> /x8e/xa6/xd8/xe1 <CJK> +<U00027D70> /x8e/xa6/xd8/xe2 <CJK> +<U00027E60> /x8e/xa6/xd8/xe3 <CJK> +<U00027EC2> /x8e/xa6/xd8/xe4 <CJK> +<U00027EE7> /x8e/xa6/xd8/xe5 <CJK> +<U00027ED1> /x8e/xa6/xd8/xe6 <CJK> +<U00027EEB> /x8e/xa6/xd8/xe7 <CJK> +<U00027ED4> /x8e/xa6/xd8/xe8 <CJK> +<U00027EDC> /x8e/xa6/xd8/xe9 <CJK> +<U00027EDB> /x8e/xa6/xd8/xea <CJK> +<U00028037> /x8e/xa6/xd8/xeb <CJK> +<U00028025> /x8e/xa6/xd8/xec <CJK> +<U0002801F> /x8e/xa6/xd8/xed <CJK> +<U0002801E> /x8e/xa6/xd8/xee <CJK> +<U00028021> /x8e/xa6/xd8/xef <CJK> +<U0002801B> /x8e/xa6/xd8/xf0 <CJK> +<U00028017> /x8e/xa6/xd8/xf1 <CJK> +<U00028022> /x8e/xa6/xd8/xf2 <CJK> +<U0002802A> /x8e/xa6/xd8/xf3 <CJK> +<U0002801A> /x8e/xa6/xd8/xf4 <CJK> +<U0002802D> /x8e/xa6/xd8/xf5 <CJK> +<U00028023> /x8e/xa6/xd8/xf6 <CJK> +<U00028026> /x8e/xa6/xd8/xf7 <CJK> +<U00028036> /x8e/xa6/xd8/xf8 <CJK> +<U00027FFF> /x8e/xa6/xd8/xf9 <CJK> +<U0002823A> /x8e/xa6/xd8/xfa <CJK> +<U00028240> /x8e/xa6/xd8/xfb <CJK> +<U00028242> /x8e/xa6/xd8/xfc <CJK> +<U00028238> /x8e/xa6/xd8/xfd <CJK> +<U0002823B> /x8e/xa6/xd8/xfe <CJK> +<U0002823C> /x8e/xa6/xd9/xa1 <CJK> +<U00028243> /x8e/xa6/xd9/xa2 <CJK> +<U000282E8> /x8e/xa6/xd9/xa3 <CJK> +<U4856> /x8e/xa6/xd9/xa4 <CJK> +<U000282F9> /x8e/xa6/xd9/xa5 <CJK> +<U000282EB> /x8e/xa6/xd9/xa6 <CJK> +<U000282F1> /x8e/xa6/xd9/xa7 <CJK> +<U000282E9> /x8e/xa6/xd9/xa8 <CJK> +<U000282EC> /x8e/xa6/xd9/xa9 <CJK> +<U00028415> /x8e/xa6/xd9/xaa <CJK> +<U00028447> /x8e/xa6/xd9/xab <CJK> +<U00028446> /x8e/xa6/xd9/xac <CJK> +<U00028445> /x8e/xa6/xd9/xad <CJK> +<U00028524> /x8e/xa6/xd9/xae <CJK> +<U00028556> /x8e/xa6/xd9/xaf <CJK> +<U00028521> /x8e/xa6/xd9/xb0 <CJK> +<U00028527> /x8e/xa6/xd9/xb1 <CJK> +<U0002854D> /x8e/xa6/xd9/xb2 <CJK> +<U00028531> /x8e/xa6/xd9/xb3 <CJK> +<U0002851E> /x8e/xa6/xd9/xb4 <CJK> +<U0002852C> /x8e/xa6/xd9/xb5 <CJK> +<U0002854F> /x8e/xa6/xd9/xb6 <CJK> +<U0002852B> /x8e/xa6/xd9/xb7 <CJK> +<U00028553> /x8e/xa6/xd9/xb8 <CJK> +<U00028551> /x8e/xa6/xd9/xb9 <CJK> +<U00028554> /x8e/xa6/xd9/xba <CJK> +<U00028529> /x8e/xa6/xd9/xbb <CJK> +<U00028550> /x8e/xa6/xd9/xbc <CJK> +<U0002851F> /x8e/xa6/xd9/xbd <CJK> +<U00028532> /x8e/xa6/xd9/xbe <CJK> +<U0002852A> /x8e/xa6/xd9/xbf <CJK> +<U0002851D> /x8e/xa6/xd9/xc0 <CJK> +<U00028528> /x8e/xa6/xd9/xc1 <CJK> +<U0002852E> /x8e/xa6/xd9/xc2 <CJK> +<U0002852D> /x8e/xa6/xd9/xc3 <CJK> +<U000286BC> /x8e/xa6/xd9/xc4 <CJK> +<U000286BB> /x8e/xa6/xd9/xc5 <CJK> +<U000286BD> /x8e/xa6/xd9/xc6 <CJK> +<U00028747> /x8e/xa6/xd9/xc8 <CJK> +<U00028741> /x8e/xa6/xd9/xc9 <CJK> +<U00028749> /x8e/xa6/xd9/xcb <CJK> +<U48F4> /x8e/xa6/xd9/xcc <CJK> +<U0002882E> /x8e/xa6/xd9/xcd <CJK> +<U00028827> /x8e/xa6/xd9/xce <CJK> +<U0002896A> /x8e/xa6/xd9/xcf <CJK> +<U0002897B> /x8e/xa6/xd9/xd0 <CJK> +<U00028973> /x8e/xa6/xd9/xd1 <CJK> +<U00028975> /x8e/xa6/xd9/xd2 <CJK> +<U00028969> /x8e/xa6/xd9/xd3 <CJK> +<U00028979> /x8e/xa6/xd9/xd4 <CJK> +<U00028972> /x8e/xa6/xd9/xd5 <CJK> +<U00028C76> /x8e/xa6/xd9/xd6 <CJK> +<U00028C77> /x8e/xa6/xd9/xd7 <CJK> +<U00028C74> /x8e/xa6/xd9/xd8 <CJK> +<U00028C73> /x8e/xa6/xd9/xd9 <CJK> +<U00028D02> /x8e/xa6/xd9/xda <CJK> +<U00028CFE> /x8e/xa6/xd9/xdb <CJK> +<U00028D01> /x8e/xa6/xd9/xdc <CJK> +<U00028CF9> /x8e/xa6/xd9/xdd <CJK> +<U00028CF4> /x8e/xa6/xd9/xde <CJK> +<U00028ED3> /x8e/xa6/xd9/xdf <CJK> +<U00028ED5> /x8e/xa6/xd9/xe0 <CJK> +<U00028ED8> /x8e/xa6/xd9/xe1 <CJK> +<U00028EC3> /x8e/xa6/xd9/xe2 <CJK> +<U00028ECA> /x8e/xa6/xd9/xe3 <CJK> +<U00028ED0> /x8e/xa6/xd9/xe4 <CJK> +<U00028ECB> /x8e/xa6/xd9/xe5 <CJK> +<U00028ECE> /x8e/xa6/xd9/xe6 <CJK> +<U00028EC5> /x8e/xa6/xd9/xe7 <CJK> +<U00028EE6> /x8e/xa6/xd9/xe8 <CJK> +<U00028EC4> /x8e/xa6/xd9/xe9 <CJK> +<U00028EC0> /x8e/xa6/xd9/xea <CJK> +<U00028ED4> /x8e/xa6/xd9/xeb <CJK> +<U00028EE8> /x8e/xa6/xd9/xec <CJK> +<U00028F76> /x8e/xa6/xd9/xed <CJK> +<U00028FA2> /x8e/xa6/xd9/xee <CJK> +<U00028FAE> /x8e/xa6/xd9/xef <CJK> +<U00028FA8> /x8e/xa6/xd9/xf0 <CJK> +<U00028FA3> /x8e/xa6/xd9/xf1 <CJK> +<U00028FA7> /x8e/xa6/xd9/xf2 <CJK> +<U00028F96> /x8e/xa6/xd9/xf3 <CJK> +<U00028FA9> /x8e/xa6/xd9/xf4 <CJK> +<U00028FA5> /x8e/xa6/xd9/xf5 <CJK> +<U00028FAF> /x8e/xa6/xd9/xf6 <CJK> +<U00028FA4> /x8e/xa6/xd9/xf7 <CJK> +<U00028FAB> /x8e/xa6/xd9/xf8 <CJK> +<U00028FAA> /x8e/xa6/xd9/xf9 <CJK> +<U00028FA6> /x8e/xa6/xd9/xfa <CJK> +<U00028FA0> /x8e/xa6/xd9/xfb <CJK> +<U00029098> /x8e/xa6/xd9/xfc <CJK> +<U000291DB> /x8e/xa6/xd9/xfd <CJK> +<U000291F6> /x8e/xa6/xd9/xfe <CJK> +<U000291F5> /x8e/xa6/xda/xa1 <CJK> +<U0002920C> /x8e/xa6/xda/xa2 <CJK> +<U0002920A> /x8e/xa6/xda/xa3 <CJK> +<U9775> /x8e/xa6/xda/xa4 <CJK> +<U00029268> /x8e/xa6/xda/xa5 <CJK> +<U00029263> /x8e/xa6/xda/xa6 <CJK> +<U00029266> /x8e/xa6/xda/xa7 <CJK> +<U4A58> /x8e/xa6/xda/xa8 <CJK> +<U00029264> /x8e/xa6/xda/xa9 <CJK> +<U0002926A> /x8e/xa6/xda/xaa <CJK> +<U00029269> /x8e/xa6/xda/xab <CJK> +<U00029395> /x8e/xa6/xda/xac <CJK> +<U00029402> /x8e/xa6/xda/xad <CJK> +<U0002946A> /x8e/xa6/xda/xae <CJK> +<U0002945E> /x8e/xa6/xda/xaf <CJK> +<U00029468> /x8e/xa6/xda/xb0 <CJK> +<U00029469> /x8e/xa6/xda/xb1 <CJK> +<U00029465> /x8e/xa6/xda/xb2 <CJK> +<U000295A7> /x8e/xa6/xda/xb4 <CJK> +<U000295AE> /x8e/xa6/xda/xb5 <CJK> +<U000295A8> /x8e/xa6/xda/xb6 <CJK> +<U000295B3> /x8e/xa6/xda/xb7 <CJK> +<U0002969C> /x8e/xa6/xda/xb8 <CJK> +<U000296A9> /x8e/xa6/xda/xb9 <CJK> +<U000296B6> /x8e/xa6/xda/xba <CJK> +<U000296B3> /x8e/xa6/xda/xbb <CJK> +<U000296B2> /x8e/xa6/xda/xbc <CJK> +<U000296B8> /x8e/xa6/xda/xbe <CJK> +<U000296C0> /x8e/xa6/xda/xbf <CJK> +<U000296BF> /x8e/xa6/xda/xc0 <CJK> +<U000296BA> /x8e/xa6/xda/xc1 <CJK> +<U000296A8> /x8e/xa6/xda/xc2 <CJK> +<U0002983C> /x8e/xa6/xda/xc3 <CJK> +<U00029872> /x8e/xa6/xda/xc4 <CJK> +<U00029871> /x8e/xa6/xda/xc5 <CJK> +<U00029875> /x8e/xa6/xda/xc6 <CJK> +<U00029873> /x8e/xa6/xda/xc7 <CJK> +<U00029A17> /x8e/xa6/xda/xc8 <CJK> +<U00029A15> /x8e/xa6/xda/xc9 <CJK> +<U00029A16> /x8e/xa6/xda/xca <CJK> +<U00029A1B> /x8e/xa6/xda/xcb <CJK> +<U00029AFA> /x8e/xa6/xda/xcc <CJK> +<U00029AF9> /x8e/xa6/xda/xcd <CJK> +<U00029C2C> /x8e/xa6/xda/xce <CJK> +<U00029C85> /x8e/xa6/xda/xcf <CJK> +<U00029C82> /x8e/xa6/xda/xd0 <CJK> +<U00029C7F> /x8e/xa6/xda/xd1 <CJK> +<U00029C7D> /x8e/xa6/xda/xd2 <CJK> +<U00029C88> /x8e/xa6/xda/xd3 <CJK> +<U000242F3> /x8e/xa6/xda/xd4 <CJK> +<U00029D4E> /x8e/xa6/xda/xd5 <CJK> +<U00029D50> /x8e/xa6/xda/xd6 <CJK> +<U00029F93> /x8e/xa6/xda/xd7 <CJK> +<U00029F97> /x8e/xa6/xda/xd8 <CJK> +<U00029F98> /x8e/xa6/xda/xd9 <CJK> +<U00029F9B> /x8e/xa6/xda/xda <CJK> +<U00029F9C> /x8e/xa6/xda/xdb <CJK> +<U00029F96> /x8e/xa6/xda/xdc <CJK> +<U0002A28B> /x8e/xa6/xda/xdd <CJK> +<U0002A2FD> /x8e/xa6/xda/xde <CJK> +<U0002A2FC> /x8e/xa6/xda/xdf <CJK> +<U0002398B> /x8e/xa6/xda/xe1 <CJK> +<U00020108> /x8e/xa6/xda/xe2 <CJK> +<U00020107> /x8e/xa6/xda/xe3 <CJK> +<U00020373> /x8e/xa6/xda/xe4 <CJK> +<U000203A2> /x8e/xa6/xda/xe5 <CJK> +<U000203AF> /x8e/xa6/xda/xe6 <CJK> +<U00020382> /x8e/xa6/xda/xe7 <CJK> +<U0002037B> /x8e/xa6/xda/xe8 <CJK> +<U00020374> /x8e/xa6/xda/xe9 <CJK> +<U000203B0> /x8e/xa6/xda/xea <CJK> +<U00020376> /x8e/xa6/xda/xeb <CJK> +<U000203B9> /x8e/xa6/xda/xec <CJK> +<U0002039E> /x8e/xa6/xda/xed <CJK> +<U000203B1> /x8e/xa6/xda/xee <CJK> +<U000203A1> /x8e/xa6/xda/xef <CJK> +<U000203B2> /x8e/xa6/xda/xf0 <CJK> +<U0002036E> /x8e/xa6/xda/xf1 <CJK> +<U3487> /x8e/xa6/xda/xf3 <CJK> +<U00020378> /x8e/xa6/xda/xf4 <CJK> +<U0002037A> /x8e/xa6/xda/xf5 <CJK> +<U00020383> /x8e/xa6/xda/xf6 <CJK> +<U0002039A> /x8e/xa6/xda/xf7 <CJK> +<U000204F8> /x8e/xa6/xda/xf8 <CJK> +<U00020531> /x8e/xa6/xda/xf9 <CJK> +<U00020569> /x8e/xa6/xda/xfa <CJK> +<U00020568> /x8e/xa6/xda/xfb <CJK> +<U0002059C> /x8e/xa6/xda/xfc <CJK> +<U00020604> /x8e/xa6/xda/xfd <CJK> +<U00020699> /x8e/xa6/xda/xfe <CJK> +<U000207C7> /x8e/xa6/xdb/xa1 <CJK> +<U000207C6> /x8e/xa6/xdb/xa2 <CJK> +<U000207DC> /x8e/xa6/xdb/xa3 <CJK> +<U000207C4> /x8e/xa6/xdb/xa4 <CJK> +<U000207D8> /x8e/xa6/xdb/xa5 <CJK> +<U000207D4> /x8e/xa6/xdb/xa6 <CJK> +<U000207DF> /x8e/xa6/xdb/xa7 <CJK> +<U000207D1> /x8e/xa6/xdb/xa8 <CJK> +<U000207D0> /x8e/xa6/xdb/xa9 <CJK> +<U000207D6> /x8e/xa6/xdb/xaa <CJK> +<U000207CF> /x8e/xa6/xdb/xab <CJK> +<U000208AD> /x8e/xa6/xdb/xac <CJK> +<U000208AF> /x8e/xa6/xdb/xad <CJK> +<U000208A7> /x8e/xa6/xdb/xae <CJK> +<U000208FD> /x8e/xa6/xdb/xaf <CJK> +<U0002095B> /x8e/xa6/xdb/xb0 <CJK> +<U0002095A> /x8e/xa6/xdb/xb1 <CJK> +<U00020A07> /x8e/xa6/xdb/xb2 <CJK> +<U00020A9D> /x8e/xa6/xdb/xb3 <CJK> +<U00020A9B> /x8e/xa6/xdb/xb4 <CJK> +<U00020AAB> /x8e/xa6/xdb/xb5 <CJK> +<U00020AA4> /x8e/xa6/xdb/xb6 <CJK> +<U00020A9C> /x8e/xa6/xdb/xb7 <CJK> +<U00020A9E> /x8e/xa6/xdb/xb8 <CJK> +<U00020AA5> /x8e/xa6/xdb/xb9 <CJK> +<U00020AAA> /x8e/xa6/xdb/xba <CJK> +<U00020AA6> /x8e/xa6/xdb/xbb <CJK> +<U00020B0E> /x8e/xa6/xdb/xbc <CJK> +<U00020B7E> /x8e/xa6/xdb/xbd <CJK> +<U00020B7C> /x8e/xa6/xdb/xbe <CJK> +<U00020EEE> /x8e/xa6/xdb/xbf <CJK> +<U00020ED5> /x8e/xa6/xdb/xc0 <CJK> +<U00020EE9> /x8e/xa6/xdb/xc1 <CJK> +<U00020E42> /x8e/xa6/xdb/xc2 <CJK> +<U00020EE2> /x8e/xa6/xdb/xc3 <CJK> +<U00020F23> /x8e/xa6/xdb/xc4 <CJK> +<U00020ED9> /x8e/xa6/xdb/xc5 <CJK> +<U00020ED4> /x8e/xa6/xdb/xc6 <CJK> +<U00020EE3> /x8e/xa6/xdb/xc7 <CJK> +<U00020F15> /x8e/xa6/xdb/xc8 <CJK> +<U00020EEF> /x8e/xa6/xdb/xc9 <CJK> +<U00020EF0> /x8e/xa6/xdb/xca <CJK> +<U00020ED6> /x8e/xa6/xdb/xcb <CJK> +<U00020EDD> /x8e/xa6/xdb/xcc <CJK> +<U00020EF6> /x8e/xa6/xdb/xcd <CJK> +<U00020F1C> /x8e/xa6/xdb/xce <CJK> +<U00020ED8> /x8e/xa6/xdb/xcf <CJK> +<U00020EDB> /x8e/xa6/xdb/xd0 <CJK> +<U00020EDA> /x8e/xa6/xdb/xd1 <CJK> +<U00020EED> /x8e/xa6/xdb/xd2 <CJK> +<U00021411> /x8e/xa6/xdb/xd3 <CJK> +<U00021215> /x8e/xa6/xdb/xd4 <CJK> +<U00021218> /x8e/xa6/xdb/xd5 <CJK> +<U0002121A> /x8e/xa6/xdb/xd6 <CJK> +<U0002121F> /x8e/xa6/xdb/xd7 <CJK> +<U00021216> /x8e/xa6/xdb/xd8 <CJK> +<U00021219> /x8e/xa6/xdb/xda <CJK> +<U000213F0> /x8e/xa6/xdb/xdc <CJK> +<U00021409> /x8e/xa6/xdb/xdd <CJK> +<U0002141B> /x8e/xa6/xdb/xde <CJK> +<U00027BE7> /x8e/xa6/xdb/xdf <CJK> +<U000213F6> /x8e/xa6/xdb/xe0 <CJK> +<U000213F4> /x8e/xa6/xdb/xe1 <CJK> +<U000213B5> /x8e/xa6/xdb/xe2 <CJK> +<U00021410> /x8e/xa6/xdb/xe3 <CJK> +<U000213F2> /x8e/xa6/xdb/xe4 <CJK> +<U00021415> /x8e/xa6/xdb/xe5 <CJK> +<U000213F3> /x8e/xa6/xdb/xe6 <CJK> +<U000213F8> /x8e/xa6/xdb/xe7 <CJK> +<U00021539> /x8e/xa6/xdb/xe8 <CJK> +<U0002153B> /x8e/xa6/xdb/xe9 <CJK> +<U00021536> /x8e/xa6/xdb/xea <CJK> +<U0002140E> /x8e/xa6/xdb/xeb <CJK> +<U00021572> /x8e/xa6/xdb/xec <CJK> +<U00021574> /x8e/xa6/xdb/xed <CJK> +<U000215B9> /x8e/xa6/xdb/xee <CJK> +<U000215B7> /x8e/xa6/xdb/xef <CJK> +<U000215B8> /x8e/xa6/xdb/xf0 <CJK> +<U00021672> /x8e/xa6/xdb/xf1 <CJK> +<U0002166B> /x8e/xa6/xdb/xf2 <CJK> +<U0002181D> /x8e/xa6/xdb/xf3 <CJK> +<U00021837> /x8e/xa6/xdb/xf4 <CJK> +<U00021822> /x8e/xa6/xdb/xf5 <CJK> +<U00021843> /x8e/xa6/xdb/xf6 <CJK> +<U0002184D> /x8e/xa6/xdb/xf7 <CJK> +<U00021838> /x8e/xa6/xdb/xf8 <CJK> +<U0002185B> /x8e/xa6/xdb/xf9 <CJK> +<U00021879> /x8e/xa6/xdb/xfa <CJK> +<U0002181B> /x8e/xa6/xdb/xfb <CJK> +<U000217F3> /x8e/xa6/xdb/xfc <CJK> +<U00021991> /x8e/xa6/xdb/xfd <CJK> +<U00021A7B> /x8e/xa6/xdb/xfe <CJK> +<U00021A94> /x8e/xa6/xdc/xa1 <CJK> +<U00021A96> /x8e/xa6/xdc/xa3 <CJK> +<U00021A7F> /x8e/xa6/xdc/xa4 <CJK> +<U00021A8F> /x8e/xa6/xdc/xa5 <CJK> +<U00021A84> /x8e/xa6/xdc/xa6 <CJK> +<U00021A7C> /x8e/xa6/xdc/xa7 <CJK> +<U00021A8E> /x8e/xa6/xdc/xa8 <CJK> +<U00021A90> /x8e/xa6/xdc/xa9 <CJK> +<U00021A98> /x8e/xa6/xdc/xaa <CJK> +<U00021A83> /x8e/xa6/xdc/xab <CJK> +<U00021A80> /x8e/xa6/xdc/xac <CJK> +<U00021A93> /x8e/xa6/xdc/xad <CJK> +<U00021A82> /x8e/xa6/xdc/xae <CJK> +<U00021B3D> /x8e/xa6/xdc/xb0 <CJK> +<U00021B41> /x8e/xa6/xdc/xb1 <CJK> +<U00021BA1> /x8e/xa6/xdc/xb2 <CJK> +<U00021B9F> /x8e/xa6/xdc/xb3 <CJK> +<U00021C0A> /x8e/xa6/xdc/xb4 <CJK> +<U00021C0D> /x8e/xa6/xdc/xb5 <CJK> +<U00021CC8> /x8e/xa6/xdc/xb6 <CJK> +<U00021CC9> /x8e/xa6/xdc/xb7 <CJK> +<U00021CC7> /x8e/xa6/xdc/xb8 <CJK> +<U00021CCD> /x8e/xa6/xdc/xb9 <CJK> +<U00021D25> /x8e/xa6/xdc/xba <CJK> +<U00021EB1> /x8e/xa6/xdc/xbb <CJK> +<U00021EDC> /x8e/xa6/xdc/xbc <CJK> +<U00021EE5> /x8e/xa6/xdc/xbe <CJK> +<U00021EF4> /x8e/xa6/xdc/xbf <CJK> +<U00021EBF> /x8e/xa6/xdc/xc0 <CJK> +<U00021EDB> /x8e/xa6/xdc/xc1 <CJK> +<U00021EEA> /x8e/xa6/xdc/xc2 <CJK> +<U00021EF2> /x8e/xa6/xdc/xc3 <CJK> +<U37FA> /x8e/xa6/xdc/xc4 <CJK> +<U00021EF1> /x8e/xa6/xdc/xc5 <CJK> +<U00021EED> /x8e/xa6/xdc/xc6 <CJK> +<U00021EE6> /x8e/xa6/xdc/xc7 <CJK> +<U00022002> /x8e/xa6/xdc/xc8 <CJK> +<U00022125> /x8e/xa6/xdc/xca <CJK> +<U00022118> /x8e/xa6/xdc/xcb <CJK> +<U0002211F> /x8e/xa6/xdc/xcc <CJK> +<U00022120> /x8e/xa6/xdc/xcd <CJK> +<U000221CF> /x8e/xa6/xdc/xce <CJK> +<U0002229D> /x8e/xa6/xdc/xcf <CJK> +<U00022299> /x8e/xa6/xdc/xd0 <CJK> +<U000222A8> /x8e/xa6/xdc/xd1 <CJK> +<U00022368> /x8e/xa6/xdc/xd2 <CJK> +<U00022366> /x8e/xa6/xdc/xd3 <CJK> +<U00022367> /x8e/xa6/xdc/xd4 <CJK> +<U00022391> /x8e/xa6/xdc/xd5 <CJK> +<U00022413> /x8e/xa6/xdc/xd6 <CJK> +<U00022415> /x8e/xa6/xdc/xd7 <CJK> +<U0002241D> /x8e/xa6/xdc/xd8 <CJK> +<U00022416> /x8e/xa6/xdc/xd9 <CJK> +<U00022419> /x8e/xa6/xdc/xda <CJK> +<U0002246B> /x8e/xa6/xdc/xdb <CJK> +<U00022468> /x8e/xa6/xdc/xdc <CJK> +<U0002246A> /x8e/xa6/xdc/xdd <CJK> +<U0002246D> /x8e/xa6/xdc/xde <CJK> +<U00022469> /x8e/xa6/xdc/xdf <CJK> +<U000224AA> /x8e/xa6/xdc/xe0 <CJK> +<U00022557> /x8e/xa6/xdc/xe1 <CJK> +<U00022552> /x8e/xa6/xdc/xe2 <CJK> +<U00022550> /x8e/xa6/xdc/xe3 <CJK> +<U0002255F> /x8e/xa6/xdc/xe4 <CJK> +<U00022567> /x8e/xa6/xdc/xe5 <CJK> +<U0002254F> /x8e/xa6/xdc/xe6 <CJK> +<U38F2> /x8e/xa6/xdc/xe7 <CJK> +<U0002255B> /x8e/xa6/xdc/xe8 <CJK> +<U0002255C> /x8e/xa6/xdc/xe9 <CJK> +<U0002255D> /x8e/xa6/xdc/xea <CJK> +<U0002281F> /x8e/xa6/xdc/xeb <CJK> +<U0002279D> /x8e/xa6/xdc/xec <CJK> +<U000227B1> /x8e/xa6/xdc/xed <CJK> +<U000227B0> /x8e/xa6/xdc/xee <CJK> +<U00022794> /x8e/xa6/xdc/xef <CJK> +<U000227C3> /x8e/xa6/xdc/xf0 <CJK> +<U000227AF> /x8e/xa6/xdc/xf1 <CJK> +<U000227A8> /x8e/xa6/xdc/xf2 <CJK> +<U000227DC> /x8e/xa6/xdc/xf3 <CJK> +<U00022798> /x8e/xa6/xdc/xf4 <CJK> +<U000227C4> /x8e/xa6/xdc/xf5 <CJK> +<U000227A4> /x8e/xa6/xdc/xf6 <CJK> +<U000227AB> /x8e/xa6/xdc/xf7 <CJK> +<U000227AA> /x8e/xa6/xdc/xf8 <CJK> +<U000227A5> /x8e/xa6/xdc/xf9 <CJK> +<U00022821> /x8e/xa6/xdc/xfa <CJK> +<U000227EB> /x8e/xa6/xdc/xfb <CJK> +<U000227E6> /x8e/xa6/xdc/xfc <CJK> +<U000227F7> /x8e/xa6/xdc/xfd <CJK> +<U000227F8> /x8e/xa6/xdc/xfe <CJK> +<U000227FC> /x8e/xa6/xdd/xa1 <CJK> +<U000227FA> /x8e/xa6/xdd/xa2 <CJK> +<U000227E0> /x8e/xa6/xdd/xa3 <CJK> +<U000227F6> /x8e/xa6/xdd/xa5 <CJK> +<U000227E1> /x8e/xa6/xdd/xa7 <CJK> +<U000229EC> /x8e/xa6/xdd/xa8 <CJK> +<U000229E2> /x8e/xa6/xdd/xa9 <CJK> +<U000229E4> /x8e/xa6/xdd/xaa <CJK> +<U000229F9> /x8e/xa6/xdd/xab <CJK> +<U00022C6F> /x8e/xa6/xdd/xac <CJK> +<U00023A4C> /x8e/xa6/xdd/xad <CJK> +<U00022CBB> /x8e/xa6/xdd/xae <CJK> +<U00022CE1> /x8e/xa6/xdd/xaf <CJK> +<U00022D00> /x8e/xa6/xdd/xb0 <CJK> +<U00022CD8> /x8e/xa6/xdd/xb1 <CJK> +<U3A2F> /x8e/xa6/xdd/xb2 <CJK> +<U00022CD6> /x8e/xa6/xdd/xb3 <CJK> +<U00022CE2> /x8e/xa6/xdd/xb4 <CJK> +<U00022CC3> /x8e/xa6/xdd/xb5 <CJK> +<U00022CB3> /x8e/xa6/xdd/xb6 <CJK> +<U00022CD2> /x8e/xa6/xdd/xb7 <CJK> +<U00022CCE> /x8e/xa6/xdd/xb9 <CJK> +<U00022CD0> /x8e/xa6/xdd/xba <CJK> +<U00022CD5> /x8e/xa6/xdd/xbb <CJK> +<U00022CB9> /x8e/xa6/xdd/xbc <CJK> +<U00022CBA> /x8e/xa6/xdd/xbd <CJK> +<U00022CCF> /x8e/xa6/xdd/xbe <CJK> +<U00022CBD> /x8e/xa6/xdd/xbf <CJK> +<U00022EDB> /x8e/xa6/xdd/xc0 <CJK> +<U00022FAA> /x8e/xa6/xdd/xc1 <CJK> +<U00022FAD> /x8e/xa6/xdd/xc2 <CJK> +<U00022FB8> /x8e/xa6/xdd/xc3 <CJK> +<U00022FB6> /x8e/xa6/xdd/xc4 <CJK> +<U00022FB5> /x8e/xa6/xdd/xc5 <CJK> +<U00022FAF> /x8e/xa6/xdd/xc6 <CJK> +<U00022FB4> /x8e/xa6/xdd/xc7 <CJK> +<U00022FB7> /x8e/xa6/xdd/xc8 <CJK> +<U00022FA8> /x8e/xa6/xdd/xc9 <CJK> +<U00022FB9> /x8e/xa6/xdd/xca <CJK> +<U00022FBE> /x8e/xa6/xdd/xcb <CJK> +<U00023082> /x8e/xa6/xdd/xcc <CJK> +<U000230BC> /x8e/xa6/xdd/xcd <CJK> +<U000230B8> /x8e/xa6/xdd/xce <CJK> +<U000230B6> /x8e/xa6/xdd/xcf <CJK> +<U000230B9> /x8e/xa6/xdd/xd0 <CJK> +<U3AC1> /x8e/xa6/xdd/xd1 <CJK> +<U00023110> /x8e/xa6/xdd/xd2 <CJK> +<U00023227> /x8e/xa6/xdd/xd3 <CJK> +<U00023269> /x8e/xa6/xdd/xd4 <CJK> +<U00023270> /x8e/xa6/xdd/xd5 <CJK> +<U00023256> /x8e/xa6/xdd/xd6 <CJK> +<U0002326B> /x8e/xa6/xdd/xd7 <CJK> +<U0002327A> /x8e/xa6/xdd/xd8 <CJK> +<U0002326C> /x8e/xa6/xdd/xd9 <CJK> +<U0002326D> /x8e/xa6/xdd/xda <CJK> +<U000267C1> /x8e/xa6/xdd/xdc <CJK> +<U0002338D> /x8e/xa6/xdd/xdd <CJK> +<U00023390> /x8e/xa6/xdd/xde <CJK> +<U000235B6> /x8e/xa6/xdd/xdf <CJK> +<U00023610> /x8e/xa6/xdd/xe0 <CJK> +<U00023612> /x8e/xa6/xdd/xe1 <CJK> +<U000235BA> /x8e/xa6/xdd/xe2 <CJK> +<U000235BD> /x8e/xa6/xdd/xe3 <CJK> +<U00023605> /x8e/xa6/xdd/xe4 <CJK> +<U000235C2> /x8e/xa6/xdd/xe5 <CJK> +<U00023607> /x8e/xa6/xdd/xe6 <CJK> +<U000235F5> /x8e/xa6/xdd/xe7 <CJK> +<U000235AF> /x8e/xa6/xdd/xe9 <CJK> +<U000235F4> /x8e/xa6/xdd/xea <CJK> +<U000235F7> /x8e/xa6/xdd/xeb <CJK> +<U000235F8> /x8e/xa6/xdd/xec <CJK> +<U00023611> /x8e/xa6/xdd/xed <CJK> +<U000238F6> /x8e/xa6/xdd/xee <CJK> +<U000238F5> /x8e/xa6/xdd/xef <CJK> +<U000238FB> /x8e/xa6/xdd/xf0 <CJK> +<U00023901> /x8e/xa6/xdd/xf1 <CJK> +<U00023900> /x8e/xa6/xdd/xf2 <CJK> +<U00023902> /x8e/xa6/xdd/xf3 <CJK> +<U000238FE> /x8e/xa6/xdd/xf4 <CJK> +<U000238FA> /x8e/xa6/xdd/xf5 <CJK> +<U000238FD> /x8e/xa6/xdd/xf6 <CJK> +<U3C40> /x8e/xa6/xdd/xf7 <CJK> +<U00023A37> /x8e/xa6/xdd/xf8 <CJK> +<U00023A49> /x8e/xa6/xdd/xf9 <CJK> +<U00023A4B> /x8e/xa6/xdd/xfa <CJK> +<U00023A46> /x8e/xa6/xdd/xfb <CJK> +<U00023A47> /x8e/xa6/xdd/xfc <CJK> +<U00023AB3> /x8e/xa6/xdd/xfd <CJK> +<U00023AB2> /x8e/xa6/xdd/xfe <CJK> +<U00023AB0> /x8e/xa6/xde/xa1 <CJK> +<U00023AB7> /x8e/xa6/xde/xa2 <CJK> +<U00023B11> /x8e/xa6/xde/xa3 <CJK> +<U00023BCC> /x8e/xa6/xde/xa4 <CJK> +<U00023BDF> /x8e/xa6/xde/xa5 <CJK> +<U00023BD3> /x8e/xa6/xde/xa6 <CJK> +<U00023BD5> /x8e/xa6/xde/xa7 <CJK> +<U00023BDB> /x8e/xa6/xde/xa8 <CJK> +<U00023BC5> /x8e/xa6/xde/xa9 <CJK> +<U00023BC8> /x8e/xa6/xde/xaa <CJK> +<U00023BC9> /x8e/xa6/xde/xab <CJK> +<U00023BE2> /x8e/xa6/xde/xac <CJK> +<U00023BCA> /x8e/xa6/xde/xad <CJK> +<U00023BD1> /x8e/xa6/xde/xae <CJK> +<U00023BD2> /x8e/xa6/xde/xaf <CJK> +<U00023BDD> /x8e/xa6/xde/xb0 <CJK> +<U00023E6C> /x8e/xa6/xde/xb1 <CJK> +<U00023E73> /x8e/xa6/xde/xb2 <CJK> +<U00023F21> /x8e/xa6/xde/xb3 <CJK> +<U00023EF0> /x8e/xa6/xde/xb4 <CJK> +<U00023F1F> /x8e/xa6/xde/xb5 <CJK> +<U00023F3B> /x8e/xa6/xde/xb6 <CJK> +<U00023F22> /x8e/xa6/xde/xb7 <CJK> +<U00023F23> /x8e/xa6/xde/xb8 <CJK> +<U00023EE8> /x8e/xa6/xde/xb9 <CJK> +<U00023EDD> /x8e/xa6/xde/xba <CJK> +<U3D3F> /x8e/xa6/xde/xbb <CJK> +<U00023F1B> /x8e/xa6/xde/xbc <CJK> +<U00023EED> /x8e/xa6/xde/xbd <CJK> +<U00023EF2> /x8e/xa6/xde/xbf <CJK> +<U3D46> /x8e/xa6/xde/xc0 <CJK> +<U00023EDC> /x8e/xa6/xde/xc1 <CJK> +<U00023EE9> /x8e/xa6/xde/xc2 <CJK> +<U00023F1D> /x8e/xa6/xde/xc3 <CJK> +<U00023EDA> /x8e/xa6/xde/xc4 <CJK> +<U00023EE6> /x8e/xa6/xde/xc5 <CJK> +<U00024313> /x8e/xa6/xde/xc6 <CJK> +<U00024315> /x8e/xa6/xde/xc7 <CJK> +<U00024316> /x8e/xa6/xde/xc8 <CJK> +<U0002433C> /x8e/xa6/xde/xc9 <CJK> +<U0002430B> /x8e/xa6/xde/xca <CJK> +<U0002431C> /x8e/xa6/xde/xcb <CJK> +<U0002433A> /x8e/xa6/xde/xcc <CJK> +<U0002433D> /x8e/xa6/xde/xcd <CJK> +<U0002439A> /x8e/xa6/xde/xce <CJK> +<U0002431D> /x8e/xa6/xde/xcf <CJK> +<U00024309> /x8e/xa6/xde/xd0 <CJK> +<U00024308> /x8e/xa6/xde/xd1 <CJK> +<U0002433B> /x8e/xa6/xde/xd2 <CJK> +<U00024522> /x8e/xa6/xde/xd3 <CJK> +<U00024526> /x8e/xa6/xde/xd4 <CJK> +<U00024525> /x8e/xa6/xde/xd5 <CJK> +<U00024524> /x8e/xa6/xde/xd6 <CJK> +<U0002039B> /x8e/xa6/xde/xd7 <CJK> +<U0002458F> /x8e/xa6/xde/xd8 <CJK> +<U00024590> /x8e/xa6/xde/xd9 <CJK> +<U000245E6> /x8e/xa6/xde/xda <CJK> +<U000245E3> /x8e/xa6/xde/xdb <CJK> +<U000245E5> /x8e/xa6/xde/xdc <CJK> +<U00024611> /x8e/xa6/xde/xdd <CJK> +<U000246AE> /x8e/xa6/xde/xdf <CJK> +<U000246BE> /x8e/xa6/xde/xe0 <CJK> +<U000246B4> /x8e/xa6/xde/xe1 <CJK> +<U000246B3> /x8e/xa6/xde/xe2 <CJK> +<U000246AF> /x8e/xa6/xde/xe3 <CJK> +<U00024691> /x8e/xa6/xde/xe4 <CJK> +<U000246C2> /x8e/xa6/xde/xe5 <CJK> +<U000246B6> /x8e/xa6/xde/xe6 <CJK> +<U000246B2> /x8e/xa6/xde/xe7 <CJK> +<U00024857> /x8e/xa6/xde/xe8 <CJK> +<U0002483B> /x8e/xa6/xde/xe9 <CJK> +<U00024858> /x8e/xa6/xde/xea <CJK> +<U00024851> /x8e/xa6/xde/xeb <CJK> +<U00024841> /x8e/xa6/xde/xec <CJK> +<U00024839> /x8e/xa6/xde/xed <CJK> +<U3E8F> /x8e/xa6/xde/xee <CJK> +<U00024859> /x8e/xa6/xde/xef <CJK> +<U00024845> /x8e/xa6/xde/xf0 <CJK> +<U00024861> /x8e/xa6/xde/xf1 <CJK> +<U000248E8> /x8e/xa6/xde/xf2 <CJK> +<U000249FA> /x8e/xa6/xde/xf3 <CJK> +<U000249EA> /x8e/xa6/xde/xf4 <CJK> +<U000249EF> /x8e/xa6/xde/xf5 <CJK> +<U000249F2> /x8e/xa6/xde/xf6 <CJK> +<U000249F0> /x8e/xa6/xde/xf7 <CJK> +<U00024B08> /x8e/xa6/xde/xf8 <CJK> +<U00024B70> /x8e/xa6/xde/xf9 <CJK> +<U00024B6A> /x8e/xa6/xde/xfa <CJK> +<U00024B73> /x8e/xa6/xde/xfb <CJK> +<U00024B68> /x8e/xa6/xde/xfc <CJK> +<U00024BC8> /x8e/xa6/xde/xfd <CJK> +<U00024BF2> /x8e/xa6/xde/xfe <CJK> +<U00020B7B> /x8e/xa6/xdf/xa1 <CJK> +<U00024CAE> /x8e/xa6/xdf/xa2 <CJK> +<U00024CAB> /x8e/xa6/xdf/xa3 <CJK> +<U00024CB5> /x8e/xa6/xdf/xa4 <CJK> +<U00024CAF> /x8e/xa6/xdf/xa5 <CJK> +<U00024CB2> /x8e/xa6/xdf/xa6 <CJK> +<U00024CB6> /x8e/xa6/xdf/xa7 <CJK> +<U00024CB0> /x8e/xa6/xdf/xa8 <CJK> +<U00024D1E> /x8e/xa6/xdf/xa9 <CJK> +<U00024E03> /x8e/xa6/xdf/xaa <CJK> +<U00024E06> /x8e/xa6/xdf/xab <CJK> +<U00024E1F> /x8e/xa6/xdf/xac <CJK> +<U3FAC> /x8e/xa6/xdf/xad <CJK> +<U00024E0F> /x8e/xa6/xdf/xae <CJK> +<U00024E02> /x8e/xa6/xdf/xaf <CJK> +<U00024E19> /x8e/xa6/xdf/xb0 <CJK> +<U00024E18> /x8e/xa6/xdf/xb1 <CJK> +<U00024E22> /x8e/xa6/xdf/xb2 <CJK> +<U00024E15> /x8e/xa6/xdf/xb3 <CJK> +<U00024E07> /x8e/xa6/xdf/xb4 <CJK> +<U00024E0D> /x8e/xa6/xdf/xb5 <CJK> +<U00024E24> /x8e/xa6/xdf/xb6 <CJK> +<U00024E0C> /x8e/xa6/xdf/xb7 <CJK> +<U00024E1E> /x8e/xa6/xdf/xb8 <CJK> +<U00024F89> /x8e/xa6/xdf/xb9 <CJK> +<U00024F8A> /x8e/xa6/xdf/xba <CJK> +<U0002500A> /x8e/xa6/xdf/xbb <CJK> +<U0002500B> /x8e/xa6/xdf/xbc <CJK> +<U00025007> /x8e/xa6/xdf/xbd <CJK> +<U00025004> /x8e/xa6/xdf/xbe <CJK> +<U00025009> /x8e/xa6/xdf/xbf <CJK> +<U00025084> /x8e/xa6/xdf/xc0 <CJK> +<U00025083> /x8e/xa6/xdf/xc1 <CJK> +<U00025218> /x8e/xa6/xdf/xc2 <CJK> +<U00025214> /x8e/xa6/xdf/xc3 <CJK> +<U00025205> /x8e/xa6/xdf/xc4 <CJK> +<U00025216> /x8e/xa6/xdf/xc5 <CJK> +<U0002520E> /x8e/xa6/xdf/xc6 <CJK> +<U00025211> /x8e/xa6/xdf/xc7 <CJK> +<U00025208> /x8e/xa6/xdf/xc8 <CJK> +<U0002520B> /x8e/xa6/xdf/xc9 <CJK> +<U00025215> /x8e/xa6/xdf/xca <CJK> +<U00025085> /x8e/xa6/xdf/xcb <CJK> +<U00025237> /x8e/xa6/xdf/xcc <CJK> +<U0002522A> /x8e/xa6/xdf/xcd <CJK> +<U0002520D> /x8e/xa6/xdf/xce <CJK> +<U0002520F> /x8e/xa6/xdf/xcf <CJK> +<U0002537E> /x8e/xa6/xdf/xd0 <CJK> +<U00025376> /x8e/xa6/xdf/xd1 <CJK> +<U00025377> /x8e/xa6/xdf/xd2 <CJK> +<U000253EC> /x8e/xa6/xdf/xd3 <CJK> +<U000254FC> /x8e/xa6/xdf/xd4 <CJK> +<U00025508> /x8e/xa6/xdf/xd5 <CJK> +<U000254FF> /x8e/xa6/xdf/xd6 <CJK> +<U00025503> /x8e/xa6/xdf/xd7 <CJK> +<U00025510> /x8e/xa6/xdf/xd8 <CJK> +<U00025505> /x8e/xa6/xdf/xd9 <CJK> +<U00025506> /x8e/xa6/xdf/xda <CJK> +<U000254FA> /x8e/xa6/xdf/xdb <CJK> +<U000256C7> /x8e/xa6/xdf/xdc <CJK> +<U000256C0> /x8e/xa6/xdf/xdd <CJK> +<U000256C3> /x8e/xa6/xdf/xde <CJK> +<U000256A7> /x8e/xa6/xdf/xdf <CJK> +<U000256A8> /x8e/xa6/xdf/xe0 <CJK> +<U000256AB> /x8e/xa6/xdf/xe1 <CJK> +<U000256C1> /x8e/xa6/xdf/xe2 <CJK> +<U000256AA> /x8e/xa6/xdf/xe3 <CJK> +<U000256C8> /x8e/xa6/xdf/xe4 <CJK> +<U00025743> /x8e/xa6/xdf/xe5 <CJK> +<U00025802> /x8e/xa6/xdf/xe6 <CJK> +<U0002580E> /x8e/xa6/xdf/xe7 <CJK> +<U00025801> /x8e/xa6/xdf/xe8 <CJK> +<U000257FE> /x8e/xa6/xdf/xe9 <CJK> +<U00025803> /x8e/xa6/xdf/xea <CJK> +<U4168> /x8e/xa6/xdf/xeb <CJK> +<U00025822> /x8e/xa6/xdf/xec <CJK> +<U00025821> /x8e/xa6/xdf/xed <CJK> +<U00025807> /x8e/xa6/xdf/xee <CJK> +<U00025808> /x8e/xa6/xdf/xef <CJK> +<U0002580C> /x8e/xa6/xdf/xf0 <CJK> +<U000259CA> /x8e/xa6/xdf/xf1 <CJK> +<U000259BC> /x8e/xa6/xdf/xf2 <CJK> +<U000259BE> /x8e/xa6/xdf/xf3 <CJK> +<U000259BD> /x8e/xa6/xdf/xf4 <CJK> +<U000259BB> /x8e/xa6/xdf/xf6 <CJK> +<U000259B9> /x8e/xa6/xdf/xf7 <CJK> +<U41AB> /x8e/xa6/xdf/xf8 <CJK> +<U000259C5> /x8e/xa6/xdf/xf9 <CJK> +<U00025A99> /x8e/xa6/xdf/xfa <CJK> +<U00025B6B> /x8e/xa6/xdf/xfb <CJK> +<U00025B93> /x8e/xa6/xdf/xfc <CJK> +<U00025B94> /x8e/xa6/xdf/xfd <CJK> +<U00025BA9> /x8e/xa6/xdf/xfe <CJK> +<U00025BA0> /x8e/xa6/xe0/xa1 <CJK> +<U00025BA6> /x8e/xa6/xe0/xa2 <CJK> +<U00025BAB> /x8e/xa6/xe0/xa4 <CJK> +<U00025B9E> /x8e/xa6/xe0/xa5 <CJK> +<U00025B9B> /x8e/xa6/xe0/xa6 <CJK> +<U00025B91> /x8e/xa6/xe0/xa7 <CJK> +<U00025B99> /x8e/xa6/xe0/xa8 <CJK> +<U00025EB6> /x8e/xa6/xe0/xa9 <CJK> +<U00025EB8> /x8e/xa6/xe0/xaa <CJK> +<U00025E9A> /x8e/xa6/xe0/xab <CJK> +<U4291> /x8e/xa6/xe0/xac <CJK> +<U00025E98> /x8e/xa6/xe0/xad <CJK> +<U00025E9B> /x8e/xa6/xe0/xae <CJK> +<U00025EB3> /x8e/xa6/xe0/xaf <CJK> +<U00025EA2> /x8e/xa6/xe0/xb0 <CJK> +<U000222AA> /x8e/xa6/xe0/xb1 <CJK> +<U00025EA0> /x8e/xa6/xe0/xb2 <CJK> +<U00025E9F> /x8e/xa6/xe0/xb3 <CJK> +<U0002605B> /x8e/xa6/xe0/xb4 <CJK> +<U00026070> /x8e/xa6/xe0/xb5 <CJK> +<U00026054> /x8e/xa6/xe0/xb6 <CJK> +<U00026071> /x8e/xa6/xe0/xb7 <CJK> +<U00026065> /x8e/xa6/xe0/xb8 <CJK> +<U00026051> /x8e/xa6/xe0/xb9 <CJK> +<U0002609D> /x8e/xa6/xe0/xba <CJK> +<U00026061> /x8e/xa6/xe0/xbb <CJK> +<U0002605A> /x8e/xa6/xe0/xbc <CJK> +<U00026074> /x8e/xa6/xe0/xbd <CJK> +<U0002604C> /x8e/xa6/xe0/xbe <CJK> +<U0002604B> /x8e/xa6/xe0/xbf <CJK> +<U0002605E> /x8e/xa6/xe0/xc0 <CJK> +<U00026058> /x8e/xa6/xe0/xc1 <CJK> +<U00026053> /x8e/xa6/xe0/xc2 <CJK> +<U00026052> /x8e/xa6/xe0/xc3 <CJK> +<U0002623B> /x8e/xa6/xe0/xc4 <CJK> +<U00026239> /x8e/xa6/xe0/xc5 <CJK> +<U000262D6> /x8e/xa6/xe0/xc6 <CJK> +<U000262E7> /x8e/xa6/xe0/xc7 <CJK> +<U000262D7> /x8e/xa6/xe0/xc8 <CJK> +<U000262D8> /x8e/xa6/xe0/xc9 <CJK> +<U000262D9> /x8e/xa6/xe0/xca <CJK> +<U000262DA> /x8e/xa6/xe0/xcb <CJK> +<U000262DB> /x8e/xa6/xe0/xcc <CJK> +<U000262DC> /x8e/xa6/xe0/xcd <CJK> +<U000262E0> /x8e/xa6/xe0/xce <CJK> +<U000262E4> /x8e/xa6/xe0/xcf <CJK> +<U000262DD> /x8e/xa6/xe0/xd0 <CJK> +<U000262F5> /x8e/xa6/xe0/xd1 <CJK> +<U000262F1> /x8e/xa6/xe0/xd2 <CJK> +<U00026398> /x8e/xa6/xe0/xd3 <CJK> +<U0002639D> /x8e/xa6/xe0/xd4 <CJK> +<U00026399> /x8e/xa6/xe0/xd5 <CJK> +<U00026450> /x8e/xa6/xe0/xd6 <CJK> +<U00026449> /x8e/xa6/xe0/xd7 <CJK> +<U7FE4> /x8e/xa6/xe0/xd8 <CJK> +<U00026462> /x8e/xa6/xe0/xd9 <CJK> +<U000264D7> /x8e/xa6/xe0/xda <CJK> +<U00026501> /x8e/xa6/xe0/xdb <CJK> +<U000264F7> /x8e/xa6/xe0/xdc <CJK> +<U0002658C> /x8e/xa6/xe0/xde <CJK> +<U0002659C> /x8e/xa6/xe0/xdf <CJK> +<U8088> /x8e/xa6/xe0/xe0 <CJK> +<U0002661F> /x8e/xa6/xe0/xe1 <CJK> +<U0002661E> /x8e/xa6/xe0/xe2 <CJK> +<U0002673D> /x8e/xa6/xe0/xe3 <CJK> +<U0002673F> /x8e/xa6/xe0/xe4 <CJK> +<U00026711> /x8e/xa6/xe0/xe5 <CJK> +<U00026759> /x8e/xa6/xe0/xe6 <CJK> +<U0002673E> /x8e/xa6/xe0/xe7 <CJK> +<U00026758> /x8e/xa6/xe0/xe8 <CJK> +<U00026800> /x8e/xa6/xe0/xe9 <CJK> +<U0002679E> /x8e/xa6/xe0/xea <CJK> +<U000267B6> /x8e/xa6/xe0/xeb <CJK> +<U000267AA> /x8e/xa6/xe0/xec <CJK> +<U000267AF> /x8e/xa6/xe0/xed <CJK> +<U000267AC> /x8e/xa6/xe0/xee <CJK> +<U4430> /x8e/xa6/xe0/xef <CJK> +<U000267C0> /x8e/xa6/xe0/xf0 <CJK> +<U000267A9> /x8e/xa6/xe0/xf1 <CJK> +<U00020B10> /x8e/xa6/xe0/xf2 <CJK> +<U000268EE> /x8e/xa6/xe0/xf3 <CJK> +<U00026977> /x8e/xa6/xe0/xf4 <CJK> +<U00026979> /x8e/xa6/xe0/xf5 <CJK> +<U0002697A> /x8e/xa6/xe0/xf6 <CJK> +<U0002697D> /x8e/xa6/xe0/xf7 <CJK> +<U0002697F> /x8e/xa6/xe0/xf8 <CJK> +<U00026983> /x8e/xa6/xe0/xf9 <CJK> +<U00026978> /x8e/xa6/xe0/xfa <CJK> +<U0002697E> /x8e/xa6/xe0/xfb <CJK> +<U000269E4> /x8e/xa6/xe0/xfc <CJK> +<U000269E6> /x8e/xa6/xe0/xfd <CJK> +<U000269E5> /x8e/xa6/xe0/xfe <CJK> +<U445D> /x8e/xa6/xe1/xa1 <CJK> +<U00026A4E> /x8e/xa6/xe1/xa2 <CJK> +<U00026A59> /x8e/xa6/xe1/xa3 <CJK> +<U4475> /x8e/xa6/xe1/xa4 <CJK> +<U00026A4F> /x8e/xa6/xe1/xa6 <CJK> +<U00026A4A> /x8e/xa6/xe1/xa7 <CJK> +<U00026AE3> /x8e/xa6/xe1/xa8 <CJK> +<U00026ADE> /x8e/xa6/xe1/xa9 <CJK> +<U00026AE2> /x8e/xa6/xe1/xaa <CJK> +<U00026C74> /x8e/xa6/xe1/xab <CJK> +<U00026CAC> /x8e/xa6/xe1/xac <CJK> +<U00026C61> /x8e/xa6/xe1/xad <CJK> +<U00026C62> /x8e/xa6/xe1/xae <CJK> +<U00026C76> /x8e/xa6/xe1/xaf <CJK> +<U00026C7A> /x8e/xa6/xe1/xb0 <CJK> +<U00026C79> /x8e/xa6/xe1/xb1 <CJK> +<U00026C60> /x8e/xa6/xe1/xb2 <CJK> +<U00026D64> /x8e/xa6/xe1/xb3 <CJK> +<U00026E81> /x8e/xa6/xe1/xb4 <CJK> +<U00026DDF> /x8e/xa6/xe1/xb5 <CJK> +<U00026D84> /x8e/xa6/xe1/xb6 <CJK> +<U00026D8A> /x8e/xa6/xe1/xb7 <CJK> +<U00026D92> /x8e/xa6/xe1/xb8 <CJK> +<U00026D79> /x8e/xa6/xe1/xb9 <CJK> +<U00026DDE> /x8e/xa6/xe1/xba <CJK> +<U00026D98> /x8e/xa6/xe1/xbb <CJK> +<U00026D6C> /x8e/xa6/xe1/xbc <CJK> +<U00026DE1> /x8e/xa6/xe1/xbd <CJK> +<U00026D7C> /x8e/xa6/xe1/xbf <CJK> +<U00026D72> /x8e/xa6/xe1/xc0 <CJK> +<U00026D81> /x8e/xa6/xe1/xc1 <CJK> +<U00026DE0> /x8e/xa6/xe1/xc2 <CJK> +<U00026D65> /x8e/xa6/xe1/xc3 <CJK> +<U44FF> /x8e/xa6/xe1/xc4 <CJK> +<U00026D6A> /x8e/xa6/xe1/xc5 <CJK> +<U00026D97> /x8e/xa6/xe1/xc6 <CJK> +<U00026DAA> /x8e/xa6/xe1/xc7 <CJK> +<U00026DD3> /x8e/xa6/xe1/xc8 <CJK> +<U00026DAB> /x8e/xa6/xe1/xc9 <CJK> +<U00026D6E> /x8e/xa6/xe1/xca <CJK> +<U00026DAC> /x8e/xa6/xe1/xcb <CJK> +<U00026D76> /x8e/xa6/xe1/xcc <CJK> +<U00026D7B> /x8e/xa6/xe1/xcd <CJK> +<U00026DAD> /x8e/xa6/xe1/xce <CJK> +<U00026D94> /x8e/xa6/xe1/xd0 <CJK> +<U00026DD7> /x8e/xa6/xe1/xd1 <CJK> +<U00026D70> /x8e/xa6/xe1/xd2 <CJK> +<U00026DD5> /x8e/xa6/xe1/xd3 <CJK> +<U00026DF1> /x8e/xa6/xe1/xd4 <CJK> +<U00026D7A> /x8e/xa6/xe1/xd5 <CJK> +<U00026D68> /x8e/xa6/xe1/xd6 <CJK> +<U00026D96> /x8e/xa6/xe1/xd7 <CJK> +<U450B> /x8e/xa6/xe1/xd8 <CJK> +<U00026D73> /x8e/xa6/xe1/xd9 <CJK> +<U00026DAE> /x8e/xa6/xe1/xda <CJK> +<U00026DDD> /x8e/xa6/xe1/xdb <CJK> +<U00026DDA> /x8e/xa6/xe1/xdc <CJK> +<U00026DAF> /x8e/xa6/xe1/xdd <CJK> +<U00026DB0> /x8e/xa6/xe1/xde <CJK> +<U00026DDB> /x8e/xa6/xe1/xdf <CJK> +<U00026D62> /x8e/xa6/xe1/xe0 <CJK> +<U00026DF8> /x8e/xa6/xe1/xe1 <CJK> +<U000271C2> /x8e/xa6/xe1/xe2 <CJK> +<U000271C7> /x8e/xa6/xe1/xe3 <CJK> +<U000271C8> /x8e/xa6/xe1/xe4 <CJK> +<U000271C5> /x8e/xa6/xe1/xe5 <CJK> +<U000271C3> /x8e/xa6/xe1/xe6 <CJK> +<U000271C6> /x8e/xa6/xe1/xe7 <CJK> +<U000272DE> /x8e/xa6/xe1/xe8 <CJK> +<U45C8> /x8e/xa6/xe1/xe9 <CJK> +<U00027311> /x8e/xa6/xe1/xea <CJK> +<U00027315> /x8e/xa6/xe1/xeb <CJK> +<U00027328> /x8e/xa6/xe1/xec <CJK> +<U00027321> /x8e/xa6/xe1/xed <CJK> +<U0002732D> /x8e/xa6/xe1/xee <CJK> +<U00027351> /x8e/xa6/xe1/xef <CJK> +<U0002732B> /x8e/xa6/xe1/xf0 <CJK> +<U00027316> /x8e/xa6/xe1/xf1 <CJK> +<U00027324> /x8e/xa6/xe1/xf2 <CJK> +<U00027335> /x8e/xa6/xe1/xf3 <CJK> +<U0002731F> /x8e/xa6/xe1/xf4 <CJK> +<U00027312> /x8e/xa6/xe1/xf5 <CJK> +<U00027310> /x8e/xa6/xe1/xf6 <CJK> +<U00027380> /x8e/xa6/xe1/xf7 <CJK> +<U0002733B> /x8e/xa6/xe1/xf8 <CJK> +<U00027329> /x8e/xa6/xe1/xf9 <CJK> +<U0002732A> /x8e/xa6/xe1/xfa <CJK> +<U0002731B> /x8e/xa6/xe1/xfb <CJK> +<U00027318> /x8e/xa6/xe1/xfc <CJK> +<U00027320> /x8e/xa6/xe1/xfd <CJK> +<U0002733F> /x8e/xa6/xe1/xfe <CJK> +<U0002731C> /x8e/xa6/xe2/xa1 <CJK> +<U00027326> /x8e/xa6/xe2/xa2 <CJK> +<U0002730B> /x8e/xa6/xe2/xa3 <CJK> +<U000275BE> /x8e/xa6/xe2/xa4 <CJK> +<U000275C4> /x8e/xa6/xe2/xa5 <CJK> +<U000275BD> /x8e/xa6/xe2/xa6 <CJK> +<U000275FA> /x8e/xa6/xe2/xa7 <CJK> +<U000275FB> /x8e/xa6/xe2/xa8 <CJK> +<U000276B1> /x8e/xa6/xe2/xa9 <CJK> +<U000276B2> /x8e/xa6/xe2/xaa <CJK> +<U000276B0> /x8e/xa6/xe2/xab <CJK> +<U000276B9> /x8e/xa6/xe2/xac <CJK> +<U000276A6> /x8e/xa6/xe2/xad <CJK> +<U000276BD> /x8e/xa6/xe2/xae <CJK> +<U000276B6> /x8e/xa6/xe2/xaf <CJK> +<U000276B8> /x8e/xa6/xe2/xb0 <CJK> +<U000276B4> /x8e/xa6/xe2/xb1 <CJK> +<U000276B3> /x8e/xa6/xe2/xb2 <CJK> +<U000276A7> /x8e/xa6/xe2/xb3 <CJK> +<U000276AE> /x8e/xa6/xe2/xb4 <CJK> +<U000276BC> /x8e/xa6/xe2/xb5 <CJK> +<U000277F2> /x8e/xa6/xe2/xb6 <CJK> +<U000277F3> /x8e/xa6/xe2/xb7 <CJK> +<U000277F4> /x8e/xa6/xe2/xb8 <CJK> +<U0002783B> /x8e/xa6/xe2/xb9 <CJK> +<U00027840> /x8e/xa6/xe2/xba <CJK> +<U00027846> /x8e/xa6/xe2/xbb <CJK> +<U000278F0> /x8e/xa6/xe2/xbc <CJK> +<U000278EE> /x8e/xa6/xe2/xbd <CJK> +<U000278E8> /x8e/xa6/xe2/xbe <CJK> +<U000278F1> /x8e/xa6/xe2/xbf <CJK> +<U000278EB> /x8e/xa6/xe2/xc0 <CJK> +<U000278EF> /x8e/xa6/xe2/xc1 <CJK> +<U000279FC> /x8e/xa6/xe2/xc2 <CJK> +<U00027A20> /x8e/xa6/xe2/xc3 <CJK> +<U00027A09> /x8e/xa6/xe2/xc4 <CJK> +<U00027A06> /x8e/xa6/xe2/xc5 <CJK> +<U00027A03> /x8e/xa6/xe2/xc6 <CJK> +<U00027A19> /x8e/xa6/xe2/xc8 <CJK> +<U00027A24> /x8e/xa6/xe2/xc9 <CJK> +<U00027A1B> /x8e/xa6/xe2/xca <CJK> +<U00027A1D> /x8e/xa6/xe2/xcb <CJK> +<U000279FD> /x8e/xa6/xe2/xcc <CJK> +<U00027A1E> /x8e/xa6/xe2/xcd <CJK> +<U000279F4> /x8e/xa6/xe2/xce <CJK> +<U00027A01> /x8e/xa6/xe2/xcf <CJK> +<U00027A08> /x8e/xa6/xe2/xd0 <CJK> +<U00027A05> /x8e/xa6/xe2/xd1 <CJK> +<U00027A23> /x8e/xa6/xe2/xd2 <CJK> +<U000279FF> /x8e/xa6/xe2/xd3 <CJK> +<U00027BEA> /x8e/xa6/xe2/xd4 <CJK> +<U00027C4D> /x8e/xa6/xe2/xd5 <CJK> +<U00027C4E> /x8e/xa6/xe2/xd6 <CJK> +<U00027C56> /x8e/xa6/xe2/xd7 <CJK> +<U00027C57> /x8e/xa6/xe2/xd8 <CJK> +<U00027C51> /x8e/xa6/xe2/xd9 <CJK> +<U00027C55> /x8e/xa6/xe2/xda <CJK> +<U00027C54> /x8e/xa6/xe2/xdb <CJK> +<U00027CCB> /x8e/xa6/xe2/xdc <CJK> +<U00027CD4> /x8e/xa6/xe2/xdd <CJK> +<U00027CD1> /x8e/xa6/xe2/xde <CJK> +<U00027CCF> /x8e/xa6/xe2/xdf <CJK> +<U00027CD2> /x8e/xa6/xe2/xe0 <CJK> +<U00027CCA> /x8e/xa6/xe2/xe1 <CJK> +<U00027CD6> /x8e/xa6/xe2/xe2 <CJK> +<U00027D8B> /x8e/xa6/xe2/xe3 <CJK> +<U00027D88> /x8e/xa6/xe2/xe4 <CJK> +<U00027D85> /x8e/xa6/xe2/xe5 <CJK> +<U00027D89> /x8e/xa6/xe2/xe6 <CJK> +<U00021A9B> /x8e/xa6/xe2/xe7 <CJK> +<U00027DBB> /x8e/xa6/xe2/xe8 <CJK> +<U00027D8C> /x8e/xa6/xe2/xe9 <CJK> +<U4774> /x8e/xa6/xe2/xea <CJK> +<U00027D99> /x8e/xa6/xe2/xeb <CJK> +<U00027D8A> /x8e/xa6/xe2/xec <CJK> +<U00027EEC> /x8e/xa6/xe2/xed <CJK> +<U00027EEF> /x8e/xa6/xe2/xee <CJK> +<U00027EF9> /x8e/xa6/xe2/xef <CJK> +<U00027F09> /x8e/xa6/xe2/xf0 <CJK> +<U00027EF8> /x8e/xa6/xe2/xf1 <CJK> +<U00027EF3> /x8e/xa6/xe2/xf2 <CJK> +<U00027F00> /x8e/xa6/xe2/xf3 <CJK> +<U00027F1D> /x8e/xa6/xe2/xf4 <CJK> +<U47AC> /x8e/xa6/xe2/xf5 <CJK> +<U00027EFD> /x8e/xa6/xe2/xf6 <CJK> +<U00028048> /x8e/xa6/xe2/xf7 <CJK> +<U0002805C> /x8e/xa6/xe2/xf8 <CJK> +<U00028055> /x8e/xa6/xe2/xf9 <CJK> +<U0002805E> /x8e/xa6/xe2/xfa <CJK> +<U00028049> /x8e/xa6/xe2/xfb <CJK> +<U00028063> /x8e/xa6/xe2/xfc <CJK> +<U00028060> /x8e/xa6/xe2/xfd <CJK> +<U00028053> /x8e/xa6/xe2/xfe <CJK> +<U00028062> /x8e/xa6/xe3/xa1 <CJK> +<U00028040> /x8e/xa6/xe3/xa2 <CJK> +<U00028249> /x8e/xa6/xe3/xa3 <CJK> +<U0002824A> /x8e/xa6/xe3/xa4 <CJK> +<U0002824C> /x8e/xa6/xe3/xa5 <CJK> +<U0002824D> /x8e/xa6/xe3/xa6 <CJK> +<U0002830A> /x8e/xa6/xe3/xa7 <CJK> +<U00028306> /x8e/xa6/xe3/xa8 <CJK> +<U0002832F> /x8e/xa6/xe3/xa9 <CJK> +<U00028321> /x8e/xa6/xe3/xaa <CJK> +<U00028307> /x8e/xa6/xe3/xab <CJK> +<U00028309> /x8e/xa6/xe3/xac <CJK> +<U00028302> /x8e/xa6/xe3/xad <CJK> +<U00028316> /x8e/xa6/xe3/xae <CJK> +<U00028303> /x8e/xa6/xe3/xaf <CJK> +<U0002830B> /x8e/xa6/xe3/xb0 <CJK> +<U0002830F> /x8e/xa6/xe3/xb1 <CJK> +<U00028560> /x8e/xa6/xe3/xb2 <CJK> +<U00028568> /x8e/xa6/xe3/xb3 <CJK> +<U0002855E> /x8e/xa6/xe3/xb4 <CJK> +<U0002855D> /x8e/xa6/xe3/xb5 <CJK> +<U00028563> /x8e/xa6/xe3/xb6 <CJK> +<U0002855F> /x8e/xa6/xe3/xb7 <CJK> +<U00028564> /x8e/xa6/xe3/xb8 <CJK> +<U00028578> /x8e/xa6/xe3/xb9 <CJK> +<U00028561> /x8e/xa6/xe3/xba <CJK> +<U00028569> /x8e/xa6/xe3/xbb <CJK> +<U00028565> /x8e/xa6/xe3/xbc <CJK> +<U000286DA> /x8e/xa6/xe3/xbd <CJK> +<U000286E6> /x8e/xa6/xe3/xbe <CJK> +<U000286DB> /x8e/xa6/xe3/xbf <CJK> +<U000286DC> /x8e/xa6/xe3/xc0 <CJK> +<U00028739> /x8e/xa6/xe3/xc1 <CJK> +<U00028757> /x8e/xa6/xe3/xc2 <CJK> +<U00028755> /x8e/xa6/xe3/xc3 <CJK> +<U00028765> /x8e/xa6/xe3/xc4 <CJK> +<U00028761> /x8e/xa6/xe3/xc5 <CJK> +<U00028754> /x8e/xa6/xe3/xc6 <CJK> +<U00028845> /x8e/xa6/xe3/xc7 <CJK> +<U00028841> /x8e/xa6/xe3/xc8 <CJK> +<U0002883E> /x8e/xa6/xe3/xc9 <CJK> +<U00028837> /x8e/xa6/xe3/xca <CJK> +<U00028912> /x8e/xa6/xe3/xcb <CJK> +<U00028913> /x8e/xa6/xe3/xcc <CJK> +<U0002892C> /x8e/xa6/xe3/xcd <CJK> +<U00028996> /x8e/xa6/xe3/xce <CJK> +<U0002899C> /x8e/xa6/xe3/xd0 <CJK> +<U0002899D> /x8e/xa6/xe3/xd1 <CJK> +<U00028985> /x8e/xa6/xe3/xd2 <CJK> +<U0002899F> /x8e/xa6/xe3/xd4 <CJK> +<U000289A3> /x8e/xa6/xe3/xd5 <CJK> +<U00028C82> /x8e/xa6/xe3/xd6 <CJK> +<U00028C83> /x8e/xa6/xe3/xd7 <CJK> +<U00028D1D> /x8e/xa6/xe3/xd9 <CJK> +<U00028D14> /x8e/xa6/xe3/xda <CJK> +<U00028D1F> /x8e/xa6/xe3/xdb <CJK> +<U00028D20> /x8e/xa6/xe3/xdc <CJK> +<U00028E47> /x8e/xa6/xe3/xdd <CJK> +<U00028E80> /x8e/xa6/xe3/xde <CJK> +<U00028EC9> /x8e/xa6/xe3/xdf <CJK> +<U00028EF9> /x8e/xa6/xe3/xe0 <CJK> +<U00028F06> /x8e/xa6/xe3/xe1 <CJK> +<U00028EF0> /x8e/xa6/xe3/xe2 <CJK> +<U00028EF8> /x8e/xa6/xe3/xe3 <CJK> +<U00028EEF> /x8e/xa6/xe3/xe4 <CJK> +<U00028EFD> /x8e/xa6/xe3/xe5 <CJK> +<U00028EF1> /x8e/xa6/xe3/xe6 <CJK> +<U00028EFE> /x8e/xa6/xe3/xe7 <CJK> +<U00028FB8> /x8e/xa6/xe3/xe8 <CJK> +<U00028FC0> /x8e/xa6/xe3/xe9 <CJK> +<U00028FC3> /x8e/xa6/xe3/xea <CJK> +<U00028FB5> /x8e/xa6/xe3/xeb <CJK> +<U00028FB6> /x8e/xa6/xe3/xec <CJK> +<U00028FC9> /x8e/xa6/xe3/xed <CJK> +<U00028FBD> /x8e/xa6/xe3/xef <CJK> +<U00028FBA> /x8e/xa6/xe3/xf0 <CJK> +<U00028FBF> /x8e/xa6/xe3/xf1 <CJK> +<U00028FB3> /x8e/xa6/xe3/xf2 <CJK> +<U00028FC6> /x8e/xa6/xe3/xf3 <CJK> +<U00028FB2> /x8e/xa6/xe3/xf4 <CJK> +<U00028FBC> /x8e/xa6/xe3/xf5 <CJK> +<U00028FB7> /x8e/xa6/xe3/xf6 <CJK> +<U00028FB9> /x8e/xa6/xe3/xf7 <CJK> +<U00028FC8> /x8e/xa6/xe3/xf8 <CJK> +<U000290B5> /x8e/xa6/xe3/xf9 <CJK> +<U000290B3> /x8e/xa6/xe3/xfa <CJK> +<U4A16> /x8e/xa6/xe3/xfb <CJK> +<U000290AC> /x8e/xa6/xe3/xfc <CJK> +<U000290A9> /x8e/xa6/xe3/xfd <CJK> +<U000290AD> /x8e/xa6/xe3/xfe <CJK> +<U00029211> /x8e/xa6/xe4/xa1 <CJK> +<U0002920D> /x8e/xa6/xe4/xa2 <CJK> +<U00029216> /x8e/xa6/xe4/xa3 <CJK> +<U00029289> /x8e/xa6/xe4/xa4 <CJK> +<U0002927C> /x8e/xa6/xe4/xa5 <CJK> +<U0002928B> /x8e/xa6/xe4/xa6 <CJK> +<U0002927B> /x8e/xa6/xe4/xa7 <CJK> +<U00029288> /x8e/xa6/xe4/xa8 <CJK> +<U00029284> /x8e/xa6/xe4/xa9 <CJK> +<U0002939D> /x8e/xa6/xe4/xaa <CJK> +<U00029398> /x8e/xa6/xe4/xab <CJK> +<U00029488> /x8e/xa6/xe4/xac <CJK> +<U00029486> /x8e/xa6/xe4/xad <CJK> +<U00029482> /x8e/xa6/xe4/xae <CJK> +<U0002948B> /x8e/xa6/xe4/xaf <CJK> +<U00029471> /x8e/xa6/xe4/xb1 <CJK> +<U00029472> /x8e/xa6/xe4/xb2 <CJK> +<U00029481> /x8e/xa6/xe4/xb3 <CJK> +<U0002948C> /x8e/xa6/xe4/xb4 <CJK> +<U00029480> /x8e/xa6/xe4/xb5 <CJK> +<U00029489> /x8e/xa6/xe4/xb6 <CJK> +<U000295BB> /x8e/xa6/xe4/xb7 <CJK> +<U000295C1> /x8e/xa6/xe4/xb8 <CJK> +<U000295BE> /x8e/xa6/xe4/xb9 <CJK> +<U000295BD> /x8e/xa6/xe4/xbb <CJK> +<U000296C1> /x8e/xa6/xe4/xbc <CJK> +<U000296B4> /x8e/xa6/xe4/xbd <CJK> +<U000296B7> /x8e/xa6/xe4/xbe <CJK> +<U000296C8> /x8e/xa6/xe4/xbf <CJK> +<U4B3B> /x8e/xa6/xe4/xc0 <CJK> +<U000296D3> /x8e/xa6/xe4/xc1 <CJK> +<U000296D0> /x8e/xa6/xe4/xc2 <CJK> +<U000296B0> /x8e/xa6/xe4/xc3 <CJK> +<U000296CA> /x8e/xa6/xe4/xc4 <CJK> +<U000296CD> /x8e/xa6/xe4/xc5 <CJK> +<U00029815> /x8e/xa6/xe4/xc6 <CJK> +<U00029819> /x8e/xa6/xe4/xc7 <CJK> +<U00029817> /x8e/xa6/xe4/xc8 <CJK> +<U0002983F> /x8e/xa6/xe4/xc9 <CJK> +<U00029840> /x8e/xa6/xe4/xca <CJK> +<U00029844> /x8e/xa6/xe4/xcb <CJK> +<U0002987C> /x8e/xa6/xe4/xcc <CJK> +<U00029878> /x8e/xa6/xe4/xcd <CJK> +<U00029879> /x8e/xa6/xe4/xce <CJK> +<U00029888> /x8e/xa6/xe4/xcf <CJK> +<U00029889> /x8e/xa6/xe4/xd1 <CJK> +<U0002987D> /x8e/xa6/xe4/xd2 <CJK> +<U00029A23> /x8e/xa6/xe4/xd3 <CJK> +<U00029A24> /x8e/xa6/xe4/xd4 <CJK> +<U00029A26> /x8e/xa6/xe4/xd5 <CJK> +<U00029A22> /x8e/xa6/xe4/xd6 <CJK> +<U00029A27> /x8e/xa6/xe4/xd7 <CJK> +<U00029A1F> /x8e/xa6/xe4/xd8 <CJK> +<U00029AC9> /x8e/xa6/xe4/xd9 <CJK> +<U00029AC3> /x8e/xa6/xe4/xda <CJK> +<U00029B0A> /x8e/xa6/xe4/xdb <CJK> +<U00029B0B> /x8e/xa6/xe4/xdc <CJK> +<U00029B04> /x8e/xa6/xe4/xdd <CJK> +<U4BEF> /x8e/xa6/xe4/xde <CJK> +<U00029B03> /x8e/xa6/xe4/xdf <CJK> +<U00029B01> /x8e/xa6/xe4/xe0 <CJK> +<U00029B09> /x8e/xa6/xe4/xe1 <CJK> +<U00029C0F> /x8e/xa6/xe4/xe2 <CJK> +<U00029C2E> /x8e/xa6/xe4/xe3 <CJK> +<U00029C2D> /x8e/xa6/xe4/xe4 <CJK> +<U00029C91> /x8e/xa6/xe4/xe5 <CJK> +<U00029C99> /x8e/xa6/xe4/xe6 <CJK> +<U00029C9E> /x8e/xa6/xe4/xe7 <CJK> +<U00029C90> /x8e/xa6/xe4/xe8 <CJK> +<U00029C94> /x8e/xa6/xe4/xe9 <CJK> +<U00029C9D> /x8e/xa6/xe4/xea <CJK> +<U00029C98> /x8e/xa6/xe4/xeb <CJK> +<U00029C9B> /x8e/xa6/xe4/xec <CJK> +<U00029C9C> /x8e/xa6/xe4/xed <CJK> +<U00029C9A> /x8e/xa6/xe4/xee <CJK> +<U00029D54> /x8e/xa6/xe4/xef <CJK> +<U00029F9D> /x8e/xa6/xe4/xf0 <CJK> +<U00029F9F> /x8e/xa6/xe4/xf1 <CJK> +<U00029FA3> /x8e/xa6/xe4/xf2 <CJK> +<U00029FA4> /x8e/xa6/xe4/xf3 <CJK> +<U00029FA5> /x8e/xa6/xe4/xf4 <CJK> +<U0002A302> /x8e/xa6/xe4/xf5 <CJK> +<U0002A417> /x8e/xa6/xe4/xf6 <CJK> +<U0002A41B> /x8e/xa6/xe4/xf7 <CJK> +<U0002A419> /x8e/xa6/xe4/xf8 <CJK> +<U0002A4D1> /x8e/xa6/xe4/xf9 <CJK> +<U00021537> /x8e/xa6/xe4/xfa <CJK> +<U00020055> /x8e/xa7/xa1/xa1 <CJK> +<U00020182> /x8e/xa7/xa1/xa2 <CJK> +<U00020189> /x8e/xa7/xa1/xa3 <CJK> +<U00020187> /x8e/xa7/xa1/xa4 <CJK> +<U000203BE> /x8e/xa7/xa1/xa5 <CJK> +<U000203BD> /x8e/xa7/xa1/xa6 <CJK> +<U000203CA> /x8e/xa7/xa1/xa7 <CJK> +<U000203D4> /x8e/xa7/xa1/xa8 <CJK> +<U000203BC> /x8e/xa7/xa1/xa9 <CJK> +<U000203C4> /x8e/xa7/xa1/xaa <CJK> +<U000203C1> /x8e/xa7/xa1/xab <CJK> +<U000203C2> /x8e/xa7/xa1/xac <CJK> +<U000203D7> /x8e/xa7/xa1/xad <CJK> +<U00020370> /x8e/xa7/xa1/xae <CJK> +<U000203BA> /x8e/xa7/xa1/xaf <CJK> +<U000203E3> /x8e/xa7/xa1/xb0 <CJK> +<U000203BB> /x8e/xa7/xa1/xb1 <CJK> +<U000204B1> /x8e/xa7/xa1/xb2 <CJK> +<U000204B6> /x8e/xa7/xa1/xb3 <CJK> +<U000204B0> /x8e/xa7/xa1/xb4 <CJK> +<U0002056C> /x8e/xa7/xa1/xb5 <CJK> +<U0002060D> /x8e/xa7/xa1/xb6 <CJK> +<U00020607> /x8e/xa7/xa1/xb7 <CJK> +<U000207F1> /x8e/xa7/xa1/xb8 <CJK> +<U000207F5> /x8e/xa7/xa1/xb9 <CJK> +<U000207ED> /x8e/xa7/xa1/xba <CJK> +<U000207EF> /x8e/xa7/xa1/xbb <CJK> +<U000207EB> /x8e/xa7/xa1/xbc <CJK> +<U000207EC> /x8e/xa7/xa1/xbd <CJK> +<U000207EE> /x8e/xa7/xa1/xbe <CJK> +<U00020807> /x8e/xa7/xa1/xbf <CJK> +<U000209C4> /x8e/xa7/xa1/xc0 <CJK> +<U00020A08> /x8e/xa7/xa1/xc1 <CJK> +<U00020AB3> /x8e/xa7/xa1/xc2 <CJK> +<U00020AAD> /x8e/xa7/xa1/xc3 <CJK> +<U00020AB0> /x8e/xa7/xa1/xc4 <CJK> +<U00020B11> /x8e/xa7/xa1/xc5 <CJK> +<U0002018A> /x8e/xa7/xa1/xc6 <CJK> +<U00020F83> /x8e/xa7/xa1/xc7 <CJK> +<U00020F7A> /x8e/xa7/xa1/xc8 <CJK> +<U00020F82> /x8e/xa7/xa1/xc9 <CJK> +<U00020F68> /x8e/xa7/xa1/xca <CJK> +<U00020F71> /x8e/xa7/xa1/xcb <CJK> +<U00020FB0> /x8e/xa7/xa1/xcc <CJK> +<U00020FAF> /x8e/xa7/xa1/xcd <CJK> +<U35F6> /x8e/xa7/xa1/xce <CJK> +<U00020F6C> /x8e/xa7/xa1/xcf <CJK> +<U00020F6F> /x8e/xa7/xa1/xd0 <CJK> +<U00020F62> /x8e/xa7/xa1/xd1 <CJK> +<U00020F65> /x8e/xa7/xa1/xd2 <CJK> +<U00020F81> /x8e/xa7/xa1/xd3 <CJK> +<U00020F7F> /x8e/xa7/xa1/xd4 <CJK> +<U00020F64> /x8e/xa7/xa1/xd5 <CJK> +<U00020F73> /x8e/xa7/xa1/xd6 <CJK> +<U00020F6E> /x8e/xa7/xa1/xd7 <CJK> +<U00020F67> /x8e/xa7/xa1/xd8 <CJK> +<U00020F74> /x8e/xa7/xa1/xd9 <CJK> +<U00020F7D> /x8e/xa7/xa1/xda <CJK> +<U00020F78> /x8e/xa7/xa1/xdb <CJK> +<U00020F85> /x8e/xa7/xa1/xdc <CJK> +<U00020FAA> /x8e/xa7/xa1/xdd <CJK> +<U00020F88> /x8e/xa7/xa1/xde <CJK> +<U00020FA6> /x8e/xa7/xa1/xdf <CJK> +<U00020F8A> /x8e/xa7/xa1/xe1 <CJK> +<U00020F84> /x8e/xa7/xa1/xe2 <CJK> +<U5655> /x8e/xa7/xa1/xe3 <CJK> +<U00021224> /x8e/xa7/xa1/xe4 <CJK> +<U00021222> /x8e/xa7/xa1/xe5 <CJK> +<U00021223> /x8e/xa7/xa1/xe6 <CJK> +<U00021432> /x8e/xa7/xa1/xe7 <CJK> +<U0002145B> /x8e/xa7/xa1/xe8 <CJK> +<U0002144F> /x8e/xa7/xa1/xe9 <CJK> +<U3667> /x8e/xa7/xa1/xea <CJK> +<U00021426> /x8e/xa7/xa1/xeb <CJK> +<U0002143E> /x8e/xa7/xa1/xec <CJK> +<U00021442> /x8e/xa7/xa1/xed <CJK> +<U00021447> /x8e/xa7/xa1/xee <CJK> +<U00021422> /x8e/xa7/xa1/xef <CJK> +<U0002069B> /x8e/xa7/xa1/xf0 <CJK> +<U0002144A> /x8e/xa7/xa1/xf1 <CJK> +<U0002141F> /x8e/xa7/xa1/xf2 <CJK> +<U00021449> /x8e/xa7/xa1/xf3 <CJK> +<U0002142B> /x8e/xa7/xa1/xf4 <CJK> +<U00021433> /x8e/xa7/xa1/xf5 <CJK> +<U0002142A> /x8e/xa7/xa1/xf7 <CJK> +<U00021428> /x8e/xa7/xa1/xf8 <CJK> +<U0002153D> /x8e/xa7/xa1/xf9 <CJK> +<U0002153C> /x8e/xa7/xa1/xfa <CJK> +<U000215BF> /x8e/xa7/xa1/xfb <CJK> +<U00021679> /x8e/xa7/xa1/xfc <CJK> +<U00021680> /x8e/xa7/xa1/xfd <CJK> +<U0002167C> /x8e/xa7/xa1/xfe <CJK> +<U0002167A> /x8e/xa7/xa2/xa1 <CJK> +<U00021678> /x8e/xa7/xa2/xa2 <CJK> +<U00021882> /x8e/xa7/xa2/xa3 <CJK> +<U0002185C> /x8e/xa7/xa2/xa4 <CJK> +<U0002185A> /x8e/xa7/xa2/xa5 <CJK> +<U0002184B> /x8e/xa7/xa2/xa6 <CJK> +<U0002187C> /x8e/xa7/xa2/xa7 <CJK> +<U0002187F> /x8e/xa7/xa2/xa8 <CJK> +<U0002181F> /x8e/xa7/xa2/xa9 <CJK> +<U00021889> /x8e/xa7/xa2/xaa <CJK> +<U0002188B> /x8e/xa7/xa2/xab <CJK> +<U00021857> /x8e/xa7/xa2/xac <CJK> +<U0002187E> /x8e/xa7/xa2/xad <CJK> +<U0002187D> /x8e/xa7/xa2/xae <CJK> +<U00021853> /x8e/xa7/xa2/xaf <CJK> +<U00021A9F> /x8e/xa7/xa2/xb0 <CJK> +<U00021ABC> /x8e/xa7/xa2/xb1 <CJK> +<U00021AA5> /x8e/xa7/xa2/xb2 <CJK> +<U00021A86> /x8e/xa7/xa2/xb3 <CJK> +<U00021ADC> /x8e/xa7/xa2/xb4 <CJK> +<U00021AA4> /x8e/xa7/xa2/xb5 <CJK> +<U00021AB6> /x8e/xa7/xa2/xb6 <CJK> +<U00021AA2> /x8e/xa7/xa2/xb7 <CJK> +<U00021AB4> /x8e/xa7/xa2/xb8 <CJK> +<U00021B48> /x8e/xa7/xa2/xb9 <CJK> +<U00021B46> /x8e/xa7/xa2/xba <CJK> +<U00021BA7> /x8e/xa7/xa2/xbb <CJK> +<U00021C14> /x8e/xa7/xa2/xbc <CJK> +<U00021C12> /x8e/xa7/xa2/xbd <CJK> +<U00021C11> /x8e/xa7/xa2/xbe <CJK> +<U00021CE1> /x8e/xa7/xa2/xbf <CJK> +<U00021CD0> /x8e/xa7/xa2/xc0 <CJK> +<U00021D26> /x8e/xa7/xa2/xc1 <CJK> +<U00021D28> /x8e/xa7/xa2/xc2 <CJK> +<U00021D29> /x8e/xa7/xa2/xc3 <CJK> +<U00021F2F> /x8e/xa7/xa2/xc4 <CJK> +<U00021F0D> /x8e/xa7/xa2/xc5 <CJK> +<U00021F25> /x8e/xa7/xa2/xc6 <CJK> +<U00021F14> /x8e/xa7/xa2/xc7 <CJK> +<U00021F3C> /x8e/xa7/xa2/xc8 <CJK> +<U00021F0B> /x8e/xa7/xa2/xc9 <CJK> +<U00021F11> /x8e/xa7/xa2/xca <CJK> +<U00021F30> /x8e/xa7/xa2/xcb <CJK> +<U00021F18> /x8e/xa7/xa2/xcc <CJK> +<U00021F19> /x8e/xa7/xa2/xcd <CJK> +<U00021F36> /x8e/xa7/xa2/xce <CJK> +<U00021F17> /x8e/xa7/xa2/xcf <CJK> +<U00021F10> /x8e/xa7/xa2/xd0 <CJK> +<U00021F15> /x8e/xa7/xa2/xd1 <CJK> +<U00022003> /x8e/xa7/xa2/xd2 <CJK> +<U00022029> /x8e/xa7/xa2/xd3 <CJK> +<U0002204C> /x8e/xa7/xa2/xd4 <CJK> +<U0002213F> /x8e/xa7/xa2/xd5 <CJK> +<U0002213E> /x8e/xa7/xa2/xd6 <CJK> +<U00022134> /x8e/xa7/xa2/xd7 <CJK> +<U00022142> /x8e/xa7/xa2/xd8 <CJK> +<U00022135> /x8e/xa7/xa2/xd9 <CJK> +<U000207F3> /x8e/xa7/xa2/xda <CJK> +<U000221CD> /x8e/xa7/xa2/xdb <CJK> +<U000221D1> /x8e/xa7/xa2/xdc <CJK> +<U000221D2> /x8e/xa7/xa2/xdd <CJK> +<U000222AD> /x8e/xa7/xa2/xde <CJK> +<U000222BA> /x8e/xa7/xa2/xdf <CJK> +<U000222C1> /x8e/xa7/xa2/xe0 <CJK> +<U000222BB> /x8e/xa7/xa2/xe1 <CJK> +<U000222B4> /x8e/xa7/xa2/xe2 <CJK> +<U000222BC> /x8e/xa7/xa2/xe3 <CJK> +<U0002236C> /x8e/xa7/xa2/xe4 <CJK> +<U00022392> /x8e/xa7/xa2/xe5 <CJK> +<U00022421> /x8e/xa7/xa2/xe6 <CJK> +<U00022424> /x8e/xa7/xa2/xe7 <CJK> +<U00023F19> /x8e/xa7/xa2/xe8 <CJK> +<U000224AD> /x8e/xa7/xa2/xe9 <CJK> +<U000224AE> /x8e/xa7/xa2/xea <CJK> +<U000224AB> /x8e/xa7/xa2/xeb <CJK> +<U000224AC> /x8e/xa7/xa2/xec <CJK> +<U00022570> /x8e/xa7/xa2/xed <CJK> +<U00022576> /x8e/xa7/xa2/xee <CJK> +<U00022571> /x8e/xa7/xa2/xef <CJK> +<U00022577> /x8e/xa7/xa2/xf0 <CJK> +<U617F> /x8e/xa7/xa2/xf1 <CJK> +<U000227EC> /x8e/xa7/xa2/xf2 <CJK> +<U0002281C> /x8e/xa7/xa2/xf3 <CJK> +<U000227FB> /x8e/xa7/xa2/xf4 <CJK> +<U000227EE> /x8e/xa7/xa2/xf5 <CJK> +<U000228E2> /x8e/xa7/xa2/xf6 <CJK> +<U000227FD> /x8e/xa7/xa2/xf7 <CJK> +<U0002281E> /x8e/xa7/xa2/xf8 <CJK> +<U0002283B> /x8e/xa7/xa2/xf9 <CJK> +<U0002284A> /x8e/xa7/xa2/xfa <CJK> +<U3992> /x8e/xa7/xa2/xfc <CJK> +<U0002287D> /x8e/xa7/xa2/xfd <CJK> +<U00022856> /x8e/xa7/xa2/xfe <CJK> +<U00022844> /x8e/xa7/xa3/xa1 <CJK> +<U0002284B> /x8e/xa7/xa3/xa2 <CJK> +<U000229FA> /x8e/xa7/xa3/xa3 <CJK> +<U000229E8> /x8e/xa7/xa3/xa4 <CJK> +<U000229F8> /x8e/xa7/xa3/xa5 <CJK> +<U000229FF> /x8e/xa7/xa3/xa6 <CJK> +<U000229F7> /x8e/xa7/xa3/xa7 <CJK> +<U000229F6> /x8e/xa7/xa3/xa8 <CJK> +<U000229FE> /x8e/xa7/xa3/xa9 <CJK> +<U00022A07> /x8e/xa7/xa3/xaa <CJK> +<U00022A5D> /x8e/xa7/xa3/xab <CJK> +<U00022CD4> /x8e/xa7/xa3/xac <CJK> +<U00022CC8> /x8e/xa7/xa3/xae <CJK> +<U00022CC5> /x8e/xa7/xa3/xaf <CJK> +<U00022CC9> /x8e/xa7/xa3/xb1 <CJK> +<U00022D4D> /x8e/xa7/xa3/xb2 <CJK> +<U00022D20> /x8e/xa7/xa3/xb3 <CJK> +<U00022D36> /x8e/xa7/xa3/xb4 <CJK> +<U00022D35> /x8e/xa7/xa3/xb5 <CJK> +<U00022D88> /x8e/xa7/xa3/xb6 <CJK> +<U00022D25> /x8e/xa7/xa3/xb7 <CJK> +<U00022D21> /x8e/xa7/xa3/xb8 <CJK> +<U00022D26> /x8e/xa7/xa3/xb9 <CJK> +<U3A45> /x8e/xa7/xa3/xba <CJK> +<U00022D3F> /x8e/xa7/xa3/xbb <CJK> +<U00022D3B> /x8e/xa7/xa3/xbc <CJK> +<U00022D24> /x8e/xa7/xa3/xbd <CJK> +<U00022D43> /x8e/xa7/xa3/xbe <CJK> +<U00022D4E> /x8e/xa7/xa3/xbf <CJK> +<U00022D4F> /x8e/xa7/xa3/xc0 <CJK> +<U00022D44> /x8e/xa7/xa3/xc1 <CJK> +<U00022D40> /x8e/xa7/xa3/xc2 <CJK> +<U00022D41> /x8e/xa7/xa3/xc3 <CJK> +<U00022D39> /x8e/xa7/xa3/xc4 <CJK> +<U00022D2B> /x8e/xa7/xa3/xc5 <CJK> +<U00022EDD> /x8e/xa7/xa3/xc6 <CJK> +<U00022EDE> /x8e/xa7/xa3/xc7 <CJK> +<U00022FCD> /x8e/xa7/xa3/xc8 <CJK> +<U00022FCB> /x8e/xa7/xa3/xc9 <CJK> +<U00022FDB> /x8e/xa7/xa3/xca <CJK> +<U00022FD8> /x8e/xa7/xa3/xcb <CJK> +<U00022FD9> /x8e/xa7/xa3/xcc <CJK> +<U00022FD2> /x8e/xa7/xa3/xcd <CJK> +<U00022FCA> /x8e/xa7/xa3/xce <CJK> +<U00022FD1> /x8e/xa7/xa3/xcf <CJK> +<U00022FD4> /x8e/xa7/xa3/xd0 <CJK> +<U00022FF9> /x8e/xa7/xa3/xd1 <CJK> +<U00022FD0> /x8e/xa7/xa3/xd2 <CJK> +<U0002305E> /x8e/xa7/xa3/xd3 <CJK> +<U0002305D> /x8e/xa7/xa3/xd4 <CJK> +<U0002308A> /x8e/xa7/xa3/xd5 <CJK> +<U00023114> /x8e/xa7/xa3/xd6 <CJK> +<U00023283> /x8e/xa7/xa3/xd7 <CJK> +<U00023284> /x8e/xa7/xa3/xd8 <CJK> +<U0002329B> /x8e/xa7/xa3/xd9 <CJK> +<U00023282> /x8e/xa7/xa3/xda <CJK> +<U0002327D> /x8e/xa7/xa3/xdb <CJK> +<U0002327C> /x8e/xa7/xa3/xdc <CJK> +<U00023299> /x8e/xa7/xa3/xdd <CJK> +<U0002327E> /x8e/xa7/xa3/xde <CJK> +<U0002329A> /x8e/xa7/xa3/xdf <CJK> +<U00023295> /x8e/xa7/xa3/xe0 <CJK> +<U0002327B> /x8e/xa7/xa3/xe1 <CJK> +<U00023286> /x8e/xa7/xa3/xe2 <CJK> +<U00023348> /x8e/xa7/xa3/xe3 <CJK> +<U00023392> /x8e/xa7/xa3/xe4 <CJK> +<U000235B2> /x8e/xa7/xa3/xe5 <CJK> +<U00023642> /x8e/xa7/xa3/xe6 <CJK> +<U00023672> /x8e/xa7/xa3/xe7 <CJK> +<U00023615> /x8e/xa7/xa3/xe8 <CJK> +<U00023630> /x8e/xa7/xa3/xe9 <CJK> +<U00023643> /x8e/xa7/xa3/xea <CJK> +<U0002365B> /x8e/xa7/xa3/xeb <CJK> +<U0002361D> /x8e/xa7/xa3/xec <CJK> +<U00023673> /x8e/xa7/xa3/xed <CJK> +<U0002362D> /x8e/xa7/xa3/xee <CJK> +<U3BC9> /x8e/xa7/xa3/xef <CJK> +<U00023621> /x8e/xa7/xa3/xf0 <CJK> +<U0002361C> /x8e/xa7/xa3/xf1 <CJK> +<U00023629> /x8e/xa7/xa3/xf3 <CJK> +<U0002361E> /x8e/xa7/xa3/xf4 <CJK> +<U00023633> /x8e/xa7/xa3/xf5 <CJK> +<U00023910> /x8e/xa7/xa3/xf6 <CJK> +<U0002390E> /x8e/xa7/xa3/xf7 <CJK> +<U0002390D> /x8e/xa7/xa3/xf9 <CJK> +<U00023911> /x8e/xa7/xa3/xfa <CJK> +<U00023912> /x8e/xa7/xa3/xfb <CJK> +<U00023917> /x8e/xa7/xa3/xfc <CJK> +<U00023909> /x8e/xa7/xa3/xfd <CJK> +<U0002390F> /x8e/xa7/xa3/xfe <CJK> +<U00023998> /x8e/xa7/xa4/xa1 <CJK> +<U00023994> /x8e/xa7/xa4/xa2 <CJK> +<U00023996> /x8e/xa7/xa4/xa3 <CJK> +<U00023999> /x8e/xa7/xa4/xa4 <CJK> +<U00023995> /x8e/xa7/xa4/xa5 <CJK> +<U00023997> /x8e/xa7/xa4/xa6 <CJK> +<U00023A50> /x8e/xa7/xa4/xa7 <CJK> +<U00023A52> /x8e/xa7/xa4/xa8 <CJK> +<U00023A4D> /x8e/xa7/xa4/xa9 <CJK> +<U00023A57> /x8e/xa7/xa4/xaa <CJK> +<U00023A53> /x8e/xa7/xa4/xab <CJK> +<U00023A56> /x8e/xa7/xa4/xac <CJK> +<U00023AB8> /x8e/xa7/xa4/xad <CJK> +<U00023B12> /x8e/xa7/xa4/xae <CJK> +<U00023BF1> /x8e/xa7/xa4/xaf <CJK> +<U00023BF0> /x8e/xa7/xa4/xb0 <CJK> +<U00023BEE> /x8e/xa7/xa4/xb1 <CJK> +<U00023BEF> /x8e/xa7/xa4/xb2 <CJK> +<U00023BE5> /x8e/xa7/xa4/xb3 <CJK> +<U00023BEB> /x8e/xa7/xa4/xb4 <CJK> +<U00023BE7> /x8e/xa7/xa4/xb5 <CJK> +<U00023BF2> /x8e/xa7/xa4/xb6 <CJK> +<U00023BE6> /x8e/xa7/xa4/xb7 <CJK> +<U00023BF7> /x8e/xa7/xa4/xb8 <CJK> +<U00023C09> /x8e/xa7/xa4/xb9 <CJK> +<U00023C6B> /x8e/xa7/xa4/xba <CJK> +<U00023C6A> /x8e/xa7/xa4/xbb <CJK> +<U00023E79> /x8e/xa7/xa4/xbc <CJK> +<U00023ECD> /x8e/xa7/xa4/xbd <CJK> +<U00023EEF> /x8e/xa7/xa4/xbe <CJK> +<U00023EE4> /x8e/xa7/xa4/xbf <CJK> +<U00023EE3> /x8e/xa7/xa4/xc0 <CJK> +<U00023F6C> /x8e/xa7/xa4/xc1 <CJK> +<U00023F67> /x8e/xa7/xa4/xc2 <CJK> +<U00023F62> /x8e/xa7/xa4/xc3 <CJK> +<U00023F58> /x8e/xa7/xa4/xc4 <CJK> +<U00023F69> /x8e/xa7/xa4/xc5 <CJK> +<U00023FAB> /x8e/xa7/xa4/xc6 <CJK> +<U00023F57> /x8e/xa7/xa4/xc7 <CJK> +<U00023FAD> /x8e/xa7/xa4/xc8 <CJK> +<U00023F54> /x8e/xa7/xa4/xc9 <CJK> +<U00023FAE> /x8e/xa7/xa4/xca <CJK> +<U00023F76> /x8e/xa7/xa4/xcb <CJK> +<U00023F49> /x8e/xa7/xa4/xcc <CJK> +<U00023F45> /x8e/xa7/xa4/xcd <CJK> +<U00023F4F> /x8e/xa7/xa4/xce <CJK> +<U00023F50> /x8e/xa7/xa4/xd0 <CJK> +<U00023F7D> /x8e/xa7/xa4/xd1 <CJK> +<U00023F44> /x8e/xa7/xa4/xd2 <CJK> +<U00023F66> /x8e/xa7/xa4/xd3 <CJK> +<U00023F48> /x8e/xa7/xa4/xd4 <CJK> +<U00023FA3> /x8e/xa7/xa4/xd5 <CJK> +<U00023F51> /x8e/xa7/xa4/xd6 <CJK> +<U00023F53> /x8e/xa7/xa4/xd7 <CJK> +<U00023F60> /x8e/xa7/xa4/xd9 <CJK> +<U00023F47> /x8e/xa7/xa4/xda <CJK> +<U00023F5E> /x8e/xa7/xa4/xdb <CJK> +<U00023F85> /x8e/xa7/xa4/xdc <CJK> +<U00023FAC> /x8e/xa7/xa4/xdd <CJK> +<U00023F6D> /x8e/xa7/xa4/xde <CJK> +<U00023F75> /x8e/xa7/xa4/xdf <CJK> +<U00023FA8> /x8e/xa7/xa4/xe0 <CJK> +<U3D55> /x8e/xa7/xa4/xe1 <CJK> +<U00023F43> /x8e/xa7/xa4/xe2 <CJK> +<U00023F4E> /x8e/xa7/xa4/xe3 <CJK> +<U00023F5C> /x8e/xa7/xa4/xe4 <CJK> +<U00023F56> /x8e/xa7/xa4/xe5 <CJK> +<U00023F6E> /x8e/xa7/xa4/xe6 <CJK> +<U00023F63> /x8e/xa7/xa4/xe7 <CJK> +<U00023F6A> /x8e/xa7/xa4/xe8 <CJK> +<U00024356> /x8e/xa7/xa4/xe9 <CJK> +<U00024312> /x8e/xa7/xa4/xea <CJK> +<U0002435C> /x8e/xa7/xa4/xeb <CJK> +<U00024358> /x8e/xa7/xa4/xec <CJK> +<U00024355> /x8e/xa7/xa4/xed <CJK> +<U0002437E> /x8e/xa7/xa4/xee <CJK> +<U000243A8> /x8e/xa7/xa4/xef <CJK> +<U00024311> /x8e/xa7/xa4/xf0 <CJK> +<U00024359> /x8e/xa7/xa4/xf1 <CJK> +<U0002435A> /x8e/xa7/xa4/xf2 <CJK> +<U00024367> /x8e/xa7/xa4/xf3 <CJK> +<U00024354> /x8e/xa7/xa4/xf4 <CJK> +<U0002435B> /x8e/xa7/xa4/xf5 <CJK> +<U000243F0> /x8e/xa7/xa4/xf6 <CJK> +<U00024529> /x8e/xa7/xa4/xf7 <CJK> +<U0002452C> /x8e/xa7/xa4/xf8 <CJK> +<U0002452A> /x8e/xa7/xa4/xf9 <CJK> +<U00024527> /x8e/xa7/xa4/xfa <CJK> +<U00024567> /x8e/xa7/xa4/xfb <CJK> +<U00024568> /x8e/xa7/xa4/xfc <CJK> +<U00024593> /x8e/xa7/xa4/xfd <CJK> +<U00024595> /x8e/xa7/xa4/xfe <CJK> +<U0002459A> /x8e/xa7/xa5/xa1 <CJK> +<U000245EE> /x8e/xa7/xa5/xa2 <CJK> +<U000245F1> /x8e/xa7/xa5/xa3 <CJK> +<U000245ED> /x8e/xa7/xa5/xa4 <CJK> +<U000245E9> /x8e/xa7/xa5/xa5 <CJK> +<U000246CB> /x8e/xa7/xa5/xa6 <CJK> +<U000246DF> /x8e/xa7/xa5/xa7 <CJK> +<U000246DB> /x8e/xa7/xa5/xa8 <CJK> +<U0002483C> /x8e/xa7/xa5/xa9 <CJK> +<U0002484E> /x8e/xa7/xa5/xaa <CJK> +<U0002486C> /x8e/xa7/xa5/xab <CJK> +<U0002487B> /x8e/xa7/xa5/xac <CJK> +<U0002487C> /x8e/xa7/xa5/xad <CJK> +<U00024883> /x8e/xa7/xa5/xae <CJK> +<U0002486B> /x8e/xa7/xa5/xaf <CJK> +<U00024866> /x8e/xa7/xa5/xb0 <CJK> +<U00024863> /x8e/xa7/xa5/xb1 <CJK> +<U000248A0> /x8e/xa7/xa5/xb2 <CJK> +<U00024885> /x8e/xa7/xa5/xb3 <CJK> +<U00024868> /x8e/xa7/xa5/xb4 <CJK> +<U000248A2> /x8e/xa7/xa5/xb5 <CJK> +<U000249EC> /x8e/xa7/xa5/xb6 <CJK> +<U3EE8> /x8e/xa7/xa5/xb7 <CJK> +<U000249E7> /x8e/xa7/xa5/xb8 <CJK> +<U00024A10> /x8e/xa7/xa5/xb9 <CJK> +<U00024A18> /x8e/xa7/xa5/xba <CJK> +<U00024A3A> /x8e/xa7/xa5/xbb <CJK> +<U00024A1A> /x8e/xa7/xa5/xbc <CJK> +<U00024A38> /x8e/xa7/xa5/xbd <CJK> +<U00024A41> /x8e/xa7/xa5/xbe <CJK> +<U00024A1B> /x8e/xa7/xa5/xbf <CJK> +<U00024A14> /x8e/xa7/xa5/xc0 <CJK> +<U00024A1C> /x8e/xa7/xa5/xc1 <CJK> +<U00024A1D> /x8e/xa7/xa5/xc2 <CJK> +<U00024B12> /x8e/xa7/xa5/xc3 <CJK> +<U00024B0D> /x8e/xa7/xa5/xc4 <CJK> +<U00024B07> /x8e/xa7/xa5/xc5 <CJK> +<U00024B7E> /x8e/xa7/xa5/xc6 <CJK> +<U00024B7F> /x8e/xa7/xa5/xc7 <CJK> +<U00020AB9> /x8e/xa7/xa5/xc8 <CJK> +<U00024B80> /x8e/xa7/xa5/xc9 <CJK> +<U00024B7A> /x8e/xa7/xa5/xca <CJK> +<U00024BF3> /x8e/xa7/xa5/xcb <CJK> +<U00024CB9> /x8e/xa7/xa5/xcc <CJK> +<U00024CBB> /x8e/xa7/xa5/xcd <CJK> +<U00024CBA> /x8e/xa7/xa5/xce <CJK> +<U00024CBD> /x8e/xa7/xa5/xcf <CJK> +<U00024CB7> /x8e/xa7/xa5/xd0 <CJK> +<U00024CBF> /x8e/xa7/xa5/xd1 <CJK> +<U00024D21> /x8e/xa7/xa5/xd2 <CJK> +<U00024E3A> /x8e/xa7/xa5/xd3 <CJK> +<U00024E3D> /x8e/xa7/xa5/xd4 <CJK> +<U00024E36> /x8e/xa7/xa5/xd5 <CJK> +<U00024E49> /x8e/xa7/xa5/xd6 <CJK> +<U00024E81> /x8e/xa7/xa5/xd7 <CJK> +<U3FB6> /x8e/xa7/xa5/xd8 <CJK> +<U00024E3F> /x8e/xa7/xa5/xd9 <CJK> +<U00024E4D> /x8e/xa7/xa5/xda <CJK> +<U00024E3E> /x8e/xa7/xa5/xdb <CJK> +<U3FBD> /x8e/xa7/xa5/xdc <CJK> +<U00024E30> /x8e/xa7/xa5/xdd <CJK> +<U00024E4F> /x8e/xa7/xa5/xde <CJK> +<U00024F37> /x8e/xa7/xa5/xdf <CJK> +<U00024F98> /x8e/xa7/xa5/xe0 <CJK> +<U00024F99> /x8e/xa7/xa5/xe1 <CJK> +<U00025011> /x8e/xa7/xa5/xe2 <CJK> +<U0002500D> /x8e/xa7/xa5/xe3 <CJK> +<U00025088> /x8e/xa7/xa5/xe4 <CJK> +<U0002508A> /x8e/xa7/xa5/xe5 <CJK> +<U0002521C> /x8e/xa7/xa5/xe6 <CJK> +<U00025255> /x8e/xa7/xa5/xe7 <CJK> +<U00025256> /x8e/xa7/xa5/xe8 <CJK> +<U00025262> /x8e/xa7/xa5/xe9 <CJK> +<U00025257> /x8e/xa7/xa5/xea <CJK> +<U00025242> /x8e/xa7/xa5/xeb <CJK> +<U00025210> /x8e/xa7/xa5/xec <CJK> +<U0002524D> /x8e/xa7/xa5/xed <CJK> +<U0002525A> /x8e/xa7/xa5/xee <CJK> +<U00025266> /x8e/xa7/xa5/xef <CJK> +<U00025246> /x8e/xa7/xa5/xf0 <CJK> +<U0002287E> /x8e/xa7/xa5/xf1 <CJK> +<U0002524F> /x8e/xa7/xa5/xf2 <CJK> +<U000262F9> /x8e/xa7/xa5/xf3 <CJK> +<U00025387> /x8e/xa7/xa5/xf4 <CJK> +<U00025384> /x8e/xa7/xa5/xf5 <CJK> +<U000253F4> /x8e/xa7/xa5/xf6 <CJK> +<U000253F5> /x8e/xa7/xa5/xf7 <CJK> +<U000253F2> /x8e/xa7/xa5/xf8 <CJK> +<U000253F7> /x8e/xa7/xa5/xf9 <CJK> +<U00025545> /x8e/xa7/xa5/xfa <CJK> +<U00025549> /x8e/xa7/xa5/xfc <CJK> +<U00025535> /x8e/xa7/xa5/xfd <CJK> +<U000254FD> /x8e/xa7/xa5/xfe <CJK> +<U00025530> /x8e/xa7/xa6/xa1 <CJK> +<U00025543> /x8e/xa7/xa6/xa2 <CJK> +<U00025546> /x8e/xa7/xa6/xa3 <CJK> +<U40D6> /x8e/xa7/xa6/xa4 <CJK> +<U00025533> /x8e/xa7/xa6/xa5 <CJK> +<U000256C6> /x8e/xa7/xa6/xa6 <CJK> +<U000256D4> /x8e/xa7/xa6/xa8 <CJK> +<U000271D8> /x8e/xa7/xa6/xa9 <CJK> +<U000256E0> /x8e/xa7/xa6/xaa <CJK> +<U00020FA7> /x8e/xa7/xa6/xab <CJK> +<U00025744> /x8e/xa7/xa6/xac <CJK> +<U00020398> /x8e/xa7/xa6/xad <CJK> +<U00025854> /x8e/xa7/xa6/xae <CJK> +<U0002583E> /x8e/xa7/xa6/xaf <CJK> +<U00025835> /x8e/xa7/xa6/xb0 <CJK> +<U0002583A> /x8e/xa7/xa6/xb1 <CJK> +<U4171> /x8e/xa7/xa6/xb2 <CJK> +<U00025834> /x8e/xa7/xa6/xb3 <CJK> +<U00025839> /x8e/xa7/xa6/xb4 <CJK> +<U00025846> /x8e/xa7/xa6/xb5 <CJK> +<U0002585A> /x8e/xa7/xa6/xb6 <CJK> +<U0002585B> /x8e/xa7/xa6/xb7 <CJK> +<U0002583C> /x8e/xa7/xa6/xb8 <CJK> +<U000259DC> /x8e/xa7/xa6/xb9 <CJK> +<U000259D6> /x8e/xa7/xa6/xba <CJK> +<U000259D0> /x8e/xa7/xa6/xbb <CJK> +<U00025AAC> /x8e/xa7/xa6/xbd <CJK> +<U00025AA5> /x8e/xa7/xa6/xbf <CJK> +<U00025BF4> /x8e/xa7/xa6/xc0 <CJK> +<U00025C24> /x8e/xa7/xa6/xc1 <CJK> +<U00025BE0> /x8e/xa7/xa6/xc2 <CJK> +<U00025BFD> /x8e/xa7/xa6/xc3 <CJK> +<U00025BF2> /x8e/xa7/xa6/xc4 <CJK> +<U00025BFC> /x8e/xa7/xa6/xc5 <CJK> +<U00025C02> /x8e/xa7/xa6/xc6 <CJK> +<U00025BF1> /x8e/xa7/xa6/xc7 <CJK> +<U00025BFF> /x8e/xa7/xa6/xc8 <CJK> +<U00025BD2> /x8e/xa7/xa6/xc9 <CJK> +<U00025BD8> /x8e/xa7/xa6/xca <CJK> +<U00025BD3> /x8e/xa7/xa6/xcb <CJK> +<U00025BF9> /x8e/xa7/xa6/xcc <CJK> +<U00025BED> /x8e/xa7/xa6/xce <CJK> +<U00025BF7> /x8e/xa7/xa6/xcf <CJK> +<U00025BF0> /x8e/xa7/xa6/xd0 <CJK> +<U00025BD7> /x8e/xa7/xa6/xd1 <CJK> +<U00025C09> /x8e/xa7/xa6/xd2 <CJK> +<U00025BF5> /x8e/xa7/xa6/xd3 <CJK> +<U00025EC2> /x8e/xa7/xa6/xd4 <CJK> +<U00025EC5> /x8e/xa7/xa6/xd5 <CJK> +<U00025ECF> /x8e/xa7/xa6/xd6 <CJK> +<U4298> /x8e/xa7/xa6/xd7 <CJK> +<U00025EC1> /x8e/xa7/xa6/xd8 <CJK> +<U00025EC6> /x8e/xa7/xa6/xd9 <CJK> +<U00025ED4> /x8e/xa7/xa6/xda <CJK> +<U00025ECE> /x8e/xa7/xa6/xdb <CJK> +<U0002609B> /x8e/xa7/xa6/xdc <CJK> +<U00026099> /x8e/xa7/xa6/xdd <CJK> +<U0002608F> /x8e/xa7/xa6/xde <CJK> +<U000260B7> /x8e/xa7/xa6/xdf <CJK> +<U00026082> /x8e/xa7/xa6/xe0 <CJK> +<U00026093> /x8e/xa7/xa6/xe1 <CJK> +<U000260B4> /x8e/xa7/xa6/xe2 <CJK> +<U000260C1> /x8e/xa7/xa6/xe3 <CJK> +<U00026090> /x8e/xa7/xa6/xe4 <CJK> +<U0002609A> /x8e/xa7/xa6/xe5 <CJK> +<U00026094> /x8e/xa7/xa6/xe6 <CJK> +<U0002609C> /x8e/xa7/xa6/xe7 <CJK> +<U000260B5> /x8e/xa7/xa6/xe8 <CJK> +<U0002609F> /x8e/xa7/xa6/xeb <CJK> +<U0002608E> /x8e/xa7/xa6/xec <CJK> +<U0002609E> /x8e/xa7/xa6/xed <CJK> +<U0002623C> /x8e/xa7/xa6/xee <CJK> +<U00026247> /x8e/xa7/xa6/xef <CJK> +<U00026241> /x8e/xa7/xa6/xf0 <CJK> +<U000262EB> /x8e/xa7/xa6/xf1 <CJK> +<U000262EC> /x8e/xa7/xa6/xf2 <CJK> +<U000262ED> /x8e/xa7/xa6/xf3 <CJK> +<U000262EE> /x8e/xa7/xa6/xf4 <CJK> +<U000262DF> /x8e/xa7/xa6/xf5 <CJK> +<U000262F2> /x8e/xa7/xa6/xf6 <CJK> +<U0002630D> /x8e/xa7/xa6/xf7 <CJK> +<U0002630E> /x8e/xa7/xa6/xf8 <CJK> +<U00020186> /x8e/xa7/xa6/xf9 <CJK> +<U000263A9> /x8e/xa7/xa6/xfa <CJK> +<U000263A4> /x8e/xa7/xa6/xfb <CJK> +<U000263A5> /x8e/xa7/xa6/xfc <CJK> +<U0002645F> /x8e/xa7/xa6/xfd <CJK> +<U0002645A> /x8e/xa7/xa6/xfe <CJK> +<U00026466> /x8e/xa7/xa7/xa1 <CJK> +<U00026468> /x8e/xa7/xa7/xa2 <CJK> +<U0002646A> /x8e/xa7/xa7/xa3 <CJK> +<U00026464> /x8e/xa7/xa7/xa4 <CJK> +<U00026465> /x8e/xa7/xa7/xa5 <CJK> +<U000264C1> /x8e/xa7/xa7/xa6 <CJK> +<U000264D8> /x8e/xa7/xa7/xa7 <CJK> +<U000264D9> /x8e/xa7/xa7/xa9 <CJK> +<U00026509> /x8e/xa7/xa7/xaa <CJK> +<U000265AA> /x8e/xa7/xa7/xab <CJK> +<U000265A3> /x8e/xa7/xa7/xac <CJK> +<U000265B9> /x8e/xa7/xa7/xad <CJK> +<U000259E2> /x8e/xa7/xa7/xae <CJK> +<U000265A5> /x8e/xa7/xa7/xaf <CJK> +<U000265AB> /x8e/xa7/xa7/xb0 <CJK> +<U00026620> /x8e/xa7/xa7/xb1 <CJK> +<U00026789> /x8e/xa7/xa7/xb2 <CJK> +<U0002678B> /x8e/xa7/xa7/xb3 <CJK> +<U000267DB> /x8e/xa7/xa7/xb4 <CJK> +<U000267E4> /x8e/xa7/xa7/xb5 <CJK> +<U000267EF> /x8e/xa7/xa7/xb6 <CJK> +<U000267E2> /x8e/xa7/xa7/xb7 <CJK> +<U000267E9> /x8e/xa7/xa7/xb8 <CJK> +<U000267F0> /x8e/xa7/xa7/xb9 <CJK> +<U000267F3> /x8e/xa7/xa7/xba <CJK> +<U000267DD> /x8e/xa7/xa7/xbb <CJK> +<U0002681E> /x8e/xa7/xa7/xbc <CJK> +<U0002691D> /x8e/xa7/xa7/xbd <CJK> +<U00026946> /x8e/xa7/xa7/xbe <CJK> +<U0002697C> /x8e/xa7/xa7/xbf <CJK> +<U00026980> /x8e/xa7/xa7/xc0 <CJK> +<U00026981> /x8e/xa7/xa7/xc1 <CJK> +<U00026982> /x8e/xa7/xa7/xc2 <CJK> +<U00026987> /x8e/xa7/xa7/xc3 <CJK> +<U00026988> /x8e/xa7/xa7/xc4 <CJK> +<U0002698A> /x8e/xa7/xa7/xc5 <CJK> +<U0002698C> /x8e/xa7/xa7/xc6 <CJK> +<U000269E7> /x8e/xa7/xa7/xc7 <CJK> +<U000269EB> /x8e/xa7/xa7/xc8 <CJK> +<U000269EA> /x8e/xa7/xa7/xc9 <CJK> +<U00026A68> /x8e/xa7/xa7/xca <CJK> +<U00026A6B> /x8e/xa7/xa7/xcb <CJK> +<U00026A69> /x8e/xa7/xa7/xcc <CJK> +<U00026A66> /x8e/xa7/xa7/xcd <CJK> +<U00026A6A> /x8e/xa7/xa7/xce <CJK> +<U00026A65> /x8e/xa7/xa7/xcf <CJK> +<U00026AE5> /x8e/xa7/xa7/xd0 <CJK> +<U00026AE4> /x8e/xa7/xa7/xd1 <CJK> +<U00026AE6> /x8e/xa7/xa7/xd2 <CJK> +<U00026D18> /x8e/xa7/xa7/xd3 <CJK> +<U00026E24> /x8e/xa7/xa7/xd4 <CJK> +<U00026E48> /x8e/xa7/xa7/xd5 <CJK> +<U00026E2F> /x8e/xa7/xa7/xd6 <CJK> +<U00026E7E> /x8e/xa7/xa7/xd7 <CJK> +<U00026D89> /x8e/xa7/xa7/xd8 <CJK> +<U00026E1E> /x8e/xa7/xa7/xd9 <CJK> +<U00026E49> /x8e/xa7/xa7/xda <CJK> +<U00026E26> /x8e/xa7/xa7/xdb <CJK> +<U00026E09> /x8e/xa7/xa7/xdc <CJK> +<U00026E34> /x8e/xa7/xa7/xdd <CJK> +<U00026E2D> /x8e/xa7/xa7/xde <CJK> +<U00026E4A> /x8e/xa7/xa7/xdf <CJK> +<U00026E15> /x8e/xa7/xa7/xe0 <CJK> +<U00026E33> /x8e/xa7/xa7/xe2 <CJK> +<U00026E28> /x8e/xa7/xa7/xe3 <CJK> +<U00026E27> /x8e/xa7/xa7/xe4 <CJK> +<U00026E20> /x8e/xa7/xa7/xe5 <CJK> +<U00026E2B> /x8e/xa7/xa7/xe6 <CJK> +<U00026E29> /x8e/xa7/xa7/xe7 <CJK> +<U00026E6A> /x8e/xa7/xa7/xe8 <CJK> +<U00026E0B> /x8e/xa7/xa7/xe9 <CJK> +<U00026E0E> /x8e/xa7/xa7/xea <CJK> +<U00026E1C> /x8e/xa7/xa7/xeb <CJK> +<U00026DFF> /x8e/xa7/xa7/xec <CJK> +<U00026E35> /x8e/xa7/xa7/xee <CJK> +<U00026E11> /x8e/xa7/xa7/xef <CJK> +<U00026E4B> /x8e/xa7/xa7/xf0 <CJK> +<U00026E4C> /x8e/xa7/xa7/xf1 <CJK> +<U00026E1F> /x8e/xa7/xa7/xf2 <CJK> +<U00026E0F> /x8e/xa7/xa7/xf3 <CJK> +<U00026E39> /x8e/xa7/xa7/xf4 <CJK> +<U00026E68> /x8e/xa7/xa7/xf5 <CJK> +<U00026E1D> /x8e/xa7/xa7/xf6 <CJK> +<U00026E08> /x8e/xa7/xa7/xf7 <CJK> +<U00026E0C> /x8e/xa7/xa7/xf8 <CJK> +<U00026E0D> /x8e/xa7/xa7/xf9 <CJK> +<U00026E62> /x8e/xa7/xa7/xfa <CJK> +<U00026EAF> /x8e/xa7/xa7/xfb <CJK> +<U00026E32> /x8e/xa7/xa7/xfc <CJK> +<U00026E2C> /x8e/xa7/xa7/xfd <CJK> +<U00026E64> /x8e/xa7/xa7/xfe <CJK> +<U00026E04> /x8e/xa7/xa8/xa1 <CJK> +<U00026E16> /x8e/xa7/xa8/xa2 <CJK> +<U00026E4D> /x8e/xa7/xa8/xa3 <CJK> +<U00026E07> /x8e/xa7/xa8/xa4 <CJK> +<U00026EAE> /x8e/xa7/xa8/xa5 <CJK> +<U000271D4> /x8e/xa7/xa8/xa6 <CJK> +<U000271D1> /x8e/xa7/xa8/xa7 <CJK> +<U000271D5> /x8e/xa7/xa8/xa8 <CJK> +<U000271D0> /x8e/xa7/xa8/xa9 <CJK> +<U00027371> /x8e/xa7/xa8/xaa <CJK> +<U0002735D> /x8e/xa7/xa8/xab <CJK> +<U0002735B> /x8e/xa7/xa8/xac <CJK> +<U0002737A> /x8e/xa7/xa8/xad <CJK> +<U0002737F> /x8e/xa7/xa8/xaf <CJK> +<U00027379> /x8e/xa7/xa8/xb0 <CJK> +<U00027367> /x8e/xa7/xa8/xb1 <CJK> +<U0002739E> /x8e/xa7/xa8/xb2 <CJK> +<U00027394> /x8e/xa7/xa8/xb3 <CJK> +<U00027364> /x8e/xa7/xa8/xb4 <CJK> +<U0002735E> /x8e/xa7/xa8/xb5 <CJK> +<U00027381> /x8e/xa7/xa8/xb6 <CJK> +<U0002735A> /x8e/xa7/xa8/xb7 <CJK> +<U00027357> /x8e/xa7/xa8/xb8 <CJK> +<U0002737C> /x8e/xa7/xa8/xb9 <CJK> +<U00027398> /x8e/xa7/xa8/xba <CJK> +<U00027366> /x8e/xa7/xa8/xbb <CJK> +<U0002737E> /x8e/xa7/xa8/xbc <CJK> +<U00027382> /x8e/xa7/xa8/xbd <CJK> +<U00027368> /x8e/xa7/xa8/xbe <CJK> +<U0002735F> /x8e/xa7/xa8/xbf <CJK> +<U00027363> /x8e/xa7/xa8/xc0 <CJK> +<U00027397> /x8e/xa7/xa8/xc1 <CJK> +<U45CD> /x8e/xa7/xa8/xc2 <CJK> +<U00027353> /x8e/xa7/xa8/xc3 <CJK> +<U0002737B> /x8e/xa7/xa8/xc4 <CJK> +<U0002737D> /x8e/xa7/xa8/xc5 <CJK> +<U00027378> /x8e/xa7/xa8/xc6 <CJK> +<U00027406> /x8e/xa7/xa8/xc7 <CJK> +<U000275C0> /x8e/xa7/xa8/xc8 <CJK> +<U000275C2> /x8e/xa7/xa8/xc9 <CJK> +<U000275C3> /x8e/xa7/xa8/xca <CJK> +<U000276DC> /x8e/xa7/xa8/xcb <CJK> +<U000276E6> /x8e/xa7/xa8/xcc <CJK> +<U000276EC> /x8e/xa7/xa8/xcd <CJK> +<U000276F2> /x8e/xa7/xa8/xce <CJK> +<U000276E8> /x8e/xa7/xa8/xcf <CJK> +<U000276EB> /x8e/xa7/xa8/xd0 <CJK> +<U000276EA> /x8e/xa7/xa8/xd1 <CJK> +<U000276E5> /x8e/xa7/xa8/xd2 <CJK> +<U000276E0> /x8e/xa7/xa8/xd3 <CJK> +<U000276D0> /x8e/xa7/xa8/xd4 <CJK> +<U000276D8> /x8e/xa7/xa8/xd5 <CJK> +<U000276D5> /x8e/xa7/xa8/xd6 <CJK> +<U000276D3> /x8e/xa7/xa8/xd7 <CJK> +<U000276E4> /x8e/xa7/xa8/xd8 <CJK> +<U000276F3> /x8e/xa7/xa8/xd9 <CJK> +<U000276DB> /x8e/xa7/xa8/xda <CJK> +<U0002772F> /x8e/xa7/xa8/xdb <CJK> +<U000277F9> /x8e/xa7/xa8/xdc <CJK> +<U0002785D> /x8e/xa7/xa8/xdd <CJK> +<U0002785B> /x8e/xa7/xa8/xde <CJK> +<U0002784C> /x8e/xa7/xa8/xdf <CJK> +<U00027858> /x8e/xa7/xa8/xe0 <CJK> +<U00027860> /x8e/xa7/xa8/xe1 <CJK> +<U00027853> /x8e/xa7/xa8/xe2 <CJK> +<U00027850> /x8e/xa7/xa8/xe3 <CJK> +<U00027907> /x8e/xa7/xa8/xe4 <CJK> +<U00027908> /x8e/xa7/xa8/xe5 <CJK> +<U000278F4> /x8e/xa7/xa8/xe6 <CJK> +<U000278F6> /x8e/xa7/xa8/xe7 <CJK> +<U00027904> /x8e/xa7/xa8/xe8 <CJK> +<U000278FD> /x8e/xa7/xa8/xe9 <CJK> +<U00027905> /x8e/xa7/xa8/xea <CJK> +<U00027A28> /x8e/xa7/xa8/xeb <CJK> +<U00027A56> /x8e/xa7/xa8/xec <CJK> +<U00027A42> /x8e/xa7/xa8/xed <CJK> +<U00027A5C> /x8e/xa7/xa8/xee <CJK> +<U00027A3D> /x8e/xa7/xa8/xef <CJK> +<U00027A2F> /x8e/xa7/xa8/xf0 <CJK> +<U00027A2B> /x8e/xa7/xa8/xf1 <CJK> +<U00027A58> /x8e/xa7/xa8/xf2 <CJK> +<U00027A61> /x8e/xa7/xa8/xf3 <CJK> +<U00027A2C> /x8e/xa7/xa8/xf4 <CJK> +<U00027A51> /x8e/xa7/xa8/xf5 <CJK> +<U00027A50> /x8e/xa7/xa8/xf6 <CJK> +<U00027A3C> /x8e/xa7/xa8/xf7 <CJK> +<U00027A36> /x8e/xa7/xa8/xf8 <CJK> +<U46F6> /x8e/xa7/xa8/xf9 <CJK> +<U00027A60> /x8e/xa7/xa8/xfa <CJK> +<U00027A5B> /x8e/xa7/xa8/xfb <CJK> +<U00027A2E> /x8e/xa7/xa8/xfc <CJK> +<U00027A40> /x8e/xa7/xa8/xfd <CJK> +<U00027A5F> /x8e/xa7/xa8/xfe <CJK> +<U00027A26> /x8e/xa7/xa9/xa1 <CJK> +<U00027A2D> /x8e/xa7/xa9/xa2 <CJK> +<U00027A5E> /x8e/xa7/xa9/xa3 <CJK> +<U00027A3B> /x8e/xa7/xa9/xa4 <CJK> +<U00027BEF> /x8e/xa7/xa9/xa5 <CJK> +<U00027BF3> /x8e/xa7/xa9/xa6 <CJK> +<U00027BEE> /x8e/xa7/xa9/xa7 <CJK> +<U00027BED> /x8e/xa7/xa9/xa8 <CJK> +<U00027C5A> /x8e/xa7/xa9/xa9 <CJK> +<U00027C62> /x8e/xa7/xa9/xaa <CJK> +<U00027C5B> /x8e/xa7/xa9/xab <CJK> +<U00027C5F> /x8e/xa7/xa9/xac <CJK> +<U00027C5E> /x8e/xa7/xa9/xad <CJK> +<U00027C64> /x8e/xa7/xa9/xae <CJK> +<U00027CE0> /x8e/xa7/xa9/xaf <CJK> +<U00027CE1> /x8e/xa7/xa9/xb0 <CJK> +<U00027CE5> /x8e/xa7/xa9/xb1 <CJK> +<U00027DA5> /x8e/xa7/xa9/xb2 <CJK> +<U00027D9B> /x8e/xa7/xa9/xb3 <CJK> +<U00027D9F> /x8e/xa7/xa9/xb4 <CJK> +<U00027D9C> /x8e/xa7/xa9/xb5 <CJK> +<U477A> /x8e/xa7/xa9/xb6 <CJK> +<U00027DAA> /x8e/xa7/xa9/xb7 <CJK> +<U00027DA4> /x8e/xa7/xa9/xb8 <CJK> +<U00027DA3> /x8e/xa7/xa9/xb9 <CJK> +<U00027E67> /x8e/xa7/xa9/xba <CJK> +<U00027F26> /x8e/xa7/xa9/xbb <CJK> +<U00027F1A> /x8e/xa7/xa9/xbc <CJK> +<U47B8> /x8e/xa7/xa9/xbd <CJK> +<U00027F1C> /x8e/xa7/xa9/xbe <CJK> +<U00027F15> /x8e/xa7/xa9/xbf <CJK> +<U00027F1B> /x8e/xa7/xa9/xc0 <CJK> +<U00027F18> /x8e/xa7/xa9/xc1 <CJK> +<U00027F1E> /x8e/xa7/xa9/xc2 <CJK> +<U00027F25> /x8e/xa7/xa9/xc3 <CJK> +<U0002807B> /x8e/xa7/xa9/xc5 <CJK> +<U00028075> /x8e/xa7/xa9/xc6 <CJK> +<U00028093> /x8e/xa7/xa9/xc7 <CJK> +<U0002808F> /x8e/xa7/xa9/xc8 <CJK> +<U0002807C> /x8e/xa7/xa9/xc9 <CJK> +<U0002809B> /x8e/xa7/xa9/xca <CJK> +<U00028088> /x8e/xa7/xa9/xcb <CJK> +<U00028091> /x8e/xa7/xa9/xcc <CJK> +<U0002807E> /x8e/xa7/xa9/xcd <CJK> +<U4801> /x8e/xa7/xa9/xce <CJK> +<U00028086> /x8e/xa7/xa9/xcf <CJK> +<U0002825B> /x8e/xa7/xa9/xd0 <CJK> +<U00028254> /x8e/xa7/xa9/xd1 <CJK> +<U00028335> /x8e/xa7/xa9/xd2 <CJK> +<U00028340> /x8e/xa7/xa9/xd3 <CJK> +<U00028337> /x8e/xa7/xa9/xd4 <CJK> +<U00028329> /x8e/xa7/xa9/xd5 <CJK> +<U00028326> /x8e/xa7/xa9/xd6 <CJK> +<U00028323> /x8e/xa7/xa9/xd7 <CJK> +<U00028330> /x8e/xa7/xa9/xd8 <CJK> +<U00028320> /x8e/xa7/xa9/xd9 <CJK> +<U00028328> /x8e/xa7/xa9/xda <CJK> +<U00028332> /x8e/xa7/xa9/xdb <CJK> +<U0002832A> /x8e/xa7/xa9/xdc <CJK> +<U00028331> /x8e/xa7/xa9/xdd <CJK> +<U00028324> /x8e/xa7/xa9/xde <CJK> +<U00028341> /x8e/xa7/xa9/xdf <CJK> +<U00028342> /x8e/xa7/xa9/xe0 <CJK> +<U00028343> /x8e/xa7/xa9/xe1 <CJK> +<U00028325> /x8e/xa7/xa9/xe2 <CJK> +<U00028338> /x8e/xa7/xa9/xe3 <CJK> +<U0002841C> /x8e/xa7/xa9/xe4 <CJK> +<U0002841D> /x8e/xa7/xa9/xe5 <CJK> +<U0002841E> /x8e/xa7/xa9/xe6 <CJK> +<U000284F6> /x8e/xa7/xa9/xe7 <CJK> +<U000285A5> /x8e/xa7/xa9/xe8 <CJK> +<U00028589> /x8e/xa7/xa9/xe9 <CJK> +<U0002859D> /x8e/xa7/xa9/xea <CJK> +<U0002858A> /x8e/xa7/xa9/xeb <CJK> +<U00028587> /x8e/xa7/xa9/xec <CJK> +<U000285AB> /x8e/xa7/xa9/xed <CJK> +<U00028586> /x8e/xa7/xa9/xee <CJK> +<U0002859E> /x8e/xa7/xa9/xef <CJK> +<U00028593> /x8e/xa7/xa9/xf0 <CJK> +<U000285A1> /x8e/xa7/xa9/xf1 <CJK> +<U00028588> /x8e/xa7/xa9/xf2 <CJK> +<U000285A3> /x8e/xa7/xa9/xf3 <CJK> +<U0002859F> /x8e/xa7/xa9/xf4 <CJK> +<U000285A0> /x8e/xa7/xa9/xf5 <CJK> +<U000286FF> /x8e/xa7/xa9/xf6 <CJK> +<U00028700> /x8e/xa7/xa9/xf7 <CJK> +<U00028702> /x8e/xa7/xa9/xf8 <CJK> +<U000286F8> /x8e/xa7/xa9/xf9 <CJK> +<U000286F7> /x8e/xa7/xa9/xfa <CJK> +<U00028701> /x8e/xa7/xa9/xfb <CJK> +<U00028787> /x8e/xa7/xa9/xfc <CJK> +<U00028789> /x8e/xa7/xa9/xfd <CJK> +<U00028776> /x8e/xa7/xa9/xfe <CJK> +<U0002876E> /x8e/xa7/xaa/xa1 <CJK> +<U00028777> /x8e/xa7/xaa/xa2 <CJK> +<U00028782> /x8e/xa7/xaa/xa3 <CJK> +<U00028785> /x8e/xa7/xaa/xa4 <CJK> +<U00028783> /x8e/xa7/xaa/xa5 <CJK> +<U00028784> /x8e/xa7/xaa/xa6 <CJK> +<U00028857> /x8e/xa7/xaa/xa7 <CJK> +<U0002884B> /x8e/xa7/xaa/xa8 <CJK> +<U00028856> /x8e/xa7/xaa/xa9 <CJK> +<U0002885D> /x8e/xa7/xaa/xaa <CJK> +<U00028860> /x8e/xa7/xaa/xab <CJK> +<U0002884D> /x8e/xa7/xaa/xac <CJK> +<U00028855> /x8e/xa7/xaa/xad <CJK> +<U00028854> /x8e/xa7/xaa/xae <CJK> +<U00028853> /x8e/xa7/xaa/xaf <CJK> +<U00028850> /x8e/xa7/xaa/xb0 <CJK> +<U00028863> /x8e/xa7/xaa/xb1 <CJK> +<U00028862> /x8e/xa7/xaa/xb2 <CJK> +<U00028917> /x8e/xa7/xaa/xb3 <CJK> +<U00028916> /x8e/xa7/xaa/xb4 <CJK> +<U0002892D> /x8e/xa7/xaa/xb5 <CJK> +<U000289D9> /x8e/xa7/xaa/xb6 <CJK> +<U000289BF> /x8e/xa7/xaa/xb7 <CJK> +<U492F> /x8e/xa7/xaa/xb8 <CJK> +<U000289B2> /x8e/xa7/xaa/xb9 <CJK> +<U000289AC> /x8e/xa7/xaa/xba <CJK> +<U000289B0> /x8e/xa7/xaa/xbb <CJK> +<U000289CF> /x8e/xa7/xaa/xbc <CJK> +<U000289B8> /x8e/xa7/xaa/xbd <CJK> +<U4931> /x8e/xa7/xaa/xbe <CJK> +<U000289D3> /x8e/xa7/xaa/xbf <CJK> +<U000289B1> /x8e/xa7/xaa/xc0 <CJK> +<U000289AF> /x8e/xa7/xaa/xc1 <CJK> +<U000289CE> /x8e/xa7/xaa/xc2 <CJK> +<U000289B4> /x8e/xa7/xaa/xc3 <CJK> +<U000289B7> /x8e/xa7/xaa/xc4 <CJK> +<U000289D5> /x8e/xa7/xaa/xc5 <CJK> +<U499C> /x8e/xa7/xaa/xc6 <CJK> +<U00028D38> /x8e/xa7/xaa/xc7 <CJK> +<U00028D28> /x8e/xa7/xaa/xc8 <CJK> +<U00028D3F> /x8e/xa7/xaa/xc9 <CJK> +<U00028D40> /x8e/xa7/xaa/xca <CJK> +<U00028D41> /x8e/xa7/xaa/xcb <CJK> +<U00028D33> /x8e/xa7/xaa/xcc <CJK> +<U00028D2B> /x8e/xa7/xaa/xcd <CJK> +<U00028D2E> /x8e/xa7/xaa/xce <CJK> +<U00028F11> /x8e/xa7/xaa/xcf <CJK> +<U00028F18> /x8e/xa7/xaa/xd0 <CJK> +<U00028F17> /x8e/xa7/xaa/xd1 <CJK> +<U00028F19> /x8e/xa7/xaa/xd2 <CJK> +<U00028F16> /x8e/xa7/xaa/xd3 <CJK> +<U49E6> /x8e/xa7/xaa/xd4 <CJK> +<U00028F0D> /x8e/xa7/xaa/xd5 <CJK> +<U00028F26> /x8e/xa7/xaa/xd6 <CJK> +<U00028F79> /x8e/xa7/xaa/xd7 <CJK> +<U00028FD8> /x8e/xa7/xaa/xd8 <CJK> +<U00028FF3> /x8e/xa7/xaa/xd9 <CJK> +<U00028FD7> /x8e/xa7/xaa/xda <CJK> +<U00028FCC> /x8e/xa7/xaa/xdb <CJK> +<U00028FCF> /x8e/xa7/xaa/xdc <CJK> +<U00028FCB> /x8e/xa7/xaa/xdd <CJK> +<U00028FD1> /x8e/xa7/xaa/xde <CJK> +<U00028FCE> /x8e/xa7/xaa/xdf <CJK> +<U00028FD4> /x8e/xa7/xaa/xe0 <CJK> +<U00028FD5> /x8e/xa7/xaa/xe1 <CJK> +<U00028FD3> /x8e/xa7/xaa/xe2 <CJK> +<U00028FD6> /x8e/xa7/xaa/xe3 <CJK> +<U00028FCD> /x8e/xa7/xaa/xe4 <CJK> +<U00028FDA> /x8e/xa7/xaa/xe5 <CJK> +<U00028FD2> /x8e/xa7/xaa/xe6 <CJK> +<U00028FDE> /x8e/xa7/xaa/xe7 <CJK> +<U000290CC> /x8e/xa7/xaa/xe8 <CJK> +<U000290B8> /x8e/xa7/xaa/xe9 <CJK> +<U000290B7> /x8e/xa7/xaa/xea <CJK> +<U000290C2> /x8e/xa7/xaa/xeb <CJK> +<U000290C3> /x8e/xa7/xaa/xec <CJK> +<U000291FA> /x8e/xa7/xaa/xed <CJK> +<U000291F9> /x8e/xa7/xaa/xee <CJK> +<U0002921F> /x8e/xa7/xaa/xef <CJK> +<U0002921D> /x8e/xa7/xaa/xf0 <CJK> +<U00024382> /x8e/xa7/xaa/xf1 <CJK> +<U000292A6> /x8e/xa7/xaa/xf2 <CJK> +<U00029290> /x8e/xa7/xaa/xf3 <CJK> +<U0002929E> /x8e/xa7/xaa/xf4 <CJK> +<U00029298> /x8e/xa7/xaa/xf5 <CJK> +<U00029293> /x8e/xa7/xaa/xf6 <CJK> +<U00029292> /x8e/xa7/xaa/xf7 <CJK> +<U000292A5> /x8e/xa7/xaa/xf8 <CJK> +<U00029295> /x8e/xa7/xaa/xf9 <CJK> +<U000293A9> /x8e/xa7/xaa/xfa <CJK> +<U000293A8> /x8e/xa7/xaa/xfb <CJK> +<U000293AA> /x8e/xa7/xaa/xfc <CJK> +<U000293AB> /x8e/xa7/xaa/xfd <CJK> +<U000293AC> /x8e/xa7/xaa/xfe <CJK> +<U0002941F> /x8e/xa7/xab/xa1 <CJK> +<U00029422> /x8e/xa7/xab/xa2 <CJK> +<U000294AA> /x8e/xa7/xab/xa3 <CJK> +<U00029496> /x8e/xa7/xab/xa4 <CJK> +<U00029491> /x8e/xa7/xab/xa5 <CJK> +<U000294AB> /x8e/xa7/xab/xa6 <CJK> +<U000294A2> /x8e/xa7/xab/xa7 <CJK> +<U000294A4> /x8e/xa7/xab/xa8 <CJK> +<U0002949D> /x8e/xa7/xab/xa9 <CJK> +<U00029497> /x8e/xa7/xab/xaa <CJK> +<U0002947D> /x8e/xa7/xab/xab <CJK> +<U0002949F> /x8e/xa7/xab/xac <CJK> +<U0002949C> /x8e/xa7/xab/xad <CJK> +<U00029499> /x8e/xa7/xab/xae <CJK> +<U000294A6> /x8e/xa7/xab/xaf <CJK> +<U00029492> /x8e/xa7/xab/xb0 <CJK> +<U000294A7> /x8e/xa7/xab/xb1 <CJK> +<U000295C9> /x8e/xa7/xab/xb2 <CJK> +<U000295C8> /x8e/xa7/xab/xb3 <CJK> +<U000295C7> /x8e/xa7/xab/xb4 <CJK> +<U000295CB> /x8e/xa7/xab/xb5 <CJK> +<U00029674> /x8e/xa7/xab/xb6 <CJK> +<U000296C9> /x8e/xa7/xab/xb7 <CJK> +<U4B38> /x8e/xa7/xab/xb8 <CJK> +<U000296D2> /x8e/xa7/xab/xb9 <CJK> +<U000296DB> /x8e/xa7/xab/xba <CJK> +<U000296EB> /x8e/xa7/xab/xbb <CJK> +<U000296E9> /x8e/xa7/xab/xbc <CJK> +<U000296EF> /x8e/xa7/xab/xbd <CJK> +<U000296EE> /x8e/xa7/xab/xbe <CJK> +<U000296F9> /x8e/xa7/xab/xbf <CJK> +<U000296DE> /x8e/xa7/xab/xc0 <CJK> +<U00029816> /x8e/xa7/xab/xc1 <CJK> +<U00029845> /x8e/xa7/xab/xc2 <CJK> +<U0002987F> /x8e/xa7/xab/xc3 <CJK> +<U00029898> /x8e/xa7/xab/xc4 <CJK> +<U0002989F> /x8e/xa7/xab/xc5 <CJK> +<U00029886> /x8e/xa7/xab/xc6 <CJK> +<U00029890> /x8e/xa7/xab/xc7 <CJK> +<U0002989A> /x8e/xa7/xab/xc8 <CJK> +<U0002989D> /x8e/xa7/xab/xc9 <CJK> +<U0002988D> /x8e/xa7/xab/xca <CJK> +<U0002989C> /x8e/xa7/xab/xcb <CJK> +<U000298A0> /x8e/xa7/xab/xcc <CJK> +<U000298A7> /x8e/xa7/xab/xcd <CJK> +<U0002988F> /x8e/xa7/xab/xce <CJK> +<U00029A41> /x8e/xa7/xab/xcf <CJK> +<U00029A35> /x8e/xa7/xab/xd0 <CJK> +<U00029A37> /x8e/xa7/xab/xd1 <CJK> +<U00029A30> /x8e/xa7/xab/xd2 <CJK> +<U00029A3A> /x8e/xa7/xab/xd3 <CJK> +<U00029A36> /x8e/xa7/xab/xd4 <CJK> +<U00029ACA> /x8e/xa7/xab/xd6 <CJK> +<U00029B12> /x8e/xa7/xab/xd7 <CJK> +<U00029B15> /x8e/xa7/xab/xd8 <CJK> +<U00029B22> /x8e/xa7/xab/xd9 <CJK> +<U00029B13> /x8e/xa7/xab/xda <CJK> +<U00029B18> /x8e/xa7/xab/xdb <CJK> +<U00029B21> /x8e/xa7/xab/xdc <CJK> +<U00029C10> /x8e/xa7/xab/xdd <CJK> +<U00029C20> /x8e/xa7/xab/xde <CJK> +<U00029C2F> /x8e/xa7/xab/xdf <CJK> +<U00029CA5> /x8e/xa7/xab/xe0 <CJK> +<U00029CA3> /x8e/xa7/xab/xe1 <CJK> +<U00029CB6> /x8e/xa7/xab/xe2 <CJK> +<U00029CAB> /x8e/xa7/xab/xe3 <CJK> +<U00029D68> /x8e/xa7/xab/xe4 <CJK> +<U00029D67> /x8e/xa7/xab/xe5 <CJK> +<U00029D6F> /x8e/xa7/xab/xe6 <CJK> +<U00029D77> /x8e/xa7/xab/xe7 <CJK> +<U00029D64> /x8e/xa7/xab/xe8 <CJK> +<U00029D78> /x8e/xa7/xab/xe9 <CJK> +<U4C3A> /x8e/xa7/xab/xea <CJK> +<U00029D76> /x8e/xa7/xab/xeb <CJK> +<U00029D6E> /x8e/xa7/xab/xec <CJK> +<U4CB1> /x8e/xa7/xab/xed <CJK> +<U00029FD0> /x8e/xa7/xab/xee <CJK> +<U00029FB3> /x8e/xa7/xab/xef <CJK> +<U00029FCB> /x8e/xa7/xab/xf0 <CJK> +<U00029FD6> /x8e/xa7/xab/xf1 <CJK> +<U00029FB1> /x8e/xa7/xab/xf2 <CJK> +<U00029FB4> /x8e/xa7/xab/xf3 <CJK> +<U00029FD7> /x8e/xa7/xab/xf4 <CJK> +<U00029FC6> /x8e/xa7/xab/xf5 <CJK> +<U00029FBA> /x8e/xa7/xab/xf6 <CJK> +<U00029FD1> /x8e/xa7/xab/xf7 <CJK> +<U00029FD2> /x8e/xa7/xab/xf8 <CJK> +<U00029FB5> /x8e/xa7/xab/xf9 <CJK> +<U00029FC4> /x8e/xa7/xab/xfa <CJK> +<U00029FCC> /x8e/xa7/xab/xfb <CJK> +<U00029FBB> /x8e/xa7/xab/xfc <CJK> +<U00029FB2> /x8e/xa7/xab/xfd <CJK> +<U0002A25B> /x8e/xa7/xab/xfe <CJK> +<U0002A25A> /x8e/xa7/xac/xa1 <CJK> +<U0002A259> /x8e/xa7/xac/xa2 <CJK> +<U0002A299> /x8e/xa7/xac/xa3 <CJK> +<U0002A294> /x8e/xa7/xac/xa4 <CJK> +<U0002A296> /x8e/xa7/xac/xa5 <CJK> +<U0002A293> /x8e/xa7/xac/xa6 <CJK> +<U0002A291> /x8e/xa7/xac/xa7 <CJK> +<U0002A28F> /x8e/xa7/xac/xa8 <CJK> +<U0002A298> /x8e/xa7/xac/xa9 <CJK> +<U0002A30C> /x8e/xa7/xac/xaa <CJK> +<U0002A30A> /x8e/xa7/xac/xab <CJK> +<U0002A30E> /x8e/xa7/xac/xac <CJK> +<U0002A312> /x8e/xa7/xac/xad <CJK> +<U0002A311> /x8e/xa7/xac/xae <CJK> +<U0002A30B> /x8e/xa7/xac/xaf <CJK> +<U0002A39A> /x8e/xa7/xac/xb0 <CJK> +<U4D47> /x8e/xa7/xac/xb1 <CJK> +<U0002A3B4> /x8e/xa7/xac/xb2 <CJK> +<U4D51> /x8e/xa7/xac/xb3 <CJK> +<U0002A41C> /x8e/xa7/xac/xb4 <CJK> +<U0002A420> /x8e/xa7/xac/xb5 <CJK> +<U0002A421> /x8e/xa7/xac/xb6 <CJK> +<U0002A4D3> /x8e/xa7/xac/xb7 <CJK> +<U0002A4D2> /x8e/xa7/xac/xb8 <CJK> +<U0002A538> /x8e/xa7/xac/xb9 <CJK> +<U00024CCF> /x8e/xa7/xac/xbb <CJK> +<U0002011D> /x8e/xa7/xac/xbc <CJK> +<U00020192> /x8e/xa7/xac/xbd <CJK> +<U0002018F> /x8e/xa7/xac/xbe <CJK> +<U0002018C> /x8e/xa7/xac/xbf <CJK> +<U000203EA> /x8e/xa7/xac/xc0 <CJK> +<U000204B9> /x8e/xa7/xac/xc1 <CJK> +<U0002056E> /x8e/xa7/xac/xc2 <CJK> +<U000205A0> /x8e/xa7/xac/xc3 <CJK> +<U000291DD> /x8e/xa7/xac/xc4 <CJK> +<U00020612> /x8e/xa7/xac/xc5 <CJK> +<U00020617> /x8e/xa7/xac/xc6 <CJK> +<U0002066D> /x8e/xa7/xac/xc7 <CJK> +<U00020805> /x8e/xa7/xac/xc8 <CJK> +<U000207FB> /x8e/xa7/xac/xc9 <CJK> +<U000207FD> /x8e/xa7/xac/xca <CJK> +<U00020806> /x8e/xa7/xac/xcb <CJK> +<U00020800> /x8e/xa7/xac/xcc <CJK> +<U000207FF> /x8e/xa7/xac/xcd <CJK> +<U000207FE> /x8e/xa7/xac/xce <CJK> +<U000208B6> /x8e/xa7/xac/xcf <CJK> +<U00020905> /x8e/xa7/xac/xd0 <CJK> +<U00020907> /x8e/xa7/xac/xd1 <CJK> +<U00020ABC> /x8e/xa7/xac/xd2 <CJK> +<U00020ABB> /x8e/xa7/xac/xd3 <CJK> +<U00020B8B> /x8e/xa7/xac/xd4 <CJK> +<U00020B87> /x8e/xa7/xac/xd5 <CJK> +<U00027BFB> /x8e/xa7/xac/xd6 <CJK> +<U00020FE7> /x8e/xa7/xac/xd7 <CJK> +<U00020FE6> /x8e/xa7/xac/xd8 <CJK> +<U00020FE2> /x8e/xa7/xac/xd9 <CJK> +<U000285D3> /x8e/xa7/xac/xda <CJK> +<U00020FD9> /x8e/xa7/xac/xdb <CJK> +<U00020FCA> /x8e/xa7/xac/xdc <CJK> +<U00021012> /x8e/xa7/xac/xdd <CJK> +<U00021010> /x8e/xa7/xac/xde <CJK> +<U00020FDC> /x8e/xa7/xac/xdf <CJK> +<U00020FD0> /x8e/xa7/xac/xe0 <CJK> +<U00020F8B> /x8e/xa7/xac/xe1 <CJK> +<U00021013> /x8e/xa7/xac/xe2 <CJK> +<U00022A10> /x8e/xa7/xac/xe3 <CJK> +<U00020FDA> /x8e/xa7/xac/xe4 <CJK> +<U00020FFD> /x8e/xa7/xac/xe6 <CJK> +<U00020FE5> /x8e/xa7/xac/xe7 <CJK> +<U00020FCC> /x8e/xa7/xac/xe8 <CJK> +<U00021039> /x8e/xa7/xac/xe9 <CJK> +<U00020FC7> /x8e/xa7/xac/xea <CJK> +<U00020FD8> /x8e/xa7/xac/xeb <CJK> +<U00021460> /x8e/xa7/xac/xec <CJK> +<U00021464> /x8e/xa7/xac/xed <CJK> +<U00021486> /x8e/xa7/xac/xee <CJK> +<U0002145E> /x8e/xa7/xac/xef <CJK> +<U00021466> /x8e/xa7/xac/xf0 <CJK> +<U0002145F> /x8e/xa7/xac/xf1 <CJK> +<U00021477> /x8e/xa7/xac/xf2 <CJK> +<U00021482> /x8e/xa7/xac/xf3 <CJK> +<U00021496> /x8e/xa7/xac/xf4 <CJK> +<U0002153E> /x8e/xa7/xac/xf5 <CJK> +<U00021579> /x8e/xa7/xac/xf6 <CJK> +<U0002157A> /x8e/xa7/xac/xf7 <CJK> +<U00021688> /x8e/xa7/xac/xf8 <CJK> +<U00021689> /x8e/xa7/xac/xf9 <CJK> +<U0002168C> /x8e/xa7/xac/xfa <CJK> +<U000243E0> /x8e/xa7/xac/xfb <CJK> +<U0002167B> /x8e/xa7/xac/xfc <CJK> +<U00021686> /x8e/xa7/xac/xfd <CJK> +<U00021894> /x8e/xa7/xac/xfe <CJK> +<U00021897> /x8e/xa7/xad/xa1 <CJK> +<U000218B7> /x8e/xa7/xad/xa2 <CJK> +<U000218B5> /x8e/xa7/xad/xa3 <CJK> +<U000218B8> /x8e/xa7/xad/xa4 <CJK> +<U00021893> /x8e/xa7/xad/xa5 <CJK> +<U000218B2> /x8e/xa7/xad/xa6 <CJK> +<U000218B4> /x8e/xa7/xad/xa7 <CJK> +<U00021899> /x8e/xa7/xad/xa8 <CJK> +<U000218C3> /x8e/xa7/xad/xa9 <CJK> +<U0002189D> /x8e/xa7/xad/xaa <CJK> +<U0002189B> /x8e/xa7/xad/xab <CJK> +<U000218A3> /x8e/xa7/xad/xac <CJK> +<U3747> /x8e/xa7/xad/xad <CJK> +<U0002199F> /x8e/xa7/xad/xae <CJK> +<U0002199E> /x8e/xa7/xad/xaf <CJK> +<U000219A3> /x8e/xa7/xad/xb0 <CJK> +<U000219A0> /x8e/xa7/xad/xb1 <CJK> +<U000219A1> /x8e/xa7/xad/xb2 <CJK> +<U00021AC5> /x8e/xa7/xad/xb3 <CJK> +<U00021AC6> /x8e/xa7/xad/xb4 <CJK> +<U00021ABE> /x8e/xa7/xad/xb5 <CJK> +<U00021AC4> /x8e/xa7/xad/xb6 <CJK> +<U00021ABF> /x8e/xa7/xad/xb7 <CJK> +<U00021B4C> /x8e/xa7/xad/xb8 <CJK> +<U00021B4A> /x8e/xa7/xad/xb9 <CJK> +<U00021BB1> /x8e/xa7/xad/xba <CJK> +<U00021C15> /x8e/xa7/xad/xbb <CJK> +<U00021C17> /x8e/xa7/xad/xbc <CJK> +<U00021C10> /x8e/xa7/xad/xbd <CJK> +<U00021C18> /x8e/xa7/xad/xbe <CJK> +<U00021CE0> /x8e/xa7/xad/xbf <CJK> +<U00021CDF> /x8e/xa7/xad/xc0 <CJK> +<U00021D27> /x8e/xa7/xad/xc1 <CJK> +<U00021F43> /x8e/xa7/xad/xc2 <CJK> +<U00021F48> /x8e/xa7/xad/xc3 <CJK> +<U00021F1D> /x8e/xa7/xad/xc4 <CJK> +<U00021F50> /x8e/xa7/xad/xc5 <CJK> +<U00021F58> /x8e/xa7/xad/xc6 <CJK> +<U00021F47> /x8e/xa7/xad/xc7 <CJK> +<U00021F54> /x8e/xa7/xad/xc8 <CJK> +<U00021F53> /x8e/xa7/xad/xc9 <CJK> +<U00021F40> /x8e/xa7/xad/xca <CJK> +<U00021F55> /x8e/xa7/xad/xcb <CJK> +<U3817> /x8e/xa7/xad/xcc <CJK> +<U00021F5A> /x8e/xa7/xad/xcd <CJK> +<U00022470> /x8e/xa7/xad/xce <CJK> +<U0002215B> /x8e/xa7/xad/xcf <CJK> +<U0002214D> /x8e/xa7/xad/xd0 <CJK> +<U00022156> /x8e/xa7/xad/xd1 <CJK> +<U0002214F> /x8e/xa7/xad/xd2 <CJK> +<U00022159> /x8e/xa7/xad/xd4 <CJK> +<U00022154> /x8e/xa7/xad/xd6 <CJK> +<U00022153> /x8e/xa7/xad/xd7 <CJK> +<U00022150> /x8e/xa7/xad/xd8 <CJK> +<U000222B3> /x8e/xa7/xad/xd9 <CJK> +<U0002236E> /x8e/xa7/xad/xda <CJK> +<U38A3> /x8e/xa7/xad/xdb <CJK> +<U0002236F> /x8e/xa7/xad/xdc <CJK> +<U00022393> /x8e/xa7/xad/xdd <CJK> +<U00022429> /x8e/xa7/xad/xde <CJK> +<U00022425> /x8e/xa7/xad/xdf <CJK> +<U00022428> /x8e/xa7/xad/xe0 <CJK> +<U0002246F> /x8e/xa7/xad/xe1 <CJK> +<U000232B8> /x8e/xa7/xad/xe2 <CJK> +<U000224B3> /x8e/xa7/xad/xe4 <CJK> +<U00022579> /x8e/xa7/xad/xe5 <CJK> +<U0002257E> /x8e/xa7/xad/xe6 <CJK> +<U0002257C> /x8e/xa7/xad/xe7 <CJK> +<U00022583> /x8e/xa7/xad/xe8 <CJK> +<U00022800> /x8e/xa7/xad/xea <CJK> +<U00022834> /x8e/xa7/xad/xeb <CJK> +<U00022865> /x8e/xa7/xad/xec <CJK> +<U00022836> /x8e/xa7/xad/xed <CJK> +<U000228A7> /x8e/xa7/xad/xee <CJK> +<U00022859> /x8e/xa7/xad/xef <CJK> +<U00022858> /x8e/xa7/xad/xf0 <CJK> +<U00022831> /x8e/xa7/xad/xf1 <CJK> +<U00022862> /x8e/xa7/xad/xf2 <CJK> +<U00022838> /x8e/xa7/xad/xf3 <CJK> +<U00022873> /x8e/xa7/xad/xf4 <CJK> +<U0002283E> /x8e/xa7/xad/xf5 <CJK> +<U00022855> /x8e/xa7/xad/xf6 <CJK> +<U00022854> /x8e/xa7/xad/xf7 <CJK> +<U00022895> /x8e/xa7/xad/xf8 <CJK> +<U000228A5> /x8e/xa7/xad/xfa <CJK> +<U00022894> /x8e/xa7/xad/xfb <CJK> +<U0002289A> /x8e/xa7/xad/xfc <CJK> +<U0002289B> /x8e/xa7/xad/xfd <CJK> +<U00022899> /x8e/xa7/xad/xfe <CJK> +<U0002289F> /x8e/xa7/xae/xa1 <CJK> +<U00022853> /x8e/xa7/xae/xa2 <CJK> +<U00022A12> /x8e/xa7/xae/xa3 <CJK> +<U00022A0A> /x8e/xa7/xae/xa4 <CJK> +<U00022A09> /x8e/xa7/xae/xa5 <CJK> +<U00022A0C> /x8e/xa7/xae/xa6 <CJK> +<U00022A0B> /x8e/xa7/xae/xa7 <CJK> +<U00022A0E> /x8e/xa7/xae/xa8 <CJK> +<U00022A0D> /x8e/xa7/xae/xa9 <CJK> +<U00022A08> /x8e/xa7/xae/xaa <CJK> +<U00022D38> /x8e/xa7/xae/xab <CJK> +<U00022D3A> /x8e/xa7/xae/xac <CJK> +<U00022D37> /x8e/xa7/xae/xad <CJK> +<U00022D3D> /x8e/xa7/xae/xae <CJK> +<U00022D2D> /x8e/xa7/xae/xaf <CJK> +<U00022D82> /x8e/xa7/xae/xb0 <CJK> +<U00022D95> /x8e/xa7/xae/xb1 <CJK> +<U00022D87> /x8e/xa7/xae/xb2 <CJK> +<U00022D9D> /x8e/xa7/xae/xb3 <CJK> +<U00022DB5> /x8e/xa7/xae/xb4 <CJK> +<U00022D81> /x8e/xa7/xae/xb5 <CJK> +<U00022DC7> /x8e/xa7/xae/xb6 <CJK> +<U00022D9B> /x8e/xa7/xae/xb7 <CJK> +<U00022D98> /x8e/xa7/xae/xb8 <CJK> +<U00022D94> /x8e/xa7/xae/xb9 <CJK> +<U00022D86> /x8e/xa7/xae/xba <CJK> +<U00022D90> /x8e/xa7/xae/xbb <CJK> +<U00022D34> /x8e/xa7/xae/xbc <CJK> +<U00022D8E> /x8e/xa7/xae/xbd <CJK> +<U00022D85> /x8e/xa7/xae/xbe <CJK> +<U00022DA6> /x8e/xa7/xae/xbf <CJK> +<U00022D96> /x8e/xa7/xae/xc0 <CJK> +<U00022FEA> /x8e/xa7/xae/xc1 <CJK> +<U00022FDF> /x8e/xa7/xae/xc2 <CJK> +<U000232BD> /x8e/xa7/xae/xc3 <CJK> +<U00022FF7> /x8e/xa7/xae/xc4 <CJK> +<U00022FEB> /x8e/xa7/xae/xc5 <CJK> +<U00022FE0> /x8e/xa7/xae/xc6 <CJK> +<U00022FE8> /x8e/xa7/xae/xc7 <CJK> +<U00022FE1> /x8e/xa7/xae/xc8 <CJK> +<U00022FE9> /x8e/xa7/xae/xc9 <CJK> +<U00022FEE> /x8e/xa7/xae/xca <CJK> +<U00022FE5> /x8e/xa7/xae/xcb <CJK> +<U00022FEC> /x8e/xa7/xae/xcc <CJK> +<U00023063> /x8e/xa7/xae/xcd <CJK> +<U000230C6> /x8e/xa7/xae/xce <CJK> +<U000230C2> /x8e/xa7/xae/xcf <CJK> +<U000230C1> /x8e/xa7/xae/xd0 <CJK> +<U000230C0> /x8e/xa7/xae/xd1 <CJK> +<U000230C3> /x8e/xa7/xae/xd2 <CJK> +<U00023118> /x8e/xa7/xae/xd3 <CJK> +<U000232AE> /x8e/xa7/xae/xd4 <CJK> +<U000232A3> /x8e/xa7/xae/xd5 <CJK> +<U000232C5> /x8e/xa7/xae/xd6 <CJK> +<U000232A0> /x8e/xa7/xae/xd7 <CJK> +<U000232B4> /x8e/xa7/xae/xd8 <CJK> +<U000232A5> /x8e/xa7/xae/xd9 <CJK> +<U3B1E> /x8e/xa7/xae/xda <CJK> +<U000232A4> /x8e/xa7/xae/xdb <CJK> +<U000232A8> /x8e/xa7/xae/xdc <CJK> +<U000232A6> /x8e/xa7/xae/xdd <CJK> +<U000236A8> /x8e/xa7/xae/xde <CJK> +<U0002368D> /x8e/xa7/xae/xdf <CJK> +<U00023682> /x8e/xa7/xae/xe0 <CJK> +<U0002369E> /x8e/xa7/xae/xe1 <CJK> +<U00023689> /x8e/xa7/xae/xe2 <CJK> +<U00023683> /x8e/xa7/xae/xe3 <CJK> +<U00023691> /x8e/xa7/xae/xe4 <CJK> +<U000236A6> /x8e/xa7/xae/xe5 <CJK> +<U0002369A> /x8e/xa7/xae/xe6 <CJK> +<U00023690> /x8e/xa7/xae/xe7 <CJK> +<U00023685> /x8e/xa7/xae/xe8 <CJK> +<U0002367D> /x8e/xa7/xae/xe9 <CJK> +<U0002369B> /x8e/xa7/xae/xeb <CJK> +<U000236A5> /x8e/xa7/xae/xec <CJK> +<U000236F0> /x8e/xa7/xae/xed <CJK> +<U00023696> /x8e/xa7/xae/xee <CJK> +<U00023688> /x8e/xa7/xae/xef <CJK> +<U000236D6> /x8e/xa7/xae/xf0 <CJK> +<U000236D8> /x8e/xa7/xae/xf1 <CJK> +<U00023686> /x8e/xa7/xae/xf2 <CJK> +<U000236A4> /x8e/xa7/xae/xf3 <CJK> +<U00023697> /x8e/xa7/xae/xf4 <CJK> +<U0002391C> /x8e/xa7/xae/xf5 <CJK> +<U00023919> /x8e/xa7/xae/xf6 <CJK> +<U0002399E> /x8e/xa7/xae/xf7 <CJK> +<U0002399F> /x8e/xa7/xae/xf8 <CJK> +<U0002399D> /x8e/xa7/xae/xf9 <CJK> +<U0002399C> /x8e/xa7/xae/xfa <CJK> +<U00023A5D> /x8e/xa7/xae/xfb <CJK> +<U00023A5E> /x8e/xa7/xae/xfc <CJK> +<U00023A73> /x8e/xa7/xae/xfd <CJK> +<U00023A63> /x8e/xa7/xae/xfe <CJK> +<U00023ABE> /x8e/xa7/xaf/xa1 <CJK> +<U00023AC1> /x8e/xa7/xaf/xa2 <CJK> +<U00023ABC> /x8e/xa7/xaf/xa3 <CJK> +<U00023ABF> /x8e/xa7/xaf/xa4 <CJK> +<U00023ABB> /x8e/xa7/xaf/xa5 <CJK> +<U00023ABD> /x8e/xa7/xaf/xa6 <CJK> +<U00023B13> /x8e/xa7/xaf/xa7 <CJK> +<U00023B14> /x8e/xa7/xaf/xa8 <CJK> +<U00023BF8> /x8e/xa7/xaf/xa9 <CJK> +<U00023BFA> /x8e/xa7/xaf/xaa <CJK> +<U00023C06> /x8e/xa7/xaf/xab <CJK> +<U00023BFE> /x8e/xa7/xaf/xac <CJK> +<U00023C51> /x8e/xa7/xaf/xad <CJK> +<U0002400B> /x8e/xa7/xaf/xae <CJK> +<U00023FF1> /x8e/xa7/xaf/xaf <CJK> +<U00023FA9> /x8e/xa7/xaf/xb0 <CJK> +<U00023FD5> /x8e/xa7/xaf/xb1 <CJK> +<U00023FDC> /x8e/xa7/xaf/xb2 <CJK> +<U00023FCB> /x8e/xa7/xaf/xb3 <CJK> +<U00023FF2> /x8e/xa7/xaf/xb4 <CJK> +<U0002405F> /x8e/xa7/xaf/xb5 <CJK> +<U00023FDB> /x8e/xa7/xaf/xb6 <CJK> +<U00023FD6> /x8e/xa7/xaf/xb7 <CJK> +<U00023FD9> /x8e/xa7/xaf/xb8 <CJK> +<U00023FD1> /x8e/xa7/xaf/xb9 <CJK> +<U00023FCF> /x8e/xa7/xaf/xba <CJK> +<U00023FD8> /x8e/xa7/xaf/xbb <CJK> +<U00023FE0> /x8e/xa7/xaf/xbc <CJK> +<U00023FD4> /x8e/xa7/xaf/xbd <CJK> +<U00023FF3> /x8e/xa7/xaf/xbe <CJK> +<U00024005> /x8e/xa7/xaf/xbf <CJK> +<U00023FCE> /x8e/xa7/xaf/xc0 <CJK> +<U00023FF4> /x8e/xa7/xaf/xc1 <CJK> +<U00023FDA> /x8e/xa7/xaf/xc3 <CJK> +<U0002400E> /x8e/xa7/xaf/xc4 <CJK> +<U00024006> /x8e/xa7/xaf/xc5 <CJK> +<U00023FD7> /x8e/xa7/xaf/xc6 <CJK> +<U00023FCD> /x8e/xa7/xaf/xc7 <CJK> +<U00024007> /x8e/xa7/xaf/xc8 <CJK> +<U00023FE1> /x8e/xa7/xaf/xc9 <CJK> +<U00024008> /x8e/xa7/xaf/xca <CJK> +<U000243BE> /x8e/xa7/xaf/xcb <CJK> +<U000243EF> /x8e/xa7/xaf/xcc <CJK> +<U000243D9> /x8e/xa7/xaf/xcd <CJK> +<U000243DA> /x8e/xa7/xaf/xce <CJK> +<U71D7> /x8e/xa7/xaf/xcf <CJK> +<U000243A0> /x8e/xa7/xaf/xd0 <CJK> +<U000243DF> /x8e/xa7/xaf/xd1 <CJK> +<U0002439E> /x8e/xa7/xaf/xd2 <CJK> +<U000243BF> /x8e/xa7/xaf/xd3 <CJK> +<U000243AF> /x8e/xa7/xaf/xd4 <CJK> +<U000243A7> /x8e/xa7/xaf/xd5 <CJK> +<U000243AA> /x8e/xa7/xaf/xd6 <CJK> +<U000243F4> /x8e/xa7/xaf/xd7 <CJK> +<U000243AE> /x8e/xa7/xaf/xd8 <CJK> +<U000243B5> /x8e/xa7/xaf/xd9 <CJK> +<U000243B8> /x8e/xa7/xaf/xda <CJK> +<U000243DB> /x8e/xa7/xaf/xdb <CJK> +<U000243C0> /x8e/xa7/xaf/xdc <CJK> +<U000243B7> /x8e/xa7/xaf/xdd <CJK> +<U000243A2> /x8e/xa7/xaf/xde <CJK> +<U000243DD> /x8e/xa7/xaf/xdf <CJK> +<U000243A1> /x8e/xa7/xaf/xe0 <CJK> +<U000243A5> /x8e/xa7/xaf/xe1 <CJK> +<U000243B4> /x8e/xa7/xaf/xe2 <CJK> +<U000243A6> /x8e/xa7/xaf/xe3 <CJK> +<U000243AB> /x8e/xa7/xaf/xe4 <CJK> +<U000243AC> /x8e/xa7/xaf/xe5 <CJK> +<U0002439F> /x8e/xa7/xaf/xe6 <CJK> +<U000243B1> /x8e/xa7/xaf/xe7 <CJK> +<U000243FC> /x8e/xa7/xaf/xe8 <CJK> +<U0002452E> /x8e/xa7/xaf/xe9 <CJK> +<U00024530> /x8e/xa7/xaf/xea <CJK> +<U00024599> /x8e/xa7/xaf/xeb <CJK> +<U000245F8> /x8e/xa7/xaf/xec <CJK> +<U000245F6> /x8e/xa7/xaf/xed <CJK> +<U000246F4> /x8e/xa7/xaf/xee <CJK> +<U000246EB> /x8e/xa7/xaf/xef <CJK> +<U000246E1> /x8e/xa7/xaf/xf0 <CJK> +<U000246E4> /x8e/xa7/xaf/xf1 <CJK> +<U00024875> /x8e/xa7/xaf/xf2 <CJK> +<U00024869> /x8e/xa7/xaf/xf3 <CJK> +<U3E9A> /x8e/xa7/xaf/xf4 <CJK> +<U00024899> /x8e/xa7/xaf/xf5 <CJK> +<U0002489E> /x8e/xa7/xaf/xf6 <CJK> +<U00024894> /x8e/xa7/xaf/xf7 <CJK> +<U00024893> /x8e/xa7/xaf/xf8 <CJK> +<U00024891> /x8e/xa7/xaf/xf9 <CJK> +<U00024A19> /x8e/xa7/xaf/xfa <CJK> +<U00024A17> /x8e/xa7/xaf/xfb <CJK> +<U00024A49> /x8e/xa7/xaf/xfc <CJK> +<U00024A47> /x8e/xa7/xaf/xfd <CJK> +<U00024A48> /x8e/xa7/xaf/xfe <CJK> +<U00024A52> /x8e/xa7/xb0/xa1 <CJK> +<U00024A40> /x8e/xa7/xb0/xa2 <CJK> +<U00024A63> /x8e/xa7/xb0/xa3 <CJK> +<U00024A46> /x8e/xa7/xb0/xa4 <CJK> +<U00024A5F> /x8e/xa7/xb0/xa5 <CJK> +<U00024B0E> /x8e/xa7/xb0/xa6 <CJK> +<U00024B85> /x8e/xa7/xb0/xa7 <CJK> +<U00024B87> /x8e/xa7/xb0/xa8 <CJK> +<U00024BCB> /x8e/xa7/xb0/xa9 <CJK> +<U00024BCC> /x8e/xa7/xb0/xaa <CJK> +<U00024BC9> /x8e/xa7/xb0/xab <CJK> +<U00024CCB> /x8e/xa7/xb0/xac <CJK> +<U00021CE7> /x8e/xa7/xb0/xad <CJK> +<U00024D20> /x8e/xa7/xb0/xae <CJK> +<U00024E5F> /x8e/xa7/xb0/xaf <CJK> +<U00024E60> /x8e/xa7/xb0/xb0 <CJK> +<U00024E6A> /x8e/xa7/xb0/xb1 <CJK> +<U00024E76> /x8e/xa7/xb0/xb2 <CJK> +<U00024E73> /x8e/xa7/xb0/xb3 <CJK> +<U00024E71> /x8e/xa7/xb0/xb4 <CJK> +<U00024E66> /x8e/xa7/xb0/xb5 <CJK> +<U3FC2> /x8e/xa7/xb0/xb6 <CJK> +<U00024E6B> /x8e/xa7/xb0/xb7 <CJK> +<U00024E79> /x8e/xa7/xb0/xb8 <CJK> +<U00024E7B> /x8e/xa7/xb0/xb9 <CJK> +<U00024F3C> /x8e/xa7/xb0/xba <CJK> +<U00024F9E> /x8e/xa7/xb0/xbb <CJK> +<U00024F9C> /x8e/xa7/xb0/xbc <CJK> +<U0002501C> /x8e/xa7/xb0/xbd <CJK> +<U0002501E> /x8e/xa7/xb0/xbe <CJK> +<U00025021> /x8e/xa7/xb0/xbf <CJK> +<U00025096> /x8e/xa7/xb0/xc0 <CJK> +<U000250A1> /x8e/xa7/xb0/xc1 <CJK> +<U000250B6> /x8e/xa7/xb0/xc2 <CJK> +<U000250A0> /x8e/xa7/xb0/xc3 <CJK> +<U00025094> /x8e/xa7/xb0/xc4 <CJK> +<U00025097> /x8e/xa7/xb0/xc5 <CJK> +<U00025281> /x8e/xa7/xb0/xc6 <CJK> +<U00025286> /x8e/xa7/xb0/xc7 <CJK> +<U000252C0> /x8e/xa7/xb0/xc8 <CJK> +<U0002528A> /x8e/xa7/xb0/xc9 <CJK> +<U00025285> /x8e/xa7/xb0/xcb <CJK> +<U00025295> /x8e/xa7/xb0/xcc <CJK> +<U00025249> /x8e/xa7/xb0/xcd <CJK> +<U00025282> /x8e/xa7/xb0/xce <CJK> +<U00025284> /x8e/xa7/xb0/xcf <CJK> +<U00022878> /x8e/xa7/xb0/xd0 <CJK> +<U00025290> /x8e/xa7/xb0/xd1 <CJK> +<U000252B1> /x8e/xa7/xb0/xd2 <CJK> +<U000253FE> /x8e/xa7/xb0/xd3 <CJK> +<U000253FB> /x8e/xa7/xb0/xd4 <CJK> +<U00025550> /x8e/xa7/xb0/xd5 <CJK> +<U00025556> /x8e/xa7/xb0/xd6 <CJK> +<U0002555A> /x8e/xa7/xb0/xd7 <CJK> +<U0002554C> /x8e/xa7/xb0/xd8 <CJK> +<U40DC> /x8e/xa7/xb0/xd9 <CJK> +<U00025557> /x8e/xa7/xb0/xda <CJK> +<U000256E1> /x8e/xa7/xb0/xdb <CJK> +<U000256D9> /x8e/xa7/xb0/xdc <CJK> +<U000256DB> /x8e/xa7/xb0/xdd <CJK> +<U000256F4> /x8e/xa7/xb0/xde <CJK> +<U00025745> /x8e/xa7/xb0/xdf <CJK> +<U00025747> /x8e/xa7/xb0/xe0 <CJK> +<U00025874> /x8e/xa7/xb0/xe1 <CJK> +<U0002586B> /x8e/xa7/xb0/xe2 <CJK> +<U00025868> /x8e/xa7/xb0/xe3 <CJK> +<U00025869> /x8e/xa7/xb0/xe4 <CJK> +<U00025879> /x8e/xa7/xb0/xe5 <CJK> +<U00025880> /x8e/xa7/xb0/xe7 <CJK> +<U00025881> /x8e/xa7/xb0/xe8 <CJK> +<U00025861> /x8e/xa7/xb0/xe9 <CJK> +<U00025870> /x8e/xa7/xb0/xea <CJK> +<U0002586F> /x8e/xa7/xb0/xeb <CJK> +<U00025873> /x8e/xa7/xb0/xec <CJK> +<U0002585D> /x8e/xa7/xb0/xed <CJK> +<U000259FA> /x8e/xa7/xb0/xee <CJK> +<U41B3> /x8e/xa7/xb0/xef <CJK> +<U000259F3> /x8e/xa7/xb0/xf0 <CJK> +<U00025A0A> /x8e/xa7/xb0/xf1 <CJK> +<U00025A17> /x8e/xa7/xb0/xf2 <CJK> +<U00025AB0> /x8e/xa7/xb0/xf4 <CJK> +<U00025C3E> /x8e/xa7/xb0/xf5 <CJK> +<U00025C46> /x8e/xa7/xb0/xf6 <CJK> +<U00025C4F> /x8e/xa7/xb0/xf7 <CJK> +<U00025C44> /x8e/xa7/xb0/xf8 <CJK> +<U00025C69> /x8e/xa7/xb0/xf9 <CJK> +<U00025C33> /x8e/xa7/xb0/xfa <CJK> +<U00025C2F> /x8e/xa7/xb0/xfb <CJK> +<U00025C4E> /x8e/xa7/xb0/xfc <CJK> +<U00025C3A> /x8e/xa7/xb0/xfd <CJK> +<U00025C2B> /x8e/xa7/xb0/xfe <CJK> +<U00025CA9> /x8e/xa7/xb1/xa1 <CJK> +<U00025C50> /x8e/xa7/xb1/xa2 <CJK> +<U00025C45> /x8e/xa7/xb1/xa3 <CJK> +<U00025C37> /x8e/xa7/xb1/xa4 <CJK> +<U00025C25> /x8e/xa7/xb1/xa5 <CJK> +<U00025C2C> /x8e/xa7/xb1/xa6 <CJK> +<U00025C3F> /x8e/xa7/xb1/xa7 <CJK> +<U00025C34> /x8e/xa7/xb1/xa8 <CJK> +<U00025C29> /x8e/xa7/xb1/xa9 <CJK> +<U00025C1E> /x8e/xa7/xb1/xaa <CJK> +<U00025C3D> /x8e/xa7/xb1/xab <CJK> +<U00025EED> /x8e/xa7/xb1/xac <CJK> +<U00025EF3> /x8e/xa7/xb1/xae <CJK> +<U00025EEA> /x8e/xa7/xb1/xaf <CJK> +<U00025EEB> /x8e/xa7/xb1/xb0 <CJK> +<U000260CC> /x8e/xa7/xb1/xb1 <CJK> +<U000260CE> /x8e/xa7/xb1/xb2 <CJK> +<U000260D0> /x8e/xa7/xb1/xb3 <CJK> +<U000260E3> /x8e/xa7/xb1/xb4 <CJK> +<U000260E0> /x8e/xa7/xb1/xb5 <CJK> +<U000260D1> /x8e/xa7/xb1/xb6 <CJK> +<U000260DC> /x8e/xa7/xb1/xb7 <CJK> +<U000260DD> /x8e/xa7/xb1/xb8 <CJK> +<U000260F0> /x8e/xa7/xb1/xb9 <CJK> +<U000260DB> /x8e/xa7/xb1/xba <CJK> +<U000260E5> /x8e/xa7/xb1/xbb <CJK> +<U000260F1> /x8e/xa7/xb1/xbc <CJK> +<U000260C9> /x8e/xa7/xb1/xbd <CJK> +<U000260E8> /x8e/xa7/xb1/xbe <CJK> +<U000260E7> /x8e/xa7/xb1/xbf <CJK> +<U000260C8> /x8e/xa7/xb1/xc0 <CJK> +<U000260DE> /x8e/xa7/xb1/xc1 <CJK> +<U000260CD> /x8e/xa7/xb1/xc2 <CJK> +<U000260C5> /x8e/xa7/xb1/xc3 <CJK> +<U000260C6> /x8e/xa7/xb1/xc4 <CJK> +<U000260E4> /x8e/xa7/xb1/xc5 <CJK> +<U000260C3> /x8e/xa7/xb1/xc6 <CJK> +<U000262FB> /x8e/xa7/xb1/xc7 <CJK> +<U000262FC> /x8e/xa7/xb1/xc8 <CJK> +<U000262FE> /x8e/xa7/xb1/xc9 <CJK> +<U00026303> /x8e/xa7/xb1/xca <CJK> +<U00026300> /x8e/xa7/xb1/xcb <CJK> +<U000262FD> /x8e/xa7/xb1/xcc <CJK> +<U00026305> /x8e/xa7/xb1/xcd <CJK> +<U00026313> /x8e/xa7/xb1/xce <CJK> +<U000263A7> /x8e/xa7/xb1/xcf <CJK> +<U000263B4> /x8e/xa7/xb1/xd0 <CJK> +<U00026470> /x8e/xa7/xb1/xd1 <CJK> +<U00026474> /x8e/xa7/xb1/xd2 <CJK> +<U00026471> /x8e/xa7/xb1/xd3 <CJK> +<U00026475> /x8e/xa7/xb1/xd4 <CJK> +<U0002647D> /x8e/xa7/xb1/xd5 <CJK> +<U00026473> /x8e/xa7/xb1/xd6 <CJK> +<U000264C4> /x8e/xa7/xb1/xd7 <CJK> +<U000264C3> /x8e/xa7/xb1/xd8 <CJK> +<U000264DE> /x8e/xa7/xb1/xd9 <CJK> +<U000264DD> /x8e/xa7/xb1/xda <CJK> +<U00026511> /x8e/xa7/xb1/xdb <CJK> +<U0002650F> /x8e/xa7/xb1/xdc <CJK> +<U00026510> /x8e/xa7/xb1/xdd <CJK> +<U000265C3> /x8e/xa7/xb1/xde <CJK> +<U000265C2> /x8e/xa7/xb1/xdf <CJK> +<U000265CA> /x8e/xa7/xb1/xe0 <CJK> +<U000265C1> /x8e/xa7/xb1/xe1 <CJK> +<U00026623> /x8e/xa7/xb1/xe2 <CJK> +<U000267B1> /x8e/xa7/xb1/xe3 <CJK> +<U00026824> /x8e/xa7/xb1/xe4 <CJK> +<U00026811> /x8e/xa7/xb1/xe5 <CJK> +<U00026825> /x8e/xa7/xb1/xe6 <CJK> +<U0002680A> /x8e/xa7/xb1/xe7 <CJK> +<U0002681F> /x8e/xa7/xb1/xe8 <CJK> +<U00026820> /x8e/xa7/xb1/xe9 <CJK> +<U00026814> /x8e/xa7/xb1/xea <CJK> +<U00026828> /x8e/xa7/xb1/xeb <CJK> +<U00026803> /x8e/xa7/xb1/xec <CJK> +<U00026812> /x8e/xa7/xb1/xed <CJK> +<U0002680B> /x8e/xa7/xb1/xee <CJK> +<U00026817> /x8e/xa7/xb1/xef <CJK> +<U00022A11> /x8e/xa7/xb1/xf0 <CJK> +<U00026949> /x8e/xa7/xb1/xf1 <CJK> +<U00026989> /x8e/xa7/xb1/xf2 <CJK> +<U00026990> /x8e/xa7/xb1/xf3 <CJK> +<U0002698F> /x8e/xa7/xb1/xf4 <CJK> +<U00026996> /x8e/xa7/xb1/xf5 <CJK> +<U00026995> /x8e/xa7/xb1/xf6 <CJK> +<U00026993> /x8e/xa7/xb1/xf7 <CJK> +<U000269ED> /x8e/xa7/xb1/xf8 <CJK> +<U000269F0> /x8e/xa7/xb1/xf9 <CJK> +<U000243DE> /x8e/xa7/xb1/xfa <CJK> +<U00026A85> /x8e/xa7/xb1/xfb <CJK> +<U00026A77> /x8e/xa7/xb1/xfc <CJK> +<U00026A7A> /x8e/xa7/xb1/xfd <CJK> +<U00026A84> /x8e/xa7/xb1/xfe <CJK> +<U00026A79> /x8e/xa7/xb2/xa1 <CJK> +<U00026A7D> /x8e/xa7/xb2/xa2 <CJK> +<U00026A7B> /x8e/xa7/xb2/xa3 <CJK> +<U00026AED> /x8e/xa7/xb2/xa4 <CJK> +<U00026AEC> /x8e/xa7/xb2/xa5 <CJK> +<U00026DF6> /x8e/xa7/xb2/xa6 <CJK> +<U00026D9B> /x8e/xa7/xb2/xa7 <CJK> +<U00026E9D> /x8e/xa7/xb2/xa8 <CJK> +<U00026F11> /x8e/xa7/xb2/xa9 <CJK> +<U00026EC4> /x8e/xa7/xb2/xaa <CJK> +<U00026EC8> /x8e/xa7/xb2/xab <CJK> +<U00026EDF> /x8e/xa7/xb2/xac <CJK> +<U00026EBF> /x8e/xa7/xb2/xad <CJK> +<U00026EB3> /x8e/xa7/xb2/xae <CJK> +<U00026EBA> /x8e/xa7/xb2/xaf <CJK> +<U00026F10> /x8e/xa7/xb2/xb0 <CJK> +<U00026F06> /x8e/xa7/xb2/xb1 <CJK> +<U00026E88> /x8e/xa7/xb2/xb2 <CJK> +<U00026E9A> /x8e/xa7/xb2/xb3 <CJK> +<U00026EE0> /x8e/xa7/xb2/xb4 <CJK> +<U00026ECC> /x8e/xa7/xb2/xb5 <CJK> +<U00026EB5> /x8e/xa7/xb2/xb6 <CJK> +<U00026EE1> /x8e/xa7/xb2/xb7 <CJK> +<U00026EBC> /x8e/xa7/xb2/xb8 <CJK> +<U00026EC6> /x8e/xa7/xb2/xb9 <CJK> +<U00026F0B> /x8e/xa7/xb2/xba <CJK> +<U00026EA4> /x8e/xa7/xb2/xbb <CJK> +<U00026E95> /x8e/xa7/xb2/xbc <CJK> +<U00026EA3> /x8e/xa7/xb2/xbd <CJK> +<U00026EE2> /x8e/xa7/xb2/xbe <CJK> +<U00026ECD> /x8e/xa7/xb2/xbf <CJK> +<U00026EE3> /x8e/xa7/xb2/xc0 <CJK> +<U00026EAB> /x8e/xa7/xb2/xc1 <CJK> +<U00026ECB> /x8e/xa7/xb2/xc2 <CJK> +<U00026E8F> /x8e/xa7/xb2/xc3 <CJK> +<U00026EA9> /x8e/xa7/xb2/xc5 <CJK> +<U00026F24> /x8e/xa7/xb2/xc6 <CJK> +<U00026EE4> /x8e/xa7/xb2/xc7 <CJK> +<U00026F12> /x8e/xa7/xb2/xc8 <CJK> +<U00026EE5> /x8e/xa7/xb2/xc9 <CJK> +<U00026F67> /x8e/xa7/xb2/xca <CJK> +<U00026EAA> /x8e/xa7/xb2/xcb <CJK> +<U00026EA0> /x8e/xa7/xb2/xcc <CJK> +<U00026EE6> /x8e/xa7/xb2/xcd <CJK> +<U00026EC1> /x8e/xa7/xb2/xce <CJK> +<U00026EE7> /x8e/xa7/xb2/xcf <CJK> +<U00026F0D> /x8e/xa7/xb2/xd0 <CJK> +<U00026E86> /x8e/xa7/xb2/xd1 <CJK> +<U00026EB0> /x8e/xa7/xb2/xd2 <CJK> +<U00026E8B> /x8e/xa7/xb2/xd3 <CJK> +<U00026EE8> /x8e/xa7/xb2/xd4 <CJK> +<U00026EC9> /x8e/xa7/xb2/xd5 <CJK> +<U00026F19> /x8e/xa7/xb2/xd6 <CJK> +<U00026EC0> /x8e/xa7/xb2/xd7 <CJK> +<U00026F0C> /x8e/xa7/xb2/xd8 <CJK> +<U00026EE9> /x8e/xa7/xb2/xd9 <CJK> +<U00026EEA> /x8e/xa7/xb2/xda <CJK> +<U000271ED> /x8e/xa7/xb2/xdb <CJK> +<U000271E3> /x8e/xa7/xb2/xdc <CJK> +<U000271E4> /x8e/xa7/xb2/xdd <CJK> +<U000271E8> /x8e/xa7/xb2/xde <CJK> +<U000271D2> /x8e/xa7/xb2/xdf <CJK> +<U000271E2> /x8e/xa7/xb2/xe0 <CJK> +<U8666> /x8e/xa7/xb2/xe1 <CJK> +<U000273CF> /x8e/xa7/xb2/xe2 <CJK> +<U000273D1> /x8e/xa7/xb2/xe3 <CJK> +<U000273C3> /x8e/xa7/xb2/xe4 <CJK> +<U000273C9> /x8e/xa7/xb2/xe5 <CJK> +<U000273EA> /x8e/xa7/xb2/xe6 <CJK> +<U000273B4> /x8e/xa7/xb2/xe7 <CJK> +<U000273DC> /x8e/xa7/xb2/xe8 <CJK> +<U000273BD> /x8e/xa7/xb2/xe9 <CJK> +<U000273E6> /x8e/xa7/xb2/xea <CJK> +<U000273C8> /x8e/xa7/xb2/xeb <CJK> +<U000273EC> /x8e/xa7/xb2/xec <CJK> +<U000273B2> /x8e/xa7/xb2/xed <CJK> +<U000273A9> /x8e/xa7/xb2/xee <CJK> +<U000273D3> /x8e/xa7/xb2/xef <CJK> +<U000273C0> /x8e/xa7/xb2/xf0 <CJK> +<U000273E9> /x8e/xa7/xb2/xf1 <CJK> +<U000273D5> /x8e/xa7/xb2/xf2 <CJK> +<U45D9> /x8e/xa7/xb2/xf3 <CJK> +<U000273C5> /x8e/xa7/xb2/xf4 <CJK> +<U45DD> /x8e/xa7/xb2/xf5 <CJK> +<U000273CB> /x8e/xa7/xb2/xf6 <CJK> +<U000273D0> /x8e/xa7/xb2/xf7 <CJK> +<U000273D2> /x8e/xa7/xb2/xf8 <CJK> +<U000273E4> /x8e/xa7/xb2/xf9 <CJK> +<U000273E8> /x8e/xa7/xb2/xfa <CJK> +<U000273CD> /x8e/xa7/xb2/xfb <CJK> +<U000273B6> /x8e/xa7/xb2/xfc <CJK> +<U000273AA> /x8e/xa7/xb2/xfd <CJK> +<U000273D4> /x8e/xa7/xb2/xfe <CJK> +<U00028449> /x8e/xa7/xb3/xa1 <CJK> +<U000273C1> /x8e/xa7/xb3/xa2 <CJK> +<U000273DD> /x8e/xa7/xb3/xa3 <CJK> +<U000273CE> /x8e/xa7/xb3/xa4 <CJK> +<U000275C9> /x8e/xa7/xb3/xa5 <CJK> +<U000275CA> /x8e/xa7/xb3/xa6 <CJK> +<U000276FD> /x8e/xa7/xb3/xa7 <CJK> +<U000276D9> /x8e/xa7/xb3/xa8 <CJK> +<U000276FF> /x8e/xa7/xb3/xa9 <CJK> +<U00027704> /x8e/xa7/xb3/xaa <CJK> +<U000276FA> /x8e/xa7/xb3/xab <CJK> +<U00027706> /x8e/xa7/xb3/xac <CJK> +<U00027715> /x8e/xa7/xb3/xad <CJK> +<U00027711> /x8e/xa7/xb3/xae <CJK> +<U00027707> /x8e/xa7/xb3/xaf <CJK> +<U0002770B> /x8e/xa7/xb3/xb0 <CJK> +<U000277FC> /x8e/xa7/xb3/xb1 <CJK> +<U000277FD> /x8e/xa7/xb3/xb2 <CJK> +<U0002786D> /x8e/xa7/xb3/xb3 <CJK> +<U00027865> /x8e/xa7/xb3/xb4 <CJK> +<U00027914> /x8e/xa7/xb3/xb5 <CJK> +<U00027913> /x8e/xa7/xb3/xb6 <CJK> +<U0002790C> /x8e/xa7/xb3/xb7 <CJK> +<U0002790B> /x8e/xa7/xb3/xb8 <CJK> +<U00027918> /x8e/xa7/xb3/xb9 <CJK> +<U00027922> /x8e/xa7/xb3/xba <CJK> +<U00027A7D> /x8e/xa7/xb3/xbb <CJK> +<U00027A6F> /x8e/xa7/xb3/xbc <CJK> +<U00027A75> /x8e/xa7/xb3/xbd <CJK> +<U00027A7B> /x8e/xa7/xb3/xbe <CJK> +<U00027A80> /x8e/xa7/xb3/xbf <CJK> +<U00027A7F> /x8e/xa7/xb3/xc0 <CJK> +<U00027A96> /x8e/xa7/xb3/xc1 <CJK> +<U00027A6D> /x8e/xa7/xb3/xc2 <CJK> +<U00027A6B> /x8e/xa7/xb3/xc3 <CJK> +<U00027A86> /x8e/xa7/xb3/xc4 <CJK> +<U00027A73> /x8e/xa7/xb3/xc5 <CJK> +<U00027A62> /x8e/xa7/xb3/xc6 <CJK> +<U00027A77> /x8e/xa7/xb3/xc7 <CJK> +<U00027A81> /x8e/xa7/xb3/xc8 <CJK> +<U00027A69> /x8e/xa7/xb3/xc9 <CJK> +<U00027A82> /x8e/xa7/xb3/xca <CJK> +<U00027A97> /x8e/xa7/xb3/xcb <CJK> +<U00027A84> /x8e/xa7/xb3/xcc <CJK> +<U46FC> /x8e/xa7/xb3/xcd <CJK> +<U00027A78> /x8e/xa7/xb3/xce <CJK> +<U00027A7A> /x8e/xa7/xb3/xd0 <CJK> +<U00027A6A> /x8e/xa7/xb3/xd1 <CJK> +<U00027A65> /x8e/xa7/xb3/xd2 <CJK> +<U00027A7E> /x8e/xa7/xb3/xd3 <CJK> +<U00027A94> /x8e/xa7/xb3/xd4 <CJK> +<U00027BC2> /x8e/xa7/xb3/xd5 <CJK> +<U00027BC1> /x8e/xa7/xb3/xd6 <CJK> +<U00027BF9> /x8e/xa7/xb3/xd7 <CJK> +<U00027C71> /x8e/xa7/xb3/xd8 <CJK> +<U00027C6B> /x8e/xa7/xb3/xd9 <CJK> +<U00027C6D> /x8e/xa7/xb3/xda <CJK> +<U00027C6F> /x8e/xa7/xb3/xdb <CJK> +<U00027C6E> /x8e/xa7/xb3/xdc <CJK> +<U00027CF2> /x8e/xa7/xb3/xdd <CJK> +<U00027CE8> /x8e/xa7/xb3/xde <CJK> +<U00027CEF> /x8e/xa7/xb3/xdf <CJK> +<U00027CE9> /x8e/xa7/xb3/xe0 <CJK> +<U00027CEA> /x8e/xa7/xb3/xe1 <CJK> +<U00027CED> /x8e/xa7/xb3/xe2 <CJK> +<U00027CF3> /x8e/xa7/xb3/xe3 <CJK> +<U00027CE6> /x8e/xa7/xb3/xe4 <CJK> +<U00027DC9> /x8e/xa7/xb3/xe5 <CJK> +<U00027DB4> /x8e/xa7/xb3/xe6 <CJK> +<U00027DB3> /x8e/xa7/xb3/xe7 <CJK> +<U00027DB9> /x8e/xa7/xb3/xe8 <CJK> +<U00027DCA> /x8e/xa7/xb3/xe9 <CJK> +<U00027DB1> /x8e/xa7/xb3/xea <CJK> +<U00027DB6> /x8e/xa7/xb3/xeb <CJK> +<U00027DC7> /x8e/xa7/xb3/xec <CJK> +<U00027DC4> /x8e/xa7/xb3/xed <CJK> +<U00027DB7> /x8e/xa7/xb3/xee <CJK> +<U00027E6F> /x8e/xa7/xb3/xef <CJK> +<U00027F33> /x8e/xa7/xb3/xf0 <CJK> +<U00027F32> /x8e/xa7/xb3/xf1 <CJK> +<U00027F1F> /x8e/xa7/xb3/xf2 <CJK> +<U00027F2B> /x8e/xa7/xb3/xf4 <CJK> +<U00027F30> /x8e/xa7/xb3/xf5 <CJK> +<U00027F36> /x8e/xa7/xb3/xf6 <CJK> +<U00027F42> /x8e/xa7/xb3/xf7 <CJK> +<U00027F41> /x8e/xa7/xb3/xf8 <CJK> +<U000280A5> /x8e/xa7/xb3/xfa <CJK> +<U000280AB> /x8e/xa7/xb3/xfb <CJK> +<U000280A9> /x8e/xa7/xb3/xfc <CJK> +<U000280B3> /x8e/xa7/xb3/xfd <CJK> +<U000280A7> /x8e/xa7/xb3/xfe <CJK> +<U000280A0> /x8e/xa7/xb4/xa1 <CJK> +<U000280D2> /x8e/xa7/xb4/xa2 <CJK> +<U000280A8> /x8e/xa7/xb4/xa3 <CJK> +<U000280B6> /x8e/xa7/xb4/xa4 <CJK> +<U000280AC> /x8e/xa7/xb4/xa5 <CJK> +<U000280AE> /x8e/xa7/xb4/xa6 <CJK> +<U000280E6> /x8e/xa7/xb4/xa7 <CJK> +<U00028265> /x8e/xa7/xb4/xa8 <CJK> +<U00028347> /x8e/xa7/xb4/xa9 <CJK> +<U00028363> /x8e/xa7/xb4/xaa <CJK> +<U0002834D> /x8e/xa7/xb4/xab <CJK> +<U0002835F> /x8e/xa7/xb4/xac <CJK> +<U0002834B> /x8e/xa7/xb4/xad <CJK> +<U00028360> /x8e/xa7/xb4/xae <CJK> +<U00028349> /x8e/xa7/xb4/xaf <CJK> +<U00028353> /x8e/xa7/xb4/xb0 <CJK> +<U8F3A> /x8e/xa7/xb4/xb2 <CJK> +<U00028357> /x8e/xa7/xb4/xb3 <CJK> +<U0002834E> /x8e/xa7/xb4/xb4 <CJK> +<U00028352> /x8e/xa7/xb4/xb5 <CJK> +<U00028354> /x8e/xa7/xb4/xb6 <CJK> +<U00028420> /x8e/xa7/xb4/xb7 <CJK> +<U00028422> /x8e/xa7/xb4/xb8 <CJK> +<U000285C1> /x8e/xa7/xb4/xb9 <CJK> +<U000285D7> /x8e/xa7/xb4/xba <CJK> +<U000285D5> /x8e/xa7/xb4/xbb <CJK> +<U000285C4> /x8e/xa7/xb4/xbc <CJK> +<U000285D0> /x8e/xa7/xb4/xbd <CJK> +<U000285BB> /x8e/xa7/xb4/xbe <CJK> +<U000285E2> /x8e/xa7/xb4/xbf <CJK> +<U000285CB> /x8e/xa7/xb4/xc0 <CJK> +<U000285B8> /x8e/xa7/xb4/xc1 <CJK> +<U000285BF> /x8e/xa7/xb4/xc2 <CJK> +<U000285D8> /x8e/xa7/xb4/xc3 <CJK> +<U000285C0> /x8e/xa7/xb4/xc4 <CJK> +<U000285BA> /x8e/xa7/xb4/xc5 <CJK> +<U000285B4> /x8e/xa7/xb4/xc6 <CJK> +<U000285BC> /x8e/xa7/xb4/xc7 <CJK> +<U000285D4> /x8e/xa7/xb4/xc8 <CJK> +<U000285ED> /x8e/xa7/xb4/xc9 <CJK> +<U000285C2> /x8e/xa7/xb4/xca <CJK> +<U000285D9> /x8e/xa7/xb4/xcb <CJK> +<U000285CC> /x8e/xa7/xb4/xcc <CJK> +<U0002872F> /x8e/xa7/xb4/xcd <CJK> +<U00028723> /x8e/xa7/xb4/xce <CJK> +<U00028796> /x8e/xa7/xb4/xcf <CJK> +<U0002878D> /x8e/xa7/xb4/xd0 <CJK> +<U0002879E> /x8e/xa7/xb4/xd1 <CJK> +<U00028799> /x8e/xa7/xb4/xd2 <CJK> +<U00028883> /x8e/xa7/xb4/xd3 <CJK> +<U4907> /x8e/xa7/xb4/xd4 <CJK> +<U0002886A> /x8e/xa7/xb4/xd5 <CJK> +<U00028869> /x8e/xa7/xb4/xd6 <CJK> +<U00028875> /x8e/xa7/xb4/xd7 <CJK> +<U0002886C> /x8e/xa7/xb4/xd8 <CJK> +<U00028880> /x8e/xa7/xb4/xd9 <CJK> +<U0002886E> /x8e/xa7/xb4/xda <CJK> +<U00028881> /x8e/xa7/xb4/xdb <CJK> +<U00028877> /x8e/xa7/xb4/xdc <CJK> +<U00028876> /x8e/xa7/xb4/xdd <CJK> +<U00028873> /x8e/xa7/xb4/xde <CJK> +<U00028870> /x8e/xa7/xb4/xdf <CJK> +<U00028884> /x8e/xa7/xb4/xe0 <CJK> +<U00028919> /x8e/xa7/xb4/xe1 <CJK> +<U000289F2> /x8e/xa7/xb4/xe2 <CJK> +<U933D> /x8e/xa7/xb4/xe3 <CJK> +<U000289EC> /x8e/xa7/xb4/xe4 <CJK> +<U000289EB> /x8e/xa7/xb4/xe5 <CJK> +<U000289F6> /x8e/xa7/xb4/xe6 <CJK> +<U000289EF> /x8e/xa7/xb4/xe7 <CJK> +<U000289F4> /x8e/xa7/xb4/xe8 <CJK> +<U000289EE> /x8e/xa7/xb4/xe9 <CJK> +<U000289F3> /x8e/xa7/xb4/xea <CJK> +<U000289ED> /x8e/xa7/xb4/xeb <CJK> +<U00028C9B> /x8e/xa7/xb4/xec <CJK> +<U00028C98> /x8e/xa7/xb4/xed <CJK> +<U00028C94> /x8e/xa7/xb4/xee <CJK> +<U0002147A> /x8e/xa7/xb4/xef <CJK> +<U00028C9A> /x8e/xa7/xb4/xf0 <CJK> +<U00028D4C> /x8e/xa7/xb4/xf2 <CJK> +<U49A8> /x8e/xa7/xb4/xf3 <CJK> +<U00028D57> /x8e/xa7/xb4/xf4 <CJK> +<U00028D51> /x8e/xa7/xb4/xf5 <CJK> +<U00028D62> /x8e/xa7/xb4/xf6 <CJK> +<U00028D52> /x8e/xa7/xb4/xf7 <CJK> +<U00028D5C> /x8e/xa7/xb4/xf8 <CJK> +<U00028D53> /x8e/xa7/xb4/xf9 <CJK> +<U00028E85> /x8e/xa7/xb4/xfb <CJK> +<U00028F2D> /x8e/xa7/xb4/xfc <CJK> +<U00028F3E> /x8e/xa7/xb4/xfd <CJK> +<U00028F30> /x8e/xa7/xb4/xfe <CJK> +<U00028F7D> /x8e/xa7/xb5/xa1 <CJK> +<U00028FE6> /x8e/xa7/xb5/xa2 <CJK> +<U00028FF6> /x8e/xa7/xb5/xa3 <CJK> +<U00028FE4> /x8e/xa7/xb5/xa4 <CJK> +<U00028FE9> /x8e/xa7/xb5/xa5 <CJK> +<U00028FEC> /x8e/xa7/xb5/xa6 <CJK> +<U00028FF2> /x8e/xa7/xb5/xa7 <CJK> +<U00028FE8> /x8e/xa7/xb5/xa8 <CJK> +<U00028FE3> /x8e/xa7/xb5/xa9 <CJK> +<U00028FEB> /x8e/xa7/xb5/xaa <CJK> +<U00028FF0> /x8e/xa7/xb5/xab <CJK> +<U00028FEA> /x8e/xa7/xb5/xac <CJK> +<U00028FE7> /x8e/xa7/xb5/xad <CJK> +<U00028FFD> /x8e/xa7/xb5/xae <CJK> +<U00028FE5> /x8e/xa7/xb5/xaf <CJK> +<U00028FEE> /x8e/xa7/xb5/xb0 <CJK> +<U00028FF5> /x8e/xa7/xb5/xb1 <CJK> +<U00028FF9> /x8e/xa7/xb5/xb2 <CJK> +<U00028FF1> /x8e/xa7/xb5/xb3 <CJK> +<U00028FF4> /x8e/xa7/xb5/xb4 <CJK> +<U00029011> /x8e/xa7/xb5/xb6 <CJK> +<U000290DE> /x8e/xa7/xb5/xb7 <CJK> +<U000290D8> /x8e/xa7/xb5/xb8 <CJK> +<U000290DD> /x8e/xa7/xb5/xb9 <CJK> +<U000290DB> /x8e/xa7/xb5/xba <CJK> +<U000290D3> /x8e/xa7/xb5/xbb <CJK> +<U000290E1> /x8e/xa7/xb5/xbc <CJK> +<U000291DE> /x8e/xa7/xb5/xbd <CJK> +<U000291FC> /x8e/xa7/xb5/xbe <CJK> +<U00029228> /x8e/xa7/xb5/xbf <CJK> +<U000292B7> /x8e/xa7/xb5/xc0 <CJK> +<U000292B8> /x8e/xa7/xb5/xc1 <CJK> +<U000292C7> /x8e/xa7/xb5/xc2 <CJK> +<U000292B2> /x8e/xa7/xb5/xc3 <CJK> +<U000292A9> /x8e/xa7/xb5/xc4 <CJK> +<U000292B9> /x8e/xa7/xb5/xc5 <CJK> +<U000292BC> /x8e/xa7/xb5/xc6 <CJK> +<U000292B3> /x8e/xa7/xb5/xc7 <CJK> +<U000292D1> /x8e/xa7/xb5/xc8 <CJK> +<U000293B0> /x8e/xa7/xb5/xc9 <CJK> +<U000293B1> /x8e/xa7/xb5/xca <CJK> +<U000293B6> /x8e/xa7/xb5/xcb <CJK> +<U00029404> /x8e/xa7/xb5/xcc <CJK> +<U0002942C> /x8e/xa7/xb5/xcd <CJK> +<U000294C1> /x8e/xa7/xb5/xce <CJK> +<U0002949E> /x8e/xa7/xb5/xcf <CJK> +<U000294BA> /x8e/xa7/xb5/xd0 <CJK> +<U4ACA> /x8e/xa7/xb5/xd1 <CJK> +<U000294D1> /x8e/xa7/xb5/xd2 <CJK> +<U000294D3> /x8e/xa7/xb5/xd3 <CJK> +<U000294D4> /x8e/xa7/xb5/xd4 <CJK> +<U000294D5> /x8e/xa7/xb5/xd5 <CJK> +<U000294C5> /x8e/xa7/xb5/xd6 <CJK> +<U000294B6> /x8e/xa7/xb5/xd7 <CJK> +<U000294B2> /x8e/xa7/xb5/xd8 <CJK> +<U000294B5> /x8e/xa7/xb5/xd9 <CJK> +<U000294C3> /x8e/xa7/xb5/xda <CJK> +<U000294B9> /x8e/xa7/xb5/xdb <CJK> +<U000294C6> /x8e/xa7/xb5/xdc <CJK> +<U000295D6> /x8e/xa7/xb5/xdd <CJK> +<U000295E0> /x8e/xa7/xb5/xde <CJK> +<U000295DB> /x8e/xa7/xb5/xdf <CJK> +<U000295D7> /x8e/xa7/xb5/xe0 <CJK> +<U000295DD> /x8e/xa7/xb5/xe1 <CJK> +<U00029715> /x8e/xa7/xb5/xe2 <CJK> +<U0002970C> /x8e/xa7/xb5/xe3 <CJK> +<U0002970F> /x8e/xa7/xb5/xe4 <CJK> +<U0002970E> /x8e/xa7/xb5/xe5 <CJK> +<U000296FE> /x8e/xa7/xb5/xe6 <CJK> +<U00029704> /x8e/xa7/xb5/xe7 <CJK> +<U0002970B> /x8e/xa7/xb5/xe8 <CJK> +<U00029702> /x8e/xa7/xb5/xe9 <CJK> +<U000296FF> /x8e/xa7/xb5/xea <CJK> +<U00029708> /x8e/xa7/xb5/xeb <CJK> +<U00029710> /x8e/xa7/xb5/xec <CJK> +<U00029717> /x8e/xa7/xb5/xed <CJK> +<U00029713> /x8e/xa7/xb5/xee <CJK> +<U00029706> /x8e/xa7/xb5/xef <CJK> +<U00029709> /x8e/xa7/xb5/xf0 <CJK> +<U00029824> /x8e/xa7/xb5/xf1 <CJK> +<U00029826> /x8e/xa7/xb5/xf2 <CJK> +<U00029825> /x8e/xa7/xb5/xf3 <CJK> +<U00029848> /x8e/xa7/xb5/xf4 <CJK> +<U000298B5> /x8e/xa7/xb5/xf5 <CJK> +<U000298D2> /x8e/xa7/xb5/xf6 <CJK> +<U000298D5> /x8e/xa7/xb5/xf7 <CJK> +<U000298C4> /x8e/xa7/xb5/xf8 <CJK> +<U000298AF> /x8e/xa7/xb5/xf9 <CJK> +<U000298AD> /x8e/xa7/xb5/xfa <CJK> +<U000298C1> /x8e/xa7/xb5/xfb <CJK> +<U000298C0> /x8e/xa7/xb5/xfc <CJK> +<U000298CC> /x8e/xa7/xb5/xfd <CJK> +<U000298CD> /x8e/xa7/xb5/xfe <CJK> +<U000298C3> /x8e/xa7/xb6/xa1 <CJK> +<U000298C8> /x8e/xa7/xb6/xa2 <CJK> +<U000298C5> /x8e/xa7/xb6/xa3 <CJK> +<U000298BA> /x8e/xa7/xb6/xa4 <CJK> +<U000298D0> /x8e/xa7/xb6/xa5 <CJK> +<U000298C2> /x8e/xa7/xb6/xa6 <CJK> +<U000298CE> /x8e/xa7/xb6/xa7 <CJK> +<U4B8D> /x8e/xa7/xb6/xa8 <CJK> +<U00029A43> /x8e/xa7/xb6/xa9 <CJK> +<U00029A42> /x8e/xa7/xb6/xaa <CJK> +<U00029A40> /x8e/xa7/xb6/xab <CJK> +<U00029A31> /x8e/xa7/xb6/xac <CJK> +<U00029ACF> /x8e/xa7/xb6/xad <CJK> +<U00029ACE> /x8e/xa7/xb6/xae <CJK> +<U00029B30> /x8e/xa7/xb6/xaf <CJK> +<U00029B34> /x8e/xa7/xb6/xb0 <CJK> +<U00029B32> /x8e/xa7/xb6/xb1 <CJK> +<U00029B43> /x8e/xa7/xb6/xb2 <CJK> +<U00029B3C> /x8e/xa7/xb6/xb3 <CJK> +<U00029C11> /x8e/xa7/xb6/xb4 <CJK> +<U00029C35> /x8e/xa7/xb6/xb5 <CJK> +<U00029C34> /x8e/xa7/xb6/xb6 <CJK> +<U00029C37> /x8e/xa7/xb6/xb7 <CJK> +<U00029C31> /x8e/xa7/xb6/xb8 <CJK> +<U00029CBF> /x8e/xa7/xb6/xb9 <CJK> +<U00029CBC> /x8e/xa7/xb6/xba <CJK> +<U00029CC2> /x8e/xa7/xb6/xbb <CJK> +<U00029CC9> /x8e/xa7/xb6/xbc <CJK> +<U00029D83> /x8e/xa7/xb6/xbd <CJK> +<U00029D8B> /x8e/xa7/xb6/xbe <CJK> +<U00029DA0> /x8e/xa7/xb6/xbf <CJK> +<U00029D8D> /x8e/xa7/xb6/xc0 <CJK> +<U00029D8C> /x8e/xa7/xb6/xc1 <CJK> +<U00029D9A> /x8e/xa7/xb6/xc2 <CJK> +<U00029D8A> /x8e/xa7/xb6/xc3 <CJK> +<U00029D91> /x8e/xa7/xb6/xc4 <CJK> +<U00029FF1> /x8e/xa7/xb6/xc5 <CJK> +<U0002A00F> /x8e/xa7/xb6/xc6 <CJK> +<U0002A001> /x8e/xa7/xb6/xc7 <CJK> +<U0002A007> /x8e/xa7/xb6/xc8 <CJK> +<U0002A00C> /x8e/xa7/xb6/xc9 <CJK> +<U4CC0> /x8e/xa7/xb6/xca <CJK> +<U00029FDC> /x8e/xa7/xb6/xcb <CJK> +<U00029FEE> /x8e/xa7/xb6/xcc <CJK> +<U00029FF7> /x8e/xa7/xb6/xcd <CJK> +<U00029FF2> /x8e/xa7/xb6/xce <CJK> +<U00029FF8> /x8e/xa7/xb6/xcf <CJK> +<U00029FEB> /x8e/xa7/xb6/xd0 <CJK> +<U4CCA> /x8e/xa7/xb6/xd1 <CJK> +<U00029FE6> /x8e/xa7/xb6/xd2 <CJK> +<U00029FED> /x8e/xa7/xb6/xd3 <CJK> +<U00029FE9> /x8e/xa7/xb6/xd4 <CJK> +<U0002A008> /x8e/xa7/xb6/xd5 <CJK> +<U0002A000> /x8e/xa7/xb6/xd6 <CJK> +<U00029FE5> /x8e/xa7/xb6/xd7 <CJK> +<U00029FFC> /x8e/xa7/xb6/xd8 <CJK> +<U0002A261> /x8e/xa7/xb6/xd9 <CJK> +<U0002A25E> /x8e/xa7/xb6/xda <CJK> +<U0002A25F> /x8e/xa7/xb6/xdb <CJK> +<U4D25> /x8e/xa7/xb6/xdc <CJK> +<U0002A29B> /x8e/xa7/xb6/xdd <CJK> +<U0002A316> /x8e/xa7/xb6/xde <CJK> +<U0002A315> /x8e/xa7/xb6/xdf <CJK> +<U0002A320> /x8e/xa7/xb6/xe0 <CJK> +<U0002A314> /x8e/xa7/xb6/xe1 <CJK> +<U0002A31A> /x8e/xa7/xb6/xe2 <CJK> +<U0002A317> /x8e/xa7/xb6/xe3 <CJK> +<U0002A39C> /x8e/xa7/xb6/xe4 <CJK> +<U4D4A> /x8e/xa7/xb6/xe5 <CJK> +<U0002A3F1> /x8e/xa7/xb6/xe6 <CJK> +<U4D53> /x8e/xa7/xb6/xe7 <CJK> +<U0002A3F0> /x8e/xa7/xb6/xe8 <CJK> +<U0002A428> /x8e/xa7/xb6/xe9 <CJK> +<U0002A424> /x8e/xa7/xb6/xea <CJK> +<U0002A42A> /x8e/xa7/xb6/xeb <CJK> +<U0002A42B> /x8e/xa7/xb6/xec <CJK> +<U0002A4D5> /x8e/xa7/xb6/xed <CJK> +<U0002A504> /x8e/xa7/xb6/xee <CJK> +<U0002A505> /x8e/xa7/xb6/xef <CJK> +<U0002A591> /x8e/xa7/xb6/xf0 <CJK> +<U0002A592> /x8e/xa7/xb6/xf1 <CJK> +<U0002A6A6> /x8e/xa7/xb6/xf2 <CJK> +<U00020109> /x8e/xa7/xb6/xf3 <CJK> +<U00020422> /x8e/xa7/xb6/xf4 <CJK> +<U0002041A> /x8e/xa7/xb6/xf5 <CJK> +<U0002040E> /x8e/xa7/xb6/xf6 <CJK> +<U0002041B> /x8e/xa7/xb6/xf7 <CJK> +<U00020408> /x8e/xa7/xb6/xf8 <CJK> +<U000250B3> /x8e/xa7/xb6/xf9 <CJK> +<U0002069D> /x8e/xa7/xb6/xfb <CJK> +<U00020812> /x8e/xa7/xb6/xfc <CJK> +<U0002081E> /x8e/xa7/xb6/xfd <CJK> +<U000208BB> /x8e/xa7/xb6/xfe <CJK> +<U000208BF> /x8e/xa7/xb7/xa1 <CJK> +<U000208BC> /x8e/xa7/xb7/xa2 <CJK> +<U00020908> /x8e/xa7/xb7/xa3 <CJK> +<U00020909> /x8e/xa7/xb7/xa4 <CJK> +<U00020963> /x8e/xa7/xb7/xa5 <CJK> +<U000209C8> /x8e/xa7/xb7/xa6 <CJK> +<U00023728> /x8e/xa7/xb7/xa7 <CJK> +<U00020B8E> /x8e/xa7/xb7/xa8 <CJK> +<U00020B8D> /x8e/xa7/xb7/xa9 <CJK> +<U00021043> /x8e/xa7/xb7/xaa <CJK> +<U0002104D> /x8e/xa7/xb7/xab <CJK> +<U0002106D> /x8e/xa7/xb7/xac <CJK> +<U00021042> /x8e/xa7/xb7/xad <CJK> +<U00021052> /x8e/xa7/xb7/xae <CJK> +<U00021051> /x8e/xa7/xb7/xaf <CJK> +<U00021069> /x8e/xa7/xb7/xb0 <CJK> +<U00021050> /x8e/xa7/xb7/xb1 <CJK> +<U00021056> /x8e/xa7/xb7/xb2 <CJK> +<U0002106C> /x8e/xa7/xb7/xb3 <CJK> +<U00021044> /x8e/xa7/xb7/xb4 <CJK> +<U00021045> /x8e/xa7/xb7/xb5 <CJK> +<U0002106B> /x8e/xa7/xb7/xb6 <CJK> +<U3605> /x8e/xa7/xb7/xb7 <CJK> +<U00021068> /x8e/xa7/xb7/xb8 <CJK> +<U00021057> /x8e/xa7/xb7/xb9 <CJK> +<U0002122E> /x8e/xa7/xb7/xba <CJK> +<U00021231> /x8e/xa7/xb7/xbb <CJK> +<U0002122D> /x8e/xa7/xb7/xbc <CJK> +<U0002148B> /x8e/xa7/xb7/xbd <CJK> +<U000214B2> /x8e/xa7/xb7/xbe <CJK> +<U0002148D> /x8e/xa7/xb7/xbf <CJK> +<U000214A3> /x8e/xa7/xb7/xc0 <CJK> +<U000214A4> /x8e/xa7/xb7/xc1 <CJK> +<U00021490> /x8e/xa7/xb7/xc2 <CJK> +<U00021489> /x8e/xa7/xb7/xc3 <CJK> +<U0002148E> /x8e/xa7/xb7/xc4 <CJK> +<U00021492> /x8e/xa7/xb7/xc5 <CJK> +<U0002157B> /x8e/xa7/xb7/xc6 <CJK> +<U00021690> /x8e/xa7/xb7/xc7 <CJK> +<U0002168F> /x8e/xa7/xb7/xc8 <CJK> +<U000218E9> /x8e/xa7/xb7/xc9 <CJK> +<U000218CD> /x8e/xa7/xb7/xca <CJK> +<U000218C5> /x8e/xa7/xb7/xcb <CJK> +<U000218D0> /x8e/xa7/xb7/xcc <CJK> +<U000218C9> /x8e/xa7/xb7/xcd <CJK> +<U000218D1> /x8e/xa7/xb7/xce <CJK> +<U000218C7> /x8e/xa7/xb7/xcf <CJK> +<U000218D2> /x8e/xa7/xb7/xd0 <CJK> +<U0002185F> /x8e/xa7/xb7/xd1 <CJK> +<U000218E1> /x8e/xa7/xb7/xd2 <CJK> +<U000218CC> /x8e/xa7/xb7/xd3 <CJK> +<U000218C6> /x8e/xa7/xb7/xd4 <CJK> +<U000218E4> /x8e/xa7/xb7/xd5 <CJK> +<U000219A9> /x8e/xa7/xb7/xd6 <CJK> +<U00021AD3> /x8e/xa7/xb7/xd7 <CJK> +<U00021ADA> /x8e/xa7/xb7/xd8 <CJK> +<U00021AD2> /x8e/xa7/xb7/xd9 <CJK> +<U00021ADB> /x8e/xa7/xb7/xda <CJK> +<U00021B4D> /x8e/xa7/xb7/xdb <CJK> +<U00021B4E> /x8e/xa7/xb7/xdc <CJK> +<U00021C1C> /x8e/xa7/xb7/xdd <CJK> +<U00021CE8> /x8e/xa7/xb7/xde <CJK> +<U00021F6C> /x8e/xa7/xb7/xdf <CJK> +<U00021F5F> /x8e/xa7/xb7/xe0 <CJK> +<U00021F66> /x8e/xa7/xb7/xe1 <CJK> +<U00021F64> /x8e/xa7/xb7/xe2 <CJK> +<U00021F78> /x8e/xa7/xb7/xe3 <CJK> +<U00021F65> /x8e/xa7/xb7/xe4 <CJK> +<U00021F6D> /x8e/xa7/xb7/xe5 <CJK> +<U00021F61> /x8e/xa7/xb7/xe6 <CJK> +<U00021F7A> /x8e/xa7/xb7/xe7 <CJK> +<U00022007> /x8e/xa7/xb7/xe8 <CJK> +<U00022166> /x8e/xa7/xb7/xe9 <CJK> +<U00022168> /x8e/xa7/xb7/xea <CJK> +<U00022162> /x8e/xa7/xb7/xeb <CJK> +<U000222D3> /x8e/xa7/xb7/xec <CJK> +<U000222D4> /x8e/xa7/xb7/xed <CJK> +<U000222D1> /x8e/xa7/xb7/xee <CJK> +<U000222DC> /x8e/xa7/xb7/xef <CJK> +<U00022373> /x8e/xa7/xb7/xf0 <CJK> +<U00022372> /x8e/xa7/xb7/xf1 <CJK> +<U0002242D> /x8e/xa7/xb7/xf2 <CJK> +<U0002242C> /x8e/xa7/xb7/xf3 <CJK> +<U0002242F> /x8e/xa7/xb7/xf4 <CJK> +<U00022472> /x8e/xa7/xb7/xf5 <CJK> +<U000224B4> /x8e/xa7/xb7/xf6 <CJK> +<U00022589> /x8e/xa7/xb7/xf7 <CJK> +<U000228CD> /x8e/xa7/xb7/xf8 <CJK> +<U000228A6> /x8e/xa7/xb7/xf9 <CJK> +<U000228A2> /x8e/xa7/xb7/xfa <CJK> +<U000228A0> /x8e/xa7/xb7/xfb <CJK> +<U00022846> /x8e/xa7/xb7/xfc <CJK> +<U000228A1> /x8e/xa7/xb7/xfd <CJK> +<U00026857> /x8e/xa7/xb7/xfe <CJK> +<U000228A3> /x8e/xa7/xb8/xa1 <CJK> +<U000228B1> /x8e/xa7/xb8/xa2 <CJK> +<U000228DB> /x8e/xa7/xb8/xa3 <CJK> +<U000228F6> /x8e/xa7/xb8/xa4 <CJK> +<U000228DC> /x8e/xa7/xb8/xa5 <CJK> +<U000228D6> /x8e/xa7/xb8/xa6 <CJK> +<U00022A13> /x8e/xa7/xb8/xa7 <CJK> +<U00022D9C> /x8e/xa7/xb8/xa8 <CJK> +<U00022D97> /x8e/xa7/xb8/xa9 <CJK> +<U00022DD8> /x8e/xa7/xb8/xaa <CJK> +<U00022DE4> /x8e/xa7/xb8/xab <CJK> +<U00022DD4> /x8e/xa7/xb8/xac <CJK> +<U00022DE5> /x8e/xa7/xb8/xad <CJK> +<U00022DDB> /x8e/xa7/xb8/xae <CJK> +<U00022DD0> /x8e/xa7/xb8/xaf <CJK> +<U00022DDA> /x8e/xa7/xb8/xb0 <CJK> +<U00022DCC> /x8e/xa7/xb8/xb1 <CJK> +<U00022DDC> /x8e/xa7/xb8/xb2 <CJK> +<U00022DED> /x8e/xa7/xb8/xb3 <CJK> +<U00022DD3> /x8e/xa7/xb8/xb4 <CJK> +<U00022DD1> /x8e/xa7/xb8/xb5 <CJK> +<U00022DCE> /x8e/xa7/xb8/xb6 <CJK> +<U00022DD9> /x8e/xa7/xb8/xb7 <CJK> +<U00022DDD> /x8e/xa7/xb8/xb8 <CJK> +<U00022EE6> /x8e/xa7/xb8/xba <CJK> +<U00022EE5> /x8e/xa7/xb8/xbb <CJK> +<U00022EE9> /x8e/xa7/xb8/xbc <CJK> +<U00022FFF> /x8e/xa7/xb8/xbd <CJK> +<U00022FFE> /x8e/xa7/xb8/xbe <CJK> +<U0002300E> /x8e/xa7/xb8/xbf <CJK> +<U0002308C> /x8e/xa7/xb8/xc0 <CJK> +<U000230CA> /x8e/xa7/xb8/xc1 <CJK> +<U000230CB> /x8e/xa7/xb8/xc2 <CJK> +<U0002311A> /x8e/xa7/xb8/xc3 <CJK> +<U000232D7> /x8e/xa7/xb8/xc4 <CJK> +<U000232CF> /x8e/xa7/xb8/xc5 <CJK> +<U000232D0> /x8e/xa7/xb8/xc6 <CJK> +<U000232C9> /x8e/xa7/xb8/xc7 <CJK> +<U000232CC> /x8e/xa7/xb8/xc8 <CJK> +<U000232D3> /x8e/xa7/xb8/xc9 <CJK> +<U000233A4> /x8e/xa7/xb8/xca <CJK> +<U000233A3> /x8e/xa7/xb8/xcb <CJK> +<U00023681> /x8e/xa7/xb8/xcc <CJK> +<U00023726> /x8e/xa7/xb8/xcd <CJK> +<U000236F3> /x8e/xa7/xb8/xce <CJK> +<U00023727> /x8e/xa7/xb8/xcf <CJK> +<U000236F2> /x8e/xa7/xb8/xd0 <CJK> +<U000236FF> /x8e/xa7/xb8/xd1 <CJK> +<U000236F5> /x8e/xa7/xb8/xd2 <CJK> +<U000236FC> /x8e/xa7/xb8/xd3 <CJK> +<U0002370E> /x8e/xa7/xb8/xd4 <CJK> +<U3BF0> /x8e/xa7/xb8/xd5 <CJK> +<U000236F6> /x8e/xa7/xb8/xd6 <CJK> +<U00023700> /x8e/xa7/xb8/xd7 <CJK> +<U00023723> /x8e/xa7/xb8/xd8 <CJK> +<U00023705> /x8e/xa7/xb8/xd9 <CJK> +<U00023725> /x8e/xa7/xb8/xda <CJK> +<U00023708> /x8e/xa7/xb8/xdb <CJK> +<U00023750> /x8e/xa7/xb8/xdc <CJK> +<U00023925> /x8e/xa7/xb8/xdd <CJK> +<U00023920> /x8e/xa7/xb8/xde <CJK> +<U00023923> /x8e/xa7/xb8/xdf <CJK> +<U00023921> /x8e/xa7/xb8/xe0 <CJK> +<U000239A1> /x8e/xa7/xb8/xe1 <CJK> +<U00023A69> /x8e/xa7/xb8/xe2 <CJK> +<U00023A6C> /x8e/xa7/xb8/xe3 <CJK> +<U00023A68> /x8e/xa7/xb8/xe4 <CJK> +<U00023A6B> /x8e/xa7/xb8/xe5 <CJK> +<U00023ACC> /x8e/xa7/xb8/xe6 <CJK> +<U00023ACD> /x8e/xa7/xb8/xe7 <CJK> +<U00023C10> /x8e/xa7/xb8/xe8 <CJK> +<U00023C0D> /x8e/xa7/xb8/xe9 <CJK> +<U00023C0A> /x8e/xa7/xb8/xea <CJK> +<U00023C16> /x8e/xa7/xb8/xeb <CJK> +<U00023C14> /x8e/xa7/xb8/xec <CJK> +<U00023C52> /x8e/xa7/xb8/xed <CJK> +<U00024028> /x8e/xa7/xb8/xee <CJK> +<U0002402E> /x8e/xa7/xb8/xef <CJK> +<U0002402C> /x8e/xa7/xb8/xf0 <CJK> +<U0002404D> /x8e/xa7/xb8/xf1 <CJK> +<U00024049> /x8e/xa7/xb8/xf2 <CJK> +<U00024031> /x8e/xa7/xb8/xf3 <CJK> +<U00024030> /x8e/xa7/xb8/xf4 <CJK> +<U00024033> /x8e/xa7/xb8/xf5 <CJK> +<U0002402D> /x8e/xa7/xb8/xf6 <CJK> +<U00024036> /x8e/xa7/xb8/xf7 <CJK> +<U0002403E> /x8e/xa7/xb8/xf8 <CJK> +<U0002402F> /x8e/xa7/xb8/xf9 <CJK> +<U00024027> /x8e/xa7/xb8/xfa <CJK> +<U00024034> /x8e/xa7/xb8/xfb <CJK> +<U0002404C> /x8e/xa7/xb8/xfc <CJK> +<U000243FE> /x8e/xa7/xb8/xfd <CJK> +<U00024412> /x8e/xa7/xb8/xfe <CJK> +<U0002441F> /x8e/xa7/xb9/xa1 <CJK> +<U00024417> /x8e/xa7/xb9/xa2 <CJK> +<U000243F5> /x8e/xa7/xb9/xa3 <CJK> +<U00024415> /x8e/xa7/xb9/xa4 <CJK> +<U000243F7> /x8e/xa7/xb9/xa5 <CJK> +<U3E02> /x8e/xa7/xb9/xa6 <CJK> +<U00021F7D> /x8e/xa7/xb9/xa7 <CJK> +<U000243FA> /x8e/xa7/xb9/xa8 <CJK> +<U000243F9> /x8e/xa7/xb9/xa9 <CJK> +<U0002444B> /x8e/xa7/xb9/xaa <CJK> +<U0002459C> /x8e/xa7/xb9/xab <CJK> +<U0002459D> /x8e/xa7/xb9/xac <CJK> +<U3E23> /x8e/xa7/xb9/xad <CJK> +<U000246F0> /x8e/xa7/xb9/xae <CJK> +<U000246F6> /x8e/xa7/xb9/xaf <CJK> +<U000246EF> /x8e/xa7/xb9/xb0 <CJK> +<U0002489D> /x8e/xa7/xb9/xb1 <CJK> +<U0002489A> /x8e/xa7/xb9/xb2 <CJK> +<U000248A7> /x8e/xa7/xb9/xb3 <CJK> +<U000248AF> /x8e/xa7/xb9/xb4 <CJK> +<U000248AA> /x8e/xa7/xb9/xb5 <CJK> +<U00024A64> /x8e/xa7/xb9/xb6 <CJK> +<U00024A86> /x8e/xa7/xb9/xb7 <CJK> +<U00024A75> /x8e/xa7/xb9/xb8 <CJK> +<U00024A70> /x8e/xa7/xb9/xb9 <CJK> +<U00024A84> /x8e/xa7/xb9/xba <CJK> +<U00024A6B> /x8e/xa7/xb9/xbb <CJK> +<U00024A85> /x8e/xa7/xb9/xbc <CJK> +<U00024A6C> /x8e/xa7/xb9/xbd <CJK> +<U00024B17> /x8e/xa7/xb9/xbe <CJK> +<U00024B94> /x8e/xa7/xb9/xbf <CJK> +<U00024B93> /x8e/xa7/xb9/xc0 <CJK> +<U00024CD2> /x8e/xa7/xb9/xc1 <CJK> +<U00024CD7> /x8e/xa7/xb9/xc2 <CJK> +<U00024CD4> /x8e/xa7/xb9/xc3 <CJK> +<U00024EA6> /x8e/xa7/xb9/xc4 <CJK> +<U00024EA7> /x8e/xa7/xb9/xc5 <CJK> +<U00024E9C> /x8e/xa7/xb9/xc6 <CJK> +<U00024E8B> /x8e/xa7/xb9/xc7 <CJK> +<U00024E8D> /x8e/xa7/xb9/xc8 <CJK> +<U00024E98> /x8e/xa7/xb9/xc9 <CJK> +<U00024EB9> /x8e/xa7/xb9/xca <CJK> +<U00024E9B> /x8e/xa7/xb9/xcb <CJK> +<U00024E9D> /x8e/xa7/xb9/xcc <CJK> +<U00024E99> /x8e/xa7/xb9/xcd <CJK> +<U00024EA8> /x8e/xa7/xb9/xce <CJK> +<U00024E91> /x8e/xa7/xb9/xcf <CJK> +<U00024E87> /x8e/xa7/xb9/xd0 <CJK> +<U00024E9A> /x8e/xa7/xb9/xd1 <CJK> +<U00024FA6> /x8e/xa7/xb9/xd2 <CJK> +<U0002501F> /x8e/xa7/xb9/xd3 <CJK> +<U000250A7> /x8e/xa7/xb9/xd4 <CJK> +<U000250B1> /x8e/xa7/xb9/xd5 <CJK> +<U000250B2> /x8e/xa7/xb9/xd6 <CJK> +<U000250B7> /x8e/xa7/xb9/xd7 <CJK> +<U000252D0> /x8e/xa7/xb9/xd8 <CJK> +<U000252B3> /x8e/xa7/xb9/xd9 <CJK> +<U000252B5> /x8e/xa7/xb9/xda <CJK> +<U000252C4> /x8e/xa7/xb9/xdb <CJK> +<U000252C3> /x8e/xa7/xb9/xdc <CJK> +<U000252BC> /x8e/xa7/xb9/xdd <CJK> +<U000252B2> /x8e/xa7/xb9/xde <CJK> +<U000252BA> /x8e/xa7/xb9/xdf <CJK> +<U000252BB> /x8e/xa7/xb9/xe0 <CJK> +<U000252C2> /x8e/xa7/xb9/xe1 <CJK> +<U000252CD> /x8e/xa7/xb9/xe2 <CJK> +<U000252BE> /x8e/xa7/xb9/xe3 <CJK> +<U000252B7> /x8e/xa7/xb9/xe4 <CJK> +<U0002538F> /x8e/xa7/xb9/xe5 <CJK> +<U00025403> /x8e/xa7/xb9/xe6 <CJK> +<U00025404> /x8e/xa7/xb9/xe7 <CJK> +<U00025571> /x8e/xa7/xb9/xe8 <CJK> +<U00025577> /x8e/xa7/xb9/xe9 <CJK> +<U00025574> /x8e/xa7/xb9/xea <CJK> +<U0002558B> /x8e/xa7/xb9/xeb <CJK> +<U0002557A> /x8e/xa7/xb9/xec <CJK> +<U0002558C> /x8e/xa7/xb9/xee <CJK> +<U00025573> /x8e/xa7/xb9/xef <CJK> +<U000256FF> /x8e/xa7/xb9/xf0 <CJK> +<U000256FB> /x8e/xa7/xb9/xf1 <CJK> +<U000256FD> /x8e/xa7/xb9/xf2 <CJK> +<U000256F0> /x8e/xa7/xb9/xf3 <CJK> +<U000256F3> /x8e/xa7/xb9/xf4 <CJK> +<U000256FC> /x8e/xa7/xb9/xf5 <CJK> +<U000256F2> /x8e/xa7/xb9/xf6 <CJK> +<U00025892> /x8e/xa7/xb9/xf7 <CJK> +<U0002589E> /x8e/xa7/xb9/xf8 <CJK> +<U000258AE> /x8e/xa7/xb9/xf9 <CJK> +<U00025896> /x8e/xa7/xb9/xfa <CJK> +<U00025A14> /x8e/xa7/xb9/xfb <CJK> +<U00025A12> /x8e/xa7/xb9/xfc <CJK> +<U00025A13> /x8e/xa7/xb9/xfd <CJK> +<U00025A16> /x8e/xa7/xb9/xfe <CJK> +<U00025A0F> /x8e/xa7/xba/xa1 <CJK> +<U00025AB6> /x8e/xa7/xba/xa2 <CJK> +<U00025ABD> /x8e/xa7/xba/xa3 <CJK> +<U00025C8C> /x8e/xa7/xba/xa4 <CJK> +<U00025CAE> /x8e/xa7/xba/xa5 <CJK> +<U00025CAC> /x8e/xa7/xba/xa6 <CJK> +<U00025CAB> /x8e/xa7/xba/xa7 <CJK> +<U00025C99> /x8e/xa7/xba/xa8 <CJK> +<U00025C92> /x8e/xa7/xba/xa9 <CJK> +<U00025CBB> /x8e/xa7/xba/xaa <CJK> +<U00025C9E> /x8e/xa7/xba/xab <CJK> +<U00025C7E> /x8e/xa7/xba/xac <CJK> +<U00025CAF> /x8e/xa7/xba/xad <CJK> +<U00025CBC> /x8e/xa7/xba/xae <CJK> +<U00025C98> /x8e/xa7/xba/xaf <CJK> +<U00025F01> /x8e/xa7/xba/xb0 <CJK> +<U00025F09> /x8e/xa7/xba/xb1 <CJK> +<U00025F06> /x8e/xa7/xba/xb2 <CJK> +<U00025F07> /x8e/xa7/xba/xb4 <CJK> +<U00025F08> /x8e/xa7/xba/xb5 <CJK> +<U000260CF> /x8e/xa7/xba/xb6 <CJK> +<U0002610E> /x8e/xa7/xba/xb7 <CJK> +<U00026132> /x8e/xa7/xba/xb8 <CJK> +<U4315> /x8e/xa7/xba/xb9 <CJK> +<U00026112> /x8e/xa7/xba/xba <CJK> +<U00026116> /x8e/xa7/xba/xbb <CJK> +<U00026117> /x8e/xa7/xba/xbc <CJK> +<U0002611B> /x8e/xa7/xba/xbd <CJK> +<U00026115> /x8e/xa7/xba/xbe <CJK> +<U00026131> /x8e/xa7/xba/xbf <CJK> +<U00026118> /x8e/xa7/xba/xc0 <CJK> +<U0002611A> /x8e/xa7/xba/xc1 <CJK> +<U00026110> /x8e/xa7/xba/xc2 <CJK> +<U0002610A> /x8e/xa7/xba/xc3 <CJK> +<U00026109> /x8e/xa7/xba/xc4 <CJK> +<U0002624F> /x8e/xa7/xba/xc5 <CJK> +<U0002630F> /x8e/xa7/xba/xc7 <CJK> +<U00026310> /x8e/xa7/xba/xc8 <CJK> +<U00026328> /x8e/xa7/xba/xca <CJK> +<U00026311> /x8e/xa7/xba/xcb <CJK> +<U00026316> /x8e/xa7/xba/xcc <CJK> +<U00026317> /x8e/xa7/xba/xcd <CJK> +<U00026302> /x8e/xa7/xba/xce <CJK> +<U000263BB> /x8e/xa7/xba/xcf <CJK> +<U000263BA> /x8e/xa7/xba/xd0 <CJK> +<U000263C3> /x8e/xa7/xba/xd1 <CJK> +<U000263BC> /x8e/xa7/xba/xd2 <CJK> +<U0002648A> /x8e/xa7/xba/xd3 <CJK> +<U00026484> /x8e/xa7/xba/xd4 <CJK> +<U00026486> /x8e/xa7/xba/xd5 <CJK> +<U000264E0> /x8e/xa7/xba/xd6 <CJK> +<U00026517> /x8e/xa7/xba/xd7 <CJK> +<U00026518> /x8e/xa7/xba/xd8 <CJK> +<U0002651E> /x8e/xa7/xba/xd9 <CJK> +<U00026515> /x8e/xa7/xba/xda <CJK> +<U000265D3> /x8e/xa7/xba/xdb <CJK> +<U000265DA> /x8e/xa7/xba/xdc <CJK> +<U000265D9> /x8e/xa7/xba/xdd <CJK> +<U000267E6> /x8e/xa7/xba/xde <CJK> +<U000267F4> /x8e/xa7/xba/xdf <CJK> +<U000267E1> /x8e/xa7/xba/xe0 <CJK> +<U00026869> /x8e/xa7/xba/xe1 <CJK> +<U00026840> /x8e/xa7/xba/xe2 <CJK> +<U00026858> /x8e/xa7/xba/xe3 <CJK> +<U0002686C> /x8e/xa7/xba/xe4 <CJK> +<U0002684D> /x8e/xa7/xba/xe5 <CJK> +<U00026921> /x8e/xa7/xba/xe6 <CJK> +<U00026999> /x8e/xa7/xba/xe7 <CJK> +<U000269F1> /x8e/xa7/xba/xe8 <CJK> +<U00023F68> /x8e/xa7/xba/xe9 <CJK> +<U00026A86> /x8e/xa7/xba/xea <CJK> +<U00026F5B> /x8e/xa7/xba/xeb <CJK> +<U00026F5C> /x8e/xa7/xba/xec <CJK> +<U00026F77> /x8e/xa7/xba/xed <CJK> +<U00026F2C> /x8e/xa7/xba/xee <CJK> +<U00026F58> /x8e/xa7/xba/xf0 <CJK> +<U00026F64> /x8e/xa7/xba/xf1 <CJK> +<U00026F61> /x8e/xa7/xba/xf2 <CJK> +<U00026F48> /x8e/xa7/xba/xf3 <CJK> +<U00026F97> /x8e/xa7/xba/xf4 <CJK> +<U00026F59> /x8e/xa7/xba/xf5 <CJK> +<U00026F29> /x8e/xa7/xba/xf6 <CJK> +<U00026F62> /x8e/xa7/xba/xf7 <CJK> +<U00026F2E> /x8e/xa7/xba/xf8 <CJK> +<U00026F68> /x8e/xa7/xba/xf9 <CJK> +<U00026F90> /x8e/xa7/xba/xfa <CJK> +<U00026F3A> /x8e/xa7/xba/xfb <CJK> +<U00026F3D> /x8e/xa7/xba/xfc <CJK> +<U00026F5E> /x8e/xa7/xba/xfd <CJK> +<U00026F46> /x8e/xa7/xba/xfe <CJK> +<U00026F69> /x8e/xa7/xbb/xa1 <CJK> +<U00026F65> /x8e/xa7/xbb/xa2 <CJK> +<U00026F3E> /x8e/xa7/xbb/xa3 <CJK> +<U00026F49> /x8e/xa7/xbb/xa4 <CJK> +<U00026F56> /x8e/xa7/xbb/xa5 <CJK> +<U00026FE1> /x8e/xa7/xbb/xa6 <CJK> +<U00026F78> /x8e/xa7/xbb/xa7 <CJK> +<U00026F79> /x8e/xa7/xbb/xa8 <CJK> +<U00026F66> /x8e/xa7/xbb/xa9 <CJK> +<U00026F4A> /x8e/xa7/xbb/xaa <CJK> +<U00026F35> /x8e/xa7/xbb/xab <CJK> +<U00026F7A> /x8e/xa7/xbb/xac <CJK> +<U00026F92> /x8e/xa7/xbb/xad <CJK> +<U00026F60> /x8e/xa7/xbb/xae <CJK> +<U00026F36> /x8e/xa7/xbb/xaf <CJK> +<U00026F51> /x8e/xa7/xbb/xb0 <CJK> +<U00026F42> /x8e/xa7/xbb/xb1 <CJK> +<U455D> /x8e/xa7/xbb/xb2 <CJK> +<U00026F3F> /x8e/xa7/xbb/xb3 <CJK> +<U00026F7B> /x8e/xa7/xbb/xb4 <CJK> +<U00026F5D> /x8e/xa7/xbb/xb5 <CJK> +<U00026F94> /x8e/xa7/xbb/xb6 <CJK> +<U00026F6A> /x8e/xa7/xbb/xb7 <CJK> +<U000271F2> /x8e/xa7/xbb/xb9 <CJK> +<U000273BB> /x8e/xa7/xbb/xba <CJK> +<U0002741B> /x8e/xa7/xbb/xbb <CJK> +<U0002741A> /x8e/xa7/xbb/xbc <CJK> +<U00027433> /x8e/xa7/xbb/xbd <CJK> +<U00027417> /x8e/xa7/xbb/xbe <CJK> +<U0002740A> /x8e/xa7/xbb/xbf <CJK> +<U00027415> /x8e/xa7/xbb/xc0 <CJK> +<U00027412> /x8e/xa7/xbb/xc1 <CJK> +<U00027401> /x8e/xa7/xbb/xc2 <CJK> +<U0002742D> /x8e/xa7/xbb/xc3 <CJK> +<U000273FD> /x8e/xa7/xbb/xc4 <CJK> +<U00027423> /x8e/xa7/xbb/xc5 <CJK> +<U00027405> /x8e/xa7/xbb/xc6 <CJK> +<U00027411> /x8e/xa7/xbb/xc7 <CJK> +<U00027400> /x8e/xa7/xbb/xc8 <CJK> +<U0002741C> /x8e/xa7/xbb/xc9 <CJK> +<U00027435> /x8e/xa7/xbb/xca <CJK> +<U0002742E> /x8e/xa7/xbb/xcb <CJK> +<U00027436> /x8e/xa7/xbb/xcc <CJK> +<U00020ABF> /x8e/xa7/xbb/xcd <CJK> +<U0002742F> /x8e/xa7/xbb/xce <CJK> +<U0002740C> /x8e/xa7/xbb/xcf <CJK> +<U00027409> /x8e/xa7/xbb/xd0 <CJK> +<U00027431> /x8e/xa7/xbb/xd1 <CJK> +<U000273FC> /x8e/xa7/xbb/xd2 <CJK> +<U0002740F> /x8e/xa7/xbb/xd3 <CJK> +<U00027418> /x8e/xa7/xbb/xd4 <CJK> +<U00027402> /x8e/xa7/xbb/xd5 <CJK> +<U00027600> /x8e/xa7/xbb/xd6 <CJK> +<U0002771F> /x8e/xa7/xbb/xd7 <CJK> +<U00027737> /x8e/xa7/xbb/xd8 <CJK> +<U465A> /x8e/xa7/xbb/xd9 <CJK> +<U00027738> /x8e/xa7/xbb/xda <CJK> +<U0002772B> /x8e/xa7/xbb/xdb <CJK> +<U0002772E> /x8e/xa7/xbb/xdc <CJK> +<U00027721> /x8e/xa7/xbb/xdd <CJK> +<U00027730> /x8e/xa7/xbb/xde <CJK> +<U00027729> /x8e/xa7/xbb/xdf <CJK> +<U00027731> /x8e/xa7/xbb/xe0 <CJK> +<U00027701> /x8e/xa7/xbb/xe2 <CJK> +<U0002772C> /x8e/xa7/xbb/xe3 <CJK> +<U00027722> /x8e/xa7/xbb/xe4 <CJK> +<U000277FF> /x8e/xa7/xbb/xe5 <CJK> +<U00027877> /x8e/xa7/xbb/xe6 <CJK> +<U00027867> /x8e/xa7/xbb/xe7 <CJK> +<U0002787F> /x8e/xa7/xbb/xe8 <CJK> +<U0002787D> /x8e/xa7/xbb/xe9 <CJK> +<U0002787B> /x8e/xa7/xbb/xea <CJK> +<U0002787E> /x8e/xa7/xbb/xeb <CJK> +<U0002791E> /x8e/xa7/xbb/xec <CJK> +<U0002791C> /x8e/xa7/xbb/xed <CJK> +<U00027921> /x8e/xa7/xbb/xee <CJK> +<U00027926> /x8e/xa7/xbb/xef <CJK> +<U00027927> /x8e/xa7/xbb/xf0 <CJK> +<U00027929> /x8e/xa7/xbb/xf1 <CJK> +<U0002792C> /x8e/xa7/xbb/xf2 <CJK> +<U0002791D> /x8e/xa7/xbb/xf3 <CJK> +<U0002792B> /x8e/xa7/xbb/xf4 <CJK> +<U00027ABF> /x8e/xa7/xbb/xf5 <CJK> +<U00027AA4> /x8e/xa7/xbb/xf6 <CJK> +<U00027AAA> /x8e/xa7/xbb/xf7 <CJK> +<U00027AAE> /x8e/xa7/xbb/xf8 <CJK> +<U00027A9F> /x8e/xa7/xbb/xf9 <CJK> +<U00027AD0> /x8e/xa7/xbb/xfa <CJK> +<U00027AB1> /x8e/xa7/xbb/xfb <CJK> +<U00027AAD> /x8e/xa7/xbb/xfc <CJK> +<U00027A9B> /x8e/xa7/xbb/xfd <CJK> +<U00027AB2> /x8e/xa7/xbb/xfe <CJK> +<U00027AA9> /x8e/xa7/xbc/xa1 <CJK> +<U00027AB3> /x8e/xa7/xbc/xa2 <CJK> +<U00027AB4> /x8e/xa7/xbc/xa3 <CJK> +<U00027ABA> /x8e/xa7/xbc/xa4 <CJK> +<U00027AA5> /x8e/xa7/xbc/xa5 <CJK> +<U00027AB7> /x8e/xa7/xbc/xa6 <CJK> +<U00027AAC> /x8e/xa7/xbc/xa7 <CJK> +<U00027ACB> /x8e/xa7/xbc/xa8 <CJK> +<U00027ACF> /x8e/xa7/xbc/xa9 <CJK> +<U00027BC6> /x8e/xa7/xbc/xaa <CJK> +<U00027C01> /x8e/xa7/xbc/xab <CJK> +<U00027BFF> /x8e/xa7/xbc/xac <CJK> +<U00027BFD> /x8e/xa7/xbc/xad <CJK> +<U00027C77> /x8e/xa7/xbc/xae <CJK> +<U00027C78> /x8e/xa7/xbc/xaf <CJK> +<U00027C76> /x8e/xa7/xbc/xb0 <CJK> +<U00027CF7> /x8e/xa7/xbc/xb1 <CJK> +<U00027DCC> /x8e/xa7/xbc/xb2 <CJK> +<U4785> /x8e/xa7/xbc/xb3 <CJK> +<U00027DD4> /x8e/xa7/xbc/xb4 <CJK> +<U00027DD7> /x8e/xa7/xbc/xb5 <CJK> +<U00027DD5> /x8e/xa7/xbc/xb6 <CJK> +<U00027DD6> /x8e/xa7/xbc/xb7 <CJK> +<U00027DD3> /x8e/xa7/xbc/xb8 <CJK> +<U00027F5D> /x8e/xa7/xbc/xb9 <CJK> +<U00027F55> /x8e/xa7/xbc/xba <CJK> +<U000280E0> /x8e/xa7/xbc/xbb <CJK> +<U00028148> /x8e/xa7/xbc/xbc <CJK> +<U000280EE> /x8e/xa7/xbc/xbd <CJK> +<U000280DB> /x8e/xa7/xbc/xbe <CJK> +<U000280E7> /x8e/xa7/xbc/xbf <CJK> +<U000280D6> /x8e/xa7/xbc/xc0 <CJK> +<U000280E5> /x8e/xa7/xbc/xc1 <CJK> +<U000280E1> /x8e/xa7/xbc/xc2 <CJK> +<U000280DD> /x8e/xa7/xbc/xc3 <CJK> +<U000280E2> /x8e/xa7/xbc/xc4 <CJK> +<U00028270> /x8e/xa7/xbc/xc5 <CJK> +<U00028266> /x8e/xa7/xbc/xc6 <CJK> +<U0002826F> /x8e/xa7/xbc/xc7 <CJK> +<U0002826E> /x8e/xa7/xbc/xc8 <CJK> +<U00028381> /x8e/xa7/xbc/xc9 <CJK> +<U00028369> /x8e/xa7/xbc/xca <CJK> +<U0002836E> /x8e/xa7/xbc/xcb <CJK> +<U0002836D> /x8e/xa7/xbc/xcc <CJK> +<U0002836C> /x8e/xa7/xbc/xcd <CJK> +<U00028384> /x8e/xa7/xbc/xce <CJK> +<U00028385> /x8e/xa7/xbc/xcf <CJK> +<U00028371> /x8e/xa7/xbc/xd0 <CJK> +<U00028373> /x8e/xa7/xbc/xd1 <CJK> +<U0002836A> /x8e/xa7/xbc/xd2 <CJK> +<U0002836F> /x8e/xa7/xbc/xd3 <CJK> +<U0002837B> /x8e/xa7/xbc/xd4 <CJK> +<U0002856A> /x8e/xa7/xbc/xd5 <CJK> +<U0002857C> /x8e/xa7/xbc/xd6 <CJK> +<U0002857D> /x8e/xa7/xbc/xd7 <CJK> +<U00028581> /x8e/xa7/xbc/xd8 <CJK> +<U000285FA> /x8e/xa7/xbc/xd9 <CJK> +<U00028605> /x8e/xa7/xbc/xda <CJK> +<U000285EB> /x8e/xa7/xbc/xdb <CJK> +<U000285FB> /x8e/xa7/xbc/xdc <CJK> +<U000285E9> /x8e/xa7/xbc/xdd <CJK> +<U000285EF> /x8e/xa7/xbc/xde <CJK> +<U000285FC> /x8e/xa7/xbc/xdf <CJK> +<U000285E7> /x8e/xa7/xbc/xe0 <CJK> +<U000285EE> /x8e/xa7/xbc/xe2 <CJK> +<U000285FD> /x8e/xa7/xbc/xe3 <CJK> +<U00028732> /x8e/xa7/xbc/xe4 <CJK> +<U000287A7> /x8e/xa7/xbc/xe5 <CJK> +<U000287B5> /x8e/xa7/xbc/xe6 <CJK> +<U000287B1> /x8e/xa7/xbc/xe7 <CJK> +<U000287B9> /x8e/xa7/xbc/xe8 <CJK> +<U000287A8> /x8e/xa7/xbc/xe9 <CJK> +<U000287B3> /x8e/xa7/xbc/xea <CJK> +<U0002888A> /x8e/xa7/xbc/xec <CJK> +<U00028891> /x8e/xa7/xbc/xed <CJK> +<U0002888D> /x8e/xa7/xbc/xee <CJK> +<U00028899> /x8e/xa7/xbc/xef <CJK> +<U490B> /x8e/xa7/xbc/xf0 <CJK> +<U0002889A> /x8e/xa7/xbc/xf1 <CJK> +<U0002889B> /x8e/xa7/xbc/xf2 <CJK> +<U00028892> /x8e/xa7/xbc/xf3 <CJK> +<U0002888F> /x8e/xa7/xbc/xf4 <CJK> +<U000288AB> /x8e/xa7/xbc/xf5 <CJK> +<U00024CDB> /x8e/xa7/xbc/xf6 <CJK> +<U4939> /x8e/xa7/xbc/xf7 <CJK> +<U00028A75> /x8e/xa7/xbc/xf8 <CJK> +<U00028A31> /x8e/xa7/xbc/xf9 <CJK> +<U00028A38> /x8e/xa7/xbc/xfa <CJK> +<U4937> /x8e/xa7/xbc/xfb <CJK> +<U00028A35> /x8e/xa7/xbc/xfc <CJK> +<U00028A69> /x8e/xa7/xbc/xfd <CJK> +<U00028A3B> /x8e/xa7/xbc/xfe <CJK> +<U00028A3D> /x8e/xa7/xbd/xa1 <CJK> +<U00028A6C> /x8e/xa7/xbd/xa2 <CJK> +<U00028A79> /x8e/xa7/xbd/xa3 <CJK> +<U00028A3C> /x8e/xa7/xbd/xa4 <CJK> +<U00028A3E> /x8e/xa7/xbd/xa5 <CJK> +<U00028C97> /x8e/xa7/xbd/xa6 <CJK> +<U00028CA5> /x8e/xa7/xbd/xa7 <CJK> +<U00028CA2> /x8e/xa7/xbd/xa8 <CJK> +<U00028C9D> /x8e/xa7/xbd/xa9 <CJK> +<U00028CA1> /x8e/xa7/xbd/xaa <CJK> +<U00028D68> /x8e/xa7/xbd/xab <CJK> +<U00028D6F> /x8e/xa7/xbd/xac <CJK> +<U00028D6D> /x8e/xa7/xbd/xad <CJK> +<U00028D72> /x8e/xa7/xbd/xae <CJK> +<U00028D75> /x8e/xa7/xbd/xaf <CJK> +<U00028D77> /x8e/xa7/xbd/xb0 <CJK> +<U00028D79> /x8e/xa7/xbd/xb1 <CJK> +<U00028EB5> /x8e/xa7/xbd/xb2 <CJK> +<U00028EEA> /x8e/xa7/xbd/xb3 <CJK> +<U00028EAB> /x8e/xa7/xbd/xb4 <CJK> +<U00028F43> /x8e/xa7/xbd/xb5 <CJK> +<U00028F41> /x8e/xa7/xbd/xb6 <CJK> +<U00028F42> /x8e/xa7/xbd/xb7 <CJK> +<U00029009> /x8e/xa7/xbd/xb8 <CJK> +<U00029008> /x8e/xa7/xbd/xb9 <CJK> +<U00029006> /x8e/xa7/xbd/xba <CJK> +<U00029001> /x8e/xa7/xbd/xbb <CJK> +<U00029003> /x8e/xa7/xbd/xbc <CJK> +<U00029000> /x8e/xa7/xbd/xbd <CJK> +<U00029004> /x8e/xa7/xbd/xbe <CJK> +<U0002900A> /x8e/xa7/xbd/xbf <CJK> +<U0002900E> /x8e/xa7/xbd/xc0 <CJK> +<U0002900D> /x8e/xa7/xbd/xc1 <CJK> +<U00029007> /x8e/xa7/xbd/xc2 <CJK> +<U0002900F> /x8e/xa7/xbd/xc3 <CJK> +<U00029014> /x8e/xa7/xbd/xc4 <CJK> +<U00029002> /x8e/xa7/xbd/xc5 <CJK> +<U00029015> /x8e/xa7/xbd/xc6 <CJK> +<U0002900C> /x8e/xa7/xbd/xc7 <CJK> +<U00029010> /x8e/xa7/xbd/xc8 <CJK> +<U00029005> /x8e/xa7/xbd/xc9 <CJK> +<U000290FD> /x8e/xa7/xbd/xca <CJK> +<U000290FF> /x8e/xa7/xbd/xcb <CJK> +<U00029104> /x8e/xa7/xbd/xcc <CJK> +<U00029100> /x8e/xa7/xbd/xcd <CJK> +<U00029109> /x8e/xa7/xbd/xce <CJK> +<U0002922B> /x8e/xa7/xbd/xcf <CJK> +<U00029231> /x8e/xa7/xbd/xd1 <CJK> +<U000292DB> /x8e/xa7/xbd/xd2 <CJK> +<U000292C5> /x8e/xa7/xbd/xd3 <CJK> +<U000292D3> /x8e/xa7/xbd/xd4 <CJK> +<U000292CE> /x8e/xa7/xbd/xd5 <CJK> +<U4A6B> /x8e/xa7/xbd/xd6 <CJK> +<U000292C9> /x8e/xa7/xbd/xd7 <CJK> +<U000292BF> /x8e/xa7/xbd/xd8 <CJK> +<U000292CB> /x8e/xa7/xbd/xd9 <CJK> +<U000292C0> /x8e/xa7/xbd/xda <CJK> +<U000292D0> /x8e/xa7/xbd/xdb <CJK> +<U000292D4> /x8e/xa7/xbd/xdc <CJK> +<U000293C1> /x8e/xa7/xbd/xdd <CJK> +<U000293B9> /x8e/xa7/xbd/xde <CJK> +<U000293BB> /x8e/xa7/xbd/xdf <CJK> +<U000293C3> /x8e/xa7/xbd/xe0 <CJK> +<U000293C9> /x8e/xa7/xbd/xe1 <CJK> +<U00029407> /x8e/xa7/xbd/xe2 <CJK> +<U0002942D> /x8e/xa7/xbd/xe3 <CJK> +<U000294F8> /x8e/xa7/xbd/xe4 <CJK> +<U000294E1> /x8e/xa7/xbd/xe5 <CJK> +<U000294FA> /x8e/xa7/xbd/xe6 <CJK> +<U000294EF> /x8e/xa7/xbd/xe7 <CJK> +<U000294FD> /x8e/xa7/xbd/xe8 <CJK> +<U4ACD> /x8e/xa7/xbd/xe9 <CJK> +<U000294EB> /x8e/xa7/xbd/xea <CJK> +<U000294F1> /x8e/xa7/xbd/xeb <CJK> +<U000294ED> /x8e/xa7/xbd/xec <CJK> +<U000294FE> /x8e/xa7/xbd/xed <CJK> +<U000295F8> /x8e/xa7/xbd/xee <CJK> +<U00029603> /x8e/xa7/xbd/xef <CJK> +<U000295EE> /x8e/xa7/xbd/xf0 <CJK> +<U000295E8> /x8e/xa7/xbd/xf1 <CJK> +<U00029601> /x8e/xa7/xbd/xf2 <CJK> +<U000296EC> /x8e/xa7/xbd/xf3 <CJK> +<U00029722> /x8e/xa7/xbd/xf4 <CJK> +<U00029714> /x8e/xa7/xbd/xf5 <CJK> +<U00029734> /x8e/xa7/xbd/xf6 <CJK> +<U0002972F> /x8e/xa7/xbd/xf7 <CJK> +<U00029739> /x8e/xa7/xbd/xf8 <CJK> +<U00029741> /x8e/xa7/xbd/xf9 <CJK> +<U0002973C> /x8e/xa7/xbd/xfa <CJK> +<U00029749> /x8e/xa7/xbd/xfb <CJK> +<U00029758> /x8e/xa7/xbd/xfc <CJK> +<U0002973A> /x8e/xa7/xbd/xfd <CJK> +<U00029742> /x8e/xa7/xbd/xfe <CJK> +<U0002973F> /x8e/xa7/xbe/xa1 <CJK> +<U00029822> /x8e/xa7/xbe/xa2 <CJK> +<U00029823> /x8e/xa7/xbe/xa3 <CJK> +<U0002984A> /x8e/xa7/xbe/xa4 <CJK> +<U000298DC> /x8e/xa7/xbe/xa5 <CJK> +<U000298D9> /x8e/xa7/xbe/xa6 <CJK> +<U000298DB> /x8e/xa7/xbe/xa7 <CJK> +<U000298E2> /x8e/xa7/xbe/xa8 <CJK> +<U000298DF> /x8e/xa7/xbe/xaa <CJK> +<U000298E0> /x8e/xa7/xbe/xab <CJK> +<U000298D7> /x8e/xa7/xbe/xac <CJK> +<U00029A4F> /x8e/xa7/xbe/xad <CJK> +<U00029A46> /x8e/xa7/xbe/xae <CJK> +<U00029A53> /x8e/xa7/xbe/xaf <CJK> +<U00029A55> /x8e/xa7/xbe/xb0 <CJK> +<U00029A4E> /x8e/xa7/xbe/xb1 <CJK> +<U00029A4A> /x8e/xa7/xbe/xb2 <CJK> +<U00029A4C> /x8e/xa7/xbe/xb3 <CJK> +<U00029A63> /x8e/xa7/xbe/xb4 <CJK> +<U00029B51> /x8e/xa7/xbe/xb5 <CJK> +<U00029B53> /x8e/xa7/xbe/xb6 <CJK> +<U00029B58> /x8e/xa7/xbe/xb7 <CJK> +<U00029B4D> /x8e/xa7/xbe/xb8 <CJK> +<U00029B5A> /x8e/xa7/xbe/xb9 <CJK> +<U00029B49> /x8e/xa7/xbe/xba <CJK> +<U00029B5D> /x8e/xa7/xbe/xbb <CJK> +<U00029C12> /x8e/xa7/xbe/xbc <CJK> +<U00029C3C> /x8e/xa7/xbe/xbd <CJK> +<U00029CD1> /x8e/xa7/xbe/xbe <CJK> +<U00029CDF> /x8e/xa7/xbe/xbf <CJK> +<U00029CD6> /x8e/xa7/xbe/xc0 <CJK> +<U00029CD8> /x8e/xa7/xbe/xc1 <CJK> +<U00029CE0> /x8e/xa7/xbe/xc2 <CJK> +<U00029CD9> /x8e/xa7/xbe/xc3 <CJK> +<U00029DB1> /x8e/xa7/xbe/xc4 <CJK> +<U00029DAC> /x8e/xa7/xbe/xc5 <CJK> +<U00029DAA> /x8e/xa7/xbe/xc6 <CJK> +<U00029DEE> /x8e/xa7/xbe/xc7 <CJK> +<U00029DBD> /x8e/xa7/xbe/xc8 <CJK> +<U4C4D> /x8e/xa7/xbe/xc9 <CJK> +<U00029DC3> /x8e/xa7/xbe/xca <CJK> +<U00029DA8> /x8e/xa7/xbe/xcb <CJK> +<U00029DAE> /x8e/xa7/xbe/xcc <CJK> +<U00029DAB> /x8e/xa7/xbe/xcd <CJK> +<U0002A01D> /x8e/xa7/xbe/xce <CJK> +<U0002A027> /x8e/xa7/xbe/xcf <CJK> +<U0002A038> /x8e/xa7/xbe/xd0 <CJK> +<U0002A012> /x8e/xa7/xbe/xd1 <CJK> +<U0002A048> /x8e/xa7/xbe/xd2 <CJK> +<U0002A02B> /x8e/xa7/xbe/xd3 <CJK> +<U0002A016> /x8e/xa7/xbe/xd4 <CJK> +<U0002A019> /x8e/xa7/xbe/xd5 <CJK> +<U0002A03D> /x8e/xa7/xbe/xd6 <CJK> +<U0002A023> /x8e/xa7/xbe/xd7 <CJK> +<U0002A02A> /x8e/xa7/xbe/xd8 <CJK> +<U0002A264> /x8e/xa7/xbe/xd9 <CJK> +<U0002A2AD> /x8e/xa7/xbe/xda <CJK> +<U0002A2AC> /x8e/xa7/xbe/xdb <CJK> +<U0002A2B1> /x8e/xa7/xbe/xdd <CJK> +<U0002A2AF> /x8e/xa7/xbe/xde <CJK> +<U0002A32C> /x8e/xa7/xbe/xdf <CJK> +<U0002A324> /x8e/xa7/xbe/xe0 <CJK> +<U0002A325> /x8e/xa7/xbe/xe1 <CJK> +<U0002A328> /x8e/xa7/xbe/xe2 <CJK> +<U0002A3F9> /x8e/xa7/xbe/xe3 <CJK> +<U0002A3F7> /x8e/xa7/xbe/xe4 <CJK> +<U0002A3FD> /x8e/xa7/xbe/xe5 <CJK> +<U0002A3FE> /x8e/xa7/xbe/xe6 <CJK> +<U0002A439> /x8e/xa7/xbe/xe7 <CJK> +<U0002A433> /x8e/xa7/xbe/xe8 <CJK> +<U0002A4D7> /x8e/xa7/xbe/xe9 <CJK> +<U0002A4D8> /x8e/xa7/xbe/xea <CJK> +<U0002A4E4> /x8e/xa7/xbe/xeb <CJK> +<U000214A1> /x8e/xa7/xbe/xec <CJK> +<U0002A50E> /x8e/xa7/xbe/xed <CJK> +<U0002A53B> /x8e/xa7/xbe/xee <CJK> +<U0002A544> /x8e/xa7/xbe/xef <CJK> +<U0002A542> /x8e/xa7/xbe/xf0 <CJK> +<U0002A594> /x8e/xa7/xbe/xf1 <CJK> +<U0002A593> /x8e/xa7/xbe/xf2 <CJK> +<U0002A5D5> /x8e/xa7/xbe/xf3 <CJK> +<U0002A6A7> /x8e/xa7/xbe/xf4 <CJK> +<U00020431> /x8e/xa7/xbe/xf5 <CJK> +<U00020423> /x8e/xa7/xbe/xf6 <CJK> +<U00020428> /x8e/xa7/xbe/xf7 <CJK> +<U00020427> /x8e/xa7/xbe/xf8 <CJK> +<U000204C6> /x8e/xa7/xbe/xf9 <CJK> +<U000205A3> /x8e/xa7/xbe/xfa <CJK> +<U00020621> /x8e/xa7/xbe/xfb <CJK> +<U0002081B> /x8e/xa7/xbe/xfc <CJK> +<U3510> /x8e/xa7/xbe/xfd <CJK> +<U000208C1> /x8e/xa7/xbe/xfe <CJK> +<U000208C3> /x8e/xa7/xbf/xa1 <CJK> +<U0002092A> /x8e/xa7/xbf/xa2 <CJK> +<U00020969> /x8e/xa7/xbf/xa3 <CJK> +<U00020A27> /x8e/xa7/xbf/xa4 <CJK> +<U000210B6> /x8e/xa7/xbf/xa5 <CJK> +<U000210A7> /x8e/xa7/xbf/xa6 <CJK> +<U000210A4> /x8e/xa7/xbf/xa7 <CJK> +<U000210A6> /x8e/xa7/xbf/xa8 <CJK> +<U00021090> /x8e/xa7/xbf/xa9 <CJK> +<U0002109E> /x8e/xa7/xbf/xaa <CJK> +<U00021094> /x8e/xa7/xbf/xab <CJK> +<U000210A8> /x8e/xa7/xbf/xac <CJK> +<U000210A5> /x8e/xa7/xbf/xad <CJK> +<U000210A2> /x8e/xa7/xbf/xae <CJK> +<U00021091> /x8e/xa7/xbf/xaf <CJK> +<U367B> /x8e/xa7/xbf/xb0 <CJK> +<U000214BC> /x8e/xa7/xbf/xb1 <CJK> +<U000214BD> /x8e/xa7/xbf/xb2 <CJK> +<U000214B4> /x8e/xa7/xbf/xb3 <CJK> +<U000214B0> /x8e/xa7/xbf/xb4 <CJK> +<U000214E4> /x8e/xa7/xbf/xb5 <CJK> +<U00021545> /x8e/xa7/xbf/xb6 <CJK> +<U0002154B> /x8e/xa7/xbf/xb7 <CJK> +<U0002157E> /x8e/xa7/xbf/xb8 <CJK> +<U0002157F> /x8e/xa7/xbf/xb9 <CJK> +<U0002157D> /x8e/xa7/xbf/xba <CJK> +<U000215C3> /x8e/xa7/xbf/xbb <CJK> +<U000218FC> /x8e/xa7/xbf/xbc <CJK> +<U000218F7> /x8e/xa7/xbf/xbd <CJK> +<U000218F0> /x8e/xa7/xbf/xbe <CJK> +<U000218ED> /x8e/xa7/xbf/xbf <CJK> +<U000218F1> /x8e/xa7/xbf/xc0 <CJK> +<U000218F8> /x8e/xa7/xbf/xc1 <CJK> +<U00021AE9> /x8e/xa7/xbf/xc2 <CJK> +<U00021CEB> /x8e/xa7/xbf/xc3 <CJK> +<U381D> /x8e/xa7/xbf/xc4 <CJK> +<U00021F90> /x8e/xa7/xbf/xc5 <CJK> +<U00021F8D> /x8e/xa7/xbf/xc6 <CJK> +<U00021F86> /x8e/xa7/xbf/xc7 <CJK> +<U00021F91> /x8e/xa7/xbf/xc8 <CJK> +<U00021F8A> /x8e/xa7/xbf/xc9 <CJK> +<U00022008> /x8e/xa7/xbf/xca <CJK> +<U00022050> /x8e/xa7/xbf/xcb <CJK> +<U000222EA> /x8e/xa7/xbf/xcc <CJK> +<U000222E6> /x8e/xa7/xbf/xcd <CJK> +<U000222E2> /x8e/xa7/xbf/xce <CJK> +<U000222E7> /x8e/xa7/xbf/xcf <CJK> +<U000222ED> /x8e/xa7/xbf/xd0 <CJK> +<U000222E1> /x8e/xa7/xbf/xd1 <CJK> +<U00022434> /x8e/xa7/xbf/xd2 <CJK> +<U00022476> /x8e/xa7/xbf/xd3 <CJK> +<U00022475> /x8e/xa7/xbf/xd4 <CJK> +<U00022473> /x8e/xa7/xbf/xd5 <CJK> +<U000224B5> /x8e/xa7/xbf/xd6 <CJK> +<U00022590> /x8e/xa7/xbf/xd7 <CJK> +<U00022592> /x8e/xa7/xbf/xd8 <CJK> +<U000228E1> /x8e/xa7/xbf/xd9 <CJK> +<U000228DF> /x8e/xa7/xbf/xda <CJK> +<U000228D5> /x8e/xa7/xbf/xdb <CJK> +<U000228F2> /x8e/xa7/xbf/xdc <CJK> +<U000228FE> /x8e/xa7/xbf/xdd <CJK> +<U00022913> /x8e/xa7/xbf/xde <CJK> +<U0002292E> /x8e/xa7/xbf/xdf <CJK> +<U00022A19> /x8e/xa7/xbf/xe0 <CJK> +<U00022E08> /x8e/xa7/xbf/xe1 <CJK> +<U64F5> /x8e/xa7/xbf/xe2 <CJK> +<U00022E05> /x8e/xa7/xbf/xe3 <CJK> +<U00022E09> /x8e/xa7/xbf/xe4 <CJK> +<U00022E06> /x8e/xa7/xbf/xe5 <CJK> +<U00022E03> /x8e/xa7/xbf/xe6 <CJK> +<U00022DFD> /x8e/xa7/xbf/xe7 <CJK> +<U00022DFC> /x8e/xa7/xbf/xe8 <CJK> +<U00022E02> /x8e/xa7/xbf/xe9 <CJK> +<U00022E42> /x8e/xa7/xbf/xea <CJK> +<U0002301A> /x8e/xa7/xbf/xeb <CJK> +<U00023011> /x8e/xa7/xbf/xec <CJK> +<U00023015> /x8e/xa7/xbf/xed <CJK> +<U00023016> /x8e/xa7/xbf/xee <CJK> +<U000230CC> /x8e/xa7/xbf/xef <CJK> +<U000230CF> /x8e/xa7/xbf/xf0 <CJK> +<U000230D0> /x8e/xa7/xbf/xf1 <CJK> +<U00023122> /x8e/xa7/xbf/xf2 <CJK> +<U0002311E> /x8e/xa7/xbf/xf3 <CJK> +<U00023121> /x8e/xa7/xbf/xf4 <CJK> +<U000232E5> /x8e/xa7/xbf/xf5 <CJK> +<U3B27> /x8e/xa7/xbf/xf6 <CJK> +<U00023354> /x8e/xa7/xbf/xf7 <CJK> +<U000232EF> /x8e/xa7/xbf/xf8 <CJK> +<U00023353> /x8e/xa7/xbf/xf9 <CJK> +<U00023351> /x8e/xa7/xbf/xfa <CJK> +<U000233AD> /x8e/xa7/xbf/xfb <CJK> +<U00023767> /x8e/xa7/xbf/xfc <CJK> +<U00023768> /x8e/xa7/xbf/xfd <CJK> +<U000237A4> /x8e/xa7/xbf/xfe <CJK> +<U00023777> /x8e/xa7/xc0/xa1 <CJK> +<U00023789> /x8e/xa7/xc0/xa2 <CJK> +<U00023744> /x8e/xa7/xc0/xa3 <CJK> +<U0002378B> /x8e/xa7/xc0/xa4 <CJK> +<U00023779> /x8e/xa7/xc0/xa5 <CJK> +<U0002375B> /x8e/xa7/xc0/xa6 <CJK> +<U00023743> /x8e/xa7/xc0/xa7 <CJK> +<U00023757> /x8e/xa7/xc0/xa8 <CJK> +<U0002374A> /x8e/xa7/xc0/xa9 <CJK> +<U0002377C> /x8e/xa7/xc0/xaa <CJK> +<U00023746> /x8e/xa7/xc0/xab <CJK> +<U0002377B> /x8e/xa7/xc0/xac <CJK> +<U00023756> /x8e/xa7/xc0/xad <CJK> +<U000239A8> /x8e/xa7/xc0/xae <CJK> +<U00023A76> /x8e/xa7/xc0/xaf <CJK> +<U00023A72> /x8e/xa7/xc0/xb0 <CJK> +<U00023AD6> /x8e/xa7/xc0/xb1 <CJK> +<U00023AD8> /x8e/xa7/xc0/xb2 <CJK> +<U00023AD1> /x8e/xa7/xc0/xb3 <CJK> +<U00023C22> /x8e/xa7/xc0/xb4 <CJK> +<U00023C20> /x8e/xa7/xc0/xb5 <CJK> +<U00023C23> /x8e/xa7/xc0/xb6 <CJK> +<U00023C1E> /x8e/xa7/xc0/xb7 <CJK> +<U00023C6E> /x8e/xa7/xc0/xb8 <CJK> +<U000240A3> /x8e/xa7/xc0/xb9 <CJK> +<U00024077> /x8e/xa7/xc0/xba <CJK> +<U000240A6> /x8e/xa7/xc0/xbb <CJK> +<U0002406D> /x8e/xa7/xc0/xbc <CJK> +<U000240A2> /x8e/xa7/xc0/xbd <CJK> +<U0002407C> /x8e/xa7/xc0/xbe <CJK> +<U00024084> /x8e/xa7/xc0/xbf <CJK> +<U00024068> /x8e/xa7/xc0/xc0 <CJK> +<U00024074> /x8e/xa7/xc0/xc1 <CJK> +<U00024086> /x8e/xa7/xc0/xc2 <CJK> +<U000240A5> /x8e/xa7/xc0/xc3 <CJK> +<U0002407B> /x8e/xa7/xc0/xc4 <CJK> +<U0002407A> /x8e/xa7/xc0/xc5 <CJK> +<U00024069> /x8e/xa7/xc0/xc6 <CJK> +<U00024072> /x8e/xa7/xc0/xc7 <CJK> +<U00024076> /x8e/xa7/xc0/xc8 <CJK> +<U0002444A> /x8e/xa7/xc0/xc9 <CJK> +<U00024437> /x8e/xa7/xc0/xca <CJK> +<U0002442A> /x8e/xa7/xc0/xcb <CJK> +<U0002442D> /x8e/xa7/xc0/xcc <CJK> +<U00024446> /x8e/xa7/xc0/xcd <CJK> +<U00024428> /x8e/xa7/xc0/xce <CJK> +<U00024426> /x8e/xa7/xc0/xcf <CJK> +<U00024442> /x8e/xa7/xc0/xd0 <CJK> +<U0002442C> /x8e/xa7/xc0/xd1 <CJK> +<U00024438> /x8e/xa7/xc0/xd2 <CJK> +<U0002442B> /x8e/xa7/xc0/xd3 <CJK> +<U00024433> /x8e/xa7/xc0/xd4 <CJK> +<U00024445> /x8e/xa7/xc0/xd5 <CJK> +<U00024539> /x8e/xa7/xc0/xd6 <CJK> +<U000246F9> /x8e/xa7/xc0/xd7 <CJK> +<U000246FA> /x8e/xa7/xc0/xd8 <CJK> +<U000248B8> /x8e/xa7/xc0/xd9 <CJK> +<U000248B7> /x8e/xa7/xc0/xda <CJK> +<U000248BB> /x8e/xa7/xc0/xdb <CJK> +<U000248B9> /x8e/xa7/xc0/xdc <CJK> +<U000248B4> /x8e/xa7/xc0/xdd <CJK> +<U00024A6F> /x8e/xa7/xc0/xde <CJK> +<U00024A87> /x8e/xa7/xc0/xdf <CJK> +<U00024A8F> /x8e/xa7/xc0/xe0 <CJK> +<U00024AA2> /x8e/xa7/xc0/xe1 <CJK> +<U00024AA3> /x8e/xa7/xc0/xe2 <CJK> +<U00024B9B> /x8e/xa7/xc0/xe4 <CJK> +<U00024B9D> /x8e/xa7/xc0/xe5 <CJK> +<U00024BCE> /x8e/xa7/xc0/xe6 <CJK> +<U3FCF> /x8e/xa7/xc0/xe7 <CJK> +<U00024EBD> /x8e/xa7/xc0/xe8 <CJK> +<U00024EBF> /x8e/xa7/xc0/xe9 <CJK> +<U00024E92> /x8e/xa7/xc0/xea <CJK> +<U3FCD> /x8e/xa7/xc0/xeb <CJK> +<U00024EEF> /x8e/xa7/xc0/xec <CJK> +<U00024EC9> /x8e/xa7/xc0/xed <CJK> +<U00024FA4> /x8e/xa7/xc0/xee <CJK> +<U00024FA8> /x8e/xa7/xc0/xef <CJK> +<U00024FAA> /x8e/xa7/xc0/xf0 <CJK> +<U00025028> /x8e/xa7/xc0/xf1 <CJK> +<U00025024> /x8e/xa7/xc0/xf2 <CJK> +<U00025025> /x8e/xa7/xc0/xf3 <CJK> +<U00025026> /x8e/xa7/xc0/xf4 <CJK> +<U000250A9> /x8e/xa7/xc0/xf5 <CJK> +<U000250BA> /x8e/xa7/xc0/xf6 <CJK> +<U000250BE> /x8e/xa7/xc0/xf7 <CJK> +<U000250BC> /x8e/xa7/xc0/xf8 <CJK> +<U000250C0> /x8e/xa7/xc0/xf9 <CJK> +<U000252F0> /x8e/xa7/xc0/xfa <CJK> +<U000252DF> /x8e/xa7/xc0/xfb <CJK> +<U000252E0> /x8e/xa7/xc0/xfc <CJK> +<U000252ED> /x8e/xa7/xc0/xfd <CJK> +<U000252DB> /x8e/xa7/xc0/xfe <CJK> +<U000252FB> /x8e/xa7/xc1/xa1 <CJK> +<U000252B9> /x8e/xa7/xc1/xa2 <CJK> +<U000252DA> /x8e/xa7/xc1/xa3 <CJK> +<U000252EB> /x8e/xa7/xc1/xa4 <CJK> +<U000252EC> /x8e/xa7/xc1/xa5 <CJK> +<U0002559A> /x8e/xa7/xc1/xa6 <CJK> +<U0002559F> /x8e/xa7/xc1/xa7 <CJK> +<U0002559B> /x8e/xa7/xc1/xa8 <CJK> +<U00025597> /x8e/xa7/xc1/xa9 <CJK> +<U000255A1> /x8e/xa7/xc1/xaa <CJK> +<U0002570F> /x8e/xa7/xc1/xab <CJK> +<U00025705> /x8e/xa7/xc1/xac <CJK> +<U00025748> /x8e/xa7/xc1/xad <CJK> +<U4182> /x8e/xa7/xc1/xae <CJK> +<U000258BC> /x8e/xa7/xc1/xaf <CJK> +<U000258BA> /x8e/xa7/xc1/xb0 <CJK> +<U00025ABF> /x8e/xa7/xc1/xb1 <CJK> +<U00025D01> /x8e/xa7/xc1/xb2 <CJK> +<U00025CE8> /x8e/xa7/xc1/xb3 <CJK> +<U00025CEF> /x8e/xa7/xc1/xb4 <CJK> +<U00025CE4> /x8e/xa7/xc1/xb5 <CJK> +<U00025CE6> /x8e/xa7/xc1/xb6 <CJK> +<U00025D02> /x8e/xa7/xc1/xb7 <CJK> +<U00025CEB> /x8e/xa7/xc1/xb8 <CJK> +<U00025CE0> /x8e/xa7/xc1/xb9 <CJK> +<U00025CED> /x8e/xa7/xc1/xba <CJK> +<U00025CD9> /x8e/xa7/xc1/xbb <CJK> +<U00025D14> /x8e/xa7/xc1/xbd <CJK> +<U00025CEE> /x8e/xa7/xc1/xbe <CJK> +<U4252> /x8e/xa7/xc1/xbf <CJK> +<U00025D13> /x8e/xa7/xc1/xc0 <CJK> +<U00025CF9> /x8e/xa7/xc1/xc1 <CJK> +<U00025CF8> /x8e/xa7/xc1/xc2 <CJK> +<U00025F25> /x8e/xa7/xc1/xc3 <CJK> +<U00025F19> /x8e/xa7/xc1/xc5 <CJK> +<U00025F20> /x8e/xa7/xc1/xc6 <CJK> +<U00025F43> /x8e/xa7/xc1/xc7 <CJK> +<U00025F3F> /x8e/xa7/xc1/xc8 <CJK> +<U00026145> /x8e/xa7/xc1/xc9 <CJK> +<U0002614C> /x8e/xa7/xc1/xca <CJK> +<U00026149> /x8e/xa7/xc1/xcb <CJK> +<U0002614F> /x8e/xa7/xc1/xcc <CJK> +<U00026141> /x8e/xa7/xc1/xcd <CJK> +<U0002613E> /x8e/xa7/xc1/xce <CJK> +<U0002614D> /x8e/xa7/xc1/xcf <CJK> +<U00026152> /x8e/xa7/xc1/xd0 <CJK> +<U0002614A> /x8e/xa7/xc1/xd1 <CJK> +<U0002614E> /x8e/xa7/xc1/xd2 <CJK> +<U00026173> /x8e/xa7/xc1/xd3 <CJK> +<U00026142> /x8e/xa7/xc1/xd4 <CJK> +<U00026151> /x8e/xa7/xc1/xd5 <CJK> +<U00026155> /x8e/xa7/xc1/xd6 <CJK> +<U00026150> /x8e/xa7/xc1/xd7 <CJK> +<U0002616C> /x8e/xa7/xc1/xd8 <CJK> +<U0002616A> /x8e/xa7/xc1/xda <CJK> +<U00026153> /x8e/xa7/xc1/xdb <CJK> +<U00026168> /x8e/xa7/xc1/xdc <CJK> +<U00026255> /x8e/xa7/xc1/xdd <CJK> +<U00026256> /x8e/xa7/xc1/xde <CJK> +<U0002631C> /x8e/xa7/xc1/xdf <CJK> +<U0002631D> /x8e/xa7/xc1/xe0 <CJK> +<U7F80> /x8e/xa7/xc1/xe1 <CJK> +<U0002631E> /x8e/xa7/xc1/xe2 <CJK> +<U00026323> /x8e/xa7/xc1/xe3 <CJK> +<U0002631F> /x8e/xa7/xc1/xe4 <CJK> +<U000263E1> /x8e/xa7/xc1/xe5 <CJK> +<U000263CD> /x8e/xa7/xc1/xe6 <CJK> +<U000263CB> /x8e/xa7/xc1/xe7 <CJK> +<U000263CC> /x8e/xa7/xc1/xe8 <CJK> +<U000263C8> /x8e/xa7/xc1/xe9 <CJK> +<U000263C9> /x8e/xa7/xc1/xea <CJK> +<U0002649B> /x8e/xa7/xc1/xeb <CJK> +<U00026494> /x8e/xa7/xc1/xec <CJK> +<U00026492> /x8e/xa7/xc1/xed <CJK> +<U00026496> /x8e/xa7/xc1/xee <CJK> +<U00026493> /x8e/xa7/xc1/xef <CJK> +<U00026495> /x8e/xa7/xc1/xf0 <CJK> +<U0002648F> /x8e/xa7/xc1/xf1 <CJK> +<U0002651D> /x8e/xa7/xc1/xf2 <CJK> +<U00026522> /x8e/xa7/xc1/xf3 <CJK> +<U00026521> /x8e/xa7/xc1/xf4 <CJK> +<U000265E9> /x8e/xa7/xc1/xf5 <CJK> +<U000265EF> /x8e/xa7/xc1/xf6 <CJK> +<U000265E0> /x8e/xa7/xc1/xf7 <CJK> +<U000265E6> /x8e/xa7/xc1/xf8 <CJK> +<U000265E4> /x8e/xa7/xc1/xf9 <CJK> +<U00026829> /x8e/xa7/xc1/xfa <CJK> +<U0002682C> /x8e/xa7/xc1/xfb <CJK> +<U00026876> /x8e/xa7/xc1/xfc <CJK> +<U00026883> /x8e/xa7/xc1/xfd <CJK> +<U00026878> /x8e/xa7/xc1/xfe <CJK> +<U0002683C> /x8e/xa7/xc2/xa1 <CJK> +<U00024443> /x8e/xa7/xc2/xa2 <CJK> +<U0002687A> /x8e/xa7/xc2/xa3 <CJK> +<U4451> /x8e/xa7/xc2/xa4 <CJK> +<U000268F2> /x8e/xa7/xc2/xa5 <CJK> +<U0002699E> /x8e/xa7/xc2/xa6 <CJK> +<U0002699B> /x8e/xa7/xc2/xa7 <CJK> +<U0002699A> /x8e/xa7/xc2/xa8 <CJK> +<U000269F6> /x8e/xa7/xc2/xa9 <CJK> +<U000269F5> /x8e/xa7/xc2/xaa <CJK> +<U00026AA5> /x8e/xa7/xc2/xab <CJK> +<U00026A93> /x8e/xa7/xc2/xac <CJK> +<U00026AA4> /x8e/xa7/xc2/xad <CJK> +<U00026E82> /x8e/xa7/xc2/xae <CJK> +<U00026EC7> /x8e/xa7/xc2/xaf <CJK> +<U00026FB7> /x8e/xa7/xc2/xb0 <CJK> +<U0002701D> /x8e/xa7/xc2/xb1 <CJK> +<U00026FE2> /x8e/xa7/xc2/xb2 <CJK> +<U00026FD7> /x8e/xa7/xc2/xb3 <CJK> +<U00026FE3> /x8e/xa7/xc2/xb4 <CJK> +<U00026FE4> /x8e/xa7/xc2/xb5 <CJK> +<U00026FBC> /x8e/xa7/xc2/xb6 <CJK> +<U00026FD3> /x8e/xa7/xc2/xb7 <CJK> +<U455A> /x8e/xa7/xc2/xb8 <CJK> +<U00026F5A> /x8e/xa7/xc2/xb9 <CJK> +<U00026FD2> /x8e/xa7/xc2/xba <CJK> +<U00026F2D> /x8e/xa7/xc2/xbb <CJK> +<U00026FC4> /x8e/xa7/xc2/xbd <CJK> +<U00026FD0> /x8e/xa7/xc2/xbe <CJK> +<U00026FE5> /x8e/xa7/xc2/xbf <CJK> +<U00027005> /x8e/xa7/xc2/xc0 <CJK> +<U00027007> /x8e/xa7/xc2/xc1 <CJK> +<U00026FE6> /x8e/xa7/xc2/xc2 <CJK> +<U0002701B> /x8e/xa7/xc2/xc3 <CJK> +<U00026FE7> /x8e/xa7/xc2/xc4 <CJK> +<U00026FD8> /x8e/xa7/xc2/xc5 <CJK> +<U00026FBE> /x8e/xa7/xc2/xc6 <CJK> +<U00027017> /x8e/xa7/xc2/xc7 <CJK> +<U00026FB4> /x8e/xa7/xc2/xc8 <CJK> +<U00026FD9> /x8e/xa7/xc2/xc9 <CJK> +<U00026FE8> /x8e/xa7/xc2/xca <CJK> +<U00026FAD> /x8e/xa7/xc2/xcb <CJK> +<U00026FAF> /x8e/xa7/xc2/xcc <CJK> +<U00026FC8> /x8e/xa7/xc2/xcd <CJK> +<U00026FE9> /x8e/xa7/xc2/xce <CJK> +<U00026FEA> /x8e/xa7/xc2/xcf <CJK> +<U000271FE> /x8e/xa7/xc2/xd0 <CJK> +<U000271FB> /x8e/xa7/xc2/xd1 <CJK> +<U00027200> /x8e/xa7/xc2/xd2 <CJK> +<U00027472> /x8e/xa7/xc2/xd3 <CJK> +<U00027470> /x8e/xa7/xc2/xd4 <CJK> +<U00027446> /x8e/xa7/xc2/xd5 <CJK> +<U00027459> /x8e/xa7/xc2/xd6 <CJK> +<U0002745E> /x8e/xa7/xc2/xd7 <CJK> +<U00027448> /x8e/xa7/xc2/xd8 <CJK> +<U0002744F> /x8e/xa7/xc2/xd9 <CJK> +<U00027471> /x8e/xa7/xc2/xda <CJK> +<U00027460> /x8e/xa7/xc2/xdb <CJK> +<U0002745F> /x8e/xa7/xc2/xdc <CJK> +<U0002746E> /x8e/xa7/xc2/xdd <CJK> +<U00027473> /x8e/xa7/xc2/xde <CJK> +<U00027447> /x8e/xa7/xc2/xe1 <CJK> +<U0002746D> /x8e/xa7/xc2/xe2 <CJK> +<U0002746F> /x8e/xa7/xc2/xe3 <CJK> +<U00027481> /x8e/xa7/xc2/xe4 <CJK> +<U0002746C> /x8e/xa7/xc2/xe5 <CJK> +<U00027478> /x8e/xa7/xc2/xe6 <CJK> +<U00027483> /x8e/xa7/xc2/xe7 <CJK> +<U00027449> /x8e/xa7/xc2/xe8 <CJK> +<U00027468> /x8e/xa7/xc2/xe9 <CJK> +<U00027474> /x8e/xa7/xc2/xea <CJK> +<U00027463> /x8e/xa7/xc2/xeb <CJK> +<U0002746A> /x8e/xa7/xc2/xec <CJK> +<U00026885> /x8e/xa7/xc2/xed <CJK> +<U00027465> /x8e/xa7/xc2/xee <CJK> +<U00027462> /x8e/xa7/xc2/xef <CJK> +<U000274C8> /x8e/xa7/xc2/xf0 <CJK> +<U000275D0> /x8e/xa7/xc2/xf1 <CJK> +<U000275D4> /x8e/xa7/xc2/xf2 <CJK> +<U000275D1> /x8e/xa7/xc2/xf3 <CJK> +<U00027603> /x8e/xa7/xc2/xf4 <CJK> +<U00027742> /x8e/xa7/xc2/xf5 <CJK> +<U00027763> /x8e/xa7/xc2/xf6 <CJK> +<U00027756> /x8e/xa7/xc2/xf7 <CJK> +<U0002775B> /x8e/xa7/xc2/xf8 <CJK> +<U00027755> /x8e/xa7/xc2/xf9 <CJK> +<U00027750> /x8e/xa7/xc2/xfa <CJK> +<U0002772D> /x8e/xa7/xc2/xfb <CJK> +<U00027744> /x8e/xa7/xc2/xfc <CJK> +<U00027748> /x8e/xa7/xc2/xfd <CJK> +<U00027745> /x8e/xa7/xc2/xfe <CJK> +<U00027782> /x8e/xa7/xc3/xa1 <CJK> +<U4665> /x8e/xa7/xc3/xa2 <CJK> +<U00027762> /x8e/xa7/xc3/xa3 <CJK> +<U00027885> /x8e/xa7/xc3/xa4 <CJK> +<U0002788D> /x8e/xa7/xc3/xa5 <CJK> +<U00027936> /x8e/xa7/xc3/xa6 <CJK> +<U0002792F> /x8e/xa7/xc3/xa7 <CJK> +<U00027931> /x8e/xa7/xc3/xa8 <CJK> +<U00027937> /x8e/xa7/xc3/xa9 <CJK> +<U00027AA7> /x8e/xa7/xc3/xaa <CJK> +<U00027AD9> /x8e/xa7/xc3/xab <CJK> +<U00027AF0> /x8e/xa7/xc3/xac <CJK> +<U00027AF2> /x8e/xa7/xc3/xad <CJK> +<U00027AFD> /x8e/xa7/xc3/xae <CJK> +<U00027AE8> /x8e/xa7/xc3/xaf <CJK> +<U00027AEB> /x8e/xa7/xc3/xb0 <CJK> +<U00027AEE> /x8e/xa7/xc3/xb1 <CJK> +<U00027AE0> /x8e/xa7/xc3/xb2 <CJK> +<U00027AE9> /x8e/xa7/xc3/xb3 <CJK> +<U00027AED> /x8e/xa7/xc3/xb4 <CJK> +<U00027AD6> /x8e/xa7/xc3/xb5 <CJK> +<U00027AF8> /x8e/xa7/xc3/xb6 <CJK> +<U00027AD4> /x8e/xa7/xc3/xb7 <CJK> +<U00027ADF> /x8e/xa7/xc3/xb8 <CJK> +<U00027AE7> /x8e/xa7/xc3/xb9 <CJK> +<U00027AD8> /x8e/xa7/xc3/xba <CJK> +<U00027AE3> /x8e/xa7/xc3/xbb <CJK> +<U00027AEF> /x8e/xa7/xc3/xbc <CJK> +<U00027B0F> /x8e/xa7/xc3/xbd <CJK> +<U00027BCA> /x8e/xa7/xc3/xbe <CJK> +<U00021546> /x8e/xa7/xc3/xbf <CJK> +<U00027C05> /x8e/xa7/xc3/xc0 <CJK> +<U00027C0C> /x8e/xa7/xc3/xc1 <CJK> +<U00027C0D> /x8e/xa7/xc3/xc2 <CJK> +<U00027C7F> /x8e/xa7/xc3/xc3 <CJK> +<U00027C80> /x8e/xa7/xc3/xc4 <CJK> +<U00027C81> /x8e/xa7/xc3/xc5 <CJK> +<U00027D01> /x8e/xa7/xc3/xc6 <CJK> +<U00027D03> /x8e/xa7/xc3/xc7 <CJK> +<U00027DF2> /x8e/xa7/xc3/xc8 <CJK> +<U00027DE2> /x8e/xa7/xc3/xc9 <CJK> +<U00027DE3> /x8e/xa7/xc3/xca <CJK> +<U00027DDE> /x8e/xa7/xc3/xcb <CJK> +<U00027DE9> /x8e/xa7/xc3/xcc <CJK> +<U00027DE8> /x8e/xa7/xc3/xcd <CJK> +<U00027DE0> /x8e/xa7/xc3/xce <CJK> +<U00027E01> /x8e/xa7/xc3/xcf <CJK> +<U00027DF5> /x8e/xa7/xc3/xd0 <CJK> +<U00027DE4> /x8e/xa7/xc3/xd1 <CJK> +<U8D01> /x8e/xa7/xc3/xd2 <CJK> +<U00027E77> /x8e/xa7/xc3/xd3 <CJK> +<U00027F74> /x8e/xa7/xc3/xd4 <CJK> +<U00027F6F> /x8e/xa7/xc3/xd5 <CJK> +<U00027F62> /x8e/xa7/xc3/xd6 <CJK> +<U00027F61> /x8e/xa7/xc3/xd7 <CJK> +<U00027F6D> /x8e/xa7/xc3/xd8 <CJK> +<U00027F73> /x8e/xa7/xc3/xd9 <CJK> +<U00027F6A> /x8e/xa7/xc3/xda <CJK> +<U00027F69> /x8e/xa7/xc3/xdb <CJK> +<U00028112> /x8e/xa7/xc3/xdc <CJK> +<U0002812D> /x8e/xa7/xc3/xdd <CJK> +<U00028114> /x8e/xa7/xc3/xde <CJK> +<U0002810F> /x8e/xa7/xc3/xdf <CJK> +<U00028129> /x8e/xa7/xc3/xe0 <CJK> +<U00028116> /x8e/xa7/xc3/xe1 <CJK> +<U00028103> /x8e/xa7/xc3/xe2 <CJK> +<U00028146> /x8e/xa7/xc3/xe3 <CJK> +<U0002815C> /x8e/xa7/xc3/xe4 <CJK> +<U00028111> /x8e/xa7/xc3/xe5 <CJK> +<U00028106> /x8e/xa7/xc3/xe6 <CJK> +<U000280DC> /x8e/xa7/xc3/xe7 <CJK> +<U0002812B> /x8e/xa7/xc3/xe8 <CJK> +<U0002812A> /x8e/xa7/xc3/xe9 <CJK> +<U0002812C> /x8e/xa7/xc3/xea <CJK> +<U00028127> /x8e/xa7/xc3/xeb <CJK> +<U0002827A> /x8e/xa7/xc3/xec <CJK> +<U0002839C> /x8e/xa7/xc3/xed <CJK> +<U00028399> /x8e/xa7/xc3/xee <CJK> +<U00028395> /x8e/xa7/xc3/xef <CJK> +<U0002838B> /x8e/xa7/xc3/xf0 <CJK> +<U00028398> /x8e/xa7/xc3/xf1 <CJK> +<U00028396> /x8e/xa7/xc3/xf2 <CJK> +<U00028432> /x8e/xa7/xc3/xf3 <CJK> +<U000285A4> /x8e/xa7/xc3/xf4 <CJK> +<U000285AA> /x8e/xa7/xc3/xf5 <CJK> +<U0002861B> /x8e/xa7/xc3/xf6 <CJK> +<U48AF> /x8e/xa7/xc3/xf7 <CJK> +<U0002860D> /x8e/xa7/xc3/xf8 <CJK> +<U0002861C> /x8e/xa7/xc3/xf9 <CJK> +<U0002860A> /x8e/xa7/xc3/xfa <CJK> +<U00028620> /x8e/xa7/xc3/xfb <CJK> +<U00028608> /x8e/xa7/xc3/xfc <CJK> +<U0002861A> /x8e/xa7/xc3/xfd <CJK> +<U00028613> /x8e/xa7/xc3/xfe <CJK> +<U00028611> /x8e/xa7/xc4/xa1 <CJK> +<U0002875D> /x8e/xa7/xc4/xa2 <CJK> +<U0002875F> /x8e/xa7/xc4/xa3 <CJK> +<U0002875E> /x8e/xa7/xc4/xa4 <CJK> +<U00028760> /x8e/xa7/xc4/xa5 <CJK> +<U000287BB> /x8e/xa7/xc4/xa6 <CJK> +<U000287BC> /x8e/xa7/xc4/xa7 <CJK> +<U000287C1> /x8e/xa7/xc4/xa8 <CJK> +<U000287C0> /x8e/xa7/xc4/xa9 <CJK> +<U000287C8> /x8e/xa7/xc4/xaa <CJK> +<U000287CE> /x8e/xa7/xc4/xab <CJK> +<U000288A7> /x8e/xa7/xc4/xac <CJK> +<U000288B2> /x8e/xa7/xc4/xad <CJK> +<U000288B6> /x8e/xa7/xc4/xae <CJK> +<U000288A5> /x8e/xa7/xc4/xaf <CJK> +<U000288BA> /x8e/xa7/xc4/xb0 <CJK> +<U000288B5> /x8e/xa7/xc4/xb1 <CJK> +<U000288AD> /x8e/xa7/xc4/xb2 <CJK> +<U000288A4> /x8e/xa7/xc4/xb3 <CJK> +<U000288D3> /x8e/xa7/xc4/xb4 <CJK> +<U000288B0> /x8e/xa7/xc4/xb5 <CJK> +<U000288B1> /x8e/xa7/xc4/xb6 <CJK> +<U0002891D> /x8e/xa7/xc4/xb7 <CJK> +<U00028A8D> /x8e/xa7/xc4/xb8 <CJK> +<U4941> /x8e/xa7/xc4/xb9 <CJK> +<U00028A91> /x8e/xa7/xc4/xba <CJK> +<U00028AB6> /x8e/xa7/xc4/xbb <CJK> +<U00028AB7> /x8e/xa7/xc4/xbc <CJK> +<U00028ABD> /x8e/xa7/xc4/xbd <CJK> +<U00028ABC> /x8e/xa7/xc4/xbe <CJK> +<U00028A96> /x8e/xa7/xc4/xbf <CJK> +<U00028A94> /x8e/xa7/xc4/xc0 <CJK> +<U00028AA0> /x8e/xa7/xc4/xc1 <CJK> +<U00028CA8> /x8e/xa7/xc4/xc2 <CJK> +<U00028CA6> /x8e/xa7/xc4/xc3 <CJK> +<U00028D84> /x8e/xa7/xc4/xc4 <CJK> +<U00028D96> /x8e/xa7/xc4/xc5 <CJK> +<U00028D88> /x8e/xa7/xc4/xc6 <CJK> +<U00028D9A> /x8e/xa7/xc4/xc7 <CJK> +<U00028ED1> /x8e/xa7/xc4/xc8 <CJK> +<U00028ECF> /x8e/xa7/xc4/xc9 <CJK> +<U00028F50> /x8e/xa7/xc4/xca <CJK> +<U00028F51> /x8e/xa7/xc4/xcb <CJK> +<U00028F4E> /x8e/xa7/xc4/xcc <CJK> +<U00028F80> /x8e/xa7/xc4/xcd <CJK> +<U00028F81> /x8e/xa7/xc4/xce <CJK> +<U0002901B> /x8e/xa7/xc4/xcf <CJK> +<U00029017> /x8e/xa7/xc4/xd0 <CJK> +<U00029020> /x8e/xa7/xc4/xd1 <CJK> +<U00029019> /x8e/xa7/xc4/xd2 <CJK> +<U0002901A> /x8e/xa7/xc4/xd3 <CJK> +<U00029021> /x8e/xa7/xc4/xd4 <CJK> +<U0002901E> /x8e/xa7/xc4/xd5 <CJK> +<U00029018> /x8e/xa7/xc4/xd6 <CJK> +<U0002901D> /x8e/xa7/xc4/xd7 <CJK> +<U4A29> /x8e/xa7/xc4/xd8 <CJK> +<U0002912D> /x8e/xa7/xc4/xd9 <CJK> +<U00029124> /x8e/xa7/xc4/xda <CJK> +<U00029127> /x8e/xa7/xc4/xdb <CJK> +<U0002912E> /x8e/xa7/xc4/xdc <CJK> +<U00029125> /x8e/xa7/xc4/xdd <CJK> +<U0002911C> /x8e/xa7/xc4/xde <CJK> +<U00029119> /x8e/xa7/xc4/xdf <CJK> +<U4A2A> /x8e/xa7/xc4/xe0 <CJK> +<U00029123> /x8e/xa7/xc4/xe1 <CJK> +<U0002911F> /x8e/xa7/xc4/xe2 <CJK> +<U0002911A> /x8e/xa7/xc4/xe3 <CJK> +<U0002912B> /x8e/xa7/xc4/xe4 <CJK> +<U0002911E> /x8e/xa7/xc4/xe5 <CJK> +<U000291E0> /x8e/xa7/xc4/xe6 <CJK> +<U00029233> /x8e/xa7/xc4/xe7 <CJK> +<U000292E6> /x8e/xa7/xc4/xe8 <CJK> +<U000292FC> /x8e/xa7/xc4/xe9 <CJK> +<U000292E5> /x8e/xa7/xc4/xea <CJK> +<U000292F8> /x8e/xa7/xc4/xeb <CJK> +<U000292F6> /x8e/xa7/xc4/xec <CJK> +<U000292EA> /x8e/xa7/xc4/xed <CJK> +<U000292F2> /x8e/xa7/xc4/xee <CJK> +<U000292ED> /x8e/xa7/xc4/xef <CJK> +<U000292EB> /x8e/xa7/xc4/xf0 <CJK> +<U000292F0> /x8e/xa7/xc4/xf1 <CJK> +<U000292F1> /x8e/xa7/xc4/xf2 <CJK> +<U000293C6> /x8e/xa7/xc4/xf3 <CJK> +<U000293C8> /x8e/xa7/xc4/xf4 <CJK> +<U000293CE> /x8e/xa7/xc4/xf5 <CJK> +<U000293C5> /x8e/xa7/xc4/xf6 <CJK> +<U4A96> /x8e/xa7/xc4/xf7 <CJK> +<U000293CB> /x8e/xa7/xc4/xf8 <CJK> +<U00029513> /x8e/xa7/xc4/xf9 <CJK> +<U00029514> /x8e/xa7/xc4/xfa <CJK> +<U00029507> /x8e/xa7/xc4/xfb <CJK> +<U0002950C> /x8e/xa7/xc4/xfc <CJK> +<U0002961A> /x8e/xa7/xc4/xfd <CJK> +<U4B12> /x8e/xa7/xc4/xfe <CJK> +<U00029617> /x8e/xa7/xc5/xa1 <CJK> +<U00029606> /x8e/xa7/xc5/xa2 <CJK> +<U00029616> /x8e/xa7/xc5/xa3 <CJK> +<U00029607> /x8e/xa7/xc5/xa4 <CJK> +<U00029610> /x8e/xa7/xc5/xa5 <CJK> +<U00029609> /x8e/xa7/xc5/xa6 <CJK> +<U00029619> /x8e/xa7/xc5/xa7 <CJK> +<U00029615> /x8e/xa7/xc5/xa8 <CJK> +<U0002976E> /x8e/xa7/xc5/xa9 <CJK> +<U0002973B> /x8e/xa7/xc5/xaa <CJK> +<U0002973E> /x8e/xa7/xc5/xab <CJK> +<U0002976C> /x8e/xa7/xc5/xac <CJK> +<U00029765> /x8e/xa7/xc5/xad <CJK> +<U00029764> /x8e/xa7/xc5/xae <CJK> +<U00029759> /x8e/xa7/xc5/xaf <CJK> +<U0002977C> /x8e/xa7/xc5/xb0 <CJK> +<U00029770> /x8e/xa7/xc5/xb1 <CJK> +<U00029779> /x8e/xa7/xc5/xb2 <CJK> +<U0002982C> /x8e/xa7/xc5/xb3 <CJK> +<U00029852> /x8e/xa7/xc5/xb4 <CJK> +<U00029851> /x8e/xa7/xc5/xb5 <CJK> +<U0002984C> /x8e/xa7/xc5/xb6 <CJK> +<U00029900> /x8e/xa7/xc5/xb7 <CJK> +<U00029910> /x8e/xa7/xc5/xb8 <CJK> +<U00029913> /x8e/xa7/xc5/xb9 <CJK> +<U000298FF> /x8e/xa7/xc5/xba <CJK> +<U000298FE> /x8e/xa7/xc5/xbb <CJK> +<U000298ED> /x8e/xa7/xc5/xbc <CJK> +<U00029A5A> /x8e/xa7/xc5/xbd <CJK> +<U00029A58> /x8e/xa7/xc5/xbe <CJK> +<U00029A5C> /x8e/xa7/xc5/xbf <CJK> +<U00029ADA> /x8e/xa7/xc5/xc0 <CJK> +<U00029B78> /x8e/xa7/xc5/xc1 <CJK> +<U00029B5E> /x8e/xa7/xc5/xc2 <CJK> +<U00029B67> /x8e/xa7/xc5/xc3 <CJK> +<U00029B64> /x8e/xa7/xc5/xc4 <CJK> +<U00029C13> /x8e/xa7/xc5/xc5 <CJK> +<U00029C23> /x8e/xa7/xc5/xc6 <CJK> +<U00029C41> /x8e/xa7/xc5/xc7 <CJK> +<U00029C3F> /x8e/xa7/xc5/xc8 <CJK> +<U00029C40> /x8e/xa7/xc5/xc9 <CJK> +<U00029CED> /x8e/xa7/xc5/xca <CJK> +<U00029CE3> /x8e/xa7/xc5/xcb <CJK> +<U00029CEA> /x8e/xa7/xc5/xcc <CJK> +<U00029CF0> /x8e/xa7/xc5/xcd <CJK> +<U00029CE6> /x8e/xa7/xc5/xce <CJK> +<U00029CE9> /x8e/xa7/xc5/xcf <CJK> +<U00029CF1> /x8e/xa7/xc5/xd0 <CJK> +<U00029CEE> /x8e/xa7/xc5/xd1 <CJK> +<U00029DD4> /x8e/xa7/xc5/xd2 <CJK> +<U00029DD1> /x8e/xa7/xc5/xd3 <CJK> +<U00029DDC> /x8e/xa7/xc5/xd4 <CJK> +<U00029DEC> /x8e/xa7/xc5/xd5 <CJK> +<U0002A069> /x8e/xa7/xc5/xd6 <CJK> +<U0002A06D> /x8e/xa7/xc5/xd7 <CJK> +<U0002A057> /x8e/xa7/xc5/xd8 <CJK> +<U0002A066> /x8e/xa7/xc5/xd9 <CJK> +<U0002A0F9> /x8e/xa7/xc5/xda <CJK> +<U0002A04A> /x8e/xa7/xc5/xdb <CJK> +<U0002A060> /x8e/xa7/xc5/xdc <CJK> +<U0002A056> /x8e/xa7/xc5/xdd <CJK> +<U0002A059> /x8e/xa7/xc5/xde <CJK> +<U0002A04C> /x8e/xa7/xc5/xdf <CJK> +<U0002A06A> /x8e/xa7/xc5/xe0 <CJK> +<U0002A062> /x8e/xa7/xc5/xe1 <CJK> +<U0002A063> /x8e/xa7/xc5/xe2 <CJK> +<U0002A070> /x8e/xa7/xc5/xe3 <CJK> +<U0002A05F> /x8e/xa7/xc5/xe4 <CJK> +<U0002A064> /x8e/xa7/xc5/xe6 <CJK> +<U0002A05D> /x8e/xa7/xc5/xe7 <CJK> +<U0002A068> /x8e/xa7/xc5/xe8 <CJK> +<U0002A09F> /x8e/xa7/xc5/xe9 <CJK> +<U0002A2BA> /x8e/xa7/xc5/xea <CJK> +<U0002A2B8> /x8e/xa7/xc5/xeb <CJK> +<U0002A2BC> /x8e/xa7/xc5/xec <CJK> +<U0002A2B9> /x8e/xa7/xc5/xed <CJK> +<U0002A2B4> /x8e/xa7/xc5/xee <CJK> +<U0002A33B> /x8e/xa7/xc5/xef <CJK> +<U0002A32D> /x8e/xa7/xc5/xf0 <CJK> +<U0002A338> /x8e/xa7/xc5/xf1 <CJK> +<U0002A32F> /x8e/xa7/xc5/xf2 <CJK> +<U0002A332> /x8e/xa7/xc5/xf3 <CJK> +<U0002A441> /x8e/xa7/xc5/xf4 <CJK> +<U0002A4CB> /x8e/xa7/xc5/xf5 <CJK> +<U0002A4DE> /x8e/xa7/xc5/xf6 <CJK> +<U0002A4DD> /x8e/xa7/xc5/xf7 <CJK> +<U0002A4DA> /x8e/xa7/xc5/xf8 <CJK> +<U0002A4DC> /x8e/xa7/xc5/xf9 <CJK> +<U0002A510> /x8e/xa7/xc5/xfa <CJK> +<U0002A54F> /x8e/xa7/xc5/xfb <CJK> +<U0002A549> /x8e/xa7/xc5/xfc <CJK> +<U0002A598> /x8e/xa7/xc5/xfd <CJK> +<U0002A596> /x8e/xa7/xc5/xfe <CJK> +<U0002A597> /x8e/xa7/xc6/xa1 <CJK> +<U0002A5C7> /x8e/xa7/xc6/xa2 <CJK> +<U0002019C> /x8e/xa7/xc6/xa3 <CJK> +<U0002A5DA> /x8e/xa7/xc6/xa4 <CJK> +<U0002A5D8> /x8e/xa7/xc6/xa5 <CJK> +<U0002A6A8> /x8e/xa7/xc6/xa6 <CJK> +<U0002010A> /x8e/xa7/xc6/xa7 <CJK> +<U0002019D> /x8e/xa7/xc6/xa8 <CJK> +<U000204CB> /x8e/xa7/xc6/xa9 <CJK> +<U00020538> /x8e/xa7/xc6/xaa <CJK> +<U00020539> /x8e/xa7/xc6/xab <CJK> +<U000205A6> /x8e/xa7/xc6/xac <CJK> +<U00020823> /x8e/xa7/xc6/xad <CJK> +<U00020822> /x8e/xa7/xc6/xae <CJK> +<U00020821> /x8e/xa7/xc6/xaf <CJK> +<U000209CE> /x8e/xa7/xc6/xb0 <CJK> +<U00020B92> /x8e/xa7/xc6/xb1 <CJK> +<U00020B91> /x8e/xa7/xc6/xb2 <CJK> +<U000210EC> /x8e/xa7/xc6/xb3 <CJK> +<U000210E0> /x8e/xa7/xc6/xb4 <CJK> +<U000210ED> /x8e/xa7/xc6/xb5 <CJK> +<U00021108> /x8e/xa7/xc6/xb6 <CJK> +<U000210E5> /x8e/xa7/xc6/xb7 <CJK> +<U000210EE> /x8e/xa7/xc6/xb8 <CJK> +<U000210E4> /x8e/xa7/xc6/xb9 <CJK> +<U000210EB> /x8e/xa7/xc6/xba <CJK> +<U000210E3> /x8e/xa7/xc6/xbb <CJK> +<U000210EA> /x8e/xa7/xc6/xbc <CJK> +<U0002110A> /x8e/xa7/xc6/xbd <CJK> +<U000214D1> /x8e/xa7/xc6/xbf <CJK> +<U000214E3> /x8e/xa7/xc6/xc0 <CJK> +<U000214D4> /x8e/xa7/xc6/xc1 <CJK> +<U000214D0> /x8e/xa7/xc6/xc2 <CJK> +<U000214D9> /x8e/xa7/xc6/xc3 <CJK> +<U367E> /x8e/xa7/xc6/xc4 <CJK> +<U58E1> /x8e/xa7/xc6/xc5 <CJK> +<U000214DA> /x8e/xa7/xc6/xc6 <CJK> +<U000214D3> /x8e/xa7/xc6/xc7 <CJK> +<U0002154C> /x8e/xa7/xc6/xc8 <CJK> +<U0002154D> /x8e/xa7/xc6/xc9 <CJK> +<U0002157C> /x8e/xa7/xc6/xca <CJK> +<U00021580> /x8e/xa7/xc6/xcb <CJK> +<U000215CC> /x8e/xa7/xc6/xcc <CJK> +<U000218FF> /x8e/xa7/xc6/xcd <CJK> +<U00021908> /x8e/xa7/xc6/xce <CJK> +<U0002A508> /x8e/xa7/xc6/xcf <CJK> +<U00021901> /x8e/xa7/xc6/xd0 <CJK> +<U00021900> /x8e/xa7/xc6/xd2 <CJK> +<U00021AED> /x8e/xa7/xc6/xd3 <CJK> +<U00021AF3> /x8e/xa7/xc6/xd4 <CJK> +<U00021AEE> /x8e/xa7/xc6/xd5 <CJK> +<U00021AF1> /x8e/xa7/xc6/xd6 <CJK> +<U00021AF0> /x8e/xa7/xc6/xd7 <CJK> +<U00021ADE> /x8e/xa7/xc6/xd8 <CJK> +<U00021B51> /x8e/xa7/xc6/xd9 <CJK> +<U00021F82> /x8e/xa7/xc6/xda <CJK> +<U00021FA9> /x8e/xa7/xc6/xdb <CJK> +<U00021F98> /x8e/xa7/xc6/xdc <CJK> +<U00021F9D> /x8e/xa7/xc6/xdd <CJK> +<U00021F9A> /x8e/xa7/xc6/xde <CJK> +<U00021F9E> /x8e/xa7/xc6/xdf <CJK> +<U00021F9F> /x8e/xa7/xc6/xe0 <CJK> +<U00021FA6> /x8e/xa7/xc6/xe1 <CJK> +<U00021FA7> /x8e/xa7/xc6/xe2 <CJK> +<U00022009> /x8e/xa7/xc6/xe3 <CJK> +<U0002202F> /x8e/xa7/xc6/xe4 <CJK> +<U00022171> /x8e/xa7/xc6/xe5 <CJK> +<U0002216D> /x8e/xa7/xc6/xe6 <CJK> +<U00022172> /x8e/xa7/xc6/xe7 <CJK> +<U000222EF> /x8e/xa7/xc6/xe8 <CJK> +<U000222F0> /x8e/xa7/xc6/xe9 <CJK> +<U0002243B> /x8e/xa7/xc6/xea <CJK> +<U00022439> /x8e/xa7/xc6/xeb <CJK> +<U0002243C> /x8e/xa7/xc6/xec <CJK> +<U00022438> /x8e/xa7/xc6/xed <CJK> +<U00024BFD> /x8e/xa7/xc6/xee <CJK> +<U0002243A> /x8e/xa7/xc6/xef <CJK> +<U00022478> /x8e/xa7/xc6/xf0 <CJK> +<U00022479> /x8e/xa7/xc6/xf1 <CJK> +<U00022477> /x8e/xa7/xc6/xf2 <CJK> +<U00022598> /x8e/xa7/xc6/xf3 <CJK> +<U0002259C> /x8e/xa7/xc6/xf4 <CJK> +<U00022599> /x8e/xa7/xc6/xf5 <CJK> +<U0002259A> /x8e/xa7/xc6/xf6 <CJK> +<U00022911> /x8e/xa7/xc6/xf7 <CJK> +<U0002290A> /x8e/xa7/xc6/xf8 <CJK> +<U000228FD> /x8e/xa7/xc6/xf9 <CJK> +<U0002290F> /x8e/xa7/xc6/xfa <CJK> +<U00022919> /x8e/xa7/xc6/xfb <CJK> +<U00022903> /x8e/xa7/xc6/xfc <CJK> +<U00022915> /x8e/xa7/xc6/xfd <CJK> +<U0002290C> /x8e/xa7/xc6/xfe <CJK> +<U00022909> /x8e/xa7/xc7/xa1 <CJK> +<U00022912> /x8e/xa7/xc7/xa2 <CJK> +<U00022934> /x8e/xa7/xc7/xa3 <CJK> +<U0002292A> /x8e/xa7/xc7/xa4 <CJK> +<U00022908> /x8e/xa7/xc7/xa5 <CJK> +<U0002292D> /x8e/xa7/xc7/xa6 <CJK> +<U00022928> /x8e/xa7/xc7/xa7 <CJK> +<U0002292C> /x8e/xa7/xc7/xa9 <CJK> +<U00022926> /x8e/xa7/xc7/xaa <CJK> +<U00022933> /x8e/xa7/xc7/xab <CJK> +<U39A7> /x8e/xa7/xc7/xac <CJK> +<U00022A1A> /x8e/xa7/xc7/xad <CJK> +<U00022A1E> /x8e/xa7/xc7/xae <CJK> +<U00022E07> /x8e/xa7/xc7/xaf <CJK> +<U00022E2C> /x8e/xa7/xc7/xb0 <CJK> +<U00022E32> /x8e/xa7/xc7/xb1 <CJK> +<U00022E28> /x8e/xa7/xc7/xb2 <CJK> +<U00022E31> /x8e/xa7/xc7/xb3 <CJK> +<U00022E29> /x8e/xa7/xc7/xb4 <CJK> +<U00022E30> /x8e/xa7/xc7/xb5 <CJK> +<U00022E2A> /x8e/xa7/xc7/xb6 <CJK> +<U00022E44> /x8e/xa7/xc7/xb7 <CJK> +<U00022E2E> /x8e/xa7/xc7/xb8 <CJK> +<U000230D1> /x8e/xa7/xc7/xb9 <CJK> +<U00023124> /x8e/xa7/xc7/xba <CJK> +<U000232F7> /x8e/xa7/xc7/xbb <CJK> +<U000232F4> /x8e/xa7/xc7/xbc <CJK> +<U000232F3> /x8e/xa7/xc7/xbd <CJK> +<U000232F8> /x8e/xa7/xc7/xbe <CJK> +<U000237B5> /x8e/xa7/xc7/xbf <CJK> +<U00023796> /x8e/xa7/xc7/xc0 <CJK> +<U00023798> /x8e/xa7/xc7/xc1 <CJK> +<U00023795> /x8e/xa7/xc7/xc2 <CJK> +<U00023791> /x8e/xa7/xc7/xc3 <CJK> +<U000237B2> /x8e/xa7/xc7/xc4 <CJK> +<U0002379E> /x8e/xa7/xc7/xc5 <CJK> +<U00023759> /x8e/xa7/xc7/xc6 <CJK> +<U000237A3> /x8e/xa7/xc7/xc7 <CJK> +<U0002379A> /x8e/xa7/xc7/xc8 <CJK> +<U0002379B> /x8e/xa7/xc7/xc9 <CJK> +<U4320> /x8e/xa7/xc7/xca <CJK> +<U00026183> /x8e/xa7/xc7/xcb <CJK> +<U00023ADA> /x8e/xa7/xc7/xcc <CJK> +<U00023ADF> /x8e/xa7/xc7/xcd <CJK> +<U00023B16> /x8e/xa7/xc7/xce <CJK> +<U00023C1F> /x8e/xa7/xc7/xcf <CJK> +<U00023C2D> /x8e/xa7/xc7/xd0 <CJK> +<U00023C2E> /x8e/xa7/xc7/xd1 <CJK> +<U00023C2B> /x8e/xa7/xc7/xd2 <CJK> +<U000240B8> /x8e/xa7/xc7/xd3 <CJK> +<U000240BB> /x8e/xa7/xc7/xd4 <CJK> +<U000240BF> /x8e/xa7/xc7/xd5 <CJK> +<U000240BA> /x8e/xa7/xc7/xd6 <CJK> +<U000240D5> /x8e/xa7/xc7/xd7 <CJK> +<U000240E3> /x8e/xa7/xc7/xd8 <CJK> +<U000240C1> /x8e/xa7/xc7/xd9 <CJK> +<U000240BE> /x8e/xa7/xc7/xda <CJK> +<U000240BD> /x8e/xa7/xc7/xdb <CJK> +<U000240B4> /x8e/xa7/xc7/xdc <CJK> +<U000240C2> /x8e/xa7/xc7/xdd <CJK> +<U000240A1> /x8e/xa7/xc7/xde <CJK> +<U00024087> /x8e/xa7/xc7/xdf <CJK> +<U000240D7> /x8e/xa7/xc7/xe0 <CJK> +<U000240CA> /x8e/xa7/xc7/xe1 <CJK> +<U000240B5> /x8e/xa7/xc7/xe2 <CJK> +<U000240DA> /x8e/xa7/xc7/xe3 <CJK> +<U000240D9> /x8e/xa7/xc7/xe4 <CJK> +<U000240B3> /x8e/xa7/xc7/xe5 <CJK> +<U000240D8> /x8e/xa7/xc7/xe6 <CJK> +<U00024467> /x8e/xa7/xc7/xe7 <CJK> +<U00024471> /x8e/xa7/xc7/xe8 <CJK> +<U00024462> /x8e/xa7/xc7/xe9 <CJK> +<U0002445C> /x8e/xa7/xc7/xea <CJK> +<U00024468> /x8e/xa7/xc7/xeb <CJK> +<U00024452> /x8e/xa7/xc7/xec <CJK> +<U00024456> /x8e/xa7/xc7/xed <CJK> +<U00021109> /x8e/xa7/xc7/xee <CJK> +<U00020442> /x8e/xa7/xc7/xef <CJK> +<U000245A0> /x8e/xa7/xc7/xf0 <CJK> +<U00024700> /x8e/xa7/xc7/xf1 <CJK> +<U000246FE> /x8e/xa7/xc7/xf2 <CJK> +<U000246FF> /x8e/xa7/xc7/xf3 <CJK> +<U000248CB> /x8e/xa7/xc7/xf4 <CJK> +<U000248CA> /x8e/xa7/xc7/xf6 <CJK> +<U000248A9> /x8e/xa7/xc7/xf7 <CJK> +<U000248C8> /x8e/xa7/xc7/xf8 <CJK> +<U00024AB4> /x8e/xa7/xc7/xf9 <CJK> +<U00024AAC> /x8e/xa7/xc7/xfa <CJK> +<U00024AAA> /x8e/xa7/xc7/xfb <CJK> +<U00024AA9> /x8e/xa7/xc7/xfc <CJK> +<U00024C0E> /x8e/xa7/xc7/xfd <CJK> +<U00024CE9> /x8e/xa7/xc7/xfe <CJK> +<U00024CED> /x8e/xa7/xc8/xa1 <CJK> +<U00024CF2> /x8e/xa7/xc8/xa2 <CJK> +<U00024CEB> /x8e/xa7/xc8/xa3 <CJK> +<U00024CEE> /x8e/xa7/xc8/xa4 <CJK> +<U00024EE8> /x8e/xa7/xc8/xa5 <CJK> +<U00024EDB> /x8e/xa7/xc8/xa6 <CJK> +<U00024ED7> /x8e/xa7/xc8/xa7 <CJK> +<U00024EE3> /x8e/xa7/xc8/xa8 <CJK> +<U00024EE5> /x8e/xa7/xc8/xa9 <CJK> +<U00024EEE> /x8e/xa7/xc8/xaa <CJK> +<U00024ED5> /x8e/xa7/xc8/xab <CJK> +<U00024FB3> /x8e/xa7/xc8/xac <CJK> +<U0002502D> /x8e/xa7/xc8/xad <CJK> +<U000250C1> /x8e/xa7/xc8/xae <CJK> +<U000250C3> /x8e/xa7/xc8/xaf <CJK> +<U0002530C> /x8e/xa7/xc8/xb0 <CJK> +<U0002530E> /x8e/xa7/xc8/xb1 <CJK> +<U00025307> /x8e/xa7/xc8/xb2 <CJK> +<U00025317> /x8e/xa7/xc8/xb3 <CJK> +<U00025309> /x8e/xa7/xc8/xb4 <CJK> +<U00025316> /x8e/xa7/xc8/xb5 <CJK> +<U0002539A> /x8e/xa7/xc8/xb6 <CJK> +<U0002539C> /x8e/xa7/xc8/xb7 <CJK> +<U000255B4> /x8e/xa7/xc8/xb8 <CJK> +<U000255B7> /x8e/xa7/xc8/xb9 <CJK> +<U000255B3> /x8e/xa7/xc8/xba <CJK> +<U0002154E> /x8e/xa7/xc8/xbb <CJK> +<U00025713> /x8e/xa7/xc8/xbc <CJK> +<U00025714> /x8e/xa7/xc8/xbd <CJK> +<U000258E6> /x8e/xa7/xc8/xbe <CJK> +<U000258DC> /x8e/xa7/xc8/xbf <CJK> +<U000258E8> /x8e/xa7/xc8/xc0 <CJK> +<U000258E5> /x8e/xa7/xc8/xc1 <CJK> +<U00025A2E> /x8e/xa7/xc8/xc2 <CJK> +<U00025A2C> /x8e/xa7/xc8/xc3 <CJK> +<U00025A2B> /x8e/xa7/xc8/xc4 <CJK> +<U00025ACD> /x8e/xa7/xc8/xc5 <CJK> +<U00025D3D> /x8e/xa7/xc8/xc6 <CJK> +<U00025D32> /x8e/xa7/xc8/xc7 <CJK> +<U00025D2D> /x8e/xa7/xc8/xc8 <CJK> +<U00025D45> /x8e/xa7/xc8/xc9 <CJK> +<U00025D3E> /x8e/xa7/xc8/xca <CJK> +<U00025D50> /x8e/xa7/xc8/xcb <CJK> +<U00025D25> /x8e/xa7/xc8/xcc <CJK> +<U00025D53> /x8e/xa7/xc8/xcd <CJK> +<U00025D23> /x8e/xa7/xc8/xce <CJK> +<U00025F37> /x8e/xa7/xc8/xcf <CJK> +<U00025F38> /x8e/xa7/xc8/xd0 <CJK> +<U00025F47> /x8e/xa7/xc8/xd1 <CJK> +<U00025F3D> /x8e/xa7/xc8/xd2 <CJK> +<U00025F3E> /x8e/xa7/xc8/xd3 <CJK> +<U00025F49> /x8e/xa7/xc8/xd4 <CJK> +<U00025F4A> /x8e/xa7/xc8/xd5 <CJK> +<U00025F1D> /x8e/xa7/xc8/xd6 <CJK> +<U7CE9> /x8e/xa7/xc8/xd7 <CJK> +<U000261A5> /x8e/xa7/xc8/xd8 <CJK> +<U0002618C> /x8e/xa7/xc8/xd9 <CJK> +<U0002618D> /x8e/xa7/xc8/xda <CJK> +<U00026189> /x8e/xa7/xc8/xdb <CJK> +<U00026196> /x8e/xa7/xc8/xdc <CJK> +<U00026185> /x8e/xa7/xc8/xdd <CJK> +<U0002618F> /x8e/xa7/xc8/xde <CJK> +<U00026177> /x8e/xa7/xc8/xdf <CJK> +<U0002618E> /x8e/xa7/xc8/xe0 <CJK> +<U00026182> /x8e/xa7/xc8/xe1 <CJK> +<U0002618A> /x8e/xa7/xc8/xe2 <CJK> +<U00026188> /x8e/xa7/xc8/xe3 <CJK> +<U0002617B> /x8e/xa7/xc8/xe4 <CJK> +<U00026197> /x8e/xa7/xc8/xe5 <CJK> +<U0002617D> /x8e/xa7/xc8/xe6 <CJK> +<U00026179> /x8e/xa7/xc8/xe7 <CJK> +<U00026259> /x8e/xa7/xc8/xe8 <CJK> +<U00026324> /x8e/xa7/xc8/xe9 <CJK> +<U0002632D> /x8e/xa7/xc8/xea <CJK> +<U0002632E> /x8e/xa7/xc8/xeb <CJK> +<U0002632B> /x8e/xa7/xc8/xec <CJK> +<U000263DA> /x8e/xa7/xc8/xee <CJK> +<U000263D8> /x8e/xa7/xc8/xef <CJK> +<U000263D6> /x8e/xa7/xc8/xf0 <CJK> +<U00026487> /x8e/xa7/xc8/xf1 <CJK> +<U000264A0> /x8e/xa7/xc8/xf2 <CJK> +<U00026528> /x8e/xa7/xc8/xf3 <CJK> +<U00026525> /x8e/xa7/xc8/xf4 <CJK> +<U0002651F> /x8e/xa7/xc8/xf5 <CJK> +<U000265F3> /x8e/xa7/xc8/xf6 <CJK> +<U000265F7> /x8e/xa7/xc8/xf7 <CJK> +<U000265F6> /x8e/xa7/xc8/xf8 <CJK> +<U0002682B> /x8e/xa7/xc8/xf9 <CJK> +<U0002685B> /x8e/xa7/xc8/xfa <CJK> +<U00026848> /x8e/xa7/xc8/xfb <CJK> +<U81CB> /x8e/xa7/xc8/xfc <CJK> +<U0002685C> /x8e/xa7/xc8/xfd <CJK> +<U0002686D> /x8e/xa7/xc8/xfe <CJK> +<U0002689D> /x8e/xa7/xc9/xa1 <CJK> +<U00026899> /x8e/xa7/xc9/xa2 <CJK> +<U0002688C> /x8e/xa7/xc9/xa3 <CJK> +<U00026891> /x8e/xa7/xc9/xa4 <CJK> +<U0002689B> /x8e/xa7/xc9/xa5 <CJK> +<U0002689A> /x8e/xa7/xc9/xa6 <CJK> +<U0002689C> /x8e/xa7/xc9/xa7 <CJK> +<U00026895> /x8e/xa7/xc9/xa8 <CJK> +<U0002688D> /x8e/xa7/xc9/xa9 <CJK> +<U00026896> /x8e/xa7/xc9/xaa <CJK> +<U000268A5> /x8e/xa7/xc9/xab <CJK> +<U0002692A> /x8e/xa7/xc9/xac <CJK> +<U000269A1> /x8e/xa7/xc9/xad <CJK> +<U000269A4> /x8e/xa7/xc9/xae <CJK> +<U000269AD> /x8e/xa7/xc9/xaf <CJK> +<U00026AA9> /x8e/xa7/xc9/xb0 <CJK> +<U00026AAE> /x8e/xa7/xc9/xb1 <CJK> +<U00026AB0> /x8e/xa7/xc9/xb2 <CJK> +<U0002700D> /x8e/xa7/xc9/xb3 <CJK> +<U00026F63> /x8e/xa7/xc9/xb4 <CJK> +<U00026F71> /x8e/xa7/xc9/xb5 <CJK> +<U00027051> /x8e/xa7/xc9/xb6 <CJK> +<U00027054> /x8e/xa7/xc9/xb7 <CJK> +<U0002702A> /x8e/xa7/xc9/xb8 <CJK> +<U00027044> /x8e/xa7/xc9/xb9 <CJK> +<U00027055> /x8e/xa7/xc9/xba <CJK> +<U00027099> /x8e/xa7/xc9/xbb <CJK> +<U00027039> /x8e/xa7/xc9/xbc <CJK> +<U0002703F> /x8e/xa7/xc9/xbd <CJK> +<U0002703E> /x8e/xa7/xc9/xbe <CJK> +<U0002704F> /x8e/xa7/xc9/xbf <CJK> +<U0002704D> /x8e/xa7/xc9/xc0 <CJK> +<U00027035> /x8e/xa7/xc9/xc1 <CJK> +<U00027040> /x8e/xa7/xc9/xc2 <CJK> +<U00027031> /x8e/xa7/xc9/xc3 <CJK> +<U00026FD5> /x8e/xa7/xc9/xc4 <CJK> +<U0002702B> /x8e/xa7/xc9/xc5 <CJK> +<U00027033> /x8e/xa7/xc9/xc6 <CJK> +<U00027041> /x8e/xa7/xc9/xc7 <CJK> +<U00027056> /x8e/xa7/xc9/xc8 <CJK> +<U0002704C> /x8e/xa7/xc9/xc9 <CJK> +<U00027046> /x8e/xa7/xc9/xca <CJK> +<U0002703C> /x8e/xa7/xc9/xcb <CJK> +<U00027045> /x8e/xa7/xc9/xcc <CJK> +<U00027043> /x8e/xa7/xc9/xcd <CJK> +<U0002703D> /x8e/xa7/xc9/xce <CJK> +<U00027070> /x8e/xa7/xc9/xcf <CJK> +<U00027057> /x8e/xa7/xc9/xd0 <CJK> +<U00027038> /x8e/xa7/xc9/xd1 <CJK> +<U00027058> /x8e/xa7/xc9/xd2 <CJK> +<U4565> /x8e/xa7/xc9/xd3 <CJK> +<U00027037> /x8e/xa7/xc9/xd4 <CJK> +<U00027207> /x8e/xa7/xc9/xd5 <CJK> +<U00027206> /x8e/xa7/xc9/xd6 <CJK> +<U00027209> /x8e/xa7/xc9/xd7 <CJK> +<U000274AB> /x8e/xa7/xc9/xd8 <CJK> +<U00027490> /x8e/xa7/xc9/xd9 <CJK> +<U00027493> /x8e/xa7/xc9/xda <CJK> +<U000274BC> /x8e/xa7/xc9/xdb <CJK> +<U000274A9> /x8e/xa7/xc9/xdc <CJK> +<U0002749E> /x8e/xa7/xc9/xdd <CJK> +<U000274BF> /x8e/xa7/xc9/xde <CJK> +<U000274AA> /x8e/xa7/xc9/xdf <CJK> +<U00027491> /x8e/xa7/xc9/xe0 <CJK> +<U000274A4> /x8e/xa7/xc9/xe1 <CJK> +<U0002749A> /x8e/xa7/xc9/xe2 <CJK> +<U000274A7> /x8e/xa7/xc9/xe3 <CJK> +<U000274A1> /x8e/xa7/xc9/xe4 <CJK> +<U0002749C> /x8e/xa7/xc9/xe5 <CJK> +<U000274A2> /x8e/xa7/xc9/xe6 <CJK> +<U0002749B> /x8e/xa7/xc9/xe7 <CJK> +<U0002749F> /x8e/xa7/xc9/xe8 <CJK> +<U00027494> /x8e/xa7/xc9/xe9 <CJK> +<U0002748F> /x8e/xa7/xc9/xea <CJK> +<U000272F0> /x8e/xa7/xc9/xeb <CJK> +<U00027492> /x8e/xa7/xc9/xec <CJK> +<U00027495> /x8e/xa7/xc9/xed <CJK> +<U000274A5> /x8e/xa7/xc9/xee <CJK> +<U000274A6> /x8e/xa7/xc9/xef <CJK> +<U00027604> /x8e/xa7/xc9/xf0 <CJK> +<U0002779C> /x8e/xa7/xc9/xf1 <CJK> +<U00027779> /x8e/xa7/xc9/xf2 <CJK> +<U0002777A> /x8e/xa7/xc9/xf3 <CJK> +<U0002777E> /x8e/xa7/xc9/xf4 <CJK> +<U0002777B> /x8e/xa7/xc9/xf5 <CJK> +<U00027771> /x8e/xa7/xc9/xf6 <CJK> +<U00027781> /x8e/xa7/xc9/xf7 <CJK> +<U0002777F> /x8e/xa7/xc9/xf8 <CJK> +<U0002777C> /x8e/xa7/xc9/xf9 <CJK> +<U0002777D> /x8e/xa7/xc9/xfa <CJK> +<U00027775> /x8e/xa7/xc9/xfb <CJK> +<U00027776> /x8e/xa7/xc9/xfc <CJK> +<U0002788E> /x8e/xa7/xc9/xfd <CJK> +<U0002788F> /x8e/xa7/xc9/xfe <CJK> +<U0002793E> /x8e/xa7/xca/xa1 <CJK> +<U0002793F> /x8e/xa7/xca/xa2 <CJK> +<U00027940> /x8e/xa7/xca/xa3 <CJK> +<U00027941> /x8e/xa7/xca/xa4 <CJK> +<U4704> /x8e/xa7/xca/xa5 <CJK> +<U00027B0D> /x8e/xa7/xca/xa6 <CJK> +<U00027B17> /x8e/xa7/xca/xa7 <CJK> +<U00027B10> /x8e/xa7/xca/xa8 <CJK> +<U00027B0E> /x8e/xa7/xca/xa9 <CJK> +<U00027AEA> /x8e/xa7/xca/xaa <CJK> +<U00027B1D> /x8e/xa7/xca/xab <CJK> +<U00027B03> /x8e/xa7/xca/xac <CJK> +<U00027B22> /x8e/xa7/xca/xad <CJK> +<U00027B04> /x8e/xa7/xca/xae <CJK> +<U00027B00> /x8e/xa7/xca/xaf <CJK> +<U00027B20> /x8e/xa7/xca/xb0 <CJK> +<U00027B21> /x8e/xa7/xca/xb1 <CJK> +<U00027B23> /x8e/xa7/xca/xb2 <CJK> +<U00027B13> /x8e/xa7/xca/xb3 <CJK> +<U00027B09> /x8e/xa7/xca/xb4 <CJK> +<U00027B11> /x8e/xa7/xca/xb5 <CJK> +<U00027BCB> /x8e/xa7/xca/xb6 <CJK> +<U00027BCE> /x8e/xa7/xca/xb7 <CJK> +<U00027BD0> /x8e/xa7/xca/xb8 <CJK> +<U00027BCC> /x8e/xa7/xca/xb9 <CJK> +<U00027BD4> /x8e/xa7/xca/xba <CJK> +<U000214DB> /x8e/xa7/xca/xbb <CJK> +<U00027C09> /x8e/xa7/xca/xbc <CJK> +<U00027C0B> /x8e/xa7/xca/xbd <CJK> +<U00027C85> /x8e/xa7/xca/xbe <CJK> +<U00027D06> /x8e/xa7/xca/xbf <CJK> +<U00027D0D> /x8e/xa7/xca/xc0 <CJK> +<U4764> /x8e/xa7/xca/xc1 <CJK> +<U00027D14> /x8e/xa7/xca/xc2 <CJK> +<U00027D0F> /x8e/xa7/xca/xc3 <CJK> +<U00027E09> /x8e/xa7/xca/xc4 <CJK> +<U00027E14> /x8e/xa7/xca/xc5 <CJK> +<U00027E0B> /x8e/xa7/xca/xc6 <CJK> +<U00027DFC> /x8e/xa7/xca/xc7 <CJK> +<U00027E04> /x8e/xa7/xca/xc8 <CJK> +<U00027E0A> /x8e/xa7/xca/xc9 <CJK> +<U00027E00> /x8e/xa7/xca/xca <CJK> +<U00027DFD> /x8e/xa7/xca/xcb <CJK> +<U00027E07> /x8e/xa7/xca/xcc <CJK> +<U00027E06> /x8e/xa7/xca/xcd <CJK> +<U00027E11> /x8e/xa7/xca/xce <CJK> +<U00027E79> /x8e/xa7/xca/xcf <CJK> +<U00027E78> /x8e/xa7/xca/xd0 <CJK> +<U00027F88> /x8e/xa7/xca/xd1 <CJK> +<U00027F80> /x8e/xa7/xca/xd2 <CJK> +<U00027F8B> /x8e/xa7/xca/xd3 <CJK> +<U00028159> /x8e/xa7/xca/xd4 <CJK> +<U00028161> /x8e/xa7/xca/xd5 <CJK> +<U00028175> /x8e/xa7/xca/xd6 <CJK> +<U4823> /x8e/xa7/xca/xd7 <CJK> +<U00028155> /x8e/xa7/xca/xd8 <CJK> +<U0002815B> /x8e/xa7/xca/xd9 <CJK> +<U0002815F> /x8e/xa7/xca/xda <CJK> +<U00028152> /x8e/xa7/xca/xdb <CJK> +<U00028162> /x8e/xa7/xca/xdc <CJK> +<U00028172> /x8e/xa7/xca/xdd <CJK> +<U0002815D> /x8e/xa7/xca/xde <CJK> +<U00028168> /x8e/xa7/xca/xdf <CJK> +<U00028171> /x8e/xa7/xca/xe0 <CJK> +<U00028165> /x8e/xa7/xca/xe1 <CJK> +<U00028166> /x8e/xa7/xca/xe2 <CJK> +<U00028167> /x8e/xa7/xca/xe3 <CJK> +<U00028176> /x8e/xa7/xca/xe4 <CJK> +<U0002814C> /x8e/xa7/xca/xe5 <CJK> +<U00028160> /x8e/xa7/xca/xe6 <CJK> +<U00028174> /x8e/xa7/xca/xe7 <CJK> +<U00028150> /x8e/xa7/xca/xe8 <CJK> +<U0002828A> /x8e/xa7/xca/xe9 <CJK> +<U00028281> /x8e/xa7/xca/xea <CJK> +<U00028286> /x8e/xa7/xca/xeb <CJK> +<U0002827F> /x8e/xa7/xca/xec <CJK> +<U00028280> /x8e/xa7/xca/xed <CJK> +<U000283A5> /x8e/xa7/xca/xee <CJK> +<U000283A7> /x8e/xa7/xca/xef <CJK> +<U000283A8> /x8e/xa7/xca/xf0 <CJK> +<U000283A6> /x8e/xa7/xca/xf1 <CJK> +<U000283AF> /x8e/xa7/xca/xf2 <CJK> +<U00026195> /x8e/xa7/xca/xf3 <CJK> +<U000283B1> /x8e/xa7/xca/xf4 <CJK> +<U00028435> /x8e/xa7/xca/xf5 <CJK> +<U00028439> /x8e/xa7/xca/xf6 <CJK> +<U000285C3> /x8e/xa7/xca/xf7 <CJK> +<U00028630> /x8e/xa7/xca/xf8 <CJK> +<U0002862A> /x8e/xa7/xca/xf9 <CJK> +<U0002862B> /x8e/xa7/xca/xfa <CJK> +<U0002862D> /x8e/xa7/xca/xfb <CJK> +<U0002862E> /x8e/xa7/xca/xfc <CJK> +<U0002862C> /x8e/xa7/xca/xfd <CJK> +<U00028623> /x8e/xa7/xca/xfe <CJK> +<U00028621> /x8e/xa7/xcb/xa1 <CJK> +<U00028622> /x8e/xa7/xcb/xa2 <CJK> +<U0002876C> /x8e/xa7/xcb/xa3 <CJK> +<U00028781> /x8e/xa7/xcb/xa4 <CJK> +<U0002878F> /x8e/xa7/xcb/xa5 <CJK> +<U00028780> /x8e/xa7/xcb/xa6 <CJK> +<U000287D0> /x8e/xa7/xcb/xa7 <CJK> +<U000287CD> /x8e/xa7/xcb/xa8 <CJK> +<U000287D5> /x8e/xa7/xcb/xa9 <CJK> +<U000287D4> /x8e/xa7/xcb/xaa <CJK> +<U000288D1> /x8e/xa7/xcb/xab <CJK> +<U000288BE> /x8e/xa7/xcb/xac <CJK> +<U000288CB> /x8e/xa7/xcb/xad <CJK> +<U000288CE> /x8e/xa7/xcb/xae <CJK> +<U000288BD> /x8e/xa7/xcb/xaf <CJK> +<U000288D0> /x8e/xa7/xcb/xb0 <CJK> +<U00028B04> /x8e/xa7/xcb/xb1 <CJK> +<U00028AD5> /x8e/xa7/xcb/xb2 <CJK> +<U00028AD0> /x8e/xa7/xcb/xb3 <CJK> +<U00028AD3> /x8e/xa7/xcb/xb4 <CJK> +<U00028AFB> /x8e/xa7/xcb/xb5 <CJK> +<U00028AD8> /x8e/xa7/xcb/xb6 <CJK> +<U00028AD1> /x8e/xa7/xcb/xb7 <CJK> +<U00028AFD> /x8e/xa7/xcb/xb8 <CJK> +<U00028AD9> /x8e/xa7/xcb/xb9 <CJK> +<U00028AD6> /x8e/xa7/xcb/xba <CJK> +<U00028AE6> /x8e/xa7/xcb/xbb <CJK> +<U00028AF9> /x8e/xa7/xcb/xbc <CJK> +<U00028DA1> /x8e/xa7/xcb/xbd <CJK> +<U00028D9D> /x8e/xa7/xcb/xbe <CJK> +<U00028D9E> /x8e/xa7/xcb/xbf <CJK> +<U95D9> /x8e/xa7/xcb/xc0 <CJK> +<U00028EFF> /x8e/xa7/xcb/xc1 <CJK> +<U00028F5F> /x8e/xa7/xcb/xc2 <CJK> +<U00028F57> /x8e/xa7/xcb/xc3 <CJK> +<U00028F60> /x8e/xa7/xcb/xc4 <CJK> +<U00028F59> /x8e/xa7/xcb/xc5 <CJK> +<U0002902C> /x8e/xa7/xcb/xc6 <CJK> +<U00029025> /x8e/xa7/xcb/xc7 <CJK> +<U00029027> /x8e/xa7/xcb/xc8 <CJK> +<U00029030> /x8e/xa7/xcb/xc9 <CJK> +<U00029024> /x8e/xa7/xcb/xca <CJK> +<U00029026> /x8e/xa7/xcb/xcb <CJK> +<U0002902D> /x8e/xa7/xcb/xcc <CJK> +<U0002902E> /x8e/xa7/xcb/xcd <CJK> +<U00029029> /x8e/xa7/xcb/xce <CJK> +<U00029031> /x8e/xa7/xcb/xcf <CJK> +<U00029145> /x8e/xa7/xcb/xd0 <CJK> +<U00029147> /x8e/xa7/xcb/xd1 <CJK> +<U00029152> /x8e/xa7/xcb/xd2 <CJK> +<U0002914A> /x8e/xa7/xcb/xd3 <CJK> +<U00029150> /x8e/xa7/xcb/xd4 <CJK> +<U00029146> /x8e/xa7/xcb/xd5 <CJK> +<U0002914F> /x8e/xa7/xcb/xd6 <CJK> +<U0002914E> /x8e/xa7/xcb/xd7 <CJK> +<U00029153> /x8e/xa7/xcb/xd8 <CJK> +<U00029321> /x8e/xa7/xcb/xd9 <CJK> +<U00029309> /x8e/xa7/xcb/xda <CJK> +<U0002931A> /x8e/xa7/xcb/xdb <CJK> +<U0002931B> /x8e/xa7/xcb/xdc <CJK> +<U00025315> /x8e/xa7/xcb/xdd <CJK> +<U00029310> /x8e/xa7/xcb/xde <CJK> +<U00029314> /x8e/xa7/xcb/xe0 <CJK> +<U0002930E> /x8e/xa7/xcb/xe1 <CJK> +<U00029312> /x8e/xa7/xcb/xe2 <CJK> +<U0002930B> /x8e/xa7/xcb/xe3 <CJK> +<U000293CF> /x8e/xa7/xcb/xe4 <CJK> +<U000293D2> /x8e/xa7/xcb/xe5 <CJK> +<U000293D0> /x8e/xa7/xcb/xe6 <CJK> +<U000293D4> /x8e/xa7/xcb/xe7 <CJK> +<U000293D3> /x8e/xa7/xcb/xe8 <CJK> +<U000293D1> /x8e/xa7/xcb/xe9 <CJK> +<U00020B18> /x8e/xa7/xcb/xea <CJK> +<U00029409> /x8e/xa7/xcb/xec <CJK> +<U0002951C> /x8e/xa7/xcb/xed <CJK> +<U00029527> /x8e/xa7/xcb/xee <CJK> +<U00029525> /x8e/xa7/xcb/xef <CJK> +<U0002951B> /x8e/xa7/xcb/xf0 <CJK> +<U00029529> /x8e/xa7/xcb/xf1 <CJK> +<U0002951F> /x8e/xa7/xcb/xf2 <CJK> +<U00029530> /x8e/xa7/xcb/xf3 <CJK> +<U00029524> /x8e/xa7/xcb/xf4 <CJK> +<U00029528> /x8e/xa7/xcb/xf5 <CJK> +<U00029519> /x8e/xa7/xcb/xf6 <CJK> +<U0002952F> /x8e/xa7/xcb/xf7 <CJK> +<U00029624> /x8e/xa7/xcb/xf8 <CJK> +<U00029621> /x8e/xa7/xcb/xf9 <CJK> +<U00029625> /x8e/xa7/xcb/xfa <CJK> +<U00029626> /x8e/xa7/xcb/xfb <CJK> +<U00029627> /x8e/xa7/xcb/xfc <CJK> +<U00029676> /x8e/xa7/xcb/xfd <CJK> +<U00029766> /x8e/xa7/xcb/xfe <CJK> +<U00029775> /x8e/xa7/xcc/xa1 <CJK> +<U00029769> /x8e/xa7/xcc/xa2 <CJK> +<U0002977E> /x8e/xa7/xcc/xa3 <CJK> +<U0002978F> /x8e/xa7/xcc/xa4 <CJK> +<U00029774> /x8e/xa7/xcc/xa5 <CJK> +<U00027210> /x8e/xa7/xcc/xa6 <CJK> +<U000297AD> /x8e/xa7/xcc/xa7 <CJK> +<U0002982B> /x8e/xa7/xcc/xa8 <CJK> +<U0002982A> /x8e/xa7/xcc/xa9 <CJK> +<U00029858> /x8e/xa7/xcc/xaa <CJK> +<U00029922> /x8e/xa7/xcc/xab <CJK> +<U0002991D> /x8e/xa7/xcc/xac <CJK> +<U0002992B> /x8e/xa7/xcc/xad <CJK> +<U0002992C> /x8e/xa7/xcc/xae <CJK> +<U0002992D> /x8e/xa7/xcc/xaf <CJK> +<U00029933> /x8e/xa7/xcc/xb0 <CJK> +<U0002991B> /x8e/xa7/xcc/xb1 <CJK> +<U00029927> /x8e/xa7/xcc/xb2 <CJK> +<U0002992A> /x8e/xa7/xcc/xb3 <CJK> +<U00029928> /x8e/xa7/xcc/xb4 <CJK> +<U0002993B> /x8e/xa7/xcc/xb5 <CJK> +<U00029A7E> /x8e/xa7/xcc/xb6 <CJK> +<U00029A71> /x8e/xa7/xcc/xb7 <CJK> +<U00029A79> /x8e/xa7/xcc/xb8 <CJK> +<U00029A78> /x8e/xa7/xcc/xb9 <CJK> +<U00029A70> /x8e/xa7/xcc/xba <CJK> +<U00029A6D> /x8e/xa7/xcc/xbb <CJK> +<U00029A7D> /x8e/xa7/xcc/xbc <CJK> +<U00029A75> /x8e/xa7/xcc/xbd <CJK> +<U00029A76> /x8e/xa7/xcc/xbe <CJK> +<U00029ADE> /x8e/xa7/xcc/xbf <CJK> +<U00029B66> /x8e/xa7/xcc/xc0 <CJK> +<U00029B83> /x8e/xa7/xcc/xc1 <CJK> +<U00029B87> /x8e/xa7/xcc/xc2 <CJK> +<U00029B7B> /x8e/xa7/xcc/xc3 <CJK> +<U00029B89> /x8e/xa7/xcc/xc4 <CJK> +<U00029B86> /x8e/xa7/xcc/xc5 <CJK> +<U00029B82> /x8e/xa7/xcc/xc6 <CJK> +<U00029B7C> /x8e/xa7/xcc/xc7 <CJK> +<U00029B81> /x8e/xa7/xcc/xc8 <CJK> +<U00029C43> /x8e/xa7/xcc/xc9 <CJK> +<U00029C45> /x8e/xa7/xcc/xca <CJK> +<U00029CF7> /x8e/xa7/xcc/xcb <CJK> +<U00029CF9> /x8e/xa7/xcc/xcc <CJK> +<U00029CFA> /x8e/xa7/xcc/xcd <CJK> +<U00029E05> /x8e/xa7/xcc/xce <CJK> +<U00029DFE> /x8e/xa7/xcc/xcf <CJK> +<U00029E0F> /x8e/xa7/xcc/xd0 <CJK> +<U00029DFF> /x8e/xa7/xcc/xd1 <CJK> +<U00029DFA> /x8e/xa7/xcc/xd2 <CJK> +<U00029E09> /x8e/xa7/xcc/xd3 <CJK> +<U00029E20> /x8e/xa7/xcc/xd4 <CJK> +<U00029E0C> /x8e/xa7/xcc/xd5 <CJK> +<U00029E3C> /x8e/xa7/xcc/xd6 <CJK> +<U00029E22> /x8e/xa7/xcc/xd7 <CJK> +<U00029DF8> /x8e/xa7/xcc/xd8 <CJK> +<U00029E0A> /x8e/xa7/xcc/xd9 <CJK> +<U00029E08> /x8e/xa7/xcc/xda <CJK> +<U00029DF7> /x8e/xa7/xcc/xdb <CJK> +<U0002A08E> /x8e/xa7/xcc/xdc <CJK> +<U0002A077> /x8e/xa7/xcc/xdd <CJK> +<U0002A08B> /x8e/xa7/xcc/xde <CJK> +<U0002A0B4> /x8e/xa7/xcc/xdf <CJK> +<U0002A08A> /x8e/xa7/xcc/xe0 <CJK> +<U0002A09A> /x8e/xa7/xcc/xe1 <CJK> +<U0002A079> /x8e/xa7/xcc/xe2 <CJK> +<U0002A083> /x8e/xa7/xcc/xe3 <CJK> +<U0002A07F> /x8e/xa7/xcc/xe4 <CJK> +<U0002A0A1> /x8e/xa7/xcc/xe5 <CJK> +<U0002A08F> /x8e/xa7/xcc/xe6 <CJK> +<U0002A0A3> /x8e/xa7/xcc/xe7 <CJK> +<U0002A081> /x8e/xa7/xcc/xe8 <CJK> +<U0002A094> /x8e/xa7/xcc/xe9 <CJK> +<U0002A07E> /x8e/xa7/xcc/xea <CJK> +<U0002A082> /x8e/xa7/xcc/xeb <CJK> +<U0002A090> /x8e/xa7/xcc/xec <CJK> +<U0002A0A5> /x8e/xa7/xcc/xed <CJK> +<U0002A0AD> /x8e/xa7/xcc/xee <CJK> +<U0002A09D> /x8e/xa7/xcc/xef <CJK> +<U0002A267> /x8e/xa7/xcc/xf0 <CJK> +<U0002A269> /x8e/xa7/xcc/xf1 <CJK> +<U0002A2CB> /x8e/xa7/xcc/xf2 <CJK> +<U0002A2C8> /x8e/xa7/xcc/xf3 <CJK> +<U0002A2D1> /x8e/xa7/xcc/xf4 <CJK> +<U0002A340> /x8e/xa7/xcc/xf5 <CJK> +<U0002A34B> /x8e/xa7/xcc/xf6 <CJK> +<U0002A349> /x8e/xa7/xcc/xf7 <CJK> +<U0002A346> /x8e/xa7/xcc/xf8 <CJK> +<U0002A33E> /x8e/xa7/xcc/xf9 <CJK> +<U0002A343> /x8e/xa7/xcc/xfa <CJK> +<U0002A33F> /x8e/xa7/xcc/xfb <CJK> +<U0002A3A5> /x8e/xa7/xcc/xfc <CJK> +<U0002A3A7> /x8e/xa7/xcc/xfd <CJK> +<U0002A44E> /x8e/xa7/xcc/xfe <CJK> +<U0002A44D> /x8e/xa7/xcd/xa1 <CJK> +<U0002259B> /x8e/xa7/xcd/xa2 <CJK> +<U0002A4E5> /x8e/xa7/xcd/xa3 <CJK> +<U0002A4E1> /x8e/xa7/xcd/xa4 <CJK> +<U0002A4E2> /x8e/xa7/xcd/xa5 <CJK> +<U0002A516> /x8e/xa7/xcd/xa6 <CJK> +<U0002A514> /x8e/xa7/xcd/xa7 <CJK> +<U0002A559> /x8e/xa7/xcd/xa9 <CJK> +<U0002A551> /x8e/xa7/xcd/xaa <CJK> +<U0002A55F> /x8e/xa7/xcd/xab <CJK> +<U0002A54A> /x8e/xa7/xcd/xac <CJK> +<U0002A557> /x8e/xa7/xcd/xad <CJK> +<U0002A558> /x8e/xa7/xcd/xae <CJK> +<U0002A5CA> /x8e/xa7/xcd/xaf <CJK> +<U0002A5DB> /x8e/xa7/xcd/xb0 <CJK> +<U0002A5DE> /x8e/xa7/xcd/xb1 <CJK> +<U0002A5E0> /x8e/xa7/xcd/xb2 <CJK> +<U0002A5E1> /x8e/xa7/xcd/xb3 <CJK> +<U0002A5DF> /x8e/xa7/xcd/xb4 <CJK> +<U0002A5E2> /x8e/xa7/xcd/xb5 <CJK> +<U0002A5E3> /x8e/xa7/xcd/xb6 <CJK> +<U0002A692> /x8e/xa7/xcd/xb7 <CJK> +<U0002A6BF> /x8e/xa7/xcd/xb8 <CJK> +<U0002A6BE> /x8e/xa7/xcd/xb9 <CJK> +<U0002010B> /x8e/xa7/xcd/xba <CJK> +<U00020452> /x8e/xa7/xcd/xbb <CJK> +<U0002044E> /x8e/xa7/xcd/xbc <CJK> +<U34B9> /x8e/xa7/xcd/xbd <CJK> +<U000205A7> /x8e/xa7/xcd/xbf <CJK> +<U00020826> /x8e/xa7/xcd/xc0 <CJK> +<U00020827> /x8e/xa7/xcd/xc1 <CJK> +<U000208C6> /x8e/xa7/xcd/xc2 <CJK> +<U0002090B> /x8e/xa7/xcd/xc3 <CJK> +<U0002096A> /x8e/xa7/xcd/xc4 <CJK> +<U00020978> /x8e/xa7/xcd/xc5 <CJK> +<U0002111A> /x8e/xa7/xcd/xc6 <CJK> +<U00021116> /x8e/xa7/xcd/xc7 <CJK> +<U00021119> /x8e/xa7/xcd/xc8 <CJK> +<U00021117> /x8e/xa7/xcd/xc9 <CJK> +<U0002111B> /x8e/xa7/xcd/xca <CJK> +<U00021118> /x8e/xa7/xcd/xcb <CJK> +<U00021120> /x8e/xa7/xcd/xcc <CJK> +<U00021237> /x8e/xa7/xcd/xcd <CJK> +<U000214EC> /x8e/xa7/xcd/xce <CJK> +<U00021581> /x8e/xa7/xcd/xcf <CJK> +<U0002923D> /x8e/xa7/xcd/xd0 <CJK> +<U0002190F> /x8e/xa7/xcd/xd1 <CJK> +<U000219AD> /x8e/xa7/xcd/xd2 <CJK> +<U00021AFB> /x8e/xa7/xcd/xd3 <CJK> +<U00021B52> /x8e/xa7/xcd/xd4 <CJK> +<U00021FAF> /x8e/xa7/xcd/xd5 <CJK> +<U00021FB7> /x8e/xa7/xcd/xd6 <CJK> +<U00021FB2> /x8e/xa7/xcd/xd7 <CJK> +<U00022178> /x8e/xa7/xcd/xd8 <CJK> +<U000221AC> /x8e/xa7/xcd/xd9 <CJK> +<U00022300> /x8e/xa7/xcd/xda <CJK> +<U000222FE> /x8e/xa7/xcd/xdb <CJK> +<U00022302> /x8e/xa7/xcd/xdc <CJK> +<U000222FD> /x8e/xa7/xcd/xdd <CJK> +<U00022303> /x8e/xa7/xcd/xde <CJK> +<U00022440> /x8e/xa7/xcd/xdf <CJK> +<U00022443> /x8e/xa7/xcd/xe0 <CJK> +<U00022442> /x8e/xa7/xcd/xe1 <CJK> +<U000224B7> /x8e/xa7/xcd/xe2 <CJK> +<U000225A2> /x8e/xa7/xcd/xe3 <CJK> +<U00022900> /x8e/xa7/xcd/xe4 <CJK> +<U00022935> /x8e/xa7/xcd/xe5 <CJK> +<U00022941> /x8e/xa7/xcd/xe6 <CJK> +<U00022905> /x8e/xa7/xcd/xe7 <CJK> +<U00020453> /x8e/xa7/xcd/xe8 <CJK> +<U00022950> /x8e/xa7/xcd/xe9 <CJK> +<U0002294E> /x8e/xa7/xcd/xea <CJK> +<U00022953> /x8e/xa7/xcd/xeb <CJK> +<U00022E53> /x8e/xa7/xcd/xec <CJK> +<U00022E50> /x8e/xa7/xcd/xed <CJK> +<U00022E57> /x8e/xa7/xcd/xee <CJK> +<U00022E5F> /x8e/xa7/xcd/xef <CJK> +<U00022E55> /x8e/xa7/xcd/xf0 <CJK> +<U00022EEA> /x8e/xa7/xcd/xf1 <CJK> +<U00023026> /x8e/xa7/xcd/xf2 <CJK> +<U00029830> /x8e/xa7/xcd/xf3 <CJK> +<U0002302A> /x8e/xa7/xcd/xf4 <CJK> +<U00023028> /x8e/xa7/xcd/xf5 <CJK> +<U0002302C> /x8e/xa7/xcd/xf6 <CJK> +<U0002302D> /x8e/xa7/xcd/xf7 <CJK> +<U000230D4> /x8e/xa7/xcd/xf8 <CJK> +<U00023307> /x8e/xa7/xcd/xf9 <CJK> +<U00023358> /x8e/xa7/xcd/xfa <CJK> +<U00023359> /x8e/xa7/xcd/xfb <CJK> +<U000237C5> /x8e/xa7/xcd/xfc <CJK> +<U000237CD> /x8e/xa7/xcd/xfd <CJK> +<U000237C7> /x8e/xa7/xcd/xfe <CJK> +<U000237E8> /x8e/xa7/xce/xa1 <CJK> +<U3C4B> /x8e/xa7/xce/xa2 <CJK> +<U00023932> /x8e/xa7/xce/xa3 <CJK> +<U0002A697> /x8e/xa7/xce/xa4 <CJK> +<U00023ADE> /x8e/xa7/xce/xa5 <CJK> +<U00023C32> /x8e/xa7/xce/xa6 <CJK> +<U00020AC8> /x8e/xa7/xce/xa7 <CJK> +<U000240F1> /x8e/xa7/xce/xa9 <CJK> +<U000240F0> /x8e/xa7/xce/xaa <CJK> +<U000240EC> /x8e/xa7/xce/xab <CJK> +<U00024109> /x8e/xa7/xce/xac <CJK> +<U000240F9> /x8e/xa7/xce/xad <CJK> +<U000240F5> /x8e/xa7/xce/xae <CJK> +<U000240FE> /x8e/xa7/xce/xaf <CJK> +<U00024474> /x8e/xa7/xce/xb0 <CJK> +<U00024481> /x8e/xa7/xce/xb1 <CJK> +<U0002447C> /x8e/xa7/xce/xb2 <CJK> +<U00024475> /x8e/xa7/xce/xb3 <CJK> +<U00024489> /x8e/xa7/xce/xb4 <CJK> +<U00024482> /x8e/xa7/xce/xb5 <CJK> +<U00024497> /x8e/xa7/xce/xb6 <CJK> +<U00024486> /x8e/xa7/xce/xb7 <CJK> +<U0002447D> /x8e/xa7/xce/xb8 <CJK> +<U00024493> /x8e/xa7/xce/xb9 <CJK> +<U0002449C> /x8e/xa7/xce/xba <CJK> +<U00024476> /x8e/xa7/xce/xbb <CJK> +<U00024480> /x8e/xa7/xce/xbc <CJK> +<U00024545> /x8e/xa7/xce/xbd <CJK> +<U000206A1> /x8e/xa7/xce/xbe <CJK> +<U00024703> /x8e/xa7/xce/xbf <CJK> +<U000248C9> /x8e/xa7/xce/xc0 <CJK> +<U000248CD> /x8e/xa7/xce/xc1 <CJK> +<U000248D0> /x8e/xa7/xce/xc2 <CJK> +<U00024AAD> /x8e/xa7/xce/xc3 <CJK> +<U00024AC5> /x8e/xa7/xce/xc4 <CJK> +<U00024BA2> /x8e/xa7/xce/xc5 <CJK> +<U00024CEC> /x8e/xa7/xce/xc6 <CJK> +<U00024CF6> /x8e/xa7/xce/xc7 <CJK> +<U00024CF3> /x8e/xa7/xce/xc8 <CJK> +<U00024EF3> /x8e/xa7/xce/xc9 <CJK> +<U00024EFA> /x8e/xa7/xce/xca <CJK> +<U00024EF9> /x8e/xa7/xce/xcb <CJK> +<U00024EF5> /x8e/xa7/xce/xcc <CJK> +<U00024EF4> /x8e/xa7/xce/xcd <CJK> +<U00024EF8> /x8e/xa7/xce/xce <CJK> +<U00024FB6> /x8e/xa7/xce/xcf <CJK> +<U00024FB4> /x8e/xa7/xce/xd0 <CJK> +<U00025032> /x8e/xa7/xce/xd1 <CJK> +<U000250CD> /x8e/xa7/xce/xd2 <CJK> +<U000250C8> /x8e/xa7/xce/xd3 <CJK> +<U000250CE> /x8e/xa7/xce/xd4 <CJK> +<U000250CA> /x8e/xa7/xce/xd5 <CJK> +<U0002532A> /x8e/xa7/xce/xd6 <CJK> +<U00025321> /x8e/xa7/xce/xd7 <CJK> +<U0002531D> /x8e/xa7/xce/xd8 <CJK> +<U000255BD> /x8e/xa7/xce/xd9 <CJK> +<U000255BE> /x8e/xa7/xce/xda <CJK> +<U000255C2> /x8e/xa7/xce/xdb <CJK> +<U40F1> /x8e/xa7/xce/xdc <CJK> +<U000255C9> /x8e/xa7/xce/xdd <CJK> +<U0002571F> /x8e/xa7/xce/xde <CJK> +<U000258F1> /x8e/xa7/xce/xdf <CJK> +<U000258ED> /x8e/xa7/xce/xe0 <CJK> +<U000258F2> /x8e/xa7/xce/xe1 <CJK> +<U000258E0> /x8e/xa7/xce/xe2 <CJK> +<U000258F7> /x8e/xa7/xce/xe3 <CJK> +<U00025A30> /x8e/xa7/xce/xe4 <CJK> +<U00025A37> /x8e/xa7/xce/xe5 <CJK> +<U00025A31> /x8e/xa7/xce/xe6 <CJK> +<U00025A36> /x8e/xa7/xce/xe7 <CJK> +<U00025AC8> /x8e/xa7/xce/xe8 <CJK> +<U00025D6D> /x8e/xa7/xce/xe9 <CJK> +<U00025D69> /x8e/xa7/xce/xea <CJK> +<U00025D7D> /x8e/xa7/xce/xeb <CJK> +<U00025D61> /x8e/xa7/xce/xec <CJK> +<U00025D70> /x8e/xa7/xce/xed <CJK> +<U00025D71> /x8e/xa7/xce/xee <CJK> +<U00025D73> /x8e/xa7/xce/xef <CJK> +<U00025D76> /x8e/xa7/xce/xf0 <CJK> +<U00025D75> /x8e/xa7/xce/xf1 <CJK> +<U00025D78> /x8e/xa7/xce/xf2 <CJK> +<U00025D79> /x8e/xa7/xce/xf3 <CJK> +<U00025D64> /x8e/xa7/xce/xf4 <CJK> +<U00025D6E> /x8e/xa7/xce/xf5 <CJK> +<U00025F51> /x8e/xa7/xce/xf6 <CJK> +<U00025F4F> /x8e/xa7/xce/xf7 <CJK> +<U00025F22> /x8e/xa7/xce/xf8 <CJK> +<U000261AF> /x8e/xa7/xce/xf9 <CJK> +<U000261AA> /x8e/xa7/xce/xfa <CJK> +<U000261A3> /x8e/xa7/xce/xfb <CJK> +<U0002619D> /x8e/xa7/xce/xfc <CJK> +<U0002619C> /x8e/xa7/xce/xfd <CJK> +<U000261A1> /x8e/xa7/xce/xfe <CJK> +<U000261B6> /x8e/xa7/xcf/xa1 <CJK> +<U000261AC> /x8e/xa7/xcf/xa2 <CJK> +<U000261A2> /x8e/xa7/xcf/xa3 <CJK> +<U000261A7> /x8e/xa7/xcf/xa4 <CJK> +<U000261B0> /x8e/xa7/xcf/xa5 <CJK> +<U000261A9> /x8e/xa7/xcf/xa6 <CJK> +<U000261C3> /x8e/xa7/xcf/xa7 <CJK> +<U00026331> /x8e/xa7/xcf/xa8 <CJK> +<U00026332> /x8e/xa7/xcf/xa9 <CJK> +<U00026333> /x8e/xa7/xcf/xaa <CJK> +<U00026334> /x8e/xa7/xcf/xab <CJK> +<U00026337> /x8e/xa7/xcf/xac <CJK> +<U0002633C> /x8e/xa7/xcf/xad <CJK> +<U000263D9> /x8e/xa7/xcf/xae <CJK> +<U000263DD> /x8e/xa7/xcf/xaf <CJK> +<U000263DE> /x8e/xa7/xcf/xb0 <CJK> +<U000263DF> /x8e/xa7/xcf/xb1 <CJK> +<U000263E0> /x8e/xa7/xcf/xb2 <CJK> +<U000264A5> /x8e/xa7/xcf/xb3 <CJK> +<U000264AA> /x8e/xa7/xcf/xb4 <CJK> +<U000264A2> /x8e/xa7/xcf/xb5 <CJK> +<U000264A3> /x8e/xa7/xcf/xb6 <CJK> +<U00026604> /x8e/xa7/xcf/xb7 <CJK> +<U00026603> /x8e/xa7/xcf/xb8 <CJK> +<U000265FE> /x8e/xa7/xcf/xb9 <CJK> +<U00026628> /x8e/xa7/xcf/xba <CJK> +<U000268AF> /x8e/xa7/xcf/xbb <CJK> +<U000268AD> /x8e/xa7/xcf/xbc <CJK> +<U000268A6> /x8e/xa7/xcf/xbd <CJK> +<U000269AC> /x8e/xa7/xcf/xbe <CJK> +<U000269A5> /x8e/xa7/xcf/xbf <CJK> +<U000269B0> /x8e/xa7/xcf/xc0 <CJK> +<U000269B1> /x8e/xa7/xcf/xc1 <CJK> +<U00026A01> /x8e/xa7/xcf/xc2 <CJK> +<U00026AB2> /x8e/xa7/xcf/xc3 <CJK> +<U00026AD2> /x8e/xa7/xcf/xc4 <CJK> +<U00026AF1> /x8e/xa7/xcf/xc5 <CJK> +<U00026FD1> /x8e/xa7/xcf/xc6 <CJK> +<U00027047> /x8e/xa7/xcf/xc7 <CJK> +<U000270C9> /x8e/xa7/xcf/xc8 <CJK> +<U000270A7> /x8e/xa7/xcf/xc9 <CJK> +<U000270C8> /x8e/xa7/xcf/xca <CJK> +<U00027095> /x8e/xa7/xcf/xcb <CJK> +<U0002708E> /x8e/xa7/xcf/xcc <CJK> +<U00027091> /x8e/xa7/xcf/xcd <CJK> +<U0002707D> /x8e/xa7/xcf/xce <CJK> +<U000270EE> /x8e/xa7/xcf/xcf <CJK> +<U0002708D> /x8e/xa7/xcf/xd0 <CJK> +<U0002708C> /x8e/xa7/xcf/xd1 <CJK> +<U000270B0> /x8e/xa7/xcf/xd2 <CJK> +<U00027096> /x8e/xa7/xcf/xd3 <CJK> +<U00027042> /x8e/xa7/xcf/xd4 <CJK> +<U0002707C> /x8e/xa7/xcf/xd5 <CJK> +<U000270B1> /x8e/xa7/xcf/xd6 <CJK> +<U000270B2> /x8e/xa7/xcf/xd7 <CJK> +<U00027084> /x8e/xa7/xcf/xd8 <CJK> +<U0002709D> /x8e/xa7/xcf/xd9 <CJK> +<U000270A1> /x8e/xa7/xcf/xda <CJK> +<U00027098> /x8e/xa7/xcf/xdb <CJK> +<U000270B3> /x8e/xa7/xcf/xdc <CJK> +<U00027022> /x8e/xa7/xcf/xdd <CJK> +<U0002707B> /x8e/xa7/xcf/xde <CJK> +<U0002708A> /x8e/xa7/xcf/xdf <CJK> +<U000270CE> /x8e/xa7/xcf/xe0 <CJK> +<U00027080> /x8e/xa7/xcf/xe1 <CJK> +<U00027097> /x8e/xa7/xcf/xe2 <CJK> +<U000270B4> /x8e/xa7/xcf/xe3 <CJK> +<U000270B5> /x8e/xa7/xcf/xe4 <CJK> +<U0002709A> /x8e/xa7/xcf/xe5 <CJK> +<U0002709F> /x8e/xa7/xcf/xe6 <CJK> +<U00027093> /x8e/xa7/xcf/xe7 <CJK> +<U00027212> /x8e/xa7/xcf/xe8 <CJK> +<U0002720B> /x8e/xa7/xcf/xe9 <CJK> +<U0002720E> /x8e/xa7/xcf/xea <CJK> +<U000274A3> /x8e/xa7/xcf/xeb <CJK> +<U000274CC> /x8e/xa7/xcf/xec <CJK> +<U000274DC> /x8e/xa7/xcf/xed <CJK> +<U000274E1> /x8e/xa7/xcf/xee <CJK> +<U000274DE> /x8e/xa7/xcf/xef <CJK> +<U000274D2> /x8e/xa7/xcf/xf0 <CJK> +<U000274DB> /x8e/xa7/xcf/xf1 <CJK> +<U000274D9> /x8e/xa7/xcf/xf2 <CJK> +<U000274D7> /x8e/xa7/xcf/xf3 <CJK> +<U000274D4> /x8e/xa7/xcf/xf4 <CJK> +<U000274C9> /x8e/xa7/xcf/xf5 <CJK> +<U000274EB> /x8e/xa7/xcf/xf6 <CJK> +<U000274DA> /x8e/xa7/xcf/xf7 <CJK> +<U000274D1> /x8e/xa7/xcf/xf8 <CJK> +<U00027504> /x8e/xa7/xcf/xf9 <CJK> +<U000274CA> /x8e/xa7/xcf/xfa <CJK> +<U000274E2> /x8e/xa7/xcf/xfb <CJK> +<U000275D7> /x8e/xa7/xcf/xfc <CJK> +<U0002778C> /x8e/xa7/xcf/xfd <CJK> +<U00027799> /x8e/xa7/xcf/xfe <CJK> +<U000277A2> /x8e/xa7/xd0/xa1 <CJK> +<U00027796> /x8e/xa7/xd0/xa2 <CJK> +<U00027794> /x8e/xa7/xd0/xa3 <CJK> +<U0002779F> /x8e/xa7/xd0/xa4 <CJK> +<U4667> /x8e/xa7/xd0/xa5 <CJK> +<U0002778E> /x8e/xa7/xd0/xa6 <CJK> +<U00027803> /x8e/xa7/xd0/xa7 <CJK> +<U00027894> /x8e/xa7/xd0/xa8 <CJK> +<U00027893> /x8e/xa7/xd0/xa9 <CJK> +<U00027944> /x8e/xa7/xd0/xaa <CJK> +<U00027B2F> /x8e/xa7/xd0/xab <CJK> +<U00027B35> /x8e/xa7/xd0/xac <CJK> +<U00027B2B> /x8e/xa7/xd0/xad <CJK> +<U00027B32> /x8e/xa7/xd0/xae <CJK> +<U00027B2D> /x8e/xa7/xd0/xaf <CJK> +<U00027B36> /x8e/xa7/xd0/xb0 <CJK> +<U4714> /x8e/xa7/xd0/xb1 <CJK> +<U00027B31> /x8e/xa7/xd0/xb2 <CJK> +<U00027B12> /x8e/xa7/xd0/xb3 <CJK> +<U00027B33> /x8e/xa7/xd0/xb4 <CJK> +<U00027B1F> /x8e/xa7/xd0/xb5 <CJK> +<U00027B34> /x8e/xa7/xd0/xb6 <CJK> +<U00027B40> /x8e/xa7/xd0/xb7 <CJK> +<U00027B3F> /x8e/xa7/xd0/xb8 <CJK> +<U00027B41> /x8e/xa7/xd0/xb9 <CJK> +<U00027BD3> /x8e/xa7/xd0/xba <CJK> +<U00027C89> /x8e/xa7/xd0/xbb <CJK> +<U00027D18> /x8e/xa7/xd0/xbc <CJK> +<U00027D10> /x8e/xa7/xd0/xbd <CJK> +<U00027E1A> /x8e/xa7/xd0/xbe <CJK> +<U00027E25> /x8e/xa7/xd0/xbf <CJK> +<U00027E1E> /x8e/xa7/xd0/xc0 <CJK> +<U00027F92> /x8e/xa7/xd0/xc1 <CJK> +<U00027F95> /x8e/xa7/xd0/xc2 <CJK> +<U00027F93> /x8e/xa7/xd0/xc3 <CJK> +<U00028184> /x8e/xa7/xd0/xc4 <CJK> +<U0002819A> /x8e/xa7/xd0/xc5 <CJK> +<U00028189> /x8e/xa7/xd0/xc6 <CJK> +<U0002818D> /x8e/xa7/xd0/xc7 <CJK> +<U00028188> /x8e/xa7/xd0/xc8 <CJK> +<U00028191> /x8e/xa7/xd0/xc9 <CJK> +<U0002819B> /x8e/xa7/xd0/xca <CJK> +<U0002819C> /x8e/xa7/xd0/xcb <CJK> +<U00029548> /x8e/xa7/xd0/xcc <CJK> +<U0002828E> /x8e/xa7/xd0/xcd <CJK> +<U00028292> /x8e/xa7/xd0/xce <CJK> +<U000283C5> /x8e/xa7/xd0/xcf <CJK> +<U000283C1> /x8e/xa7/xd0/xd0 <CJK> +<U000283B8> /x8e/xa7/xd0/xd1 <CJK> +<U000283BE> /x8e/xa7/xd0/xd2 <CJK> +<U000283B5> /x8e/xa7/xd0/xd3 <CJK> +<U000283C7> /x8e/xa7/xd0/xd4 <CJK> +<U0002843C> /x8e/xa7/xd0/xd5 <CJK> +<U4889> /x8e/xa7/xd0/xd6 <CJK> +<U000285EC> /x8e/xa7/xd0/xd7 <CJK> +<U0002863F> /x8e/xa7/xd0/xd8 <CJK> +<U00028639> /x8e/xa7/xd0/xd9 <CJK> +<U00028637> /x8e/xa7/xd0/xda <CJK> +<U000287A1> /x8e/xa7/xd0/xdb <CJK> +<U00028794> /x8e/xa7/xd0/xdc <CJK> +<U000287A0> /x8e/xa7/xd0/xdd <CJK> +<U000287DE> /x8e/xa7/xd0/xde <CJK> +<U000287DB> /x8e/xa7/xd0/xdf <CJK> +<U000287DF> /x8e/xa7/xd0/xe0 <CJK> +<U000287DC> /x8e/xa7/xd0/xe1 <CJK> +<U000288D6> /x8e/xa7/xd0/xe2 <CJK> +<U000288DC> /x8e/xa7/xd0/xe3 <CJK> +<U000288DD> /x8e/xa7/xd0/xe4 <CJK> +<U000288E0> /x8e/xa7/xd0/xe5 <CJK> +<U000288E3> /x8e/xa7/xd0/xe6 <CJK> +<U000288E1> /x8e/xa7/xd0/xe7 <CJK> +<U00028B18> /x8e/xa7/xd0/xe8 <CJK> +<U00028B19> /x8e/xa7/xd0/xe9 <CJK> +<U00028B53> /x8e/xa7/xd0/xea <CJK> +<U00028B44> /x8e/xa7/xd0/xec <CJK> +<U00028B0E> /x8e/xa7/xd0/xed <CJK> +<U00028B0F> /x8e/xa7/xd0/xee <CJK> +<U00028B47> /x8e/xa7/xd0/xef <CJK> +<U00028B17> /x8e/xa7/xd0/xf0 <CJK> +<U00028B1D> /x8e/xa7/xd0/xf1 <CJK> +<U00028B11> /x8e/xa7/xd0/xf2 <CJK> +<U00028CB4> /x8e/xa7/xd0/xf3 <CJK> +<U00028CB6> /x8e/xa7/xd0/xf4 <CJK> +<U00028DB7> /x8e/xa7/xd0/xf5 <CJK> +<U00028DBE> /x8e/xa7/xd0/xf6 <CJK> +<U00028DC2> /x8e/xa7/xd0/xf7 <CJK> +<U00028DB4> /x8e/xa7/xd0/xf8 <CJK> +<U00028F31> /x8e/xa7/xd0/xf9 <CJK> +<U00028F15> /x8e/xa7/xd0/xfa <CJK> +<U00028F83> /x8e/xa7/xd0/xfb <CJK> +<U0002903B> /x8e/xa7/xd0/xfc <CJK> +<U00029036> /x8e/xa7/xd0/xfd <CJK> +<U00029042> /x8e/xa7/xd0/xfe <CJK> +<U00029050> /x8e/xa7/xd1/xa1 <CJK> +<U00029040> /x8e/xa7/xd1/xa2 <CJK> +<U00029034> /x8e/xa7/xd1/xa3 <CJK> +<U00029038> /x8e/xa7/xd1/xa4 <CJK> +<U0002903D> /x8e/xa7/xd1/xa5 <CJK> +<U0002903E> /x8e/xa7/xd1/xa6 <CJK> +<U00029035> /x8e/xa7/xd1/xa7 <CJK> +<U0002903A> /x8e/xa7/xd1/xa8 <CJK> +<U00029046> /x8e/xa7/xd1/xa9 <CJK> +<U00029037> /x8e/xa7/xd1/xaa <CJK> +<U00029039> /x8e/xa7/xd1/xab <CJK> +<U00029045> /x8e/xa7/xd1/xac <CJK> +<U00029177> /x8e/xa7/xd1/xad <CJK> +<U0002915D> /x8e/xa7/xd1/xae <CJK> +<U0002916A> /x8e/xa7/xd1/xaf <CJK> +<U00029176> /x8e/xa7/xd1/xb0 <CJK> +<U0002916B> /x8e/xa7/xd1/xb1 <CJK> +<U0002916C> /x8e/xa7/xd1/xb2 <CJK> +<U00029165> /x8e/xa7/xd1/xb3 <CJK> +<U00029164> /x8e/xa7/xd1/xb4 <CJK> +<U00029171> /x8e/xa7/xd1/xb5 <CJK> +<U0002915F> /x8e/xa7/xd1/xb6 <CJK> +<U00029172> /x8e/xa7/xd1/xb7 <CJK> +<U000291FE> /x8e/xa7/xd1/xb8 <CJK> +<U000291FF> /x8e/xa7/xd1/xb9 <CJK> +<U0002923E> /x8e/xa7/xd1/xba <CJK> +<U0002932B> /x8e/xa7/xd1/xbb <CJK> +<U00029336> /x8e/xa7/xd1/xbc <CJK> +<U0002932D> /x8e/xa7/xd1/xbd <CJK> +<U00029339> /x8e/xa7/xd1/xbe <CJK> +<U0002933F> /x8e/xa7/xd1/xbf <CJK> +<U0002933B> /x8e/xa7/xd1/xc0 <CJK> +<U00029333> /x8e/xa7/xd1/xc1 <CJK> +<U00029342> /x8e/xa7/xd1/xc2 <CJK> +<U0002933A> /x8e/xa7/xd1/xc3 <CJK> +<U000293D5> /x8e/xa7/xd1/xc4 <CJK> +<U000293D8> /x8e/xa7/xd1/xc5 <CJK> +<U000293D9> /x8e/xa7/xd1/xc6 <CJK> +<U0002940D> /x8e/xa7/xd1/xc7 <CJK> +<U0002940A> /x8e/xa7/xd1/xc8 <CJK> +<U00029439> /x8e/xa7/xd1/xc9 <CJK> +<U0002943A> /x8e/xa7/xd1/xca <CJK> +<U0002953D> /x8e/xa7/xd1/xcb <CJK> +<U00029545> /x8e/xa7/xd1/xcc <CJK> +<U0002953A> /x8e/xa7/xd1/xcd <CJK> +<U00029537> /x8e/xa7/xd1/xce <CJK> +<U0002953E> /x8e/xa7/xd1/xcf <CJK> +<U00029542> /x8e/xa7/xd1/xd0 <CJK> +<U00029787> /x8e/xa7/xd1/xd1 <CJK> +<U0002978C> /x8e/xa7/xd1/xd2 <CJK> +<U00029782> /x8e/xa7/xd1/xd3 <CJK> +<U0002976B> /x8e/xa7/xd1/xd4 <CJK> +<U000297A0> /x8e/xa7/xd1/xd5 <CJK> +<U0002979A> /x8e/xa7/xd1/xd6 <CJK> +<U00029790> /x8e/xa7/xd1/xd7 <CJK> +<U0002978E> /x8e/xa7/xd1/xd8 <CJK> +<U000297A1> /x8e/xa7/xd1/xd9 <CJK> +<U000297BD> /x8e/xa7/xd1/xda <CJK> +<U000297B2> /x8e/xa7/xd1/xdb <CJK> +<U000297B5> /x8e/xa7/xd1/xdc <CJK> +<U000297B7> /x8e/xa7/xd1/xdd <CJK> +<U000297AA> /x8e/xa7/xd1/xde <CJK> +<U000297A2> /x8e/xa7/xd1/xdf <CJK> +<U000297A5> /x8e/xa7/xd1/xe0 <CJK> +<U000297AE> /x8e/xa7/xd1/xe1 <CJK> +<U000297AB> /x8e/xa7/xd1/xe2 <CJK> +<U000297BC> /x8e/xa7/xd1/xe3 <CJK> +<U00029832> /x8e/xa7/xd1/xe4 <CJK> +<U0002985A> /x8e/xa7/xd1/xe5 <CJK> +<U00029964> /x8e/xa7/xd1/xe6 <CJK> +<U0002995C> /x8e/xa7/xd1/xe7 <CJK> +<U0002994D> /x8e/xa7/xd1/xe8 <CJK> +<U0002993F> /x8e/xa7/xd1/xe9 <CJK> +<U0002993E> /x8e/xa7/xd1/xea <CJK> +<U00029952> /x8e/xa7/xd1/xeb <CJK> +<U00029958> /x8e/xa7/xd1/xec <CJK> +<U00029957> /x8e/xa7/xd1/xed <CJK> +<U0002995E> /x8e/xa7/xd1/xee <CJK> +<U00029953> /x8e/xa7/xd1/xef <CJK> +<U00029954> /x8e/xa7/xd1/xf0 <CJK> +<U00029956> /x8e/xa7/xd1/xf1 <CJK> +<U00028F65> /x8e/xa7/xd1/xf2 <CJK> +<U00029A84> /x8e/xa7/xd1/xf3 <CJK> +<U00029A85> /x8e/xa7/xd1/xf4 <CJK> +<U00029A86> /x8e/xa7/xd1/xf5 <CJK> +<U00029B97> /x8e/xa7/xd1/xf6 <CJK> +<U00029BA1> /x8e/xa7/xd1/xf7 <CJK> +<U00029BA2> /x8e/xa7/xd1/xf8 <CJK> +<U4C0B> /x8e/xa7/xd1/xf9 <CJK> +<U00029BA3> /x8e/xa7/xd1/xfb <CJK> +<U00029BA6> /x8e/xa7/xd1/xfc <CJK> +<U4C17> /x8e/xa7/xd1/xfd <CJK> +<U00029C15> /x8e/xa7/xd1/xfe <CJK> +<U00029C24> /x8e/xa7/xd2/xa1 <CJK> +<U00029C4A> /x8e/xa7/xd2/xa2 <CJK> +<U00029C49> /x8e/xa7/xd2/xa3 <CJK> +<U00029C48> /x8e/xa7/xd2/xa4 <CJK> +<U00029C4B> /x8e/xa7/xd2/xa5 <CJK> +<U00029D0E> /x8e/xa7/xd2/xa6 <CJK> +<U00029962> /x8e/xa7/xd2/xa7 <CJK> +<U00029D0B> /x8e/xa7/xd2/xa8 <CJK> +<U00029D0A> /x8e/xa7/xd2/xa9 <CJK> +<U00029D08> /x8e/xa7/xd2/xaa <CJK> +<U00029D06> /x8e/xa7/xd2/xab <CJK> +<U00029E43> /x8e/xa7/xd2/xac <CJK> +<U00029E47> /x8e/xa7/xd2/xad <CJK> +<U00029E3F> /x8e/xa7/xd2/xae <CJK> +<U00029E46> /x8e/xa7/xd2/xaf <CJK> +<U00029E50> /x8e/xa7/xd2/xb0 <CJK> +<U4C6D> /x8e/xa7/xd2/xb1 <CJK> +<U00029E4B> /x8e/xa7/xd2/xb2 <CJK> +<U4C70> /x8e/xa7/xd2/xb3 <CJK> +<U00029E52> /x8e/xa7/xd2/xb4 <CJK> +<U0002A0D7> /x8e/xa7/xd2/xb5 <CJK> +<U0002A0BF> /x8e/xa7/xd2/xb6 <CJK> +<U0002A0D8> /x8e/xa7/xd2/xb7 <CJK> +<U0002A0E0> /x8e/xa7/xd2/xb8 <CJK> +<U0002A0E7> /x8e/xa7/xd2/xb9 <CJK> +<U0002A0B8> /x8e/xa7/xd2/xba <CJK> +<U0002A0D5> /x8e/xa7/xd2/xbb <CJK> +<U0002A0EF> /x8e/xa7/xd2/xbc <CJK> +<U0002A0E6> /x8e/xa7/xd2/xbd <CJK> +<U0002A0E4> /x8e/xa7/xd2/xbe <CJK> +<U0002A0D4> /x8e/xa7/xd2/xbf <CJK> +<U0002A0D6> /x8e/xa7/xd2/xc0 <CJK> +<U0002A0EA> /x8e/xa7/xd2/xc1 <CJK> +<U4CED> /x8e/xa7/xd2/xc2 <CJK> +<U0002A0BB> /x8e/xa7/xd2/xc3 <CJK> +<U0002A0E9> /x8e/xa7/xd2/xc4 <CJK> +<U0002A26D> /x8e/xa7/xd2/xc6 <CJK> +<U0002A270> /x8e/xa7/xd2/xc7 <CJK> +<U0002A273> /x8e/xa7/xd2/xc8 <CJK> +<U0002A272> /x8e/xa7/xd2/xc9 <CJK> +<U0002A2D4> /x8e/xa7/xd2/xca <CJK> +<U0002A2CE> /x8e/xa7/xd2/xcb <CJK> +<U0002A2D5> /x8e/xa7/xd2/xcc <CJK> +<U0002A35A> /x8e/xa7/xd2/xcd <CJK> +<U0002A358> /x8e/xa7/xd2/xce <CJK> +<U0002A352> /x8e/xa7/xd2/xcf <CJK> +<U0002A350> /x8e/xa7/xd2/xd0 <CJK> +<U0002A355> /x8e/xa7/xd2/xd1 <CJK> +<U0002A34E> /x8e/xa7/xd2/xd2 <CJK> +<U0002A34D> /x8e/xa7/xd2/xd3 <CJK> +<U0002A3CB> /x8e/xa7/xd2/xd4 <CJK> +<U0002A3CC> /x8e/xa7/xd2/xd5 <CJK> +<U0002A3CD> /x8e/xa7/xd2/xd6 <CJK> +<U0002A3D1> /x8e/xa7/xd2/xd7 <CJK> +<U0002A458> /x8e/xa7/xd2/xd8 <CJK> +<U0002A463> /x8e/xa7/xd2/xd9 <CJK> +<U0002A45E> /x8e/xa7/xd2/xda <CJK> +<U0002A454> /x8e/xa7/xd2/xdb <CJK> +<U0002A45B> /x8e/xa7/xd2/xdc <CJK> +<U0002A4E9> /x8e/xa7/xd2/xdd <CJK> +<U0002A4E7> /x8e/xa7/xd2/xde <CJK> +<U0002A4E8> /x8e/xa7/xd2/xdf <CJK> +<U0002A51D> /x8e/xa7/xd2/xe0 <CJK> +<U0002A567> /x8e/xa7/xd2/xe1 <CJK> +<U0002A55A> /x8e/xa7/xd2/xe2 <CJK> +<U0002A55C> /x8e/xa7/xd2/xe3 <CJK> +<U0002A55B> /x8e/xa7/xd2/xe4 <CJK> +<U0002A561> /x8e/xa7/xd2/xe5 <CJK> +<U0002A5A1> /x8e/xa7/xd2/xe6 <CJK> +<U4D8D> /x8e/xa7/xd2/xe7 <CJK> +<U0002A5A4> /x8e/xa7/xd2/xe8 <CJK> +<U0002A5E9> /x8e/xa7/xd2/xe9 <CJK> +<U0002A5EF> /x8e/xa7/xd2/xea <CJK> +<U0002A5E5> /x8e/xa7/xd2/xeb <CJK> +<U0002A5F5> /x8e/xa7/xd2/xec <CJK> +<U0002A5EB> /x8e/xa7/xd2/xed <CJK> +<U0002A5ED> /x8e/xa7/xd2/xee <CJK> +<U0002A696> /x8e/xa7/xd2/xef <CJK> +<U0002A695> /x8e/xa7/xd2/xf0 <CJK> +<U0002A6B3> /x8e/xa7/xd2/xf1 <CJK> +<U0002A6B5> /x8e/xa7/xd2/xf2 <CJK> +<U0002A6B1> /x8e/xa7/xd2/xf3 <CJK> +<U34A7> /x8e/xa7/xd2/xf4 <CJK> +<U0002044D> /x8e/xa7/xd2/xf5 <CJK> +<U00020624> /x8e/xa7/xd2/xf6 <CJK> +<U0002082B> /x8e/xa7/xd2/xf7 <CJK> +<U000209CF> /x8e/xa7/xd2/xf8 <CJK> +<U00020AC9> /x8e/xa7/xd2/xf9 <CJK> +<U00021136> /x8e/xa7/xd2/xfa <CJK> +<U00021131> /x8e/xa7/xd2/xfb <CJK> +<U00021154> /x8e/xa7/xd2/xfc <CJK> +<U0002113A> /x8e/xa7/xd2/xfd <CJK> +<U00021138> /x8e/xa7/xd2/xfe <CJK> +<U00021239> /x8e/xa7/xd3/xa1 <CJK> +<U00021238> /x8e/xa7/xd3/xa2 <CJK> +<U000214F4> /x8e/xa7/xd3/xa3 <CJK> +<U000214F3> /x8e/xa7/xd3/xa4 <CJK> +<U000214F6> /x8e/xa7/xd3/xa5 <CJK> +<U000214FC> /x8e/xa7/xd3/xa6 <CJK> +<U000214F5> /x8e/xa7/xd3/xa7 <CJK> +<U000214F1> /x8e/xa7/xd3/xa8 <CJK> +<U0002169C> /x8e/xa7/xd3/xa9 <CJK> +<U00021918> /x8e/xa7/xd3/xaa <CJK> +<U0002191A> /x8e/xa7/xd3/xab <CJK> +<U00021AFC> /x8e/xa7/xd3/xac <CJK> +<U00021AFE> /x8e/xa7/xd3/xad <CJK> +<U00021B03> /x8e/xa7/xd3/xae <CJK> +<U00021B53> /x8e/xa7/xd3/xaf <CJK> +<U00021D2B> /x8e/xa7/xd3/xb0 <CJK> +<U00021FC6> /x8e/xa7/xd3/xb1 <CJK> +<U00021FC1> /x8e/xa7/xd3/xb2 <CJK> +<U0002217B> /x8e/xa7/xd3/xb3 <CJK> +<U00022306> /x8e/xa7/xd3/xb4 <CJK> +<U00022449> /x8e/xa7/xd3/xb5 <CJK> +<U000224B8> /x8e/xa7/xd3/xb6 <CJK> +<U000225A3> /x8e/xa7/xd3/xb7 <CJK> +<U00022952> /x8e/xa7/xd3/xb8 <CJK> +<U0002294D> /x8e/xa7/xd3/xb9 <CJK> +<U0002295F> /x8e/xa7/xd3/xba <CJK> +<U0002295E> /x8e/xa7/xd3/xbb <CJK> +<U00022961> /x8e/xa7/xd3/xbc <CJK> +<U00022A23> /x8e/xa7/xd3/xbd <CJK> +<U00022E8C> /x8e/xa7/xd3/xbe <CJK> +<U00022E6F> /x8e/xa7/xd3/xbf <CJK> +<U00022E75> /x8e/xa7/xd3/xc0 <CJK> +<U00022E74> /x8e/xa7/xd3/xc1 <CJK> +<U00022E71> /x8e/xa7/xd3/xc2 <CJK> +<U00022E70> /x8e/xa7/xd3/xc3 <CJK> +<U00022E6C> /x8e/xa7/xd3/xc4 <CJK> +<U00023126> /x8e/xa7/xd3/xc5 <CJK> +<U00023308> /x8e/xa7/xd3/xc6 <CJK> +<U6707> /x8e/xa7/xd3/xc7 <CJK> +<U000237F0> /x8e/xa7/xd3/xc8 <CJK> +<U000237EF> /x8e/xa7/xd3/xc9 <CJK> +<U000237FB> /x8e/xa7/xd3/xca <CJK> +<U00023810> /x8e/xa7/xd3/xcb <CJK> +<U0002380C> /x8e/xa7/xd3/xcc <CJK> +<U000237F6> /x8e/xa7/xd3/xcd <CJK> +<U000237FE> /x8e/xa7/xd3/xce <CJK> +<U00023A7C> /x8e/xa7/xd3/xcf <CJK> +<U00023AE1> /x8e/xa7/xd3/xd0 <CJK> +<U00023C38> /x8e/xa7/xd3/xd1 <CJK> +<U00023C6F> /x8e/xa7/xd3/xd2 <CJK> +<U00024118> /x8e/xa7/xd3/xd3 <CJK> +<U00024115> /x8e/xa7/xd3/xd4 <CJK> +<U0002411C> /x8e/xa7/xd3/xd5 <CJK> +<U00024110> /x8e/xa7/xd3/xd6 <CJK> +<U00024135> /x8e/xa7/xd3/xd7 <CJK> +<U00024117> /x8e/xa7/xd3/xd9 <CJK> +<U0002411D> /x8e/xa7/xd3/xda <CJK> +<U00024126> /x8e/xa7/xd3/xdb <CJK> +<U00024128> /x8e/xa7/xd3/xdc <CJK> +<U00024129> /x8e/xa7/xd3/xdd <CJK> +<U0002412A> /x8e/xa7/xd3/xde <CJK> +<U0002411A> /x8e/xa7/xd3/xdf <CJK> +<U00022307> /x8e/xa7/xd3/xe1 <CJK> +<U000244AB> /x8e/xa7/xd3/xe2 <CJK> +<U000244AC> /x8e/xa7/xd3/xe3 <CJK> +<U000244A1> /x8e/xa7/xd3/xe4 <CJK> +<U000244AE> /x8e/xa7/xd3/xe5 <CJK> +<U000244A3> /x8e/xa7/xd3/xe6 <CJK> +<U000244A7> /x8e/xa7/xd3/xe7 <CJK> +<U00024548> /x8e/xa7/xd3/xe8 <CJK> +<U00024604> /x8e/xa7/xd3/xe9 <CJK> +<U000246FD> /x8e/xa7/xd3/xea <CJK> +<U3E5A> /x8e/xa7/xd3/xeb <CJK> +<U00024708> /x8e/xa7/xd3/xec <CJK> +<U000248D2> /x8e/xa7/xd3/xed <CJK> +<U00024AC6> /x8e/xa7/xd3/xee <CJK> +<U00024ABE> /x8e/xa7/xd3/xef <CJK> +<U00024B1C> /x8e/xa7/xd3/xf0 <CJK> +<U00024BA6> /x8e/xa7/xd3/xf1 <CJK> +<U00024BA7> /x8e/xa7/xd3/xf2 <CJK> +<U00024BAB> /x8e/xa7/xd3/xf3 <CJK> +<U00024C00> /x8e/xa7/xd3/xf4 <CJK> +<U00024CFB> /x8e/xa7/xd3/xf5 <CJK> +<U00024CFC> /x8e/xa7/xd3/xf6 <CJK> +<U00024CF9> /x8e/xa7/xd3/xf7 <CJK> +<U00024D01> /x8e/xa7/xd3/xf8 <CJK> +<U00024F06> /x8e/xa7/xd3/xf9 <CJK> +<U00024F04> /x8e/xa7/xd3/xfa <CJK> +<U00025034> /x8e/xa7/xd3/xfc <CJK> +<U00025336> /x8e/xa7/xd3/xfd <CJK> +<U00025332> /x8e/xa7/xd3/xfe <CJK> +<U00025342> /x8e/xa7/xd4/xa1 <CJK> +<U0002532D> /x8e/xa7/xd4/xa2 <CJK> +<U00025335> /x8e/xa7/xd4/xa3 <CJK> +<U000255D8> /x8e/xa7/xd4/xa4 <CJK> +<U00025723> /x8e/xa7/xd4/xa5 <CJK> +<U00025720> /x8e/xa7/xd4/xa6 <CJK> +<U00025901> /x8e/xa7/xd4/xa7 <CJK> +<U00025900> /x8e/xa7/xd4/xa8 <CJK> +<U00025903> /x8e/xa7/xd4/xa9 <CJK> +<U0002A6BC> /x8e/xa7/xd4/xaa <CJK> +<U00025A3C> /x8e/xa7/xd4/xab <CJK> +<U00025A41> /x8e/xa7/xd4/xac <CJK> +<U00025A35> /x8e/xa7/xd4/xad <CJK> +<U00025AC9> /x8e/xa7/xd4/xae <CJK> +<U00025D8E> /x8e/xa7/xd4/xaf <CJK> +<U00025D9E> /x8e/xa7/xd4/xb0 <CJK> +<U00025D99> /x8e/xa7/xd4/xb1 <CJK> +<U00025DB4> /x8e/xa7/xd4/xb2 <CJK> +<U00025DAA> /x8e/xa7/xd4/xb3 <CJK> +<U00025D9F> /x8e/xa7/xd4/xb4 <CJK> +<U00025D96> /x8e/xa7/xd4/xb5 <CJK> +<U00025D9D> /x8e/xa7/xd4/xb6 <CJK> +<U00025DC3> /x8e/xa7/xd4/xb7 <CJK> +<U00025D74> /x8e/xa7/xd4/xb8 <CJK> +<U00025DAB> /x8e/xa7/xd4/xb9 <CJK> +<U42AF> /x8e/xa7/xd4/xba <CJK> +<U00025F63> /x8e/xa7/xd4/xbb <CJK> +<U00025F5B> /x8e/xa7/xd4/xbc <CJK> +<U00025F5A> /x8e/xa7/xd4/xbd <CJK> +<U000261C5> /x8e/xa7/xd4/xbe <CJK> +<U000261C4> /x8e/xa7/xd4/xbf <CJK> +<U000261CF> /x8e/xa7/xd4/xc0 <CJK> +<U000261C8> /x8e/xa7/xd4/xc1 <CJK> +<U000261A4> /x8e/xa7/xd4/xc2 <CJK> +<U000261BD> /x8e/xa7/xd4/xc3 <CJK> +<U000261D3> /x8e/xa7/xd4/xc4 <CJK> +<U00026260> /x8e/xa7/xd4/xc5 <CJK> +<U0002633B> /x8e/xa7/xd4/xc6 <CJK> +<U000263E3> /x8e/xa7/xd4/xc7 <CJK> +<U000263E7> /x8e/xa7/xd4/xc8 <CJK> +<U000264A8> /x8e/xa7/xd4/xc9 <CJK> +<U000264AC> /x8e/xa7/xd4/xca <CJK> +<U000264A9> /x8e/xa7/xd4/xcb <CJK> +<U0002652A> /x8e/xa7/xd4/xcc <CJK> +<U00026608> /x8e/xa7/xd4/xcd <CJK> +<U00026609> /x8e/xa7/xd4/xce <CJK> +<U000268B9> /x8e/xa7/xd4/xcf <CJK> +<U00026AC1> /x8e/xa7/xd4/xd0 <CJK> +<U00026AC2> /x8e/xa7/xd4/xd1 <CJK> +<U00026AB8> /x8e/xa7/xd4/xd2 <CJK> +<U000270E1> /x8e/xa7/xd4/xd3 <CJK> +<U000270EB> /x8e/xa7/xd4/xd4 <CJK> +<U000270E5> /x8e/xa7/xd4/xd5 <CJK> +<U000270FA> /x8e/xa7/xd4/xd6 <CJK> +<U000270E4> /x8e/xa7/xd4/xd7 <CJK> +<U0002710B> /x8e/xa7/xd4/xd8 <CJK> +<U000270D7> /x8e/xa7/xd4/xd9 <CJK> +<U000270EF> /x8e/xa7/xd4/xda <CJK> +<U000270E0> /x8e/xa7/xd4/xdb <CJK> +<U000270EC> /x8e/xa7/xd4/xdc <CJK> +<U000270FB> /x8e/xa7/xd4/xdd <CJK> +<U000270D3> /x8e/xa7/xd4/xdf <CJK> +<U000270E6> /x8e/xa7/xd4/xe0 <CJK> +<U000270FC> /x8e/xa7/xd4/xe1 <CJK> +<U000270E3> /x8e/xa7/xd4/xe2 <CJK> +<U000270CF> /x8e/xa7/xd4/xe3 <CJK> +<U000270DA> /x8e/xa7/xd4/xe4 <CJK> +<U000270DC> /x8e/xa7/xd4/xe5 <CJK> +<U000270D2> /x8e/xa7/xd4/xe6 <CJK> +<U000270A4> /x8e/xa7/xd4/xe7 <CJK> +<U456B> /x8e/xa7/xd4/xe8 <CJK> +<U00027217> /x8e/xa7/xd4/xe9 <CJK> +<U00027216> /x8e/xa7/xd4/xea <CJK> +<U000274F2> /x8e/xa7/xd4/xeb <CJK> +<U000274FC> /x8e/xa7/xd4/xec <CJK> +<U00027518> /x8e/xa7/xd4/xed <CJK> +<U000274F6> /x8e/xa7/xd4/xee <CJK> +<U000274FE> /x8e/xa7/xd4/xef <CJK> +<U000274F3> /x8e/xa7/xd4/xf0 <CJK> +<U000274F7> /x8e/xa7/xd4/xf1 <CJK> +<U00027501> /x8e/xa7/xd4/xf2 <CJK> +<U000274F9> /x8e/xa7/xd4/xf3 <CJK> +<U00027506> /x8e/xa7/xd4/xf4 <CJK> +<U000274F5> /x8e/xa7/xd4/xf5 <CJK> +<U00027510> /x8e/xa7/xd4/xf6 <CJK> +<U000274DF> /x8e/xa7/xd4/xf7 <CJK> +<U00027503> /x8e/xa7/xd4/xf8 <CJK> +<U00027508> /x8e/xa7/xd4/xf9 <CJK> +<U000275D8> /x8e/xa7/xd4/xfa <CJK> +<U00027605> /x8e/xa7/xd4/xfb <CJK> +<U00027797> /x8e/xa7/xd4/xfc <CJK> +<U000277B3> /x8e/xa7/xd4/xfd <CJK> +<U000277AE> /x8e/xa7/xd4/xfe <CJK> +<U000277AF> /x8e/xa7/xd5/xa1 <CJK> +<U000277A7> /x8e/xa7/xd5/xa2 <CJK> +<U000277B1> /x8e/xa7/xd5/xa3 <CJK> +<U000277A8> /x8e/xa7/xd5/xa4 <CJK> +<U000277AC> /x8e/xa7/xd5/xa5 <CJK> +<U000277AB> /x8e/xa7/xd5/xa6 <CJK> +<U00027804> /x8e/xa7/xd5/xa7 <CJK> +<U0002789A> /x8e/xa7/xd5/xa8 <CJK> +<U0002794A> /x8e/xa7/xd5/xa9 <CJK> +<U00027B42> /x8e/xa7/xd5/xaa <CJK> +<U00027B58> /x8e/xa7/xd5/xab <CJK> +<U00027B4B> /x8e/xa7/xd5/xac <CJK> +<U00027B45> /x8e/xa7/xd5/xad <CJK> +<U00027B49> /x8e/xa7/xd5/xae <CJK> +<U00027B4C> /x8e/xa7/xd5/xaf <CJK> +<U00027B59> /x8e/xa7/xd5/xb0 <CJK> +<U00027B56> /x8e/xa7/xd5/xb1 <CJK> +<U471B> /x8e/xa7/xd5/xb2 <CJK> +<U00027B46> /x8e/xa7/xd5/xb3 <CJK> +<U00027B44> /x8e/xa7/xd5/xb4 <CJK> +<U00027B5B> /x8e/xa7/xd5/xb5 <CJK> +<U00027B69> /x8e/xa7/xd5/xb6 <CJK> +<U00027C8E> /x8e/xa7/xd5/xb7 <CJK> +<U00027C8F> /x8e/xa7/xd5/xb8 <CJK> +<U00027D1E> /x8e/xa7/xd5/xb9 <CJK> +<U000268BC> /x8e/xa7/xd5/xba <CJK> +<U00027E2F> /x8e/xa7/xd5/xbb <CJK> +<U00027F9E> /x8e/xa7/xd5/xbc <CJK> +<U00027F9D> /x8e/xa7/xd5/xbd <CJK> +<U00027F9F> /x8e/xa7/xd5/xbe <CJK> +<U00027F9C> /x8e/xa7/xd5/xbf <CJK> +<U000281B4> /x8e/xa7/xd5/xc0 <CJK> +<U000281AE> /x8e/xa7/xd5/xc1 <CJK> +<U000281AB> /x8e/xa7/xd5/xc2 <CJK> +<U000281B3> /x8e/xa7/xd5/xc3 <CJK> +<U000281AF> /x8e/xa7/xd5/xc4 <CJK> +<U000281C2> /x8e/xa7/xd5/xc5 <CJK> +<U00028293> /x8e/xa7/xd5/xc6 <CJK> +<U00028295> /x8e/xa7/xd5/xc7 <CJK> +<U00028296> /x8e/xa7/xd5/xc8 <CJK> +<U00028297> /x8e/xa7/xd5/xc9 <CJK> +<U000283CF> /x8e/xa7/xd5/xca <CJK> +<U000283CE> /x8e/xa7/xd5/xcb <CJK> +<U000283CB> /x8e/xa7/xd5/xcc <CJK> +<U0002844B> /x8e/xa7/xd5/xcd <CJK> +<U00028646> /x8e/xa7/xd5/xce <CJK> +<U00028643> /x8e/xa7/xd5/xcf <CJK> +<U00028645> /x8e/xa7/xd5/xd0 <CJK> +<U00028651> /x8e/xa7/xd5/xd1 <CJK> +<U000287AE> /x8e/xa7/xd5/xd2 <CJK> +<U000287AF> /x8e/xa7/xd5/xd3 <CJK> +<U000287B0> /x8e/xa7/xd5/xd4 <CJK> +<U000287B8> /x8e/xa7/xd5/xd5 <CJK> +<U000287E2> /x8e/xa7/xd5/xd6 <CJK> +<U000287E3> /x8e/xa7/xd5/xd7 <CJK> +<U000287E6> /x8e/xa7/xd5/xd8 <CJK> +<U000288ED> /x8e/xa7/xd5/xd9 <CJK> +<U000288EA> /x8e/xa7/xd5/xda <CJK> +<U0002893A> /x8e/xa7/xd5/xdb <CJK> +<U00028B59> /x8e/xa7/xd5/xdc <CJK> +<U00028B84> /x8e/xa7/xd5/xdd <CJK> +<U00028B5F> /x8e/xa7/xd5/xde <CJK> +<U00028B7C> /x8e/xa7/xd5/xdf <CJK> +<U00028B5C> /x8e/xa7/xd5/xe0 <CJK> +<U00028B58> /x8e/xa7/xd5/xe1 <CJK> +<U00028B55> /x8e/xa7/xd5/xe2 <CJK> +<U00028B5D> /x8e/xa7/xd5/xe3 <CJK> +<U00028B7E> /x8e/xa7/xd5/xe4 <CJK> +<U00028B80> /x8e/xa7/xd5/xe5 <CJK> +<U00028B83> /x8e/xa7/xd5/xe6 <CJK> +<U00028B57> /x8e/xa7/xd5/xe7 <CJK> +<U4963> /x8e/xa7/xd5/xe8 <CJK> +<U00028B5E> /x8e/xa7/xd5/xe9 <CJK> +<U00028CBA> /x8e/xa7/xd5/xea <CJK> +<U00028DD5> /x8e/xa7/xd5/xeb <CJK> +<U00028F58> /x8e/xa7/xd5/xec <CJK> +<U00028F68> /x8e/xa7/xd5/xed <CJK> +<U00028F67> /x8e/xa7/xd5/xee <CJK> +<U0002904A> /x8e/xa7/xd5/xef <CJK> +<U0002904C> /x8e/xa7/xd5/xf0 <CJK> +<U00029052> /x8e/xa7/xd5/xf1 <CJK> +<U00029049> /x8e/xa7/xd5/xf2 <CJK> +<U0002904E> /x8e/xa7/xd5/xf3 <CJK> +<U00029047> /x8e/xa7/xd5/xf4 <CJK> +<U0002904D> /x8e/xa7/xd5/xf5 <CJK> +<U0002904B> /x8e/xa7/xd5/xf6 <CJK> +<U0002904F> /x8e/xa7/xd5/xf7 <CJK> +<U0002917E> /x8e/xa7/xd5/xf8 <CJK> +<U00029187> /x8e/xa7/xd5/xf9 <CJK> +<U00029183> /x8e/xa7/xd5/xfa <CJK> +<U00029189> /x8e/xa7/xd5/xfb <CJK> +<U00024ACA> /x8e/xa7/xd5/xfc <CJK> +<U00029186> /x8e/xa7/xd5/xfd <CJK> +<U00029188> /x8e/xa7/xd5/xfe <CJK> +<U00029247> /x8e/xa7/xd6/xa1 <CJK> +<U00029242> /x8e/xa7/xd6/xa2 <CJK> +<U00029249> /x8e/xa7/xd6/xa3 <CJK> +<U00029248> /x8e/xa7/xd6/xa4 <CJK> +<U4A80> /x8e/xa7/xd6/xa5 <CJK> +<U4A84> /x8e/xa7/xd6/xa6 <CJK> +<U4A7F> /x8e/xa7/xd6/xa7 <CJK> +<U00029344> /x8e/xa7/xd6/xa8 <CJK> +<U00029351> /x8e/xa7/xd6/xa9 <CJK> +<U00029346> /x8e/xa7/xd6/xaa <CJK> +<U00029347> /x8e/xa7/xd6/xab <CJK> +<U000293E4> /x8e/xa7/xd6/xac <CJK> +<U0002940F> /x8e/xa7/xd6/xad <CJK> +<U0002943F> /x8e/xa7/xd6/xae <CJK> +<U0002954B> /x8e/xa7/xd6/xaf <CJK> +<U00029557> /x8e/xa7/xd6/xb0 <CJK> +<U00029552> /x8e/xa7/xd6/xb1 <CJK> +<U4AF1> /x8e/xa7/xd6/xb2 <CJK> +<U00029551> /x8e/xa7/xd6/xb3 <CJK> +<U00029558> /x8e/xa7/xd6/xb4 <CJK> +<U0002955E> /x8e/xa7/xd6/xb5 <CJK> +<U00029553> /x8e/xa7/xd6/xb6 <CJK> +<U0002955D> /x8e/xa7/xd6/xb7 <CJK> +<U0002954D> /x8e/xa7/xd6/xb8 <CJK> +<U0002963C> /x8e/xa7/xd6/xb9 <CJK> +<U0002963F> /x8e/xa7/xd6/xba <CJK> +<U00029646> /x8e/xa7/xd6/xbb <CJK> +<U0002963E> /x8e/xa7/xd6/xbc <CJK> +<U00029644> /x8e/xa7/xd6/xbd <CJK> +<U00029645> /x8e/xa7/xd6/xbe <CJK> +<U00029641> /x8e/xa7/xd6/xbf <CJK> +<U00029638> /x8e/xa7/xd6/xc0 <CJK> +<U00029642> /x8e/xa7/xd6/xc1 <CJK> +<U00029643> /x8e/xa7/xd6/xc2 <CJK> +<U0002967A> /x8e/xa7/xd6/xc3 <CJK> +<U000297A3> /x8e/xa7/xd6/xc4 <CJK> +<U000297BA> /x8e/xa7/xd6/xc5 <CJK> +<U000297C0> /x8e/xa7/xd6/xc6 <CJK> +<U000297C4> /x8e/xa7/xd6/xc7 <CJK> +<U000297C6> /x8e/xa7/xd6/xc8 <CJK> +<U000297CB> /x8e/xa7/xd6/xc9 <CJK> +<U00029861> /x8e/xa7/xd6/xca <CJK> +<U0002997A> /x8e/xa7/xd6/xcb <CJK> +<U00029973> /x8e/xa7/xd6/xcc <CJK> +<U00029972> /x8e/xa7/xd6/xcd <CJK> +<U00029974> /x8e/xa7/xd6/xce <CJK> +<U00029980> /x8e/xa7/xd6/xcf <CJK> +<U00029981> /x8e/xa7/xd6/xd0 <CJK> +<U9A47> /x8e/xa7/xd6/xd1 <CJK> +<U00029A95> /x8e/xa7/xd6/xd2 <CJK> +<U00029A8F> /x8e/xa7/xd6/xd3 <CJK> +<U00029A90> /x8e/xa7/xd6/xd4 <CJK> +<U00029A92> /x8e/xa7/xd6/xd5 <CJK> +<U00029A94> /x8e/xa7/xd6/xd6 <CJK> +<U00029A8B> /x8e/xa7/xd6/xd7 <CJK> +<U00029AE6> /x8e/xa7/xd6/xd8 <CJK> +<U00029BB2> /x8e/xa7/xd6/xd9 <CJK> +<U00029BB8> /x8e/xa7/xd6/xda <CJK> +<U00029BBD> /x8e/xa7/xd6/xdb <CJK> +<U00029BBE> /x8e/xa7/xd6/xdc <CJK> +<U00029BCE> /x8e/xa7/xd6/xdd <CJK> +<U00029BBA> /x8e/xa7/xd6/xde <CJK> +<U00029C16> /x8e/xa7/xd6/xdf <CJK> +<U00029C26> /x8e/xa7/xd6/xe0 <CJK> +<U00029C25> /x8e/xa7/xd6/xe1 <CJK> +<U00029C4C> /x8e/xa7/xd6/xe2 <CJK> +<U00029C50> /x8e/xa7/xd6/xe3 <CJK> +<U00029C4E> /x8e/xa7/xd6/xe4 <CJK> +<U00029C51> /x8e/xa7/xd6/xe5 <CJK> +<U00029C52> /x8e/xa7/xd6/xe6 <CJK> +<U00029D14> /x8e/xa7/xd6/xe7 <CJK> +<U00029D15> /x8e/xa7/xd6/xe8 <CJK> +<U00029D1B> /x8e/xa7/xd6/xe9 <CJK> +<U00029E82> /x8e/xa7/xd6/xea <CJK> +<U00029E99> /x8e/xa7/xd6/xeb <CJK> +<U00029E9A> /x8e/xa7/xd6/xec <CJK> +<U00029E7D> /x8e/xa7/xd6/xed <CJK> +<U00029E85> /x8e/xa7/xd6/xee <CJK> +<U00029E86> /x8e/xa7/xd6/xef <CJK> +<U00029E9C> /x8e/xa7/xd6/xf0 <CJK> +<U00029E79> /x8e/xa7/xd6/xf1 <CJK> +<U00029E7B> /x8e/xa7/xd6/xf2 <CJK> +<U00029E80> /x8e/xa7/xd6/xf3 <CJK> +<U00029E83> /x8e/xa7/xd6/xf4 <CJK> +<U00029E81> /x8e/xa7/xd6/xf5 <CJK> +<U0002A11E> /x8e/xa7/xd6/xf6 <CJK> +<U0002A11B> /x8e/xa7/xd6/xf7 <CJK> +<U0002A12A> /x8e/xa7/xd6/xf8 <CJK> +<U0002A0FB> /x8e/xa7/xd6/xf9 <CJK> +<U0002A105> /x8e/xa7/xd6/xfa <CJK> +<U0002A120> /x8e/xa7/xd6/xfb <CJK> +<U0002A111> /x8e/xa7/xd6/xfc <CJK> +<U0002A104> /x8e/xa7/xd6/xfd <CJK> +<U0002A0FD> /x8e/xa7/xd6/xfe <CJK> +<U0002A103> /x8e/xa7/xd7/xa1 <CJK> +<U0002A110> /x8e/xa7/xd7/xa2 <CJK> +<U0002A118> /x8e/xa7/xd7/xa3 <CJK> +<U0002A10A> /x8e/xa7/xd7/xa4 <CJK> +<U0002A14E> /x8e/xa7/xd7/xa5 <CJK> +<U0002A109> /x8e/xa7/xd7/xa6 <CJK> +<U0002A107> /x8e/xa7/xd7/xa7 <CJK> +<U0002A11C> /x8e/xa7/xd7/xa8 <CJK> +<U4D1C> /x8e/xa7/xd7/xa9 <CJK> +<U0002A277> /x8e/xa7/xd7/xaa <CJK> +<U0002A276> /x8e/xa7/xd7/xab <CJK> +<U0002A2D8> /x8e/xa7/xd7/xac <CJK> +<U0002A2D9> /x8e/xa7/xd7/xad <CJK> +<U0002A361> /x8e/xa7/xd7/xae <CJK> +<U0002A35C> /x8e/xa7/xd7/xaf <CJK> +<U0002A35E> /x8e/xa7/xd7/xb0 <CJK> +<U0002A360> /x8e/xa7/xd7/xb1 <CJK> +<U0002A3AA> /x8e/xa7/xd7/xb2 <CJK> +<U0002A3D6> /x8e/xa7/xd7/xb3 <CJK> +<U0002A3D8> /x8e/xa7/xd7/xb4 <CJK> +<U0002A409> /x8e/xa7/xd7/xb5 <CJK> +<U0002A408> /x8e/xa7/xd7/xb6 <CJK> +<U0002A46B> /x8e/xa7/xd7/xb7 <CJK> +<U0002A465> /x8e/xa7/xd7/xb8 <CJK> +<U0002A473> /x8e/xa7/xd7/xb9 <CJK> +<U0002A474> /x8e/xa7/xd7/xba <CJK> +<U0002A4ED> /x8e/xa7/xd7/xbb <CJK> +<U0002A524> /x8e/xa7/xd7/xbc <CJK> +<U0002A525> /x8e/xa7/xd7/xbd <CJK> +<U0002A56A> /x8e/xa7/xd7/xbe <CJK> +<U0002A5A7> /x8e/xa7/xd7/xbf <CJK> +<U0002A5A8> /x8e/xa7/xd7/xc0 <CJK> +<U0002A60B> /x8e/xa7/xd7/xc1 <CJK> +<U0002A5FA> /x8e/xa7/xd7/xc2 <CJK> +<U0002A5F9> /x8e/xa7/xd7/xc3 <CJK> +<U0002A5FF> /x8e/xa7/xd7/xc4 <CJK> +<U0002A604> /x8e/xa7/xd7/xc5 <CJK> +<U0002A5F6> /x8e/xa7/xd7/xc6 <CJK> +<U0002A605> /x8e/xa7/xd7/xc7 <CJK> +<U0002A699> /x8e/xa7/xd7/xc8 <CJK> +<U0002A6AB> /x8e/xa7/xd7/xc9 <CJK> +<U0002A6BD> /x8e/xa7/xd7/xca <CJK> +<U0002A6B8> /x8e/xa7/xd7/xcb <CJK> +<U34A8> /x8e/xa7/xd7/xcc <CJK> +<U00020464> /x8e/xa7/xd7/xcd <CJK> +<U0002045A> /x8e/xa7/xd7/xce <CJK> +<U00020572> /x8e/xa7/xd7/xcf <CJK> +<U0002097A> /x8e/xa7/xd7/xd0 <CJK> +<U00020B95> /x8e/xa7/xd7/xd1 <CJK> +<U0002115F> /x8e/xa7/xd7/xd2 <CJK> +<U00021161> /x8e/xa7/xd7/xd3 <CJK> +<U0002115E> /x8e/xa7/xd7/xd4 <CJK> +<U0002115A> /x8e/xa7/xd7/xd5 <CJK> +<U0002115C> /x8e/xa7/xd7/xd6 <CJK> +<U0002115D> /x8e/xa7/xd7/xd7 <CJK> +<U0002116E> /x8e/xa7/xd7/xd8 <CJK> +<U00021157> /x8e/xa7/xd7/xd9 <CJK> +<U00021158> /x8e/xa7/xd7/xda <CJK> +<U00021502> /x8e/xa7/xd7/xdb <CJK> +<U0002150B> /x8e/xa7/xd7/xdc <CJK> +<U00021508> /x8e/xa7/xd7/xdd <CJK> +<U00021551> /x8e/xa7/xd7/xde <CJK> +<U00021925> /x8e/xa7/xd7/xdf <CJK> +<U00021928> /x8e/xa7/xd7/xe0 <CJK> +<U00021923> /x8e/xa7/xd7/xe1 <CJK> +<U00021921> /x8e/xa7/xd7/xe2 <CJK> +<U00021924> /x8e/xa7/xd7/xe3 <CJK> +<U00021929> /x8e/xa7/xd7/xe4 <CJK> +<U00021B06> /x8e/xa7/xd7/xe5 <CJK> +<U00021B0A> /x8e/xa7/xd7/xe6 <CJK> +<U00021FCA> /x8e/xa7/xd7/xe7 <CJK> +<U00021FCC> /x8e/xa7/xd7/xe8 <CJK> +<U00021FCB> /x8e/xa7/xd7/xe9 <CJK> +<U00021FCF> /x8e/xa7/xd7/xea <CJK> +<U0002217F> /x8e/xa7/xd7/xeb <CJK> +<U0002217C> /x8e/xa7/xd7/xec <CJK> +<U000221D6> /x8e/xa7/xd7/xed <CJK> +<U00022309> /x8e/xa7/xd7/xee <CJK> +<U0002230B> /x8e/xa7/xd7/xef <CJK> +<U00022376> /x8e/xa7/xd7/xf0 <CJK> +<U0002247D> /x8e/xa7/xd7/xf1 <CJK> +<U000225A5> /x8e/xa7/xd7/xf2 <CJK> +<U0002295B> /x8e/xa7/xd7/xf3 <CJK> +<U0002295C> /x8e/xa7/xd7/xf4 <CJK> +<U0002295D> /x8e/xa7/xd7/xf5 <CJK> +<U00022965> /x8e/xa7/xd7/xf6 <CJK> +<U00022E6D> /x8e/xa7/xd7/xf7 <CJK> +<U00022E82> /x8e/xa7/xd7/xf8 <CJK> +<U00022E83> /x8e/xa7/xd7/xf9 <CJK> +<U00022E87> /x8e/xa7/xd7/xfa <CJK> +<U00022E95> /x8e/xa7/xd7/xfb <CJK> +<U00022E8A> /x8e/xa7/xd7/xfc <CJK> +<U000230D6> /x8e/xa7/xd7/xfd <CJK> +<U00023128> /x8e/xa7/xd7/xfe <CJK> +<U0002330D> /x8e/xa7/xd8/xa1 <CJK> +<U0002382E> /x8e/xa7/xd8/xa2 <CJK> +<U0002382D> /x8e/xa7/xd8/xa4 <CJK> +<U00023821> /x8e/xa7/xd8/xa5 <CJK> +<U00023819> /x8e/xa7/xd8/xa6 <CJK> +<U0002393B> /x8e/xa7/xd8/xa7 <CJK> +<U0002393C> /x8e/xa7/xd8/xa8 <CJK> +<U0002393A> /x8e/xa7/xd8/xa9 <CJK> +<U00023A7E> /x8e/xa7/xd8/xaa <CJK> +<U00023C3B> /x8e/xa7/xd8/xab <CJK> +<U00024147> /x8e/xa7/xd8/xac <CJK> +<U00024139> /x8e/xa7/xd8/xad <CJK> +<U00024134> /x8e/xa7/xd8/xae <CJK> +<U00024136> /x8e/xa7/xd8/xaf <CJK> +<U00024146> /x8e/xa7/xd8/xb0 <CJK> +<U0002413B> /x8e/xa7/xd8/xb1 <CJK> +<U00024141> /x8e/xa7/xd8/xb2 <CJK> +<U00024145> /x8e/xa7/xd8/xb3 <CJK> +<U000244C0> /x8e/xa7/xd8/xb4 <CJK> +<U000244C4> /x8e/xa7/xd8/xb5 <CJK> +<U000244BA> /x8e/xa7/xd8/xb6 <CJK> +<U000244BD> /x8e/xa7/xd8/xb7 <CJK> +<U000244BE> /x8e/xa7/xd8/xb8 <CJK> +<U000245A3> /x8e/xa7/xd8/xb9 <CJK> +<U0002470C> /x8e/xa7/xd8/xba <CJK> +<U000248D9> /x8e/xa7/xd8/xbb <CJK> +<U00024ACD> /x8e/xa7/xd8/xbc <CJK> +<U00024BAE> /x8e/xa7/xd8/xbd <CJK> +<U00024CFF> /x8e/xa7/xd8/xbe <CJK> +<U00024D24> /x8e/xa7/xd8/xbf <CJK> +<U00024FBB> /x8e/xa7/xd8/xc0 <CJK> +<U00024FBC> /x8e/xa7/xd8/xc1 <CJK> +<U00025036> /x8e/xa7/xd8/xc2 <CJK> +<U000250D5> /x8e/xa7/xd8/xc3 <CJK> +<U000250D3> /x8e/xa7/xd8/xc4 <CJK> +<U000250D6> /x8e/xa7/xd8/xc5 <CJK> +<U0002533C> /x8e/xa7/xd8/xc6 <CJK> +<U0002533F> /x8e/xa7/xd8/xc7 <CJK> +<U000255DE> /x8e/xa7/xd8/xc8 <CJK> +<U000255E3> /x8e/xa7/xd8/xc9 <CJK> +<U00025727> /x8e/xa7/xd8/xca <CJK> +<U00025729> /x8e/xa7/xd8/xcb <CJK> +<U418B> /x8e/xa7/xd8/xcc <CJK> +<U00025905> /x8e/xa7/xd8/xcd <CJK> +<U00025907> /x8e/xa7/xd8/xce <CJK> +<U0002590C> /x8e/xa7/xd8/xcf <CJK> +<U00025AD0> /x8e/xa7/xd8/xd0 <CJK> +<U00025DBE> /x8e/xa7/xd8/xd1 <CJK> +<U00025DBC> /x8e/xa7/xd8/xd2 <CJK> +<U00025DD0> /x8e/xa7/xd8/xd3 <CJK> +<U00025DC2> /x8e/xa7/xd8/xd4 <CJK> +<U00025DB5> /x8e/xa7/xd8/xd5 <CJK> +<U00025DC9> /x8e/xa7/xd8/xd6 <CJK> +<U00025F66> /x8e/xa7/xd8/xd7 <CJK> +<U432B> /x8e/xa7/xd8/xd8 <CJK> +<U000261D5> /x8e/xa7/xd8/xd9 <CJK> +<U000261E2> /x8e/xa7/xd8/xda <CJK> +<U000261DC> /x8e/xa7/xd8/xdb <CJK> +<U000261E3> /x8e/xa7/xd8/xdc <CJK> +<U000261DA> /x8e/xa7/xd8/xdd <CJK> +<U000261C2> /x8e/xa7/xd8/xde <CJK> +<U000261E8> /x8e/xa7/xd8/xdf <CJK> +<U000263E9> /x8e/xa7/xd8/xe0 <CJK> +<U000264AF> /x8e/xa7/xd8/xe1 <CJK> +<U000264AD> /x8e/xa7/xd8/xe2 <CJK> +<U000264AE> /x8e/xa7/xd8/xe3 <CJK> +<U0002660B> /x8e/xa7/xd8/xe4 <CJK> +<U000268C1> /x8e/xa7/xd8/xe5 <CJK> +<U000269B6> /x8e/xa7/xd8/xe6 <CJK> +<U000269B9> /x8e/xa7/xd8/xe7 <CJK> +<U00026AC0> /x8e/xa7/xd8/xe8 <CJK> +<U000270A5> /x8e/xa7/xd8/xe9 <CJK> +<U00027128> /x8e/xa7/xd8/xea <CJK> +<U00027122> /x8e/xa7/xd8/xeb <CJK> +<U00027129> /x8e/xa7/xd8/xec <CJK> +<U00027118> /x8e/xa7/xd8/xed <CJK> +<U0002711F> /x8e/xa7/xd8/xee <CJK> +<U0002711C> /x8e/xa7/xd8/xef <CJK> +<U00027112> /x8e/xa7/xd8/xf0 <CJK> +<U0002712A> /x8e/xa7/xd8/xf1 <CJK> +<U457A> /x8e/xa7/xd8/xf2 <CJK> +<U00027121> /x8e/xa7/xd8/xf3 <CJK> +<U0002712B> /x8e/xa7/xd8/xf4 <CJK> +<U00027117> /x8e/xa7/xd8/xf5 <CJK> +<U000270F0> /x8e/xa7/xd8/xf6 <CJK> +<U00027116> /x8e/xa7/xd8/xf7 <CJK> +<U00027123> /x8e/xa7/xd8/xf8 <CJK> +<U0002752B> /x8e/xa7/xd8/xf9 <CJK> +<U00027526> /x8e/xa7/xd8/xfa <CJK> +<U0002753D> /x8e/xa7/xd8/xfb <CJK> +<U00027522> /x8e/xa7/xd8/xfc <CJK> +<U0002753A> /x8e/xa7/xd8/xfd <CJK> +<U00027531> /x8e/xa7/xd8/xfe <CJK> +<U00027532> /x8e/xa7/xd9/xa1 <CJK> +<U00027554> /x8e/xa7/xd9/xa2 <CJK> +<U00027521> /x8e/xa7/xd9/xa3 <CJK> +<U00027535> /x8e/xa7/xd9/xa4 <CJK> +<U4609> /x8e/xa7/xd9/xa5 <CJK> +<U0002752E> /x8e/xa7/xd9/xa6 <CJK> +<U00027530> /x8e/xa7/xd9/xa7 <CJK> +<U0002752F> /x8e/xa7/xd9/xa8 <CJK> +<U00027536> /x8e/xa7/xd9/xa9 <CJK> +<U000275DA> /x8e/xa7/xd9/xaa <CJK> +<U000275D9> /x8e/xa7/xd9/xab <CJK> +<U000277BB> /x8e/xa7/xd9/xac <CJK> +<U000277BC> /x8e/xa7/xd9/xad <CJK> +<U000277B7> /x8e/xa7/xd9/xae <CJK> +<U000277C2> /x8e/xa7/xd9/xaf <CJK> +<U000277BD> /x8e/xa7/xd9/xb0 <CJK> +<U000277B2> /x8e/xa7/xd9/xb1 <CJK> +<U466D> /x8e/xa7/xd9/xb2 <CJK> +<U00025344> /x8e/xa7/xd9/xb3 <CJK> +<U00025DD1> /x8e/xa7/xd9/xb4 <CJK> +<U00027B52> /x8e/xa7/xd9/xb5 <CJK> +<U00027B6B> /x8e/xa7/xd9/xb6 <CJK> +<U00027B67> /x8e/xa7/xd9/xb7 <CJK> +<U471F> /x8e/xa7/xd9/xb8 <CJK> +<U00027B61> /x8e/xa7/xd9/xb9 <CJK> +<U00027B6C> /x8e/xa7/xd9/xba <CJK> +<U00027B51> /x8e/xa7/xd9/xbb <CJK> +<U00027B74> /x8e/xa7/xd9/xbc <CJK> +<U00027B77> /x8e/xa7/xd9/xbd <CJK> +<U00027B6F> /x8e/xa7/xd9/xbe <CJK> +<U00027B6D> /x8e/xa7/xd9/xbf <CJK> +<U00027B68> /x8e/xa7/xd9/xc0 <CJK> +<U00027B84> /x8e/xa7/xd9/xc2 <CJK> +<U00027C90> /x8e/xa7/xd9/xc3 <CJK> +<U00027C92> /x8e/xa7/xd9/xc4 <CJK> +<U00027C93> /x8e/xa7/xd9/xc5 <CJK> +<U00027D1F> /x8e/xa7/xd9/xc6 <CJK> +<U00027E31> /x8e/xa7/xd9/xc7 <CJK> +<U00027E38> /x8e/xa7/xd9/xc8 <CJK> +<U00027E39> /x8e/xa7/xd9/xc9 <CJK> +<U00027E37> /x8e/xa7/xd9/xca <CJK> +<U00027FAB> /x8e/xa7/xd9/xcb <CJK> +<U000281C3> /x8e/xa7/xd9/xcc <CJK> +<U000281C8> /x8e/xa7/xd9/xcd <CJK> +<U000281CB> /x8e/xa7/xd9/xce <CJK> +<U000281CF> /x8e/xa7/xd9/xcf <CJK> +<U00028298> /x8e/xa7/xd9/xd0 <CJK> +<U000283D4> /x8e/xa7/xd9/xd1 <CJK> +<U000283D3> /x8e/xa7/xd9/xd2 <CJK> +<U000283D8> /x8e/xa7/xd9/xd3 <CJK> +<U000283D9> /x8e/xa7/xd9/xd4 <CJK> +<U000283DD> /x8e/xa7/xd9/xd5 <CJK> +<U000283D1> /x8e/xa7/xd9/xd6 <CJK> +<U000283D6> /x8e/xa7/xd9/xd7 <CJK> +<U0002843E> /x8e/xa7/xd9/xd8 <CJK> +<U00028658> /x8e/xa7/xd9/xd9 <CJK> +<U00028657> /x8e/xa7/xd9/xda <CJK> +<U00028655> /x8e/xa7/xd9/xdb <CJK> +<U000287C4> /x8e/xa7/xd9/xdc <CJK> +<U000287E4> /x8e/xa7/xd9/xdd <CJK> +<U000288EE> /x8e/xa7/xd9/xde <CJK> +<U000288EF> /x8e/xa7/xd9/xdf <CJK> +<U000288F3> /x8e/xa7/xd9/xe0 <CJK> +<U000288F2> /x8e/xa7/xd9/xe1 <CJK> +<U000288F0> /x8e/xa7/xd9/xe2 <CJK> +<U00028BAB> /x8e/xa7/xd9/xe3 <CJK> +<U00028B9A> /x8e/xa7/xd9/xe4 <CJK> +<U00028BAF> /x8e/xa7/xd9/xe5 <CJK> +<U00028B97> /x8e/xa7/xd9/xe6 <CJK> +<U496A> /x8e/xa7/xd9/xe7 <CJK> +<U496C> /x8e/xa7/xd9/xe8 <CJK> +<U00028BBF> /x8e/xa7/xd9/xe9 <CJK> +<U00028B94> /x8e/xa7/xd9/xea <CJK> +<U00028B93> /x8e/xa7/xd9/xeb <CJK> +<U00028CBE> /x8e/xa7/xd9/xec <CJK> +<U00028CBB> /x8e/xa7/xd9/xed <CJK> +<U00028CBC> /x8e/xa7/xd9/xee <CJK> +<U00028DD9> /x8e/xa7/xd9/xef <CJK> +<U00028F6C> /x8e/xa7/xd9/xf0 <CJK> +<U00029053> /x8e/xa7/xd9/xf1 <CJK> +<U00029054> /x8e/xa7/xd9/xf2 <CJK> +<U0002905B> /x8e/xa7/xd9/xf3 <CJK> +<U00029058> /x8e/xa7/xd9/xf4 <CJK> +<U00029056> /x8e/xa7/xd9/xf5 <CJK> +<U00029057> /x8e/xa7/xd9/xf6 <CJK> +<U0002919F> /x8e/xa7/xd9/xf7 <CJK> +<U00029194> /x8e/xa7/xd9/xf8 <CJK> +<U00029196> /x8e/xa7/xd9/xf9 <CJK> +<U00029197> /x8e/xa7/xd9/xfa <CJK> +<U0002924A> /x8e/xa7/xd9/xfb <CJK> +<U0002924B> /x8e/xa7/xd9/xfc <CJK> +<U00029355> /x8e/xa7/xd9/xfd <CJK> +<U0002935A> /x8e/xa7/xd9/xfe <CJK> +<U0002935E> /x8e/xa7/xda/xa1 <CJK> +<U0002935F> /x8e/xa7/xda/xa2 <CJK> +<U00029359> /x8e/xa7/xda/xa3 <CJK> +<U0002935B> /x8e/xa7/xda/xa4 <CJK> +<U00029358> /x8e/xa7/xda/xa5 <CJK> +<U00029354> /x8e/xa7/xda/xa6 <CJK> +<U000293E8> /x8e/xa7/xda/xa7 <CJK> +<U000293EB> /x8e/xa7/xda/xa8 <CJK> +<U000293EC> /x8e/xa7/xda/xa9 <CJK> +<U00029413> /x8e/xa7/xda/xaa <CJK> +<U00029566> /x8e/xa7/xda/xab <CJK> +<U0002956B> /x8e/xa7/xda/xac <CJK> +<U00029562> /x8e/xa7/xda/xad <CJK> +<U00029569> /x8e/xa7/xda/xae <CJK> +<U00029563> /x8e/xa7/xda/xaf <CJK> +<U0002955F> /x8e/xa7/xda/xb0 <CJK> +<U0002954E> /x8e/xa7/xda/xb1 <CJK> +<U00029648> /x8e/xa7/xda/xb2 <CJK> +<U0002964A> /x8e/xa7/xda/xb3 <CJK> +<U000297E3> /x8e/xa7/xda/xb4 <CJK> +<U000297DB> /x8e/xa7/xda/xb5 <CJK> +<U000297D8> /x8e/xa7/xda/xb6 <CJK> +<U000297D6> /x8e/xa7/xda/xb7 <CJK> +<U00029986> /x8e/xa7/xda/xb8 <CJK> +<U00029990> /x8e/xa7/xda/xb9 <CJK> +<U00029991> /x8e/xa7/xda/xba <CJK> +<U00029988> /x8e/xa7/xda/xbb <CJK> +<U00029994> /x8e/xa7/xda/xbc <CJK> +<U00029983> /x8e/xa7/xda/xbd <CJK> +<U4BB2> /x8e/xa7/xda/xbe <CJK> +<U0002999C> /x8e/xa7/xda/xbf <CJK> +<U0002998D> /x8e/xa7/xda/xc0 <CJK> +<U00029985> /x8e/xa7/xda/xc1 <CJK> +<U00029A98> /x8e/xa7/xda/xc2 <CJK> +<U00029A9A> /x8e/xa7/xda/xc3 <CJK> +<U00029A9C> /x8e/xa7/xda/xc4 <CJK> +<U00029AE7> /x8e/xa7/xda/xc5 <CJK> +<U00029BC5> /x8e/xa7/xda/xc6 <CJK> +<U00029BD0> /x8e/xa7/xda/xc7 <CJK> +<U00029BD1> /x8e/xa7/xda/xc8 <CJK> +<U00029C19> /x8e/xa7/xda/xc9 <CJK> +<U00029C27> /x8e/xa7/xda/xca <CJK> +<U4C1D> /x8e/xa7/xda/xcb <CJK> +<U00029C54> /x8e/xa7/xda/xcc <CJK> +<U00029D2D> /x8e/xa7/xda/xcd <CJK> +<U00029D22> /x8e/xa7/xda/xce <CJK> +<U4C2D> /x8e/xa7/xda/xcf <CJK> +<U00029D1F> /x8e/xa7/xda/xd0 <CJK> +<U00029EBD> /x8e/xa7/xda/xd1 <CJK> +<U00029EAE> /x8e/xa7/xda/xd2 <CJK> +<U00029EBB> /x8e/xa7/xda/xd3 <CJK> +<U00029EAD> /x8e/xa7/xda/xd4 <CJK> +<U00029EBC> /x8e/xa7/xda/xd5 <CJK> +<U00029EB9> /x8e/xa7/xda/xd6 <CJK> +<U00029EB4> /x8e/xa7/xda/xd7 <CJK> +<U00029ECB> /x8e/xa7/xda/xd8 <CJK> +<U00029EB7> /x8e/xa7/xda/xd9 <CJK> +<U00029EB3> /x8e/xa7/xda/xda <CJK> +<U00029EBA> /x8e/xa7/xda/xdb <CJK> +<U00029EB6> /x8e/xa7/xda/xdc <CJK> +<U00029ECD> /x8e/xa7/xda/xdd <CJK> +<U00029EBE> /x8e/xa7/xda/xde <CJK> +<U00029EC9> /x8e/xa7/xda/xdf <CJK> +<U0002A15F> /x8e/xa7/xda/xe1 <CJK> +<U0002A13B> /x8e/xa7/xda/xe2 <CJK> +<U0002A161> /x8e/xa7/xda/xe3 <CJK> +<U0002A15C> /x8e/xa7/xda/xe4 <CJK> +<U0002A18A> /x8e/xa7/xda/xe5 <CJK> +<U0002A15A> /x8e/xa7/xda/xe6 <CJK> +<U0002A14D> /x8e/xa7/xda/xe7 <CJK> +<U0002A146> /x8e/xa7/xda/xe8 <CJK> +<U0002A144> /x8e/xa7/xda/xe9 <CJK> +<U0002A13D> /x8e/xa7/xda/xea <CJK> +<U0002A140> /x8e/xa7/xda/xeb <CJK> +<U0002A13C> /x8e/xa7/xda/xec <CJK> +<U0002A18C> /x8e/xa7/xda/xed <CJK> +<U0002A141> /x8e/xa7/xda/xee <CJK> +<U0002A14C> /x8e/xa7/xda/xef <CJK> +<U0002A13E> /x8e/xa7/xda/xf0 <CJK> +<U0002A14A> /x8e/xa7/xda/xf1 <CJK> +<U0002A27C> /x8e/xa7/xda/xf2 <CJK> +<U0002A27A> /x8e/xa7/xda/xf3 <CJK> +<U0002A365> /x8e/xa7/xda/xf4 <CJK> +<U0002A36E> /x8e/xa7/xda/xf5 <CJK> +<U0002A369> /x8e/xa7/xda/xf6 <CJK> +<U0002A36A> /x8e/xa7/xda/xf7 <CJK> +<U0002A36F> /x8e/xa7/xda/xf8 <CJK> +<U0002A36C> /x8e/xa7/xda/xf9 <CJK> +<U0002A370> /x8e/xa7/xda/xfa <CJK> +<U0002A368> /x8e/xa7/xda/xfb <CJK> +<U0002A36B> /x8e/xa7/xda/xfc <CJK> +<U4D45> /x8e/xa7/xda/xfd <CJK> +<U0002A3AC> /x8e/xa7/xda/xfe <CJK> +<U0002A3DE> /x8e/xa7/xdb/xa1 <CJK> +<U0002A3DD> /x8e/xa7/xdb/xa2 <CJK> +<U0002A3DC> /x8e/xa7/xdb/xa3 <CJK> +<U000244C5> /x8e/xa7/xdb/xa4 <CJK> +<U0002A48C> /x8e/xa7/xdb/xa5 <CJK> +<U0002A483> /x8e/xa7/xdb/xa6 <CJK> +<U0002A482> /x8e/xa7/xdb/xa7 <CJK> +<U0002A488> /x8e/xa7/xdb/xa8 <CJK> +<U0002A485> /x8e/xa7/xdb/xa9 <CJK> +<U0002A481> /x8e/xa7/xdb/xaa <CJK> +<U0002A4F5> /x8e/xa7/xdb/xab <CJK> +<U0002A4EF> /x8e/xa7/xdb/xac <CJK> +<U0002A4F4> /x8e/xa7/xdb/xad <CJK> +<U0002A4F2> /x8e/xa7/xdb/xae <CJK> +<U0002A4F6> /x8e/xa7/xdb/xaf <CJK> +<U0002A4F3> /x8e/xa7/xdb/xb0 <CJK> +<U0002A4F0> /x8e/xa7/xdb/xb1 <CJK> +<U0002A4F1> /x8e/xa7/xdb/xb2 <CJK> +<U0002A52B> /x8e/xa7/xdb/xb3 <CJK> +<U0002A527> /x8e/xa7/xdb/xb4 <CJK> +<U0002A528> /x8e/xa7/xdb/xb5 <CJK> +<U0002A56C> /x8e/xa7/xdb/xb6 <CJK> +<U0002A5AE> /x8e/xa7/xdb/xb7 <CJK> +<U0002A60E> /x8e/xa7/xdb/xb8 <CJK> +<U0002A61B> /x8e/xa7/xdb/xb9 <CJK> +<U0002A616> /x8e/xa7/xdb/xba <CJK> +<U0002A61F> /x8e/xa7/xdb/xbb <CJK> +<U0002A622> /x8e/xa7/xdb/xbc <CJK> +<U0002A620> /x8e/xa7/xdb/xbd <CJK> +<U0002A621> /x8e/xa7/xdb/xbe <CJK> +<U0002A614> /x8e/xa7/xdb/xbf <CJK> +<U0002A613> /x8e/xa7/xdb/xc0 <CJK> +<U0002A69D> /x8e/xa7/xdb/xc1 <CJK> +<U0002A69C> /x8e/xa7/xdb/xc2 <CJK> +<U0002A69E> /x8e/xa7/xdb/xc3 <CJK> +<U0002A69F> /x8e/xa7/xdb/xc4 <CJK> +<U0002046B> /x8e/xa7/xdb/xc5 <CJK> +<U000208C8> /x8e/xa7/xdb/xc6 <CJK> +<U00021178> /x8e/xa7/xdb/xc7 <CJK> +<U00021176> /x8e/xa7/xdb/xc8 <CJK> +<U00021170> /x8e/xa7/xdb/xc9 <CJK> +<U00021171> /x8e/xa7/xdb/xca <CJK> +<U0002150A> /x8e/xa7/xdb/xcb <CJK> +<U0002192C> /x8e/xa7/xdb/xcc <CJK> +<U00022311> /x8e/xa7/xdb/xcd <CJK> +<U0002247E> /x8e/xa7/xdb/xce <CJK> +<U00022957> /x8e/xa7/xdb/xcf <CJK> +<U00022966> /x8e/xa7/xdb/xd0 <CJK> +<U00022969> /x8e/xa7/xdb/xd1 <CJK> +<U00022967> /x8e/xa7/xdb/xd2 <CJK> +<U00022968> /x8e/xa7/xdb/xd3 <CJK> +<U00022971> /x8e/xa7/xdb/xd4 <CJK> +<U0002296F> /x8e/xa7/xdb/xd5 <CJK> +<U0002A3AE> /x8e/xa7/xdb/xd6 <CJK> +<U00022E8B> /x8e/xa7/xdb/xd7 <CJK> +<U00022E96> /x8e/xa7/xdb/xd8 <CJK> +<U00023035> /x8e/xa7/xdb/xd9 <CJK> +<U0002303A> /x8e/xa7/xdb/xda <CJK> +<U0002306B> /x8e/xa7/xdb/xdb <CJK> +<U00023316> /x8e/xa7/xdb/xdc <CJK> +<U00023843> /x8e/xa7/xdb/xdd <CJK> +<U00023846> /x8e/xa7/xdb/xde <CJK> +<U0002383F> /x8e/xa7/xdb/xdf <CJK> +<U0002383B> /x8e/xa7/xdb/xe0 <CJK> +<U0002383D> /x8e/xa7/xdb/xe1 <CJK> +<U000239B1> /x8e/xa7/xdb/xe2 <CJK> +<U000239B2> /x8e/xa7/xdb/xe3 <CJK> +<U00023AE4> /x8e/xa7/xdb/xe4 <CJK> +<U00023C40> /x8e/xa7/xdb/xe5 <CJK> +<U0002415D> /x8e/xa7/xdb/xe6 <CJK> +<U00024151> /x8e/xa7/xdb/xe7 <CJK> +<U0002414D> /x8e/xa7/xdb/xe8 <CJK> +<U0002414C> /x8e/xa7/xdb/xe9 <CJK> +<U0002415B> /x8e/xa7/xdb/xea <CJK> +<U000244D4> /x8e/xa7/xdb/xeb <CJK> +<U000244D2> /x8e/xa7/xdb/xec <CJK> +<U000244CA> /x8e/xa7/xdb/xed <CJK> +<U000244C8> /x8e/xa7/xdb/xee <CJK> +<U000244D0> /x8e/xa7/xdb/xef <CJK> +<U000244C9> /x8e/xa7/xdb/xf0 <CJK> +<U00024549> /x8e/xa7/xdb/xf1 <CJK> +<U000245A4> /x8e/xa7/xdb/xf2 <CJK> +<U00024712> /x8e/xa7/xdb/xf3 <CJK> +<U0002470F> /x8e/xa7/xdb/xf4 <CJK> +<U00024711> /x8e/xa7/xdb/xf5 <CJK> +<U000248DB> /x8e/xa7/xdb/xf6 <CJK> +<U000248DD> /x8e/xa7/xdb/xf7 <CJK> +<U000248DC> /x8e/xa7/xdb/xf8 <CJK> +<U00024AD4> /x8e/xa7/xdb/xf9 <CJK> +<U00024B21> /x8e/xa7/xdb/xfa <CJK> +<U00024BB2> /x8e/xa7/xdb/xfb <CJK> +<U00024D04> /x8e/xa7/xdb/xfc <CJK> +<U00024D02> /x8e/xa7/xdb/xfd <CJK> +<U00024F11> /x8e/xa7/xdb/xfe <CJK> +<U00024F16> /x8e/xa7/xdc/xa1 <CJK> +<U00024F10> /x8e/xa7/xdc/xa2 <CJK> +<U00024FBE> /x8e/xa7/xdc/xa3 <CJK> +<U0002721A> /x8e/xa7/xdc/xa4 <CJK> +<U0002534C> /x8e/xa7/xdc/xa5 <CJK> +<U0002534A> /x8e/xa7/xdc/xa6 <CJK> +<U000255F2> /x8e/xa7/xdc/xa7 <CJK> +<U000255F1> /x8e/xa7/xdc/xa8 <CJK> +<U0002572A> /x8e/xa7/xdc/xa9 <CJK> +<U0002572C> /x8e/xa7/xdc/xaa <CJK> +<U0002572F> /x8e/xa7/xdc/xab <CJK> +<U00025731> /x8e/xa7/xdc/xac <CJK> +<U00025911> /x8e/xa7/xdc/xad <CJK> +<U00025912> /x8e/xa7/xdc/xae <CJK> +<U00025A4B> /x8e/xa7/xdc/xaf <CJK> +<U00025DDB> /x8e/xa7/xdc/xb0 <CJK> +<U00025DD6> /x8e/xa7/xdc/xb1 <CJK> +<U00025DDD> /x8e/xa7/xdc/xb2 <CJK> +<U00025DE2> /x8e/xa7/xdc/xb3 <CJK> +<U00025DE4> /x8e/xa7/xdc/xb4 <CJK> +<U00025DE0> /x8e/xa7/xdc/xb5 <CJK> +<U00025DDF> /x8e/xa7/xdc/xb6 <CJK> +<U00025DE3> /x8e/xa7/xdc/xb7 <CJK> +<U00025F6E> /x8e/xa7/xdc/xb8 <CJK> +<U00025F71> /x8e/xa7/xdc/xb9 <CJK> +<U000261E9> /x8e/xa7/xdc/xba <CJK> +<U000261EA> /x8e/xa7/xdc/xbb <CJK> +<U00026263> /x8e/xa7/xdc/xbc <CJK> +<U000263EB> /x8e/xa7/xdc/xbd <CJK> +<U000263EA> /x8e/xa7/xdc/xbe <CJK> +<U000268BD> /x8e/xa7/xdc/xbf <CJK> +<U000268BB> /x8e/xa7/xdc/xc0 <CJK> +<U000268C6> /x8e/xa7/xdc/xc1 <CJK> +<U000268CC> /x8e/xa7/xdc/xc2 <CJK> +<U000268C8> /x8e/xa7/xdc/xc3 <CJK> +<U000244CF> /x8e/xa7/xdc/xc4 <CJK> +<U000268C9> /x8e/xa7/xdc/xc5 <CJK> +<U000268CA> /x8e/xa7/xdc/xc6 <CJK> +<U000268CF> /x8e/xa7/xdc/xc7 <CJK> +<U000268D0> /x8e/xa7/xdc/xc8 <CJK> +<U000269BA> /x8e/xa7/xdc/xc9 <CJK> +<U000269FB> /x8e/xa7/xdc/xca <CJK> +<U00026A03> /x8e/xa7/xdc/xcb <CJK> +<U00026AC4> /x8e/xa7/xdc/xcc <CJK> +<U00027149> /x8e/xa7/xdc/xcd <CJK> +<U00027153> /x8e/xa7/xdc/xce <CJK> +<U00027136> /x8e/xa7/xdc/xcf <CJK> +<U0002714A> /x8e/xa7/xdc/xd0 <CJK> +<U00027141> /x8e/xa7/xdc/xd1 <CJK> +<U0002714E> /x8e/xa7/xdc/xd2 <CJK> +<U00027119> /x8e/xa7/xdc/xd3 <CJK> +<U0002714D> /x8e/xa7/xdc/xd4 <CJK> +<U00027145> /x8e/xa7/xdc/xd5 <CJK> +<U0002714C> /x8e/xa7/xdc/xd6 <CJK> +<U00027147> /x8e/xa7/xdc/xd7 <CJK> +<U00027148> /x8e/xa7/xdc/xd8 <CJK> +<U0002714F> /x8e/xa7/xdc/xd9 <CJK> +<U00027137> /x8e/xa7/xdc/xda <CJK> +<U00027142> /x8e/xa7/xdc/xdb <CJK> +<U0002754A> /x8e/xa7/xdc/xdc <CJK> +<U00027546> /x8e/xa7/xdc/xdd <CJK> +<U460A> /x8e/xa7/xdc/xde <CJK> +<U00027549> /x8e/xa7/xdc/xdf <CJK> +<U0002754F> /x8e/xa7/xdc/xe0 <CJK> +<U00027551> /x8e/xa7/xdc/xe1 <CJK> +<U0002754C> /x8e/xa7/xdc/xe2 <CJK> +<U460C> /x8e/xa7/xdc/xe3 <CJK> +<U00027606> /x8e/xa7/xdc/xe4 <CJK> +<U00027951> /x8e/xa7/xdc/xe5 <CJK> +<U00027B7A> /x8e/xa7/xdc/xe6 <CJK> +<U00027B83> /x8e/xa7/xdc/xe7 <CJK> +<U00027B7E> /x8e/xa7/xdc/xe8 <CJK> +<U00027B7F> /x8e/xa7/xdc/xe9 <CJK> +<U00027B80> /x8e/xa7/xdc/xea <CJK> +<U00024BB5> /x8e/xa7/xdc/xeb <CJK> +<U00027C91> /x8e/xa7/xdc/xec <CJK> +<U00027C94> /x8e/xa7/xdc/xed <CJK> +<U00027C95> /x8e/xa7/xdc/xee <CJK> +<U00027D21> /x8e/xa7/xdc/xef <CJK> +<U00027D20> /x8e/xa7/xdc/xf0 <CJK> +<U00027E3D> /x8e/xa7/xdc/xf1 <CJK> +<U00027E40> /x8e/xa7/xdc/xf2 <CJK> +<U00027E46> /x8e/xa7/xdc/xf3 <CJK> +<U00027E84> /x8e/xa7/xdc/xf4 <CJK> +<U00027FAC> /x8e/xa7/xdc/xf5 <CJK> +<U00027FAD> /x8e/xa7/xdc/xf6 <CJK> +<U482E> /x8e/xa7/xdc/xf7 <CJK> +<U000281DA> /x8e/xa7/xdc/xf8 <CJK> +<U000281D9> /x8e/xa7/xdc/xf9 <CJK> +<U000283E2> /x8e/xa7/xdc/xfa <CJK> +<U000283E1> /x8e/xa7/xdc/xfb <CJK> +<U000283E3> /x8e/xa7/xdc/xfc <CJK> +<U000283E4> /x8e/xa7/xdc/xfd <CJK> +<U000283DE> /x8e/xa7/xdc/xfe <CJK> +<U000283DF> /x8e/xa7/xdd/xa1 <CJK> +<U00028641> /x8e/xa7/xdd/xa2 <CJK> +<U00028659> /x8e/xa7/xdd/xa3 <CJK> +<U0002865C> /x8e/xa7/xdd/xa4 <CJK> +<U0002865A> /x8e/xa7/xdd/xa5 <CJK> +<U000287E8> /x8e/xa7/xdd/xa6 <CJK> +<U000288F6> /x8e/xa7/xdd/xa7 <CJK> +<U000288FC> /x8e/xa7/xdd/xa8 <CJK> +<U000288F7> /x8e/xa7/xdd/xa9 <CJK> +<U000288FA> /x8e/xa7/xdd/xaa <CJK> +<U000288F9> /x8e/xa7/xdd/xab <CJK> +<U00028BC4> /x8e/xa7/xdd/xac <CJK> +<U00028BBE> /x8e/xa7/xdd/xad <CJK> +<U00028BD2> /x8e/xa7/xdd/xae <CJK> +<U00028BBD> /x8e/xa7/xdd/xaf <CJK> +<U00028B95> /x8e/xa7/xdd/xb0 <CJK> +<U00028BD4> /x8e/xa7/xdd/xb1 <CJK> +<U00028DE4> /x8e/xa7/xdd/xb2 <CJK> +<U00029061> /x8e/xa7/xdd/xb3 <CJK> +<U00029062> /x8e/xa7/xdd/xb4 <CJK> +<U00029063> /x8e/xa7/xdd/xb5 <CJK> +<U00029064> /x8e/xa7/xdd/xb6 <CJK> +<U00029060> /x8e/xa7/xdd/xb7 <CJK> +<U0002905C> /x8e/xa7/xdd/xb8 <CJK> +<U0002905D> /x8e/xa7/xdd/xb9 <CJK> +<U0002905E> /x8e/xa7/xdd/xba <CJK> +<U000291A5> /x8e/xa7/xdd/xbb <CJK> +<U000291A6> /x8e/xa7/xdd/xbc <CJK> +<U0002924C> /x8e/xa7/xdd/xbd <CJK> +<U00029368> /x8e/xa7/xdd/xbe <CJK> +<U0002936E> /x8e/xa7/xdd/xbf <CJK> +<U00029371> /x8e/xa7/xdd/xc0 <CJK> +<U0002936B> /x8e/xa7/xdd/xc1 <CJK> +<U0002936F> /x8e/xa7/xdd/xc2 <CJK> +<U000293EE> /x8e/xa7/xdd/xc3 <CJK> +<U000293F1> /x8e/xa7/xdd/xc4 <CJK> +<U000293F0> /x8e/xa7/xdd/xc5 <CJK> +<U000293EF> /x8e/xa7/xdd/xc6 <CJK> +<U00029415> /x8e/xa7/xdd/xc7 <CJK> +<U00029414> /x8e/xa7/xdd/xc8 <CJK> +<U00028F6E> /x8e/xa7/xdd/xc9 <CJK> +<U00029447> /x8e/xa7/xdd/xca <CJK> +<U0002957C> /x8e/xa7/xdd/xcb <CJK> +<U0002957A> /x8e/xa7/xdd/xcc <CJK> +<U00029574> /x8e/xa7/xdd/xcd <CJK> +<U00029576> /x8e/xa7/xdd/xce <CJK> +<U0002956E> /x8e/xa7/xdd/xcf <CJK> +<U00029578> /x8e/xa7/xdd/xd0 <CJK> +<U0002956D> /x8e/xa7/xdd/xd1 <CJK> +<U0002956C> /x8e/xa7/xdd/xd2 <CJK> +<U0002964E> /x8e/xa7/xdd/xd3 <CJK> +<U000297D7> /x8e/xa7/xdd/xd4 <CJK> +<U000297EA> /x8e/xa7/xdd/xd5 <CJK> +<U000297E5> /x8e/xa7/xdd/xd6 <CJK> +<U00029864> /x8e/xa7/xdd/xd7 <CJK> +<U000299B3> /x8e/xa7/xdd/xd8 <CJK> +<U000299A3> /x8e/xa7/xdd/xd9 <CJK> +<U000299A5> /x8e/xa7/xdd/xda <CJK> +<U000299A7> /x8e/xa7/xdd/xdb <CJK> +<U000299A2> /x8e/xa7/xdd/xdc <CJK> +<U0002999F> /x8e/xa7/xdd/xdd <CJK> +<U000299A6> /x8e/xa7/xdd/xde <CJK> +<U0002999E> /x8e/xa7/xdd/xdf <CJK> +<U000299A8> /x8e/xa7/xdd/xe0 <CJK> +<U00029AA9> /x8e/xa7/xdd/xe1 <CJK> +<U00029AA6> /x8e/xa7/xdd/xe2 <CJK> +<U00029AAA> /x8e/xa7/xdd/xe3 <CJK> +<U00029AAB> /x8e/xa7/xdd/xe4 <CJK> +<U00029AA0> /x8e/xa7/xdd/xe5 <CJK> +<U00029AA1> /x8e/xa7/xdd/xe6 <CJK> +<U00029AA8> /x8e/xa7/xdd/xe7 <CJK> +<U00029AE8> /x8e/xa7/xdd/xe8 <CJK> +<U00029AE9> /x8e/xa7/xdd/xe9 <CJK> +<U00029AEA> /x8e/xa7/xdd/xea <CJK> +<U00029BE4> /x8e/xa7/xdd/xeb <CJK> +<U00029BDF> /x8e/xa7/xdd/xec <CJK> +<U00029BE0> /x8e/xa7/xdd/xed <CJK> +<U00029C28> /x8e/xa7/xdd/xee <CJK> +<U00029C5D> /x8e/xa7/xdd/xef <CJK> +<U00029C5B> /x8e/xa7/xdd/xf0 <CJK> +<U00029C56> /x8e/xa7/xdd/xf1 <CJK> +<U00029C57> /x8e/xa7/xdd/xf2 <CJK> +<U00029C5F> /x8e/xa7/xdd/xf3 <CJK> +<U00029C62> /x8e/xa7/xdd/xf4 <CJK> +<U00029EE1> /x8e/xa7/xdd/xf5 <CJK> +<U00029EE3> /x8e/xa7/xdd/xf6 <CJK> +<U00029EDE> /x8e/xa7/xdd/xf7 <CJK> +<U00029ED9> /x8e/xa7/xdd/xf8 <CJK> +<U00029EE8> /x8e/xa7/xdd/xf9 <CJK> +<U00029EF2> /x8e/xa7/xdd/xfa <CJK> +<U00029EF6> /x8e/xa7/xdd/xfb <CJK> +<U00029EE6> /x8e/xa7/xdd/xfc <CJK> +<U00029EF4> /x8e/xa7/xdd/xfd <CJK> +<U00029EF5> /x8e/xa7/xdd/xfe <CJK> +<U00029EE5> /x8e/xa7/xde/xa1 <CJK> +<U00029EE2> /x8e/xa7/xde/xa2 <CJK> +<U4C8D> /x8e/xa7/xde/xa3 <CJK> +<U0002A196> /x8e/xa7/xde/xa4 <CJK> +<U0002A1AA> /x8e/xa7/xde/xa5 <CJK> +<U0002A197> /x8e/xa7/xde/xa6 <CJK> +<U0002A170> /x8e/xa7/xde/xa7 <CJK> +<U0002A1A1> /x8e/xa7/xde/xa8 <CJK> +<U0002A19D> /x8e/xa7/xde/xa9 <CJK> +<U0002A1A9> /x8e/xa7/xde/xaa <CJK> +<U0002A16F> /x8e/xa7/xde/xab <CJK> +<U0002A17E> /x8e/xa7/xde/xac <CJK> +<U0002A194> /x8e/xa7/xde/xad <CJK> +<U0002A19A> /x8e/xa7/xde/xae <CJK> +<U0002A173> /x8e/xa7/xde/xaf <CJK> +<U0002A187> /x8e/xa7/xde/xb0 <CJK> +<U0002A171> /x8e/xa7/xde/xb1 <CJK> +<U0002A177> /x8e/xa7/xde/xb2 <CJK> +<U0002A188> /x8e/xa7/xde/xb3 <CJK> +<U0002A18D> /x8e/xa7/xde/xb4 <CJK> +<U0002A185> /x8e/xa7/xde/xb5 <CJK> +<U0002A178> /x8e/xa7/xde/xb6 <CJK> +<U0002A1AD> /x8e/xa7/xde/xb7 <CJK> +<U0002A280> /x8e/xa7/xde/xb8 <CJK> +<U0002A281> /x8e/xa7/xde/xb9 <CJK> +<U0002A2E5> /x8e/xa7/xde/xba <CJK> +<U0002A2E7> /x8e/xa7/xde/xbb <CJK> +<U0002A37C> /x8e/xa7/xde/xbc <CJK> +<U0002A3AF> /x8e/xa7/xde/xbd <CJK> +<U0002A3E1> /x8e/xa7/xde/xbe <CJK> +<U0002A496> /x8e/xa7/xde/xbf <CJK> +<U0002A4A3> /x8e/xa7/xde/xc0 <CJK> +<U0002A490> /x8e/xa7/xde/xc1 <CJK> +<U0002A4F8> /x8e/xa7/xde/xc2 <CJK> +<U0002A52E> /x8e/xa7/xde/xc3 <CJK> +<U0002A575> /x8e/xa7/xde/xc4 <CJK> +<U0002A57E> /x8e/xa7/xde/xc5 <CJK> +<U0002A57D> /x8e/xa7/xde/xc6 <CJK> +<U0002A57B> /x8e/xa7/xde/xc7 <CJK> +<U0002A578> /x8e/xa7/xde/xc8 <CJK> +<U0002A5B0> /x8e/xa7/xde/xc9 <CJK> +<U0002A634> /x8e/xa7/xde/xca <CJK> +<U0002A636> /x8e/xa7/xde/xcb <CJK> +<U0002A630> /x8e/xa7/xde/xcc <CJK> +<U0002A62E> /x8e/xa7/xde/xce <CJK> +<U0002A637> /x8e/xa7/xde/xcf <CJK> +<U00020ACE> /x8e/xa7/xde/xd0 <CJK> +<U00020B97> /x8e/xa7/xde/xd1 <CJK> +<U00020B98> /x8e/xa7/xde/xd2 <CJK> +<U0002117C> /x8e/xa7/xde/xd3 <CJK> +<U0002117E> /x8e/xa7/xde/xd4 <CJK> +<U0002117D> /x8e/xa7/xde/xd5 <CJK> +<U0002117F> /x8e/xa7/xde/xd6 <CJK> +<U0002150F> /x8e/xa7/xde/xd7 <CJK> +<U000216A4> /x8e/xa7/xde/xd8 <CJK> +<U00021931> /x8e/xa7/xde/xd9 <CJK> +<U0002192E> /x8e/xa7/xde/xda <CJK> +<U0002192F> /x8e/xa7/xde/xdb <CJK> +<U00021932> /x8e/xa7/xde/xdc <CJK> +<U00021D2C> /x8e/xa7/xde/xdd <CJK> +<U00021FD4> /x8e/xa7/xde/xde <CJK> +<U00021FDC> /x8e/xa7/xde/xdf <CJK> +<U00021FD8> /x8e/xa7/xde/xe0 <CJK> +<U0002200E> /x8e/xa7/xde/xe1 <CJK> +<U00022183> /x8e/xa7/xde/xe2 <CJK> +<U00022184> /x8e/xa7/xde/xe3 <CJK> +<U00022312> /x8e/xa7/xde/xe4 <CJK> +<U00022972> /x8e/xa7/xde/xe5 <CJK> +<U0002297C> /x8e/xa7/xde/xe6 <CJK> +<U0002297E> /x8e/xa7/xde/xe7 <CJK> +<U00022EA6> /x8e/xa7/xde/xe8 <CJK> +<U00022EA0> /x8e/xa7/xde/xe9 <CJK> +<U00022E9E> /x8e/xa7/xde/xea <CJK> +<U00022EA2> /x8e/xa7/xde/xeb <CJK> +<U0002312A> /x8e/xa7/xde/xec <CJK> +<U00023318> /x8e/xa7/xde/xed <CJK> +<U0002384D> /x8e/xa7/xde/xee <CJK> +<U00023858> /x8e/xa7/xde/xef <CJK> +<U0002385B> /x8e/xa7/xde/xf0 <CJK> +<U00025914> /x8e/xa7/xde/xf1 <CJK> +<U00023AE6> /x8e/xa7/xde/xf3 <CJK> +<U00024164> /x8e/xa7/xde/xf4 <CJK> +<U00024168> /x8e/xa7/xde/xf5 <CJK> +<U00024160> /x8e/xa7/xde/xf6 <CJK> +<U00024162> /x8e/xa7/xde/xf7 <CJK> +<U000244D7> /x8e/xa7/xde/xf8 <CJK> +<U0002454B> /x8e/xa7/xde/xf9 <CJK> +<U000248E0> /x8e/xa7/xde/xfa <CJK> +<U00024B22> /x8e/xa7/xde/xfb <CJK> +<U00024D05> /x8e/xa7/xde/xfc <CJK> +<U00024F19> /x8e/xa7/xde/xfd <CJK> +<U00024F1A> /x8e/xa7/xde/xfe <CJK> +<U00024FC3> /x8e/xa7/xdf/xa1 <CJK> +<U000250D8> /x8e/xa7/xdf/xa2 <CJK> +<U000250DC> /x8e/xa7/xdf/xa3 <CJK> +<U0002534F> /x8e/xa7/xdf/xa4 <CJK> +<U000255F7> /x8e/xa7/xdf/xa5 <CJK> +<U000255F4> /x8e/xa7/xdf/xa6 <CJK> +<U000255F8> /x8e/xa7/xdf/xa7 <CJK> +<U00025913> /x8e/xa7/xdf/xa8 <CJK> +<U00025A50> /x8e/xa7/xdf/xa9 <CJK> +<U00025DF0> /x8e/xa7/xdf/xaa <CJK> +<U00025DE9> /x8e/xa7/xdf/xab <CJK> +<U00025DEF> /x8e/xa7/xdf/xac <CJK> +<U00025DED> /x8e/xa7/xdf/xad <CJK> +<U00025DEA> /x8e/xa7/xdf/xae <CJK> +<U00025DF8> /x8e/xa7/xdf/xaf <CJK> +<U00025E05> /x8e/xa7/xdf/xb0 <CJK> +<U00025DF2> /x8e/xa7/xdf/xb1 <CJK> +<U00025F72> /x8e/xa7/xdf/xb2 <CJK> +<U4331> /x8e/xa7/xdf/xb3 <CJK> +<U000261F9> /x8e/xa7/xdf/xb4 <CJK> +<U000261F3> /x8e/xa7/xdf/xb5 <CJK> +<U000261F6> /x8e/xa7/xdf/xb6 <CJK> +<U000261F2> /x8e/xa7/xdf/xb7 <CJK> +<U000261F7> /x8e/xa7/xdf/xb8 <CJK> +<U00026266> /x8e/xa7/xdf/xb9 <CJK> +<U00026265> /x8e/xa7/xdf/xba <CJK> +<U00026340> /x8e/xa7/xdf/xbb <CJK> +<U000268D1> /x8e/xa7/xdf/xbd <CJK> +<U000268D3> /x8e/xa7/xdf/xbe <CJK> +<U00026A04> /x8e/xa7/xdf/xbf <CJK> +<U00027159> /x8e/xa7/xdf/xc0 <CJK> +<U00027160> /x8e/xa7/xdf/xc1 <CJK> +<U0002715B> /x8e/xa7/xdf/xc2 <CJK> +<U0002715D> /x8e/xa7/xdf/xc3 <CJK> +<U0002715E> /x8e/xa7/xdf/xc4 <CJK> +<U00027169> /x8e/xa7/xdf/xc5 <CJK> +<U0002715C> /x8e/xa7/xdf/xc6 <CJK> +<U00027161> /x8e/xa7/xdf/xc7 <CJK> +<U0002716A> /x8e/xa7/xdf/xc8 <CJK> +<U0002715F> /x8e/xa7/xdf/xc9 <CJK> +<U0002754E> /x8e/xa7/xdf/xca <CJK> +<U0002755C> /x8e/xa7/xdf/xcb <CJK> +<U00027560> /x8e/xa7/xdf/xcc <CJK> +<U00027563> /x8e/xa7/xdf/xcd <CJK> +<U000275DB> /x8e/xa7/xdf/xce <CJK> +<U000277CA> /x8e/xa7/xdf/xcf <CJK> +<U000277C9> /x8e/xa7/xdf/xd0 <CJK> +<U000277C8> /x8e/xa7/xdf/xd1 <CJK> +<U000278A5> /x8e/xa7/xdf/xd2 <CJK> +<U000278A3> /x8e/xa7/xdf/xd3 <CJK> +<U00027B8E> /x8e/xa7/xdf/xd4 <CJK> +<U00027B87> /x8e/xa7/xdf/xd5 <CJK> +<U00027B89> /x8e/xa7/xdf/xd6 <CJK> +<U00027B85> /x8e/xa7/xdf/xd7 <CJK> +<U00027B86> /x8e/xa7/xdf/xd8 <CJK> +<U00027B8F> /x8e/xa7/xdf/xd9 <CJK> +<U00027B8A> /x8e/xa7/xdf/xda <CJK> +<U00027B90> /x8e/xa7/xdf/xdb <CJK> +<U00027C98> /x8e/xa7/xdf/xdc <CJK> +<U00027C9B> /x8e/xa7/xdf/xdd <CJK> +<U00027E47> /x8e/xa7/xdf/xde <CJK> +<U00027E49> /x8e/xa7/xdf/xdf <CJK> +<U00027E48> /x8e/xa7/xdf/xe0 <CJK> +<U000281E5> /x8e/xa7/xdf/xe1 <CJK> +<U000281EA> /x8e/xa7/xdf/xe2 <CJK> +<U000281ED> /x8e/xa7/xdf/xe3 <CJK> +<U000283F0> /x8e/xa7/xdf/xe4 <CJK> +<U000283EF> /x8e/xa7/xdf/xe5 <CJK> +<U000283F2> /x8e/xa7/xdf/xe6 <CJK> +<U000283EC> /x8e/xa7/xdf/xe7 <CJK> +<U00028440> /x8e/xa7/xdf/xe8 <CJK> +<U00028660> /x8e/xa7/xdf/xe9 <CJK> +<U0002865F> /x8e/xa7/xdf/xea <CJK> +<U000287EB> /x8e/xa7/xdf/xeb <CJK> +<U000287EC> /x8e/xa7/xdf/xec <CJK> +<U00028900> /x8e/xa7/xdf/xed <CJK> +<U00028901> /x8e/xa7/xdf/xee <CJK> +<U00028BE2> /x8e/xa7/xdf/xef <CJK> +<U00028BDF> /x8e/xa7/xdf/xf0 <CJK> +<U00028BE0> /x8e/xa7/xdf/xf1 <CJK> +<U00028BE1> /x8e/xa7/xdf/xf2 <CJK> +<U00028BE3> /x8e/xa7/xdf/xf3 <CJK> +<U00028CC3> /x8e/xa7/xdf/xf4 <CJK> +<U00028DEB> /x8e/xa7/xdf/xf5 <CJK> +<U00028DEA> /x8e/xa7/xdf/xf6 <CJK> +<U00028F61> /x8e/xa7/xdf/xf7 <CJK> +<U00028F71> /x8e/xa7/xdf/xf8 <CJK> +<U0002906B> /x8e/xa7/xdf/xf9 <CJK> +<U00029068> /x8e/xa7/xdf/xfa <CJK> +<U00029069> /x8e/xa7/xdf/xfb <CJK> +<U00029067> /x8e/xa7/xdf/xfc <CJK> +<U000291B0> /x8e/xa7/xdf/xfd <CJK> +<U000291B1> /x8e/xa7/xdf/xfe <CJK> +<U000291B2> /x8e/xa7/xe0/xa1 <CJK> +<U00029251> /x8e/xa7/xe0/xa2 <CJK> +<U00029374> /x8e/xa7/xe0/xa3 <CJK> +<U0002957F> /x8e/xa7/xe0/xa4 <CJK> +<U00029584> /x8e/xa7/xe0/xa5 <CJK> +<U00029653> /x8e/xa7/xe0/xa6 <CJK> +<U00029654> /x8e/xa7/xe0/xa7 <CJK> +<U000297F0> /x8e/xa7/xe0/xa8 <CJK> +<U000297F4> /x8e/xa7/xe0/xa9 <CJK> +<U000297F1> /x8e/xa7/xe0/xaa <CJK> +<U00029837> /x8e/xa7/xe0/xab <CJK> +<U000299BF> /x8e/xa7/xe0/xac <CJK> +<U4BBC> /x8e/xa7/xe0/xad <CJK> +<U4BBB> /x8e/xa7/xe0/xae <CJK> +<U000299BD> /x8e/xa7/xe0/xaf <CJK> +<U000299BE> /x8e/xa7/xe0/xb0 <CJK> +<U000299B7> /x8e/xa7/xe0/xb1 <CJK> +<U000299C0> /x8e/xa7/xe0/xb2 <CJK> +<U000299BA> /x8e/xa7/xe0/xb3 <CJK> +<U000299B8> /x8e/xa7/xe0/xb4 <CJK> +<U000299BC> /x8e/xa7/xe0/xb5 <CJK> +<U000299BB> /x8e/xa7/xe0/xb6 <CJK> +<U00029AEB> /x8e/xa7/xe0/xb7 <CJK> +<U00029BE7> /x8e/xa7/xe0/xb8 <CJK> +<U00029C1D> /x8e/xa7/xe0/xb9 <CJK> +<U00029C1C> /x8e/xa7/xe0/xba <CJK> +<U00029C63> /x8e/xa7/xe0/xbb <CJK> +<U0002244B> /x8e/xa7/xe0/xbc <CJK> +<U00029D38> /x8e/xa7/xe0/xbd <CJK> +<U00029D36> /x8e/xa7/xe0/xbe <CJK> +<U00029D34> /x8e/xa7/xe0/xbf <CJK> +<U00029D37> /x8e/xa7/xe0/xc0 <CJK> +<U00029F06> /x8e/xa7/xe0/xc1 <CJK> +<U00029F1C> /x8e/xa7/xe0/xc2 <CJK> +<U00029F02> /x8e/xa7/xe0/xc3 <CJK> +<U00029F1D> /x8e/xa7/xe0/xc4 <CJK> +<U00029F1E> /x8e/xa7/xe0/xc5 <CJK> +<U00029EE0> /x8e/xa7/xe0/xc6 <CJK> +<U00029F11> /x8e/xa7/xe0/xc7 <CJK> +<U00029F18> /x8e/xa7/xe0/xc8 <CJK> +<U00029F21> /x8e/xa7/xe0/xc9 <CJK> +<U00029F20> /x8e/xa7/xe0/xca <CJK> +<U00029F10> /x8e/xa7/xe0/xcb <CJK> +<U0002A1BD> /x8e/xa7/xe0/xcc <CJK> +<U0002A1AE> /x8e/xa7/xe0/xcd <CJK> +<U0002A1B5> /x8e/xa7/xe0/xce <CJK> +<U0002A1B8> /x8e/xa7/xe0/xcf <CJK> +<U0002A1B9> /x8e/xa7/xe0/xd0 <CJK> +<U0002A1BE> /x8e/xa7/xe0/xd1 <CJK> +<U0002A1C4> /x8e/xa7/xe0/xd2 <CJK> +<U0002A1BC> /x8e/xa7/xe0/xd3 <CJK> +<U0002A1BA> /x8e/xa7/xe0/xd4 <CJK> +<U0002A283> /x8e/xa7/xe0/xd5 <CJK> +<U0002A2EA> /x8e/xa7/xe0/xd6 <CJK> +<U0002A2EC> /x8e/xa7/xe0/xd7 <CJK> +<U0002A37E> /x8e/xa7/xe0/xd8 <CJK> +<U0002A37B> /x8e/xa7/xe0/xd9 <CJK> +<U0002A3E5> /x8e/xa7/xe0/xda <CJK> +<U0002A4A7> /x8e/xa7/xe0/xdb <CJK> +<U0002A49E> /x8e/xa7/xe0/xdc <CJK> +<U0002A49A> /x8e/xa7/xe0/xdd <CJK> +<U0002A52F> /x8e/xa7/xe0/xde <CJK> +<U0002A531> /x8e/xa7/xe0/xdf <CJK> +<U0002A583> /x8e/xa7/xe0/xe0 <CJK> +<U0002A5B5> /x8e/xa7/xe0/xe1 <CJK> +<U0002A646> /x8e/xa7/xe0/xe2 <CJK> +<U0002A641> /x8e/xa7/xe0/xe3 <CJK> +<U0002A643> /x8e/xa7/xe0/xe4 <CJK> +<U0002A63D> /x8e/xa7/xe0/xe5 <CJK> +<U0002A642> /x8e/xa7/xe0/xe6 <CJK> +<U0002A63B> /x8e/xa7/xe0/xe7 <CJK> +<U0002A647> /x8e/xa7/xe0/xe8 <CJK> +<U0002096B> /x8e/xa7/xe0/xe9 <CJK> +<U000209D0> /x8e/xa7/xe0/xea <CJK> +<U0002118E> /x8e/xa7/xe0/xeb <CJK> +<U00021B11> /x8e/xa7/xe0/xec <CJK> +<U0002244C> /x8e/xa7/xe0/xef <CJK> +<U0002312B> /x8e/xa7/xe0/xf0 <CJK> +<U0002384F> /x8e/xa7/xe0/xf1 <CJK> +<U0002385E> /x8e/xa7/xe0/xf2 <CJK> +<U00023863> /x8e/xa7/xe0/xf3 <CJK> +<U0002386B> /x8e/xa7/xe0/xf4 <CJK> +<U0002393F> /x8e/xa7/xe0/xf5 <CJK> +<U00023AE9> /x8e/xa7/xe0/xf6 <CJK> +<U0002416D> /x8e/xa7/xe0/xf7 <CJK> +<U0002416B> /x8e/xa7/xe0/xf8 <CJK> +<U0002416A> /x8e/xa7/xe0/xf9 <CJK> +<U00029F2A> /x8e/xa7/xe0/xfa <CJK> +<U000244E0> /x8e/xa7/xe0/xfb <CJK> +<U000244DD> /x8e/xa7/xe0/xfc <CJK> +<U000244E1> /x8e/xa7/xe0/xfd <CJK> +<U000244DE> /x8e/xa7/xe0/xfe <CJK> +<U000244DC> /x8e/xa7/xe1/xa1 <CJK> +<U0002454D> /x8e/xa7/xe1/xa2 <CJK> +<U00024716> /x8e/xa7/xe1/xa3 <CJK> +<U000248E3> /x8e/xa7/xe1/xa4 <CJK> +<U00024AE5> /x8e/xa7/xe1/xa5 <CJK> +<U00024AE4> /x8e/xa7/xe1/xa6 <CJK> +<U00024F1D> /x8e/xa7/xe1/xa7 <CJK> +<U0002574B> /x8e/xa7/xe1/xa8 <CJK> +<U0002A6C1> /x8e/xa7/xe1/xa9 <CJK> +<U00025A4E> /x8e/xa7/xe1/xaa <CJK> +<U00025AD6> /x8e/xa7/xe1/xab <CJK> +<U00025DFD> /x8e/xa7/xe1/xac <CJK> +<U00025E07> /x8e/xa7/xe1/xad <CJK> +<U00025DFE> /x8e/xa7/xe1/xae <CJK> +<U00025E03> /x8e/xa7/xe1/xaf <CJK> +<U00025E0B> /x8e/xa7/xe1/xb0 <CJK> +<U00025DFF> /x8e/xa7/xe1/xb1 <CJK> +<U00025F7A> /x8e/xa7/xe1/xb2 <CJK> +<U00025F77> /x8e/xa7/xe1/xb3 <CJK> +<U000261FB> /x8e/xa7/xe1/xb4 <CJK> +<U00026343> /x8e/xa7/xe1/xb5 <CJK> +<U000263ED> /x8e/xa7/xe1/xb6 <CJK> +<U000269BC> /x8e/xa7/xe1/xb7 <CJK> +<U000244DF> /x8e/xa7/xe1/xb8 <CJK> +<U00026A05> /x8e/xa7/xe1/xb9 <CJK> +<U00026AC6> /x8e/xa7/xe1/xba <CJK> +<U00026AC5> /x8e/xa7/xe1/xbb <CJK> +<U00027174> /x8e/xa7/xe1/xbc <CJK> +<U00027173> /x8e/xa7/xe1/xbd <CJK> +<U00027172> /x8e/xa7/xe1/xbe <CJK> +<U00027178> /x8e/xa7/xe1/xbf <CJK> +<U00027573> /x8e/xa7/xe1/xc0 <CJK> +<U0002757A> /x8e/xa7/xe1/xc1 <CJK> +<U00024F1C> /x8e/xa7/xe1/xc2 <CJK> +<U00027576> /x8e/xa7/xe1/xc3 <CJK> +<U00027575> /x8e/xa7/xe1/xc4 <CJK> +<U00027577> /x8e/xa7/xe1/xc5 <CJK> +<U000277CF> /x8e/xa7/xe1/xc6 <CJK> +<U000277CE> /x8e/xa7/xe1/xc7 <CJK> +<U000277CD> /x8e/xa7/xe1/xc8 <CJK> +<U000278A8> /x8e/xa7/xe1/xc9 <CJK> +<U00027B98> /x8e/xa7/xe1/xca <CJK> +<U00027B92> /x8e/xa7/xe1/xcb <CJK> +<U00027B94> /x8e/xa7/xe1/xcc <CJK> +<U00027C9A> /x8e/xa7/xe1/xcd <CJK> +<U00027FB4> /x8e/xa7/xe1/xce <CJK> +<U000281EB> /x8e/xa7/xe1/xcf <CJK> +<U000281F4> /x8e/xa7/xe1/xd0 <CJK> +<U000281F3> /x8e/xa7/xe1/xd1 <CJK> +<U000281EE> /x8e/xa7/xe1/xd2 <CJK> +<U000281F2> /x8e/xa7/xe1/xd3 <CJK> +<U000281F0> /x8e/xa7/xe1/xd4 <CJK> +<U00028664> /x8e/xa7/xe1/xd5 <CJK> +<U00028C05> /x8e/xa7/xe1/xd6 <CJK> +<U00028BFB> /x8e/xa7/xe1/xd7 <CJK> +<U00028BFC> /x8e/xa7/xe1/xd8 <CJK> +<U00028DF3> /x8e/xa7/xe1/xd9 <CJK> +<U0002906C> /x8e/xa7/xe1/xda <CJK> +<U000291BA> /x8e/xa7/xe1/xdb <CJK> +<U00029379> /x8e/xa7/xe1/xdc <CJK> +<U0002937E> /x8e/xa7/xe1/xdd <CJK> +<U00029378> /x8e/xa7/xe1/xde <CJK> +<U000293F4> /x8e/xa7/xe1/xdf <CJK> +<U00029416> /x8e/xa7/xe1/xe0 <CJK> +<U00029657> /x8e/xa7/xe1/xe1 <CJK> +<U000299C8> /x8e/xa7/xe1/xe2 <CJK> +<U000299C3> /x8e/xa7/xe1/xe3 <CJK> +<U000299CE> /x8e/xa7/xe1/xe4 <CJK> +<U00029AB3> /x8e/xa7/xe1/xe5 <CJK> +<U00029AED> /x8e/xa7/xe1/xe6 <CJK> +<U00029AEE> /x8e/xa7/xe1/xe7 <CJK> +<U00029BF1> /x8e/xa7/xe1/xe8 <CJK> +<U00029BF8> /x8e/xa7/xe1/xe9 <CJK> +<U4C14> /x8e/xa7/xe1/xea <CJK> +<U00029C64> /x8e/xa7/xe1/xeb <CJK> +<U00029C65> /x8e/xa7/xe1/xec <CJK> +<U00029F35> /x8e/xa7/xe1/xed <CJK> +<U00029F29> /x8e/xa7/xe1/xee <CJK> +<U00029F2C> /x8e/xa7/xe1/xef <CJK> +<U00029F31> /x8e/xa7/xe1/xf0 <CJK> +<U00029F2B> /x8e/xa7/xe1/xf1 <CJK> +<U00029F2E> /x8e/xa7/xe1/xf2 <CJK> +<U00029F25> /x8e/xa7/xe1/xf3 <CJK> +<U0002A1DA> /x8e/xa7/xe1/xf4 <CJK> +<U0002A1E0> /x8e/xa7/xe1/xf5 <CJK> +<U0002A1D4> /x8e/xa7/xe1/xf6 <CJK> +<U0002A1E1> /x8e/xa7/xe1/xf7 <CJK> +<U0002A1DD> /x8e/xa7/xe1/xf8 <CJK> +<U0002A3E7> /x8e/xa7/xe1/xf9 <CJK> +<U0002A412> /x8e/xa7/xe1/xfa <CJK> +<U0002A4AE> /x8e/xa7/xe1/xfb <CJK> +<U0002A4AF> /x8e/xa7/xe1/xfc <CJK> +<U0002A586> /x8e/xa7/xe1/xfd <CJK> +<U0002A585> /x8e/xa7/xe1/xfe <CJK> +<U0002A5D1> /x8e/xa7/xe2/xa1 <CJK> +<U0002A658> /x8e/xa7/xe2/xa2 <CJK> +<U0002A63F> /x8e/xa7/xe2/xa3 <CJK> +<U0002A652> /x8e/xa7/xe2/xa4 <CJK> +<U0002A64B> /x8e/xa7/xe2/xa5 <CJK> +<U0002A653> /x8e/xa7/xe2/xa6 <CJK> +<U0002A650> /x8e/xa7/xe2/xa7 <CJK> +<U0002A656> /x8e/xa7/xe2/xa8 <CJK> +<U0002A657> /x8e/xa7/xe2/xa9 <CJK> +<U0002A6CD> /x8e/xa7/xe2/xaa <CJK> +<U0002A6CB> /x8e/xa7/xe2/xab <CJK> +<U00020831> /x8e/xa7/xe2/xac <CJK> +<U00020830> /x8e/xa7/xe2/xad <CJK> +<U000209D1> /x8e/xa7/xe2/xae <CJK> +<U361C> /x8e/xa7/xe2/xaf <CJK> +<U00021192> /x8e/xa7/xe2/xb0 <CJK> +<U00021190> /x8e/xa7/xe2/xb1 <CJK> +<U0002118F> /x8e/xa7/xe2/xb2 <CJK> +<U00021193> /x8e/xa7/xe2/xb3 <CJK> +<U00021191> /x8e/xa7/xe2/xb4 <CJK> +<U3772> /x8e/xa7/xe2/xb5 <CJK> +<U00022313> /x8e/xa7/xe2/xb6 <CJK> +<U0002247F> /x8e/xa7/xe2/xb7 <CJK> +<U00022EAC> /x8e/xa7/xe2/xb8 <CJK> +<U00024170> /x8e/xa7/xe2/xb9 <CJK> +<U000244E5> /x8e/xa7/xe2/xba <CJK> +<U00024B23> /x8e/xa7/xe2/xbb <CJK> +<U00024B24> /x8e/xa7/xe2/xbc <CJK> +<U00024D08> /x8e/xa7/xe2/xbd <CJK> +<U00024D07> /x8e/xa7/xe2/xbe <CJK> +<U00024F1F> /x8e/xa7/xe2/xbf <CJK> +<U00024F20> /x8e/xa7/xe2/xc0 <CJK> +<U00024F21> /x8e/xa7/xe2/xc1 <CJK> +<U000250E1> /x8e/xa7/xe2/xc2 <CJK> +<U00025354> /x8e/xa7/xe2/xc3 <CJK> +<U00025357> /x8e/xa7/xe2/xc4 <CJK> +<U00025355> /x8e/xa7/xe2/xc5 <CJK> +<U000255FA> /x8e/xa7/xe2/xc6 <CJK> +<U00025738> /x8e/xa7/xe2/xc7 <CJK> +<U00027186> /x8e/xa7/xe2/xc8 <CJK> +<U00025737> /x8e/xa7/xe2/xc9 <CJK> +<U00025A53> /x8e/xa7/xe2/xca <CJK> +<U00025F7E> /x8e/xa7/xe2/xcb <CJK> +<U00025F7B> /x8e/xa7/xe2/xcc <CJK> +<U000261FD> /x8e/xa7/xe2/xce <CJK> +<U000261FC> /x8e/xa7/xe2/xcf <CJK> +<U00026346> /x8e/xa7/xe2/xd0 <CJK> +<U00026932> /x8e/xa7/xe2/xd1 <CJK> +<U00026AC7> /x8e/xa7/xe2/xd2 <CJK> +<U00027171> /x8e/xa7/xe2/xd3 <CJK> +<U00027183> /x8e/xa7/xe2/xd4 <CJK> +<U0002716F> /x8e/xa7/xe2/xd5 <CJK> +<U0002717E> /x8e/xa7/xe2/xd6 <CJK> +<U0002717D> /x8e/xa7/xe2/xd7 <CJK> +<U00027181> /x8e/xa7/xe2/xd8 <CJK> +<U0002717C> /x8e/xa7/xe2/xd9 <CJK> +<U0002758A> /x8e/xa7/xe2/xda <CJK> +<U0002757E> /x8e/xa7/xe2/xdb <CJK> +<U00027580> /x8e/xa7/xe2/xdc <CJK> +<U0002757D> /x8e/xa7/xe2/xdd <CJK> +<U0002757F> /x8e/xa7/xe2/xde <CJK> +<U00027582> /x8e/xa7/xe2/xdf <CJK> +<U000277D4> /x8e/xa7/xe2/xe0 <CJK> +<U000277D0> /x8e/xa7/xe2/xe1 <CJK> +<U000277D2> /x8e/xa7/xe2/xe2 <CJK> +<U00027955> /x8e/xa7/xe2/xe3 <CJK> +<U00027B9B> /x8e/xa7/xe2/xe4 <CJK> +<U00027B9A> /x8e/xa7/xe2/xe5 <CJK> +<U00027E4E> /x8e/xa7/xe2/xe6 <CJK> +<U000281F1> /x8e/xa7/xe2/xe7 <CJK> +<U000283F8> /x8e/xa7/xe2/xe8 <CJK> +<U000283FD> /x8e/xa7/xe2/xe9 <CJK> +<U0002865E> /x8e/xa7/xe2/xea <CJK> +<U00028666> /x8e/xa7/xe2/xeb <CJK> +<U00028905> /x8e/xa7/xe2/xec <CJK> +<U00028C0A> /x8e/xa7/xe2/xed <CJK> +<U00028C0B> /x8e/xa7/xe2/xee <CJK> +<U00028C0E> /x8e/xa7/xe2/xef <CJK> +<U00028C0D> /x8e/xa7/xe2/xf0 <CJK> +<U00028C11> /x8e/xa7/xe2/xf1 <CJK> +<U00028C09> /x8e/xa7/xe2/xf2 <CJK> +<U00028C10> /x8e/xa7/xe2/xf3 <CJK> +<U00028C0C> /x8e/xa7/xe2/xf4 <CJK> +<U00028C12> /x8e/xa7/xe2/xf5 <CJK> +<U00028CC4> /x8e/xa7/xe2/xf6 <CJK> +<U00028DF7> /x8e/xa7/xe2/xf7 <CJK> +<U00028DF8> /x8e/xa7/xe2/xf8 <CJK> +<U00028F6A> /x8e/xa7/xe2/xf9 <CJK> +<U00028F6B> /x8e/xa7/xe2/xfa <CJK> +<U000291C0> /x8e/xa7/xe2/xfb <CJK> +<U000291C2> /x8e/xa7/xe2/xfc <CJK> +<U00029385> /x8e/xa7/xe2/xfd <CJK> +<U00029380> /x8e/xa7/xe2/xfe <CJK> +<U00029384> /x8e/xa7/xe3/xa1 <CJK> +<U00029381> /x8e/xa7/xe3/xa2 <CJK> +<U000291C4> /x8e/xa7/xe3/xa3 <CJK> +<U0002958B> /x8e/xa7/xe3/xa4 <CJK> +<U0002958D> /x8e/xa7/xe3/xa5 <CJK> +<U0002958E> /x8e/xa7/xe3/xa6 <CJK> +<U00029AB7> /x8e/xa7/xe3/xa7 <CJK> +<U00029AB9> /x8e/xa7/xe3/xa8 <CJK> +<U00029AEF> /x8e/xa7/xe3/xa9 <CJK> +<U00029BFB> /x8e/xa7/xe3/xaa <CJK> +<U00029BFF> /x8e/xa7/xe3/xab <CJK> +<U00029C67> /x8e/xa7/xe3/xac <CJK> +<U00029C68> /x8e/xa7/xe3/xad <CJK> +<U00029C69> /x8e/xa7/xe3/xae <CJK> +<U00029D3F> /x8e/xa7/xe3/xaf <CJK> +<U00029F3C> /x8e/xa7/xe3/xb0 <CJK> +<U00029F4C> /x8e/xa7/xe3/xb1 <CJK> +<U00029F3D> /x8e/xa7/xe3/xb2 <CJK> +<U00029F3E> /x8e/xa7/xe3/xb3 <CJK> +<U00029F3F> /x8e/xa7/xe3/xb4 <CJK> +<U00029F3B> /x8e/xa7/xe3/xb5 <CJK> +<U0002A1FF> /x8e/xa7/xe3/xb6 <CJK> +<U4D0E> /x8e/xa7/xe3/xb7 <CJK> +<U0002A1F6> /x8e/xa7/xe3/xb8 <CJK> +<U0002A1EE> /x8e/xa7/xe3/xb9 <CJK> +<U0002A1FC> /x8e/xa7/xe3/xba <CJK> +<U0002A1F8> /x8e/xa7/xe3/xbb <CJK> +<U0002A201> /x8e/xa7/xe3/xbc <CJK> +<U0002A1FA> /x8e/xa7/xe3/xbd <CJK> +<U0002A288> /x8e/xa7/xe3/xbe <CJK> +<U0002A380> /x8e/xa7/xe3/xbf <CJK> +<U0002A411> /x8e/xa7/xe3/xc0 <CJK> +<U0002A4FE> /x8e/xa7/xe3/xc1 <CJK> +<U0002A500> /x8e/xa7/xe3/xc2 <CJK> +<U0002A535> /x8e/xa7/xe3/xc3 <CJK> +<U0002503C> /x8e/xa7/xe3/xc4 <CJK> +<U0002A5BD> /x8e/xa7/xe3/xc5 <CJK> +<U0002A5BB> /x8e/xa7/xe3/xc6 <CJK> +<U0002A65C> /x8e/xa7/xe3/xc7 <CJK> +<U0002A65A> /x8e/xa7/xe3/xc8 <CJK> +<U0002A6D1> /x8e/xa7/xe3/xc9 <CJK> +<U0002A6D0> /x8e/xa7/xe3/xca <CJK> +<U00020A0B> /x8e/xa7/xe3/xcb <CJK> +<U00023873> /x8e/xa7/xe3/xcc <CJK> +<U00021939> /x8e/xa7/xe3/xcd <CJK> +<U00021B1A> /x8e/xa7/xe3/xce <CJK> +<U00021FE3> /x8e/xa7/xe3/xcf <CJK> +<U00022187> /x8e/xa7/xe3/xd0 <CJK> +<U00022377> /x8e/xa7/xe3/xd1 <CJK> +<U00022378> /x8e/xa7/xe3/xd2 <CJK> +<U00022EB1> /x8e/xa7/xe3/xd3 <CJK> +<U0002386A> /x8e/xa7/xe3/xd4 <CJK> +<U00023874> /x8e/xa7/xe3/xd5 <CJK> +<U00023AEB> /x8e/xa7/xe3/xd6 <CJK> +<U0002417B> /x8e/xa7/xe3/xd7 <CJK> +<U000245A5> /x8e/xa7/xe3/xd8 <CJK> +<U000248E4> /x8e/xa7/xe3/xd9 <CJK> +<U00024D0B> /x8e/xa7/xe3/xda <CJK> +<U00024D0E> /x8e/xa7/xe3/xdb <CJK> +<U00024D0C> /x8e/xa7/xe3/xdc <CJK> +<U00025739> /x8e/xa7/xe3/xdd <CJK> +<U00025E10> /x8e/xa7/xe3/xde <CJK> +<U00025E11> /x8e/xa7/xe3/xdf <CJK> +<U00025E16> /x8e/xa7/xe3/xe0 <CJK> +<U00025F81> /x8e/xa7/xe3/xe1 <CJK> +<U00025F80> /x8e/xa7/xe3/xe2 <CJK> +<U000261FE> /x8e/xa7/xe3/xe3 <CJK> +<U00026201> /x8e/xa7/xe3/xe4 <CJK> +<U00026200> /x8e/xa7/xe3/xe5 <CJK> +<U00026347> /x8e/xa7/xe3/xe6 <CJK> +<U000263EF> /x8e/xa7/xe3/xe7 <CJK> +<U00027188> /x8e/xa7/xe3/xe8 <CJK> +<U0002758B> /x8e/xa7/xe3/xe9 <CJK> +<U0002758D> /x8e/xa7/xe3/xea <CJK> +<U00027587> /x8e/xa7/xe3/xeb <CJK> +<U00027585> /x8e/xa7/xe3/xec <CJK> +<U0002758F> /x8e/xa7/xe3/xed <CJK> +<U00027584> /x8e/xa7/xe3/xee <CJK> +<U00027588> /x8e/xa7/xe3/xef <CJK> +<U0002758E> /x8e/xa7/xe3/xf0 <CJK> +<U0002758C> /x8e/xa7/xe3/xf1 <CJK> +<U000277D7> /x8e/xa7/xe3/xf2 <CJK> +<U000277D6> /x8e/xa7/xe3/xf3 <CJK> +<U00027B9F> /x8e/xa7/xe3/xf4 <CJK> +<U00022188> /x8e/xa7/xe3/xf5 <CJK> +<U00028203> /x8e/xa7/xe3/xf6 <CJK> +<U000283FE> /x8e/xa7/xe3/xf7 <CJK> +<U000287EF> /x8e/xa7/xe3/xf8 <CJK> +<U00028909> /x8e/xa7/xe3/xf9 <CJK> +<U00028908> /x8e/xa7/xe3/xfa <CJK> +<U00028C20> /x8e/xa7/xe3/xfb <CJK> +<U00028C24> /x8e/xa7/xe3/xfc <CJK> +<U00028C1F> /x8e/xa7/xe3/xfd <CJK> +<U00029070> /x8e/xa7/xe3/xfe <CJK> +<U00029256> /x8e/xa7/xe4/xa1 <CJK> +<U000293F7> /x8e/xa7/xe4/xa2 <CJK> +<U000293F8> /x8e/xa7/xe4/xa3 <CJK> +<U000293F6> /x8e/xa7/xe4/xa4 <CJK> +<U00029590> /x8e/xa7/xe4/xa5 <CJK> +<U0002965E> /x8e/xa7/xe4/xa6 <CJK> +<U000297F7> /x8e/xa7/xe4/xa7 <CJK> +<U000299D6> /x8e/xa7/xe4/xa8 <CJK> +<U000299D5> /x8e/xa7/xe4/xa9 <CJK> +<U00029ABB> /x8e/xa7/xe4/xaa <CJK> +<U00029AF0> /x8e/xa7/xe4/xab <CJK> +<U00029C01> /x8e/xa7/xe4/xac <CJK> +<U00029C6C> /x8e/xa7/xe4/xad <CJK> +<U00029D41> /x8e/xa7/xe4/xae <CJK> +<U00029D42> /x8e/xa7/xe4/xaf <CJK> +<U00029F4F> /x8e/xa7/xe4/xb0 <CJK> +<U00029F53> /x8e/xa7/xe4/xb1 <CJK> +<U00029F58> /x8e/xa7/xe4/xb2 <CJK> +<U0002A212> /x8e/xa7/xe4/xb3 <CJK> +<U0002A204> /x8e/xa7/xe4/xb4 <CJK> +<U0002A213> /x8e/xa7/xe4/xb5 <CJK> +<U0002A205> /x8e/xa7/xe4/xb6 <CJK> +<U0002A20D> /x8e/xa7/xe4/xb7 <CJK> +<U0002A382> /x8e/xa7/xe4/xb8 <CJK> +<U0002A381> /x8e/xa7/xe4/xb9 <CJK> +<U0002A4B5> /x8e/xa7/xe4/xba <CJK> +<U0002A4BA> /x8e/xa7/xe4/xbb <CJK> +<U0002A5BE> /x8e/xa7/xe4/xbc <CJK> +<U0002A665> /x8e/xa7/xe4/xbd <CJK> +<U0002A663> /x8e/xa7/xe4/xbe <CJK> +<U0002A66E> /x8e/xa7/xe4/xbf <CJK> +<U0002A66A> /x8e/xa7/xe4/xc0 <CJK> +<U0002A66C> /x8e/xa7/xe4/xc1 <CJK> +<U0002A6C4> /x8e/xa7/xe4/xc2 <CJK> +<U0002096C> /x8e/xa7/xe4/xc3 <CJK> +<U00027BA5> /x8e/xa7/xe4/xc4 <CJK> +<U00021B12> /x8e/xa7/xe4/xc5 <CJK> +<U0002244D> /x8e/xa7/xe4/xc6 <CJK> +<U0002331F> /x8e/xa7/xe4/xc7 <CJK> +<U00023877> /x8e/xa7/xe4/xc8 <CJK> +<U00023878> /x8e/xa7/xe4/xc9 <CJK> +<U00023C44> /x8e/xa7/xe4/xca <CJK> +<U0002417C> /x8e/xa7/xe4/xcb <CJK> +<U000244EB> /x8e/xa7/xe4/xcc <CJK> +<U000244EA> /x8e/xa7/xe4/xcd <CJK> +<U000244EC> /x8e/xa7/xe4/xce <CJK> +<U000245A7> /x8e/xa7/xe4/xcf <CJK> +<U00024719> /x8e/xa7/xe4/xd0 <CJK> +<U00024F23> /x8e/xa7/xe4/xd1 <CJK> +<U7674> /x8e/xa7/xe4/xd2 <CJK> +<U00025601> /x8e/xa7/xe4/xd3 <CJK> +<U00025E1C> /x8e/xa7/xe4/xd4 <CJK> +<U00026203> /x8e/xa7/xe4/xd5 <CJK> +<U00026348> /x8e/xa7/xe4/xd6 <CJK> +<U000268DA> /x8e/xa7/xe4/xd7 <CJK> +<U00027191> /x8e/xa7/xe4/xd8 <CJK> +<U00027192> /x8e/xa7/xe4/xd9 <CJK> +<U00027596> /x8e/xa7/xe4/xda <CJK> +<U00027597> /x8e/xa7/xe4/xdb <CJK> +<U00027591> /x8e/xa7/xe4/xdc <CJK> +<U00027593> /x8e/xa7/xe4/xdd <CJK> +<U000277D8> /x8e/xa7/xe4/xde <CJK> +<U000277D5> /x8e/xa7/xe4/xdf <CJK> +<U00027957> /x8e/xa7/xe4/xe0 <CJK> +<U00027958> /x8e/xa7/xe4/xe1 <CJK> +<U00027BA2> /x8e/xa7/xe4/xe2 <CJK> +<U00028205> /x8e/xa7/xe4/xe3 <CJK> +<U000283FA> /x8e/xa7/xe4/xe4 <CJK> +<U0002890C> /x8e/xa7/xe4/xe5 <CJK> +<U0002890A> /x8e/xa7/xe4/xe6 <CJK> +<U00028C2E> /x8e/xa7/xe4/xe7 <CJK> +<U00028C29> /x8e/xa7/xe4/xe8 <CJK> +<U00028C2F> /x8e/xa7/xe4/xe9 <CJK> +<U00028CC5> /x8e/xa7/xe4/xea <CJK> +<U00029072> /x8e/xa7/xe4/xeb <CJK> +<U000291C8> /x8e/xa7/xe4/xec <CJK> +<U0002925A> /x8e/xa7/xe4/xed <CJK> +<U00029259> /x8e/xa7/xe4/xee <CJK> +<U00029389> /x8e/xa7/xe4/xef <CJK> +<U00029388> /x8e/xa7/xe4/xf0 <CJK> +<U000299DB> /x8e/xa7/xe4/xf1 <CJK> +<U000299D9> /x8e/xa7/xe4/xf2 <CJK> +<U000299DA> /x8e/xa7/xe4/xf3 <CJK> +<U00029ABC> /x8e/xa7/xe4/xf4 <CJK> +<U4BEC> /x8e/xa7/xe4/xf5 <CJK> +<U00029C06> /x8e/xa7/xe4/xf6 <CJK> +<U00029C05> /x8e/xa7/xe4/xf7 <CJK> +<U00029C6F> /x8e/xa7/xe4/xf8 <CJK> +<U00029C6D> /x8e/xa7/xe4/xf9 <CJK> +<U00029C70> /x8e/xa7/xe4/xfa <CJK> +<U00029F60> /x8e/xa7/xe4/xfb <CJK> +<U00029F5E> /x8e/xa7/xe4/xfc <CJK> +<U00029F63> /x8e/xa7/xe4/xfd <CJK> +<U00029F5A> /x8e/xa7/xe4/xfe <CJK> +<U00029F5F> /x8e/xa7/xe5/xa1 <CJK> +<U0002A219> /x8e/xa7/xe5/xa2 <CJK> +<U0002A21D> /x8e/xa7/xe5/xa3 <CJK> +<U0002A21B> /x8e/xa7/xe5/xa4 <CJK> +<U0002A222> /x8e/xa7/xe5/xa5 <CJK> +<U0002A21C> /x8e/xa7/xe5/xa6 <CJK> +<U0002A21E> /x8e/xa7/xe5/xa7 <CJK> +<U0002A2F7> /x8e/xa7/xe5/xa8 <CJK> +<U0002A384> /x8e/xa7/xe5/xa9 <CJK> +<U0002A415> /x8e/xa7/xe5/xaa <CJK> +<U0002A4B8> /x8e/xa7/xe5/xab <CJK> +<U0002A4C1> /x8e/xa7/xe5/xac <CJK> +<U0002A501> /x8e/xa7/xe5/xad <CJK> +<U0002A50A> /x8e/xa7/xe5/xae <CJK> +<U0002A5D2> /x8e/xa7/xe5/xaf <CJK> +<U0002A675> /x8e/xa7/xe5/xb0 <CJK> +<U0002A674> /x8e/xa7/xe5/xb1 <CJK> +<U0002A672> /x8e/xa7/xe5/xb2 <CJK> +<U00020AD0> /x8e/xa7/xe5/xb3 <CJK> +<U00021B1B> /x8e/xa7/xe5/xb4 <CJK> +<U00022010> /x8e/xa7/xe5/xb5 <CJK> +<U00022379> /x8e/xa7/xe5/xb6 <CJK> +<U000244ED> /x8e/xa7/xe5/xb7 <CJK> +<U00024BB9> /x8e/xa7/xe5/xb8 <CJK> +<U00024F24> /x8e/xa7/xe5/xb9 <CJK> +<U00024FC5> /x8e/xa7/xe5/xba <CJK> +<U00025603> /x8e/xa7/xe5/xbb <CJK> +<U0002634A> /x8e/xa7/xe5/xbc <CJK> +<U000268F7> /x8e/xa7/xe5/xbd <CJK> +<U000269C1> /x8e/xa7/xe5/xbe <CJK> +<U000269C2> /x8e/xa7/xe5/xbf <CJK> +<U00027194> /x8e/xa7/xe5/xc0 <CJK> +<U00027599> /x8e/xa7/xe5/xc1 <CJK> +<U0002759A> /x8e/xa7/xe5/xc2 <CJK> +<U0002795A> /x8e/xa7/xe5/xc3 <CJK> +<U00027BA8> /x8e/xa7/xe5/xc4 <CJK> +<U00027C25> /x8e/xa7/xe5/xc5 <CJK> +<U00027C9E> /x8e/xa7/xe5/xc6 <CJK> +<U00028441> /x8e/xa7/xe5/xc7 <CJK> +<U00028C32> /x8e/xa7/xe5/xc8 <CJK> +<U00028C33> /x8e/xa7/xe5/xc9 <CJK> +<U000291CB> /x8e/xa7/xe5/xca <CJK> +<U000291CA> /x8e/xa7/xe5/xcb <CJK> +<U000291CC> /x8e/xa7/xe5/xcc <CJK> +<U00029593> /x8e/xa7/xe5/xcd <CJK> +<U000299E0> /x8e/xa7/xe5/xce <CJK> +<U00029C71> /x8e/xa7/xe5/xcf <CJK> +<U00029F6B> /x8e/xa7/xe5/xd0 <CJK> +<U0002A22B> /x8e/xa7/xe5/xd1 <CJK> +<U0002A229> /x8e/xa7/xe5/xd2 <CJK> +<U0002A21A> /x8e/xa7/xe5/xd3 <CJK> +<U0002A226> /x8e/xa7/xe5/xd4 <CJK> +<U0002A227> /x8e/xa7/xe5/xd5 <CJK> +<U0002A22A> /x8e/xa7/xe5/xd6 <CJK> +<U0002A2F8> /x8e/xa7/xe5/xd7 <CJK> +<U0002503D> /x8e/xa7/xe5/xd8 <CJK> +<U0002A676> /x8e/xa7/xe5/xd9 <CJK> +<U00021518> /x8e/xa7/xe5/xda <CJK> +<U0002387A> /x8e/xa7/xe5/xdb <CJK> +<U0002417F> /x8e/xa7/xe5/xdc <CJK> +<U4279> /x8e/xa7/xe5/xdd <CJK> +<U000263F0> /x8e/xa7/xe5/xde <CJK> +<U0002719A> /x8e/xa7/xe5/xdf <CJK> +<U00027196> /x8e/xa7/xe5/xe0 <CJK> +<U0002759E> /x8e/xa7/xe5/xe1 <CJK> +<U0002759D> /x8e/xa7/xe5/xe2 <CJK> +<U000275DC> /x8e/xa7/xe5/xe3 <CJK> +<U000277DA> /x8e/xa7/xe5/xe4 <CJK> +<U0002820B> /x8e/xa7/xe5/xe5 <CJK> +<U00028402> /x8e/xa7/xe5/xe6 <CJK> +<U00028442> /x8e/xa7/xe5/xe7 <CJK> +<U00028667> /x8e/xa7/xe5/xe8 <CJK> +<U0002938B> /x8e/xa7/xe5/xe9 <CJK> +<U000299E2> /x8e/xa7/xe5/xea <CJK> +<U00029F71> /x8e/xa7/xe5/xeb <CJK> +<U0002A22F> /x8e/xa7/xe5/xec <CJK> +<U0002A22E> /x8e/xa7/xe5/xed <CJK> +<U0002A4C6> /x8e/xa7/xe5/xee <CJK> +<U0002A58E> /x8e/xa7/xe5/xef <CJK> +<U0002A67B> /x8e/xa7/xe5/xf0 <CJK> +<U0002A677> /x8e/xa7/xe5/xf1 <CJK> +<U0002A678> /x8e/xa7/xe5/xf2 <CJK> +<U0002A67C> /x8e/xa7/xe5/xf3 <CJK> +<U0002387C> /x8e/xa7/xe5/xf4 <CJK> +<U00026207> /x8e/xa7/xe5/xf5 <CJK> +<U00027197> /x8e/xa7/xe5/xf6 <CJK> +<U00027BD9> /x8e/xa7/xe5/xf7 <CJK> +<U0002890D> /x8e/xa7/xe5/xf8 <CJK> +<U0002890E> /x8e/xa7/xe5/xf9 <CJK> +<U000299E3> /x8e/xa7/xe5/xfa <CJK> +<U000299E4> /x8e/xa7/xe5/xfb <CJK> +<U00029AF3> /x8e/xa7/xe5/xfc <CJK> +<U00029C75> /x8e/xa7/xe5/xfd <CJK> +<U0002A237> /x8e/xa7/xe5/xfe <CJK> +<U0002A235> /x8e/xa7/xe6/xa1 <CJK> +<U0002A58F> /x8e/xa7/xe6/xa2 <CJK> +<U0002A680> /x8e/xa7/xe6/xa3 <CJK> +<U0002A67F> /x8e/xa7/xe6/xa4 <CJK> +<U0002A6D4> /x8e/xa7/xe6/xa5 <CJK> +<U00022EB4> /x8e/xa7/xe6/xa6 <CJK> +<U0002A3EC> /x8e/xa7/xe6/xa7 <CJK> +<U00028F75> /x8e/xa7/xe6/xa8 <CJK> +<U00024D10> /x8e/xa7/xe6/xa9 <CJK> +<U00026269> /x8e/xa7/xe6/xaa <CJK> +<U000275A4> /x8e/xa7/xe6/xab <CJK> +<U000277DB> /x8e/xa7/xe6/xac <CJK> +<U000291D1> /x8e/xa7/xe6/xad <CJK> +<U0002938D> /x8e/xa7/xe6/xae <CJK> +<U00029F76> /x8e/xa7/xe6/xaf <CJK> +<U0002A239> /x8e/xa7/xe6/xb0 <CJK> +<U0002A684> /x8e/xa7/xe6/xb1 <CJK> +<U0002A682> /x8e/xa7/xe6/xb2 <CJK> +<U00020AD2> /x8e/xa7/xe6/xb3 <CJK> +<U000244EE> /x8e/xa7/xe6/xb4 <CJK> +<U00024D11> /x8e/xa7/xe6/xb5 <CJK> +<U00025F84> /x8e/xa7/xe6/xb6 <CJK> +<U00028F74> /x8e/xa7/xe6/xb7 <CJK> +<U0002938F> /x8e/xa7/xe6/xb8 <CJK> +<U0002938E> /x8e/xa7/xe6/xb9 <CJK> +<U0002A23B> /x8e/xa7/xe6/xba <CJK> +<U000208CB> /x8e/xa7/xe6/xbb <CJK> +<U0002A688> /x8e/xa7/xe6/xbc <CJK> +<U0002A686> /x8e/xa7/xe6/xbd <CJK> +<U0002335C> /x8e/xa7/xe6/xbe <CJK> +<U000253A4> /x8e/xa7/xe6/xbf <CJK> +<U00029075> /x8e/xa7/xe6/xc0 <CJK> +<U0002A68B> /x8e/xa7/xe6/xc1 <CJK> +<U00021519> /x8e/xa7/xe6/xc2 <CJK> +<U00027C9F> /x8e/xa7/xe6/xc3 <CJK> +<U000299E5> /x8e/xa7/xe6/xc4 <CJK> +<U0002A240> /x8e/xa7/xe6/xc5 <CJK> +<U00024D12> /x8e/xa7/xe6/xc6 <CJK> +<U0002A2FB> /x8e/xa7/xe6/xc7 <CJK> +<U0002A68C> /x8e/xa7/xe6/xc8 <CJK> +<U000253A5> /x8e/xa7/xe6/xc9 <CJK> +<U00029C77> /x8e/xa7/xe6/xca <CJK> +<U00029C78> /x8e/xa7/xe6/xcb <CJK> +<U0002A6D6> /x8e/xa7/xe6/xcc <CJK> +<U000277DF> /x8e/xa7/xe6/xcd <CJK> +<U000291D2> /x8e/xa7/xe6/xce <CJK> +<U0002151A> /x8e/xa7/xe6/xcf <CJK> +<U00027BA9> /x8e/xa7/xe6/xd0 <CJK> +<U000291D3> /x8e/xa7/xe6/xd1 <CJK> +<U0002A4CA> /x8e/xa7/xe6/xd2 <CJK> +<U000269C4> /x8e/xa7/xe6/xd3 <CJK> +<U000278B1> /x8e/xa7/xe6/xd4 <CJK> +<U00029664> /x8e/xa7/xe6/xd5 <CJK> +<U00020002> /x8e/xaf/xa1/xa1 <CJK> +<U0002008C> /x8e/xaf/xa1/xa2 <CJK> +<U000200D4> /x8e/xaf/xa1/xa3 <CJK> +<U000201A5> /x8e/xaf/xa1/xa4 <CJK> +<U00020092> /x8e/xaf/xa1/xa5 <CJK> +<U00020093> /x8e/xaf/xa1/xa6 <CJK> +<U000200D8> /x8e/xaf/xa1/xa7 <CJK> +<U000200D9> /x8e/xaf/xa1/xa8 <CJK> +<U000201A7> /x8e/xaf/xa1/xa9 <CJK> +<U0002062B> /x8e/xaf/xa1/xaa <CJK> +<U0002062C> /x8e/xaf/xa1/xab <CJK> +<U0002062D> /x8e/xaf/xa1/xac <CJK> +<U00020630> /x8e/xaf/xa1/xad <CJK> +<U0002062E> /x8e/xaf/xa1/xae <CJK> +<U000206AB> /x8e/xaf/xa1/xaf <CJK> +<U5301> /x8e/xaf/xa1/xb0 <CJK> +<U0002092D> /x8e/xaf/xa1/xb1 <CJK> +<U0002096D> /x8e/xaf/xa1/xb2 <CJK> +<U00020A0F> /x8e/xaf/xa1/xb4 <CJK> +<U00020B9D> /x8e/xaf/xa1/xb6 <CJK> +<U000211A2> /x8e/xaf/xa1/xb7 <CJK> +<U000215D4> /x8e/xaf/xa1/xb8 <CJK> +<U00021B56> /x8e/xaf/xa1/xb9 <CJK> +<U00021BC3> /x8e/xaf/xa1/xba <CJK> +<U00022014> /x8e/xaf/xa1/xbb <CJK> +<U0002471A> /x8e/xaf/xa1/xbd <CJK> +<U0002000F> /x8e/xaf/xa1/xbe <CJK> +<U00020010> /x8e/xaf/xa1/xbf <CJK> +<U0002009A> /x8e/xaf/xa1/xc0 <CJK> +<U0002009B> /x8e/xaf/xa1/xc1 <CJK> +<U000201AC> /x8e/xaf/xa1/xc3 <CJK> +<U3436> /x8e/xaf/xa1/xc4 <CJK> +<U00020097> /x8e/xaf/xa1/xc5 <CJK> +<U00020546> /x8e/xaf/xa1/xc6 <CJK> +<U00020576> /x8e/xaf/xa1/xc8 <CJK> +<U00020577> /x8e/xaf/xa1/xc9 <CJK> +<U000205AE> /x8e/xaf/xa1/xca <CJK> +<U0002063A> /x8e/xaf/xa1/xcb <CJK> +<U0002067D> /x8e/xaf/xa1/xcc <CJK> +<U00021BC5> /x8e/xaf/xa1/xcd <CJK> +<U00020BA8> /x8e/xaf/xa1/xce <CJK> +<U53FA> /x8e/xaf/xa1/xd0 <CJK> +<U00021241> /x8e/xaf/xa1/xd1 <CJK> +<U00021242> /x8e/xaf/xa1/xd2 <CJK> +<U000215D8> /x8e/xaf/xa1/xd3 <CJK> +<U000215D9> /x8e/xaf/xa1/xd4 <CJK> +<U000216AA> /x8e/xaf/xa1/xd5 <CJK> +<U000216AB> /x8e/xaf/xa1/xd6 <CJK> +<U00021942> /x8e/xaf/xa1/xd7 <CJK> +<U00021941> /x8e/xaf/xa1/xd8 <CJK> +<U9F99> /x8e/xaf/xa1/xd9 <CJK> +<U00021BC6> /x8e/xaf/xa1/xda <CJK> +<U00021D35> /x8e/xaf/xa1/xdc <CJK> +<U00021D36> /x8e/xaf/xa1/xdd <CJK> +<U00021D37> /x8e/xaf/xa1/xde <CJK> +<U0002634D> /x8e/xaf/xa1/xe0 <CJK> +<U000221B5> /x8e/xaf/xa1/xe2 <CJK> +<U00022317> /x8e/xaf/xa1/xe3 <CJK> +<U00022482> /x8e/xaf/xa1/xe4 <CJK> +<U000233B6> /x8e/xaf/xa1/xe5 <CJK> +<U6C49> /x8e/xaf/xa1/xe6 <CJK> +<U00023C72> /x8e/xaf/xa1/xe7 <CJK> +<U0002455C> /x8e/xaf/xa1/xe8 <CJK> +<U000245A8> /x8e/xaf/xa1/xe9 <CJK> +<U8FB7> /x8e/xaf/xa1/xea <CJK> +<U000215E3> /x8e/xaf/xa1/xeb <CJK> +<U3406> /x8e/xaf/xa1/xec <CJK> +<U000200E6> /x8e/xaf/xa1/xee <CJK> +<U00020144> /x8e/xaf/xa1/xef <CJK> +<U00020145> /x8e/xaf/xa1/xf0 <CJK> +<U4F29> /x8e/xaf/xa1/xf1 <CJK> +<U000201C4> /x8e/xaf/xa1/xf3 <CJK> +<U000201C5> /x8e/xaf/xa1/xf4 <CJK> +<U000201C6> /x8e/xaf/xa1/xf5 <CJK> +<U000201C7> /x8e/xaf/xa1/xf6 <CJK> +<U000201C8> /x8e/xaf/xa1/xf7 <CJK> +<U000201C9> /x8e/xaf/xa1/xf8 <CJK> +<U000201CA> /x8e/xaf/xa1/xf9 <CJK> +<U000201D4> /x8e/xaf/xa1/xfa <CJK> +<U0002057D> /x8e/xaf/xa1/xfb <CJK> +<U00026272> /x8e/xaf/xa1/xfc <CJK> +<U000205B2> /x8e/xaf/xa1/xfd <CJK> +<U000205B4> /x8e/xaf/xa1/xfe <CJK> +<U00020682> /x8e/xaf/xa2/xa1 <CJK> +<U000206C7> /x8e/xaf/xa2/xa2 <CJK> +<U000206C8> /x8e/xaf/xa2/xa3 <CJK> +<U0002083C> /x8e/xaf/xa2/xa5 <CJK> +<U0002083D> /x8e/xaf/xa2/xa6 <CJK> +<U0002083E> /x8e/xaf/xa2/xa7 <CJK> +<U0002083F> /x8e/xaf/xa2/xa8 <CJK> +<U000208D3> /x8e/xaf/xa2/xaa <CJK> +<U00020147> /x8e/xaf/xa2/xab <CJK> +<U534E> /x8e/xaf/xa2/xac <CJK> +<U00020A3D> /x8e/xaf/xa2/xad <CJK> +<U00020AE2> /x8e/xaf/xa2/xae <CJK> +<U00020BB8> /x8e/xaf/xa2/xaf <CJK> +<U00020BB9> /x8e/xaf/xa2/xb0 <CJK> +<U00020BC2> /x8e/xaf/xa2/xb1 <CJK> +<U00020BBA> /x8e/xaf/xa2/xb2 <CJK> +<U00020BC6> /x8e/xaf/xa2/xb3 <CJK> +<U00020BBB> /x8e/xaf/xa2/xb4 <CJK> +<U000211AD> /x8e/xaf/xa2/xb5 <CJK> +<U0002124C> /x8e/xaf/xa2/xb6 <CJK> +<U0002124D> /x8e/xaf/xa2/xb7 <CJK> +<U000216B2> /x8e/xaf/xa2/xb9 <CJK> +<U000216B3> /x8e/xaf/xa2/xba <CJK> +<U000216B4> /x8e/xaf/xa2/xbb <CJK> +<U000216B5> /x8e/xaf/xa2/xbc <CJK> +<U000219C3> /x8e/xaf/xa2/xbd <CJK> +<U000219C4> /x8e/xaf/xa2/xbe <CJK> +<U000219C5> /x8e/xaf/xa2/xbf <CJK> +<U000219C6> /x8e/xaf/xa2/xc0 <CJK> +<U000219C7> /x8e/xaf/xa2/xc1 <CJK> +<U00021BCE> /x8e/xaf/xa2/xc3 <CJK> +<U00021C30> /x8e/xaf/xa2/xc4 <CJK> +<U00021D47> /x8e/xaf/xa2/xc5 <CJK> +<U00021D48> /x8e/xaf/xa2/xc6 <CJK> +<U5C81> /x8e/xaf/xa2/xc7 <CJK> +<U0002205C> /x8e/xaf/xa2/xc8 <CJK> +<U0002205F> /x8e/xaf/xa2/xca <CJK> +<U00022318> /x8e/xaf/xa2/xcb <CJK> +<U00022319> /x8e/xaf/xa2/xcc <CJK> +<U0002237E> /x8e/xaf/xa2/xcd <CJK> +<U5F10> /x8e/xaf/xa2/xce <CJK> +<U000225B0> /x8e/xaf/xa2/xcf <CJK> +<U00022A75> /x8e/xaf/xa2/xd0 <CJK> +<U6268> /x8e/xaf/xa2/xd1 <CJK> +<U00022A76> /x8e/xaf/xa2/xd2 <CJK> +<U00023041> /x8e/xaf/xa2/xd3 <CJK> +<U00023142> /x8e/xaf/xa2/xd4 <CJK> +<U000233BD> /x8e/xaf/xa2/xd6 <CJK> +<U6742> /x8e/xaf/xa2/xd7 <CJK> +<U6740> /x8e/xaf/xa2/xd8 <CJK> +<U51EA> /x8e/xaf/xa2/xd9 <CJK> +<U00023B1E> /x8e/xaf/xa2/xda <CJK> +<U00023B1F> /x8e/xaf/xa2/xdb <CJK> +<U00023C87> /x8e/xaf/xa2/xdc <CJK> +<U6C62> /x8e/xaf/xa2/xdd <CJK> +<U00023C78> /x8e/xaf/xa2/xde <CJK> +<U00024188> /x8e/xaf/xa2/xdf <CJK> +<U00024189> /x8e/xaf/xa2/xe0 <CJK> +<U0002418A> /x8e/xaf/xa2/xe1 <CJK> +<U00024617> /x8e/xaf/xa2/xe2 <CJK> +<U00024615> /x8e/xaf/xa2/xe3 <CJK> +<U7391> /x8e/xaf/xa2/xe6 <CJK> +<U000250E5> /x8e/xaf/xa2/xe7 <CJK> +<U00025609> /x8e/xaf/xa2/xe8 <CJK> +<U0002573B> /x8e/xaf/xa2/xe9 <CJK> +<U0002574F> /x8e/xaf/xa2/xea <CJK> +<U0002662E> /x8e/xaf/xa2/xec <CJK> +<U0002662F> /x8e/xaf/xa2/xed <CJK> +<U00026AFF> /x8e/xaf/xa2/xee <CJK> +<U00026AFD> /x8e/xaf/xa2/xef <CJK> +<U00026AFE> /x8e/xaf/xa2/xf0 <CJK> +<U8FBB> /x8e/xaf/xa2/xf1 <CJK> +<U8FBC> /x8e/xaf/xa2/xf2 <CJK> +<U00020023> /x8e/xaf/xa2/xf4 <CJK> +<U000200EA> /x8e/xaf/xa2/xf5 <CJK> +<U0002012A> /x8e/xaf/xa2/xf6 <CJK> +<U00020149> /x8e/xaf/xa2/xf7 <CJK> +<U0002014A> /x8e/xaf/xa2/xf8 <CJK> +<U0002014B> /x8e/xaf/xa2/xf9 <CJK> +<U000201DF> /x8e/xaf/xa2/xfa <CJK> +<U000201E0> /x8e/xaf/xa2/xfb <CJK> +<U000201E1> /x8e/xaf/xa2/xfc <CJK> +<U000201E2> /x8e/xaf/xa2/xfd <CJK> +<U000205C1> /x8e/xaf/xa2/xfe <CJK> +<U000201E3> /x8e/xaf/xa3/xa1 <CJK> +<U000201E4> /x8e/xaf/xa3/xa2 <CJK> +<U000201E5> /x8e/xaf/xa3/xa3 <CJK> +<U000205C0> /x8e/xaf/xa3/xa4 <CJK> +<U000201E6> /x8e/xaf/xa3/xa5 <CJK> +<U000201F7> /x8e/xaf/xa3/xa6 <CJK> +<U000201E7> /x8e/xaf/xa3/xa8 <CJK> +<U000201E8> /x8e/xaf/xa3/xa9 <CJK> +<U000201E9> /x8e/xaf/xa3/xaa <CJK> +<U000201EA> /x8e/xaf/xa3/xab <CJK> +<U000201EB> /x8e/xaf/xa3/xac <CJK> +<U0002050E> /x8e/xaf/xa3/xad <CJK> +<U00020580> /x8e/xaf/xa3/xae <CJK> +<U00020581> /x8e/xaf/xa3/xaf <CJK> +<U000205BA> /x8e/xaf/xa3/xb0 <CJK> +<U000205BB> /x8e/xaf/xa3/xb1 <CJK> +<U000205BC> /x8e/xaf/xa3/xb2 <CJK> +<U000205BD> /x8e/xaf/xa3/xb3 <CJK> +<U0002063F> /x8e/xaf/xa3/xb4 <CJK> +<U00020640> /x8e/xaf/xa3/xb5 <CJK> +<U00020688> /x8e/xaf/xa3/xb6 <CJK> +<U00020846> /x8e/xaf/xa3/xb8 <CJK> +<U00020847> /x8e/xaf/xa3/xba <CJK> +<U00020848> /x8e/xaf/xa3/xbb <CJK> +<U00020936> /x8e/xaf/xa3/xbc <CJK> +<U00020972> /x8e/xaf/xa3/xbd <CJK> +<U00020996> /x8e/xaf/xa3/xbe <CJK> +<U00020A47> /x8e/xaf/xa3/xbf <CJK> +<U00020AE7> /x8e/xaf/xa3/xc0 <CJK> +<U00020B34> /x8e/xaf/xa3/xc1 <CJK> +<U00020B35> /x8e/xaf/xa3/xc2 <CJK> +<U00020B36> /x8e/xaf/xa3/xc3 <CJK> +<U00020B37> /x8e/xaf/xa3/xc4 <CJK> +<U00020BE3> /x8e/xaf/xa3/xc5 <CJK> +<U00020BE4> /x8e/xaf/xa3/xc6 <CJK> +<U00020BE5> /x8e/xaf/xa3/xc7 <CJK> +<U00020BEB> /x8e/xaf/xa3/xc8 <CJK> +<U3575> /x8e/xaf/xa3/xc9 <CJK> +<U00020BE6> /x8e/xaf/xa3/xca <CJK> +<U00020BE7> /x8e/xaf/xa3/xcb <CJK> +<U00020BE8> /x8e/xaf/xa3/xcc <CJK> +<U000211B9> /x8e/xaf/xa3/xcf <CJK> +<U56E8> /x8e/xaf/xa3/xd0 <CJK> +<U000211BA> /x8e/xaf/xa3/xd1 <CJK> +<U575B> /x8e/xaf/xa3/xd2 <CJK> +<U00021263> /x8e/xaf/xa3/xd3 <CJK> +<U00021264> /x8e/xaf/xa3/xd4 <CJK> +<U00021265> /x8e/xaf/xa3/xd6 <CJK> +<U00021266> /x8e/xaf/xa3/xd8 <CJK> +<U0002127C> /x8e/xaf/xa3/xd9 <CJK> +<U00021267> /x8e/xaf/xa3/xda <CJK> +<U00021559> /x8e/xaf/xa3/xdc <CJK> +<U000215E9> /x8e/xaf/xa3/xdd <CJK> +<U000215EA> /x8e/xaf/xa3/xde <CJK> +<U000215EB> /x8e/xaf/xa3/xdf <CJK> +<U000215EC> /x8e/xaf/xa3/xe0 <CJK> +<U000215ED> /x8e/xaf/xa3/xe1 <CJK> +<U000215EE> /x8e/xaf/xa3/xe2 <CJK> +<U000215EF> /x8e/xaf/xa3/xe3 <CJK> +<U000216BF> /x8e/xaf/xa3/xe4 <CJK> +<U000216CB> /x8e/xaf/xa3/xe5 <CJK> +<U000216C3> /x8e/xaf/xa3/xe6 <CJK> +<U000216D5> /x8e/xaf/xa3/xe7 <CJK> +<U000216C4> /x8e/xaf/xa3/xe8 <CJK> +<U000216C5> /x8e/xaf/xa3/xe9 <CJK> +<U000216D3> /x8e/xaf/xa3/xea <CJK> +<U000216C6> /x8e/xaf/xa3/xeb <CJK> +<U000216C7> /x8e/xaf/xa3/xec <CJK> +<U000216C8> /x8e/xaf/xa3/xed <CJK> +<U000216C9> /x8e/xaf/xa3/xee <CJK> +<U000216CA> /x8e/xaf/xa3/xef <CJK> +<U0002194A> /x8e/xaf/xa3/xf0 <CJK> +<U000219D1> /x8e/xaf/xa3/xf2 <CJK> +<U00021B61> /x8e/xaf/xa3/xf3 <CJK> +<U00021C37> /x8e/xaf/xa3/xf4 <CJK> +<U00021D64> /x8e/xaf/xa3/xf6 <CJK> +<U00021D66> /x8e/xaf/xa3/xf7 <CJK> +<U00021D67> /x8e/xaf/xa3/xf9 <CJK> +<U00021D68> /x8e/xaf/xa3/xfa <CJK> +<U00021D69> /x8e/xaf/xa3/xfb <CJK> +<U5C97> /x8e/xaf/xa3/xfc <CJK> +<U00021D73> /x8e/xaf/xa3/xfd <CJK> +<U00021D6A> /x8e/xaf/xa3/xfe <CJK> +<U00021D6B> /x8e/xaf/xa4/xa1 <CJK> +<U6762> /x8e/xaf/xa4/xa2 <CJK> +<U00022072> /x8e/xaf/xa4/xa4 <CJK> +<U383C> /x8e/xaf/xa4/xa5 <CJK> +<U000221B9> /x8e/xaf/xa4/xa6 <CJK> +<U0002231C> /x8e/xaf/xa4/xa7 <CJK> +<U00022336> /x8e/xaf/xa4/xa8 <CJK> +<U000223BC> /x8e/xaf/xa4/xa9 <CJK> +<U000223BE> /x8e/xaf/xa4/xaa <CJK> +<U000223BF> /x8e/xaf/xa4/xab <CJK> +<U000223C0> /x8e/xaf/xa4/xac <CJK> +<U00022487> /x8e/xaf/xa4/xad <CJK> +<U000225DC> /x8e/xaf/xa4/xae <CJK> +<U000225DD> /x8e/xaf/xa4/xaf <CJK> +<U000225F5> /x8e/xaf/xa4/xb0 <CJK> +<U000225DE> /x8e/xaf/xa4/xb1 <CJK> +<U000225DF> /x8e/xaf/xa4/xb2 <CJK> +<U000225E0> /x8e/xaf/xa4/xb4 <CJK> +<U000225E1> /x8e/xaf/xa4/xb5 <CJK> +<U000225E2> /x8e/xaf/xa4/xb6 <CJK> +<U00022A2C> /x8e/xaf/xa4/xb7 <CJK> +<U00022A2D> /x8e/xaf/xa4/xb8 <CJK> +<U62A4> /x8e/xaf/xa4/xb9 <CJK> +<U00022AA9> /x8e/xaf/xa4/xba <CJK> +<U00022A9C> /x8e/xaf/xa4/xbb <CJK> +<U00022A9D> /x8e/xaf/xa4/xbc <CJK> +<U00022A9E> /x8e/xaf/xa4/xbd <CJK> +<U00022A9F> /x8e/xaf/xa4/xbe <CJK> +<U00022AA0> /x8e/xaf/xa4/xbf <CJK> +<U00022AA1> /x8e/xaf/xa4/xc0 <CJK> +<U00022AA2> /x8e/xaf/xa4/xc1 <CJK> +<U00022AA3> /x8e/xaf/xa4/xc3 <CJK> +<U00022AA4> /x8e/xaf/xa4/xc4 <CJK> +<U00022AA7> /x8e/xaf/xa4/xc5 <CJK> +<U00023042> /x8e/xaf/xa4/xc6 <CJK> +<U00023093> /x8e/xaf/xa4/xc7 <CJK> +<U00023151> /x8e/xaf/xa4/xc8 <CJK> +<U00023152> /x8e/xaf/xa4/xca <CJK> +<U00023144> /x8e/xaf/xa4/xcb <CJK> +<U00023153> /x8e/xaf/xa4/xcc <CJK> +<U00023322> /x8e/xaf/xa4/xcd <CJK> +<U000233C6> /x8e/xaf/xa4/xce <CJK> +<U000233C7> /x8e/xaf/xa4/xcf <CJK> +<U000233C9> /x8e/xaf/xa4/xd0 <CJK> +<U000233CA> /x8e/xaf/xa4/xd2 <CJK> +<U6766> /x8e/xaf/xa4/xd3 <CJK> +<U000233C8> /x8e/xaf/xa4/xd4 <CJK> +<U00023B24> /x8e/xaf/xa4/xd5 <CJK> +<U00023B25> /x8e/xaf/xa4/xd6 <CJK> +<U00023B26> /x8e/xaf/xa4/xd7 <CJK> +<U00023B27> /x8e/xaf/xa4/xd9 <CJK> +<U00023B28> /x8e/xaf/xa4/xda <CJK> +<U00023C58> /x8e/xaf/xa4/xdc <CJK> +<U00023CA7> /x8e/xaf/xa4/xde <CJK> +<U00023C88> /x8e/xaf/xa4/xdf <CJK> +<U00023C89> /x8e/xaf/xa4/xe0 <CJK> +<U00023CA5> /x8e/xaf/xa4/xe1 <CJK> +<U00023CA8> /x8e/xaf/xa4/xe2 <CJK> +<U00023CA9> /x8e/xaf/xa4/xe3 <CJK> +<U00023CAA> /x8e/xaf/xa4/xe4 <CJK> +<U00023CAB> /x8e/xaf/xa4/xe5 <CJK> +<U00023CAC> /x8e/xaf/xa4/xe6 <CJK> +<U00023CAD> /x8e/xaf/xa4/xe7 <CJK> +<U6CA3> /x8e/xaf/xa4/xe8 <CJK> +<U00023C79> /x8e/xaf/xa4/xe9 <CJK> +<U00024194> /x8e/xaf/xa4/xeb <CJK> +<U00024195> /x8e/xaf/xa4/xec <CJK> +<U00024196> /x8e/xaf/xa4/xed <CJK> +<U00024197> /x8e/xaf/xa4/xf0 <CJK> +<U707F> /x8e/xaf/xa4/xf1 <CJK> +<U00024198> /x8e/xaf/xa4/xf2 <CJK> +<U0002454E> /x8e/xaf/xa4/xf3 <CJK> +<U0002454F> /x8e/xaf/xa4/xf4 <CJK> +<U00024619> /x8e/xaf/xa4/xf5 <CJK> +<U00024741> /x8e/xaf/xa4/xf7 <CJK> +<U000248F7> /x8e/xaf/xa4/xf9 <CJK> +<U00024C04> /x8e/xaf/xa4/xfa <CJK> +<U00024C19> /x8e/xaf/xa4/xfb <CJK> +<U00024C17> /x8e/xaf/xa4/xfc <CJK> +<U00025040> /x8e/xaf/xa4/xfd <CJK> +<U000250EC> /x8e/xaf/xa4/xfe <CJK> +<U0002541B> /x8e/xaf/xa5/xa1 <CJK> +<U0002541C> /x8e/xaf/xa5/xa2 <CJK> +<U77F6> /x8e/xaf/xa5/xa3 <CJK> +<U0002560E> /x8e/xaf/xa5/xa4 <CJK> +<U00025752> /x8e/xaf/xa5/xa5 <CJK> +<U00025AD8> /x8e/xaf/xa5/xa6 <CJK> +<U00025E26> /x8e/xaf/xa5/xa7 <CJK> +<U00026274> /x8e/xaf/xa5/xa8 <CJK> +<U00026275> /x8e/xaf/xa5/xaa <CJK> +<U000269C6> /x8e/xaf/xa5/xab <CJK> +<U00026B0B> /x8e/xaf/xa5/xac <CJK> +<U00026B0C> /x8e/xaf/xa5/xad <CJK> +<U00026B0D> /x8e/xaf/xa5/xae <CJK> +<U00026B0E> /x8e/xaf/xa5/xaf <CJK> +<U00026B0F> /x8e/xaf/xa5/xb0 <CJK> +<U00026B10> /x8e/xaf/xa5/xb1 <CJK> +<U8FC8> /x8e/xaf/xa5/xb2 <CJK> +<U00028459> /x8e/xaf/xa5/xb3 <CJK> +<U0002845A> /x8e/xaf/xa5/xb4 <CJK> +<U00028683> /x8e/xaf/xa5/xb5 <CJK> +<U00028684> /x8e/xaf/xa5/xb6 <CJK> +<U00028685> /x8e/xaf/xa5/xb7 <CJK> +<U00028E20> /x8e/xaf/xa5/xba <CJK> +<U00028E21> /x8e/xaf/xa5/xbb <CJK> +<U00028E22> /x8e/xaf/xa5/xbc <CJK> +<U00028E23> /x8e/xaf/xa5/xbd <CJK> +<U00028E24> /x8e/xaf/xa5/xbe <CJK> +<U00028E29> /x8e/xaf/xa5/xbf <CJK> +<U000200F4> /x8e/xaf/xa5/xc0 <CJK> +<U0002158F> /x8e/xaf/xa5/xc2 <CJK> +<U00020151> /x8e/xaf/xa5/xc3 <CJK> +<U4FAB> /x8e/xaf/xa5/xc4 <CJK> +<U00020217> /x8e/xaf/xa5/xc5 <CJK> +<U00020218> /x8e/xaf/xa5/xc6 <CJK> +<U0002025B> /x8e/xaf/xa5/xc7 <CJK> +<U00020219> /x8e/xaf/xa5/xc8 <CJK> +<U0002021A> /x8e/xaf/xa5/xc9 <CJK> +<U3453> /x8e/xaf/xa5/xca <CJK> +<U0002021B> /x8e/xaf/xa5/xcb <CJK> +<U0002021C> /x8e/xaf/xa5/xcc <CJK> +<U0002021D> /x8e/xaf/xa5/xcd <CJK> +<U0002021E> /x8e/xaf/xa5/xce <CJK> +<U0002021F> /x8e/xaf/xa5/xcf <CJK> +<U00020220> /x8e/xaf/xa5/xd0 <CJK> +<U00020221> /x8e/xaf/xa5/xd1 <CJK> +<U0002048B> /x8e/xaf/xa5/xd2 <CJK> +<U00020488> /x8e/xaf/xa5/xd3 <CJK> +<U5C2D> /x8e/xaf/xa5/xd4 <CJK> +<U00020585> /x8e/xaf/xa5/xd5 <CJK> +<U00026287> /x8e/xaf/xa5/xd6 <CJK> +<U000205C7> /x8e/xaf/xa5/xd7 <CJK> +<U0002064C> /x8e/xaf/xa5/xd8 <CJK> +<U0002064D> /x8e/xaf/xa5/xd9 <CJK> +<U000206FC> /x8e/xaf/xa5/xda <CJK> +<U000206FD> /x8e/xaf/xa5/xdb <CJK> +<U000206FE> /x8e/xaf/xa5/xdc <CJK> +<U000206FF> /x8e/xaf/xa5/xdd <CJK> +<U00020856> /x8e/xaf/xa5/xe0 <CJK> +<U00020857> /x8e/xaf/xa5/xe1 <CJK> +<U00020858> /x8e/xaf/xa5/xe2 <CJK> +<U00020859> /x8e/xaf/xa5/xe3 <CJK> +<U000208DC> /x8e/xaf/xa5/xe4 <CJK> +<U000208DD> /x8e/xaf/xa5/xe5 <CJK> +<U00020973> /x8e/xaf/xa5/xe6 <CJK> +<U0002099D> /x8e/xaf/xa5/xe7 <CJK> +<U000209A1> /x8e/xaf/xa5/xe8 <CJK> +<U0002099E> /x8e/xaf/xa5/xe9 <CJK> +<U0002099F> /x8e/xaf/xa5/xea <CJK> +<U000209A0> /x8e/xaf/xa5/xeb <CJK> +<U000209E6> /x8e/xaf/xa5/xec <CJK> +<U00020A51> /x8e/xaf/xa5/xed <CJK> +<U00020A52> /x8e/xaf/xa5/xee <CJK> +<U00020B3D> /x8e/xaf/xa5/xef <CJK> +<U00020C22> /x8e/xaf/xa5/xf0 <CJK> +<U549C> /x8e/xaf/xa5/xf1 <CJK> +<U00020C23> /x8e/xaf/xa5/xf2 <CJK> +<U00020C24> /x8e/xaf/xa5/xf3 <CJK> +<U00020C25> /x8e/xaf/xa5/xf4 <CJK> +<U00020C26> /x8e/xaf/xa5/xf5 <CJK> +<U00020C27> /x8e/xaf/xa5/xf6 <CJK> +<U00020C28> /x8e/xaf/xa5/xf7 <CJK> +<U00020C29> /x8e/xaf/xa5/xf8 <CJK> +<U00020C2A> /x8e/xaf/xa5/xf9 <CJK> +<U00020C2B> /x8e/xaf/xa5/xfa <CJK> +<U00020C40> /x8e/xaf/xa5/xfc <CJK> +<U00020C2C> /x8e/xaf/xa5/xfd <CJK> +<U00020C2D> /x8e/xaf/xa5/xfe <CJK> +<U00020C2E> /x8e/xaf/xa6/xa1 <CJK> +<U00020C2F> /x8e/xaf/xa6/xa2 <CJK> +<U00020C30> /x8e/xaf/xa6/xa3 <CJK> +<U000211D0> /x8e/xaf/xa6/xa4 <CJK> +<U000212A8> /x8e/xaf/xa6/xa5 <CJK> +<U00021294> /x8e/xaf/xa6/xa6 <CJK> +<U00021295> /x8e/xaf/xa6/xa7 <CJK> +<U00021296> /x8e/xaf/xa6/xa8 <CJK> +<U00021297> /x8e/xaf/xa6/xa9 <CJK> +<U00021298> /x8e/xaf/xa6/xaa <CJK> +<U0002129C> /x8e/xaf/xa6/xab <CJK> +<U0002129B> /x8e/xaf/xa6/xac <CJK> +<U000212A1> /x8e/xaf/xa6/xae <CJK> +<U000212A0> /x8e/xaf/xa6/xaf <CJK> +<U00021299> /x8e/xaf/xa6/xb0 <CJK> +<U0002129A> /x8e/xaf/xa6/xb1 <CJK> +<U000212A7> /x8e/xaf/xa6/xb2 <CJK> +<U5788> /x8e/xaf/xa6/xb3 <CJK> +<U00021564> /x8e/xaf/xa6/xb4 <CJK> +<U00021600> /x8e/xaf/xa6/xb6 <CJK> +<U00021601> /x8e/xaf/xa6/xb7 <CJK> +<U000216E5> /x8e/xaf/xa6/xba <CJK> +<U000216E9> /x8e/xaf/xa6/xbb <CJK> +<U000216FB> /x8e/xaf/xa6/xbc <CJK> +<U000216FC> /x8e/xaf/xa6/xbd <CJK> +<U000216EA> /x8e/xaf/xa6/xbe <CJK> +<U000216EB> /x8e/xaf/xa6/xbf <CJK> +<U000216EC> /x8e/xaf/xa6/xc0 <CJK> +<U000216ED> /x8e/xaf/xa6/xc1 <CJK> +<U000216EE> /x8e/xaf/xa6/xc2 <CJK> +<U000216EF> /x8e/xaf/xa6/xc3 <CJK> +<U000216FA> /x8e/xaf/xa6/xc4 <CJK> +<U000216F0> /x8e/xaf/xa6/xc5 <CJK> +<U000216F1> /x8e/xaf/xa6/xc6 <CJK> +<U000216F2> /x8e/xaf/xa6/xc7 <CJK> +<U000216F3> /x8e/xaf/xa6/xc8 <CJK> +<U000216F4> /x8e/xaf/xa6/xc9 <CJK> +<U00021952> /x8e/xaf/xa6/xca <CJK> +<U00021953> /x8e/xaf/xa6/xcb <CJK> +<U00021954> /x8e/xaf/xa6/xcc <CJK> +<U00021955> /x8e/xaf/xa6/xcd <CJK> +<U00021958> /x8e/xaf/xa6/xce <CJK> +<U00021956> /x8e/xaf/xa6/xcf <CJK> +<U000219DD> /x8e/xaf/xa6/xd1 <CJK> +<U000219DE> /x8e/xaf/xa6/xd2 <CJK> +<U000219E3> /x8e/xaf/xa6/xd3 <CJK> +<U000219DF> /x8e/xaf/xa6/xd4 <CJK> +<U000219E0> /x8e/xaf/xa6/xd5 <CJK> +<U00021B22> /x8e/xaf/xa6/xd6 <CJK> +<U00021B23> /x8e/xaf/xa6/xd7 <CJK> +<U00021B68> /x8e/xaf/xa6/xd8 <CJK> +<U00021BDF> /x8e/xaf/xa6/xd9 <CJK> +<U34AC> /x8e/xaf/xa6/xda <CJK> +<U00021C44> /x8e/xaf/xa6/xdb <CJK> +<U00021D94> /x8e/xaf/xa6/xdc <CJK> +<U00021D95> /x8e/xaf/xa6/xdd <CJK> +<U00021D96> /x8e/xaf/xa6/xde <CJK> +<U00021D97> /x8e/xaf/xa6/xdf <CJK> +<U00021D98> /x8e/xaf/xa6/xe0 <CJK> +<U00021D99> /x8e/xaf/xa6/xe1 <CJK> +<U00021D9A> /x8e/xaf/xa6/xe3 <CJK> +<U00021D9B> /x8e/xaf/xa6/xe4 <CJK> +<U00021D9D> /x8e/xaf/xa6/xe5 <CJK> +<U00021D9E> /x8e/xaf/xa6/xe6 <CJK> +<U00021D9F> /x8e/xaf/xa6/xe7 <CJK> +<U00021DA0> /x8e/xaf/xa6/xe8 <CJK> +<U00021FF3> /x8e/xaf/xa6/xe9 <CJK> +<U00021FF2> /x8e/xaf/xa6/xea <CJK> +<U0002201F> /x8e/xaf/xa6/xeb <CJK> +<U00022088> /x8e/xaf/xa6/xec <CJK> +<U0002218F> /x8e/xaf/xa6/xed <CJK> +<U00022190> /x8e/xaf/xa6/xee <CJK> +<U000221FD> /x8e/xaf/xa6/xf0 <CJK> +<U000221FE> /x8e/xaf/xa6/xf1 <CJK> +<U000221FF> /x8e/xaf/xa6/xf2 <CJK> +<U00022200> /x8e/xaf/xa6/xf3 <CJK> +<U00022201> /x8e/xaf/xa6/xf4 <CJK> +<U0002261A> /x8e/xaf/xa6/xf5 <CJK> +<U000225E3> /x8e/xaf/xa6/xf7 <CJK> +<U000225E4> /x8e/xaf/xa6/xf8 <CJK> +<U000225E5> /x8e/xaf/xa6/xf9 <CJK> +<U000225E6> /x8e/xaf/xa6/xfa <CJK> +<U000225E7> /x8e/xaf/xa6/xfb <CJK> +<U000225EB> /x8e/xaf/xa6/xfc <CJK> +<U000225E8> /x8e/xaf/xa6/xfd <CJK> +<U000225E9> /x8e/xaf/xa6/xfe <CJK> +<U000225EA> /x8e/xaf/xa7/xa1 <CJK> +<U0002261D> /x8e/xaf/xa7/xa2 <CJK> +<U000229A4> /x8e/xaf/xa7/xa3 <CJK> +<U000229A3> /x8e/xaf/xa7/xa4 <CJK> +<U00022AD4> /x8e/xaf/xa7/xa5 <CJK> +<U00022AC6> /x8e/xaf/xa7/xa6 <CJK> +<U00022AC7> /x8e/xaf/xa7/xa7 <CJK> +<U00022AC8> /x8e/xaf/xa7/xa8 <CJK> +<U00022AC9> /x8e/xaf/xa7/xa9 <CJK> +<U00022ACA> /x8e/xaf/xa7/xaa <CJK> +<U00022ACB> /x8e/xaf/xa7/xab <CJK> +<U00022ACC> /x8e/xaf/xa7/xac <CJK> +<U00022ACD> /x8e/xaf/xa7/xad <CJK> +<U00022ACE> /x8e/xaf/xa7/xaf <CJK> +<U62C3> /x8e/xaf/xa7/xb0 <CJK> +<U00022EB8> /x8e/xaf/xa7/xb1 <CJK> +<U00022EB9> /x8e/xaf/xa7/xb2 <CJK> +<U00022EBA> /x8e/xaf/xa7/xb3 <CJK> +<U0002306E> /x8e/xaf/xa7/xb4 <CJK> +<U000230DB> /x8e/xaf/xa7/xb5 <CJK> +<U000230DC> /x8e/xaf/xa7/xb6 <CJK> +<U00023168> /x8e/xaf/xa7/xb7 <CJK> +<U00023169> /x8e/xaf/xa7/xb8 <CJK> +<U0002316A> /x8e/xaf/xa7/xb9 <CJK> +<U0002316B> /x8e/xaf/xa7/xba <CJK> +<U0002316C> /x8e/xaf/xa7/xbb <CJK> +<U0002316D> /x8e/xaf/xa7/xbc <CJK> +<U0002316E> /x8e/xaf/xa7/xbd <CJK> +<U6619> /x8e/xaf/xa7/xbe <CJK> +<U00023324> /x8e/xaf/xa7/xbf <CJK> +<U00023325> /x8e/xaf/xa7/xc0 <CJK> +<U00023400> /x8e/xaf/xa7/xc2 <CJK> +<U000233E5> /x8e/xaf/xa7/xc3 <CJK> +<U000233F9> /x8e/xaf/xa7/xc4 <CJK> +<U000233E7> /x8e/xaf/xa7/xc5 <CJK> +<U000233E8> /x8e/xaf/xa7/xc6 <CJK> +<U000233E9> /x8e/xaf/xa7/xc7 <CJK> +<U000233FE> /x8e/xaf/xa7/xc8 <CJK> +<U000233EA> /x8e/xaf/xa7/xc9 <CJK> +<U000233EB> /x8e/xaf/xa7/xca <CJK> +<U000233EC> /x8e/xaf/xa7/xcb <CJK> +<U3B49> /x8e/xaf/xa7/xcc <CJK> +<U000233ED> /x8e/xaf/xa7/xcd <CJK> +<U67A1> /x8e/xaf/xa7/xce <CJK> +<U000233EE> /x8e/xaf/xa7/xcf <CJK> +<U67A6> /x8e/xaf/xa7/xd0 <CJK> +<U000233EF> /x8e/xaf/xa7/xd1 <CJK> +<U00023417> /x8e/xaf/xa7/xd3 <CJK> +<U000233F0> /x8e/xaf/xa7/xd4 <CJK> +<U000233F1> /x8e/xaf/xa7/xd5 <CJK> +<U00023894> /x8e/xaf/xa7/xd6 <CJK> +<U0002395B> /x8e/xaf/xa7/xd7 <CJK> +<U0002395C> /x8e/xaf/xa7/xd8 <CJK> +<U0002395D> /x8e/xaf/xa7/xd9 <CJK> +<U00023B2F> /x8e/xaf/xa7/xda <CJK> +<U3C91> /x8e/xaf/xa7/xdb <CJK> +<U00023B30> /x8e/xaf/xa7/xdc <CJK> +<U00023B31> /x8e/xaf/xa7/xdd <CJK> +<U00023B32> /x8e/xaf/xa7/xde <CJK> +<U00023B33> /x8e/xaf/xa7/xdf <CJK> +<U00023CCC> /x8e/xaf/xa7/xe0 <CJK> +<U00023CCD> /x8e/xaf/xa7/xe1 <CJK> +<U00023CCE> /x8e/xaf/xa7/xe2 <CJK> +<U00023CAE> /x8e/xaf/xa7/xe3 <CJK> +<U00023CAF> /x8e/xaf/xa7/xe4 <CJK> +<U00023CB0> /x8e/xaf/xa7/xe5 <CJK> +<U3CD3> /x8e/xaf/xa7/xe6 <CJK> +<U00023CCF> /x8e/xaf/xa7/xe7 <CJK> +<U00023CD0> /x8e/xaf/xa7/xe8 <CJK> +<U00023CD1> /x8e/xaf/xa7/xe9 <CJK> +<U00023CD2> /x8e/xaf/xa7/xea <CJK> +<U00023CD3> /x8e/xaf/xa7/xeb <CJK> +<U00023CD4> /x8e/xaf/xa7/xed <CJK> +<U000241A6> /x8e/xaf/xa7/xef <CJK> +<U000241A7> /x8e/xaf/xa7/xf0 <CJK> +<U000241A8> /x8e/xaf/xa7/xf1 <CJK> +<U000241B0> /x8e/xaf/xa7/xf2 <CJK> +<U000241A9> /x8e/xaf/xa7/xf3 <CJK> +<U000241AA> /x8e/xaf/xa7/xf4 <CJK> +<U000241AB> /x8e/xaf/xa7/xf5 <CJK> +<U000241AC> /x8e/xaf/xa7/xf6 <CJK> +<U000241AD> /x8e/xaf/xa7/xf7 <CJK> +<U000244FB> /x8e/xaf/xa7/xf8 <CJK> +<U000244FC> /x8e/xaf/xa7/xf9 <CJK> +<U0002462D> /x8e/xaf/xa7/xfb <CJK> +<U0002462E> /x8e/xaf/xa7/xfc <CJK> +<U00024650> /x8e/xaf/xa7/xfd <CJK> +<U0002462F> /x8e/xaf/xa7/xfe <CJK> +<U00024630> /x8e/xaf/xa8/xa1 <CJK> +<U00024765> /x8e/xaf/xa8/xa2 <CJK> +<U000248E6> /x8e/xaf/xa8/xa3 <CJK> +<U0002490C> /x8e/xaf/xa8/xa4 <CJK> +<U00024902> /x8e/xaf/xa8/xa5 <CJK> +<U00024903> /x8e/xaf/xa8/xa6 <CJK> +<U00024904> /x8e/xaf/xa8/xa7 <CJK> +<U00024905> /x8e/xaf/xa8/xa8 <CJK> +<U00024906> /x8e/xaf/xa8/xa9 <CJK> +<U00024BC0> /x8e/xaf/xa8/xab <CJK> +<U00024C24> /x8e/xaf/xa8/xac <CJK> +<U00024C25> /x8e/xaf/xa8/xad <CJK> +<U00024D16> /x8e/xaf/xa8/xae <CJK> +<U00024D32> /x8e/xaf/xa8/xaf <CJK> +<U00025420> /x8e/xaf/xa8/xb0 <CJK> +<U00025421> /x8e/xaf/xa8/xb1 <CJK> +<U00025422> /x8e/xaf/xa8/xb2 <CJK> +<U00025423> /x8e/xaf/xa8/xb3 <CJK> +<U77FE> /x8e/xaf/xa8/xb4 <CJK> +<U00025425> /x8e/xaf/xa8/xb5 <CJK> +<U00025619> /x8e/xaf/xa8/xb6 <CJK> +<U00025624> /x8e/xaf/xa8/xb7 <CJK> +<U0002561A> /x8e/xaf/xa8/xb8 <CJK> +<U0002561B> /x8e/xaf/xa8/xb9 <CJK> +<U0002561C> /x8e/xaf/xa8/xba <CJK> +<U0002561D> /x8e/xaf/xa8/xbb <CJK> +<U0002561E> /x8e/xaf/xa8/xbd <CJK> +<U0002575A> /x8e/xaf/xa8/xbe <CJK> +<U0002575B> /x8e/xaf/xa8/xbf <CJK> +<U0002575C> /x8e/xaf/xa8/xc0 <CJK> +<U0002575D> /x8e/xaf/xa8/xc1 <CJK> +<U0002575E> /x8e/xaf/xa8/xc2 <CJK> +<U00025931> /x8e/xaf/xa8/xc3 <CJK> +<U00025E29> /x8e/xaf/xa8/xc5 <CJK> +<U00025F88> /x8e/xaf/xa8/xc7 <CJK> +<U00025F89> /x8e/xaf/xa8/xc8 <CJK> +<U00026289> /x8e/xaf/xa8/xc9 <CJK> +<U7F57> /x8e/xaf/xa8/xca <CJK> +<U00026356> /x8e/xaf/xa8/xcb <CJK> +<U000264D1> /x8e/xaf/xa8/xcc <CJK> +<U000264E6> /x8e/xaf/xa8/xcd <CJK> +<U00026532> /x8e/xaf/xa8/xce <CJK> +<U00026533> /x8e/xaf/xa8/xcf <CJK> +<U00026652> /x8e/xaf/xa8/xd0 <CJK> +<U00026653> /x8e/xaf/xa8/xd1 <CJK> +<U43D5> /x8e/xaf/xa8/xd2 <CJK> +<U00026654> /x8e/xaf/xa8/xd3 <CJK> +<U00026655> /x8e/xaf/xa8/xd4 <CJK> +<U00026B29> /x8e/xaf/xa8/xd7 <CJK> +<U00026B2A> /x8e/xaf/xa8/xd8 <CJK> +<U00026B2B> /x8e/xaf/xa8/xd9 <CJK> +<U00026B2C> /x8e/xaf/xa8/xda <CJK> +<U00026B2D> /x8e/xaf/xa8/xdb <CJK> +<U00026B2E> /x8e/xaf/xa8/xdd <CJK> +<U00026B2F> /x8e/xaf/xa8/xde <CJK> +<U00026B30> /x8e/xaf/xa8/xdf <CJK> +<U00026B31> /x8e/xaf/xa8/xe0 <CJK> +<U00026B32> /x8e/xaf/xa8/xe1 <CJK> +<U00026B33> /x8e/xaf/xa8/xe2 <CJK> +<U82C5> /x8e/xaf/xa8/xe3 <CJK> +<U00026B34> /x8e/xaf/xa8/xe4 <CJK> +<U0002719B> /x8e/xaf/xa8/xe5 <CJK> +<U00027223> /x8e/xaf/xa8/xe6 <CJK> +<U00027224> /x8e/xaf/xa8/xe7 <CJK> +<U00027225> /x8e/xaf/xa8/xe9 <CJK> +<U00027227> /x8e/xaf/xa8/xea <CJK> +<U00027616> /x8e/xaf/xa8/xeb <CJK> +<U00027CA0> /x8e/xaf/xa8/xec <CJK> +<U0002846F> /x8e/xaf/xa8/xed <CJK> +<U8FDF> /x8e/xaf/xa8/xee <CJK> +<U00028470> /x8e/xaf/xa8/xef <CJK> +<U00028471> /x8e/xaf/xa8/xf0 <CJK> +<U8FDC> /x8e/xaf/xa8/xf1 <CJK> +<U488C> /x8e/xaf/xa8/xf2 <CJK> +<U00028472> /x8e/xaf/xa8/xf3 <CJK> +<U00028473> /x8e/xaf/xa8/xf4 <CJK> +<U00028474> /x8e/xaf/xa8/xf5 <CJK> +<U0002869C> /x8e/xaf/xa8/xf6 <CJK> +<U000286AA> /x8e/xaf/xa8/xf7 <CJK> +<U0002869D> /x8e/xaf/xa8/xf8 <CJK> +<U0002869E> /x8e/xaf/xa8/xf9 <CJK> +<U000286AB> /x8e/xaf/xa8/xfb <CJK> +<U0002869F> /x8e/xaf/xa8/xfc <CJK> +<U00028E35> /x8e/xaf/xa8/xfd <CJK> +<U00028E38> /x8e/xaf/xa8/xfe <CJK> +<U0002A38D> /x8e/xaf/xa9/xa1 <CJK> +<U00020035> /x8e/xaf/xa9/xa2 <CJK> +<U00020036> /x8e/xaf/xa9/xa3 <CJK> +<U00025AEE> /x8e/xaf/xa9/xa4 <CJK> +<U000200B4> /x8e/xaf/xa9/xa5 <CJK> +<U0002A6C9> /x8e/xaf/xa9/xa6 <CJK> +<U00020132> /x8e/xaf/xa9/xa7 <CJK> +<U00020155> /x8e/xaf/xa9/xa8 <CJK> +<U00020244> /x8e/xaf/xa9/xa9 <CJK> +<U00020245> /x8e/xaf/xa9/xaa <CJK> +<U00020246> /x8e/xaf/xa9/xab <CJK> +<U00020247> /x8e/xaf/xa9/xac <CJK> +<U4FE4> /x8e/xaf/xa9/xad <CJK> +<U00020248> /x8e/xaf/xa9/xae <CJK> +<U00020249> /x8e/xaf/xa9/xaf <CJK> +<U0002024A> /x8e/xaf/xa9/xb1 <CJK> +<U0002024B> /x8e/xaf/xa9/xb2 <CJK> +<U0002024C> /x8e/xaf/xa9/xb3 <CJK> +<U0002024D> /x8e/xaf/xa9/xb4 <CJK> +<U0002024E> /x8e/xaf/xa9/xb5 <CJK> +<U0002024F> /x8e/xaf/xa9/xb6 <CJK> +<U00020250> /x8e/xaf/xa9/xb7 <CJK> +<U00020251> /x8e/xaf/xa9/xb8 <CJK> +<U00026299> /x8e/xaf/xa9/xb9 <CJK> +<U000205D1> /x8e/xaf/xa9/xba <CJK> +<U000205D2> /x8e/xaf/xa9/xbc <CJK> +<U000205D3> /x8e/xaf/xa9/xbd <CJK> +<U000205D4> /x8e/xaf/xa9/xbe <CJK> +<U000205D5> /x8e/xaf/xa9/xbf <CJK> +<U00020721> /x8e/xaf/xa9/xc0 <CJK> +<U00020722> /x8e/xaf/xa9/xc1 <CJK> +<U00020723> /x8e/xaf/xa9/xc2 <CJK> +<U00020868> /x8e/xaf/xa9/xc3 <CJK> +<U00020869> /x8e/xaf/xa9/xc4 <CJK> +<U0002086A> /x8e/xaf/xa9/xc5 <CJK> +<U000208E2> /x8e/xaf/xa9/xc6 <CJK> +<U00020945> /x8e/xaf/xa9/xc7 <CJK> +<U000209EC> /x8e/xaf/xa9/xc8 <CJK> +<U000209ED> /x8e/xaf/xa9/xc9 <CJK> +<U000209EE> /x8e/xaf/xa9/xca <CJK> +<U000209EF> /x8e/xaf/xa9/xcb <CJK> +<U00020A62> /x8e/xaf/xa9/xcd <CJK> +<U00020A63> /x8e/xaf/xa9/xce <CJK> +<U00020AF4> /x8e/xaf/xa9/xcf <CJK> +<U0002006F> /x8e/xaf/xa9/xd0 <CJK> +<U00020B44> /x8e/xaf/xa9/xd1 <CJK> +<U00020B45> /x8e/xaf/xa9/xd2 <CJK> +<U00020C79> /x8e/xaf/xa9/xd3 <CJK> +<U551B> /x8e/xaf/xa9/xd4 <CJK> +<U00020C7A> /x8e/xaf/xa9/xd5 <CJK> +<U00020C7B> /x8e/xaf/xa9/xd6 <CJK> +<U00020C7C> /x8e/xaf/xa9/xd7 <CJK> +<U00020C7D> /x8e/xaf/xa9/xd8 <CJK> +<U00020C7E> /x8e/xaf/xa9/xd9 <CJK> +<U00020C7F> /x8e/xaf/xa9/xda <CJK> +<U00020C80> /x8e/xaf/xa9/xdb <CJK> +<U3588> /x8e/xaf/xa9/xdc <CJK> +<U00020C81> /x8e/xaf/xa9/xde <CJK> +<U00020C82> /x8e/xaf/xa9/xdf <CJK> +<U00020C83> /x8e/xaf/xa9/xe0 <CJK> +<U00020C84> /x8e/xaf/xa9/xe1 <CJK> +<U00020C85> /x8e/xaf/xa9/xe2 <CJK> +<U00020C86> /x8e/xaf/xa9/xe3 <CJK> +<U00020C87> /x8e/xaf/xa9/xe4 <CJK> +<U00020C8F> /x8e/xaf/xa9/xe5 <CJK> +<U00020C88> /x8e/xaf/xa9/xe6 <CJK> +<U00020C89> /x8e/xaf/xa9/xe7 <CJK> +<U000212C5> /x8e/xaf/xa9/xe8 <CJK> +<U000212C6> /x8e/xaf/xa9/xe9 <CJK> +<U57AA> /x8e/xaf/xa9/xea <CJK> +<U000212C7> /x8e/xaf/xa9/xeb <CJK> +<U000212C8> /x8e/xaf/xa9/xec <CJK> +<U000212C9> /x8e/xaf/xa9/xed <CJK> +<U000212CA> /x8e/xaf/xa9/xee <CJK> +<U000212CB> /x8e/xaf/xa9/xef <CJK> +<U000212CC> /x8e/xaf/xa9/xf0 <CJK> +<U57AB> /x8e/xaf/xa9/xf1 <CJK> +<U000212CD> /x8e/xaf/xa9/xf2 <CJK> +<U000212CE> /x8e/xaf/xa9/xf3 <CJK> +<U000212E3> /x8e/xaf/xa9/xf4 <CJK> +<U000212CF> /x8e/xaf/xa9/xf5 <CJK> +<U000212D0> /x8e/xaf/xa9/xf6 <CJK> +<U000212D1> /x8e/xaf/xa9/xf7 <CJK> +<U000212D2> /x8e/xaf/xa9/xf8 <CJK> +<U000212D3> /x8e/xaf/xa9/xf9 <CJK> +<U000212C4> /x8e/xaf/xa9/xfa <CJK> +<U000212D4> /x8e/xaf/xa9/xfb <CJK> +<U000212D5> /x8e/xaf/xa9/xfc <CJK> +<U000212D6> /x8e/xaf/xa9/xfd <CJK> +<U00021520> /x8e/xaf/xa9/xfe <CJK> +<U00021521> /x8e/xaf/xaa/xa1 <CJK> +<U0002161A> /x8e/xaf/xaa/xa2 <CJK> +<U00021612> /x8e/xaf/xaa/xa3 <CJK> +<U00021614> /x8e/xaf/xaa/xa4 <CJK> +<U00021615> /x8e/xaf/xaa/xa5 <CJK> +<U00021616> /x8e/xaf/xaa/xa6 <CJK> +<U00021619> /x8e/xaf/xaa/xa7 <CJK> +<U00021617> /x8e/xaf/xaa/xa8 <CJK> +<U00021618> /x8e/xaf/xaa/xa9 <CJK> +<U36C9> /x8e/xaf/xaa/xaa <CJK> +<U00021712> /x8e/xaf/xaa/xad <CJK> +<U00021713> /x8e/xaf/xaa/xae <CJK> +<U00021714> /x8e/xaf/xaa/xaf <CJK> +<U00021715> /x8e/xaf/xaa/xb0 <CJK> +<U00021716> /x8e/xaf/xaa/xb1 <CJK> +<U00021717> /x8e/xaf/xaa/xb2 <CJK> +<U00021718> /x8e/xaf/xaa/xb3 <CJK> +<U00021719> /x8e/xaf/xaa/xb4 <CJK> +<U00021961> /x8e/xaf/xaa/xb5 <CJK> +<U00021962> /x8e/xaf/xaa/xb6 <CJK> +<U00021963> /x8e/xaf/xaa/xb7 <CJK> +<U000219F5> /x8e/xaf/xaa/xb8 <CJK> +<U5BA9> /x8e/xaf/xaa/xb9 <CJK> +<U000219F6> /x8e/xaf/xaa/xba <CJK> +<U000219F7> /x8e/xaf/xaa/xbb <CJK> +<U000219F8> /x8e/xaf/xaa/xbc <CJK> +<U00021B29> /x8e/xaf/xaa/xbd <CJK> +<U3917> /x8e/xaf/xaa/xbe <CJK> +<U00021C5D> /x8e/xaf/xaa/xbf <CJK> +<U00021C57> /x8e/xaf/xaa/xc0 <CJK> +<U00021C58> /x8e/xaf/xaa/xc1 <CJK> +<U00021C59> /x8e/xaf/xaa/xc2 <CJK> +<U00021C5A> /x8e/xaf/xaa/xc3 <CJK> +<U00021C5B> /x8e/xaf/xaa/xc4 <CJK> +<U00021DBB> /x8e/xaf/xaa/xc5 <CJK> +<U00021DD1> /x8e/xaf/xaa/xc6 <CJK> +<U00021DBC> /x8e/xaf/xaa/xc7 <CJK> +<U00021DBD> /x8e/xaf/xaa/xc8 <CJK> +<U000268DF> /x8e/xaf/xaa/xc9 <CJK> +<U00021DD0> /x8e/xaf/xaa/xca <CJK> +<U00021DBE> /x8e/xaf/xaa/xcb <CJK> +<U00021DBF> /x8e/xaf/xaa/xcc <CJK> +<U00021DC0> /x8e/xaf/xaa/xcd <CJK> +<U00021DC1> /x8e/xaf/xaa/xce <CJK> +<U00021DC2> /x8e/xaf/xaa/xcf <CJK> +<U00021DC3> /x8e/xaf/xaa/xd0 <CJK> +<U00021DC4> /x8e/xaf/xaa/xd1 <CJK> +<U00026B6C> /x8e/xaf/xaa/xd2 <CJK> +<U000220A1> /x8e/xaf/xaa/xd3 <CJK> +<U000220A2> /x8e/xaf/xaa/xd4 <CJK> +<U000220A3> /x8e/xaf/xaa/xd5 <CJK> +<U00022193> /x8e/xaf/xaa/xd6 <CJK> +<U0002220D> /x8e/xaf/xaa/xd7 <CJK> +<U0002220F> /x8e/xaf/xaa/xd8 <CJK> +<U0002220E> /x8e/xaf/xaa/xd9 <CJK> +<U00022210> /x8e/xaf/xaa/xda <CJK> +<U00022211> /x8e/xaf/xaa/xdb <CJK> +<U00022212> /x8e/xaf/xaa/xdc <CJK> +<U000224E5> /x8e/xaf/xaa/xde <CJK> +<U0002262F> /x8e/xaf/xaa/xdf <CJK> +<U00022657> /x8e/xaf/xaa/xe1 <CJK> +<U00022630> /x8e/xaf/xaa/xe2 <CJK> +<U00022668> /x8e/xaf/xaa/xe3 <CJK> +<U0002262B> /x8e/xaf/xaa/xe4 <CJK> +<U00022631> /x8e/xaf/xaa/xe5 <CJK> +<U00022658> /x8e/xaf/xaa/xe6 <CJK> +<U00022632> /x8e/xaf/xaa/xe8 <CJK> +<U00022659> /x8e/xaf/xaa/xe9 <CJK> +<U0002265A> /x8e/xaf/xaa/xeb <CJK> +<U00022633> /x8e/xaf/xaa/xec <CJK> +<U0002265B> /x8e/xaf/xaa/xed <CJK> +<U0002265C> /x8e/xaf/xaa/xee <CJK> +<U0002265D> /x8e/xaf/xaa/xef <CJK> +<U0002261E> /x8e/xaf/xaa/xf0 <CJK> +<U000229AE> /x8e/xaf/xaa/xf1 <CJK> +<U000229AF> /x8e/xaf/xaa/xf2 <CJK> +<U00022A3B> /x8e/xaf/xaa/xf3 <CJK> +<U00022A3C> /x8e/xaf/xaa/xf4 <CJK> +<U00022A3D> /x8e/xaf/xaa/xf5 <CJK> +<U00022B07> /x8e/xaf/xaa/xf6 <CJK> +<U00022B08> /x8e/xaf/xaa/xf7 <CJK> +<U00022B09> /x8e/xaf/xaa/xf8 <CJK> +<U00022B0A> /x8e/xaf/xaa/xf9 <CJK> +<U00022B0B> /x8e/xaf/xaa/xfa <CJK> +<U00022B0C> /x8e/xaf/xaa/xfb <CJK> +<U00022B0D> /x8e/xaf/xaa/xfc <CJK> +<U00022B0E> /x8e/xaf/xaa/xfd <CJK> +<U00022B0F> /x8e/xaf/xaa/xfe <CJK> +<U00022B10> /x8e/xaf/xab/xa1 <CJK> +<U00022B22> /x8e/xaf/xab/xa2 <CJK> +<U00022B11> /x8e/xaf/xab/xa3 <CJK> +<U00022B12> /x8e/xaf/xab/xa4 <CJK> +<U00022B13> /x8e/xaf/xab/xa5 <CJK> +<U00022B14> /x8e/xaf/xab/xa6 <CJK> +<U00022B15> /x8e/xaf/xab/xa7 <CJK> +<U00022B16> /x8e/xaf/xab/xa8 <CJK> +<U00022B17> /x8e/xaf/xab/xa9 <CJK> +<U00022B18> /x8e/xaf/xab/xaa <CJK> +<U00023046> /x8e/xaf/xab/xad <CJK> +<U00023047> /x8e/xaf/xab/xae <CJK> +<U00023048> /x8e/xaf/xab/xaf <CJK> +<U000230E1> /x8e/xaf/xab/xb0 <CJK> +<U00023181> /x8e/xaf/xab/xb1 <CJK> +<U00023183> /x8e/xaf/xab/xb2 <CJK> +<U00020C75> /x8e/xaf/xab/xb3 <CJK> +<U00023185> /x8e/xaf/xab/xb5 <CJK> +<U00023186> /x8e/xaf/xab/xb6 <CJK> +<U0002332A> /x8e/xaf/xab/xb7 <CJK> +<U0002332B> /x8e/xaf/xab/xb9 <CJK> +<U0002336B> /x8e/xaf/xab/xba <CJK> +<U00023418> /x8e/xaf/xab/xbb <CJK> +<U00023419> /x8e/xaf/xab/xbc <CJK> +<U0002341A> /x8e/xaf/xab/xbd <CJK> +<U0002341B> /x8e/xaf/xab/xbf <CJK> +<U0002341C> /x8e/xaf/xab/xc0 <CJK> +<U0002341D> /x8e/xaf/xab/xc1 <CJK> +<U0002341E> /x8e/xaf/xab/xc2 <CJK> +<U0002341F> /x8e/xaf/xab/xc3 <CJK> +<U00023420> /x8e/xaf/xab/xc4 <CJK> +<U00023421> /x8e/xaf/xab/xc5 <CJK> +<U00023422> /x8e/xaf/xab/xc6 <CJK> +<U00023423> /x8e/xaf/xab/xc7 <CJK> +<U6811> /x8e/xaf/xab/xc8 <CJK> +<U00023424> /x8e/xaf/xab/xc9 <CJK> +<U00023425> /x8e/xaf/xab/xca <CJK> +<U00023426> /x8e/xaf/xab/xcb <CJK> +<U00023427> /x8e/xaf/xab/xcc <CJK> +<U00023428> /x8e/xaf/xab/xcd <CJK> +<U00023429> /x8e/xaf/xab/xce <CJK> +<U0002342A> /x8e/xaf/xab/xcf <CJK> +<U000239EF> /x8e/xaf/xab/xd0 <CJK> +<U00023B49> /x8e/xaf/xab/xd1 <CJK> +<U00023B4A> /x8e/xaf/xab/xd2 <CJK> +<U00023B4B> /x8e/xaf/xab/xd3 <CJK> +<U00023B4C> /x8e/xaf/xab/xd4 <CJK> +<U00023B4D> /x8e/xaf/xab/xd5 <CJK> +<U00023B4E> /x8e/xaf/xab/xd6 <CJK> +<U00023B4F> /x8e/xaf/xab/xd7 <CJK> +<U00023B50> /x8e/xaf/xab/xd8 <CJK> +<U00023B51> /x8e/xaf/xab/xd9 <CJK> +<U00023B52> /x8e/xaf/xab/xda <CJK> +<U00023B53> /x8e/xaf/xab/xdb <CJK> +<U00023B54> /x8e/xaf/xab/xdc <CJK> +<U00023B5A> /x8e/xaf/xab/xdd <CJK> +<U00023B55> /x8e/xaf/xab/xde <CJK> +<U00023C5F> /x8e/xaf/xab/xdf <CJK> +<U00023D02> /x8e/xaf/xab/xe0 <CJK> +<U00023D03> /x8e/xaf/xab/xe1 <CJK> +<U00023D04> /x8e/xaf/xab/xe2 <CJK> +<U00023D05> /x8e/xaf/xab/xe3 <CJK> +<U00023CD5> /x8e/xaf/xab/xe4 <CJK> +<U00023D06> /x8e/xaf/xab/xe5 <CJK> +<U00023D07> /x8e/xaf/xab/xe6 <CJK> +<U00023CD6> /x8e/xaf/xab/xe7 <CJK> +<U00023D08> /x8e/xaf/xab/xe8 <CJK> +<U00023D09> /x8e/xaf/xab/xe9 <CJK> +<U00023D0A> /x8e/xaf/xab/xea <CJK> +<U00023D0B> /x8e/xaf/xab/xeb <CJK> +<U00023CD7> /x8e/xaf/xab/xec <CJK> +<U00023D0C> /x8e/xaf/xab/xed <CJK> +<U00023D0D> /x8e/xaf/xab/xee <CJK> +<U000241C8> /x8e/xaf/xab/xef <CJK> +<U000241C9> /x8e/xaf/xab/xf0 <CJK> +<U000241CA> /x8e/xaf/xab/xf1 <CJK> +<U000241CB> /x8e/xaf/xab/xf2 <CJK> +<U000241CC> /x8e/xaf/xab/xf3 <CJK> +<U000241CD> /x8e/xaf/xab/xf4 <CJK> +<U000241CE> /x8e/xaf/xab/xf5 <CJK> +<U000241CF> /x8e/xaf/xab/xf6 <CJK> +<U000241D0> /x8e/xaf/xab/xf7 <CJK> +<U000241D1> /x8e/xaf/xab/xf8 <CJK> +<U000241D2> /x8e/xaf/xab/xf9 <CJK> +<U7551> /x8e/xaf/xab/xfa <CJK> +<U000241D3> /x8e/xaf/xab/xfb <CJK> +<U000241D4> /x8e/xaf/xab/xfc <CJK> +<U000241D5> /x8e/xaf/xab/xfd <CJK> +<U000241D6> /x8e/xaf/xab/xfe <CJK> +<U000241D7> /x8e/xaf/xac/xa1 <CJK> +<U000241E2> /x8e/xaf/xac/xa2 <CJK> +<U000241D8> /x8e/xaf/xac/xa3 <CJK> +<U00024504> /x8e/xaf/xac/xa4 <CJK> +<U00024505> /x8e/xaf/xac/xa5 <CJK> +<U00024506> /x8e/xaf/xac/xa6 <CJK> +<U00024643> /x8e/xaf/xac/xa8 <CJK> +<U00024644> /x8e/xaf/xac/xa9 <CJK> +<U00024784> /x8e/xaf/xac/xaa <CJK> +<U0002478F> /x8e/xaf/xac/xab <CJK> +<U00024785> /x8e/xaf/xac/xac <CJK> +<U00024786> /x8e/xaf/xac/xad <CJK> +<U0002492F> /x8e/xaf/xac/xae <CJK> +<U0002491A> /x8e/xaf/xac/xaf <CJK> +<U0002491B> /x8e/xaf/xac/xb0 <CJK> +<U0002491C> /x8e/xaf/xac/xb1 <CJK> +<U3EBD> /x8e/xaf/xac/xb2 <CJK> +<U0002491D> /x8e/xaf/xac/xb3 <CJK> +<U0002491E> /x8e/xaf/xac/xb4 <CJK> +<U0002491F> /x8e/xaf/xac/xb5 <CJK> +<U00024920> /x8e/xaf/xac/xb6 <CJK> +<U00024921> /x8e/xaf/xac/xb7 <CJK> +<U00024922> /x8e/xaf/xac/xb8 <CJK> +<U00024923> /x8e/xaf/xac/xba <CJK> +<U00024924> /x8e/xaf/xac/xbb <CJK> +<U0002490E> /x8e/xaf/xac/xbc <CJK> +<U00024925> /x8e/xaf/xac/xbd <CJK> +<U0002492B> /x8e/xaf/xac/xbe <CJK> +<U0002492C> /x8e/xaf/xac/xbf <CJK> +<U0002490B> /x8e/xaf/xac/xc0 <CJK> +<U00024AEE> /x8e/xaf/xac/xc1 <CJK> +<U00024BC3> /x8e/xaf/xac/xc3 <CJK> +<U00024BD8> /x8e/xaf/xac/xc4 <CJK> +<U00024BD9> /x8e/xaf/xac/xc5 <CJK> +<U00024C38> /x8e/xaf/xac/xc6 <CJK> +<U00024C39> /x8e/xaf/xac/xc7 <CJK> +<U00024C3A> /x8e/xaf/xac/xc8 <CJK> +<U00024C3B> /x8e/xaf/xac/xc9 <CJK> +<U7553> /x8e/xaf/xac/xca <CJK> +<U00024C3C> /x8e/xaf/xac/xcb <CJK> +<U00024C3D> /x8e/xaf/xac/xcc <CJK> +<U00024C3E> /x8e/xaf/xac/xcd <CJK> +<U00024C3F> /x8e/xaf/xac/xce <CJK> +<U00024C40> /x8e/xaf/xac/xcf <CJK> +<U00024D48> /x8e/xaf/xac/xd0 <CJK> +<U00024D4C> /x8e/xaf/xac/xd1 <CJK> +<U00024F28> /x8e/xaf/xac/xd2 <CJK> +<U00024F51> /x8e/xaf/xac/xd3 <CJK> +<U00024F52> /x8e/xaf/xac/xd4 <CJK> +<U0002504C> /x8e/xaf/xac/xd5 <CJK> +<U00025123> /x8e/xaf/xac/xd6 <CJK> +<U00025124> /x8e/xaf/xac/xd8 <CJK> +<U00025431> /x8e/xaf/xac/xd9 <CJK> +<U00025432> /x8e/xaf/xac/xda <CJK> +<U00025433> /x8e/xaf/xac/xdb <CJK> +<U7818> /x8e/xaf/xac/xdc <CJK> +<U00025434> /x8e/xaf/xac/xdd <CJK> +<U00025435> /x8e/xaf/xac/xde <CJK> +<U00025436> /x8e/xaf/xac/xdf <CJK> +<U00025440> /x8e/xaf/xac/xe0 <CJK> +<U00025437> /x8e/xaf/xac/xe1 <CJK> +<U00025438> /x8e/xaf/xac/xe3 <CJK> +<U0002543D> /x8e/xaf/xac/xe4 <CJK> +<U00025638> /x8e/xaf/xac/xe5 <CJK> +<U00025639> /x8e/xaf/xac/xe6 <CJK> +<U0002563A> /x8e/xaf/xac/xe7 <CJK> +<U0002563B> /x8e/xaf/xac/xe8 <CJK> +<U0002563C> /x8e/xaf/xac/xe9 <CJK> +<U0002564C> /x8e/xaf/xac/xea <CJK> +<U00025773> /x8e/xaf/xac/xeb <CJK> +<U00025774> /x8e/xaf/xac/xec <CJK> +<U4133> /x8e/xaf/xac/xed <CJK> +<U00025775> /x8e/xaf/xac/xee <CJK> +<U00025776> /x8e/xaf/xac/xef <CJK> +<U00025779> /x8e/xaf/xac/xf0 <CJK> +<U00025941> /x8e/xaf/xac/xf1 <CJK> +<U00025942> /x8e/xaf/xac/xf2 <CJK> +<U00025943> /x8e/xaf/xac/xf3 <CJK> +<U00025A5B> /x8e/xaf/xac/xf4 <CJK> +<U7AD7> /x8e/xaf/xac/xf6 <CJK> +<U000238A6> /x8e/xaf/xac/xf7 <CJK> +<U00025A5C> /x8e/xaf/xac/xf8 <CJK> +<U00025AE5> /x8e/xaf/xac/xf9 <CJK> +<U00025AE6> /x8e/xaf/xac/xfa <CJK> +<U00025AE7> /x8e/xaf/xac/xfb <CJK> +<U00025AE8> /x8e/xaf/xac/xfc <CJK> +<U00025AED> /x8e/xaf/xac/xfd <CJK> +<U00025E30> /x8e/xaf/xac/xfe <CJK> +<U7C7E> /x8e/xaf/xad/xa1 <CJK> +<U00025E31> /x8e/xaf/xad/xa2 <CJK> +<U00025F94> /x8e/xaf/xad/xa3 <CJK> +<U00026351> /x8e/xaf/xad/xa4 <CJK> +<U000263FD> /x8e/xaf/xad/xa5 <CJK> +<U000263FE> /x8e/xaf/xad/xa6 <CJK> +<U000264E9> /x8e/xaf/xad/xa7 <CJK> +<U000266B3> /x8e/xaf/xad/xa9 <CJK> +<U00026684> /x8e/xaf/xad/xaa <CJK> +<U00026694> /x8e/xaf/xad/xab <CJK> +<U0002669C> /x8e/xaf/xad/xad <CJK> +<U00026685> /x8e/xaf/xad/xaf <CJK> +<U00026900> /x8e/xaf/xad/xb0 <CJK> +<U00026937> /x8e/xaf/xad/xb1 <CJK> +<U00026957> /x8e/xaf/xad/xb2 <CJK> +<U00026B54> /x8e/xaf/xad/xb3 <CJK> +<U00026B68> /x8e/xaf/xad/xb4 <CJK> +<U00026B55> /x8e/xaf/xad/xb5 <CJK> +<U00026B5C> /x8e/xaf/xad/xb6 <CJK> +<U00026B56> /x8e/xaf/xad/xb7 <CJK> +<U00026B57> /x8e/xaf/xad/xb8 <CJK> +<U00026B58> /x8e/xaf/xad/xb9 <CJK> +<U00026B59> /x8e/xaf/xad/xba <CJK> +<U00026B5A> /x8e/xaf/xad/xbb <CJK> +<U00026B5B> /x8e/xaf/xad/xbc <CJK> +<U00027234> /x8e/xaf/xad/xbd <CJK> +<U867E> /x8e/xaf/xad/xbe <CJK> +<U00027235> /x8e/xaf/xad/xbf <CJK> +<U00027239> /x8e/xaf/xad/xc1 <CJK> +<U00027236> /x8e/xaf/xad/xc2 <CJK> +<U00027237> /x8e/xaf/xad/xc3 <CJK> +<U00027238> /x8e/xaf/xad/xc4 <CJK> +<U000275E5> /x8e/xaf/xad/xc5 <CJK> +<U00027659> /x8e/xaf/xad/xc6 <CJK> +<U0002763A> /x8e/xaf/xad/xc8 <CJK> +<U0002763B> /x8e/xaf/xad/xc9 <CJK> +<U00027D28> /x8e/xaf/xad/xca <CJK> +<U00027E89> /x8e/xaf/xad/xcb <CJK> +<U00027E8A> /x8e/xaf/xad/xcd <CJK> +<U00027E8B> /x8e/xaf/xad/xce <CJK> +<U00027E8C> /x8e/xaf/xad/xcf <CJK> +<U00027E8D> /x8e/xaf/xad/xd0 <CJK> +<U00027FBC> /x8e/xaf/xad/xd1 <CJK> +<U000282A3> /x8e/xaf/xad/xd2 <CJK> +<U4844> /x8e/xaf/xad/xd3 <CJK> +<U000282A4> /x8e/xaf/xad/xd4 <CJK> +<U00028493> /x8e/xaf/xad/xd5 <CJK> +<U00028494> /x8e/xaf/xad/xd6 <CJK> +<U00028495> /x8e/xaf/xad/xd7 <CJK> +<U00028496> /x8e/xaf/xad/xd8 <CJK> +<U00028497> /x8e/xaf/xad/xd9 <CJK> +<U000286B9> /x8e/xaf/xad/xda <CJK> +<U00028E4F> /x8e/xaf/xad/xdb <CJK> +<U00028E50> /x8e/xaf/xad/xdc <CJK> +<U00028E51> /x8e/xaf/xad/xdd <CJK> +<U00029076> /x8e/xaf/xad/xde <CJK> +<U000200FB> /x8e/xaf/xad/xe0 <CJK> +<U00020083> /x8e/xaf/xad/xe1 <CJK> +<U00020138> /x8e/xaf/xad/xe2 <CJK> +<U0002015D> /x8e/xaf/xad/xe3 <CJK> +<U00020271> /x8e/xaf/xad/xe4 <CJK> +<U00020277> /x8e/xaf/xad/xe6 <CJK> +<U00020278> /x8e/xaf/xad/xe7 <CJK> +<U000202C3> /x8e/xaf/xad/xe9 <CJK> +<U00020279> /x8e/xaf/xad/xea <CJK> +<U0002027A> /x8e/xaf/xad/xeb <CJK> +<U0002027B> /x8e/xaf/xad/xec <CJK> +<U0002027C> /x8e/xaf/xad/xed <CJK> +<U00020272> /x8e/xaf/xad/xee <CJK> +<U0002027D> /x8e/xaf/xad/xef <CJK> +<U000202A0> /x8e/xaf/xad/xf0 <CJK> +<U0002027E> /x8e/xaf/xad/xf1 <CJK> +<U0002027F> /x8e/xaf/xad/xf2 <CJK> +<U00020280> /x8e/xaf/xad/xf3 <CJK> +<U00020281> /x8e/xaf/xad/xf4 <CJK> +<U00020282> /x8e/xaf/xad/xf5 <CJK> +<U00020283> /x8e/xaf/xad/xf6 <CJK> +<U0002029E> /x8e/xaf/xad/xf7 <CJK> +<U00020284> /x8e/xaf/xad/xf8 <CJK> +<U00020285> /x8e/xaf/xad/xf9 <CJK> +<U00020286> /x8e/xaf/xad/xfa <CJK> +<U00020287> /x8e/xaf/xad/xfb <CJK> +<U00020288> /x8e/xaf/xad/xfc <CJK> +<U00020493> /x8e/xaf/xad/xfd <CJK> +<U00020494> /x8e/xaf/xad/xfe <CJK> +<U00020495> /x8e/xaf/xae/xa1 <CJK> +<U000204EF> /x8e/xaf/xae/xa2 <CJK> +<U000204F0> /x8e/xaf/xae/xa3 <CJK> +<U0002058D> /x8e/xaf/xae/xa5 <CJK> +<U0002058F> /x8e/xaf/xae/xa6 <CJK> +<U00020590> /x8e/xaf/xae/xa7 <CJK> +<U00020591> /x8e/xaf/xae/xa8 <CJK> +<U00020592> /x8e/xaf/xae/xa9 <CJK> +<U000205DE> /x8e/xaf/xae/xaa <CJK> +<U000205E1> /x8e/xaf/xae/xab <CJK> +<U00020653> /x8e/xaf/xae/xac <CJK> +<U5266> /x8e/xaf/xae/xad <CJK> +<U0002074A> /x8e/xaf/xae/xae <CJK> +<U0002074B> /x8e/xaf/xae/xaf <CJK> +<U0002074C> /x8e/xaf/xae/xb0 <CJK> +<U00020751> /x8e/xaf/xae/xb1 <CJK> +<U0002074D> /x8e/xaf/xae/xb2 <CJK> +<U00020748> /x8e/xaf/xae/xb3 <CJK> +<U00020874> /x8e/xaf/xae/xb4 <CJK> +<U00020875> /x8e/xaf/xae/xb5 <CJK> +<U00020920> /x8e/xaf/xae/xb6 <CJK> +<U00020921> /x8e/xaf/xae/xb7 <CJK> +<U000209A5> /x8e/xaf/xae/xb8 <CJK> +<U000209A6> /x8e/xaf/xae/xb9 <CJK> +<U00020A73> /x8e/xaf/xae/xba <CJK> +<U00020A74> /x8e/xaf/xae/xbb <CJK> +<U00020B50> /x8e/xaf/xae/xbc <CJK> +<U00020B51> /x8e/xaf/xae/xbd <CJK> +<U00020B52> /x8e/xaf/xae/xbe <CJK> +<U00020B53> /x8e/xaf/xae/xbf <CJK> +<U00020CDB> /x8e/xaf/xae/xc0 <CJK> +<U00020CDC> /x8e/xaf/xae/xc1 <CJK> +<U5520> /x8e/xaf/xae/xc2 <CJK> +<U00020CDD> /x8e/xaf/xae/xc3 <CJK> +<U00020CDE> /x8e/xaf/xae/xc4 <CJK> +<U00020CFF> /x8e/xaf/xae/xc5 <CJK> +<U00020CDF> /x8e/xaf/xae/xc8 <CJK> +<U00020CE0> /x8e/xaf/xae/xc9 <CJK> +<U5521> /x8e/xaf/xae/xca <CJK> +<U00020CE1> /x8e/xaf/xae/xcb <CJK> +<U00020CE2> /x8e/xaf/xae/xcc <CJK> +<U00020CE3> /x8e/xaf/xae/xcd <CJK> +<U00020CE4> /x8e/xaf/xae/xce <CJK> +<U00020CE5> /x8e/xaf/xae/xcf <CJK> +<U00020CE6> /x8e/xaf/xae/xd0 <CJK> +<U00020CE7> /x8e/xaf/xae/xd1 <CJK> +<U00020CE8> /x8e/xaf/xae/xd2 <CJK> +<U00020CE9> /x8e/xaf/xae/xd3 <CJK> +<U00020CEA> /x8e/xaf/xae/xd4 <CJK> +<U00021307> /x8e/xaf/xae/xd5 <CJK> +<U00021308> /x8e/xaf/xae/xd6 <CJK> +<U00021309> /x8e/xaf/xae/xd7 <CJK> +<U0002130A> /x8e/xaf/xae/xd8 <CJK> +<U0002130B> /x8e/xaf/xae/xd9 <CJK> +<U0002130C> /x8e/xaf/xae/xda <CJK> +<U0002130D> /x8e/xaf/xae/xdb <CJK> +<U57D7> /x8e/xaf/xae/xdc <CJK> +<U0002131A> /x8e/xaf/xae/xdd <CJK> +<U0002130E> /x8e/xaf/xae/xde <CJK> +<U0002130F> /x8e/xaf/xae/xdf <CJK> +<U00021310> /x8e/xaf/xae/xe0 <CJK> +<U0002131C> /x8e/xaf/xae/xe1 <CJK> +<U00021527> /x8e/xaf/xae/xe2 <CJK> +<U00021566> /x8e/xaf/xae/xe3 <CJK> +<U00021598> /x8e/xaf/xae/xe4 <CJK> +<U00021599> /x8e/xaf/xae/xe5 <CJK> +<U00021633> /x8e/xaf/xae/xe6 <CJK> +<U00021624> /x8e/xaf/xae/xe7 <CJK> +<U00021625> /x8e/xaf/xae/xe8 <CJK> +<U00021626> /x8e/xaf/xae/xe9 <CJK> +<U36E1> /x8e/xaf/xae/xeb <CJK> +<U0002173E> /x8e/xaf/xae/xec <CJK> +<U0002173F> /x8e/xaf/xae/xee <CJK> +<U00021757> /x8e/xaf/xae/xef <CJK> +<U00021740> /x8e/xaf/xae/xf0 <CJK> +<U00021741> /x8e/xaf/xae/xf1 <CJK> +<U00021758> /x8e/xaf/xae/xf2 <CJK> +<U00021742> /x8e/xaf/xae/xf3 <CJK> +<U00021743> /x8e/xaf/xae/xf4 <CJK> +<U00021744> /x8e/xaf/xae/xf5 <CJK> +<U00021745> /x8e/xaf/xae/xf6 <CJK> +<U00021746> /x8e/xaf/xae/xf7 <CJK> +<U36E2> /x8e/xaf/xae/xf8 <CJK> +<U00021747> /x8e/xaf/xae/xf9 <CJK> +<U0002196B> /x8e/xaf/xae/xfa <CJK> +<U0002196C> /x8e/xaf/xae/xfb <CJK> +<U00021A10> /x8e/xaf/xae/xfc <CJK> +<U00021A11> /x8e/xaf/xae/xfd <CJK> +<U5BBE> /x8e/xaf/xae/xfe <CJK> +<U00021B75> /x8e/xaf/xaf/xa1 <CJK> +<U00021BEF> /x8e/xaf/xaf/xa2 <CJK> +<U00021C6A> /x8e/xaf/xaf/xa3 <CJK> +<U00021C6B> /x8e/xaf/xaf/xa4 <CJK> +<U00021C6C> /x8e/xaf/xaf/xa6 <CJK> +<U00021C6D> /x8e/xaf/xaf/xa7 <CJK> +<U00021C6E> /x8e/xaf/xaf/xa8 <CJK> +<U00021DEF> /x8e/xaf/xaf/xa9 <CJK> +<U00021DF0> /x8e/xaf/xaf/xaa <CJK> +<U00021DF1> /x8e/xaf/xaf/xab <CJK> +<U00021DF2> /x8e/xaf/xaf/xac <CJK> +<U00021DF3> /x8e/xaf/xaf/xad <CJK> +<U00021DF4> /x8e/xaf/xaf/xae <CJK> +<U00021DF5> /x8e/xaf/xaf/xaf <CJK> +<U00021DFF> /x8e/xaf/xaf/xb0 <CJK> +<U00021DF6> /x8e/xaf/xaf/xb1 <CJK> +<U00021E02> /x8e/xaf/xaf/xb2 <CJK> +<U00021DF7> /x8e/xaf/xaf/xb3 <CJK> +<U00022022> /x8e/xaf/xaf/xb4 <CJK> +<U000220C4> /x8e/xaf/xaf/xb5 <CJK> +<U000220C3> /x8e/xaf/xaf/xb6 <CJK> +<U00022228> /x8e/xaf/xaf/xb7 <CJK> +<U387C> /x8e/xaf/xaf/xb8 <CJK> +<U00022320> /x8e/xaf/xaf/xb9 <CJK> +<U00022325> /x8e/xaf/xaf/xba <CJK> +<U00022322> /x8e/xaf/xaf/xbb <CJK> +<U00022323> /x8e/xaf/xaf/xbc <CJK> +<U000223EB> /x8e/xaf/xaf/xbd <CJK> +<U38E3> /x8e/xaf/xaf/xbe <CJK> +<U000224F9> /x8e/xaf/xaf/xbf <CJK> +<U000224FA> /x8e/xaf/xaf/xc0 <CJK> +<U00022699> /x8e/xaf/xaf/xc1 <CJK> +<U0002269A> /x8e/xaf/xaf/xc2 <CJK> +<U0002269B> /x8e/xaf/xaf/xc3 <CJK> +<U00022663> /x8e/xaf/xaf/xc4 <CJK> +<U0002265E> /x8e/xaf/xaf/xc6 <CJK> +<U0002265F> /x8e/xaf/xaf/xc7 <CJK> +<U00022660> /x8e/xaf/xaf/xc8 <CJK> +<U0002269C> /x8e/xaf/xaf/xc9 <CJK> +<U00022661> /x8e/xaf/xaf/xca <CJK> +<U0002269D> /x8e/xaf/xaf/xcb <CJK> +<U00022B54> /x8e/xaf/xaf/xcc <CJK> +<U00022B55> /x8e/xaf/xaf/xcd <CJK> +<U00022B56> /x8e/xaf/xaf/xce <CJK> +<U00022B57> /x8e/xaf/xaf/xcf <CJK> +<U00022B58> /x8e/xaf/xaf/xd0 <CJK> +<U00022B59> /x8e/xaf/xaf/xd1 <CJK> +<U00022B5A> /x8e/xaf/xaf/xd2 <CJK> +<U00022B19> /x8e/xaf/xaf/xd3 <CJK> +<U00022B6A> /x8e/xaf/xaf/xd4 <CJK> +<U00022B5B> /x8e/xaf/xaf/xd5 <CJK> +<U00022B5C> /x8e/xaf/xaf/xd6 <CJK> +<U00022B5D> /x8e/xaf/xaf/xd7 <CJK> +<U00022B66> /x8e/xaf/xaf/xd8 <CJK> +<U00022B5E> /x8e/xaf/xaf/xda <CJK> +<U00022B5F> /x8e/xaf/xaf/xdb <CJK> +<U00022B1A> /x8e/xaf/xaf/xdc <CJK> +<U00022B60> /x8e/xaf/xaf/xdd <CJK> +<U00022B61> /x8e/xaf/xaf/xde <CJK> +<U00022B62> /x8e/xaf/xaf/xe0 <CJK> +<U00022B1B> /x8e/xaf/xaf/xe1 <CJK> +<U00022B63> /x8e/xaf/xaf/xe2 <CJK> +<U00026410> /x8e/xaf/xaf/xe3 <CJK> +<U00026411> /x8e/xaf/xaf/xe4 <CJK> +<U0002304C> /x8e/xaf/xaf/xe5 <CJK> +<U0002309B> /x8e/xaf/xaf/xe6 <CJK> +<U000230EB> /x8e/xaf/xaf/xe7 <CJK> +<U000230EC> /x8e/xaf/xaf/xe8 <CJK> +<U000230ED> /x8e/xaf/xaf/xe9 <CJK> +<U000230EE> /x8e/xaf/xaf/xea <CJK> +<U000231A3> /x8e/xaf/xaf/xeb <CJK> +<U000231A8> /x8e/xaf/xaf/xec <CJK> +<U000231A6> /x8e/xaf/xaf/xed <CJK> +<U3AEC> /x8e/xaf/xaf/xee <CJK> +<U0002332F> /x8e/xaf/xaf/xef <CJK> +<U00023330> /x8e/xaf/xaf/xf0 <CJK> +<U00023331> /x8e/xaf/xaf/xf1 <CJK> +<U00023332> /x8e/xaf/xaf/xf2 <CJK> +<U00023333> /x8e/xaf/xaf/xf3 <CJK> +<U0002344F> /x8e/xaf/xaf/xf4 <CJK> +<U00023451> /x8e/xaf/xaf/xf5 <CJK> +<U00023452> /x8e/xaf/xaf/xf6 <CJK> +<U0002347D> /x8e/xaf/xaf/xf7 <CJK> +<U00023453> /x8e/xaf/xaf/xf8 <CJK> +<U00023454> /x8e/xaf/xaf/xf9 <CJK> +<U00023455> /x8e/xaf/xaf/xfa <CJK> +<U00023456> /x8e/xaf/xaf/xfb <CJK> +<U00023457> /x8e/xaf/xaf/xfc <CJK> +<U00023458> /x8e/xaf/xaf/xfd <CJK> +<U00023459> /x8e/xaf/xaf/xfe <CJK> +<U0002345A> /x8e/xaf/xb0/xa1 <CJK> +<U0002345B> /x8e/xaf/xb0/xa2 <CJK> +<U0002345C> /x8e/xaf/xb0/xa3 <CJK> +<U6857> /x8e/xaf/xb0/xa4 <CJK> +<U0002345D> /x8e/xaf/xb0/xa5 <CJK> +<U0002345E> /x8e/xaf/xb0/xa6 <CJK> +<U0002345F> /x8e/xaf/xb0/xa7 <CJK> +<U0002346F> /x8e/xaf/xb0/xa8 <CJK> +<U00023460> /x8e/xaf/xb0/xa9 <CJK> +<U00023461> /x8e/xaf/xb0/xaa <CJK> +<U00023462> /x8e/xaf/xb0/xab <CJK> +<U00023463> /x8e/xaf/xb0/xac <CJK> +<U00023472> /x8e/xaf/xb0/xad <CJK> +<U00023464> /x8e/xaf/xb0/xae <CJK> +<U0002346E> /x8e/xaf/xb0/xb0 <CJK> +<U000238B5> /x8e/xaf/xb0/xb1 <CJK> +<U00023B65> /x8e/xaf/xb0/xb2 <CJK> +<U00023B66> /x8e/xaf/xb0/xb3 <CJK> +<U00023B67> /x8e/xaf/xb0/xb4 <CJK> +<U00023B68> /x8e/xaf/xb0/xb5 <CJK> +<U00023B69> /x8e/xaf/xb0/xb6 <CJK> +<U00023B6A> /x8e/xaf/xb0/xb7 <CJK> +<U00023B6B> /x8e/xaf/xb0/xb8 <CJK> +<U00023B6C> /x8e/xaf/xb0/xb9 <CJK> +<U00023D0E> /x8e/xaf/xb0/xba <CJK> +<U00023D43> /x8e/xaf/xb0/xbb <CJK> +<U00023D0F> /x8e/xaf/xb0/xbd <CJK> +<U00023D44> /x8e/xaf/xb0/xbe <CJK> +<U00023D45> /x8e/xaf/xb0/xbf <CJK> +<U00023D46> /x8e/xaf/xb0/xc0 <CJK> +<U00023D47> /x8e/xaf/xb0/xc1 <CJK> +<U00023D48> /x8e/xaf/xb0/xc2 <CJK> +<U00023D49> /x8e/xaf/xb0/xc3 <CJK> +<U00023D10> /x8e/xaf/xb0/xc4 <CJK> +<U00023D4A> /x8e/xaf/xb0/xc5 <CJK> +<U00023D4B> /x8e/xaf/xb0/xc6 <CJK> +<U00023D4C> /x8e/xaf/xb0/xc7 <CJK> +<U00023D4D> /x8e/xaf/xb0/xc8 <CJK> +<U00023D4E> /x8e/xaf/xb0/xca <CJK> +<U00023D4F> /x8e/xaf/xb0/xcb <CJK> +<U00023D50> /x8e/xaf/xb0/xcc <CJK> +<U00023D51> /x8e/xaf/xb0/xcd <CJK> +<U00023D52> /x8e/xaf/xb0/xce <CJK> +<U00023D53> /x8e/xaf/xb0/xcf <CJK> +<U00023D54> /x8e/xaf/xb0/xd0 <CJK> +<U00023D55> /x8e/xaf/xb0/xd1 <CJK> +<U00023D56> /x8e/xaf/xb0/xd2 <CJK> +<U00023D57> /x8e/xaf/xb0/xd3 <CJK> +<U00023D58> /x8e/xaf/xb0/xd4 <CJK> +<U00023D59> /x8e/xaf/xb0/xd5 <CJK> +<U00023D5A> /x8e/xaf/xb0/xd6 <CJK> +<U00023D1D> /x8e/xaf/xb0/xd7 <CJK> +<U00023D5B> /x8e/xaf/xb0/xd8 <CJK> +<U00023D5C> /x8e/xaf/xb0/xd9 <CJK> +<U00023D5D> /x8e/xaf/xb0/xda <CJK> +<U000241FE> /x8e/xaf/xb0/xdd <CJK> +<U000241FF> /x8e/xaf/xb0/xde <CJK> +<U00024200> /x8e/xaf/xb0/xdf <CJK> +<U00024201> /x8e/xaf/xb0/xe0 <CJK> +<U00024202> /x8e/xaf/xb0/xe1 <CJK> +<U00024203> /x8e/xaf/xb0/xe2 <CJK> +<U00024204> /x8e/xaf/xb0/xe3 <CJK> +<U00024205> /x8e/xaf/xb0/xe4 <CJK> +<U00024206> /x8e/xaf/xb0/xe5 <CJK> +<U00024207> /x8e/xaf/xb0/xe6 <CJK> +<U00024218> /x8e/xaf/xb0/xe7 <CJK> +<U00024208> /x8e/xaf/xb0/xe8 <CJK> +<U00024209> /x8e/xaf/xb0/xe9 <CJK> +<U000241F3> /x8e/xaf/xb0/xea <CJK> +<U0002420A> /x8e/xaf/xb0/xeb <CJK> +<U0002420B> /x8e/xaf/xb0/xec <CJK> +<U0002421B> /x8e/xaf/xb0/xed <CJK> +<U0002420C> /x8e/xaf/xb0/xee <CJK> +<U0002420D> /x8e/xaf/xb0/xef <CJK> +<U0002420E> /x8e/xaf/xb0/xf0 <CJK> +<U0002420F> /x8e/xaf/xb0/xf1 <CJK> +<U00024210> /x8e/xaf/xb0/xf2 <CJK> +<U0002450F> /x8e/xaf/xb0/xf3 <CJK> +<U00024561> /x8e/xaf/xb0/xf4 <CJK> +<U00024579> /x8e/xaf/xb0/xf5 <CJK> +<U000247C1> /x8e/xaf/xb0/xf6 <CJK> +<U000247AC> /x8e/xaf/xb0/xf7 <CJK> +<U000247AD> /x8e/xaf/xb0/xf8 <CJK> +<U00024943> /x8e/xaf/xb0/xf9 <CJK> +<U00024944> /x8e/xaf/xb0/xfa <CJK> +<U00024945> /x8e/xaf/xb0/xfb <CJK> +<U00024946> /x8e/xaf/xb0/xfc <CJK> +<U00024947> /x8e/xaf/xb0/xfd <CJK> +<U00024948> /x8e/xaf/xb0/xfe <CJK> +<U00024949> /x8e/xaf/xb1/xa1 <CJK> +<U00024964> /x8e/xaf/xb1/xa2 <CJK> +<U0002494A> /x8e/xaf/xb1/xa3 <CJK> +<U0002494B> /x8e/xaf/xb1/xa4 <CJK> +<U0002494C> /x8e/xaf/xb1/xa5 <CJK> +<U0002494D> /x8e/xaf/xb1/xa6 <CJK> +<U00024B39> /x8e/xaf/xb1/xa9 <CJK> +<U00024C57> /x8e/xaf/xb1/xaa <CJK> +<U00024C58> /x8e/xaf/xb1/xab <CJK> +<U00024C59> /x8e/xaf/xb1/xac <CJK> +<U00024C5F> /x8e/xaf/xb1/xad <CJK> +<U00024C5A> /x8e/xaf/xb1/xae <CJK> +<U00024D6A> /x8e/xaf/xb1/xaf <CJK> +<U00024F2B> /x8e/xaf/xb1/xb0 <CJK> +<U00024F5D> /x8e/xaf/xb1/xb1 <CJK> +<U00024F5E> /x8e/xaf/xb1/xb2 <CJK> +<U00024F5F> /x8e/xaf/xb1/xb3 <CJK> +<U00024F60> /x8e/xaf/xb1/xb5 <CJK> +<U00024F61> /x8e/xaf/xb1/xb6 <CJK> +<U00025058> /x8e/xaf/xb1/xb7 <CJK> +<U00025059> /x8e/xaf/xb1/xb8 <CJK> +<U0002514A> /x8e/xaf/xb1/xb9 <CJK> +<U0002514B> /x8e/xaf/xb1/xba <CJK> +<U0002514C> /x8e/xaf/xb1/xbb <CJK> +<U0002514D> /x8e/xaf/xb1/xbc <CJK> +<U0002514E> /x8e/xaf/xb1/xbd <CJK> +<U00025457> /x8e/xaf/xb1/xbe <CJK> +<U000253B3> /x8e/xaf/xb1/xbf <CJK> +<U000253B4> /x8e/xaf/xb1/xc0 <CJK> +<U0002546E> /x8e/xaf/xb1/xc1 <CJK> +<U0002545B> /x8e/xaf/xb1/xc2 <CJK> +<U0002545C> /x8e/xaf/xb1/xc3 <CJK> +<U0002545D> /x8e/xaf/xb1/xc5 <CJK> +<U0002545E> /x8e/xaf/xb1/xc6 <CJK> +<U0002546C> /x8e/xaf/xb1/xc8 <CJK> +<U0002563D> /x8e/xaf/xb1/xc9 <CJK> +<U00025654> /x8e/xaf/xb1/xca <CJK> +<U0002563E> /x8e/xaf/xb1/xcb <CJK> +<U00025655> /x8e/xaf/xb1/xcc <CJK> +<U00025656> /x8e/xaf/xb1/xcd <CJK> +<U0002563F> /x8e/xaf/xb1/xce <CJK> +<U00025657> /x8e/xaf/xb1/xcf <CJK> +<U00025658> /x8e/xaf/xb1/xd0 <CJK> +<U00025659> /x8e/xaf/xb1/xd1 <CJK> +<U0002565A> /x8e/xaf/xb1/xd2 <CJK> +<U0002565B> /x8e/xaf/xb1/xd3 <CJK> +<U0002565C> /x8e/xaf/xb1/xd4 <CJK> +<U00025788> /x8e/xaf/xb1/xd5 <CJK> +<U00025789> /x8e/xaf/xb1/xd6 <CJK> +<U00025958> /x8e/xaf/xb1/xd8 <CJK> +<U00025959> /x8e/xaf/xb1/xd9 <CJK> +<U0002595A> /x8e/xaf/xb1/xda <CJK> +<U00025A67> /x8e/xaf/xb1/xdc <CJK> +<U00025A68> /x8e/xaf/xb1/xdd <CJK> +<U00025A69> /x8e/xaf/xb1/xde <CJK> +<U00025A6A> /x8e/xaf/xb1/xdf <CJK> +<U00025A6B> /x8e/xaf/xb1/xe1 <CJK> +<U00025A6C> /x8e/xaf/xb1/xe2 <CJK> +<U00025AFE> /x8e/xaf/xb1/xe3 <CJK> +<U00025AFF> /x8e/xaf/xb1/xe4 <CJK> +<U00025B00> /x8e/xaf/xb1/xe5 <CJK> +<U00025B01> /x8e/xaf/xb1/xe6 <CJK> +<U00025B02> /x8e/xaf/xb1/xe7 <CJK> +<U00025B03> /x8e/xaf/xb1/xe8 <CJK> +<U00025B04> /x8e/xaf/xb1/xe9 <CJK> +<U00025B05> /x8e/xaf/xb1/xea <CJK> +<U00025E39> /x8e/xaf/xb1/xeb <CJK> +<U00025E3A> /x8e/xaf/xb1/xec <CJK> +<U00025E3B> /x8e/xaf/xb1/xed <CJK> +<U00025E3C> /x8e/xaf/xb1/xee <CJK> +<U00025FB2> /x8e/xaf/xb1/xf1 <CJK> +<U00025FB3> /x8e/xaf/xb1/xf2 <CJK> +<U00025FB4> /x8e/xaf/xb1/xf3 <CJK> +<U00025FB5> /x8e/xaf/xb1/xf4 <CJK> +<U00025FB6> /x8e/xaf/xb1/xf5 <CJK> +<U00025FB7> /x8e/xaf/xb1/xf6 <CJK> +<U00025FB8> /x8e/xaf/xb1/xf7 <CJK> +<U7F3C> /x8e/xaf/xb1/xf8 <CJK> +<U000262A2> /x8e/xaf/xb1/xf9 <CJK> +<U00026361> /x8e/xaf/xb1/xfa <CJK> +<U00026362> /x8e/xaf/xb1/xfb <CJK> +<U00026414> /x8e/xaf/xb1/xfc <CJK> +<U000264EB> /x8e/xaf/xb1/xfe <CJK> +<U00026542> /x8e/xaf/xb2/xa1 <CJK> +<U00026548> /x8e/xaf/xb2/xa2 <CJK> +<U00026543> /x8e/xaf/xb2/xa4 <CJK> +<U0002654E> /x8e/xaf/xb2/xa5 <CJK> +<U00026544> /x8e/xaf/xb2/xa6 <CJK> +<U00026545> /x8e/xaf/xb2/xa7 <CJK> +<U000266B4> /x8e/xaf/xb2/xa8 <CJK> +<U000266B5> /x8e/xaf/xb2/xa9 <CJK> +<U000266B6> /x8e/xaf/xb2/xad <CJK> +<U000268E1> /x8e/xaf/xb2/xaf <CJK> +<U00026905> /x8e/xaf/xb2/xb0 <CJK> +<U8273> /x8e/xaf/xb2/xb2 <CJK> +<U00026B9A> /x8e/xaf/xb2/xb3 <CJK> +<U00026B9B> /x8e/xaf/xb2/xb5 <CJK> +<U00026B9C> /x8e/xaf/xb2/xb6 <CJK> +<U00026B9D> /x8e/xaf/xb2/xb7 <CJK> +<U00026B9E> /x8e/xaf/xb2/xb8 <CJK> +<U00026B9F> /x8e/xaf/xb2/xb9 <CJK> +<U00026BA0> /x8e/xaf/xb2/xbb <CJK> +<U00026BA1> /x8e/xaf/xb2/xbc <CJK> +<U00026BA2> /x8e/xaf/xb2/xbd <CJK> +<U00026BB5> /x8e/xaf/xb2/xbe <CJK> +<U00026BA3> /x8e/xaf/xb2/xbf <CJK> +<U00026BA4> /x8e/xaf/xb2/xc0 <CJK> +<U00026BA5> /x8e/xaf/xb2/xc2 <CJK> +<U00026BA6> /x8e/xaf/xb2/xc3 <CJK> +<U00026BA7> /x8e/xaf/xb2/xc4 <CJK> +<U00026BA8> /x8e/xaf/xb2/xc5 <CJK> +<U00026BAF> /x8e/xaf/xb2/xc6 <CJK> +<U00026BA9> /x8e/xaf/xb2/xc7 <CJK> +<U00026BAA> /x8e/xaf/xb2/xc8 <CJK> +<U00026BAB> /x8e/xaf/xb2/xc9 <CJK> +<U00026BAC> /x8e/xaf/xb2/xca <CJK> +<U00026BAD> /x8e/xaf/xb2/xcb <CJK> +<U00026BB3> /x8e/xaf/xb2/xcc <CJK> +<U000271A0> /x8e/xaf/xb2/xce <CJK> +<U00027256> /x8e/xaf/xb2/xcf <CJK> +<U00027634> /x8e/xaf/xb2/xd0 <CJK> +<U4627> /x8e/xaf/xb2/xd1 <CJK> +<U0002763C> /x8e/xaf/xb2/xd2 <CJK> +<U0002780C> /x8e/xaf/xb2/xd3 <CJK> +<U00027C3E> /x8e/xaf/xb2/xd5 <CJK> +<U00027CA3> /x8e/xaf/xb2/xd6 <CJK> +<U00027D30> /x8e/xaf/xb2/xd7 <CJK> +<U00027D31> /x8e/xaf/xb2/xd8 <CJK> +<U00027E97> /x8e/xaf/xb2/xd9 <CJK> +<U00027E98> /x8e/xaf/xb2/xda <CJK> +<U00027E99> /x8e/xaf/xb2/xdb <CJK> +<U00027E9A> /x8e/xaf/xb2/xdc <CJK> +<U00027E9B> /x8e/xaf/xb2/xdd <CJK> +<U000282B2> /x8e/xaf/xb2/xde <CJK> +<U000282AB> /x8e/xaf/xb2/xdf <CJK> +<U000282AC> /x8e/xaf/xb2/xe0 <CJK> +<U000286FC> /x8e/xaf/xb2/xe1 <CJK> +<U000286E8> /x8e/xaf/xb2/xe2 <CJK> +<U000286E9> /x8e/xaf/xb2/xe3 <CJK> +<U000286EA> /x8e/xaf/xb2/xe4 <CJK> +<U000287F1> /x8e/xaf/xb2/xe5 <CJK> +<U0002893F> /x8e/xaf/xb2/xe6 <CJK> +<U00028CCE> /x8e/xaf/xb2/xe7 <CJK> +<U00028E6D> /x8e/xaf/xb2/xe8 <CJK> +<U00028E6E> /x8e/xaf/xb2/xe9 <CJK> +<U00028E6F> /x8e/xaf/xb2/xea <CJK> +<U00028E70> /x8e/xaf/xb2/xeb <CJK> +<U00028E71> /x8e/xaf/xb2/xec <CJK> +<U00028E72> /x8e/xaf/xb2/xed <CJK> +<U00028E73> /x8e/xaf/xb2/xee <CJK> +<U96BE> /x8e/xaf/xb2/xef <CJK> +<U00029078> /x8e/xaf/xb2/xf0 <CJK> +<U0002983A> /x8e/xaf/xb2/xf1 <CJK> +<U00020167> /x8e/xaf/xb2/xf2 <CJK> +<U66FA> /x8e/xaf/xb2/xf3 <CJK> +<U00020164> /x8e/xaf/xb2/xf4 <CJK> +<U00020165> /x8e/xaf/xb2/xf5 <CJK> +<U00020307> /x8e/xaf/xb2/xf6 <CJK> +<U000202C4> /x8e/xaf/xb2/xf7 <CJK> +<U000202C5> /x8e/xaf/xb2/xf8 <CJK> +<U000202C6> /x8e/xaf/xb2/xf9 <CJK> +<U000202C7> /x8e/xaf/xb2/xfa <CJK> +<U000202C8> /x8e/xaf/xb2/xfb <CJK> +<U000202C9> /x8e/xaf/xb2/xfc <CJK> +<U000202E5> /x8e/xaf/xb2/xfd <CJK> +<U000202CA> /x8e/xaf/xb2/xfe <CJK> +<U000202CB> /x8e/xaf/xb3/xa1 <CJK> +<U000202CC> /x8e/xaf/xb3/xa3 <CJK> +<U000202CD> /x8e/xaf/xb3/xa4 <CJK> +<U000202CE> /x8e/xaf/xb3/xa5 <CJK> +<U000202CF> /x8e/xaf/xb3/xa6 <CJK> +<U000202D0> /x8e/xaf/xb3/xa7 <CJK> +<U00020497> /x8e/xaf/xb3/xa8 <CJK> +<U0002049A> /x8e/xaf/xb3/xa9 <CJK> +<U0002049B> /x8e/xaf/xb3/xaa <CJK> +<U000205EA> /x8e/xaf/xb3/xab <CJK> +<U000205EC> /x8e/xaf/xb3/xac <CJK> +<U000205ED> /x8e/xaf/xb3/xad <CJK> +<U000205F7> /x8e/xaf/xb3/xae <CJK> +<U000205EE> /x8e/xaf/xb3/xaf <CJK> +<U000205EF> /x8e/xaf/xb3/xb0 <CJK> +<U0002065B> /x8e/xaf/xb3/xb1 <CJK> +<U0002065C> /x8e/xaf/xb3/xb2 <CJK> +<U0002065D> /x8e/xaf/xb3/xb3 <CJK> +<U0002076D> /x8e/xaf/xb3/xb4 <CJK> +<U0002076E> /x8e/xaf/xb3/xb5 <CJK> +<U0002076F> /x8e/xaf/xb3/xb7 <CJK> +<U00020881> /x8e/xaf/xb3/xb8 <CJK> +<U00020882> /x8e/xaf/xb3/xb9 <CJK> +<U0002094F> /x8e/xaf/xb3/xba <CJK> +<U000209AD> /x8e/xaf/xb3/xbb <CJK> +<U0002870A> /x8e/xaf/xb3/xbc <CJK> +<U00020A7E> /x8e/xaf/xb3/xbd <CJK> +<U00020B69> /x8e/xaf/xb3/xbe <CJK> +<U00020D54> /x8e/xaf/xb3/xbf <CJK> +<U00020D55> /x8e/xaf/xb3/xc0 <CJK> +<U00020D56> /x8e/xaf/xb3/xc1 <CJK> +<U00020D57> /x8e/xaf/xb3/xc2 <CJK> +<U35AB> /x8e/xaf/xb3/xc3 <CJK> +<U00020D58> /x8e/xaf/xb3/xc4 <CJK> +<U00020D59> /x8e/xaf/xb3/xc5 <CJK> +<U00020D5A> /x8e/xaf/xb3/xc6 <CJK> +<U00020D5B> /x8e/xaf/xb3/xc7 <CJK> +<U00020D5C> /x8e/xaf/xb3/xc8 <CJK> +<U00020D5D> /x8e/xaf/xb3/xc9 <CJK> +<U00020D5E> /x8e/xaf/xb3/xcc <CJK> +<U00020D5F> /x8e/xaf/xb3/xcd <CJK> +<U0002133B> /x8e/xaf/xb3/xce <CJK> +<U00021336> /x8e/xaf/xb3/xcf <CJK> +<U0002133C> /x8e/xaf/xb3/xd0 <CJK> +<U0002133D> /x8e/xaf/xb3/xd1 <CJK> +<U0002133E> /x8e/xaf/xb3/xd2 <CJK> +<U0002133F> /x8e/xaf/xb3/xd3 <CJK> +<U00021340> /x8e/xaf/xb3/xd4 <CJK> +<U00021341> /x8e/xaf/xb3/xd5 <CJK> +<U00021342> /x8e/xaf/xb3/xd6 <CJK> +<U364B> /x8e/xaf/xb3/xd7 <CJK> +<U00021343> /x8e/xaf/xb3/xd8 <CJK> +<U00021344> /x8e/xaf/xb3/xd9 <CJK> +<U00021345> /x8e/xaf/xb3/xda <CJK> +<U00021337> /x8e/xaf/xb3/xdb <CJK> +<U00021346> /x8e/xaf/xb3/xde <CJK> +<U00021347> /x8e/xaf/xb3/xdf <CJK> +<U00021348> /x8e/xaf/xb3/xe0 <CJK> +<U00021349> /x8e/xaf/xb3/xe1 <CJK> +<U0002152D> /x8e/xaf/xb3/xe2 <CJK> +<U000215A5> /x8e/xaf/xb3/xe3 <CJK> +<U0002163D> /x8e/xaf/xb3/xe4 <CJK> +<U0002163F> /x8e/xaf/xb3/xe5 <CJK> +<U0002196E> /x8e/xaf/xb3/xe6 <CJK> +<U000217E7> /x8e/xaf/xb3/xe7 <CJK> +<U00021775> /x8e/xaf/xb3/xe8 <CJK> +<U00021776> /x8e/xaf/xb3/xe9 <CJK> +<U00021777> /x8e/xaf/xb3/xea <CJK> +<U00021778> /x8e/xaf/xb3/xeb <CJK> +<U00021779> /x8e/xaf/xb3/xec <CJK> +<U0002177A> /x8e/xaf/xb3/xed <CJK> +<U0002177B> /x8e/xaf/xb3/xee <CJK> +<U0002177C> /x8e/xaf/xb3/xef <CJK> +<U0002178E> /x8e/xaf/xb3/xf0 <CJK> +<U0002177D> /x8e/xaf/xb3/xf1 <CJK> +<U0002177E> /x8e/xaf/xb3/xf2 <CJK> +<U5A72> /x8e/xaf/xb3/xf3 <CJK> +<U0002177F> /x8e/xaf/xb3/xf4 <CJK> +<U00021780> /x8e/xaf/xb3/xf5 <CJK> +<U00021781> /x8e/xaf/xb3/xf6 <CJK> +<U00021782> /x8e/xaf/xb3/xf7 <CJK> +<U00021783> /x8e/xaf/xb3/xf8 <CJK> +<U00021784> /x8e/xaf/xb3/xf9 <CJK> +<U00021785> /x8e/xaf/xb3/xfa <CJK> +<U00021786> /x8e/xaf/xb3/xfb <CJK> +<U00021787> /x8e/xaf/xb3/xfc <CJK> +<U00021788> /x8e/xaf/xb3/xfd <CJK> +<U00021789> /x8e/xaf/xb3/xfe <CJK> +<U0002178A> /x8e/xaf/xb4/xa1 <CJK> +<U0002178B> /x8e/xaf/xb4/xa2 <CJK> +<U0002178C> /x8e/xaf/xb4/xa3 <CJK> +<U0002196F> /x8e/xaf/xb4/xa4 <CJK> +<U00021970> /x8e/xaf/xb4/xa5 <CJK> +<U00021971> /x8e/xaf/xb4/xa6 <CJK> +<U00021972> /x8e/xaf/xb4/xa7 <CJK> +<U00021A2A> /x8e/xaf/xb4/xa8 <CJK> +<U00021A2B> /x8e/xaf/xb4/xa9 <CJK> +<U00021A2C> /x8e/xaf/xb4/xaa <CJK> +<U00021A2D> /x8e/xaf/xb4/xab <CJK> +<U00021A2E> /x8e/xaf/xb4/xac <CJK> +<U00021A2F> /x8e/xaf/xb4/xad <CJK> +<U00021A30> /x8e/xaf/xb4/xae <CJK> +<U00021A31> /x8e/xaf/xb4/xaf <CJK> +<U00021B83> /x8e/xaf/xb4/xb0 <CJK> +<U00021C84> /x8e/xaf/xb4/xb1 <CJK> +<U00021C85> /x8e/xaf/xb4/xb2 <CJK> +<U00021C93> /x8e/xaf/xb4/xb3 <CJK> +<U00021C86> /x8e/xaf/xb4/xb5 <CJK> +<U00021C87> /x8e/xaf/xb4/xb6 <CJK> +<U00021C88> /x8e/xaf/xb4/xb7 <CJK> +<U00021C89> /x8e/xaf/xb4/xb8 <CJK> +<U00021C8A> /x8e/xaf/xb4/xb9 <CJK> +<U00021C8B> /x8e/xaf/xb4/xba <CJK> +<U00021E36> /x8e/xaf/xb4/xbb <CJK> +<U00021E38> /x8e/xaf/xb4/xbc <CJK> +<U00021E39> /x8e/xaf/xb4/xbd <CJK> +<U00021E3A> /x8e/xaf/xb4/xbe <CJK> +<U37E2> /x8e/xaf/xb4/xbf <CJK> +<U00021E3B> /x8e/xaf/xb4/xc0 <CJK> +<U00021E3C> /x8e/xaf/xb4/xc1 <CJK> +<U00021E3D> /x8e/xaf/xb4/xc2 <CJK> +<U00021E3E> /x8e/xaf/xb4/xc3 <CJK> +<U00021E3F> /x8e/xaf/xb4/xc4 <CJK> +<U00021E40> /x8e/xaf/xb4/xc6 <CJK> +<U00021E41> /x8e/xaf/xb4/xc7 <CJK> +<U00021E42> /x8e/xaf/xb4/xc8 <CJK> +<U000220DE> /x8e/xaf/xb4/xc9 <CJK> +<U000220DF> /x8e/xaf/xb4/xca <CJK> +<U000220E0> /x8e/xaf/xb4/xcb <CJK> +<U000220E1> /x8e/xaf/xb4/xcc <CJK> +<U0002224A> /x8e/xaf/xb4/xcd <CJK> +<U0002224B> /x8e/xaf/xb4/xce <CJK> +<U0002224C> /x8e/xaf/xb4/xcf <CJK> +<U0002224D> /x8e/xaf/xb4/xd0 <CJK> +<U0002224E> /x8e/xaf/xb4/xd1 <CJK> +<U0002224F> /x8e/xaf/xb4/xd2 <CJK> +<U00022250> /x8e/xaf/xb4/xd3 <CJK> +<U00022327> /x8e/xaf/xb4/xd4 <CJK> +<U000223F9> /x8e/xaf/xb4/xd5 <CJK> +<U000223FA> /x8e/xaf/xb4/xd6 <CJK> +<U000223FB> /x8e/xaf/xb4/xd7 <CJK> +<U00022498> /x8e/xaf/xb4/xd8 <CJK> +<U00022499> /x8e/xaf/xb4/xd9 <CJK> +<U0002249A> /x8e/xaf/xb4/xda <CJK> +<U0002251E> /x8e/xaf/xb4/xdc <CJK> +<U0002269E> /x8e/xaf/xb4/xdd <CJK> +<U000226F7> /x8e/xaf/xb4/xde <CJK> +<U0002269F> /x8e/xaf/xb4/xdf <CJK> +<U000226A0> /x8e/xaf/xb4/xe0 <CJK> +<U000226F0> /x8e/xaf/xb4/xe1 <CJK> +<U000226F8> /x8e/xaf/xb4/xe2 <CJK> +<U000226F9> /x8e/xaf/xb4/xe3 <CJK> +<U000226A1> /x8e/xaf/xb4/xe4 <CJK> +<U000226A2> /x8e/xaf/xb4/xe5 <CJK> +<U000226A3> /x8e/xaf/xb4/xe6 <CJK> +<U000226A4> /x8e/xaf/xb4/xe7 <CJK> +<U000226A5> /x8e/xaf/xb4/xe8 <CJK> +<U000226FA> /x8e/xaf/xb4/xe9 <CJK> +<U000226FB> /x8e/xaf/xb4/xea <CJK> +<U000226FC> /x8e/xaf/xb4/xeb <CJK> +<U000226FD> /x8e/xaf/xb4/xec <CJK> +<U000226FE> /x8e/xaf/xb4/xed <CJK> +<U0002271F> /x8e/xaf/xb4/xee <CJK> +<U000226FF> /x8e/xaf/xb4/xef <CJK> +<U00022700> /x8e/xaf/xb4/xf0 <CJK> +<U0002278C> /x8e/xaf/xb4/xf1 <CJK> +<U00022701> /x8e/xaf/xb4/xf2 <CJK> +<U000229C2> /x8e/xaf/xb4/xf3 <CJK> +<U000229C3> /x8e/xaf/xb4/xf4 <CJK> +<U000229D3> /x8e/xaf/xb4/xf6 <CJK> +<U00022A4E> /x8e/xaf/xb4/xf7 <CJK> +<U00022BAF> /x8e/xaf/xb4/xf8 <CJK> +<U00022BB0> /x8e/xaf/xb4/xf9 <CJK> +<U00022BB1> /x8e/xaf/xb4/xfa <CJK> +<U00022BB2> /x8e/xaf/xb4/xfb <CJK> +<U00022BB3> /x8e/xaf/xb4/xfc <CJK> +<U00022BC6> /x8e/xaf/xb4/xfd <CJK> +<U00022BB4> /x8e/xaf/xb4/xfe <CJK> +<U00022BB5> /x8e/xaf/xb5/xa2 <CJK> +<U00022BB6> /x8e/xaf/xb5/xa3 <CJK> +<U00022BB7> /x8e/xaf/xb5/xa4 <CJK> +<U00022BB8> /x8e/xaf/xb5/xa5 <CJK> +<U00022BB9> /x8e/xaf/xb5/xa6 <CJK> +<U00022BBA> /x8e/xaf/xb5/xa7 <CJK> +<U00022BBB> /x8e/xaf/xb5/xa8 <CJK> +<U00022BBC> /x8e/xaf/xb5/xa9 <CJK> +<U00022BBD> /x8e/xaf/xb5/xaa <CJK> +<U00022BBE> /x8e/xaf/xb5/xab <CJK> +<U00022BBF> /x8e/xaf/xb5/xac <CJK> +<U00022BC1> /x8e/xaf/xb5/xad <CJK> +<U00022BC0> /x8e/xaf/xb5/xae <CJK> +<U00022BC2> /x8e/xaf/xb5/xaf <CJK> +<U00022BC3> /x8e/xaf/xb5/xb0 <CJK> +<U00022F51> /x8e/xaf/xb5/xb1 <CJK> +<U00022F52> /x8e/xaf/xb5/xb2 <CJK> +<U00022F53> /x8e/xaf/xb5/xb3 <CJK> +<U00022F54> /x8e/xaf/xb5/xb4 <CJK> +<U00022F55> /x8e/xaf/xb5/xb5 <CJK> +<U0002305A> /x8e/xaf/xb5/xb6 <CJK> +<U00023050> /x8e/xaf/xb5/xb7 <CJK> +<U00023051> /x8e/xaf/xb5/xb8 <CJK> +<U00023078> /x8e/xaf/xb5/xb9 <CJK> +<U000230F8> /x8e/xaf/xb5/xba <CJK> +<U000230F9> /x8e/xaf/xb5/xbb <CJK> +<U000231C6> /x8e/xaf/xb5/xbc <CJK> +<U000231CB> /x8e/xaf/xb5/xbd <CJK> +<U000231CC> /x8e/xaf/xb5/xbe <CJK> +<U000231CD> /x8e/xaf/xb5/xbf <CJK> +<U000231CE> /x8e/xaf/xb5/xc0 <CJK> +<U000231CF> /x8e/xaf/xb5/xc1 <CJK> +<U000231D0> /x8e/xaf/xb5/xc2 <CJK> +<U000231D1> /x8e/xaf/xb5/xc3 <CJK> +<U000231D2> /x8e/xaf/xb5/xc4 <CJK> +<U000231D3> /x8e/xaf/xb5/xc5 <CJK> +<U000231D4> /x8e/xaf/xb5/xc6 <CJK> +<U000231D5> /x8e/xaf/xb5/xc7 <CJK> +<U00023337> /x8e/xaf/xb5/xc9 <CJK> +<U00023338> /x8e/xaf/xb5/xca <CJK> +<U00023373> /x8e/xaf/xb5/xcb <CJK> +<U00023490> /x8e/xaf/xb5/xcc <CJK> +<U00023491> /x8e/xaf/xb5/xcd <CJK> +<U000234BF> /x8e/xaf/xb5/xce <CJK> +<U00023492> /x8e/xaf/xb5/xcf <CJK> +<U00023493> /x8e/xaf/xb5/xd0 <CJK> +<U00023494> /x8e/xaf/xb5/xd1 <CJK> +<U00023495> /x8e/xaf/xb5/xd2 <CJK> +<U00023496> /x8e/xaf/xb5/xd3 <CJK> +<U00023497> /x8e/xaf/xb5/xd4 <CJK> +<U00023498> /x8e/xaf/xb5/xd5 <CJK> +<U00023499> /x8e/xaf/xb5/xd6 <CJK> +<U68BD> /x8e/xaf/xb5/xd7 <CJK> +<U0002349A> /x8e/xaf/xb5/xd8 <CJK> +<U0002349B> /x8e/xaf/xb5/xd9 <CJK> +<U0002349C> /x8e/xaf/xb5/xda <CJK> +<U0002349D> /x8e/xaf/xb5/xdb <CJK> +<U0002349E> /x8e/xaf/xb5/xdc <CJK> +<U0002349F> /x8e/xaf/xb5/xdd <CJK> +<U000234A0> /x8e/xaf/xb5/xde <CJK> +<U000234A1> /x8e/xaf/xb5/xdf <CJK> +<U000234A2> /x8e/xaf/xb5/xe0 <CJK> +<U000234A3> /x8e/xaf/xb5/xe1 <CJK> +<U000234A4> /x8e/xaf/xb5/xe2 <CJK> +<U000234A5> /x8e/xaf/xb5/xe3 <CJK> +<U000234A6> /x8e/xaf/xb5/xe5 <CJK> +<U000234A7> /x8e/xaf/xb5/xe6 <CJK> +<U000238BF> /x8e/xaf/xb5/xe7 <CJK> +<U000238C0> /x8e/xaf/xb5/xe8 <CJK> +<U000238C1> /x8e/xaf/xb5/xe9 <CJK> +<U000238C2> /x8e/xaf/xb5/xea <CJK> +<U000238C3> /x8e/xaf/xb5/xeb <CJK> +<U000238C4> /x8e/xaf/xb5/xec <CJK> +<U000238C5> /x8e/xaf/xb5/xed <CJK> +<U000238C6> /x8e/xaf/xb5/xee <CJK> +<U00023975> /x8e/xaf/xb5/xef <CJK> +<U00023A43> /x8e/xaf/xb5/xf0 <CJK> +<U00023A12> /x8e/xaf/xb5/xf1 <CJK> +<U00023A9F> /x8e/xaf/xb5/xf2 <CJK> +<U00023A91> /x8e/xaf/xb5/xf3 <CJK> +<U00023A92> /x8e/xaf/xb5/xf5 <CJK> +<U00023A93> /x8e/xaf/xb5/xf6 <CJK> +<U00023A94> /x8e/xaf/xb5/xf7 <CJK> +<U00023B7E> /x8e/xaf/xb5/xf8 <CJK> +<U00023B7F> /x8e/xaf/xb5/xf9 <CJK> +<U00023B80> /x8e/xaf/xb5/xfa <CJK> +<U00023B81> /x8e/xaf/xb5/xfb <CJK> +<U00023B82> /x8e/xaf/xb5/xfc <CJK> +<U00023C4C> /x8e/xaf/xb5/xfd <CJK> +<U00023C63> /x8e/xaf/xb5/xfe <CJK> +<U00023DC0> /x8e/xaf/xb6/xa1 <CJK> +<U00023DC1> /x8e/xaf/xb6/xa2 <CJK> +<U00023DC2> /x8e/xaf/xb6/xa3 <CJK> +<U0002423A> /x8e/xaf/xb6/xa4 <CJK> +<U00023DC3> /x8e/xaf/xb6/xa5 <CJK> +<U00023DC4> /x8e/xaf/xb6/xa6 <CJK> +<U00023DC5> /x8e/xaf/xb6/xa7 <CJK> +<U00023DC6> /x8e/xaf/xb6/xa8 <CJK> +<U6E15> /x8e/xaf/xb6/xa9 <CJK> +<U00023DC7> /x8e/xaf/xb6/xaa <CJK> +<U00023DC8> /x8e/xaf/xb6/xac <CJK> +<U00023D73> /x8e/xaf/xb6/xad <CJK> +<U00023DC9> /x8e/xaf/xb6/xae <CJK> +<U00023DCA> /x8e/xaf/xb6/xaf <CJK> +<U00023DCB> /x8e/xaf/xb6/xb0 <CJK> +<U00023DCC> /x8e/xaf/xb6/xb1 <CJK> +<U00023DCD> /x8e/xaf/xb6/xb2 <CJK> +<U00023DCE> /x8e/xaf/xb6/xb6 <CJK> +<U00023DCF> /x8e/xaf/xb6/xb7 <CJK> +<U00023DD0> /x8e/xaf/xb6/xb8 <CJK> +<U00023DD1> /x8e/xaf/xb6/xb9 <CJK> +<U00023DD2> /x8e/xaf/xb6/xba <CJK> +<U00023DD3> /x8e/xaf/xb6/xbb <CJK> +<U00023DD4> /x8e/xaf/xb6/xbc <CJK> +<U00023DD5> /x8e/xaf/xb6/xbd <CJK> +<U0002423B> /x8e/xaf/xb6/xbe <CJK> +<U0002423C> /x8e/xaf/xb6/xbf <CJK> +<U0002423D> /x8e/xaf/xb6/xc0 <CJK> +<U0002423E> /x8e/xaf/xb6/xc1 <CJK> +<U0002423F> /x8e/xaf/xb6/xc3 <CJK> +<U00024240> /x8e/xaf/xb6/xc4 <CJK> +<U00024241> /x8e/xaf/xb6/xc5 <CJK> +<U00024242> /x8e/xaf/xb6/xc6 <CJK> +<U00024243> /x8e/xaf/xb6/xc7 <CJK> +<U3DC1> /x8e/xaf/xb6/xc8 <CJK> +<U00024244> /x8e/xaf/xb6/xc9 <CJK> +<U00024245> /x8e/xaf/xb6/xca <CJK> +<U00024259> /x8e/xaf/xb6/xcb <CJK> +<U00024246> /x8e/xaf/xb6/xcc <CJK> +<U00024247> /x8e/xaf/xb6/xcd <CJK> +<U00024248> /x8e/xaf/xb6/xce <CJK> +<U00024249> /x8e/xaf/xb6/xd0 <CJK> +<U00024513> /x8e/xaf/xb6/xd1 <CJK> +<U00024582> /x8e/xaf/xb6/xd2 <CJK> +<U00024583> /x8e/xaf/xb6/xd3 <CJK> +<U00024666> /x8e/xaf/xb6/xd4 <CJK> +<U00024667> /x8e/xaf/xb6/xd5 <CJK> +<U00024965> /x8e/xaf/xb6/xd6 <CJK> +<U7413> /x8e/xaf/xb6/xd7 <CJK> +<U00024966> /x8e/xaf/xb6/xd8 <CJK> +<U00024975> /x8e/xaf/xb6/xda <CJK> +<U00024974> /x8e/xaf/xb6/xdb <CJK> +<U00024967> /x8e/xaf/xb6/xdc <CJK> +<U0002496D> /x8e/xaf/xb6/xdd <CJK> +<U00024976> /x8e/xaf/xb6/xde <CJK> +<U00024968> /x8e/xaf/xb6/xdf <CJK> +<U00024969> /x8e/xaf/xb6/xe0 <CJK> +<U0002496A> /x8e/xaf/xb6/xe1 <CJK> +<U0002496B> /x8e/xaf/xb6/xe2 <CJK> +<U0002494F> /x8e/xaf/xb6/xe3 <CJK> +<U0002496C> /x8e/xaf/xb6/xe4 <CJK> +<U00024AF8> /x8e/xaf/xb6/xe5 <CJK> +<U00024B45> /x8e/xaf/xb6/xe6 <CJK> +<U74F8> /x8e/xaf/xb6/xe7 <CJK> +<U00024B46> /x8e/xaf/xb6/xe8 <CJK> +<U00024BE4> /x8e/xaf/xb6/xe9 <CJK> +<U00024C85> /x8e/xaf/xb6/xea <CJK> +<U00024C6F> /x8e/xaf/xb6/xeb <CJK> +<U00024C70> /x8e/xaf/xb6/xec <CJK> +<U00024D82> /x8e/xaf/xb6/xed <CJK> +<U00024D83> /x8e/xaf/xb6/xee <CJK> +<U00024D84> /x8e/xaf/xb6/xef <CJK> +<U00024D8B> /x8e/xaf/xb6/xf0 <CJK> +<U00024F2D> /x8e/xaf/xb6/xf1 <CJK> +<U00024F68> /x8e/xaf/xb6/xf2 <CJK> +<U00024F69> /x8e/xaf/xb6/xf3 <CJK> +<U00024F77> /x8e/xaf/xb6/xf4 <CJK> +<U00024F64> /x8e/xaf/xb6/xf5 <CJK> +<U00024F6A> /x8e/xaf/xb6/xf6 <CJK> +<U00024FF2> /x8e/xaf/xb6/xf8 <CJK> +<U00024FE2> /x8e/xaf/xb6/xf9 <CJK> +<U00025063> /x8e/xaf/xb6/xfa <CJK> +<U00025064> /x8e/xaf/xb6/xfb <CJK> +<U00025065> /x8e/xaf/xb6/xfc <CJK> +<U00025066> /x8e/xaf/xb6/xfd <CJK> +<U7B3D> /x8e/xaf/xb6/xfe <CJK> +<U00025067> /x8e/xaf/xb7/xa1 <CJK> +<U00025068> /x8e/xaf/xb7/xa2 <CJK> +<U76D8> /x8e/xaf/xb7/xa3 <CJK> +<U00025172> /x8e/xaf/xb7/xa5 <CJK> +<U0002517D> /x8e/xaf/xb7/xa6 <CJK> +<U00025369> /x8e/xaf/xb7/xa7 <CJK> +<U00025484> /x8e/xaf/xb7/xa8 <CJK> +<U00025486> /x8e/xaf/xb7/xa9 <CJK> +<U00025487> /x8e/xaf/xb7/xaa <CJK> +<U00025488> /x8e/xaf/xb7/xab <CJK> +<U0002549E> /x8e/xaf/xb7/xac <CJK> +<U00025489> /x8e/xaf/xb7/xae <CJK> +<U0002548A> /x8e/xaf/xb7/xaf <CJK> +<U00025496> /x8e/xaf/xb7/xb0 <CJK> +<U0002548B> /x8e/xaf/xb7/xb1 <CJK> +<U0002548C> /x8e/xaf/xb7/xb2 <CJK> +<U0002548D> /x8e/xaf/xb7/xb3 <CJK> +<U00025679> /x8e/xaf/xb7/xb4 <CJK> +<U00025683> /x8e/xaf/xb7/xb5 <CJK> +<U0002567A> /x8e/xaf/xb7/xb6 <CJK> +<U0002565D> /x8e/xaf/xb7/xb7 <CJK> +<U0002567B> /x8e/xaf/xb7/xb8 <CJK> +<U0002579F> /x8e/xaf/xb7/xba <CJK> +<U000257A0> /x8e/xaf/xb7/xbc <CJK> +<U000257A1> /x8e/xaf/xb7/xbd <CJK> +<U000257A2> /x8e/xaf/xb7/xbe <CJK> +<U79FC> /x8e/xaf/xb7/xbf <CJK> +<U0002596A> /x8e/xaf/xb7/xc0 <CJK> +<U0002596B> /x8e/xaf/xb7/xc1 <CJK> +<U0002596C> /x8e/xaf/xb7/xc2 <CJK> +<U0002596D> /x8e/xaf/xb7/xc3 <CJK> +<U0002596E> /x8e/xaf/xb7/xc4 <CJK> +<U00025A78> /x8e/xaf/xb7/xc5 <CJK> +<U00025A79> /x8e/xaf/xb7/xc7 <CJK> +<U00025A7C> /x8e/xaf/xb7/xc8 <CJK> +<U00025B21> /x8e/xaf/xb7/xc9 <CJK> +<U00025B22> /x8e/xaf/xb7/xca <CJK> +<U00025B23> /x8e/xaf/xb7/xcb <CJK> +<U00025B24> /x8e/xaf/xb7/xcc <CJK> +<U7B39> /x8e/xaf/xb7/xcd <CJK> +<U00025B25> /x8e/xaf/xb7/xce <CJK> +<U00025B26> /x8e/xaf/xb7/xcf <CJK> +<U00025E51> /x8e/xaf/xb7/xd0 <CJK> +<U00025E52> /x8e/xaf/xb7/xd1 <CJK> +<U00025E56> /x8e/xaf/xb7/xd2 <CJK> +<U7D4B> /x8e/xaf/xb7/xd4 <CJK> +<U00025FE1> /x8e/xaf/xb7/xd5 <CJK> +<U00025FD6> /x8e/xaf/xb7/xd8 <CJK> +<U00025FD7> /x8e/xaf/xb7/xd9 <CJK> +<U00025FD8> /x8e/xaf/xb7/xda <CJK> +<U00025FD9> /x8e/xaf/xb7/xdb <CJK> +<U000262B5> /x8e/xaf/xb7/xdc <CJK> +<U0002636C> /x8e/xaf/xb7/xdd <CJK> +<U0002636F> /x8e/xaf/xb7/xde <CJK> +<U00026370> /x8e/xaf/xb7/xdf <CJK> +<U000264BC> /x8e/xaf/xb7/xe0 <CJK> +<U000264BD> /x8e/xaf/xb7/xe1 <CJK> +<U000264ED> /x8e/xaf/xb7/xe2 <CJK> +<U0002655B> /x8e/xaf/xb7/xe3 <CJK> +<U0002655C> /x8e/xaf/xb7/xe4 <CJK> +<U0002655D> /x8e/xaf/xb7/xe5 <CJK> +<U0002655E> /x8e/xaf/xb7/xe6 <CJK> +<U00026686> /x8e/xaf/xb7/xe7 <CJK> +<U00026687> /x8e/xaf/xb7/xe8 <CJK> +<U000266ED> /x8e/xaf/xb7/xe9 <CJK> +<U000266EE> /x8e/xaf/xb7/xeb <CJK> +<U0002690E> /x8e/xaf/xb7/xed <CJK> +<U0002690F> /x8e/xaf/xb7/xee <CJK> +<U00026A2D> /x8e/xaf/xb7/xf0 <CJK> +<U00026A2A> /x8e/xaf/xb7/xf1 <CJK> +<U00026A2E> /x8e/xaf/xb7/xf2 <CJK> +<U00026ACC> /x8e/xaf/xb7/xf3 <CJK> +<U00026BF9> /x8e/xaf/xb7/xf4 <CJK> +<U00026BFA> /x8e/xaf/xb7/xf5 <CJK> +<U00026BFB> /x8e/xaf/xb7/xf6 <CJK> +<U00026BFC> /x8e/xaf/xb7/xf7 <CJK> +<U83B9> /x8e/xaf/xb7/xf8 <CJK> +<U00026BFD> /x8e/xaf/xb7/xf9 <CJK> +<U00026C1B> /x8e/xaf/xb7/xfa <CJK> +<U00026BFE> /x8e/xaf/xb7/xfb <CJK> +<U00026BFF> /x8e/xaf/xb7/xfc <CJK> +<U00026C00> /x8e/xaf/xb7/xfd <CJK> +<U00026C01> /x8e/xaf/xb7/xfe <CJK> +<U00026C02> /x8e/xaf/xb8/xa1 <CJK> +<U00026C03> /x8e/xaf/xb8/xa2 <CJK> +<U00026C21> /x8e/xaf/xb8/xa3 <CJK> +<U00026C04> /x8e/xaf/xb8/xa4 <CJK> +<U00026C05> /x8e/xaf/xb8/xa5 <CJK> +<U00026C06> /x8e/xaf/xb8/xa6 <CJK> +<U00026C07> /x8e/xaf/xb8/xa7 <CJK> +<U00026C08> /x8e/xaf/xb8/xa8 <CJK> +<U00026C09> /x8e/xaf/xb8/xa9 <CJK> +<U00026C0A> /x8e/xaf/xb8/xaa <CJK> +<U00026C0B> /x8e/xaf/xb8/xab <CJK> +<U00026C0C> /x8e/xaf/xb8/xac <CJK> +<U00026C0D> /x8e/xaf/xb8/xad <CJK> +<U00026C0E> /x8e/xaf/xb8/xae <CJK> +<U00026C0F> /x8e/xaf/xb8/xaf <CJK> +<U00026C10> /x8e/xaf/xb8/xb0 <CJK> +<U00026C11> /x8e/xaf/xb8/xb1 <CJK> +<U00026C12> /x8e/xaf/xb8/xb2 <CJK> +<U00026C13> /x8e/xaf/xb8/xb3 <CJK> +<U00026C14> /x8e/xaf/xb8/xb4 <CJK> +<U00026C15> /x8e/xaf/xb8/xb5 <CJK> +<U0002727B> /x8e/xaf/xb8/xb6 <CJK> +<U0002727C> /x8e/xaf/xb8/xb7 <CJK> +<U0002727D> /x8e/xaf/xb8/xb8 <CJK> +<U0002727E> /x8e/xaf/xb8/xb9 <CJK> +<U86CF> /x8e/xaf/xb8/xba <CJK> +<U0002727F> /x8e/xaf/xb8/xbb <CJK> +<U00027280> /x8e/xaf/xb8/xbc <CJK> +<U00027266> /x8e/xaf/xb8/xbd <CJK> +<U00027281> /x8e/xaf/xb8/xbe <CJK> +<U00027282> /x8e/xaf/xb8/xbf <CJK> +<U00027283> /x8e/xaf/xb8/xc0 <CJK> +<U000275B2> /x8e/xaf/xb8/xc1 <CJK> +<U0002767F> /x8e/xaf/xb8/xc3 <CJK> +<U00027672> /x8e/xaf/xb8/xc4 <CJK> +<U0002765A> /x8e/xaf/xb8/xc5 <CJK> +<U000277EB> /x8e/xaf/xb8/xc6 <CJK> +<U00027815> /x8e/xaf/xb8/xc7 <CJK> +<U00027816> /x8e/xaf/xb8/xc9 <CJK> +<U00027817> /x8e/xaf/xb8/xcb <CJK> +<U000278C5> /x8e/xaf/xb8/xcd <CJK> +<U000278C6> /x8e/xaf/xb8/xce <CJK> +<U000278C7> /x8e/xaf/xb8/xcf <CJK> +<U00027988> /x8e/xaf/xb8/xd0 <CJK> +<U00027989> /x8e/xaf/xb8/xd1 <CJK> +<U0002798A> /x8e/xaf/xb8/xd3 <CJK> +<U0002798B> /x8e/xaf/xb8/xd4 <CJK> +<U0002798C> /x8e/xaf/xb8/xd5 <CJK> +<U0002798D> /x8e/xaf/xb8/xd6 <CJK> +<U00027BDF> /x8e/xaf/xb8/xd7 <CJK> +<U00027D3B> /x8e/xaf/xb8/xd9 <CJK> +<U00027D3C> /x8e/xaf/xb8/xda <CJK> +<U00027D3D> /x8e/xaf/xb8/xdb <CJK> +<U00027D3E> /x8e/xaf/xb8/xdc <CJK> +<U00027D3F> /x8e/xaf/xb8/xdd <CJK> +<U00027D40> /x8e/xaf/xb8/xde <CJK> +<U00027D41> /x8e/xaf/xb8/xdf <CJK> +<U00027D42> /x8e/xaf/xb8/xe0 <CJK> +<U00027E5C> /x8e/xaf/xb8/xe1 <CJK> +<U00027EAF> /x8e/xaf/xb8/xe2 <CJK> +<U00027EA9> /x8e/xaf/xb8/xe3 <CJK> +<U00027EAA> /x8e/xaf/xb8/xe4 <CJK> +<U00027EAB> /x8e/xaf/xb8/xe5 <CJK> +<U00027EAC> /x8e/xaf/xb8/xe6 <CJK> +<U00027EB5> /x8e/xaf/xb8/xe7 <CJK> +<U00027EAD> /x8e/xaf/xb8/xe8 <CJK> +<U00027EAE> /x8e/xaf/xb8/xe9 <CJK> +<U00027FE2> /x8e/xaf/xb8/xea <CJK> +<U00028224> /x8e/xaf/xb8/xeb <CJK> +<U8EAE> /x8e/xaf/xb8/xec <CJK> +<U000282C4> /x8e/xaf/xb8/xed <CJK> +<U000284EA> /x8e/xaf/xb8/xef <CJK> +<U000284D3> /x8e/xaf/xb8/xf0 <CJK> +<U000284D4> /x8e/xaf/xb8/xf1 <CJK> +<U000284D5> /x8e/xaf/xb8/xf2 <CJK> +<U00028686> /x8e/xaf/xb8/xf3 <CJK> +<U00028687> /x8e/xaf/xb8/xf5 <CJK> +<U000286FD> /x8e/xaf/xb8/xf6 <CJK> +<U00028805> /x8e/xaf/xb8/xf7 <CJK> +<U00028949> /x8e/xaf/xb8/xf8 <CJK> +<U00028C5F> /x8e/xaf/xb8/xf9 <CJK> +<U00028CD3> /x8e/xaf/xb8/xfa <CJK> +<U00028CD5> /x8e/xaf/xb8/xfb <CJK> +<U00028E8A> /x8e/xaf/xb8/xfc <CJK> +<U00028E8B> /x8e/xaf/xb8/xfd <CJK> +<U00028E8C> /x8e/xaf/xb8/xfe <CJK> +<U00028E8D> /x8e/xaf/xb9/xa1 <CJK> +<U00028E8E> /x8e/xaf/xb9/xa2 <CJK> +<U00028E8F> /x8e/xaf/xb9/xa3 <CJK> +<U00028E90> /x8e/xaf/xb9/xa4 <CJK> +<U00028E91> /x8e/xaf/xb9/xa5 <CJK> +<U00028E92> /x8e/xaf/xb9/xa6 <CJK> +<U00028E93> /x8e/xaf/xb9/xa7 <CJK> +<U0002907D> /x8e/xaf/xb9/xa8 <CJK> +<U0002907E> /x8e/xaf/xb9/xa9 <CJK> +<U96EB> /x8e/xaf/xb9/xaa <CJK> +<U000291EC> /x8e/xaf/xb9/xad <CJK> +<U0002925B> /x8e/xaf/xb9/xae <CJK> +<U00029C87> /x8e/xaf/xb9/xaf <CJK> +<U00029C86> /x8e/xaf/xb9/xb0 <CJK> +<U00020046> /x8e/xaf/xb9/xb2 <CJK> +<U00020047> /x8e/xaf/xb9/xb3 <CJK> +<U00020102> /x8e/xaf/xb9/xb4 <CJK> +<U0002016D> /x8e/xaf/xb9/xb5 <CJK> +<U0002016E> /x8e/xaf/xb9/xb6 <CJK> +<U0002016F> /x8e/xaf/xb9/xb7 <CJK> +<U0002030D> /x8e/xaf/xb9/xb8 <CJK> +<U0002030E> /x8e/xaf/xb9/xb9 <CJK> +<U0002030F> /x8e/xaf/xb9/xba <CJK> +<U00020310> /x8e/xaf/xb9/xbb <CJK> +<U00020311> /x8e/xaf/xb9/xbc <CJK> +<U00020312> /x8e/xaf/xb9/xbd <CJK> +<U00020313> /x8e/xaf/xb9/xbe <CJK> +<U00020314> /x8e/xaf/xb9/xbf <CJK> +<U0002049F> /x8e/xaf/xb9/xc0 <CJK> +<U000204A0> /x8e/xaf/xb9/xc1 <CJK> +<U000204A1> /x8e/xaf/xb9/xc2 <CJK> +<U000204A3> /x8e/xaf/xb9/xc3 <CJK> +<U00020521> /x8e/xaf/xb9/xc4 <CJK> +<U00020522> /x8e/xaf/xb9/xc5 <CJK> +<U0002337C> /x8e/xaf/xb9/xc6 <CJK> +<U00020595> /x8e/xaf/xb9/xc7 <CJK> +<U00020596> /x8e/xaf/xb9/xc8 <CJK> +<U00020661> /x8e/xaf/xb9/xc9 <CJK> +<U00020667> /x8e/xaf/xb9/xca <CJK> +<U00020791> /x8e/xaf/xb9/xcb <CJK> +<U00020792> /x8e/xaf/xb9/xcc <CJK> +<U00020793> /x8e/xaf/xb9/xcd <CJK> +<U00020794> /x8e/xaf/xb9/xce <CJK> +<U0002088A> /x8e/xaf/xb9/xcf <CJK> +<U0002088B> /x8e/xaf/xb9/xd0 <CJK> +<U000208F7> /x8e/xaf/xb9/xd1 <CJK> +<U00020924> /x8e/xaf/xb9/xd2 <CJK> +<U000209B0> /x8e/xaf/xb9/xd3 <CJK> +<U000209B1> /x8e/xaf/xb9/xd4 <CJK> +<U00020A8E> /x8e/xaf/xb9/xd5 <CJK> +<U00020B04> /x8e/xaf/xb9/xd6 <CJK> +<U00020B6A> /x8e/xaf/xb9/xd7 <CJK> +<U00020B6B> /x8e/xaf/xb9/xd8 <CJK> +<U00020B6C> /x8e/xaf/xb9/xd9 <CJK> +<U00020B6D> /x8e/xaf/xb9/xda <CJK> +<U00020DE8> /x8e/xaf/xb9/xdb <CJK> +<U00020E0C> /x8e/xaf/xb9/xdc <CJK> +<U00020DE9> /x8e/xaf/xb9/xdd <CJK> +<U00020DEA> /x8e/xaf/xb9/xde <CJK> +<U00020E0D> /x8e/xaf/xb9/xdf <CJK> +<U00020DEB> /x8e/xaf/xb9/xe1 <CJK> +<U00020DEC> /x8e/xaf/xb9/xe2 <CJK> +<U00020DED> /x8e/xaf/xb9/xe3 <CJK> +<U00020DEE> /x8e/xaf/xb9/xe4 <CJK> +<U00020DEF> /x8e/xaf/xb9/xe5 <CJK> +<U00020DF0> /x8e/xaf/xb9/xe6 <CJK> +<U00020DF1> /x8e/xaf/xb9/xe7 <CJK> +<U00020DF2> /x8e/xaf/xb9/xe8 <CJK> +<U00020E16> /x8e/xaf/xb9/xe9 <CJK> +<U00020DF3> /x8e/xaf/xb9/xea <CJK> +<U00020E04> /x8e/xaf/xb9/xeb <CJK> +<U00020E1D> /x8e/xaf/xb9/xec <CJK> +<U00020DF4> /x8e/xaf/xb9/xed <CJK> +<U00020DF5> /x8e/xaf/xb9/xee <CJK> +<U00020DF6> /x8e/xaf/xb9/xef <CJK> +<U00020DF7> /x8e/xaf/xb9/xf0 <CJK> +<U55B0> /x8e/xaf/xb9/xf1 <CJK> +<U00021202> /x8e/xaf/xb9/xf2 <CJK> +<U00021203> /x8e/xaf/xb9/xf3 <CJK> +<U00021204> /x8e/xaf/xb9/xf4 <CJK> +<U0002139A> /x8e/xaf/xb9/xf5 <CJK> +<U0002137C> /x8e/xaf/xb9/xf6 <CJK> +<U000213C5> /x8e/xaf/xb9/xf7 <CJK> +<U0002137D> /x8e/xaf/xb9/xf8 <CJK> +<U0002137E> /x8e/xaf/xb9/xf9 <CJK> +<U0002137F> /x8e/xaf/xb9/xfa <CJK> +<U00021380> /x8e/xaf/xb9/xfb <CJK> +<U00021381> /x8e/xaf/xb9/xfc <CJK> +<U5840> /x8e/xaf/xb9/xfd <CJK> +<U5842> /x8e/xaf/xb9/xfe <CJK> +<U00021382> /x8e/xaf/xba/xa1 <CJK> +<U00021383> /x8e/xaf/xba/xa2 <CJK> +<U00021384> /x8e/xaf/xba/xa3 <CJK> +<U00021385> /x8e/xaf/xba/xa4 <CJK> +<U00021386> /x8e/xaf/xba/xa5 <CJK> +<U00021387> /x8e/xaf/xba/xa6 <CJK> +<U000215AE> /x8e/xaf/xba/xa7 <CJK> +<U0002164D> /x8e/xaf/xba/xa8 <CJK> +<U000217B0> /x8e/xaf/xba/xa9 <CJK> +<U000217DC> /x8e/xaf/xba/xaa <CJK> +<U000217B6> /x8e/xaf/xba/xab <CJK> +<U000217B7> /x8e/xaf/xba/xac <CJK> +<U000217B8> /x8e/xaf/xba/xad <CJK> +<U000217B9> /x8e/xaf/xba/xae <CJK> +<U000217BA> /x8e/xaf/xba/xaf <CJK> +<U000217BB> /x8e/xaf/xba/xb0 <CJK> +<U000217DB> /x8e/xaf/xba/xb1 <CJK> +<U000217BC> /x8e/xaf/xba/xb2 <CJK> +<U000217BD> /x8e/xaf/xba/xb3 <CJK> +<U000217BE> /x8e/xaf/xba/xb4 <CJK> +<U000217BF> /x8e/xaf/xba/xb6 <CJK> +<U000217C0> /x8e/xaf/xba/xb7 <CJK> +<U000217C1> /x8e/xaf/xba/xb8 <CJK> +<U000217C2> /x8e/xaf/xba/xb9 <CJK> +<U000217C3> /x8e/xaf/xba/xba <CJK> +<U000217CE> /x8e/xaf/xba/xbb <CJK> +<U3701> /x8e/xaf/xba/xbc <CJK> +<U000217D9> /x8e/xaf/xba/xbd <CJK> +<U000217C4> /x8e/xaf/xba/xbe <CJK> +<U000217C5> /x8e/xaf/xba/xbf <CJK> +<U000217DA> /x8e/xaf/xba/xc0 <CJK> +<U000217C6> /x8e/xaf/xba/xc1 <CJK> +<U000217C7> /x8e/xaf/xba/xc2 <CJK> +<U000217C8> /x8e/xaf/xba/xc3 <CJK> +<U000217C9> /x8e/xaf/xba/xc4 <CJK> +<U000217CA> /x8e/xaf/xba/xc5 <CJK> +<U0002197E> /x8e/xaf/xba/xc6 <CJK> +<U0002197B> /x8e/xaf/xba/xc7 <CJK> +<U00021A4E> /x8e/xaf/xba/xc8 <CJK> +<U00021A4F> /x8e/xaf/xba/xc9 <CJK> +<U00021A50> /x8e/xaf/xba/xca <CJK> +<U00021A51> /x8e/xaf/xba/xcb <CJK> +<U00021A52> /x8e/xaf/xba/xcc <CJK> +<U00021A53> /x8e/xaf/xba/xcd <CJK> +<U00021A54> /x8e/xaf/xba/xce <CJK> +<U00021A55> /x8e/xaf/xba/xcf <CJK> +<U00021B8F> /x8e/xaf/xba/xd0 <CJK> +<U00021BFC> /x8e/xaf/xba/xd1 <CJK> +<U00021CA6> /x8e/xaf/xba/xd2 <CJK> +<U00021CA7> /x8e/xaf/xba/xd3 <CJK> +<U00021CA8> /x8e/xaf/xba/xd4 <CJK> +<U00021D23> /x8e/xaf/xba/xd5 <CJK> +<U00021E8B> /x8e/xaf/xba/xd6 <CJK> +<U00021E8C> /x8e/xaf/xba/xd8 <CJK> +<U00021E8D> /x8e/xaf/xba/xd9 <CJK> +<U00021E8E> /x8e/xaf/xba/xda <CJK> +<U00021E8F> /x8e/xaf/xba/xdb <CJK> +<U00021EA4> /x8e/xaf/xba/xdc <CJK> +<U00020599> /x8e/xaf/xba/xdd <CJK> +<U00022024> /x8e/xaf/xba/xde <CJK> +<U00022046> /x8e/xaf/xba/xdf <CJK> +<U00022047> /x8e/xaf/xba/xe0 <CJK> +<U00022048> /x8e/xaf/xba/xe1 <CJK> +<U000220FD> /x8e/xaf/xba/xe2 <CJK> +<U000220FE> /x8e/xaf/xba/xe3 <CJK> +<U0002226E> /x8e/xaf/xba/xe5 <CJK> +<U0002227C> /x8e/xaf/xba/xe6 <CJK> +<U0002226F> /x8e/xaf/xba/xe7 <CJK> +<U00022270> /x8e/xaf/xba/xe8 <CJK> +<U00022271> /x8e/xaf/xba/xe9 <CJK> +<U00022272> /x8e/xaf/xba/xea <CJK> +<U00022329> /x8e/xaf/xba/xeb <CJK> +<U0002232A> /x8e/xaf/xba/xec <CJK> +<U0002235F> /x8e/xaf/xba/xed <CJK> +<U000224A2> /x8e/xaf/xba/xee <CJK> +<U00022530> /x8e/xaf/xba/xef <CJK> +<U0002252B> /x8e/xaf/xba/xf0 <CJK> +<U00022761> /x8e/xaf/xba/xf1 <CJK> +<U00022702> /x8e/xaf/xba/xf2 <CJK> +<U00022703> /x8e/xaf/xba/xf3 <CJK> +<U00022704> /x8e/xaf/xba/xf4 <CJK> +<U00022705> /x8e/xaf/xba/xf5 <CJK> +<U00022706> /x8e/xaf/xba/xf6 <CJK> +<U00022707> /x8e/xaf/xba/xf7 <CJK> +<U00022708> /x8e/xaf/xba/xf9 <CJK> +<U00022709> /x8e/xaf/xba/xfa <CJK> +<U00022762> /x8e/xaf/xba/xfb <CJK> +<U0002270A> /x8e/xaf/xba/xfc <CJK> +<U0002270B> /x8e/xaf/xba/xfd <CJK> +<U0002270C> /x8e/xaf/xba/xfe <CJK> +<U0002270D> /x8e/xaf/xbb/xa1 <CJK> +<U0002270E> /x8e/xaf/xbb/xa2 <CJK> +<U00022763> /x8e/xaf/xbb/xa3 <CJK> +<U00022727> /x8e/xaf/xbb/xa4 <CJK> +<U0002270F> /x8e/xaf/xbb/xa5 <CJK> +<U0002271B> /x8e/xaf/xbb/xa7 <CJK> +<U00022764> /x8e/xaf/xbb/xa8 <CJK> +<U00022710> /x8e/xaf/xbb/xa9 <CJK> +<U00022711> /x8e/xaf/xbb/xaa <CJK> +<U00022781> /x8e/xaf/xbb/xab <CJK> +<U00022712> /x8e/xaf/xbb/xac <CJK> +<U00022765> /x8e/xaf/xbb/xad <CJK> +<U00022713> /x8e/xaf/xbb/xae <CJK> +<U000229CE> /x8e/xaf/xbb/xaf <CJK> +<U00022C29> /x8e/xaf/xbb/xb0 <CJK> +<U00022BC4> /x8e/xaf/xbb/xb1 <CJK> +<U00022C2A> /x8e/xaf/xbb/xb2 <CJK> +<U00022C2B> /x8e/xaf/xbb/xb4 <CJK> +<U00022C2C> /x8e/xaf/xbb/xb5 <CJK> +<U00022C2D> /x8e/xaf/xbb/xb6 <CJK> +<U00022C2E> /x8e/xaf/xbb/xb7 <CJK> +<U00022C2F> /x8e/xaf/xbb/xb8 <CJK> +<U00022C30> /x8e/xaf/xbb/xb9 <CJK> +<U00022C31> /x8e/xaf/xbb/xba <CJK> +<U00022C32> /x8e/xaf/xbb/xbb <CJK> +<U00022C33> /x8e/xaf/xbb/xbc <CJK> +<U00022C34> /x8e/xaf/xbb/xbd <CJK> +<U00022C35> /x8e/xaf/xbb/xbf <CJK> +<U00022C36> /x8e/xaf/xbb/xc0 <CJK> +<U00022BE3> /x8e/xaf/xbb/xc1 <CJK> +<U00022C37> /x8e/xaf/xbb/xc2 <CJK> +<U00022C38> /x8e/xaf/xbb/xc3 <CJK> +<U00022C39> /x8e/xaf/xbb/xc4 <CJK> +<U00022C3A> /x8e/xaf/xbb/xc5 <CJK> +<U00022C3B> /x8e/xaf/xbb/xc6 <CJK> +<U00022C4D> /x8e/xaf/xbb/xc7 <CJK> +<U00022C3C> /x8e/xaf/xbb/xc8 <CJK> +<U00022C3D> /x8e/xaf/xbb/xc9 <CJK> +<U00022C3E> /x8e/xaf/xbb/xca <CJK> +<U00022ED0> /x8e/xaf/xbb/xcc <CJK> +<U00022ED1> /x8e/xaf/xbb/xcd <CJK> +<U00023055> /x8e/xaf/xbb/xce <CJK> +<U00023102> /x8e/xaf/xbb/xcf <CJK> +<U00023104> /x8e/xaf/xbb/xd0 <CJK> +<U000231FC> /x8e/xaf/xbb/xd1 <CJK> +<U00023207> /x8e/xaf/xbb/xd2 <CJK> +<U000231FD> /x8e/xaf/xbb/xd3 <CJK> +<U000231FE> /x8e/xaf/xbb/xd4 <CJK> +<U000231FF> /x8e/xaf/xbb/xd6 <CJK> +<U00023200> /x8e/xaf/xbb/xd7 <CJK> +<U00023208> /x8e/xaf/xbb/xd8 <CJK> +<U00023201> /x8e/xaf/xbb/xd9 <CJK> +<U00023202> /x8e/xaf/xbb/xda <CJK> +<U00023235> /x8e/xaf/xbb/xdb <CJK> +<U00023203> /x8e/xaf/xbb/xdc <CJK> +<U00023204> /x8e/xaf/xbb/xdd <CJK> +<U0002333B> /x8e/xaf/xbb/xdf <CJK> +<U00023389> /x8e/xaf/xbb/xe0 <CJK> +<U00023381> /x8e/xaf/xbb/xe1 <CJK> +<U00023382> /x8e/xaf/xbb/xe2 <CJK> +<U00026733> /x8e/xaf/xbb/xe3 <CJK> +<U000234EB> /x8e/xaf/xbb/xe4 <CJK> +<U000234EC> /x8e/xaf/xbb/xe5 <CJK> +<U000234ED> /x8e/xaf/xbb/xe7 <CJK> +<U000234EE> /x8e/xaf/xbb/xe8 <CJK> +<U000234EF> /x8e/xaf/xbb/xe9 <CJK> +<U000234F0> /x8e/xaf/xbb/xeb <CJK> +<U000234F1> /x8e/xaf/xbb/xec <CJK> +<U000234F2> /x8e/xaf/xbb/xed <CJK> +<U692B> /x8e/xaf/xbb/xee <CJK> +<U000234F3> /x8e/xaf/xbb/xef <CJK> +<U6916> /x8e/xaf/xbb/xf0 <CJK> +<U000234F4> /x8e/xaf/xbb/xf1 <CJK> +<U000234F5> /x8e/xaf/xbb/xf2 <CJK> +<U0002004B> /x8e/xaf/xbb/xf3 <CJK> +<U000234F6> /x8e/xaf/xbb/xf4 <CJK> +<U000234F7> /x8e/xaf/xbb/xf5 <CJK> +<U000234F8> /x8e/xaf/xbb/xf6 <CJK> +<U000234F9> /x8e/xaf/xbb/xf7 <CJK> +<U000234FA> /x8e/xaf/xbb/xf8 <CJK> +<U000234FB> /x8e/xaf/xbb/xf9 <CJK> +<U000234FC> /x8e/xaf/xbb/xfa <CJK> +<U000234FD> /x8e/xaf/xbb/xfb <CJK> +<U000234FE> /x8e/xaf/xbb/xfc <CJK> +<U000234FF> /x8e/xaf/xbb/xfd <CJK> +<U00023500> /x8e/xaf/xbb/xfe <CJK> +<U691B> /x8e/xaf/xbc/xa1 <CJK> +<U00023501> /x8e/xaf/xbc/xa2 <CJK> +<U00023502> /x8e/xaf/xbc/xa3 <CJK> +<U00023503> /x8e/xaf/xbc/xa4 <CJK> +<U00023504> /x8e/xaf/xbc/xa5 <CJK> +<U00023505> /x8e/xaf/xbc/xa6 <CJK> +<U00023506> /x8e/xaf/xbc/xa7 <CJK> +<U00023507> /x8e/xaf/xbc/xa8 <CJK> +<U6927> /x8e/xaf/xbc/xa9 <CJK> +<U00023508> /x8e/xaf/xbc/xaa <CJK> +<U00023509> /x8e/xaf/xbc/xab <CJK> +<U0002350A> /x8e/xaf/xbc/xac <CJK> +<U0002350B> /x8e/xaf/xbc/xad <CJK> +<U0002350C> /x8e/xaf/xbc/xae <CJK> +<U0002350D> /x8e/xaf/xbc/xaf <CJK> +<U000238D7> /x8e/xaf/xbc/xb0 <CJK> +<U000238D8> /x8e/xaf/xbc/xb1 <CJK> +<U00023A29> /x8e/xaf/xbc/xb2 <CJK> +<U00023A9C> /x8e/xaf/xbc/xb3 <CJK> +<U00023AF8> /x8e/xaf/xbc/xb4 <CJK> +<U00023B98> /x8e/xaf/xbc/xb5 <CJK> +<U00023BA4> /x8e/xaf/xbc/xb6 <CJK> +<U00023B99> /x8e/xaf/xbc/xb7 <CJK> +<U00023B9A> /x8e/xaf/xbc/xb8 <CJK> +<U00023B9B> /x8e/xaf/xbc/xb9 <CJK> +<U00023B97> /x8e/xaf/xbc/xba <CJK> +<U00023B9C> /x8e/xaf/xbc/xbb <CJK> +<U6BF5> /x8e/xaf/xbc/xbc <CJK> +<U00023B9D> /x8e/xaf/xbc/xbd <CJK> +<U00023B9E> /x8e/xaf/xbc/xbf <CJK> +<U00023B9F> /x8e/xaf/xbc/xc0 <CJK> +<U00023C65> /x8e/xaf/xbc/xc1 <CJK> +<U00023DD6> /x8e/xaf/xbc/xc2 <CJK> +<U3D20> /x8e/xaf/xbc/xc3 <CJK> +<U00023E32> /x8e/xaf/xbc/xc4 <CJK> +<U00023E33> /x8e/xaf/xbc/xc5 <CJK> +<U00023E34> /x8e/xaf/xbc/xc6 <CJK> +<U6E82> /x8e/xaf/xbc/xc7 <CJK> +<U00023E35> /x8e/xaf/xbc/xc8 <CJK> +<U00023E36> /x8e/xaf/xbc/xc9 <CJK> +<U00023E37> /x8e/xaf/xbc/xca <CJK> +<U00023DD7> /x8e/xaf/xbc/xcb <CJK> +<U00023DD8> /x8e/xaf/xbc/xcd <CJK> +<U00023E38> /x8e/xaf/xbc/xce <CJK> +<U00023E39> /x8e/xaf/xbc/xcf <CJK> +<U00023E3A> /x8e/xaf/xbc/xd0 <CJK> +<U00023E3B> /x8e/xaf/xbc/xd1 <CJK> +<U00023E3C> /x8e/xaf/xbc/xd2 <CJK> +<U00023E3D> /x8e/xaf/xbc/xd3 <CJK> +<U00023E3E> /x8e/xaf/xbc/xd4 <CJK> +<U00023E3F> /x8e/xaf/xbc/xd5 <CJK> +<U00023E40> /x8e/xaf/xbc/xd6 <CJK> +<U00023DD9> /x8e/xaf/xbc/xd7 <CJK> +<U00023E41> /x8e/xaf/xbc/xd8 <CJK> +<U00023E42> /x8e/xaf/xbc/xd9 <CJK> +<U3D21> /x8e/xaf/xbc/xda <CJK> +<U00023E43> /x8e/xaf/xbc/xdb <CJK> +<U00023E44> /x8e/xaf/xbc/xdc <CJK> +<U6E7A> /x8e/xaf/xbc/xdd <CJK> +<U0002427C> /x8e/xaf/xbc/xde <CJK> +<U0002427D> /x8e/xaf/xbc/xdf <CJK> +<U0002427E> /x8e/xaf/xbc/xe0 <CJK> +<U0002427F> /x8e/xaf/xbc/xe1 <CJK> +<U00024280> /x8e/xaf/xbc/xe2 <CJK> +<U00024281> /x8e/xaf/xbc/xe3 <CJK> +<U00024282> /x8e/xaf/xbc/xe4 <CJK> +<U00024283> /x8e/xaf/xbc/xe6 <CJK> +<U00024284> /x8e/xaf/xbc/xe7 <CJK> +<U00024285> /x8e/xaf/xbc/xe8 <CJK> +<U00024286> /x8e/xaf/xbc/xe9 <CJK> +<U000242A5> /x8e/xaf/xbc/xea <CJK> +<U00024287> /x8e/xaf/xbc/xeb <CJK> +<U00024288> /x8e/xaf/xbc/xec <CJK> +<U00024289> /x8e/xaf/xbc/xed <CJK> +<U0002428A> /x8e/xaf/xbc/xee <CJK> +<U0002428B> /x8e/xaf/xbc/xef <CJK> +<U0002428C> /x8e/xaf/xbc/xf0 <CJK> +<U0002428D> /x8e/xaf/xbc/xf1 <CJK> +<U0002428E> /x8e/xaf/xbc/xf2 <CJK> +<U0002428F> /x8e/xaf/xbc/xf5 <CJK> +<U00024290> /x8e/xaf/xbc/xf7 <CJK> +<U00024291> /x8e/xaf/xbc/xf8 <CJK> +<U00024292> /x8e/xaf/xbc/xf9 <CJK> +<U00024293> /x8e/xaf/xbc/xfa <CJK> +<U00024294> /x8e/xaf/xbc/xfb <CJK> +<U00024295> /x8e/xaf/xbc/xfc <CJK> +<U7129> /x8e/xaf/xbc/xfe <CJK> +<U00024296> /x8e/xaf/xbd/xa1 <CJK> +<U00024556> /x8e/xaf/xbd/xa2 <CJK> +<U00024557> /x8e/xaf/xbd/xa3 <CJK> +<U000245E1> /x8e/xaf/xbd/xa4 <CJK> +<U0002460E> /x8e/xaf/xbd/xa5 <CJK> +<U0002460F> /x8e/xaf/xbd/xa6 <CJK> +<U0002467A> /x8e/xaf/xbd/xa7 <CJK> +<U0002467B> /x8e/xaf/xbd/xa8 <CJK> +<U0002468B> /x8e/xaf/xbd/xa9 <CJK> +<U000247F2> /x8e/xaf/xbd/xaa <CJK> +<U000247F3> /x8e/xaf/xbd/xab <CJK> +<U00024993> /x8e/xaf/xbd/xac <CJK> +<U00024994> /x8e/xaf/xbd/xad <CJK> +<U00024995> /x8e/xaf/xbd/xae <CJK> +<U00024996> /x8e/xaf/xbd/xaf <CJK> +<U00024997> /x8e/xaf/xbd/xb0 <CJK> +<U000249AD> /x8e/xaf/xbd/xb1 <CJK> +<U00024998> /x8e/xaf/xbd/xb2 <CJK> +<U000249AB> /x8e/xaf/xbd/xb3 <CJK> +<U0002497B> /x8e/xaf/xbd/xb4 <CJK> +<U00024999> /x8e/xaf/xbd/xb5 <CJK> +<U0002499A> /x8e/xaf/xbd/xb6 <CJK> +<U0002499B> /x8e/xaf/xbd/xb7 <CJK> +<U00024985> /x8e/xaf/xbd/xb8 <CJK> +<U0002499C> /x8e/xaf/xbd/xb9 <CJK> +<U0002499D> /x8e/xaf/xbd/xba <CJK> +<U3EDA> /x8e/xaf/xbd/xbb <CJK> +<U000249AC> /x8e/xaf/xbd/xbd <CJK> +<U00024979> /x8e/xaf/xbd/xbe <CJK> +<U0002499E> /x8e/xaf/xbd/xbf <CJK> +<U000249A4> /x8e/xaf/xbd/xc0 <CJK> +<U00024AFD> /x8e/xaf/xbd/xc1 <CJK> +<U00024BEB> /x8e/xaf/xbd/xc2 <CJK> +<U00024BEA> /x8e/xaf/xbd/xc3 <CJK> +<U00024C8F> /x8e/xaf/xbd/xc4 <CJK> +<U00024C90> /x8e/xaf/xbd/xc5 <CJK> +<U00024C86> /x8e/xaf/xbd/xc6 <CJK> +<U00024C87> /x8e/xaf/xbd/xc7 <CJK> +<U00024C88> /x8e/xaf/xbd/xc8 <CJK> +<U00024DAC> /x8e/xaf/xbd/xc9 <CJK> +<U00024DAD> /x8e/xaf/xbd/xca <CJK> +<U00024FEC> /x8e/xaf/xbd/xcb <CJK> +<U00025073> /x8e/xaf/xbd/xcc <CJK> +<U00025074> /x8e/xaf/xbd/xcd <CJK> +<U000251AA> /x8e/xaf/xbd/xcf <CJK> +<U000251AB> /x8e/xaf/xbd/xd0 <CJK> +<U000251AC> /x8e/xaf/xbd/xd1 <CJK> +<U000253D1> /x8e/xaf/xbd/xd2 <CJK> +<U000253D7> /x8e/xaf/xbd/xd3 <CJK> +<U000254B9> /x8e/xaf/xbd/xd4 <CJK> +<U000254BA> /x8e/xaf/xbd/xd5 <CJK> +<U000254BB> /x8e/xaf/xbd/xd6 <CJK> +<U000254BC> /x8e/xaf/xbd/xd7 <CJK> +<U0002568E> /x8e/xaf/xbd/xd8 <CJK> +<U0002568F> /x8e/xaf/xbd/xd9 <CJK> +<U00025690> /x8e/xaf/xbd/xda <CJK> +<U0002567C> /x8e/xaf/xbd/xdb <CJK> +<U00025691> /x8e/xaf/xbd/xdc <CJK> +<U00025692> /x8e/xaf/xbd/xdd <CJK> +<U00025693> /x8e/xaf/xbd/xde <CJK> +<U00025694> /x8e/xaf/xbd/xdf <CJK> +<U0002569A> /x8e/xaf/xbd/xe1 <CJK> +<U00025695> /x8e/xaf/xbd/xe2 <CJK> +<U00025696> /x8e/xaf/xbd/xe3 <CJK> +<U00025697> /x8e/xaf/xbd/xe4 <CJK> +<U000257BD> /x8e/xaf/xbd/xe5 <CJK> +<U000257C7> /x8e/xaf/xbd/xe6 <CJK> +<U000257BE> /x8e/xaf/xbd/xe7 <CJK> +<U000257BF> /x8e/xaf/xbd/xe9 <CJK> +<U00025993> /x8e/xaf/xbd/xeb <CJK> +<U00021A5E> /x8e/xaf/xbd/xec <CJK> +<U00025A86> /x8e/xaf/xbd/xed <CJK> +<U00025A87> /x8e/xaf/xbd/xee <CJK> +<U00025A88> /x8e/xaf/xbd/xef <CJK> +<U00025A89> /x8e/xaf/xbd/xf0 <CJK> +<U00025B41> /x8e/xaf/xbd/xf1 <CJK> +<U00025B42> /x8e/xaf/xbd/xf2 <CJK> +<U00025B43> /x8e/xaf/xbd/xf3 <CJK> +<U00025B44> /x8e/xaf/xbd/xf4 <CJK> +<U00025B45> /x8e/xaf/xbd/xf5 <CJK> +<U00025B46> /x8e/xaf/xbd/xf6 <CJK> +<U00025B4A> /x8e/xaf/xbd/xf7 <CJK> +<U00025B47> /x8e/xaf/xbd/xf8 <CJK> +<U00025B48> /x8e/xaf/xbd/xf9 <CJK> +<U00025B49> /x8e/xaf/xbd/xfa <CJK> +<U00025E6B> /x8e/xaf/xbd/xfb <CJK> +<U00025E66> /x8e/xaf/xbd/xfc <CJK> +<U00025E67> /x8e/xaf/xbd/xfe <CJK> +<U7CAB> /x8e/xaf/xbe/xa1 <CJK> +<U00025E68> /x8e/xaf/xbe/xa2 <CJK> +<U7CAC> /x8e/xaf/xbe/xa3 <CJK> +<U00025FFD> /x8e/xaf/xbe/xa5 <CJK> +<U00025FFE> /x8e/xaf/xbe/xa6 <CJK> +<U00025FFF> /x8e/xaf/xbe/xa7 <CJK> +<U00026000> /x8e/xaf/xbe/xa8 <CJK> +<U00026001> /x8e/xaf/xbe/xa9 <CJK> +<U00026002> /x8e/xaf/xbe/xaa <CJK> +<U00026003> /x8e/xaf/xbe/xab <CJK> +<U00026004> /x8e/xaf/xbe/xac <CJK> +<U00026005> /x8e/xaf/xbe/xad <CJK> +<U00026006> /x8e/xaf/xbe/xae <CJK> +<U00026233> /x8e/xaf/xbe/xaf <CJK> +<U000262C2> /x8e/xaf/xbe/xb0 <CJK> +<U000262D0> /x8e/xaf/xbe/xb1 <CJK> +<U00026395> /x8e/xaf/xbe/xb3 <CJK> +<U00026396> /x8e/xaf/xbe/xb4 <CJK> +<U00026435> /x8e/xaf/xbe/xb5 <CJK> +<U00026436> /x8e/xaf/xbe/xb6 <CJK> +<U00026567> /x8e/xaf/xbe/xb7 <CJK> +<U00026568> /x8e/xaf/xbe/xb8 <CJK> +<U00026569> /x8e/xaf/xbe/xb9 <CJK> +<U0002656A> /x8e/xaf/xbe/xba <CJK> +<U00026572> /x8e/xaf/xbe/xbb <CJK> +<U0002656B> /x8e/xaf/xbe/xbc <CJK> +<U0002656C> /x8e/xaf/xbe/xbd <CJK> +<U0002656D> /x8e/xaf/xbe/xbe <CJK> +<U0002656E> /x8e/xaf/xbe/xbf <CJK> +<U0002656F> /x8e/xaf/xbe/xc0 <CJK> +<U00026722> /x8e/xaf/xbe/xc1 <CJK> +<U00026723> /x8e/xaf/xbe/xc4 <CJK> +<U00026741> /x8e/xaf/xbe/xc5 <CJK> +<U00026724> /x8e/xaf/xbe/xc6 <CJK> +<U00026725> /x8e/xaf/xbe/xc7 <CJK> +<U00026726> /x8e/xaf/xbe/xc8 <CJK> +<U00026727> /x8e/xaf/xbe/xc9 <CJK> +<U00026728> /x8e/xaf/xbe/xca <CJK> +<U00026729> /x8e/xaf/xbe/xcb <CJK> +<U000266B7> /x8e/xaf/xbe/xcc <CJK> +<U000269DA> /x8e/xaf/xbe/xd0 <CJK> +<U00026ACF> /x8e/xaf/xbe/xd1 <CJK> +<U00026ADA> /x8e/xaf/xbe/xd2 <CJK> +<U00026C89> /x8e/xaf/xbe/xd3 <CJK> +<U00026CB7> /x8e/xaf/xbe/xd4 <CJK> +<U00026C8A> /x8e/xaf/xbe/xd5 <CJK> +<U00026C8B> /x8e/xaf/xbe/xd6 <CJK> +<U00026D5E> /x8e/xaf/xbe/xd7 <CJK> +<U00026C8C> /x8e/xaf/xbe/xd8 <CJK> +<U00026C8D> /x8e/xaf/xbe/xda <CJK> +<U00026C8E> /x8e/xaf/xbe/xdb <CJK> +<U00026C8F> /x8e/xaf/xbe/xdc <CJK> +<U00026C90> /x8e/xaf/xbe/xdd <CJK> +<U00026C91> /x8e/xaf/xbe/xde <CJK> +<U00026C92> /x8e/xaf/xbe/xdf <CJK> +<U00026C93> /x8e/xaf/xbe/xe0 <CJK> +<U00026C94> /x8e/xaf/xbe/xe1 <CJK> +<U00026CB6> /x8e/xaf/xbe/xe2 <CJK> +<U00026C95> /x8e/xaf/xbe/xe3 <CJK> +<U00026C96> /x8e/xaf/xbe/xe4 <CJK> +<U00026C97> /x8e/xaf/xbe/xe5 <CJK> +<U83F7> /x8e/xaf/xbe/xe6 <CJK> +<U00026C98> /x8e/xaf/xbe/xe8 <CJK> +<U00026C99> /x8e/xaf/xbe/xe9 <CJK> +<U00026C9A> /x8e/xaf/xbe/xea <CJK> +<U44EA> /x8e/xaf/xbe/xeb <CJK> +<U00026C9B> /x8e/xaf/xbe/xed <CJK> +<U00026CBD> /x8e/xaf/xbe/xee <CJK> +<U00026C9C> /x8e/xaf/xbe/xef <CJK> +<U00026C9D> /x8e/xaf/xbe/xf0 <CJK> +<U00026C9E> /x8e/xaf/xbe/xf1 <CJK> +<U00026C9F> /x8e/xaf/xbe/xf2 <CJK> +<U00026CC0> /x8e/xaf/xbe/xf3 <CJK> +<U00026CA0> /x8e/xaf/xbe/xf4 <CJK> +<U00026CA1> /x8e/xaf/xbe/xf5 <CJK> +<U00026CA2> /x8e/xaf/xbe/xf6 <CJK> +<U00026CA3> /x8e/xaf/xbe/xf7 <CJK> +<U00026CA4> /x8e/xaf/xbe/xf8 <CJK> +<U00026CA5> /x8e/xaf/xbe/xf9 <CJK> +<U00026CA6> /x8e/xaf/xbe/xfa <CJK> +<U00026CA7> /x8e/xaf/xbe/xfb <CJK> +<U00026CA8> /x8e/xaf/xbe/xfc <CJK> +<U00026CA9> /x8e/xaf/xbe/xfd <CJK> +<U00026CAA> /x8e/xaf/xbe/xfe <CJK> +<U000271B4> /x8e/xaf/xbf/xa2 <CJK> +<U000271B5> /x8e/xaf/xbf/xa3 <CJK> +<U000271B6> /x8e/xaf/xbf/xa4 <CJK> +<U000272B9> /x8e/xaf/xbf/xa5 <CJK> +<U000272BA> /x8e/xaf/xbf/xa6 <CJK> +<U000272BB> /x8e/xaf/xbf/xa7 <CJK> +<U00027291> /x8e/xaf/xbf/xa8 <CJK> +<U000272BC> /x8e/xaf/xbf/xa9 <CJK> +<U000275EE> /x8e/xaf/xbf/xaa <CJK> +<U000275EF> /x8e/xaf/xbf/xab <CJK> +<U00027696> /x8e/xaf/xbf/xac <CJK> +<U00027697> /x8e/xaf/xbf/xad <CJK> +<U00027673> /x8e/xaf/xbf/xae <CJK> +<U00027698> /x8e/xaf/xbf/xaf <CJK> +<U00027699> /x8e/xaf/xbf/xb0 <CJK> +<U000277ED> /x8e/xaf/xbf/xb1 <CJK> +<U000277EE> /x8e/xaf/xbf/xb2 <CJK> +<U000278DE> /x8e/xaf/xbf/xb3 <CJK> +<U000279B0> /x8e/xaf/xbf/xb4 <CJK> +<U000279B1> /x8e/xaf/xbf/xb5 <CJK> +<U000279B2> /x8e/xaf/xbf/xb6 <CJK> +<U000279B3> /x8e/xaf/xbf/xb7 <CJK> +<U000279B4> /x8e/xaf/xbf/xb8 <CJK> +<U000279B5> /x8e/xaf/xbf/xb9 <CJK> +<U000279B6> /x8e/xaf/xbf/xba <CJK> +<U000279B7> /x8e/xaf/xbf/xbc <CJK> +<U00027BE3> /x8e/xaf/xbf/xbd <CJK> +<U00027CB9> /x8e/xaf/xbf/xbe <CJK> +<U00027D55> /x8e/xaf/xbf/xbf <CJK> +<U00027D7E> /x8e/xaf/xbf/xc0 <CJK> +<U00027D56> /x8e/xaf/xbf/xc1 <CJK> +<U00027D57> /x8e/xaf/xbf/xc2 <CJK> +<U00027D58> /x8e/xaf/xbf/xc3 <CJK> +<U00027D59> /x8e/xaf/xbf/xc4 <CJK> +<U00027D5A> /x8e/xaf/xbf/xc5 <CJK> +<U00027EC4> /x8e/xaf/xbf/xc7 <CJK> +<U00027EC5> /x8e/xaf/xbf/xc8 <CJK> +<U00027EC6> /x8e/xaf/xbf/xc9 <CJK> +<U00027EC7> /x8e/xaf/xbf/xca <CJK> +<U00027EC8> /x8e/xaf/xbf/xcb <CJK> +<U00027EC9> /x8e/xaf/xbf/xcc <CJK> +<U00027EEE> /x8e/xaf/xbf/xcd <CJK> +<U00027ECF> /x8e/xaf/xbf/xce <CJK> +<U00027ECA> /x8e/xaf/xbf/xcf <CJK> +<U00027ECB> /x8e/xaf/xbf/xd0 <CJK> +<U00027ECC> /x8e/xaf/xbf/xd1 <CJK> +<U00028009> /x8e/xaf/xbf/xd2 <CJK> +<U00028003> /x8e/xaf/xbf/xd4 <CJK> +<U0002822F> /x8e/xaf/xbf/xd5 <CJK> +<U00028230> /x8e/xaf/xbf/xd6 <CJK> +<U00028231> /x8e/xaf/xbf/xd7 <CJK> +<U00028232> /x8e/xaf/xbf/xd8 <CJK> +<U0002850E> /x8e/xaf/xbf/xd9 <CJK> +<U0002850F> /x8e/xaf/xbf/xda <CJK> +<U00028510> /x8e/xaf/xbf/xdb <CJK> +<U00028511> /x8e/xaf/xbf/xdc <CJK> +<U00028512> /x8e/xaf/xbf/xdd <CJK> +<U00028513> /x8e/xaf/xbf/xdf <CJK> +<U00028514> /x8e/xaf/xbf/xe0 <CJK> +<U00028515> /x8e/xaf/xbf/xe1 <CJK> +<U000284FF> /x8e/xaf/xbf/xe2 <CJK> +<U0002871F> /x8e/xaf/xbf/xe3 <CJK> +<U00028720> /x8e/xaf/xbf/xe4 <CJK> +<U00028721> /x8e/xaf/xbf/xe5 <CJK> +<U0002872D> /x8e/xaf/xbf/xe6 <CJK> +<U0002881B> /x8e/xaf/xbf/xe8 <CJK> +<U0002881C> /x8e/xaf/xbf/xe9 <CJK> +<U0002881D> /x8e/xaf/xbf/xea <CJK> +<U0002881E> /x8e/xaf/xbf/xeb <CJK> +<U00028953> /x8e/xaf/xbf/xec <CJK> +<U00028954> /x8e/xaf/xbf/xed <CJK> +<U00028955> /x8e/xaf/xbf/xee <CJK> +<U00028956> /x8e/xaf/xbf/xef <CJK> +<U00028964> /x8e/xaf/xbf/xf0 <CJK> +<U00028959> /x8e/xaf/xbf/xf1 <CJK> +<U00028957> /x8e/xaf/xbf/xf2 <CJK> +<U00028958> /x8e/xaf/xbf/xf4 <CJK> +<U00028C6B> /x8e/xaf/xbf/xf5 <CJK> +<U4989> /x8e/xaf/xbf/xf6 <CJK> +<U00028CE7> /x8e/xaf/xbf/xf8 <CJK> +<U00028CE8> /x8e/xaf/xbf/xf9 <CJK> +<U00028CE9> /x8e/xaf/xbf/xfa <CJK> +<U00028CEA> /x8e/xaf/xbf/xfb <CJK> +<U00028CEB> /x8e/xaf/xbf/xfc <CJK> +<U00028CEC> /x8e/xaf/xbf/xfd <CJK> +<U9596> /x8e/xaf/xbf/xfe <CJK> +<U00028CED> /x8e/xaf/xc0/xa1 <CJK> +<U00028EB1> /x8e/xaf/xc0/xa2 <CJK> +<U00028EB4> /x8e/xaf/xc0/xa3 <CJK> +<U0002908A> /x8e/xaf/xc0/xa5 <CJK> +<U0002908D> /x8e/xaf/xc0/xa6 <CJK> +<U0002908C> /x8e/xaf/xc0/xa7 <CJK> +<U000291F2> /x8e/xaf/xc0/xa8 <CJK> +<U000291F3> /x8e/xaf/xc0/xa9 <CJK> +<U00022108> /x8e/xaf/xc0/xab <CJK> +<U00029417> /x8e/xaf/xc0/xac <CJK> +<U4AB2> /x8e/xaf/xc0/xad <CJK> +<U0002959F> /x8e/xaf/xc0/xae <CJK> +<U000296A0> /x8e/xaf/xc0/xaf <CJK> +<U0002986D> /x8e/xaf/xc0/xb1 <CJK> +<U0002307D> /x8e/xaf/xc0/xb2 <CJK> +<U00029F90> /x8e/xaf/xc0/xb3 <CJK> +<U0002A5C4> /x8e/xaf/xc0/xb4 <CJK> +<U0002004C> /x8e/xaf/xc0/xb5 <CJK> +<U00020174> /x8e/xaf/xc0/xb6 <CJK> +<U00020175> /x8e/xaf/xc0/xb7 <CJK> +<U00020176> /x8e/xaf/xc0/xb8 <CJK> +<U00020349> /x8e/xaf/xc0/xb9 <CJK> +<U0002034A> /x8e/xaf/xc0/xba <CJK> +<U0002034B> /x8e/xaf/xc0/xbb <CJK> +<U0002034C> /x8e/xaf/xc0/xbc <CJK> +<U0002034D> /x8e/xaf/xc0/xbd <CJK> +<U0002034E> /x8e/xaf/xc0/xbe <CJK> +<U0002034F> /x8e/xaf/xc0/xbf <CJK> +<U00020350> /x8e/xaf/xc0/xc0 <CJK> +<U00020351> /x8e/xaf/xc0/xc1 <CJK> +<U00020352> /x8e/xaf/xc0/xc2 <CJK> +<U00020353> /x8e/xaf/xc0/xc3 <CJK> +<U00020354> /x8e/xaf/xc0/xc4 <CJK> +<U00020355> /x8e/xaf/xc0/xc5 <CJK> +<U00020356> /x8e/xaf/xc0/xc6 <CJK> +<U000204A4> /x8e/xaf/xc0/xc7 <CJK> +<U000204A9> /x8e/xaf/xc0/xc8 <CJK> +<U0002052A> /x8e/xaf/xc0/xc9 <CJK> +<U0002052B> /x8e/xaf/xc0/xca <CJK> +<U000207B3> /x8e/xaf/xc0/xcb <CJK> +<U000207C1> /x8e/xaf/xc0/xcc <CJK> +<U00020898> /x8e/xaf/xc0/xcd <CJK> +<U000208FB> /x8e/xaf/xc0/xce <CJK> +<U000208FC> /x8e/xaf/xc0/xcf <CJK> +<U000209BC> /x8e/xaf/xc0/xd0 <CJK> +<U00020A96> /x8e/xaf/xc0/xd1 <CJK> +<U00020B0A> /x8e/xaf/xc0/xd2 <CJK> +<U00020EA2> /x8e/xaf/xc0/xd4 <CJK> +<U00020E81> /x8e/xaf/xc0/xd6 <CJK> +<U00020E82> /x8e/xaf/xc0/xd7 <CJK> +<U00020E83> /x8e/xaf/xc0/xd8 <CJK> +<U00020E84> /x8e/xaf/xc0/xd9 <CJK> +<U00020E85> /x8e/xaf/xc0/xda <CJK> +<U00020E86> /x8e/xaf/xc0/xdb <CJK> +<U00020E87> /x8e/xaf/xc0/xdc <CJK> +<U00020E88> /x8e/xaf/xc0/xdd <CJK> +<U00020E89> /x8e/xaf/xc0/xde <CJK> +<U00020E8A> /x8e/xaf/xc0/xdf <CJK> +<U00020E8B> /x8e/xaf/xc0/xe0 <CJK> +<U00020E8C> /x8e/xaf/xc0/xe1 <CJK> +<U55F1> /x8e/xaf/xc0/xe2 <CJK> +<U00020E8D> /x8e/xaf/xc0/xe3 <CJK> +<U00020ED1> /x8e/xaf/xc0/xe4 <CJK> +<U00021214> /x8e/xaf/xc0/xe5 <CJK> +<U000213C9> /x8e/xaf/xc0/xe6 <CJK> +<U000213CA> /x8e/xaf/xc0/xe7 <CJK> +<U000213CB> /x8e/xaf/xc0/xe8 <CJK> +<U00029AFD> /x8e/xaf/xc0/xe9 <CJK> +<U000213CC> /x8e/xaf/xc0/xea <CJK> +<U000213CD> /x8e/xaf/xc0/xeb <CJK> +<U000213CE> /x8e/xaf/xc0/xec <CJK> +<U000213CF> /x8e/xaf/xc0/xed <CJK> +<U000213D0> /x8e/xaf/xc0/xee <CJK> +<U000213D1> /x8e/xaf/xc0/xef <CJK> +<U000213D2> /x8e/xaf/xc0/xf0 <CJK> +<U000213D3> /x8e/xaf/xc0/xf1 <CJK> +<U000213D4> /x8e/xaf/xc0/xf2 <CJK> +<U000213D5> /x8e/xaf/xc0/xf3 <CJK> +<U00021571> /x8e/xaf/xc0/xf4 <CJK> +<U0002004D> /x8e/xaf/xc0/xf5 <CJK> +<U00021662> /x8e/xaf/xc0/xf6 <CJK> +<U0002180E> /x8e/xaf/xc0/xf7 <CJK> +<U000217FE> /x8e/xaf/xc0/xf8 <CJK> +<U000217FF> /x8e/xaf/xc0/xf9 <CJK> +<U00021800> /x8e/xaf/xc0/xfa <CJK> +<U00021801> /x8e/xaf/xc0/xfc <CJK> +<U00021802> /x8e/xaf/xc0/xfd <CJK> +<U00021803> /x8e/xaf/xc0/xfe <CJK> +<U00021815> /x8e/xaf/xc1/xa1 <CJK> +<U00021804> /x8e/xaf/xc1/xa2 <CJK> +<U00021805> /x8e/xaf/xc1/xa3 <CJK> +<U00021987> /x8e/xaf/xc1/xa5 <CJK> +<U00021989> /x8e/xaf/xc1/xa6 <CJK> +<U00021A6E> /x8e/xaf/xc1/xa7 <CJK> +<U00021A6F> /x8e/xaf/xc1/xa8 <CJK> +<U00021A70> /x8e/xaf/xc1/xa9 <CJK> +<U00021A71> /x8e/xaf/xc1/xaa <CJK> +<U00021A72> /x8e/xaf/xc1/xac <CJK> +<U00021A73> /x8e/xaf/xc1/xad <CJK> +<U00021A74> /x8e/xaf/xc1/xae <CJK> +<U00021B9D> /x8e/xaf/xc1/xaf <CJK> +<U00021CB8> /x8e/xaf/xc1/xb0 <CJK> +<U00021CB9> /x8e/xaf/xc1/xb1 <CJK> +<U00021CBA> /x8e/xaf/xc1/xb2 <CJK> +<U00021EC2> /x8e/xaf/xc1/xb3 <CJK> +<U00021EC3> /x8e/xaf/xc1/xb4 <CJK> +<U00021ED5> /x8e/xaf/xc1/xb5 <CJK> +<U00021EC4> /x8e/xaf/xc1/xb6 <CJK> +<U00021EC0> /x8e/xaf/xc1/xb7 <CJK> +<U00021EC5> /x8e/xaf/xc1/xb8 <CJK> +<U00021EC6> /x8e/xaf/xc1/xb9 <CJK> +<U0002228A> /x8e/xaf/xc1/xba <CJK> +<U0002228B> /x8e/xaf/xc1/xbb <CJK> +<U0002228C> /x8e/xaf/xc1/xbc <CJK> +<U00022364> /x8e/xaf/xc1/xbd <CJK> +<U00025B8C> /x8e/xaf/xc1/xbe <CJK> +<U5F41> /x8e/xaf/xc1/xbf <CJK> +<U0002240D> /x8e/xaf/xc1/xc0 <CJK> +<U000224A8> /x8e/xaf/xc1/xc1 <CJK> +<U0002253B> /x8e/xaf/xc1/xc2 <CJK> +<U0002253C> /x8e/xaf/xc1/xc3 <CJK> +<U0002253D> /x8e/xaf/xc1/xc4 <CJK> +<U0002253E> /x8e/xaf/xc1/xc5 <CJK> +<U0002253F> /x8e/xaf/xc1/xc6 <CJK> +<U00022540> /x8e/xaf/xc1/xc7 <CJK> +<U00022766> /x8e/xaf/xc1/xc8 <CJK> +<U000227CB> /x8e/xaf/xc1/xc9 <CJK> +<U000227B7> /x8e/xaf/xc1/xca <CJK> +<U000227B8> /x8e/xaf/xc1/xcb <CJK> +<U000227B9> /x8e/xaf/xc1/xcc <CJK> +<U000227BA> /x8e/xaf/xc1/xcd <CJK> +<U00022767> /x8e/xaf/xc1/xce <CJK> +<U000227BB> /x8e/xaf/xc1/xcf <CJK> +<U00022768> /x8e/xaf/xc1/xd0 <CJK> +<U00022769> /x8e/xaf/xc1/xd1 <CJK> +<U0002276A> /x8e/xaf/xc1/xd2 <CJK> +<U000227BC> /x8e/xaf/xc1/xd3 <CJK> +<U000229DB> /x8e/xaf/xc1/xd5 <CJK> +<U00022C81> /x8e/xaf/xc1/xd6 <CJK> +<U00022C82> /x8e/xaf/xc1/xd7 <CJK> +<U00022C83> /x8e/xaf/xc1/xd8 <CJK> +<U00022C84> /x8e/xaf/xc1/xd9 <CJK> +<U00022C85> /x8e/xaf/xc1/xda <CJK> +<U00022C86> /x8e/xaf/xc1/xdb <CJK> +<U00022C87> /x8e/xaf/xc1/xdc <CJK> +<U00022C88> /x8e/xaf/xc1/xdd <CJK> +<U00022C89> /x8e/xaf/xc1/xde <CJK> +<U00022C8A> /x8e/xaf/xc1/xe0 <CJK> +<U00022C8B> /x8e/xaf/xc1/xe1 <CJK> +<U00022C8C> /x8e/xaf/xc1/xe3 <CJK> +<U00022C8D> /x8e/xaf/xc1/xe4 <CJK> +<U00022C8E> /x8e/xaf/xc1/xe5 <CJK> +<U00022C8F> /x8e/xaf/xc1/xe6 <CJK> +<U00022C90> /x8e/xaf/xc1/xe7 <CJK> +<U00022CA1> /x8e/xaf/xc1/xe8 <CJK> +<U00022C91> /x8e/xaf/xc1/xe9 <CJK> +<U00022ED6> /x8e/xaf/xc1/xea <CJK> +<U00022F9F> /x8e/xaf/xc1/xeb <CJK> +<U00023058> /x8e/xaf/xc1/xec <CJK> +<U00023085> /x8e/xaf/xc1/xed <CJK> +<U0002310B> /x8e/xaf/xc1/xee <CJK> +<U0002310C> /x8e/xaf/xc1/xef <CJK> +<U00023237> /x8e/xaf/xc1/xf0 <CJK> +<U00023238> /x8e/xaf/xc1/xf1 <CJK> +<U00023239> /x8e/xaf/xc1/xf3 <CJK> +<U0002323A> /x8e/xaf/xc1/xf4 <CJK> +<U0002323B> /x8e/xaf/xc1/xf5 <CJK> +<U0002323C> /x8e/xaf/xc1/xf6 <CJK> +<U0002323D> /x8e/xaf/xc1/xf7 <CJK> +<U0002323E> /x8e/xaf/xc1/xf8 <CJK> +<U00023240> /x8e/xaf/xc1/xf9 <CJK> +<U00023241> /x8e/xaf/xc1/xfa <CJK> +<U00023242> /x8e/xaf/xc1/xfb <CJK> +<U00023243> /x8e/xaf/xc1/xfd <CJK> +<U0002338A> /x8e/xaf/xc1/xfe <CJK> +<U0002338B> /x8e/xaf/xc2/xa1 <CJK> +<U00023590> /x8e/xaf/xc2/xa2 <CJK> +<U00023559> /x8e/xaf/xc2/xa3 <CJK> +<U0002355B> /x8e/xaf/xc2/xa4 <CJK> +<U0002355C> /x8e/xaf/xc2/xa5 <CJK> +<U0002355D> /x8e/xaf/xc2/xa6 <CJK> +<U0002355E> /x8e/xaf/xc2/xa7 <CJK> +<U698A> /x8e/xaf/xc2/xa8 <CJK> +<U0002355F> /x8e/xaf/xc2/xa9 <CJK> +<U00023560> /x8e/xaf/xc2/xaa <CJK> +<U00023561> /x8e/xaf/xc2/xab <CJK> +<U00023562> /x8e/xaf/xc2/xac <CJK> +<U00023563> /x8e/xaf/xc2/xad <CJK> +<U00023564> /x8e/xaf/xc2/xae <CJK> +<U00023593> /x8e/xaf/xc2/xaf <CJK> +<U00023565> /x8e/xaf/xc2/xb0 <CJK> +<U00023566> /x8e/xaf/xc2/xb1 <CJK> +<U00023567> /x8e/xaf/xc2/xb2 <CJK> +<U00023568> /x8e/xaf/xc2/xb3 <CJK> +<U00023569> /x8e/xaf/xc2/xb4 <CJK> +<U0002356A> /x8e/xaf/xc2/xb5 <CJK> +<U0002356B> /x8e/xaf/xc2/xb6 <CJK> +<U00023595> /x8e/xaf/xc2/xb7 <CJK> +<U0002356C> /x8e/xaf/xc2/xb8 <CJK> +<U0002356D> /x8e/xaf/xc2/xb9 <CJK> +<U0002356E> /x8e/xaf/xc2/xba <CJK> +<U0002356F> /x8e/xaf/xc2/xbb <CJK> +<U698C> /x8e/xaf/xc2/xbc <CJK> +<U00023570> /x8e/xaf/xc2/xbd <CJK> +<U00023571> /x8e/xaf/xc2/xbe <CJK> +<U00023572> /x8e/xaf/xc2/xbf <CJK> +<U00023573> /x8e/xaf/xc2/xc0 <CJK> +<U00023574> /x8e/xaf/xc2/xc1 <CJK> +<U00023575> /x8e/xaf/xc2/xc2 <CJK> +<U00023576> /x8e/xaf/xc2/xc3 <CJK> +<U00023577> /x8e/xaf/xc2/xc4 <CJK> +<U00023578> /x8e/xaf/xc2/xc5 <CJK> +<U00023579> /x8e/xaf/xc2/xc6 <CJK> +<U6980> /x8e/xaf/xc2/xc7 <CJK> +<U0002357A> /x8e/xaf/xc2/xc8 <CJK> +<U697F> /x8e/xaf/xc2/xc9 <CJK> +<U0002357B> /x8e/xaf/xc2/xca <CJK> +<U000235A9> /x8e/xaf/xc2/xcb <CJK> +<U0002357C> /x8e/xaf/xc2/xcc <CJK> +<U000238F1> /x8e/xaf/xc2/xcd <CJK> +<U000238EB> /x8e/xaf/xc2/xce <CJK> +<U0002398A> /x8e/xaf/xc2/xcf <CJK> +<U00023A3D> /x8e/xaf/xc2/xd0 <CJK> +<U00023AA6> /x8e/xaf/xc2/xd1 <CJK> +<U00023AA7> /x8e/xaf/xc2/xd2 <CJK> +<U00023BBA> /x8e/xaf/xc2/xd3 <CJK> +<U00023BBB> /x8e/xaf/xc2/xd5 <CJK> +<U00023BBC> /x8e/xaf/xc2/xd6 <CJK> +<U00023BBD> /x8e/xaf/xc2/xd7 <CJK> +<U00023E91> /x8e/xaf/xc2/xd8 <CJK> +<U00023E92> /x8e/xaf/xc2/xd9 <CJK> +<U00023E93> /x8e/xaf/xc2/xda <CJK> +<U00023E94> /x8e/xaf/xc2/xdb <CJK> +<U00023E95> /x8e/xaf/xc2/xdc <CJK> +<U00023E96> /x8e/xaf/xc2/xdd <CJK> +<U00023E97> /x8e/xaf/xc2/xde <CJK> +<U00023DDA> /x8e/xaf/xc2/xdf <CJK> +<U00023E98> /x8e/xaf/xc2/xe0 <CJK> +<U00023E99> /x8e/xaf/xc2/xe1 <CJK> +<U00023E9A> /x8e/xaf/xc2/xe2 <CJK> +<U00023E9B> /x8e/xaf/xc2/xe5 <CJK> +<U00023E9C> /x8e/xaf/xc2/xe6 <CJK> +<U00023E9D> /x8e/xaf/xc2/xe7 <CJK> +<U00023E9E> /x8e/xaf/xc2/xe8 <CJK> +<U00023E9F> /x8e/xaf/xc2/xe9 <CJK> +<U00023EA0> /x8e/xaf/xc2/xea <CJK> +<U00023EBF> /x8e/xaf/xc2/xeb <CJK> +<U00023EA1> /x8e/xaf/xc2/xec <CJK> +<U00023EA2> /x8e/xaf/xc2/xed <CJK> +<U00023EA3> /x8e/xaf/xc2/xee <CJK> +<U00023EA4> /x8e/xaf/xc2/xef <CJK> +<U00023EA5> /x8e/xaf/xc2/xf0 <CJK> +<U00023EA6> /x8e/xaf/xc2/xf1 <CJK> +<U00023EA7> /x8e/xaf/xc2/xf2 <CJK> +<U00023E5B> /x8e/xaf/xc2/xf3 <CJK> +<U00023EA8> /x8e/xaf/xc2/xf5 <CJK> +<U000242CB> /x8e/xaf/xc2/xf6 <CJK> +<U3DDA> /x8e/xaf/xc2/xf8 <CJK> +<U000242CC> /x8e/xaf/xc2/xf9 <CJK> +<U0002434F> /x8e/xaf/xc2/xfa <CJK> +<U000242CD> /x8e/xaf/xc2/xfb <CJK> +<U000242CE> /x8e/xaf/xc2/xfc <CJK> +<U000242CF> /x8e/xaf/xc2/xfd <CJK> +<U0002434E> /x8e/xaf/xc2/xfe <CJK> +<U000242D0> /x8e/xaf/xc3/xa1 <CJK> +<U000242D1> /x8e/xaf/xc3/xa2 <CJK> +<U000242D2> /x8e/xaf/xc3/xa3 <CJK> +<U000242D3> /x8e/xaf/xc3/xa5 <CJK> +<U000242D4> /x8e/xaf/xc3/xa6 <CJK> +<U000242D5> /x8e/xaf/xc3/xa7 <CJK> +<U000242D6> /x8e/xaf/xc3/xa8 <CJK> +<U000242D7> /x8e/xaf/xc3/xa9 <CJK> +<U000242D8> /x8e/xaf/xc3/xaa <CJK> +<U000242D9> /x8e/xaf/xc3/xab <CJK> +<U000242FA> /x8e/xaf/xc3/xac <CJK> +<U000242DA> /x8e/xaf/xc3/xad <CJK> +<U000242DB> /x8e/xaf/xc3/xae <CJK> +<U000242DC> /x8e/xaf/xc3/xb0 <CJK> +<U000242DD> /x8e/xaf/xc3/xb3 <CJK> +<U000242DE> /x8e/xaf/xc3/xb4 <CJK> +<U000242DF> /x8e/xaf/xc3/xb5 <CJK> +<U000242E0> /x8e/xaf/xc3/xb6 <CJK> +<U000242E1> /x8e/xaf/xc3/xb7 <CJK> +<U000242E2> /x8e/xaf/xc3/xb8 <CJK> +<U000242E3> /x8e/xaf/xc3/xb9 <CJK> +<U000242E4> /x8e/xaf/xc3/xba <CJK> +<U000242E5> /x8e/xaf/xc3/xbb <CJK> +<U3DDB> /x8e/xaf/xc3/xbc <CJK> +<U000242E6> /x8e/xaf/xc3/xbd <CJK> +<U000242E7> /x8e/xaf/xc3/xbe <CJK> +<U0002458E> /x8e/xaf/xc3/xbf <CJK> +<U00024698> /x8e/xaf/xc3/xc0 <CJK> +<U00024699> /x8e/xaf/xc3/xc1 <CJK> +<U0002480A> /x8e/xaf/xc3/xc3 <CJK> +<U00024826> /x8e/xaf/xc3/xc5 <CJK> +<U00024827> /x8e/xaf/xc3/xc6 <CJK> +<U000249BD> /x8e/xaf/xc3/xc7 <CJK> +<U000249DF> /x8e/xaf/xc3/xc8 <CJK> +<U3EE2> /x8e/xaf/xc3/xc9 <CJK> +<U000249BE> /x8e/xaf/xc3/xca <CJK> +<U000249DE> /x8e/xaf/xc3/xcb <CJK> +<U000249BF> /x8e/xaf/xc3/xcc <CJK> +<U000249C0> /x8e/xaf/xc3/xcd <CJK> +<U000249C1> /x8e/xaf/xc3/xce <CJK> +<U000249C2> /x8e/xaf/xc3/xcf <CJK> +<U0002499F> /x8e/xaf/xc3/xd0 <CJK> +<U000249C3> /x8e/xaf/xc3/xd1 <CJK> +<U000249C4> /x8e/xaf/xc3/xd2 <CJK> +<U000249C5> /x8e/xaf/xc3/xd3 <CJK> +<U000249C6> /x8e/xaf/xc3/xd4 <CJK> +<U000249C7> /x8e/xaf/xc3/xd5 <CJK> +<U3EE3> /x8e/xaf/xc3/xd6 <CJK> +<U000249C8> /x8e/xaf/xc3/xd7 <CJK> +<U000249C9> /x8e/xaf/xc3/xd8 <CJK> +<U000249E3> /x8e/xaf/xc3/xd9 <CJK> +<U000249CA> /x8e/xaf/xc3/xda <CJK> +<U000249CB> /x8e/xaf/xc3/xdb <CJK> +<U000249CC> /x8e/xaf/xc3/xdc <CJK> +<U000249CD> /x8e/xaf/xc3/xdd <CJK> +<U000249CE> /x8e/xaf/xc3/xde <CJK> +<U000249CF> /x8e/xaf/xc3/xdf <CJK> +<U000249D0> /x8e/xaf/xc3/xe0 <CJK> +<U000249D1> /x8e/xaf/xc3/xe1 <CJK> +<U000249D2> /x8e/xaf/xc3/xe2 <CJK> +<U000249D3> /x8e/xaf/xc3/xe3 <CJK> +<U000249D4> /x8e/xaf/xc3/xe5 <CJK> +<U00024B04> /x8e/xaf/xc3/xe6 <CJK> +<U00024B65> /x8e/xaf/xc3/xe7 <CJK> +<U00024BEE> /x8e/xaf/xc3/xe8 <CJK> +<U00024CA0> /x8e/xaf/xc3/xe9 <CJK> +<U00024CA1> /x8e/xaf/xc3/xea <CJK> +<U00024DDD> /x8e/xaf/xc3/xeb <CJK> +<U00024DDE> /x8e/xaf/xc3/xec <CJK> +<U00024F83> /x8e/xaf/xc3/xed <CJK> +<U00024FFA> /x8e/xaf/xc3/xee <CJK> +<U0002507F> /x8e/xaf/xc3/xef <CJK> +<U00025080> /x8e/xaf/xc3/xf0 <CJK> +<U000251E8> /x8e/xaf/xc3/xf1 <CJK> +<U000251E9> /x8e/xaf/xc3/xf2 <CJK> +<U000251EA> /x8e/xaf/xc3/xf3 <CJK> +<U000235A6> /x8e/xaf/xc3/xf4 <CJK> +<U000253E1> /x8e/xaf/xc3/xf5 <CJK> +<U000254DB> /x8e/xaf/xc3/xf7 <CJK> +<U000254DC> /x8e/xaf/xc3/xf8 <CJK> +<U000254DD> /x8e/xaf/xc3/xf9 <CJK> +<U000254DE> /x8e/xaf/xc3/xfa <CJK> +<U000254DF> /x8e/xaf/xc3/xfb <CJK> +<U000254E0> /x8e/xaf/xc3/xfc <CJK> +<U000254E1> /x8e/xaf/xc3/xfd <CJK> +<U000254E2> /x8e/xaf/xc3/xfe <CJK> +<U000254E3> /x8e/xaf/xc4/xa1 <CJK> +<U000254E4> /x8e/xaf/xc4/xa2 <CJK> +<U000254E5> /x8e/xaf/xc4/xa3 <CJK> +<U000254E6> /x8e/xaf/xc4/xa4 <CJK> +<U789C> /x8e/xaf/xc4/xa5 <CJK> +<U000254E7> /x8e/xaf/xc4/xa6 <CJK> +<U000256B0> /x8e/xaf/xc4/xa7 <CJK> +<U00025698> /x8e/xaf/xc4/xa8 <CJK> +<U000256B1> /x8e/xaf/xc4/xa9 <CJK> +<U00025699> /x8e/xaf/xc4/xaa <CJK> +<U000256B2> /x8e/xaf/xc4/xab <CJK> +<U000256B3> /x8e/xaf/xc4/xac <CJK> +<U000256B4> /x8e/xaf/xc4/xad <CJK> +<U000256B5> /x8e/xaf/xc4/xae <CJK> +<U000256B6> /x8e/xaf/xc4/xaf <CJK> +<U000256B7> /x8e/xaf/xc4/xb0 <CJK> +<U000256B8> /x8e/xaf/xc4/xb1 <CJK> +<U000256B9> /x8e/xaf/xc4/xb2 <CJK> +<U000257E2> /x8e/xaf/xc4/xb3 <CJK> +<U000257E3> /x8e/xaf/xc4/xb4 <CJK> +<U000257E4> /x8e/xaf/xc4/xb5 <CJK> +<U000257E5> /x8e/xaf/xc4/xb6 <CJK> +<U000257E6> /x8e/xaf/xc4/xb7 <CJK> +<U000257E7> /x8e/xaf/xc4/xb8 <CJK> +<U000257E8> /x8e/xaf/xc4/xb9 <CJK> +<U000257E9> /x8e/xaf/xc4/xba <CJK> +<U000259AD> /x8e/xaf/xc4/xbb <CJK> +<U000259CF> /x8e/xaf/xc4/xbc <CJK> +<U000259AE> /x8e/xaf/xc4/xbd <CJK> +<U000259AF> /x8e/xaf/xc4/xbe <CJK> +<U000259B0> /x8e/xaf/xc4/xbf <CJK> +<U000259B1> /x8e/xaf/xc4/xc0 <CJK> +<U00025A92> /x8e/xaf/xc4/xc1 <CJK> +<U00025A93> /x8e/xaf/xc4/xc2 <CJK> +<U00025A94> /x8e/xaf/xc4/xc3 <CJK> +<U00025B79> /x8e/xaf/xc4/xc4 <CJK> +<U7B7B> /x8e/xaf/xc4/xc5 <CJK> +<U00025B7A> /x8e/xaf/xc4/xc6 <CJK> +<U00025B7B> /x8e/xaf/xc4/xc7 <CJK> +<U00025B7C> /x8e/xaf/xc4/xc8 <CJK> +<U00025B7D> /x8e/xaf/xc4/xc9 <CJK> +<U00025B7E> /x8e/xaf/xc4/xca <CJK> +<U00025B7F> /x8e/xaf/xc4/xcb <CJK> +<U00025B80> /x8e/xaf/xc4/xcc <CJK> +<U00025B81> /x8e/xaf/xc4/xcd <CJK> +<U00025B82> /x8e/xaf/xc4/xce <CJK> +<U00025B83> /x8e/xaf/xc4/xcf <CJK> +<U00025B84> /x8e/xaf/xc4/xd0 <CJK> +<U00025E97> /x8e/xaf/xc4/xd1 <CJK> +<U00025E84> /x8e/xaf/xc4/xd2 <CJK> +<U00025E85> /x8e/xaf/xc4/xd3 <CJK> +<U00025E89> /x8e/xaf/xc4/xd4 <CJK> +<U00025E86> /x8e/xaf/xc4/xd5 <CJK> +<U00025E87> /x8e/xaf/xc4/xd6 <CJK> +<U0002602C> /x8e/xaf/xc4/xd7 <CJK> +<U0002602D> /x8e/xaf/xc4/xd8 <CJK> +<U0002602E> /x8e/xaf/xc4/xd9 <CJK> +<U0002602F> /x8e/xaf/xc4/xda <CJK> +<U00026030> /x8e/xaf/xc4/xdb <CJK> +<U00026031> /x8e/xaf/xc4/xdc <CJK> +<U00026032> /x8e/xaf/xc4/xdd <CJK> +<U00026033> /x8e/xaf/xc4/xde <CJK> +<U00026034> /x8e/xaf/xc4/xdf <CJK> +<U00026035> /x8e/xaf/xc4/xe0 <CJK> +<U00026036> /x8e/xaf/xc4/xe1 <CJK> +<U00026037> /x8e/xaf/xc4/xe2 <CJK> +<U000262D2> /x8e/xaf/xc4/xe3 <CJK> +<U00026444> /x8e/xaf/xc4/xe4 <CJK> +<U00026500> /x8e/xaf/xc4/xe5 <CJK> +<U00026583> /x8e/xaf/xc4/xe6 <CJK> +<U00026584> /x8e/xaf/xc4/xe7 <CJK> +<U0002677A> /x8e/xaf/xc4/xe9 <CJK> +<U0002677B> /x8e/xaf/xc4/xea <CJK> +<U0002677C> /x8e/xaf/xc4/xeb <CJK> +<U0002677D> /x8e/xaf/xc4/xec <CJK> +<U0002677E> /x8e/xaf/xc4/xed <CJK> +<U0002677F> /x8e/xaf/xc4/xef <CJK> +<U00026787> /x8e/xaf/xc4/xf0 <CJK> +<U00026780> /x8e/xaf/xc4/xf1 <CJK> +<U00026A43> /x8e/xaf/xc4/xf2 <CJK> +<U00026D34> /x8e/xaf/xc4/xf3 <CJK> +<U00026D35> /x8e/xaf/xc4/xf5 <CJK> +<U00026D36> /x8e/xaf/xc4/xf6 <CJK> +<U00026D37> /x8e/xaf/xc4/xf7 <CJK> +<U00026D38> /x8e/xaf/xc4/xf8 <CJK> +<U00026D39> /x8e/xaf/xc4/xf9 <CJK> +<U00026D3A> /x8e/xaf/xc4/xfa <CJK> +<U00026D3B> /x8e/xaf/xc4/xfb <CJK> +<U00026D3C> /x8e/xaf/xc4/xfc <CJK> +<U00026D3D> /x8e/xaf/xc4/xfd <CJK> +<U00026D3E> /x8e/xaf/xc4/xfe <CJK> +<U00026D3F> /x8e/xaf/xc5/xa1 <CJK> +<U00026D40> /x8e/xaf/xc5/xa2 <CJK> +<U00026D41> /x8e/xaf/xc5/xa3 <CJK> +<U00026D42> /x8e/xaf/xc5/xa4 <CJK> +<U00026D43> /x8e/xaf/xc5/xa5 <CJK> +<U00026D44> /x8e/xaf/xc5/xa6 <CJK> +<U00026D45> /x8e/xaf/xc5/xa7 <CJK> +<U00026D46> /x8e/xaf/xc5/xa8 <CJK> +<U00026D47> /x8e/xaf/xc5/xa9 <CJK> +<U00026D48> /x8e/xaf/xc5/xaa <CJK> +<U00026D49> /x8e/xaf/xc5/xab <CJK> +<U00026D4A> /x8e/xaf/xc5/xac <CJK> +<U00026D4B> /x8e/xaf/xc5/xae <CJK> +<U00026D4C> /x8e/xaf/xc5/xaf <CJK> +<U00026D4D> /x8e/xaf/xc5/xb0 <CJK> +<U00026D4E> /x8e/xaf/xc5/xb1 <CJK> +<U000272E7> /x8e/xaf/xc5/xb2 <CJK> +<U000272E8> /x8e/xaf/xc5/xb3 <CJK> +<U000272E9> /x8e/xaf/xc5/xb4 <CJK> +<U000272EA> /x8e/xaf/xc5/xb5 <CJK> +<U000272EB> /x8e/xaf/xc5/xb6 <CJK> +<U000272EC> /x8e/xaf/xc5/xb7 <CJK> +<U000272ED> /x8e/xaf/xc5/xb8 <CJK> +<U000272EE> /x8e/xaf/xc5/xb9 <CJK> +<U000275F7> /x8e/xaf/xc5/xba <CJK> +<U0002769A> /x8e/xaf/xc5/xbb <CJK> +<U000276CD> /x8e/xaf/xc5/xbc <CJK> +<U000276A3> /x8e/xaf/xc5/xbe <CJK> +<U000276CE> /x8e/xaf/xc5/xbf <CJK> +<U00027831> /x8e/xaf/xc5/xc0 <CJK> +<U00027832> /x8e/xaf/xc5/xc1 <CJK> +<U00027833> /x8e/xaf/xc5/xc2 <CJK> +<U000279E4> /x8e/xaf/xc5/xc3 <CJK> +<U000279E5> /x8e/xaf/xc5/xc5 <CJK> +<U000279E6> /x8e/xaf/xc5/xc6 <CJK> +<U00027CC8> /x8e/xaf/xc5/xc7 <CJK> +<U00027D74> /x8e/xaf/xc5/xc8 <CJK> +<U00027D75> /x8e/xaf/xc5/xc9 <CJK> +<U00027D76> /x8e/xaf/xc5/xca <CJK> +<U00027D77> /x8e/xaf/xc5/xcb <CJK> +<U00027D78> /x8e/xaf/xc5/xcc <CJK> +<U00027D79> /x8e/xaf/xc5/xcd <CJK> +<U00027D7A> /x8e/xaf/xc5/xce <CJK> +<U00027E61> /x8e/xaf/xc5/xcf <CJK> +<U00027EDF> /x8e/xaf/xc5/xd0 <CJK> +<U00027EE0> /x8e/xaf/xc5/xd1 <CJK> +<U00027EE1> /x8e/xaf/xc5/xd2 <CJK> +<U00027EE2> /x8e/xaf/xc5/xd3 <CJK> +<U00027EE3> /x8e/xaf/xc5/xd4 <CJK> +<U00027EE4> /x8e/xaf/xc5/xd5 <CJK> +<U00027EE5> /x8e/xaf/xc5/xd6 <CJK> +<U00027EE6> /x8e/xaf/xc5/xd7 <CJK> +<U47F3> /x8e/xaf/xc5/xd8 <CJK> +<U00028031> /x8e/xaf/xc5/xd9 <CJK> +<U0002823D> /x8e/xaf/xc5/xda <CJK> +<U0002823E> /x8e/xaf/xc5/xdb <CJK> +<U0002823F> /x8e/xaf/xc5/xdc <CJK> +<U000282F4> /x8e/xaf/xc5/xdd <CJK> +<U000282F5> /x8e/xaf/xc5/xde <CJK> +<U000282F6> /x8e/xaf/xc5/xdf <CJK> +<U00028417> /x8e/xaf/xc5/xe1 <CJK> +<U00028541> /x8e/xaf/xc5/xe2 <CJK> +<U00028542> /x8e/xaf/xc5/xe3 <CJK> +<U00028543> /x8e/xaf/xc5/xe4 <CJK> +<U00028544> /x8e/xaf/xc5/xe5 <CJK> +<U00028545> /x8e/xaf/xc5/xe6 <CJK> +<U00028546> /x8e/xaf/xc5/xe7 <CJK> +<U00028547> /x8e/xaf/xc5/xe8 <CJK> +<U00028548> /x8e/xaf/xc5/xe9 <CJK> +<U00028549> /x8e/xaf/xc5/xea <CJK> +<U0002854A> /x8e/xaf/xc5/xeb <CJK> +<U0002854B> /x8e/xaf/xc5/xec <CJK> +<U90D2> /x8e/xaf/xc5/xed <CJK> +<U000286BA> /x8e/xaf/xc5/xee <CJK> +<U00028744> /x8e/xaf/xc5/xef <CJK> +<U0002892A> /x8e/xaf/xc5/xf0 <CJK> +<U0002896D> /x8e/xaf/xc5/xf1 <CJK> +<U0002897E> /x8e/xaf/xc5/xf4 <CJK> +<U0002896E> /x8e/xaf/xc5/xf5 <CJK> +<U0002896F> /x8e/xaf/xc5/xf6 <CJK> +<U00028970> /x8e/xaf/xc5/xf7 <CJK> +<U00028971> /x8e/xaf/xc5/xf8 <CJK> +<U00028976> /x8e/xaf/xc5/xf9 <CJK> +<U00028C79> /x8e/xaf/xc5/xfa <CJK> +<U95A0> /x8e/xaf/xc5/xfb <CJK> +<U00028D04> /x8e/xaf/xc5/xfd <CJK> +<U00028CF8> /x8e/xaf/xc5/xfe <CJK> +<U00028D05> /x8e/xaf/xc6/xa1 <CJK> +<U00028EDA> /x8e/xaf/xc6/xa2 <CJK> +<U00028EDB> /x8e/xaf/xc6/xa3 <CJK> +<U00028EDC> /x8e/xaf/xc6/xa4 <CJK> +<U00028EDD> /x8e/xaf/xc6/xa5 <CJK> +<U00028EDE> /x8e/xaf/xc6/xa6 <CJK> +<U00028EDF> /x8e/xaf/xc6/xa7 <CJK> +<U00028EE0> /x8e/xaf/xc6/xa8 <CJK> +<U00028EE1> /x8e/xaf/xc6/xa9 <CJK> +<U000290C5> /x8e/xaf/xc6/xaa <CJK> +<U0002909A> /x8e/xaf/xc6/xab <CJK> +<U0002909B> /x8e/xaf/xc6/xac <CJK> +<U0002909C> /x8e/xaf/xc6/xad <CJK> +<U000291D8> /x8e/xaf/xc6/xae <CJK> +<U000291D9> /x8e/xaf/xc6/xaf <CJK> +<U000291DA> /x8e/xaf/xc6/xb0 <CJK> +<U0002926E> /x8e/xaf/xc6/xb1 <CJK> +<U4A57> /x8e/xaf/xc6/xb2 <CJK> +<U0002946B> /x8e/xaf/xc6/xb3 <CJK> +<U00027D83> /x8e/xaf/xc6/xb4 <CJK> +<U000296D6> /x8e/xaf/xc6/xb6 <CJK> +<U000296BD> /x8e/xaf/xc6/xb7 <CJK> +<U0002322E> /x8e/xaf/xc6/xb9 <CJK> +<U00029AFC> /x8e/xaf/xc6/xba <CJK> +<U00029D53> /x8e/xaf/xc6/xbb <CJK> +<U00029DB7> /x8e/xaf/xc6/xbc <CJK> +<U0002A28C> /x8e/xaf/xc6/xbd <CJK> +<U0002A38E> /x8e/xaf/xc6/xbe <CJK> +<U0002A2FF> /x8e/xaf/xc6/xbf <CJK> +<U00020076> /x8e/xaf/xc6/xc0 <CJK> +<U00020106> /x8e/xaf/xc6/xc1 <CJK> +<U0002017E> /x8e/xaf/xc6/xc2 <CJK> +<U00020384> /x8e/xaf/xc6/xc3 <CJK> +<U00020385> /x8e/xaf/xc6/xc4 <CJK> +<U00020386> /x8e/xaf/xc6/xc5 <CJK> +<U00020387> /x8e/xaf/xc6/xc6 <CJK> +<U00020388> /x8e/xaf/xc6/xc7 <CJK> +<U000203A7> /x8e/xaf/xc6/xc8 <CJK> +<U00020389> /x8e/xaf/xc6/xc9 <CJK> +<U0002038A> /x8e/xaf/xc6/xca <CJK> +<U0002038B> /x8e/xaf/xc6/xcb <CJK> +<U0002038C> /x8e/xaf/xc6/xcc <CJK> +<U0002038D> /x8e/xaf/xc6/xcd <CJK> +<U0002038E> /x8e/xaf/xc6/xce <CJK> +<U0002038F> /x8e/xaf/xc6/xcf <CJK> +<U000203A3> /x8e/xaf/xc6/xd0 <CJK> +<U00020390> /x8e/xaf/xc6/xd1 <CJK> +<U00020391> /x8e/xaf/xc6/xd2 <CJK> +<U00020392> /x8e/xaf/xc6/xd3 <CJK> +<U00020393> /x8e/xaf/xc6/xd4 <CJK> +<U000203AC> /x8e/xaf/xc6/xd5 <CJK> +<U00020394> /x8e/xaf/xc6/xd6 <CJK> +<U00020395> /x8e/xaf/xc6/xd7 <CJK> +<U00020396> /x8e/xaf/xc6/xd8 <CJK> +<U000204AA> /x8e/xaf/xc6/xd9 <CJK> +<U000204AB> /x8e/xaf/xc6/xda <CJK> +<U0002059E> /x8e/xaf/xc6/xdb <CJK> +<U51A9> /x8e/xaf/xc6/xdc <CJK> +<U00020608> /x8e/xaf/xc6/xdd <CJK> +<U00020609> /x8e/xaf/xc6/xde <CJK> +<U00020668> /x8e/xaf/xc6/xdf <CJK> +<U00020669> /x8e/xaf/xc6/xe0 <CJK> +<U0002066A> /x8e/xaf/xc6/xe1 <CJK> +<U0002069A> /x8e/xaf/xc6/xe2 <CJK> +<U000207D9> /x8e/xaf/xc6/xe3 <CJK> +<U000207DA> /x8e/xaf/xc6/xe4 <CJK> +<U000207DB> /x8e/xaf/xc6/xe5 <CJK> +<U000208A8> /x8e/xaf/xc6/xe6 <CJK> +<U00020901> /x8e/xaf/xc6/xe7 <CJK> +<U00020928> /x8e/xaf/xc6/xe8 <CJK> +<U00020977> /x8e/xaf/xc6/xe9 <CJK> +<U000209BD> /x8e/xaf/xc6/xea <CJK> +<U000209BE> /x8e/xaf/xc6/xeb <CJK> +<U00020F60> /x8e/xaf/xc6/xec <CJK> +<U00020AA0> /x8e/xaf/xc6/xed <CJK> +<U00020AA2> /x8e/xaf/xc6/xee <CJK> +<U00020B0F> /x8e/xaf/xc6/xef <CJK> +<U00020B85> /x8e/xaf/xc6/xf0 <CJK> +<U00020EFE> /x8e/xaf/xc6/xf1 <CJK> +<U00020EFF> /x8e/xaf/xc6/xf2 <CJK> +<U00020F00> /x8e/xaf/xc6/xf3 <CJK> +<U00020F01> /x8e/xaf/xc6/xf4 <CJK> +<U00020F16> /x8e/xaf/xc6/xf5 <CJK> +<U00020F02> /x8e/xaf/xc6/xf6 <CJK> +<U00020F03> /x8e/xaf/xc6/xf7 <CJK> +<U00020F04> /x8e/xaf/xc6/xf8 <CJK> +<U00020F05> /x8e/xaf/xc6/xf9 <CJK> +<U00020F06> /x8e/xaf/xc6/xfa <CJK> +<U00020F07> /x8e/xaf/xc6/xfb <CJK> +<U00020F08> /x8e/xaf/xc6/xfc <CJK> +<U00020F22> /x8e/xaf/xc6/xfd <CJK> +<U00020F09> /x8e/xaf/xc6/xfe <CJK> +<U00020F0A> /x8e/xaf/xc7/xa1 <CJK> +<U00020F0B> /x8e/xaf/xc7/xa2 <CJK> +<U00020F0C> /x8e/xaf/xc7/xa3 <CJK> +<U00020F14> /x8e/xaf/xc7/xa4 <CJK> +<U00020F29> /x8e/xaf/xc7/xa5 <CJK> +<U00020E6E> /x8e/xaf/xc7/xa6 <CJK> +<U00020F0D> /x8e/xaf/xc7/xa7 <CJK> +<U00020F0E> /x8e/xaf/xc7/xa8 <CJK> +<U00020F0F> /x8e/xaf/xc7/xa9 <CJK> +<U00020F10> /x8e/xaf/xc7/xaa <CJK> +<U00020F11> /x8e/xaf/xc7/xab <CJK> +<U00020F12> /x8e/xaf/xc7/xac <CJK> +<U00020F13> /x8e/xaf/xc7/xad <CJK> +<U0002121B> /x8e/xaf/xc7/xae <CJK> +<U0002121C> /x8e/xaf/xc7/xaf <CJK> +<U0002121D> /x8e/xaf/xc7/xb0 <CJK> +<U00021413> /x8e/xaf/xc7/xb1 <CJK> +<U000213FF> /x8e/xaf/xc7/xb2 <CJK> +<U00021400> /x8e/xaf/xc7/xb3 <CJK> +<U00021401> /x8e/xaf/xc7/xb4 <CJK> +<U00021402> /x8e/xaf/xc7/xb5 <CJK> +<U00021403> /x8e/xaf/xc7/xb6 <CJK> +<U00021404> /x8e/xaf/xc7/xb7 <CJK> +<U0002140A> /x8e/xaf/xc7/xb8 <CJK> +<U00021405> /x8e/xaf/xc7/xb9 <CJK> +<U00021406> /x8e/xaf/xc7/xba <CJK> +<U00021407> /x8e/xaf/xc7/xbb <CJK> +<U00021408> /x8e/xaf/xc7/xbc <CJK> +<U0002153A> /x8e/xaf/xc7/xbd <CJK> +<U00021573> /x8e/xaf/xc7/xbe <CJK> +<U0002166F> /x8e/xaf/xc7/xbf <CJK> +<U00021670> /x8e/xaf/xc7/xc0 <CJK> +<U00021671> /x8e/xaf/xc7/xc1 <CJK> +<U00020052> /x8e/xaf/xc7/xc2 <CJK> +<U00021A9A> /x8e/xaf/xc7/xc4 <CJK> +<U00021860> /x8e/xaf/xc7/xc5 <CJK> +<U0002182B> /x8e/xaf/xc7/xc7 <CJK> +<U00021824> /x8e/xaf/xc7/xc8 <CJK> +<U0002182C> /x8e/xaf/xc7/xc9 <CJK> +<U0002182D> /x8e/xaf/xc7/xca <CJK> +<U0002182E> /x8e/xaf/xc7/xcb <CJK> +<U0002182F> /x8e/xaf/xc7/xcc <CJK> +<U00021830> /x8e/xaf/xc7/xcd <CJK> +<U00021831> /x8e/xaf/xc7/xce <CJK> +<U00021832> /x8e/xaf/xc7/xcf <CJK> +<U00021833> /x8e/xaf/xc7/xd0 <CJK> +<U00021834> /x8e/xaf/xc7/xd1 <CJK> +<U00021835> /x8e/xaf/xc7/xd2 <CJK> +<U00021845> /x8e/xaf/xc7/xd3 <CJK> +<U00021836> /x8e/xaf/xc7/xd4 <CJK> +<U00021992> /x8e/xaf/xc7/xd5 <CJK> +<U00021993> /x8e/xaf/xc7/xd6 <CJK> +<U00021A88> /x8e/xaf/xc7/xd7 <CJK> +<U00021A89> /x8e/xaf/xc7/xd8 <CJK> +<U00021A8A> /x8e/xaf/xc7/xd9 <CJK> +<U00021A8B> /x8e/xaf/xc7/xda <CJK> +<U00021B3F> /x8e/xaf/xc7/xdb <CJK> +<U00021CCA> /x8e/xaf/xc7/xdd <CJK> +<U00021EF6> /x8e/xaf/xc7/xde <CJK> +<U00021EF7> /x8e/xaf/xc7/xdf <CJK> +<U00021EF8> /x8e/xaf/xc7/xe0 <CJK> +<U00021EF9> /x8e/xaf/xc7/xe1 <CJK> +<U0002212B> /x8e/xaf/xc7/xe2 <CJK> +<U000221A4> /x8e/xaf/xc7/xe4 <CJK> +<U000221CE> /x8e/xaf/xc7/xe5 <CJK> +<U0002229E> /x8e/xaf/xc7/xe7 <CJK> +<U0002229F> /x8e/xaf/xc7/xe8 <CJK> +<U000222A0> /x8e/xaf/xc7/xe9 <CJK> +<U000222A1> /x8e/xaf/xc7/xea <CJK> +<U000222A2> /x8e/xaf/xc7/xeb <CJK> +<U000222A3> /x8e/xaf/xc7/xec <CJK> +<U000222A4> /x8e/xaf/xc7/xed <CJK> +<U000222A5> /x8e/xaf/xc7/xee <CJK> +<U000222A6> /x8e/xaf/xc7/xef <CJK> +<U00022418> /x8e/xaf/xc7/xf0 <CJK> +<U00022560> /x8e/xaf/xc7/xf1 <CJK> +<U00022561> /x8e/xaf/xc7/xf2 <CJK> +<U00022562> /x8e/xaf/xc7/xf3 <CJK> +<U00022563> /x8e/xaf/xc7/xf4 <CJK> +<U00022564> /x8e/xaf/xc7/xf5 <CJK> +<U000227BD> /x8e/xaf/xc7/xf6 <CJK> +<U000227BE> /x8e/xaf/xc7/xf7 <CJK> +<U0002280B> /x8e/xaf/xc7/xf8 <CJK> +<U000227BF> /x8e/xaf/xc7/xf9 <CJK> +<U000227C0> /x8e/xaf/xc7/xfa <CJK> +<U0002280C> /x8e/xaf/xc7/xfc <CJK> +<U0002278D> /x8e/xaf/xc7/xfd <CJK> +<U0002280D> /x8e/xaf/xc7/xfe <CJK> +<U0002280E> /x8e/xaf/xc8/xa1 <CJK> +<U0002285E> /x8e/xaf/xc8/xa2 <CJK> +<U0002280F> /x8e/xaf/xc8/xa3 <CJK> +<U00022810> /x8e/xaf/xc8/xa4 <CJK> +<U000227C1> /x8e/xaf/xc8/xa5 <CJK> +<U00022811> /x8e/xaf/xc8/xa6 <CJK> +<U000227C2> /x8e/xaf/xc8/xa8 <CJK> +<U000229EA> /x8e/xaf/xc8/xa9 <CJK> +<U000229EB> /x8e/xaf/xc8/xaa <CJK> +<U00022CE3> /x8e/xaf/xc8/xab <CJK> +<U00022CE4> /x8e/xaf/xc8/xac <CJK> +<U00022CE5> /x8e/xaf/xc8/xad <CJK> +<U00022CE6> /x8e/xaf/xc8/xae <CJK> +<U00022CE7> /x8e/xaf/xc8/xaf <CJK> +<U00022C92> /x8e/xaf/xc8/xb0 <CJK> +<U00022D4A> /x8e/xaf/xc8/xb1 <CJK> +<U00022CE8> /x8e/xaf/xc8/xb3 <CJK> +<U00022CE9> /x8e/xaf/xc8/xb4 <CJK> +<U00022CEA> /x8e/xaf/xc8/xb5 <CJK> +<U00022D01> /x8e/xaf/xc8/xb6 <CJK> +<U00022CEB> /x8e/xaf/xc8/xb7 <CJK> +<U00022CEC> /x8e/xaf/xc8/xb8 <CJK> +<U00022CEF> /x8e/xaf/xc8/xb9 <CJK> +<U00022CED> /x8e/xaf/xc8/xba <CJK> +<U00022CEE> /x8e/xaf/xc8/xbb <CJK> +<U00022CF0> /x8e/xaf/xc8/xbc <CJK> +<U00022CF1> /x8e/xaf/xc8/xbd <CJK> +<U00022CF2> /x8e/xaf/xc8/xbe <CJK> +<U00022CF3> /x8e/xaf/xc8/xbf <CJK> +<U00022CF4> /x8e/xaf/xc8/xc0 <CJK> +<U00022CF5> /x8e/xaf/xc8/xc1 <CJK> +<U00022CF6> /x8e/xaf/xc8/xc2 <CJK> +<U00022CF7> /x8e/xaf/xc8/xc3 <CJK> +<U00022CF8> /x8e/xaf/xc8/xc4 <CJK> +<U00022CF9> /x8e/xaf/xc8/xc5 <CJK> +<U00022CFE> /x8e/xaf/xc8/xc6 <CJK> +<U00022CFA> /x8e/xaf/xc8/xc7 <CJK> +<U00022CFB> /x8e/xaf/xc8/xc8 <CJK> +<U00022CFC> /x8e/xaf/xc8/xc9 <CJK> +<U00023263> /x8e/xaf/xc8/xca <CJK> +<U00023264> /x8e/xaf/xc8/xcb <CJK> +<U00023265> /x8e/xaf/xc8/xcc <CJK> +<U00023266> /x8e/xaf/xc8/xcd <CJK> +<U00023267> /x8e/xaf/xc8/xce <CJK> +<U00023268> /x8e/xaf/xc8/xcf <CJK> +<U0002360B> /x8e/xaf/xc8/xd0 <CJK> +<U0002360D> /x8e/xaf/xc8/xd1 <CJK> +<U3BBC> /x8e/xaf/xc8/xd2 <CJK> +<U0002360E> /x8e/xaf/xc8/xd3 <CJK> +<U0002360F> /x8e/xaf/xc8/xd4 <CJK> +<U3BA4> /x8e/xaf/xc8/xd5 <CJK> +<U00023614> /x8e/xaf/xc8/xd6 <CJK> +<U000235D4> /x8e/xaf/xc8/xd7 <CJK> +<U000235D5> /x8e/xaf/xc8/xd8 <CJK> +<U000235D6> /x8e/xaf/xc8/xd9 <CJK> +<U000235D7> /x8e/xaf/xc8/xda <CJK> +<U000235D8> /x8e/xaf/xc8/xdb <CJK> +<U000235D9> /x8e/xaf/xc8/xdc <CJK> +<U000235DA> /x8e/xaf/xc8/xdd <CJK> +<U000235DB> /x8e/xaf/xc8/xde <CJK> +<U000235DC> /x8e/xaf/xc8/xdf <CJK> +<U000235DD> /x8e/xaf/xc8/xe0 <CJK> +<U000235DE> /x8e/xaf/xc8/xe1 <CJK> +<U000235DF> /x8e/xaf/xc8/xe2 <CJK> +<U000235E0> /x8e/xaf/xc8/xe3 <CJK> +<U000235E1> /x8e/xaf/xc8/xe4 <CJK> +<U000235E2> /x8e/xaf/xc8/xe5 <CJK> +<U000235E3> /x8e/xaf/xc8/xe6 <CJK> +<U000235E4> /x8e/xaf/xc8/xe7 <CJK> +<U000235E5> /x8e/xaf/xc8/xe8 <CJK> +<U000235E6> /x8e/xaf/xc8/xe9 <CJK> +<U000235E7> /x8e/xaf/xc8/xea <CJK> +<U000235E8> /x8e/xaf/xc8/xeb <CJK> +<U000235E9> /x8e/xaf/xc8/xec <CJK> +<U000235EA> /x8e/xaf/xc8/xed <CJK> +<U000235EB> /x8e/xaf/xc8/xee <CJK> +<U000235EC> /x8e/xaf/xc8/xef <CJK> +<U000236EC> /x8e/xaf/xc8/xf0 <CJK> +<U000235ED> /x8e/xaf/xc8/xf1 <CJK> +<U000235EE> /x8e/xaf/xc8/xf2 <CJK> +<U000235EF> /x8e/xaf/xc8/xf3 <CJK> +<U00023600> /x8e/xaf/xc8/xf4 <CJK> +<U000235F0> /x8e/xaf/xc8/xf5 <CJK> +<U00023904> /x8e/xaf/xc8/xf6 <CJK> +<U00023905> /x8e/xaf/xc8/xf8 <CJK> +<U00023AB5> /x8e/xaf/xc8/xfa <CJK> +<U00023BD6> /x8e/xaf/xc8/xfc <CJK> +<U00023BD7> /x8e/xaf/xc8/xfd <CJK> +<U00023BD8> /x8e/xaf/xc8/xfe <CJK> +<U00023BD9> /x8e/xaf/xc9/xa1 <CJK> +<U00023EA9> /x8e/xaf/xc9/xa2 <CJK> +<U00023F00> /x8e/xaf/xc9/xa3 <CJK> +<U00023F01> /x8e/xaf/xc9/xa4 <CJK> +<U00023F02> /x8e/xaf/xc9/xa5 <CJK> +<U00023F03> /x8e/xaf/xc9/xa6 <CJK> +<U00023F04> /x8e/xaf/xc9/xa7 <CJK> +<U00023F05> /x8e/xaf/xc9/xa8 <CJK> +<U00023F06> /x8e/xaf/xc9/xa9 <CJK> +<U00023F3F> /x8e/xaf/xc9/xaa <CJK> +<U00023F07> /x8e/xaf/xc9/xab <CJK> +<U00023F08> /x8e/xaf/xc9/xac <CJK> +<U00023F09> /x8e/xaf/xc9/xad <CJK> +<U00023F0A> /x8e/xaf/xc9/xae <CJK> +<U00023EB6> /x8e/xaf/xc9/xaf <CJK> +<U00023F0B> /x8e/xaf/xc9/xb0 <CJK> +<U00023F0C> /x8e/xaf/xc9/xb1 <CJK> +<U00023F0D> /x8e/xaf/xc9/xb4 <CJK> +<U00023F0E> /x8e/xaf/xc9/xb6 <CJK> +<U00023F0F> /x8e/xaf/xc9/xb7 <CJK> +<U00023F10> /x8e/xaf/xc9/xb8 <CJK> +<U00023F11> /x8e/xaf/xc9/xb9 <CJK> +<U00023F12> /x8e/xaf/xc9/xba <CJK> +<U00023F35> /x8e/xaf/xc9/xbb <CJK> +<U00023F13> /x8e/xaf/xc9/xbc <CJK> +<U00023F14> /x8e/xaf/xc9/xbd <CJK> +<U00023EAA> /x8e/xaf/xc9/xbe <CJK> +<U00023FC1> /x8e/xaf/xc9/xc0 <CJK> +<U00023F15> /x8e/xaf/xc9/xc1 <CJK> +<U00023F16> /x8e/xaf/xc9/xc2 <CJK> +<U00023F17> /x8e/xaf/xc9/xc3 <CJK> +<U0002431E> /x8e/xaf/xc9/xc4 <CJK> +<U0002431F> /x8e/xaf/xc9/xc5 <CJK> +<U00024320> /x8e/xaf/xc9/xc6 <CJK> +<U00024321> /x8e/xaf/xc9/xc7 <CJK> +<U00024322> /x8e/xaf/xc9/xc9 <CJK> +<U00024323> /x8e/xaf/xc9/xca <CJK> +<U7195> /x8e/xaf/xc9/xcb <CJK> +<U00024324> /x8e/xaf/xc9/xcc <CJK> +<U00024325> /x8e/xaf/xc9/xcd <CJK> +<U00024326> /x8e/xaf/xc9/xce <CJK> +<U00024327> /x8e/xaf/xc9/xcf <CJK> +<U00024328> /x8e/xaf/xc9/xd0 <CJK> +<U00024329> /x8e/xaf/xc9/xd1 <CJK> +<U0002432A> /x8e/xaf/xc9/xd2 <CJK> +<U0002432B> /x8e/xaf/xc9/xd3 <CJK> +<U00024307> /x8e/xaf/xc9/xd4 <CJK> +<U0002432C> /x8e/xaf/xc9/xd5 <CJK> +<U0002432D> /x8e/xaf/xc9/xd6 <CJK> +<U0002432E> /x8e/xaf/xc9/xd7 <CJK> +<U3DE8> /x8e/xaf/xc9/xd8 <CJK> +<U0002432F> /x8e/xaf/xc9/xda <CJK> +<U00024330> /x8e/xaf/xc9/xdb <CJK> +<U00024348> /x8e/xaf/xc9/xdc <CJK> +<U00024331> /x8e/xaf/xc9/xdd <CJK> +<U00024332> /x8e/xaf/xc9/xde <CJK> +<U7198> /x8e/xaf/xc9/xdf <CJK> +<U00024333> /x8e/xaf/xc9/xe0 <CJK> +<U00024334> /x8e/xaf/xc9/xe2 <CJK> +<U00024335> /x8e/xaf/xc9/xe3 <CJK> +<U00024336> /x8e/xaf/xc9/xe4 <CJK> +<U00024559> /x8e/xaf/xc9/xe5 <CJK> +<U00024591> /x8e/xaf/xc9/xe6 <CJK> +<U000245E7> /x8e/xaf/xc9/xe7 <CJK> +<U000246B8> /x8e/xaf/xc9/xe8 <CJK> +<U000246B9> /x8e/xaf/xc9/xe9 <CJK> +<U000246BA> /x8e/xaf/xc9/xea <CJK> +<U000246BB> /x8e/xaf/xc9/xeb <CJK> +<U000246C8> /x8e/xaf/xc9/xec <CJK> +<U0002484D> /x8e/xaf/xc9/xed <CJK> +<U00024889> /x8e/xaf/xc9/xee <CJK> +<U00024850> /x8e/xaf/xc9/xef <CJK> +<U00024828> /x8e/xaf/xc9/xf0 <CJK> +<U000249FB> /x8e/xaf/xc9/xf1 <CJK> +<U000249FC> /x8e/xaf/xc9/xf2 <CJK> +<U000249FD> /x8e/xaf/xc9/xf3 <CJK> +<U000249FE> /x8e/xaf/xc9/xf4 <CJK> +<U000249FF> /x8e/xaf/xc9/xf5 <CJK> +<U7478> /x8e/xaf/xc9/xf6 <CJK> +<U00024A00> /x8e/xaf/xc9/xf7 <CJK> +<U00024A01> /x8e/xaf/xc9/xf8 <CJK> +<U00024A02> /x8e/xaf/xc9/xf9 <CJK> +<U000249E4> /x8e/xaf/xc9/xfa <CJK> +<U000249E5> /x8e/xaf/xc9/xfb <CJK> +<U00024A03> /x8e/xaf/xc9/xfc <CJK> +<U00024A04> /x8e/xaf/xc9/xfd <CJK> +<U00024A05> /x8e/xaf/xc9/xfe <CJK> +<U00024A06> /x8e/xaf/xca/xa1 <CJK> +<U00024A07> /x8e/xaf/xca/xa2 <CJK> +<U00024A13> /x8e/xaf/xca/xa3 <CJK> +<U00024A08> /x8e/xaf/xca/xa4 <CJK> +<U00024A09> /x8e/xaf/xca/xa5 <CJK> +<U000249E6> /x8e/xaf/xca/xa6 <CJK> +<U00024A0A> /x8e/xaf/xca/xa7 <CJK> +<U00024A0B> /x8e/xaf/xca/xa8 <CJK> +<U00024A0C> /x8e/xaf/xca/xa9 <CJK> +<U00024B0B> /x8e/xaf/xca/xaa <CJK> +<U00024BF4> /x8e/xaf/xca/xab <CJK> +<U00024C0A> /x8e/xaf/xca/xac <CJK> +<U00024CB1> /x8e/xaf/xca/xad <CJK> +<U00024E1D> /x8e/xaf/xca/xae <CJK> +<U00024F8B> /x8e/xaf/xca/xb0 <CJK> +<U00024F8C> /x8e/xaf/xca/xb1 <CJK> +<U00024F8F> /x8e/xaf/xca/xb2 <CJK> +<U00024F8D> /x8e/xaf/xca/xb3 <CJK> +<U00024F8E> /x8e/xaf/xca/xb4 <CJK> +<U00025006> /x8e/xaf/xca/xb5 <CJK> +<U00025086> /x8e/xaf/xca/xb6 <CJK> +<U00025222> /x8e/xaf/xca/xb7 <CJK> +<U00025223> /x8e/xaf/xca/xb8 <CJK> +<U00025224> /x8e/xaf/xca/xb9 <CJK> +<U00025225> /x8e/xaf/xca/xba <CJK> +<U00025226> /x8e/xaf/xca/xbb <CJK> +<U00025227> /x8e/xaf/xca/xbc <CJK> +<U00025228> /x8e/xaf/xca/xbd <CJK> +<U000253F1> /x8e/xaf/xca/xbe <CJK> +<U78B9> /x8e/xaf/xca/xbf <CJK> +<U00025523> /x8e/xaf/xca/xc0 <CJK> +<U00025512> /x8e/xaf/xca/xc1 <CJK> +<U00025513> /x8e/xaf/xca/xc3 <CJK> +<U00025514> /x8e/xaf/xca/xc4 <CJK> +<U00025515> /x8e/xaf/xca/xc5 <CJK> +<U00025516> /x8e/xaf/xca/xc6 <CJK> +<U00025517> /x8e/xaf/xca/xc7 <CJK> +<U00025518> /x8e/xaf/xca/xc8 <CJK> +<U00025519> /x8e/xaf/xca/xc9 <CJK> +<U0002554B> /x8e/xaf/xca/xca <CJK> +<U0002551A> /x8e/xaf/xca/xcb <CJK> +<U0002551B> /x8e/xaf/xca/xcc <CJK> +<U0002551C> /x8e/xaf/xca/xcd <CJK> +<U0002551D> /x8e/xaf/xca/xcf <CJK> +<U0002551E> /x8e/xaf/xca/xd0 <CJK> +<U0002551F> /x8e/xaf/xca/xd1 <CJK> +<U00025520> /x8e/xaf/xca/xd2 <CJK> +<U000256CA> /x8e/xaf/xca/xd3 <CJK> +<U000222AC> /x8e/xaf/xca/xd4 <CJK> +<U000256CB> /x8e/xaf/xca/xd5 <CJK> +<U000256CC> /x8e/xaf/xca/xd6 <CJK> +<U000256CD> /x8e/xaf/xca/xd7 <CJK> +<U000256CE> /x8e/xaf/xca/xd8 <CJK> +<U000256CF> /x8e/xaf/xca/xda <CJK> +<U00025810> /x8e/xaf/xca/xdb <CJK> +<U00025811> /x8e/xaf/xca/xdc <CJK> +<U00025812> /x8e/xaf/xca/xdd <CJK> +<U00025813> /x8e/xaf/xca/xde <CJK> +<U00025814> /x8e/xaf/xca/xdf <CJK> +<U0002580F> /x8e/xaf/xca/xe0 <CJK> +<U00025815> /x8e/xaf/xca/xe1 <CJK> +<U00025816> /x8e/xaf/xca/xe2 <CJK> +<U00025817> /x8e/xaf/xca/xe3 <CJK> +<U7A33> /x8e/xaf/xca/xe4 <CJK> +<U00025818> /x8e/xaf/xca/xe5 <CJK> +<U000259C6> /x8e/xaf/xca/xe6 <CJK> +<U00025A9F> /x8e/xaf/xca/xe7 <CJK> +<U00025AA0> /x8e/xaf/xca/xe8 <CJK> +<U00025AA4> /x8e/xaf/xca/xe9 <CJK> +<U00025AA1> /x8e/xaf/xca/xea <CJK> +<U00025BB5> /x8e/xaf/xca/xeb <CJK> +<U00025BB6> /x8e/xaf/xca/xec <CJK> +<U00025BB7> /x8e/xaf/xca/xed <CJK> +<U00025BB8> /x8e/xaf/xca/xee <CJK> +<U00025BB9> /x8e/xaf/xca/xef <CJK> +<U00025BBA> /x8e/xaf/xca/xf0 <CJK> +<U00025BD0> /x8e/xaf/xca/xf1 <CJK> +<U00025BC6> /x8e/xaf/xca/xf2 <CJK> +<U00025BBB> /x8e/xaf/xca/xf3 <CJK> +<U00025BBC> /x8e/xaf/xca/xf4 <CJK> +<U00025BBD> /x8e/xaf/xca/xf5 <CJK> +<U00025BBE> /x8e/xaf/xca/xf6 <CJK> +<U00025BBF> /x8e/xaf/xca/xf7 <CJK> +<U00025BC0> /x8e/xaf/xca/xf8 <CJK> +<U00025BC1> /x8e/xaf/xca/xf9 <CJK> +<U00025BC2> /x8e/xaf/xca/xfa <CJK> +<U00025EA7> /x8e/xaf/xca/xfc <CJK> +<U00025EA8> /x8e/xaf/xca/xfd <CJK> +<U00025EA9> /x8e/xaf/xca/xfe <CJK> +<U00025EAA> /x8e/xaf/xcb/xa1 <CJK> +<U00025EAB> /x8e/xaf/xcb/xa2 <CJK> +<U00025EAC> /x8e/xaf/xcb/xa3 <CJK> +<U00025EBC> /x8e/xaf/xcb/xa4 <CJK> +<U00025EAD> /x8e/xaf/xcb/xa5 <CJK> +<U00025EAE> /x8e/xaf/xcb/xa6 <CJK> +<U7CC0> /x8e/xaf/xcb/xa7 <CJK> +<U00025EAF> /x8e/xaf/xcb/xa8 <CJK> +<U00025EB0> /x8e/xaf/xcb/xa9 <CJK> +<U00025EB1> /x8e/xaf/xcb/xaa <CJK> +<U7CC1> /x8e/xaf/xcb/xab <CJK> +<U00025EB4> /x8e/xaf/xcb/xac <CJK> +<U00025EB2> /x8e/xaf/xcb/xad <CJK> +<U00026066> /x8e/xaf/xcb/xae <CJK> +<U00026067> /x8e/xaf/xcb/xaf <CJK> +<U00026068> /x8e/xaf/xcb/xb0 <CJK> +<U00026069> /x8e/xaf/xcb/xb1 <CJK> +<U0002606A> /x8e/xaf/xcb/xb2 <CJK> +<U0002606B> /x8e/xaf/xcb/xb3 <CJK> +<U0002606C> /x8e/xaf/xcb/xb4 <CJK> +<U0002606D> /x8e/xaf/xcb/xb5 <CJK> +<U0002606E> /x8e/xaf/xcb/xb6 <CJK> +<U0002606F> /x8e/xaf/xcb/xb7 <CJK> +<U0002623E> /x8e/xaf/xcb/xb9 <CJK> +<U0002623F> /x8e/xaf/xcb/xba <CJK> +<U00026240> /x8e/xaf/xcb/xbb <CJK> +<U000262E8> /x8e/xaf/xcb/xbc <CJK> +<U00026452> /x8e/xaf/xcb/xbd <CJK> +<U00026453> /x8e/xaf/xcb/xbe <CJK> +<U00026454> /x8e/xaf/xcb/xbf <CJK> +<U00026455> /x8e/xaf/xcb/xc0 <CJK> +<U00026591> /x8e/xaf/xcb/xc1 <CJK> +<U00026592> /x8e/xaf/xcb/xc2 <CJK> +<U00026593> /x8e/xaf/xcb/xc3 <CJK> +<U00026594> /x8e/xaf/xcb/xc4 <CJK> +<U00026595> /x8e/xaf/xcb/xc5 <CJK> +<U00026596> /x8e/xaf/xcb/xc6 <CJK> +<U00026597> /x8e/xaf/xcb/xc7 <CJK> +<U00026598> /x8e/xaf/xcb/xc8 <CJK> +<U00026599> /x8e/xaf/xcb/xca <CJK> +<U0002659A> /x8e/xaf/xcb/xcb <CJK> +<U0002659B> /x8e/xaf/xcb/xcc <CJK> +<U000267B7> /x8e/xaf/xcb/xcd <CJK> +<U000267B8> /x8e/xaf/xcb/xce <CJK> +<U000267B9> /x8e/xaf/xcb/xcf <CJK> +<U000267BA> /x8e/xaf/xcb/xd1 <CJK> +<U000267BB> /x8e/xaf/xcb/xd2 <CJK> +<U000267BD> /x8e/xaf/xcb/xd3 <CJK> +<U000267BC> /x8e/xaf/xcb/xd5 <CJK> +<U000268EB> /x8e/xaf/xcb/xd8 <CJK> +<U000268EC> /x8e/xaf/xcb/xd9 <CJK> +<U00026916> /x8e/xaf/xcb/xda <CJK> +<U00026944> /x8e/xaf/xcb/xdb <CJK> +<U000269E3> /x8e/xaf/xcb/xdc <CJK> +<U00026A58> /x8e/xaf/xcb/xdd <CJK> +<U00026A53> /x8e/xaf/xcb/xde <CJK> +<U00026A54> /x8e/xaf/xcb/xdf <CJK> +<U00026AE0> /x8e/xaf/xcb/xe0 <CJK> +<U00026DB1> /x8e/xaf/xcb/xe1 <CJK> +<U00026DB2> /x8e/xaf/xcb/xe2 <CJK> +<U00026DB3> /x8e/xaf/xcb/xe3 <CJK> +<U00026DEA> /x8e/xaf/xcb/xe4 <CJK> +<U00026DB4> /x8e/xaf/xcb/xe6 <CJK> +<U00026DF0> /x8e/xaf/xcb/xe7 <CJK> +<U00026DB5> /x8e/xaf/xcb/xe8 <CJK> +<U00026DB6> /x8e/xaf/xcb/xe9 <CJK> +<U00026DB7> /x8e/xaf/xcb/xea <CJK> +<U00026DB8> /x8e/xaf/xcb/xeb <CJK> +<U00026DB9> /x8e/xaf/xcb/xec <CJK> +<U00026DBA> /x8e/xaf/xcb/xed <CJK> +<U00026DBB> /x8e/xaf/xcb/xee <CJK> +<U00026DBC> /x8e/xaf/xcb/xef <CJK> +<U00026DBD> /x8e/xaf/xcb/xf0 <CJK> +<U00026DBE> /x8e/xaf/xcb/xf1 <CJK> +<U00026DBF> /x8e/xaf/xcb/xf2 <CJK> +<U00026DC0> /x8e/xaf/xcb/xf3 <CJK> +<U00026DC1> /x8e/xaf/xcb/xf4 <CJK> +<U00026DC2> /x8e/xaf/xcb/xf5 <CJK> +<U00026DC3> /x8e/xaf/xcb/xf6 <CJK> +<U00026DC4> /x8e/xaf/xcb/xf8 <CJK> +<U00026DC5> /x8e/xaf/xcb/xf9 <CJK> +<U00026DC6> /x8e/xaf/xcb/xfa <CJK> +<U00026DFC> /x8e/xaf/xcb/xfb <CJK> +<U00026DC7> /x8e/xaf/xcb/xfc <CJK> +<U00026DC8> /x8e/xaf/xcb/xfd <CJK> +<U00026DC9> /x8e/xaf/xcb/xfe <CJK> +<U00026DCA> /x8e/xaf/xcc/xa1 <CJK> +<U00026DCB> /x8e/xaf/xcc/xa2 <CJK> +<U00026DCC> /x8e/xaf/xcc/xa3 <CJK> +<U00026E84> /x8e/xaf/xcc/xa4 <CJK> +<U00026DCD> /x8e/xaf/xcc/xa5 <CJK> +<U00026DCE> /x8e/xaf/xcc/xa6 <CJK> +<U00026DCF> /x8e/xaf/xcc/xa7 <CJK> +<U00026DD0> /x8e/xaf/xcc/xa8 <CJK> +<U00026DD1> /x8e/xaf/xcc/xa9 <CJK> +<U00026DD2> /x8e/xaf/xcc/xaa <CJK> +<U000271CA> /x8e/xaf/xcc/xab <CJK> +<U000271CB> /x8e/xaf/xcc/xac <CJK> +<U00027336> /x8e/xaf/xcc/xad <CJK> +<U00027337> /x8e/xaf/xcc/xae <CJK> +<U0002739F> /x8e/xaf/xcc/xaf <CJK> +<U00027338> /x8e/xaf/xcc/xb0 <CJK> +<U00027339> /x8e/xaf/xcc/xb1 <CJK> +<U0002733A> /x8e/xaf/xcc/xb2 <CJK> +<U8744> /x8e/xaf/xcc/xb3 <CJK> +<U000276BE> /x8e/xaf/xcc/xb4 <CJK> +<U000276F0> /x8e/xaf/xcc/xb5 <CJK> +<U000276BF> /x8e/xaf/xcc/xb6 <CJK> +<U000276C0> /x8e/xaf/xcc/xb7 <CJK> +<U000277F7> /x8e/xaf/xcc/xb8 <CJK> +<U000277F8> /x8e/xaf/xcc/xb9 <CJK> +<U000277FA> /x8e/xaf/xcc/xba <CJK> +<U00027843> /x8e/xaf/xcc/xbb <CJK> +<U00027844> /x8e/xaf/xcc/xbc <CJK> +<U00027A0F> /x8e/xaf/xcc/xbd <CJK> +<U00027A10> /x8e/xaf/xcc/xbe <CJK> +<U00027A11> /x8e/xaf/xcc/xbf <CJK> +<U00027A12> /x8e/xaf/xcc/xc0 <CJK> +<U00027A13> /x8e/xaf/xcc/xc2 <CJK> +<U00027A14> /x8e/xaf/xcc/xc3 <CJK> +<U00027A15> /x8e/xaf/xcc/xc4 <CJK> +<U00027A16> /x8e/xaf/xcc/xc5 <CJK> +<U00027CD3> /x8e/xaf/xcc/xc8 <CJK> +<U00027CD7> /x8e/xaf/xcc/xc9 <CJK> +<U00027DB0> /x8e/xaf/xcc/xcb <CJK> +<U00027D98> /x8e/xaf/xcc/xcc <CJK> +<U00027D90> /x8e/xaf/xcc/xcd <CJK> +<U00027D91> /x8e/xaf/xcc/xce <CJK> +<U00027D92> /x8e/xaf/xcc/xcf <CJK> +<U00027D97> /x8e/xaf/xcc/xd0 <CJK> +<U00027D93> /x8e/xaf/xcc/xd1 <CJK> +<U00027E64> /x8e/xaf/xcc/xd2 <CJK> +<U00027F01> /x8e/xaf/xcc/xd3 <CJK> +<U00027F02> /x8e/xaf/xcc/xd4 <CJK> +<U00027F03> /x8e/xaf/xcc/xd5 <CJK> +<U00027F04> /x8e/xaf/xcc/xd6 <CJK> +<U00027F05> /x8e/xaf/xcc/xd7 <CJK> +<U00027F06> /x8e/xaf/xcc/xd8 <CJK> +<U00027F07> /x8e/xaf/xcc/xd9 <CJK> +<U0002805A> /x8e/xaf/xcc/xda <CJK> +<U0002805B> /x8e/xaf/xcc/xdb <CJK> +<U0002824E> /x8e/xaf/xcc/xdc <CJK> +<U0002824F> /x8e/xaf/xcc/xdd <CJK> +<U00028250> /x8e/xaf/xcc/xde <CJK> +<U00028319> /x8e/xaf/xcc/xdf <CJK> +<U0002831A> /x8e/xaf/xcc/xe0 <CJK> +<U0002831B> /x8e/xaf/xcc/xe1 <CJK> +<U0002831C> /x8e/xaf/xcc/xe3 <CJK> +<U00028419> /x8e/xaf/xcc/xe5 <CJK> +<U0002841A> /x8e/xaf/xcc/xe6 <CJK> +<U4886> /x8e/xaf/xcc/xe7 <CJK> +<U0002898A> /x8e/xaf/xcc/xe8 <CJK> +<U0002856E> /x8e/xaf/xcc/xe9 <CJK> +<U0002856F> /x8e/xaf/xcc/xea <CJK> +<U9064> /x8e/xaf/xcc/xeb <CJK> +<U00028570> /x8e/xaf/xcc/xec <CJK> +<U00028571> /x8e/xaf/xcc/xed <CJK> +<U00028572> /x8e/xaf/xcc/xee <CJK> +<U00028573> /x8e/xaf/xcc/xef <CJK> +<U00028574> /x8e/xaf/xcc/xf0 <CJK> +<U00028575> /x8e/xaf/xcc/xf1 <CJK> +<U00028576> /x8e/xaf/xcc/xf2 <CJK> +<U0002883A> /x8e/xaf/xcc/xf3 <CJK> +<U0002883B> /x8e/xaf/xcc/xf4 <CJK> +<U0002883C> /x8e/xaf/xcc/xf5 <CJK> +<U0002885A> /x8e/xaf/xcc/xf6 <CJK> +<U0002883D> /x8e/xaf/xcc/xf7 <CJK> +<U00028842> /x8e/xaf/xcc/xf8 <CJK> +<U0002898B> /x8e/xaf/xcc/xf9 <CJK> +<U000289A0> /x8e/xaf/xcc/xfa <CJK> +<U0002898C> /x8e/xaf/xcc/xfb <CJK> +<U0002898D> /x8e/xaf/xcc/xfc <CJK> +<U0002898E> /x8e/xaf/xcc/xfd <CJK> +<U000289AB> /x8e/xaf/xcc/xfe <CJK> +<U0002898F> /x8e/xaf/xcd/xa1 <CJK> +<U9277> /x8e/xaf/xcd/xa2 <CJK> +<U00028990> /x8e/xaf/xcd/xa3 <CJK> +<U00028991> /x8e/xaf/xcd/xa4 <CJK> +<U00028992> /x8e/xaf/xcd/xa5 <CJK> +<U000289AA> /x8e/xaf/xcd/xa6 <CJK> +<U92AF> /x8e/xaf/xcd/xa7 <CJK> +<U00028993> /x8e/xaf/xcd/xa8 <CJK> +<U00028994> /x8e/xaf/xcd/xa9 <CJK> +<U0002899E> /x8e/xaf/xcd/xaa <CJK> +<U000289A8> /x8e/xaf/xcd/xab <CJK> +<U00028F00> /x8e/xaf/xcd/xae <CJK> +<U00028F01> /x8e/xaf/xcd/xaf <CJK> +<U00028F02> /x8e/xaf/xcd/xb0 <CJK> +<U00028F03> /x8e/xaf/xcd/xb1 <CJK> +<U00028F04> /x8e/xaf/xcd/xb2 <CJK> +<U00028F05> /x8e/xaf/xcd/xb3 <CJK> +<U00028FC4> /x8e/xaf/xcd/xb4 <CJK> +<U00028FC5> /x8e/xaf/xcd/xb5 <CJK> +<U000290AE> /x8e/xaf/xcd/xb7 <CJK> +<U000290B2> /x8e/xaf/xcd/xb8 <CJK> +<U000291F7> /x8e/xaf/xcd/xbb <CJK> +<U00029213> /x8e/xaf/xcd/xbc <CJK> +<U0002939E> /x8e/xaf/xcd/xbd <CJK> +<U00029485> /x8e/xaf/xcd/xbe <CJK> +<U00025380> /x8e/xaf/xcd/xbf <CJK> +<U000294C8> /x8e/xaf/xcd/xc0 <CJK> +<U00029841> /x8e/xaf/xcd/xc1 <CJK> +<U00029881> /x8e/xaf/xcd/xc2 <CJK> +<U00029882> /x8e/xaf/xcd/xc3 <CJK> +<U00029883> /x8e/xaf/xcd/xc4 <CJK> +<U00029884> /x8e/xaf/xcd/xc5 <CJK> +<U00029AC4> /x8e/xaf/xcd/xc6 <CJK> +<U00029AC5> /x8e/xaf/xcd/xc7 <CJK> +<U00029AC6> /x8e/xaf/xcd/xc8 <CJK> +<U00029C95> /x8e/xaf/xcd/xc9 <CJK> +<U00029C96> /x8e/xaf/xcd/xca <CJK> +<U00029C97> /x8e/xaf/xcd/xcb <CJK> +<U00029D58> /x8e/xaf/xcd/xcc <CJK> +<U00029D59> /x8e/xaf/xcd/xcd <CJK> +<U00029FA9> /x8e/xaf/xcd/xcf <CJK> +<U00029FAA> /x8e/xaf/xcd/xd0 <CJK> +<U00029FAB> /x8e/xaf/xcd/xd1 <CJK> +<U0002A28E> /x8e/xaf/xcd/xd2 <CJK> +<U0002A303> /x8e/xaf/xcd/xd3 <CJK> +<U0002A3B3> /x8e/xaf/xcd/xd4 <CJK> +<U00020B82> /x8e/xaf/xcd/xd5 <CJK> +<U00020053> /x8e/xaf/xcd/xd6 <CJK> +<U00020183> /x8e/xaf/xcd/xd7 <CJK> +<U00020184> /x8e/xaf/xcd/xd8 <CJK> +<U00020185> /x8e/xaf/xcd/xd9 <CJK> +<U000203CC> /x8e/xaf/xcd/xda <CJK> +<U000203CD> /x8e/xaf/xcd/xdb <CJK> +<U000203CE> /x8e/xaf/xcd/xdc <CJK> +<U000203CF> /x8e/xaf/xcd/xdd <CJK> +<U000203D0> /x8e/xaf/xcd/xde <CJK> +<U000203D1> /x8e/xaf/xcd/xe0 <CJK> +<U000203D2> /x8e/xaf/xcd/xe1 <CJK> +<U000203DA> /x8e/xaf/xcd/xe2 <CJK> +<U000204B3> /x8e/xaf/xcd/xe3 <CJK> +<U000204B4> /x8e/xaf/xcd/xe4 <CJK> +<U00020613> /x8e/xaf/xcd/xe6 <CJK> +<U0002060E> /x8e/xaf/xcd/xe7 <CJK> +<U0002066B> /x8e/xaf/xcd/xe8 <CJK> +<U00020903> /x8e/xaf/xcd/xe9 <CJK> +<U00020961> /x8e/xaf/xcd/xea <CJK> +<U000209C1> /x8e/xaf/xcd/xeb <CJK> +<U000209C2> /x8e/xaf/xcd/xec <CJK> +<U00020AB5> /x8e/xaf/xcd/xed <CJK> +<U00020140> /x8e/xaf/xcd/xee <CJK> +<U00020F98> /x8e/xaf/xcd/xef <CJK> +<U00020F99> /x8e/xaf/xcd/xf0 <CJK> +<U00020F9A> /x8e/xaf/xcd/xf1 <CJK> +<U00020F9B> /x8e/xaf/xcd/xf2 <CJK> +<U00020F9C> /x8e/xaf/xcd/xf3 <CJK> +<U00020F9D> /x8e/xaf/xcd/xf4 <CJK> +<U00020F9E> /x8e/xaf/xcd/xf5 <CJK> +<U00020F9F> /x8e/xaf/xcd/xf6 <CJK> +<U00020FEE> /x8e/xaf/xcd/xf7 <CJK> +<U00020FA0> /x8e/xaf/xcd/xf8 <CJK> +<U00020FA1> /x8e/xaf/xcd/xf9 <CJK> +<U00020F86> /x8e/xaf/xcd/xfa <CJK> +<U00021225> /x8e/xaf/xcd/xfb <CJK> +<U00021434> /x8e/xaf/xcd/xfc <CJK> +<U00021435> /x8e/xaf/xcd/xfd <CJK> +<U00021451> /x8e/xaf/xcd/xfe <CJK> +<U0002142D> /x8e/xaf/xce/xa1 <CJK> +<U00024362> /x8e/xaf/xce/xa2 <CJK> +<U00021454> /x8e/xaf/xce/xa3 <CJK> +<U00021452> /x8e/xaf/xce/xa4 <CJK> +<U366D> /x8e/xaf/xce/xa5 <CJK> +<U00021436> /x8e/xaf/xce/xa6 <CJK> +<U00021437> /x8e/xaf/xce/xa7 <CJK> +<U00021438> /x8e/xaf/xce/xa8 <CJK> +<U00021439> /x8e/xaf/xce/xa9 <CJK> +<U0002143A> /x8e/xaf/xce/xaa <CJK> +<U0002143B> /x8e/xaf/xce/xab <CJK> +<U00021468> /x8e/xaf/xce/xac <CJK> +<U0002143C> /x8e/xaf/xce/xad <CJK> +<U366E> /x8e/xaf/xce/xae <CJK> +<U00021577> /x8e/xaf/xce/xaf <CJK> +<U00023296> /x8e/xaf/xce/xb0 <CJK> +<U0002167E> /x8e/xaf/xce/xb1 <CJK> +<U0002167F> /x8e/xaf/xce/xb2 <CJK> +<U00021869> /x8e/xaf/xce/xb3 <CJK> +<U0002186A> /x8e/xaf/xce/xb4 <CJK> +<U0002186B> /x8e/xaf/xce/xb5 <CJK> +<U0002186C> /x8e/xaf/xce/xb6 <CJK> +<U0002186D> /x8e/xaf/xce/xb7 <CJK> +<U0002186E> /x8e/xaf/xce/xb8 <CJK> +<U0002186F> /x8e/xaf/xce/xb9 <CJK> +<U0002185D> /x8e/xaf/xce/xba <CJK> +<U00021870> /x8e/xaf/xce/xbb <CJK> +<U00021885> /x8e/xaf/xce/xbc <CJK> +<U00021871> /x8e/xaf/xce/xbd <CJK> +<U00021872> /x8e/xaf/xce/xbe <CJK> +<U00021873> /x8e/xaf/xce/xbf <CJK> +<U00021874> /x8e/xaf/xce/xc0 <CJK> +<U00021875> /x8e/xaf/xce/xc1 <CJK> +<U00021876> /x8e/xaf/xce/xc2 <CJK> +<U00021884> /x8e/xaf/xce/xc3 <CJK> +<U00021877> /x8e/xaf/xce/xc4 <CJK> +<U00021883> /x8e/xaf/xce/xc5 <CJK> +<U0002199A> /x8e/xaf/xce/xc6 <CJK> +<U00021AA7> /x8e/xaf/xce/xc7 <CJK> +<U00021AA8> /x8e/xaf/xce/xc8 <CJK> +<U00021AA9> /x8e/xaf/xce/xc9 <CJK> +<U00021AAA> /x8e/xaf/xce/xca <CJK> +<U00021AAB> /x8e/xaf/xce/xcb <CJK> +<U00021AAC> /x8e/xaf/xce/xcc <CJK> +<U00021AB7> /x8e/xaf/xce/xcd <CJK> +<U00021AAD> /x8e/xaf/xce/xce <CJK> +<U00021AAE> /x8e/xaf/xce/xcf <CJK> +<U00021B45> /x8e/xaf/xce/xd1 <CJK> +<U00021CD3> /x8e/xaf/xce/xd2 <CJK> +<U00021CD4> /x8e/xaf/xce/xd3 <CJK> +<U00021CD5> /x8e/xaf/xce/xd4 <CJK> +<U00021CD6> /x8e/xaf/xce/xd5 <CJK> +<U00021CD7> /x8e/xaf/xce/xd6 <CJK> +<U00021F26> /x8e/xaf/xce/xd7 <CJK> +<U00021F27> /x8e/xaf/xce/xd8 <CJK> +<U00021F28> /x8e/xaf/xce/xd9 <CJK> +<U00021F29> /x8e/xaf/xce/xdb <CJK> +<U00021F2A> /x8e/xaf/xce/xdc <CJK> +<U00022005> /x8e/xaf/xce/xdd <CJK> +<U5E64> /x8e/xaf/xce/xde <CJK> +<U000221D0> /x8e/xaf/xce/xdf <CJK> +<U000222B7> /x8e/xaf/xce/xe0 <CJK> +<U000222B8> /x8e/xaf/xce/xe2 <CJK> +<U000222B9> /x8e/xaf/xce/xe3 <CJK> +<U00022422> /x8e/xaf/xce/xe4 <CJK> +<U00022423> /x8e/xaf/xce/xe5 <CJK> +<U00022573> /x8e/xaf/xce/xe6 <CJK> +<U00022574> /x8e/xaf/xce/xe7 <CJK> +<U0002288F> /x8e/xaf/xce/xe8 <CJK> +<U00022812> /x8e/xaf/xce/xe9 <CJK> +<U00022813> /x8e/xaf/xce/xea <CJK> +<U00022814> /x8e/xaf/xce/xeb <CJK> +<U00022815> /x8e/xaf/xce/xec <CJK> +<U00022816> /x8e/xaf/xce/xed <CJK> +<U00022817> /x8e/xaf/xce/xee <CJK> +<U00022818> /x8e/xaf/xce/xef <CJK> +<U00022861> /x8e/xaf/xce/xf0 <CJK> +<U00022866> /x8e/xaf/xce/xf1 <CJK> +<U00022867> /x8e/xaf/xce/xf2 <CJK> +<U00022819> /x8e/xaf/xce/xf3 <CJK> +<U00022868> /x8e/xaf/xce/xf4 <CJK> +<U0002281A> /x8e/xaf/xce/xf5 <CJK> +<U00022869> /x8e/xaf/xce/xf6 <CJK> +<U00022A04> /x8e/xaf/xce/xf7 <CJK> +<U00022A05> /x8e/xaf/xce/xf8 <CJK> +<U00022A06> /x8e/xaf/xce/xfa <CJK> +<U000229FD> /x8e/xaf/xce/xfb <CJK> +<U00022D50> /x8e/xaf/xce/xfc <CJK> +<U00022D51> /x8e/xaf/xce/xfd <CJK> +<U00022D52> /x8e/xaf/xce/xfe <CJK> +<U00022D53> /x8e/xaf/xcf/xa1 <CJK> +<U00022D54> /x8e/xaf/xcf/xa2 <CJK> +<U00022D55> /x8e/xaf/xcf/xa3 <CJK> +<U00022D63> /x8e/xaf/xcf/xa4 <CJK> +<U00022D56> /x8e/xaf/xcf/xa6 <CJK> +<U00022D57> /x8e/xaf/xcf/xa7 <CJK> +<U00022D58> /x8e/xaf/xcf/xa8 <CJK> +<U00022D59> /x8e/xaf/xcf/xa9 <CJK> +<U00022D5A> /x8e/xaf/xcf/xaa <CJK> +<U00022D5B> /x8e/xaf/xcf/xab <CJK> +<U00022D5C> /x8e/xaf/xcf/xad <CJK> +<U00022D5D> /x8e/xaf/xcf/xae <CJK> +<U00022D5E> /x8e/xaf/xcf/xaf <CJK> +<U00022D5F> /x8e/xaf/xcf/xb0 <CJK> +<U00022FD7> /x8e/xaf/xcf/xb1 <CJK> +<U00023060> /x8e/xaf/xcf/xb3 <CJK> +<U00023061> /x8e/xaf/xcf/xb4 <CJK> +<U00023117> /x8e/xaf/xcf/xb5 <CJK> +<U00023139> /x8e/xaf/xcf/xb6 <CJK> +<U0002328F> /x8e/xaf/xcf/xb7 <CJK> +<U000232C8> /x8e/xaf/xcf/xb8 <CJK> +<U00023290> /x8e/xaf/xcf/xb9 <CJK> +<U00023291> /x8e/xaf/xcf/xba <CJK> +<U00023398> /x8e/xaf/xcf/xbb <CJK> +<U00023399> /x8e/xaf/xcf/xbc <CJK> +<U00023644> /x8e/xaf/xcf/xbd <CJK> +<U00023645> /x8e/xaf/xcf/xbe <CJK> +<U00023646> /x8e/xaf/xcf/xbf <CJK> +<U00023659> /x8e/xaf/xcf/xc0 <CJK> +<U000236EE> /x8e/xaf/xcf/xc1 <CJK> +<U6A2B> /x8e/xaf/xcf/xc2 <CJK> +<U00023647> /x8e/xaf/xcf/xc3 <CJK> +<U00023648> /x8e/xaf/xcf/xc4 <CJK> +<U00023649> /x8e/xaf/xcf/xc6 <CJK> +<U0002364A> /x8e/xaf/xcf/xc7 <CJK> +<U0002364B> /x8e/xaf/xcf/xc8 <CJK> +<U0002364C> /x8e/xaf/xcf/xc9 <CJK> +<U0002364D> /x8e/xaf/xcf/xca <CJK> +<U0002364E> /x8e/xaf/xcf/xcb <CJK> +<U0002364F> /x8e/xaf/xcf/xcc <CJK> +<U00023650> /x8e/xaf/xcf/xcd <CJK> +<U00023651> /x8e/xaf/xcf/xce <CJK> +<U00023652> /x8e/xaf/xcf/xcf <CJK> +<U00023653> /x8e/xaf/xcf/xd0 <CJK> +<U00023654> /x8e/xaf/xcf/xd1 <CJK> +<U00023655> /x8e/xaf/xcf/xd2 <CJK> +<U00023656> /x8e/xaf/xcf/xd3 <CJK> +<U00023915> /x8e/xaf/xcf/xd4 <CJK> +<U0002399A> /x8e/xaf/xcf/xd5 <CJK> +<U00023A58> /x8e/xaf/xcf/xd6 <CJK> +<U00023AFC> /x8e/xaf/xcf/xd7 <CJK> +<U00023AFD> /x8e/xaf/xcf/xd8 <CJK> +<U00023F86> /x8e/xaf/xcf/xd9 <CJK> +<U00023F87> /x8e/xaf/xcf/xda <CJK> +<U00023F88> /x8e/xaf/xcf/xdb <CJK> +<U00023F89> /x8e/xaf/xcf/xdc <CJK> +<U00023F8A> /x8e/xaf/xcf/xdd <CJK> +<U00023F8B> /x8e/xaf/xcf/xde <CJK> +<U00023F8C> /x8e/xaf/xcf/xdf <CJK> +<U0002401F> /x8e/xaf/xcf/xe1 <CJK> +<U00023F8D> /x8e/xaf/xcf/xe2 <CJK> +<U00023F8E> /x8e/xaf/xcf/xe3 <CJK> +<U00023F8F> /x8e/xaf/xcf/xe4 <CJK> +<U00023F90> /x8e/xaf/xcf/xe5 <CJK> +<U00023F91> /x8e/xaf/xcf/xe6 <CJK> +<U00023F92> /x8e/xaf/xcf/xe7 <CJK> +<U00023F93> /x8e/xaf/xcf/xe8 <CJK> +<U00023F94> /x8e/xaf/xcf/xea <CJK> +<U00023F95> /x8e/xaf/xcf/xeb <CJK> +<U00023ECA> /x8e/xaf/xcf/xec <CJK> +<U00023F18> /x8e/xaf/xcf/xed <CJK> +<U00023F96> /x8e/xaf/xcf/xef <CJK> +<U00023F97> /x8e/xaf/xcf/xf0 <CJK> +<U00023F98> /x8e/xaf/xcf/xf1 <CJK> +<U00023F99> /x8e/xaf/xcf/xf2 <CJK> +<U00023F9A> /x8e/xaf/xcf/xf3 <CJK> +<U00023F9B> /x8e/xaf/xcf/xf4 <CJK> +<U00023F9C> /x8e/xaf/xcf/xf5 <CJK> +<U00023F9D> /x8e/xaf/xcf/xf6 <CJK> +<U00023F9E> /x8e/xaf/xcf/xf7 <CJK> +<U00023F9F> /x8e/xaf/xcf/xf8 <CJK> +<U6F46> /x8e/xaf/xcf/xf9 <CJK> +<U00023FA0> /x8e/xaf/xcf/xfb <CJK> +<U00023FA1> /x8e/xaf/xcf/xfc <CJK> +<U6F9A> /x8e/xaf/xcf/xfd <CJK> +<U00023FB7> /x8e/xaf/xcf/xfe <CJK> +<U00024396> /x8e/xaf/xd0/xa2 <CJK> +<U00024368> /x8e/xaf/xd0/xa3 <CJK> +<U00024369> /x8e/xaf/xd0/xa4 <CJK> +<U0002438C> /x8e/xaf/xd0/xa5 <CJK> +<U0002436A> /x8e/xaf/xd0/xa6 <CJK> +<U0002436B> /x8e/xaf/xd0/xa7 <CJK> +<U0002436C> /x8e/xaf/xd0/xa8 <CJK> +<U0002436D> /x8e/xaf/xd0/xa9 <CJK> +<U0002436E> /x8e/xaf/xd0/xaa <CJK> +<U0002436F> /x8e/xaf/xd0/xab <CJK> +<U0002437F> /x8e/xaf/xd0/xac <CJK> +<U00024384> /x8e/xaf/xd0/xad <CJK> +<U00024370> /x8e/xaf/xd0/xae <CJK> +<U00024371> /x8e/xaf/xd0/xaf <CJK> +<U00024385> /x8e/xaf/xd0/xb0 <CJK> +<U00024372> /x8e/xaf/xd0/xb1 <CJK> +<U00024373> /x8e/xaf/xd0/xb2 <CJK> +<U00024374> /x8e/xaf/xd0/xb3 <CJK> +<U00024375> /x8e/xaf/xd0/xb4 <CJK> +<U00024376> /x8e/xaf/xd0/xb5 <CJK> +<U00024377> /x8e/xaf/xd0/xb7 <CJK> +<U00024378> /x8e/xaf/xd0/xb8 <CJK> +<U00024379> /x8e/xaf/xd0/xb9 <CJK> +<U0002437A> /x8e/xaf/xd0/xba <CJK> +<U0002437B> /x8e/xaf/xd0/xbb <CJK> +<U0002437C> /x8e/xaf/xd0/xbc <CJK> +<U00024594> /x8e/xaf/xd0/xbe <CJK> +<U000246D5> /x8e/xaf/xd0/xbf <CJK> +<U00024829> /x8e/xaf/xd0/xc0 <CJK> +<U00024A2B> /x8e/xaf/xd0/xc1 <CJK> +<U00024A2C> /x8e/xaf/xd0/xc2 <CJK> +<U00024A2D> /x8e/xaf/xd0/xc3 <CJK> +<U00024A2E> /x8e/xaf/xd0/xc4 <CJK> +<U00024A2F> /x8e/xaf/xd0/xc5 <CJK> +<U00024A30> /x8e/xaf/xd0/xc6 <CJK> +<U00024A3E> /x8e/xaf/xd0/xc7 <CJK> +<U00024A31> /x8e/xaf/xd0/xc8 <CJK> +<U00024A32> /x8e/xaf/xd0/xc9 <CJK> +<U00024A33> /x8e/xaf/xd0/xca <CJK> +<U00024A34> /x8e/xaf/xd0/xcb <CJK> +<U00024A35> /x8e/xaf/xd0/xcc <CJK> +<U00024B11> /x8e/xaf/xd0/xcd <CJK> +<U3F53> /x8e/xaf/xd0/xce <CJK> +<U00024CC0> /x8e/xaf/xd0/xcf <CJK> +<U00024E42> /x8e/xaf/xd0/xd0 <CJK> +<U00024E43> /x8e/xaf/xd0/xd1 <CJK> +<U00024E44> /x8e/xaf/xd0/xd2 <CJK> +<U00024E45> /x8e/xaf/xd0/xd3 <CJK> +<U00024E46> /x8e/xaf/xd0/xd4 <CJK> +<U0002508C> /x8e/xaf/xd0/xd5 <CJK> +<U0002508D> /x8e/xaf/xd0/xd6 <CJK> +<U0002508E> /x8e/xaf/xd0/xd7 <CJK> +<U0002508F> /x8e/xaf/xd0/xd8 <CJK> +<U00025090> /x8e/xaf/xd0/xd9 <CJK> +<U00025091> /x8e/xaf/xd0/xda <CJK> +<U00025263> /x8e/xaf/xd0/xdb <CJK> +<U00025264> /x8e/xaf/xd0/xdc <CJK> +<U00025265> /x8e/xaf/xd0/xdd <CJK> +<U000253F6> /x8e/xaf/xd0/xe1 <CJK> +<U00025536> /x8e/xaf/xd0/xe2 <CJK> +<U00025537> /x8e/xaf/xd0/xe3 <CJK> +<U0002552C> /x8e/xaf/xd0/xe4 <CJK> +<U00025538> /x8e/xaf/xd0/xe5 <CJK> +<U00025539> /x8e/xaf/xd0/xe6 <CJK> +<U0002553A> /x8e/xaf/xd0/xe8 <CJK> +<U000256E3> /x8e/xaf/xd0/xe9 <CJK> +<U000256E2> /x8e/xaf/xd0/xea <CJK> +<U000256F5> /x8e/xaf/xd0/xeb <CJK> +<U00025847> /x8e/xaf/xd0/xec <CJK> +<U00025848> /x8e/xaf/xd0/xee <CJK> +<U00025849> /x8e/xaf/xd0/xef <CJK> +<U0002584A> /x8e/xaf/xd0/xf0 <CJK> +<U0002584B> /x8e/xaf/xd0/xf1 <CJK> +<U0002584C> /x8e/xaf/xd0/xf2 <CJK> +<U00025AA8> /x8e/xaf/xd0/xf3 <CJK> +<U00025AA9> /x8e/xaf/xd0/xf4 <CJK> +<U00025AAA> /x8e/xaf/xd0/xf5 <CJK> +<U00025C0B> /x8e/xaf/xd0/xf7 <CJK> +<U00025C06> /x8e/xaf/xd0/xf8 <CJK> +<U00025C73> /x8e/xaf/xd0/xf9 <CJK> +<U00025C0C> /x8e/xaf/xd0/xfa <CJK> +<U00025C0D> /x8e/xaf/xd0/xfb <CJK> +<U00025C0E> /x8e/xaf/xd0/xfc <CJK> +<U00025C0F> /x8e/xaf/xd0/xfd <CJK> +<U00025C10> /x8e/xaf/xd0/xfe <CJK> +<U00025C11> /x8e/xaf/xd1/xa2 <CJK> +<U00025C12> /x8e/xaf/xd1/xa4 <CJK> +<U00025C14> /x8e/xaf/xd1/xa5 <CJK> +<U00025C15> /x8e/xaf/xd1/xa6 <CJK> +<U00025C16> /x8e/xaf/xd1/xa7 <CJK> +<U00025C13> /x8e/xaf/xd1/xa9 <CJK> +<U00025C17> /x8e/xaf/xd1/xaa <CJK> +<U00025ED9> /x8e/xaf/xd1/xab <CJK> +<U00025EDA> /x8e/xaf/xd1/xac <CJK> +<U00025EDB> /x8e/xaf/xd1/xad <CJK> +<U00025EDC> /x8e/xaf/xd1/xaf <CJK> +<U000260A6> /x8e/xaf/xd1/xb0 <CJK> +<U000260A7> /x8e/xaf/xd1/xb1 <CJK> +<U000260A8> /x8e/xaf/xd1/xb2 <CJK> +<U000260A9> /x8e/xaf/xd1/xb3 <CJK> +<U000260AA> /x8e/xaf/xd1/xb4 <CJK> +<U000260AB> /x8e/xaf/xd1/xb5 <CJK> +<U000260AC> /x8e/xaf/xd1/xb8 <CJK> +<U000260AD> /x8e/xaf/xd1/xb9 <CJK> +<U000260AE> /x8e/xaf/xd1/xba <CJK> +<U000260AF> /x8e/xaf/xd1/xbd <CJK> +<U000260B0> /x8e/xaf/xd1/xbe <CJK> +<U000260B1> /x8e/xaf/xd1/xbf <CJK> +<U00026244> /x8e/xaf/xd1/xc0 <CJK> +<U00026245> /x8e/xaf/xd1/xc1 <CJK> +<U000262F7> /x8e/xaf/xd1/xc2 <CJK> +<U000262F8> /x8e/xaf/xd1/xc3 <CJK> +<U0002646B> /x8e/xaf/xd1/xc4 <CJK> +<U0002646C> /x8e/xaf/xd1/xc5 <CJK> +<U00026461> /x8e/xaf/xd1/xc6 <CJK> +<U00026512> /x8e/xaf/xd1/xc7 <CJK> +<U000265AF> /x8e/xaf/xd1/xc8 <CJK> +<U000265B0> /x8e/xaf/xd1/xc9 <CJK> +<U000265B1> /x8e/xaf/xd1/xca <CJK> +<U000265B2> /x8e/xaf/xd1/xcb <CJK> +<U000265B3> /x8e/xaf/xd1/xcc <CJK> +<U000265B4> /x8e/xaf/xd1/xcd <CJK> +<U000265B5> /x8e/xaf/xd1/xce <CJK> +<U000265B6> /x8e/xaf/xd1/xcf <CJK> +<U00026622> /x8e/xaf/xd1/xd0 <CJK> +<U000267EA> /x8e/xaf/xd1/xd1 <CJK> +<U000267EB> /x8e/xaf/xd1/xd2 <CJK> +<U000267EC> /x8e/xaf/xd1/xd3 <CJK> +<U000267ED> /x8e/xaf/xd1/xd4 <CJK> +<U000268ED> /x8e/xaf/xd1/xd6 <CJK> +<U0002691B> /x8e/xaf/xd1/xd7 <CJK> +<U00026947> /x8e/xaf/xd1/xd8 <CJK> +<U000269E8> /x8e/xaf/xd1/xd9 <CJK> +<U00026AD0> /x8e/xaf/xd1/xda <CJK> +<U00026AE7> /x8e/xaf/xd1/xdb <CJK> +<U00026AE8> /x8e/xaf/xd1/xdc <CJK> +<U00026AE9> /x8e/xaf/xd1/xdd <CJK> +<U00026E4E> /x8e/xaf/xd1/xde <CJK> +<U00026E4F> /x8e/xaf/xd1/xdf <CJK> +<U00026E50> /x8e/xaf/xd1/xe0 <CJK> +<U00026E72> /x8e/xaf/xd1/xe1 <CJK> +<U00026E51> /x8e/xaf/xd1/xe2 <CJK> +<U00026E52> /x8e/xaf/xd1/xe3 <CJK> +<U4526> /x8e/xaf/xd1/xe5 <CJK> +<U00026E53> /x8e/xaf/xd1/xe6 <CJK> +<U00026E54> /x8e/xaf/xd1/xe7 <CJK> +<U00026E55> /x8e/xaf/xd1/xe8 <CJK> +<U00026E56> /x8e/xaf/xd1/xe9 <CJK> +<U00026E57> /x8e/xaf/xd1/xea <CJK> +<U00026E77> /x8e/xaf/xd1/xeb <CJK> +<U00026E58> /x8e/xaf/xd1/xec <CJK> +<U00026E59> /x8e/xaf/xd1/xed <CJK> +<U00026E5A> /x8e/xaf/xd1/xee <CJK> +<U00026E5B> /x8e/xaf/xd1/xef <CJK> +<U00026E5C> /x8e/xaf/xd1/xf0 <CJK> +<U00026E6E> /x8e/xaf/xd1/xf1 <CJK> +<U00026E5D> /x8e/xaf/xd1/xf2 <CJK> +<U4527> /x8e/xaf/xd1/xf3 <CJK> +<U00026E5E> /x8e/xaf/xd1/xf5 <CJK> +<U4528> /x8e/xaf/xd1/xf6 <CJK> +<U00026E5F> /x8e/xaf/xd1/xf7 <CJK> +<U000271D7> /x8e/xaf/xd1/xf9 <CJK> +<U00027389> /x8e/xaf/xd1/xfa <CJK> +<U0002738A> /x8e/xaf/xd1/xfb <CJK> +<U0002738B> /x8e/xaf/xd1/xfe <CJK> +<U0002738C> /x8e/xaf/xd2/xa1 <CJK> +<U0002738D> /x8e/xaf/xd2/xa2 <CJK> +<U0002738E> /x8e/xaf/xd2/xa3 <CJK> +<U0002738F> /x8e/xaf/xd2/xa5 <CJK> +<U0002739A> /x8e/xaf/xd2/xa7 <CJK> +<U00027390> /x8e/xaf/xd2/xa8 <CJK> +<U00027391> /x8e/xaf/xd2/xa9 <CJK> +<U00027392> /x8e/xaf/xd2/xaa <CJK> +<U00027393> /x8e/xaf/xd2/xab <CJK> +<U00027712> /x8e/xaf/xd2/xac <CJK> +<U000276F1> /x8e/xaf/xd2/xad <CJK> +<U000277FE> /x8e/xaf/xd2/xaf <CJK> +<U000277FB> /x8e/xaf/xd2/xb0 <CJK> +<U00027857> /x8e/xaf/xd2/xb1 <CJK> +<U00027A49> /x8e/xaf/xd2/xb2 <CJK> +<U00027A4A> /x8e/xaf/xd2/xb3 <CJK> +<U00027A4B> /x8e/xaf/xd2/xb4 <CJK> +<U00027A4C> /x8e/xaf/xd2/xb5 <CJK> +<U00027A4D> /x8e/xaf/xd2/xb7 <CJK> +<U00027A59> /x8e/xaf/xd2/xb8 <CJK> +<U00027A4E> /x8e/xaf/xd2/xb9 <CJK> +<U00027A4F> /x8e/xaf/xd2/xba <CJK> +<U00027BF4> /x8e/xaf/xd2/xbb <CJK> +<U00027C65> /x8e/xaf/xd2/xbc <CJK> +<U00027DA6> /x8e/xaf/xd2/xbd <CJK> +<U00027DA7> /x8e/xaf/xd2/xbe <CJK> +<U00027DA8> /x8e/xaf/xd2/xbf <CJK> +<U00027F22> /x8e/xaf/xd2/xc0 <CJK> +<U00027F23> /x8e/xaf/xd2/xc1 <CJK> +<U0002808B> /x8e/xaf/xd2/xc2 <CJK> +<U0002808C> /x8e/xaf/xd2/xc3 <CJK> +<U0002808D> /x8e/xaf/xd2/xc4 <CJK> +<U0002808E> /x8e/xaf/xd2/xc5 <CJK> +<U00028258> /x8e/xaf/xd2/xc6 <CJK> +<U00028259> /x8e/xaf/xd2/xc8 <CJK> +<U0002833B> /x8e/xaf/xd2/xc9 <CJK> +<U0002833C> /x8e/xaf/xd2/xca <CJK> +<U0002833D> /x8e/xaf/xd2/xcb <CJK> +<U0002833E> /x8e/xaf/xd2/xcc <CJK> +<U00028448> /x8e/xaf/xd2/xcd <CJK> +<U00028594> /x8e/xaf/xd2/xce <CJK> +<U00028595> /x8e/xaf/xd2/xcf <CJK> +<U00028596> /x8e/xaf/xd2/xd0 <CJK> +<U00028597> /x8e/xaf/xd2/xd1 <CJK> +<U00028598> /x8e/xaf/xd2/xd2 <CJK> +<U0002877D> /x8e/xaf/xd2/xd3 <CJK> +<U000286FE> /x8e/xaf/xd2/xd4 <CJK> +<U0002877E> /x8e/xaf/xd2/xd5 <CJK> +<U0002877F> /x8e/xaf/xd2/xd6 <CJK> +<U0002885B> /x8e/xaf/xd2/xd8 <CJK> +<U0002885C> /x8e/xaf/xd2/xd9 <CJK> +<U000289E4> /x8e/xaf/xd2/xda <CJK> +<U000289C1> /x8e/xaf/xd2/xdb <CJK> +<U000289FD> /x8e/xaf/xd2/xdc <CJK> +<U000289C2> /x8e/xaf/xd2/xdd <CJK> +<U000289D6> /x8e/xaf/xd2/xde <CJK> +<U000289C3> /x8e/xaf/xd2/xdf <CJK> +<U000289C4> /x8e/xaf/xd2/xe0 <CJK> +<U000289DC> /x8e/xaf/xd2/xe2 <CJK> +<U000289C5> /x8e/xaf/xd2/xe3 <CJK> +<U000289C6> /x8e/xaf/xd2/xe4 <CJK> +<U000289C7> /x8e/xaf/xd2/xe5 <CJK> +<U000289E1> /x8e/xaf/xd2/xe6 <CJK> +<U000289C8> /x8e/xaf/xd2/xe7 <CJK> +<U000289C9> /x8e/xaf/xd2/xe8 <CJK> +<U000289CA> /x8e/xaf/xd2/xe9 <CJK> +<U000289CB> /x8e/xaf/xd2/xea <CJK> +<U92F2> /x8e/xaf/xd2/xeb <CJK> +<U000289CC> /x8e/xaf/xd2/xec <CJK> +<U000289CD> /x8e/xaf/xd2/xed <CJK> +<U00028D35> /x8e/xaf/xd2/xee <CJK> +<U00028D36> /x8e/xaf/xd2/xef <CJK> +<U00028D47> /x8e/xaf/xd2/xf0 <CJK> +<U00028D37> /x8e/xaf/xd2/xf1 <CJK> +<U00028F1B> /x8e/xaf/xd2/xf2 <CJK> +<U00028F1C> /x8e/xaf/xd2/xf3 <CJK> +<U00028F1D> /x8e/xaf/xd2/xf4 <CJK> +<U00028F1E> /x8e/xaf/xd2/xf5 <CJK> +<U00028F1F> /x8e/xaf/xd2/xf6 <CJK> +<U00028F20> /x8e/xaf/xd2/xf7 <CJK> +<U00028F7B> /x8e/xaf/xd2/xf8 <CJK> +<U00028F7A> /x8e/xaf/xd2/xf9 <CJK> +<U00028FFE> /x8e/xaf/xd2/xfa <CJK> +<U000290C6> /x8e/xaf/xd2/xfb <CJK> +<U000290C7> /x8e/xaf/xd2/xfc <CJK> +<U000290C8> /x8e/xaf/xd2/xfd <CJK> +<U000290C9> /x8e/xaf/xd2/xfe <CJK> +<U000290CA> /x8e/xaf/xd3/xa1 <CJK> +<U000294A0> /x8e/xaf/xd3/xa3 <CJK> +<U000294A1> /x8e/xaf/xd3/xa4 <CJK> +<U000295CC> /x8e/xaf/xd3/xa5 <CJK> +<U000295CD> /x8e/xaf/xd3/xa6 <CJK> +<U000296F1> /x8e/xaf/xd3/xa7 <CJK> +<U000296D7> /x8e/xaf/xd3/xa8 <CJK> +<U00029842> /x8e/xaf/xd3/xa9 <CJK> +<U00029846> /x8e/xaf/xd3/xaa <CJK> +<U000298A3> /x8e/xaf/xd3/xab <CJK> +<U000298A5> /x8e/xaf/xd3/xac <CJK> +<U000298A6> /x8e/xaf/xd3/xad <CJK> +<U00029ACB> /x8e/xaf/xd3/xae <CJK> +<U00029ACC> /x8e/xaf/xd3/xaf <CJK> +<U00029B26> /x8e/xaf/xd3/xb0 <CJK> +<U00029B27> /x8e/xaf/xd3/xb1 <CJK> +<U00029B28> /x8e/xaf/xd3/xb2 <CJK> +<U00029B29> /x8e/xaf/xd3/xb3 <CJK> +<U00029CAE> /x8e/xaf/xd3/xb4 <CJK> +<U00029CAF> /x8e/xaf/xd3/xb5 <CJK> +<U00029CB0> /x8e/xaf/xd3/xb6 <CJK> +<U00029D73> /x8e/xaf/xd3/xb7 <CJK> +<U00029D7C> /x8e/xaf/xd3/xb9 <CJK> +<U00029D74> /x8e/xaf/xd3/xba <CJK> +<U00029F80> /x8e/xaf/xd3/xbc <CJK> +<U00029D75> /x8e/xaf/xd3/xbd <CJK> +<U9B79> /x8e/xaf/xd3/xbe <CJK> +<U00029FCF> /x8e/xaf/xd3/xc0 <CJK> +<U0002A38F> /x8e/xaf/xd3/xc2 <CJK> +<U00020670> /x8e/xaf/xd3/xc3 <CJK> +<U00020085> /x8e/xaf/xd3/xc4 <CJK> +<U00020397> /x8e/xaf/xd3/xc5 <CJK> +<U000203F6> /x8e/xaf/xd3/xc6 <CJK> +<U000203F7> /x8e/xaf/xd3/xc7 <CJK> +<U000203F8> /x8e/xaf/xd3/xc8 <CJK> +<U000203FA> /x8e/xaf/xd3/xc9 <CJK> +<U000203FB> /x8e/xaf/xd3/xca <CJK> +<U000204BA> /x8e/xaf/xd3/xcb <CJK> +<U000204BB> /x8e/xaf/xd3/xcc <CJK> +<U000204BC> /x8e/xaf/xd3/xcd <CJK> +<U000204BD> /x8e/xaf/xd3/xce <CJK> +<U00020534> /x8e/xaf/xd3/xcf <CJK> +<U00020535> /x8e/xaf/xd3/xd0 <CJK> +<U000205A2> /x8e/xaf/xd3/xd1 <CJK> +<U00020614> /x8e/xaf/xd3/xd2 <CJK> +<U00020611> /x8e/xaf/xd3/xd3 <CJK> +<U0002066E> /x8e/xaf/xd3/xd4 <CJK> +<U0002066F> /x8e/xaf/xd3/xd5 <CJK> +<U00020808> /x8e/xaf/xd3/xd6 <CJK> +<U000208B8> /x8e/xaf/xd3/xd7 <CJK> +<U00020A09> /x8e/xaf/xd3/xd8 <CJK> +<U00020ABD> /x8e/xaf/xd3/xd9 <CJK> +<U00020ABE> /x8e/xaf/xd3/xda <CJK> +<U00020B88> /x8e/xaf/xd3/xdb <CJK> +<U00020FFE> /x8e/xaf/xd3/xdc <CJK> +<U567A> /x8e/xaf/xd3/xdd <CJK> +<U00020FFF> /x8e/xaf/xd3/xde <CJK> +<U00021000> /x8e/xaf/xd3/xdf <CJK> +<U00021001> /x8e/xaf/xd3/xe0 <CJK> +<U00021002> /x8e/xaf/xd3/xe1 <CJK> +<U00021003> /x8e/xaf/xd3/xe2 <CJK> +<U00021004> /x8e/xaf/xd3/xe3 <CJK> +<U00021005> /x8e/xaf/xd3/xe4 <CJK> +<U00021006> /x8e/xaf/xd3/xe5 <CJK> +<U00021007> /x8e/xaf/xd3/xe7 <CJK> +<U00021008> /x8e/xaf/xd3/xe8 <CJK> +<U00021009> /x8e/xaf/xd3/xe9 <CJK> +<U0002100A> /x8e/xaf/xd3/xea <CJK> +<U0002100B> /x8e/xaf/xd3/xeb <CJK> +<U0002100C> /x8e/xaf/xd3/xec <CJK> +<U0002100D> /x8e/xaf/xd3/xed <CJK> +<U0002100E> /x8e/xaf/xd3/xee <CJK> +<U0002100F> /x8e/xaf/xd3/xef <CJK> +<U0002122C> /x8e/xaf/xd3/xf3 <CJK> +<U0002146B> /x8e/xaf/xd3/xf4 <CJK> +<U0002146C> /x8e/xaf/xd3/xf6 <CJK> +<U00021487> /x8e/xaf/xd3/xf7 <CJK> +<U0002146D> /x8e/xaf/xd3/xf8 <CJK> +<U00021578> /x8e/xaf/xd3/xf9 <CJK> +<U0002168B> /x8e/xaf/xd3/xfa <CJK> +<U000218A4> /x8e/xaf/xd3/xfb <CJK> +<U000218A5> /x8e/xaf/xd3/xfc <CJK> +<U000218A6> /x8e/xaf/xd3/xfd <CJK> +<U000218A7> /x8e/xaf/xd3/xfe <CJK> +<U000218BE> /x8e/xaf/xd4/xa1 <CJK> +<U000218A8> /x8e/xaf/xd4/xa2 <CJK> +<U000218A9> /x8e/xaf/xd4/xa3 <CJK> +<U000218AA> /x8e/xaf/xd4/xa4 <CJK> +<U0002188D> /x8e/xaf/xd4/xa5 <CJK> +<U000218AB> /x8e/xaf/xd4/xa6 <CJK> +<U000218AC> /x8e/xaf/xd4/xa7 <CJK> +<U000218BF> /x8e/xaf/xd4/xa8 <CJK> +<U372C> /x8e/xaf/xd4/xaa <CJK> +<U000218AD> /x8e/xaf/xd4/xab <CJK> +<U000218AE> /x8e/xaf/xd4/xac <CJK> +<U000219A4> /x8e/xaf/xd4/xad <CJK> +<U000219A5> /x8e/xaf/xd4/xae <CJK> +<U00021AC7> /x8e/xaf/xd4/xaf <CJK> +<U00021AC8> /x8e/xaf/xd4/xb0 <CJK> +<U00021AC9> /x8e/xaf/xd4/xb1 <CJK> +<U00027DBC> /x8e/xaf/xd4/xb2 <CJK> +<U00021ACA> /x8e/xaf/xd4/xb3 <CJK> +<U00021ACB> /x8e/xaf/xd4/xb4 <CJK> +<U00021ACC> /x8e/xaf/xd4/xb5 <CJK> +<U00021ACD> /x8e/xaf/xd4/xb6 <CJK> +<U00021ACE> /x8e/xaf/xd4/xb7 <CJK> +<U00021C19> /x8e/xaf/xd4/xb8 <CJK> +<U00021CE6> /x8e/xaf/xd4/xb9 <CJK> +<U00021F4C> /x8e/xaf/xd4/xba <CJK> +<U00021F4D> /x8e/xaf/xd4/xbb <CJK> +<U00021F4E> /x8e/xaf/xd4/xbc <CJK> +<U00022006> /x8e/xaf/xd4/xbd <CJK> +<U000222CD> /x8e/xaf/xd4/xbf <CJK> +<U000222CE> /x8e/xaf/xd4/xc0 <CJK> +<U000222CF> /x8e/xaf/xd4/xc1 <CJK> +<U000222D0> /x8e/xaf/xd4/xc2 <CJK> +<U5F5C> /x8e/xaf/xd4/xc3 <CJK> +<U00022581> /x8e/xaf/xd4/xc4 <CJK> +<U00022582> /x8e/xaf/xd4/xc5 <CJK> +<U00020533> /x8e/xaf/xd4/xc6 <CJK> +<U0002286A> /x8e/xaf/xd4/xc7 <CJK> +<U0002286B> /x8e/xaf/xd4/xc8 <CJK> +<U000228B2> /x8e/xaf/xd4/xc9 <CJK> +<U0002286C> /x8e/xaf/xd4/xca <CJK> +<U0002286D> /x8e/xaf/xd4/xcb <CJK> +<U000228CC> /x8e/xaf/xd4/xcc <CJK> +<U000228AE> /x8e/xaf/xd4/xcd <CJK> +<U000228B3> /x8e/xaf/xd4/xce <CJK> +<U00022891> /x8e/xaf/xd4/xcf <CJK> +<U0002286E> /x8e/xaf/xd4/xd1 <CJK> +<U000228B4> /x8e/xaf/xd4/xd2 <CJK> +<U0002286F> /x8e/xaf/xd4/xd3 <CJK> +<U00022DC9> /x8e/xaf/xd4/xd4 <CJK> +<U00022DA7> /x8e/xaf/xd4/xd5 <CJK> +<U00022DA8> /x8e/xaf/xd4/xd6 <CJK> +<U00022DA9> /x8e/xaf/xd4/xd7 <CJK> +<U00022DAA> /x8e/xaf/xd4/xd8 <CJK> +<U00022DAB> /x8e/xaf/xd4/xd9 <CJK> +<U00022DAC> /x8e/xaf/xd4/xda <CJK> +<U00022DAD> /x8e/xaf/xd4/xdb <CJK> +<U00022DAE> /x8e/xaf/xd4/xdc <CJK> +<U00022DAF> /x8e/xaf/xd4/xdd <CJK> +<U00022DB0> /x8e/xaf/xd4/xde <CJK> +<U00022D60> /x8e/xaf/xd4/xdf <CJK> +<U00022DB1> /x8e/xaf/xd4/xe0 <CJK> +<U00022EE1> /x8e/xaf/xd4/xe1 <CJK> +<U00022FE3> /x8e/xaf/xd4/xe2 <CJK> +<U00022FF6> /x8e/xaf/xd4/xe3 <CJK> +<U65D9> /x8e/xaf/xd4/xe4 <CJK> +<U000232AF> /x8e/xaf/xd4/xe5 <CJK> +<U000232B0> /x8e/xaf/xd4/xe6 <CJK> +<U000232B1> /x8e/xaf/xd4/xe7 <CJK> +<U000232BA> /x8e/xaf/xd4/xe8 <CJK> +<U000232B2> /x8e/xaf/xd4/xe9 <CJK> +<U000232B3> /x8e/xaf/xd4/xea <CJK> +<U0002334C> /x8e/xaf/xd4/xeb <CJK> +<U000233A0> /x8e/xaf/xd4/xed <CJK> +<U000233A1> /x8e/xaf/xd4/xee <CJK> +<U000236B0> /x8e/xaf/xd4/xef <CJK> +<U000236B1> /x8e/xaf/xd4/xf0 <CJK> +<U000236B2> /x8e/xaf/xd4/xf1 <CJK> +<U000236B3> /x8e/xaf/xd4/xf2 <CJK> +<U000236B4> /x8e/xaf/xd4/xf3 <CJK> +<U000236B5> /x8e/xaf/xd4/xf5 <CJK> +<U000236B6> /x8e/xaf/xd4/xf6 <CJK> +<U000236B7> /x8e/xaf/xd4/xf7 <CJK> +<U000236B8> /x8e/xaf/xd4/xf8 <CJK> +<U000236B9> /x8e/xaf/xd4/xf9 <CJK> +<U000236BA> /x8e/xaf/xd4/xfa <CJK> +<U6A72> /x8e/xaf/xd4/xfb <CJK> +<U000236BB> /x8e/xaf/xd4/xfc <CJK> +<U000236BC> /x8e/xaf/xd4/xfd <CJK> +<U000236BD> /x8e/xaf/xd4/xfe <CJK> +<U000236BE> /x8e/xaf/xd5/xa1 <CJK> +<U000236BF> /x8e/xaf/xd5/xa2 <CJK> +<U000236DF> /x8e/xaf/xd5/xa3 <CJK> +<U000236C0> /x8e/xaf/xd5/xa4 <CJK> +<U000236C1> /x8e/xaf/xd5/xa5 <CJK> +<U000236C2> /x8e/xaf/xd5/xa6 <CJK> +<U000236C3> /x8e/xaf/xd5/xa7 <CJK> +<U000236C4> /x8e/xaf/xd5/xa8 <CJK> +<U6A78> /x8e/xaf/xd5/xa9 <CJK> +<U000236C5> /x8e/xaf/xd5/xab <CJK> +<U000236C6> /x8e/xaf/xd5/xac <CJK> +<U000236C7> /x8e/xaf/xd5/xad <CJK> +<U000236C8> /x8e/xaf/xd5/xae <CJK> +<U000236C9> /x8e/xaf/xd5/xaf <CJK> +<U000236CA> /x8e/xaf/xd5/xb0 <CJK> +<U0002373C> /x8e/xaf/xd5/xb1 <CJK> +<U000236CB> /x8e/xaf/xd5/xb2 <CJK> +<U000236CC> /x8e/xaf/xd5/xb3 <CJK> +<U000236CD> /x8e/xaf/xd5/xb4 <CJK> +<U000236CE> /x8e/xaf/xd5/xb5 <CJK> +<U000236CF> /x8e/xaf/xd5/xb6 <CJK> +<U000236D0> /x8e/xaf/xd5/xb7 <CJK> +<U000236D1> /x8e/xaf/xd5/xb8 <CJK> +<U6B5A> /x8e/xaf/xd5/xb9 <CJK> +<U0002391D> /x8e/xaf/xd5/xba <CJK> +<U0002391E> /x8e/xaf/xd5/xbb <CJK> +<U00023A64> /x8e/xaf/xd5/xbc <CJK> +<U00023A65> /x8e/xaf/xd5/xbd <CJK> +<U00023AC5> /x8e/xaf/xd5/xbe <CJK> +<U00023AC6> /x8e/xaf/xd5/xbf <CJK> +<U00023AC7> /x8e/xaf/xd5/xc0 <CJK> +<U00023AFF> /x8e/xaf/xd5/xc1 <CJK> +<U00023BFF> /x8e/xaf/xd5/xc2 <CJK> +<U00023C00> /x8e/xaf/xd5/xc3 <CJK> +<U00023C01> /x8e/xaf/xd5/xc4 <CJK> +<U00023C02> /x8e/xaf/xd5/xc5 <CJK> +<U00023FF5> /x8e/xaf/xd5/xc6 <CJK> +<U0002405C> /x8e/xaf/xd5/xc7 <CJK> +<U00023FF6> /x8e/xaf/xd5/xc8 <CJK> +<U00023FF7> /x8e/xaf/xd5/xc9 <CJK> +<U00023FB0> /x8e/xaf/xd5/xca <CJK> +<U00023FF8> /x8e/xaf/xd5/xcb <CJK> +<U00023FF9> /x8e/xaf/xd5/xcc <CJK> +<U0002405D> /x8e/xaf/xd5/xcd <CJK> +<U00024050> /x8e/xaf/xd5/xce <CJK> +<U00023FFA> /x8e/xaf/xd5/xcf <CJK> +<U00023FFB> /x8e/xaf/xd5/xd0 <CJK> +<U00023FA2> /x8e/xaf/xd5/xd1 <CJK> +<U00023FFC> /x8e/xaf/xd5/xd2 <CJK> +<U00023FFD> /x8e/xaf/xd5/xd3 <CJK> +<U00023FFE> /x8e/xaf/xd5/xd4 <CJK> +<U00023FFF> /x8e/xaf/xd5/xd5 <CJK> +<U00024000> /x8e/xaf/xd5/xd7 <CJK> +<U000243C1> /x8e/xaf/xd5/xd9 <CJK> +<U000243C2> /x8e/xaf/xd5/xda <CJK> +<U000243C3> /x8e/xaf/xd5/xdb <CJK> +<U000243C4> /x8e/xaf/xd5/xdc <CJK> +<U000243C5> /x8e/xaf/xd5/xdd <CJK> +<U000243C6> /x8e/xaf/xd5/xde <CJK> +<U000243C7> /x8e/xaf/xd5/xdf <CJK> +<U000243C8> /x8e/xaf/xd5/xe0 <CJK> +<U000243C9> /x8e/xaf/xd5/xe1 <CJK> +<U000243CA> /x8e/xaf/xd5/xe2 <CJK> +<U000243CB> /x8e/xaf/xd5/xe3 <CJK> +<U000290EF> /x8e/xaf/xd5/xe4 <CJK> +<U000243D7> /x8e/xaf/xd5/xe5 <CJK> +<U000243CC> /x8e/xaf/xd5/xe6 <CJK> +<U000243CD> /x8e/xaf/xd5/xe7 <CJK> +<U000243CE> /x8e/xaf/xd5/xe8 <CJK> +<U00024422> /x8e/xaf/xd5/xe9 <CJK> +<U000243CF> /x8e/xaf/xd5/xea <CJK> +<U000243D0> /x8e/xaf/xd5/xeb <CJK> +<U000243D1> /x8e/xaf/xd5/xed <CJK> +<U000243D2> /x8e/xaf/xd5/xee <CJK> +<U000243E9> /x8e/xaf/xd5/xef <CJK> +<U000243D3> /x8e/xaf/xd5/xf0 <CJK> +<U000243D4> /x8e/xaf/xd5/xf1 <CJK> +<U000243D5> /x8e/xaf/xd5/xf2 <CJK> +<U00024538> /x8e/xaf/xd5/xf3 <CJK> +<U0002103B> /x8e/xaf/xd5/xf4 <CJK> +<U0002487D> /x8e/xaf/xd5/xf5 <CJK> +<U0002056F> /x8e/xaf/xd5/xf6 <CJK> +<U000248A1> /x8e/xaf/xd5/xf7 <CJK> +<U00024A53> /x8e/xaf/xd5/xf8 <CJK> +<U00024A54> /x8e/xaf/xd5/xf9 <CJK> +<U3EFB> /x8e/xaf/xd5/xfa <CJK> +<U00024A55> /x8e/xaf/xd5/xfb <CJK> +<U00024A3C> /x8e/xaf/xd5/xfc <CJK> +<U00024A56> /x8e/xaf/xd5/xfd <CJK> +<U00024A66> /x8e/xaf/xd6/xa1 <CJK> +<U3EFC> /x8e/xaf/xd6/xa2 <CJK> +<U00024A57> /x8e/xaf/xd6/xa3 <CJK> +<U00024A58> /x8e/xaf/xd6/xa4 <CJK> +<U00024A59> /x8e/xaf/xd6/xa5 <CJK> +<U00024A5A> /x8e/xaf/xd6/xa6 <CJK> +<U00024A5B> /x8e/xaf/xd6/xa7 <CJK> +<U00024A67> /x8e/xaf/xd6/xa8 <CJK> +<U00024A5C> /x8e/xaf/xd6/xa9 <CJK> +<U00024A6A> /x8e/xaf/xd6/xac <CJK> +<U00024A5D> /x8e/xaf/xd6/xad <CJK> +<U00024A3D> /x8e/xaf/xd6/xae <CJK> +<U00024A5E> /x8e/xaf/xd6/xaf <CJK> +<U00024A65> /x8e/xaf/xd6/xb0 <CJK> +<U00024CE1> /x8e/xaf/xd6/xb1 <CJK> +<U00024CCD> /x8e/xaf/xd6/xb2 <CJK> +<U0002A011> /x8e/xaf/xd6/xb3 <CJK> +<U00024E6F> /x8e/xaf/xd6/xb4 <CJK> +<U00024E70> /x8e/xaf/xd6/xb5 <CJK> +<U0002501A> /x8e/xaf/xd6/xb6 <CJK> +<U0002509A> /x8e/xaf/xd6/xb7 <CJK> +<U0002509B> /x8e/xaf/xd6/xb8 <CJK> +<U0002509C> /x8e/xaf/xd6/xb9 <CJK> +<U0002509E> /x8e/xaf/xd6/xba <CJK> +<U0002509F> /x8e/xaf/xd6/xbb <CJK> +<U0002528E> /x8e/xaf/xd6/xbd <CJK> +<U000253FD> /x8e/xaf/xd6/xbf <CJK> +<U0002555E> /x8e/xaf/xd6/xc1 <CJK> +<U0002555F> /x8e/xaf/xd6/xc2 <CJK> +<U00025560> /x8e/xaf/xd6/xc3 <CJK> +<U00025565> /x8e/xaf/xd6/xc4 <CJK> +<U00025567> /x8e/xaf/xd6/xc5 <CJK> +<U00025568> /x8e/xaf/xd6/xc6 <CJK> +<U00025569> /x8e/xaf/xd6/xc7 <CJK> +<U0002556A> /x8e/xaf/xd6/xc9 <CJK> +<U0002558F> /x8e/xaf/xd6/xca <CJK> +<U0002556B> /x8e/xaf/xd6/xcb <CJK> +<U0002556C> /x8e/xaf/xd6/xcc <CJK> +<U0002556D> /x8e/xaf/xd6/xcd <CJK> +<U000256F7> /x8e/xaf/xd6/xce <CJK> +<U000256F8> /x8e/xaf/xd6/xcf <CJK> +<U000256F9> /x8e/xaf/xd6/xd0 <CJK> +<U000256E4> /x8e/xaf/xd6/xd1 <CJK> +<U000256FA> /x8e/xaf/xd6/xd2 <CJK> +<U000258B1> /x8e/xaf/xd6/xd3 <CJK> +<U00025875> /x8e/xaf/xd6/xd4 <CJK> +<U00025876> /x8e/xaf/xd6/xd5 <CJK> +<U000259FF> /x8e/xaf/xd6/xd6 <CJK> +<U00025A00> /x8e/xaf/xd6/xd7 <CJK> +<U00025A01> /x8e/xaf/xd6/xd8 <CJK> +<U00025A02> /x8e/xaf/xd6/xd9 <CJK> +<U00025A03> /x8e/xaf/xd6/xda <CJK> +<U00025AAE> /x8e/xaf/xd6/xdb <CJK> +<U00025AAD> /x8e/xaf/xd6/xdc <CJK> +<U00025C51> /x8e/xaf/xd6/xdd <CJK> +<U00025C52> /x8e/xaf/xd6/xde <CJK> +<U00025C53> /x8e/xaf/xd6/xe0 <CJK> +<U00025C54> /x8e/xaf/xd6/xe1 <CJK> +<U00025C55> /x8e/xaf/xd6/xe2 <CJK> +<U00025C56> /x8e/xaf/xd6/xe3 <CJK> +<U00025C57> /x8e/xaf/xd6/xe4 <CJK> +<U00025C58> /x8e/xaf/xd6/xe5 <CJK> +<U00025C59> /x8e/xaf/xd6/xe6 <CJK> +<U00025C5A> /x8e/xaf/xd6/xe7 <CJK> +<U00025C5B> /x8e/xaf/xd6/xe8 <CJK> +<U00025C5C> /x8e/xaf/xd6/xe9 <CJK> +<U00025C5D> /x8e/xaf/xd6/xea <CJK> +<U00025C5E> /x8e/xaf/xd6/xeb <CJK> +<U00025C5F> /x8e/xaf/xd6/xec <CJK> +<U00025C60> /x8e/xaf/xd6/xed <CJK> +<U00025C61> /x8e/xaf/xd6/xee <CJK> +<U00025C62> /x8e/xaf/xd6/xef <CJK> +<U00025C63> /x8e/xaf/xd6/xf0 <CJK> +<U00025C64> /x8e/xaf/xd6/xf1 <CJK> +<U00025C4C> /x8e/xaf/xd6/xf2 <CJK> +<U00025C66> /x8e/xaf/xd6/xf3 <CJK> +<U00025EF1> /x8e/xaf/xd6/xf4 <CJK> +<U00025EF2> /x8e/xaf/xd6/xf5 <CJK> +<U000260F2> /x8e/xaf/xd6/xf6 <CJK> +<U000260F3> /x8e/xaf/xd6/xf7 <CJK> +<U000260F4> /x8e/xaf/xd6/xf8 <CJK> +<U000260F5> /x8e/xaf/xd6/xf9 <CJK> +<U000260F6> /x8e/xaf/xd6/xfa <CJK> +<U000260F7> /x8e/xaf/xd6/xfb <CJK> +<U000260F8> /x8e/xaf/xd6/xfc <CJK> +<U000260F9> /x8e/xaf/xd6/xfd <CJK> +<U000260FA> /x8e/xaf/xd6/xfe <CJK> +<U0002624C> /x8e/xaf/xd7/xa1 <CJK> +<U0002624B> /x8e/xaf/xd7/xa2 <CJK> +<U0002631B> /x8e/xaf/xd7/xa3 <CJK> +<U000263CE> /x8e/xaf/xd7/xa4 <CJK> +<U000263B3> /x8e/xaf/xd7/xa5 <CJK> +<U0002647F> /x8e/xaf/xd7/xa6 <CJK> +<U0002651A> /x8e/xaf/xd7/xa9 <CJK> +<U000265C4> /x8e/xaf/xd7/xaa <CJK> +<U000265C5> /x8e/xaf/xd7/xab <CJK> +<U000265C6> /x8e/xaf/xd7/xac <CJK> +<U000265C7> /x8e/xaf/xd7/xad <CJK> +<U000265C8> /x8e/xaf/xd7/xae <CJK> +<U000265C9> /x8e/xaf/xd7/xaf <CJK> +<U00026819> /x8e/xaf/xd7/xb1 <CJK> +<U0002681C> /x8e/xaf/xd7/xb2 <CJK> +<U0002681A> /x8e/xaf/xd7/xb3 <CJK> +<U0002694C> /x8e/xaf/xd7/xb4 <CJK> +<U0002698E> /x8e/xaf/xd7/xb5 <CJK> +<U00026A7E> /x8e/xaf/xd7/xb6 <CJK> +<U00026EEB> /x8e/xaf/xd7/xb7 <CJK> +<U00026EEC> /x8e/xaf/xd7/xb8 <CJK> +<U00026EED> /x8e/xaf/xd7/xb9 <CJK> +<U00026EEE> /x8e/xaf/xd7/xba <CJK> +<U00026EEF> /x8e/xaf/xd7/xbb <CJK> +<U00026EF0> /x8e/xaf/xd7/xbc <CJK> +<U00026EF1> /x8e/xaf/xd7/xbd <CJK> +<U00026ED8> /x8e/xaf/xd7/xbe <CJK> +<U00026ED9> /x8e/xaf/xd7/xbf <CJK> +<U00026EDA> /x8e/xaf/xd7/xc0 <CJK> +<U00026EDB> /x8e/xaf/xd7/xc1 <CJK> +<U00026EF2> /x8e/xaf/xd7/xc2 <CJK> +<U00026EF3> /x8e/xaf/xd7/xc3 <CJK> +<U00026EF4> /x8e/xaf/xd7/xc4 <CJK> +<U00026F07> /x8e/xaf/xd7/xc5 <CJK> +<U00026EF5> /x8e/xaf/xd7/xc9 <CJK> +<U00026F15> /x8e/xaf/xd7/xca <CJK> +<U00026EF6> /x8e/xaf/xd7/xcc <CJK> +<U00026EF7> /x8e/xaf/xd7/xcd <CJK> +<U00026EF8> /x8e/xaf/xd7/xce <CJK> +<U00026EF9> /x8e/xaf/xd7/xcf <CJK> +<U00026EFA> /x8e/xaf/xd7/xd0 <CJK> +<U00026EFB> /x8e/xaf/xd7/xd1 <CJK> +<U00026EFC> /x8e/xaf/xd7/xd2 <CJK> +<U00026EFD> /x8e/xaf/xd7/xd3 <CJK> +<U00026EFE> /x8e/xaf/xd7/xd4 <CJK> +<U00026FA7> /x8e/xaf/xd7/xd5 <CJK> +<U00026EFF> /x8e/xaf/xd7/xd6 <CJK> +<U00026F00> /x8e/xaf/xd7/xd7 <CJK> +<U00026F01> /x8e/xaf/xd7/xd8 <CJK> +<U00026F02> /x8e/xaf/xd7/xd9 <CJK> +<U00026F03> /x8e/xaf/xd7/xda <CJK> +<U00026F04> /x8e/xaf/xd7/xdb <CJK> +<U00026F05> /x8e/xaf/xd7/xdc <CJK> +<U000271E9> /x8e/xaf/xd7/xdd <CJK> +<U000271EA> /x8e/xaf/xd7/xde <CJK> +<U000271EB> /x8e/xaf/xd7/xdf <CJK> +<U000273DE> /x8e/xaf/xd7/xe0 <CJK> +<U000273DF> /x8e/xaf/xd7/xe1 <CJK> +<U000273E0> /x8e/xaf/xd7/xe3 <CJK> +<U000273E1> /x8e/xaf/xd7/xe4 <CJK> +<U000273E2> /x8e/xaf/xd7/xe5 <CJK> +<U000273E3> /x8e/xaf/xd7/xe6 <CJK> +<U0002773E> /x8e/xaf/xd7/xe7 <CJK> +<U0002773F> /x8e/xaf/xd7/xe8 <CJK> +<U00027740> /x8e/xaf/xd7/xe9 <CJK> +<U00027741> /x8e/xaf/xd7/xea <CJK> +<U00027871> /x8e/xaf/xd7/xeb <CJK> +<U00027872> /x8e/xaf/xd7/xec <CJK> +<U00027873> /x8e/xaf/xd7/xed <CJK> +<U00027A88> /x8e/xaf/xd7/xee <CJK> +<U00027A89> /x8e/xaf/xd7/xef <CJK> +<U00027A8A> /x8e/xaf/xd7/xf0 <CJK> +<U00027A8B> /x8e/xaf/xd7/xf1 <CJK> +<U00027A8C> /x8e/xaf/xd7/xf2 <CJK> +<U00027A8D> /x8e/xaf/xd7/xf3 <CJK> +<U00027A8E> /x8e/xaf/xd7/xf4 <CJK> +<U00027A8F> /x8e/xaf/xd7/xf5 <CJK> +<U00027A90> /x8e/xaf/xd7/xf6 <CJK> +<U00027A91> /x8e/xaf/xd7/xf7 <CJK> +<U00027A92> /x8e/xaf/xd7/xf8 <CJK> +<U00027CF1> /x8e/xaf/xd7/xfa <CJK> +<U00027DBE> /x8e/xaf/xd7/xfb <CJK> +<U00027DBF> /x8e/xaf/xd7/xfc <CJK> +<U00027DC0> /x8e/xaf/xd7/xfd <CJK> +<U00027DC1> /x8e/xaf/xd7/xfe <CJK> +<U00027DC2> /x8e/xaf/xd8/xa1 <CJK> +<U00027DC3> /x8e/xaf/xd8/xa2 <CJK> +<U00027E6E> /x8e/xaf/xd8/xa3 <CJK> +<U00027F37> /x8e/xaf/xd8/xa4 <CJK> +<U00027F57> /x8e/xaf/xd8/xa5 <CJK> +<U00027F38> /x8e/xaf/xd8/xa6 <CJK> +<U00027F39> /x8e/xaf/xd8/xa7 <CJK> +<U00027F3A> /x8e/xaf/xd8/xa8 <CJK> +<U00027F3B> /x8e/xaf/xd8/xa9 <CJK> +<U00027F3C> /x8e/xaf/xd8/xaa <CJK> +<U00027F3D> /x8e/xaf/xd8/xab <CJK> +<U00027F3E> /x8e/xaf/xd8/xac <CJK> +<U00027F27> /x8e/xaf/xd8/xad <CJK> +<U00027F3F> /x8e/xaf/xd8/xae <CJK> +<U000280C0> /x8e/xaf/xd8/xb1 <CJK> +<U000280C1> /x8e/xaf/xd8/xb2 <CJK> +<U8EBE> /x8e/xaf/xd8/xb3 <CJK> +<U00028267> /x8e/xaf/xd8/xb4 <CJK> +<U00028268> /x8e/xaf/xd8/xb6 <CJK> +<U00028358> /x8e/xaf/xd8/xb7 <CJK> +<U00028365> /x8e/xaf/xd8/xb8 <CJK> +<U00028359> /x8e/xaf/xd8/xb9 <CJK> +<U0002835A> /x8e/xaf/xd8/xba <CJK> +<U00028424> /x8e/xaf/xd8/xbb <CJK> +<U000285CD> /x8e/xaf/xd8/xbc <CJK> +<U000285CE> /x8e/xaf/xd8/xbd <CJK> +<U000285CF> /x8e/xaf/xd8/xbe <CJK> +<U000285D2> /x8e/xaf/xd8/xbf <CJK> +<U0002879F> /x8e/xaf/xd8/xc0 <CJK> +<U00028722> /x8e/xaf/xd8/xc1 <CJK> +<U0002887D> /x8e/xaf/xd8/xc2 <CJK> +<U0002887E> /x8e/xaf/xd8/xc3 <CJK> +<U000289FF> /x8e/xaf/xd8/xc4 <CJK> +<U00028A25> /x8e/xaf/xd8/xc5 <CJK> +<U00028A00> /x8e/xaf/xd8/xc6 <CJK> +<U00028A01> /x8e/xaf/xd8/xc7 <CJK> +<U933B> /x8e/xaf/xd8/xc8 <CJK> +<U00028A02> /x8e/xaf/xd8/xc9 <CJK> +<U00028A03> /x8e/xaf/xd8/xca <CJK> +<U00028A04> /x8e/xaf/xd8/xcb <CJK> +<U00028A05> /x8e/xaf/xd8/xcd <CJK> +<U00028A06> /x8e/xaf/xd8/xce <CJK> +<U00028A07> /x8e/xaf/xd8/xcf <CJK> +<U00028A16> /x8e/xaf/xd8/xd0 <CJK> +<U00028A08> /x8e/xaf/xd8/xd1 <CJK> +<U00028A17> /x8e/xaf/xd8/xd2 <CJK> +<U00028A09> /x8e/xaf/xd8/xd3 <CJK> +<U00028A0A> /x8e/xaf/xd8/xd4 <CJK> +<U9340> /x8e/xaf/xd8/xd5 <CJK> +<U00028A0B> /x8e/xaf/xd8/xd6 <CJK> +<U00028A0C> /x8e/xaf/xd8/xd7 <CJK> +<U00028A29> /x8e/xaf/xd8/xd8 <CJK> +<U933A> /x8e/xaf/xd8/xd9 <CJK> +<U00028A0D> /x8e/xaf/xd8/xda <CJK> +<U00028A0E> /x8e/xaf/xd8/xdc <CJK> +<U00028A10> /x8e/xaf/xd8/xdd <CJK> +<U00028A11> /x8e/xaf/xd8/xde <CJK> +<U00028A1D> /x8e/xaf/xd8/xdf <CJK> +<U00028A12> /x8e/xaf/xd8/xe0 <CJK> +<U00028A13> /x8e/xaf/xd8/xe1 <CJK> +<U00028A14> /x8e/xaf/xd8/xe3 <CJK> +<U00028A15> /x8e/xaf/xd8/xe4 <CJK> +<U00028C8D> /x8e/xaf/xd8/xe5 <CJK> +<U00028D54> /x8e/xaf/xd8/xe6 <CJK> +<U00028D55> /x8e/xaf/xd8/xe7 <CJK> +<U00028D56> /x8e/xaf/xd8/xe8 <CJK> +<U00028F33> /x8e/xaf/xd8/xe9 <CJK> +<U00028F34> /x8e/xaf/xd8/xea <CJK> +<U00028F35> /x8e/xaf/xd8/xeb <CJK> +<U00028F36> /x8e/xaf/xd8/xec <CJK> +<U00028FFA> /x8e/xaf/xd8/xed <CJK> +<U000290E3> /x8e/xaf/xd8/xee <CJK> +<U000290E6> /x8e/xaf/xd8/xef <CJK> +<U000290ED> /x8e/xaf/xd8/xf0 <CJK> +<U000290E7> /x8e/xaf/xd8/xf1 <CJK> +<U000290E8> /x8e/xaf/xd8/xf2 <CJK> +<U000290E9> /x8e/xaf/xd8/xf3 <CJK> +<U000290EA> /x8e/xaf/xd8/xf4 <CJK> +<U000290EB> /x8e/xaf/xd8/xf5 <CJK> +<U00029227> /x8e/xaf/xd8/xf6 <CJK> +<U00029220> /x8e/xaf/xd8/xf7 <CJK> +<U0002942A> /x8e/xaf/xd8/xf9 <CJK> +<U000294C9> /x8e/xaf/xd8/xfa <CJK> +<U000294CA> /x8e/xaf/xd8/xfc <CJK> +<U000294CB> /x8e/xaf/xd8/xfd <CJK> +<U000294D9> /x8e/xaf/xd8/xfe <CJK> +<U000294CC> /x8e/xaf/xd9/xa1 <CJK> +<U000294CD> /x8e/xaf/xd9/xa2 <CJK> +<U000294CE> /x8e/xaf/xd9/xa3 <CJK> +<U000295E1> /x8e/xaf/xd9/xa5 <CJK> +<U0002971B> /x8e/xaf/xd9/xa6 <CJK> +<U0002971C> /x8e/xaf/xd9/xa7 <CJK> +<U0002971D> /x8e/xaf/xd9/xa8 <CJK> +<U0002971E> /x8e/xaf/xd9/xa9 <CJK> +<U00029847> /x8e/xaf/xd9/xaa <CJK> +<U000298D1> /x8e/xaf/xd9/xab <CJK> +<U000298C9> /x8e/xaf/xd9/xac <CJK> +<U00029AD0> /x8e/xaf/xd9/xad <CJK> +<U00029AD1> /x8e/xaf/xd9/xae <CJK> +<U00029B3F> /x8e/xaf/xd9/xaf <CJK> +<U00029B40> /x8e/xaf/xd9/xb0 <CJK> +<U00029B41> /x8e/xaf/xd9/xb1 <CJK> +<U00029B42> /x8e/xaf/xd9/xb3 <CJK> +<U00029CC4> /x8e/xaf/xd9/xb4 <CJK> +<U00029D9B> /x8e/xaf/xd9/xb5 <CJK> +<U00029D92> /x8e/xaf/xd9/xb6 <CJK> +<U00029D93> /x8e/xaf/xd9/xb7 <CJK> +<U9B96> /x8e/xaf/xd9/xb8 <CJK> +<U00029D94> /x8e/xaf/xd9/xb9 <CJK> +<U00029D95> /x8e/xaf/xd9/xba <CJK> +<U00029FF3> /x8e/xaf/xd9/xbd <CJK> +<U00029FF4> /x8e/xaf/xd9/xbe <CJK> +<U00029FF5> /x8e/xaf/xd9/xbf <CJK> +<U00029FF6> /x8e/xaf/xd9/xc0 <CJK> +<U0002A260> /x8e/xaf/xd9/xc1 <CJK> +<U0002A29E> /x8e/xaf/xd9/xc2 <CJK> +<U0002A2A0> /x8e/xaf/xd9/xc3 <CJK> +<U0002A2A1> /x8e/xaf/xd9/xc4 <CJK> +<U0002A31C> /x8e/xaf/xd9/xc5 <CJK> +<U0002A39F> /x8e/xaf/xd9/xc6 <CJK> +<U00020056> /x8e/xaf/xd9/xc7 <CJK> +<U00020412> /x8e/xaf/xd9/xc8 <CJK> +<U0002041F> /x8e/xaf/xd9/xc9 <CJK> +<U00020415> /x8e/xaf/xd9/xca <CJK> +<U00020416> /x8e/xaf/xd9/xcb <CJK> +<U00020417> /x8e/xaf/xd9/xcc <CJK> +<U00020418> /x8e/xaf/xd9/xce <CJK> +<U000204C2> /x8e/xaf/xd9/xcf <CJK> +<U000204C3> /x8e/xaf/xd9/xd0 <CJK> +<U000204C4> /x8e/xaf/xd9/xd1 <CJK> +<U000205A1> /x8e/xaf/xd9/xd2 <CJK> +<U0002061B> /x8e/xaf/xd9/xd3 <CJK> +<U0002061C> /x8e/xaf/xd9/xd4 <CJK> +<U00020671> /x8e/xaf/xd9/xd5 <CJK> +<U00020813> /x8e/xaf/xd9/xd6 <CJK> +<U00020B17> /x8e/xaf/xd9/xd7 <CJK> +<U00020B8F> /x8e/xaf/xd9/xd8 <CJK> +<U0002105F> /x8e/xaf/xd9/xd9 <CJK> +<U00021060> /x8e/xaf/xd9/xda <CJK> +<U000210AC> /x8e/xaf/xd9/xdb <CJK> +<U00021061> /x8e/xaf/xd9/xde <CJK> +<U00021062> /x8e/xaf/xd9/xdf <CJK> +<U00021063> /x8e/xaf/xd9/xe0 <CJK> +<U00021064> /x8e/xaf/xd9/xe1 <CJK> +<U00021065> /x8e/xaf/xd9/xe2 <CJK> +<U00021499> /x8e/xaf/xd9/xe4 <CJK> +<U0002149A> /x8e/xaf/xd9/xe5 <CJK> +<U0002149B> /x8e/xaf/xd9/xe6 <CJK> +<U0002149C> /x8e/xaf/xd9/xe7 <CJK> +<U0002149D> /x8e/xaf/xd9/xe8 <CJK> +<U0002149E> /x8e/xaf/xd9/xe9 <CJK> +<U0002149F> /x8e/xaf/xd9/xea <CJK> +<U000214A0> /x8e/xaf/xd9/xeb <CJK> +<U000218DA> /x8e/xaf/xd9/xec <CJK> +<U000218DB> /x8e/xaf/xd9/xed <CJK> +<U000218DC> /x8e/xaf/xd9/xee <CJK> +<U000218DD> /x8e/xaf/xd9/xef <CJK> +<U000218DE> /x8e/xaf/xd9/xf0 <CJK> +<U000218DF> /x8e/xaf/xd9/xf1 <CJK> +<U00021AD5> /x8e/xaf/xd9/xf2 <CJK> +<U00021AD6> /x8e/xaf/xd9/xf3 <CJK> +<U00021AD7> /x8e/xaf/xd9/xf4 <CJK> +<U00021AD8> /x8e/xaf/xd9/xf5 <CJK> +<U00021AE0> /x8e/xaf/xd9/xf6 <CJK> +<U00021BB4> /x8e/xaf/xd9/xf7 <CJK> +<U00021F6E> /x8e/xaf/xd9/xf9 <CJK> +<U00021F6F> /x8e/xaf/xd9/xfa <CJK> +<U00021F70> /x8e/xaf/xd9/xfb <CJK> +<U00022163> /x8e/xaf/xd9/xfc <CJK> +<U000222D5> /x8e/xaf/xd9/xfe <CJK> +<U000222D6> /x8e/xaf/xda/xa1 <CJK> +<U000222D7> /x8e/xaf/xda/xa2 <CJK> +<U000222D8> /x8e/xaf/xda/xa3 <CJK> +<U00022430> /x8e/xaf/xda/xa4 <CJK> +<U000228B5> /x8e/xaf/xda/xa5 <CJK> +<U000228B6> /x8e/xaf/xda/xa6 <CJK> +<U000228C1> /x8e/xaf/xda/xa7 <CJK> +<U000228F7> /x8e/xaf/xda/xa8 <CJK> +<U39A0> /x8e/xaf/xda/xa9 <CJK> +<U000228CB> /x8e/xaf/xda/xaa <CJK> +<U000228E8> /x8e/xaf/xda/xab <CJK> +<U000228E9> /x8e/xaf/xda/xad <CJK> +<U000228B7> /x8e/xaf/xda/xae <CJK> +<U00022A15> /x8e/xaf/xda/xaf <CJK> +<U00022DE6> /x8e/xaf/xda/xb0 <CJK> +<U00022DE7> /x8e/xaf/xda/xb1 <CJK> +<U00022DE8> /x8e/xaf/xda/xb2 <CJK> +<U00022DE9> /x8e/xaf/xda/xb3 <CJK> +<U00022DEA> /x8e/xaf/xda/xb4 <CJK> +<U00022DEB> /x8e/xaf/xda/xb5 <CJK> +<U0002300B> /x8e/xaf/xda/xb7 <CJK> +<U0002300C> /x8e/xaf/xda/xb8 <CJK> +<U00023064> /x8e/xaf/xda/xb9 <CJK> +<U000232D4> /x8e/xaf/xda/xba <CJK> +<U000232D5> /x8e/xaf/xda/xbb <CJK> +<U000232D6> /x8e/xaf/xda/xbc <CJK> +<U000232D8> /x8e/xaf/xda/xbd <CJK> +<U000233A5> /x8e/xaf/xda/xbe <CJK> +<U0002005B> /x8e/xaf/xda/xbf <CJK> +<U0002370F> /x8e/xaf/xda/xc0 <CJK> +<U00023710> /x8e/xaf/xda/xc1 <CJK> +<U00023711> /x8e/xaf/xda/xc3 <CJK> +<U00023712> /x8e/xaf/xda/xc4 <CJK> +<U00023713> /x8e/xaf/xda/xc5 <CJK> +<U00023714> /x8e/xaf/xda/xc6 <CJK> +<U00023715> /x8e/xaf/xda/xc7 <CJK> +<U00023716> /x8e/xaf/xda/xc8 <CJK> +<U00023717> /x8e/xaf/xda/xc9 <CJK> +<U00023718> /x8e/xaf/xda/xca <CJK> +<U00023719> /x8e/xaf/xda/xcb <CJK> +<U0002371A> /x8e/xaf/xda/xcc <CJK> +<U0002372F> /x8e/xaf/xda/xcd <CJK> +<U0002371B> /x8e/xaf/xda/xce <CJK> +<U0002371C> /x8e/xaf/xda/xcf <CJK> +<U0002373F> /x8e/xaf/xda/xd0 <CJK> +<U0002371D> /x8e/xaf/xda/xd1 <CJK> +<U0002371E> /x8e/xaf/xda/xd2 <CJK> +<U0002372C> /x8e/xaf/xda/xd3 <CJK> +<U0002371F> /x8e/xaf/xda/xd4 <CJK> +<U00023924> /x8e/xaf/xda/xd5 <CJK> +<U000239A4> /x8e/xaf/xda/xd6 <CJK> +<U000239A5> /x8e/xaf/xda/xd7 <CJK> +<U00026251> /x8e/xaf/xda/xd8 <CJK> +<U00023AFE> /x8e/xaf/xda/xd9 <CJK> +<U00023C11> /x8e/xaf/xda/xda <CJK> +<U00023C12> /x8e/xaf/xda/xdb <CJK> +<U00023C13> /x8e/xaf/xda/xdc <CJK> +<U00023C54> /x8e/xaf/xda/xdd <CJK> +<U0002405E> /x8e/xaf/xda/xde <CJK> +<U00024021> /x8e/xaf/xda/xdf <CJK> +<U0002403F> /x8e/xaf/xda/xe0 <CJK> +<U00024040> /x8e/xaf/xda/xe1 <CJK> +<U00024041> /x8e/xaf/xda/xe2 <CJK> +<U00024042> /x8e/xaf/xda/xe3 <CJK> +<U00024043> /x8e/xaf/xda/xe4 <CJK> +<U00024044> /x8e/xaf/xda/xe5 <CJK> +<U00024020> /x8e/xaf/xda/xe6 <CJK> +<U00024045> /x8e/xaf/xda/xe7 <CJK> +<U00024046> /x8e/xaf/xda/xe9 <CJK> +<U000240B0> /x8e/xaf/xda/xea <CJK> +<U00024047> /x8e/xaf/xda/xeb <CJK> +<U00024057> /x8e/xaf/xda/xec <CJK> +<U00024001> /x8e/xaf/xda/xed <CJK> +<U000240B1> /x8e/xaf/xda/xee <CJK> +<U0002405A> /x8e/xaf/xda/xef <CJK> +<U00024048> /x8e/xaf/xda/xf0 <CJK> +<U00024404> /x8e/xaf/xda/xf1 <CJK> +<U00024405> /x8e/xaf/xda/xf2 <CJK> +<U71F5> /x8e/xaf/xda/xf3 <CJK> +<U0002444F> /x8e/xaf/xda/xf4 <CJK> +<U00024450> /x8e/xaf/xda/xf5 <CJK> +<U00024406> /x8e/xaf/xda/xf6 <CJK> +<U00024407> /x8e/xaf/xda/xf7 <CJK> +<U00024408> /x8e/xaf/xda/xf8 <CJK> +<U00024409> /x8e/xaf/xda/xf9 <CJK> +<U0002440A> /x8e/xaf/xda/xfa <CJK> +<U0002440B> /x8e/xaf/xda/xfb <CJK> +<U0002440C> /x8e/xaf/xda/xfc <CJK> +<U0002440D> /x8e/xaf/xda/xfd <CJK> +<U0002440E> /x8e/xaf/xda/xfe <CJK> +<U0002440F> /x8e/xaf/xdb/xa1 <CJK> +<U00024410> /x8e/xaf/xdb/xa2 <CJK> +<U00024411> /x8e/xaf/xdb/xa3 <CJK> +<U00024533> /x8e/xaf/xdb/xa4 <CJK> +<U00024534> /x8e/xaf/xdb/xa5 <CJK> +<U00024535> /x8e/xaf/xdb/xa6 <CJK> +<U000245FC> /x8e/xaf/xdb/xa7 <CJK> +<U000245FD> /x8e/xaf/xdb/xa8 <CJK> +<U000248B0> /x8e/xaf/xdb/xa9 <CJK> +<U000248B1> /x8e/xaf/xdb/xaa <CJK> +<U000248B2> /x8e/xaf/xdb/xab <CJK> +<U000248B3> /x8e/xaf/xdb/xac <CJK> +<U3F01> /x8e/xaf/xdb/xad <CJK> +<U00024A7B> /x8e/xaf/xdb/xae <CJK> +<U00024A7C> /x8e/xaf/xdb/xaf <CJK> +<U00024A7D> /x8e/xaf/xdb/xb0 <CJK> +<U00024A7E> /x8e/xaf/xdb/xb1 <CJK> +<U00024A7F> /x8e/xaf/xdb/xb2 <CJK> +<U00024A80> /x8e/xaf/xdb/xb3 <CJK> +<U00024A81> /x8e/xaf/xdb/xb4 <CJK> +<U00024A82> /x8e/xaf/xdb/xb5 <CJK> +<U00024BF9> /x8e/xaf/xdb/xb6 <CJK> +<U00024CDA> /x8e/xaf/xdb/xb7 <CJK> +<U00024EA1> /x8e/xaf/xdb/xb8 <CJK> +<U000250AD> /x8e/xaf/xdb/xbb <CJK> +<U000250AE> /x8e/xaf/xdb/xbc <CJK> +<U000252C8> /x8e/xaf/xdb/xbe <CJK> +<U000252C9> /x8e/xaf/xdb/xbf <CJK> +<U000252CA> /x8e/xaf/xdb/xc0 <CJK> +<U00025582> /x8e/xaf/xdb/xc1 <CJK> +<U00025583> /x8e/xaf/xdb/xc2 <CJK> +<U00025584> /x8e/xaf/xdb/xc3 <CJK> +<U00025585> /x8e/xaf/xdb/xc4 <CJK> +<U00025586> /x8e/xaf/xdb/xc5 <CJK> +<U00025587> /x8e/xaf/xdb/xc6 <CJK> +<U00025588> /x8e/xaf/xdb/xc7 <CJK> +<U00025589> /x8e/xaf/xdb/xc8 <CJK> +<U0002558A> /x8e/xaf/xdb/xc9 <CJK> +<U00025707> /x8e/xaf/xdb/xcb <CJK> +<U00025708> /x8e/xaf/xdb/xcc <CJK> +<U00025701> /x8e/xaf/xdb/xcd <CJK> +<U00025709> /x8e/xaf/xdb/xce <CJK> +<U00025702> /x8e/xaf/xdb/xcf <CJK> +<U0002570A> /x8e/xaf/xdb/xd0 <CJK> +<U0002570B> /x8e/xaf/xdb/xd1 <CJK> +<U0002570C> /x8e/xaf/xdb/xd2 <CJK> +<U000258A7> /x8e/xaf/xdb/xd3 <CJK> +<U00025898> /x8e/xaf/xdb/xd4 <CJK> +<U00025899> /x8e/xaf/xdb/xd5 <CJK> +<U0002589A> /x8e/xaf/xdb/xd6 <CJK> +<U0002589B> /x8e/xaf/xdb/xd7 <CJK> +<U0002589C> /x8e/xaf/xdb/xd8 <CJK> +<U7A50> /x8e/xaf/xdb/xd9 <CJK> +<U0002589D> /x8e/xaf/xdb/xda <CJK> +<U00025A1A> /x8e/xaf/xdb/xdb <CJK> +<U00025AB2> /x8e/xaf/xdb/xdc <CJK> +<U00025CB0> /x8e/xaf/xdb/xdd <CJK> +<U00025CB1> /x8e/xaf/xdb/xde <CJK> +<U00025CB2> /x8e/xaf/xdb/xe0 <CJK> +<U00025CB3> /x8e/xaf/xdb/xe1 <CJK> +<U00025CB4> /x8e/xaf/xdb/xe2 <CJK> +<U00025CB5> /x8e/xaf/xdb/xe3 <CJK> +<U00025CB6> /x8e/xaf/xdb/xe4 <CJK> +<U00025CC0> /x8e/xaf/xdb/xe5 <CJK> +<U00025CB7> /x8e/xaf/xdb/xe6 <CJK> +<U00025CB8> /x8e/xaf/xdb/xe7 <CJK> +<U00025CB9> /x8e/xaf/xdb/xe8 <CJK> +<U00025CBA> /x8e/xaf/xdb/xe9 <CJK> +<U00025D1D> /x8e/xaf/xdb/xea <CJK> +<U00025F0C> /x8e/xaf/xdb/xeb <CJK> +<U00025F0D> /x8e/xaf/xdb/xec <CJK> +<U00025F0E> /x8e/xaf/xdb/xed <CJK> +<U00025F35> /x8e/xaf/xdb/xee <CJK> +<U00025F0F> /x8e/xaf/xdb/xef <CJK> +<U00025F10> /x8e/xaf/xdb/xf0 <CJK> +<U00025F11> /x8e/xaf/xdb/xf1 <CJK> +<U00025F12> /x8e/xaf/xdb/xf2 <CJK> +<U00026122> /x8e/xaf/xdb/xf3 <CJK> +<U00026123> /x8e/xaf/xdb/xf4 <CJK> +<U00026124> /x8e/xaf/xdb/xf5 <CJK> +<U00026125> /x8e/xaf/xdb/xf7 <CJK> +<U00026126> /x8e/xaf/xdb/xf8 <CJK> +<U00026127> /x8e/xaf/xdb/xf9 <CJK> +<U00026128> /x8e/xaf/xdb/xfa <CJK> +<U00026129> /x8e/xaf/xdb/xfb <CJK> +<U0002612A> /x8e/xaf/xdb/xfc <CJK> +<U0002612B> /x8e/xaf/xdb/xfd <CJK> +<U0002612C> /x8e/xaf/xdb/xfe <CJK> +<U0002612D> /x8e/xaf/xdc/xa1 <CJK> +<U0002612E> /x8e/xaf/xdc/xa2 <CJK> +<U00026252> /x8e/xaf/xdc/xa3 <CJK> +<U00026253> /x8e/xaf/xdc/xa4 <CJK> +<U00026319> /x8e/xaf/xdc/xa5 <CJK> +<U000263BF> /x8e/xaf/xdc/xa6 <CJK> +<U0002648B> /x8e/xaf/xdc/xa7 <CJK> +<U0002648C> /x8e/xaf/xdc/xa8 <CJK> +<U00026523> /x8e/xaf/xdc/xa9 <CJK> +<U00026524> /x8e/xaf/xdc/xaa <CJK> +<U000265F1> /x8e/xaf/xdc/xab <CJK> +<U000265D8> /x8e/xaf/xdc/xac <CJK> +<U0002684E> /x8e/xaf/xdc/xae <CJK> +<U0002684F> /x8e/xaf/xdc/xaf <CJK> +<U00026855> /x8e/xaf/xdc/xb0 <CJK> +<U00026850> /x8e/xaf/xdc/xb1 <CJK> +<U00026851> /x8e/xaf/xdc/xb2 <CJK> +<U00026852> /x8e/xaf/xdc/xb3 <CJK> +<U00026853> /x8e/xaf/xdc/xb4 <CJK> +<U00026802> /x8e/xaf/xdc/xb5 <CJK> +<U00026854> /x8e/xaf/xdc/xb6 <CJK> +<U000268F1> /x8e/xaf/xdc/xb7 <CJK> +<U00026924> /x8e/xaf/xdc/xb8 <CJK> +<U00026AD1> /x8e/xaf/xdc/xb9 <CJK> +<U00026F7C> /x8e/xaf/xdc/xba <CJK> +<U00026F7D> /x8e/xaf/xdc/xbb <CJK> +<U00026F7E> /x8e/xaf/xdc/xbc <CJK> +<U00026F7F> /x8e/xaf/xdc/xbd <CJK> +<U00026F80> /x8e/xaf/xdc/xbe <CJK> +<U00026F9F> /x8e/xaf/xdc/xbf <CJK> +<U00026F81> /x8e/xaf/xdc/xc0 <CJK> +<U00026F82> /x8e/xaf/xdc/xc1 <CJK> +<U00026F83> /x8e/xaf/xdc/xc2 <CJK> +<U00026F84> /x8e/xaf/xdc/xc3 <CJK> +<U00026F85> /x8e/xaf/xdc/xc4 <CJK> +<U00026F86> /x8e/xaf/xdc/xc5 <CJK> +<U00026F87> /x8e/xaf/xdc/xc6 <CJK> +<U00026F88> /x8e/xaf/xdc/xc7 <CJK> +<U00026F9B> /x8e/xaf/xdc/xc8 <CJK> +<U00026F89> /x8e/xaf/xdc/xc9 <CJK> +<U00026F8A> /x8e/xaf/xdc/xca <CJK> +<U00026F8B> /x8e/xaf/xdc/xcb <CJK> +<U00026F8C> /x8e/xaf/xdc/xcc <CJK> +<U00026FA1> /x8e/xaf/xdc/xce <CJK> +<U00026F8D> /x8e/xaf/xdc/xcf <CJK> +<U00026F8E> /x8e/xaf/xdc/xd0 <CJK> +<U000271F3> /x8e/xaf/xdc/xd1 <CJK> +<U000271F4> /x8e/xaf/xdc/xd2 <CJK> +<U000271F5> /x8e/xaf/xdc/xd3 <CJK> +<U00027424> /x8e/xaf/xdc/xd4 <CJK> +<U00027425> /x8e/xaf/xdc/xd5 <CJK> +<U00027426> /x8e/xaf/xdc/xd6 <CJK> +<U00027427> /x8e/xaf/xdc/xd7 <CJK> +<U00027428> /x8e/xaf/xdc/xd8 <CJK> +<U00027429> /x8e/xaf/xdc/xd9 <CJK> +<U0002742A> /x8e/xaf/xdc/xda <CJK> +<U0002742B> /x8e/xaf/xdc/xdc <CJK> +<U000275CD> /x8e/xaf/xdc/xdd <CJK> +<U00027601> /x8e/xaf/xdc/xde <CJK> +<U0002258D> /x8e/xaf/xdc/xdf <CJK> +<U00027770> /x8e/xaf/xdc/xe0 <CJK> +<U00027880> /x8e/xaf/xdc/xe1 <CJK> +<U00027881> /x8e/xaf/xdc/xe2 <CJK> +<U00027AC0> /x8e/xaf/xdc/xe3 <CJK> +<U00027AC1> /x8e/xaf/xdc/xe4 <CJK> +<U00027AC2> /x8e/xaf/xdc/xe5 <CJK> +<U00027AC3> /x8e/xaf/xdc/xe6 <CJK> +<U00027AC4> /x8e/xaf/xdc/xe7 <CJK> +<U00027AC5> /x8e/xaf/xdc/xe8 <CJK> +<U00027AC6> /x8e/xaf/xdc/xe9 <CJK> +<U00027AC7> /x8e/xaf/xdc/xea <CJK> +<U00027AC8> /x8e/xaf/xdc/xeb <CJK> +<U00027CFE> /x8e/xaf/xdc/xec <CJK> +<U00027DD9> /x8e/xaf/xdc/xee <CJK> +<U00027DDC> /x8e/xaf/xdc/xef <CJK> +<U00027DDA> /x8e/xaf/xdc/xf0 <CJK> +<U00027E75> /x8e/xaf/xdc/xf1 <CJK> +<U00027F58> /x8e/xaf/xdc/xf2 <CJK> +<U00027F59> /x8e/xaf/xdc/xf3 <CJK> +<U00027F5A> /x8e/xaf/xdc/xf4 <CJK> +<U00027F5B> /x8e/xaf/xdc/xf5 <CJK> +<U00027F5C> /x8e/xaf/xdc/xf6 <CJK> +<U000280EC> /x8e/xaf/xdc/xf7 <CJK> +<U481A> /x8e/xaf/xdc/xf8 <CJK> +<U000280F3> /x8e/xaf/xdc/xf9 <CJK> +<U00028272> /x8e/xaf/xdc/xfa <CJK> +<U00028273> /x8e/xaf/xdc/xfb <CJK> +<U00028382> /x8e/xaf/xdc/xfc <CJK> +<U00028383> /x8e/xaf/xdc/xfd <CJK> +<U0002842A> /x8e/xaf/xdc/xfe <CJK> +<U0002842B> /x8e/xaf/xdd/xa1 <CJK> +<U0002842C> /x8e/xaf/xdd/xa2 <CJK> +<U0002842D> /x8e/xaf/xdd/xa3 <CJK> +<U000285F6> /x8e/xaf/xdd/xa4 <CJK> +<U00028600> /x8e/xaf/xdd/xa5 <CJK> +<U000285F7> /x8e/xaf/xdd/xa6 <CJK> +<U000285F8> /x8e/xaf/xdd/xa7 <CJK> +<U000285F9> /x8e/xaf/xdd/xa8 <CJK> +<U00028894> /x8e/xaf/xdd/xaa <CJK> +<U00028895> /x8e/xaf/xdd/xab <CJK> +<U00028896> /x8e/xaf/xdd/xac <CJK> +<U0002891B> /x8e/xaf/xdd/xad <CJK> +<U00028A86> /x8e/xaf/xdd/xae <CJK> +<U00028A4C> /x8e/xaf/xdd/xaf <CJK> +<U00028A4D> /x8e/xaf/xdd/xb0 <CJK> +<U00028A83> /x8e/xaf/xdd/xb1 <CJK> +<U00028A82> /x8e/xaf/xdd/xb3 <CJK> +<U00028A4E> /x8e/xaf/xdd/xb4 <CJK> +<U00028A4F> /x8e/xaf/xdd/xb5 <CJK> +<U00028A50> /x8e/xaf/xdd/xb6 <CJK> +<U00028A51> /x8e/xaf/xdd/xb7 <CJK> +<U00028A81> /x8e/xaf/xdd/xb8 <CJK> +<U9387> /x8e/xaf/xdd/xb9 <CJK> +<U00028A52> /x8e/xaf/xdd/xba <CJK> +<U00028A53> /x8e/xaf/xdd/xbb <CJK> +<U00028A54> /x8e/xaf/xdd/xbc <CJK> +<U00028A55> /x8e/xaf/xdd/xbd <CJK> +<U00028A56> /x8e/xaf/xdd/xbf <CJK> +<U00028A57> /x8e/xaf/xdd/xc0 <CJK> +<U9385> /x8e/xaf/xdd/xc1 <CJK> +<U00028A58> /x8e/xaf/xdd/xc2 <CJK> +<U00028A5B> /x8e/xaf/xdd/xc3 <CJK> +<U00028A5C> /x8e/xaf/xdd/xc4 <CJK> +<U00028A5D> /x8e/xaf/xdd/xc5 <CJK> +<U00028A5E> /x8e/xaf/xdd/xc6 <CJK> +<U00028A5F> /x8e/xaf/xdd/xc7 <CJK> +<U00028A60> /x8e/xaf/xdd/xc8 <CJK> +<U00028A61> /x8e/xaf/xdd/xc9 <CJK> +<U00028A7C> /x8e/xaf/xdd/xca <CJK> +<U00028A62> /x8e/xaf/xdd/xcb <CJK> +<U493C> /x8e/xaf/xdd/xcc <CJK> +<U00028A63> /x8e/xaf/xdd/xce <CJK> +<U00028A64> /x8e/xaf/xdd/xcf <CJK> +<U00028D73> /x8e/xaf/xdd/xd0 <CJK> +<U00028F45> /x8e/xaf/xdd/xd1 <CJK> +<U00028F46> /x8e/xaf/xdd/xd2 <CJK> +<U00028F47> /x8e/xaf/xdd/xd3 <CJK> +<U00028F4C> /x8e/xaf/xdd/xd4 <CJK> +<U00029012> /x8e/xaf/xdd/xd5 <CJK> +<U00029013> /x8e/xaf/xdd/xd7 <CJK> +<U00029139> /x8e/xaf/xdd/xd8 <CJK> +<U00029103> /x8e/xaf/xdd/xd9 <CJK> +<U0002910D> /x8e/xaf/xdd/xda <CJK> +<U00029230> /x8e/xaf/xdd/xdb <CJK> +<U000292D5> /x8e/xaf/xdd/xdc <CJK> +<U000293C0> /x8e/xaf/xdd/xdd <CJK> +<U000294F2> /x8e/xaf/xdd/xde <CJK> +<U000294F3> /x8e/xaf/xdd/xdf <CJK> +<U000294F4> /x8e/xaf/xdd/xe0 <CJK> +<U000294F5> /x8e/xaf/xdd/xe1 <CJK> +<U000294F6> /x8e/xaf/xdd/xe2 <CJK> +<U000294F7> /x8e/xaf/xdd/xe3 <CJK> +<U000295FA> /x8e/xaf/xdd/xe4 <CJK> +<U000295FB> /x8e/xaf/xdd/xe5 <CJK> +<U00029745> /x8e/xaf/xdd/xe6 <CJK> +<U00029746> /x8e/xaf/xdd/xe7 <CJK> +<U00029849> /x8e/xaf/xdd/xe8 <CJK> +<U000298E7> /x8e/xaf/xdd/xe9 <CJK> +<U000298E8> /x8e/xaf/xdd/xea <CJK> +<U00029AD8> /x8e/xaf/xdd/xeb <CJK> +<U00029AD9> /x8e/xaf/xdd/xec <CJK> +<U00029B55> /x8e/xaf/xdd/xed <CJK> +<U00029B56> /x8e/xaf/xdd/xee <CJK> +<U00029B57> /x8e/xaf/xdd/xef <CJK> +<U00029CDA> /x8e/xaf/xdd/xf0 <CJK> +<U00029CDB> /x8e/xaf/xdd/xf1 <CJK> +<U00029CDC> /x8e/xaf/xdd/xf2 <CJK> +<U00029DB8> /x8e/xaf/xdd/xf3 <CJK> +<U00029DB9> /x8e/xaf/xdd/xf4 <CJK> +<U00029DBA> /x8e/xaf/xdd/xf5 <CJK> +<U9BB1> /x8e/xaf/xdd/xf6 <CJK> +<U00029DBB> /x8e/xaf/xdd/xf7 <CJK> +<U00029F89> /x8e/xaf/xdd/xf8 <CJK> +<U00029DBC> /x8e/xaf/xdd/xf9 <CJK> +<U0002A030> /x8e/xaf/xdd/xfa <CJK> +<U0002A031> /x8e/xaf/xdd/xfb <CJK> +<U0002A032> /x8e/xaf/xdd/xfc <CJK> +<U0002A033> /x8e/xaf/xdd/xfd <CJK> +<U0002A034> /x8e/xaf/xde/xa1 <CJK> +<U0002A035> /x8e/xaf/xde/xa2 <CJK> +<U0002A036> /x8e/xaf/xde/xa3 <CJK> +<U9D47> /x8e/xaf/xde/xa4 <CJK> +<U0002A037> /x8e/xaf/xde/xa5 <CJK> +<U0002A2B2> /x8e/xaf/xde/xa6 <CJK> +<U0002A390> /x8e/xaf/xde/xa7 <CJK> +<U0002A326> /x8e/xaf/xde/xa8 <CJK> +<U0002A3A2> /x8e/xaf/xde/xa9 <CJK> +<U0002A438> /x8e/xaf/xde/xaa <CJK> +<U0002042E> /x8e/xaf/xde/xac <CJK> +<U0002042F> /x8e/xaf/xde/xae <CJK> +<U00020430> /x8e/xaf/xde/xaf <CJK> +<U0002042A> /x8e/xaf/xde/xb0 <CJK> +<U0002042B> /x8e/xaf/xde/xb1 <CJK> +<U000204C9> /x8e/xaf/xde/xb2 <CJK> +<U00020537> /x8e/xaf/xde/xb3 <CJK> +<U00020620> /x8e/xaf/xde/xb4 <CJK> +<U00020672> /x8e/xaf/xde/xb5 <CJK> +<U0002081F> /x8e/xaf/xde/xb6 <CJK> +<U00020965> /x8e/xaf/xde/xb7 <CJK> +<U000209CA> /x8e/xaf/xde/xb8 <CJK> +<U00020AC0> /x8e/xaf/xde/xb9 <CJK> +<U00020AC1> /x8e/xaf/xde/xba <CJK> +<U00020AC2> /x8e/xaf/xde/xbb <CJK> +<U000210B7> /x8e/xaf/xde/xbc <CJK> +<U000210B8> /x8e/xaf/xde/xbd <CJK> +<U000210B9> /x8e/xaf/xde/xbe <CJK> +<U000210BA> /x8e/xaf/xde/xbf <CJK> +<U000210BB> /x8e/xaf/xde/xc0 <CJK> +<U000210BC> /x8e/xaf/xde/xc3 <CJK> +<U000210BD> /x8e/xaf/xde/xc4 <CJK> +<U000210BE> /x8e/xaf/xde/xc5 <CJK> +<U000210F2> /x8e/xaf/xde/xc6 <CJK> +<U000214B5> /x8e/xaf/xde/xc7 <CJK> +<U000214B7> /x8e/xaf/xde/xc8 <CJK> +<U000214B8> /x8e/xaf/xde/xc9 <CJK> +<U000210DF> /x8e/xaf/xde/xca <CJK> +<U000214B9> /x8e/xaf/xde/xcb <CJK> +<U000214D5> /x8e/xaf/xde/xcc <CJK> +<U000214BA> /x8e/xaf/xde/xcd <CJK> +<U000214BB> /x8e/xaf/xde/xce <CJK> +<U0002154A> /x8e/xaf/xde/xcf <CJK> +<U000218F2> /x8e/xaf/xde/xd0 <CJK> +<U000218F3> /x8e/xaf/xde/xd1 <CJK> +<U000218F4> /x8e/xaf/xde/xd2 <CJK> +<U000218FA> /x8e/xaf/xde/xd3 <CJK> +<U000218F5> /x8e/xaf/xde/xd4 <CJK> +<U00021902> /x8e/xaf/xde/xd5 <CJK> +<U00021AE2> /x8e/xaf/xde/xd6 <CJK> +<U00021AE3> /x8e/xaf/xde/xd7 <CJK> +<U00021F8E> /x8e/xaf/xde/xd8 <CJK> +<U00021F8B> /x8e/xaf/xde/xd9 <CJK> +<U000222E4> /x8e/xaf/xde/xda <CJK> +<U000222EB> /x8e/xaf/xde/xdb <CJK> +<U000222E5> /x8e/xaf/xde/xdc <CJK> +<U00022435> /x8e/xaf/xde/xdd <CJK> +<U00022593> /x8e/xaf/xde/xde <CJK> +<U000228EA> /x8e/xaf/xde/xdf <CJK> +<U000228EB> /x8e/xaf/xde/xe0 <CJK> +<U000228EC> /x8e/xaf/xde/xe2 <CJK> +<U000228ED> /x8e/xaf/xde/xe3 <CJK> +<U00022917> /x8e/xaf/xde/xe4 <CJK> +<U000228EE> /x8e/xaf/xde/xe5 <CJK> +<U000228EF> /x8e/xaf/xde/xe6 <CJK> +<U000228F0> /x8e/xaf/xde/xe7 <CJK> +<U00022E0E> /x8e/xaf/xde/xe8 <CJK> +<U00022E0F> /x8e/xaf/xde/xe9 <CJK> +<U00022E10> /x8e/xaf/xde/xea <CJK> +<U00022E19> /x8e/xaf/xde/xeb <CJK> +<U00022E18> /x8e/xaf/xde/xec <CJK> +<U00022E11> /x8e/xaf/xde/xed <CJK> +<U00022E12> /x8e/xaf/xde/xee <CJK> +<U00022E13> /x8e/xaf/xde/xef <CJK> +<U00022E14> /x8e/xaf/xde/xf1 <CJK> +<U00022E15> /x8e/xaf/xde/xf2 <CJK> +<U3A6B> /x8e/xaf/xde/xf3 <CJK> +<U00022E16> /x8e/xaf/xde/xf4 <CJK> +<U00023065> /x8e/xaf/xde/xf5 <CJK> +<U000232EA> /x8e/xaf/xde/xf6 <CJK> +<U000232EB> /x8e/xaf/xde/xf7 <CJK> +<U000232EC> /x8e/xaf/xde/xf8 <CJK> +<U000232ED> /x8e/xaf/xde/xf9 <CJK> +<U000232EE> /x8e/xaf/xde/xfb <CJK> +<U000233AC> /x8e/xaf/xde/xfc <CJK> +<U000237C2> /x8e/xaf/xde/xfd <CJK> +<U00023769> /x8e/xaf/xde/xfe <CJK> +<U00023781> /x8e/xaf/xdf/xa1 <CJK> +<U0002376A> /x8e/xaf/xdf/xa2 <CJK> +<U0002376B> /x8e/xaf/xdf/xa3 <CJK> +<U0002376C> /x8e/xaf/xdf/xa4 <CJK> +<U0002376D> /x8e/xaf/xdf/xa5 <CJK> +<U0002376E> /x8e/xaf/xdf/xa6 <CJK> +<U0002376F> /x8e/xaf/xdf/xa7 <CJK> +<U00023770> /x8e/xaf/xdf/xa8 <CJK> +<U00023771> /x8e/xaf/xdf/xaa <CJK> +<U00023772> /x8e/xaf/xdf/xab <CJK> +<U00023773> /x8e/xaf/xdf/xac <CJK> +<U0002378C> /x8e/xaf/xdf/xad <CJK> +<U00023774> /x8e/xaf/xdf/xae <CJK> +<U00023775> /x8e/xaf/xdf/xaf <CJK> +<U00023776> /x8e/xaf/xdf/xb0 <CJK> +<U00023C24> /x8e/xaf/xdf/xb1 <CJK> +<U00023C2A> /x8e/xaf/xdf/xb2 <CJK> +<U0002408E> /x8e/xaf/xdf/xb3 <CJK> +<U000240AF> /x8e/xaf/xdf/xb4 <CJK> +<U0002408F> /x8e/xaf/xdf/xb5 <CJK> +<U00024090> /x8e/xaf/xdf/xb6 <CJK> +<U00024091> /x8e/xaf/xdf/xb7 <CJK> +<U00024092> /x8e/xaf/xdf/xb9 <CJK> +<U00024093> /x8e/xaf/xdf/xba <CJK> +<U00024094> /x8e/xaf/xdf/xbb <CJK> +<U00024095> /x8e/xaf/xdf/xbc <CJK> +<U00024096> /x8e/xaf/xdf/xbd <CJK> +<U00024097> /x8e/xaf/xdf/xbe <CJK> +<U00024098> /x8e/xaf/xdf/xbf <CJK> +<U00024099> /x8e/xaf/xdf/xc0 <CJK> +<U0002409A> /x8e/xaf/xdf/xc1 <CJK> +<U0002409B> /x8e/xaf/xdf/xc2 <CJK> +<U0002409C> /x8e/xaf/xdf/xc3 <CJK> +<U00024439> /x8e/xaf/xdf/xc4 <CJK> +<U0002443B> /x8e/xaf/xdf/xc5 <CJK> +<U0002443A> /x8e/xaf/xdf/xc6 <CJK> +<U0002443C> /x8e/xaf/xdf/xc7 <CJK> +<U0002443D> /x8e/xaf/xdf/xc8 <CJK> +<U0002443E> /x8e/xaf/xdf/xc9 <CJK> +<U0002443F> /x8e/xaf/xdf/xca <CJK> +<U00024470> /x8e/xaf/xdf/xcb <CJK> +<U00024440> /x8e/xaf/xdf/xcc <CJK> +<U00024441> /x8e/xaf/xdf/xcd <CJK> +<U000248C0> /x8e/xaf/xdf/xce <CJK> +<U000248C1> /x8e/xaf/xdf/xcf <CJK> +<U00024AA4> /x8e/xaf/xdf/xd0 <CJK> +<U00024A97> /x8e/xaf/xdf/xd1 <CJK> +<U00024AA5> /x8e/xaf/xdf/xd2 <CJK> +<U00024A98> /x8e/xaf/xdf/xd3 <CJK> +<U00024A99> /x8e/xaf/xdf/xd4 <CJK> +<U00024A9A> /x8e/xaf/xdf/xd5 <CJK> +<U00024A9B> /x8e/xaf/xdf/xd7 <CJK> +<U00024AA6> /x8e/xaf/xdf/xd8 <CJK> +<U00024A9C> /x8e/xaf/xdf/xd9 <CJK> +<U00024A9D> /x8e/xaf/xdf/xda <CJK> +<U00024A9E> /x8e/xaf/xdf/xdb <CJK> +<U00024A9F> /x8e/xaf/xdf/xdc <CJK> +<U00028ACE> /x8e/xaf/xdf/xdd <CJK> +<U00024AC8> /x8e/xaf/xdf/xde <CJK> +<U00024AA0> /x8e/xaf/xdf/xdf <CJK> +<U00024B19> /x8e/xaf/xdf/xe0 <CJK> +<U00024C0D> /x8e/xaf/xdf/xe1 <CJK> +<U000250BF> /x8e/xaf/xdf/xe2 <CJK> +<U000252E9> /x8e/xaf/xdf/xe3 <CJK> +<U000252EA> /x8e/xaf/xdf/xe4 <CJK> +<U000255A2> /x8e/xaf/xdf/xe5 <CJK> +<U000255A3> /x8e/xaf/xdf/xe6 <CJK> +<U000255A4> /x8e/xaf/xdf/xe7 <CJK> +<U000255A5> /x8e/xaf/xdf/xe8 <CJK> +<U000255A6> /x8e/xaf/xdf/xe9 <CJK> +<U00025715> /x8e/xaf/xdf/xea <CJK> +<U00025717> /x8e/xaf/xdf/xeb <CJK> +<U000258BF> /x8e/xaf/xdf/xec <CJK> +<U000258C0> /x8e/xaf/xdf/xed <CJK> +<U000258C1> /x8e/xaf/xdf/xee <CJK> +<U000258C2> /x8e/xaf/xdf/xef <CJK> +<U000258C3> /x8e/xaf/xdf/xf0 <CJK> +<U000258C4> /x8e/xaf/xdf/xf1 <CJK> +<U000258C5> /x8e/xaf/xdf/xf2 <CJK> +<U0002190D> /x8e/xaf/xdf/xf3 <CJK> +<U00025A23> /x8e/xaf/xdf/xf4 <CJK> +<U00025ABE> /x8e/xaf/xdf/xf5 <CJK> +<U00025D03> /x8e/xaf/xdf/xf6 <CJK> +<U00025D04> /x8e/xaf/xdf/xf7 <CJK> +<U00025D05> /x8e/xaf/xdf/xf8 <CJK> +<U00025D06> /x8e/xaf/xdf/xf9 <CJK> +<U00025D07> /x8e/xaf/xdf/xfa <CJK> +<U00025D08> /x8e/xaf/xdf/xfb <CJK> +<U00025D09> /x8e/xaf/xdf/xfc <CJK> +<U00025D0A> /x8e/xaf/xdf/xfd <CJK> +<U00025D0B> /x8e/xaf/xdf/xfe <CJK> +<U00025D0C> /x8e/xaf/xe0/xa1 <CJK> +<U00025D20> /x8e/xaf/xe0/xa2 <CJK> +<U00025D0D> /x8e/xaf/xe0/xa3 <CJK> +<U00025D0E> /x8e/xaf/xe0/xa4 <CJK> +<U00025D0F> /x8e/xaf/xe0/xa5 <CJK> +<U00025F26> /x8e/xaf/xe0/xa7 <CJK> +<U00025F27> /x8e/xaf/xe0/xa8 <CJK> +<U00025F28> /x8e/xaf/xe0/xa9 <CJK> +<U0002615D> /x8e/xaf/xe0/xaa <CJK> +<U0002615E> /x8e/xaf/xe0/xab <CJK> +<U0002615F> /x8e/xaf/xe0/xac <CJK> +<U00026160> /x8e/xaf/xe0/xad <CJK> +<U00026161> /x8e/xaf/xe0/xae <CJK> +<U00026162> /x8e/xaf/xe0/xaf <CJK> +<U00026163> /x8e/xaf/xe0/xb0 <CJK> +<U00026164> /x8e/xaf/xe0/xb1 <CJK> +<U00026165> /x8e/xaf/xe0/xb2 <CJK> +<U00026257> /x8e/xaf/xe0/xb3 <CJK> +<U000263CF> /x8e/xaf/xe0/xb4 <CJK> +<U000263D0> /x8e/xaf/xe0/xb5 <CJK> +<U00026499> /x8e/xaf/xe0/xb6 <CJK> +<U0002649A> /x8e/xaf/xe0/xb7 <CJK> +<U000265EA> /x8e/xaf/xe0/xb8 <CJK> +<U000265EB> /x8e/xaf/xe0/xb9 <CJK> +<U000265EC> /x8e/xaf/xe0/xba <CJK> +<U0002687E> /x8e/xaf/xe0/xbb <CJK> +<U0002687F> /x8e/xaf/xe0/xbc <CJK> +<U00026880> /x8e/xaf/xe0/xbd <CJK> +<U00026881> /x8e/xaf/xe0/xc0 <CJK> +<U00026882> /x8e/xaf/xe0/xc1 <CJK> +<U000268F3> /x8e/xaf/xe0/xc2 <CJK> +<U00026925> /x8e/xaf/xe0/xc3 <CJK> +<U0002699F> /x8e/xaf/xe0/xc4 <CJK> +<U000269A0> /x8e/xaf/xe0/xc5 <CJK> +<U000269F3> /x8e/xaf/xe0/xc6 <CJK> +<U00026A00> /x8e/xaf/xe0/xc7 <CJK> +<U00026FEB> /x8e/xaf/xe0/xc8 <CJK> +<U00026FEC> /x8e/xaf/xe0/xc9 <CJK> +<U00026FED> /x8e/xaf/xe0/xca <CJK> +<U00026FEE> /x8e/xaf/xe0/xcb <CJK> +<U00026FEF> /x8e/xaf/xe0/xcc <CJK> +<U455C> /x8e/xaf/xe0/xce <CJK> +<U00026FF0> /x8e/xaf/xe0/xcf <CJK> +<U00026FF1> /x8e/xaf/xe0/xd0 <CJK> +<U00026FF2> /x8e/xaf/xe0/xd1 <CJK> +<U00026FF3> /x8e/xaf/xe0/xd2 <CJK> +<U00026FF4> /x8e/xaf/xe0/xd3 <CJK> +<U00026FF5> /x8e/xaf/xe0/xd4 <CJK> +<U00026FF9> /x8e/xaf/xe0/xd5 <CJK> +<U00026FFA> /x8e/xaf/xe0/xd6 <CJK> +<U00026FFB> /x8e/xaf/xe0/xd7 <CJK> +<U00026FFC> /x8e/xaf/xe0/xd8 <CJK> +<U00026FFD> /x8e/xaf/xe0/xd9 <CJK> +<U00026FFE> /x8e/xaf/xe0/xda <CJK> +<U00026FFF> /x8e/xaf/xe0/xdb <CJK> +<U00027000> /x8e/xaf/xe0/xdc <CJK> +<U00027001> /x8e/xaf/xe0/xde <CJK> +<U00027002> /x8e/xaf/xe0/xdf <CJK> +<U00027203> /x8e/xaf/xe0/xe0 <CJK> +<U00027486> /x8e/xaf/xe0/xe1 <CJK> +<U00027479> /x8e/xaf/xe0/xe2 <CJK> +<U0002747A> /x8e/xaf/xe0/xe4 <CJK> +<U0002747B> /x8e/xaf/xe0/xe5 <CJK> +<U0002747C> /x8e/xaf/xe0/xe6 <CJK> +<U00027484> /x8e/xaf/xe0/xe7 <CJK> +<U0002747D> /x8e/xaf/xe0/xe8 <CJK> +<U0002747E> /x8e/xaf/xe0/xe9 <CJK> +<U0002747F> /x8e/xaf/xe0/xea <CJK> +<U00027786> /x8e/xaf/xe0/xeb <CJK> +<U00027787> /x8e/xaf/xe0/xec <CJK> +<U00027800> /x8e/xaf/xe0/xed <CJK> +<U00027801> /x8e/xaf/xe0/xee <CJK> +<U00027888> /x8e/xaf/xe0/xef <CJK> +<U00027889> /x8e/xaf/xe0/xf0 <CJK> +<U0002788A> /x8e/xaf/xe0/xf1 <CJK> +<U00027AF5> /x8e/xaf/xe0/xf2 <CJK> +<U00027B25> /x8e/xaf/xe0/xf4 <CJK> +<U00027AF6> /x8e/xaf/xe0/xf5 <CJK> +<U00027DEB> /x8e/xaf/xe0/xf6 <CJK> +<U00027DEC> /x8e/xaf/xe0/xf7 <CJK> +<U00027DED> /x8e/xaf/xe0/xf8 <CJK> +<U00027DEE> /x8e/xaf/xe0/xf9 <CJK> +<U4787> /x8e/xaf/xe0/xfa <CJK> +<U00027DEF> /x8e/xaf/xe0/xfb <CJK> +<U00027DF0> /x8e/xaf/xe0/xfc <CJK> +<U00027F6C> /x8e/xaf/xe0/xfd <CJK> +<U00028121> /x8e/xaf/xe0/xfe <CJK> +<U00028122> /x8e/xaf/xe1/xa1 <CJK> +<U00028123> /x8e/xaf/xe1/xa2 <CJK> +<U00028124> /x8e/xaf/xe1/xa3 <CJK> +<U00028125> /x8e/xaf/xe1/xa4 <CJK> +<U00028126> /x8e/xaf/xe1/xa5 <CJK> +<U0002827B> /x8e/xaf/xe1/xa6 <CJK> +<U0002827C> /x8e/xaf/xe1/xa7 <CJK> +<U00028391> /x8e/xaf/xe1/xa8 <CJK> +<U00028392> /x8e/xaf/xe1/xa9 <CJK> +<U00028393> /x8e/xaf/xe1/xaa <CJK> +<U0002860E> /x8e/xaf/xe1/xab <CJK> +<U0002860F> /x8e/xaf/xe1/xac <CJK> +<U00028610> /x8e/xaf/xe1/xad <CJK> +<U000288B3> /x8e/xaf/xe1/xae <CJK> +<U00028936> /x8e/xaf/xe1/xaf <CJK> +<U00028AC6> /x8e/xaf/xe1/xb0 <CJK> +<U00028AA1> /x8e/xaf/xe1/xb1 <CJK> +<U00028AA2> /x8e/xaf/xe1/xb2 <CJK> +<U93B9> /x8e/xaf/xe1/xb3 <CJK> +<U00028AA3> /x8e/xaf/xe1/xb4 <CJK> +<U00028ACC> /x8e/xaf/xe1/xb5 <CJK> +<U00028AA4> /x8e/xaf/xe1/xb6 <CJK> +<U00028AA5> /x8e/xaf/xe1/xb7 <CJK> +<U00028AA6> /x8e/xaf/xe1/xb8 <CJK> +<U00028ACB> /x8e/xaf/xe1/xb9 <CJK> +<U00028AA7> /x8e/xaf/xe1/xba <CJK> +<U00028AA8> /x8e/xaf/xe1/xbc <CJK> +<U00028AA9> /x8e/xaf/xe1/xbd <CJK> +<U00028AAA> /x8e/xaf/xe1/xbe <CJK> +<U00028AAB> /x8e/xaf/xe1/xc0 <CJK> +<U00028AAC> /x8e/xaf/xe1/xc1 <CJK> +<U00028AAD> /x8e/xaf/xe1/xc2 <CJK> +<U93BF> /x8e/xaf/xe1/xc3 <CJK> +<U00028AAE> /x8e/xaf/xe1/xc4 <CJK> +<U00028AAF> /x8e/xaf/xe1/xc5 <CJK> +<U00028AB0> /x8e/xaf/xe1/xc6 <CJK> +<U00028D8C> /x8e/xaf/xe1/xc7 <CJK> +<U00028D8D> /x8e/xaf/xe1/xc8 <CJK> +<U00028D8E> /x8e/xaf/xe1/xc9 <CJK> +<U00028D92> /x8e/xaf/xe1/xcb <CJK> +<U00028D8F> /x8e/xaf/xe1/xcc <CJK> +<U00028F52> /x8e/xaf/xe1/xcd <CJK> +<U00028F53> /x8e/xaf/xe1/xce <CJK> +<U00028F54> /x8e/xaf/xe1/xcf <CJK> +<U00028F55> /x8e/xaf/xe1/xd0 <CJK> +<U00029129> /x8e/xaf/xe1/xd1 <CJK> +<U000292F3> /x8e/xaf/xe1/xd3 <CJK> +<U000292F4> /x8e/xaf/xe1/xd4 <CJK> +<U0002950D> /x8e/xaf/xe1/xd5 <CJK> +<U0002950E> /x8e/xaf/xe1/xd6 <CJK> +<U0002950F> /x8e/xaf/xe1/xd7 <CJK> +<U00029510> /x8e/xaf/xe1/xd8 <CJK> +<U00029614> /x8e/xaf/xe1/xd9 <CJK> +<U00029771> /x8e/xaf/xe1/xda <CJK> +<U00029772> /x8e/xaf/xe1/xdb <CJK> +<U0002990F> /x8e/xaf/xe1/xdc <CJK> +<U00029904> /x8e/xaf/xe1/xdd <CJK> +<U00029906> /x8e/xaf/xe1/xde <CJK> +<U00029907> /x8e/xaf/xe1/xe0 <CJK> +<U00029ADC> /x8e/xaf/xe1/xe1 <CJK> +<U00029ADD> /x8e/xaf/xe1/xe2 <CJK> +<U00029B6D> /x8e/xaf/xe1/xe3 <CJK> +<U00029B79> /x8e/xaf/xe1/xe4 <CJK> +<U00029B6E> /x8e/xaf/xe1/xe5 <CJK> +<U00029CEC> /x8e/xaf/xe1/xe7 <CJK> +<U00029DDD> /x8e/xaf/xe1/xe8 <CJK> +<U00029DDE> /x8e/xaf/xe1/xe9 <CJK> +<U00029DDF> /x8e/xaf/xe1/xea <CJK> +<U00029DE0> /x8e/xaf/xe1/xeb <CJK> +<U00029DE1> /x8e/xaf/xe1/xec <CJK> +<U00029DE2> /x8e/xaf/xe1/xed <CJK> +<U00029DE3> /x8e/xaf/xe1/xee <CJK> +<U00029DE4> /x8e/xaf/xe1/xef <CJK> +<U00029E3A> /x8e/xaf/xe1/xf0 <CJK> +<U00029DE5> /x8e/xaf/xe1/xf1 <CJK> +<U9BCF> /x8e/xaf/xe1/xf2 <CJK> +<U00029DE6> /x8e/xaf/xe1/xf3 <CJK> +<U0002A06B> /x8e/xaf/xe1/xf4 <CJK> +<U0002A06C> /x8e/xaf/xe1/xf5 <CJK> +<U0002444E> /x8e/xaf/xe1/xf6 <CJK> +<U9D64> /x8e/xaf/xe1/xf7 <CJK> +<U0002A2BD> /x8e/xaf/xe1/xf8 <CJK> +<U0002A2BE> /x8e/xaf/xe1/xf9 <CJK> +<U0002A2BF> /x8e/xaf/xe1/xfa <CJK> +<U0002A334> /x8e/xaf/xe1/xfb <CJK> +<U9EBF> /x8e/xaf/xe1/xfc <CJK> +<U0002A512> /x8e/xaf/xe1/xfd <CJK> +<U00020440> /x8e/xaf/xe1/xfe <CJK> +<U00020441> /x8e/xaf/xe2/xa1 <CJK> +<U00021102> /x8e/xaf/xe2/xa2 <CJK> +<U00021103> /x8e/xaf/xe2/xa3 <CJK> +<U00021104> /x8e/xaf/xe2/xa4 <CJK> +<U00021105> /x8e/xaf/xe2/xa5 <CJK> +<U00021106> /x8e/xaf/xe2/xa6 <CJK> +<U000214D7> /x8e/xaf/xe2/xa7 <CJK> +<U000214CC> /x8e/xaf/xe2/xa8 <CJK> +<U00021698> /x8e/xaf/xe2/xa9 <CJK> +<U00021906> /x8e/xaf/xe2/xaa <CJK> +<U00021907> /x8e/xaf/xe2/xab <CJK> +<U000219AF> /x8e/xaf/xe2/xac <CJK> +<U000219B0> /x8e/xaf/xe2/xad <CJK> +<U00021AEA> /x8e/xaf/xe2/xae <CJK> +<U00021AF2> /x8e/xaf/xe2/xaf <CJK> +<U00021FA2> /x8e/xaf/xe2/xb0 <CJK> +<U00021FA3> /x8e/xaf/xe2/xb1 <CJK> +<U00021FA4> /x8e/xaf/xe2/xb2 <CJK> +<U00022176> /x8e/xaf/xe2/xb3 <CJK> +<U000222F5> /x8e/xaf/xe2/xb4 <CJK> +<U000222F6> /x8e/xaf/xe2/xb5 <CJK> +<U000222F7> /x8e/xaf/xe2/xb6 <CJK> +<U0002293B> /x8e/xaf/xe2/xb8 <CJK> +<U00022925> /x8e/xaf/xe2/xb9 <CJK> +<U0002293A> /x8e/xaf/xe2/xba <CJK> +<U0002293C> /x8e/xaf/xe2/xbb <CJK> +<U0002293D> /x8e/xaf/xe2/xbc <CJK> +<U0002293E> /x8e/xaf/xe2/xbd <CJK> +<U00022E37> /x8e/xaf/xe2/xbe <CJK> +<U00022E38> /x8e/xaf/xe2/xbf <CJK> +<U00022E39> /x8e/xaf/xe2/xc0 <CJK> +<U00022E3A> /x8e/xaf/xe2/xc1 <CJK> +<U00022E3B> /x8e/xaf/xe2/xc2 <CJK> +<U00022E3C> /x8e/xaf/xe2/xc3 <CJK> +<U00022E3D> /x8e/xaf/xe2/xc4 <CJK> +<U00022E3E> /x8e/xaf/xe2/xc5 <CJK> +<U00022E3F> /x8e/xaf/xe2/xc6 <CJK> +<U00022E4B> /x8e/xaf/xe2/xc7 <CJK> +<U00022E40> /x8e/xaf/xe2/xc9 <CJK> +<U00023022> /x8e/xaf/xe2/xca <CJK> +<U00023067> /x8e/xaf/xe2/xcb <CJK> +<U000230D3> /x8e/xaf/xe2/xcc <CJK> +<U000232FA> /x8e/xaf/xe2/xcd <CJK> +<U000237BC> /x8e/xaf/xe2/xcf <CJK> +<U000237A5> /x8e/xaf/xe2/xd2 <CJK> +<U3C07> /x8e/xaf/xe2/xd3 <CJK> +<U000237B6> /x8e/xaf/xe2/xd4 <CJK> +<U000237A6> /x8e/xaf/xe2/xd6 <CJK> +<U000237BB> /x8e/xaf/xe2/xd7 <CJK> +<U000237A7> /x8e/xaf/xe2/xd8 <CJK> +<U000237A8> /x8e/xaf/xe2/xd9 <CJK> +<U000237A9> /x8e/xaf/xe2/xda <CJK> +<U000237AA> /x8e/xaf/xe2/xdb <CJK> +<U000237AB> /x8e/xaf/xe2/xdc <CJK> +<U000237AC> /x8e/xaf/xe2/xdd <CJK> +<U000237BF> /x8e/xaf/xe2/xde <CJK> +<U000237AD> /x8e/xaf/xe2/xdf <CJK> +<U000237AE> /x8e/xaf/xe2/xe0 <CJK> +<U000237AF> /x8e/xaf/xe2/xe1 <CJK> +<U0002392E> /x8e/xaf/xe2/xe2 <CJK> +<U00023B00> /x8e/xaf/xe2/xe3 <CJK> +<U0002409D> /x8e/xaf/xe2/xe4 <CJK> +<U0002409E> /x8e/xaf/xe2/xe5 <CJK> +<U000240CB> /x8e/xaf/xe2/xe6 <CJK> +<U000240CC> /x8e/xaf/xe2/xe7 <CJK> +<U000240CD> /x8e/xaf/xe2/xe8 <CJK> +<U000240CE> /x8e/xaf/xe2/xe9 <CJK> +<U000240CF> /x8e/xaf/xe2/xea <CJK> +<U0002409F> /x8e/xaf/xe2/xec <CJK> +<U000240D0> /x8e/xaf/xe2/xed <CJK> +<U000240D1> /x8e/xaf/xe2/xee <CJK> +<U000240D2> /x8e/xaf/xe2/xef <CJK> +<U000240D3> /x8e/xaf/xe2/xf0 <CJK> +<U000240D4> /x8e/xaf/xe2/xf1 <CJK> +<U0002445D> /x8e/xaf/xe2/xf4 <CJK> +<U0002445E> /x8e/xaf/xe2/xf5 <CJK> +<U0002445F> /x8e/xaf/xe2/xf6 <CJK> +<U00024460> /x8e/xaf/xe2/xf7 <CJK> +<U3F05> /x8e/xaf/xe2/xf8 <CJK> +<U00024ABA> /x8e/xaf/xe2/xf9 <CJK> +<U00024ABC> /x8e/xaf/xe2/xfa <CJK> +<U00024AB5> /x8e/xaf/xe2/xfc <CJK> +<U00024ABD> /x8e/xaf/xe2/xfd <CJK> +<U00024AB6> /x8e/xaf/xe2/xfe <CJK> +<U00024AB7> /x8e/xaf/xe3/xa1 <CJK> +<U00024AB8> /x8e/xaf/xe3/xa2 <CJK> +<U00024AA8> /x8e/xaf/xe3/xa3 <CJK> +<U00024BFE> /x8e/xaf/xe3/xa5 <CJK> +<U00024BFC> /x8e/xaf/xe3/xa6 <CJK> +<U00024EE1> /x8e/xaf/xe3/xa7 <CJK> +<U000250C4> /x8e/xaf/xe3/xa8 <CJK> +<U000250C5> /x8e/xaf/xe3/xa9 <CJK> +<U00025314> /x8e/xaf/xe3/xaa <CJK> +<U000255AE> /x8e/xaf/xe3/xab <CJK> +<U000255AF> /x8e/xaf/xe3/xac <CJK> +<U000255B0> /x8e/xaf/xe3/xad <CJK> +<U000255B1> /x8e/xaf/xe3/xae <CJK> +<U000255B9> /x8e/xaf/xe3/xaf <CJK> +<U000258E7> /x8e/xaf/xe3/xb0 <CJK> +<U00025D46> /x8e/xaf/xe3/xb1 <CJK> +<U00025D47> /x8e/xaf/xe3/xb3 <CJK> +<U00025D48> /x8e/xaf/xe3/xb4 <CJK> +<U00025D49> /x8e/xaf/xe3/xb5 <CJK> +<U00025D1E> /x8e/xaf/xe3/xb6 <CJK> +<U00025D1F> /x8e/xaf/xe3/xb7 <CJK> +<U00025D4A> /x8e/xaf/xe3/xb8 <CJK> +<U00025D4B> /x8e/xaf/xe3/xb9 <CJK> +<U00025D4C> /x8e/xaf/xe3/xba <CJK> +<U00025D4D> /x8e/xaf/xe3/xbb <CJK> +<U00025D4E> /x8e/xaf/xe3/xbc <CJK> +<U00025F46> /x8e/xaf/xe3/xbe <CJK> +<U00025F4B> /x8e/xaf/xe3/xbf <CJK> +<U00026190> /x8e/xaf/xe3/xc0 <CJK> +<U00026191> /x8e/xaf/xe3/xc1 <CJK> +<U00026192> /x8e/xaf/xe3/xc3 <CJK> +<U00026193> /x8e/xaf/xe3/xc4 <CJK> +<U00026194> /x8e/xaf/xe3/xc5 <CJK> +<U0002625B> /x8e/xaf/xe3/xc6 <CJK> +<U000265F2> /x8e/xaf/xe3/xc7 <CJK> +<U000265F8> /x8e/xaf/xe3/xc8 <CJK> +<U000265F9> /x8e/xaf/xe3/xc9 <CJK> +<U00026894> /x8e/xaf/xe3/xca <CJK> +<U000268A4> /x8e/xaf/xe3/xcb <CJK> +<U00026897> /x8e/xaf/xe3/xcc <CJK> +<U00026898> /x8e/xaf/xe3/xcd <CJK> +<U00026929> /x8e/xaf/xe3/xce <CJK> +<U000269AE> /x8e/xaf/xe3/xcf <CJK> +<U00026AAF> /x8e/xaf/xe3/xd0 <CJK> +<U00027059> /x8e/xaf/xe3/xd1 <CJK> +<U0002705A> /x8e/xaf/xe3/xd2 <CJK> +<U0002705B> /x8e/xaf/xe3/xd4 <CJK> +<U0002705C> /x8e/xaf/xe3/xd5 <CJK> +<U0002705D> /x8e/xaf/xe3/xd6 <CJK> +<U0002705E> /x8e/xaf/xe3/xd7 <CJK> +<U0002705F> /x8e/xaf/xe3/xd8 <CJK> +<U00027060> /x8e/xaf/xe3/xd9 <CJK> +<U00027061> /x8e/xaf/xe3/xda <CJK> +<U00026FAA> /x8e/xaf/xe3/xdb <CJK> +<U00027062> /x8e/xaf/xe3/xdc <CJK> +<U00027063> /x8e/xaf/xe3/xdd <CJK> +<U00027064> /x8e/xaf/xe3/xde <CJK> +<U00027065> /x8e/xaf/xe3/xdf <CJK> +<U00027066> /x8e/xaf/xe3/xe0 <CJK> +<U00027067> /x8e/xaf/xe3/xe1 <CJK> +<U00027068> /x8e/xaf/xe3/xe2 <CJK> +<U00027069> /x8e/xaf/xe3/xe3 <CJK> +<U0002706A> /x8e/xaf/xe3/xe4 <CJK> +<U0002706B> /x8e/xaf/xe3/xe5 <CJK> +<U0002706C> /x8e/xaf/xe3/xe6 <CJK> +<U0002706D> /x8e/xaf/xe3/xe7 <CJK> +<U0002706E> /x8e/xaf/xe3/xe8 <CJK> +<U0002706F> /x8e/xaf/xe3/xe9 <CJK> +<U000274B2> /x8e/xaf/xe3/xeb <CJK> +<U000274B3> /x8e/xaf/xe3/xec <CJK> +<U000274B4> /x8e/xaf/xe3/xed <CJK> +<U45F9> /x8e/xaf/xe3/xee <CJK> +<U000274B5> /x8e/xaf/xe3/xef <CJK> +<U000274B6> /x8e/xaf/xe3/xf0 <CJK> +<U000274B7> /x8e/xaf/xe3/xf1 <CJK> +<U000274B8> /x8e/xaf/xe3/xf2 <CJK> +<U000274B9> /x8e/xaf/xe3/xf3 <CJK> +<U000274BA> /x8e/xaf/xe3/xf4 <CJK> +<U000274BB> /x8e/xaf/xe3/xf5 <CJK> +<U00027788> /x8e/xaf/xe3/xf6 <CJK> +<U89B8> /x8e/xaf/xe3/xf7 <CJK> +<U00027B19> /x8e/xaf/xe3/xf8 <CJK> +<U00027B1A> /x8e/xaf/xe3/xf9 <CJK> +<U00027B1B> /x8e/xaf/xe3/xfa <CJK> +<U00027C16> /x8e/xaf/xe3/xfb <CJK> +<U00027E0C> /x8e/xaf/xe3/xfc <CJK> +<U00027E0D> /x8e/xaf/xe3/xfd <CJK> +<U00027E0E> /x8e/xaf/xe3/xfe <CJK> +<U00027E0F> /x8e/xaf/xe4/xa1 <CJK> +<U00027F83> /x8e/xaf/xe4/xa3 <CJK> +<U00027F84> /x8e/xaf/xe4/xa4 <CJK> +<U00027F85> /x8e/xaf/xe4/xa5 <CJK> +<U00028283> /x8e/xaf/xe4/xa6 <CJK> +<U00028284> /x8e/xaf/xe4/xa7 <CJK> +<U000283B0> /x8e/xaf/xe4/xa8 <CJK> +<U00028626> /x8e/xaf/xe4/xaa <CJK> +<U00028627> /x8e/xaf/xe4/xab <CJK> +<U00028636> /x8e/xaf/xe4/xac <CJK> +<U00028628> /x8e/xaf/xe4/xad <CJK> +<U00028629> /x8e/xaf/xe4/xae <CJK> +<U00028AE7> /x8e/xaf/xe4/xb1 <CJK> +<U00028AE8> /x8e/xaf/xe4/xb2 <CJK> +<U00028AE9> /x8e/xaf/xe4/xb3 <CJK> +<U4953> /x8e/xaf/xe4/xb4 <CJK> +<U00028AEA> /x8e/xaf/xe4/xb5 <CJK> +<U00028AEB> /x8e/xaf/xe4/xb6 <CJK> +<U00028AEC> /x8e/xaf/xe4/xb8 <CJK> +<U00028AED> /x8e/xaf/xe4/xb9 <CJK> +<U00028AEE> /x8e/xaf/xe4/xba <CJK> +<U00028AEF> /x8e/xaf/xe4/xbb <CJK> +<U00028AF0> /x8e/xaf/xe4/xbc <CJK> +<U00028AF1> /x8e/xaf/xe4/xbd <CJK> +<U00028B0C> /x8e/xaf/xe4/xbe <CJK> +<U00028AF2> /x8e/xaf/xe4/xbf <CJK> +<U00028AF3> /x8e/xaf/xe4/xc0 <CJK> +<U00028AF4> /x8e/xaf/xe4/xc1 <CJK> +<U00028AF5> /x8e/xaf/xe4/xc2 <CJK> +<U00028AF6> /x8e/xaf/xe4/xc3 <CJK> +<U00028AF7> /x8e/xaf/xe4/xc4 <CJK> +<U00028AF8> /x8e/xaf/xe4/xc5 <CJK> +<U00028DA3> /x8e/xaf/xe4/xc6 <CJK> +<U00028DA4> /x8e/xaf/xe4/xc7 <CJK> +<U00028DA5> /x8e/xaf/xe4/xc8 <CJK> +<U00028DA6> /x8e/xaf/xe4/xc9 <CJK> +<U00028DA7> /x8e/xaf/xe4/xca <CJK> +<U00028F5C> /x8e/xaf/xe4/xcc <CJK> +<U0002914B> /x8e/xaf/xe4/xce <CJK> +<U000291E1> /x8e/xaf/xe4/xcf <CJK> +<U00029315> /x8e/xaf/xe4/xd0 <CJK> +<U00029316> /x8e/xaf/xe4/xd2 <CJK> +<U00029317> /x8e/xaf/xe4/xd3 <CJK> +<U0002952C> /x8e/xaf/xe4/xd4 <CJK> +<U0002952D> /x8e/xaf/xe4/xd5 <CJK> +<U00029622> /x8e/xaf/xe4/xd6 <CJK> +<U00029623> /x8e/xaf/xe4/xd7 <CJK> +<U00029796> /x8e/xaf/xe4/xd8 <CJK> +<U00029797> /x8e/xaf/xe4/xd9 <CJK> +<U0002992E> /x8e/xaf/xe4/xdb <CJK> +<U00029930> /x8e/xaf/xe4/xdc <CJK> +<U00029931> /x8e/xaf/xe4/xdd <CJK> +<U00029ADF> /x8e/xaf/xe4/xdf <CJK> +<U00029B8B> /x8e/xaf/xe4/xe0 <CJK> +<U00029B8C> /x8e/xaf/xe4/xe1 <CJK> +<U00029B8D> /x8e/xaf/xe4/xe3 <CJK> +<U00029CFC> /x8e/xaf/xe4/xe4 <CJK> +<U00029CFD> /x8e/xaf/xe4/xe5 <CJK> +<U00029CFE> /x8e/xaf/xe4/xe6 <CJK> +<U00029CFF> /x8e/xaf/xe4/xe7 <CJK> +<U00029E17> /x8e/xaf/xe4/xe8 <CJK> +<U00029E2D> /x8e/xaf/xe4/xe9 <CJK> +<U00029E18> /x8e/xaf/xe4/xea <CJK> +<U9BF3> /x8e/xaf/xe4/xeb <CJK> +<U00029E19> /x8e/xaf/xe4/xec <CJK> +<U00029E12> /x8e/xaf/xe4/xee <CJK> +<U00029E1A> /x8e/xaf/xe4/xef <CJK> +<U00029E1B> /x8e/xaf/xe4/xf0 <CJK> +<U00029E1C> /x8e/xaf/xe4/xf1 <CJK> +<U4C69> /x8e/xaf/xe4/xf2 <CJK> +<U0002A097> /x8e/xaf/xe4/xf4 <CJK> +<U0002A098> /x8e/xaf/xe4/xf6 <CJK> +<U0002A099> /x8e/xaf/xe4/xf7 <CJK> +<U0002A3C4> /x8e/xaf/xe4/xf9 <CJK> +<U0002044F> /x8e/xaf/xe4/xfa <CJK> +<U000204CD> /x8e/xaf/xe4/xfb <CJK> +<U00020AC7> /x8e/xaf/xe4/xfc <CJK> +<U0002111C> /x8e/xaf/xe4/xfd <CJK> +<U0002111D> /x8e/xaf/xe4/xfe <CJK> +<U0002111E> /x8e/xaf/xe5/xa1 <CJK> +<U000214E7> /x8e/xaf/xe5/xa2 <CJK> +<U000214E9> /x8e/xaf/xe5/xa3 <CJK> +<U000214EA> /x8e/xaf/xe5/xa4 <CJK> +<U000214EB> /x8e/xaf/xe5/xa5 <CJK> +<U00021915> /x8e/xaf/xe5/xa6 <CJK> +<U00021CF1> /x8e/xaf/xe5/xa7 <CJK> +<U00021CF2> /x8e/xaf/xe5/xa8 <CJK> +<U00021FB6> /x8e/xaf/xe5/xa9 <CJK> +<U000225A0> /x8e/xaf/xe5/xaa <CJK> +<U0002294A> /x8e/xaf/xe5/xab <CJK> +<U00022A20> /x8e/xaf/xe5/xac <CJK> +<U00022E60> /x8e/xaf/xe5/xad <CJK> +<U00022E61> /x8e/xaf/xe5/xae <CJK> +<U00022E41> /x8e/xaf/xe5/xaf <CJK> +<U00022E62> /x8e/xaf/xe5/xb0 <CJK> +<U00023303> /x8e/xaf/xe5/xb1 <CJK> +<U00023304> /x8e/xaf/xe5/xb2 <CJK> +<U000237D9> /x8e/xaf/xe5/xb3 <CJK> +<U000237DA> /x8e/xaf/xe5/xb4 <CJK> +<U000237DB> /x8e/xaf/xe5/xb5 <CJK> +<U000237DC> /x8e/xaf/xe5/xb6 <CJK> +<U000237DD> /x8e/xaf/xe5/xb7 <CJK> +<U000237DE> /x8e/xaf/xe5/xb9 <CJK> +<U000237DF> /x8e/xaf/xe5/xba <CJK> +<U000237E0> /x8e/xaf/xe5/xbb <CJK> +<U000237E1> /x8e/xaf/xe5/xbc <CJK> +<U000237E2> /x8e/xaf/xe5/xbd <CJK> +<U3C12> /x8e/xaf/xe5/xbe <CJK> +<U000237E3> /x8e/xaf/xe5/xbf <CJK> +<U00023C31> /x8e/xaf/xe5/xc1 <CJK> +<U00024105> /x8e/xaf/xe5/xc2 <CJK> +<U00024106> /x8e/xaf/xe5/xc3 <CJK> +<U00024107> /x8e/xaf/xe5/xc4 <CJK> +<U00024472> /x8e/xaf/xe5/xc5 <CJK> +<U0002448A> /x8e/xaf/xe5/xc6 <CJK> +<U0002448B> /x8e/xaf/xe5/xc7 <CJK> +<U00024488> /x8e/xaf/xe5/xc8 <CJK> +<U0002448C> /x8e/xaf/xe5/xca <CJK> +<U0002448D> /x8e/xaf/xe5/xcb <CJK> +<U0002448E> /x8e/xaf/xe5/xcc <CJK> +<U0002448F> /x8e/xaf/xe5/xcd <CJK> +<U00024490> /x8e/xaf/xe5/xce <CJK> +<U00024542> /x8e/xaf/xe5/xcf <CJK> +<U00024543> /x8e/xaf/xe5/xd0 <CJK> +<U00024AC1> /x8e/xaf/xe5/xd2 <CJK> +<U00024AC2> /x8e/xaf/xe5/xd3 <CJK> +<U00024AC3> /x8e/xaf/xe5/xd4 <CJK> +<U00024AC4> /x8e/xaf/xe5/xd5 <CJK> +<U000250CB> /x8e/xaf/xe5/xd6 <CJK> +<U00025322> /x8e/xaf/xe5/xd7 <CJK> +<U000255C3> /x8e/xaf/xe5/xda <CJK> +<U000255C4> /x8e/xaf/xe5/xdb <CJK> +<U000255C5> /x8e/xaf/xe5/xdc <CJK> +<U000255C6> /x8e/xaf/xe5/xdd <CJK> +<U0002571E> /x8e/xaf/xe5/xde <CJK> +<U00025725> /x8e/xaf/xe5/xdf <CJK> +<U000258F3> /x8e/xaf/xe5/xe0 <CJK> +<U000258F4> /x8e/xaf/xe5/xe1 <CJK> +<U000258F5> /x8e/xaf/xe5/xe3 <CJK> +<U00025A38> /x8e/xaf/xe5/xe4 <CJK> +<U00025A48> /x8e/xaf/xe5/xe5 <CJK> +<U00025ACA> /x8e/xaf/xe5/xe6 <CJK> +<U7C4F> /x8e/xaf/xe5/xe7 <CJK> +<U00025D7A> /x8e/xaf/xe5/xe8 <CJK> +<U00025D7B> /x8e/xaf/xe5/xe9 <CJK> +<U00025F55> /x8e/xaf/xe5/xea <CJK> +<U00025F56> /x8e/xaf/xe5/xeb <CJK> +<U000261B1> /x8e/xaf/xe5/xec <CJK> +<U000261B2> /x8e/xaf/xe5/xed <CJK> +<U000261B3> /x8e/xaf/xe5/xee <CJK> +<U000261B4> /x8e/xaf/xe5/xf0 <CJK> +<U000261B5> /x8e/xaf/xe5/xf1 <CJK> +<U000264A4> /x8e/xaf/xe5/xf2 <CJK> +<U00026600> /x8e/xaf/xe5/xf3 <CJK> +<U00026601> /x8e/xaf/xe5/xf4 <CJK> +<U00026602> /x8e/xaf/xe5/xf5 <CJK> +<U000268AC> /x8e/xaf/xe5/xf6 <CJK> +<U000269B3> /x8e/xaf/xe5/xf8 <CJK> +<U000270B6> /x8e/xaf/xe5/xf9 <CJK> +<U000270B7> /x8e/xaf/xe5/xfa <CJK> +<U000270B8> /x8e/xaf/xe5/xfb <CJK> +<U000270B9> /x8e/xaf/xe5/xfc <CJK> +<U000270BA> /x8e/xaf/xe5/xfd <CJK> +<U000270BB> /x8e/xaf/xe5/xfe <CJK> +<U000270BC> /x8e/xaf/xe6/xa1 <CJK> +<U000270BD> /x8e/xaf/xe6/xa2 <CJK> +<U000270BE> /x8e/xaf/xe6/xa3 <CJK> +<U000270BF> /x8e/xaf/xe6/xa4 <CJK> +<U000270C0> /x8e/xaf/xe6/xa5 <CJK> +<U000270C1> /x8e/xaf/xe6/xa6 <CJK> +<U000270C2> /x8e/xaf/xe6/xa7 <CJK> +<U000270C3> /x8e/xaf/xe6/xa8 <CJK> +<U000270C4> /x8e/xaf/xe6/xa9 <CJK> +<U000270C5> /x8e/xaf/xe6/xaa <CJK> +<U000270C6> /x8e/xaf/xe6/xab <CJK> +<U000270C7> /x8e/xaf/xe6/xac <CJK> +<U000274E3> /x8e/xaf/xe6/xad <CJK> +<U000274E4> /x8e/xaf/xe6/xae <CJK> +<U000274E5> /x8e/xaf/xe6/xaf <CJK> +<U000274E6> /x8e/xaf/xe6/xb0 <CJK> +<U000274E7> /x8e/xaf/xe6/xb1 <CJK> +<U000277B5> /x8e/xaf/xe6/xb3 <CJK> +<U000277A1> /x8e/xaf/xe6/xb4 <CJK> +<U00027895> /x8e/xaf/xe6/xb5 <CJK> +<U00027B3B> /x8e/xaf/xe6/xb6 <CJK> +<U00027B3C> /x8e/xaf/xe6/xb7 <CJK> +<U00027B3D> /x8e/xaf/xe6/xb8 <CJK> +<U00027B3E> /x8e/xaf/xe6/xb9 <CJK> +<U00027C14> /x8e/xaf/xe6/xba <CJK> +<U00027E20> /x8e/xaf/xe6/xbb <CJK> +<U00027E21> /x8e/xaf/xe6/xbc <CJK> +<U00027E22> /x8e/xaf/xe6/xbd <CJK> +<U00027E23> /x8e/xaf/xe6/xbe <CJK> +<U00027E24> /x8e/xaf/xe6/xbf <CJK> +<U00027F96> /x8e/xaf/xe6/xc0 <CJK> +<U00027F97> /x8e/xaf/xe6/xc1 <CJK> +<U00027F98> /x8e/xaf/xe6/xc2 <CJK> +<U00028194> /x8e/xaf/xe6/xc3 <CJK> +<U00028195> /x8e/xaf/xe6/xc4 <CJK> +<U00028196> /x8e/xaf/xe6/xc5 <CJK> +<U00028197> /x8e/xaf/xe6/xc6 <CJK> +<U00028198> /x8e/xaf/xe6/xc7 <CJK> +<U0002828F> /x8e/xaf/xe6/xc8 <CJK> +<U00028290> /x8e/xaf/xe6/xc9 <CJK> +<U000283BC> /x8e/xaf/xe6/xca <CJK> +<U0002843B> /x8e/xaf/xe6/xcb <CJK> +<U0002863D> /x8e/xaf/xe6/xcc <CJK> +<U000288DF> /x8e/xaf/xe6/xce <CJK> +<U0002891E> /x8e/xaf/xe6/xcf <CJK> +<U00028B23> /x8e/xaf/xe6/xd0 <CJK> +<U00028B24> /x8e/xaf/xe6/xd1 <CJK> +<U00028B49> /x8e/xaf/xe6/xd2 <CJK> +<U00028B25> /x8e/xaf/xe6/xd3 <CJK> +<U00028B26> /x8e/xaf/xe6/xd4 <CJK> +<U00028B27> /x8e/xaf/xe6/xd5 <CJK> +<U00028B28> /x8e/xaf/xe6/xd6 <CJK> +<U9425> /x8e/xaf/xe6/xd7 <CJK> +<U00028B29> /x8e/xaf/xe6/xd8 <CJK> +<U00028B2A> /x8e/xaf/xe6/xd9 <CJK> +<U00028B2E> /x8e/xaf/xe6/xda <CJK> +<U00028B2F> /x8e/xaf/xe6/xdb <CJK> +<U00028B4E> /x8e/xaf/xe6/xdc <CJK> +<U00028B30> /x8e/xaf/xe6/xdd <CJK> +<U00028B31> /x8e/xaf/xe6/xdf <CJK> +<U00028B32> /x8e/xaf/xe6/xe0 <CJK> +<U00028B33> /x8e/xaf/xe6/xe1 <CJK> +<U00028B34> /x8e/xaf/xe6/xe2 <CJK> +<U00028B35> /x8e/xaf/xe6/xe3 <CJK> +<U00028B36> /x8e/xaf/xe6/xe4 <CJK> +<U00028B37> /x8e/xaf/xe6/xe6 <CJK> +<U00028B50> /x8e/xaf/xe6/xe7 <CJK> +<U00028B38> /x8e/xaf/xe6/xe8 <CJK> +<U00028B39> /x8e/xaf/xe6/xea <CJK> +<U00028B3A> /x8e/xaf/xe6/xeb <CJK> +<U00028B3B> /x8e/xaf/xe6/xec <CJK> +<U00028B3C> /x8e/xaf/xe6/xed <CJK> +<U00028B3D> /x8e/xaf/xe6/xee <CJK> +<U00028B3E> /x8e/xaf/xe6/xef <CJK> +<U00028DB8> /x8e/xaf/xe6/xf0 <CJK> +<U00028DB9> /x8e/xaf/xe6/xf1 <CJK> +<U00028F62> /x8e/xaf/xe6/xf2 <CJK> +<U00028F63> /x8e/xaf/xe6/xf3 <CJK> +<U00029041> /x8e/xaf/xe6/xf4 <CJK> +<U0002916D> /x8e/xaf/xe6/xf5 <CJK> +<U00029352> /x8e/xaf/xe6/xf7 <CJK> +<U00029337> /x8e/xaf/xe6/xf8 <CJK> +<U000293DB> /x8e/xaf/xe6/xf9 <CJK> +<U0002953F> /x8e/xaf/xe6/xfa <CJK> +<U00029634> /x8e/xaf/xe6/xfb <CJK> +<U0002985B> /x8e/xaf/xe6/xfc <CJK> +<U00029946> /x8e/xaf/xe6/xfd <CJK> +<U0002995A> /x8e/xaf/xe6/xfe <CJK> +<U0002995B> /x8e/xaf/xe7/xa1 <CJK> +<U00029AE1> /x8e/xaf/xe7/xa2 <CJK> +<U00029AE2> /x8e/xaf/xe7/xa3 <CJK> +<U00029AE3> /x8e/xaf/xe7/xa4 <CJK> +<U00029AE4> /x8e/xaf/xe7/xa5 <CJK> +<U00029BA7> /x8e/xaf/xe7/xa6 <CJK> +<U00029BA8> /x8e/xaf/xe7/xa7 <CJK> +<U00029BA9> /x8e/xaf/xe7/xa8 <CJK> +<U00029D0F> /x8e/xaf/xe7/xa9 <CJK> +<U00029D2B> /x8e/xaf/xe7/xaa <CJK> +<U00029E56> /x8e/xaf/xe7/xab <CJK> +<U00029E57> /x8e/xaf/xe7/xac <CJK> +<U00029E58> /x8e/xaf/xe7/xad <CJK> +<U00029E5E> /x8e/xaf/xe7/xae <CJK> +<U00029E59> /x8e/xaf/xe7/xaf <CJK> +<U00029E5A> /x8e/xaf/xe7/xb0 <CJK> +<U00029E5B> /x8e/xaf/xe7/xb1 <CJK> +<U00029E5C> /x8e/xaf/xe7/xb2 <CJK> +<U00029E68> /x8e/xaf/xe7/xb4 <CJK> +<U0002A12C> /x8e/xaf/xe7/xb6 <CJK> +<U0002A0E2> /x8e/xaf/xe7/xb7 <CJK> +<U0002A0F3> /x8e/xaf/xe7/xb8 <CJK> +<U0002A2D2> /x8e/xaf/xe7/xb9 <CJK> +<U0002A356> /x8e/xaf/xe7/xba <CJK> +<U0002A3CE> /x8e/xaf/xe7/xbb <CJK> +<U0002A461> /x8e/xaf/xe7/xbc <CJK> +<U0002A69B> /x8e/xaf/xe7/xbd <CJK> +<U0002A6B4> /x8e/xaf/xe7/xbe <CJK> +<U0002045C> /x8e/xaf/xe7/xbf <CJK> +<U000204D2> /x8e/xaf/xe7/xc1 <CJK> +<U00020571> /x8e/xaf/xe7/xc2 <CJK> +<U00020673> /x8e/xaf/xe7/xc3 <CJK> +<U0002082C> /x8e/xaf/xe7/xc4 <CJK> +<U00020B94> /x8e/xaf/xe7/xc5 <CJK> +<U0002113F> /x8e/xaf/xe7/xc7 <CJK> +<U00021140> /x8e/xaf/xe7/xc8 <CJK> +<U000214F9> /x8e/xaf/xe7/xc9 <CJK> +<U000214FA> /x8e/xaf/xe7/xca <CJK> +<U000214FD> /x8e/xaf/xe7/xcb <CJK> +<U000214FB> /x8e/xaf/xe7/xcc <CJK> +<U0002191C> /x8e/xaf/xe7/xcd <CJK> +<U0002191D> /x8e/xaf/xe7/xce <CJK> +<U00021AFF> /x8e/xaf/xe7/xcf <CJK> +<U00021B00> /x8e/xaf/xe7/xd0 <CJK> +<U00021CF7> /x8e/xaf/xe7/xd1 <CJK> +<U00024CFE> /x8e/xaf/xe7/xd2 <CJK> +<U000224B6> /x8e/xaf/xe7/xd4 <CJK> +<U00022954> /x8e/xaf/xe7/xd5 <CJK> +<U00022E77> /x8e/xaf/xe7/xd6 <CJK> +<U00022E79> /x8e/xaf/xe7/xd7 <CJK> +<U00022E7A> /x8e/xaf/xe7/xd8 <CJK> +<U00022E7B> /x8e/xaf/xe7/xd9 <CJK> +<U00023069> /x8e/xaf/xe7/xda <CJK> +<U00023802> /x8e/xaf/xe7/xdb <CJK> +<U00023803> /x8e/xaf/xe7/xdc <CJK> +<U00023804> /x8e/xaf/xe7/xdd <CJK> +<U00023805> /x8e/xaf/xe7/xde <CJK> +<U00023806> /x8e/xaf/xe7/xdf <CJK> +<U00023807> /x8e/xaf/xe7/xe0 <CJK> +<U00023808> /x8e/xaf/xe7/xe1 <CJK> +<U00023809> /x8e/xaf/xe7/xe2 <CJK> +<U0002380A> /x8e/xaf/xe7/xe3 <CJK> +<U0002380B> /x8e/xaf/xe7/xe4 <CJK> +<U00023835> /x8e/xaf/xe7/xe5 <CJK> +<U00023C39> /x8e/xaf/xe7/xe7 <CJK> +<U0002411E> /x8e/xaf/xe7/xe8 <CJK> +<U0002411F> /x8e/xaf/xe7/xe9 <CJK> +<U00024120> /x8e/xaf/xe7/xea <CJK> +<U00024121> /x8e/xaf/xe7/xeb <CJK> +<U00024122> /x8e/xaf/xe7/xed <CJK> +<U00024123> /x8e/xaf/xe7/xee <CJK> +<U00024124> /x8e/xaf/xe7/xef <CJK> +<U0002412C> /x8e/xaf/xe7/xf0 <CJK> +<U000244B3> /x8e/xaf/xe7/xf1 <CJK> +<U000244B5> /x8e/xaf/xe7/xf2 <CJK> +<U000244B6> /x8e/xaf/xe7/xf3 <CJK> +<U000244B7> /x8e/xaf/xe7/xf4 <CJK> +<U000244B8> /x8e/xaf/xe7/xf5 <CJK> +<U00024AD0> /x8e/xaf/xe7/xf6 <CJK> +<U00024CFA> /x8e/xaf/xe7/xf7 <CJK> +<U00024F07> /x8e/xaf/xe7/xf8 <CJK> +<U00024FBD> /x8e/xaf/xe7/xf9 <CJK> +<U000250D7> /x8e/xaf/xe7/xfa <CJK> +<U000250D2> /x8e/xaf/xe7/xfb <CJK> +<U000255DB> /x8e/xaf/xe7/xfc <CJK> +<U000255D6> /x8e/xaf/xe7/xfd <CJK> +<U0002045D> /x8e/xaf/xe7/xfe <CJK> +<U00025A43> /x8e/xaf/xe8/xa1 <CJK> +<U00025ACF> /x8e/xaf/xe8/xa2 <CJK> +<U00025DA3> /x8e/xaf/xe8/xa3 <CJK> +<U00025DA4> /x8e/xaf/xe8/xa4 <CJK> +<U00025DA5> /x8e/xaf/xe8/xa5 <CJK> +<U00025DA6> /x8e/xaf/xe8/xa6 <CJK> +<U00025DA7> /x8e/xaf/xe8/xa7 <CJK> +<U00025DA8> /x8e/xaf/xe8/xa8 <CJK> +<U00025DA9> /x8e/xaf/xe8/xa9 <CJK> +<U00025F5D> /x8e/xaf/xe8/xaa <CJK> +<U00025F5E> /x8e/xaf/xe8/xab <CJK> +<U000261C9> /x8e/xaf/xe8/xac <CJK> +<U000261CA> /x8e/xaf/xe8/xad <CJK> +<U000261CB> /x8e/xaf/xe8/xae <CJK> +<U000261CC> /x8e/xaf/xe8/xaf <CJK> +<U00026606> /x8e/xaf/xe8/xb0 <CJK> +<U00026607> /x8e/xaf/xe8/xb1 <CJK> +<U000268C5> /x8e/xaf/xe8/xb3 <CJK> +<U000268F5> /x8e/xaf/xe8/xb4 <CJK> +<U000269B4> /x8e/xaf/xe8/xb5 <CJK> +<U000269B8> /x8e/xaf/xe8/xb6 <CJK> +<U000269B5> /x8e/xaf/xe8/xb7 <CJK> +<U000270FD> /x8e/xaf/xe8/xb8 <CJK> +<U000270FE> /x8e/xaf/xe8/xba <CJK> +<U000270FF> /x8e/xaf/xe8/xbb <CJK> +<U00027100> /x8e/xaf/xe8/xbc <CJK> +<U00027101> /x8e/xaf/xe8/xbd <CJK> +<U00027102> /x8e/xaf/xe8/xbe <CJK> +<U00027103> /x8e/xaf/xe8/xbf <CJK> +<U00027109> /x8e/xaf/xe8/xc0 <CJK> +<U00027104> /x8e/xaf/xe8/xc1 <CJK> +<U00027105> /x8e/xaf/xe8/xc2 <CJK> +<U00027106> /x8e/xaf/xe8/xc3 <CJK> +<U00027107> /x8e/xaf/xe8/xc4 <CJK> +<U00027511> /x8e/xaf/xe8/xc5 <CJK> +<U00027512> /x8e/xaf/xe8/xc6 <CJK> +<U00027513> /x8e/xaf/xe8/xc7 <CJK> +<U00027514> /x8e/xaf/xe8/xc8 <CJK> +<U00027515> /x8e/xaf/xe8/xc9 <CJK> +<U00027898> /x8e/xaf/xe8/xcb <CJK> +<U00027899> /x8e/xaf/xe8/xcc <CJK> +<U00027E3C> /x8e/xaf/xe8/xcd <CJK> +<U00027E2D> /x8e/xaf/xe8/xce <CJK> +<U00027E2E> /x8e/xaf/xe8/xcf <CJK> +<U000281BB> /x8e/xaf/xe8/xd1 <CJK> +<U000281BC> /x8e/xaf/xe8/xd2 <CJK> +<U4878> /x8e/xaf/xe8/xd3 <CJK> +<U0002843D> /x8e/xaf/xe8/xd4 <CJK> +<U00028647> /x8e/xaf/xe8/xd5 <CJK> +<U00028648> /x8e/xaf/xe8/xd6 <CJK> +<U00028649> /x8e/xaf/xe8/xd7 <CJK> +<U0002864A> /x8e/xaf/xe8/xd8 <CJK> +<U000287E1> /x8e/xaf/xe8/xd9 <CJK> +<U000287E7> /x8e/xaf/xe8/xda <CJK> +<U000288EB> /x8e/xaf/xe8/xdb <CJK> +<U00028920> /x8e/xaf/xe8/xdc <CJK> +<U00028938> /x8e/xaf/xe8/xdd <CJK> +<U00028B62> /x8e/xaf/xe8/xde <CJK> +<U00028B67> /x8e/xaf/xe8/xdf <CJK> +<U00028B68> /x8e/xaf/xe8/xe0 <CJK> +<U00028B69> /x8e/xaf/xe8/xe1 <CJK> +<U00028B6A> /x8e/xaf/xe8/xe2 <CJK> +<U00028B6B> /x8e/xaf/xe8/xe3 <CJK> +<U00028B6D> /x8e/xaf/xe8/xe4 <CJK> +<U00028B6E> /x8e/xaf/xe8/xe5 <CJK> +<U00028B6F> /x8e/xaf/xe8/xe6 <CJK> +<U00028B70> /x8e/xaf/xe8/xe7 <CJK> +<U00028B71> /x8e/xaf/xe8/xe8 <CJK> +<U00028B72> /x8e/xaf/xe8/xe9 <CJK> +<U00028B8F> /x8e/xaf/xe8/xea <CJK> +<U00028B73> /x8e/xaf/xe8/xeb <CJK> +<U00028B74> /x8e/xaf/xe8/xec <CJK> +<U00028B75> /x8e/xaf/xe8/xed <CJK> +<U00028B76> /x8e/xaf/xe8/xee <CJK> +<U00028B77> /x8e/xaf/xe8/xef <CJK> +<U00028DC9> /x8e/xaf/xe8/xf0 <CJK> +<U00028DCA> /x8e/xaf/xe8/xf1 <CJK> +<U95E6> /x8e/xaf/xe8/xf2 <CJK> +<U00028DCB> /x8e/xaf/xe8/xf3 <CJK> +<U00028DCC> /x8e/xaf/xe8/xf4 <CJK> +<U00028DCD> /x8e/xaf/xe8/xf5 <CJK> +<U00029051> /x8e/xaf/xe8/xf6 <CJK> +<U00029245> /x8e/xaf/xe8/xf9 <CJK> +<U00029559> /x8e/xaf/xe8/xfa <CJK> +<U0002955A> /x8e/xaf/xe8/xfb <CJK> +<U0002955B> /x8e/xaf/xe8/xfc <CJK> +<U00029640> /x8e/xaf/xe8/xfd <CJK> +<U000297CF> /x8e/xaf/xe8/xfe <CJK> +<U0002985E> /x8e/xaf/xe9/xa1 <CJK> +<U0002997B> /x8e/xaf/xe9/xa2 <CJK> +<U00029A93> /x8e/xaf/xe9/xa3 <CJK> +<U00029BBC> /x8e/xaf/xe9/xa4 <CJK> +<U00029D16> /x8e/xaf/xe9/xa5 <CJK> +<U00029D30> /x8e/xaf/xe9/xa6 <CJK> +<U00029E8D> /x8e/xaf/xe9/xa8 <CJK> +<U00029E8E> /x8e/xaf/xe9/xa9 <CJK> +<U9C2F> /x8e/xaf/xe9/xaa <CJK> +<U00029E8F> /x8e/xaf/xe9/xab <CJK> +<U00029E90> /x8e/xaf/xe9/xac <CJK> +<U00029E91> /x8e/xaf/xe9/xad <CJK> +<U00029E92> /x8e/xaf/xe9/xae <CJK> +<U00029E93> /x8e/xaf/xe9/xaf <CJK> +<U00029E94> /x8e/xaf/xe9/xb0 <CJK> +<U00029E95> /x8e/xaf/xe9/xb1 <CJK> +<U00029E96> /x8e/xaf/xe9/xb2 <CJK> +<U0002A123> /x8e/xaf/xe9/xb3 <CJK> +<U0002A114> /x8e/xaf/xe9/xb4 <CJK> +<U0002A2DB> /x8e/xaf/xe9/xb5 <CJK> +<U0002A40A> /x8e/xaf/xe9/xb6 <CJK> +<U0002A5CE> /x8e/xaf/xe9/xb7 <CJK> +<U00020466> /x8e/xaf/xe9/xb8 <CJK> +<U00020468> /x8e/xaf/xe9/xb9 <CJK> +<U00020467> /x8e/xaf/xe9/xba <CJK> +<U000204D3> /x8e/xaf/xe9/xbb <CJK> +<U00021163> /x8e/xaf/xe9/xbc <CJK> +<U00021504> /x8e/xaf/xe9/xbd <CJK> +<U0002169E> /x8e/xaf/xe9/xbe <CJK> +<U00021926> /x8e/xaf/xe9/xbf <CJK> +<U0002192A> /x8e/xaf/xe9/xc0 <CJK> +<U0002296C> /x8e/xaf/xe9/xc1 <CJK> +<U00022964> /x8e/xaf/xe9/xc2 <CJK> +<U00022E8F> /x8e/xaf/xe9/xc3 <CJK> +<U00022E90> /x8e/xaf/xe9/xc4 <CJK> +<U00023034> /x8e/xaf/xe9/xc5 <CJK> +<U0002330E> /x8e/xaf/xe9/xc6 <CJK> +<U00023825> /x8e/xaf/xe9/xc7 <CJK> +<U00023826> /x8e/xaf/xe9/xc8 <CJK> +<U00023827> /x8e/xaf/xe9/xc9 <CJK> +<U00023828> /x8e/xaf/xe9/xcb <CJK> +<U6B0C> /x8e/xaf/xe9/xcc <CJK> +<U00023829> /x8e/xaf/xe9/xce <CJK> +<U0002382A> /x8e/xaf/xe9/xcf <CJK> +<U0002382B> /x8e/xaf/xe9/xd0 <CJK> +<U0002382C> /x8e/xaf/xe9/xd1 <CJK> +<U00023C3E> /x8e/xaf/xe9/xd2 <CJK> +<U00024142> /x8e/xaf/xe9/xd3 <CJK> +<U00024143> /x8e/xaf/xe9/xd4 <CJK> +<U00024133> /x8e/xaf/xe9/xd5 <CJK> +<U000244C1> /x8e/xaf/xe9/xd6 <CJK> +<U000244C2> /x8e/xaf/xe9/xd7 <CJK> +<U000244C3> /x8e/xaf/xe9/xd8 <CJK> +<U00024AD6> /x8e/xaf/xe9/xd9 <CJK> +<U00024AD7> /x8e/xaf/xe9/xda <CJK> +<U000255E1> /x8e/xaf/xe9/xdb <CJK> +<U000255E2> /x8e/xaf/xe9/xdc <CJK> +<U0002572B> /x8e/xaf/xe9/xdd <CJK> +<U00025AD1> /x8e/xaf/xe9/xde <CJK> +<U00025DCC> /x8e/xaf/xe9/xdf <CJK> +<U00025DCD> /x8e/xaf/xe9/xe0 <CJK> +<U00025DCE> /x8e/xaf/xe9/xe1 <CJK> +<U00025DCF> /x8e/xaf/xe9/xe2 <CJK> +<U000261DE> /x8e/xaf/xe9/xe3 <CJK> +<U000261DF> /x8e/xaf/xe9/xe4 <CJK> +<U000261E0> /x8e/xaf/xe9/xe5 <CJK> +<U000261E1> /x8e/xaf/xe9/xe6 <CJK> +<U000268F6> /x8e/xaf/xe9/xe7 <CJK> +<U0002712C> /x8e/xaf/xe9/xe8 <CJK> +<U00027154> /x8e/xaf/xe9/xea <CJK> +<U0002712D> /x8e/xaf/xe9/xeb <CJK> +<U0002712E> /x8e/xaf/xe9/xec <CJK> +<U00027541> /x8e/xaf/xe9/xed <CJK> +<U00027542> /x8e/xaf/xe9/xee <CJK> +<U000277C7> /x8e/xaf/xe9/xef <CJK> +<U000278A0> /x8e/xaf/xe9/xf0 <CJK> +<U000278A1> /x8e/xaf/xe9/xf1 <CJK> +<U00027B70> /x8e/xaf/xe9/xf2 <CJK> +<U00027B71> /x8e/xaf/xe9/xf3 <CJK> +<U00027B72> /x8e/xaf/xe9/xf4 <CJK> +<U00027E34> /x8e/xaf/xe9/xf6 <CJK> +<U00027E35> /x8e/xaf/xe9/xf7 <CJK> +<U00027E36> /x8e/xaf/xe9/xf8 <CJK> +<U00027FA6> /x8e/xaf/xe9/xf9 <CJK> +<U000281CC> /x8e/xaf/xe9/xfa <CJK> +<U00028299> /x8e/xaf/xe9/xfc <CJK> +<U000288F4> /x8e/xaf/xe9/xfd <CJK> +<U00028B9B> /x8e/xaf/xe9/xfe <CJK> +<U00028B9E> /x8e/xaf/xea/xa1 <CJK> +<U00028B9F> /x8e/xaf/xea/xa2 <CJK> +<U00028BA0> /x8e/xaf/xea/xa3 <CJK> +<U00028BA1> /x8e/xaf/xea/xa4 <CJK> +<U00028BA2> /x8e/xaf/xea/xa5 <CJK> +<U00028BA3> /x8e/xaf/xea/xa6 <CJK> +<U00028BA4> /x8e/xaf/xea/xa7 <CJK> +<U00028BA5> /x8e/xaf/xea/xa8 <CJK> +<U00028BA6> /x8e/xaf/xea/xa9 <CJK> +<U00028BA7> /x8e/xaf/xea/xaa <CJK> +<U00028BA8> /x8e/xaf/xea/xab <CJK> +<U00028DDB> /x8e/xaf/xea/xac <CJK> +<U00028DDC> /x8e/xaf/xea/xad <CJK> +<U00028DDD> /x8e/xaf/xea/xae <CJK> +<U00028DD7> /x8e/xaf/xea/xaf <CJK> +<U00028DDE> /x8e/xaf/xea/xb0 <CJK> +<U00028DDF> /x8e/xaf/xea/xb1 <CJK> +<U00029059> /x8e/xaf/xea/xb2 <CJK> +<U00029446> /x8e/xaf/xea/xb3 <CJK> +<U00029565> /x8e/xaf/xea/xb4 <CJK> +<U00029649> /x8e/xaf/xea/xb5 <CJK> +<U000297DD> /x8e/xaf/xea/xb7 <CJK> +<U00029995> /x8e/xaf/xea/xb8 <CJK> +<U00029996> /x8e/xaf/xea/xb9 <CJK> +<U00029997> /x8e/xaf/xea/xba <CJK> +<U00029BD4> /x8e/xaf/xea/xbb <CJK> +<U00029BD6> /x8e/xaf/xea/xbc <CJK> +<U00029D26> /x8e/xaf/xea/xbd <CJK> +<U9C47> /x8e/xaf/xea/xbe <CJK> +<U4C88> /x8e/xaf/xea/xbf <CJK> +<U00029EC8> /x8e/xaf/xea/xc0 <CJK> +<U00029EC5> /x8e/xaf/xea/xc1 <CJK> +<U00029EC6> /x8e/xaf/xea/xc2 <CJK> +<U00029EC7> /x8e/xaf/xea/xc3 <CJK> +<U0002A151> /x8e/xaf/xea/xc4 <CJK> +<U0002A152> /x8e/xaf/xea/xc5 <CJK> +<U0002A153> /x8e/xaf/xea/xc6 <CJK> +<U0002A154> /x8e/xaf/xea/xc7 <CJK> +<U0002A155> /x8e/xaf/xea/xc8 <CJK> +<U0002A2DE> /x8e/xaf/xea/xc9 <CJK> +<U0002046D> /x8e/xaf/xea/xcb <CJK> +<U000204D5> /x8e/xaf/xea/xcc <CJK> +<U00021172> /x8e/xaf/xea/xcd <CJK> +<U000221AE> /x8e/xaf/xea/xce <CJK> +<U0002230F> /x8e/xaf/xea/xcf <CJK> +<U0002296B> /x8e/xaf/xea/xd0 <CJK> +<U0002296D> /x8e/xaf/xea/xd1 <CJK> +<U0002296E> /x8e/xaf/xea/xd2 <CJK> +<U00022978> /x8e/xaf/xea/xd3 <CJK> +<U00022E98> /x8e/xaf/xea/xd4 <CJK> +<U00022E99> /x8e/xaf/xea/xd5 <CJK> +<U00022E9A> /x8e/xaf/xea/xd6 <CJK> +<U00023844> /x8e/xaf/xea/xd7 <CJK> +<U0002385C> /x8e/xaf/xea/xd8 <CJK> +<U00023845> /x8e/xaf/xea/xd9 <CJK> +<U00023B01> /x8e/xaf/xea/xda <CJK> +<U00024158> /x8e/xaf/xea/xdb <CJK> +<U00024159> /x8e/xaf/xea/xdc <CJK> +<U0002415A> /x8e/xaf/xea/xdd <CJK> +<U000244D9> /x8e/xaf/xea/xdf <CJK> +<U000244D6> /x8e/xaf/xea/xe0 <CJK> +<U00024ADA> /x8e/xaf/xea/xe1 <CJK> +<U00024ADF> /x8e/xaf/xea/xe2 <CJK> +<U00024ADB> /x8e/xaf/xea/xe3 <CJK> +<U00024D03> /x8e/xaf/xea/xe4 <CJK> +<U000255EF> /x8e/xaf/xea/xe5 <CJK> +<U7936> /x8e/xaf/xea/xe6 <CJK> +<U00025733> /x8e/xaf/xea/xe7 <CJK> +<U00025AD2> /x8e/xaf/xea/xe8 <CJK> +<U00025DE1> /x8e/xaf/xea/xe9 <CJK> +<U00025F6F> /x8e/xaf/xea/xea <CJK> +<U00026264> /x8e/xaf/xea/xeb <CJK> +<U0002660E> /x8e/xaf/xea/xec <CJK> +<U00027150> /x8e/xaf/xea/xed <CJK> +<U00027151> /x8e/xaf/xea/xee <CJK> +<U00027152> /x8e/xaf/xea/xef <CJK> +<U00027556> /x8e/xaf/xea/xf0 <CJK> +<U00027557> /x8e/xaf/xea/xf1 <CJK> +<U00027558> /x8e/xaf/xea/xf2 <CJK> +<U00027B81> /x8e/xaf/xea/xf4 <CJK> +<U00027B82> /x8e/xaf/xea/xf5 <CJK> +<U00027C1D> /x8e/xaf/xea/xf6 <CJK> +<U00027C1E> /x8e/xaf/xea/xf7 <CJK> +<U00027E43> /x8e/xaf/xea/xf8 <CJK> +<U00027FAA> /x8e/xaf/xea/xf9 <CJK> +<U000288FD> /x8e/xaf/xea/xfa <CJK> +<U00028BC6> /x8e/xaf/xea/xfc <CJK> +<U00028BC7> /x8e/xaf/xea/xfd <CJK> +<U00028BD9> /x8e/xaf/xea/xfe <CJK> +<U00028BD7> /x8e/xaf/xeb/xa1 <CJK> +<U00028BC8> /x8e/xaf/xeb/xa3 <CJK> +<U00028BC9> /x8e/xaf/xeb/xa4 <CJK> +<U00028BCA> /x8e/xaf/xeb/xa5 <CJK> +<U00028BCB> /x8e/xaf/xeb/xa6 <CJK> +<U00028BDA> /x8e/xaf/xeb/xa7 <CJK> +<U00028BCC> /x8e/xaf/xeb/xa9 <CJK> +<U00028BCD> /x8e/xaf/xeb/xaa <CJK> +<U00028BCE> /x8e/xaf/xeb/xab <CJK> +<U00028BCF> /x8e/xaf/xeb/xac <CJK> +<U00028BD0> /x8e/xaf/xeb/xad <CJK> +<U00028BD1> /x8e/xaf/xeb/xae <CJK> +<U00028BBC> /x8e/xaf/xeb/xaf <CJK> +<U00028DE1> /x8e/xaf/xeb/xb0 <CJK> +<U00028DE2> /x8e/xaf/xeb/xb1 <CJK> +<U00028DE3> /x8e/xaf/xeb/xb2 <CJK> +<U000291A9> /x8e/xaf/xeb/xb3 <CJK> +<U0002924E> /x8e/xaf/xeb/xb4 <CJK> +<U00029577> /x8e/xaf/xeb/xb5 <CJK> +<U000299AC> /x8e/xaf/xeb/xb8 <CJK> +<U000299AD> /x8e/xaf/xeb/xb9 <CJK> +<U00029AB6> /x8e/xaf/xeb/xba <CJK> +<U00029BE5> /x8e/xaf/xeb/xbb <CJK> +<U00029EF8> /x8e/xaf/xeb/xbc <CJK> +<U00029EEA> /x8e/xaf/xeb/xbd <CJK> +<U00029F8D> /x8e/xaf/xeb/xbe <CJK> +<U00029EEB> /x8e/xaf/xeb/xbf <CJK> +<U0002A195> /x8e/xaf/xeb/xc0 <CJK> +<U0002046E> /x8e/xaf/xeb/xc1 <CJK> +<U000204D8> /x8e/xaf/xeb/xc2 <CJK> +<U00021183> /x8e/xaf/xeb/xc3 <CJK> +<U000216A3> /x8e/xaf/xeb/xc4 <CJK> +<U00021930> /x8e/xaf/xeb/xc5 <CJK> +<U00021B0F> /x8e/xaf/xeb/xc6 <CJK> +<U00022979> /x8e/xaf/xeb/xc7 <CJK> +<U0002297A> /x8e/xaf/xeb/xc8 <CJK> +<U00022EA7> /x8e/xaf/xeb/xc9 <CJK> +<U00022EA8> /x8e/xaf/xeb/xca <CJK> +<U00022EA9> /x8e/xaf/xeb/xcb <CJK> +<U00022EAA> /x8e/xaf/xeb/xcc <CJK> +<U00023319> /x8e/xaf/xeb/xcd <CJK> +<U00023850> /x8e/xaf/xeb/xce <CJK> +<U00023851> /x8e/xaf/xeb/xcf <CJK> +<U00023852> /x8e/xaf/xeb/xd0 <CJK> +<U6B15> /x8e/xaf/xeb/xd1 <CJK> +<U00023868> /x8e/xaf/xeb/xd2 <CJK> +<U00023853> /x8e/xaf/xeb/xd3 <CJK> +<U00023854> /x8e/xaf/xeb/xd4 <CJK> +<U000248E2> /x8e/xaf/xeb/xd5 <CJK> +<U00024ADC> /x8e/xaf/xeb/xd6 <CJK> +<U00025915> /x8e/xaf/xeb/xd7 <CJK> +<U00025916> /x8e/xaf/xeb/xd8 <CJK> +<U00025A4F> /x8e/xaf/xeb/xd9 <CJK> +<U00025DF5> /x8e/xaf/xeb/xda <CJK> +<U00025DF6> /x8e/xaf/xeb/xdb <CJK> +<U00025DF7> /x8e/xaf/xeb/xdc <CJK> +<U000261F4> /x8e/xaf/xeb/xdd <CJK> +<U000264CC> /x8e/xaf/xeb/xde <CJK> +<U0002660F> /x8e/xaf/xeb/xdf <CJK> +<U00027166> /x8e/xaf/xeb/xe0 <CJK> +<U00027167> /x8e/xaf/xeb/xe1 <CJK> +<U00027168> /x8e/xaf/xeb/xe3 <CJK> +<U000278A4> /x8e/xaf/xeb/xe4 <CJK> +<U00027B8B> /x8e/xaf/xeb/xe5 <CJK> +<U00027B8C> /x8e/xaf/xeb/xe6 <CJK> +<U000281FA> /x8e/xaf/xeb/xe7 <CJK> +<U00028BE6> /x8e/xaf/xeb/xe8 <CJK> +<U00028BED> /x8e/xaf/xeb/xe9 <CJK> +<U00028BEE> /x8e/xaf/xeb/xea <CJK> +<U00028BEF> /x8e/xaf/xeb/xeb <CJK> +<U00028BF0> /x8e/xaf/xeb/xec <CJK> +<U00028BFE> /x8e/xaf/xeb/xed <CJK> +<U00028DE7> /x8e/xaf/xeb/xee <CJK> +<U00028DE8> /x8e/xaf/xeb/xef <CJK> +<U000291B3> /x8e/xaf/xeb/xf0 <CJK> +<U000291E4> /x8e/xaf/xeb/xf1 <CJK> +<U00029583> /x8e/xaf/xeb/xf2 <CJK> +<U00029AEC> /x8e/xaf/xeb/xf3 <CJK> +<U00029F16> /x8e/xaf/xeb/xf5 <CJK> +<U00029F17> /x8e/xaf/xeb/xf8 <CJK> +<U0002A1C3> /x8e/xaf/xeb/xf9 <CJK> +<U0002A1AC> /x8e/xaf/xeb/xfa <CJK> +<U0002A2ED> /x8e/xaf/xeb/xfb <CJK> +<U0002A5B4> /x8e/xaf/xeb/xfe <CJK> +<U0002118A> /x8e/xaf/xec/xa2 <CJK> +<U0002118B> /x8e/xaf/xec/xa3 <CJK> +<U00021934> /x8e/xaf/xec/xa4 <CJK> +<U00021B14> /x8e/xaf/xec/xa5 <CJK> +<U00021FDF> /x8e/xaf/xec/xa6 <CJK> +<U000224BB> /x8e/xaf/xec/xa7 <CJK> +<U0002297F> /x8e/xaf/xec/xa8 <CJK> +<U00022981> /x8e/xaf/xec/xa9 <CJK> +<U00022EAD> /x8e/xaf/xec/xaa <CJK> +<U00022EAE> /x8e/xaf/xec/xab <CJK> +<U00023862> /x8e/xaf/xec/xac <CJK> +<U0002386E> /x8e/xaf/xec/xad <CJK> +<U0002416E> /x8e/xaf/xec/xaf <CJK> +<U00024717> /x8e/xaf/xec/xb1 <CJK> +<U00024AE6> /x8e/xaf/xec/xb2 <CJK> +<U00024C10> /x8e/xaf/xec/xb3 <CJK> +<U00025919> /x8e/xaf/xec/xb4 <CJK> +<U00026610> /x8e/xaf/xec/xb6 <CJK> +<U00026AF2> /x8e/xaf/xec/xb7 <CJK> +<U00027176> /x8e/xaf/xec/xb8 <CJK> +<U00027177> /x8e/xaf/xec/xb9 <CJK> +<U00027B95> /x8e/xaf/xec/xba <CJK> +<U00027B96> /x8e/xaf/xec/xbb <CJK> +<U00028C00> /x8e/xaf/xec/xbc <CJK> +<U00028C01> /x8e/xaf/xec/xbd <CJK> +<U00028C31> /x8e/xaf/xec/xbe <CJK> +<U00028C1C> /x8e/xaf/xec/xc0 <CJK> +<U0002906D> /x8e/xaf/xec/xc1 <CJK> +<U00029BF4> /x8e/xaf/xec/xc2 <CJK> +<U00029BF5> /x8e/xaf/xec/xc3 <CJK> +<U00029D3D> /x8e/xaf/xec/xc4 <CJK> +<U00029F32> /x8e/xaf/xec/xc5 <CJK> +<U00029F33> /x8e/xaf/xec/xc6 <CJK> +<U0002A2F4> /x8e/xaf/xec/xc7 <CJK> +<U00020473> /x8e/xaf/xec/xc9 <CJK> +<U00021937> /x8e/xaf/xec/xca <CJK> +<U00023871> /x8e/xaf/xec/xcc <CJK> +<U00025E0F> /x8e/xaf/xec/xcd <CJK> +<U00025E0E> /x8e/xaf/xec/xcf <CJK> +<U00026611> /x8e/xaf/xec/xd0 <CJK> +<U00027185> /x8e/xaf/xec/xd1 <CJK> +<U00028C14> /x8e/xaf/xec/xd2 <CJK> +<U00028C15> /x8e/xaf/xec/xd3 <CJK> +<U00028C16> /x8e/xaf/xec/xd4 <CJK> +<U00028C17> /x8e/xaf/xec/xd5 <CJK> +<U00028C18> /x8e/xaf/xec/xd6 <CJK> +<U00028C19> /x8e/xaf/xec/xd7 <CJK> +<U00028C1A> /x8e/xaf/xec/xd8 <CJK> +<U000291C3> /x8e/xaf/xec/xd9 <CJK> +<U00029F42> /x8e/xaf/xec/xda <CJK> +<U00029F43> /x8e/xaf/xec/xdb <CJK> +<U00029F44> /x8e/xaf/xec/xdc <CJK> +<U00029F48> /x8e/xaf/xec/xdd <CJK> +<U0002A1FB> /x8e/xaf/xec/xde <CJK> +<U000216A5> /x8e/xaf/xec/xdf <CJK> +<U000219B8> /x8e/xaf/xec/xe0 <CJK> +<U00022EB2> /x8e/xaf/xec/xe1 <CJK> +<U0002303D> /x8e/xaf/xec/xe2 <CJK> +<U00023872> /x8e/xaf/xec/xe3 <CJK> +<U000244E7> /x8e/xaf/xec/xe4 <CJK> +<U000244E8> /x8e/xaf/xec/xe5 <CJK> +<U00025359> /x8e/xaf/xec/xe6 <CJK> +<U0002573A> /x8e/xaf/xec/xe7 <CJK> +<U00025E14> /x8e/xaf/xec/xe8 <CJK> +<U000261FF> /x8e/xaf/xec/xe9 <CJK> +<U000269C0> /x8e/xaf/xec/xea <CJK> +<U0002718D> /x8e/xaf/xec/xeb <CJK> +<U4584> /x8e/xaf/xec/xec <CJK> +<U0002718E> /x8e/xaf/xec/xed <CJK> +<U00028C22> /x8e/xaf/xec/xef <CJK> +<U00029C04> /x8e/xaf/xec/xf2 <CJK> +<U00029C29> /x8e/xaf/xec/xf3 <CJK> +<U00029F51> /x8e/xaf/xec/xf4 <CJK> +<U00029F66> /x8e/xaf/xec/xf5 <CJK> +<U0002A20E> /x8e/xaf/xec/xf6 <CJK> +<U0002119B> /x8e/xaf/xec/xf9 <CJK> +<U0002119C> /x8e/xaf/xec/xfa <CJK> +<U00022316> /x8e/xaf/xec/xfb <CJK> +<U00022986> /x8e/xaf/xec/xfc <CJK> +<U00022987> /x8e/xaf/xec/xfd <CJK> +<U00028C2C> /x8e/xaf/xed/xa1 <CJK> +<U00028C30> /x8e/xaf/xed/xa2 <CJK> +<U00028C28> /x8e/xaf/xed/xa3 <CJK> +<U0002965F> /x8e/xaf/xed/xa4 <CJK> +<U0002417E> /x8e/xaf/xed/xa6 <CJK> +<U00025E19> /x8e/xaf/xed/xa7 <CJK> +<U0002820A> /x8e/xaf/xed/xa8 <CJK> +<U00028C36> /x8e/xaf/xed/xa9 <CJK> +<U00028DFC> /x8e/xaf/xed/xaa <CJK> +<U00029F6D> /x8e/xaf/xed/xab <CJK> +<U00029F6E> /x8e/xaf/xed/xac <CJK> +<U0002A6C6> /x8e/xaf/xed/xad <CJK> +<U53B5> /x8e/xaf/xed/xae <CJK> +<U0002387B> /x8e/xaf/xed/xaf <CJK> +<U00026206> /x8e/xaf/xed/xb0 <CJK> +<U0002759F> /x8e/xaf/xed/xb1 <CJK> +<U0002A232> /x8e/xaf/xed/xb2 <CJK> +<U0002820D> /x8e/xaf/xed/xb3 <CJK> +<U0002298B> /x8e/xaf/xed/xb4 <CJK> +<U00028C3B> /x8e/xaf/xed/xb5 <CJK> +<U0002A23D> /x8e/xaf/xed/xb7 <CJK> +<U00028C3C> /x8e/xaf/xed/xb8 <CJK> +<U00028C3D> /x8e/xaf/xed/xb9 <CJK> END CHARMAP WIDTH <U3000>...<U7C72> 2 -<U4E42>...<U92B0> 2 +<U4E42>...<U00028C3D> 2 END WIDTH diff --git a/timezone/africa b/timezone/africa index 61258bff69..80b29d3348 100644 --- a/timezone/africa +++ b/timezone/africa @@ -1,4 +1,4 @@ -# @(#)africa 7.34 +# @(#)africa 7.35 # This data is by no means authoritative; if you think you know better, # go ahead and edit the file (and please send any changes to @@ -481,6 +481,12 @@ Zone Africa/Dakar -1:09:44 - LMT 1912 # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Indian/Mahe 3:41:48 - LMT 1906 Jun # Victoria 4:00 - SCT # Seychelles Time +# From Paul Eggert (2001-05-30): +# Aldabra, Farquhar, and Desroches, originally dependencies of the +# Seychelles, were transferred to the British Indian Ocean Territory +# in 1965 and returned to Seychelles control in 1976. We don't know +# whether this affected their time zone, so omit this for now. +# Possibly the islands were uninhabited. # Sierra Leone # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S diff --git a/timezone/antarctica b/timezone/antarctica index c98e528c1e..6f87e9f7d5 100644 --- a/timezone/antarctica +++ b/timezone/antarctica @@ -1,4 +1,4 @@ -# @(#)antarctica 7.21 +# @(#)antarctica 7.22 # From Paul Eggert (1999-11-15): # To keep things manageable, we list only locations occupied year-round; see @@ -39,8 +39,8 @@ Rule ArgAQ 1974 only - Jan 23 0:00 1:00 S Rule ArgAQ 1974 only - May 1 0:00 0 - Rule ArgAQ 1974 1976 - Oct Sun<=7 0:00 1:00 S Rule ArgAQ 1975 1977 - Apr Sun<=7 0:00 0 - -Rule ChileAQ 1969 1997 - Oct Sun>=9 0:00 1:00 S -Rule ChileAQ 1970 1998 - Mar Sun>=9 0:00 0 - +Rule ChileAQ 1966 1997 - Oct Sun>=9 0:00 1:00 S +Rule ChileAQ 1967 1998 - Mar Sun>=9 0:00 0 - Rule ChileAQ 1998 only - Sep 27 0:00 1:00 S Rule ChileAQ 1999 only - Apr 4 0:00 0 - Rule ChileAQ 1999 max - Oct Sun>=9 0:00 1:00 S @@ -92,11 +92,13 @@ Zone Antarctica/Mawson 0 - zzz 1954 Feb 13 # Brazil - year-round base # Ferraz, King George Island, since 1983/4 -# Chile - year-round bases +# Chile - year-round bases and towns # Escudero, South Shetland Is, -621157-0585735, since 1994 -# Frei, King George Is, -6214-05848, since 1969 +# Frei, King George Island, -6214-05848, since 1969-03-07 # O'Higgins, Antarctic Peninsula, -6319-05704, since 1948-02 # Prat, -6230-05941 +# Villa Las Estrellas (a town), King George Island, since 1984-04-09 +# These locations have always used Santiago time; use TZ='America/Santiago'. # China - year-round bases # Great Wall, King George Island, since 1985-02-20 @@ -219,6 +221,15 @@ Rule NZAQ 1990 max - Mar Sun>=15 2:00s 0 S # of GMT). This is a time zone I think two hours east of Moscow. The # natural time zone is in between the two: 8 hours ahead of GMT.'' # +# From Paul Eggert (2001-05-04): +# This seems to be hopelessly confusing, so I asked Lee Hotz about it +# in person. He said that some Antartic locations set their local +# time so that noon is the warmest part of the day, and that this +# changes during the year and does not necessarily correspond to mean +# solar noon. So the Vostok time might have been whatever the clocks +# happened to be during their visit. So we still don't really know what time +# it is at Vostok. But we'll guess UTC+6. +# Zone Antarctica/Vostok 0 - zzz 1957 Dec 16 6:00 - VOST # Vostok time diff --git a/timezone/asia b/timezone/asia index 2d7520aeb4..2f57467851 100644 --- a/timezone/asia +++ b/timezone/asia @@ -1,4 +1,4 @@ -# @(#)asia 7.63 +# @(#)asia 7.64 # This data is by no means authoritative; if you think you know better, # go ahead and edit the file (and please send any changes to @@ -37,8 +37,11 @@ # 4:00 GST Gulf* # 5:30 IST India # 7:00 ICT Indochina* +# 7:00 WIT west Indonesia +# 8:00 CIT central Indonesia # 8:00 CST China # 9:00 CJT Central Japanese Time (1896/1937)* +# 9:00 EIT east Indonesia # 9:00 JST Japan # 9:00 KST Korea # 9:30 CST (Australian) Central Standard Time @@ -131,9 +134,11 @@ Zone Asia/Thimphu 5:58:36 - LMT 1947 Aug 15 # or Thimbu 6:00 - BTT # Bhutan Time # British Indian Ocean Territory -# From Whitman: +# Whitman and the 1995 CIA time zone map say 5:00, but the +# 1997 and later maps say 6:00. Assume the switch occurred in 1996. # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Indian/Chagos 5:00 - IOT # BIOT Time +Zone Indian/Chagos 5:00 - IOT 1996 # BIOT Time + 6:00 - IOT # Brunei # Zone NAME GMTOFF RULES FORMAT [UNTIL] @@ -357,7 +362,7 @@ Zone Asia/Dili 8:22:20 - LMT 1912 8:00 - TPT 1942 Feb 21 23:00 # E Timor Time 9:00 - JST 1945 Aug 9:00 - TPT 1976 May 3 - 8:00 - TPT 2000 Sep 17 00:00 + 8:00 - CIT 2000 Sep 17 00:00 9:00 - TPT # India @@ -374,27 +379,43 @@ Zone Asia/Calcutta 5:53:28 - LMT 1880 # Nicobar Is # Indonesia +# +# From Gwillim Law (2001-05-28), overriding Shanks: +# <http://www.sumatera-inc.com/go_to_invest/about_indonesia.asp#standtime> +# says that Indonesia's time zones changed on 1988-01-01. Looking at some +# time zone maps, I think that must refer to Western Borneo (Kalimantan Barat +# and Kalimantan Tengah) switching from UTC+8 to UTC+7. +# # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Jakarta 7:07:12 - LMT 1867 Aug 10 # Shanks says the next transition was at 1924 Jan 1 0:13, # but this must be a typo. 7:07:12 - JMT 1923 Dec 31 23:47:12 # Jakarta 7:20 - JAVT 1932 Nov # Java Time - 7:30 - JAVT 1942 Mar 23 + 7:30 - WIT 1942 Mar 23 + 9:00 - JST 1945 Aug + 7:30 - WIT 1948 May + 8:00 - WIT 1950 May + 7:30 - WIT 1964 + 7:00 - WIT +Zone Asia/Pontianak 7:17:20 - LMT 1908 May + 7:17:20 - PMT 1932 Nov # Pontianak MT + 7:30 - WIT 1942 Jan 29 9:00 - JST 1945 Aug - 7:30 - JAVT 1948 May - 8:00 - JAVT 1950 May - 7:30 - JAVT 1964 - 7:00 - JAVT + 7:30 - WIT 1948 May + 8:00 - WIT 1950 May + 7:30 - WIT 1964 + 8:00 - CIT 1988 Jan 1 + 7:00 - WIT Zone Asia/Ujung_Pandang 7:57:36 - LMT 1920 7:57:36 - MMT 1932 Nov # Macassar MT - 8:00 - BORT 1942 Feb 9 # Borneo Time + 8:00 - CIT 1942 Feb 9 9:00 - JST 1945 Aug - 8:00 - BORT + 8:00 - CIT Zone Asia/Jayapura 9:22:48 - LMT 1932 Nov - 9:00 - JAYT 1944 # Jayapura Time + 9:00 - EIT 1944 9:30 - CST 1964 - 9:00 - JAYT + 9:00 - EIT # Iran # From Paul Eggert (2000-06-12), following up a suggestion by Rich Wales: @@ -960,38 +981,52 @@ Zone Indian/Maldives 4:54:00 - LMT 1880 # Male # Suhbaatar, and possibly Khentij. # From Paul Eggert (1999-12-15): -# For now, we'll comment out the east zone (Choybalsan) -# and use Shanks's and the IATA's data for the daylight-saving rules. # Naming and spelling is tricky in Mongolia. # We'll use Hovd (also spelled Chovd and Khovd) to represent the west zone; # the capital of the Hovd province is sometimes called Hovd, sometimes Dund-Us, # and sometimes Jirgalanta (with variant spellings), but the name Hovd # is good enough for our purposes. +# From Rives McDow (2001-05-13): +# In addition to Mongolia starting daylight savings as reported earlier +# (adopted DST on 2001-04-27 02:00 local time, ending 2001-09-28), +# there are three time zones. +# +# Provinces [at 7:00]: Bayan-ulgii, Uvs, Khovd, Zavkhan, Govi-Altai +# Provinces [at 8:00]: Khovsgol, Bulgan, Arkhangai, Khentii, Tov, +# Bayankhongor, Ovorkhangai, Dundgovi, Dornogovi, Omnogovi +# Provinces [at 9:00]: Dornod, Sukhbaatar +# +# [The province of Selenge is omitted from the above lists.] + # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S -Rule Mongol 1981 1984 - Apr 1 0:00 1:00 S -Rule Mongol 1981 1984 - Oct 1 0:00 0 - -Rule Mongol 1985 1990 - Mar lastSun 2:00 1:00 S -Rule Mongol 1985 1990 - Sep lastSun 3:00 0 - -Rule Mongol 1991 1998 - Mar lastSun 0:00 1:00 S -Rule Mongol 1991 1995 - Sep lastSun 0:00 0 - -# IATA SSIM (1996-09) says 1996-10-25; go with Shanks. -Rule Mongol 1996 only - Oct lastSun 0:00 0 - -Rule Mongol 1997 1998 - Sep lastSun 0:00 0 - +Rule Mongol 1983 1984 - Apr 1 0:00 1:00 S +Rule Mongol 1983 only - Oct 1 0:00 0 - +# IATA SSIM says 1990s switches occurred at 00:00, but Shanks (1995) lists +# them at 02:00s, and McDow says the 2001 switches also occurred at 02:00. +# Also, IATA SSIM (1996-09) says 1996-10-25. Go with Shanks through 1998. +Rule Mongol 1985 1998 - Mar lastSun 2:00s 1:00 S +Rule Mongol 1984 1998 - Sep lastSun 2:00s 0 - # IATA SSIM (1999-09) says Mongolia no longer observes DST. +Rule Mongol 2001 only - Apr 27 2:00s 1:00 S +Rule Mongol 2001 only - Sep 28 2:00s 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] +# Hovd, a.k.a. Chovd, Dund-Us, Dzhargalant, Khovd, Jirgalanta Zone Asia/Hovd 6:06:36 - LMT 1905 Aug 6:00 - HOVT 1978 # Hovd Time 7:00 Mongol HOV%sT +# Ulaanbaatar, a.k.a. Ulan Bataar, Ulan Bator, Urga Zone Asia/Ulaanbaatar 7:07:32 - LMT 1905 Aug 7:00 - ULAT 1978 # Ulaanbaatar Time 8:00 Mongol ULA%sT -# We're not sure about this entry yet, so we'll omit it for now. -#Zone Asia/Choybalsan 7:38:00 - LMT 1905 Aug -# 8:00 - CHOT 1978 # Choybalsan Time -# 9:00 Mongol CHO%sT 19?? -# 8:00 Mongol ULA%sT +# Choibalsan, a.k.a. Bajan Tuemen, Bajan Tumen, Chojbalsan, +# Choybalsan, Sanbejse, Tchoibalsan +# We're still not sure about this data, so we'll omit it for now. +#Zone Asia/Choibalsan 7:38:00 - LMT 1905 Aug +# 7:00 - ULAT 1978 +# 8:00 Mongol ULA%sT 1983 Apr +# 9:00 Mongol CHO%sT # Choibalsan Time # Nepal # Zone NAME GMTOFF RULES FORMAT [UNTIL] diff --git a/timezone/europe b/timezone/europe index 43b4af392a..b99053d184 100644 --- a/timezone/europe +++ b/timezone/europe @@ -1,4 +1,4 @@ -# @(#)europe 7.78 +# @(#)europe 7.79 # This data is by no means authoritative; if you think you know better, # go ahead and edit the file (and please send any changes to @@ -41,7 +41,10 @@ # 0:00 GMT BST Greenwich, British Summer # 0:00 GMT IST Greenwich, Irish Summer # 0:00 WET WEST Western Europe +# 0:19:32 AMT NST Amsterdam, Netherlands Summer (1835-1937)* +# 0:20 NET NEST Netherlands (1937-1940)* # 1:00 CET CEST Central Europe +# 1:00:14 SET Swedish (1879-1899)* # 2:00 EET EEST Eastern Europe # 3:00 MSK MSD Moscow # @@ -1371,22 +1374,59 @@ Zone Europe/Monaco 0:29:32 - LMT 1891 Mar 15 1:00 EU CE%sT # Netherlands + # Howse writes that the Netherlands' railways used GMT between 1892 and 1940, # but for other purposes the Netherlands used Amsterdam mean time. -# The data before 1945 is taken from + +# However, Robert H. van Gent writes (2001-04-01): +# Howse's statement is only correct up to 1909. From 1909-05-01 (00:00:00 +# Amsterdam mean time) onwards, the whole of the Netherlands (including +# the Dutch railways) was required by law to observe Amsterdam mean time +# (19 minutes 32.13 seconds ahead of GMT). This had already been the +# common practice (except for the railways) for many decades but it was +# not until 1909 when the Dutch government finally defined this by law. +# On 1937-07-01 this was changed to 20 minutes (exactly) ahead of GMT and +# was generally known as Dutch Time ("Nederlandse Tijd"). +# +# (2001-04-08): +# 1892-05-01 was the date when the Dutch railways were by law required to +# observe GMT while the remainder of the Netherlands adhered to the common +# practice of following Amsterdam mean time. +# +# (2001-04-09): +# In 1835 the authorities of the province of North Holland requested the +# municipal authorities of the towns and cities in the province to observe +# Amsterdam mean time but I do not know in how many cases this request was +# actually followed. +# +# From 1852 onwards the Dutch telegraph offices were by law required to +# observe Amsterdam mean time. As the time signals from the observatory of +# Leiden were also distributed by the telegraph system, I assume that most +# places linked up with the telegraph (and railway) system automatically +# adopted Amsterdam mean time. +# +# Although the early Dutch railway companies initially observed a variety +# of times, most of them had adopted Amsterdam mean time by 1858 but it +# was not until 1866 when they were all required by law to observe +# Amsterdam mean time. + +# The data before 1945 are taken from # <http://www.phys.uu.nl/~vgent/wettijd/wettijd.htm>. + # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Neth 1916 only - May 1 0:00 1:00 NST # Netherlands Summer Time Rule Neth 1916 only - Oct 1 0:00 0 AMT # Amsterdam Mean Time Rule Neth 1917 only - Apr 16 2:00s 1:00 NST Rule Neth 1917 only - Sep 17 2:00s 0 AMT Rule Neth 1918 1921 - Apr Mon>=1 2:00s 1:00 NST -Rule Neth 1918 1921 - Sep lastSun 2:00s 0 AMT +Rule Neth 1918 1921 - Sep lastMon 2:00s 0 AMT Rule Neth 1922 only - Mar lastSun 2:00s 1:00 NST Rule Neth 1922 1936 - Oct Sun>=2 2:00s 0 AMT Rule Neth 1923 only - Jun Fri>=1 2:00s 1:00 NST Rule Neth 1924 only - Mar lastSun 2:00s 1:00 NST Rule Neth 1925 only - Jun Fri>=1 2:00s 1:00 NST +# From 1926 through 1939 DST began 05-15, except that it was delayed by a week +# in years when 05-15 fell in the Pentecost weekend. Rule Neth 1926 1931 - May 15 2:00s 1:00 NST Rule Neth 1932 only - May 22 2:00s 1:00 NST Rule Neth 1933 1936 - May 15 2:00s 1:00 NST @@ -1396,10 +1436,13 @@ Rule Neth 1937 1939 - Oct Sun>=2 2:00s 0 - Rule Neth 1938 1939 - May 15 2:00s 1:00 S Rule Neth 1945 only - Apr 2 2:00s 1:00 S Rule Neth 1945 only - Sep 16 2:00s 0 - +# +# Amsterdam Mean Time was +00:19:32.13 exactly, but the .13 is omitted +# below because the current format requires GMTOFF to be an integer. # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Europe/Amsterdam 0:19:28 - LMT 1892 May - 0:19:28 Neth %s 1937 Jul - 0:20 Neth NE%sT 1940 May 17 0:00 +Zone Europe/Amsterdam 0:19:32 - LMT 1835 + 0:19:32 Neth %s 1937 Jul 1 + 0:20 Neth NE%sT 1940 May 17 0:00 # Dutch Time 1:00 C-Eur CE%sT 1945 Apr 2 2:00 1:00 Neth CE%sT 1977 1:00 EU CE%sT @@ -1417,17 +1460,62 @@ Rule Norway 1959 1964 - Mar Sun>=15 2:00s 1:00 S Rule Norway 1959 1965 - Sep Sun>=15 2:00s 0 - Rule Norway 1965 only - Apr 25 2:00s 1:00 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Europe/Oslo 0:43:00 - LMT 1895 +Zone Europe/Oslo 0:43:00 - LMT 1895 Jan 1 1:00 Norway CE%sT 1940 Aug 10 23:00 1:00 C-Eur CE%sT 1945 Apr 2 2:00 1:00 Norway CE%sT 1980 1:00 EU CE%sT # Svalbard & Jan Mayen + +# From Steffen Thorsen (2001-05-01): +# Although I could not find it explicitly, it seems that Jan Mayen and +# Svalbard have been using the same time as Norway at least since the +# time they were declared as parts of Norway. Svalbard was declared +# as a part of Norway by law of 1925-07-17 no 11, section 4 and Jan +# Mayen by law of 1930-02-27 no 2, section 2. (From +# http://www.lovdata.no/all/nl-19250717-011.html and +# http://www.lovdata.no/all/nl-19300227-002.html). The law/regulation +# for normal/standard time in Norway is from 1894-06-29 no 1 (came +# into operation on 1895-01-01) and Svalbard/Jan Mayen seem to be a +# part of this law since 1925/1930. (From +# http://www.lovdata.no/all/nl-18940629-001.html ) I have not been +# able to find if Jan Mayen used a different time zone (e.g. -0100) +# before 1930. Jan Mayen has only been "inhabitated" since 1921 by +# Norwegian meteorologists and maybe used the same time as Norway ever +# since 1921. Svalbard (Arctic/Longyearbyen) has been inhabited since +# before 1895, and therefore probably changed the local time somewhere +# between 1895 and 1925 (inclusive). + +# From Paul Eggert (2001-05-01): +# +# Actually, Jan Mayen was never occupied by Germany during World War II, +# so it must have diverged from Oslo time during the war, as Olso was +# keeping Berlin time. +# +# <http://home.no.net/janmayen/history.htm> says that the meteorologists +# burned down their station in 1940 and left the island, but returned in +# 1941 with a small Norwegian garrison and continued operations despite +# frequent air ttacks from Germans. In 1943 the Americans established a +# radiolocating station on the island, called "Atlantic City". Possibly +# the UTC offset changed during the war, but I think it unlikely that +# Jan Mayen used German daylight-saving rules. +# +# Svalbard is more complicated, as it was raided in August 1941 by an +# Allied party that evacuated the civilian population to England (says +# <http://www.bartleby.com/65/sv/Svalbard.html>). The Svalbard FAQ +# <http://www.svalbard.com/SvalbardFAQ.html> says that the Germans were +# expelled on 1942-05-14. However, small parties of Germans did return, +# and according to Wilhelm Dege's book "War North of 80" (1954) +# <http://www.utpress.utoronto.ca/publishing/rights/dege_warnorthof80.htm> +# the German armed forces at the Svalbard weather station code-named +# Haudegen did not surrender to the Allies until September 1945. +# +# All these events predate our cutoff date of 1970. Unless we can +# come up with more definitive info about the timekeeping during the +# war years it's probably best just do do the following for now: Link Europe/Oslo Arctic/Longyearbyen -# From Whitman: -# Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Atlantic/Jan_Mayen -1:00 - EGT +Link Europe/Oslo Atlantic/Jan_Mayen # Poland # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S @@ -1638,7 +1726,7 @@ Zone Europe/Bucharest 1:44:24 - LMT 1891 Oct # enforcing curfew at the wrong time. # # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Europe/Kaliningrad 1:22:00 - LMT 1893 Apr +Zone Europe/Kaliningrad 1:22:00 - LMT 1893 Apr 1:00 C-Eur CE%sT 1945 2:00 Poland CE%sT 1946 3:00 Russia MSK/MSD 1991 Mar 31 2:00s @@ -1795,11 +1883,56 @@ Zone Atlantic/Canary -1:01:36 - LMT 1922 Mar # Las Palmas de Gran C. # Ignore this for now, as the Canaries are part of the EU. # Sweden + +# From Ivan Nilsson (2001-04-13), superseding Shanks: +# +# The law "Svensk forfattningssamling 1878, no 14" about standard time in 1879: +# From the beginning of 1879 (that is 01-01 00:00) the time for all +# places in the country is "the mean solar time for the meridian at +# three degrees, or twelve minutes of time, to the west of the +# meridian of the Observatory of Stockholm". The law is dated 1878-05-31. +# +# The observatory at that time had the meridian 18 degrees 03' 30" +# eastern longitude = 01:12:14 in time. Less 12 minutes gives the +# national standard time as 01:00:14 ahead of GMT.... +# +# About the beginning of CET in Sweden. The lawtext ("Svensk +# forfattningssamling 1899, no 44") states, that "from the beginning +# of 1900... ... the same as the mean solar time for the meridian at +# the distance of one hour of time from the meridian of the English +# observatory at Greenwich, or at 12 minutes 14 seconds to the west +# from the meridian of the Observatory of Stockholm". The law is dated +# 1899-06-16. In short: At 1900-01-01 00:00:00 the new standard time +# in Sweden is 01:00:00 ahead of GMT. +# +# 1916: The lawtext ("Svensk forfattningssamling 1916, no 124") states +# that "1916-05-15 is considered to begin one hour earlier". It is +# pretty obvious that at 05-14 23:00 the clocks are set to 05-15 00:00.... +# Further the law says, that "1916-09-30 is considered to end one hour later". +# +# The laws regulating [DST] are available on the site of the Swedish +# Parliament beginning with 1985 - the laws regulating 1980/1984 are +# not available on the site (to my knowledge they are only available +# in Swedish): <http://www.riksdagen.se/english/work/sfst.asp> (type +# "sommartid" without the quotes in the field "Fritext" and then click +# the Sok-button). +# +# (2001-05-13): +# +# I have now found a newspaper stating that at 1916-10-01 01:00 +# summertime the church-clocks etc were set back one hour to show +# 1916-10-01 00:00 standard time. The article also reports that some +# people thought the switch to standard time would take place already +# at 1916-10-01 00:00 summer time, but they had to wait for another +# hour before the event took place. +# +# Source: The newspaper "Dagens Nyheter", 1916-10-01, page 7 upper left. + # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Europe/Stockholm 1:12:12 - LMT 1878 May 31 - 1:12:12 - SMT 1900 Jan 1 1:00 # Stockholm MT - 1:00 - CET 1916 Apr 14 23:00s - 1:00 1:00 CEST 1916 Sep 30 23:00s +Zone Europe/Stockholm 1:12:12 - LMT 1879 Jan 1 + 1:00:14 - SET 1900 Jan 1 # Swedish Time + 1:00 - CET 1916 May 14 23:00 + 1:00 1:00 CEST 1916 Oct 1 01:00 1:00 - CET 1980 1:00 EU CE%sT diff --git a/timezone/northamerica b/timezone/northamerica index 58e790c1c1..1b1447e419 100644 --- a/timezone/northamerica +++ b/timezone/northamerica @@ -1,4 +1,4 @@ -# @(#)northamerica 7.58 +# @(#)northamerica 7.59 # also includes Central America and the Caribbean # This data is by no means authoritative; if you think you know better, @@ -81,12 +81,12 @@ # From Joseph Gallant <notquite@hotmail.com>, citing # George H. Douglas, _The Early Days of Radio Broadcasting_ (1987): # At 7 P.M. (Eastern War Time) [on 1945-08-14], the networks were set -# to switch to London for Atlee's address, but the American people +# to switch to London for Attlee's address, but the American people # never got to hear his speech live. According to one press account, # CBS' Bob Trout was first to announce the word of Japan's surrender, # but a few seconds later, NBC, ABC and Mutual also flashed the word # of surrender, all of whom interrupting the bells of Big Ben in -# London which were to precede Mr. Atlee's speech. +# London which were to precede Mr. Attlee's speech. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule US 1918 1919 - Mar lastSun 2:00 1:00 D @@ -185,13 +185,6 @@ Rule US 1987 max - Apr Sun>=1 2:00 1:00 D # "Chamorro Standard Time" for time in Guam and the Northern Marianas. # See the file "australasia". -# From Ryan Alessi of the Thousand Oaks Star (2001-02-15) via Rives McDow: -# Brad Sherman, D-Sherman Oaks, introduced a bill in Congress on -# Wednesday that could have California operating on Denver time as -# early as this summer.... The options include keeping -# daylight-saving time all year long, or setting clocks back two hours -# -- instead of just one -- during the existing daylight-saving time. - # US Eastern time, represented by New York @@ -280,7 +273,7 @@ Zone America/Los_Angeles -7:52:58 - LMT 1883 Nov 18 12:00 # Alaska # AK%sT is the modern abbreviation for -9:00 per USNO. # -# From Paul Eggert (2001-04-01): +# From Paul Eggert (2001-05-30): # Howse writes that Alaska switched from the Julian to the Gregorian calendar, # and from east-of-GMT to west-of-GMT days, when the US bought it from Russia. # This was on 1867-10-18, a Friday; the previous day was 1867-10-06 Julian, @@ -288,6 +281,13 @@ Zone America/Los_Angeles -7:52:58 - LMT 1883 Nov 18 12:00 # ignoring the switch from Julian to Gregorian, since we can't represent # the Julian calendar. # +# As far as we know, none of the exact locations mentioned below were +# permanently inhabited in 1867 by anyone using either calendar. +# (Yakutat was colonized by the Russians in 1799, but the settlement +# was destroyed in 1805 by a Yakutat-kon war party.) However, there +# were nearby inhabitants in some cases and for our purposes perhaps +# it's best to simply use the official transition. +# # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Juneau 15:02:19 - LMT 1867 Oct 18 -8:57:41 - LMT 1900 Aug 20 12:00 @@ -407,7 +407,7 @@ Zone America/Boise -7:44:49 - LMT 1883 Nov 18 12:00 # Pam Belluck reported in the New York Times (2001-01-31) that the # Indiana Legislature is considering a bill to adopt DST statewide. # Her article mentioned Vevay, whose post office observes a different -# time zone than Danner's Hardware across the street. +# time zone from Danner's Hardware across the street. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER Rule Indianapolis 1941 only - Jun 22 2:00 1:00 D @@ -589,10 +589,11 @@ Zone America/Menominee -5:50:27 - LMT 1885 Sep 18 12:00 -6:00 US C%sT # Navassa +# administered by the US Fish and Wildlife Service # claimed by US under the provisions of the 1856 Guano Islands Act # also claimed by Haiti # occupied 1857/1900 by the Navassa Phosphate Co -# US lighthouse 1917/1997-01 +# US lighthouse 1917/1996-09 # currently uninhabited # see Mark Fineman, ``An Isle Rich in Guano and Discord'', # _Los Angeles Times_ (1998-11-10), A1, A10; it cites diff --git a/timezone/private.h b/timezone/private.h index d7e2548fad..76614d2d6a 100644 --- a/timezone/private.h +++ b/timezone/private.h @@ -21,7 +21,7 @@ #ifndef lint #ifndef NOID -static char privatehid[] = "@(#)private.h 7.51"; +static char privatehid[] = "@(#)private.h 7.52"; #endif /* !defined NOID */ #endif /* !defined lint */ @@ -54,6 +54,10 @@ static char privatehid[] = "@(#)private.h 7.51"; #define HAVE_SYMLINK 1 #endif /* !defined HAVE_SYMLINK */ +#ifndef HAVE_SYS_STAT_H +#define HAVE_SYS_STAT_H 1 +#endif /* !defined HAVE_SYS_STAT_H */ + #ifndef HAVE_SYS_WAIT_H #define HAVE_SYS_WAIT_H 1 #endif /* !defined HAVE_SYS_WAIT_H */ @@ -123,16 +127,6 @@ static char privatehid[] = "@(#)private.h 7.51"; */ /* -** SunOS 4.1.1 cc lacks const. -*/ - -#ifndef const -#ifndef __STDC__ -#define const -#endif /* !defined __STDC__ */ -#endif /* !defined const */ - -/* ** SunOS 4.1.1 cc lacks prototypes. */ diff --git a/timezone/southamerica b/timezone/southamerica index b51e7cfd50..5cd58a6b17 100644 --- a/timezone/southamerica +++ b/timezone/southamerica @@ -1,4 +1,4 @@ -# @(#)southamerica 7.40 +# @(#)southamerica 7.41 # This data is by no means authoritative; if you think you know better, # go ahead and edit the file (and please send any changes to @@ -493,16 +493,26 @@ Zone America/Rio_Branco -4:31:12 - LMT 1914 # Because of the same drought, the government decided to end DST later, # on April 3, (one-time change). -# From Gwillim Law (2001-02-20): -# I came across a Chilean on-line newspaper, La Tercera. Its -# <a href="http://www.tercera.cl/diario/1998/03/13/extras.html"> -# 1998-03-13 issue -# </a>, says (my translation): -# "At 24:00 (midnight) tomorrow (Saturday) - 22:00 in the insular -# territory [Easter Island, Juan Fernandez, etc.] - winter time will -# begin in the entire country." - -# From Paul Eggert (2001-02-21): +# From Gwillim Law (2001-05-04): +# I came across another article in "La Tercera" about Chilean DST. +# <http://www.tercera.cl/diario/2000/10/13/t-extras.html> +# It clearly confirms my earlier suggestion, that DST begins at 22:00 +# on Easter Island.... But it also seems to be saying that the +# observance of DST in Chile began in 1966, rather than 1969 as +# ... [Shanks] has it.... +# +# My translation: +# +# "The Chilean Army has announced that summer time will begin tomorrow, +# Saturday, October 14 in continental Chile, insular Chile, and +# Antarctica, as provided by Supreme Decree 25 of January 11, 1966. +# By the preceding, official time in continental Chile and Chilean +# Antarctic, and official time in Western Insular Chile, which applies +# to Easter Island and Sala y Gomez Island, will be set forward at +# midnight and at 22:00, respectively, by 20 minutes." + +# From Paul Eggert (2001-05-04): +# Go with this article in preference to Shanks's 1969 date for modern DST. # Assume this rule has been used since DST was introduced in the islands. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S @@ -510,8 +520,8 @@ Rule Chile 1918 only - Sep 1 0:00 1:00 S Rule Chile 1919 only - Jul 2 0:00 0 - Rule Chile 1927 1931 - Sep 1 0:00 1:00 S Rule Chile 1928 1932 - Apr 1 0:00 0 - -Rule Chile 1969 1997 - Oct Sun>=9 4:00u 1:00 S -Rule Chile 1970 1998 - Mar Sun>=9 3:00u 0 - +Rule Chile 1966 1997 - Oct Sun>=9 4:00u 1:00 S +Rule Chile 1967 1998 - Mar Sun>=9 3:00u 0 - Rule Chile 1998 only - Sep 27 4:00u 1:00 S Rule Chile 1999 only - Apr 4 3:00u 0 - Rule Chile 1999 max - Oct Sun>=9 4:00u 1:00 S @@ -528,10 +538,9 @@ Zone Pacific/Easter -7:17:28 - LMT 1890 # Mataveri -7:00 Chile EAS%sT 1982 Mar 14 # Easter I Time -6:00 Chile EAS%sT # -# Whitman says Juan Fernandez Is are like America/Santiago. -# San Ambrosio, San Felix -# no information; probably like America/Santiago - +# Sala y Gomez Island is like Pacific/Easter. +# Other Chilean locations, including Juan Fernandez Is, San Ambrosio, +# San Felix, and Antarctic bases, are like America/Santiago. # Colombia # Shanks specifies 24:00 for 1992 transition times; go with IATA, diff --git a/timezone/zic.c b/timezone/zic.c index 6f2f6570f5..8e028ebb92 100644 --- a/timezone/zic.c +++ b/timezone/zic.c @@ -1,15 +1,21 @@ #ifndef lint #ifndef NOID -static char elsieid[] = "@(#)zic.c 7.101"; +static char elsieid[] = "@(#)zic.c 7.102"; #endif /* !defined NOID */ #endif /* !defined lint */ #include "private.h" #include "locale.h" #include "tzfile.h" -#ifdef unix -#include "sys/stat.h" /* for umask manifest constants */ -#endif /* defined unix */ + +#if HAVE_SYS_STAT_H +#include "sys/stat.h" +#endif +#ifdef S_IRUSR +#define MKDIR_UMASK (S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH) +#else +#define MKDIR_UMASK 0755 +#endif /* ** On some ancient hosts, predicates like `isspace(C)' are defined @@ -2198,7 +2204,7 @@ char * const argname; ** created by some other multiprocessor, so we get ** to do extra checking. */ - if (mkdir(name, S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH) != 0) { + if (mkdir(name, MKDIR_UMASK) != 0) { const char *e = strerror(errno); if (errno != EEXIST || !itsdir(name)) { diff --git a/timezone/zone.tab b/timezone/zone.tab index c28904e6bc..dfecc7318b 100644 --- a/timezone/zone.tab +++ b/timezone/zone.tab @@ -1,4 +1,4 @@ -# @(#)zone.tab 1.22 +# @(#)zone.tab 1.23 # # TZ zone descriptions # @@ -12,7 +12,7 @@ # first latitude (+ is north), then longitude (+ is east). # 3. Zone name used in value of TZ environment variable. # 4. Comments; present if and only if the country has multiple rows. -# +# # Columns are separated by a single tab. # The table is sorted first by country, then an order within the country that # (1) makes some geographical sense, and @@ -120,8 +120,8 @@ CG -0416+01517 Africa/Brazzaville CH +4723+00832 Europe/Zurich CI +0519-00402 Africa/Abidjan CK -2114-15946 Pacific/Rarotonga -CL -3327-07040 America/Santiago mainland -CL -2710-10927 Pacific/Easter Easter Island +CL -3327-07040 America/Santiago most locations +CL -2710-10927 Pacific/Easter Easter Island & Sala y Gomez CM +0403+00942 Africa/Douala CN +4545+12641 Asia/Harbin north Manchuria CN +3114+12128 Asia/Shanghai China coast @@ -187,7 +187,8 @@ HR +4548+01558 Europe/Zagreb HT +1832-07220 America/Port-au-Prince HU +4730+01905 Europe/Budapest ID -0610+10648 Asia/Jakarta Java & Sumatra -ID -0507+11924 Asia/Ujung_Pandang Borneo & Celebes +ID -0002+10920 Asia/Pontianak west & central Borneo +ID -0507+11924 Asia/Ujung_Pandang east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor ID -0232+14042 Asia/Jayapura Irian Jaya & the Moluccas IE +5320-00615 Europe/Dublin IL +3146+03514 Asia/Jerusalem @@ -237,7 +238,8 @@ ML +1239-00800 Africa/Bamako southwest Mali ML +1446-00301 Africa/Timbuktu northeast Mali MM +1647+09610 Asia/Rangoon MN +4755+10653 Asia/Ulaanbaatar most locations -MN +4801+09139 Asia/Hovd Bayan-Olgiy, Hovd, Uvs +MN +4801+09139 Asia/Hovd Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan +#MN +4804+11430 Asia/Choibalsan Dornod, Sukhbaatar (unsure about this) MO +2214+11335 Asia/Macao MP +1512+14545 Pacific/Saipan MQ +1436-06105 America/Martinique |