18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * linux/fs/hfsplus/tables.c 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * Various data tables 68c2ecf20Sopenharmony_ci */ 78c2ecf20Sopenharmony_ci 88c2ecf20Sopenharmony_ci#include "hfsplus_fs.h" 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ci/* 118c2ecf20Sopenharmony_ci * Unicode case folding table taken from Apple Technote #1150 128c2ecf20Sopenharmony_ci * (HFS Plus Volume Format) 138c2ecf20Sopenharmony_ci */ 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_ciu16 hfsplus_case_fold_table[] = { 168c2ecf20Sopenharmony_ci/* 178c2ecf20Sopenharmony_ci * The lower case table consists of a 256-entry high-byte table followed by 188c2ecf20Sopenharmony_ci * some number of 256-entry subtables. The high-byte table contains either an 198c2ecf20Sopenharmony_ci * offset to the subtable for characters with that high byte or zero, which 208c2ecf20Sopenharmony_ci * means that there are no case mappings or ignored characters in that block. 218c2ecf20Sopenharmony_ci * Ignored characters are mapped to zero. 228c2ecf20Sopenharmony_ci */ 238c2ecf20Sopenharmony_ci 248c2ecf20Sopenharmony_ci // High-byte indices ( == 0 iff no case mapping and no ignorables ) 258c2ecf20Sopenharmony_ci 268c2ecf20Sopenharmony_ci 278c2ecf20Sopenharmony_ci /* 0 */ 0x0100, 0x0200, 0x0000, 0x0300, 0x0400, 0x0500, 0x0000, 0x0000, 288c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 298c2ecf20Sopenharmony_ci /* 1 */ 0x0600, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 308c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 318c2ecf20Sopenharmony_ci /* 2 */ 0x0700, 0x0800, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 328c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 338c2ecf20Sopenharmony_ci /* 3 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 348c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 358c2ecf20Sopenharmony_ci /* 4 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 368c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 378c2ecf20Sopenharmony_ci /* 5 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 388c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 398c2ecf20Sopenharmony_ci /* 6 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 408c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 418c2ecf20Sopenharmony_ci /* 7 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 428c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 438c2ecf20Sopenharmony_ci /* 8 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 448c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 458c2ecf20Sopenharmony_ci /* 9 */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 468c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 478c2ecf20Sopenharmony_ci /* A */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 488c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 498c2ecf20Sopenharmony_ci /* B */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 508c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 518c2ecf20Sopenharmony_ci /* C */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 528c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 538c2ecf20Sopenharmony_ci /* D */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 548c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 558c2ecf20Sopenharmony_ci /* E */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 568c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 578c2ecf20Sopenharmony_ci /* F */ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 588c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0900, 0x0A00, 598c2ecf20Sopenharmony_ci 608c2ecf20Sopenharmony_ci // Table 1 (for high byte 0x00) 618c2ecf20Sopenharmony_ci 628c2ecf20Sopenharmony_ci /* 0 */ 0xFFFF, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 638c2ecf20Sopenharmony_ci 0x0008, 0x0009, 0x000A, 0x000B, 0x000C, 0x000D, 0x000E, 0x000F, 648c2ecf20Sopenharmony_ci /* 1 */ 0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0015, 0x0016, 0x0017, 658c2ecf20Sopenharmony_ci 0x0018, 0x0019, 0x001A, 0x001B, 0x001C, 0x001D, 0x001E, 0x001F, 668c2ecf20Sopenharmony_ci /* 2 */ 0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027, 678c2ecf20Sopenharmony_ci 0x0028, 0x0029, 0x002A, 0x002B, 0x002C, 0x002D, 0x002E, 0x002F, 688c2ecf20Sopenharmony_ci /* 3 */ 0x0030, 0x0031, 0x0032, 0x0033, 0x0034, 0x0035, 0x0036, 0x0037, 698c2ecf20Sopenharmony_ci 0x0038, 0x0039, 0x003A, 0x003B, 0x003C, 0x003D, 0x003E, 0x003F, 708c2ecf20Sopenharmony_ci /* 4 */ 0x0040, 0x0061, 0x0062, 0x0063, 0x0064, 0x0065, 0x0066, 0x0067, 718c2ecf20Sopenharmony_ci 0x0068, 0x0069, 0x006A, 0x006B, 0x006C, 0x006D, 0x006E, 0x006F, 728c2ecf20Sopenharmony_ci /* 5 */ 0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077, 738c2ecf20Sopenharmony_ci 0x0078, 0x0079, 0x007A, 0x005B, 0x005C, 0x005D, 0x005E, 0x005F, 748c2ecf20Sopenharmony_ci /* 6 */ 0x0060, 0x0061, 0x0062, 0x0063, 0x0064, 0x0065, 0x0066, 0x0067, 758c2ecf20Sopenharmony_ci 0x0068, 0x0069, 0x006A, 0x006B, 0x006C, 0x006D, 0x006E, 0x006F, 768c2ecf20Sopenharmony_ci /* 7 */ 0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077, 778c2ecf20Sopenharmony_ci 0x0078, 0x0079, 0x007A, 0x007B, 0x007C, 0x007D, 0x007E, 0x007F, 788c2ecf20Sopenharmony_ci /* 8 */ 0x0080, 0x0081, 0x0082, 0x0083, 0x0084, 0x0085, 0x0086, 0x0087, 798c2ecf20Sopenharmony_ci 0x0088, 0x0089, 0x008A, 0x008B, 0x008C, 0x008D, 0x008E, 0x008F, 808c2ecf20Sopenharmony_ci /* 9 */ 0x0090, 0x0091, 0x0092, 0x0093, 0x0094, 0x0095, 0x0096, 0x0097, 818c2ecf20Sopenharmony_ci 0x0098, 0x0099, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F, 828c2ecf20Sopenharmony_ci /* A */ 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7, 838c2ecf20Sopenharmony_ci 0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF, 848c2ecf20Sopenharmony_ci /* B */ 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7, 858c2ecf20Sopenharmony_ci 0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF, 868c2ecf20Sopenharmony_ci /* C */ 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00E6, 0x00C7, 878c2ecf20Sopenharmony_ci 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF, 888c2ecf20Sopenharmony_ci /* D */ 0x00F0, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x00D7, 898c2ecf20Sopenharmony_ci 0x00F8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x00DD, 0x00FE, 0x00DF, 908c2ecf20Sopenharmony_ci /* E */ 0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7, 918c2ecf20Sopenharmony_ci 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF, 928c2ecf20Sopenharmony_ci /* F */ 0x00F0, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x00F7, 938c2ecf20Sopenharmony_ci 0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x00FD, 0x00FE, 0x00FF, 948c2ecf20Sopenharmony_ci 958c2ecf20Sopenharmony_ci // Table 2 (for high byte 0x01) 968c2ecf20Sopenharmony_ci 978c2ecf20Sopenharmony_ci /* 0 */ 0x0100, 0x0101, 0x0102, 0x0103, 0x0104, 0x0105, 0x0106, 0x0107, 988c2ecf20Sopenharmony_ci 0x0108, 0x0109, 0x010A, 0x010B, 0x010C, 0x010D, 0x010E, 0x010F, 998c2ecf20Sopenharmony_ci /* 1 */ 0x0111, 0x0111, 0x0112, 0x0113, 0x0114, 0x0115, 0x0116, 0x0117, 1008c2ecf20Sopenharmony_ci 0x0118, 0x0119, 0x011A, 0x011B, 0x011C, 0x011D, 0x011E, 0x011F, 1018c2ecf20Sopenharmony_ci /* 2 */ 0x0120, 0x0121, 0x0122, 0x0123, 0x0124, 0x0125, 0x0127, 0x0127, 1028c2ecf20Sopenharmony_ci 0x0128, 0x0129, 0x012A, 0x012B, 0x012C, 0x012D, 0x012E, 0x012F, 1038c2ecf20Sopenharmony_ci /* 3 */ 0x0130, 0x0131, 0x0133, 0x0133, 0x0134, 0x0135, 0x0136, 0x0137, 1048c2ecf20Sopenharmony_ci 0x0138, 0x0139, 0x013A, 0x013B, 0x013C, 0x013D, 0x013E, 0x0140, 1058c2ecf20Sopenharmony_ci /* 4 */ 0x0140, 0x0142, 0x0142, 0x0143, 0x0144, 0x0145, 0x0146, 0x0147, 1068c2ecf20Sopenharmony_ci 0x0148, 0x0149, 0x014B, 0x014B, 0x014C, 0x014D, 0x014E, 0x014F, 1078c2ecf20Sopenharmony_ci /* 5 */ 0x0150, 0x0151, 0x0153, 0x0153, 0x0154, 0x0155, 0x0156, 0x0157, 1088c2ecf20Sopenharmony_ci 0x0158, 0x0159, 0x015A, 0x015B, 0x015C, 0x015D, 0x015E, 0x015F, 1098c2ecf20Sopenharmony_ci /* 6 */ 0x0160, 0x0161, 0x0162, 0x0163, 0x0164, 0x0165, 0x0167, 0x0167, 1108c2ecf20Sopenharmony_ci 0x0168, 0x0169, 0x016A, 0x016B, 0x016C, 0x016D, 0x016E, 0x016F, 1118c2ecf20Sopenharmony_ci /* 7 */ 0x0170, 0x0171, 0x0172, 0x0173, 0x0174, 0x0175, 0x0176, 0x0177, 1128c2ecf20Sopenharmony_ci 0x0178, 0x0179, 0x017A, 0x017B, 0x017C, 0x017D, 0x017E, 0x017F, 1138c2ecf20Sopenharmony_ci /* 8 */ 0x0180, 0x0253, 0x0183, 0x0183, 0x0185, 0x0185, 0x0254, 0x0188, 1148c2ecf20Sopenharmony_ci 0x0188, 0x0256, 0x0257, 0x018C, 0x018C, 0x018D, 0x01DD, 0x0259, 1158c2ecf20Sopenharmony_ci /* 9 */ 0x025B, 0x0192, 0x0192, 0x0260, 0x0263, 0x0195, 0x0269, 0x0268, 1168c2ecf20Sopenharmony_ci 0x0199, 0x0199, 0x019A, 0x019B, 0x026F, 0x0272, 0x019E, 0x0275, 1178c2ecf20Sopenharmony_ci /* A */ 0x01A0, 0x01A1, 0x01A3, 0x01A3, 0x01A5, 0x01A5, 0x01A6, 0x01A8, 1188c2ecf20Sopenharmony_ci 0x01A8, 0x0283, 0x01AA, 0x01AB, 0x01AD, 0x01AD, 0x0288, 0x01AF, 1198c2ecf20Sopenharmony_ci /* B */ 0x01B0, 0x028A, 0x028B, 0x01B4, 0x01B4, 0x01B6, 0x01B6, 0x0292, 1208c2ecf20Sopenharmony_ci 0x01B9, 0x01B9, 0x01BA, 0x01BB, 0x01BD, 0x01BD, 0x01BE, 0x01BF, 1218c2ecf20Sopenharmony_ci /* C */ 0x01C0, 0x01C1, 0x01C2, 0x01C3, 0x01C6, 0x01C6, 0x01C6, 0x01C9, 1228c2ecf20Sopenharmony_ci 0x01C9, 0x01C9, 0x01CC, 0x01CC, 0x01CC, 0x01CD, 0x01CE, 0x01CF, 1238c2ecf20Sopenharmony_ci /* D */ 0x01D0, 0x01D1, 0x01D2, 0x01D3, 0x01D4, 0x01D5, 0x01D6, 0x01D7, 1248c2ecf20Sopenharmony_ci 0x01D8, 0x01D9, 0x01DA, 0x01DB, 0x01DC, 0x01DD, 0x01DE, 0x01DF, 1258c2ecf20Sopenharmony_ci /* E */ 0x01E0, 0x01E1, 0x01E2, 0x01E3, 0x01E5, 0x01E5, 0x01E6, 0x01E7, 1268c2ecf20Sopenharmony_ci 0x01E8, 0x01E9, 0x01EA, 0x01EB, 0x01EC, 0x01ED, 0x01EE, 0x01EF, 1278c2ecf20Sopenharmony_ci /* F */ 0x01F0, 0x01F3, 0x01F3, 0x01F3, 0x01F4, 0x01F5, 0x01F6, 0x01F7, 1288c2ecf20Sopenharmony_ci 0x01F8, 0x01F9, 0x01FA, 0x01FB, 0x01FC, 0x01FD, 0x01FE, 0x01FF, 1298c2ecf20Sopenharmony_ci 1308c2ecf20Sopenharmony_ci // Table 3 (for high byte 0x03) 1318c2ecf20Sopenharmony_ci 1328c2ecf20Sopenharmony_ci /* 0 */ 0x0300, 0x0301, 0x0302, 0x0303, 0x0304, 0x0305, 0x0306, 0x0307, 1338c2ecf20Sopenharmony_ci 0x0308, 0x0309, 0x030A, 0x030B, 0x030C, 0x030D, 0x030E, 0x030F, 1348c2ecf20Sopenharmony_ci /* 1 */ 0x0310, 0x0311, 0x0312, 0x0313, 0x0314, 0x0315, 0x0316, 0x0317, 1358c2ecf20Sopenharmony_ci 0x0318, 0x0319, 0x031A, 0x031B, 0x031C, 0x031D, 0x031E, 0x031F, 1368c2ecf20Sopenharmony_ci /* 2 */ 0x0320, 0x0321, 0x0322, 0x0323, 0x0324, 0x0325, 0x0326, 0x0327, 1378c2ecf20Sopenharmony_ci 0x0328, 0x0329, 0x032A, 0x032B, 0x032C, 0x032D, 0x032E, 0x032F, 1388c2ecf20Sopenharmony_ci /* 3 */ 0x0330, 0x0331, 0x0332, 0x0333, 0x0334, 0x0335, 0x0336, 0x0337, 1398c2ecf20Sopenharmony_ci 0x0338, 0x0339, 0x033A, 0x033B, 0x033C, 0x033D, 0x033E, 0x033F, 1408c2ecf20Sopenharmony_ci /* 4 */ 0x0340, 0x0341, 0x0342, 0x0343, 0x0344, 0x0345, 0x0346, 0x0347, 1418c2ecf20Sopenharmony_ci 0x0348, 0x0349, 0x034A, 0x034B, 0x034C, 0x034D, 0x034E, 0x034F, 1428c2ecf20Sopenharmony_ci /* 5 */ 0x0350, 0x0351, 0x0352, 0x0353, 0x0354, 0x0355, 0x0356, 0x0357, 1438c2ecf20Sopenharmony_ci 0x0358, 0x0359, 0x035A, 0x035B, 0x035C, 0x035D, 0x035E, 0x035F, 1448c2ecf20Sopenharmony_ci /* 6 */ 0x0360, 0x0361, 0x0362, 0x0363, 0x0364, 0x0365, 0x0366, 0x0367, 1458c2ecf20Sopenharmony_ci 0x0368, 0x0369, 0x036A, 0x036B, 0x036C, 0x036D, 0x036E, 0x036F, 1468c2ecf20Sopenharmony_ci /* 7 */ 0x0370, 0x0371, 0x0372, 0x0373, 0x0374, 0x0375, 0x0376, 0x0377, 1478c2ecf20Sopenharmony_ci 0x0378, 0x0379, 0x037A, 0x037B, 0x037C, 0x037D, 0x037E, 0x037F, 1488c2ecf20Sopenharmony_ci /* 8 */ 0x0380, 0x0381, 0x0382, 0x0383, 0x0384, 0x0385, 0x0386, 0x0387, 1498c2ecf20Sopenharmony_ci 0x0388, 0x0389, 0x038A, 0x038B, 0x038C, 0x038D, 0x038E, 0x038F, 1508c2ecf20Sopenharmony_ci /* 9 */ 0x0390, 0x03B1, 0x03B2, 0x03B3, 0x03B4, 0x03B5, 0x03B6, 0x03B7, 1518c2ecf20Sopenharmony_ci 0x03B8, 0x03B9, 0x03BA, 0x03BB, 0x03BC, 0x03BD, 0x03BE, 0x03BF, 1528c2ecf20Sopenharmony_ci /* A */ 0x03C0, 0x03C1, 0x03A2, 0x03C3, 0x03C4, 0x03C5, 0x03C6, 0x03C7, 1538c2ecf20Sopenharmony_ci 0x03C8, 0x03C9, 0x03AA, 0x03AB, 0x03AC, 0x03AD, 0x03AE, 0x03AF, 1548c2ecf20Sopenharmony_ci /* B */ 0x03B0, 0x03B1, 0x03B2, 0x03B3, 0x03B4, 0x03B5, 0x03B6, 0x03B7, 1558c2ecf20Sopenharmony_ci 0x03B8, 0x03B9, 0x03BA, 0x03BB, 0x03BC, 0x03BD, 0x03BE, 0x03BF, 1568c2ecf20Sopenharmony_ci /* C */ 0x03C0, 0x03C1, 0x03C2, 0x03C3, 0x03C4, 0x03C5, 0x03C6, 0x03C7, 1578c2ecf20Sopenharmony_ci 0x03C8, 0x03C9, 0x03CA, 0x03CB, 0x03CC, 0x03CD, 0x03CE, 0x03CF, 1588c2ecf20Sopenharmony_ci /* D */ 0x03D0, 0x03D1, 0x03D2, 0x03D3, 0x03D4, 0x03D5, 0x03D6, 0x03D7, 1598c2ecf20Sopenharmony_ci 0x03D8, 0x03D9, 0x03DA, 0x03DB, 0x03DC, 0x03DD, 0x03DE, 0x03DF, 1608c2ecf20Sopenharmony_ci /* E */ 0x03E0, 0x03E1, 0x03E3, 0x03E3, 0x03E5, 0x03E5, 0x03E7, 0x03E7, 1618c2ecf20Sopenharmony_ci 0x03E9, 0x03E9, 0x03EB, 0x03EB, 0x03ED, 0x03ED, 0x03EF, 0x03EF, 1628c2ecf20Sopenharmony_ci /* F */ 0x03F0, 0x03F1, 0x03F2, 0x03F3, 0x03F4, 0x03F5, 0x03F6, 0x03F7, 1638c2ecf20Sopenharmony_ci 0x03F8, 0x03F9, 0x03FA, 0x03FB, 0x03FC, 0x03FD, 0x03FE, 0x03FF, 1648c2ecf20Sopenharmony_ci 1658c2ecf20Sopenharmony_ci // Table 4 (for high byte 0x04) 1668c2ecf20Sopenharmony_ci 1678c2ecf20Sopenharmony_ci /* 0 */ 0x0400, 0x0401, 0x0452, 0x0403, 0x0454, 0x0455, 0x0456, 0x0407, 1688c2ecf20Sopenharmony_ci 0x0458, 0x0459, 0x045A, 0x045B, 0x040C, 0x040D, 0x040E, 0x045F, 1698c2ecf20Sopenharmony_ci /* 1 */ 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, 1708c2ecf20Sopenharmony_ci 0x0438, 0x0419, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F, 1718c2ecf20Sopenharmony_ci /* 2 */ 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, 1728c2ecf20Sopenharmony_ci 0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F, 1738c2ecf20Sopenharmony_ci /* 3 */ 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, 1748c2ecf20Sopenharmony_ci 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F, 1758c2ecf20Sopenharmony_ci /* 4 */ 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, 1768c2ecf20Sopenharmony_ci 0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F, 1778c2ecf20Sopenharmony_ci /* 5 */ 0x0450, 0x0451, 0x0452, 0x0453, 0x0454, 0x0455, 0x0456, 0x0457, 1788c2ecf20Sopenharmony_ci 0x0458, 0x0459, 0x045A, 0x045B, 0x045C, 0x045D, 0x045E, 0x045F, 1798c2ecf20Sopenharmony_ci /* 6 */ 0x0461, 0x0461, 0x0463, 0x0463, 0x0465, 0x0465, 0x0467, 0x0467, 1808c2ecf20Sopenharmony_ci 0x0469, 0x0469, 0x046B, 0x046B, 0x046D, 0x046D, 0x046F, 0x046F, 1818c2ecf20Sopenharmony_ci /* 7 */ 0x0471, 0x0471, 0x0473, 0x0473, 0x0475, 0x0475, 0x0476, 0x0477, 1828c2ecf20Sopenharmony_ci 0x0479, 0x0479, 0x047B, 0x047B, 0x047D, 0x047D, 0x047F, 0x047F, 1838c2ecf20Sopenharmony_ci /* 8 */ 0x0481, 0x0481, 0x0482, 0x0483, 0x0484, 0x0485, 0x0486, 0x0487, 1848c2ecf20Sopenharmony_ci 0x0488, 0x0489, 0x048A, 0x048B, 0x048C, 0x048D, 0x048E, 0x048F, 1858c2ecf20Sopenharmony_ci /* 9 */ 0x0491, 0x0491, 0x0493, 0x0493, 0x0495, 0x0495, 0x0497, 0x0497, 1868c2ecf20Sopenharmony_ci 0x0499, 0x0499, 0x049B, 0x049B, 0x049D, 0x049D, 0x049F, 0x049F, 1878c2ecf20Sopenharmony_ci /* A */ 0x04A1, 0x04A1, 0x04A3, 0x04A3, 0x04A5, 0x04A5, 0x04A7, 0x04A7, 1888c2ecf20Sopenharmony_ci 0x04A9, 0x04A9, 0x04AB, 0x04AB, 0x04AD, 0x04AD, 0x04AF, 0x04AF, 1898c2ecf20Sopenharmony_ci /* B */ 0x04B1, 0x04B1, 0x04B3, 0x04B3, 0x04B5, 0x04B5, 0x04B7, 0x04B7, 1908c2ecf20Sopenharmony_ci 0x04B9, 0x04B9, 0x04BB, 0x04BB, 0x04BD, 0x04BD, 0x04BF, 0x04BF, 1918c2ecf20Sopenharmony_ci /* C */ 0x04C0, 0x04C1, 0x04C2, 0x04C4, 0x04C4, 0x04C5, 0x04C6, 0x04C8, 1928c2ecf20Sopenharmony_ci 0x04C8, 0x04C9, 0x04CA, 0x04CC, 0x04CC, 0x04CD, 0x04CE, 0x04CF, 1938c2ecf20Sopenharmony_ci /* D */ 0x04D0, 0x04D1, 0x04D2, 0x04D3, 0x04D4, 0x04D5, 0x04D6, 0x04D7, 1948c2ecf20Sopenharmony_ci 0x04D8, 0x04D9, 0x04DA, 0x04DB, 0x04DC, 0x04DD, 0x04DE, 0x04DF, 1958c2ecf20Sopenharmony_ci /* E */ 0x04E0, 0x04E1, 0x04E2, 0x04E3, 0x04E4, 0x04E5, 0x04E6, 0x04E7, 1968c2ecf20Sopenharmony_ci 0x04E8, 0x04E9, 0x04EA, 0x04EB, 0x04EC, 0x04ED, 0x04EE, 0x04EF, 1978c2ecf20Sopenharmony_ci /* F */ 0x04F0, 0x04F1, 0x04F2, 0x04F3, 0x04F4, 0x04F5, 0x04F6, 0x04F7, 1988c2ecf20Sopenharmony_ci 0x04F8, 0x04F9, 0x04FA, 0x04FB, 0x04FC, 0x04FD, 0x04FE, 0x04FF, 1998c2ecf20Sopenharmony_ci 2008c2ecf20Sopenharmony_ci // Table 5 (for high byte 0x05) 2018c2ecf20Sopenharmony_ci 2028c2ecf20Sopenharmony_ci /* 0 */ 0x0500, 0x0501, 0x0502, 0x0503, 0x0504, 0x0505, 0x0506, 0x0507, 2038c2ecf20Sopenharmony_ci 0x0508, 0x0509, 0x050A, 0x050B, 0x050C, 0x050D, 0x050E, 0x050F, 2048c2ecf20Sopenharmony_ci /* 1 */ 0x0510, 0x0511, 0x0512, 0x0513, 0x0514, 0x0515, 0x0516, 0x0517, 2058c2ecf20Sopenharmony_ci 0x0518, 0x0519, 0x051A, 0x051B, 0x051C, 0x051D, 0x051E, 0x051F, 2068c2ecf20Sopenharmony_ci /* 2 */ 0x0520, 0x0521, 0x0522, 0x0523, 0x0524, 0x0525, 0x0526, 0x0527, 2078c2ecf20Sopenharmony_ci 0x0528, 0x0529, 0x052A, 0x052B, 0x052C, 0x052D, 0x052E, 0x052F, 2088c2ecf20Sopenharmony_ci /* 3 */ 0x0530, 0x0561, 0x0562, 0x0563, 0x0564, 0x0565, 0x0566, 0x0567, 2098c2ecf20Sopenharmony_ci 0x0568, 0x0569, 0x056A, 0x056B, 0x056C, 0x056D, 0x056E, 0x056F, 2108c2ecf20Sopenharmony_ci /* 4 */ 0x0570, 0x0571, 0x0572, 0x0573, 0x0574, 0x0575, 0x0576, 0x0577, 2118c2ecf20Sopenharmony_ci 0x0578, 0x0579, 0x057A, 0x057B, 0x057C, 0x057D, 0x057E, 0x057F, 2128c2ecf20Sopenharmony_ci /* 5 */ 0x0580, 0x0581, 0x0582, 0x0583, 0x0584, 0x0585, 0x0586, 0x0557, 2138c2ecf20Sopenharmony_ci 0x0558, 0x0559, 0x055A, 0x055B, 0x055C, 0x055D, 0x055E, 0x055F, 2148c2ecf20Sopenharmony_ci /* 6 */ 0x0560, 0x0561, 0x0562, 0x0563, 0x0564, 0x0565, 0x0566, 0x0567, 2158c2ecf20Sopenharmony_ci 0x0568, 0x0569, 0x056A, 0x056B, 0x056C, 0x056D, 0x056E, 0x056F, 2168c2ecf20Sopenharmony_ci /* 7 */ 0x0570, 0x0571, 0x0572, 0x0573, 0x0574, 0x0575, 0x0576, 0x0577, 2178c2ecf20Sopenharmony_ci 0x0578, 0x0579, 0x057A, 0x057B, 0x057C, 0x057D, 0x057E, 0x057F, 2188c2ecf20Sopenharmony_ci /* 8 */ 0x0580, 0x0581, 0x0582, 0x0583, 0x0584, 0x0585, 0x0586, 0x0587, 2198c2ecf20Sopenharmony_ci 0x0588, 0x0589, 0x058A, 0x058B, 0x058C, 0x058D, 0x058E, 0x058F, 2208c2ecf20Sopenharmony_ci /* 9 */ 0x0590, 0x0591, 0x0592, 0x0593, 0x0594, 0x0595, 0x0596, 0x0597, 2218c2ecf20Sopenharmony_ci 0x0598, 0x0599, 0x059A, 0x059B, 0x059C, 0x059D, 0x059E, 0x059F, 2228c2ecf20Sopenharmony_ci /* A */ 0x05A0, 0x05A1, 0x05A2, 0x05A3, 0x05A4, 0x05A5, 0x05A6, 0x05A7, 2238c2ecf20Sopenharmony_ci 0x05A8, 0x05A9, 0x05AA, 0x05AB, 0x05AC, 0x05AD, 0x05AE, 0x05AF, 2248c2ecf20Sopenharmony_ci /* B */ 0x05B0, 0x05B1, 0x05B2, 0x05B3, 0x05B4, 0x05B5, 0x05B6, 0x05B7, 2258c2ecf20Sopenharmony_ci 0x05B8, 0x05B9, 0x05BA, 0x05BB, 0x05BC, 0x05BD, 0x05BE, 0x05BF, 2268c2ecf20Sopenharmony_ci /* C */ 0x05C0, 0x05C1, 0x05C2, 0x05C3, 0x05C4, 0x05C5, 0x05C6, 0x05C7, 2278c2ecf20Sopenharmony_ci 0x05C8, 0x05C9, 0x05CA, 0x05CB, 0x05CC, 0x05CD, 0x05CE, 0x05CF, 2288c2ecf20Sopenharmony_ci /* D */ 0x05D0, 0x05D1, 0x05D2, 0x05D3, 0x05D4, 0x05D5, 0x05D6, 0x05D7, 2298c2ecf20Sopenharmony_ci 0x05D8, 0x05D9, 0x05DA, 0x05DB, 0x05DC, 0x05DD, 0x05DE, 0x05DF, 2308c2ecf20Sopenharmony_ci /* E */ 0x05E0, 0x05E1, 0x05E2, 0x05E3, 0x05E4, 0x05E5, 0x05E6, 0x05E7, 2318c2ecf20Sopenharmony_ci 0x05E8, 0x05E9, 0x05EA, 0x05EB, 0x05EC, 0x05ED, 0x05EE, 0x05EF, 2328c2ecf20Sopenharmony_ci /* F */ 0x05F0, 0x05F1, 0x05F2, 0x05F3, 0x05F4, 0x05F5, 0x05F6, 0x05F7, 2338c2ecf20Sopenharmony_ci 0x05F8, 0x05F9, 0x05FA, 0x05FB, 0x05FC, 0x05FD, 0x05FE, 0x05FF, 2348c2ecf20Sopenharmony_ci 2358c2ecf20Sopenharmony_ci // Table 6 (for high byte 0x10) 2368c2ecf20Sopenharmony_ci 2378c2ecf20Sopenharmony_ci /* 0 */ 0x1000, 0x1001, 0x1002, 0x1003, 0x1004, 0x1005, 0x1006, 0x1007, 2388c2ecf20Sopenharmony_ci 0x1008, 0x1009, 0x100A, 0x100B, 0x100C, 0x100D, 0x100E, 0x100F, 2398c2ecf20Sopenharmony_ci /* 1 */ 0x1010, 0x1011, 0x1012, 0x1013, 0x1014, 0x1015, 0x1016, 0x1017, 2408c2ecf20Sopenharmony_ci 0x1018, 0x1019, 0x101A, 0x101B, 0x101C, 0x101D, 0x101E, 0x101F, 2418c2ecf20Sopenharmony_ci /* 2 */ 0x1020, 0x1021, 0x1022, 0x1023, 0x1024, 0x1025, 0x1026, 0x1027, 2428c2ecf20Sopenharmony_ci 0x1028, 0x1029, 0x102A, 0x102B, 0x102C, 0x102D, 0x102E, 0x102F, 2438c2ecf20Sopenharmony_ci /* 3 */ 0x1030, 0x1031, 0x1032, 0x1033, 0x1034, 0x1035, 0x1036, 0x1037, 2448c2ecf20Sopenharmony_ci 0x1038, 0x1039, 0x103A, 0x103B, 0x103C, 0x103D, 0x103E, 0x103F, 2458c2ecf20Sopenharmony_ci /* 4 */ 0x1040, 0x1041, 0x1042, 0x1043, 0x1044, 0x1045, 0x1046, 0x1047, 2468c2ecf20Sopenharmony_ci 0x1048, 0x1049, 0x104A, 0x104B, 0x104C, 0x104D, 0x104E, 0x104F, 2478c2ecf20Sopenharmony_ci /* 5 */ 0x1050, 0x1051, 0x1052, 0x1053, 0x1054, 0x1055, 0x1056, 0x1057, 2488c2ecf20Sopenharmony_ci 0x1058, 0x1059, 0x105A, 0x105B, 0x105C, 0x105D, 0x105E, 0x105F, 2498c2ecf20Sopenharmony_ci /* 6 */ 0x1060, 0x1061, 0x1062, 0x1063, 0x1064, 0x1065, 0x1066, 0x1067, 2508c2ecf20Sopenharmony_ci 0x1068, 0x1069, 0x106A, 0x106B, 0x106C, 0x106D, 0x106E, 0x106F, 2518c2ecf20Sopenharmony_ci /* 7 */ 0x1070, 0x1071, 0x1072, 0x1073, 0x1074, 0x1075, 0x1076, 0x1077, 2528c2ecf20Sopenharmony_ci 0x1078, 0x1079, 0x107A, 0x107B, 0x107C, 0x107D, 0x107E, 0x107F, 2538c2ecf20Sopenharmony_ci /* 8 */ 0x1080, 0x1081, 0x1082, 0x1083, 0x1084, 0x1085, 0x1086, 0x1087, 2548c2ecf20Sopenharmony_ci 0x1088, 0x1089, 0x108A, 0x108B, 0x108C, 0x108D, 0x108E, 0x108F, 2558c2ecf20Sopenharmony_ci /* 9 */ 0x1090, 0x1091, 0x1092, 0x1093, 0x1094, 0x1095, 0x1096, 0x1097, 2568c2ecf20Sopenharmony_ci 0x1098, 0x1099, 0x109A, 0x109B, 0x109C, 0x109D, 0x109E, 0x109F, 2578c2ecf20Sopenharmony_ci /* A */ 0x10D0, 0x10D1, 0x10D2, 0x10D3, 0x10D4, 0x10D5, 0x10D6, 0x10D7, 2588c2ecf20Sopenharmony_ci 0x10D8, 0x10D9, 0x10DA, 0x10DB, 0x10DC, 0x10DD, 0x10DE, 0x10DF, 2598c2ecf20Sopenharmony_ci /* B */ 0x10E0, 0x10E1, 0x10E2, 0x10E3, 0x10E4, 0x10E5, 0x10E6, 0x10E7, 2608c2ecf20Sopenharmony_ci 0x10E8, 0x10E9, 0x10EA, 0x10EB, 0x10EC, 0x10ED, 0x10EE, 0x10EF, 2618c2ecf20Sopenharmony_ci /* C */ 0x10F0, 0x10F1, 0x10F2, 0x10F3, 0x10F4, 0x10F5, 0x10C6, 0x10C7, 2628c2ecf20Sopenharmony_ci 0x10C8, 0x10C9, 0x10CA, 0x10CB, 0x10CC, 0x10CD, 0x10CE, 0x10CF, 2638c2ecf20Sopenharmony_ci /* D */ 0x10D0, 0x10D1, 0x10D2, 0x10D3, 0x10D4, 0x10D5, 0x10D6, 0x10D7, 2648c2ecf20Sopenharmony_ci 0x10D8, 0x10D9, 0x10DA, 0x10DB, 0x10DC, 0x10DD, 0x10DE, 0x10DF, 2658c2ecf20Sopenharmony_ci /* E */ 0x10E0, 0x10E1, 0x10E2, 0x10E3, 0x10E4, 0x10E5, 0x10E6, 0x10E7, 2668c2ecf20Sopenharmony_ci 0x10E8, 0x10E9, 0x10EA, 0x10EB, 0x10EC, 0x10ED, 0x10EE, 0x10EF, 2678c2ecf20Sopenharmony_ci /* F */ 0x10F0, 0x10F1, 0x10F2, 0x10F3, 0x10F4, 0x10F5, 0x10F6, 0x10F7, 2688c2ecf20Sopenharmony_ci 0x10F8, 0x10F9, 0x10FA, 0x10FB, 0x10FC, 0x10FD, 0x10FE, 0x10FF, 2698c2ecf20Sopenharmony_ci 2708c2ecf20Sopenharmony_ci // Table 7 (for high byte 0x20) 2718c2ecf20Sopenharmony_ci 2728c2ecf20Sopenharmony_ci /* 0 */ 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006, 0x2007, 2738c2ecf20Sopenharmony_ci 0x2008, 0x2009, 0x200A, 0x200B, 0x0000, 0x0000, 0x0000, 0x0000, 2748c2ecf20Sopenharmony_ci /* 1 */ 0x2010, 0x2011, 0x2012, 0x2013, 0x2014, 0x2015, 0x2016, 0x2017, 2758c2ecf20Sopenharmony_ci 0x2018, 0x2019, 0x201A, 0x201B, 0x201C, 0x201D, 0x201E, 0x201F, 2768c2ecf20Sopenharmony_ci /* 2 */ 0x2020, 0x2021, 0x2022, 0x2023, 0x2024, 0x2025, 0x2026, 0x2027, 2778c2ecf20Sopenharmony_ci 0x2028, 0x2029, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x202F, 2788c2ecf20Sopenharmony_ci /* 3 */ 0x2030, 0x2031, 0x2032, 0x2033, 0x2034, 0x2035, 0x2036, 0x2037, 2798c2ecf20Sopenharmony_ci 0x2038, 0x2039, 0x203A, 0x203B, 0x203C, 0x203D, 0x203E, 0x203F, 2808c2ecf20Sopenharmony_ci /* 4 */ 0x2040, 0x2041, 0x2042, 0x2043, 0x2044, 0x2045, 0x2046, 0x2047, 2818c2ecf20Sopenharmony_ci 0x2048, 0x2049, 0x204A, 0x204B, 0x204C, 0x204D, 0x204E, 0x204F, 2828c2ecf20Sopenharmony_ci /* 5 */ 0x2050, 0x2051, 0x2052, 0x2053, 0x2054, 0x2055, 0x2056, 0x2057, 2838c2ecf20Sopenharmony_ci 0x2058, 0x2059, 0x205A, 0x205B, 0x205C, 0x205D, 0x205E, 0x205F, 2848c2ecf20Sopenharmony_ci /* 6 */ 0x2060, 0x2061, 0x2062, 0x2063, 0x2064, 0x2065, 0x2066, 0x2067, 2858c2ecf20Sopenharmony_ci 0x2068, 0x2069, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 2868c2ecf20Sopenharmony_ci /* 7 */ 0x2070, 0x2071, 0x2072, 0x2073, 0x2074, 0x2075, 0x2076, 0x2077, 2878c2ecf20Sopenharmony_ci 0x2078, 0x2079, 0x207A, 0x207B, 0x207C, 0x207D, 0x207E, 0x207F, 2888c2ecf20Sopenharmony_ci /* 8 */ 0x2080, 0x2081, 0x2082, 0x2083, 0x2084, 0x2085, 0x2086, 0x2087, 2898c2ecf20Sopenharmony_ci 0x2088, 0x2089, 0x208A, 0x208B, 0x208C, 0x208D, 0x208E, 0x208F, 2908c2ecf20Sopenharmony_ci /* 9 */ 0x2090, 0x2091, 0x2092, 0x2093, 0x2094, 0x2095, 0x2096, 0x2097, 2918c2ecf20Sopenharmony_ci 0x2098, 0x2099, 0x209A, 0x209B, 0x209C, 0x209D, 0x209E, 0x209F, 2928c2ecf20Sopenharmony_ci /* A */ 0x20A0, 0x20A1, 0x20A2, 0x20A3, 0x20A4, 0x20A5, 0x20A6, 0x20A7, 2938c2ecf20Sopenharmony_ci 0x20A8, 0x20A9, 0x20AA, 0x20AB, 0x20AC, 0x20AD, 0x20AE, 0x20AF, 2948c2ecf20Sopenharmony_ci /* B */ 0x20B0, 0x20B1, 0x20B2, 0x20B3, 0x20B4, 0x20B5, 0x20B6, 0x20B7, 2958c2ecf20Sopenharmony_ci 0x20B8, 0x20B9, 0x20BA, 0x20BB, 0x20BC, 0x20BD, 0x20BE, 0x20BF, 2968c2ecf20Sopenharmony_ci /* C */ 0x20C0, 0x20C1, 0x20C2, 0x20C3, 0x20C4, 0x20C5, 0x20C6, 0x20C7, 2978c2ecf20Sopenharmony_ci 0x20C8, 0x20C9, 0x20CA, 0x20CB, 0x20CC, 0x20CD, 0x20CE, 0x20CF, 2988c2ecf20Sopenharmony_ci /* D */ 0x20D0, 0x20D1, 0x20D2, 0x20D3, 0x20D4, 0x20D5, 0x20D6, 0x20D7, 2998c2ecf20Sopenharmony_ci 0x20D8, 0x20D9, 0x20DA, 0x20DB, 0x20DC, 0x20DD, 0x20DE, 0x20DF, 3008c2ecf20Sopenharmony_ci /* E */ 0x20E0, 0x20E1, 0x20E2, 0x20E3, 0x20E4, 0x20E5, 0x20E6, 0x20E7, 3018c2ecf20Sopenharmony_ci 0x20E8, 0x20E9, 0x20EA, 0x20EB, 0x20EC, 0x20ED, 0x20EE, 0x20EF, 3028c2ecf20Sopenharmony_ci /* F */ 0x20F0, 0x20F1, 0x20F2, 0x20F3, 0x20F4, 0x20F5, 0x20F6, 0x20F7, 3038c2ecf20Sopenharmony_ci 0x20F8, 0x20F9, 0x20FA, 0x20FB, 0x20FC, 0x20FD, 0x20FE, 0x20FF, 3048c2ecf20Sopenharmony_ci 3058c2ecf20Sopenharmony_ci // Table 8 (for high byte 0x21) 3068c2ecf20Sopenharmony_ci 3078c2ecf20Sopenharmony_ci /* 0 */ 0x2100, 0x2101, 0x2102, 0x2103, 0x2104, 0x2105, 0x2106, 0x2107, 3088c2ecf20Sopenharmony_ci 0x2108, 0x2109, 0x210A, 0x210B, 0x210C, 0x210D, 0x210E, 0x210F, 3098c2ecf20Sopenharmony_ci /* 1 */ 0x2110, 0x2111, 0x2112, 0x2113, 0x2114, 0x2115, 0x2116, 0x2117, 3108c2ecf20Sopenharmony_ci 0x2118, 0x2119, 0x211A, 0x211B, 0x211C, 0x211D, 0x211E, 0x211F, 3118c2ecf20Sopenharmony_ci /* 2 */ 0x2120, 0x2121, 0x2122, 0x2123, 0x2124, 0x2125, 0x2126, 0x2127, 3128c2ecf20Sopenharmony_ci 0x2128, 0x2129, 0x212A, 0x212B, 0x212C, 0x212D, 0x212E, 0x212F, 3138c2ecf20Sopenharmony_ci /* 3 */ 0x2130, 0x2131, 0x2132, 0x2133, 0x2134, 0x2135, 0x2136, 0x2137, 3148c2ecf20Sopenharmony_ci 0x2138, 0x2139, 0x213A, 0x213B, 0x213C, 0x213D, 0x213E, 0x213F, 3158c2ecf20Sopenharmony_ci /* 4 */ 0x2140, 0x2141, 0x2142, 0x2143, 0x2144, 0x2145, 0x2146, 0x2147, 3168c2ecf20Sopenharmony_ci 0x2148, 0x2149, 0x214A, 0x214B, 0x214C, 0x214D, 0x214E, 0x214F, 3178c2ecf20Sopenharmony_ci /* 5 */ 0x2150, 0x2151, 0x2152, 0x2153, 0x2154, 0x2155, 0x2156, 0x2157, 3188c2ecf20Sopenharmony_ci 0x2158, 0x2159, 0x215A, 0x215B, 0x215C, 0x215D, 0x215E, 0x215F, 3198c2ecf20Sopenharmony_ci /* 6 */ 0x2170, 0x2171, 0x2172, 0x2173, 0x2174, 0x2175, 0x2176, 0x2177, 3208c2ecf20Sopenharmony_ci 0x2178, 0x2179, 0x217A, 0x217B, 0x217C, 0x217D, 0x217E, 0x217F, 3218c2ecf20Sopenharmony_ci /* 7 */ 0x2170, 0x2171, 0x2172, 0x2173, 0x2174, 0x2175, 0x2176, 0x2177, 3228c2ecf20Sopenharmony_ci 0x2178, 0x2179, 0x217A, 0x217B, 0x217C, 0x217D, 0x217E, 0x217F, 3238c2ecf20Sopenharmony_ci /* 8 */ 0x2180, 0x2181, 0x2182, 0x2183, 0x2184, 0x2185, 0x2186, 0x2187, 3248c2ecf20Sopenharmony_ci 0x2188, 0x2189, 0x218A, 0x218B, 0x218C, 0x218D, 0x218E, 0x218F, 3258c2ecf20Sopenharmony_ci /* 9 */ 0x2190, 0x2191, 0x2192, 0x2193, 0x2194, 0x2195, 0x2196, 0x2197, 3268c2ecf20Sopenharmony_ci 0x2198, 0x2199, 0x219A, 0x219B, 0x219C, 0x219D, 0x219E, 0x219F, 3278c2ecf20Sopenharmony_ci /* A */ 0x21A0, 0x21A1, 0x21A2, 0x21A3, 0x21A4, 0x21A5, 0x21A6, 0x21A7, 3288c2ecf20Sopenharmony_ci 0x21A8, 0x21A9, 0x21AA, 0x21AB, 0x21AC, 0x21AD, 0x21AE, 0x21AF, 3298c2ecf20Sopenharmony_ci /* B */ 0x21B0, 0x21B1, 0x21B2, 0x21B3, 0x21B4, 0x21B5, 0x21B6, 0x21B7, 3308c2ecf20Sopenharmony_ci 0x21B8, 0x21B9, 0x21BA, 0x21BB, 0x21BC, 0x21BD, 0x21BE, 0x21BF, 3318c2ecf20Sopenharmony_ci /* C */ 0x21C0, 0x21C1, 0x21C2, 0x21C3, 0x21C4, 0x21C5, 0x21C6, 0x21C7, 3328c2ecf20Sopenharmony_ci 0x21C8, 0x21C9, 0x21CA, 0x21CB, 0x21CC, 0x21CD, 0x21CE, 0x21CF, 3338c2ecf20Sopenharmony_ci /* D */ 0x21D0, 0x21D1, 0x21D2, 0x21D3, 0x21D4, 0x21D5, 0x21D6, 0x21D7, 3348c2ecf20Sopenharmony_ci 0x21D8, 0x21D9, 0x21DA, 0x21DB, 0x21DC, 0x21DD, 0x21DE, 0x21DF, 3358c2ecf20Sopenharmony_ci /* E */ 0x21E0, 0x21E1, 0x21E2, 0x21E3, 0x21E4, 0x21E5, 0x21E6, 0x21E7, 3368c2ecf20Sopenharmony_ci 0x21E8, 0x21E9, 0x21EA, 0x21EB, 0x21EC, 0x21ED, 0x21EE, 0x21EF, 3378c2ecf20Sopenharmony_ci /* F */ 0x21F0, 0x21F1, 0x21F2, 0x21F3, 0x21F4, 0x21F5, 0x21F6, 0x21F7, 3388c2ecf20Sopenharmony_ci 0x21F8, 0x21F9, 0x21FA, 0x21FB, 0x21FC, 0x21FD, 0x21FE, 0x21FF, 3398c2ecf20Sopenharmony_ci 3408c2ecf20Sopenharmony_ci // Table 9 (for high byte 0xFE) 3418c2ecf20Sopenharmony_ci 3428c2ecf20Sopenharmony_ci /* 0 */ 0xFE00, 0xFE01, 0xFE02, 0xFE03, 0xFE04, 0xFE05, 0xFE06, 0xFE07, 3438c2ecf20Sopenharmony_ci 0xFE08, 0xFE09, 0xFE0A, 0xFE0B, 0xFE0C, 0xFE0D, 0xFE0E, 0xFE0F, 3448c2ecf20Sopenharmony_ci /* 1 */ 0xFE10, 0xFE11, 0xFE12, 0xFE13, 0xFE14, 0xFE15, 0xFE16, 0xFE17, 3458c2ecf20Sopenharmony_ci 0xFE18, 0xFE19, 0xFE1A, 0xFE1B, 0xFE1C, 0xFE1D, 0xFE1E, 0xFE1F, 3468c2ecf20Sopenharmony_ci /* 2 */ 0xFE20, 0xFE21, 0xFE22, 0xFE23, 0xFE24, 0xFE25, 0xFE26, 0xFE27, 3478c2ecf20Sopenharmony_ci 0xFE28, 0xFE29, 0xFE2A, 0xFE2B, 0xFE2C, 0xFE2D, 0xFE2E, 0xFE2F, 3488c2ecf20Sopenharmony_ci /* 3 */ 0xFE30, 0xFE31, 0xFE32, 0xFE33, 0xFE34, 0xFE35, 0xFE36, 0xFE37, 3498c2ecf20Sopenharmony_ci 0xFE38, 0xFE39, 0xFE3A, 0xFE3B, 0xFE3C, 0xFE3D, 0xFE3E, 0xFE3F, 3508c2ecf20Sopenharmony_ci /* 4 */ 0xFE40, 0xFE41, 0xFE42, 0xFE43, 0xFE44, 0xFE45, 0xFE46, 0xFE47, 3518c2ecf20Sopenharmony_ci 0xFE48, 0xFE49, 0xFE4A, 0xFE4B, 0xFE4C, 0xFE4D, 0xFE4E, 0xFE4F, 3528c2ecf20Sopenharmony_ci /* 5 */ 0xFE50, 0xFE51, 0xFE52, 0xFE53, 0xFE54, 0xFE55, 0xFE56, 0xFE57, 3538c2ecf20Sopenharmony_ci 0xFE58, 0xFE59, 0xFE5A, 0xFE5B, 0xFE5C, 0xFE5D, 0xFE5E, 0xFE5F, 3548c2ecf20Sopenharmony_ci /* 6 */ 0xFE60, 0xFE61, 0xFE62, 0xFE63, 0xFE64, 0xFE65, 0xFE66, 0xFE67, 3558c2ecf20Sopenharmony_ci 0xFE68, 0xFE69, 0xFE6A, 0xFE6B, 0xFE6C, 0xFE6D, 0xFE6E, 0xFE6F, 3568c2ecf20Sopenharmony_ci /* 7 */ 0xFE70, 0xFE71, 0xFE72, 0xFE73, 0xFE74, 0xFE75, 0xFE76, 0xFE77, 3578c2ecf20Sopenharmony_ci 0xFE78, 0xFE79, 0xFE7A, 0xFE7B, 0xFE7C, 0xFE7D, 0xFE7E, 0xFE7F, 3588c2ecf20Sopenharmony_ci /* 8 */ 0xFE80, 0xFE81, 0xFE82, 0xFE83, 0xFE84, 0xFE85, 0xFE86, 0xFE87, 3598c2ecf20Sopenharmony_ci 0xFE88, 0xFE89, 0xFE8A, 0xFE8B, 0xFE8C, 0xFE8D, 0xFE8E, 0xFE8F, 3608c2ecf20Sopenharmony_ci /* 9 */ 0xFE90, 0xFE91, 0xFE92, 0xFE93, 0xFE94, 0xFE95, 0xFE96, 0xFE97, 3618c2ecf20Sopenharmony_ci 0xFE98, 0xFE99, 0xFE9A, 0xFE9B, 0xFE9C, 0xFE9D, 0xFE9E, 0xFE9F, 3628c2ecf20Sopenharmony_ci /* A */ 0xFEA0, 0xFEA1, 0xFEA2, 0xFEA3, 0xFEA4, 0xFEA5, 0xFEA6, 0xFEA7, 3638c2ecf20Sopenharmony_ci 0xFEA8, 0xFEA9, 0xFEAA, 0xFEAB, 0xFEAC, 0xFEAD, 0xFEAE, 0xFEAF, 3648c2ecf20Sopenharmony_ci /* B */ 0xFEB0, 0xFEB1, 0xFEB2, 0xFEB3, 0xFEB4, 0xFEB5, 0xFEB6, 0xFEB7, 3658c2ecf20Sopenharmony_ci 0xFEB8, 0xFEB9, 0xFEBA, 0xFEBB, 0xFEBC, 0xFEBD, 0xFEBE, 0xFEBF, 3668c2ecf20Sopenharmony_ci /* C */ 0xFEC0, 0xFEC1, 0xFEC2, 0xFEC3, 0xFEC4, 0xFEC5, 0xFEC6, 0xFEC7, 3678c2ecf20Sopenharmony_ci 0xFEC8, 0xFEC9, 0xFECA, 0xFECB, 0xFECC, 0xFECD, 0xFECE, 0xFECF, 3688c2ecf20Sopenharmony_ci /* D */ 0xFED0, 0xFED1, 0xFED2, 0xFED3, 0xFED4, 0xFED5, 0xFED6, 0xFED7, 3698c2ecf20Sopenharmony_ci 0xFED8, 0xFED9, 0xFEDA, 0xFEDB, 0xFEDC, 0xFEDD, 0xFEDE, 0xFEDF, 3708c2ecf20Sopenharmony_ci /* E */ 0xFEE0, 0xFEE1, 0xFEE2, 0xFEE3, 0xFEE4, 0xFEE5, 0xFEE6, 0xFEE7, 3718c2ecf20Sopenharmony_ci 0xFEE8, 0xFEE9, 0xFEEA, 0xFEEB, 0xFEEC, 0xFEED, 0xFEEE, 0xFEEF, 3728c2ecf20Sopenharmony_ci /* F */ 0xFEF0, 0xFEF1, 0xFEF2, 0xFEF3, 0xFEF4, 0xFEF5, 0xFEF6, 0xFEF7, 3738c2ecf20Sopenharmony_ci 0xFEF8, 0xFEF9, 0xFEFA, 0xFEFB, 0xFEFC, 0xFEFD, 0xFEFE, 0x0000, 3748c2ecf20Sopenharmony_ci 3758c2ecf20Sopenharmony_ci // Table 10 (for high byte 0xFF) 3768c2ecf20Sopenharmony_ci 3778c2ecf20Sopenharmony_ci /* 0 */ 0xFF00, 0xFF01, 0xFF02, 0xFF03, 0xFF04, 0xFF05, 0xFF06, 0xFF07, 3788c2ecf20Sopenharmony_ci 0xFF08, 0xFF09, 0xFF0A, 0xFF0B, 0xFF0C, 0xFF0D, 0xFF0E, 0xFF0F, 3798c2ecf20Sopenharmony_ci /* 1 */ 0xFF10, 0xFF11, 0xFF12, 0xFF13, 0xFF14, 0xFF15, 0xFF16, 0xFF17, 3808c2ecf20Sopenharmony_ci 0xFF18, 0xFF19, 0xFF1A, 0xFF1B, 0xFF1C, 0xFF1D, 0xFF1E, 0xFF1F, 3818c2ecf20Sopenharmony_ci /* 2 */ 0xFF20, 0xFF41, 0xFF42, 0xFF43, 0xFF44, 0xFF45, 0xFF46, 0xFF47, 3828c2ecf20Sopenharmony_ci 0xFF48, 0xFF49, 0xFF4A, 0xFF4B, 0xFF4C, 0xFF4D, 0xFF4E, 0xFF4F, 3838c2ecf20Sopenharmony_ci /* 3 */ 0xFF50, 0xFF51, 0xFF52, 0xFF53, 0xFF54, 0xFF55, 0xFF56, 0xFF57, 3848c2ecf20Sopenharmony_ci 0xFF58, 0xFF59, 0xFF5A, 0xFF3B, 0xFF3C, 0xFF3D, 0xFF3E, 0xFF3F, 3858c2ecf20Sopenharmony_ci /* 4 */ 0xFF40, 0xFF41, 0xFF42, 0xFF43, 0xFF44, 0xFF45, 0xFF46, 0xFF47, 3868c2ecf20Sopenharmony_ci 0xFF48, 0xFF49, 0xFF4A, 0xFF4B, 0xFF4C, 0xFF4D, 0xFF4E, 0xFF4F, 3878c2ecf20Sopenharmony_ci /* 5 */ 0xFF50, 0xFF51, 0xFF52, 0xFF53, 0xFF54, 0xFF55, 0xFF56, 0xFF57, 3888c2ecf20Sopenharmony_ci 0xFF58, 0xFF59, 0xFF5A, 0xFF5B, 0xFF5C, 0xFF5D, 0xFF5E, 0xFF5F, 3898c2ecf20Sopenharmony_ci /* 6 */ 0xFF60, 0xFF61, 0xFF62, 0xFF63, 0xFF64, 0xFF65, 0xFF66, 0xFF67, 3908c2ecf20Sopenharmony_ci 0xFF68, 0xFF69, 0xFF6A, 0xFF6B, 0xFF6C, 0xFF6D, 0xFF6E, 0xFF6F, 3918c2ecf20Sopenharmony_ci /* 7 */ 0xFF70, 0xFF71, 0xFF72, 0xFF73, 0xFF74, 0xFF75, 0xFF76, 0xFF77, 3928c2ecf20Sopenharmony_ci 0xFF78, 0xFF79, 0xFF7A, 0xFF7B, 0xFF7C, 0xFF7D, 0xFF7E, 0xFF7F, 3938c2ecf20Sopenharmony_ci /* 8 */ 0xFF80, 0xFF81, 0xFF82, 0xFF83, 0xFF84, 0xFF85, 0xFF86, 0xFF87, 3948c2ecf20Sopenharmony_ci 0xFF88, 0xFF89, 0xFF8A, 0xFF8B, 0xFF8C, 0xFF8D, 0xFF8E, 0xFF8F, 3958c2ecf20Sopenharmony_ci /* 9 */ 0xFF90, 0xFF91, 0xFF92, 0xFF93, 0xFF94, 0xFF95, 0xFF96, 0xFF97, 3968c2ecf20Sopenharmony_ci 0xFF98, 0xFF99, 0xFF9A, 0xFF9B, 0xFF9C, 0xFF9D, 0xFF9E, 0xFF9F, 3978c2ecf20Sopenharmony_ci /* A */ 0xFFA0, 0xFFA1, 0xFFA2, 0xFFA3, 0xFFA4, 0xFFA5, 0xFFA6, 0xFFA7, 3988c2ecf20Sopenharmony_ci 0xFFA8, 0xFFA9, 0xFFAA, 0xFFAB, 0xFFAC, 0xFFAD, 0xFFAE, 0xFFAF, 3998c2ecf20Sopenharmony_ci /* B */ 0xFFB0, 0xFFB1, 0xFFB2, 0xFFB3, 0xFFB4, 0xFFB5, 0xFFB6, 0xFFB7, 4008c2ecf20Sopenharmony_ci 0xFFB8, 0xFFB9, 0xFFBA, 0xFFBB, 0xFFBC, 0xFFBD, 0xFFBE, 0xFFBF, 4018c2ecf20Sopenharmony_ci /* C */ 0xFFC0, 0xFFC1, 0xFFC2, 0xFFC3, 0xFFC4, 0xFFC5, 0xFFC6, 0xFFC7, 4028c2ecf20Sopenharmony_ci 0xFFC8, 0xFFC9, 0xFFCA, 0xFFCB, 0xFFCC, 0xFFCD, 0xFFCE, 0xFFCF, 4038c2ecf20Sopenharmony_ci /* D */ 0xFFD0, 0xFFD1, 0xFFD2, 0xFFD3, 0xFFD4, 0xFFD5, 0xFFD6, 0xFFD7, 4048c2ecf20Sopenharmony_ci 0xFFD8, 0xFFD9, 0xFFDA, 0xFFDB, 0xFFDC, 0xFFDD, 0xFFDE, 0xFFDF, 4058c2ecf20Sopenharmony_ci /* E */ 0xFFE0, 0xFFE1, 0xFFE2, 0xFFE3, 0xFFE4, 0xFFE5, 0xFFE6, 0xFFE7, 4068c2ecf20Sopenharmony_ci 0xFFE8, 0xFFE9, 0xFFEA, 0xFFEB, 0xFFEC, 0xFFED, 0xFFEE, 0xFFEF, 4078c2ecf20Sopenharmony_ci /* F */ 0xFFF0, 0xFFF1, 0xFFF2, 0xFFF3, 0xFFF4, 0xFFF5, 0xFFF6, 0xFFF7, 4088c2ecf20Sopenharmony_ci 0xFFF8, 0xFFF9, 0xFFFA, 0xFFFB, 0xFFFC, 0xFFFD, 0xFFFE, 0xFFFF, 4098c2ecf20Sopenharmony_ci}; 4108c2ecf20Sopenharmony_ci 4118c2ecf20Sopenharmony_ciu16 hfsplus_decompose_table[] = { 4128c2ecf20Sopenharmony_ci /* base table */ 4138c2ecf20Sopenharmony_ci 0x0010, 0x04c0, 0x0000, 0x06f0, 0x0000, 0x0000, 0x0000, 0x0000, 4148c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x07b0, 4158c2ecf20Sopenharmony_ci /* char table 0x0___ */ 4168c2ecf20Sopenharmony_ci 0x0020, 0x0070, 0x0160, 0x0190, 0x0230, 0x0000, 0x0000, 0x0000, 4178c2ecf20Sopenharmony_ci 0x0000, 0x02d0, 0x0340, 0x0360, 0x03b0, 0x03e0, 0x0400, 0x0430, 4188c2ecf20Sopenharmony_ci /* char table 0x00__ */ 4198c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4208c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0030, 0x0040, 0x0050, 0x0060, 4218c2ecf20Sopenharmony_ci /* char values 0x00c_ */ 4228c2ecf20Sopenharmony_ci 0x2042, 0x204a, 0x2052, 0x205a, 0x2062, 0x206a, 0x0000, 0x2072, 4238c2ecf20Sopenharmony_ci 0x207a, 0x2082, 0x208a, 0x2092, 0x209a, 0x20a2, 0x20aa, 0x20b2, 4248c2ecf20Sopenharmony_ci /* char values 0x00d_ */ 4258c2ecf20Sopenharmony_ci 0x0000, 0x20ba, 0x20c2, 0x20ca, 0x20d2, 0x20da, 0x20e2, 0x0000, 4268c2ecf20Sopenharmony_ci 0x0000, 0x20ea, 0x20f2, 0x20fa, 0x2102, 0x210a, 0x0000, 0x0000, 4278c2ecf20Sopenharmony_ci /* char values 0x00e_ */ 4288c2ecf20Sopenharmony_ci 0x2112, 0x211a, 0x2122, 0x212a, 0x2132, 0x213a, 0x0000, 0x2142, 4298c2ecf20Sopenharmony_ci 0x214a, 0x2152, 0x215a, 0x2162, 0x216a, 0x2172, 0x217a, 0x2182, 4308c2ecf20Sopenharmony_ci /* char values 0x00f_ */ 4318c2ecf20Sopenharmony_ci 0x0000, 0x218a, 0x2192, 0x219a, 0x21a2, 0x21aa, 0x21b2, 0x0000, 4328c2ecf20Sopenharmony_ci 0x0000, 0x21ba, 0x21c2, 0x21ca, 0x21d2, 0x21da, 0x0000, 0x21e2, 4338c2ecf20Sopenharmony_ci /* char table 0x01__ */ 4348c2ecf20Sopenharmony_ci 0x0080, 0x0090, 0x00a0, 0x00b0, 0x00c0, 0x00d0, 0x00e0, 0x00f0, 4358c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0100, 0x0110, 0x0120, 0x0130, 0x0140, 0x0150, 4368c2ecf20Sopenharmony_ci /* char values 0x010_ */ 4378c2ecf20Sopenharmony_ci 0x21ea, 0x21f2, 0x21fa, 0x2202, 0x220a, 0x2212, 0x221a, 0x2222, 4388c2ecf20Sopenharmony_ci 0x222a, 0x2232, 0x223a, 0x2242, 0x224a, 0x2252, 0x225a, 0x2262, 4398c2ecf20Sopenharmony_ci /* char values 0x011_ */ 4408c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x226a, 0x2272, 0x227a, 0x2282, 0x228a, 0x2292, 4418c2ecf20Sopenharmony_ci 0x229a, 0x22a2, 0x22aa, 0x22b2, 0x22ba, 0x22c2, 0x22ca, 0x22d2, 4428c2ecf20Sopenharmony_ci /* char values 0x012_ */ 4438c2ecf20Sopenharmony_ci 0x22da, 0x22e2, 0x22ea, 0x22f2, 0x22fa, 0x2302, 0x0000, 0x0000, 4448c2ecf20Sopenharmony_ci 0x230a, 0x2312, 0x231a, 0x2322, 0x232a, 0x2332, 0x233a, 0x2342, 4458c2ecf20Sopenharmony_ci /* char values 0x013_ */ 4468c2ecf20Sopenharmony_ci 0x234a, 0x0000, 0x0000, 0x0000, 0x2352, 0x235a, 0x2362, 0x236a, 4478c2ecf20Sopenharmony_ci 0x0000, 0x2372, 0x237a, 0x2382, 0x238a, 0x2392, 0x239a, 0x0000, 4488c2ecf20Sopenharmony_ci /* char values 0x014_ */ 4498c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x23a2, 0x23aa, 0x23b2, 0x23ba, 0x23c2, 4508c2ecf20Sopenharmony_ci 0x23ca, 0x0000, 0x0000, 0x0000, 0x23d2, 0x23da, 0x23e2, 0x23ea, 4518c2ecf20Sopenharmony_ci /* char values 0x015_ */ 4528c2ecf20Sopenharmony_ci 0x23f2, 0x23fa, 0x0000, 0x0000, 0x2402, 0x240a, 0x2412, 0x241a, 4538c2ecf20Sopenharmony_ci 0x2422, 0x242a, 0x2432, 0x243a, 0x2442, 0x244a, 0x2452, 0x245a, 4548c2ecf20Sopenharmony_ci /* char values 0x016_ */ 4558c2ecf20Sopenharmony_ci 0x2462, 0x246a, 0x2472, 0x247a, 0x2482, 0x248a, 0x0000, 0x0000, 4568c2ecf20Sopenharmony_ci 0x2492, 0x249a, 0x24a2, 0x24aa, 0x24b2, 0x24ba, 0x24c2, 0x24ca, 4578c2ecf20Sopenharmony_ci /* char values 0x017_ */ 4588c2ecf20Sopenharmony_ci 0x24d2, 0x24da, 0x24e2, 0x24ea, 0x24f2, 0x24fa, 0x2502, 0x250a, 4598c2ecf20Sopenharmony_ci 0x2512, 0x251a, 0x2522, 0x252a, 0x2532, 0x253a, 0x2542, 0x0000, 4608c2ecf20Sopenharmony_ci /* char values 0x01a_ */ 4618c2ecf20Sopenharmony_ci 0x254a, 0x2552, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4628c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x255a, 4638c2ecf20Sopenharmony_ci /* char values 0x01b_ */ 4648c2ecf20Sopenharmony_ci 0x2562, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4658c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4668c2ecf20Sopenharmony_ci /* char values 0x01c_ */ 4678c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4688c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x256a, 0x2572, 0x257a, 4698c2ecf20Sopenharmony_ci /* char values 0x01d_ */ 4708c2ecf20Sopenharmony_ci 0x2582, 0x258a, 0x2592, 0x259a, 0x25a2, 0x25ab, 0x25b7, 0x25c3, 4718c2ecf20Sopenharmony_ci 0x25cf, 0x25db, 0x25e7, 0x25f3, 0x25ff, 0x0000, 0x260b, 0x2617, 4728c2ecf20Sopenharmony_ci /* char values 0x01e_ */ 4738c2ecf20Sopenharmony_ci 0x2623, 0x262f, 0x263a, 0x2642, 0x0000, 0x0000, 0x264a, 0x2652, 4748c2ecf20Sopenharmony_ci 0x265a, 0x2662, 0x266a, 0x2672, 0x267b, 0x2687, 0x2692, 0x269a, 4758c2ecf20Sopenharmony_ci /* char values 0x01f_ */ 4768c2ecf20Sopenharmony_ci 0x26a2, 0x0000, 0x0000, 0x0000, 0x26aa, 0x26b2, 0x0000, 0x0000, 4778c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x26bb, 0x26c7, 0x26d2, 0x26da, 0x26e2, 0x26ea, 4788c2ecf20Sopenharmony_ci /* char table 0x02__ */ 4798c2ecf20Sopenharmony_ci 0x0170, 0x0180, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4808c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4818c2ecf20Sopenharmony_ci /* char values 0x020_ */ 4828c2ecf20Sopenharmony_ci 0x26f2, 0x26fa, 0x2702, 0x270a, 0x2712, 0x271a, 0x2722, 0x272a, 4838c2ecf20Sopenharmony_ci 0x2732, 0x273a, 0x2742, 0x274a, 0x2752, 0x275a, 0x2762, 0x276a, 4848c2ecf20Sopenharmony_ci /* char values 0x021_ */ 4858c2ecf20Sopenharmony_ci 0x2772, 0x277a, 0x2782, 0x278a, 0x2792, 0x279a, 0x27a2, 0x27aa, 4868c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4878c2ecf20Sopenharmony_ci /* char table 0x03__ */ 4888c2ecf20Sopenharmony_ci 0x0000, 0x01a0, 0x0000, 0x0000, 0x01b0, 0x0000, 0x0000, 0x01c0, 4898c2ecf20Sopenharmony_ci 0x01d0, 0x01e0, 0x01f0, 0x0200, 0x0210, 0x0220, 0x0000, 0x0000, 4908c2ecf20Sopenharmony_ci /* char values 0x031_ */ 4918c2ecf20Sopenharmony_ci 0x27b2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4928c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4938c2ecf20Sopenharmony_ci /* char values 0x034_ */ 4948c2ecf20Sopenharmony_ci 0x27b9, 0x27bd, 0x0000, 0x27c1, 0x27c6, 0x0000, 0x0000, 0x0000, 4958c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 4968c2ecf20Sopenharmony_ci /* char values 0x037_ */ 4978c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x27cd, 0x0000, 0x0000, 0x0000, 4988c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x27d1, 0x0000, 4998c2ecf20Sopenharmony_ci /* char values 0x038_ */ 5008c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x27d6, 0x27de, 0x27e5, 5018c2ecf20Sopenharmony_ci 0x27ea, 0x27f2, 0x27fa, 0x0000, 0x2802, 0x0000, 0x280a, 0x2812, 5028c2ecf20Sopenharmony_ci /* char values 0x039_ */ 5038c2ecf20Sopenharmony_ci 0x281b, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5048c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5058c2ecf20Sopenharmony_ci /* char values 0x03a_ */ 5068c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5078c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x2826, 0x282e, 0x2836, 0x283e, 0x2846, 0x284e, 5088c2ecf20Sopenharmony_ci /* char values 0x03b_ */ 5098c2ecf20Sopenharmony_ci 0x2857, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5108c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5118c2ecf20Sopenharmony_ci /* char values 0x03c_ */ 5128c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5138c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x2862, 0x286a, 0x2872, 0x287a, 0x2882, 0x0000, 5148c2ecf20Sopenharmony_ci /* char values 0x03d_ */ 5158c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x288a, 0x2892, 0x0000, 0x0000, 0x0000, 5168c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5178c2ecf20Sopenharmony_ci /* char table 0x04__ */ 5188c2ecf20Sopenharmony_ci 0x0240, 0x0250, 0x0000, 0x0260, 0x0000, 0x0270, 0x0000, 0x0280, 5198c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0290, 0x02a0, 0x02b0, 0x02c0, 5208c2ecf20Sopenharmony_ci /* char values 0x040_ */ 5218c2ecf20Sopenharmony_ci 0x0000, 0x289a, 0x0000, 0x28a2, 0x0000, 0x0000, 0x0000, 0x28aa, 5228c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x28b2, 0x0000, 0x28ba, 0x0000, 5238c2ecf20Sopenharmony_ci /* char values 0x041_ */ 5248c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5258c2ecf20Sopenharmony_ci 0x0000, 0x28c2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5268c2ecf20Sopenharmony_ci /* char values 0x043_ */ 5278c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5288c2ecf20Sopenharmony_ci 0x0000, 0x28ca, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5298c2ecf20Sopenharmony_ci /* char values 0x045_ */ 5308c2ecf20Sopenharmony_ci 0x0000, 0x28d2, 0x0000, 0x28da, 0x0000, 0x0000, 0x0000, 0x28e2, 5318c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x28ea, 0x0000, 0x28f2, 0x0000, 5328c2ecf20Sopenharmony_ci /* char values 0x047_ */ 5338c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x28fa, 0x2902, 5348c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5358c2ecf20Sopenharmony_ci /* char values 0x04c_ */ 5368c2ecf20Sopenharmony_ci 0x0000, 0x290a, 0x2912, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5378c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5388c2ecf20Sopenharmony_ci /* char values 0x04d_ */ 5398c2ecf20Sopenharmony_ci 0x291a, 0x2922, 0x292a, 0x2932, 0x2939, 0x293d, 0x2942, 0x294a, 5408c2ecf20Sopenharmony_ci 0x2951, 0x2955, 0x295a, 0x2962, 0x296a, 0x2972, 0x297a, 0x2982, 5418c2ecf20Sopenharmony_ci /* char values 0x04e_ */ 5428c2ecf20Sopenharmony_ci 0x2989, 0x298d, 0x2992, 0x299a, 0x29a2, 0x29aa, 0x29b2, 0x29ba, 5438c2ecf20Sopenharmony_ci 0x29c1, 0x29c5, 0x29ca, 0x29d2, 0x0000, 0x0000, 0x29da, 0x29e2, 5448c2ecf20Sopenharmony_ci /* char values 0x04f_ */ 5458c2ecf20Sopenharmony_ci 0x29ea, 0x29f2, 0x29fa, 0x2a02, 0x2a0a, 0x2a12, 0x0000, 0x0000, 5468c2ecf20Sopenharmony_ci 0x2a1a, 0x2a22, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5478c2ecf20Sopenharmony_ci /* char table 0x09__ */ 5488c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x02e0, 0x02f0, 0x0000, 0x0300, 0x0000, 0x0000, 5498c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0310, 0x0320, 0x0330, 0x0000, 0x0000, 5508c2ecf20Sopenharmony_ci /* char values 0x092_ */ 5518c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5528c2ecf20Sopenharmony_ci 0x0000, 0x2a2a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5538c2ecf20Sopenharmony_ci /* char values 0x093_ */ 5548c2ecf20Sopenharmony_ci 0x0000, 0x2a32, 0x0000, 0x0000, 0x2a3a, 0x0000, 0x0000, 0x0000, 5558c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5568c2ecf20Sopenharmony_ci /* char values 0x095_ */ 5578c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5588c2ecf20Sopenharmony_ci 0x2a42, 0x2a4a, 0x2a52, 0x2a5a, 0x2a62, 0x2a6a, 0x2a72, 0x2a7a, 5598c2ecf20Sopenharmony_ci /* char values 0x09b_ */ 5608c2ecf20Sopenharmony_ci 0x2a82, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5618c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5628c2ecf20Sopenharmony_ci /* char values 0x09c_ */ 5638c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5648c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x2a8a, 0x2a92, 0x0000, 0x0000, 0x0000, 5658c2ecf20Sopenharmony_ci /* char values 0x09d_ */ 5668c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5678c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x2a9a, 0x2aa2, 0x0000, 0x2aaa, 5688c2ecf20Sopenharmony_ci /* char table 0x0a__ */ 5698c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0350, 0x0000, 0x0000, 5708c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5718c2ecf20Sopenharmony_ci /* char values 0x0a5_ */ 5728c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5738c2ecf20Sopenharmony_ci 0x0000, 0x2ab2, 0x2aba, 0x2ac2, 0x2aca, 0x0000, 0x2ad2, 0x0000, 5748c2ecf20Sopenharmony_ci /* char table 0x0b__ */ 5758c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0370, 0x0380, 0x0000, 0x0000, 5768c2ecf20Sopenharmony_ci 0x0000, 0x0390, 0x0000, 0x0000, 0x03a0, 0x0000, 0x0000, 0x0000, 5778c2ecf20Sopenharmony_ci /* char values 0x0b4_ */ 5788c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5798c2ecf20Sopenharmony_ci 0x2ada, 0x0000, 0x0000, 0x2ae2, 0x2aea, 0x0000, 0x0000, 0x0000, 5808c2ecf20Sopenharmony_ci /* char values 0x0b5_ */ 5818c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5828c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x2af2, 0x2afa, 0x0000, 0x2b02, 5838c2ecf20Sopenharmony_ci /* char values 0x0b9_ */ 5848c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x2b0a, 0x0000, 0x0000, 0x0000, 5858c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5868c2ecf20Sopenharmony_ci /* char values 0x0bc_ */ 5878c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5888c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x2b12, 0x2b1a, 0x2b22, 0x0000, 0x0000, 0x0000, 5898c2ecf20Sopenharmony_ci /* char table 0x0c__ */ 5908c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x03c0, 0x0000, 0x0000, 0x0000, 5918c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x03d0, 0x0000, 0x0000, 0x0000, 5928c2ecf20Sopenharmony_ci /* char values 0x0c4_ */ 5938c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5948c2ecf20Sopenharmony_ci 0x2b2a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 5958c2ecf20Sopenharmony_ci /* char values 0x0cc_ */ 5968c2ecf20Sopenharmony_ci 0x2b32, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2b3a, 5978c2ecf20Sopenharmony_ci 0x2b42, 0x0000, 0x2b4a, 0x2b53, 0x0000, 0x0000, 0x0000, 0x0000, 5988c2ecf20Sopenharmony_ci /* char table 0x0d__ */ 5998c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x03f0, 0x0000, 0x0000, 0x0000, 6008c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6018c2ecf20Sopenharmony_ci /* char values 0x0d4_ */ 6028c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6038c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x2b5e, 0x2b66, 0x2b6e, 0x0000, 0x0000, 0x0000, 6048c2ecf20Sopenharmony_ci /* char table 0x0e__ */ 6058c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0410, 0x0000, 0x0000, 0x0000, 0x0000, 6068c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0420, 0x0000, 0x0000, 0x0000, 0x0000, 6078c2ecf20Sopenharmony_ci /* char values 0x0e3_ */ 6088c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x2b76, 0x0000, 0x0000, 0x0000, 0x0000, 6098c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6108c2ecf20Sopenharmony_ci /* char values 0x0eb_ */ 6118c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x2b7e, 0x0000, 0x0000, 0x0000, 0x0000, 6128c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6138c2ecf20Sopenharmony_ci /* char table 0x0f__ */ 6148c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0440, 0x0450, 0x0460, 0x0470, 6158c2ecf20Sopenharmony_ci 0x0480, 0x0490, 0x04a0, 0x04b0, 0x0000, 0x0000, 0x0000, 0x0000, 6168c2ecf20Sopenharmony_ci /* char values 0x0f4_ */ 6178c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x2b86, 0x0000, 0x0000, 0x0000, 0x0000, 6188c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2b8e, 0x0000, 0x0000, 6198c2ecf20Sopenharmony_ci /* char values 0x0f5_ */ 6208c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x2b96, 0x0000, 0x0000, 0x0000, 0x0000, 0x2b9e, 6218c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x2ba6, 0x0000, 0x0000, 0x0000, 6228c2ecf20Sopenharmony_ci /* char values 0x0f6_ */ 6238c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6248c2ecf20Sopenharmony_ci 0x0000, 0x2bae, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6258c2ecf20Sopenharmony_ci /* char values 0x0f7_ */ 6268c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x2bb6, 0x0000, 0x2bbe, 0x2bc6, 0x2bcf, 6278c2ecf20Sopenharmony_ci 0x2bda, 0x2be3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6288c2ecf20Sopenharmony_ci /* char values 0x0f8_ */ 6298c2ecf20Sopenharmony_ci 0x0000, 0x2bee, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6308c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6318c2ecf20Sopenharmony_ci /* char values 0x0f9_ */ 6328c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x2bf6, 0x0000, 0x0000, 0x0000, 0x0000, 6338c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2bfe, 0x0000, 0x0000, 6348c2ecf20Sopenharmony_ci /* char values 0x0fa_ */ 6358c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x2c06, 0x0000, 0x0000, 0x0000, 0x0000, 0x2c0e, 6368c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x2c16, 0x0000, 0x0000, 0x0000, 6378c2ecf20Sopenharmony_ci /* char values 0x0fb_ */ 6388c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6398c2ecf20Sopenharmony_ci 0x0000, 0x2c1e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6408c2ecf20Sopenharmony_ci /* char table 0x1___ */ 6418c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6428c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x04d0, 0x05e0, 6438c2ecf20Sopenharmony_ci /* char table 0x1e__ */ 6448c2ecf20Sopenharmony_ci 0x04e0, 0x04f0, 0x0500, 0x0510, 0x0520, 0x0530, 0x0540, 0x0550, 6458c2ecf20Sopenharmony_ci 0x0560, 0x0570, 0x0580, 0x0590, 0x05a0, 0x05b0, 0x05c0, 0x05d0, 6468c2ecf20Sopenharmony_ci /* char values 0x1e0_ */ 6478c2ecf20Sopenharmony_ci 0x2c26, 0x2c2e, 0x2c36, 0x2c3e, 0x2c46, 0x2c4e, 0x2c56, 0x2c5e, 6488c2ecf20Sopenharmony_ci 0x2c67, 0x2c73, 0x2c7e, 0x2c86, 0x2c8e, 0x2c96, 0x2c9e, 0x2ca6, 6498c2ecf20Sopenharmony_ci /* char values 0x1e1_ */ 6508c2ecf20Sopenharmony_ci 0x2cae, 0x2cb6, 0x2cbe, 0x2cc6, 0x2ccf, 0x2cdb, 0x2ce7, 0x2cf3, 6518c2ecf20Sopenharmony_ci 0x2cfe, 0x2d06, 0x2d0e, 0x2d16, 0x2d1f, 0x2d2b, 0x2d36, 0x2d3e, 6528c2ecf20Sopenharmony_ci /* char values 0x1e2_ */ 6538c2ecf20Sopenharmony_ci 0x2d46, 0x2d4e, 0x2d56, 0x2d5e, 0x2d66, 0x2d6e, 0x2d76, 0x2d7e, 6548c2ecf20Sopenharmony_ci 0x2d86, 0x2d8e, 0x2d96, 0x2d9e, 0x2da6, 0x2dae, 0x2db7, 0x2dc3, 6558c2ecf20Sopenharmony_ci /* char values 0x1e3_ */ 6568c2ecf20Sopenharmony_ci 0x2dce, 0x2dd6, 0x2dde, 0x2de6, 0x2dee, 0x2df6, 0x2dfe, 0x2e06, 6578c2ecf20Sopenharmony_ci 0x2e0f, 0x2e1b, 0x2e26, 0x2e2e, 0x2e36, 0x2e3e, 0x2e46, 0x2e4e, 6588c2ecf20Sopenharmony_ci /* char values 0x1e4_ */ 6598c2ecf20Sopenharmony_ci 0x2e56, 0x2e5e, 0x2e66, 0x2e6e, 0x2e76, 0x2e7e, 0x2e86, 0x2e8e, 6608c2ecf20Sopenharmony_ci 0x2e96, 0x2e9e, 0x2ea6, 0x2eae, 0x2eb7, 0x2ec3, 0x2ecf, 0x2edb, 6618c2ecf20Sopenharmony_ci /* char values 0x1e5_ */ 6628c2ecf20Sopenharmony_ci 0x2ee7, 0x2ef3, 0x2eff, 0x2f0b, 0x2f16, 0x2f1e, 0x2f26, 0x2f2e, 6638c2ecf20Sopenharmony_ci 0x2f36, 0x2f3e, 0x2f46, 0x2f4e, 0x2f57, 0x2f63, 0x2f6e, 0x2f76, 6648c2ecf20Sopenharmony_ci /* char values 0x1e6_ */ 6658c2ecf20Sopenharmony_ci 0x2f7e, 0x2f86, 0x2f8e, 0x2f96, 0x2f9f, 0x2fab, 0x2fb7, 0x2fc3, 6668c2ecf20Sopenharmony_ci 0x2fcf, 0x2fdb, 0x2fe6, 0x2fee, 0x2ff6, 0x2ffe, 0x3006, 0x300e, 6678c2ecf20Sopenharmony_ci /* char values 0x1e7_ */ 6688c2ecf20Sopenharmony_ci 0x3016, 0x301e, 0x3026, 0x302e, 0x3036, 0x303e, 0x3046, 0x304e, 6698c2ecf20Sopenharmony_ci 0x3057, 0x3063, 0x306f, 0x307b, 0x3086, 0x308e, 0x3096, 0x309e, 6708c2ecf20Sopenharmony_ci /* char values 0x1e8_ */ 6718c2ecf20Sopenharmony_ci 0x30a6, 0x30ae, 0x30b6, 0x30be, 0x30c6, 0x30ce, 0x30d6, 0x30de, 6728c2ecf20Sopenharmony_ci 0x30e6, 0x30ee, 0x30f6, 0x30fe, 0x3106, 0x310e, 0x3116, 0x311e, 6738c2ecf20Sopenharmony_ci /* char values 0x1e9_ */ 6748c2ecf20Sopenharmony_ci 0x3126, 0x312e, 0x3136, 0x313e, 0x3146, 0x314e, 0x3156, 0x315e, 6758c2ecf20Sopenharmony_ci 0x3166, 0x316e, 0x0000, 0x3176, 0x0000, 0x0000, 0x0000, 0x0000, 6768c2ecf20Sopenharmony_ci /* char values 0x1ea_ */ 6778c2ecf20Sopenharmony_ci 0x317e, 0x3186, 0x318e, 0x3196, 0x319f, 0x31ab, 0x31b7, 0x31c3, 6788c2ecf20Sopenharmony_ci 0x31cf, 0x31db, 0x31e7, 0x31f3, 0x31ff, 0x320b, 0x3217, 0x3223, 6798c2ecf20Sopenharmony_ci /* char values 0x1eb_ */ 6808c2ecf20Sopenharmony_ci 0x322f, 0x323b, 0x3247, 0x3253, 0x325f, 0x326b, 0x3277, 0x3283, 6818c2ecf20Sopenharmony_ci 0x328e, 0x3296, 0x329e, 0x32a6, 0x32ae, 0x32b6, 0x32bf, 0x32cb, 6828c2ecf20Sopenharmony_ci /* char values 0x1ec_ */ 6838c2ecf20Sopenharmony_ci 0x32d7, 0x32e3, 0x32ef, 0x32fb, 0x3307, 0x3313, 0x331f, 0x332b, 6848c2ecf20Sopenharmony_ci 0x3336, 0x333e, 0x3346, 0x334e, 0x3356, 0x335e, 0x3366, 0x336e, 6858c2ecf20Sopenharmony_ci /* char values 0x1ed_ */ 6868c2ecf20Sopenharmony_ci 0x3377, 0x3383, 0x338f, 0x339b, 0x33a7, 0x33b3, 0x33bf, 0x33cb, 6878c2ecf20Sopenharmony_ci 0x33d7, 0x33e3, 0x33ef, 0x33fb, 0x3407, 0x3413, 0x341f, 0x342b, 6888c2ecf20Sopenharmony_ci /* char values 0x1ee_ */ 6898c2ecf20Sopenharmony_ci 0x3437, 0x3443, 0x344f, 0x345b, 0x3466, 0x346e, 0x3476, 0x347e, 6908c2ecf20Sopenharmony_ci 0x3487, 0x3493, 0x349f, 0x34ab, 0x34b7, 0x34c3, 0x34cf, 0x34db, 6918c2ecf20Sopenharmony_ci /* char values 0x1ef_ */ 6928c2ecf20Sopenharmony_ci 0x34e7, 0x34f3, 0x34fe, 0x3506, 0x350e, 0x3516, 0x351e, 0x3526, 6938c2ecf20Sopenharmony_ci 0x352e, 0x3536, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 6948c2ecf20Sopenharmony_ci /* char table 0x1f__ */ 6958c2ecf20Sopenharmony_ci 0x05f0, 0x0600, 0x0610, 0x0620, 0x0630, 0x0640, 0x0650, 0x0660, 6968c2ecf20Sopenharmony_ci 0x0670, 0x0680, 0x0690, 0x06a0, 0x06b0, 0x06c0, 0x06d0, 0x06e0, 6978c2ecf20Sopenharmony_ci /* char values 0x1f0_ */ 6988c2ecf20Sopenharmony_ci 0x353e, 0x3546, 0x354f, 0x355b, 0x3567, 0x3573, 0x357f, 0x358b, 6998c2ecf20Sopenharmony_ci 0x3596, 0x359e, 0x35a7, 0x35b3, 0x35bf, 0x35cb, 0x35d7, 0x35e3, 7008c2ecf20Sopenharmony_ci /* char values 0x1f1_ */ 7018c2ecf20Sopenharmony_ci 0x35ee, 0x35f6, 0x35ff, 0x360b, 0x3617, 0x3623, 0x0000, 0x0000, 7028c2ecf20Sopenharmony_ci 0x362e, 0x3636, 0x363f, 0x364b, 0x3657, 0x3663, 0x0000, 0x0000, 7038c2ecf20Sopenharmony_ci /* char values 0x1f2_ */ 7048c2ecf20Sopenharmony_ci 0x366e, 0x3676, 0x367f, 0x368b, 0x3697, 0x36a3, 0x36af, 0x36bb, 7058c2ecf20Sopenharmony_ci 0x36c6, 0x36ce, 0x36d7, 0x36e3, 0x36ef, 0x36fb, 0x3707, 0x3713, 7068c2ecf20Sopenharmony_ci /* char values 0x1f3_ */ 7078c2ecf20Sopenharmony_ci 0x371e, 0x3726, 0x372f, 0x373b, 0x3747, 0x3753, 0x375f, 0x376b, 7088c2ecf20Sopenharmony_ci 0x3776, 0x377e, 0x3787, 0x3793, 0x379f, 0x37ab, 0x37b7, 0x37c3, 7098c2ecf20Sopenharmony_ci /* char values 0x1f4_ */ 7108c2ecf20Sopenharmony_ci 0x37ce, 0x37d6, 0x37df, 0x37eb, 0x37f7, 0x3803, 0x0000, 0x0000, 7118c2ecf20Sopenharmony_ci 0x380e, 0x3816, 0x381f, 0x382b, 0x3837, 0x3843, 0x0000, 0x0000, 7128c2ecf20Sopenharmony_ci /* char values 0x1f5_ */ 7138c2ecf20Sopenharmony_ci 0x384e, 0x3856, 0x385f, 0x386b, 0x3877, 0x3883, 0x388f, 0x389b, 7148c2ecf20Sopenharmony_ci 0x0000, 0x38a6, 0x0000, 0x38af, 0x0000, 0x38bb, 0x0000, 0x38c7, 7158c2ecf20Sopenharmony_ci /* char values 0x1f6_ */ 7168c2ecf20Sopenharmony_ci 0x38d2, 0x38da, 0x38e3, 0x38ef, 0x38fb, 0x3907, 0x3913, 0x391f, 7178c2ecf20Sopenharmony_ci 0x392a, 0x3932, 0x393b, 0x3947, 0x3953, 0x395f, 0x396b, 0x3977, 7188c2ecf20Sopenharmony_ci /* char values 0x1f7_ */ 7198c2ecf20Sopenharmony_ci 0x3982, 0x398a, 0x3992, 0x399a, 0x39a2, 0x39aa, 0x39b2, 0x39ba, 7208c2ecf20Sopenharmony_ci 0x39c2, 0x39ca, 0x39d2, 0x39da, 0x39e2, 0x39ea, 0x0000, 0x0000, 7218c2ecf20Sopenharmony_ci /* char values 0x1f8_ */ 7228c2ecf20Sopenharmony_ci 0x39f3, 0x39ff, 0x3a0c, 0x3a1c, 0x3a2c, 0x3a3c, 0x3a4c, 0x3a5c, 7238c2ecf20Sopenharmony_ci 0x3a6b, 0x3a77, 0x3a84, 0x3a94, 0x3aa4, 0x3ab4, 0x3ac4, 0x3ad4, 7248c2ecf20Sopenharmony_ci /* char values 0x1f9_ */ 7258c2ecf20Sopenharmony_ci 0x3ae3, 0x3aef, 0x3afc, 0x3b0c, 0x3b1c, 0x3b2c, 0x3b3c, 0x3b4c, 7268c2ecf20Sopenharmony_ci 0x3b5b, 0x3b67, 0x3b74, 0x3b84, 0x3b94, 0x3ba4, 0x3bb4, 0x3bc4, 7278c2ecf20Sopenharmony_ci /* char values 0x1fa_ */ 7288c2ecf20Sopenharmony_ci 0x3bd3, 0x3bdf, 0x3bec, 0x3bfc, 0x3c0c, 0x3c1c, 0x3c2c, 0x3c3c, 7298c2ecf20Sopenharmony_ci 0x3c4b, 0x3c57, 0x3c64, 0x3c74, 0x3c84, 0x3c94, 0x3ca4, 0x3cb4, 7308c2ecf20Sopenharmony_ci /* char values 0x1fb_ */ 7318c2ecf20Sopenharmony_ci 0x3cc2, 0x3cca, 0x3cd3, 0x3cde, 0x3ce7, 0x0000, 0x3cf2, 0x3cfb, 7328c2ecf20Sopenharmony_ci 0x3d06, 0x3d0e, 0x3d16, 0x3d1e, 0x3d26, 0x0000, 0x3d2d, 0x0000, 7338c2ecf20Sopenharmony_ci /* char values 0x1fc_ */ 7348c2ecf20Sopenharmony_ci 0x0000, 0x3d32, 0x3d3b, 0x3d46, 0x3d4f, 0x0000, 0x3d5a, 0x3d63, 7358c2ecf20Sopenharmony_ci 0x3d6e, 0x3d76, 0x3d7e, 0x3d86, 0x3d8e, 0x3d96, 0x3d9e, 0x3da6, 7368c2ecf20Sopenharmony_ci /* char values 0x1fd_ */ 7378c2ecf20Sopenharmony_ci 0x3dae, 0x3db6, 0x3dbf, 0x3dcb, 0x0000, 0x0000, 0x3dd6, 0x3ddf, 7388c2ecf20Sopenharmony_ci 0x3dea, 0x3df2, 0x3dfa, 0x3e02, 0x0000, 0x3e0a, 0x3e12, 0x3e1a, 7398c2ecf20Sopenharmony_ci /* char values 0x1fe_ */ 7408c2ecf20Sopenharmony_ci 0x3e22, 0x3e2a, 0x3e33, 0x3e3f, 0x3e4a, 0x3e52, 0x3e5a, 0x3e63, 7418c2ecf20Sopenharmony_ci 0x3e6e, 0x3e76, 0x3e7e, 0x3e86, 0x3e8e, 0x3e96, 0x3e9e, 0x3ea5, 7428c2ecf20Sopenharmony_ci /* char values 0x1ff_ */ 7438c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x3eab, 0x3eb6, 0x3ebf, 0x0000, 0x3eca, 0x3ed3, 7448c2ecf20Sopenharmony_ci 0x3ede, 0x3ee6, 0x3eee, 0x3ef6, 0x3efe, 0x3f05, 0x0000, 0x0000, 7458c2ecf20Sopenharmony_ci /* char table 0x3___ */ 7468c2ecf20Sopenharmony_ci 0x0700, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 7478c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 7488c2ecf20Sopenharmony_ci /* char table 0x30__ */ 7498c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0710, 0x0720, 0x0730, 0x0740, 7508c2ecf20Sopenharmony_ci 0x0000, 0x0750, 0x0760, 0x0770, 0x0780, 0x0790, 0x0000, 0x07a0, 7518c2ecf20Sopenharmony_ci /* char values 0x304_ */ 7528c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 7538c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x3f0a, 0x0000, 0x3f12, 0x0000, 7548c2ecf20Sopenharmony_ci /* char values 0x305_ */ 7558c2ecf20Sopenharmony_ci 0x3f1a, 0x0000, 0x3f22, 0x0000, 0x3f2a, 0x0000, 0x3f32, 0x0000, 7568c2ecf20Sopenharmony_ci 0x3f3a, 0x0000, 0x3f42, 0x0000, 0x3f4a, 0x0000, 0x3f52, 0x0000, 7578c2ecf20Sopenharmony_ci /* char values 0x306_ */ 7588c2ecf20Sopenharmony_ci 0x3f5a, 0x0000, 0x3f62, 0x0000, 0x0000, 0x3f6a, 0x0000, 0x3f72, 7598c2ecf20Sopenharmony_ci 0x0000, 0x3f7a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 7608c2ecf20Sopenharmony_ci /* char values 0x307_ */ 7618c2ecf20Sopenharmony_ci 0x3f82, 0x3f8a, 0x0000, 0x3f92, 0x3f9a, 0x0000, 0x3fa2, 0x3faa, 7628c2ecf20Sopenharmony_ci 0x0000, 0x3fb2, 0x3fba, 0x0000, 0x3fc2, 0x3fca, 0x0000, 0x0000, 7638c2ecf20Sopenharmony_ci /* char values 0x309_ */ 7648c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x3fd2, 0x0000, 0x0000, 0x0000, 7658c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x3fda, 0x0000, 7668c2ecf20Sopenharmony_ci /* char values 0x30a_ */ 7678c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 7688c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x3fe2, 0x0000, 0x3fea, 0x0000, 7698c2ecf20Sopenharmony_ci /* char values 0x30b_ */ 7708c2ecf20Sopenharmony_ci 0x3ff2, 0x0000, 0x3ffa, 0x0000, 0x4002, 0x0000, 0x400a, 0x0000, 7718c2ecf20Sopenharmony_ci 0x4012, 0x0000, 0x401a, 0x0000, 0x4022, 0x0000, 0x402a, 0x0000, 7728c2ecf20Sopenharmony_ci /* char values 0x30c_ */ 7738c2ecf20Sopenharmony_ci 0x4032, 0x0000, 0x403a, 0x0000, 0x0000, 0x4042, 0x0000, 0x404a, 7748c2ecf20Sopenharmony_ci 0x0000, 0x4052, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 7758c2ecf20Sopenharmony_ci /* char values 0x30d_ */ 7768c2ecf20Sopenharmony_ci 0x405a, 0x4062, 0x0000, 0x406a, 0x4072, 0x0000, 0x407a, 0x4082, 7778c2ecf20Sopenharmony_ci 0x0000, 0x408a, 0x4092, 0x0000, 0x409a, 0x40a2, 0x0000, 0x0000, 7788c2ecf20Sopenharmony_ci /* char values 0x30f_ */ 7798c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x40aa, 0x0000, 0x0000, 0x40b2, 7808c2ecf20Sopenharmony_ci 0x40ba, 0x40c2, 0x40ca, 0x0000, 0x0000, 0x0000, 0x40d2, 0x0000, 7818c2ecf20Sopenharmony_ci /* char table 0xf___ */ 7828c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 7838c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x07c0, 0x0000, 0x0000, 0x0000, 0x0000, 7848c2ecf20Sopenharmony_ci /* char table 0xfb__ */ 7858c2ecf20Sopenharmony_ci 0x0000, 0x07d0, 0x07e0, 0x07f0, 0x0800, 0x0000, 0x0000, 0x0000, 7868c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 7878c2ecf20Sopenharmony_ci /* char values 0xfb1_ */ 7888c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 7898c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x40da, 7908c2ecf20Sopenharmony_ci /* char values 0xfb2_ */ 7918c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 7928c2ecf20Sopenharmony_ci 0x0000, 0x0000, 0x40e2, 0x40ea, 0x40f3, 0x40ff, 0x410a, 0x4112, 7938c2ecf20Sopenharmony_ci /* char values 0xfb3_ */ 7948c2ecf20Sopenharmony_ci 0x411a, 0x4122, 0x412a, 0x4132, 0x413a, 0x4142, 0x414a, 0x0000, 7958c2ecf20Sopenharmony_ci 0x4152, 0x415a, 0x4162, 0x416a, 0x4172, 0x0000, 0x417a, 0x0000, 7968c2ecf20Sopenharmony_ci /* char values 0xfb4_ */ 7978c2ecf20Sopenharmony_ci 0x4182, 0x418a, 0x0000, 0x4192, 0x419a, 0x0000, 0x41a2, 0x41aa, 7988c2ecf20Sopenharmony_ci 0x41b2, 0x41ba, 0x41c2, 0x41ca, 0x41d2, 0x41da, 0x41e2, 0x0000, 7998c2ecf20Sopenharmony_ci /* decomposed characters */ 8008c2ecf20Sopenharmony_ci 0x0041, 0x0300, 0x0041, 0x0301, 0x0041, 0x0302, 0x0041, 0x0303, 8018c2ecf20Sopenharmony_ci 0x0041, 0x0308, 0x0041, 0x030a, 0x0043, 0x0327, 0x0045, 0x0300, 8028c2ecf20Sopenharmony_ci 0x0045, 0x0301, 0x0045, 0x0302, 0x0045, 0x0308, 0x0049, 0x0300, 8038c2ecf20Sopenharmony_ci 0x0049, 0x0301, 0x0049, 0x0302, 0x0049, 0x0308, 0x004e, 0x0303, 8048c2ecf20Sopenharmony_ci 0x004f, 0x0300, 0x004f, 0x0301, 0x004f, 0x0302, 0x004f, 0x0303, 8058c2ecf20Sopenharmony_ci 0x004f, 0x0308, 0x0055, 0x0300, 0x0055, 0x0301, 0x0055, 0x0302, 8068c2ecf20Sopenharmony_ci 0x0055, 0x0308, 0x0059, 0x0301, 0x0061, 0x0300, 0x0061, 0x0301, 8078c2ecf20Sopenharmony_ci 0x0061, 0x0302, 0x0061, 0x0303, 0x0061, 0x0308, 0x0061, 0x030a, 8088c2ecf20Sopenharmony_ci 0x0063, 0x0327, 0x0065, 0x0300, 0x0065, 0x0301, 0x0065, 0x0302, 8098c2ecf20Sopenharmony_ci 0x0065, 0x0308, 0x0069, 0x0300, 0x0069, 0x0301, 0x0069, 0x0302, 8108c2ecf20Sopenharmony_ci 0x0069, 0x0308, 0x006e, 0x0303, 0x006f, 0x0300, 0x006f, 0x0301, 8118c2ecf20Sopenharmony_ci 0x006f, 0x0302, 0x006f, 0x0303, 0x006f, 0x0308, 0x0075, 0x0300, 8128c2ecf20Sopenharmony_ci 0x0075, 0x0301, 0x0075, 0x0302, 0x0075, 0x0308, 0x0079, 0x0301, 8138c2ecf20Sopenharmony_ci 0x0079, 0x0308, 0x0041, 0x0304, 0x0061, 0x0304, 0x0041, 0x0306, 8148c2ecf20Sopenharmony_ci 0x0061, 0x0306, 0x0041, 0x0328, 0x0061, 0x0328, 0x0043, 0x0301, 8158c2ecf20Sopenharmony_ci 0x0063, 0x0301, 0x0043, 0x0302, 0x0063, 0x0302, 0x0043, 0x0307, 8168c2ecf20Sopenharmony_ci 0x0063, 0x0307, 0x0043, 0x030c, 0x0063, 0x030c, 0x0044, 0x030c, 8178c2ecf20Sopenharmony_ci 0x0064, 0x030c, 0x0045, 0x0304, 0x0065, 0x0304, 0x0045, 0x0306, 8188c2ecf20Sopenharmony_ci 0x0065, 0x0306, 0x0045, 0x0307, 0x0065, 0x0307, 0x0045, 0x0328, 8198c2ecf20Sopenharmony_ci 0x0065, 0x0328, 0x0045, 0x030c, 0x0065, 0x030c, 0x0047, 0x0302, 8208c2ecf20Sopenharmony_ci 0x0067, 0x0302, 0x0047, 0x0306, 0x0067, 0x0306, 0x0047, 0x0307, 8218c2ecf20Sopenharmony_ci 0x0067, 0x0307, 0x0047, 0x0327, 0x0067, 0x0327, 0x0048, 0x0302, 8228c2ecf20Sopenharmony_ci 0x0068, 0x0302, 0x0049, 0x0303, 0x0069, 0x0303, 0x0049, 0x0304, 8238c2ecf20Sopenharmony_ci 0x0069, 0x0304, 0x0049, 0x0306, 0x0069, 0x0306, 0x0049, 0x0328, 8248c2ecf20Sopenharmony_ci 0x0069, 0x0328, 0x0049, 0x0307, 0x004a, 0x0302, 0x006a, 0x0302, 8258c2ecf20Sopenharmony_ci 0x004b, 0x0327, 0x006b, 0x0327, 0x004c, 0x0301, 0x006c, 0x0301, 8268c2ecf20Sopenharmony_ci 0x004c, 0x0327, 0x006c, 0x0327, 0x004c, 0x030c, 0x006c, 0x030c, 8278c2ecf20Sopenharmony_ci 0x004e, 0x0301, 0x006e, 0x0301, 0x004e, 0x0327, 0x006e, 0x0327, 8288c2ecf20Sopenharmony_ci 0x004e, 0x030c, 0x006e, 0x030c, 0x004f, 0x0304, 0x006f, 0x0304, 8298c2ecf20Sopenharmony_ci 0x004f, 0x0306, 0x006f, 0x0306, 0x004f, 0x030b, 0x006f, 0x030b, 8308c2ecf20Sopenharmony_ci 0x0052, 0x0301, 0x0072, 0x0301, 0x0052, 0x0327, 0x0072, 0x0327, 8318c2ecf20Sopenharmony_ci 0x0052, 0x030c, 0x0072, 0x030c, 0x0053, 0x0301, 0x0073, 0x0301, 8328c2ecf20Sopenharmony_ci 0x0053, 0x0302, 0x0073, 0x0302, 0x0053, 0x0327, 0x0073, 0x0327, 8338c2ecf20Sopenharmony_ci 0x0053, 0x030c, 0x0073, 0x030c, 0x0054, 0x0327, 0x0074, 0x0327, 8348c2ecf20Sopenharmony_ci 0x0054, 0x030c, 0x0074, 0x030c, 0x0055, 0x0303, 0x0075, 0x0303, 8358c2ecf20Sopenharmony_ci 0x0055, 0x0304, 0x0075, 0x0304, 0x0055, 0x0306, 0x0075, 0x0306, 8368c2ecf20Sopenharmony_ci 0x0055, 0x030a, 0x0075, 0x030a, 0x0055, 0x030b, 0x0075, 0x030b, 8378c2ecf20Sopenharmony_ci 0x0055, 0x0328, 0x0075, 0x0328, 0x0057, 0x0302, 0x0077, 0x0302, 8388c2ecf20Sopenharmony_ci 0x0059, 0x0302, 0x0079, 0x0302, 0x0059, 0x0308, 0x005a, 0x0301, 8398c2ecf20Sopenharmony_ci 0x007a, 0x0301, 0x005a, 0x0307, 0x007a, 0x0307, 0x005a, 0x030c, 8408c2ecf20Sopenharmony_ci 0x007a, 0x030c, 0x004f, 0x031b, 0x006f, 0x031b, 0x0055, 0x031b, 8418c2ecf20Sopenharmony_ci 0x0075, 0x031b, 0x0041, 0x030c, 0x0061, 0x030c, 0x0049, 0x030c, 8428c2ecf20Sopenharmony_ci 0x0069, 0x030c, 0x004f, 0x030c, 0x006f, 0x030c, 0x0055, 0x030c, 8438c2ecf20Sopenharmony_ci 0x0075, 0x030c, 0x0055, 0x0308, 0x0304, 0x0075, 0x0308, 0x0304, 8448c2ecf20Sopenharmony_ci 0x0055, 0x0308, 0x0301, 0x0075, 0x0308, 0x0301, 0x0055, 0x0308, 8458c2ecf20Sopenharmony_ci 0x030c, 0x0075, 0x0308, 0x030c, 0x0055, 0x0308, 0x0300, 0x0075, 8468c2ecf20Sopenharmony_ci 0x0308, 0x0300, 0x0041, 0x0308, 0x0304, 0x0061, 0x0308, 0x0304, 8478c2ecf20Sopenharmony_ci 0x0041, 0x0307, 0x0304, 0x0061, 0x0307, 0x0304, 0x00c6, 0x0304, 8488c2ecf20Sopenharmony_ci 0x00e6, 0x0304, 0x0047, 0x030c, 0x0067, 0x030c, 0x004b, 0x030c, 8498c2ecf20Sopenharmony_ci 0x006b, 0x030c, 0x004f, 0x0328, 0x006f, 0x0328, 0x004f, 0x0328, 8508c2ecf20Sopenharmony_ci 0x0304, 0x006f, 0x0328, 0x0304, 0x01b7, 0x030c, 0x0292, 0x030c, 8518c2ecf20Sopenharmony_ci 0x006a, 0x030c, 0x0047, 0x0301, 0x0067, 0x0301, 0x0041, 0x030a, 8528c2ecf20Sopenharmony_ci 0x0301, 0x0061, 0x030a, 0x0301, 0x00c6, 0x0301, 0x00e6, 0x0301, 8538c2ecf20Sopenharmony_ci 0x00d8, 0x0301, 0x00f8, 0x0301, 0x0041, 0x030f, 0x0061, 0x030f, 8548c2ecf20Sopenharmony_ci 0x0041, 0x0311, 0x0061, 0x0311, 0x0045, 0x030f, 0x0065, 0x030f, 8558c2ecf20Sopenharmony_ci 0x0045, 0x0311, 0x0065, 0x0311, 0x0049, 0x030f, 0x0069, 0x030f, 8568c2ecf20Sopenharmony_ci 0x0049, 0x0311, 0x0069, 0x0311, 0x004f, 0x030f, 0x006f, 0x030f, 8578c2ecf20Sopenharmony_ci 0x004f, 0x0311, 0x006f, 0x0311, 0x0052, 0x030f, 0x0072, 0x030f, 8588c2ecf20Sopenharmony_ci 0x0052, 0x0311, 0x0072, 0x0311, 0x0055, 0x030f, 0x0075, 0x030f, 8598c2ecf20Sopenharmony_ci 0x0055, 0x0311, 0x0075, 0x0311, 0x0306, 0x0307, 0x0300, 0x0301, 8608c2ecf20Sopenharmony_ci 0x0313, 0x0308, 0x030d, 0x02b9, 0x003b, 0x00a8, 0x030d, 0x0391, 8618c2ecf20Sopenharmony_ci 0x030d, 0x00b7, 0x0395, 0x030d, 0x0397, 0x030d, 0x0399, 0x030d, 8628c2ecf20Sopenharmony_ci 0x039f, 0x030d, 0x03a5, 0x030d, 0x03a9, 0x030d, 0x03b9, 0x0308, 8638c2ecf20Sopenharmony_ci 0x030d, 0x0399, 0x0308, 0x03a5, 0x0308, 0x03b1, 0x030d, 0x03b5, 8648c2ecf20Sopenharmony_ci 0x030d, 0x03b7, 0x030d, 0x03b9, 0x030d, 0x03c5, 0x0308, 0x030d, 8658c2ecf20Sopenharmony_ci 0x03b9, 0x0308, 0x03c5, 0x0308, 0x03bf, 0x030d, 0x03c5, 0x030d, 8668c2ecf20Sopenharmony_ci 0x03c9, 0x030d, 0x03d2, 0x030d, 0x03d2, 0x0308, 0x0415, 0x0308, 8678c2ecf20Sopenharmony_ci 0x0413, 0x0301, 0x0406, 0x0308, 0x041a, 0x0301, 0x0423, 0x0306, 8688c2ecf20Sopenharmony_ci 0x0418, 0x0306, 0x0438, 0x0306, 0x0435, 0x0308, 0x0433, 0x0301, 8698c2ecf20Sopenharmony_ci 0x0456, 0x0308, 0x043a, 0x0301, 0x0443, 0x0306, 0x0474, 0x030f, 8708c2ecf20Sopenharmony_ci 0x0475, 0x030f, 0x0416, 0x0306, 0x0436, 0x0306, 0x0410, 0x0306, 8718c2ecf20Sopenharmony_ci 0x0430, 0x0306, 0x0410, 0x0308, 0x0430, 0x0308, 0x00c6, 0x00e6, 8728c2ecf20Sopenharmony_ci 0x0415, 0x0306, 0x0435, 0x0306, 0x018f, 0x0259, 0x018f, 0x0308, 8738c2ecf20Sopenharmony_ci 0x0259, 0x0308, 0x0416, 0x0308, 0x0436, 0x0308, 0x0417, 0x0308, 8748c2ecf20Sopenharmony_ci 0x0437, 0x0308, 0x01b7, 0x0292, 0x0418, 0x0304, 0x0438, 0x0304, 8758c2ecf20Sopenharmony_ci 0x0418, 0x0308, 0x0438, 0x0308, 0x041e, 0x0308, 0x043e, 0x0308, 8768c2ecf20Sopenharmony_ci 0x019f, 0x0275, 0x019f, 0x0308, 0x0275, 0x0308, 0x0423, 0x0304, 8778c2ecf20Sopenharmony_ci 0x0443, 0x0304, 0x0423, 0x0308, 0x0443, 0x0308, 0x0423, 0x030b, 8788c2ecf20Sopenharmony_ci 0x0443, 0x030b, 0x0427, 0x0308, 0x0447, 0x0308, 0x042b, 0x0308, 8798c2ecf20Sopenharmony_ci 0x044b, 0x0308, 0x0928, 0x093c, 0x0930, 0x093c, 0x0933, 0x093c, 8808c2ecf20Sopenharmony_ci 0x0915, 0x093c, 0x0916, 0x093c, 0x0917, 0x093c, 0x091c, 0x093c, 8818c2ecf20Sopenharmony_ci 0x0921, 0x093c, 0x0922, 0x093c, 0x092b, 0x093c, 0x092f, 0x093c, 8828c2ecf20Sopenharmony_ci 0x09ac, 0x09bc, 0x09c7, 0x09be, 0x09c7, 0x09d7, 0x09a1, 0x09bc, 8838c2ecf20Sopenharmony_ci 0x09a2, 0x09bc, 0x09af, 0x09bc, 0x0a16, 0x0a3c, 0x0a17, 0x0a3c, 8848c2ecf20Sopenharmony_ci 0x0a1c, 0x0a3c, 0x0a21, 0x0a3c, 0x0a2b, 0x0a3c, 0x0b47, 0x0b56, 8858c2ecf20Sopenharmony_ci 0x0b47, 0x0b3e, 0x0b47, 0x0b57, 0x0b21, 0x0b3c, 0x0b22, 0x0b3c, 8868c2ecf20Sopenharmony_ci 0x0b2f, 0x0b3c, 0x0b92, 0x0bd7, 0x0bc6, 0x0bbe, 0x0bc7, 0x0bbe, 8878c2ecf20Sopenharmony_ci 0x0bc6, 0x0bd7, 0x0c46, 0x0c56, 0x0cbf, 0x0cd5, 0x0cc6, 0x0cd5, 8888c2ecf20Sopenharmony_ci 0x0cc6, 0x0cd6, 0x0cc6, 0x0cc2, 0x0cc6, 0x0cc2, 0x0cd5, 0x0d46, 8898c2ecf20Sopenharmony_ci 0x0d3e, 0x0d47, 0x0d3e, 0x0d46, 0x0d57, 0x0e4d, 0x0e32, 0x0ecd, 8908c2ecf20Sopenharmony_ci 0x0eb2, 0x0f42, 0x0fb7, 0x0f4c, 0x0fb7, 0x0f51, 0x0fb7, 0x0f56, 8918c2ecf20Sopenharmony_ci 0x0fb7, 0x0f5b, 0x0fb7, 0x0f40, 0x0fb5, 0x0f72, 0x0f71, 0x0f74, 8928c2ecf20Sopenharmony_ci 0x0f71, 0x0fb2, 0x0f80, 0x0fb2, 0x0f80, 0x0f71, 0x0fb3, 0x0f80, 8938c2ecf20Sopenharmony_ci 0x0fb3, 0x0f80, 0x0f71, 0x0f80, 0x0f71, 0x0f92, 0x0fb7, 0x0f9c, 8948c2ecf20Sopenharmony_ci 0x0fb7, 0x0fa1, 0x0fb7, 0x0fa6, 0x0fb7, 0x0fab, 0x0fb7, 0x0f90, 8958c2ecf20Sopenharmony_ci 0x0fb5, 0x0041, 0x0325, 0x0061, 0x0325, 0x0042, 0x0307, 0x0062, 8968c2ecf20Sopenharmony_ci 0x0307, 0x0042, 0x0323, 0x0062, 0x0323, 0x0042, 0x0331, 0x0062, 8978c2ecf20Sopenharmony_ci 0x0331, 0x0043, 0x0327, 0x0301, 0x0063, 0x0327, 0x0301, 0x0044, 8988c2ecf20Sopenharmony_ci 0x0307, 0x0064, 0x0307, 0x0044, 0x0323, 0x0064, 0x0323, 0x0044, 8998c2ecf20Sopenharmony_ci 0x0331, 0x0064, 0x0331, 0x0044, 0x0327, 0x0064, 0x0327, 0x0044, 9008c2ecf20Sopenharmony_ci 0x032d, 0x0064, 0x032d, 0x0045, 0x0304, 0x0300, 0x0065, 0x0304, 9018c2ecf20Sopenharmony_ci 0x0300, 0x0045, 0x0304, 0x0301, 0x0065, 0x0304, 0x0301, 0x0045, 9028c2ecf20Sopenharmony_ci 0x032d, 0x0065, 0x032d, 0x0045, 0x0330, 0x0065, 0x0330, 0x0045, 9038c2ecf20Sopenharmony_ci 0x0327, 0x0306, 0x0065, 0x0327, 0x0306, 0x0046, 0x0307, 0x0066, 9048c2ecf20Sopenharmony_ci 0x0307, 0x0047, 0x0304, 0x0067, 0x0304, 0x0048, 0x0307, 0x0068, 9058c2ecf20Sopenharmony_ci 0x0307, 0x0048, 0x0323, 0x0068, 0x0323, 0x0048, 0x0308, 0x0068, 9068c2ecf20Sopenharmony_ci 0x0308, 0x0048, 0x0327, 0x0068, 0x0327, 0x0048, 0x032e, 0x0068, 9078c2ecf20Sopenharmony_ci 0x032e, 0x0049, 0x0330, 0x0069, 0x0330, 0x0049, 0x0308, 0x0301, 9088c2ecf20Sopenharmony_ci 0x0069, 0x0308, 0x0301, 0x004b, 0x0301, 0x006b, 0x0301, 0x004b, 9098c2ecf20Sopenharmony_ci 0x0323, 0x006b, 0x0323, 0x004b, 0x0331, 0x006b, 0x0331, 0x004c, 9108c2ecf20Sopenharmony_ci 0x0323, 0x006c, 0x0323, 0x004c, 0x0323, 0x0304, 0x006c, 0x0323, 9118c2ecf20Sopenharmony_ci 0x0304, 0x004c, 0x0331, 0x006c, 0x0331, 0x004c, 0x032d, 0x006c, 9128c2ecf20Sopenharmony_ci 0x032d, 0x004d, 0x0301, 0x006d, 0x0301, 0x004d, 0x0307, 0x006d, 9138c2ecf20Sopenharmony_ci 0x0307, 0x004d, 0x0323, 0x006d, 0x0323, 0x004e, 0x0307, 0x006e, 9148c2ecf20Sopenharmony_ci 0x0307, 0x004e, 0x0323, 0x006e, 0x0323, 0x004e, 0x0331, 0x006e, 9158c2ecf20Sopenharmony_ci 0x0331, 0x004e, 0x032d, 0x006e, 0x032d, 0x004f, 0x0303, 0x0301, 9168c2ecf20Sopenharmony_ci 0x006f, 0x0303, 0x0301, 0x004f, 0x0303, 0x0308, 0x006f, 0x0303, 9178c2ecf20Sopenharmony_ci 0x0308, 0x004f, 0x0304, 0x0300, 0x006f, 0x0304, 0x0300, 0x004f, 9188c2ecf20Sopenharmony_ci 0x0304, 0x0301, 0x006f, 0x0304, 0x0301, 0x0050, 0x0301, 0x0070, 9198c2ecf20Sopenharmony_ci 0x0301, 0x0050, 0x0307, 0x0070, 0x0307, 0x0052, 0x0307, 0x0072, 9208c2ecf20Sopenharmony_ci 0x0307, 0x0052, 0x0323, 0x0072, 0x0323, 0x0052, 0x0323, 0x0304, 9218c2ecf20Sopenharmony_ci 0x0072, 0x0323, 0x0304, 0x0052, 0x0331, 0x0072, 0x0331, 0x0053, 9228c2ecf20Sopenharmony_ci 0x0307, 0x0073, 0x0307, 0x0053, 0x0323, 0x0073, 0x0323, 0x0053, 9238c2ecf20Sopenharmony_ci 0x0301, 0x0307, 0x0073, 0x0301, 0x0307, 0x0053, 0x030c, 0x0307, 9248c2ecf20Sopenharmony_ci 0x0073, 0x030c, 0x0307, 0x0053, 0x0323, 0x0307, 0x0073, 0x0323, 9258c2ecf20Sopenharmony_ci 0x0307, 0x0054, 0x0307, 0x0074, 0x0307, 0x0054, 0x0323, 0x0074, 9268c2ecf20Sopenharmony_ci 0x0323, 0x0054, 0x0331, 0x0074, 0x0331, 0x0054, 0x032d, 0x0074, 9278c2ecf20Sopenharmony_ci 0x032d, 0x0055, 0x0324, 0x0075, 0x0324, 0x0055, 0x0330, 0x0075, 9288c2ecf20Sopenharmony_ci 0x0330, 0x0055, 0x032d, 0x0075, 0x032d, 0x0055, 0x0303, 0x0301, 9298c2ecf20Sopenharmony_ci 0x0075, 0x0303, 0x0301, 0x0055, 0x0304, 0x0308, 0x0075, 0x0304, 9308c2ecf20Sopenharmony_ci 0x0308, 0x0056, 0x0303, 0x0076, 0x0303, 0x0056, 0x0323, 0x0076, 9318c2ecf20Sopenharmony_ci 0x0323, 0x0057, 0x0300, 0x0077, 0x0300, 0x0057, 0x0301, 0x0077, 9328c2ecf20Sopenharmony_ci 0x0301, 0x0057, 0x0308, 0x0077, 0x0308, 0x0057, 0x0307, 0x0077, 9338c2ecf20Sopenharmony_ci 0x0307, 0x0057, 0x0323, 0x0077, 0x0323, 0x0058, 0x0307, 0x0078, 9348c2ecf20Sopenharmony_ci 0x0307, 0x0058, 0x0308, 0x0078, 0x0308, 0x0059, 0x0307, 0x0079, 9358c2ecf20Sopenharmony_ci 0x0307, 0x005a, 0x0302, 0x007a, 0x0302, 0x005a, 0x0323, 0x007a, 9368c2ecf20Sopenharmony_ci 0x0323, 0x005a, 0x0331, 0x007a, 0x0331, 0x0068, 0x0331, 0x0074, 9378c2ecf20Sopenharmony_ci 0x0308, 0x0077, 0x030a, 0x0079, 0x030a, 0x017f, 0x0307, 0x0041, 9388c2ecf20Sopenharmony_ci 0x0323, 0x0061, 0x0323, 0x0041, 0x0309, 0x0061, 0x0309, 0x0041, 9398c2ecf20Sopenharmony_ci 0x0302, 0x0301, 0x0061, 0x0302, 0x0301, 0x0041, 0x0302, 0x0300, 9408c2ecf20Sopenharmony_ci 0x0061, 0x0302, 0x0300, 0x0041, 0x0302, 0x0309, 0x0061, 0x0302, 9418c2ecf20Sopenharmony_ci 0x0309, 0x0041, 0x0302, 0x0303, 0x0061, 0x0302, 0x0303, 0x0041, 9428c2ecf20Sopenharmony_ci 0x0323, 0x0302, 0x0061, 0x0323, 0x0302, 0x0041, 0x0306, 0x0301, 9438c2ecf20Sopenharmony_ci 0x0061, 0x0306, 0x0301, 0x0041, 0x0306, 0x0300, 0x0061, 0x0306, 9448c2ecf20Sopenharmony_ci 0x0300, 0x0041, 0x0306, 0x0309, 0x0061, 0x0306, 0x0309, 0x0041, 9458c2ecf20Sopenharmony_ci 0x0306, 0x0303, 0x0061, 0x0306, 0x0303, 0x0041, 0x0323, 0x0306, 9468c2ecf20Sopenharmony_ci 0x0061, 0x0323, 0x0306, 0x0045, 0x0323, 0x0065, 0x0323, 0x0045, 9478c2ecf20Sopenharmony_ci 0x0309, 0x0065, 0x0309, 0x0045, 0x0303, 0x0065, 0x0303, 0x0045, 9488c2ecf20Sopenharmony_ci 0x0302, 0x0301, 0x0065, 0x0302, 0x0301, 0x0045, 0x0302, 0x0300, 9498c2ecf20Sopenharmony_ci 0x0065, 0x0302, 0x0300, 0x0045, 0x0302, 0x0309, 0x0065, 0x0302, 9508c2ecf20Sopenharmony_ci 0x0309, 0x0045, 0x0302, 0x0303, 0x0065, 0x0302, 0x0303, 0x0045, 9518c2ecf20Sopenharmony_ci 0x0323, 0x0302, 0x0065, 0x0323, 0x0302, 0x0049, 0x0309, 0x0069, 9528c2ecf20Sopenharmony_ci 0x0309, 0x0049, 0x0323, 0x0069, 0x0323, 0x004f, 0x0323, 0x006f, 9538c2ecf20Sopenharmony_ci 0x0323, 0x004f, 0x0309, 0x006f, 0x0309, 0x004f, 0x0302, 0x0301, 9548c2ecf20Sopenharmony_ci 0x006f, 0x0302, 0x0301, 0x004f, 0x0302, 0x0300, 0x006f, 0x0302, 9558c2ecf20Sopenharmony_ci 0x0300, 0x004f, 0x0302, 0x0309, 0x006f, 0x0302, 0x0309, 0x004f, 9568c2ecf20Sopenharmony_ci 0x0302, 0x0303, 0x006f, 0x0302, 0x0303, 0x004f, 0x0323, 0x0302, 9578c2ecf20Sopenharmony_ci 0x006f, 0x0323, 0x0302, 0x004f, 0x031b, 0x0301, 0x006f, 0x031b, 9588c2ecf20Sopenharmony_ci 0x0301, 0x004f, 0x031b, 0x0300, 0x006f, 0x031b, 0x0300, 0x004f, 9598c2ecf20Sopenharmony_ci 0x031b, 0x0309, 0x006f, 0x031b, 0x0309, 0x004f, 0x031b, 0x0303, 9608c2ecf20Sopenharmony_ci 0x006f, 0x031b, 0x0303, 0x004f, 0x031b, 0x0323, 0x006f, 0x031b, 9618c2ecf20Sopenharmony_ci 0x0323, 0x0055, 0x0323, 0x0075, 0x0323, 0x0055, 0x0309, 0x0075, 9628c2ecf20Sopenharmony_ci 0x0309, 0x0055, 0x031b, 0x0301, 0x0075, 0x031b, 0x0301, 0x0055, 9638c2ecf20Sopenharmony_ci 0x031b, 0x0300, 0x0075, 0x031b, 0x0300, 0x0055, 0x031b, 0x0309, 9648c2ecf20Sopenharmony_ci 0x0075, 0x031b, 0x0309, 0x0055, 0x031b, 0x0303, 0x0075, 0x031b, 9658c2ecf20Sopenharmony_ci 0x0303, 0x0055, 0x031b, 0x0323, 0x0075, 0x031b, 0x0323, 0x0059, 9668c2ecf20Sopenharmony_ci 0x0300, 0x0079, 0x0300, 0x0059, 0x0323, 0x0079, 0x0323, 0x0059, 9678c2ecf20Sopenharmony_ci 0x0309, 0x0079, 0x0309, 0x0059, 0x0303, 0x0079, 0x0303, 0x03b1, 9688c2ecf20Sopenharmony_ci 0x0313, 0x03b1, 0x0314, 0x03b1, 0x0313, 0x0300, 0x03b1, 0x0314, 9698c2ecf20Sopenharmony_ci 0x0300, 0x03b1, 0x0313, 0x0301, 0x03b1, 0x0314, 0x0301, 0x03b1, 9708c2ecf20Sopenharmony_ci 0x0313, 0x0342, 0x03b1, 0x0314, 0x0342, 0x0391, 0x0313, 0x0391, 9718c2ecf20Sopenharmony_ci 0x0314, 0x0391, 0x0313, 0x0300, 0x0391, 0x0314, 0x0300, 0x0391, 9728c2ecf20Sopenharmony_ci 0x0313, 0x0301, 0x0391, 0x0314, 0x0301, 0x0391, 0x0313, 0x0342, 9738c2ecf20Sopenharmony_ci 0x0391, 0x0314, 0x0342, 0x03b5, 0x0313, 0x03b5, 0x0314, 0x03b5, 9748c2ecf20Sopenharmony_ci 0x0313, 0x0300, 0x03b5, 0x0314, 0x0300, 0x03b5, 0x0313, 0x0301, 9758c2ecf20Sopenharmony_ci 0x03b5, 0x0314, 0x0301, 0x0395, 0x0313, 0x0395, 0x0314, 0x0395, 9768c2ecf20Sopenharmony_ci 0x0313, 0x0300, 0x0395, 0x0314, 0x0300, 0x0395, 0x0313, 0x0301, 9778c2ecf20Sopenharmony_ci 0x0395, 0x0314, 0x0301, 0x03b7, 0x0313, 0x03b7, 0x0314, 0x03b7, 9788c2ecf20Sopenharmony_ci 0x0313, 0x0300, 0x03b7, 0x0314, 0x0300, 0x03b7, 0x0313, 0x0301, 9798c2ecf20Sopenharmony_ci 0x03b7, 0x0314, 0x0301, 0x03b7, 0x0313, 0x0342, 0x03b7, 0x0314, 9808c2ecf20Sopenharmony_ci 0x0342, 0x0397, 0x0313, 0x0397, 0x0314, 0x0397, 0x0313, 0x0300, 9818c2ecf20Sopenharmony_ci 0x0397, 0x0314, 0x0300, 0x0397, 0x0313, 0x0301, 0x0397, 0x0314, 9828c2ecf20Sopenharmony_ci 0x0301, 0x0397, 0x0313, 0x0342, 0x0397, 0x0314, 0x0342, 0x03b9, 9838c2ecf20Sopenharmony_ci 0x0313, 0x03b9, 0x0314, 0x03b9, 0x0313, 0x0300, 0x03b9, 0x0314, 9848c2ecf20Sopenharmony_ci 0x0300, 0x03b9, 0x0313, 0x0301, 0x03b9, 0x0314, 0x0301, 0x03b9, 9858c2ecf20Sopenharmony_ci 0x0313, 0x0342, 0x03b9, 0x0314, 0x0342, 0x0399, 0x0313, 0x0399, 9868c2ecf20Sopenharmony_ci 0x0314, 0x0399, 0x0313, 0x0300, 0x0399, 0x0314, 0x0300, 0x0399, 9878c2ecf20Sopenharmony_ci 0x0313, 0x0301, 0x0399, 0x0314, 0x0301, 0x0399, 0x0313, 0x0342, 9888c2ecf20Sopenharmony_ci 0x0399, 0x0314, 0x0342, 0x03bf, 0x0313, 0x03bf, 0x0314, 0x03bf, 9898c2ecf20Sopenharmony_ci 0x0313, 0x0300, 0x03bf, 0x0314, 0x0300, 0x03bf, 0x0313, 0x0301, 9908c2ecf20Sopenharmony_ci 0x03bf, 0x0314, 0x0301, 0x039f, 0x0313, 0x039f, 0x0314, 0x039f, 9918c2ecf20Sopenharmony_ci 0x0313, 0x0300, 0x039f, 0x0314, 0x0300, 0x039f, 0x0313, 0x0301, 9928c2ecf20Sopenharmony_ci 0x039f, 0x0314, 0x0301, 0x03c5, 0x0313, 0x03c5, 0x0314, 0x03c5, 9938c2ecf20Sopenharmony_ci 0x0313, 0x0300, 0x03c5, 0x0314, 0x0300, 0x03c5, 0x0313, 0x0301, 9948c2ecf20Sopenharmony_ci 0x03c5, 0x0314, 0x0301, 0x03c5, 0x0313, 0x0342, 0x03c5, 0x0314, 9958c2ecf20Sopenharmony_ci 0x0342, 0x03a5, 0x0314, 0x03a5, 0x0314, 0x0300, 0x03a5, 0x0314, 9968c2ecf20Sopenharmony_ci 0x0301, 0x03a5, 0x0314, 0x0342, 0x03c9, 0x0313, 0x03c9, 0x0314, 9978c2ecf20Sopenharmony_ci 0x03c9, 0x0313, 0x0300, 0x03c9, 0x0314, 0x0300, 0x03c9, 0x0313, 9988c2ecf20Sopenharmony_ci 0x0301, 0x03c9, 0x0314, 0x0301, 0x03c9, 0x0313, 0x0342, 0x03c9, 9998c2ecf20Sopenharmony_ci 0x0314, 0x0342, 0x03a9, 0x0313, 0x03a9, 0x0314, 0x03a9, 0x0313, 10008c2ecf20Sopenharmony_ci 0x0300, 0x03a9, 0x0314, 0x0300, 0x03a9, 0x0313, 0x0301, 0x03a9, 10018c2ecf20Sopenharmony_ci 0x0314, 0x0301, 0x03a9, 0x0313, 0x0342, 0x03a9, 0x0314, 0x0342, 10028c2ecf20Sopenharmony_ci 0x03b1, 0x0300, 0x03b1, 0x0301, 0x03b5, 0x0300, 0x03b5, 0x0301, 10038c2ecf20Sopenharmony_ci 0x03b7, 0x0300, 0x03b7, 0x0301, 0x03b9, 0x0300, 0x03b9, 0x0301, 10048c2ecf20Sopenharmony_ci 0x03bf, 0x0300, 0x03bf, 0x0301, 0x03c5, 0x0300, 0x03c5, 0x0301, 10058c2ecf20Sopenharmony_ci 0x03c9, 0x0300, 0x03c9, 0x0301, 0x03b1, 0x0345, 0x0313, 0x03b1, 10068c2ecf20Sopenharmony_ci 0x0345, 0x0314, 0x03b1, 0x0345, 0x0313, 0x0300, 0x03b1, 0x0345, 10078c2ecf20Sopenharmony_ci 0x0314, 0x0300, 0x03b1, 0x0345, 0x0313, 0x0301, 0x03b1, 0x0345, 10088c2ecf20Sopenharmony_ci 0x0314, 0x0301, 0x03b1, 0x0345, 0x0313, 0x0342, 0x03b1, 0x0345, 10098c2ecf20Sopenharmony_ci 0x0314, 0x0342, 0x0391, 0x0345, 0x0313, 0x0391, 0x0345, 0x0314, 10108c2ecf20Sopenharmony_ci 0x0391, 0x0345, 0x0313, 0x0300, 0x0391, 0x0345, 0x0314, 0x0300, 10118c2ecf20Sopenharmony_ci 0x0391, 0x0345, 0x0313, 0x0301, 0x0391, 0x0345, 0x0314, 0x0301, 10128c2ecf20Sopenharmony_ci 0x0391, 0x0345, 0x0313, 0x0342, 0x0391, 0x0345, 0x0314, 0x0342, 10138c2ecf20Sopenharmony_ci 0x03b7, 0x0345, 0x0313, 0x03b7, 0x0345, 0x0314, 0x03b7, 0x0345, 10148c2ecf20Sopenharmony_ci 0x0313, 0x0300, 0x03b7, 0x0345, 0x0314, 0x0300, 0x03b7, 0x0345, 10158c2ecf20Sopenharmony_ci 0x0313, 0x0301, 0x03b7, 0x0345, 0x0314, 0x0301, 0x03b7, 0x0345, 10168c2ecf20Sopenharmony_ci 0x0313, 0x0342, 0x03b7, 0x0345, 0x0314, 0x0342, 0x0397, 0x0345, 10178c2ecf20Sopenharmony_ci 0x0313, 0x0397, 0x0345, 0x0314, 0x0397, 0x0345, 0x0313, 0x0300, 10188c2ecf20Sopenharmony_ci 0x0397, 0x0345, 0x0314, 0x0300, 0x0397, 0x0345, 0x0313, 0x0301, 10198c2ecf20Sopenharmony_ci 0x0397, 0x0345, 0x0314, 0x0301, 0x0397, 0x0345, 0x0313, 0x0342, 10208c2ecf20Sopenharmony_ci 0x0397, 0x0345, 0x0314, 0x0342, 0x03c9, 0x0345, 0x0313, 0x03c9, 10218c2ecf20Sopenharmony_ci 0x0345, 0x0314, 0x03c9, 0x0345, 0x0313, 0x0300, 0x03c9, 0x0345, 10228c2ecf20Sopenharmony_ci 0x0314, 0x0300, 0x03c9, 0x0345, 0x0313, 0x0301, 0x03c9, 0x0345, 10238c2ecf20Sopenharmony_ci 0x0314, 0x0301, 0x03c9, 0x0345, 0x0313, 0x0342, 0x03c9, 0x0345, 10248c2ecf20Sopenharmony_ci 0x0314, 0x0342, 0x03a9, 0x0345, 0x0313, 0x03a9, 0x0345, 0x0314, 10258c2ecf20Sopenharmony_ci 0x03a9, 0x0345, 0x0313, 0x0300, 0x03a9, 0x0345, 0x0314, 0x0300, 10268c2ecf20Sopenharmony_ci 0x03a9, 0x0345, 0x0313, 0x0301, 0x03a9, 0x0345, 0x0314, 0x0301, 10278c2ecf20Sopenharmony_ci 0x03a9, 0x0345, 0x0313, 0x0342, 0x03a9, 0x0345, 0x0314, 0x0342, 10288c2ecf20Sopenharmony_ci 0x03b1, 0x0306, 0x03b1, 0x0304, 0x03b1, 0x0345, 0x0300, 0x03b1, 10298c2ecf20Sopenharmony_ci 0x0345, 0x03b1, 0x0345, 0x0301, 0x03b1, 0x0342, 0x03b1, 0x0345, 10308c2ecf20Sopenharmony_ci 0x0342, 0x0391, 0x0306, 0x0391, 0x0304, 0x0391, 0x0300, 0x0391, 10318c2ecf20Sopenharmony_ci 0x0301, 0x0391, 0x0345, 0x03b9, 0x00a8, 0x0342, 0x03b7, 0x0345, 10328c2ecf20Sopenharmony_ci 0x0300, 0x03b7, 0x0345, 0x03b7, 0x0345, 0x0301, 0x03b7, 0x0342, 10338c2ecf20Sopenharmony_ci 0x03b7, 0x0345, 0x0342, 0x0395, 0x0300, 0x0395, 0x0301, 0x0397, 10348c2ecf20Sopenharmony_ci 0x0300, 0x0397, 0x0301, 0x0397, 0x0345, 0x1fbf, 0x0300, 0x1fbf, 10358c2ecf20Sopenharmony_ci 0x0301, 0x1fbf, 0x0342, 0x03b9, 0x0306, 0x03b9, 0x0304, 0x03b9, 10368c2ecf20Sopenharmony_ci 0x0308, 0x0300, 0x03b9, 0x0308, 0x0301, 0x03b9, 0x0342, 0x03b9, 10378c2ecf20Sopenharmony_ci 0x0308, 0x0342, 0x0399, 0x0306, 0x0399, 0x0304, 0x0399, 0x0300, 10388c2ecf20Sopenharmony_ci 0x0399, 0x0301, 0x1ffe, 0x0300, 0x1ffe, 0x0301, 0x1ffe, 0x0342, 10398c2ecf20Sopenharmony_ci 0x03c5, 0x0306, 0x03c5, 0x0304, 0x03c5, 0x0308, 0x0300, 0x03c5, 10408c2ecf20Sopenharmony_ci 0x0308, 0x0301, 0x03c1, 0x0313, 0x03c1, 0x0314, 0x03c5, 0x0342, 10418c2ecf20Sopenharmony_ci 0x03c5, 0x0308, 0x0342, 0x03a5, 0x0306, 0x03a5, 0x0304, 0x03a5, 10428c2ecf20Sopenharmony_ci 0x0300, 0x03a5, 0x0301, 0x03a1, 0x0314, 0x00a8, 0x0300, 0x00a8, 10438c2ecf20Sopenharmony_ci 0x0301, 0x0060, 0x03c9, 0x0345, 0x0300, 0x03c9, 0x0345, 0x03bf, 10448c2ecf20Sopenharmony_ci 0x0345, 0x0301, 0x03c9, 0x0342, 0x03c9, 0x0345, 0x0342, 0x039f, 10458c2ecf20Sopenharmony_ci 0x0300, 0x039f, 0x0301, 0x03a9, 0x0300, 0x03a9, 0x0301, 0x03a9, 10468c2ecf20Sopenharmony_ci 0x0345, 0x00b4, 0x304b, 0x3099, 0x304d, 0x3099, 0x304f, 0x3099, 10478c2ecf20Sopenharmony_ci 0x3051, 0x3099, 0x3053, 0x3099, 0x3055, 0x3099, 0x3057, 0x3099, 10488c2ecf20Sopenharmony_ci 0x3059, 0x3099, 0x305b, 0x3099, 0x305d, 0x3099, 0x305f, 0x3099, 10498c2ecf20Sopenharmony_ci 0x3061, 0x3099, 0x3064, 0x3099, 0x3066, 0x3099, 0x3068, 0x3099, 10508c2ecf20Sopenharmony_ci 0x306f, 0x3099, 0x306f, 0x309a, 0x3072, 0x3099, 0x3072, 0x309a, 10518c2ecf20Sopenharmony_ci 0x3075, 0x3099, 0x3075, 0x309a, 0x3078, 0x3099, 0x3078, 0x309a, 10528c2ecf20Sopenharmony_ci 0x307b, 0x3099, 0x307b, 0x309a, 0x3046, 0x3099, 0x309d, 0x3099, 10538c2ecf20Sopenharmony_ci 0x30ab, 0x3099, 0x30ad, 0x3099, 0x30af, 0x3099, 0x30b1, 0x3099, 10548c2ecf20Sopenharmony_ci 0x30b3, 0x3099, 0x30b5, 0x3099, 0x30b7, 0x3099, 0x30b9, 0x3099, 10558c2ecf20Sopenharmony_ci 0x30bb, 0x3099, 0x30bd, 0x3099, 0x30bf, 0x3099, 0x30c1, 0x3099, 10568c2ecf20Sopenharmony_ci 0x30c4, 0x3099, 0x30c6, 0x3099, 0x30c8, 0x3099, 0x30cf, 0x3099, 10578c2ecf20Sopenharmony_ci 0x30cf, 0x309a, 0x30d2, 0x3099, 0x30d2, 0x309a, 0x30d5, 0x3099, 10588c2ecf20Sopenharmony_ci 0x30d5, 0x309a, 0x30d8, 0x3099, 0x30d8, 0x309a, 0x30db, 0x3099, 10598c2ecf20Sopenharmony_ci 0x30db, 0x309a, 0x30a6, 0x3099, 0x30ef, 0x3099, 0x30f0, 0x3099, 10608c2ecf20Sopenharmony_ci 0x30f1, 0x3099, 0x30f2, 0x3099, 0x30fd, 0x3099, 0x05f2, 0x05b7, 10618c2ecf20Sopenharmony_ci 0x05e9, 0x05c1, 0x05e9, 0x05c2, 0x05e9, 0x05bc, 0x05c1, 0x05e9, 10628c2ecf20Sopenharmony_ci 0x05bc, 0x05c2, 0x05d0, 0x05b7, 0x05d0, 0x05b8, 0x05d0, 0x05bc, 10638c2ecf20Sopenharmony_ci 0x05d1, 0x05bc, 0x05d2, 0x05bc, 0x05d3, 0x05bc, 0x05d4, 0x05bc, 10648c2ecf20Sopenharmony_ci 0x05d5, 0x05bc, 0x05d6, 0x05bc, 0x05d8, 0x05bc, 0x05d9, 0x05bc, 10658c2ecf20Sopenharmony_ci 0x05da, 0x05bc, 0x05db, 0x05bc, 0x05dc, 0x05bc, 0x05de, 0x05bc, 10668c2ecf20Sopenharmony_ci 0x05e0, 0x05bc, 0x05e1, 0x05bc, 0x05e3, 0x05bc, 0x05e4, 0x05bc, 10678c2ecf20Sopenharmony_ci 0x05e6, 0x05bc, 0x05e7, 0x05bc, 0x05e8, 0x05bc, 0x05e9, 0x05bc, 10688c2ecf20Sopenharmony_ci 0x05ea, 0x05bc, 0x05d5, 0x05b9, 0x05d1, 0x05bf, 0x05db, 0x05bf, 10698c2ecf20Sopenharmony_ci 0x05e4, 0x05bf 10708c2ecf20Sopenharmony_ci}; 10718c2ecf20Sopenharmony_ci 10728c2ecf20Sopenharmony_ciu16 hfsplus_compose_table[] = { 10738c2ecf20Sopenharmony_ci /* base */ 10748c2ecf20Sopenharmony_ci 0x0000, 0x0050, 0x0300, 0x00a4, 0x0301, 0x00e4, 0x0302, 0x015c, 10758c2ecf20Sopenharmony_ci 0x0303, 0x0192, 0x0304, 0x01b4, 0x0306, 0x01e6, 0x0307, 0x0220, 10768c2ecf20Sopenharmony_ci 0x0308, 0x0270, 0x0309, 0x02d2, 0x030a, 0x02ec, 0x030b, 0x02fa, 10778c2ecf20Sopenharmony_ci 0x030c, 0x0308, 0x030d, 0x034c, 0x030f, 0x0370, 0x0311, 0x038e, 10788c2ecf20Sopenharmony_ci 0x0313, 0x03a8, 0x0314, 0x03c6, 0x031b, 0x03e8, 0x0323, 0x03f2, 10798c2ecf20Sopenharmony_ci 0x0324, 0x0440, 0x0325, 0x0446, 0x0327, 0x044c, 0x0328, 0x047a, 10808c2ecf20Sopenharmony_ci 0x032d, 0x0490, 0x032e, 0x04aa, 0x0330, 0x04b0, 0x0331, 0x04be, 10818c2ecf20Sopenharmony_ci 0x0342, 0x04e2, 0x0345, 0x04f4, 0x05b7, 0x0504, 0x05b8, 0x050a, 10828c2ecf20Sopenharmony_ci 0x05b9, 0x050e, 0x05bc, 0x0512, 0x05bf, 0x0540, 0x05c1, 0x0548, 10838c2ecf20Sopenharmony_ci 0x05c2, 0x054c, 0x093c, 0x0550, 0x09bc, 0x0568, 0x09be, 0x0572, 10848c2ecf20Sopenharmony_ci 0x09d7, 0x0576, 0x0a3c, 0x057a, 0x0b3c, 0x0586, 0x0b3e, 0x058e, 10858c2ecf20Sopenharmony_ci 0x0b56, 0x0592, 0x0b57, 0x0596, 0x0bbe, 0x059a, 0x0bd7, 0x05a0, 10868c2ecf20Sopenharmony_ci 0x0c56, 0x05a6, 0x0cc2, 0x05aa, 0x0cd5, 0x05ae, 0x0cd6, 0x05b4, 10878c2ecf20Sopenharmony_ci 0x0d3e, 0x05b8, 0x0d57, 0x05be, 0x0e32, 0x05c2, 0x0eb2, 0x05c6, 10888c2ecf20Sopenharmony_ci 0x0f71, 0x05ca, 0x0f80, 0x05d2, 0x0fb5, 0x05d8, 0x0fb7, 0x05de, 10898c2ecf20Sopenharmony_ci 0x1100, 0x00a2, 0x1101, 0x00a2, 0x1102, 0x00a2, 0x1103, 0x00a2, 10908c2ecf20Sopenharmony_ci 0x1104, 0x00a2, 0x1105, 0x00a2, 0x1106, 0x00a2, 0x1107, 0x00a2, 10918c2ecf20Sopenharmony_ci 0x1108, 0x00a2, 0x1109, 0x00a2, 0x110a, 0x00a2, 0x110b, 0x00a2, 10928c2ecf20Sopenharmony_ci 0x110c, 0x00a2, 0x110d, 0x00a2, 0x110e, 0x00a2, 0x110f, 0x00a2, 10938c2ecf20Sopenharmony_ci 0x1110, 0x00a2, 0x1111, 0x00a2, 0x1112, 0x00a2, 0x3099, 0x05f4, 10948c2ecf20Sopenharmony_ci 0x309a, 0x0656, 10958c2ecf20Sopenharmony_ci /* hangul marker */ 10968c2ecf20Sopenharmony_ci 0xffff, 0x0000, 10978c2ecf20Sopenharmony_ci /* 0x0300 */ 10988c2ecf20Sopenharmony_ci 0x0340, 0x001f, 0x0041, 0x066c, 0x0045, 0x066e, 0x0049, 0x0670, 10998c2ecf20Sopenharmony_ci 0x004f, 0x0672, 0x0055, 0x0674, 0x0057, 0x0676, 0x0059, 0x0678, 11008c2ecf20Sopenharmony_ci 0x0061, 0x067a, 0x0065, 0x067c, 0x0069, 0x067e, 0x006f, 0x0680, 11018c2ecf20Sopenharmony_ci 0x0075, 0x0682, 0x0077, 0x0684, 0x0079, 0x0686, 0x00a8, 0x0688, 11028c2ecf20Sopenharmony_ci 0x0391, 0x068a, 0x0395, 0x068c, 0x0397, 0x068e, 0x0399, 0x0690, 11038c2ecf20Sopenharmony_ci 0x039f, 0x0692, 0x03a5, 0x0694, 0x03a9, 0x0696, 0x03b1, 0x0698, 11048c2ecf20Sopenharmony_ci 0x03b5, 0x069a, 0x03b7, 0x069c, 0x03b9, 0x069e, 0x03bf, 0x06a0, 11058c2ecf20Sopenharmony_ci 0x03c5, 0x06a2, 0x03c9, 0x06a4, 0x1fbf, 0x06a6, 0x1ffe, 0x06a8, 11068c2ecf20Sopenharmony_ci /* 0x0301 */ 11078c2ecf20Sopenharmony_ci 0x0341, 0x003b, 0x0041, 0x06aa, 0x0043, 0x06ac, 0x0045, 0x06ae, 11088c2ecf20Sopenharmony_ci 0x0047, 0x06b0, 0x0049, 0x06b2, 0x004b, 0x06b4, 0x004c, 0x06b6, 11098c2ecf20Sopenharmony_ci 0x004d, 0x06b8, 0x004e, 0x06ba, 0x004f, 0x06bc, 0x0050, 0x06be, 11108c2ecf20Sopenharmony_ci 0x0052, 0x06c0, 0x0053, 0x06c2, 0x0055, 0x06c6, 0x0057, 0x06c8, 11118c2ecf20Sopenharmony_ci 0x0059, 0x06ca, 0x005a, 0x06cc, 0x0061, 0x06ce, 0x0063, 0x06d0, 11128c2ecf20Sopenharmony_ci 0x0065, 0x06d2, 0x0067, 0x06d4, 0x0069, 0x06d6, 0x006b, 0x06d8, 11138c2ecf20Sopenharmony_ci 0x006c, 0x06da, 0x006d, 0x06dc, 0x006e, 0x06de, 0x006f, 0x06e0, 11148c2ecf20Sopenharmony_ci 0x0070, 0x06e2, 0x0072, 0x06e4, 0x0073, 0x06e6, 0x0075, 0x06ea, 11158c2ecf20Sopenharmony_ci 0x0077, 0x06ec, 0x0079, 0x06ee, 0x007a, 0x06f0, 0x00a8, 0x06f2, 11168c2ecf20Sopenharmony_ci 0x00c6, 0x06f4, 0x00d8, 0x06f6, 0x00e6, 0x06f8, 0x00f8, 0x06fa, 11178c2ecf20Sopenharmony_ci 0x0391, 0x06fc, 0x0395, 0x06fe, 0x0397, 0x0700, 0x0399, 0x0702, 11188c2ecf20Sopenharmony_ci 0x039f, 0x0704, 0x03a5, 0x0706, 0x03a9, 0x0708, 0x03b1, 0x070a, 11198c2ecf20Sopenharmony_ci 0x03b5, 0x070c, 0x03b7, 0x070e, 0x03b9, 0x0710, 0x03bf, 0x0712, 11208c2ecf20Sopenharmony_ci 0x03c5, 0x0714, 0x03c9, 0x0716, 0x0413, 0x0718, 0x041a, 0x071a, 11218c2ecf20Sopenharmony_ci 0x0433, 0x071c, 0x043a, 0x071e, 0x1fbf, 0x0720, 0x1ffe, 0x0722, 11228c2ecf20Sopenharmony_ci /* 0x0302 */ 11238c2ecf20Sopenharmony_ci 0x0000, 0x001a, 0x0041, 0x0724, 0x0043, 0x072e, 0x0045, 0x0730, 11248c2ecf20Sopenharmony_ci 0x0047, 0x073a, 0x0048, 0x073c, 0x0049, 0x073e, 0x004a, 0x0740, 11258c2ecf20Sopenharmony_ci 0x004f, 0x0742, 0x0053, 0x074c, 0x0055, 0x074e, 0x0057, 0x0750, 11268c2ecf20Sopenharmony_ci 0x0059, 0x0752, 0x005a, 0x0754, 0x0061, 0x0756, 0x0063, 0x0760, 11278c2ecf20Sopenharmony_ci 0x0065, 0x0762, 0x0067, 0x076c, 0x0068, 0x076e, 0x0069, 0x0770, 11288c2ecf20Sopenharmony_ci 0x006a, 0x0772, 0x006f, 0x0774, 0x0073, 0x077e, 0x0075, 0x0780, 11298c2ecf20Sopenharmony_ci 0x0077, 0x0782, 0x0079, 0x0784, 0x007a, 0x0786, 11308c2ecf20Sopenharmony_ci /* 0x0303 */ 11318c2ecf20Sopenharmony_ci 0x0000, 0x0010, 0x0041, 0x0788, 0x0045, 0x078a, 0x0049, 0x078c, 11328c2ecf20Sopenharmony_ci 0x004e, 0x078e, 0x004f, 0x0790, 0x0055, 0x0796, 0x0056, 0x079a, 11338c2ecf20Sopenharmony_ci 0x0059, 0x079c, 0x0061, 0x079e, 0x0065, 0x07a0, 0x0069, 0x07a2, 11348c2ecf20Sopenharmony_ci 0x006e, 0x07a4, 0x006f, 0x07a6, 0x0075, 0x07ac, 0x0076, 0x07b0, 11358c2ecf20Sopenharmony_ci 0x0079, 0x07b2, 11368c2ecf20Sopenharmony_ci /* 0x0304 */ 11378c2ecf20Sopenharmony_ci 0x0000, 0x0018, 0x0041, 0x07b4, 0x0045, 0x07b6, 0x0047, 0x07bc, 11388c2ecf20Sopenharmony_ci 0x0049, 0x07be, 0x004f, 0x07c0, 0x0055, 0x07c6, 0x0061, 0x07ca, 11398c2ecf20Sopenharmony_ci 0x0065, 0x07cc, 0x0067, 0x07d2, 0x0069, 0x07d4, 0x006f, 0x07d6, 11408c2ecf20Sopenharmony_ci 0x0075, 0x07dc, 0x00c6, 0x07e0, 0x00e6, 0x07e2, 0x0391, 0x07e4, 11418c2ecf20Sopenharmony_ci 0x0399, 0x07e6, 0x03a5, 0x07e8, 0x03b1, 0x07ea, 0x03b9, 0x07ec, 11428c2ecf20Sopenharmony_ci 0x03c5, 0x07ee, 0x0418, 0x07f0, 0x0423, 0x07f2, 0x0438, 0x07f4, 11438c2ecf20Sopenharmony_ci 0x0443, 0x07f6, 11448c2ecf20Sopenharmony_ci /* 0x0306 */ 11458c2ecf20Sopenharmony_ci 0x0000, 0x001c, 0x0041, 0x07f8, 0x0045, 0x0802, 0x0047, 0x0804, 11468c2ecf20Sopenharmony_ci 0x0049, 0x0806, 0x004f, 0x0808, 0x0055, 0x080a, 0x0061, 0x080c, 11478c2ecf20Sopenharmony_ci 0x0065, 0x0816, 0x0067, 0x0818, 0x0069, 0x081a, 0x006f, 0x081c, 11488c2ecf20Sopenharmony_ci 0x0075, 0x081e, 0x0391, 0x0820, 0x0399, 0x0822, 0x03a5, 0x0824, 11498c2ecf20Sopenharmony_ci 0x03b1, 0x0826, 0x03b9, 0x0828, 0x03c5, 0x082a, 0x0410, 0x082c, 11508c2ecf20Sopenharmony_ci 0x0415, 0x082e, 0x0416, 0x0830, 0x0418, 0x0832, 0x0423, 0x0834, 11518c2ecf20Sopenharmony_ci 0x0430, 0x0836, 0x0435, 0x0838, 0x0436, 0x083a, 0x0438, 0x083c, 11528c2ecf20Sopenharmony_ci 0x0443, 0x083e, 11538c2ecf20Sopenharmony_ci /* 0x0307 */ 11548c2ecf20Sopenharmony_ci 0x0000, 0x0027, 0x0041, 0x0840, 0x0042, 0x0844, 0x0043, 0x0846, 11558c2ecf20Sopenharmony_ci 0x0044, 0x0848, 0x0045, 0x084a, 0x0046, 0x084c, 0x0047, 0x084e, 11568c2ecf20Sopenharmony_ci 0x0048, 0x0850, 0x0049, 0x0852, 0x004d, 0x0854, 0x004e, 0x0856, 11578c2ecf20Sopenharmony_ci 0x0050, 0x0858, 0x0052, 0x085a, 0x0053, 0x085c, 0x0054, 0x085e, 11588c2ecf20Sopenharmony_ci 0x0057, 0x0860, 0x0058, 0x0862, 0x0059, 0x0864, 0x005a, 0x0866, 11598c2ecf20Sopenharmony_ci 0x0061, 0x0868, 0x0062, 0x086c, 0x0063, 0x086e, 0x0064, 0x0870, 11608c2ecf20Sopenharmony_ci 0x0065, 0x0872, 0x0066, 0x0874, 0x0067, 0x0876, 0x0068, 0x0878, 11618c2ecf20Sopenharmony_ci 0x006d, 0x087a, 0x006e, 0x087c, 0x0070, 0x087e, 0x0072, 0x0880, 11628c2ecf20Sopenharmony_ci 0x0073, 0x0882, 0x0074, 0x0884, 0x0077, 0x0886, 0x0078, 0x0888, 11638c2ecf20Sopenharmony_ci 0x0079, 0x088a, 0x007a, 0x088c, 0x017f, 0x088e, 0x0306, 0x0890, 11648c2ecf20Sopenharmony_ci /* 0x0308 */ 11658c2ecf20Sopenharmony_ci 0x0000, 0x0030, 0x0041, 0x0892, 0x0045, 0x0896, 0x0048, 0x0898, 11668c2ecf20Sopenharmony_ci 0x0049, 0x089a, 0x004f, 0x089e, 0x0055, 0x08a0, 0x0057, 0x08aa, 11678c2ecf20Sopenharmony_ci 0x0058, 0x08ac, 0x0059, 0x08ae, 0x0061, 0x08b0, 0x0065, 0x08b4, 11688c2ecf20Sopenharmony_ci 0x0068, 0x08b6, 0x0069, 0x08b8, 0x006f, 0x08bc, 0x0074, 0x08be, 11698c2ecf20Sopenharmony_ci 0x0075, 0x08c0, 0x0077, 0x08ca, 0x0078, 0x08cc, 0x0079, 0x08ce, 11708c2ecf20Sopenharmony_ci 0x018f, 0x08d0, 0x019f, 0x08d2, 0x0259, 0x08d4, 0x0275, 0x08d6, 11718c2ecf20Sopenharmony_ci 0x0399, 0x08d8, 0x03a5, 0x08da, 0x03b9, 0x08dc, 0x03c5, 0x08e6, 11728c2ecf20Sopenharmony_ci 0x03d2, 0x08f0, 0x0406, 0x08f2, 0x0410, 0x08f4, 0x0415, 0x08f6, 11738c2ecf20Sopenharmony_ci 0x0416, 0x08f8, 0x0417, 0x08fa, 0x0418, 0x08fc, 0x041e, 0x08fe, 11748c2ecf20Sopenharmony_ci 0x0423, 0x0900, 0x0427, 0x0902, 0x042b, 0x0904, 0x0430, 0x0906, 11758c2ecf20Sopenharmony_ci 0x0435, 0x0908, 0x0436, 0x090a, 0x0437, 0x090c, 0x0438, 0x090e, 11768c2ecf20Sopenharmony_ci 0x043e, 0x0910, 0x0443, 0x0912, 0x0447, 0x0914, 0x044b, 0x0916, 11778c2ecf20Sopenharmony_ci 0x0456, 0x0918, 11788c2ecf20Sopenharmony_ci /* 0x0309 */ 11798c2ecf20Sopenharmony_ci 0x0000, 0x000c, 0x0041, 0x091a, 0x0045, 0x091c, 0x0049, 0x091e, 11808c2ecf20Sopenharmony_ci 0x004f, 0x0920, 0x0055, 0x0922, 0x0059, 0x0924, 0x0061, 0x0926, 11818c2ecf20Sopenharmony_ci 0x0065, 0x0928, 0x0069, 0x092a, 0x006f, 0x092c, 0x0075, 0x092e, 11828c2ecf20Sopenharmony_ci 0x0079, 0x0930, 11838c2ecf20Sopenharmony_ci /* 0x030a */ 11848c2ecf20Sopenharmony_ci 0x0000, 0x0006, 0x0041, 0x0932, 0x0055, 0x0936, 0x0061, 0x0938, 11858c2ecf20Sopenharmony_ci 0x0075, 0x093c, 0x0077, 0x093e, 0x0079, 0x0940, 11868c2ecf20Sopenharmony_ci /* 0x030b */ 11878c2ecf20Sopenharmony_ci 0x0000, 0x0006, 0x004f, 0x0942, 0x0055, 0x0944, 0x006f, 0x0946, 11888c2ecf20Sopenharmony_ci 0x0075, 0x0948, 0x0423, 0x094a, 0x0443, 0x094c, 11898c2ecf20Sopenharmony_ci /* 0x030c */ 11908c2ecf20Sopenharmony_ci 0x0000, 0x0021, 0x0041, 0x094e, 0x0043, 0x0950, 0x0044, 0x0952, 11918c2ecf20Sopenharmony_ci 0x0045, 0x0954, 0x0047, 0x0956, 0x0049, 0x0958, 0x004b, 0x095a, 11928c2ecf20Sopenharmony_ci 0x004c, 0x095c, 0x004e, 0x095e, 0x004f, 0x0960, 0x0052, 0x0962, 11938c2ecf20Sopenharmony_ci 0x0053, 0x0964, 0x0054, 0x0968, 0x0055, 0x096a, 0x005a, 0x096c, 11948c2ecf20Sopenharmony_ci 0x0061, 0x096e, 0x0063, 0x0970, 0x0064, 0x0972, 0x0065, 0x0974, 11958c2ecf20Sopenharmony_ci 0x0067, 0x0976, 0x0069, 0x0978, 0x006a, 0x097a, 0x006b, 0x097c, 11968c2ecf20Sopenharmony_ci 0x006c, 0x097e, 0x006e, 0x0980, 0x006f, 0x0982, 0x0072, 0x0984, 11978c2ecf20Sopenharmony_ci 0x0073, 0x0986, 0x0074, 0x098a, 0x0075, 0x098c, 0x007a, 0x098e, 11988c2ecf20Sopenharmony_ci 0x01b7, 0x0990, 0x0292, 0x0992, 11998c2ecf20Sopenharmony_ci /* 0x030d */ 12008c2ecf20Sopenharmony_ci 0x0000, 0x0011, 0x00a8, 0x0994, 0x0308, 0x0996, 0x0391, 0x0998, 12018c2ecf20Sopenharmony_ci 0x0395, 0x099a, 0x0397, 0x099c, 0x0399, 0x099e, 0x039f, 0x09a0, 12028c2ecf20Sopenharmony_ci 0x03a5, 0x09a2, 0x03a9, 0x09a4, 0x03b1, 0x09a6, 0x03b5, 0x09a8, 12038c2ecf20Sopenharmony_ci 0x03b7, 0x09aa, 0x03b9, 0x09ac, 0x03bf, 0x09ae, 0x03c5, 0x09b0, 12048c2ecf20Sopenharmony_ci 0x03c9, 0x09b2, 0x03d2, 0x09b4, 12058c2ecf20Sopenharmony_ci /* 0x030f */ 12068c2ecf20Sopenharmony_ci 0x0000, 0x000e, 0x0041, 0x09b6, 0x0045, 0x09b8, 0x0049, 0x09ba, 12078c2ecf20Sopenharmony_ci 0x004f, 0x09bc, 0x0052, 0x09be, 0x0055, 0x09c0, 0x0061, 0x09c2, 12088c2ecf20Sopenharmony_ci 0x0065, 0x09c4, 0x0069, 0x09c6, 0x006f, 0x09c8, 0x0072, 0x09ca, 12098c2ecf20Sopenharmony_ci 0x0075, 0x09cc, 0x0474, 0x09ce, 0x0475, 0x09d0, 12108c2ecf20Sopenharmony_ci /* 0x0311 */ 12118c2ecf20Sopenharmony_ci 0x0000, 0x000c, 0x0041, 0x09d2, 0x0045, 0x09d4, 0x0049, 0x09d6, 12128c2ecf20Sopenharmony_ci 0x004f, 0x09d8, 0x0052, 0x09da, 0x0055, 0x09dc, 0x0061, 0x09de, 12138c2ecf20Sopenharmony_ci 0x0065, 0x09e0, 0x0069, 0x09e2, 0x006f, 0x09e4, 0x0072, 0x09e6, 12148c2ecf20Sopenharmony_ci 0x0075, 0x09e8, 12158c2ecf20Sopenharmony_ci /* 0x0313 */ 12168c2ecf20Sopenharmony_ci 0x0343, 0x000e, 0x0391, 0x09ea, 0x0395, 0x09f2, 0x0397, 0x09f8, 12178c2ecf20Sopenharmony_ci 0x0399, 0x0a00, 0x039f, 0x0a08, 0x03a9, 0x0a0e, 0x03b1, 0x0a16, 12188c2ecf20Sopenharmony_ci 0x03b5, 0x0a1e, 0x03b7, 0x0a24, 0x03b9, 0x0a2c, 0x03bf, 0x0a34, 12198c2ecf20Sopenharmony_ci 0x03c1, 0x0a3a, 0x03c5, 0x0a3c, 0x03c9, 0x0a44, 12208c2ecf20Sopenharmony_ci /* 0x0314 */ 12218c2ecf20Sopenharmony_ci 0x0000, 0x0010, 0x0391, 0x0a4c, 0x0395, 0x0a54, 0x0397, 0x0a5a, 12228c2ecf20Sopenharmony_ci 0x0399, 0x0a62, 0x039f, 0x0a6a, 0x03a1, 0x0a70, 0x03a5, 0x0a72, 12238c2ecf20Sopenharmony_ci 0x03a9, 0x0a7a, 0x03b1, 0x0a82, 0x03b5, 0x0a8a, 0x03b7, 0x0a90, 12248c2ecf20Sopenharmony_ci 0x03b9, 0x0a98, 0x03bf, 0x0aa0, 0x03c1, 0x0aa6, 0x03c5, 0x0aa8, 12258c2ecf20Sopenharmony_ci 0x03c9, 0x0ab0, 12268c2ecf20Sopenharmony_ci /* 0x031b */ 12278c2ecf20Sopenharmony_ci 0x0000, 0x0004, 0x004f, 0x0ab8, 0x0055, 0x0ac4, 0x006f, 0x0ad0, 12288c2ecf20Sopenharmony_ci 0x0075, 0x0adc, 12298c2ecf20Sopenharmony_ci /* 0x0323 */ 12308c2ecf20Sopenharmony_ci 0x0000, 0x0026, 0x0041, 0x0ae8, 0x0042, 0x0aee, 0x0044, 0x0af0, 12318c2ecf20Sopenharmony_ci 0x0045, 0x0af2, 0x0048, 0x0af6, 0x0049, 0x0af8, 0x004b, 0x0afa, 12328c2ecf20Sopenharmony_ci 0x004c, 0x0afc, 0x004d, 0x0b00, 0x004e, 0x0b02, 0x004f, 0x0b04, 12338c2ecf20Sopenharmony_ci 0x0052, 0x0b08, 0x0053, 0x0b0c, 0x0054, 0x0b10, 0x0055, 0x0b12, 12348c2ecf20Sopenharmony_ci 0x0056, 0x0b14, 0x0057, 0x0b16, 0x0059, 0x0b18, 0x005a, 0x0b1a, 12358c2ecf20Sopenharmony_ci 0x0061, 0x0b1c, 0x0062, 0x0b22, 0x0064, 0x0b24, 0x0065, 0x0b26, 12368c2ecf20Sopenharmony_ci 0x0068, 0x0b2a, 0x0069, 0x0b2c, 0x006b, 0x0b2e, 0x006c, 0x0b30, 12378c2ecf20Sopenharmony_ci 0x006d, 0x0b34, 0x006e, 0x0b36, 0x006f, 0x0b38, 0x0072, 0x0b3c, 12388c2ecf20Sopenharmony_ci 0x0073, 0x0b40, 0x0074, 0x0b44, 0x0075, 0x0b46, 0x0076, 0x0b48, 12398c2ecf20Sopenharmony_ci 0x0077, 0x0b4a, 0x0079, 0x0b4c, 0x007a, 0x0b4e, 12408c2ecf20Sopenharmony_ci /* 0x0324 */ 12418c2ecf20Sopenharmony_ci 0x0000, 0x0002, 0x0055, 0x0b50, 0x0075, 0x0b52, 12428c2ecf20Sopenharmony_ci /* 0x0325 */ 12438c2ecf20Sopenharmony_ci 0x0000, 0x0002, 0x0041, 0x0b54, 0x0061, 0x0b56, 12448c2ecf20Sopenharmony_ci /* 0x0327 */ 12458c2ecf20Sopenharmony_ci 0x0000, 0x0016, 0x0043, 0x0b58, 0x0044, 0x0b5c, 0x0045, 0x0b5e, 12468c2ecf20Sopenharmony_ci 0x0047, 0x0b62, 0x0048, 0x0b64, 0x004b, 0x0b66, 0x004c, 0x0b68, 12478c2ecf20Sopenharmony_ci 0x004e, 0x0b6a, 0x0052, 0x0b6c, 0x0053, 0x0b6e, 0x0054, 0x0b70, 12488c2ecf20Sopenharmony_ci 0x0063, 0x0b72, 0x0064, 0x0b76, 0x0065, 0x0b78, 0x0067, 0x0b7c, 12498c2ecf20Sopenharmony_ci 0x0068, 0x0b7e, 0x006b, 0x0b80, 0x006c, 0x0b82, 0x006e, 0x0b84, 12508c2ecf20Sopenharmony_ci 0x0072, 0x0b86, 0x0073, 0x0b88, 0x0074, 0x0b8a, 12518c2ecf20Sopenharmony_ci /* 0x0328 */ 12528c2ecf20Sopenharmony_ci 0x0000, 0x000a, 0x0041, 0x0b8c, 0x0045, 0x0b8e, 0x0049, 0x0b90, 12538c2ecf20Sopenharmony_ci 0x004f, 0x0b92, 0x0055, 0x0b96, 0x0061, 0x0b98, 0x0065, 0x0b9a, 12548c2ecf20Sopenharmony_ci 0x0069, 0x0b9c, 0x006f, 0x0b9e, 0x0075, 0x0ba2, 12558c2ecf20Sopenharmony_ci /* 0x032d */ 12568c2ecf20Sopenharmony_ci 0x0000, 0x000c, 0x0044, 0x0ba4, 0x0045, 0x0ba6, 0x004c, 0x0ba8, 12578c2ecf20Sopenharmony_ci 0x004e, 0x0baa, 0x0054, 0x0bac, 0x0055, 0x0bae, 0x0064, 0x0bb0, 12588c2ecf20Sopenharmony_ci 0x0065, 0x0bb2, 0x006c, 0x0bb4, 0x006e, 0x0bb6, 0x0074, 0x0bb8, 12598c2ecf20Sopenharmony_ci 0x0075, 0x0bba, 12608c2ecf20Sopenharmony_ci /* 0x032e */ 12618c2ecf20Sopenharmony_ci 0x0000, 0x0002, 0x0048, 0x0bbc, 0x0068, 0x0bbe, 12628c2ecf20Sopenharmony_ci /* 0x0330 */ 12638c2ecf20Sopenharmony_ci 0x0000, 0x0006, 0x0045, 0x0bc0, 0x0049, 0x0bc2, 0x0055, 0x0bc4, 12648c2ecf20Sopenharmony_ci 0x0065, 0x0bc6, 0x0069, 0x0bc8, 0x0075, 0x0bca, 12658c2ecf20Sopenharmony_ci /* 0x0331 */ 12668c2ecf20Sopenharmony_ci 0x0000, 0x0011, 0x0042, 0x0bcc, 0x0044, 0x0bce, 0x004b, 0x0bd0, 12678c2ecf20Sopenharmony_ci 0x004c, 0x0bd2, 0x004e, 0x0bd4, 0x0052, 0x0bd6, 0x0054, 0x0bd8, 12688c2ecf20Sopenharmony_ci 0x005a, 0x0bda, 0x0062, 0x0bdc, 0x0064, 0x0bde, 0x0068, 0x0be0, 12698c2ecf20Sopenharmony_ci 0x006b, 0x0be2, 0x006c, 0x0be4, 0x006e, 0x0be6, 0x0072, 0x0be8, 12708c2ecf20Sopenharmony_ci 0x0074, 0x0bea, 0x007a, 0x0bec, 12718c2ecf20Sopenharmony_ci /* 0x0342 */ 12728c2ecf20Sopenharmony_ci 0x0000, 0x0008, 0x00a8, 0x0bee, 0x03b1, 0x0bf0, 0x03b7, 0x0bf2, 12738c2ecf20Sopenharmony_ci 0x03b9, 0x0bf4, 0x03c5, 0x0bf6, 0x03c9, 0x0bf8, 0x1fbf, 0x0bfa, 12748c2ecf20Sopenharmony_ci 0x1ffe, 0x0bfc, 12758c2ecf20Sopenharmony_ci /* 0x0345 */ 12768c2ecf20Sopenharmony_ci 0x0000, 0x0007, 0x0391, 0x0bfe, 0x0397, 0x0c04, 0x03a9, 0x0c0a, 12778c2ecf20Sopenharmony_ci 0x03b1, 0x0c10, 0x03b7, 0x0c1c, 0x03bf, 0x0c28, 0x03c9, 0x0c2c, 12788c2ecf20Sopenharmony_ci /* 0x05b7 */ 12798c2ecf20Sopenharmony_ci 0x0000, 0x0002, 0x05d0, 0x0c36, 0x05f2, 0x0c38, 12808c2ecf20Sopenharmony_ci /* 0x05b8 */ 12818c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x05d0, 0x0c3a, 12828c2ecf20Sopenharmony_ci /* 0x05b9 */ 12838c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x05d5, 0x0c3c, 12848c2ecf20Sopenharmony_ci /* 0x05bc */ 12858c2ecf20Sopenharmony_ci 0x0000, 0x0016, 0x05d0, 0x0c3e, 0x05d1, 0x0c40, 0x05d2, 0x0c42, 12868c2ecf20Sopenharmony_ci 0x05d3, 0x0c44, 0x05d4, 0x0c46, 0x05d5, 0x0c48, 0x05d6, 0x0c4a, 12878c2ecf20Sopenharmony_ci 0x05d8, 0x0c4c, 0x05d9, 0x0c4e, 0x05da, 0x0c50, 0x05db, 0x0c52, 12888c2ecf20Sopenharmony_ci 0x05dc, 0x0c54, 0x05de, 0x0c56, 0x05e0, 0x0c58, 0x05e1, 0x0c5a, 12898c2ecf20Sopenharmony_ci 0x05e3, 0x0c5c, 0x05e4, 0x0c5e, 0x05e6, 0x0c60, 0x05e7, 0x0c62, 12908c2ecf20Sopenharmony_ci 0x05e8, 0x0c64, 0x05e9, 0x0c66, 0x05ea, 0x0c6c, 12918c2ecf20Sopenharmony_ci /* 0x05bf */ 12928c2ecf20Sopenharmony_ci 0x0000, 0x0003, 0x05d1, 0x0c6e, 0x05db, 0x0c70, 0x05e4, 0x0c72, 12938c2ecf20Sopenharmony_ci /* 0x05c1 */ 12948c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x05e9, 0x0c74, 12958c2ecf20Sopenharmony_ci /* 0x05c2 */ 12968c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x05e9, 0x0c76, 12978c2ecf20Sopenharmony_ci /* 0x093c */ 12988c2ecf20Sopenharmony_ci 0x0000, 0x000b, 0x0915, 0x0c78, 0x0916, 0x0c7a, 0x0917, 0x0c7c, 12998c2ecf20Sopenharmony_ci 0x091c, 0x0c7e, 0x0921, 0x0c80, 0x0922, 0x0c82, 0x0928, 0x0c84, 13008c2ecf20Sopenharmony_ci 0x092b, 0x0c86, 0x092f, 0x0c88, 0x0930, 0x0c8a, 0x0933, 0x0c8c, 13018c2ecf20Sopenharmony_ci /* 0x09bc */ 13028c2ecf20Sopenharmony_ci 0x0000, 0x0004, 0x09a1, 0x0c8e, 0x09a2, 0x0c90, 0x09ac, 0x0c92, 13038c2ecf20Sopenharmony_ci 0x09af, 0x0c94, 13048c2ecf20Sopenharmony_ci /* 0x09be */ 13058c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x09c7, 0x0c96, 13068c2ecf20Sopenharmony_ci /* 0x09d7 */ 13078c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x09c7, 0x0c98, 13088c2ecf20Sopenharmony_ci /* 0x0a3c */ 13098c2ecf20Sopenharmony_ci 0x0000, 0x0005, 0x0a16, 0x0c9a, 0x0a17, 0x0c9c, 0x0a1c, 0x0c9e, 13108c2ecf20Sopenharmony_ci 0x0a21, 0x0ca0, 0x0a2b, 0x0ca2, 13118c2ecf20Sopenharmony_ci /* 0x0b3c */ 13128c2ecf20Sopenharmony_ci 0x0000, 0x0003, 0x0b21, 0x0ca4, 0x0b22, 0x0ca6, 0x0b2f, 0x0ca8, 13138c2ecf20Sopenharmony_ci /* 0x0b3e */ 13148c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0b47, 0x0caa, 13158c2ecf20Sopenharmony_ci /* 0x0b56 */ 13168c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0b47, 0x0cac, 13178c2ecf20Sopenharmony_ci /* 0x0b57 */ 13188c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0b47, 0x0cae, 13198c2ecf20Sopenharmony_ci /* 0x0bbe */ 13208c2ecf20Sopenharmony_ci 0x0000, 0x0002, 0x0bc6, 0x0cb0, 0x0bc7, 0x0cb2, 13218c2ecf20Sopenharmony_ci /* 0x0bd7 */ 13228c2ecf20Sopenharmony_ci 0x0000, 0x0002, 0x0b92, 0x0cb4, 0x0bc6, 0x0cb6, 13238c2ecf20Sopenharmony_ci /* 0x0c56 */ 13248c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0c46, 0x0cb8, 13258c2ecf20Sopenharmony_ci /* 0x0cc2 */ 13268c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0cc6, 0x0cba, 13278c2ecf20Sopenharmony_ci /* 0x0cd5 */ 13288c2ecf20Sopenharmony_ci 0x0000, 0x0002, 0x0cbf, 0x0cbe, 0x0cc6, 0x0cc0, 13298c2ecf20Sopenharmony_ci /* 0x0cd6 */ 13308c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0cc6, 0x0cc2, 13318c2ecf20Sopenharmony_ci /* 0x0d3e */ 13328c2ecf20Sopenharmony_ci 0x0000, 0x0002, 0x0d46, 0x0cc4, 0x0d47, 0x0cc6, 13338c2ecf20Sopenharmony_ci /* 0x0d57 */ 13348c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0d46, 0x0cc8, 13358c2ecf20Sopenharmony_ci /* 0x0e32 */ 13368c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0e4d, 0x0cca, 13378c2ecf20Sopenharmony_ci /* 0x0eb2 */ 13388c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0ecd, 0x0ccc, 13398c2ecf20Sopenharmony_ci /* 0x0f71 */ 13408c2ecf20Sopenharmony_ci 0x0000, 0x0003, 0x0f72, 0x0cce, 0x0f74, 0x0cd0, 0x0f80, 0x0cd2, 13418c2ecf20Sopenharmony_ci /* 0x0f80 */ 13428c2ecf20Sopenharmony_ci 0x0000, 0x0002, 0x0fb2, 0x0cd4, 0x0fb3, 0x0cd8, 13438c2ecf20Sopenharmony_ci /* 0x0fb5 */ 13448c2ecf20Sopenharmony_ci 0x0000, 0x0002, 0x0f40, 0x0cdc, 0x0f90, 0x0cde, 13458c2ecf20Sopenharmony_ci /* 0x0fb7 */ 13468c2ecf20Sopenharmony_ci 0x0000, 0x000a, 0x0f42, 0x0ce0, 0x0f4c, 0x0ce2, 0x0f51, 0x0ce4, 13478c2ecf20Sopenharmony_ci 0x0f56, 0x0ce6, 0x0f5b, 0x0ce8, 0x0f92, 0x0cea, 0x0f9c, 0x0cec, 13488c2ecf20Sopenharmony_ci 0x0fa1, 0x0cee, 0x0fa6, 0x0cf0, 0x0fab, 0x0cf2, 13498c2ecf20Sopenharmony_ci /* 0x3099 */ 13508c2ecf20Sopenharmony_ci 0x0000, 0x0030, 0x3046, 0x0cf4, 0x304b, 0x0cf6, 0x304d, 0x0cf8, 13518c2ecf20Sopenharmony_ci 0x304f, 0x0cfa, 0x3051, 0x0cfc, 0x3053, 0x0cfe, 0x3055, 0x0d00, 13528c2ecf20Sopenharmony_ci 0x3057, 0x0d02, 0x3059, 0x0d04, 0x305b, 0x0d06, 0x305d, 0x0d08, 13538c2ecf20Sopenharmony_ci 0x305f, 0x0d0a, 0x3061, 0x0d0c, 0x3064, 0x0d0e, 0x3066, 0x0d10, 13548c2ecf20Sopenharmony_ci 0x3068, 0x0d12, 0x306f, 0x0d14, 0x3072, 0x0d16, 0x3075, 0x0d18, 13558c2ecf20Sopenharmony_ci 0x3078, 0x0d1a, 0x307b, 0x0d1c, 0x309d, 0x0d1e, 0x30a6, 0x0d20, 13568c2ecf20Sopenharmony_ci 0x30ab, 0x0d22, 0x30ad, 0x0d24, 0x30af, 0x0d26, 0x30b1, 0x0d28, 13578c2ecf20Sopenharmony_ci 0x30b3, 0x0d2a, 0x30b5, 0x0d2c, 0x30b7, 0x0d2e, 0x30b9, 0x0d30, 13588c2ecf20Sopenharmony_ci 0x30bb, 0x0d32, 0x30bd, 0x0d34, 0x30bf, 0x0d36, 0x30c1, 0x0d38, 13598c2ecf20Sopenharmony_ci 0x30c4, 0x0d3a, 0x30c6, 0x0d3c, 0x30c8, 0x0d3e, 0x30cf, 0x0d40, 13608c2ecf20Sopenharmony_ci 0x30d2, 0x0d42, 0x30d5, 0x0d44, 0x30d8, 0x0d46, 0x30db, 0x0d48, 13618c2ecf20Sopenharmony_ci 0x30ef, 0x0d4a, 0x30f0, 0x0d4c, 0x30f1, 0x0d4e, 0x30f2, 0x0d50, 13628c2ecf20Sopenharmony_ci 0x30fd, 0x0d52, 13638c2ecf20Sopenharmony_ci /* 0x309a */ 13648c2ecf20Sopenharmony_ci 0x0000, 0x000a, 0x306f, 0x0d54, 0x3072, 0x0d56, 0x3075, 0x0d58, 13658c2ecf20Sopenharmony_ci 0x3078, 0x0d5a, 0x307b, 0x0d5c, 0x30cf, 0x0d5e, 0x30d2, 0x0d60, 13668c2ecf20Sopenharmony_ci 0x30d5, 0x0d62, 0x30d8, 0x0d64, 0x30db, 0x0d66, 13678c2ecf20Sopenharmony_ci /* 0x0041 0x0300 */ 13688c2ecf20Sopenharmony_ci 0x00c0, 0x0000, 13698c2ecf20Sopenharmony_ci /* 0x0045 0x0300 */ 13708c2ecf20Sopenharmony_ci 0x00c8, 0x0000, 13718c2ecf20Sopenharmony_ci /* 0x0049 0x0300 */ 13728c2ecf20Sopenharmony_ci 0x00cc, 0x0000, 13738c2ecf20Sopenharmony_ci /* 0x004f 0x0300 */ 13748c2ecf20Sopenharmony_ci 0x00d2, 0x0000, 13758c2ecf20Sopenharmony_ci /* 0x0055 0x0300 */ 13768c2ecf20Sopenharmony_ci 0x00d9, 0x0000, 13778c2ecf20Sopenharmony_ci /* 0x0057 0x0300 */ 13788c2ecf20Sopenharmony_ci 0x1e80, 0x0000, 13798c2ecf20Sopenharmony_ci /* 0x0059 0x0300 */ 13808c2ecf20Sopenharmony_ci 0x1ef2, 0x0000, 13818c2ecf20Sopenharmony_ci /* 0x0061 0x0300 */ 13828c2ecf20Sopenharmony_ci 0x00e0, 0x0000, 13838c2ecf20Sopenharmony_ci /* 0x0065 0x0300 */ 13848c2ecf20Sopenharmony_ci 0x00e8, 0x0000, 13858c2ecf20Sopenharmony_ci /* 0x0069 0x0300 */ 13868c2ecf20Sopenharmony_ci 0x00ec, 0x0000, 13878c2ecf20Sopenharmony_ci /* 0x006f 0x0300 */ 13888c2ecf20Sopenharmony_ci 0x00f2, 0x0000, 13898c2ecf20Sopenharmony_ci /* 0x0075 0x0300 */ 13908c2ecf20Sopenharmony_ci 0x00f9, 0x0000, 13918c2ecf20Sopenharmony_ci /* 0x0077 0x0300 */ 13928c2ecf20Sopenharmony_ci 0x1e81, 0x0000, 13938c2ecf20Sopenharmony_ci /* 0x0079 0x0300 */ 13948c2ecf20Sopenharmony_ci 0x1ef3, 0x0000, 13958c2ecf20Sopenharmony_ci /* 0x00a8 0x0300 */ 13968c2ecf20Sopenharmony_ci 0x1fed, 0x0000, 13978c2ecf20Sopenharmony_ci /* 0x0391 0x0300 */ 13988c2ecf20Sopenharmony_ci 0x1fba, 0x0000, 13998c2ecf20Sopenharmony_ci /* 0x0395 0x0300 */ 14008c2ecf20Sopenharmony_ci 0x1fc8, 0x0000, 14018c2ecf20Sopenharmony_ci /* 0x0397 0x0300 */ 14028c2ecf20Sopenharmony_ci 0x1fca, 0x0000, 14038c2ecf20Sopenharmony_ci /* 0x0399 0x0300 */ 14048c2ecf20Sopenharmony_ci 0x1fda, 0x0000, 14058c2ecf20Sopenharmony_ci /* 0x039f 0x0300 */ 14068c2ecf20Sopenharmony_ci 0x1ff8, 0x0000, 14078c2ecf20Sopenharmony_ci /* 0x03a5 0x0300 */ 14088c2ecf20Sopenharmony_ci 0x1fea, 0x0000, 14098c2ecf20Sopenharmony_ci /* 0x03a9 0x0300 */ 14108c2ecf20Sopenharmony_ci 0x1ffa, 0x0000, 14118c2ecf20Sopenharmony_ci /* 0x03b1 0x0300 */ 14128c2ecf20Sopenharmony_ci 0x1f70, 0x0000, 14138c2ecf20Sopenharmony_ci /* 0x03b5 0x0300 */ 14148c2ecf20Sopenharmony_ci 0x1f72, 0x0000, 14158c2ecf20Sopenharmony_ci /* 0x03b7 0x0300 */ 14168c2ecf20Sopenharmony_ci 0x1f74, 0x0000, 14178c2ecf20Sopenharmony_ci /* 0x03b9 0x0300 */ 14188c2ecf20Sopenharmony_ci 0x1f76, 0x0000, 14198c2ecf20Sopenharmony_ci /* 0x03bf 0x0300 */ 14208c2ecf20Sopenharmony_ci 0x1f78, 0x0000, 14218c2ecf20Sopenharmony_ci /* 0x03c5 0x0300 */ 14228c2ecf20Sopenharmony_ci 0x1f7a, 0x0000, 14238c2ecf20Sopenharmony_ci /* 0x03c9 0x0300 */ 14248c2ecf20Sopenharmony_ci 0x1f7c, 0x0000, 14258c2ecf20Sopenharmony_ci /* 0x1fbf 0x0300 */ 14268c2ecf20Sopenharmony_ci 0x1fcd, 0x0000, 14278c2ecf20Sopenharmony_ci /* 0x1ffe 0x0300 */ 14288c2ecf20Sopenharmony_ci 0x1fdd, 0x0000, 14298c2ecf20Sopenharmony_ci /* 0x0041 0x0301 */ 14308c2ecf20Sopenharmony_ci 0x00c1, 0x0000, 14318c2ecf20Sopenharmony_ci /* 0x0043 0x0301 */ 14328c2ecf20Sopenharmony_ci 0x0106, 0x0000, 14338c2ecf20Sopenharmony_ci /* 0x0045 0x0301 */ 14348c2ecf20Sopenharmony_ci 0x00c9, 0x0000, 14358c2ecf20Sopenharmony_ci /* 0x0047 0x0301 */ 14368c2ecf20Sopenharmony_ci 0x01f4, 0x0000, 14378c2ecf20Sopenharmony_ci /* 0x0049 0x0301 */ 14388c2ecf20Sopenharmony_ci 0x00cd, 0x0000, 14398c2ecf20Sopenharmony_ci /* 0x004b 0x0301 */ 14408c2ecf20Sopenharmony_ci 0x1e30, 0x0000, 14418c2ecf20Sopenharmony_ci /* 0x004c 0x0301 */ 14428c2ecf20Sopenharmony_ci 0x0139, 0x0000, 14438c2ecf20Sopenharmony_ci /* 0x004d 0x0301 */ 14448c2ecf20Sopenharmony_ci 0x1e3e, 0x0000, 14458c2ecf20Sopenharmony_ci /* 0x004e 0x0301 */ 14468c2ecf20Sopenharmony_ci 0x0143, 0x0000, 14478c2ecf20Sopenharmony_ci /* 0x004f 0x0301 */ 14488c2ecf20Sopenharmony_ci 0x00d3, 0x0000, 14498c2ecf20Sopenharmony_ci /* 0x0050 0x0301 */ 14508c2ecf20Sopenharmony_ci 0x1e54, 0x0000, 14518c2ecf20Sopenharmony_ci /* 0x0052 0x0301 */ 14528c2ecf20Sopenharmony_ci 0x0154, 0x0000, 14538c2ecf20Sopenharmony_ci /* 0x0053 0x0301 */ 14548c2ecf20Sopenharmony_ci 0x015a, 0x0001, 0x0307, 0x0d68, 14558c2ecf20Sopenharmony_ci /* 0x0055 0x0301 */ 14568c2ecf20Sopenharmony_ci 0x00da, 0x0000, 14578c2ecf20Sopenharmony_ci /* 0x0057 0x0301 */ 14588c2ecf20Sopenharmony_ci 0x1e82, 0x0000, 14598c2ecf20Sopenharmony_ci /* 0x0059 0x0301 */ 14608c2ecf20Sopenharmony_ci 0x00dd, 0x0000, 14618c2ecf20Sopenharmony_ci /* 0x005a 0x0301 */ 14628c2ecf20Sopenharmony_ci 0x0179, 0x0000, 14638c2ecf20Sopenharmony_ci /* 0x0061 0x0301 */ 14648c2ecf20Sopenharmony_ci 0x00e1, 0x0000, 14658c2ecf20Sopenharmony_ci /* 0x0063 0x0301 */ 14668c2ecf20Sopenharmony_ci 0x0107, 0x0000, 14678c2ecf20Sopenharmony_ci /* 0x0065 0x0301 */ 14688c2ecf20Sopenharmony_ci 0x00e9, 0x0000, 14698c2ecf20Sopenharmony_ci /* 0x0067 0x0301 */ 14708c2ecf20Sopenharmony_ci 0x01f5, 0x0000, 14718c2ecf20Sopenharmony_ci /* 0x0069 0x0301 */ 14728c2ecf20Sopenharmony_ci 0x00ed, 0x0000, 14738c2ecf20Sopenharmony_ci /* 0x006b 0x0301 */ 14748c2ecf20Sopenharmony_ci 0x1e31, 0x0000, 14758c2ecf20Sopenharmony_ci /* 0x006c 0x0301 */ 14768c2ecf20Sopenharmony_ci 0x013a, 0x0000, 14778c2ecf20Sopenharmony_ci /* 0x006d 0x0301 */ 14788c2ecf20Sopenharmony_ci 0x1e3f, 0x0000, 14798c2ecf20Sopenharmony_ci /* 0x006e 0x0301 */ 14808c2ecf20Sopenharmony_ci 0x0144, 0x0000, 14818c2ecf20Sopenharmony_ci /* 0x006f 0x0301 */ 14828c2ecf20Sopenharmony_ci 0x00f3, 0x0000, 14838c2ecf20Sopenharmony_ci /* 0x0070 0x0301 */ 14848c2ecf20Sopenharmony_ci 0x1e55, 0x0000, 14858c2ecf20Sopenharmony_ci /* 0x0072 0x0301 */ 14868c2ecf20Sopenharmony_ci 0x0155, 0x0000, 14878c2ecf20Sopenharmony_ci /* 0x0073 0x0301 */ 14888c2ecf20Sopenharmony_ci 0x015b, 0x0001, 0x0307, 0x0d6a, 14898c2ecf20Sopenharmony_ci /* 0x0075 0x0301 */ 14908c2ecf20Sopenharmony_ci 0x00fa, 0x0000, 14918c2ecf20Sopenharmony_ci /* 0x0077 0x0301 */ 14928c2ecf20Sopenharmony_ci 0x1e83, 0x0000, 14938c2ecf20Sopenharmony_ci /* 0x0079 0x0301 */ 14948c2ecf20Sopenharmony_ci 0x00fd, 0x0000, 14958c2ecf20Sopenharmony_ci /* 0x007a 0x0301 */ 14968c2ecf20Sopenharmony_ci 0x017a, 0x0000, 14978c2ecf20Sopenharmony_ci /* 0x00a8 0x0301 */ 14988c2ecf20Sopenharmony_ci 0x1fee, 0x0000, 14998c2ecf20Sopenharmony_ci /* 0x00c6 0x0301 */ 15008c2ecf20Sopenharmony_ci 0x01fc, 0x0000, 15018c2ecf20Sopenharmony_ci /* 0x00d8 0x0301 */ 15028c2ecf20Sopenharmony_ci 0x01fe, 0x0000, 15038c2ecf20Sopenharmony_ci /* 0x00e6 0x0301 */ 15048c2ecf20Sopenharmony_ci 0x01fd, 0x0000, 15058c2ecf20Sopenharmony_ci /* 0x00f8 0x0301 */ 15068c2ecf20Sopenharmony_ci 0x01ff, 0x0000, 15078c2ecf20Sopenharmony_ci /* 0x0391 0x0301 */ 15088c2ecf20Sopenharmony_ci 0x1fbb, 0x0000, 15098c2ecf20Sopenharmony_ci /* 0x0395 0x0301 */ 15108c2ecf20Sopenharmony_ci 0x1fc9, 0x0000, 15118c2ecf20Sopenharmony_ci /* 0x0397 0x0301 */ 15128c2ecf20Sopenharmony_ci 0x1fcb, 0x0000, 15138c2ecf20Sopenharmony_ci /* 0x0399 0x0301 */ 15148c2ecf20Sopenharmony_ci 0x1fdb, 0x0000, 15158c2ecf20Sopenharmony_ci /* 0x039f 0x0301 */ 15168c2ecf20Sopenharmony_ci 0x1ff9, 0x0000, 15178c2ecf20Sopenharmony_ci /* 0x03a5 0x0301 */ 15188c2ecf20Sopenharmony_ci 0x1feb, 0x0000, 15198c2ecf20Sopenharmony_ci /* 0x03a9 0x0301 */ 15208c2ecf20Sopenharmony_ci 0x1ffb, 0x0000, 15218c2ecf20Sopenharmony_ci /* 0x03b1 0x0301 */ 15228c2ecf20Sopenharmony_ci 0x1f71, 0x0000, 15238c2ecf20Sopenharmony_ci /* 0x03b5 0x0301 */ 15248c2ecf20Sopenharmony_ci 0x1f73, 0x0000, 15258c2ecf20Sopenharmony_ci /* 0x03b7 0x0301 */ 15268c2ecf20Sopenharmony_ci 0x1f75, 0x0000, 15278c2ecf20Sopenharmony_ci /* 0x03b9 0x0301 */ 15288c2ecf20Sopenharmony_ci 0x1f77, 0x0000, 15298c2ecf20Sopenharmony_ci /* 0x03bf 0x0301 */ 15308c2ecf20Sopenharmony_ci 0x1f79, 0x0000, 15318c2ecf20Sopenharmony_ci /* 0x03c5 0x0301 */ 15328c2ecf20Sopenharmony_ci 0x1f7b, 0x0000, 15338c2ecf20Sopenharmony_ci /* 0x03c9 0x0301 */ 15348c2ecf20Sopenharmony_ci 0x1f7d, 0x0000, 15358c2ecf20Sopenharmony_ci /* 0x0413 0x0301 */ 15368c2ecf20Sopenharmony_ci 0x0403, 0x0000, 15378c2ecf20Sopenharmony_ci /* 0x041a 0x0301 */ 15388c2ecf20Sopenharmony_ci 0x040c, 0x0000, 15398c2ecf20Sopenharmony_ci /* 0x0433 0x0301 */ 15408c2ecf20Sopenharmony_ci 0x0453, 0x0000, 15418c2ecf20Sopenharmony_ci /* 0x043a 0x0301 */ 15428c2ecf20Sopenharmony_ci 0x045c, 0x0000, 15438c2ecf20Sopenharmony_ci /* 0x1fbf 0x0301 */ 15448c2ecf20Sopenharmony_ci 0x1fce, 0x0000, 15458c2ecf20Sopenharmony_ci /* 0x1ffe 0x0301 */ 15468c2ecf20Sopenharmony_ci 0x1fde, 0x0000, 15478c2ecf20Sopenharmony_ci /* 0x0041 0x0302 */ 15488c2ecf20Sopenharmony_ci 0x00c2, 0x0004, 0x0300, 0x0d6c, 0x0301, 0x0d6e, 0x0303, 0x0d70, 15498c2ecf20Sopenharmony_ci 0x0309, 0x0d72, 15508c2ecf20Sopenharmony_ci /* 0x0043 0x0302 */ 15518c2ecf20Sopenharmony_ci 0x0108, 0x0000, 15528c2ecf20Sopenharmony_ci /* 0x0045 0x0302 */ 15538c2ecf20Sopenharmony_ci 0x00ca, 0x0004, 0x0300, 0x0d74, 0x0301, 0x0d76, 0x0303, 0x0d78, 15548c2ecf20Sopenharmony_ci 0x0309, 0x0d7a, 15558c2ecf20Sopenharmony_ci /* 0x0047 0x0302 */ 15568c2ecf20Sopenharmony_ci 0x011c, 0x0000, 15578c2ecf20Sopenharmony_ci /* 0x0048 0x0302 */ 15588c2ecf20Sopenharmony_ci 0x0124, 0x0000, 15598c2ecf20Sopenharmony_ci /* 0x0049 0x0302 */ 15608c2ecf20Sopenharmony_ci 0x00ce, 0x0000, 15618c2ecf20Sopenharmony_ci /* 0x004a 0x0302 */ 15628c2ecf20Sopenharmony_ci 0x0134, 0x0000, 15638c2ecf20Sopenharmony_ci /* 0x004f 0x0302 */ 15648c2ecf20Sopenharmony_ci 0x00d4, 0x0004, 0x0300, 0x0d7c, 0x0301, 0x0d7e, 0x0303, 0x0d80, 15658c2ecf20Sopenharmony_ci 0x0309, 0x0d82, 15668c2ecf20Sopenharmony_ci /* 0x0053 0x0302 */ 15678c2ecf20Sopenharmony_ci 0x015c, 0x0000, 15688c2ecf20Sopenharmony_ci /* 0x0055 0x0302 */ 15698c2ecf20Sopenharmony_ci 0x00db, 0x0000, 15708c2ecf20Sopenharmony_ci /* 0x0057 0x0302 */ 15718c2ecf20Sopenharmony_ci 0x0174, 0x0000, 15728c2ecf20Sopenharmony_ci /* 0x0059 0x0302 */ 15738c2ecf20Sopenharmony_ci 0x0176, 0x0000, 15748c2ecf20Sopenharmony_ci /* 0x005a 0x0302 */ 15758c2ecf20Sopenharmony_ci 0x1e90, 0x0000, 15768c2ecf20Sopenharmony_ci /* 0x0061 0x0302 */ 15778c2ecf20Sopenharmony_ci 0x00e2, 0x0004, 0x0300, 0x0d84, 0x0301, 0x0d86, 0x0303, 0x0d88, 15788c2ecf20Sopenharmony_ci 0x0309, 0x0d8a, 15798c2ecf20Sopenharmony_ci /* 0x0063 0x0302 */ 15808c2ecf20Sopenharmony_ci 0x0109, 0x0000, 15818c2ecf20Sopenharmony_ci /* 0x0065 0x0302 */ 15828c2ecf20Sopenharmony_ci 0x00ea, 0x0004, 0x0300, 0x0d8c, 0x0301, 0x0d8e, 0x0303, 0x0d90, 15838c2ecf20Sopenharmony_ci 0x0309, 0x0d92, 15848c2ecf20Sopenharmony_ci /* 0x0067 0x0302 */ 15858c2ecf20Sopenharmony_ci 0x011d, 0x0000, 15868c2ecf20Sopenharmony_ci /* 0x0068 0x0302 */ 15878c2ecf20Sopenharmony_ci 0x0125, 0x0000, 15888c2ecf20Sopenharmony_ci /* 0x0069 0x0302 */ 15898c2ecf20Sopenharmony_ci 0x00ee, 0x0000, 15908c2ecf20Sopenharmony_ci /* 0x006a 0x0302 */ 15918c2ecf20Sopenharmony_ci 0x0135, 0x0000, 15928c2ecf20Sopenharmony_ci /* 0x006f 0x0302 */ 15938c2ecf20Sopenharmony_ci 0x00f4, 0x0004, 0x0300, 0x0d94, 0x0301, 0x0d96, 0x0303, 0x0d98, 15948c2ecf20Sopenharmony_ci 0x0309, 0x0d9a, 15958c2ecf20Sopenharmony_ci /* 0x0073 0x0302 */ 15968c2ecf20Sopenharmony_ci 0x015d, 0x0000, 15978c2ecf20Sopenharmony_ci /* 0x0075 0x0302 */ 15988c2ecf20Sopenharmony_ci 0x00fb, 0x0000, 15998c2ecf20Sopenharmony_ci /* 0x0077 0x0302 */ 16008c2ecf20Sopenharmony_ci 0x0175, 0x0000, 16018c2ecf20Sopenharmony_ci /* 0x0079 0x0302 */ 16028c2ecf20Sopenharmony_ci 0x0177, 0x0000, 16038c2ecf20Sopenharmony_ci /* 0x007a 0x0302 */ 16048c2ecf20Sopenharmony_ci 0x1e91, 0x0000, 16058c2ecf20Sopenharmony_ci /* 0x0041 0x0303 */ 16068c2ecf20Sopenharmony_ci 0x00c3, 0x0000, 16078c2ecf20Sopenharmony_ci /* 0x0045 0x0303 */ 16088c2ecf20Sopenharmony_ci 0x1ebc, 0x0000, 16098c2ecf20Sopenharmony_ci /* 0x0049 0x0303 */ 16108c2ecf20Sopenharmony_ci 0x0128, 0x0000, 16118c2ecf20Sopenharmony_ci /* 0x004e 0x0303 */ 16128c2ecf20Sopenharmony_ci 0x00d1, 0x0000, 16138c2ecf20Sopenharmony_ci /* 0x004f 0x0303 */ 16148c2ecf20Sopenharmony_ci 0x00d5, 0x0002, 0x0301, 0x0d9c, 0x0308, 0x0d9e, 16158c2ecf20Sopenharmony_ci /* 0x0055 0x0303 */ 16168c2ecf20Sopenharmony_ci 0x0168, 0x0001, 0x0301, 0x0da0, 16178c2ecf20Sopenharmony_ci /* 0x0056 0x0303 */ 16188c2ecf20Sopenharmony_ci 0x1e7c, 0x0000, 16198c2ecf20Sopenharmony_ci /* 0x0059 0x0303 */ 16208c2ecf20Sopenharmony_ci 0x1ef8, 0x0000, 16218c2ecf20Sopenharmony_ci /* 0x0061 0x0303 */ 16228c2ecf20Sopenharmony_ci 0x00e3, 0x0000, 16238c2ecf20Sopenharmony_ci /* 0x0065 0x0303 */ 16248c2ecf20Sopenharmony_ci 0x1ebd, 0x0000, 16258c2ecf20Sopenharmony_ci /* 0x0069 0x0303 */ 16268c2ecf20Sopenharmony_ci 0x0129, 0x0000, 16278c2ecf20Sopenharmony_ci /* 0x006e 0x0303 */ 16288c2ecf20Sopenharmony_ci 0x00f1, 0x0000, 16298c2ecf20Sopenharmony_ci /* 0x006f 0x0303 */ 16308c2ecf20Sopenharmony_ci 0x00f5, 0x0002, 0x0301, 0x0da2, 0x0308, 0x0da4, 16318c2ecf20Sopenharmony_ci /* 0x0075 0x0303 */ 16328c2ecf20Sopenharmony_ci 0x0169, 0x0001, 0x0301, 0x0da6, 16338c2ecf20Sopenharmony_ci /* 0x0076 0x0303 */ 16348c2ecf20Sopenharmony_ci 0x1e7d, 0x0000, 16358c2ecf20Sopenharmony_ci /* 0x0079 0x0303 */ 16368c2ecf20Sopenharmony_ci 0x1ef9, 0x0000, 16378c2ecf20Sopenharmony_ci /* 0x0041 0x0304 */ 16388c2ecf20Sopenharmony_ci 0x0100, 0x0000, 16398c2ecf20Sopenharmony_ci /* 0x0045 0x0304 */ 16408c2ecf20Sopenharmony_ci 0x0112, 0x0002, 0x0300, 0x0da8, 0x0301, 0x0daa, 16418c2ecf20Sopenharmony_ci /* 0x0047 0x0304 */ 16428c2ecf20Sopenharmony_ci 0x1e20, 0x0000, 16438c2ecf20Sopenharmony_ci /* 0x0049 0x0304 */ 16448c2ecf20Sopenharmony_ci 0x012a, 0x0000, 16458c2ecf20Sopenharmony_ci /* 0x004f 0x0304 */ 16468c2ecf20Sopenharmony_ci 0x014c, 0x0002, 0x0300, 0x0dac, 0x0301, 0x0dae, 16478c2ecf20Sopenharmony_ci /* 0x0055 0x0304 */ 16488c2ecf20Sopenharmony_ci 0x016a, 0x0001, 0x0308, 0x0db0, 16498c2ecf20Sopenharmony_ci /* 0x0061 0x0304 */ 16508c2ecf20Sopenharmony_ci 0x0101, 0x0000, 16518c2ecf20Sopenharmony_ci /* 0x0065 0x0304 */ 16528c2ecf20Sopenharmony_ci 0x0113, 0x0002, 0x0300, 0x0db2, 0x0301, 0x0db4, 16538c2ecf20Sopenharmony_ci /* 0x0067 0x0304 */ 16548c2ecf20Sopenharmony_ci 0x1e21, 0x0000, 16558c2ecf20Sopenharmony_ci /* 0x0069 0x0304 */ 16568c2ecf20Sopenharmony_ci 0x012b, 0x0000, 16578c2ecf20Sopenharmony_ci /* 0x006f 0x0304 */ 16588c2ecf20Sopenharmony_ci 0x014d, 0x0002, 0x0300, 0x0db6, 0x0301, 0x0db8, 16598c2ecf20Sopenharmony_ci /* 0x0075 0x0304 */ 16608c2ecf20Sopenharmony_ci 0x016b, 0x0001, 0x0308, 0x0dba, 16618c2ecf20Sopenharmony_ci /* 0x00c6 0x0304 */ 16628c2ecf20Sopenharmony_ci 0x01e2, 0x0000, 16638c2ecf20Sopenharmony_ci /* 0x00e6 0x0304 */ 16648c2ecf20Sopenharmony_ci 0x01e3, 0x0000, 16658c2ecf20Sopenharmony_ci /* 0x0391 0x0304 */ 16668c2ecf20Sopenharmony_ci 0x1fb9, 0x0000, 16678c2ecf20Sopenharmony_ci /* 0x0399 0x0304 */ 16688c2ecf20Sopenharmony_ci 0x1fd9, 0x0000, 16698c2ecf20Sopenharmony_ci /* 0x03a5 0x0304 */ 16708c2ecf20Sopenharmony_ci 0x1fe9, 0x0000, 16718c2ecf20Sopenharmony_ci /* 0x03b1 0x0304 */ 16728c2ecf20Sopenharmony_ci 0x1fb1, 0x0000, 16738c2ecf20Sopenharmony_ci /* 0x03b9 0x0304 */ 16748c2ecf20Sopenharmony_ci 0x1fd1, 0x0000, 16758c2ecf20Sopenharmony_ci /* 0x03c5 0x0304 */ 16768c2ecf20Sopenharmony_ci 0x1fe1, 0x0000, 16778c2ecf20Sopenharmony_ci /* 0x0418 0x0304 */ 16788c2ecf20Sopenharmony_ci 0x04e2, 0x0000, 16798c2ecf20Sopenharmony_ci /* 0x0423 0x0304 */ 16808c2ecf20Sopenharmony_ci 0x04ee, 0x0000, 16818c2ecf20Sopenharmony_ci /* 0x0438 0x0304 */ 16828c2ecf20Sopenharmony_ci 0x04e3, 0x0000, 16838c2ecf20Sopenharmony_ci /* 0x0443 0x0304 */ 16848c2ecf20Sopenharmony_ci 0x04ef, 0x0000, 16858c2ecf20Sopenharmony_ci /* 0x0041 0x0306 */ 16868c2ecf20Sopenharmony_ci 0x0102, 0x0004, 0x0300, 0x0dbc, 0x0301, 0x0dbe, 0x0303, 0x0dc0, 16878c2ecf20Sopenharmony_ci 0x0309, 0x0dc2, 16888c2ecf20Sopenharmony_ci /* 0x0045 0x0306 */ 16898c2ecf20Sopenharmony_ci 0x0114, 0x0000, 16908c2ecf20Sopenharmony_ci /* 0x0047 0x0306 */ 16918c2ecf20Sopenharmony_ci 0x011e, 0x0000, 16928c2ecf20Sopenharmony_ci /* 0x0049 0x0306 */ 16938c2ecf20Sopenharmony_ci 0x012c, 0x0000, 16948c2ecf20Sopenharmony_ci /* 0x004f 0x0306 */ 16958c2ecf20Sopenharmony_ci 0x014e, 0x0000, 16968c2ecf20Sopenharmony_ci /* 0x0055 0x0306 */ 16978c2ecf20Sopenharmony_ci 0x016c, 0x0000, 16988c2ecf20Sopenharmony_ci /* 0x0061 0x0306 */ 16998c2ecf20Sopenharmony_ci 0x0103, 0x0004, 0x0300, 0x0dc4, 0x0301, 0x0dc6, 0x0303, 0x0dc8, 17008c2ecf20Sopenharmony_ci 0x0309, 0x0dca, 17018c2ecf20Sopenharmony_ci /* 0x0065 0x0306 */ 17028c2ecf20Sopenharmony_ci 0x0115, 0x0000, 17038c2ecf20Sopenharmony_ci /* 0x0067 0x0306 */ 17048c2ecf20Sopenharmony_ci 0x011f, 0x0000, 17058c2ecf20Sopenharmony_ci /* 0x0069 0x0306 */ 17068c2ecf20Sopenharmony_ci 0x012d, 0x0000, 17078c2ecf20Sopenharmony_ci /* 0x006f 0x0306 */ 17088c2ecf20Sopenharmony_ci 0x014f, 0x0000, 17098c2ecf20Sopenharmony_ci /* 0x0075 0x0306 */ 17108c2ecf20Sopenharmony_ci 0x016d, 0x0000, 17118c2ecf20Sopenharmony_ci /* 0x0391 0x0306 */ 17128c2ecf20Sopenharmony_ci 0x1fb8, 0x0000, 17138c2ecf20Sopenharmony_ci /* 0x0399 0x0306 */ 17148c2ecf20Sopenharmony_ci 0x1fd8, 0x0000, 17158c2ecf20Sopenharmony_ci /* 0x03a5 0x0306 */ 17168c2ecf20Sopenharmony_ci 0x1fe8, 0x0000, 17178c2ecf20Sopenharmony_ci /* 0x03b1 0x0306 */ 17188c2ecf20Sopenharmony_ci 0x1fb0, 0x0000, 17198c2ecf20Sopenharmony_ci /* 0x03b9 0x0306 */ 17208c2ecf20Sopenharmony_ci 0x1fd0, 0x0000, 17218c2ecf20Sopenharmony_ci /* 0x03c5 0x0306 */ 17228c2ecf20Sopenharmony_ci 0x1fe0, 0x0000, 17238c2ecf20Sopenharmony_ci /* 0x0410 0x0306 */ 17248c2ecf20Sopenharmony_ci 0x04d0, 0x0000, 17258c2ecf20Sopenharmony_ci /* 0x0415 0x0306 */ 17268c2ecf20Sopenharmony_ci 0x04d6, 0x0000, 17278c2ecf20Sopenharmony_ci /* 0x0416 0x0306 */ 17288c2ecf20Sopenharmony_ci 0x04c1, 0x0000, 17298c2ecf20Sopenharmony_ci /* 0x0418 0x0306 */ 17308c2ecf20Sopenharmony_ci 0x0419, 0x0000, 17318c2ecf20Sopenharmony_ci /* 0x0423 0x0306 */ 17328c2ecf20Sopenharmony_ci 0x040e, 0x0000, 17338c2ecf20Sopenharmony_ci /* 0x0430 0x0306 */ 17348c2ecf20Sopenharmony_ci 0x04d1, 0x0000, 17358c2ecf20Sopenharmony_ci /* 0x0435 0x0306 */ 17368c2ecf20Sopenharmony_ci 0x04d7, 0x0000, 17378c2ecf20Sopenharmony_ci /* 0x0436 0x0306 */ 17388c2ecf20Sopenharmony_ci 0x04c2, 0x0000, 17398c2ecf20Sopenharmony_ci /* 0x0438 0x0306 */ 17408c2ecf20Sopenharmony_ci 0x0439, 0x0000, 17418c2ecf20Sopenharmony_ci /* 0x0443 0x0306 */ 17428c2ecf20Sopenharmony_ci 0x045e, 0x0000, 17438c2ecf20Sopenharmony_ci /* 0x0041 0x0307 */ 17448c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0304, 0x0dcc, 17458c2ecf20Sopenharmony_ci /* 0x0042 0x0307 */ 17468c2ecf20Sopenharmony_ci 0x1e02, 0x0000, 17478c2ecf20Sopenharmony_ci /* 0x0043 0x0307 */ 17488c2ecf20Sopenharmony_ci 0x010a, 0x0000, 17498c2ecf20Sopenharmony_ci /* 0x0044 0x0307 */ 17508c2ecf20Sopenharmony_ci 0x1e0a, 0x0000, 17518c2ecf20Sopenharmony_ci /* 0x0045 0x0307 */ 17528c2ecf20Sopenharmony_ci 0x0116, 0x0000, 17538c2ecf20Sopenharmony_ci /* 0x0046 0x0307 */ 17548c2ecf20Sopenharmony_ci 0x1e1e, 0x0000, 17558c2ecf20Sopenharmony_ci /* 0x0047 0x0307 */ 17568c2ecf20Sopenharmony_ci 0x0120, 0x0000, 17578c2ecf20Sopenharmony_ci /* 0x0048 0x0307 */ 17588c2ecf20Sopenharmony_ci 0x1e22, 0x0000, 17598c2ecf20Sopenharmony_ci /* 0x0049 0x0307 */ 17608c2ecf20Sopenharmony_ci 0x0130, 0x0000, 17618c2ecf20Sopenharmony_ci /* 0x004d 0x0307 */ 17628c2ecf20Sopenharmony_ci 0x1e40, 0x0000, 17638c2ecf20Sopenharmony_ci /* 0x004e 0x0307 */ 17648c2ecf20Sopenharmony_ci 0x1e44, 0x0000, 17658c2ecf20Sopenharmony_ci /* 0x0050 0x0307 */ 17668c2ecf20Sopenharmony_ci 0x1e56, 0x0000, 17678c2ecf20Sopenharmony_ci /* 0x0052 0x0307 */ 17688c2ecf20Sopenharmony_ci 0x1e58, 0x0000, 17698c2ecf20Sopenharmony_ci /* 0x0053 0x0307 */ 17708c2ecf20Sopenharmony_ci 0x1e60, 0x0000, 17718c2ecf20Sopenharmony_ci /* 0x0054 0x0307 */ 17728c2ecf20Sopenharmony_ci 0x1e6a, 0x0000, 17738c2ecf20Sopenharmony_ci /* 0x0057 0x0307 */ 17748c2ecf20Sopenharmony_ci 0x1e86, 0x0000, 17758c2ecf20Sopenharmony_ci /* 0x0058 0x0307 */ 17768c2ecf20Sopenharmony_ci 0x1e8a, 0x0000, 17778c2ecf20Sopenharmony_ci /* 0x0059 0x0307 */ 17788c2ecf20Sopenharmony_ci 0x1e8e, 0x0000, 17798c2ecf20Sopenharmony_ci /* 0x005a 0x0307 */ 17808c2ecf20Sopenharmony_ci 0x017b, 0x0000, 17818c2ecf20Sopenharmony_ci /* 0x0061 0x0307 */ 17828c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0304, 0x0dce, 17838c2ecf20Sopenharmony_ci /* 0x0062 0x0307 */ 17848c2ecf20Sopenharmony_ci 0x1e03, 0x0000, 17858c2ecf20Sopenharmony_ci /* 0x0063 0x0307 */ 17868c2ecf20Sopenharmony_ci 0x010b, 0x0000, 17878c2ecf20Sopenharmony_ci /* 0x0064 0x0307 */ 17888c2ecf20Sopenharmony_ci 0x1e0b, 0x0000, 17898c2ecf20Sopenharmony_ci /* 0x0065 0x0307 */ 17908c2ecf20Sopenharmony_ci 0x0117, 0x0000, 17918c2ecf20Sopenharmony_ci /* 0x0066 0x0307 */ 17928c2ecf20Sopenharmony_ci 0x1e1f, 0x0000, 17938c2ecf20Sopenharmony_ci /* 0x0067 0x0307 */ 17948c2ecf20Sopenharmony_ci 0x0121, 0x0000, 17958c2ecf20Sopenharmony_ci /* 0x0068 0x0307 */ 17968c2ecf20Sopenharmony_ci 0x1e23, 0x0000, 17978c2ecf20Sopenharmony_ci /* 0x006d 0x0307 */ 17988c2ecf20Sopenharmony_ci 0x1e41, 0x0000, 17998c2ecf20Sopenharmony_ci /* 0x006e 0x0307 */ 18008c2ecf20Sopenharmony_ci 0x1e45, 0x0000, 18018c2ecf20Sopenharmony_ci /* 0x0070 0x0307 */ 18028c2ecf20Sopenharmony_ci 0x1e57, 0x0000, 18038c2ecf20Sopenharmony_ci /* 0x0072 0x0307 */ 18048c2ecf20Sopenharmony_ci 0x1e59, 0x0000, 18058c2ecf20Sopenharmony_ci /* 0x0073 0x0307 */ 18068c2ecf20Sopenharmony_ci 0x1e61, 0x0000, 18078c2ecf20Sopenharmony_ci /* 0x0074 0x0307 */ 18088c2ecf20Sopenharmony_ci 0x1e6b, 0x0000, 18098c2ecf20Sopenharmony_ci /* 0x0077 0x0307 */ 18108c2ecf20Sopenharmony_ci 0x1e87, 0x0000, 18118c2ecf20Sopenharmony_ci /* 0x0078 0x0307 */ 18128c2ecf20Sopenharmony_ci 0x1e8b, 0x0000, 18138c2ecf20Sopenharmony_ci /* 0x0079 0x0307 */ 18148c2ecf20Sopenharmony_ci 0x1e8f, 0x0000, 18158c2ecf20Sopenharmony_ci /* 0x007a 0x0307 */ 18168c2ecf20Sopenharmony_ci 0x017c, 0x0000, 18178c2ecf20Sopenharmony_ci /* 0x017f 0x0307 */ 18188c2ecf20Sopenharmony_ci 0x1e9b, 0x0000, 18198c2ecf20Sopenharmony_ci /* 0x0306 0x0307 */ 18208c2ecf20Sopenharmony_ci 0x0310, 0x0000, 18218c2ecf20Sopenharmony_ci /* 0x0041 0x0308 */ 18228c2ecf20Sopenharmony_ci 0x00c4, 0x0001, 0x0304, 0x0dd0, 18238c2ecf20Sopenharmony_ci /* 0x0045 0x0308 */ 18248c2ecf20Sopenharmony_ci 0x00cb, 0x0000, 18258c2ecf20Sopenharmony_ci /* 0x0048 0x0308 */ 18268c2ecf20Sopenharmony_ci 0x1e26, 0x0000, 18278c2ecf20Sopenharmony_ci /* 0x0049 0x0308 */ 18288c2ecf20Sopenharmony_ci 0x00cf, 0x0001, 0x0301, 0x0dd2, 18298c2ecf20Sopenharmony_ci /* 0x004f 0x0308 */ 18308c2ecf20Sopenharmony_ci 0x00d6, 0x0000, 18318c2ecf20Sopenharmony_ci /* 0x0055 0x0308 */ 18328c2ecf20Sopenharmony_ci 0x00dc, 0x0004, 0x0300, 0x0dd4, 0x0301, 0x0dd6, 0x0304, 0x0dd8, 18338c2ecf20Sopenharmony_ci 0x030c, 0x0dda, 18348c2ecf20Sopenharmony_ci /* 0x0057 0x0308 */ 18358c2ecf20Sopenharmony_ci 0x1e84, 0x0000, 18368c2ecf20Sopenharmony_ci /* 0x0058 0x0308 */ 18378c2ecf20Sopenharmony_ci 0x1e8c, 0x0000, 18388c2ecf20Sopenharmony_ci /* 0x0059 0x0308 */ 18398c2ecf20Sopenharmony_ci 0x0178, 0x0000, 18408c2ecf20Sopenharmony_ci /* 0x0061 0x0308 */ 18418c2ecf20Sopenharmony_ci 0x00e4, 0x0001, 0x0304, 0x0ddc, 18428c2ecf20Sopenharmony_ci /* 0x0065 0x0308 */ 18438c2ecf20Sopenharmony_ci 0x00eb, 0x0000, 18448c2ecf20Sopenharmony_ci /* 0x0068 0x0308 */ 18458c2ecf20Sopenharmony_ci 0x1e27, 0x0000, 18468c2ecf20Sopenharmony_ci /* 0x0069 0x0308 */ 18478c2ecf20Sopenharmony_ci 0x00ef, 0x0001, 0x0301, 0x0dde, 18488c2ecf20Sopenharmony_ci /* 0x006f 0x0308 */ 18498c2ecf20Sopenharmony_ci 0x00f6, 0x0000, 18508c2ecf20Sopenharmony_ci /* 0x0074 0x0308 */ 18518c2ecf20Sopenharmony_ci 0x1e97, 0x0000, 18528c2ecf20Sopenharmony_ci /* 0x0075 0x0308 */ 18538c2ecf20Sopenharmony_ci 0x00fc, 0x0004, 0x0300, 0x0de0, 0x0301, 0x0de2, 0x0304, 0x0de4, 18548c2ecf20Sopenharmony_ci 0x030c, 0x0de6, 18558c2ecf20Sopenharmony_ci /* 0x0077 0x0308 */ 18568c2ecf20Sopenharmony_ci 0x1e85, 0x0000, 18578c2ecf20Sopenharmony_ci /* 0x0078 0x0308 */ 18588c2ecf20Sopenharmony_ci 0x1e8d, 0x0000, 18598c2ecf20Sopenharmony_ci /* 0x0079 0x0308 */ 18608c2ecf20Sopenharmony_ci 0x00ff, 0x0000, 18618c2ecf20Sopenharmony_ci /* 0x018f 0x0308 */ 18628c2ecf20Sopenharmony_ci 0x04da, 0x0000, 18638c2ecf20Sopenharmony_ci /* 0x019f 0x0308 */ 18648c2ecf20Sopenharmony_ci 0x04ea, 0x0000, 18658c2ecf20Sopenharmony_ci /* 0x0259 0x0308 */ 18668c2ecf20Sopenharmony_ci 0x04db, 0x0000, 18678c2ecf20Sopenharmony_ci /* 0x0275 0x0308 */ 18688c2ecf20Sopenharmony_ci 0x04eb, 0x0000, 18698c2ecf20Sopenharmony_ci /* 0x0399 0x0308 */ 18708c2ecf20Sopenharmony_ci 0x03aa, 0x0000, 18718c2ecf20Sopenharmony_ci /* 0x03a5 0x0308 */ 18728c2ecf20Sopenharmony_ci 0x03ab, 0x0000, 18738c2ecf20Sopenharmony_ci /* 0x03b9 0x0308 */ 18748c2ecf20Sopenharmony_ci 0x03ca, 0x0004, 0x0300, 0x0de8, 0x0301, 0x0dea, 0x030d, 0x0dec, 18758c2ecf20Sopenharmony_ci 0x0342, 0x0dee, 18768c2ecf20Sopenharmony_ci /* 0x03c5 0x0308 */ 18778c2ecf20Sopenharmony_ci 0x03cb, 0x0004, 0x0300, 0x0df0, 0x0301, 0x0df2, 0x030d, 0x0df4, 18788c2ecf20Sopenharmony_ci 0x0342, 0x0df6, 18798c2ecf20Sopenharmony_ci /* 0x03d2 0x0308 */ 18808c2ecf20Sopenharmony_ci 0x03d4, 0x0000, 18818c2ecf20Sopenharmony_ci /* 0x0406 0x0308 */ 18828c2ecf20Sopenharmony_ci 0x0407, 0x0000, 18838c2ecf20Sopenharmony_ci /* 0x0410 0x0308 */ 18848c2ecf20Sopenharmony_ci 0x04d2, 0x0000, 18858c2ecf20Sopenharmony_ci /* 0x0415 0x0308 */ 18868c2ecf20Sopenharmony_ci 0x0401, 0x0000, 18878c2ecf20Sopenharmony_ci /* 0x0416 0x0308 */ 18888c2ecf20Sopenharmony_ci 0x04dc, 0x0000, 18898c2ecf20Sopenharmony_ci /* 0x0417 0x0308 */ 18908c2ecf20Sopenharmony_ci 0x04de, 0x0000, 18918c2ecf20Sopenharmony_ci /* 0x0418 0x0308 */ 18928c2ecf20Sopenharmony_ci 0x04e4, 0x0000, 18938c2ecf20Sopenharmony_ci /* 0x041e 0x0308 */ 18948c2ecf20Sopenharmony_ci 0x04e6, 0x0000, 18958c2ecf20Sopenharmony_ci /* 0x0423 0x0308 */ 18968c2ecf20Sopenharmony_ci 0x04f0, 0x0000, 18978c2ecf20Sopenharmony_ci /* 0x0427 0x0308 */ 18988c2ecf20Sopenharmony_ci 0x04f4, 0x0000, 18998c2ecf20Sopenharmony_ci /* 0x042b 0x0308 */ 19008c2ecf20Sopenharmony_ci 0x04f8, 0x0000, 19018c2ecf20Sopenharmony_ci /* 0x0430 0x0308 */ 19028c2ecf20Sopenharmony_ci 0x04d3, 0x0000, 19038c2ecf20Sopenharmony_ci /* 0x0435 0x0308 */ 19048c2ecf20Sopenharmony_ci 0x0451, 0x0000, 19058c2ecf20Sopenharmony_ci /* 0x0436 0x0308 */ 19068c2ecf20Sopenharmony_ci 0x04dd, 0x0000, 19078c2ecf20Sopenharmony_ci /* 0x0437 0x0308 */ 19088c2ecf20Sopenharmony_ci 0x04df, 0x0000, 19098c2ecf20Sopenharmony_ci /* 0x0438 0x0308 */ 19108c2ecf20Sopenharmony_ci 0x04e5, 0x0000, 19118c2ecf20Sopenharmony_ci /* 0x043e 0x0308 */ 19128c2ecf20Sopenharmony_ci 0x04e7, 0x0000, 19138c2ecf20Sopenharmony_ci /* 0x0443 0x0308 */ 19148c2ecf20Sopenharmony_ci 0x04f1, 0x0000, 19158c2ecf20Sopenharmony_ci /* 0x0447 0x0308 */ 19168c2ecf20Sopenharmony_ci 0x04f5, 0x0000, 19178c2ecf20Sopenharmony_ci /* 0x044b 0x0308 */ 19188c2ecf20Sopenharmony_ci 0x04f9, 0x0000, 19198c2ecf20Sopenharmony_ci /* 0x0456 0x0308 */ 19208c2ecf20Sopenharmony_ci 0x0457, 0x0000, 19218c2ecf20Sopenharmony_ci /* 0x0041 0x0309 */ 19228c2ecf20Sopenharmony_ci 0x1ea2, 0x0000, 19238c2ecf20Sopenharmony_ci /* 0x0045 0x0309 */ 19248c2ecf20Sopenharmony_ci 0x1eba, 0x0000, 19258c2ecf20Sopenharmony_ci /* 0x0049 0x0309 */ 19268c2ecf20Sopenharmony_ci 0x1ec8, 0x0000, 19278c2ecf20Sopenharmony_ci /* 0x004f 0x0309 */ 19288c2ecf20Sopenharmony_ci 0x1ece, 0x0000, 19298c2ecf20Sopenharmony_ci /* 0x0055 0x0309 */ 19308c2ecf20Sopenharmony_ci 0x1ee6, 0x0000, 19318c2ecf20Sopenharmony_ci /* 0x0059 0x0309 */ 19328c2ecf20Sopenharmony_ci 0x1ef6, 0x0000, 19338c2ecf20Sopenharmony_ci /* 0x0061 0x0309 */ 19348c2ecf20Sopenharmony_ci 0x1ea3, 0x0000, 19358c2ecf20Sopenharmony_ci /* 0x0065 0x0309 */ 19368c2ecf20Sopenharmony_ci 0x1ebb, 0x0000, 19378c2ecf20Sopenharmony_ci /* 0x0069 0x0309 */ 19388c2ecf20Sopenharmony_ci 0x1ec9, 0x0000, 19398c2ecf20Sopenharmony_ci /* 0x006f 0x0309 */ 19408c2ecf20Sopenharmony_ci 0x1ecf, 0x0000, 19418c2ecf20Sopenharmony_ci /* 0x0075 0x0309 */ 19428c2ecf20Sopenharmony_ci 0x1ee7, 0x0000, 19438c2ecf20Sopenharmony_ci /* 0x0079 0x0309 */ 19448c2ecf20Sopenharmony_ci 0x1ef7, 0x0000, 19458c2ecf20Sopenharmony_ci /* 0x0041 0x030a */ 19468c2ecf20Sopenharmony_ci 0x00c5, 0x0001, 0x0301, 0x0df8, 19478c2ecf20Sopenharmony_ci /* 0x0055 0x030a */ 19488c2ecf20Sopenharmony_ci 0x016e, 0x0000, 19498c2ecf20Sopenharmony_ci /* 0x0061 0x030a */ 19508c2ecf20Sopenharmony_ci 0x00e5, 0x0001, 0x0301, 0x0dfa, 19518c2ecf20Sopenharmony_ci /* 0x0075 0x030a */ 19528c2ecf20Sopenharmony_ci 0x016f, 0x0000, 19538c2ecf20Sopenharmony_ci /* 0x0077 0x030a */ 19548c2ecf20Sopenharmony_ci 0x1e98, 0x0000, 19558c2ecf20Sopenharmony_ci /* 0x0079 0x030a */ 19568c2ecf20Sopenharmony_ci 0x1e99, 0x0000, 19578c2ecf20Sopenharmony_ci /* 0x004f 0x030b */ 19588c2ecf20Sopenharmony_ci 0x0150, 0x0000, 19598c2ecf20Sopenharmony_ci /* 0x0055 0x030b */ 19608c2ecf20Sopenharmony_ci 0x0170, 0x0000, 19618c2ecf20Sopenharmony_ci /* 0x006f 0x030b */ 19628c2ecf20Sopenharmony_ci 0x0151, 0x0000, 19638c2ecf20Sopenharmony_ci /* 0x0075 0x030b */ 19648c2ecf20Sopenharmony_ci 0x0171, 0x0000, 19658c2ecf20Sopenharmony_ci /* 0x0423 0x030b */ 19668c2ecf20Sopenharmony_ci 0x04f2, 0x0000, 19678c2ecf20Sopenharmony_ci /* 0x0443 0x030b */ 19688c2ecf20Sopenharmony_ci 0x04f3, 0x0000, 19698c2ecf20Sopenharmony_ci /* 0x0041 0x030c */ 19708c2ecf20Sopenharmony_ci 0x01cd, 0x0000, 19718c2ecf20Sopenharmony_ci /* 0x0043 0x030c */ 19728c2ecf20Sopenharmony_ci 0x010c, 0x0000, 19738c2ecf20Sopenharmony_ci /* 0x0044 0x030c */ 19748c2ecf20Sopenharmony_ci 0x010e, 0x0000, 19758c2ecf20Sopenharmony_ci /* 0x0045 0x030c */ 19768c2ecf20Sopenharmony_ci 0x011a, 0x0000, 19778c2ecf20Sopenharmony_ci /* 0x0047 0x030c */ 19788c2ecf20Sopenharmony_ci 0x01e6, 0x0000, 19798c2ecf20Sopenharmony_ci /* 0x0049 0x030c */ 19808c2ecf20Sopenharmony_ci 0x01cf, 0x0000, 19818c2ecf20Sopenharmony_ci /* 0x004b 0x030c */ 19828c2ecf20Sopenharmony_ci 0x01e8, 0x0000, 19838c2ecf20Sopenharmony_ci /* 0x004c 0x030c */ 19848c2ecf20Sopenharmony_ci 0x013d, 0x0000, 19858c2ecf20Sopenharmony_ci /* 0x004e 0x030c */ 19868c2ecf20Sopenharmony_ci 0x0147, 0x0000, 19878c2ecf20Sopenharmony_ci /* 0x004f 0x030c */ 19888c2ecf20Sopenharmony_ci 0x01d1, 0x0000, 19898c2ecf20Sopenharmony_ci /* 0x0052 0x030c */ 19908c2ecf20Sopenharmony_ci 0x0158, 0x0000, 19918c2ecf20Sopenharmony_ci /* 0x0053 0x030c */ 19928c2ecf20Sopenharmony_ci 0x0160, 0x0001, 0x0307, 0x0dfc, 19938c2ecf20Sopenharmony_ci /* 0x0054 0x030c */ 19948c2ecf20Sopenharmony_ci 0x0164, 0x0000, 19958c2ecf20Sopenharmony_ci /* 0x0055 0x030c */ 19968c2ecf20Sopenharmony_ci 0x01d3, 0x0000, 19978c2ecf20Sopenharmony_ci /* 0x005a 0x030c */ 19988c2ecf20Sopenharmony_ci 0x017d, 0x0000, 19998c2ecf20Sopenharmony_ci /* 0x0061 0x030c */ 20008c2ecf20Sopenharmony_ci 0x01ce, 0x0000, 20018c2ecf20Sopenharmony_ci /* 0x0063 0x030c */ 20028c2ecf20Sopenharmony_ci 0x010d, 0x0000, 20038c2ecf20Sopenharmony_ci /* 0x0064 0x030c */ 20048c2ecf20Sopenharmony_ci 0x010f, 0x0000, 20058c2ecf20Sopenharmony_ci /* 0x0065 0x030c */ 20068c2ecf20Sopenharmony_ci 0x011b, 0x0000, 20078c2ecf20Sopenharmony_ci /* 0x0067 0x030c */ 20088c2ecf20Sopenharmony_ci 0x01e7, 0x0000, 20098c2ecf20Sopenharmony_ci /* 0x0069 0x030c */ 20108c2ecf20Sopenharmony_ci 0x01d0, 0x0000, 20118c2ecf20Sopenharmony_ci /* 0x006a 0x030c */ 20128c2ecf20Sopenharmony_ci 0x01f0, 0x0000, 20138c2ecf20Sopenharmony_ci /* 0x006b 0x030c */ 20148c2ecf20Sopenharmony_ci 0x01e9, 0x0000, 20158c2ecf20Sopenharmony_ci /* 0x006c 0x030c */ 20168c2ecf20Sopenharmony_ci 0x013e, 0x0000, 20178c2ecf20Sopenharmony_ci /* 0x006e 0x030c */ 20188c2ecf20Sopenharmony_ci 0x0148, 0x0000, 20198c2ecf20Sopenharmony_ci /* 0x006f 0x030c */ 20208c2ecf20Sopenharmony_ci 0x01d2, 0x0000, 20218c2ecf20Sopenharmony_ci /* 0x0072 0x030c */ 20228c2ecf20Sopenharmony_ci 0x0159, 0x0000, 20238c2ecf20Sopenharmony_ci /* 0x0073 0x030c */ 20248c2ecf20Sopenharmony_ci 0x0161, 0x0001, 0x0307, 0x0dfe, 20258c2ecf20Sopenharmony_ci /* 0x0074 0x030c */ 20268c2ecf20Sopenharmony_ci 0x0165, 0x0000, 20278c2ecf20Sopenharmony_ci /* 0x0075 0x030c */ 20288c2ecf20Sopenharmony_ci 0x01d4, 0x0000, 20298c2ecf20Sopenharmony_ci /* 0x007a 0x030c */ 20308c2ecf20Sopenharmony_ci 0x017e, 0x0000, 20318c2ecf20Sopenharmony_ci /* 0x01b7 0x030c */ 20328c2ecf20Sopenharmony_ci 0x01ee, 0x0000, 20338c2ecf20Sopenharmony_ci /* 0x0292 0x030c */ 20348c2ecf20Sopenharmony_ci 0x01ef, 0x0000, 20358c2ecf20Sopenharmony_ci /* 0x00a8 0x030d */ 20368c2ecf20Sopenharmony_ci 0x0385, 0x0000, 20378c2ecf20Sopenharmony_ci /* 0x0308 0x030d */ 20388c2ecf20Sopenharmony_ci 0x0344, 0x0000, 20398c2ecf20Sopenharmony_ci /* 0x0391 0x030d */ 20408c2ecf20Sopenharmony_ci 0x0386, 0x0000, 20418c2ecf20Sopenharmony_ci /* 0x0395 0x030d */ 20428c2ecf20Sopenharmony_ci 0x0388, 0x0000, 20438c2ecf20Sopenharmony_ci /* 0x0397 0x030d */ 20448c2ecf20Sopenharmony_ci 0x0389, 0x0000, 20458c2ecf20Sopenharmony_ci /* 0x0399 0x030d */ 20468c2ecf20Sopenharmony_ci 0x038a, 0x0000, 20478c2ecf20Sopenharmony_ci /* 0x039f 0x030d */ 20488c2ecf20Sopenharmony_ci 0x038c, 0x0000, 20498c2ecf20Sopenharmony_ci /* 0x03a5 0x030d */ 20508c2ecf20Sopenharmony_ci 0x038e, 0x0000, 20518c2ecf20Sopenharmony_ci /* 0x03a9 0x030d */ 20528c2ecf20Sopenharmony_ci 0x038f, 0x0000, 20538c2ecf20Sopenharmony_ci /* 0x03b1 0x030d */ 20548c2ecf20Sopenharmony_ci 0x03ac, 0x0000, 20558c2ecf20Sopenharmony_ci /* 0x03b5 0x030d */ 20568c2ecf20Sopenharmony_ci 0x03ad, 0x0000, 20578c2ecf20Sopenharmony_ci /* 0x03b7 0x030d */ 20588c2ecf20Sopenharmony_ci 0x03ae, 0x0000, 20598c2ecf20Sopenharmony_ci /* 0x03b9 0x030d */ 20608c2ecf20Sopenharmony_ci 0x03af, 0x0000, 20618c2ecf20Sopenharmony_ci /* 0x03bf 0x030d */ 20628c2ecf20Sopenharmony_ci 0x03cc, 0x0000, 20638c2ecf20Sopenharmony_ci /* 0x03c5 0x030d */ 20648c2ecf20Sopenharmony_ci 0x03cd, 0x0000, 20658c2ecf20Sopenharmony_ci /* 0x03c9 0x030d */ 20668c2ecf20Sopenharmony_ci 0x03ce, 0x0000, 20678c2ecf20Sopenharmony_ci /* 0x03d2 0x030d */ 20688c2ecf20Sopenharmony_ci 0x03d3, 0x0000, 20698c2ecf20Sopenharmony_ci /* 0x0041 0x030f */ 20708c2ecf20Sopenharmony_ci 0x0200, 0x0000, 20718c2ecf20Sopenharmony_ci /* 0x0045 0x030f */ 20728c2ecf20Sopenharmony_ci 0x0204, 0x0000, 20738c2ecf20Sopenharmony_ci /* 0x0049 0x030f */ 20748c2ecf20Sopenharmony_ci 0x0208, 0x0000, 20758c2ecf20Sopenharmony_ci /* 0x004f 0x030f */ 20768c2ecf20Sopenharmony_ci 0x020c, 0x0000, 20778c2ecf20Sopenharmony_ci /* 0x0052 0x030f */ 20788c2ecf20Sopenharmony_ci 0x0210, 0x0000, 20798c2ecf20Sopenharmony_ci /* 0x0055 0x030f */ 20808c2ecf20Sopenharmony_ci 0x0214, 0x0000, 20818c2ecf20Sopenharmony_ci /* 0x0061 0x030f */ 20828c2ecf20Sopenharmony_ci 0x0201, 0x0000, 20838c2ecf20Sopenharmony_ci /* 0x0065 0x030f */ 20848c2ecf20Sopenharmony_ci 0x0205, 0x0000, 20858c2ecf20Sopenharmony_ci /* 0x0069 0x030f */ 20868c2ecf20Sopenharmony_ci 0x0209, 0x0000, 20878c2ecf20Sopenharmony_ci /* 0x006f 0x030f */ 20888c2ecf20Sopenharmony_ci 0x020d, 0x0000, 20898c2ecf20Sopenharmony_ci /* 0x0072 0x030f */ 20908c2ecf20Sopenharmony_ci 0x0211, 0x0000, 20918c2ecf20Sopenharmony_ci /* 0x0075 0x030f */ 20928c2ecf20Sopenharmony_ci 0x0215, 0x0000, 20938c2ecf20Sopenharmony_ci /* 0x0474 0x030f */ 20948c2ecf20Sopenharmony_ci 0x0476, 0x0000, 20958c2ecf20Sopenharmony_ci /* 0x0475 0x030f */ 20968c2ecf20Sopenharmony_ci 0x0477, 0x0000, 20978c2ecf20Sopenharmony_ci /* 0x0041 0x0311 */ 20988c2ecf20Sopenharmony_ci 0x0202, 0x0000, 20998c2ecf20Sopenharmony_ci /* 0x0045 0x0311 */ 21008c2ecf20Sopenharmony_ci 0x0206, 0x0000, 21018c2ecf20Sopenharmony_ci /* 0x0049 0x0311 */ 21028c2ecf20Sopenharmony_ci 0x020a, 0x0000, 21038c2ecf20Sopenharmony_ci /* 0x004f 0x0311 */ 21048c2ecf20Sopenharmony_ci 0x020e, 0x0000, 21058c2ecf20Sopenharmony_ci /* 0x0052 0x0311 */ 21068c2ecf20Sopenharmony_ci 0x0212, 0x0000, 21078c2ecf20Sopenharmony_ci /* 0x0055 0x0311 */ 21088c2ecf20Sopenharmony_ci 0x0216, 0x0000, 21098c2ecf20Sopenharmony_ci /* 0x0061 0x0311 */ 21108c2ecf20Sopenharmony_ci 0x0203, 0x0000, 21118c2ecf20Sopenharmony_ci /* 0x0065 0x0311 */ 21128c2ecf20Sopenharmony_ci 0x0207, 0x0000, 21138c2ecf20Sopenharmony_ci /* 0x0069 0x0311 */ 21148c2ecf20Sopenharmony_ci 0x020b, 0x0000, 21158c2ecf20Sopenharmony_ci /* 0x006f 0x0311 */ 21168c2ecf20Sopenharmony_ci 0x020f, 0x0000, 21178c2ecf20Sopenharmony_ci /* 0x0072 0x0311 */ 21188c2ecf20Sopenharmony_ci 0x0213, 0x0000, 21198c2ecf20Sopenharmony_ci /* 0x0075 0x0311 */ 21208c2ecf20Sopenharmony_ci 0x0217, 0x0000, 21218c2ecf20Sopenharmony_ci /* 0x0391 0x0313 */ 21228c2ecf20Sopenharmony_ci 0x1f08, 0x0003, 0x0300, 0x0e00, 0x0301, 0x0e02, 0x0342, 0x0e04, 21238c2ecf20Sopenharmony_ci /* 0x0395 0x0313 */ 21248c2ecf20Sopenharmony_ci 0x1f18, 0x0002, 0x0300, 0x0e06, 0x0301, 0x0e08, 21258c2ecf20Sopenharmony_ci /* 0x0397 0x0313 */ 21268c2ecf20Sopenharmony_ci 0x1f28, 0x0003, 0x0300, 0x0e0a, 0x0301, 0x0e0c, 0x0342, 0x0e0e, 21278c2ecf20Sopenharmony_ci /* 0x0399 0x0313 */ 21288c2ecf20Sopenharmony_ci 0x1f38, 0x0003, 0x0300, 0x0e10, 0x0301, 0x0e12, 0x0342, 0x0e14, 21298c2ecf20Sopenharmony_ci /* 0x039f 0x0313 */ 21308c2ecf20Sopenharmony_ci 0x1f48, 0x0002, 0x0300, 0x0e16, 0x0301, 0x0e18, 21318c2ecf20Sopenharmony_ci /* 0x03a9 0x0313 */ 21328c2ecf20Sopenharmony_ci 0x1f68, 0x0003, 0x0300, 0x0e1a, 0x0301, 0x0e1c, 0x0342, 0x0e1e, 21338c2ecf20Sopenharmony_ci /* 0x03b1 0x0313 */ 21348c2ecf20Sopenharmony_ci 0x1f00, 0x0003, 0x0300, 0x0e20, 0x0301, 0x0e22, 0x0342, 0x0e24, 21358c2ecf20Sopenharmony_ci /* 0x03b5 0x0313 */ 21368c2ecf20Sopenharmony_ci 0x1f10, 0x0002, 0x0300, 0x0e26, 0x0301, 0x0e28, 21378c2ecf20Sopenharmony_ci /* 0x03b7 0x0313 */ 21388c2ecf20Sopenharmony_ci 0x1f20, 0x0003, 0x0300, 0x0e2a, 0x0301, 0x0e2c, 0x0342, 0x0e2e, 21398c2ecf20Sopenharmony_ci /* 0x03b9 0x0313 */ 21408c2ecf20Sopenharmony_ci 0x1f30, 0x0003, 0x0300, 0x0e30, 0x0301, 0x0e32, 0x0342, 0x0e34, 21418c2ecf20Sopenharmony_ci /* 0x03bf 0x0313 */ 21428c2ecf20Sopenharmony_ci 0x1f40, 0x0002, 0x0300, 0x0e36, 0x0301, 0x0e38, 21438c2ecf20Sopenharmony_ci /* 0x03c1 0x0313 */ 21448c2ecf20Sopenharmony_ci 0x1fe4, 0x0000, 21458c2ecf20Sopenharmony_ci /* 0x03c5 0x0313 */ 21468c2ecf20Sopenharmony_ci 0x1f50, 0x0003, 0x0300, 0x0e3a, 0x0301, 0x0e3c, 0x0342, 0x0e3e, 21478c2ecf20Sopenharmony_ci /* 0x03c9 0x0313 */ 21488c2ecf20Sopenharmony_ci 0x1f60, 0x0003, 0x0300, 0x0e40, 0x0301, 0x0e42, 0x0342, 0x0e44, 21498c2ecf20Sopenharmony_ci /* 0x0391 0x0314 */ 21508c2ecf20Sopenharmony_ci 0x1f09, 0x0003, 0x0300, 0x0e46, 0x0301, 0x0e48, 0x0342, 0x0e4a, 21518c2ecf20Sopenharmony_ci /* 0x0395 0x0314 */ 21528c2ecf20Sopenharmony_ci 0x1f19, 0x0002, 0x0300, 0x0e4c, 0x0301, 0x0e4e, 21538c2ecf20Sopenharmony_ci /* 0x0397 0x0314 */ 21548c2ecf20Sopenharmony_ci 0x1f29, 0x0003, 0x0300, 0x0e50, 0x0301, 0x0e52, 0x0342, 0x0e54, 21558c2ecf20Sopenharmony_ci /* 0x0399 0x0314 */ 21568c2ecf20Sopenharmony_ci 0x1f39, 0x0003, 0x0300, 0x0e56, 0x0301, 0x0e58, 0x0342, 0x0e5a, 21578c2ecf20Sopenharmony_ci /* 0x039f 0x0314 */ 21588c2ecf20Sopenharmony_ci 0x1f49, 0x0002, 0x0300, 0x0e5c, 0x0301, 0x0e5e, 21598c2ecf20Sopenharmony_ci /* 0x03a1 0x0314 */ 21608c2ecf20Sopenharmony_ci 0x1fec, 0x0000, 21618c2ecf20Sopenharmony_ci /* 0x03a5 0x0314 */ 21628c2ecf20Sopenharmony_ci 0x1f59, 0x0003, 0x0300, 0x0e60, 0x0301, 0x0e62, 0x0342, 0x0e64, 21638c2ecf20Sopenharmony_ci /* 0x03a9 0x0314 */ 21648c2ecf20Sopenharmony_ci 0x1f69, 0x0003, 0x0300, 0x0e66, 0x0301, 0x0e68, 0x0342, 0x0e6a, 21658c2ecf20Sopenharmony_ci /* 0x03b1 0x0314 */ 21668c2ecf20Sopenharmony_ci 0x1f01, 0x0003, 0x0300, 0x0e6c, 0x0301, 0x0e6e, 0x0342, 0x0e70, 21678c2ecf20Sopenharmony_ci /* 0x03b5 0x0314 */ 21688c2ecf20Sopenharmony_ci 0x1f11, 0x0002, 0x0300, 0x0e72, 0x0301, 0x0e74, 21698c2ecf20Sopenharmony_ci /* 0x03b7 0x0314 */ 21708c2ecf20Sopenharmony_ci 0x1f21, 0x0003, 0x0300, 0x0e76, 0x0301, 0x0e78, 0x0342, 0x0e7a, 21718c2ecf20Sopenharmony_ci /* 0x03b9 0x0314 */ 21728c2ecf20Sopenharmony_ci 0x1f31, 0x0003, 0x0300, 0x0e7c, 0x0301, 0x0e7e, 0x0342, 0x0e80, 21738c2ecf20Sopenharmony_ci /* 0x03bf 0x0314 */ 21748c2ecf20Sopenharmony_ci 0x1f41, 0x0002, 0x0300, 0x0e82, 0x0301, 0x0e84, 21758c2ecf20Sopenharmony_ci /* 0x03c1 0x0314 */ 21768c2ecf20Sopenharmony_ci 0x1fe5, 0x0000, 21778c2ecf20Sopenharmony_ci /* 0x03c5 0x0314 */ 21788c2ecf20Sopenharmony_ci 0x1f51, 0x0003, 0x0300, 0x0e86, 0x0301, 0x0e88, 0x0342, 0x0e8a, 21798c2ecf20Sopenharmony_ci /* 0x03c9 0x0314 */ 21808c2ecf20Sopenharmony_ci 0x1f61, 0x0003, 0x0300, 0x0e8c, 0x0301, 0x0e8e, 0x0342, 0x0e90, 21818c2ecf20Sopenharmony_ci /* 0x004f 0x031b */ 21828c2ecf20Sopenharmony_ci 0x01a0, 0x0005, 0x0300, 0x0e92, 0x0301, 0x0e94, 0x0303, 0x0e96, 21838c2ecf20Sopenharmony_ci 0x0309, 0x0e98, 0x0323, 0x0e9a, 21848c2ecf20Sopenharmony_ci /* 0x0055 0x031b */ 21858c2ecf20Sopenharmony_ci 0x01af, 0x0005, 0x0300, 0x0e9c, 0x0301, 0x0e9e, 0x0303, 0x0ea0, 21868c2ecf20Sopenharmony_ci 0x0309, 0x0ea2, 0x0323, 0x0ea4, 21878c2ecf20Sopenharmony_ci /* 0x006f 0x031b */ 21888c2ecf20Sopenharmony_ci 0x01a1, 0x0005, 0x0300, 0x0ea6, 0x0301, 0x0ea8, 0x0303, 0x0eaa, 21898c2ecf20Sopenharmony_ci 0x0309, 0x0eac, 0x0323, 0x0eae, 21908c2ecf20Sopenharmony_ci /* 0x0075 0x031b */ 21918c2ecf20Sopenharmony_ci 0x01b0, 0x0005, 0x0300, 0x0eb0, 0x0301, 0x0eb2, 0x0303, 0x0eb4, 21928c2ecf20Sopenharmony_ci 0x0309, 0x0eb6, 0x0323, 0x0eb8, 21938c2ecf20Sopenharmony_ci /* 0x0041 0x0323 */ 21948c2ecf20Sopenharmony_ci 0x1ea0, 0x0002, 0x0302, 0x0eba, 0x0306, 0x0ebc, 21958c2ecf20Sopenharmony_ci /* 0x0042 0x0323 */ 21968c2ecf20Sopenharmony_ci 0x1e04, 0x0000, 21978c2ecf20Sopenharmony_ci /* 0x0044 0x0323 */ 21988c2ecf20Sopenharmony_ci 0x1e0c, 0x0000, 21998c2ecf20Sopenharmony_ci /* 0x0045 0x0323 */ 22008c2ecf20Sopenharmony_ci 0x1eb8, 0x0001, 0x0302, 0x0ebe, 22018c2ecf20Sopenharmony_ci /* 0x0048 0x0323 */ 22028c2ecf20Sopenharmony_ci 0x1e24, 0x0000, 22038c2ecf20Sopenharmony_ci /* 0x0049 0x0323 */ 22048c2ecf20Sopenharmony_ci 0x1eca, 0x0000, 22058c2ecf20Sopenharmony_ci /* 0x004b 0x0323 */ 22068c2ecf20Sopenharmony_ci 0x1e32, 0x0000, 22078c2ecf20Sopenharmony_ci /* 0x004c 0x0323 */ 22088c2ecf20Sopenharmony_ci 0x1e36, 0x0001, 0x0304, 0x0ec0, 22098c2ecf20Sopenharmony_ci /* 0x004d 0x0323 */ 22108c2ecf20Sopenharmony_ci 0x1e42, 0x0000, 22118c2ecf20Sopenharmony_ci /* 0x004e 0x0323 */ 22128c2ecf20Sopenharmony_ci 0x1e46, 0x0000, 22138c2ecf20Sopenharmony_ci /* 0x004f 0x0323 */ 22148c2ecf20Sopenharmony_ci 0x1ecc, 0x0001, 0x0302, 0x0ec2, 22158c2ecf20Sopenharmony_ci /* 0x0052 0x0323 */ 22168c2ecf20Sopenharmony_ci 0x1e5a, 0x0001, 0x0304, 0x0ec4, 22178c2ecf20Sopenharmony_ci /* 0x0053 0x0323 */ 22188c2ecf20Sopenharmony_ci 0x1e62, 0x0001, 0x0307, 0x0ec6, 22198c2ecf20Sopenharmony_ci /* 0x0054 0x0323 */ 22208c2ecf20Sopenharmony_ci 0x1e6c, 0x0000, 22218c2ecf20Sopenharmony_ci /* 0x0055 0x0323 */ 22228c2ecf20Sopenharmony_ci 0x1ee4, 0x0000, 22238c2ecf20Sopenharmony_ci /* 0x0056 0x0323 */ 22248c2ecf20Sopenharmony_ci 0x1e7e, 0x0000, 22258c2ecf20Sopenharmony_ci /* 0x0057 0x0323 */ 22268c2ecf20Sopenharmony_ci 0x1e88, 0x0000, 22278c2ecf20Sopenharmony_ci /* 0x0059 0x0323 */ 22288c2ecf20Sopenharmony_ci 0x1ef4, 0x0000, 22298c2ecf20Sopenharmony_ci /* 0x005a 0x0323 */ 22308c2ecf20Sopenharmony_ci 0x1e92, 0x0000, 22318c2ecf20Sopenharmony_ci /* 0x0061 0x0323 */ 22328c2ecf20Sopenharmony_ci 0x1ea1, 0x0002, 0x0302, 0x0ec8, 0x0306, 0x0eca, 22338c2ecf20Sopenharmony_ci /* 0x0062 0x0323 */ 22348c2ecf20Sopenharmony_ci 0x1e05, 0x0000, 22358c2ecf20Sopenharmony_ci /* 0x0064 0x0323 */ 22368c2ecf20Sopenharmony_ci 0x1e0d, 0x0000, 22378c2ecf20Sopenharmony_ci /* 0x0065 0x0323 */ 22388c2ecf20Sopenharmony_ci 0x1eb9, 0x0001, 0x0302, 0x0ecc, 22398c2ecf20Sopenharmony_ci /* 0x0068 0x0323 */ 22408c2ecf20Sopenharmony_ci 0x1e25, 0x0000, 22418c2ecf20Sopenharmony_ci /* 0x0069 0x0323 */ 22428c2ecf20Sopenharmony_ci 0x1ecb, 0x0000, 22438c2ecf20Sopenharmony_ci /* 0x006b 0x0323 */ 22448c2ecf20Sopenharmony_ci 0x1e33, 0x0000, 22458c2ecf20Sopenharmony_ci /* 0x006c 0x0323 */ 22468c2ecf20Sopenharmony_ci 0x1e37, 0x0001, 0x0304, 0x0ece, 22478c2ecf20Sopenharmony_ci /* 0x006d 0x0323 */ 22488c2ecf20Sopenharmony_ci 0x1e43, 0x0000, 22498c2ecf20Sopenharmony_ci /* 0x006e 0x0323 */ 22508c2ecf20Sopenharmony_ci 0x1e47, 0x0000, 22518c2ecf20Sopenharmony_ci /* 0x006f 0x0323 */ 22528c2ecf20Sopenharmony_ci 0x1ecd, 0x0001, 0x0302, 0x0ed0, 22538c2ecf20Sopenharmony_ci /* 0x0072 0x0323 */ 22548c2ecf20Sopenharmony_ci 0x1e5b, 0x0001, 0x0304, 0x0ed2, 22558c2ecf20Sopenharmony_ci /* 0x0073 0x0323 */ 22568c2ecf20Sopenharmony_ci 0x1e63, 0x0001, 0x0307, 0x0ed4, 22578c2ecf20Sopenharmony_ci /* 0x0074 0x0323 */ 22588c2ecf20Sopenharmony_ci 0x1e6d, 0x0000, 22598c2ecf20Sopenharmony_ci /* 0x0075 0x0323 */ 22608c2ecf20Sopenharmony_ci 0x1ee5, 0x0000, 22618c2ecf20Sopenharmony_ci /* 0x0076 0x0323 */ 22628c2ecf20Sopenharmony_ci 0x1e7f, 0x0000, 22638c2ecf20Sopenharmony_ci /* 0x0077 0x0323 */ 22648c2ecf20Sopenharmony_ci 0x1e89, 0x0000, 22658c2ecf20Sopenharmony_ci /* 0x0079 0x0323 */ 22668c2ecf20Sopenharmony_ci 0x1ef5, 0x0000, 22678c2ecf20Sopenharmony_ci /* 0x007a 0x0323 */ 22688c2ecf20Sopenharmony_ci 0x1e93, 0x0000, 22698c2ecf20Sopenharmony_ci /* 0x0055 0x0324 */ 22708c2ecf20Sopenharmony_ci 0x1e72, 0x0000, 22718c2ecf20Sopenharmony_ci /* 0x0075 0x0324 */ 22728c2ecf20Sopenharmony_ci 0x1e73, 0x0000, 22738c2ecf20Sopenharmony_ci /* 0x0041 0x0325 */ 22748c2ecf20Sopenharmony_ci 0x1e00, 0x0000, 22758c2ecf20Sopenharmony_ci /* 0x0061 0x0325 */ 22768c2ecf20Sopenharmony_ci 0x1e01, 0x0000, 22778c2ecf20Sopenharmony_ci /* 0x0043 0x0327 */ 22788c2ecf20Sopenharmony_ci 0x00c7, 0x0001, 0x0301, 0x0ed6, 22798c2ecf20Sopenharmony_ci /* 0x0044 0x0327 */ 22808c2ecf20Sopenharmony_ci 0x1e10, 0x0000, 22818c2ecf20Sopenharmony_ci /* 0x0045 0x0327 */ 22828c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0306, 0x0ed8, 22838c2ecf20Sopenharmony_ci /* 0x0047 0x0327 */ 22848c2ecf20Sopenharmony_ci 0x0122, 0x0000, 22858c2ecf20Sopenharmony_ci /* 0x0048 0x0327 */ 22868c2ecf20Sopenharmony_ci 0x1e28, 0x0000, 22878c2ecf20Sopenharmony_ci /* 0x004b 0x0327 */ 22888c2ecf20Sopenharmony_ci 0x0136, 0x0000, 22898c2ecf20Sopenharmony_ci /* 0x004c 0x0327 */ 22908c2ecf20Sopenharmony_ci 0x013b, 0x0000, 22918c2ecf20Sopenharmony_ci /* 0x004e 0x0327 */ 22928c2ecf20Sopenharmony_ci 0x0145, 0x0000, 22938c2ecf20Sopenharmony_ci /* 0x0052 0x0327 */ 22948c2ecf20Sopenharmony_ci 0x0156, 0x0000, 22958c2ecf20Sopenharmony_ci /* 0x0053 0x0327 */ 22968c2ecf20Sopenharmony_ci 0x015e, 0x0000, 22978c2ecf20Sopenharmony_ci /* 0x0054 0x0327 */ 22988c2ecf20Sopenharmony_ci 0x0162, 0x0000, 22998c2ecf20Sopenharmony_ci /* 0x0063 0x0327 */ 23008c2ecf20Sopenharmony_ci 0x00e7, 0x0001, 0x0301, 0x0eda, 23018c2ecf20Sopenharmony_ci /* 0x0064 0x0327 */ 23028c2ecf20Sopenharmony_ci 0x1e11, 0x0000, 23038c2ecf20Sopenharmony_ci /* 0x0065 0x0327 */ 23048c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0306, 0x0edc, 23058c2ecf20Sopenharmony_ci /* 0x0067 0x0327 */ 23068c2ecf20Sopenharmony_ci 0x0123, 0x0000, 23078c2ecf20Sopenharmony_ci /* 0x0068 0x0327 */ 23088c2ecf20Sopenharmony_ci 0x1e29, 0x0000, 23098c2ecf20Sopenharmony_ci /* 0x006b 0x0327 */ 23108c2ecf20Sopenharmony_ci 0x0137, 0x0000, 23118c2ecf20Sopenharmony_ci /* 0x006c 0x0327 */ 23128c2ecf20Sopenharmony_ci 0x013c, 0x0000, 23138c2ecf20Sopenharmony_ci /* 0x006e 0x0327 */ 23148c2ecf20Sopenharmony_ci 0x0146, 0x0000, 23158c2ecf20Sopenharmony_ci /* 0x0072 0x0327 */ 23168c2ecf20Sopenharmony_ci 0x0157, 0x0000, 23178c2ecf20Sopenharmony_ci /* 0x0073 0x0327 */ 23188c2ecf20Sopenharmony_ci 0x015f, 0x0000, 23198c2ecf20Sopenharmony_ci /* 0x0074 0x0327 */ 23208c2ecf20Sopenharmony_ci 0x0163, 0x0000, 23218c2ecf20Sopenharmony_ci /* 0x0041 0x0328 */ 23228c2ecf20Sopenharmony_ci 0x0104, 0x0000, 23238c2ecf20Sopenharmony_ci /* 0x0045 0x0328 */ 23248c2ecf20Sopenharmony_ci 0x0118, 0x0000, 23258c2ecf20Sopenharmony_ci /* 0x0049 0x0328 */ 23268c2ecf20Sopenharmony_ci 0x012e, 0x0000, 23278c2ecf20Sopenharmony_ci /* 0x004f 0x0328 */ 23288c2ecf20Sopenharmony_ci 0x01ea, 0x0001, 0x0304, 0x0ede, 23298c2ecf20Sopenharmony_ci /* 0x0055 0x0328 */ 23308c2ecf20Sopenharmony_ci 0x0172, 0x0000, 23318c2ecf20Sopenharmony_ci /* 0x0061 0x0328 */ 23328c2ecf20Sopenharmony_ci 0x0105, 0x0000, 23338c2ecf20Sopenharmony_ci /* 0x0065 0x0328 */ 23348c2ecf20Sopenharmony_ci 0x0119, 0x0000, 23358c2ecf20Sopenharmony_ci /* 0x0069 0x0328 */ 23368c2ecf20Sopenharmony_ci 0x012f, 0x0000, 23378c2ecf20Sopenharmony_ci /* 0x006f 0x0328 */ 23388c2ecf20Sopenharmony_ci 0x01eb, 0x0001, 0x0304, 0x0ee0, 23398c2ecf20Sopenharmony_ci /* 0x0075 0x0328 */ 23408c2ecf20Sopenharmony_ci 0x0173, 0x0000, 23418c2ecf20Sopenharmony_ci /* 0x0044 0x032d */ 23428c2ecf20Sopenharmony_ci 0x1e12, 0x0000, 23438c2ecf20Sopenharmony_ci /* 0x0045 0x032d */ 23448c2ecf20Sopenharmony_ci 0x1e18, 0x0000, 23458c2ecf20Sopenharmony_ci /* 0x004c 0x032d */ 23468c2ecf20Sopenharmony_ci 0x1e3c, 0x0000, 23478c2ecf20Sopenharmony_ci /* 0x004e 0x032d */ 23488c2ecf20Sopenharmony_ci 0x1e4a, 0x0000, 23498c2ecf20Sopenharmony_ci /* 0x0054 0x032d */ 23508c2ecf20Sopenharmony_ci 0x1e70, 0x0000, 23518c2ecf20Sopenharmony_ci /* 0x0055 0x032d */ 23528c2ecf20Sopenharmony_ci 0x1e76, 0x0000, 23538c2ecf20Sopenharmony_ci /* 0x0064 0x032d */ 23548c2ecf20Sopenharmony_ci 0x1e13, 0x0000, 23558c2ecf20Sopenharmony_ci /* 0x0065 0x032d */ 23568c2ecf20Sopenharmony_ci 0x1e19, 0x0000, 23578c2ecf20Sopenharmony_ci /* 0x006c 0x032d */ 23588c2ecf20Sopenharmony_ci 0x1e3d, 0x0000, 23598c2ecf20Sopenharmony_ci /* 0x006e 0x032d */ 23608c2ecf20Sopenharmony_ci 0x1e4b, 0x0000, 23618c2ecf20Sopenharmony_ci /* 0x0074 0x032d */ 23628c2ecf20Sopenharmony_ci 0x1e71, 0x0000, 23638c2ecf20Sopenharmony_ci /* 0x0075 0x032d */ 23648c2ecf20Sopenharmony_ci 0x1e77, 0x0000, 23658c2ecf20Sopenharmony_ci /* 0x0048 0x032e */ 23668c2ecf20Sopenharmony_ci 0x1e2a, 0x0000, 23678c2ecf20Sopenharmony_ci /* 0x0068 0x032e */ 23688c2ecf20Sopenharmony_ci 0x1e2b, 0x0000, 23698c2ecf20Sopenharmony_ci /* 0x0045 0x0330 */ 23708c2ecf20Sopenharmony_ci 0x1e1a, 0x0000, 23718c2ecf20Sopenharmony_ci /* 0x0049 0x0330 */ 23728c2ecf20Sopenharmony_ci 0x1e2c, 0x0000, 23738c2ecf20Sopenharmony_ci /* 0x0055 0x0330 */ 23748c2ecf20Sopenharmony_ci 0x1e74, 0x0000, 23758c2ecf20Sopenharmony_ci /* 0x0065 0x0330 */ 23768c2ecf20Sopenharmony_ci 0x1e1b, 0x0000, 23778c2ecf20Sopenharmony_ci /* 0x0069 0x0330 */ 23788c2ecf20Sopenharmony_ci 0x1e2d, 0x0000, 23798c2ecf20Sopenharmony_ci /* 0x0075 0x0330 */ 23808c2ecf20Sopenharmony_ci 0x1e75, 0x0000, 23818c2ecf20Sopenharmony_ci /* 0x0042 0x0331 */ 23828c2ecf20Sopenharmony_ci 0x1e06, 0x0000, 23838c2ecf20Sopenharmony_ci /* 0x0044 0x0331 */ 23848c2ecf20Sopenharmony_ci 0x1e0e, 0x0000, 23858c2ecf20Sopenharmony_ci /* 0x004b 0x0331 */ 23868c2ecf20Sopenharmony_ci 0x1e34, 0x0000, 23878c2ecf20Sopenharmony_ci /* 0x004c 0x0331 */ 23888c2ecf20Sopenharmony_ci 0x1e3a, 0x0000, 23898c2ecf20Sopenharmony_ci /* 0x004e 0x0331 */ 23908c2ecf20Sopenharmony_ci 0x1e48, 0x0000, 23918c2ecf20Sopenharmony_ci /* 0x0052 0x0331 */ 23928c2ecf20Sopenharmony_ci 0x1e5e, 0x0000, 23938c2ecf20Sopenharmony_ci /* 0x0054 0x0331 */ 23948c2ecf20Sopenharmony_ci 0x1e6e, 0x0000, 23958c2ecf20Sopenharmony_ci /* 0x005a 0x0331 */ 23968c2ecf20Sopenharmony_ci 0x1e94, 0x0000, 23978c2ecf20Sopenharmony_ci /* 0x0062 0x0331 */ 23988c2ecf20Sopenharmony_ci 0x1e07, 0x0000, 23998c2ecf20Sopenharmony_ci /* 0x0064 0x0331 */ 24008c2ecf20Sopenharmony_ci 0x1e0f, 0x0000, 24018c2ecf20Sopenharmony_ci /* 0x0068 0x0331 */ 24028c2ecf20Sopenharmony_ci 0x1e96, 0x0000, 24038c2ecf20Sopenharmony_ci /* 0x006b 0x0331 */ 24048c2ecf20Sopenharmony_ci 0x1e35, 0x0000, 24058c2ecf20Sopenharmony_ci /* 0x006c 0x0331 */ 24068c2ecf20Sopenharmony_ci 0x1e3b, 0x0000, 24078c2ecf20Sopenharmony_ci /* 0x006e 0x0331 */ 24088c2ecf20Sopenharmony_ci 0x1e49, 0x0000, 24098c2ecf20Sopenharmony_ci /* 0x0072 0x0331 */ 24108c2ecf20Sopenharmony_ci 0x1e5f, 0x0000, 24118c2ecf20Sopenharmony_ci /* 0x0074 0x0331 */ 24128c2ecf20Sopenharmony_ci 0x1e6f, 0x0000, 24138c2ecf20Sopenharmony_ci /* 0x007a 0x0331 */ 24148c2ecf20Sopenharmony_ci 0x1e95, 0x0000, 24158c2ecf20Sopenharmony_ci /* 0x00a8 0x0342 */ 24168c2ecf20Sopenharmony_ci 0x1fc1, 0x0000, 24178c2ecf20Sopenharmony_ci /* 0x03b1 0x0342 */ 24188c2ecf20Sopenharmony_ci 0x1fb6, 0x0000, 24198c2ecf20Sopenharmony_ci /* 0x03b7 0x0342 */ 24208c2ecf20Sopenharmony_ci 0x1fc6, 0x0000, 24218c2ecf20Sopenharmony_ci /* 0x03b9 0x0342 */ 24228c2ecf20Sopenharmony_ci 0x1fd6, 0x0000, 24238c2ecf20Sopenharmony_ci /* 0x03c5 0x0342 */ 24248c2ecf20Sopenharmony_ci 0x1fe6, 0x0000, 24258c2ecf20Sopenharmony_ci /* 0x03c9 0x0342 */ 24268c2ecf20Sopenharmony_ci 0x1ff6, 0x0000, 24278c2ecf20Sopenharmony_ci /* 0x1fbf 0x0342 */ 24288c2ecf20Sopenharmony_ci 0x1fcf, 0x0000, 24298c2ecf20Sopenharmony_ci /* 0x1ffe 0x0342 */ 24308c2ecf20Sopenharmony_ci 0x1fdf, 0x0000, 24318c2ecf20Sopenharmony_ci /* 0x0391 0x0345 */ 24328c2ecf20Sopenharmony_ci 0x1fbc, 0x0002, 0x0313, 0x0ee2, 0x0314, 0x0eea, 24338c2ecf20Sopenharmony_ci /* 0x0397 0x0345 */ 24348c2ecf20Sopenharmony_ci 0x1fcc, 0x0002, 0x0313, 0x0ef2, 0x0314, 0x0efa, 24358c2ecf20Sopenharmony_ci /* 0x03a9 0x0345 */ 24368c2ecf20Sopenharmony_ci 0x1ffc, 0x0002, 0x0313, 0x0f02, 0x0314, 0x0f0a, 24378c2ecf20Sopenharmony_ci /* 0x03b1 0x0345 */ 24388c2ecf20Sopenharmony_ci 0x1fb3, 0x0005, 0x0300, 0x0f12, 0x0301, 0x0f14, 0x0313, 0x0f16, 24398c2ecf20Sopenharmony_ci 0x0314, 0x0f1e, 0x0342, 0x0f26, 24408c2ecf20Sopenharmony_ci /* 0x03b7 0x0345 */ 24418c2ecf20Sopenharmony_ci 0x1fc3, 0x0005, 0x0300, 0x0f28, 0x0301, 0x0f2a, 0x0313, 0x0f2c, 24428c2ecf20Sopenharmony_ci 0x0314, 0x0f34, 0x0342, 0x0f3c, 24438c2ecf20Sopenharmony_ci /* 0x03bf 0x0345 */ 24448c2ecf20Sopenharmony_ci 0x0000, 0x0001, 0x0301, 0x0f3e, 24458c2ecf20Sopenharmony_ci /* 0x03c9 0x0345 */ 24468c2ecf20Sopenharmony_ci 0x1ff3, 0x0004, 0x0300, 0x0f40, 0x0313, 0x0f42, 0x0314, 0x0f4a, 24478c2ecf20Sopenharmony_ci 0x0342, 0x0f52, 24488c2ecf20Sopenharmony_ci /* 0x05d0 0x05b7 */ 24498c2ecf20Sopenharmony_ci 0xfb2e, 0x0000, 24508c2ecf20Sopenharmony_ci /* 0x05f2 0x05b7 */ 24518c2ecf20Sopenharmony_ci 0xfb1f, 0x0000, 24528c2ecf20Sopenharmony_ci /* 0x05d0 0x05b8 */ 24538c2ecf20Sopenharmony_ci 0xfb2f, 0x0000, 24548c2ecf20Sopenharmony_ci /* 0x05d5 0x05b9 */ 24558c2ecf20Sopenharmony_ci 0xfb4b, 0x0000, 24568c2ecf20Sopenharmony_ci /* 0x05d0 0x05bc */ 24578c2ecf20Sopenharmony_ci 0xfb30, 0x0000, 24588c2ecf20Sopenharmony_ci /* 0x05d1 0x05bc */ 24598c2ecf20Sopenharmony_ci 0xfb31, 0x0000, 24608c2ecf20Sopenharmony_ci /* 0x05d2 0x05bc */ 24618c2ecf20Sopenharmony_ci 0xfb32, 0x0000, 24628c2ecf20Sopenharmony_ci /* 0x05d3 0x05bc */ 24638c2ecf20Sopenharmony_ci 0xfb33, 0x0000, 24648c2ecf20Sopenharmony_ci /* 0x05d4 0x05bc */ 24658c2ecf20Sopenharmony_ci 0xfb34, 0x0000, 24668c2ecf20Sopenharmony_ci /* 0x05d5 0x05bc */ 24678c2ecf20Sopenharmony_ci 0xfb35, 0x0000, 24688c2ecf20Sopenharmony_ci /* 0x05d6 0x05bc */ 24698c2ecf20Sopenharmony_ci 0xfb36, 0x0000, 24708c2ecf20Sopenharmony_ci /* 0x05d8 0x05bc */ 24718c2ecf20Sopenharmony_ci 0xfb38, 0x0000, 24728c2ecf20Sopenharmony_ci /* 0x05d9 0x05bc */ 24738c2ecf20Sopenharmony_ci 0xfb39, 0x0000, 24748c2ecf20Sopenharmony_ci /* 0x05da 0x05bc */ 24758c2ecf20Sopenharmony_ci 0xfb3a, 0x0000, 24768c2ecf20Sopenharmony_ci /* 0x05db 0x05bc */ 24778c2ecf20Sopenharmony_ci 0xfb3b, 0x0000, 24788c2ecf20Sopenharmony_ci /* 0x05dc 0x05bc */ 24798c2ecf20Sopenharmony_ci 0xfb3c, 0x0000, 24808c2ecf20Sopenharmony_ci /* 0x05de 0x05bc */ 24818c2ecf20Sopenharmony_ci 0xfb3e, 0x0000, 24828c2ecf20Sopenharmony_ci /* 0x05e0 0x05bc */ 24838c2ecf20Sopenharmony_ci 0xfb40, 0x0000, 24848c2ecf20Sopenharmony_ci /* 0x05e1 0x05bc */ 24858c2ecf20Sopenharmony_ci 0xfb41, 0x0000, 24868c2ecf20Sopenharmony_ci /* 0x05e3 0x05bc */ 24878c2ecf20Sopenharmony_ci 0xfb43, 0x0000, 24888c2ecf20Sopenharmony_ci /* 0x05e4 0x05bc */ 24898c2ecf20Sopenharmony_ci 0xfb44, 0x0000, 24908c2ecf20Sopenharmony_ci /* 0x05e6 0x05bc */ 24918c2ecf20Sopenharmony_ci 0xfb46, 0x0000, 24928c2ecf20Sopenharmony_ci /* 0x05e7 0x05bc */ 24938c2ecf20Sopenharmony_ci 0xfb47, 0x0000, 24948c2ecf20Sopenharmony_ci /* 0x05e8 0x05bc */ 24958c2ecf20Sopenharmony_ci 0xfb48, 0x0000, 24968c2ecf20Sopenharmony_ci /* 0x05e9 0x05bc */ 24978c2ecf20Sopenharmony_ci 0xfb49, 0x0002, 0x05c1, 0x0f54, 0x05c2, 0x0f56, 24988c2ecf20Sopenharmony_ci /* 0x05ea 0x05bc */ 24998c2ecf20Sopenharmony_ci 0xfb4a, 0x0000, 25008c2ecf20Sopenharmony_ci /* 0x05d1 0x05bf */ 25018c2ecf20Sopenharmony_ci 0xfb4c, 0x0000, 25028c2ecf20Sopenharmony_ci /* 0x05db 0x05bf */ 25038c2ecf20Sopenharmony_ci 0xfb4d, 0x0000, 25048c2ecf20Sopenharmony_ci /* 0x05e4 0x05bf */ 25058c2ecf20Sopenharmony_ci 0xfb4e, 0x0000, 25068c2ecf20Sopenharmony_ci /* 0x05e9 0x05c1 */ 25078c2ecf20Sopenharmony_ci 0xfb2a, 0x0000, 25088c2ecf20Sopenharmony_ci /* 0x05e9 0x05c2 */ 25098c2ecf20Sopenharmony_ci 0xfb2b, 0x0000, 25108c2ecf20Sopenharmony_ci /* 0x0915 0x093c */ 25118c2ecf20Sopenharmony_ci 0x0958, 0x0000, 25128c2ecf20Sopenharmony_ci /* 0x0916 0x093c */ 25138c2ecf20Sopenharmony_ci 0x0959, 0x0000, 25148c2ecf20Sopenharmony_ci /* 0x0917 0x093c */ 25158c2ecf20Sopenharmony_ci 0x095a, 0x0000, 25168c2ecf20Sopenharmony_ci /* 0x091c 0x093c */ 25178c2ecf20Sopenharmony_ci 0x095b, 0x0000, 25188c2ecf20Sopenharmony_ci /* 0x0921 0x093c */ 25198c2ecf20Sopenharmony_ci 0x095c, 0x0000, 25208c2ecf20Sopenharmony_ci /* 0x0922 0x093c */ 25218c2ecf20Sopenharmony_ci 0x095d, 0x0000, 25228c2ecf20Sopenharmony_ci /* 0x0928 0x093c */ 25238c2ecf20Sopenharmony_ci 0x0929, 0x0000, 25248c2ecf20Sopenharmony_ci /* 0x092b 0x093c */ 25258c2ecf20Sopenharmony_ci 0x095e, 0x0000, 25268c2ecf20Sopenharmony_ci /* 0x092f 0x093c */ 25278c2ecf20Sopenharmony_ci 0x095f, 0x0000, 25288c2ecf20Sopenharmony_ci /* 0x0930 0x093c */ 25298c2ecf20Sopenharmony_ci 0x0931, 0x0000, 25308c2ecf20Sopenharmony_ci /* 0x0933 0x093c */ 25318c2ecf20Sopenharmony_ci 0x0934, 0x0000, 25328c2ecf20Sopenharmony_ci /* 0x09a1 0x09bc */ 25338c2ecf20Sopenharmony_ci 0x09dc, 0x0000, 25348c2ecf20Sopenharmony_ci /* 0x09a2 0x09bc */ 25358c2ecf20Sopenharmony_ci 0x09dd, 0x0000, 25368c2ecf20Sopenharmony_ci /* 0x09ac 0x09bc */ 25378c2ecf20Sopenharmony_ci 0x09b0, 0x0000, 25388c2ecf20Sopenharmony_ci /* 0x09af 0x09bc */ 25398c2ecf20Sopenharmony_ci 0x09df, 0x0000, 25408c2ecf20Sopenharmony_ci /* 0x09c7 0x09be */ 25418c2ecf20Sopenharmony_ci 0x09cb, 0x0000, 25428c2ecf20Sopenharmony_ci /* 0x09c7 0x09d7 */ 25438c2ecf20Sopenharmony_ci 0x09cc, 0x0000, 25448c2ecf20Sopenharmony_ci /* 0x0a16 0x0a3c */ 25458c2ecf20Sopenharmony_ci 0x0a59, 0x0000, 25468c2ecf20Sopenharmony_ci /* 0x0a17 0x0a3c */ 25478c2ecf20Sopenharmony_ci 0x0a5a, 0x0000, 25488c2ecf20Sopenharmony_ci /* 0x0a1c 0x0a3c */ 25498c2ecf20Sopenharmony_ci 0x0a5b, 0x0000, 25508c2ecf20Sopenharmony_ci /* 0x0a21 0x0a3c */ 25518c2ecf20Sopenharmony_ci 0x0a5c, 0x0000, 25528c2ecf20Sopenharmony_ci /* 0x0a2b 0x0a3c */ 25538c2ecf20Sopenharmony_ci 0x0a5e, 0x0000, 25548c2ecf20Sopenharmony_ci /* 0x0b21 0x0b3c */ 25558c2ecf20Sopenharmony_ci 0x0b5c, 0x0000, 25568c2ecf20Sopenharmony_ci /* 0x0b22 0x0b3c */ 25578c2ecf20Sopenharmony_ci 0x0b5d, 0x0000, 25588c2ecf20Sopenharmony_ci /* 0x0b2f 0x0b3c */ 25598c2ecf20Sopenharmony_ci 0x0b5f, 0x0000, 25608c2ecf20Sopenharmony_ci /* 0x0b47 0x0b3e */ 25618c2ecf20Sopenharmony_ci 0x0b4b, 0x0000, 25628c2ecf20Sopenharmony_ci /* 0x0b47 0x0b56 */ 25638c2ecf20Sopenharmony_ci 0x0b48, 0x0000, 25648c2ecf20Sopenharmony_ci /* 0x0b47 0x0b57 */ 25658c2ecf20Sopenharmony_ci 0x0b4c, 0x0000, 25668c2ecf20Sopenharmony_ci /* 0x0bc6 0x0bbe */ 25678c2ecf20Sopenharmony_ci 0x0bca, 0x0000, 25688c2ecf20Sopenharmony_ci /* 0x0bc7 0x0bbe */ 25698c2ecf20Sopenharmony_ci 0x0bcb, 0x0000, 25708c2ecf20Sopenharmony_ci /* 0x0b92 0x0bd7 */ 25718c2ecf20Sopenharmony_ci 0x0b94, 0x0000, 25728c2ecf20Sopenharmony_ci /* 0x0bc6 0x0bd7 */ 25738c2ecf20Sopenharmony_ci 0x0bcc, 0x0000, 25748c2ecf20Sopenharmony_ci /* 0x0c46 0x0c56 */ 25758c2ecf20Sopenharmony_ci 0x0c48, 0x0000, 25768c2ecf20Sopenharmony_ci /* 0x0cc6 0x0cc2 */ 25778c2ecf20Sopenharmony_ci 0x0cca, 0x0001, 0x0cd5, 0x0f58, 25788c2ecf20Sopenharmony_ci /* 0x0cbf 0x0cd5 */ 25798c2ecf20Sopenharmony_ci 0x0cc0, 0x0000, 25808c2ecf20Sopenharmony_ci /* 0x0cc6 0x0cd5 */ 25818c2ecf20Sopenharmony_ci 0x0cc7, 0x0000, 25828c2ecf20Sopenharmony_ci /* 0x0cc6 0x0cd6 */ 25838c2ecf20Sopenharmony_ci 0x0cc8, 0x0000, 25848c2ecf20Sopenharmony_ci /* 0x0d46 0x0d3e */ 25858c2ecf20Sopenharmony_ci 0x0d4a, 0x0000, 25868c2ecf20Sopenharmony_ci /* 0x0d47 0x0d3e */ 25878c2ecf20Sopenharmony_ci 0x0d4b, 0x0000, 25888c2ecf20Sopenharmony_ci /* 0x0d46 0x0d57 */ 25898c2ecf20Sopenharmony_ci 0x0d4c, 0x0000, 25908c2ecf20Sopenharmony_ci /* 0x0e4d 0x0e32 */ 25918c2ecf20Sopenharmony_ci 0x0e33, 0x0000, 25928c2ecf20Sopenharmony_ci /* 0x0ecd 0x0eb2 */ 25938c2ecf20Sopenharmony_ci 0x0eb3, 0x0000, 25948c2ecf20Sopenharmony_ci /* 0x0f72 0x0f71 */ 25958c2ecf20Sopenharmony_ci 0x0f73, 0x0000, 25968c2ecf20Sopenharmony_ci /* 0x0f74 0x0f71 */ 25978c2ecf20Sopenharmony_ci 0x0f75, 0x0000, 25988c2ecf20Sopenharmony_ci /* 0x0f80 0x0f71 */ 25998c2ecf20Sopenharmony_ci 0x0f81, 0x0000, 26008c2ecf20Sopenharmony_ci /* 0x0fb2 0x0f80 */ 26018c2ecf20Sopenharmony_ci 0x0f76, 0x0001, 0x0f71, 0x0f5a, 26028c2ecf20Sopenharmony_ci /* 0x0fb3 0x0f80 */ 26038c2ecf20Sopenharmony_ci 0x0f78, 0x0001, 0x0f71, 0x0f5c, 26048c2ecf20Sopenharmony_ci /* 0x0f40 0x0fb5 */ 26058c2ecf20Sopenharmony_ci 0x0f69, 0x0000, 26068c2ecf20Sopenharmony_ci /* 0x0f90 0x0fb5 */ 26078c2ecf20Sopenharmony_ci 0x0fb9, 0x0000, 26088c2ecf20Sopenharmony_ci /* 0x0f42 0x0fb7 */ 26098c2ecf20Sopenharmony_ci 0x0f43, 0x0000, 26108c2ecf20Sopenharmony_ci /* 0x0f4c 0x0fb7 */ 26118c2ecf20Sopenharmony_ci 0x0f4d, 0x0000, 26128c2ecf20Sopenharmony_ci /* 0x0f51 0x0fb7 */ 26138c2ecf20Sopenharmony_ci 0x0f52, 0x0000, 26148c2ecf20Sopenharmony_ci /* 0x0f56 0x0fb7 */ 26158c2ecf20Sopenharmony_ci 0x0f57, 0x0000, 26168c2ecf20Sopenharmony_ci /* 0x0f5b 0x0fb7 */ 26178c2ecf20Sopenharmony_ci 0x0f5c, 0x0000, 26188c2ecf20Sopenharmony_ci /* 0x0f92 0x0fb7 */ 26198c2ecf20Sopenharmony_ci 0x0f93, 0x0000, 26208c2ecf20Sopenharmony_ci /* 0x0f9c 0x0fb7 */ 26218c2ecf20Sopenharmony_ci 0x0f9d, 0x0000, 26228c2ecf20Sopenharmony_ci /* 0x0fa1 0x0fb7 */ 26238c2ecf20Sopenharmony_ci 0x0fa2, 0x0000, 26248c2ecf20Sopenharmony_ci /* 0x0fa6 0x0fb7 */ 26258c2ecf20Sopenharmony_ci 0x0fa7, 0x0000, 26268c2ecf20Sopenharmony_ci /* 0x0fab 0x0fb7 */ 26278c2ecf20Sopenharmony_ci 0x0fac, 0x0000, 26288c2ecf20Sopenharmony_ci /* 0x3046 0x3099 */ 26298c2ecf20Sopenharmony_ci 0x3094, 0x0000, 26308c2ecf20Sopenharmony_ci /* 0x304b 0x3099 */ 26318c2ecf20Sopenharmony_ci 0x304c, 0x0000, 26328c2ecf20Sopenharmony_ci /* 0x304d 0x3099 */ 26338c2ecf20Sopenharmony_ci 0x304e, 0x0000, 26348c2ecf20Sopenharmony_ci /* 0x304f 0x3099 */ 26358c2ecf20Sopenharmony_ci 0x3050, 0x0000, 26368c2ecf20Sopenharmony_ci /* 0x3051 0x3099 */ 26378c2ecf20Sopenharmony_ci 0x3052, 0x0000, 26388c2ecf20Sopenharmony_ci /* 0x3053 0x3099 */ 26398c2ecf20Sopenharmony_ci 0x3054, 0x0000, 26408c2ecf20Sopenharmony_ci /* 0x3055 0x3099 */ 26418c2ecf20Sopenharmony_ci 0x3056, 0x0000, 26428c2ecf20Sopenharmony_ci /* 0x3057 0x3099 */ 26438c2ecf20Sopenharmony_ci 0x3058, 0x0000, 26448c2ecf20Sopenharmony_ci /* 0x3059 0x3099 */ 26458c2ecf20Sopenharmony_ci 0x305a, 0x0000, 26468c2ecf20Sopenharmony_ci /* 0x305b 0x3099 */ 26478c2ecf20Sopenharmony_ci 0x305c, 0x0000, 26488c2ecf20Sopenharmony_ci /* 0x305d 0x3099 */ 26498c2ecf20Sopenharmony_ci 0x305e, 0x0000, 26508c2ecf20Sopenharmony_ci /* 0x305f 0x3099 */ 26518c2ecf20Sopenharmony_ci 0x3060, 0x0000, 26528c2ecf20Sopenharmony_ci /* 0x3061 0x3099 */ 26538c2ecf20Sopenharmony_ci 0x3062, 0x0000, 26548c2ecf20Sopenharmony_ci /* 0x3064 0x3099 */ 26558c2ecf20Sopenharmony_ci 0x3065, 0x0000, 26568c2ecf20Sopenharmony_ci /* 0x3066 0x3099 */ 26578c2ecf20Sopenharmony_ci 0x3067, 0x0000, 26588c2ecf20Sopenharmony_ci /* 0x3068 0x3099 */ 26598c2ecf20Sopenharmony_ci 0x3069, 0x0000, 26608c2ecf20Sopenharmony_ci /* 0x306f 0x3099 */ 26618c2ecf20Sopenharmony_ci 0x3070, 0x0000, 26628c2ecf20Sopenharmony_ci /* 0x3072 0x3099 */ 26638c2ecf20Sopenharmony_ci 0x3073, 0x0000, 26648c2ecf20Sopenharmony_ci /* 0x3075 0x3099 */ 26658c2ecf20Sopenharmony_ci 0x3076, 0x0000, 26668c2ecf20Sopenharmony_ci /* 0x3078 0x3099 */ 26678c2ecf20Sopenharmony_ci 0x3079, 0x0000, 26688c2ecf20Sopenharmony_ci /* 0x307b 0x3099 */ 26698c2ecf20Sopenharmony_ci 0x307c, 0x0000, 26708c2ecf20Sopenharmony_ci /* 0x309d 0x3099 */ 26718c2ecf20Sopenharmony_ci 0x309e, 0x0000, 26728c2ecf20Sopenharmony_ci /* 0x30a6 0x3099 */ 26738c2ecf20Sopenharmony_ci 0x30f4, 0x0000, 26748c2ecf20Sopenharmony_ci /* 0x30ab 0x3099 */ 26758c2ecf20Sopenharmony_ci 0x30ac, 0x0000, 26768c2ecf20Sopenharmony_ci /* 0x30ad 0x3099 */ 26778c2ecf20Sopenharmony_ci 0x30ae, 0x0000, 26788c2ecf20Sopenharmony_ci /* 0x30af 0x3099 */ 26798c2ecf20Sopenharmony_ci 0x30b0, 0x0000, 26808c2ecf20Sopenharmony_ci /* 0x30b1 0x3099 */ 26818c2ecf20Sopenharmony_ci 0x30b2, 0x0000, 26828c2ecf20Sopenharmony_ci /* 0x30b3 0x3099 */ 26838c2ecf20Sopenharmony_ci 0x30b4, 0x0000, 26848c2ecf20Sopenharmony_ci /* 0x30b5 0x3099 */ 26858c2ecf20Sopenharmony_ci 0x30b6, 0x0000, 26868c2ecf20Sopenharmony_ci /* 0x30b7 0x3099 */ 26878c2ecf20Sopenharmony_ci 0x30b8, 0x0000, 26888c2ecf20Sopenharmony_ci /* 0x30b9 0x3099 */ 26898c2ecf20Sopenharmony_ci 0x30ba, 0x0000, 26908c2ecf20Sopenharmony_ci /* 0x30bb 0x3099 */ 26918c2ecf20Sopenharmony_ci 0x30bc, 0x0000, 26928c2ecf20Sopenharmony_ci /* 0x30bd 0x3099 */ 26938c2ecf20Sopenharmony_ci 0x30be, 0x0000, 26948c2ecf20Sopenharmony_ci /* 0x30bf 0x3099 */ 26958c2ecf20Sopenharmony_ci 0x30c0, 0x0000, 26968c2ecf20Sopenharmony_ci /* 0x30c1 0x3099 */ 26978c2ecf20Sopenharmony_ci 0x30c2, 0x0000, 26988c2ecf20Sopenharmony_ci /* 0x30c4 0x3099 */ 26998c2ecf20Sopenharmony_ci 0x30c5, 0x0000, 27008c2ecf20Sopenharmony_ci /* 0x30c6 0x3099 */ 27018c2ecf20Sopenharmony_ci 0x30c7, 0x0000, 27028c2ecf20Sopenharmony_ci /* 0x30c8 0x3099 */ 27038c2ecf20Sopenharmony_ci 0x30c9, 0x0000, 27048c2ecf20Sopenharmony_ci /* 0x30cf 0x3099 */ 27058c2ecf20Sopenharmony_ci 0x30d0, 0x0000, 27068c2ecf20Sopenharmony_ci /* 0x30d2 0x3099 */ 27078c2ecf20Sopenharmony_ci 0x30d3, 0x0000, 27088c2ecf20Sopenharmony_ci /* 0x30d5 0x3099 */ 27098c2ecf20Sopenharmony_ci 0x30d6, 0x0000, 27108c2ecf20Sopenharmony_ci /* 0x30d8 0x3099 */ 27118c2ecf20Sopenharmony_ci 0x30d9, 0x0000, 27128c2ecf20Sopenharmony_ci /* 0x30db 0x3099 */ 27138c2ecf20Sopenharmony_ci 0x30dc, 0x0000, 27148c2ecf20Sopenharmony_ci /* 0x30ef 0x3099 */ 27158c2ecf20Sopenharmony_ci 0x30f7, 0x0000, 27168c2ecf20Sopenharmony_ci /* 0x30f0 0x3099 */ 27178c2ecf20Sopenharmony_ci 0x30f8, 0x0000, 27188c2ecf20Sopenharmony_ci /* 0x30f1 0x3099 */ 27198c2ecf20Sopenharmony_ci 0x30f9, 0x0000, 27208c2ecf20Sopenharmony_ci /* 0x30f2 0x3099 */ 27218c2ecf20Sopenharmony_ci 0x30fa, 0x0000, 27228c2ecf20Sopenharmony_ci /* 0x30fd 0x3099 */ 27238c2ecf20Sopenharmony_ci 0x30fe, 0x0000, 27248c2ecf20Sopenharmony_ci /* 0x306f 0x309a */ 27258c2ecf20Sopenharmony_ci 0x3071, 0x0000, 27268c2ecf20Sopenharmony_ci /* 0x3072 0x309a */ 27278c2ecf20Sopenharmony_ci 0x3074, 0x0000, 27288c2ecf20Sopenharmony_ci /* 0x3075 0x309a */ 27298c2ecf20Sopenharmony_ci 0x3077, 0x0000, 27308c2ecf20Sopenharmony_ci /* 0x3078 0x309a */ 27318c2ecf20Sopenharmony_ci 0x307a, 0x0000, 27328c2ecf20Sopenharmony_ci /* 0x307b 0x309a */ 27338c2ecf20Sopenharmony_ci 0x307d, 0x0000, 27348c2ecf20Sopenharmony_ci /* 0x30cf 0x309a */ 27358c2ecf20Sopenharmony_ci 0x30d1, 0x0000, 27368c2ecf20Sopenharmony_ci /* 0x30d2 0x309a */ 27378c2ecf20Sopenharmony_ci 0x30d4, 0x0000, 27388c2ecf20Sopenharmony_ci /* 0x30d5 0x309a */ 27398c2ecf20Sopenharmony_ci 0x30d7, 0x0000, 27408c2ecf20Sopenharmony_ci /* 0x30d8 0x309a */ 27418c2ecf20Sopenharmony_ci 0x30da, 0x0000, 27428c2ecf20Sopenharmony_ci /* 0x30db 0x309a */ 27438c2ecf20Sopenharmony_ci 0x30dd, 0x0000, 27448c2ecf20Sopenharmony_ci /* 0x0307 0x0053 0x0301 */ 27458c2ecf20Sopenharmony_ci 0x1e64, 0x0000, 27468c2ecf20Sopenharmony_ci /* 0x0307 0x0073 0x0301 */ 27478c2ecf20Sopenharmony_ci 0x1e65, 0x0000, 27488c2ecf20Sopenharmony_ci /* 0x0300 0x0041 0x0302 */ 27498c2ecf20Sopenharmony_ci 0x1ea6, 0x0000, 27508c2ecf20Sopenharmony_ci /* 0x0301 0x0041 0x0302 */ 27518c2ecf20Sopenharmony_ci 0x1ea4, 0x0000, 27528c2ecf20Sopenharmony_ci /* 0x0303 0x0041 0x0302 */ 27538c2ecf20Sopenharmony_ci 0x1eaa, 0x0000, 27548c2ecf20Sopenharmony_ci /* 0x0309 0x0041 0x0302 */ 27558c2ecf20Sopenharmony_ci 0x1ea8, 0x0000, 27568c2ecf20Sopenharmony_ci /* 0x0300 0x0045 0x0302 */ 27578c2ecf20Sopenharmony_ci 0x1ec0, 0x0000, 27588c2ecf20Sopenharmony_ci /* 0x0301 0x0045 0x0302 */ 27598c2ecf20Sopenharmony_ci 0x1ebe, 0x0000, 27608c2ecf20Sopenharmony_ci /* 0x0303 0x0045 0x0302 */ 27618c2ecf20Sopenharmony_ci 0x1ec4, 0x0000, 27628c2ecf20Sopenharmony_ci /* 0x0309 0x0045 0x0302 */ 27638c2ecf20Sopenharmony_ci 0x1ec2, 0x0000, 27648c2ecf20Sopenharmony_ci /* 0x0300 0x004f 0x0302 */ 27658c2ecf20Sopenharmony_ci 0x1ed2, 0x0000, 27668c2ecf20Sopenharmony_ci /* 0x0301 0x004f 0x0302 */ 27678c2ecf20Sopenharmony_ci 0x1ed0, 0x0000, 27688c2ecf20Sopenharmony_ci /* 0x0303 0x004f 0x0302 */ 27698c2ecf20Sopenharmony_ci 0x1ed6, 0x0000, 27708c2ecf20Sopenharmony_ci /* 0x0309 0x004f 0x0302 */ 27718c2ecf20Sopenharmony_ci 0x1ed4, 0x0000, 27728c2ecf20Sopenharmony_ci /* 0x0300 0x0061 0x0302 */ 27738c2ecf20Sopenharmony_ci 0x1ea7, 0x0000, 27748c2ecf20Sopenharmony_ci /* 0x0301 0x0061 0x0302 */ 27758c2ecf20Sopenharmony_ci 0x1ea5, 0x0000, 27768c2ecf20Sopenharmony_ci /* 0x0303 0x0061 0x0302 */ 27778c2ecf20Sopenharmony_ci 0x1eab, 0x0000, 27788c2ecf20Sopenharmony_ci /* 0x0309 0x0061 0x0302 */ 27798c2ecf20Sopenharmony_ci 0x1ea9, 0x0000, 27808c2ecf20Sopenharmony_ci /* 0x0300 0x0065 0x0302 */ 27818c2ecf20Sopenharmony_ci 0x1ec1, 0x0000, 27828c2ecf20Sopenharmony_ci /* 0x0301 0x0065 0x0302 */ 27838c2ecf20Sopenharmony_ci 0x1ebf, 0x0000, 27848c2ecf20Sopenharmony_ci /* 0x0303 0x0065 0x0302 */ 27858c2ecf20Sopenharmony_ci 0x1ec5, 0x0000, 27868c2ecf20Sopenharmony_ci /* 0x0309 0x0065 0x0302 */ 27878c2ecf20Sopenharmony_ci 0x1ec3, 0x0000, 27888c2ecf20Sopenharmony_ci /* 0x0300 0x006f 0x0302 */ 27898c2ecf20Sopenharmony_ci 0x1ed3, 0x0000, 27908c2ecf20Sopenharmony_ci /* 0x0301 0x006f 0x0302 */ 27918c2ecf20Sopenharmony_ci 0x1ed1, 0x0000, 27928c2ecf20Sopenharmony_ci /* 0x0303 0x006f 0x0302 */ 27938c2ecf20Sopenharmony_ci 0x1ed7, 0x0000, 27948c2ecf20Sopenharmony_ci /* 0x0309 0x006f 0x0302 */ 27958c2ecf20Sopenharmony_ci 0x1ed5, 0x0000, 27968c2ecf20Sopenharmony_ci /* 0x0301 0x004f 0x0303 */ 27978c2ecf20Sopenharmony_ci 0x1e4c, 0x0000, 27988c2ecf20Sopenharmony_ci /* 0x0308 0x004f 0x0303 */ 27998c2ecf20Sopenharmony_ci 0x1e4e, 0x0000, 28008c2ecf20Sopenharmony_ci /* 0x0301 0x0055 0x0303 */ 28018c2ecf20Sopenharmony_ci 0x1e78, 0x0000, 28028c2ecf20Sopenharmony_ci /* 0x0301 0x006f 0x0303 */ 28038c2ecf20Sopenharmony_ci 0x1e4d, 0x0000, 28048c2ecf20Sopenharmony_ci /* 0x0308 0x006f 0x0303 */ 28058c2ecf20Sopenharmony_ci 0x1e4f, 0x0000, 28068c2ecf20Sopenharmony_ci /* 0x0301 0x0075 0x0303 */ 28078c2ecf20Sopenharmony_ci 0x1e79, 0x0000, 28088c2ecf20Sopenharmony_ci /* 0x0300 0x0045 0x0304 */ 28098c2ecf20Sopenharmony_ci 0x1e14, 0x0000, 28108c2ecf20Sopenharmony_ci /* 0x0301 0x0045 0x0304 */ 28118c2ecf20Sopenharmony_ci 0x1e16, 0x0000, 28128c2ecf20Sopenharmony_ci /* 0x0300 0x004f 0x0304 */ 28138c2ecf20Sopenharmony_ci 0x1e50, 0x0000, 28148c2ecf20Sopenharmony_ci /* 0x0301 0x004f 0x0304 */ 28158c2ecf20Sopenharmony_ci 0x1e52, 0x0000, 28168c2ecf20Sopenharmony_ci /* 0x0308 0x0055 0x0304 */ 28178c2ecf20Sopenharmony_ci 0x1e7a, 0x0000, 28188c2ecf20Sopenharmony_ci /* 0x0300 0x0065 0x0304 */ 28198c2ecf20Sopenharmony_ci 0x1e15, 0x0000, 28208c2ecf20Sopenharmony_ci /* 0x0301 0x0065 0x0304 */ 28218c2ecf20Sopenharmony_ci 0x1e17, 0x0000, 28228c2ecf20Sopenharmony_ci /* 0x0300 0x006f 0x0304 */ 28238c2ecf20Sopenharmony_ci 0x1e51, 0x0000, 28248c2ecf20Sopenharmony_ci /* 0x0301 0x006f 0x0304 */ 28258c2ecf20Sopenharmony_ci 0x1e53, 0x0000, 28268c2ecf20Sopenharmony_ci /* 0x0308 0x0075 0x0304 */ 28278c2ecf20Sopenharmony_ci 0x1e7b, 0x0000, 28288c2ecf20Sopenharmony_ci /* 0x0300 0x0041 0x0306 */ 28298c2ecf20Sopenharmony_ci 0x1eb0, 0x0000, 28308c2ecf20Sopenharmony_ci /* 0x0301 0x0041 0x0306 */ 28318c2ecf20Sopenharmony_ci 0x1eae, 0x0000, 28328c2ecf20Sopenharmony_ci /* 0x0303 0x0041 0x0306 */ 28338c2ecf20Sopenharmony_ci 0x1eb4, 0x0000, 28348c2ecf20Sopenharmony_ci /* 0x0309 0x0041 0x0306 */ 28358c2ecf20Sopenharmony_ci 0x1eb2, 0x0000, 28368c2ecf20Sopenharmony_ci /* 0x0300 0x0061 0x0306 */ 28378c2ecf20Sopenharmony_ci 0x1eb1, 0x0000, 28388c2ecf20Sopenharmony_ci /* 0x0301 0x0061 0x0306 */ 28398c2ecf20Sopenharmony_ci 0x1eaf, 0x0000, 28408c2ecf20Sopenharmony_ci /* 0x0303 0x0061 0x0306 */ 28418c2ecf20Sopenharmony_ci 0x1eb5, 0x0000, 28428c2ecf20Sopenharmony_ci /* 0x0309 0x0061 0x0306 */ 28438c2ecf20Sopenharmony_ci 0x1eb3, 0x0000, 28448c2ecf20Sopenharmony_ci /* 0x0304 0x0041 0x0307 */ 28458c2ecf20Sopenharmony_ci 0x01e0, 0x0000, 28468c2ecf20Sopenharmony_ci /* 0x0304 0x0061 0x0307 */ 28478c2ecf20Sopenharmony_ci 0x01e1, 0x0000, 28488c2ecf20Sopenharmony_ci /* 0x0304 0x0041 0x0308 */ 28498c2ecf20Sopenharmony_ci 0x01de, 0x0000, 28508c2ecf20Sopenharmony_ci /* 0x0301 0x0049 0x0308 */ 28518c2ecf20Sopenharmony_ci 0x1e2e, 0x0000, 28528c2ecf20Sopenharmony_ci /* 0x0300 0x0055 0x0308 */ 28538c2ecf20Sopenharmony_ci 0x01db, 0x0000, 28548c2ecf20Sopenharmony_ci /* 0x0301 0x0055 0x0308 */ 28558c2ecf20Sopenharmony_ci 0x01d7, 0x0000, 28568c2ecf20Sopenharmony_ci /* 0x0304 0x0055 0x0308 */ 28578c2ecf20Sopenharmony_ci 0x01d5, 0x0000, 28588c2ecf20Sopenharmony_ci /* 0x030c 0x0055 0x0308 */ 28598c2ecf20Sopenharmony_ci 0x01d9, 0x0000, 28608c2ecf20Sopenharmony_ci /* 0x0304 0x0061 0x0308 */ 28618c2ecf20Sopenharmony_ci 0x01df, 0x0000, 28628c2ecf20Sopenharmony_ci /* 0x0301 0x0069 0x0308 */ 28638c2ecf20Sopenharmony_ci 0x1e2f, 0x0000, 28648c2ecf20Sopenharmony_ci /* 0x0300 0x0075 0x0308 */ 28658c2ecf20Sopenharmony_ci 0x01dc, 0x0000, 28668c2ecf20Sopenharmony_ci /* 0x0301 0x0075 0x0308 */ 28678c2ecf20Sopenharmony_ci 0x01d8, 0x0000, 28688c2ecf20Sopenharmony_ci /* 0x0304 0x0075 0x0308 */ 28698c2ecf20Sopenharmony_ci 0x01d6, 0x0000, 28708c2ecf20Sopenharmony_ci /* 0x030c 0x0075 0x0308 */ 28718c2ecf20Sopenharmony_ci 0x01da, 0x0000, 28728c2ecf20Sopenharmony_ci /* 0x0300 0x03b9 0x0308 */ 28738c2ecf20Sopenharmony_ci 0x1fd2, 0x0000, 28748c2ecf20Sopenharmony_ci /* 0x0301 0x03b9 0x0308 */ 28758c2ecf20Sopenharmony_ci 0x1fd3, 0x0000, 28768c2ecf20Sopenharmony_ci /* 0x030d 0x03b9 0x0308 */ 28778c2ecf20Sopenharmony_ci 0x0390, 0x0000, 28788c2ecf20Sopenharmony_ci /* 0x0342 0x03b9 0x0308 */ 28798c2ecf20Sopenharmony_ci 0x1fd7, 0x0000, 28808c2ecf20Sopenharmony_ci /* 0x0300 0x03c5 0x0308 */ 28818c2ecf20Sopenharmony_ci 0x1fe2, 0x0000, 28828c2ecf20Sopenharmony_ci /* 0x0301 0x03c5 0x0308 */ 28838c2ecf20Sopenharmony_ci 0x1fe3, 0x0000, 28848c2ecf20Sopenharmony_ci /* 0x030d 0x03c5 0x0308 */ 28858c2ecf20Sopenharmony_ci 0x03b0, 0x0000, 28868c2ecf20Sopenharmony_ci /* 0x0342 0x03c5 0x0308 */ 28878c2ecf20Sopenharmony_ci 0x1fe7, 0x0000, 28888c2ecf20Sopenharmony_ci /* 0x0301 0x0041 0x030a */ 28898c2ecf20Sopenharmony_ci 0x01fa, 0x0000, 28908c2ecf20Sopenharmony_ci /* 0x0301 0x0061 0x030a */ 28918c2ecf20Sopenharmony_ci 0x01fb, 0x0000, 28928c2ecf20Sopenharmony_ci /* 0x0307 0x0053 0x030c */ 28938c2ecf20Sopenharmony_ci 0x1e66, 0x0000, 28948c2ecf20Sopenharmony_ci /* 0x0307 0x0073 0x030c */ 28958c2ecf20Sopenharmony_ci 0x1e67, 0x0000, 28968c2ecf20Sopenharmony_ci /* 0x0300 0x0391 0x0313 */ 28978c2ecf20Sopenharmony_ci 0x1f0a, 0x0000, 28988c2ecf20Sopenharmony_ci /* 0x0301 0x0391 0x0313 */ 28998c2ecf20Sopenharmony_ci 0x1f0c, 0x0000, 29008c2ecf20Sopenharmony_ci /* 0x0342 0x0391 0x0313 */ 29018c2ecf20Sopenharmony_ci 0x1f0e, 0x0000, 29028c2ecf20Sopenharmony_ci /* 0x0300 0x0395 0x0313 */ 29038c2ecf20Sopenharmony_ci 0x1f1a, 0x0000, 29048c2ecf20Sopenharmony_ci /* 0x0301 0x0395 0x0313 */ 29058c2ecf20Sopenharmony_ci 0x1f1c, 0x0000, 29068c2ecf20Sopenharmony_ci /* 0x0300 0x0397 0x0313 */ 29078c2ecf20Sopenharmony_ci 0x1f2a, 0x0000, 29088c2ecf20Sopenharmony_ci /* 0x0301 0x0397 0x0313 */ 29098c2ecf20Sopenharmony_ci 0x1f2c, 0x0000, 29108c2ecf20Sopenharmony_ci /* 0x0342 0x0397 0x0313 */ 29118c2ecf20Sopenharmony_ci 0x1f2e, 0x0000, 29128c2ecf20Sopenharmony_ci /* 0x0300 0x0399 0x0313 */ 29138c2ecf20Sopenharmony_ci 0x1f3a, 0x0000, 29148c2ecf20Sopenharmony_ci /* 0x0301 0x0399 0x0313 */ 29158c2ecf20Sopenharmony_ci 0x1f3c, 0x0000, 29168c2ecf20Sopenharmony_ci /* 0x0342 0x0399 0x0313 */ 29178c2ecf20Sopenharmony_ci 0x1f3e, 0x0000, 29188c2ecf20Sopenharmony_ci /* 0x0300 0x039f 0x0313 */ 29198c2ecf20Sopenharmony_ci 0x1f4a, 0x0000, 29208c2ecf20Sopenharmony_ci /* 0x0301 0x039f 0x0313 */ 29218c2ecf20Sopenharmony_ci 0x1f4c, 0x0000, 29228c2ecf20Sopenharmony_ci /* 0x0300 0x03a9 0x0313 */ 29238c2ecf20Sopenharmony_ci 0x1f6a, 0x0000, 29248c2ecf20Sopenharmony_ci /* 0x0301 0x03a9 0x0313 */ 29258c2ecf20Sopenharmony_ci 0x1f6c, 0x0000, 29268c2ecf20Sopenharmony_ci /* 0x0342 0x03a9 0x0313 */ 29278c2ecf20Sopenharmony_ci 0x1f6e, 0x0000, 29288c2ecf20Sopenharmony_ci /* 0x0300 0x03b1 0x0313 */ 29298c2ecf20Sopenharmony_ci 0x1f02, 0x0000, 29308c2ecf20Sopenharmony_ci /* 0x0301 0x03b1 0x0313 */ 29318c2ecf20Sopenharmony_ci 0x1f04, 0x0000, 29328c2ecf20Sopenharmony_ci /* 0x0342 0x03b1 0x0313 */ 29338c2ecf20Sopenharmony_ci 0x1f06, 0x0000, 29348c2ecf20Sopenharmony_ci /* 0x0300 0x03b5 0x0313 */ 29358c2ecf20Sopenharmony_ci 0x1f12, 0x0000, 29368c2ecf20Sopenharmony_ci /* 0x0301 0x03b5 0x0313 */ 29378c2ecf20Sopenharmony_ci 0x1f14, 0x0000, 29388c2ecf20Sopenharmony_ci /* 0x0300 0x03b7 0x0313 */ 29398c2ecf20Sopenharmony_ci 0x1f22, 0x0000, 29408c2ecf20Sopenharmony_ci /* 0x0301 0x03b7 0x0313 */ 29418c2ecf20Sopenharmony_ci 0x1f24, 0x0000, 29428c2ecf20Sopenharmony_ci /* 0x0342 0x03b7 0x0313 */ 29438c2ecf20Sopenharmony_ci 0x1f26, 0x0000, 29448c2ecf20Sopenharmony_ci /* 0x0300 0x03b9 0x0313 */ 29458c2ecf20Sopenharmony_ci 0x1f32, 0x0000, 29468c2ecf20Sopenharmony_ci /* 0x0301 0x03b9 0x0313 */ 29478c2ecf20Sopenharmony_ci 0x1f34, 0x0000, 29488c2ecf20Sopenharmony_ci /* 0x0342 0x03b9 0x0313 */ 29498c2ecf20Sopenharmony_ci 0x1f36, 0x0000, 29508c2ecf20Sopenharmony_ci /* 0x0300 0x03bf 0x0313 */ 29518c2ecf20Sopenharmony_ci 0x1f42, 0x0000, 29528c2ecf20Sopenharmony_ci /* 0x0301 0x03bf 0x0313 */ 29538c2ecf20Sopenharmony_ci 0x1f44, 0x0000, 29548c2ecf20Sopenharmony_ci /* 0x0300 0x03c5 0x0313 */ 29558c2ecf20Sopenharmony_ci 0x1f52, 0x0000, 29568c2ecf20Sopenharmony_ci /* 0x0301 0x03c5 0x0313 */ 29578c2ecf20Sopenharmony_ci 0x1f54, 0x0000, 29588c2ecf20Sopenharmony_ci /* 0x0342 0x03c5 0x0313 */ 29598c2ecf20Sopenharmony_ci 0x1f56, 0x0000, 29608c2ecf20Sopenharmony_ci /* 0x0300 0x03c9 0x0313 */ 29618c2ecf20Sopenharmony_ci 0x1f62, 0x0000, 29628c2ecf20Sopenharmony_ci /* 0x0301 0x03c9 0x0313 */ 29638c2ecf20Sopenharmony_ci 0x1f64, 0x0000, 29648c2ecf20Sopenharmony_ci /* 0x0342 0x03c9 0x0313 */ 29658c2ecf20Sopenharmony_ci 0x1f66, 0x0000, 29668c2ecf20Sopenharmony_ci /* 0x0300 0x0391 0x0314 */ 29678c2ecf20Sopenharmony_ci 0x1f0b, 0x0000, 29688c2ecf20Sopenharmony_ci /* 0x0301 0x0391 0x0314 */ 29698c2ecf20Sopenharmony_ci 0x1f0d, 0x0000, 29708c2ecf20Sopenharmony_ci /* 0x0342 0x0391 0x0314 */ 29718c2ecf20Sopenharmony_ci 0x1f0f, 0x0000, 29728c2ecf20Sopenharmony_ci /* 0x0300 0x0395 0x0314 */ 29738c2ecf20Sopenharmony_ci 0x1f1b, 0x0000, 29748c2ecf20Sopenharmony_ci /* 0x0301 0x0395 0x0314 */ 29758c2ecf20Sopenharmony_ci 0x1f1d, 0x0000, 29768c2ecf20Sopenharmony_ci /* 0x0300 0x0397 0x0314 */ 29778c2ecf20Sopenharmony_ci 0x1f2b, 0x0000, 29788c2ecf20Sopenharmony_ci /* 0x0301 0x0397 0x0314 */ 29798c2ecf20Sopenharmony_ci 0x1f2d, 0x0000, 29808c2ecf20Sopenharmony_ci /* 0x0342 0x0397 0x0314 */ 29818c2ecf20Sopenharmony_ci 0x1f2f, 0x0000, 29828c2ecf20Sopenharmony_ci /* 0x0300 0x0399 0x0314 */ 29838c2ecf20Sopenharmony_ci 0x1f3b, 0x0000, 29848c2ecf20Sopenharmony_ci /* 0x0301 0x0399 0x0314 */ 29858c2ecf20Sopenharmony_ci 0x1f3d, 0x0000, 29868c2ecf20Sopenharmony_ci /* 0x0342 0x0399 0x0314 */ 29878c2ecf20Sopenharmony_ci 0x1f3f, 0x0000, 29888c2ecf20Sopenharmony_ci /* 0x0300 0x039f 0x0314 */ 29898c2ecf20Sopenharmony_ci 0x1f4b, 0x0000, 29908c2ecf20Sopenharmony_ci /* 0x0301 0x039f 0x0314 */ 29918c2ecf20Sopenharmony_ci 0x1f4d, 0x0000, 29928c2ecf20Sopenharmony_ci /* 0x0300 0x03a5 0x0314 */ 29938c2ecf20Sopenharmony_ci 0x1f5b, 0x0000, 29948c2ecf20Sopenharmony_ci /* 0x0301 0x03a5 0x0314 */ 29958c2ecf20Sopenharmony_ci 0x1f5d, 0x0000, 29968c2ecf20Sopenharmony_ci /* 0x0342 0x03a5 0x0314 */ 29978c2ecf20Sopenharmony_ci 0x1f5f, 0x0000, 29988c2ecf20Sopenharmony_ci /* 0x0300 0x03a9 0x0314 */ 29998c2ecf20Sopenharmony_ci 0x1f6b, 0x0000, 30008c2ecf20Sopenharmony_ci /* 0x0301 0x03a9 0x0314 */ 30018c2ecf20Sopenharmony_ci 0x1f6d, 0x0000, 30028c2ecf20Sopenharmony_ci /* 0x0342 0x03a9 0x0314 */ 30038c2ecf20Sopenharmony_ci 0x1f6f, 0x0000, 30048c2ecf20Sopenharmony_ci /* 0x0300 0x03b1 0x0314 */ 30058c2ecf20Sopenharmony_ci 0x1f03, 0x0000, 30068c2ecf20Sopenharmony_ci /* 0x0301 0x03b1 0x0314 */ 30078c2ecf20Sopenharmony_ci 0x1f05, 0x0000, 30088c2ecf20Sopenharmony_ci /* 0x0342 0x03b1 0x0314 */ 30098c2ecf20Sopenharmony_ci 0x1f07, 0x0000, 30108c2ecf20Sopenharmony_ci /* 0x0300 0x03b5 0x0314 */ 30118c2ecf20Sopenharmony_ci 0x1f13, 0x0000, 30128c2ecf20Sopenharmony_ci /* 0x0301 0x03b5 0x0314 */ 30138c2ecf20Sopenharmony_ci 0x1f15, 0x0000, 30148c2ecf20Sopenharmony_ci /* 0x0300 0x03b7 0x0314 */ 30158c2ecf20Sopenharmony_ci 0x1f23, 0x0000, 30168c2ecf20Sopenharmony_ci /* 0x0301 0x03b7 0x0314 */ 30178c2ecf20Sopenharmony_ci 0x1f25, 0x0000, 30188c2ecf20Sopenharmony_ci /* 0x0342 0x03b7 0x0314 */ 30198c2ecf20Sopenharmony_ci 0x1f27, 0x0000, 30208c2ecf20Sopenharmony_ci /* 0x0300 0x03b9 0x0314 */ 30218c2ecf20Sopenharmony_ci 0x1f33, 0x0000, 30228c2ecf20Sopenharmony_ci /* 0x0301 0x03b9 0x0314 */ 30238c2ecf20Sopenharmony_ci 0x1f35, 0x0000, 30248c2ecf20Sopenharmony_ci /* 0x0342 0x03b9 0x0314 */ 30258c2ecf20Sopenharmony_ci 0x1f37, 0x0000, 30268c2ecf20Sopenharmony_ci /* 0x0300 0x03bf 0x0314 */ 30278c2ecf20Sopenharmony_ci 0x1f43, 0x0000, 30288c2ecf20Sopenharmony_ci /* 0x0301 0x03bf 0x0314 */ 30298c2ecf20Sopenharmony_ci 0x1f45, 0x0000, 30308c2ecf20Sopenharmony_ci /* 0x0300 0x03c5 0x0314 */ 30318c2ecf20Sopenharmony_ci 0x1f53, 0x0000, 30328c2ecf20Sopenharmony_ci /* 0x0301 0x03c5 0x0314 */ 30338c2ecf20Sopenharmony_ci 0x1f55, 0x0000, 30348c2ecf20Sopenharmony_ci /* 0x0342 0x03c5 0x0314 */ 30358c2ecf20Sopenharmony_ci 0x1f57, 0x0000, 30368c2ecf20Sopenharmony_ci /* 0x0300 0x03c9 0x0314 */ 30378c2ecf20Sopenharmony_ci 0x1f63, 0x0000, 30388c2ecf20Sopenharmony_ci /* 0x0301 0x03c9 0x0314 */ 30398c2ecf20Sopenharmony_ci 0x1f65, 0x0000, 30408c2ecf20Sopenharmony_ci /* 0x0342 0x03c9 0x0314 */ 30418c2ecf20Sopenharmony_ci 0x1f67, 0x0000, 30428c2ecf20Sopenharmony_ci /* 0x0300 0x004f 0x031b */ 30438c2ecf20Sopenharmony_ci 0x1edc, 0x0000, 30448c2ecf20Sopenharmony_ci /* 0x0301 0x004f 0x031b */ 30458c2ecf20Sopenharmony_ci 0x1eda, 0x0000, 30468c2ecf20Sopenharmony_ci /* 0x0303 0x004f 0x031b */ 30478c2ecf20Sopenharmony_ci 0x1ee0, 0x0000, 30488c2ecf20Sopenharmony_ci /* 0x0309 0x004f 0x031b */ 30498c2ecf20Sopenharmony_ci 0x1ede, 0x0000, 30508c2ecf20Sopenharmony_ci /* 0x0323 0x004f 0x031b */ 30518c2ecf20Sopenharmony_ci 0x1ee2, 0x0000, 30528c2ecf20Sopenharmony_ci /* 0x0300 0x0055 0x031b */ 30538c2ecf20Sopenharmony_ci 0x1eea, 0x0000, 30548c2ecf20Sopenharmony_ci /* 0x0301 0x0055 0x031b */ 30558c2ecf20Sopenharmony_ci 0x1ee8, 0x0000, 30568c2ecf20Sopenharmony_ci /* 0x0303 0x0055 0x031b */ 30578c2ecf20Sopenharmony_ci 0x1eee, 0x0000, 30588c2ecf20Sopenharmony_ci /* 0x0309 0x0055 0x031b */ 30598c2ecf20Sopenharmony_ci 0x1eec, 0x0000, 30608c2ecf20Sopenharmony_ci /* 0x0323 0x0055 0x031b */ 30618c2ecf20Sopenharmony_ci 0x1ef0, 0x0000, 30628c2ecf20Sopenharmony_ci /* 0x0300 0x006f 0x031b */ 30638c2ecf20Sopenharmony_ci 0x1edd, 0x0000, 30648c2ecf20Sopenharmony_ci /* 0x0301 0x006f 0x031b */ 30658c2ecf20Sopenharmony_ci 0x1edb, 0x0000, 30668c2ecf20Sopenharmony_ci /* 0x0303 0x006f 0x031b */ 30678c2ecf20Sopenharmony_ci 0x1ee1, 0x0000, 30688c2ecf20Sopenharmony_ci /* 0x0309 0x006f 0x031b */ 30698c2ecf20Sopenharmony_ci 0x1edf, 0x0000, 30708c2ecf20Sopenharmony_ci /* 0x0323 0x006f 0x031b */ 30718c2ecf20Sopenharmony_ci 0x1ee3, 0x0000, 30728c2ecf20Sopenharmony_ci /* 0x0300 0x0075 0x031b */ 30738c2ecf20Sopenharmony_ci 0x1eeb, 0x0000, 30748c2ecf20Sopenharmony_ci /* 0x0301 0x0075 0x031b */ 30758c2ecf20Sopenharmony_ci 0x1ee9, 0x0000, 30768c2ecf20Sopenharmony_ci /* 0x0303 0x0075 0x031b */ 30778c2ecf20Sopenharmony_ci 0x1eef, 0x0000, 30788c2ecf20Sopenharmony_ci /* 0x0309 0x0075 0x031b */ 30798c2ecf20Sopenharmony_ci 0x1eed, 0x0000, 30808c2ecf20Sopenharmony_ci /* 0x0323 0x0075 0x031b */ 30818c2ecf20Sopenharmony_ci 0x1ef1, 0x0000, 30828c2ecf20Sopenharmony_ci /* 0x0302 0x0041 0x0323 */ 30838c2ecf20Sopenharmony_ci 0x1eac, 0x0000, 30848c2ecf20Sopenharmony_ci /* 0x0306 0x0041 0x0323 */ 30858c2ecf20Sopenharmony_ci 0x1eb6, 0x0000, 30868c2ecf20Sopenharmony_ci /* 0x0302 0x0045 0x0323 */ 30878c2ecf20Sopenharmony_ci 0x1ec6, 0x0000, 30888c2ecf20Sopenharmony_ci /* 0x0304 0x004c 0x0323 */ 30898c2ecf20Sopenharmony_ci 0x1e38, 0x0000, 30908c2ecf20Sopenharmony_ci /* 0x0302 0x004f 0x0323 */ 30918c2ecf20Sopenharmony_ci 0x1ed8, 0x0000, 30928c2ecf20Sopenharmony_ci /* 0x0304 0x0052 0x0323 */ 30938c2ecf20Sopenharmony_ci 0x1e5c, 0x0000, 30948c2ecf20Sopenharmony_ci /* 0x0307 0x0053 0x0323 */ 30958c2ecf20Sopenharmony_ci 0x1e68, 0x0000, 30968c2ecf20Sopenharmony_ci /* 0x0302 0x0061 0x0323 */ 30978c2ecf20Sopenharmony_ci 0x1ead, 0x0000, 30988c2ecf20Sopenharmony_ci /* 0x0306 0x0061 0x0323 */ 30998c2ecf20Sopenharmony_ci 0x1eb7, 0x0000, 31008c2ecf20Sopenharmony_ci /* 0x0302 0x0065 0x0323 */ 31018c2ecf20Sopenharmony_ci 0x1ec7, 0x0000, 31028c2ecf20Sopenharmony_ci /* 0x0304 0x006c 0x0323 */ 31038c2ecf20Sopenharmony_ci 0x1e39, 0x0000, 31048c2ecf20Sopenharmony_ci /* 0x0302 0x006f 0x0323 */ 31058c2ecf20Sopenharmony_ci 0x1ed9, 0x0000, 31068c2ecf20Sopenharmony_ci /* 0x0304 0x0072 0x0323 */ 31078c2ecf20Sopenharmony_ci 0x1e5d, 0x0000, 31088c2ecf20Sopenharmony_ci /* 0x0307 0x0073 0x0323 */ 31098c2ecf20Sopenharmony_ci 0x1e69, 0x0000, 31108c2ecf20Sopenharmony_ci /* 0x0301 0x0043 0x0327 */ 31118c2ecf20Sopenharmony_ci 0x1e08, 0x0000, 31128c2ecf20Sopenharmony_ci /* 0x0306 0x0045 0x0327 */ 31138c2ecf20Sopenharmony_ci 0x1e1c, 0x0000, 31148c2ecf20Sopenharmony_ci /* 0x0301 0x0063 0x0327 */ 31158c2ecf20Sopenharmony_ci 0x1e09, 0x0000, 31168c2ecf20Sopenharmony_ci /* 0x0306 0x0065 0x0327 */ 31178c2ecf20Sopenharmony_ci 0x1e1d, 0x0000, 31188c2ecf20Sopenharmony_ci /* 0x0304 0x004f 0x0328 */ 31198c2ecf20Sopenharmony_ci 0x01ec, 0x0000, 31208c2ecf20Sopenharmony_ci /* 0x0304 0x006f 0x0328 */ 31218c2ecf20Sopenharmony_ci 0x01ed, 0x0000, 31228c2ecf20Sopenharmony_ci /* 0x0313 0x0391 0x0345 */ 31238c2ecf20Sopenharmony_ci 0x1f88, 0x0003, 0x0300, 0x0f5e, 0x0301, 0x0f60, 0x0342, 0x0f62, 31248c2ecf20Sopenharmony_ci /* 0x0314 0x0391 0x0345 */ 31258c2ecf20Sopenharmony_ci 0x1f89, 0x0003, 0x0300, 0x0f64, 0x0301, 0x0f66, 0x0342, 0x0f68, 31268c2ecf20Sopenharmony_ci /* 0x0313 0x0397 0x0345 */ 31278c2ecf20Sopenharmony_ci 0x1f98, 0x0003, 0x0300, 0x0f6a, 0x0301, 0x0f6c, 0x0342, 0x0f6e, 31288c2ecf20Sopenharmony_ci /* 0x0314 0x0397 0x0345 */ 31298c2ecf20Sopenharmony_ci 0x1f99, 0x0003, 0x0300, 0x0f70, 0x0301, 0x0f72, 0x0342, 0x0f74, 31308c2ecf20Sopenharmony_ci /* 0x0313 0x03a9 0x0345 */ 31318c2ecf20Sopenharmony_ci 0x1fa8, 0x0003, 0x0300, 0x0f76, 0x0301, 0x0f78, 0x0342, 0x0f7a, 31328c2ecf20Sopenharmony_ci /* 0x0314 0x03a9 0x0345 */ 31338c2ecf20Sopenharmony_ci 0x1fa9, 0x0003, 0x0300, 0x0f7c, 0x0301, 0x0f7e, 0x0342, 0x0f80, 31348c2ecf20Sopenharmony_ci /* 0x0300 0x03b1 0x0345 */ 31358c2ecf20Sopenharmony_ci 0x1fb2, 0x0000, 31368c2ecf20Sopenharmony_ci /* 0x0301 0x03b1 0x0345 */ 31378c2ecf20Sopenharmony_ci 0x1fb4, 0x0000, 31388c2ecf20Sopenharmony_ci /* 0x0313 0x03b1 0x0345 */ 31398c2ecf20Sopenharmony_ci 0x1f80, 0x0003, 0x0300, 0x0f82, 0x0301, 0x0f84, 0x0342, 0x0f86, 31408c2ecf20Sopenharmony_ci /* 0x0314 0x03b1 0x0345 */ 31418c2ecf20Sopenharmony_ci 0x1f81, 0x0003, 0x0300, 0x0f88, 0x0301, 0x0f8a, 0x0342, 0x0f8c, 31428c2ecf20Sopenharmony_ci /* 0x0342 0x03b1 0x0345 */ 31438c2ecf20Sopenharmony_ci 0x1fb7, 0x0000, 31448c2ecf20Sopenharmony_ci /* 0x0300 0x03b7 0x0345 */ 31458c2ecf20Sopenharmony_ci 0x1fc2, 0x0000, 31468c2ecf20Sopenharmony_ci /* 0x0301 0x03b7 0x0345 */ 31478c2ecf20Sopenharmony_ci 0x1fc4, 0x0000, 31488c2ecf20Sopenharmony_ci /* 0x0313 0x03b7 0x0345 */ 31498c2ecf20Sopenharmony_ci 0x1f90, 0x0003, 0x0300, 0x0f8e, 0x0301, 0x0f90, 0x0342, 0x0f92, 31508c2ecf20Sopenharmony_ci /* 0x0314 0x03b7 0x0345 */ 31518c2ecf20Sopenharmony_ci 0x1f91, 0x0003, 0x0300, 0x0f94, 0x0301, 0x0f96, 0x0342, 0x0f98, 31528c2ecf20Sopenharmony_ci /* 0x0342 0x03b7 0x0345 */ 31538c2ecf20Sopenharmony_ci 0x1fc7, 0x0000, 31548c2ecf20Sopenharmony_ci /* 0x0301 0x03bf 0x0345 */ 31558c2ecf20Sopenharmony_ci 0x1ff4, 0x0000, 31568c2ecf20Sopenharmony_ci /* 0x0300 0x03c9 0x0345 */ 31578c2ecf20Sopenharmony_ci 0x1ff2, 0x0000, 31588c2ecf20Sopenharmony_ci /* 0x0313 0x03c9 0x0345 */ 31598c2ecf20Sopenharmony_ci 0x1fa0, 0x0003, 0x0300, 0x0f9a, 0x0301, 0x0f9c, 0x0342, 0x0f9e, 31608c2ecf20Sopenharmony_ci /* 0x0314 0x03c9 0x0345 */ 31618c2ecf20Sopenharmony_ci 0x1fa1, 0x0003, 0x0300, 0x0fa0, 0x0301, 0x0fa2, 0x0342, 0x0fa4, 31628c2ecf20Sopenharmony_ci /* 0x0342 0x03c9 0x0345 */ 31638c2ecf20Sopenharmony_ci 0x1ff7, 0x0000, 31648c2ecf20Sopenharmony_ci /* 0x05c1 0x05e9 0x05bc */ 31658c2ecf20Sopenharmony_ci 0xfb2c, 0x0000, 31668c2ecf20Sopenharmony_ci /* 0x05c2 0x05e9 0x05bc */ 31678c2ecf20Sopenharmony_ci 0xfb2d, 0x0000, 31688c2ecf20Sopenharmony_ci /* 0x0cd5 0x0cc6 0x0cc2 */ 31698c2ecf20Sopenharmony_ci 0x0ccb, 0x0000, 31708c2ecf20Sopenharmony_ci /* 0x0f71 0x0fb2 0x0f80 */ 31718c2ecf20Sopenharmony_ci 0x0f77, 0x0000, 31728c2ecf20Sopenharmony_ci /* 0x0f71 0x0fb3 0x0f80 */ 31738c2ecf20Sopenharmony_ci 0x0f79, 0x0000, 31748c2ecf20Sopenharmony_ci /* 0x0300 0x0313 0x0391 0x0345 */ 31758c2ecf20Sopenharmony_ci 0x1f8a, 0x0000, 31768c2ecf20Sopenharmony_ci /* 0x0301 0x0313 0x0391 0x0345 */ 31778c2ecf20Sopenharmony_ci 0x1f8c, 0x0000, 31788c2ecf20Sopenharmony_ci /* 0x0342 0x0313 0x0391 0x0345 */ 31798c2ecf20Sopenharmony_ci 0x1f8e, 0x0000, 31808c2ecf20Sopenharmony_ci /* 0x0300 0x0314 0x0391 0x0345 */ 31818c2ecf20Sopenharmony_ci 0x1f8b, 0x0000, 31828c2ecf20Sopenharmony_ci /* 0x0301 0x0314 0x0391 0x0345 */ 31838c2ecf20Sopenharmony_ci 0x1f8d, 0x0000, 31848c2ecf20Sopenharmony_ci /* 0x0342 0x0314 0x0391 0x0345 */ 31858c2ecf20Sopenharmony_ci 0x1f8f, 0x0000, 31868c2ecf20Sopenharmony_ci /* 0x0300 0x0313 0x0397 0x0345 */ 31878c2ecf20Sopenharmony_ci 0x1f9a, 0x0000, 31888c2ecf20Sopenharmony_ci /* 0x0301 0x0313 0x0397 0x0345 */ 31898c2ecf20Sopenharmony_ci 0x1f9c, 0x0000, 31908c2ecf20Sopenharmony_ci /* 0x0342 0x0313 0x0397 0x0345 */ 31918c2ecf20Sopenharmony_ci 0x1f9e, 0x0000, 31928c2ecf20Sopenharmony_ci /* 0x0300 0x0314 0x0397 0x0345 */ 31938c2ecf20Sopenharmony_ci 0x1f9b, 0x0000, 31948c2ecf20Sopenharmony_ci /* 0x0301 0x0314 0x0397 0x0345 */ 31958c2ecf20Sopenharmony_ci 0x1f9d, 0x0000, 31968c2ecf20Sopenharmony_ci /* 0x0342 0x0314 0x0397 0x0345 */ 31978c2ecf20Sopenharmony_ci 0x1f9f, 0x0000, 31988c2ecf20Sopenharmony_ci /* 0x0300 0x0313 0x03a9 0x0345 */ 31998c2ecf20Sopenharmony_ci 0x1faa, 0x0000, 32008c2ecf20Sopenharmony_ci /* 0x0301 0x0313 0x03a9 0x0345 */ 32018c2ecf20Sopenharmony_ci 0x1fac, 0x0000, 32028c2ecf20Sopenharmony_ci /* 0x0342 0x0313 0x03a9 0x0345 */ 32038c2ecf20Sopenharmony_ci 0x1fae, 0x0000, 32048c2ecf20Sopenharmony_ci /* 0x0300 0x0314 0x03a9 0x0345 */ 32058c2ecf20Sopenharmony_ci 0x1fab, 0x0000, 32068c2ecf20Sopenharmony_ci /* 0x0301 0x0314 0x03a9 0x0345 */ 32078c2ecf20Sopenharmony_ci 0x1fad, 0x0000, 32088c2ecf20Sopenharmony_ci /* 0x0342 0x0314 0x03a9 0x0345 */ 32098c2ecf20Sopenharmony_ci 0x1faf, 0x0000, 32108c2ecf20Sopenharmony_ci /* 0x0300 0x0313 0x03b1 0x0345 */ 32118c2ecf20Sopenharmony_ci 0x1f82, 0x0000, 32128c2ecf20Sopenharmony_ci /* 0x0301 0x0313 0x03b1 0x0345 */ 32138c2ecf20Sopenharmony_ci 0x1f84, 0x0000, 32148c2ecf20Sopenharmony_ci /* 0x0342 0x0313 0x03b1 0x0345 */ 32158c2ecf20Sopenharmony_ci 0x1f86, 0x0000, 32168c2ecf20Sopenharmony_ci /* 0x0300 0x0314 0x03b1 0x0345 */ 32178c2ecf20Sopenharmony_ci 0x1f83, 0x0000, 32188c2ecf20Sopenharmony_ci /* 0x0301 0x0314 0x03b1 0x0345 */ 32198c2ecf20Sopenharmony_ci 0x1f85, 0x0000, 32208c2ecf20Sopenharmony_ci /* 0x0342 0x0314 0x03b1 0x0345 */ 32218c2ecf20Sopenharmony_ci 0x1f87, 0x0000, 32228c2ecf20Sopenharmony_ci /* 0x0300 0x0313 0x03b7 0x0345 */ 32238c2ecf20Sopenharmony_ci 0x1f92, 0x0000, 32248c2ecf20Sopenharmony_ci /* 0x0301 0x0313 0x03b7 0x0345 */ 32258c2ecf20Sopenharmony_ci 0x1f94, 0x0000, 32268c2ecf20Sopenharmony_ci /* 0x0342 0x0313 0x03b7 0x0345 */ 32278c2ecf20Sopenharmony_ci 0x1f96, 0x0000, 32288c2ecf20Sopenharmony_ci /* 0x0300 0x0314 0x03b7 0x0345 */ 32298c2ecf20Sopenharmony_ci 0x1f93, 0x0000, 32308c2ecf20Sopenharmony_ci /* 0x0301 0x0314 0x03b7 0x0345 */ 32318c2ecf20Sopenharmony_ci 0x1f95, 0x0000, 32328c2ecf20Sopenharmony_ci /* 0x0342 0x0314 0x03b7 0x0345 */ 32338c2ecf20Sopenharmony_ci 0x1f97, 0x0000, 32348c2ecf20Sopenharmony_ci /* 0x0300 0x0313 0x03c9 0x0345 */ 32358c2ecf20Sopenharmony_ci 0x1fa2, 0x0000, 32368c2ecf20Sopenharmony_ci /* 0x0301 0x0313 0x03c9 0x0345 */ 32378c2ecf20Sopenharmony_ci 0x1fa4, 0x0000, 32388c2ecf20Sopenharmony_ci /* 0x0342 0x0313 0x03c9 0x0345 */ 32398c2ecf20Sopenharmony_ci 0x1fa6, 0x0000, 32408c2ecf20Sopenharmony_ci /* 0x0300 0x0314 0x03c9 0x0345 */ 32418c2ecf20Sopenharmony_ci 0x1fa3, 0x0000, 32428c2ecf20Sopenharmony_ci /* 0x0301 0x0314 0x03c9 0x0345 */ 32438c2ecf20Sopenharmony_ci 0x1fa5, 0x0000, 32448c2ecf20Sopenharmony_ci /* 0x0342 0x0314 0x03c9 0x0345 */ 32458c2ecf20Sopenharmony_ci 0x1fa7, 0x0000, 32468c2ecf20Sopenharmony_ci}; 3247