xref: /third_party/python/Lib/encodings/cp875.py (revision 7db96d56)
17db96d56Sopenharmony_ci""" Python Character Mapping Codec cp875 generated from 'MAPPINGS/VENDORS/MICSFT/EBCDIC/CP875.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='cp875',
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    '\x9c'     #  0x04 -> CONTROL
537db96d56Sopenharmony_ci    '\t'       #  0x05 -> HORIZONTAL TABULATION
547db96d56Sopenharmony_ci    '\x86'     #  0x06 -> CONTROL
557db96d56Sopenharmony_ci    '\x7f'     #  0x07 -> DELETE
567db96d56Sopenharmony_ci    '\x97'     #  0x08 -> CONTROL
577db96d56Sopenharmony_ci    '\x8d'     #  0x09 -> CONTROL
587db96d56Sopenharmony_ci    '\x8e'     #  0x0A -> CONTROL
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    '\x9d'     #  0x14 -> CONTROL
697db96d56Sopenharmony_ci    '\x85'     #  0x15 -> CONTROL
707db96d56Sopenharmony_ci    '\x08'     #  0x16 -> BACKSPACE
717db96d56Sopenharmony_ci    '\x87'     #  0x17 -> CONTROL
727db96d56Sopenharmony_ci    '\x18'     #  0x18 -> CANCEL
737db96d56Sopenharmony_ci    '\x19'     #  0x19 -> END OF MEDIUM
747db96d56Sopenharmony_ci    '\x92'     #  0x1A -> CONTROL
757db96d56Sopenharmony_ci    '\x8f'     #  0x1B -> CONTROL
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    '\x80'     #  0x20 -> CONTROL
817db96d56Sopenharmony_ci    '\x81'     #  0x21 -> CONTROL
827db96d56Sopenharmony_ci    '\x82'     #  0x22 -> CONTROL
837db96d56Sopenharmony_ci    '\x83'     #  0x23 -> CONTROL
847db96d56Sopenharmony_ci    '\x84'     #  0x24 -> CONTROL
857db96d56Sopenharmony_ci    '\n'       #  0x25 -> LINE FEED
867db96d56Sopenharmony_ci    '\x17'     #  0x26 -> END OF TRANSMISSION BLOCK
877db96d56Sopenharmony_ci    '\x1b'     #  0x27 -> ESCAPE
887db96d56Sopenharmony_ci    '\x88'     #  0x28 -> CONTROL
897db96d56Sopenharmony_ci    '\x89'     #  0x29 -> CONTROL
907db96d56Sopenharmony_ci    '\x8a'     #  0x2A -> CONTROL
917db96d56Sopenharmony_ci    '\x8b'     #  0x2B -> CONTROL
927db96d56Sopenharmony_ci    '\x8c'     #  0x2C -> CONTROL
937db96d56Sopenharmony_ci    '\x05'     #  0x2D -> ENQUIRY
947db96d56Sopenharmony_ci    '\x06'     #  0x2E -> ACKNOWLEDGE
957db96d56Sopenharmony_ci    '\x07'     #  0x2F -> BELL
967db96d56Sopenharmony_ci    '\x90'     #  0x30 -> CONTROL
977db96d56Sopenharmony_ci    '\x91'     #  0x31 -> CONTROL
987db96d56Sopenharmony_ci    '\x16'     #  0x32 -> SYNCHRONOUS IDLE
997db96d56Sopenharmony_ci    '\x93'     #  0x33 -> CONTROL
1007db96d56Sopenharmony_ci    '\x94'     #  0x34 -> CONTROL
1017db96d56Sopenharmony_ci    '\x95'     #  0x35 -> CONTROL
1027db96d56Sopenharmony_ci    '\x96'     #  0x36 -> CONTROL
1037db96d56Sopenharmony_ci    '\x04'     #  0x37 -> END OF TRANSMISSION
1047db96d56Sopenharmony_ci    '\x98'     #  0x38 -> CONTROL
1057db96d56Sopenharmony_ci    '\x99'     #  0x39 -> CONTROL
1067db96d56Sopenharmony_ci    '\x9a'     #  0x3A -> CONTROL
1077db96d56Sopenharmony_ci    '\x9b'     #  0x3B -> CONTROL
1087db96d56Sopenharmony_ci    '\x14'     #  0x3C -> DEVICE CONTROL FOUR
1097db96d56Sopenharmony_ci    '\x15'     #  0x3D -> NEGATIVE ACKNOWLEDGE
1107db96d56Sopenharmony_ci    '\x9e'     #  0x3E -> CONTROL
1117db96d56Sopenharmony_ci    '\x1a'     #  0x3F -> SUBSTITUTE
1127db96d56Sopenharmony_ci    ' '        #  0x40 -> SPACE
1137db96d56Sopenharmony_ci    '\u0391'   #  0x41 -> GREEK CAPITAL LETTER ALPHA
1147db96d56Sopenharmony_ci    '\u0392'   #  0x42 -> GREEK CAPITAL LETTER BETA
1157db96d56Sopenharmony_ci    '\u0393'   #  0x43 -> GREEK CAPITAL LETTER GAMMA
1167db96d56Sopenharmony_ci    '\u0394'   #  0x44 -> GREEK CAPITAL LETTER DELTA
1177db96d56Sopenharmony_ci    '\u0395'   #  0x45 -> GREEK CAPITAL LETTER EPSILON
1187db96d56Sopenharmony_ci    '\u0396'   #  0x46 -> GREEK CAPITAL LETTER ZETA
1197db96d56Sopenharmony_ci    '\u0397'   #  0x47 -> GREEK CAPITAL LETTER ETA
1207db96d56Sopenharmony_ci    '\u0398'   #  0x48 -> GREEK CAPITAL LETTER THETA
1217db96d56Sopenharmony_ci    '\u0399'   #  0x49 -> GREEK CAPITAL LETTER IOTA
1227db96d56Sopenharmony_ci    '['        #  0x4A -> LEFT SQUARE BRACKET
1237db96d56Sopenharmony_ci    '.'        #  0x4B -> FULL STOP
1247db96d56Sopenharmony_ci    '<'        #  0x4C -> LESS-THAN SIGN
1257db96d56Sopenharmony_ci    '('        #  0x4D -> LEFT PARENTHESIS
1267db96d56Sopenharmony_ci    '+'        #  0x4E -> PLUS SIGN
1277db96d56Sopenharmony_ci    '!'        #  0x4F -> EXCLAMATION MARK
1287db96d56Sopenharmony_ci    '&'        #  0x50 -> AMPERSAND
1297db96d56Sopenharmony_ci    '\u039a'   #  0x51 -> GREEK CAPITAL LETTER KAPPA
1307db96d56Sopenharmony_ci    '\u039b'   #  0x52 -> GREEK CAPITAL LETTER LAMDA
1317db96d56Sopenharmony_ci    '\u039c'   #  0x53 -> GREEK CAPITAL LETTER MU
1327db96d56Sopenharmony_ci    '\u039d'   #  0x54 -> GREEK CAPITAL LETTER NU
1337db96d56Sopenharmony_ci    '\u039e'   #  0x55 -> GREEK CAPITAL LETTER XI
1347db96d56Sopenharmony_ci    '\u039f'   #  0x56 -> GREEK CAPITAL LETTER OMICRON
1357db96d56Sopenharmony_ci    '\u03a0'   #  0x57 -> GREEK CAPITAL LETTER PI
1367db96d56Sopenharmony_ci    '\u03a1'   #  0x58 -> GREEK CAPITAL LETTER RHO
1377db96d56Sopenharmony_ci    '\u03a3'   #  0x59 -> GREEK CAPITAL LETTER SIGMA
1387db96d56Sopenharmony_ci    ']'        #  0x5A -> RIGHT SQUARE BRACKET
1397db96d56Sopenharmony_ci    '$'        #  0x5B -> DOLLAR SIGN
1407db96d56Sopenharmony_ci    '*'        #  0x5C -> ASTERISK
1417db96d56Sopenharmony_ci    ')'        #  0x5D -> RIGHT PARENTHESIS
1427db96d56Sopenharmony_ci    ';'        #  0x5E -> SEMICOLON
1437db96d56Sopenharmony_ci    '^'        #  0x5F -> CIRCUMFLEX ACCENT
1447db96d56Sopenharmony_ci    '-'        #  0x60 -> HYPHEN-MINUS
1457db96d56Sopenharmony_ci    '/'        #  0x61 -> SOLIDUS
1467db96d56Sopenharmony_ci    '\u03a4'   #  0x62 -> GREEK CAPITAL LETTER TAU
1477db96d56Sopenharmony_ci    '\u03a5'   #  0x63 -> GREEK CAPITAL LETTER UPSILON
1487db96d56Sopenharmony_ci    '\u03a6'   #  0x64 -> GREEK CAPITAL LETTER PHI
1497db96d56Sopenharmony_ci    '\u03a7'   #  0x65 -> GREEK CAPITAL LETTER CHI
1507db96d56Sopenharmony_ci    '\u03a8'   #  0x66 -> GREEK CAPITAL LETTER PSI
1517db96d56Sopenharmony_ci    '\u03a9'   #  0x67 -> GREEK CAPITAL LETTER OMEGA
1527db96d56Sopenharmony_ci    '\u03aa'   #  0x68 -> GREEK CAPITAL LETTER IOTA WITH DIALYTIKA
1537db96d56Sopenharmony_ci    '\u03ab'   #  0x69 -> GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA
1547db96d56Sopenharmony_ci    '|'        #  0x6A -> VERTICAL LINE
1557db96d56Sopenharmony_ci    ','        #  0x6B -> COMMA
1567db96d56Sopenharmony_ci    '%'        #  0x6C -> PERCENT SIGN
1577db96d56Sopenharmony_ci    '_'        #  0x6D -> LOW LINE
1587db96d56Sopenharmony_ci    '>'        #  0x6E -> GREATER-THAN SIGN
1597db96d56Sopenharmony_ci    '?'        #  0x6F -> QUESTION MARK
1607db96d56Sopenharmony_ci    '\xa8'     #  0x70 -> DIAERESIS
1617db96d56Sopenharmony_ci    '\u0386'   #  0x71 -> GREEK CAPITAL LETTER ALPHA WITH TONOS
1627db96d56Sopenharmony_ci    '\u0388'   #  0x72 -> GREEK CAPITAL LETTER EPSILON WITH TONOS
1637db96d56Sopenharmony_ci    '\u0389'   #  0x73 -> GREEK CAPITAL LETTER ETA WITH TONOS
1647db96d56Sopenharmony_ci    '\xa0'     #  0x74 -> NO-BREAK SPACE
1657db96d56Sopenharmony_ci    '\u038a'   #  0x75 -> GREEK CAPITAL LETTER IOTA WITH TONOS
1667db96d56Sopenharmony_ci    '\u038c'   #  0x76 -> GREEK CAPITAL LETTER OMICRON WITH TONOS
1677db96d56Sopenharmony_ci    '\u038e'   #  0x77 -> GREEK CAPITAL LETTER UPSILON WITH TONOS
1687db96d56Sopenharmony_ci    '\u038f'   #  0x78 -> GREEK CAPITAL LETTER OMEGA WITH TONOS
1697db96d56Sopenharmony_ci    '`'        #  0x79 -> GRAVE ACCENT
1707db96d56Sopenharmony_ci    ':'        #  0x7A -> COLON
1717db96d56Sopenharmony_ci    '#'        #  0x7B -> NUMBER SIGN
1727db96d56Sopenharmony_ci    '@'        #  0x7C -> COMMERCIAL AT
1737db96d56Sopenharmony_ci    "'"        #  0x7D -> APOSTROPHE
1747db96d56Sopenharmony_ci    '='        #  0x7E -> EQUALS SIGN
1757db96d56Sopenharmony_ci    '"'        #  0x7F -> QUOTATION MARK
1767db96d56Sopenharmony_ci    '\u0385'   #  0x80 -> GREEK DIALYTIKA TONOS
1777db96d56Sopenharmony_ci    'a'        #  0x81 -> LATIN SMALL LETTER A
1787db96d56Sopenharmony_ci    'b'        #  0x82 -> LATIN SMALL LETTER B
1797db96d56Sopenharmony_ci    'c'        #  0x83 -> LATIN SMALL LETTER C
1807db96d56Sopenharmony_ci    'd'        #  0x84 -> LATIN SMALL LETTER D
1817db96d56Sopenharmony_ci    'e'        #  0x85 -> LATIN SMALL LETTER E
1827db96d56Sopenharmony_ci    'f'        #  0x86 -> LATIN SMALL LETTER F
1837db96d56Sopenharmony_ci    'g'        #  0x87 -> LATIN SMALL LETTER G
1847db96d56Sopenharmony_ci    'h'        #  0x88 -> LATIN SMALL LETTER H
1857db96d56Sopenharmony_ci    'i'        #  0x89 -> LATIN SMALL LETTER I
1867db96d56Sopenharmony_ci    '\u03b1'   #  0x8A -> GREEK SMALL LETTER ALPHA
1877db96d56Sopenharmony_ci    '\u03b2'   #  0x8B -> GREEK SMALL LETTER BETA
1887db96d56Sopenharmony_ci    '\u03b3'   #  0x8C -> GREEK SMALL LETTER GAMMA
1897db96d56Sopenharmony_ci    '\u03b4'   #  0x8D -> GREEK SMALL LETTER DELTA
1907db96d56Sopenharmony_ci    '\u03b5'   #  0x8E -> GREEK SMALL LETTER EPSILON
1917db96d56Sopenharmony_ci    '\u03b6'   #  0x8F -> GREEK SMALL LETTER ZETA
1927db96d56Sopenharmony_ci    '\xb0'     #  0x90 -> DEGREE SIGN
1937db96d56Sopenharmony_ci    'j'        #  0x91 -> LATIN SMALL LETTER J
1947db96d56Sopenharmony_ci    'k'        #  0x92 -> LATIN SMALL LETTER K
1957db96d56Sopenharmony_ci    'l'        #  0x93 -> LATIN SMALL LETTER L
1967db96d56Sopenharmony_ci    'm'        #  0x94 -> LATIN SMALL LETTER M
1977db96d56Sopenharmony_ci    'n'        #  0x95 -> LATIN SMALL LETTER N
1987db96d56Sopenharmony_ci    'o'        #  0x96 -> LATIN SMALL LETTER O
1997db96d56Sopenharmony_ci    'p'        #  0x97 -> LATIN SMALL LETTER P
2007db96d56Sopenharmony_ci    'q'        #  0x98 -> LATIN SMALL LETTER Q
2017db96d56Sopenharmony_ci    'r'        #  0x99 -> LATIN SMALL LETTER R
2027db96d56Sopenharmony_ci    '\u03b7'   #  0x9A -> GREEK SMALL LETTER ETA
2037db96d56Sopenharmony_ci    '\u03b8'   #  0x9B -> GREEK SMALL LETTER THETA
2047db96d56Sopenharmony_ci    '\u03b9'   #  0x9C -> GREEK SMALL LETTER IOTA
2057db96d56Sopenharmony_ci    '\u03ba'   #  0x9D -> GREEK SMALL LETTER KAPPA
2067db96d56Sopenharmony_ci    '\u03bb'   #  0x9E -> GREEK SMALL LETTER LAMDA
2077db96d56Sopenharmony_ci    '\u03bc'   #  0x9F -> GREEK SMALL LETTER MU
2087db96d56Sopenharmony_ci    '\xb4'     #  0xA0 -> ACUTE ACCENT
2097db96d56Sopenharmony_ci    '~'        #  0xA1 -> TILDE
2107db96d56Sopenharmony_ci    's'        #  0xA2 -> LATIN SMALL LETTER S
2117db96d56Sopenharmony_ci    't'        #  0xA3 -> LATIN SMALL LETTER T
2127db96d56Sopenharmony_ci    'u'        #  0xA4 -> LATIN SMALL LETTER U
2137db96d56Sopenharmony_ci    'v'        #  0xA5 -> LATIN SMALL LETTER V
2147db96d56Sopenharmony_ci    'w'        #  0xA6 -> LATIN SMALL LETTER W
2157db96d56Sopenharmony_ci    'x'        #  0xA7 -> LATIN SMALL LETTER X
2167db96d56Sopenharmony_ci    'y'        #  0xA8 -> LATIN SMALL LETTER Y
2177db96d56Sopenharmony_ci    'z'        #  0xA9 -> LATIN SMALL LETTER Z
2187db96d56Sopenharmony_ci    '\u03bd'   #  0xAA -> GREEK SMALL LETTER NU
2197db96d56Sopenharmony_ci    '\u03be'   #  0xAB -> GREEK SMALL LETTER XI
2207db96d56Sopenharmony_ci    '\u03bf'   #  0xAC -> GREEK SMALL LETTER OMICRON
2217db96d56Sopenharmony_ci    '\u03c0'   #  0xAD -> GREEK SMALL LETTER PI
2227db96d56Sopenharmony_ci    '\u03c1'   #  0xAE -> GREEK SMALL LETTER RHO
2237db96d56Sopenharmony_ci    '\u03c3'   #  0xAF -> GREEK SMALL LETTER SIGMA
2247db96d56Sopenharmony_ci    '\xa3'     #  0xB0 -> POUND SIGN
2257db96d56Sopenharmony_ci    '\u03ac'   #  0xB1 -> GREEK SMALL LETTER ALPHA WITH TONOS
2267db96d56Sopenharmony_ci    '\u03ad'   #  0xB2 -> GREEK SMALL LETTER EPSILON WITH TONOS
2277db96d56Sopenharmony_ci    '\u03ae'   #  0xB3 -> GREEK SMALL LETTER ETA WITH TONOS
2287db96d56Sopenharmony_ci    '\u03ca'   #  0xB4 -> GREEK SMALL LETTER IOTA WITH DIALYTIKA
2297db96d56Sopenharmony_ci    '\u03af'   #  0xB5 -> GREEK SMALL LETTER IOTA WITH TONOS
2307db96d56Sopenharmony_ci    '\u03cc'   #  0xB6 -> GREEK SMALL LETTER OMICRON WITH TONOS
2317db96d56Sopenharmony_ci    '\u03cd'   #  0xB7 -> GREEK SMALL LETTER UPSILON WITH TONOS
2327db96d56Sopenharmony_ci    '\u03cb'   #  0xB8 -> GREEK SMALL LETTER UPSILON WITH DIALYTIKA
2337db96d56Sopenharmony_ci    '\u03ce'   #  0xB9 -> GREEK SMALL LETTER OMEGA WITH TONOS
2347db96d56Sopenharmony_ci    '\u03c2'   #  0xBA -> GREEK SMALL LETTER FINAL SIGMA
2357db96d56Sopenharmony_ci    '\u03c4'   #  0xBB -> GREEK SMALL LETTER TAU
2367db96d56Sopenharmony_ci    '\u03c5'   #  0xBC -> GREEK SMALL LETTER UPSILON
2377db96d56Sopenharmony_ci    '\u03c6'   #  0xBD -> GREEK SMALL LETTER PHI
2387db96d56Sopenharmony_ci    '\u03c7'   #  0xBE -> GREEK SMALL LETTER CHI
2397db96d56Sopenharmony_ci    '\u03c8'   #  0xBF -> GREEK SMALL LETTER PSI
2407db96d56Sopenharmony_ci    '{'        #  0xC0 -> LEFT CURLY BRACKET
2417db96d56Sopenharmony_ci    'A'        #  0xC1 -> LATIN CAPITAL LETTER A
2427db96d56Sopenharmony_ci    'B'        #  0xC2 -> LATIN CAPITAL LETTER B
2437db96d56Sopenharmony_ci    'C'        #  0xC3 -> LATIN CAPITAL LETTER C
2447db96d56Sopenharmony_ci    'D'        #  0xC4 -> LATIN CAPITAL LETTER D
2457db96d56Sopenharmony_ci    'E'        #  0xC5 -> LATIN CAPITAL LETTER E
2467db96d56Sopenharmony_ci    'F'        #  0xC6 -> LATIN CAPITAL LETTER F
2477db96d56Sopenharmony_ci    'G'        #  0xC7 -> LATIN CAPITAL LETTER G
2487db96d56Sopenharmony_ci    'H'        #  0xC8 -> LATIN CAPITAL LETTER H
2497db96d56Sopenharmony_ci    'I'        #  0xC9 -> LATIN CAPITAL LETTER I
2507db96d56Sopenharmony_ci    '\xad'     #  0xCA -> SOFT HYPHEN
2517db96d56Sopenharmony_ci    '\u03c9'   #  0xCB -> GREEK SMALL LETTER OMEGA
2527db96d56Sopenharmony_ci    '\u0390'   #  0xCC -> GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
2537db96d56Sopenharmony_ci    '\u03b0'   #  0xCD -> GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS
2547db96d56Sopenharmony_ci    '\u2018'   #  0xCE -> LEFT SINGLE QUOTATION MARK
2557db96d56Sopenharmony_ci    '\u2015'   #  0xCF -> HORIZONTAL BAR
2567db96d56Sopenharmony_ci    '}'        #  0xD0 -> RIGHT CURLY BRACKET
2577db96d56Sopenharmony_ci    'J'        #  0xD1 -> LATIN CAPITAL LETTER J
2587db96d56Sopenharmony_ci    'K'        #  0xD2 -> LATIN CAPITAL LETTER K
2597db96d56Sopenharmony_ci    'L'        #  0xD3 -> LATIN CAPITAL LETTER L
2607db96d56Sopenharmony_ci    'M'        #  0xD4 -> LATIN CAPITAL LETTER M
2617db96d56Sopenharmony_ci    'N'        #  0xD5 -> LATIN CAPITAL LETTER N
2627db96d56Sopenharmony_ci    'O'        #  0xD6 -> LATIN CAPITAL LETTER O
2637db96d56Sopenharmony_ci    'P'        #  0xD7 -> LATIN CAPITAL LETTER P
2647db96d56Sopenharmony_ci    'Q'        #  0xD8 -> LATIN CAPITAL LETTER Q
2657db96d56Sopenharmony_ci    'R'        #  0xD9 -> LATIN CAPITAL LETTER R
2667db96d56Sopenharmony_ci    '\xb1'     #  0xDA -> PLUS-MINUS SIGN
2677db96d56Sopenharmony_ci    '\xbd'     #  0xDB -> VULGAR FRACTION ONE HALF
2687db96d56Sopenharmony_ci    '\x1a'     #  0xDC -> SUBSTITUTE
2697db96d56Sopenharmony_ci    '\u0387'   #  0xDD -> GREEK ANO TELEIA
2707db96d56Sopenharmony_ci    '\u2019'   #  0xDE -> RIGHT SINGLE QUOTATION MARK
2717db96d56Sopenharmony_ci    '\xa6'     #  0xDF -> BROKEN BAR
2727db96d56Sopenharmony_ci    '\\'       #  0xE0 -> REVERSE SOLIDUS
2737db96d56Sopenharmony_ci    '\x1a'     #  0xE1 -> SUBSTITUTE
2747db96d56Sopenharmony_ci    'S'        #  0xE2 -> LATIN CAPITAL LETTER S
2757db96d56Sopenharmony_ci    'T'        #  0xE3 -> LATIN CAPITAL LETTER T
2767db96d56Sopenharmony_ci    'U'        #  0xE4 -> LATIN CAPITAL LETTER U
2777db96d56Sopenharmony_ci    'V'        #  0xE5 -> LATIN CAPITAL LETTER V
2787db96d56Sopenharmony_ci    'W'        #  0xE6 -> LATIN CAPITAL LETTER W
2797db96d56Sopenharmony_ci    'X'        #  0xE7 -> LATIN CAPITAL LETTER X
2807db96d56Sopenharmony_ci    'Y'        #  0xE8 -> LATIN CAPITAL LETTER Y
2817db96d56Sopenharmony_ci    'Z'        #  0xE9 -> LATIN CAPITAL LETTER Z
2827db96d56Sopenharmony_ci    '\xb2'     #  0xEA -> SUPERSCRIPT TWO
2837db96d56Sopenharmony_ci    '\xa7'     #  0xEB -> SECTION SIGN
2847db96d56Sopenharmony_ci    '\x1a'     #  0xEC -> SUBSTITUTE
2857db96d56Sopenharmony_ci    '\x1a'     #  0xED -> SUBSTITUTE
2867db96d56Sopenharmony_ci    '\xab'     #  0xEE -> LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
2877db96d56Sopenharmony_ci    '\xac'     #  0xEF -> NOT SIGN
2887db96d56Sopenharmony_ci    '0'        #  0xF0 -> DIGIT ZERO
2897db96d56Sopenharmony_ci    '1'        #  0xF1 -> DIGIT ONE
2907db96d56Sopenharmony_ci    '2'        #  0xF2 -> DIGIT TWO
2917db96d56Sopenharmony_ci    '3'        #  0xF3 -> DIGIT THREE
2927db96d56Sopenharmony_ci    '4'        #  0xF4 -> DIGIT FOUR
2937db96d56Sopenharmony_ci    '5'        #  0xF5 -> DIGIT FIVE
2947db96d56Sopenharmony_ci    '6'        #  0xF6 -> DIGIT SIX
2957db96d56Sopenharmony_ci    '7'        #  0xF7 -> DIGIT SEVEN
2967db96d56Sopenharmony_ci    '8'        #  0xF8 -> DIGIT EIGHT
2977db96d56Sopenharmony_ci    '9'        #  0xF9 -> DIGIT NINE
2987db96d56Sopenharmony_ci    '\xb3'     #  0xFA -> SUPERSCRIPT THREE
2997db96d56Sopenharmony_ci    '\xa9'     #  0xFB -> COPYRIGHT SIGN
3007db96d56Sopenharmony_ci    '\x1a'     #  0xFC -> SUBSTITUTE
3017db96d56Sopenharmony_ci    '\x1a'     #  0xFD -> SUBSTITUTE
3027db96d56Sopenharmony_ci    '\xbb'     #  0xFE -> RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
3037db96d56Sopenharmony_ci    '\x9f'     #  0xFF -> CONTROL
3047db96d56Sopenharmony_ci)
3057db96d56Sopenharmony_ci
3067db96d56Sopenharmony_ci### Encoding table
3077db96d56Sopenharmony_ciencoding_table=codecs.charmap_build(decoding_table)
308