17db96d56Sopenharmony_ci""" Python Character Mapping Codec kz1048 generated from 'MAPPINGS/VENDORS/MISC/KZ1048.TXT' with gencodec.py. 27db96d56Sopenharmony_ci 37db96d56Sopenharmony_ci"""#" 47db96d56Sopenharmony_ci 57db96d56Sopenharmony_ciimport codecs 67db96d56Sopenharmony_ci 77db96d56Sopenharmony_ci### Codec APIs 87db96d56Sopenharmony_ci 97db96d56Sopenharmony_ciclass Codec(codecs.Codec): 107db96d56Sopenharmony_ci 117db96d56Sopenharmony_ci def encode(self, input, errors='strict'): 127db96d56Sopenharmony_ci return codecs.charmap_encode(input, errors, encoding_table) 137db96d56Sopenharmony_ci 147db96d56Sopenharmony_ci def decode(self, input, errors='strict'): 157db96d56Sopenharmony_ci return codecs.charmap_decode(input, errors, decoding_table) 167db96d56Sopenharmony_ci 177db96d56Sopenharmony_ciclass IncrementalEncoder(codecs.IncrementalEncoder): 187db96d56Sopenharmony_ci def encode(self, input, final=False): 197db96d56Sopenharmony_ci return codecs.charmap_encode(input, self.errors, encoding_table)[0] 207db96d56Sopenharmony_ci 217db96d56Sopenharmony_ciclass IncrementalDecoder(codecs.IncrementalDecoder): 227db96d56Sopenharmony_ci def decode(self, input, final=False): 237db96d56Sopenharmony_ci return codecs.charmap_decode(input, self.errors, decoding_table)[0] 247db96d56Sopenharmony_ci 257db96d56Sopenharmony_ciclass StreamWriter(Codec, codecs.StreamWriter): 267db96d56Sopenharmony_ci pass 277db96d56Sopenharmony_ci 287db96d56Sopenharmony_ciclass StreamReader(Codec, codecs.StreamReader): 297db96d56Sopenharmony_ci pass 307db96d56Sopenharmony_ci 317db96d56Sopenharmony_ci### encodings module API 327db96d56Sopenharmony_ci 337db96d56Sopenharmony_cidef getregentry(): 347db96d56Sopenharmony_ci return codecs.CodecInfo( 357db96d56Sopenharmony_ci name='kz1048', 367db96d56Sopenharmony_ci encode=Codec().encode, 377db96d56Sopenharmony_ci decode=Codec().decode, 387db96d56Sopenharmony_ci incrementalencoder=IncrementalEncoder, 397db96d56Sopenharmony_ci incrementaldecoder=IncrementalDecoder, 407db96d56Sopenharmony_ci streamreader=StreamReader, 417db96d56Sopenharmony_ci streamwriter=StreamWriter, 427db96d56Sopenharmony_ci ) 437db96d56Sopenharmony_ci 447db96d56Sopenharmony_ci 457db96d56Sopenharmony_ci### Decoding Table 467db96d56Sopenharmony_ci 477db96d56Sopenharmony_cidecoding_table = ( 487db96d56Sopenharmony_ci '\x00' # 0x00 -> NULL 497db96d56Sopenharmony_ci '\x01' # 0x01 -> START OF HEADING 507db96d56Sopenharmony_ci '\x02' # 0x02 -> START OF TEXT 517db96d56Sopenharmony_ci '\x03' # 0x03 -> END OF TEXT 527db96d56Sopenharmony_ci '\x04' # 0x04 -> END OF TRANSMISSION 537db96d56Sopenharmony_ci '\x05' # 0x05 -> ENQUIRY 547db96d56Sopenharmony_ci '\x06' # 0x06 -> ACKNOWLEDGE 557db96d56Sopenharmony_ci '\x07' # 0x07 -> BELL 567db96d56Sopenharmony_ci '\x08' # 0x08 -> BACKSPACE 577db96d56Sopenharmony_ci '\t' # 0x09 -> HORIZONTAL TABULATION 587db96d56Sopenharmony_ci '\n' # 0x0A -> LINE FEED 597db96d56Sopenharmony_ci '\x0b' # 0x0B -> VERTICAL TABULATION 607db96d56Sopenharmony_ci '\x0c' # 0x0C -> FORM FEED 617db96d56Sopenharmony_ci '\r' # 0x0D -> CARRIAGE RETURN 627db96d56Sopenharmony_ci '\x0e' # 0x0E -> SHIFT OUT 637db96d56Sopenharmony_ci '\x0f' # 0x0F -> SHIFT IN 647db96d56Sopenharmony_ci '\x10' # 0x10 -> DATA LINK ESCAPE 657db96d56Sopenharmony_ci '\x11' # 0x11 -> DEVICE CONTROL ONE 667db96d56Sopenharmony_ci '\x12' # 0x12 -> DEVICE CONTROL TWO 677db96d56Sopenharmony_ci '\x13' # 0x13 -> DEVICE CONTROL THREE 687db96d56Sopenharmony_ci '\x14' # 0x14 -> DEVICE CONTROL FOUR 697db96d56Sopenharmony_ci '\x15' # 0x15 -> NEGATIVE ACKNOWLEDGE 707db96d56Sopenharmony_ci '\x16' # 0x16 -> SYNCHRONOUS IDLE 717db96d56Sopenharmony_ci '\x17' # 0x17 -> END OF TRANSMISSION BLOCK 727db96d56Sopenharmony_ci '\x18' # 0x18 -> CANCEL 737db96d56Sopenharmony_ci '\x19' # 0x19 -> END OF MEDIUM 747db96d56Sopenharmony_ci '\x1a' # 0x1A -> SUBSTITUTE 757db96d56Sopenharmony_ci '\x1b' # 0x1B -> ESCAPE 767db96d56Sopenharmony_ci '\x1c' # 0x1C -> FILE SEPARATOR 777db96d56Sopenharmony_ci '\x1d' # 0x1D -> GROUP SEPARATOR 787db96d56Sopenharmony_ci '\x1e' # 0x1E -> RECORD SEPARATOR 797db96d56Sopenharmony_ci '\x1f' # 0x1F -> UNIT SEPARATOR 807db96d56Sopenharmony_ci ' ' # 0x20 -> SPACE 817db96d56Sopenharmony_ci '!' # 0x21 -> EXCLAMATION MARK 827db96d56Sopenharmony_ci '"' # 0x22 -> QUOTATION MARK 837db96d56Sopenharmony_ci '#' # 0x23 -> NUMBER SIGN 847db96d56Sopenharmony_ci '$' # 0x24 -> DOLLAR SIGN 857db96d56Sopenharmony_ci '%' # 0x25 -> PERCENT SIGN 867db96d56Sopenharmony_ci '&' # 0x26 -> AMPERSAND 877db96d56Sopenharmony_ci "'" # 0x27 -> APOSTROPHE 887db96d56Sopenharmony_ci '(' # 0x28 -> LEFT PARENTHESIS 897db96d56Sopenharmony_ci ')' # 0x29 -> RIGHT PARENTHESIS 907db96d56Sopenharmony_ci '*' # 0x2A -> ASTERISK 917db96d56Sopenharmony_ci '+' # 0x2B -> PLUS SIGN 927db96d56Sopenharmony_ci ',' # 0x2C -> COMMA 937db96d56Sopenharmony_ci '-' # 0x2D -> HYPHEN-MINUS 947db96d56Sopenharmony_ci '.' # 0x2E -> FULL STOP 957db96d56Sopenharmony_ci '/' # 0x2F -> SOLIDUS 967db96d56Sopenharmony_ci '0' # 0x30 -> DIGIT ZERO 977db96d56Sopenharmony_ci '1' # 0x31 -> DIGIT ONE 987db96d56Sopenharmony_ci '2' # 0x32 -> DIGIT TWO 997db96d56Sopenharmony_ci '3' # 0x33 -> DIGIT THREE 1007db96d56Sopenharmony_ci '4' # 0x34 -> DIGIT FOUR 1017db96d56Sopenharmony_ci '5' # 0x35 -> DIGIT FIVE 1027db96d56Sopenharmony_ci '6' # 0x36 -> DIGIT SIX 1037db96d56Sopenharmony_ci '7' # 0x37 -> DIGIT SEVEN 1047db96d56Sopenharmony_ci '8' # 0x38 -> DIGIT EIGHT 1057db96d56Sopenharmony_ci '9' # 0x39 -> DIGIT NINE 1067db96d56Sopenharmony_ci ':' # 0x3A -> COLON 1077db96d56Sopenharmony_ci ';' # 0x3B -> SEMICOLON 1087db96d56Sopenharmony_ci '<' # 0x3C -> LESS-THAN SIGN 1097db96d56Sopenharmony_ci '=' # 0x3D -> EQUALS SIGN 1107db96d56Sopenharmony_ci '>' # 0x3E -> GREATER-THAN SIGN 1117db96d56Sopenharmony_ci '?' # 0x3F -> QUESTION MARK 1127db96d56Sopenharmony_ci '@' # 0x40 -> COMMERCIAL AT 1137db96d56Sopenharmony_ci 'A' # 0x41 -> LATIN CAPITAL LETTER A 1147db96d56Sopenharmony_ci 'B' # 0x42 -> LATIN CAPITAL LETTER B 1157db96d56Sopenharmony_ci 'C' # 0x43 -> LATIN CAPITAL LETTER C 1167db96d56Sopenharmony_ci 'D' # 0x44 -> LATIN CAPITAL LETTER D 1177db96d56Sopenharmony_ci 'E' # 0x45 -> LATIN CAPITAL LETTER E 1187db96d56Sopenharmony_ci 'F' # 0x46 -> LATIN CAPITAL LETTER F 1197db96d56Sopenharmony_ci 'G' # 0x47 -> LATIN CAPITAL LETTER G 1207db96d56Sopenharmony_ci 'H' # 0x48 -> LATIN CAPITAL LETTER H 1217db96d56Sopenharmony_ci 'I' # 0x49 -> LATIN CAPITAL LETTER I 1227db96d56Sopenharmony_ci 'J' # 0x4A -> LATIN CAPITAL LETTER J 1237db96d56Sopenharmony_ci 'K' # 0x4B -> LATIN CAPITAL LETTER K 1247db96d56Sopenharmony_ci 'L' # 0x4C -> LATIN CAPITAL LETTER L 1257db96d56Sopenharmony_ci 'M' # 0x4D -> LATIN CAPITAL LETTER M 1267db96d56Sopenharmony_ci 'N' # 0x4E -> LATIN CAPITAL LETTER N 1277db96d56Sopenharmony_ci 'O' # 0x4F -> LATIN CAPITAL LETTER O 1287db96d56Sopenharmony_ci 'P' # 0x50 -> LATIN CAPITAL LETTER P 1297db96d56Sopenharmony_ci 'Q' # 0x51 -> LATIN CAPITAL LETTER Q 1307db96d56Sopenharmony_ci 'R' # 0x52 -> LATIN CAPITAL LETTER R 1317db96d56Sopenharmony_ci 'S' # 0x53 -> LATIN CAPITAL LETTER S 1327db96d56Sopenharmony_ci 'T' # 0x54 -> LATIN CAPITAL LETTER T 1337db96d56Sopenharmony_ci 'U' # 0x55 -> LATIN CAPITAL LETTER U 1347db96d56Sopenharmony_ci 'V' # 0x56 -> LATIN CAPITAL LETTER V 1357db96d56Sopenharmony_ci 'W' # 0x57 -> LATIN CAPITAL LETTER W 1367db96d56Sopenharmony_ci 'X' # 0x58 -> LATIN CAPITAL LETTER X 1377db96d56Sopenharmony_ci 'Y' # 0x59 -> LATIN CAPITAL LETTER Y 1387db96d56Sopenharmony_ci 'Z' # 0x5A -> LATIN CAPITAL LETTER Z 1397db96d56Sopenharmony_ci '[' # 0x5B -> LEFT SQUARE BRACKET 1407db96d56Sopenharmony_ci '\\' # 0x5C -> REVERSE SOLIDUS 1417db96d56Sopenharmony_ci ']' # 0x5D -> RIGHT SQUARE BRACKET 1427db96d56Sopenharmony_ci '^' # 0x5E -> CIRCUMFLEX ACCENT 1437db96d56Sopenharmony_ci '_' # 0x5F -> LOW LINE 1447db96d56Sopenharmony_ci '`' # 0x60 -> GRAVE ACCENT 1457db96d56Sopenharmony_ci 'a' # 0x61 -> LATIN SMALL LETTER A 1467db96d56Sopenharmony_ci 'b' # 0x62 -> LATIN SMALL LETTER B 1477db96d56Sopenharmony_ci 'c' # 0x63 -> LATIN SMALL LETTER C 1487db96d56Sopenharmony_ci 'd' # 0x64 -> LATIN SMALL LETTER D 1497db96d56Sopenharmony_ci 'e' # 0x65 -> LATIN SMALL LETTER E 1507db96d56Sopenharmony_ci 'f' # 0x66 -> LATIN SMALL LETTER F 1517db96d56Sopenharmony_ci 'g' # 0x67 -> LATIN SMALL LETTER G 1527db96d56Sopenharmony_ci 'h' # 0x68 -> LATIN SMALL LETTER H 1537db96d56Sopenharmony_ci 'i' # 0x69 -> LATIN SMALL LETTER I 1547db96d56Sopenharmony_ci 'j' # 0x6A -> LATIN SMALL LETTER J 1557db96d56Sopenharmony_ci 'k' # 0x6B -> LATIN SMALL LETTER K 1567db96d56Sopenharmony_ci 'l' # 0x6C -> LATIN SMALL LETTER L 1577db96d56Sopenharmony_ci 'm' # 0x6D -> LATIN SMALL LETTER M 1587db96d56Sopenharmony_ci 'n' # 0x6E -> LATIN SMALL LETTER N 1597db96d56Sopenharmony_ci 'o' # 0x6F -> LATIN SMALL LETTER O 1607db96d56Sopenharmony_ci 'p' # 0x70 -> LATIN SMALL LETTER P 1617db96d56Sopenharmony_ci 'q' # 0x71 -> LATIN SMALL LETTER Q 1627db96d56Sopenharmony_ci 'r' # 0x72 -> LATIN SMALL LETTER R 1637db96d56Sopenharmony_ci 's' # 0x73 -> LATIN SMALL LETTER S 1647db96d56Sopenharmony_ci 't' # 0x74 -> LATIN SMALL LETTER T 1657db96d56Sopenharmony_ci 'u' # 0x75 -> LATIN SMALL LETTER U 1667db96d56Sopenharmony_ci 'v' # 0x76 -> LATIN SMALL LETTER V 1677db96d56Sopenharmony_ci 'w' # 0x77 -> LATIN SMALL LETTER W 1687db96d56Sopenharmony_ci 'x' # 0x78 -> LATIN SMALL LETTER X 1697db96d56Sopenharmony_ci 'y' # 0x79 -> LATIN SMALL LETTER Y 1707db96d56Sopenharmony_ci 'z' # 0x7A -> LATIN SMALL LETTER Z 1717db96d56Sopenharmony_ci '{' # 0x7B -> LEFT CURLY BRACKET 1727db96d56Sopenharmony_ci '|' # 0x7C -> VERTICAL LINE 1737db96d56Sopenharmony_ci '}' # 0x7D -> RIGHT CURLY BRACKET 1747db96d56Sopenharmony_ci '~' # 0x7E -> TILDE 1757db96d56Sopenharmony_ci '\x7f' # 0x7F -> DELETE 1767db96d56Sopenharmony_ci '\u0402' # 0x80 -> CYRILLIC CAPITAL LETTER DJE 1777db96d56Sopenharmony_ci '\u0403' # 0x81 -> CYRILLIC CAPITAL LETTER GJE 1787db96d56Sopenharmony_ci '\u201a' # 0x82 -> SINGLE LOW-9 QUOTATION MARK 1797db96d56Sopenharmony_ci '\u0453' # 0x83 -> CYRILLIC SMALL LETTER GJE 1807db96d56Sopenharmony_ci '\u201e' # 0x84 -> DOUBLE LOW-9 QUOTATION MARK 1817db96d56Sopenharmony_ci '\u2026' # 0x85 -> HORIZONTAL ELLIPSIS 1827db96d56Sopenharmony_ci '\u2020' # 0x86 -> DAGGER 1837db96d56Sopenharmony_ci '\u2021' # 0x87 -> DOUBLE DAGGER 1847db96d56Sopenharmony_ci '\u20ac' # 0x88 -> EURO SIGN 1857db96d56Sopenharmony_ci '\u2030' # 0x89 -> PER MILLE SIGN 1867db96d56Sopenharmony_ci '\u0409' # 0x8A -> CYRILLIC CAPITAL LETTER LJE 1877db96d56Sopenharmony_ci '\u2039' # 0x8B -> SINGLE LEFT-POINTING ANGLE QUOTATION MARK 1887db96d56Sopenharmony_ci '\u040a' # 0x8C -> CYRILLIC CAPITAL LETTER NJE 1897db96d56Sopenharmony_ci '\u049a' # 0x8D -> CYRILLIC CAPITAL LETTER KA WITH DESCENDER 1907db96d56Sopenharmony_ci '\u04ba' # 0x8E -> CYRILLIC CAPITAL LETTER SHHA 1917db96d56Sopenharmony_ci '\u040f' # 0x8F -> CYRILLIC CAPITAL LETTER DZHE 1927db96d56Sopenharmony_ci '\u0452' # 0x90 -> CYRILLIC SMALL LETTER DJE 1937db96d56Sopenharmony_ci '\u2018' # 0x91 -> LEFT SINGLE QUOTATION MARK 1947db96d56Sopenharmony_ci '\u2019' # 0x92 -> RIGHT SINGLE QUOTATION MARK 1957db96d56Sopenharmony_ci '\u201c' # 0x93 -> LEFT DOUBLE QUOTATION MARK 1967db96d56Sopenharmony_ci '\u201d' # 0x94 -> RIGHT DOUBLE QUOTATION MARK 1977db96d56Sopenharmony_ci '\u2022' # 0x95 -> BULLET 1987db96d56Sopenharmony_ci '\u2013' # 0x96 -> EN DASH 1997db96d56Sopenharmony_ci '\u2014' # 0x97 -> EM DASH 2007db96d56Sopenharmony_ci '\ufffe' # 0x98 -> UNDEFINED 2017db96d56Sopenharmony_ci '\u2122' # 0x99 -> TRADE MARK SIGN 2027db96d56Sopenharmony_ci '\u0459' # 0x9A -> CYRILLIC SMALL LETTER LJE 2037db96d56Sopenharmony_ci '\u203a' # 0x9B -> SINGLE RIGHT-POINTING ANGLE QUOTATION MARK 2047db96d56Sopenharmony_ci '\u045a' # 0x9C -> CYRILLIC SMALL LETTER NJE 2057db96d56Sopenharmony_ci '\u049b' # 0x9D -> CYRILLIC SMALL LETTER KA WITH DESCENDER 2067db96d56Sopenharmony_ci '\u04bb' # 0x9E -> CYRILLIC SMALL LETTER SHHA 2077db96d56Sopenharmony_ci '\u045f' # 0x9F -> CYRILLIC SMALL LETTER DZHE 2087db96d56Sopenharmony_ci '\xa0' # 0xA0 -> NO-BREAK SPACE 2097db96d56Sopenharmony_ci '\u04b0' # 0xA1 -> CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE 2107db96d56Sopenharmony_ci '\u04b1' # 0xA2 -> CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE 2117db96d56Sopenharmony_ci '\u04d8' # 0xA3 -> CYRILLIC CAPITAL LETTER SCHWA 2127db96d56Sopenharmony_ci '\xa4' # 0xA4 -> CURRENCY SIGN 2137db96d56Sopenharmony_ci '\u04e8' # 0xA5 -> CYRILLIC CAPITAL LETTER BARRED O 2147db96d56Sopenharmony_ci '\xa6' # 0xA6 -> BROKEN BAR 2157db96d56Sopenharmony_ci '\xa7' # 0xA7 -> SECTION SIGN 2167db96d56Sopenharmony_ci '\u0401' # 0xA8 -> CYRILLIC CAPITAL LETTER IO 2177db96d56Sopenharmony_ci '\xa9' # 0xA9 -> COPYRIGHT SIGN 2187db96d56Sopenharmony_ci '\u0492' # 0xAA -> CYRILLIC CAPITAL LETTER GHE WITH STROKE 2197db96d56Sopenharmony_ci '\xab' # 0xAB -> LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 2207db96d56Sopenharmony_ci '\xac' # 0xAC -> NOT SIGN 2217db96d56Sopenharmony_ci '\xad' # 0xAD -> SOFT HYPHEN 2227db96d56Sopenharmony_ci '\xae' # 0xAE -> REGISTERED SIGN 2237db96d56Sopenharmony_ci '\u04ae' # 0xAF -> CYRILLIC CAPITAL LETTER STRAIGHT U 2247db96d56Sopenharmony_ci '\xb0' # 0xB0 -> DEGREE SIGN 2257db96d56Sopenharmony_ci '\xb1' # 0xB1 -> PLUS-MINUS SIGN 2267db96d56Sopenharmony_ci '\u0406' # 0xB2 -> CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I 2277db96d56Sopenharmony_ci '\u0456' # 0xB3 -> CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I 2287db96d56Sopenharmony_ci '\u04e9' # 0xB4 -> CYRILLIC SMALL LETTER BARRED O 2297db96d56Sopenharmony_ci '\xb5' # 0xB5 -> MICRO SIGN 2307db96d56Sopenharmony_ci '\xb6' # 0xB6 -> PILCROW SIGN 2317db96d56Sopenharmony_ci '\xb7' # 0xB7 -> MIDDLE DOT 2327db96d56Sopenharmony_ci '\u0451' # 0xB8 -> CYRILLIC SMALL LETTER IO 2337db96d56Sopenharmony_ci '\u2116' # 0xB9 -> NUMERO SIGN 2347db96d56Sopenharmony_ci '\u0493' # 0xBA -> CYRILLIC SMALL LETTER GHE WITH STROKE 2357db96d56Sopenharmony_ci '\xbb' # 0xBB -> RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK 2367db96d56Sopenharmony_ci '\u04d9' # 0xBC -> CYRILLIC SMALL LETTER SCHWA 2377db96d56Sopenharmony_ci '\u04a2' # 0xBD -> CYRILLIC CAPITAL LETTER EN WITH DESCENDER 2387db96d56Sopenharmony_ci '\u04a3' # 0xBE -> CYRILLIC SMALL LETTER EN WITH DESCENDER 2397db96d56Sopenharmony_ci '\u04af' # 0xBF -> CYRILLIC SMALL LETTER STRAIGHT U 2407db96d56Sopenharmony_ci '\u0410' # 0xC0 -> CYRILLIC CAPITAL LETTER A 2417db96d56Sopenharmony_ci '\u0411' # 0xC1 -> CYRILLIC CAPITAL LETTER BE 2427db96d56Sopenharmony_ci '\u0412' # 0xC2 -> CYRILLIC CAPITAL LETTER VE 2437db96d56Sopenharmony_ci '\u0413' # 0xC3 -> CYRILLIC CAPITAL LETTER GHE 2447db96d56Sopenharmony_ci '\u0414' # 0xC4 -> CYRILLIC CAPITAL LETTER DE 2457db96d56Sopenharmony_ci '\u0415' # 0xC5 -> CYRILLIC CAPITAL LETTER IE 2467db96d56Sopenharmony_ci '\u0416' # 0xC6 -> CYRILLIC CAPITAL LETTER ZHE 2477db96d56Sopenharmony_ci '\u0417' # 0xC7 -> CYRILLIC CAPITAL LETTER ZE 2487db96d56Sopenharmony_ci '\u0418' # 0xC8 -> CYRILLIC CAPITAL LETTER I 2497db96d56Sopenharmony_ci '\u0419' # 0xC9 -> CYRILLIC CAPITAL LETTER SHORT I 2507db96d56Sopenharmony_ci '\u041a' # 0xCA -> CYRILLIC CAPITAL LETTER KA 2517db96d56Sopenharmony_ci '\u041b' # 0xCB -> CYRILLIC CAPITAL LETTER EL 2527db96d56Sopenharmony_ci '\u041c' # 0xCC -> CYRILLIC CAPITAL LETTER EM 2537db96d56Sopenharmony_ci '\u041d' # 0xCD -> CYRILLIC CAPITAL LETTER EN 2547db96d56Sopenharmony_ci '\u041e' # 0xCE -> CYRILLIC CAPITAL LETTER O 2557db96d56Sopenharmony_ci '\u041f' # 0xCF -> CYRILLIC CAPITAL LETTER PE 2567db96d56Sopenharmony_ci '\u0420' # 0xD0 -> CYRILLIC CAPITAL LETTER ER 2577db96d56Sopenharmony_ci '\u0421' # 0xD1 -> CYRILLIC CAPITAL LETTER ES 2587db96d56Sopenharmony_ci '\u0422' # 0xD2 -> CYRILLIC CAPITAL LETTER TE 2597db96d56Sopenharmony_ci '\u0423' # 0xD3 -> CYRILLIC CAPITAL LETTER U 2607db96d56Sopenharmony_ci '\u0424' # 0xD4 -> CYRILLIC CAPITAL LETTER EF 2617db96d56Sopenharmony_ci '\u0425' # 0xD5 -> CYRILLIC CAPITAL LETTER HA 2627db96d56Sopenharmony_ci '\u0426' # 0xD6 -> CYRILLIC CAPITAL LETTER TSE 2637db96d56Sopenharmony_ci '\u0427' # 0xD7 -> CYRILLIC CAPITAL LETTER CHE 2647db96d56Sopenharmony_ci '\u0428' # 0xD8 -> CYRILLIC CAPITAL LETTER SHA 2657db96d56Sopenharmony_ci '\u0429' # 0xD9 -> CYRILLIC CAPITAL LETTER SHCHA 2667db96d56Sopenharmony_ci '\u042a' # 0xDA -> CYRILLIC CAPITAL LETTER HARD SIGN 2677db96d56Sopenharmony_ci '\u042b' # 0xDB -> CYRILLIC CAPITAL LETTER YERU 2687db96d56Sopenharmony_ci '\u042c' # 0xDC -> CYRILLIC CAPITAL LETTER SOFT SIGN 2697db96d56Sopenharmony_ci '\u042d' # 0xDD -> CYRILLIC CAPITAL LETTER E 2707db96d56Sopenharmony_ci '\u042e' # 0xDE -> CYRILLIC CAPITAL LETTER YU 2717db96d56Sopenharmony_ci '\u042f' # 0xDF -> CYRILLIC CAPITAL LETTER YA 2727db96d56Sopenharmony_ci '\u0430' # 0xE0 -> CYRILLIC SMALL LETTER A 2737db96d56Sopenharmony_ci '\u0431' # 0xE1 -> CYRILLIC SMALL LETTER BE 2747db96d56Sopenharmony_ci '\u0432' # 0xE2 -> CYRILLIC SMALL LETTER VE 2757db96d56Sopenharmony_ci '\u0433' # 0xE3 -> CYRILLIC SMALL LETTER GHE 2767db96d56Sopenharmony_ci '\u0434' # 0xE4 -> CYRILLIC SMALL LETTER DE 2777db96d56Sopenharmony_ci '\u0435' # 0xE5 -> CYRILLIC SMALL LETTER IE 2787db96d56Sopenharmony_ci '\u0436' # 0xE6 -> CYRILLIC SMALL LETTER ZHE 2797db96d56Sopenharmony_ci '\u0437' # 0xE7 -> CYRILLIC SMALL LETTER ZE 2807db96d56Sopenharmony_ci '\u0438' # 0xE8 -> CYRILLIC SMALL LETTER I 2817db96d56Sopenharmony_ci '\u0439' # 0xE9 -> CYRILLIC SMALL LETTER SHORT I 2827db96d56Sopenharmony_ci '\u043a' # 0xEA -> CYRILLIC SMALL LETTER KA 2837db96d56Sopenharmony_ci '\u043b' # 0xEB -> CYRILLIC SMALL LETTER EL 2847db96d56Sopenharmony_ci '\u043c' # 0xEC -> CYRILLIC SMALL LETTER EM 2857db96d56Sopenharmony_ci '\u043d' # 0xED -> CYRILLIC SMALL LETTER EN 2867db96d56Sopenharmony_ci '\u043e' # 0xEE -> CYRILLIC SMALL LETTER O 2877db96d56Sopenharmony_ci '\u043f' # 0xEF -> CYRILLIC SMALL LETTER PE 2887db96d56Sopenharmony_ci '\u0440' # 0xF0 -> CYRILLIC SMALL LETTER ER 2897db96d56Sopenharmony_ci '\u0441' # 0xF1 -> CYRILLIC SMALL LETTER ES 2907db96d56Sopenharmony_ci '\u0442' # 0xF2 -> CYRILLIC SMALL LETTER TE 2917db96d56Sopenharmony_ci '\u0443' # 0xF3 -> CYRILLIC SMALL LETTER U 2927db96d56Sopenharmony_ci '\u0444' # 0xF4 -> CYRILLIC SMALL LETTER EF 2937db96d56Sopenharmony_ci '\u0445' # 0xF5 -> CYRILLIC SMALL LETTER HA 2947db96d56Sopenharmony_ci '\u0446' # 0xF6 -> CYRILLIC SMALL LETTER TSE 2957db96d56Sopenharmony_ci '\u0447' # 0xF7 -> CYRILLIC SMALL LETTER CHE 2967db96d56Sopenharmony_ci '\u0448' # 0xF8 -> CYRILLIC SMALL LETTER SHA 2977db96d56Sopenharmony_ci '\u0449' # 0xF9 -> CYRILLIC SMALL LETTER SHCHA 2987db96d56Sopenharmony_ci '\u044a' # 0xFA -> CYRILLIC SMALL LETTER HARD SIGN 2997db96d56Sopenharmony_ci '\u044b' # 0xFB -> CYRILLIC SMALL LETTER YERU 3007db96d56Sopenharmony_ci '\u044c' # 0xFC -> CYRILLIC SMALL LETTER SOFT SIGN 3017db96d56Sopenharmony_ci '\u044d' # 0xFD -> CYRILLIC SMALL LETTER E 3027db96d56Sopenharmony_ci '\u044e' # 0xFE -> CYRILLIC SMALL LETTER YU 3037db96d56Sopenharmony_ci '\u044f' # 0xFF -> CYRILLIC SMALL LETTER YA 3047db96d56Sopenharmony_ci) 3057db96d56Sopenharmony_ci 3067db96d56Sopenharmony_ci### Encoding table 3077db96d56Sopenharmony_ciencoding_table = codecs.charmap_build(decoding_table) 308