Remove hg dep
This commit is contained in:
parent
f8977f4847
commit
25d6ae69d1
|
@ -2,9 +2,6 @@
|
||||||
path = github.com/gogits/gogs
|
path = github.com/gogits/gogs
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
code.google.com/p/mahonia =
|
|
||||||
github.com/beego/memcache =
|
|
||||||
github.com/beego/redigo =
|
|
||||||
github.com/Unknwon/cae =
|
github.com/Unknwon/cae =
|
||||||
github.com/Unknwon/com =
|
github.com/Unknwon/com =
|
||||||
github.com/Unknwon/goconfig =
|
github.com/Unknwon/goconfig =
|
||||||
|
@ -18,7 +15,6 @@ github.com/gogits/gfm =
|
||||||
github.com/gogits/git =
|
github.com/gogits/git =
|
||||||
github.com/gogits/oauth2 =
|
github.com/gogits/oauth2 =
|
||||||
github.com/juju2013/goldap =
|
github.com/juju2013/goldap =
|
||||||
github.com/johnweldon/asn1-ber =
|
|
||||||
github.com/lib/pq =
|
github.com/lib/pq =
|
||||||
github.com/macaron-contrib/cache =
|
github.com/macaron-contrib/cache =
|
||||||
github.com/macaron-contrib/captcha =
|
github.com/macaron-contrib/captcha =
|
||||||
|
@ -26,7 +22,6 @@ github.com/macaron-contrib/csrf =
|
||||||
github.com/macaron-contrib/i18n =
|
github.com/macaron-contrib/i18n =
|
||||||
github.com/macaron-contrib/session =
|
github.com/macaron-contrib/session =
|
||||||
github.com/macaron-contrib/toolbox =
|
github.com/macaron-contrib/toolbox =
|
||||||
github.com/mattn/go-sqlite3 =
|
|
||||||
github.com/nfnt/resize =
|
github.com/nfnt/resize =
|
||||||
github.com/saintfish/chardet =
|
github.com/saintfish/chardet =
|
||||||
|
|
||||||
|
|
844
modules/mahonia/8bit.go
Normal file
844
modules/mahonia/8bit.go
Normal file
|
@ -0,0 +1,844 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Converters for simple 8-bit character sets.
|
||||||
|
|
||||||
|
type eightBitInfo struct {
|
||||||
|
Name string
|
||||||
|
Aliases []string
|
||||||
|
|
||||||
|
// the character used for characters that can't be converted
|
||||||
|
SubstitutionChar byte
|
||||||
|
|
||||||
|
// a string containing all 256 characters, in order.
|
||||||
|
Repertoire string
|
||||||
|
|
||||||
|
// used to synchronize unpacking Repertoire into the conversion tables
|
||||||
|
once *sync.Once
|
||||||
|
|
||||||
|
// true if the first 128 characters are the same as US-ASCII
|
||||||
|
asciiCompatible bool
|
||||||
|
|
||||||
|
byte2char [256]rune
|
||||||
|
char2byte map[rune]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
const asciiRepertoire = "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f"
|
||||||
|
|
||||||
|
func (info *eightBitInfo) register() {
|
||||||
|
var cs Charset
|
||||||
|
cs.Name = info.Name
|
||||||
|
cs.Aliases = info.Aliases
|
||||||
|
|
||||||
|
info.once = new(sync.Once)
|
||||||
|
|
||||||
|
cs.NewDecoder = func() Decoder {
|
||||||
|
info.once.Do(func() { info.unpack() })
|
||||||
|
|
||||||
|
return func(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c = info.byte2char[p[0]]
|
||||||
|
|
||||||
|
if c == 0xfffd {
|
||||||
|
status = INVALID_CHAR
|
||||||
|
} else {
|
||||||
|
status = SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
size = 1
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
cs.NewEncoder = func() Encoder {
|
||||||
|
info.once.Do(func() { info.unpack() })
|
||||||
|
|
||||||
|
return func(p []byte, c rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if c < 128 && info.asciiCompatible {
|
||||||
|
p[0] = byte(c)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
b, ok := info.char2byte[c]
|
||||||
|
if !ok {
|
||||||
|
b = info.SubstitutionChar
|
||||||
|
status = INVALID_CHAR
|
||||||
|
} else {
|
||||||
|
status = SUCCESS
|
||||||
|
}
|
||||||
|
p[0] = b
|
||||||
|
size = 1
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
RegisterCharset(&cs)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (info *eightBitInfo) unpack() {
|
||||||
|
info.asciiCompatible = info.Repertoire[:128] == asciiRepertoire
|
||||||
|
|
||||||
|
info.char2byte = make(map[rune]byte, 256)
|
||||||
|
i := 0
|
||||||
|
for _, c := range info.Repertoire {
|
||||||
|
info.byte2char[i] = c
|
||||||
|
if c != 0xfffd {
|
||||||
|
info.char2byte[c] = byte(i)
|
||||||
|
}
|
||||||
|
i++
|
||||||
|
}
|
||||||
|
if i != 256 {
|
||||||
|
panic(fmt.Errorf("%s has only %d characters", info.Name, i))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
for i := 0; i < len(eightBitCharsets); i++ {
|
||||||
|
eightBitCharsets[i].register()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var eightBitCharsets = []eightBitInfo{
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-2",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u0104\u02d8\u0141\u00a4\u013d\u015a\u00a7\u00a8\u0160\u015e\u0164\u0179\u00ad\u017d\u017b\u00b0\u0105\u02db\u0142\u00b4\u013e\u015b\u02c7\u00b8\u0161\u015f\u0165\u017a\u02dd\u017e\u017c\u0154\u00c1\u00c2\u0102\u00c4\u0139\u0106\u00c7\u010c\u00c9\u0118\u00cb\u011a\u00cd\u00ce\u010e\u0110\u0143\u0147\u00d3\u00d4\u0150\u00d6\u00d7\u0158\u016e\u00da\u0170\u00dc\u00dd\u0162\u00df\u0155\u00e1\u00e2\u0103\u00e4\u013a\u0107\u00e7\u010d\u00e9\u0119\u00eb\u011b\u00ed\u00ee\u010f\u0111\u0144\u0148\u00f3\u00f4\u0151\u00f6\u00f7\u0159\u016f\u00fa\u0171\u00fc\u00fd\u0163\u02d9",
|
||||||
|
Aliases: []string{"ISO_8859-2:1987", "iso-ir-101", "latin2", "l2", "csISOLatin2"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-3",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u0126\u02d8\u00a3\u00a4\ufffd\u0124\u00a7\u00a8\u0130\u015e\u011e\u0134\u00ad\ufffd\u017b\u00b0\u0127\u00b2\u00b3\u00b4\u00b5\u0125\u00b7\u00b8\u0131\u015f\u011f\u0135\u00bd\ufffd\u017c\u00c0\u00c1\u00c2\ufffd\u00c4\u010a\u0108\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\ufffd\u00d1\u00d2\u00d3\u00d4\u0120\u00d6\u00d7\u011c\u00d9\u00da\u00db\u00dc\u016c\u015c\u00df\u00e0\u00e1\u00e2\ufffd\u00e4\u010b\u0109\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\ufffd\u00f1\u00f2\u00f3\u00f4\u0121\u00f6\u00f7\u011d\u00f9\u00fa\u00fb\u00fc\u016d\u015d\u02d9",
|
||||||
|
Aliases: []string{"ISO_8859-3:1988", "iso-ir-109", "latin3", "l3", "csISOLatin3"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-4",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u0104\u0138\u0156\u00a4\u0128\u013b\u00a7\u00a8\u0160\u0112\u0122\u0166\u00ad\u017d\u00af\u00b0\u0105\u02db\u0157\u00b4\u0129\u013c\u02c7\u00b8\u0161\u0113\u0123\u0167\u014a\u017e\u014b\u0100\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u012e\u010c\u00c9\u0118\u00cb\u0116\u00cd\u00ce\u012a\u0110\u0145\u014c\u0136\u00d4\u00d5\u00d6\u00d7\u00d8\u0172\u00da\u00db\u00dc\u0168\u016a\u00df\u0101\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u012f\u010d\u00e9\u0119\u00eb\u0117\u00ed\u00ee\u012b\u0111\u0146\u014d\u0137\u00f4\u00f5\u00f6\u00f7\u00f8\u0173\u00fa\u00fb\u00fc\u0169\u016b\u02d9",
|
||||||
|
Aliases: []string{"ISO_8859-4:1988", "iso-ir-110", "latin4", "l4", "csISOLatin4"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-5",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u0401\u0402\u0403\u0404\u0405\u0406\u0407\u0408\u0409\u040a\u040b\u040c\u00ad\u040e\u040f\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2116\u0451\u0452\u0453\u0454\u0455\u0456\u0457\u0458\u0459\u045a\u045b\u045c\u00a7\u045e\u045f",
|
||||||
|
Aliases: []string{"ISO_8859-5:1988", "iso-ir-144", "cyrillic", "csISOLatinCyrillic"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-6",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\ufffd\ufffd\ufffd\u00a4\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u060c\u00ad\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u061b\ufffd\ufffd\ufffd\u061f\ufffd\u0621\u0622\u0623\u0624\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\u0636\u0637\u0638\u0639\u063a\ufffd\ufffd\ufffd\ufffd\ufffd\u0640\u0641\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u064b\u064c\u064d\u064e\u064f\u0650\u0651\u0652\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd",
|
||||||
|
Aliases: []string{"ISO_8859-6:1987", "iso-ir-127", "ECMA-114", "ASMO-708", "arabic", "csISOLatinArabic"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-7",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u2018\u2019\u00a3\u20ac\u20af\u00a6\u00a7\u00a8\u00a9\u037a\u00ab\u00ac\u00ad\ufffd\u2015\u00b0\u00b1\u00b2\u00b3\u0384\u0385\u0386\u00b7\u0388\u0389\u038a\u00bb\u038c\u00bd\u038e\u038f\u0390\u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039a\u039b\u039c\u039d\u039e\u039f\u03a0\u03a1\ufffd\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03aa\u03ab\u03ac\u03ad\u03ae\u03af\u03b0\u03b1\u03b2\u03b3\u03b4\u03b5\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c2\u03c3\u03c4\u03c5\u03c6\u03c7\u03c8\u03c9\u03ca\u03cb\u03cc\u03cd\u03ce\ufffd",
|
||||||
|
Aliases: []string{"ISO_8859-7:2003", "iso-ir-126", "ELOT_928", "ECMA-118", "greek", "greek8", "csISOLatinGreek"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-8",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\ufffd\u00a2\u00a3\u00a4\u00a5\u00a6\u00a7\u00a8\u00a9\u00d7\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u00b7\u00b8\u00b9\u00f7\u00bb\u00bc\u00bd\u00be\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u2017\u05d0\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u05d9\u05da\u05db\u05dc\u05dd\u05de\u05df\u05e0\u05e1\u05e2\u05e3\u05e4\u05e5\u05e6\u05e7\u05e8\u05e9\u05ea\ufffd\ufffd\u200e\u200f\ufffd",
|
||||||
|
Aliases: []string{"ISO_8859-8:1999", "iso-ir-138", "hebrew", "csISOLatinHebrew"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-9",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u00a1\u00a2\u00a3\u00a4\u00a5\u00a6\u00a7\u00a8\u00a9\u00aa\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u00b7\u00b8\u00b9\u00ba\u00bb\u00bc\u00bd\u00be\u00bf\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u011e\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d7\u00d8\u00d9\u00da\u00db\u00dc\u0130\u015e\u00df\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u011f\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f7\u00f8\u00f9\u00fa\u00fb\u00fc\u0131\u015f\u00ff",
|
||||||
|
Aliases: []string{"ISO_8859-9:1999", "iso-ir-148", "latin5", "l5", "csISOLatin5"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-10",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u0104\u0112\u0122\u012a\u0128\u0136\u00a7\u013b\u0110\u0160\u0166\u017d\u00ad\u016a\u014a\u00b0\u0105\u0113\u0123\u012b\u0129\u0137\u00b7\u013c\u0111\u0161\u0167\u017e\u2015\u016b\u014b\u0100\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u012e\u010c\u00c9\u0118\u00cb\u0116\u00cd\u00ce\u00cf\u00d0\u0145\u014c\u00d3\u00d4\u00d5\u00d6\u0168\u00d8\u0172\u00da\u00db\u00dc\u00dd\u00de\u00df\u0101\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u012f\u010d\u00e9\u0119\u00eb\u0117\u00ed\u00ee\u00ef\u00f0\u0146\u014d\u00f3\u00f4\u00f5\u00f6\u0169\u00f8\u0173\u00fa\u00fb\u00fc\u00fd\u00fe\u0138",
|
||||||
|
Aliases: []string{"iso_8859-10:1992", "l6", "iso-ir-157", "latin6", "csISOLatin6"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-11",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd",
|
||||||
|
Aliases: []string{"iso_8859-11:2001", "Latin/Thai", "TIS-620"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-13",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u201d\u00a2\u00a3\u00a4\u201e\u00a6\u00a7\u00d8\u00a9\u0156\u00ab\u00ac\u00ad\u00ae\u00c6\u00b0\u00b1\u00b2\u00b3\u201c\u00b5\u00b6\u00b7\u00f8\u00b9\u0157\u00bb\u00bc\u00bd\u00be\u00e6\u0104\u012e\u0100\u0106\u00c4\u00c5\u0118\u0112\u010c\u00c9\u0179\u0116\u0122\u0136\u012a\u013b\u0160\u0143\u0145\u00d3\u014c\u00d5\u00d6\u00d7\u0172\u0141\u015a\u016a\u00dc\u017b\u017d\u00df\u0105\u012f\u0101\u0107\u00e4\u00e5\u0119\u0113\u010d\u00e9\u017a\u0117\u0123\u0137\u012b\u013c\u0161\u0144\u0146\u00f3\u014d\u00f5\u00f6\u00f7\u0173\u0142\u015b\u016b\u00fc\u017c\u017e\u2019",
|
||||||
|
Aliases: []string{"latin7", "Baltic Rim"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-14",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u1e02\u1e03\u00a3\u010a\u010b\u1e0a\u00a7\u1e80\u00a9\u1e82\u1e0b\u1ef2\u00ad\u00ae\u0178\u1e1e\u1e1f\u0120\u0121\u1e40\u1e41\u00b6\u1e56\u1e81\u1e57\u1e83\u1e60\u1ef3\u1e84\u1e85\u1e61\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u0174\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u1e6a\u00d8\u00d9\u00da\u00db\u00dc\u00dd\u0176\u00df\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u0175\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u1e6b\u00f8\u00f9\u00fa\u00fb\u00fc\u00fd\u0177\u00ff",
|
||||||
|
Aliases: []string{"iso-ir-199", "ISO_8859-14:1998", "latin8", "iso-celtic", "l8"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-15",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u00a1\u00a2\u00a3\u20ac\u00a5\u0160\u00a7\u0161\u00a9\u00aa\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u017d\u00b5\u00b6\u00b7\u017e\u00b9\u00ba\u00bb\u0152\u0153\u0178\u00bf\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u00d0\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d7\u00d8\u00d9\u00da\u00db\u00dc\u00dd\u00de\u00df\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u00f0\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f7\u00f8\u00f9\u00fa\u00fb\u00fc\u00fd\u00fe\u00ff",
|
||||||
|
Aliases: []string{"Latin-9"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-16",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u0104\u0105\u0141\u20ac\u201e\u0160\u00a7\u0161\u00a9\u0218\u00ab\u0179\u00ad\u017a\u017b\u00b0\u00b1\u010c\u0142\u017d\u201d\u00b6\u00b7\u017e\u010d\u0219\u00bb\u0152\u0153\u0178\u017c\u00c0\u00c1\u00c2\u0102\u00c4\u0106\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u0110\u0143\u00d2\u00d3\u00d4\u0150\u00d6\u015a\u0170\u00d9\u00da\u00db\u00dc\u0118\u021a\u00df\u00e0\u00e1\u00e2\u0103\u00e4\u0107\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u0111\u0144\u00f2\u00f3\u00f4\u0151\u00f6\u015b\u0171\u00f9\u00fa\u00fb\u00fc\u0119\u021b\u00ff",
|
||||||
|
Aliases: []string{"iso-ir-226", "ISO_8859-16:2001", "latin10", "l10"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "macos-0_2-10.2",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u00c4\u00c5\u00c7\u00c9\u00d1\u00d6\u00dc\u00e1\u00e0\u00e2\u00e4\u00e3\u00e5\u00e7\u00e9\u00e8\u00ea\u00eb\u00ed\u00ec\u00ee\u00ef\u00f1\u00f3\u00f2\u00f4\u00f6\u00f5\u00fa\u00f9\u00fb\u00fc\u2020\u00b0\u00a2\u00a3\u00a7\u2022\u00b6\u00df\u00ae\u00a9\u2122\u00b4\u00a8\u2260\u00c6\u00d8\u221e\u00b1\u2264\u2265\u00a5\u00b5\u2202\u2211\u220f\u03c0\u222b\u00aa\u00ba\u03a9\u00e6\u00f8\u00bf\u00a1\u00ac\u221a\u0192\u2248\u2206\u00ab\u00bb\u2026\u00a0\u00c0\u00c3\u00d5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\u00f7\u25ca\u00ff\u0178\u2044\u20ac\u2039\u203a\ufb01\ufb02\u2021\u00b7\u201a\u201e\u2030\u00c2\u00ca\u00c1\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00d3\u00d4\uf8ff\u00d2\u00da\u00db\u00d9\u0131\u02c6\u02dc\u00af\u02d8\u02d9\u02da\u00b8\u02dd\u02db\u02c7",
|
||||||
|
Aliases: []string{"macos-0_2-10.2", "macintosh", "mac", "csMacintosh", "windows-10000", "macroman"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "macos-6_2-10.4",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u00c4\u00b9\u00b2\u00c9\u00b3\u00d6\u00dc\u0385\u00e0\u00e2\u00e4\u0384\u00a8\u00e7\u00e9\u00e8\u00ea\u00eb\u00a3\u2122\u00ee\u00ef\u2022\u00bd\u2030\u00f4\u00f6\u00a6\u20ac\u00f9\u00fb\u00fc\u2020\u0393\u0394\u0398\u039b\u039e\u03a0\u00df\u00ae\u00a9\u03a3\u03aa\u00a7\u2260\u00b0\u00b7\u0391\u00b1\u2264\u2265\u00a5\u0392\u0395\u0396\u0397\u0399\u039a\u039c\u03a6\u03ab\u03a8\u03a9\u03ac\u039d\u00ac\u039f\u03a1\u2248\u03a4\u00ab\u00bb\u2026\u00a0\u03a5\u03a7\u0386\u0388\u0153\u2013\u2015\u201c\u201d\u2018\u2019\u00f7\u0389\u038a\u038c\u038e\u03ad\u03ae\u03af\u03cc\u038f\u03cd\u03b1\u03b2\u03c8\u03b4\u03b5\u03c6\u03b3\u03b7\u03b9\u03be\u03ba\u03bb\u03bc\u03bd\u03bf\u03c0\u03ce\u03c1\u03c3\u03c4\u03b8\u03c9\u03c2\u03c7\u03c5\u03b6\u03ca\u03cb\u0390\u03b0\u00ad",
|
||||||
|
Aliases: []string{"macos-6_2-10.4", "x-mac-greek", "windows-10006", "macgr"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "macos-7_3-10.2",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\u00b0\u0490\u00a3\u00a7\u2022\u00b6\u0406\u00ae\u00a9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\u00b1\u2264\u2265\u0456\u00b5\u0491\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\u00ac\u221a\u0192\u2248\u2206\u00ab\u00bb\u2026\u00a0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\u00f7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u20ac",
|
||||||
|
Aliases: []string{"macos-7_3-10.2", "x-mac-cyrillic", "windows-10007", "mac-cyrillic", "maccy"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "macos-29-10.2",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u00c4\u0100\u0101\u00c9\u0104\u00d6\u00dc\u00e1\u0105\u010c\u00e4\u010d\u0106\u0107\u00e9\u0179\u017a\u010e\u00ed\u010f\u0112\u0113\u0116\u00f3\u0117\u00f4\u00f6\u00f5\u00fa\u011a\u011b\u00fc\u2020\u00b0\u0118\u00a3\u00a7\u2022\u00b6\u00df\u00ae\u00a9\u2122\u0119\u00a8\u2260\u0123\u012e\u012f\u012a\u2264\u2265\u012b\u0136\u2202\u2211\u0142\u013b\u013c\u013d\u013e\u0139\u013a\u0145\u0146\u0143\u00ac\u221a\u0144\u0147\u2206\u00ab\u00bb\u2026\u00a0\u0148\u0150\u00d5\u0151\u014c\u2013\u2014\u201c\u201d\u2018\u2019\u00f7\u25ca\u014d\u0154\u0155\u0158\u2039\u203a\u0159\u0156\u0157\u0160\u201a\u201e\u0161\u015a\u015b\u00c1\u0164\u0165\u00cd\u017d\u017e\u016a\u00d3\u00d4\u016b\u016e\u00da\u016f\u0170\u0171\u0172\u0173\u00dd\u00fd\u0137\u017b\u0141\u017c\u0122\u02c7",
|
||||||
|
Aliases: []string{"macos-29-10.2", "x-mac-centraleurroman", "windows-10029", "x-mac-ce", "macce", "maccentraleurope"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "macos-35-10.2",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u00c4\u00c5\u00c7\u00c9\u00d1\u00d6\u00dc\u00e1\u00e0\u00e2\u00e4\u00e3\u00e5\u00e7\u00e9\u00e8\u00ea\u00eb\u00ed\u00ec\u00ee\u00ef\u00f1\u00f3\u00f2\u00f4\u00f6\u00f5\u00fa\u00f9\u00fb\u00fc\u2020\u00b0\u00a2\u00a3\u00a7\u2022\u00b6\u00df\u00ae\u00a9\u2122\u00b4\u00a8\u2260\u00c6\u00d8\u221e\u00b1\u2264\u2265\u00a5\u00b5\u2202\u2211\u220f\u03c0\u222b\u00aa\u00ba\u03a9\u00e6\u00f8\u00bf\u00a1\u00ac\u221a\u0192\u2248\u2206\u00ab\u00bb\u2026\u00a0\u00c0\u00c3\u00d5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\u00f7\u25ca\u00ff\u0178\u011e\u011f\u0130\u0131\u015e\u015f\u2021\u00b7\u201a\u201e\u2030\u00c2\u00ca\u00c1\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00d3\u00d4\uf8ff\u00d2\u00da\u00db\u00d9\uf8a0\u02c6\u02dc\u00af\u02d8\u02d9\u02da\u00b8\u02dd\u02db\u02c7",
|
||||||
|
Aliases: []string{"macos-35-10.2", "x-mac-turkish", "windows-10081", "mactr"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "windows-1250",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\ufffd\u201a\ufffd\u201e\u2026\u2020\u2021\ufffd\u2030\u0160\u2039\u015a\u0164\u017d\u0179\ufffd\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\u0161\u203a\u015b\u0165\u017e\u017a\u00a0\u02c7\u02d8\u0141\u00a4\u0104\u00a6\u00a7\u00a8\u00a9\u015e\u00ab\u00ac\u00ad\u00ae\u017b\u00b0\u00b1\u02db\u0142\u00b4\u00b5\u00b6\u00b7\u00b8\u0105\u015f\u00bb\u013d\u02dd\u013e\u017c\u0154\u00c1\u00c2\u0102\u00c4\u0139\u0106\u00c7\u010c\u00c9\u0118\u00cb\u011a\u00cd\u00ce\u010e\u0110\u0143\u0147\u00d3\u00d4\u0150\u00d6\u00d7\u0158\u016e\u00da\u0170\u00dc\u00dd\u0162\u00df\u0155\u00e1\u00e2\u0103\u00e4\u013a\u0107\u00e7\u010d\u00e9\u0119\u00eb\u011b\u00ed\u00ee\u010f\u0111\u0144\u0148\u00f3\u00f4\u0151\u00f6\u00f7\u0159\u016f\u00fa\u0171\u00fc\u00fd\u0163\u02d9",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "windows-1251",
|
||||||
|
Aliases: []string{"CP1251"},
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0402\u0403\u201a\u0453\u201e\u2026\u2020\u2021\u20ac\u2030\u0409\u2039\u040a\u040c\u040b\u040f\u0452\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\u0459\u203a\u045a\u045c\u045b\u045f\u00a0\u040e\u045e\u0408\u00a4\u0490\u00a6\u00a7\u0401\u00a9\u0404\u00ab\u00ac\u00ad\u00ae\u0407\u00b0\u00b1\u0406\u0456\u0491\u00b5\u00b6\u00b7\u0451\u2116\u0454\u00bb\u0458\u0405\u0455\u0457\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "windows-1252",
|
||||||
|
Aliases: []string{"cp1252"},
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\ufffd\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\ufffd\u017d\ufffd\ufffd\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\ufffd\u017e\u0178\u00a0\u00a1\u00a2\u00a3\u00a4\u00a5\u00a6\u00a7\u00a8\u00a9\u00aa\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u00b7\u00b8\u00b9\u00ba\u00bb\u00bc\u00bd\u00be\u00bf\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u00d0\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d7\u00d8\u00d9\u00da\u00db\u00dc\u00dd\u00de\u00df\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u00f0\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f7\u00f8\u00f9\u00fa\u00fb\u00fc\u00fd\u00fe\u00ff",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "windows-1253",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\ufffd\u201a\u0192\u201e\u2026\u2020\u2021\ufffd\u2030\ufffd\u2039\ufffd\ufffd\ufffd\ufffd\ufffd\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\ufffd\u203a\ufffd\ufffd\ufffd\ufffd\u00a0\u0385\u0386\u00a3\u00a4\u00a5\u00a6\u00a7\u00a8\u00a9\ufffd\u00ab\u00ac\u00ad\u00ae\u2015\u00b0\u00b1\u00b2\u00b3\u0384\u00b5\u00b6\u00b7\u0388\u0389\u038a\u00bb\u038c\u00bd\u038e\u038f\u0390\u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039a\u039b\u039c\u039d\u039e\u039f\u03a0\u03a1\ufffd\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03aa\u03ab\u03ac\u03ad\u03ae\u03af\u03b0\u03b1\u03b2\u03b3\u03b4\u03b5\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c2\u03c3\u03c4\u03c5\u03c6\u03c7\u03c8\u03c9\u03ca\u03cb\u03cc\u03cd\u03ce\ufffd",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "windows-1254",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\ufffd\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\ufffd\ufffd\ufffd\ufffd\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\ufffd\ufffd\u0178\u00a0\u00a1\u00a2\u00a3\u00a4\u00a5\u00a6\u00a7\u00a8\u00a9\u00aa\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u00b7\u00b8\u00b9\u00ba\u00bb\u00bc\u00bd\u00be\u00bf\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u011e\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d7\u00d8\u00d9\u00da\u00db\u00dc\u0130\u015e\u00df\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u011f\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f7\u00f8\u00f9\u00fa\u00fb\u00fc\u0131\u015f\u00ff",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "windows-1255",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\ufffd\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\ufffd\u2039\ufffd\ufffd\ufffd\ufffd\ufffd\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\ufffd\u203a\ufffd\ufffd\ufffd\ufffd\u00a0\u00a1\u00a2\u00a3\u20aa\u00a5\u00a6\u00a7\u00a8\u00a9\u00d7\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u00b7\u00b8\u00b9\u00f7\u00bb\u00bc\u00bd\u00be\u00bf\u05b0\u05b1\u05b2\u05b3\u05b4\u05b5\u05b6\u05b7\u05b8\u05b9\ufffd\u05bb\u05bc\u05bd\u05be\u05bf\u05c0\u05c1\u05c2\u05c3\u05f0\u05f1\u05f2\u05f3\u05f4\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u05d0\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u05d9\u05da\u05db\u05dc\u05dd\u05de\u05df\u05e0\u05e1\u05e2\u05e3\u05e4\u05e5\u05e6\u05e7\u05e8\u05e9\u05ea\ufffd\ufffd\u200e\u200f\ufffd",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "windows-1256",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\u067e\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0679\u2039\u0152\u0686\u0698\u0688\u06af\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u06a9\u2122\u0691\u203a\u0153\u200c\u200d\u06ba\u00a0\u060c\u00a2\u00a3\u00a4\u00a5\u00a6\u00a7\u00a8\u00a9\u06be\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u00b7\u00b8\u00b9\u061b\u00bb\u00bc\u00bd\u00be\u061f\u06c1\u0621\u0622\u0623\u0624\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\u0636\u00d7\u0637\u0638\u0639\u063a\u0640\u0641\u0642\u0643\u00e0\u0644\u00e2\u0645\u0646\u0647\u0648\u00e7\u00e8\u00e9\u00ea\u00eb\u0649\u064a\u00ee\u00ef\u064b\u064c\u064d\u064e\u00f4\u064f\u0650\u00f7\u0651\u00f9\u0652\u00fb\u00fc\u200e\u200f\u06d2",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "windows-1257",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\ufffd\u201a\ufffd\u201e\u2026\u2020\u2021\ufffd\u2030\ufffd\u2039\ufffd\u00a8\u02c7\u00b8\ufffd\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\ufffd\u203a\ufffd\u00af\u02db\ufffd\u00a0\ufffd\u00a2\u00a3\u00a4\ufffd\u00a6\u00a7\u00d8\u00a9\u0156\u00ab\u00ac\u00ad\u00ae\u00c6\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u00b7\u00f8\u00b9\u0157\u00bb\u00bc\u00bd\u00be\u00e6\u0104\u012e\u0100\u0106\u00c4\u00c5\u0118\u0112\u010c\u00c9\u0179\u0116\u0122\u0136\u012a\u013b\u0160\u0143\u0145\u00d3\u014c\u00d5\u00d6\u00d7\u0172\u0141\u015a\u016a\u00dc\u017b\u017d\u00df\u0105\u012f\u0101\u0107\u00e4\u00e5\u0119\u0113\u010d\u00e9\u017a\u0117\u0123\u0137\u012b\u013c\u0161\u0144\u0146\u00f3\u014d\u00f5\u00f6\u00f7\u0173\u0142\u015b\u016b\u00fc\u017c\u017e\u02d9",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "windows-1258",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\ufffd\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\ufffd\u2039\u0152\ufffd\ufffd\ufffd\ufffd\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\ufffd\u203a\u0153\ufffd\ufffd\u0178\u00a0\u00a1\u00a2\u00a3\u00a4\u00a5\u00a6\u00a7\u00a8\u00a9\u00aa\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u00b7\u00b8\u00b9\u00ba\u00bb\u00bc\u00bd\u00be\u00bf\u00c0\u00c1\u00c2\u0102\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u0300\u00cd\u00ce\u00cf\u0110\u00d1\u0309\u00d3\u00d4\u01a0\u00d6\u00d7\u00d8\u00d9\u00da\u00db\u00dc\u01af\u0303\u00df\u00e0\u00e1\u00e2\u0103\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u0301\u00ed\u00ee\u00ef\u0111\u00f1\u0323\u00f3\u00f4\u01a1\u00f6\u00f7\u00f8\u00f9\u00fa\u00fb\u00fc\u01b0\u20ab\u00ff",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "windows-874",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\ufffd\ufffd\ufffd\ufffd\u2026\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u00a0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM037",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1\u00a2.<(+|&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df!$*);\u00ac-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u00a4\u00b5~stuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae^\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be[]\u00af\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"cp037", "ebcdic-cp-us", "ebcdic-cp-ca", "ebcdic-cp-wt", "ebcdic-cp-nl", "csIBM037"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-273_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2{\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1\u00c4.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec~\u00dc$*);^-/\u00c2[\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00f6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:#\u00a7'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u00a4\u00b5\u00dfstuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9@\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e4ABCDEFGHI\u00ad\u00f4\u00a6\u00f2\u00f3\u00f5\u00fcJKLMNOPQR\u00b9\u00fb}\u00f9\u00fa\u00ff\u00d6\u00f7STUVWXYZ\u00b2\u00d4\\\u00d2\u00d3\u00d50123456789\u00b3\u00db]\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-273_P100-1995", "ibm-273", "IBM273", "CP273", "csIBM273", "ebcdic-de", "273"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-277_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3}\u00e7\u00f1#.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df\u00a4\u00c5*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3$\u00c7\u00d1\u00f8,%_>?\u00a6\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:\u00c6\u00d8'=\"@abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba{\u00b8[]\u00b5\u00fcstuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e6ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5\u00e5JKLMNOPQR\u00b9\u00fb~\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-277_P100-1995", "ibm-277", "IBM277", "cp277", "EBCDIC-CP-DK", "EBCDIC-CP-NO", "csIBM277", "ebcdic-dk", "277"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-278_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2{\u00e0\u00e1\u00e3}\u00e7\u00f1\u00a7.<(+!&`\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df\u00a4\u00c5*);^-/\u00c2#\u00c0\u00c1\u00c3$\u00c7\u00d1\u00f6,%_>?\u00f8\\\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00e9:\u00c4\u00d6'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6]\u00b5\u00fcstuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9[\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e4ABCDEFGHI\u00ad\u00f4\u00a6\u00f2\u00f3\u00f5\u00e5JKLMNOPQR\u00b9\u00fb~\u00f9\u00fa\u00ff\u00c9\u00f7STUVWXYZ\u00b2\u00d4@\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-278_P100-1995", "ibm-278", "IBM278", "cp278", "ebcdic-cp-fi", "ebcdic-cp-se", "csIBM278", "ebcdic-sv", "278"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-280_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4{\u00e1\u00e3\u00e5\\\u00f1\u00b0.<(+!&]\u00ea\u00eb}\u00ed\u00ee\u00ef~\u00df\u00e9$*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00f2,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00f9:\u00a3\u00a7'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1[jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u00a4\u00b5\u00ecstuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2#\u00a5\u00b7\u00a9@\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e0ABCDEFGHI\u00ad\u00f4\u00f6\u00a6\u00f3\u00f5\u00e8JKLMNOPQR\u00b9\u00fb\u00fc`\u00fa\u00ff\u00e7\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-280_P100-1995", "ibm-280", "IBM280", "CP280", "ebcdic-cp-it", "csIBM280", "280"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-284_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00a6[.<(+|&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df]$*);\u00ac-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7#\u00f1,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:\u00d1@'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u00a4\u00b5\u00a8stuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be^!\u00af~\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-284_P100-1995", "ibm-284", "IBM284", "CP284", "ebcdic-cp-es", "csIBM284", "cpibm284", "284"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-285_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1$.<(+|&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df!\u00a3*);\u00ac-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u00a4\u00b5\u00afstuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2[\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be^]~\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-285_P100-1995", "ibm-285", "IBM285", "CP285", "ebcdic-cp-gb", "csIBM285", "cpibm285", "ebcdic-gb", "285"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-290_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \uff61\uff62\uff63\uff64\uff65\uff66\uff67\uff68\uff69\u00a3.<(+|&\uff6a\uff6b\uff6c\uff6d\uff6e\uff6f\ufffd\uff70\ufffd!\u00a5*);\u00ac-/abcdefgh\ufffd,%_>?[ijklmnop`:#@'=\"]\uff71\uff72\uff73\uff74\uff75\uff76\uff77\uff78\uff79\uff7aq\uff7b\uff7c\uff7d\uff7e\uff7f\uff80\uff81\uff82\uff83\uff84\uff85\uff86\uff87\uff88\uff89r\ufffd\uff8a\uff8b\uff8c~\u203e\uff8d\uff8e\uff8f\uff90\uff91\uff92\uff93\uff94\uff95s\uff96\uff97\uff98\uff99^\u00a2\\tuvwxyz\uff9a\uff9b\uff9c\uff9d\uff9e\uff9f{ABCDEFGHI\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd}JKLMNOPQR\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd$\ufffdSTUVWXYZ\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd0123456789\ufffd\ufffd\ufffd\ufffd\ufffd\u009f",
|
||||||
|
Aliases: []string{"ibm-290_P100-1995", "ibm-290", "IBM290", "cp290", "EBCDIC-JP-kana", "csIBM290"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-297_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4@\u00e1\u00e3\u00e5\\\u00f1\u00b0.<(+!&{\u00ea\u00eb}\u00ed\u00ee\u00ef\u00ec\u00df\u00a7$*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00f9,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00b5:\u00a3\u00e0'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1[jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u00a4`\u00a8stuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2#\u00a5\u00b7\u00a9]\u00b6\u00bc\u00bd\u00be\u00ac|\u00af~\u00b4\u00d7\u00e9ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5\u00e8JKLMNOPQR\u00b9\u00fb\u00fc\u00a6\u00fa\u00ff\u00e7\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-297_P100-1995", "ibm-297", "IBM297", "cp297", "ebcdic-cp-fr", "csIBM297", "cpibm297", "297"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-420_X120-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0651\ufe7d\u0640\u200b\u0621\u0622\ufe82\u0623\u00a2.<(+|&\ufe84\u0624\ufffd\ufffd\u0626\u0627\ufe8e\u0628\ufe91!$*);\u00ac-/\u0629\u062a\ufe97\u062b\ufe9b\u062c\ufe9f\u062d\u00a6,%_>?\ufea3\u062e\ufea7\u062f\u0630\u0631\u0632\u0633\ufeb3\u060c:#@'=\"\u0634abcdefghi\ufeb7\u0635\ufebb\u0636\ufebf\u0637\u0638jklmnopqr\u0639\ufeca\ufecb\ufecc\u063a\ufece\ufecf\u00f7stuvwxyz\ufed0\u0641\ufed3\u0642\ufed7\u0643\ufedb\u0644\ufef5\ufef6\ufef7\ufef8\ufffd\ufffd\ufefb\ufefc\ufedf\u0645\ufee3\u0646\ufee7\u0647\u061bABCDEFGHI\u00ad\ufeeb\ufffd\ufeec\ufffd\u0648\u061fJKLMNOPQR\u0649\ufef0\u064a\ufef2\ufef3\u0660\u00d7\ufffdSTUVWXYZ\u0661\u0662\ufffd\u0663\u0664\u06650123456789\ufffd\u0666\u0667\u0668\u0669\u009f",
|
||||||
|
Aliases: []string{"ibm-420_X120-1999", "ibm-420", "IBM420", "cp420", "ebcdic-cp-ar1", "csIBM420", "420"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM424",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u05d0\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u00a2.<(+|&\u05d9\u05da\u05db\u05dc\u05dd\u05de\u05df\u05e0\u05e1!$*);\u00ac-/\u05e2\u05e3\u05e4\u05e5\u05e6\u05e7\u05e8\u05e9\u00a6,%_>?\ufffd\u05ea\ufffd\ufffd\u00a0\ufffd\ufffd\ufffd\u2017`:#@'=\"\ufffdabcdefghi\u00ab\u00bb\ufffd\ufffd\ufffd\u00b1\u00b0jklmnopqr\ufffd\ufffd\ufffd\u00b8\ufffd\u00a4\u00b5~stuvwxyz\ufffd\ufffd\ufffd\ufffd\ufffd\u00ae^\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be[]\u00af\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\ufffd\ufffd\ufffd\ufffd\ufffd}JKLMNOPQR\u00b9\ufffd\ufffd\ufffd\ufffd\ufffd\\\u00f7STUVWXYZ\u00b2\ufffd\ufffd\ufffd\ufffd\ufffd0123456789\u00b3\ufffd\ufffd\ufffd\ufffd\u009f",
|
||||||
|
Aliases: []string{"cp424", "ebcdic-cp-he", "csIBM424"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM437",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u00c7\u00fc\u00e9\u00e2\u00e4\u00e0\u00e5\u00e7\u00ea\u00eb\u00e8\u00ef\u00ee\u00ec\u00c4\u00c5\u00c9\u00e6\u00c6\u00f4\u00f6\u00f2\u00fb\u00f9\u00ff\u00d6\u00dc\u00a2\u00a3\u00a5\u20a7\u0192\u00e1\u00ed\u00f3\u00fa\u00f1\u00d1\u00aa\u00ba\u00bf\u2310\u00ac\u00bd\u00bc\u00a1\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\u00df\u0393\u03c0\u03a3\u03c3\u00b5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\u00b1\u2265\u2264\u2320\u2321\u00f7\u2248\u00b0\u2219\u00b7\u221a\u207f\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"cp437", "437", "csPC8CodePage437"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM500",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1[.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df]$*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u00a4\u00b5~stuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"CP500", "ebcdic-cp-be", "ebcdic-cp-ch", "csIBM500"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-720_P100-1997",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\ufffd\ufffd\u00e9\u00e2\ufffd\u00e0\ufffd\u00e7\u00ea\u00eb\u00e8\u00ef\u00ee\ufffd\ufffd\ufffd\ufffd\u0651\u0652\u00f4\u00a4\u0640\u00fb\u00f9\u0621\u0622\u0623\u0624\u00a3\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0636\u0637\u0638\u0639\u063a\u0641\u00b5\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u2261\u064b\u064c\u064d\u064e\u064f\u0650\u2248\u00b0\u2219\u00b7\u221a\u207f\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-720_P100-1997", "ibm-720", "windows-720", "DOS-720"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM737",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039a\u039b\u039c\u039d\u039e\u039f\u03a0\u03a1\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03b1\u03b2\u03b3\u03b4\u03b5\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u03c2\u03c4\u03c5\u03c6\u03c7\u03c8\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03c9\u03ac\u03ad\u03ae\u03ca\u03af\u03cc\u03cd\u03cb\u03ce\u0386\u0388\u0389\u038a\u038c\u038e\u038f\u00b1\u2265\u2264\u03aa\u03ab\u00f7\u2248\u00b0\u2219\u00b7\u221a\u207f\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"cp737", "cp737_DOSGreek"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM775",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0106\u00fc\u00e9\u0101\u00e4\u0123\u00e5\u0107\u0142\u0113\u0156\u0157\u012b\u0179\u00c4\u00c5\u00c9\u00e6\u00c6\u014d\u00f6\u0122\u00a2\u015a\u015b\u00d6\u00dc\u00f8\u00a3\u00d8\u00d7\u00a4\u0100\u012a\u00f3\u017b\u017c\u017a\u201d\u00a6\u00a9\u00ae\u00ac\u00bd\u00bc\u0141\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u0104\u010c\u0118\u0116\u2563\u2551\u2557\u255d\u012e\u0160\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u0172\u016a\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u017d\u0105\u010d\u0119\u0117\u012f\u0161\u0173\u016b\u017e\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u00d3\u00df\u014c\u0143\u00f5\u00d5\u00b5\u0144\u0136\u0137\u013b\u013c\u0146\u0112\u0145\u2019\u00ad\u00b1\u201c\u00be\u00b6\u00a7\u00f7\u201e\u00b0\u2219\u00b7\u00b9\u00b3\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"cp775", "csPC775Baltic"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-803_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd$.<(+|\u05d0\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd!\u00a2*);\u00ac-/\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd,%_>?\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd:#@'=\"\ufffd\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u05d9\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u05da\u05db\u05dc\u05dd\u05de\u05df\u05e0\u05e1\u05e2\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u05e3\u05e4\u05e5\u05e6\u05e7\u05e8\u05e9\u05ea\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdABCDEFGHI\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdJKLMNOPQR\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdSTUVWXYZ\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd0123456789\ufffd\ufffd\ufffd\ufffd\ufffd\u009f",
|
||||||
|
Aliases: []string{"ibm-803_P100-1999", "ibm-803", "cp803"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-838_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07[\u00a2.<(+|&\u0e48\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e]!$*);\u00ac-/\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15^\u00a6,%_>?\u0e3f\u0e4e\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c`:#@'=\"\u0e4fabcdefghi\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e5ajklmnopqr\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e5b~stuvwxyz\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34{ABCDEFGHI\u0e49\u0e35\u0e36\u0e37\u0e38\u0e39}JKLMNOPQR\u0e3a\u0e40\u0e41\u0e42\u0e43\u0e44\\\u0e4aSTUVWXYZ\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a0123456789\u0e4b\u0e4c\u0e4d\u0e4b\u0e4c\u009f",
|
||||||
|
Aliases: []string{"ibm-838_P100-1995", "ibm-838", "IBM838", "IBM-Thai", "csIBMThai", "cp838", "838", "ibm-9030"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM850",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u00c7\u00fc\u00e9\u00e2\u00e4\u00e0\u00e5\u00e7\u00ea\u00eb\u00e8\u00ef\u00ee\u00ec\u00c4\u00c5\u00c9\u00e6\u00c6\u00f4\u00f6\u00f2\u00fb\u00f9\u00ff\u00d6\u00dc\u00f8\u00a3\u00d8\u00d7\u0192\u00e1\u00ed\u00f3\u00fa\u00f1\u00d1\u00aa\u00ba\u00bf\u00ae\u00ac\u00bd\u00bc\u00a1\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u00c1\u00c2\u00c0\u00a9\u2563\u2551\u2557\u255d\u00a2\u00a5\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u00e3\u00c3\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u00a4\u00f0\u00d0\u00ca\u00cb\u00c8\u0131\u00cd\u00ce\u00cf\u2518\u250c\u2588\u2584\u00a6\u00cc\u2580\u00d3\u00df\u00d4\u00d2\u00f5\u00d5\u00b5\u00fe\u00de\u00da\u00db\u00d9\u00fd\u00dd\u00af\u00b4\u00ad\u00b1\u2017\u00be\u00b6\u00a7\u00f7\u00b8\u00b0\u00a8\u00b7\u00b9\u00b3\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"cp850", "850", "csPC850Multilingual"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-851_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u00c7\u00fc\u00e9\u00e2\u00e4\u00e0\u0386\u00e7\u00ea\u00eb\u00e8\u00ef\u00ee\u0388\u00c4\u0389\u038a\ufffd\u038c\u00f4\u00f6\u038e\u00fb\u00f9\u038f\u00d6\u00dc\u03ac\u00a3\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03cd\u0391\u0392\u0393\u0394\u0395\u0396\u0397\u00bd\u0398\u0399\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u039a\u039b\u039c\u039d\u2563\u2551\u2557\u255d\u039e\u039f\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u03a0\u03a1\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03b1\u03b2\u03b3\u2518\u250c\u2588\u2584\u03b4\u03b5\u2580\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u03c2\u03c4\u00b4\u00ad\u00b1\u03c5\u03c6\u03c7\u00a7\u03c8\u00b8\u00b0\u00a8\u03c9\u03cb\u03b0\u03ce\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-851_P100-1995", "ibm-851", "IBM851", "cp851", "851", "csPC851"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM852",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u00c7\u00fc\u00e9\u00e2\u00e4\u016f\u0107\u00e7\u0142\u00eb\u0150\u0151\u00ee\u0179\u00c4\u0106\u00c9\u0139\u013a\u00f4\u00f6\u013d\u013e\u015a\u015b\u00d6\u00dc\u0164\u0165\u0141\u00d7\u010d\u00e1\u00ed\u00f3\u00fa\u0104\u0105\u017d\u017e\u0118\u0119\u00ac\u017a\u010c\u015f\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u00c1\u00c2\u011a\u015e\u2563\u2551\u2557\u255d\u017b\u017c\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u0102\u0103\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u00a4\u0111\u0110\u010e\u00cb\u010f\u0147\u00cd\u00ce\u011b\u2518\u250c\u2588\u2584\u0162\u016e\u2580\u00d3\u00df\u00d4\u0143\u0144\u0148\u0160\u0161\u0154\u00da\u0155\u0170\u00fd\u00dd\u0163\u00b4\u00ad\u02dd\u02db\u02c7\u02d8\u00a7\u00f7\u00b8\u00b0\u00a8\u02d9\u0171\u0158\u0159\u25a0\u00a0",
|
||||||
|
Aliases: []string{"cp852", "852", "csPCp852"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM855",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0452\u0402\u0453\u0403\u0451\u0401\u0454\u0404\u0455\u0405\u0456\u0406\u0457\u0407\u0458\u0408\u0459\u0409\u045a\u040a\u045b\u040b\u045c\u040c\u045e\u040e\u045f\u040f\u044e\u042e\u044a\u042a\u0430\u0410\u0431\u0411\u0446\u0426\u0434\u0414\u0435\u0415\u0444\u0424\u0433\u0413\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u0445\u0425\u0438\u0418\u2563\u2551\u2557\u255d\u0439\u0419\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u043a\u041a\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u00a4\u043b\u041b\u043c\u041c\u043d\u041d\u043e\u041e\u043f\u2518\u250c\u2588\u2584\u041f\u044f\u2580\u042f\u0440\u0420\u0441\u0421\u0442\u0422\u0443\u0423\u0436\u0416\u0432\u0412\u044c\u042c\u2116\u00ad\u044b\u042b\u0437\u0417\u0448\u0428\u044d\u042d\u0449\u0429\u0447\u0427\u00a7\u25a0\u00a0",
|
||||||
|
Aliases: []string{"cp855", "855", "csIBM855"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM856",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u05d0\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u05d9\u05da\u05db\u05dc\u05dd\u05de\u05df\u05e0\u05e1\u05e2\u05e3\u05e4\u05e5\u05e6\u05e7\u05e8\u05e9\u05ea\ufffd\u00a3\ufffd\u00d7\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u00ae\u00ac\u00bd\u00bc\ufffd\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\ufffd\ufffd\ufffd\u00a9\u2563\u2551\u2557\u255d\u00a2\u00a5\u2510\u2514\u2534\u252c\u251c\u2500\u253c\ufffd\ufffd\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u00a4\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u2518\u250c\u2588\u2584\u00a6\ufffd\u2580\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u00b5\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u00af\u00b4\u00ad\u00b1\u2017\u00be\u00b6\u00a7\u00f7\u00b8\u00b0\u00a8\u00b7\u00b9\u00b3\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"cp856", "cp856_Hebrew_PC"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-857_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u00c7\u00fc\u00e9\u00e2\u00e4\u00e0\u00e5\u00e7\u00ea\u00eb\u00e8\u00ef\u00ee\u0131\u00c4\u00c5\u00c9\u00e6\u00c6\u00f4\u00f6\u00f2\u00fb\u00f9\u0130\u00d6\u00dc\u00f8\u00a3\u00d8\u015e\u015f\u00e1\u00ed\u00f3\u00fa\u00f1\u00d1\u011e\u011f\u00bf\u00ae\u00ac\u00bd\u00bc\u00a1\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u00c1\u00c2\u00c0\u00a9\u2563\u2551\u2557\u255d\u00a2\u00a5\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u00e3\u00c3\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u00a4\u00ba\u00aa\u00ca\u00cb\u00c8\ufffd\u00cd\u00ce\u00cf\u2518\u250c\u2588\u2584\u00a6\u00cc\u2580\u00d3\u00df\u00d4\u00d2\u00f5\u00d5\u00b5\ufffd\u00d7\u00da\u00db\u00d9\u00ec\u00ff\u00af\u00b4\u00ad\u00b1\ufffd\u00be\u00b6\u00a7\u00f7\u00b8\u00b0\u00a8\u00b7\u00b9\u00b3\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-857_P100-1995", "ibm-857", "IBM857", "cp857", "857", "csIBM857", "windows-857"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-858_P100-1997",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u00c7\u00fc\u00e9\u00e2\u00e4\u00e0\u00e5\u00e7\u00ea\u00eb\u00e8\u00ef\u00ee\u00ec\u00c4\u00c5\u00c9\u00e6\u00c6\u00f4\u00f6\u00f2\u00fb\u00f9\u00ff\u00d6\u00dc\u00f8\u00a3\u00d8\u00d7\u0192\u00e1\u00ed\u00f3\u00fa\u00f1\u00d1\u00aa\u00ba\u00bf\u00ae\u00ac\u00bd\u00bc\u00a1\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u00c1\u00c2\u00c0\u00a9\u2563\u2551\u2557\u255d\u00a2\u00a5\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u00e3\u00c3\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u00a4\u00f0\u00d0\u00ca\u00cb\u00c8\u20ac\u00cd\u00ce\u00cf\u2518\u250c\u2588\u2584\u00a6\u00cc\u2580\u00d3\u00df\u00d4\u00d2\u00f5\u00d5\u00b5\u00fe\u00de\u00da\u00db\u00d9\u00fd\u00dd\u00af\u00b4\u00ad\u00b1\u2017\u00be\u00b6\u00a7\u00f7\u00b8\u00b0\u00a8\u00b7\u00b9\u00b3\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-858_P100-1997", "ibm-858", "IBM00858", "CCSID00858", "CP00858", "PC-Multilingual-850+euro", "cp858", "windows-858"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-860_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u00c7\u00fc\u00e9\u00e2\u00e3\u00e0\u00c1\u00e7\u00ea\u00ca\u00e8\u00cd\u00d4\u00ec\u00c3\u00c2\u00c9\u00c0\u00c8\u00f4\u00f5\u00f2\u00da\u00f9\u00cc\u00d5\u00dc\u00a2\u00a3\u00d9\u20a7\u00d3\u00e1\u00ed\u00f3\u00fa\u00f1\u00d1\u00aa\u00ba\u00bf\u00d2\u00ac\u00bd\u00bc\u00a1\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\u00df\u0393\u03c0\u03a3\u03c3\u03bc\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\u00b1\u2265\u2264\u2320\u2321\u00f7\u2248\u00b0\u2219\u00b7\u221a\u207f\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-860_P100-1995", "ibm-860", "IBM860", "cp860", "860", "csIBM860"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-861_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u00c7\u00fc\u00e9\u00e2\u00e4\u00e0\u00e5\u00e7\u00ea\u00eb\u00e8\u00d0\u00f0\u00de\u00c4\u00c5\u00c9\u00e6\u00c6\u00f4\u00f6\u00fe\u00fb\u00dd\u00fd\u00d6\u00dc\u00f8\u00a3\u00d8\u20a7\u0192\u00e1\u00ed\u00f3\u00fa\u00c1\u00cd\u00d3\u00da\u00bf\u2310\u00ac\u00bd\u00bc\u00a1\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\u00df\u0393\u03c0\u03a3\u03c3\u03bc\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\u00b1\u2265\u2264\u2320\u2321\u00f7\u2248\u00b0\u2219\u00b7\u221a\u207f\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-861_P100-1995", "ibm-861", "IBM861", "cp861", "861", "cp-is", "csIBM861", "windows-861"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-862_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u05d0\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u05d9\u05da\u05db\u05dc\u05dd\u05de\u05df\u05e0\u05e1\u05e2\u05e3\u05e4\u05e5\u05e6\u05e7\u05e8\u05e9\u05ea\u00a2\u00a3\u00a5\u20a7\u0192\u00e1\u00ed\u00f3\u00fa\u00f1\u00d1\u00aa\u00ba\u00bf\u2310\u00ac\u00bd\u00bc\u00a1\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\u00df\u0393\u03c0\u03a3\u03c3\u03bc\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\u00b1\u2265\u2264\u2320\u2321\u00f7\u2248\u00b0\u2219\u00b7\u221a\u207f\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-862_P100-1995", "ibm-862", "IBM862", "cp862", "862", "csPC862LatinHebrew", "DOS-862", "windows-862"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-863_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u00c7\u00fc\u00e9\u00e2\u00c2\u00e0\u00b6\u00e7\u00ea\u00eb\u00e8\u00ef\u00ee\u2017\u00c0\u00a7\u00c9\u00c8\u00ca\u00f4\u00cb\u00cf\u00fb\u00f9\u00a4\u00d4\u00dc\u00a2\u00a3\u00d9\u00db\u0192\u00a6\u00b4\u00f3\u00fa\u00a8\u00b8\u00b3\u00af\u00ce\u2310\u00ac\u00bd\u00bc\u00be\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\u00df\u0393\u03c0\u03a3\u03c3\u03bc\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\u00b1\u2265\u2264\u2320\u2321\u00f7\u2248\u00b0\u2219\u00b7\u221a\u207f\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-863_P100-1995", "ibm-863", "IBM863", "cp863", "863", "csIBM863"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-864_X110-1999",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u00b0\u00b7\u2219\u221a\u2592\u2500\u2502\u253c\u2524\u252c\u251c\u2534\u2510\u250c\u2514\u2518\u03b2\u221e\u03c6\u00b1\u00bd\u00bc\u2248\u00ab\u00bb\ufef7\ufef8\ufffd\ufffd\ufefb\ufefc\u200b\u00a0\u00ad\ufe82\u00a3\u00a4\ufe84\ufffd\ufffd\ufe8e\ufe8f\ufe95\ufe99\u060c\ufe9d\ufea1\ufea5\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufed1\u061b\ufeb1\ufeb5\ufeb9\u061f\u00a2\ufe80\ufe81\ufe83\ufe85\ufeca\ufe8b\ufe8d\ufe91\ufe93\ufe97\ufe9b\ufe9f\ufea3\ufea7\ufea9\ufeab\ufead\ufeaf\ufeb3\ufeb7\ufebb\ufebf\ufec3\ufec7\ufecb\ufecf\u00a6\u00ac\u00f7\u00d7\ufec9\u0640\ufed3\ufed7\ufedb\ufedf\ufee3\ufee7\ufeeb\ufeed\ufeef\ufef3\ufebd\ufecc\ufece\ufecd\ufee1\ufe7d\ufe7c\ufee5\ufee9\ufeec\ufef0\ufef2\ufed0\ufed5\ufef5\ufef6\ufedd\ufed9\ufef1\u25a0\ufffd",
|
||||||
|
Aliases: []string{"ibm-864_X110-1999", "ibm-864", "IBM864", "cp864", "csIBM864"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-865_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u00c7\u00fc\u00e9\u00e2\u00e4\u00e0\u00e5\u00e7\u00ea\u00eb\u00e8\u00ef\u00ee\u00ec\u00c4\u00c5\u00c9\u00e6\u00c6\u00f4\u00f6\u00f2\u00fb\u00f9\u00ff\u00d6\u00dc\u00f8\u00a3\u00d8\u20a7\u0192\u00e1\u00ed\u00f3\u00fa\u00f1\u00d1\u00aa\u00ba\u00bf\u2310\u00ac\u00bd\u00bc\u00a1\u00ab\u00a4\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\u00df\u0393\u03c0\u03a3\u03c3\u03bc\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\u00b1\u2265\u2264\u2320\u2321\u00f7\u2248\u00b0\u2219\u00b7\u221a\u207f\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-865_P100-1995", "ibm-865", "IBM865", "cp865", "865", "csIBM865"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "IBM866",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\u00b0\u2219\u00b7\u221a\u2116\u00a4\u25a0\u00a0",
|
||||||
|
Aliases: []string{"cp866", "866", "csIBM866"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-867_P100-1998",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u05d0\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u05d9\u05da\u05db\u05dc\u05dd\u05de\u05df\u05e0\u05e1\u05e2\u05e3\u05e4\u05e5\u05e6\u05e7\u05e8\u05e9\u05ea\u00a2\u00a3\u00a5\ufffd\u20aa\u200e\u200f\u202a\u202b\u202d\u202e\u202c\ufffd\ufffd\u2310\u00ac\u00bd\u00bc\u20ac\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\u00df\u0393\u03c0\u03a3\u03c3\u03bc\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\u00b1\u2265\u2264\u2320\u2321\u00f7\u2248\u00b0\u2219\u00b7\u221a\u207f\u00b2\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-867_P100-1998", "ibm-867"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-868_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u06f0\u06f1\u06f2\u06f3\u06f4\u06f5\u06f6\u06f7\u06f8\u06f9\u060c\u061b\u061f\ufe81\ufe8d\ufe8e\uf8fb\ufe8f\ufe91\ufb56\ufb58\ufe93\ufe95\ufe97\ufb66\ufb68\ufe99\ufe9b\ufe9d\ufe9f\ufb7a\ufb7c\ufea1\ufea3\ufea5\ufea7\ufea9\ufb88\ufeab\ufead\ufb8c\ufeaf\ufb8a\ufeb1\ufeb3\ufeb5\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\ufeb7\ufeb9\ufebb\ufebd\u2563\u2551\u2557\u255d\ufebf\ufec3\u2510\u2514\u2534\u252c\u251c\u2500\u253c\ufec7\ufec9\u255a\u2554\u2569\u2566\u2560\u2550\u256c\ufeca\ufecb\ufecc\ufecd\ufece\ufecf\ufed0\ufed1\ufed3\ufed5\u2518\u250c\u2588\u2584\ufed7\ufb8e\u2580\ufedb\ufb92\ufb94\ufedd\ufedf\ufee0\ufee1\ufee3\ufb9e\ufee5\ufee7\ufe85\ufeed\ufba6\ufba8\ufba9\u00ad\ufbaa\ufe80\ufe89\ufe8a\ufe8b\ufbfc\ufbfd\ufbfe\ufbb0\ufbae\ufe7c\ufe7d\ufffd\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-868_P100-1995", "ibm-868", "IBM868", "CP868", "868", "csIBM868", "cp-ar"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-869_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0386\ufffd\u0387\u00ac\u00a6\u2018\u2019\u0388\u2015\u0389\u038a\u03aa\u038c\ufffd\ufffd\u038e\u03ab\u00a9\u038f\u00b2\u00b3\u03ac\u00a3\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03cd\u0391\u0392\u0393\u0394\u0395\u0396\u0397\u00bd\u0398\u0399\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\u039a\u039b\u039c\u039d\u2563\u2551\u2557\u255d\u039e\u039f\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u03a0\u03a1\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03b1\u03b2\u03b3\u2518\u250c\u2588\u2584\u03b4\u03b5\u2580\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u03c2\u03c4\u00b4\u00ad\u00b1\u03c5\u03c6\u03c7\u00a7\u03c8\u0385\u00b0\u00a8\u03c9\u03cb\u03b0\u03ce\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-869_P100-1995", "ibm-869", "IBM869", "cp869", "869", "cp-gr", "csIBM869", "windows-869"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-870_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u0163\u00e1\u0103\u010d\u00e7\u0107[.<(+!&\u00e9\u0119\u00eb\u016f\u00ed\u00ee\u013e\u013a\u00df]$*);^-/\u00c2\u00c4\u02dd\u00c1\u0102\u010c\u00c7\u0106|,%_>?\u02c7\u00c9\u0118\u00cb\u016e\u00cd\u00ce\u013d\u0139`:#@'=\"\u02d8abcdefghi\u015b\u0148\u0111\u00fd\u0159\u015f\u00b0jklmnopqr\u0142\u0144\u0161\u00b8\u02db\u00a4\u0105~stuvwxyz\u015a\u0147\u0110\u00dd\u0158\u015e\u02d9\u0104\u017c\u0162\u017b\u00a7\u017e\u017a\u017d\u0179\u0141\u0143\u0160\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u0155\u00f3\u0151}JKLMNOPQR\u011a\u0171\u00fc\u0165\u00fa\u011b\\\u00f7STUVWXYZ\u010f\u00d4\u00d6\u0154\u00d3\u01500123456789\u010e\u0170\u00dc\u0164\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-870_P100-1995", "ibm-870", "IBM870", "CP870", "ebcdic-cp-roece", "ebcdic-cp-yu", "csIBM870"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-871_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1\u00de.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df\u00c6$*);\u00d6-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00f0:#\u00d0'=\"\u00d8abcdefghi\u00ab\u00bb`\u00fd{\u00b1\u00b0jklmnopqr\u00aa\u00ba}\u00b8]\u00a4\u00b5\u00f6stuvwxyz\u00a1\u00bf@\u00dd[\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\\\u00d7\u00feABCDEFGHI\u00ad\u00f4~\u00f2\u00f3\u00f5\u00e6JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\u00b4\u00f7STUVWXYZ\u00b2\u00d4^\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-871_P100-1995", "ibm-871", "IBM871", "ebcdic-cp-is", "csIBM871", "CP871", "ebcdic-is", "871"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-874_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e48\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\u0e49\u0e4a\u0e4b\u0e4c\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\u00a2\u00ac\u00a6\u00a0",
|
||||||
|
Aliases: []string{"ibm-874_P100-1995", "ibm-874", "ibm-9066", "cp874", "tis620.2533", "eucTH"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-875_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399[.<(+!&\u039a\u039b\u039c\u039d\u039e\u039f\u03a0\u03a1\u03a3]$*);^-/\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03aa\u03ab|,%_>?\u00a8\u0386\u0388\u0389\u00a0\u038a\u038c\u038e\u038f`:#@'=\"\u0385abcdefghi\u03b1\u03b2\u03b3\u03b4\u03b5\u03b6\u00b0jklmnopqr\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u00b4~stuvwxyz\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u00a3\u03ac\u03ad\u03ae\u03ca\u03af\u03cc\u03cd\u03cb\u03ce\u03c2\u03c4\u03c5\u03c6\u03c7\u03c8{ABCDEFGHI\u00ad\u03c9\u0390\u03b0\u2018\u2015}JKLMNOPQR\u00b1\u00bd\ufffd\u0387\u2019\u00a6\\\ufffdSTUVWXYZ\u00b2\u00a7\ufffd\ufffd\u00ab\u00ac0123456789\u00b3\u00a9\ufffd\ufffd\u00bb\u009f",
|
||||||
|
Aliases: []string{"ibm-875_P100-1995", "ibm-875", "IBM875", "cp875", "875"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-901_P100-1999",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u201d\u00a2\u00a3\u20ac\u201e\u00a6\u00a7\u00d8\u00a9\u0156\u00ab\u00ac\u00ad\u00ae\u00c6\u00b0\u00b1\u00b2\u00b3\u201c\u00b5\u00b6\u00b7\u00f8\u00b9\u0157\u00bb\u00bc\u00bd\u00be\u00e6\u0104\u012e\u0100\u0106\u00c4\u00c5\u0118\u0112\u010c\u00c9\u0179\u0116\u0122\u0136\u012a\u013b\u0160\u0143\u0145\u00d3\u014c\u00d5\u00d6\u00d7\u0172\u0141\u015a\u016a\u00dc\u017b\u017d\u00df\u0105\u012f\u0101\u0107\u00e4\u00e5\u0119\u0113\u010d\u00e9\u017a\u0117\u0123\u0137\u012b\u013c\u0161\u0144\u0146\u00f3\u014d\u00f5\u00f6\u00f7\u0173\u0142\u015b\u016b\u00fc\u017c\u017e\u2019",
|
||||||
|
Aliases: []string{"ibm-901_P100-1999", "ibm-901"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-902_P100-1999",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u00a1\u00a2\u00a3\u20ac\u00a5\u00a6\u00a7\u00a8\u00a9\u00aa\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u00b7\u00b8\u00b9\u00ba\u00bb\u00bc\u00bd\u00be\u00bf\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u0160\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d7\u00d8\u00d9\u00da\u00db\u00dc\u00dd\u017d\u00df\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u0161\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f7\u00f8\u00f9\u00fa\u00fb\u00fc\u00fd\u017e\u00ff",
|
||||||
|
Aliases: []string{"ibm-902_P100-1999", "ibm-902"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-916_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\ufffd\u00a2\u00a3\u00a4\u00a5\u00a6\u00a7\u00a8\u00a9\u00d7\u00ab\u00ac\u00ad\u00ae\u203e\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u2022\u00b8\u00b9\u00f7\u00bb\u00bc\u00bd\u00be\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u2017\u05d0\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u05d9\u05da\u05db\u05dc\u05dd\u05de\u05df\u05e0\u05e1\u05e2\u05e3\u05e4\u05e5\u05e6\u05e7\u05e8\u05e9\u05ea\ufffd\ufffd\ufffd\ufffd\ufffd",
|
||||||
|
Aliases: []string{"ibm-916_P100-1995", "ibm-916", "cp916", "916"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-918_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u060c\u061b\u061f\ufe81\ufe8d\ufe8e\uf8fb\ufe8f[.<(+!&\ufe91\ufb56\ufb58\ufe93\ufe95\ufe97\ufb66\ufb68\ufe99]$*);^-/\ufe9b\ufe9d\ufe9f\ufb7a\ufb7c\ufea1\ufea3\ufea5`,%_>?\u06f0\u06f1\u06f2\u06f3\u06f4\u06f5\u06f6\u06f7\u06f8\u06f9:#@'=\"\ufea7abcdefghi\ufea9\ufb88\ufeab\ufead\ufb8c\ufeaf\ufb8ajklmnopqr\ufeb1\ufeb3\ufeb5\ufeb7\ufeb9\ufebb\ufebd~stuvwxyz\ufebf\ufec3\ufec7\ufec9\ufeca\ufecb\ufecc\ufecd\ufece\ufecf\ufed0\ufed1\ufed3\ufed5\ufed7\ufb8e\ufedb|\ufb92\ufb94\ufedd\ufedf{ABCDEFGHI\u00ad\ufee0\ufee1\ufee3\ufb9e\ufee5}JKLMNOPQR\ufee7\ufe85\ufeed\ufba6\ufba8\ufba9\\\ufbaaSTUVWXYZ\ufe80\ufe89\ufe8a\ufe8b\ufbfc\ufbfd0123456789\ufbfe\ufbb0\ufbae\ufe7c\ufe7d\u009f",
|
||||||
|
Aliases: []string{"ibm-918_P100-1995", "ibm-918", "IBM918", "CP918", "ebcdic-cp-ar2", "csIBM918"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-922_P100-1999",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u00a1\u00a2\u00a3\u00a4\u00a5\u00a6\u00a7\u00a8\u00a9\u00aa\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u00b4\u00b5\u00b6\u00b7\u00b8\u00b9\u00ba\u00bb\u00bc\u00bd\u00be\u00bf\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u0160\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d7\u00d8\u00d9\u00da\u00db\u00dc\u00dd\u017d\u00df\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u0161\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f7\u00f8\u00f9\u00fa\u00fb\u00fc\u00fd\u017e\u00ff",
|
||||||
|
Aliases: []string{"ibm-922_P100-1999", "ibm-922", "IBM922", "cp922", "922"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1006_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u06f0\u06f1\u06f2\u06f3\u06f4\u06f5\u06f6\u06f7\u06f8\u06f9\u060c\u061b\u00ad\u061f\ufe81\ufe8d\ufe8e\uf8fb\ufe8f\ufe91\ufb56\ufb58\ufe93\ufe95\ufe97\ufb66\ufb68\ufe99\ufe9b\ufe9d\ufe9f\ufb7a\ufb7c\ufea1\ufea3\ufea5\ufea7\ufea9\ufb88\ufeab\ufead\ufb8c\ufeaf\ufb8a\ufeb1\ufeb3\ufeb5\ufeb7\ufeb9\ufebb\ufebd\ufebf\ufec3\ufec7\ufec9\ufeca\ufecb\ufecc\ufecd\ufece\ufecf\ufed0\ufed1\ufed3\ufed5\ufed7\ufb8e\ufedb\ufb92\ufb94\ufedd\ufedf\ufee0\ufee1\ufee3\ufb9e\ufee5\ufee7\ufe85\ufeed\ufba6\ufba8\ufba9\ufbaa\ufe80\ufe89\ufe8a\ufe8b\ufbfc\ufbfd\ufbfe\ufbb0\ufbae\ufe7c\ufe7d",
|
||||||
|
Aliases: []string{"ibm-1006_P100-1995", "ibm-1006", "IBM1006", "cp1006", "1006"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1025_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0452\u0453\u0451\u0454\u0455\u0456\u0457\u0458[.<(+!&\u0459\u045a\u045b\u045c\u045e\u045f\u042a\u2116\u0402]$*);^-/\u0403\u0401\u0404\u0405\u0406\u0407\u0408\u0409|,%_>?\u040a\u040b\u040c\u00ad\u040e\u040f\u044e\u0430\u0431`:#@'=\"\u0446abcdefghi\u0434\u0435\u0444\u0433\u0445\u0438\u0439jklmnopqr\u043a\u043b\u043c\u043d\u043e\u043f\u044f~stuvwxyz\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413{ABCDEFGHI\u0425\u0418\u0419\u041a\u041b\u041c}JKLMNOPQR\u041d\u041e\u041f\u042f\u0420\u0421\\\u00a7STUVWXYZ\u0422\u0423\u0416\u0412\u042c\u042b0123456789\u0417\u0428\u042d\u0429\u0427\u009f",
|
||||||
|
Aliases: []string{"ibm-1025_P100-1995", "ibm-1025", "cp1025", "1025"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1026_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5{\u00f1\u00c7.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df\u011e\u0130*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5[\u00d1\u015f,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u0131:\u00d6\u015e'=\u00dc\u00d8abcdefghi\u00ab\u00bb}`\u00a6\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u00a4\u00b5\u00f6stuvwxyz\u00a1\u00bf]$@\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e7ABCDEFGHI\u00ad\u00f4~\u00f2\u00f3\u00f5\u011fJKLMNOPQR\u00b9\u00fb\\\u00f9\u00fa\u00ff\u00fc\u00f7STUVWXYZ\u00b2\u00d4#\u00d2\u00d3\u00d50123456789\u00b3\u00db\"\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1026_P100-1995", "ibm-1026", "IBM1026", "CP1026", "csIBM1026", "1026"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1047_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1\u00a2.<(+|&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df!$*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u00a4\u00b5~stuvwxyz\u00a1\u00bf\u00d0[\u00de\u00ae\u00ac\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00dd\u00a8\u00af]\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1047_P100-1995", "ibm-1047", "IBM1047", "cp1047", "1047"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1097_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u060c\u064b\ufe81\ufe82\uf8fa\ufe8d\ufe8e\uf8fb\u00a4.<(+|&\ufe80\ufe83\ufe84\uf8f9\ufe85\ufe8b\ufe8f\ufe91\ufb56!$*);\u00ac-/\ufb58\ufe95\ufe97\ufe99\ufe9b\ufe9d\ufe9f\ufb7a\u061b,%_>?\ufb7c\ufea1\ufea3\ufea5\ufea7\ufea9\ufeab\ufead\ufeaf`:#@'=\"\ufb8aabcdefghi\u00ab\u00bb\ufeb1\ufeb3\ufeb5\ufeb7\ufeb9jklmnopqr\ufebb\ufebd\ufebf\ufec1\ufec3\ufec5\ufec7~stuvwxyz\ufec9\ufeca\ufecb\ufecc\ufecd\ufece\ufecf\ufed0\ufed1\ufed3\ufed5\ufed7\ufb8e\ufedb\ufb92\ufb94[]\ufedd\ufedf\ufee1\u00d7{ABCDEFGHI\u00ad\ufee3\ufee5\ufee7\ufeed\ufee9}JKLMNOPQR\ufeeb\ufeec\ufba4\ufbfc\ufbfd\ufbfe\\\u061fSTUVWXYZ\u0640\u06f0\u06f1\u06f2\u06f3\u06f40123456789\u06f5\u06f6\u06f7\u06f8\u06f9\u009f",
|
||||||
|
Aliases: []string{"ibm-1097_P100-1995", "ibm-1097", "cp1097", "1097"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1098_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\ufffd\ufffd\u060c\u061b\u061f\u064b\ufe81\ufe82\uf8fa\ufe8d\ufe8e\uf8fb\ufe80\ufe83\ufe84\uf8f9\ufe85\ufe8b\ufe8f\ufe91\ufb56\ufb58\ufe95\ufe97\ufe99\ufe9b\ufe9d\ufe9f\ufb7a\ufb7c\u00d7\ufea1\ufea3\ufea5\ufea7\ufea9\ufeab\ufead\ufeaf\ufb8a\ufeb1\ufeb3\ufeb5\ufeb7\ufeb9\ufebb\u00ab\u00bb\u2591\u2592\u2593\u2502\u2524\ufebd\ufebf\ufec1\ufec3\u2563\u2551\u2557\u255d\u00a4\ufec5\u2510\u2514\u2534\u252c\u251c\u2500\u253c\ufec7\ufec9\u255a\u2554\u2569\u2566\u2560\u2550\u256c\ufffd\ufeca\ufecb\ufecc\ufecd\ufece\ufecf\ufed0\ufed1\ufed3\u2518\u250c\u2588\u2584\ufed5\ufed7\u2580\ufb8e\ufedb\ufb92\ufb94\ufedd\ufedf\ufee1\ufee3\ufee5\ufee7\ufeed\ufee9\ufeeb\ufeec\ufba4\ufbfc\u00ad\ufbfd\ufbfe\u0640\u06f0\u06f1\u06f2\u06f3\u06f4\u06f5\u06f6\u06f7\u06f8\u06f9\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-1098_P100-1995", "ibm-1098", "IBM1098", "cp1098", "1098"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1112_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0161\u00e4\u0105\u012f\u016b\u00e5\u0113\u017e\u00a2.<(+|&\u00e9\u0119\u0117\u010d\u0173\u201e\u201c\u0123\u00df!$*);\u00ac-/\u0160\u00c4\u0104\u012e\u016a\u00c5\u0112\u017d\u00a6,%_>?\u00f8\u00c9\u0118\u0116\u010c\u0172\u012a\u013b\u0122`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u0101\u017c\u0144\u00b1\u00b0jklmnopqr\u0156\u0157\u00e6\u0137\u00c6\u00a4\u00b5~stuvwxyz\u201d\u017a\u0100\u017b\u0143\u00ae^\u00a3\u012b\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be[]\u0179\u0136\u013c\u00d7{ABCDEFGHI\u00ad\u014d\u00f6\u0146\u00f3\u00f5}JKLMNOPQR\u00b9\u0107\u00fc\u0142\u015b\u2019\\\u00f7STUVWXYZ\u00b2\u014c\u00d6\u0145\u00d3\u00d50123456789\u00b3\u0106\u00dc\u0141\u015a\u009f",
|
||||||
|
Aliases: []string{"ibm-1112_P100-1995", "ibm-1112", "cp1112", "1112"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1122_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2{\u00e0\u00e1\u00e3}\u00e7\u00f1\u00a7.<(+!&`\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df\u00a4\u00c5*);^-/\u00c2#\u00c0\u00c1\u00c3$\u00c7\u00d1\u00f6,%_>?\u00f8\\\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00e9:\u00c4\u00d6'=\"\u00d8abcdefghi\u00ab\u00bb\u0161\u00fd\u017e\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6]\u00b5\u00fcstuvwxyz\u00a1\u00bf\u0160\u00dd\u017d\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9[\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e4ABCDEFGHI\u00ad\u00f4\u00a6\u00f2\u00f3\u00f5\u00e5JKLMNOPQR\u00b9\u00fb~\u00f9\u00fa\u00ff\u00c9\u00f7STUVWXYZ\u00b2\u00d4@\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1122_P100-1999", "ibm-1122", "cp1122", "1122"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1123_P100-1995",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0452\u0491\u0451\u0454\u0455\u0456\u0457\u0458[.<(+!&\u0459\u045a\u045b\u045c\u045e\u045f\u042a\u2116\u0402]$*);^-/\u0490\u0401\u0404\u0405\u0406\u0407\u0408\u0409|,%_>?\u040a\u040b\u040c\u00ad\u040e\u040f\u044e\u0430\u0431`:#@'=\"\u0446abcdefghi\u0434\u0435\u0444\u0433\u0445\u0438\u0439jklmnopqr\u043a\u043b\u043c\u043d\u043e\u043f\u044f~stuvwxyz\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413{ABCDEFGHI\u0425\u0418\u0419\u041a\u041b\u041c}JKLMNOPQR\u041d\u041e\u041f\u042f\u0420\u0421\\\u00a7STUVWXYZ\u0422\u0423\u0416\u0412\u042c\u042b0123456789\u0417\u0428\u042d\u0429\u0427\u009f",
|
||||||
|
Aliases: []string{"ibm-1123_P100-1995", "ibm-1123", "cp1123", "1123"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1124_P100-1996",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u0401\u0402\u0490\u0404\u0405\u0406\u0407\u0408\u0409\u040a\u040b\u040c\u00ad\u040e\u040f\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2116\u0451\u0452\u0491\u0454\u0455\u0456\u0457\u0458\u0459\u045a\u045b\u045c\u00a7\u045e\u045f",
|
||||||
|
Aliases: []string{"ibm-1124_P100-1996", "ibm-1124", "cp1124", "1124"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1125_P100-1997",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0490\u0491\u0404\u0454\u0406\u0456\u0407\u0457\u00f7\u00b1\u2116\u00a4\u25a0\u00a0",
|
||||||
|
Aliases: []string{"ibm-1125_P100-1997", "ibm-1125", "cp1125"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1129_P100-1997",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u00a1\u00a2\u00a3\u00a4\u00a5\u00a6\u00a7\u0153\u00a9\u00aa\u00ab\u00ac\u00ad\u00ae\u00af\u00b0\u00b1\u00b2\u00b3\u0178\u00b5\u00b6\u00b7\u0152\u00b9\u00ba\u00bb\u00bc\u00bd\u00be\u00bf\u00c0\u00c1\u00c2\u0102\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u0300\u00cd\u00ce\u00cf\u0110\u00d1\u0309\u00d3\u00d4\u01a0\u00d6\u00d7\u00d8\u00d9\u00da\u00db\u00dc\u01af\u0303\u00df\u00e0\u00e1\u00e2\u0103\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u0301\u00ed\u00ee\u00ef\u0111\u00f1\u0323\u00f3\u00f4\u01a1\u00f6\u00f7\u00f8\u00f9\u00fa\u00fb\u00fc\u01b0\u20ab\u00ff",
|
||||||
|
Aliases: []string{"ibm-1129_P100-1997", "ibm-1129"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1130_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u0103\u00e5\u00e7\u00f1[.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u0303\u00df]$*);^-/\u00c2\u00c4\u00c0\u00c1\u0102\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u20ab`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u0111\u0309\u0300\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u0152\u00c6\u00a4\u00b5~stuvwxyz\u00a1\u00bf\u0110\u0323\u0301\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u0153\u0178\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u01b0\u00f3\u01a1}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u01af\u00d3\u01a00123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1130_P100-1997", "ibm-1130"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1131_P100-1997",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1c\x1b\x7f\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x1a\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\u0406\u0456\u00b7\u00a4\u0490\u0491\u2219\u00a0",
|
||||||
|
Aliases: []string{"ibm-1131_P100-1997", "ibm-1131", "cp1131"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1132_P100-1998",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0e81\u0e82\u0e84\u0e87\u0e88\u0eaa\u0e8a[\u00a2.<(+|&\ufffd\u0e8d\u0e94\u0e95\u0e96\u0e97\u0e99\u0e9a]!$*);\u00ac-/\u0e9b\u0e9c\u0e9d\u0e9e\u0e9f\u0ea1\u0ea2^\u00a6,%_>?\u20ad\ufffd\u0ea3\u0ea5\u0ea7\u0eab\u0ead\u0eae\ufffd`:#@'=\"\ufffdabcdefghi\ufffd\ufffd\u0eaf\u0eb0\u0eb2\u0eb3\ufffdjklmnopqr\u0eb4\u0eb5\u0eb6\u0eb7\u0eb8\u0eb9\ufffd~stuvwxyz\u0ebc\u0eb1\u0ebb\u0ebd\ufffd\ufffd\u0ed0\u0ed1\u0ed2\u0ed3\u0ed4\u0ed5\u0ed6\u0ed7\u0ed8\u0ed9\ufffd\u0ec0\u0ec1\u0ec2\u0ec3\u0ec4{ABCDEFGHI\ufffd\u0ec8\u0ec9\u0eca\u0ecb\u0ecc}JKLMNOPQR\u0ecd\u0ec6\ufffd\u0edc\u0edd\ufffd\\\ufffdSTUVWXYZ\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd0123456789\ufffd\ufffd\ufffd\ufffd\ufffd\u009f",
|
||||||
|
Aliases: []string{"ibm-1132_P100-1998", "ibm-1132"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1133_P100-1997",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\ufffd\u0e81\u0e82\u0e84\u0e87\u0e88\u0eaa\u0e8a\u0e8d\u0e94\u0e95\u0e96\u0e97\u0e99\u0e9a\u0e9b\u0e9c\u0e9d\u0e9e\u0e9f\u0ea1\u0ea2\u0ea3\u0ea5\u0ea7\u0eab\u0ead\u0eae\ufffd\ufffd\ufffd\u0eaf\u0eb0\u0eb2\u0eb3\u0eb4\u0eb5\u0eb6\u0eb7\u0eb8\u0eb9\u0ebc\u0eb1\u0ebb\u0ebd\ufffd\ufffd\ufffd\u0ec0\u0ec1\u0ec2\u0ec3\u0ec4\u0ec8\u0ec9\u0eca\u0ecb\u0ecc\u0ecd\u0ec6\ufffd\u0edc\u0eddk\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0ed0\u0ed1\u0ed2\u0ed3\u0ed4\u0ed5\u0ed6\u0ed7\u0ed8\u0ed9\ufffd\ufffd\u00a2\u00ac\u00a6\u00a0",
|
||||||
|
Aliases: []string{"ibm-1133_P100-1997", "ibm-1133"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1137_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0901\u0902\u0903\u0905\u0906\u0907\u0908\u0909\u090a.<(+|&\u090b\u090c\u090d\u090e\u090f\u0910\u0911\u0912\u0913!$*);^-/\u0914\u0915\u0916\u0917\u0918\u0919\u091a\u091b\u091c,%_>?\u091d\u091e\u091f\u0920\u0921\u0922\u0923\u0924\u0925`:#@'=\"\u0926abcdefghi\u0927\u0928\u092a\u092b\u092c\u092d\u092ejklmnopqr\u092f\u0930\u0932\u0933\u0935\u0936\u200c~stuvwxyz\u0937\u0938\u0939[\u093c\u093d\u093e\u093f\u0940\u0941\u0942\u0943\u0944\u0945\u0946\u0947\u0948\u0949\u094a]\u094b\u094c{ABCDEFGHI\u094d\u0950\u0951\u0952\ufffd\ufffd}JKLMNOPQR\u0960\u0961\u0962\u0963\u0964\u0965\\\u200dSTUVWXYZ\u0966\u0967\u0968\u0969\u096a\u096b0123456789\u096c\u096d\u096e\u096f\u0970\u009f",
|
||||||
|
Aliases: []string{"ibm-1137_P100-1999", "ibm-1137"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1140_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1\u00a2.<(+|&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df!$*);\u00ac-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u20ac\u00b5~stuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae^\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be[]\u00af\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1140_P100-1997", "ibm-1140", "IBM01140", "CCSID01140", "CP01140", "cp1140", "ebcdic-us-37+euro"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1141_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2{\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1\u00c4.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec~\u00dc$*);^-/\u00c2[\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00f6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:#\u00a7'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u20ac\u00b5\u00dfstuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9@\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e4ABCDEFGHI\u00ad\u00f4\u00a6\u00f2\u00f3\u00f5\u00fcJKLMNOPQR\u00b9\u00fb}\u00f9\u00fa\u00ff\u00d6\u00f7STUVWXYZ\u00b2\u00d4\\\u00d2\u00d3\u00d50123456789\u00b3\u00db]\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1141_P100-1997", "ibm-1141", "IBM01141", "CCSID01141", "CP01141", "cp1141", "ebcdic-de-273+euro"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1142_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3}\u00e7\u00f1#.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df\u20ac\u00c5*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3$\u00c7\u00d1\u00f8,%_>?\u00a6\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:\u00c6\u00d8'=\"@abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba{\u00b8[]\u00b5\u00fcstuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e6ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5\u00e5JKLMNOPQR\u00b9\u00fb~\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1142_P100-1997", "ibm-1142", "IBM01142", "CCSID01142", "CP01142", "cp1142", "ebcdic-dk-277+euro", "ebcdic-no-277+euro"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1143_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2{\u00e0\u00e1\u00e3}\u00e7\u00f1\u00a7.<(+!&`\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df\u20ac\u00c5*);^-/\u00c2#\u00c0\u00c1\u00c3$\u00c7\u00d1\u00f6,%_>?\u00f8\\\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00e9:\u00c4\u00d6'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6]\u00b5\u00fcstuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9[\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e4ABCDEFGHI\u00ad\u00f4\u00a6\u00f2\u00f3\u00f5\u00e5JKLMNOPQR\u00b9\u00fb~\u00f9\u00fa\u00ff\u00c9\u00f7STUVWXYZ\u00b2\u00d4@\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1143_P100-1997", "ibm-1143", "IBM01143", "CCSID01143", "CP01143", "cp1143", "ebcdic-fi-278+euro", "ebcdic-se-278+euro"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1144_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4{\u00e1\u00e3\u00e5\\\u00f1\u00b0.<(+!&]\u00ea\u00eb}\u00ed\u00ee\u00ef~\u00df\u00e9$*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00f2,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00f9:\u00a3\u00a7'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1[jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u20ac\u00b5\u00ecstuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2#\u00a5\u00b7\u00a9@\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e0ABCDEFGHI\u00ad\u00f4\u00f6\u00a6\u00f3\u00f5\u00e8JKLMNOPQR\u00b9\u00fb\u00fc`\u00fa\u00ff\u00e7\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1144_P100-1997", "ibm-1144", "IBM01144", "CCSID01144", "CP01144", "cp1144", "ebcdic-it-280+euro"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1145_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00a6[.<(+|&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df]$*);\u00ac-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7#\u00f1,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:\u00d1@'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u20ac\u00b5\u00a8stuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be^!\u00af~\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1145_P100-1997", "ibm-1145", "IBM01145", "CCSID01145", "CP01145", "cp1145", "ebcdic-es-284+euro"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1146_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1$.<(+|&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df!\u00a3*);\u00ac-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u20ac\u00b5\u00afstuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2[\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be^]~\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1146_P100-1997", "ibm-1146", "IBM01146", "CCSID01146", "CP01146", "cp1146", "ebcdic-gb-285+euro"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1147_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4@\u00e1\u00e3\u00e5\\\u00f1\u00b0.<(+!&{\u00ea\u00eb}\u00ed\u00ee\u00ef\u00ec\u00df\u00a7$*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00f9,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00b5:\u00a3\u00e0'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1[jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u20ac`\u00a8stuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2#\u00a5\u00b7\u00a9]\u00b6\u00bc\u00bd\u00be\u00ac|\u00af~\u00b4\u00d7\u00e9ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5\u00e8JKLMNOPQR\u00b9\u00fb\u00fc\u00a6\u00fa\u00ff\u00e7\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1147_P100-1997", "ibm-1147", "IBM01147", "CCSID01147", "CP01147", "cp1147", "ebcdic-fr-297+euro"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1148_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1[.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df]$*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u20ac\u00b5~stuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1148_P100-1997", "ibm-1148", "IBM01148", "CCSID01148", "CP01148", "cp1148", "ebcdic-international-500+euro"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1149_P100-1997",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1\u00de.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df\u00c6$*);\u00d6-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00f0:#\u00d0'=\"\u00d8abcdefghi\u00ab\u00bb`\u00fd{\u00b1\u00b0jklmnopqr\u00aa\u00ba}\u00b8]\u20ac\u00b5\u00f6stuvwxyz\u00a1\u00bf@\u00dd[\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\\\u00d7\u00feABCDEFGHI\u00ad\u00f4~\u00f2\u00f3\u00f5\u00e6JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\u00b4\u00f7STUVWXYZ\u00b2\u00d4^\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1149_P100-1997", "ibm-1149", "IBM01149", "CCSID01149", "CP01149", "cp1149", "ebcdic-is-871+euro"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1153_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u0163\u00e1\u0103\u010d\u00e7\u0107[.<(+!&\u00e9\u0119\u00eb\u016f\u00ed\u00ee\u013e\u013a\u00df]$*);^-/\u00c2\u00c4\u02dd\u00c1\u0102\u010c\u00c7\u0106|,%_>?\u02c7\u00c9\u0118\u00cb\u016e\u00cd\u00ce\u013d\u0139`:#@'=\"\u02d8abcdefghi\u015b\u0148\u0111\u00fd\u0159\u015f\u00b0jklmnopqr\u0142\u0144\u0161\u00b8\u02db\u20ac\u0105~stuvwxyz\u015a\u0147\u0110\u00dd\u0158\u015e\u02d9\u0104\u017c\u0162\u017b\u00a7\u017e\u017a\u017d\u0179\u0141\u0143\u0160\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u0155\u00f3\u0151}JKLMNOPQR\u011a\u0171\u00fc\u0165\u00fa\u011b\\\u00f7STUVWXYZ\u010f\u00d4\u00d6\u0154\u00d3\u01500123456789\u010e\u0170\u00dc\u0164\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1153_P100-1999", "ibm-1153"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1154_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0452\u0453\u0451\u0454\u0455\u0456\u0457\u0458[.<(+!&\u0459\u045a\u045b\u045c\u045e\u045f\u042a\u2116\u0402]$*);^-/\u0403\u0401\u0404\u0405\u0406\u0407\u0408\u0409|,%_>?\u040a\u040b\u040c\u00ad\u040e\u040f\u044e\u0430\u0431`:#@'=\"\u0446abcdefghi\u0434\u0435\u0444\u0433\u0445\u0438\u0439jklmnopqr\u043a\u043b\u043c\u043d\u043e\u043f\u044f~stuvwxyz\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413{ABCDEFGHI\u0425\u0418\u0419\u041a\u041b\u041c}JKLMNOPQR\u041d\u041e\u041f\u042f\u0420\u0421\\\u20acSTUVWXYZ\u0422\u0423\u0416\u0412\u042c\u042b0123456789\u0417\u0428\u042d\u0429\u0427\u009f",
|
||||||
|
Aliases: []string{"ibm-1154_P100-1999", "ibm-1154"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1155_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5{\u00f1\u00c7.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df\u011e\u0130*);^-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5[\u00d1\u015f,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u0131:\u00d6\u015e'=\u00dc\u00d8abcdefghi\u00ab\u00bb}`\u00a6\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u20ac\u00b5\u00f6stuvwxyz\u00a1\u00bf]$@\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e7ABCDEFGHI\u00ad\u00f4~\u00f2\u00f3\u00f5\u011fJKLMNOPQR\u00b9\u00fb\\\u00f9\u00fa\u00ff\u00fc\u00f7STUVWXYZ\u00b2\u00d4#\u00d2\u00d3\u00d50123456789\u00b3\u00db\"\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1155_P100-1999", "ibm-1155"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1156_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0161\u00e4\u0105\u012f\u016b\u00e5\u0113\u017e\u00a2.<(+|&\u00e9\u0119\u0117\u010d\u0173\u201e\u201c\u0123\u00df!$*);\u00ac-/\u0160\u00c4\u0104\u012e\u016a\u00c5\u0112\u017d\u00a6,%_>?\u00f8\u00c9\u0118\u0116\u010c\u0172\u012a\u013b\u0122`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u0101\u017c\u0144\u00b1\u00b0jklmnopqr\u0156\u0157\u00e6\u0137\u00c6\u20ac\u00b5~stuvwxyz\u201d\u017a\u0100\u017b\u0143\u00ae^\u00a3\u012b\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be[]\u0179\u0136\u013c\u00d7{ABCDEFGHI\u00ad\u014d\u00f6\u0146\u00f3\u00f5}JKLMNOPQR\u00b9\u0107\u00fc\u0142\u015b\u2019\\\u00f7STUVWXYZ\u00b2\u014c\u00d6\u0145\u00d3\u00d50123456789\u00b3\u0106\u00dc\u0141\u015a\u009f",
|
||||||
|
Aliases: []string{"ibm-1156_P100-1999", "ibm-1156"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1157_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2{\u00e0\u00e1\u00e3}\u00e7\u00f1\u00a7.<(+!&`\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df\u20ac\u00c5*);^-/\u00c2#\u00c0\u00c1\u00c3$\u00c7\u00d1\u00f6,%_>?\u00f8\\\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc\u00e9:\u00c4\u00d6'=\"\u00d8abcdefghi\u00ab\u00bb\u0161\u00fd\u017e\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6]\u00b5\u00fcstuvwxyz\u00a1\u00bf\u0160\u00dd\u017d\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9[\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u00a8\u00b4\u00d7\u00e4ABCDEFGHI\u00ad\u00f4\u00a6\u00f2\u00f3\u00f5\u00e5JKLMNOPQR\u00b9\u00fb~\u00f9\u00fa\u00ff\u00c9\u00f7STUVWXYZ\u00b2\u00d4@\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1157_P100-1999", "ibm-1157"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1158_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0452\u0491\u0451\u0454\u0455\u0456\u0457\u0458[.<(+!&\u0459\u045a\u045b\u045c\u045e\u045f\u042a\u2116\u0402]$*);^-/\u0490\u0401\u0404\u0405\u0406\u0407\u0408\u0409|,%_>?\u040a\u040b\u040c\u00ad\u040e\u040f\u044e\u0430\u0431`:#@'=\"\u0446abcdefghi\u0434\u0435\u0444\u0433\u0445\u0438\u0439jklmnopqr\u043a\u043b\u043c\u043d\u043e\u043f\u044f~stuvwxyz\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413{ABCDEFGHI\u0425\u0418\u0419\u041a\u041b\u041c}JKLMNOPQR\u041d\u041e\u041f\u042f\u0420\u0421\\\u20acSTUVWXYZ\u0422\u0423\u0416\u0412\u042c\u042b0123456789\u0417\u0428\u042d\u0429\u0427\u009f",
|
||||||
|
Aliases: []string{"ibm-1158_P100-1999", "ibm-1158"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1160_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07[\u00a2.<(+|&\u0e48\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e]!$*);\u00ac-/\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15^\u00a6,%_>?\u0e3f\u0e4e\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c`:#@'=\"\u0e4fabcdefghi\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e5ajklmnopqr\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e5b~stuvwxyz\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34{ABCDEFGHI\u0e49\u0e35\u0e36\u0e37\u0e38\u0e39}JKLMNOPQR\u0e3a\u0e40\u0e41\u0e42\u0e43\u0e44\\\u0e4aSTUVWXYZ\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a0123456789\u0e4b\u0e4c\u0e4d\u0e4b\u20ac\u009f",
|
||||||
|
Aliases: []string{"ibm-1160_P100-1999", "ibm-1160"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1162_P100-1999",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\u0081\u0082\u0083\u0084\u2026\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd",
|
||||||
|
Aliases: []string{"ibm-1162_P100-1999", "ibm-1162"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1164_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u0103\u00e5\u00e7\u00f1[.<(+!&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u0303\u00df]$*);^-/\u00c2\u00c4\u00c0\u00c1\u0102\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u20ab`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u0111\u0309\u0300\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u0152\u00c6\u20ac\u00b5~stuvwxyz\u00a1\u00bf\u0110\u0323\u0301\u00ae\u00a2\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be\u00ac|\u00af\u0153\u0178\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u01b0\u00f3\u01a1}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u01af\u00d3\u01a00123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ibm-1164_P100-1999", "ibm-1164"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-4517_P100-2005",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\ufe7c\ufe7d\u0640\u200b\ufe80\ufe81\ufe82\ufe83\u00b0.<(+!&\ufe84\ufe85\ufffd\ufffd\ufe8b\ufe8d\ufe8e\ufe8f\ufe91\u00a7$*);^-/\ufe93\ufe95\ufe97\ufe99\ufe9b\ufe9d\ufe9f\ufea1\u00fa,%_>?\ufea3\ufea5\ufea7\ufea9\ufeab\ufead\ufeaf\ufeb1\ufeb3\u00a3:\u00b5\u00e1'=\"\ufeb5abcdefghi\ufeb7\ufeb9\ufebb\ufebd\ufebf\ufec3\ufec7jklmnopqr\ufec9\ufeca\ufecb\ufecc\ufecd\ufece\ufecf\u00a8stuvwxyz\ufed0\ufed1\ufed3\ufed5\ufed7\ufed9\ufedb\ufedd\ufef5\ufef6\ufef7\ufef8\ufffd\ufffd\ufefb\ufefc\ufedf\ufee1\ufee3\ufee5\ufee7\ufee9\u00e9ABCDEFGHI\u00ad\ufeeb\ufffd\ufeec\ufffd\ufeed\u00e8JKLMNOPQR\ufeef\ufef0\ufef1\ufef2\ufef3\ufffd\u00e7\u2007STUVWXYZ\u00f7\u060c\ufffd\u00d7\u061f\u061b0123456789\ufffd\ufffd\ufffd\ufffd\ufffd\u009f",
|
||||||
|
Aliases: []string{"ibm-4517_P100-2005", "ibm-4517"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-4899_P100-1998",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd$.<(+|\u05d0\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd!\u00a2*);\u00ac-/\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd,%_>?\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd:#@'=\"\ufffd\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u05d9\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u05da\u05db\u05dc\u05dd\u05de\u05df\u05e0\u05e1\u05e2\ufffd\ufffd\u20ac\ufffd\u20aa\ufffd\ufffd\ufffd\u05e3\u05e4\u05e5\u05e6\u05e7\u05e8\u05e9\u05ea\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdABCDEFGHI\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdJKLMNOPQR\ufffd\u202d\u202e\u202c\ufffd\ufffd\ufffd\ufffdSTUVWXYZ\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd0123456789\ufffd\u202a\u202b\u200e\u200f\u009f",
|
||||||
|
Aliases: []string{"ibm-4899_P100-1998", "ibm-4899"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-4909_P100-1999",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\u00a0\u2018\u2019\u00a3\u20ac\ufffd\u00a6\u00a7\u00a8\u00a9\ufffd\u00ab\u00ac\u00ad\ufffd\u2015\u00b0\u00b1\u00b2\u00b3\u00b4\u0385\u0386\u0387\u0388\u0389\u038a\u00bb\u038c\u00bd\u038e\u038f\u0390\u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039a\u039b\u039c\u039d\u039e\u039f\u03a0\u03a1\ufffd\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03aa\u03ab\u03ac\u03ad\u03ae\u03af\u03b0\u03b1\u03b2\u03b3\u03b4\u03b5\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c2\u03c3\u03c4\u03c5\u03c6\u03c7\u03c8\u03c9\u03ca\u03cb\u03cc\u03cd\u03ce\ufffd",
|
||||||
|
Aliases: []string{"ibm-4909_P100-1999", "ibm-4909"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-4971_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399[.<(+!&\u039a\u039b\u039c\u039d\u039e\u039f\u03a0\u03a1\u03a3]$*);^-/\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03aa\u03ab|,%_>?\u00a8\u0386\u0388\u0389\u00a0\u038a\u038c\u038e\u038f`:#@'=\"\u0385abcdefghi\u03b1\u03b2\u03b3\u03b4\u03b5\u03b6\u00b0jklmnopqr\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u00b4~stuvwxyz\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u00a3\u03ac\u03ad\u03ae\u03ca\u03af\u03cc\u03cd\u03cb\u03ce\u03c2\u03c4\u03c5\u03c6\u03c7\u03c8{ABCDEFGHI\u00ad\u03c9\u0390\u03b0\u2018\u2015}JKLMNOPQR\u00b1\u00bd\ufffd\u0387\u2019\u00a6\\\ufffdSTUVWXYZ\u00b2\u00a7\ufffd\ufffd\u00ab\u00ac0123456789\u00b3\u00a9\u20ac\ufffd\u00bb\u009f",
|
||||||
|
Aliases: []string{"ibm-4971_P100-1999", "ibm-4971"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-5123_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \ufffd\uff61\uff62\uff63\uff64\uff65\uff66\uff67\uff68\u00a2.<(+|&\uff69\uff6a\uff6b\uff6c\uff6d\uff6e\uff6f\uff70\uff71!$*);\u00ac-/\uff72\uff73\uff74\uff75\uff76\uff77\uff78\uff79\ufffd,%_>?\uff7a\uff7b\uff7c\uff7d\uff7e\uff7f\uff80\uff81\uff82`:#@'=\"\ufffdabcdefghi\uff83\uff84\uff85\uff86\uff87\uff88\ufffdjklmnopqr\uff89\uff8a\uff8b\uff8c\uff8d\uff8e\u203e~stuvwxyz\uff8f\uff90\uff91[\uff92\uff93^\u00a3\u00a5\uff94\uff95\uff96\uff97\uff98\uff99\uff9a\uff9b\uff9c\uff9d]\uff9e\uff9f{ABCDEFGHI\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd}JKLMNOPQR\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\\\u20acSTUVWXYZ\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd0123456789\ufffd\ufffd\ufffd\ufffd\ufffd\u009f",
|
||||||
|
Aliases: []string{"ibm-5123_P100-1999", "ibm-5123"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-8482_P100-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \uff61\uff62\uff63\uff64\uff65\uff66\uff67\uff68\uff69\u00a3.<(+|&\uff6a\uff6b\uff6c\uff6d\uff6e\uff6f\ufffd\uff70\ufffd!\u00a5*);\u00ac-/abcdefgh\ufffd,%_>?[ijklmnop`:#@'=\"]\uff71\uff72\uff73\uff74\uff75\uff76\uff77\uff78\uff79\uff7aq\uff7b\uff7c\uff7d\uff7e\uff7f\uff80\uff81\uff82\uff83\uff84\uff85\uff86\uff87\uff88\uff89r\ufffd\uff8a\uff8b\uff8c~\u203e\uff8d\uff8e\uff8f\uff90\uff91\uff92\uff93\uff94\uff95s\uff96\uff97\uff98\uff99^\u00a2\\tuvwxyz\uff9a\uff9b\uff9c\uff9d\uff9e\uff9f{ABCDEFGHI\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd}JKLMNOPQR\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd$\u20acSTUVWXYZ\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd0123456789\ufffd\ufffd\ufffd\ufffd\ufffd\u009f",
|
||||||
|
Aliases: []string{"ibm-8482_P100-1999", "ibm-8482"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-9067_X100-2005",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399[.<(+!&\u039a\u039b\u039c\u039d\u039e\u039f\u03a0\u03a1\u03a3]$*);^-/\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03aa\u03ab|,%_>?\u00a8\u0386\u0388\u0389\u00a0\u038a\u038c\u038e\u038f`:#@'=\"\u0385abcdefghi\u03b1\u03b2\u03b3\u03b4\u03b5\u03b6\u00b0jklmnopqr\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u00b4~stuvwxyz\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u00a3\u03ac\u03ad\u03ae\u03ca\u03af\u03cc\u03cd\u03cb\u03ce\u03c2\u03c4\u03c5\u03c6\u03c7\u03c8{ABCDEFGHI\u00ad\u03c9\u0390\u03b0\u2018\u2015}JKLMNOPQR\u00b1\u00bd\ufffd\u0387\u2019\u00a6\\\u20afSTUVWXYZ\u00b2\u00a7\u037a\ufffd\u00ab\u00ac0123456789\u00b3\u00a9\u20ac\ufffd\u00bb\u009f",
|
||||||
|
Aliases: []string{"ibm-9067_X100-2005", "ibm-9067"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-12712_P100-1998",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u05d0\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u00a2.<(+|&\u05d9\u05da\u05db\u05dc\u05dd\u05de\u05df\u05e0\u05e1!$*);\u00ac-/\u05e2\u05e3\u05e4\u05e5\u05e6\u05e7\u05e8\u05e9\u00a6,%_>?\ufffd\u05ea\ufffd\ufffd\u00a0\ufffd\ufffd\ufffd\u2017`:#@'=\"\ufffdabcdefghi\u00ab\u00bb\ufffd\ufffd\ufffd\u00b1\u00b0jklmnopqr\ufffd\ufffd\u20ac\u00b8\u20aa\u00a4\u00b5~stuvwxyz\ufffd\ufffd\ufffd\ufffd\ufffd\u00ae^\u00a3\u00a5\u2022\u00a9\u00a7\u00b6\u00bc\u00bd\u00be[]\u203e\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\ufffd\ufffd\ufffd\ufffd\ufffd}JKLMNOPQR\u00b9\u202d\u202e\u202c\ufffd\ufffd\\\u00f7STUVWXYZ\u00b2\ufffd\ufffd\ufffd\ufffd\ufffd0123456789\u00b3\u202a\u202b\u200e\u200f\u009f",
|
||||||
|
Aliases: []string{"ibm-12712_P100-1998", "ibm-12712", "ebcdic-he"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-16804_X110-1999",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\u0085\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u0651\ufe7d\u0640\u200b\u0621\u0622\ufe82\u0623\u00a2.<(+|&\ufe84\u0624\ufffd\ufffd\u0626\u0627\ufe8e\u0628\ufe91!$*);\u00ac-/\u0629\u062a\ufe97\u062b\ufe9b\u062c\ufe9f\u062d\u00a6,%_>?\ufea3\u062e\ufea7\u062f\u0630\u0631\u0632\u0633\ufeb3\u060c:#@'=\"\u0634abcdefghi\ufeb7\u0635\ufebb\u0636\ufebf\u0637\u0638jklmnopqr\u0639\ufeca\ufecb\ufecc\u063a\ufece\ufecf\u00f7stuvwxyz\ufed0\u0641\ufed3\u0642\ufed7\u0643\ufedb\u0644\ufef5\ufef6\ufef7\ufef8\ufffd\ufffd\ufefb\ufefc\ufedf\u0645\ufee3\u0646\ufee7\u0647\u061bABCDEFGHI\u00ad\ufeeb\ufffd\ufeec\ufffd\u0648\u061fJKLMNOPQR\u0649\ufef0\u064a\ufef2\ufef3\u0660\u00d7\u2007STUVWXYZ\u0661\u0662\ufffd\u0663\u0664\u06650123456789\u20ac\u0666\u0667\u0668\u0669\u009f",
|
||||||
|
Aliases: []string{"ibm-16804_X110-1999", "ibm-16804", "ebcdic-ar"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "KOI8-R",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\u00a0\u2321\u00b0\u00b2\u00b7\u00f7\u2550\u2551\u2552\u0451\u2553\u2554\u2555\u2556\u2557\u2558\u2559\u255a\u255b\u255c\u255d\u255e\u255f\u2560\u2561\u0401\u2562\u2563\u2564\u2565\u2566\u2567\u2568\u2569\u256a\u256b\u256c\u00a9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a",
|
||||||
|
Aliases: []string{"csKOI8R"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "KOI8-U",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\u00a0\u2321\u00b0\u00b2\u00b7\u00f7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u255d\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u256c\u00a9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1051_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\ufffd\u00c0\u00c2\u00c8\u00ca\u00cb\u00ce\u00cf\u00b4`\u02c6\u00a8\u02dc\u00d9\u00db\u00a3\u203e\u00dd\u00fd\u02da\u00c7\u00e7\u00d1\u00f1\u00a1\u00bf\u00a4\u00a3\u00a5\u00a7\u0192\u00a2\u00e2\u00ea\u00f4\u00fb\u00e1\u00e9\u00f3\u00fa\u00e0\u00e8\u00f2\u00f9\u00e4\u00eb\u00f6\u00fc\u00c5\u00ee\u00d8\u00c6\u00e5\u00ed\u00f8\u00e6\u00c4\u00ec\u00d6\u00dc\u00c9\u00ef\u00df\u00d4\u00c1\u00c3\u00e3\u00d0\u00f0\u00cd\u00cc\u00d3\u00d2\u00d5\u00f5\u0160\u0161\u00da\u0178\u00ff\u00de\u00fe\u00b7\u03bc\u00b6\u00be-\u00bc\u00bd\u00aa\u00ba\u00ab\u25a0\u00bb\u00b1\ufffd",
|
||||||
|
Aliases: []string{"ibm-1051_P100-1995", "ibm-1051", "hp-roman8", "roman8", "r8", "csHPRoman8"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ibm-1276_P100-1995",
|
||||||
|
SubstitutionChar: '?',
|
||||||
|
Repertoire: "\x00\x01\x02\x03\x04\x05\x06\a\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&\u2019()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\u2018abcdefghijklmnopqrstuvwxyz{|}~\x7f\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008a\u008b\u008c\u008d\u008e\u008f\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009a\u009b\u009c\u009d\u009e\u009f\ufffd\u00a1\u00a2\u00a3\u2044\u00a5\u0192\u00a7\u00a4'\u201c\u00ab\u2039\u203a\ufb01\ufb02\ufffd\u2013\u2020\u2021\u00b7\ufffd\u00b6\u2022\u201a\u201e\u201d\u00bb\u2026\u2030\ufffd\u00bf\ufffd`\u00b4\u02c6\u02dc\u00af\u02d8\u02d9\u00a8\ufffd\u02da\u00b8\ufffd\u02dd\u02db\u02c7\u2014\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u00c6\ufffd\u00aa\ufffd\ufffd\ufffd\ufffd\u0141\u00d8\u0152\u00ba\ufffd\ufffd\ufffd\ufffd\ufffd\u00e6\ufffd\ufffd\ufffd\u0131\ufffd\ufffd\u0142\u00f8\u0153\u00df\ufffd\ufffd\ufffd\ufffd",
|
||||||
|
Aliases: []string{"ibm-1276_P100-1995", "ibm-1276", "Adobe-Standard-Encoding", "csAdobeStandardEncoding"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ebcdic-xml-us",
|
||||||
|
SubstitutionChar: 0x6f,
|
||||||
|
Repertoire: "\x00\x01\x02\x03\u009c\t\u0086\x7f\u0097\u008d\u008e\v\f\r\x0e\x0f\x10\x11\x12\x13\u009d\n\b\u0087\x18\x19\u0092\u008f\x1c\x1d\x1e\x1f\u0080\u0081\u0082\u0083\u0084\n\x17\x1b\u0088\u0089\u008a\u008b\u008c\x05\x06\a\u0090\u0091\x16\u0093\u0094\u0095\u0096\x04\u0098\u0099\u009a\u009b\x14\x15\u009e\x1a \u00a0\u00e2\u00e4\u00e0\u00e1\u00e3\u00e5\u00e7\u00f1\u00a2.<(+|&\u00e9\u00ea\u00eb\u00e8\u00ed\u00ee\u00ef\u00ec\u00df!$*);\u00ac-/\u00c2\u00c4\u00c0\u00c1\u00c3\u00c5\u00c7\u00d1\u00a6,%_>?\u00f8\u00c9\u00ca\u00cb\u00c8\u00cd\u00ce\u00cf\u00cc`:#@'=\"\u00d8abcdefghi\u00ab\u00bb\u00f0\u00fd\u00fe\u00b1\u00b0jklmnopqr\u00aa\u00ba\u00e6\u00b8\u00c6\u20ac\u00b5~stuvwxyz\u00a1\u00bf\u00d0\u00dd\u00de\u00ae^\u00a3\u00a5\u00b7\u00a9\u00a7\u00b6\u00bc\u00bd\u00be[]\u00af\u00a8\u00b4\u00d7{ABCDEFGHI\u00ad\u00f4\u00f6\u00f2\u00f3\u00f5}JKLMNOPQR\u00b9\u00fb\u00fc\u00f9\u00fa\u00ff\\\u00f7STUVWXYZ\u00b2\u00d4\u00d6\u00d2\u00d3\u00d50123456789\u00b3\u00db\u00dc\u00d9\u00da\u009f",
|
||||||
|
Aliases: []string{"ebcdic-xml-us"},
|
||||||
|
},
|
||||||
|
}
|
76
modules/mahonia/ASCII.go
Normal file
76
modules/mahonia/ASCII.go
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
// Converters for ASCII and ISO-8859-1
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
for i := 0; i < len(asciiCharsets); i++ {
|
||||||
|
RegisterCharset(&asciiCharsets[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var asciiCharsets = []Charset{
|
||||||
|
{
|
||||||
|
Name: "US-ASCII",
|
||||||
|
NewDecoder: func() Decoder { return decodeASCIIRune },
|
||||||
|
NewEncoder: func() Encoder { return encodeASCIIRune },
|
||||||
|
Aliases: []string{"ASCII", "US", "ISO646-US", "IBM367", "cp367", "ANSI_X3.4-1968", "iso-ir-6", "ANSI_X3.4-1986", "ISO_646.irv:1991", "csASCII"},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "ISO-8859-1",
|
||||||
|
NewDecoder: func() Decoder { return decodeLatin1Rune },
|
||||||
|
NewEncoder: func() Encoder { return encodeLatin1Rune },
|
||||||
|
Aliases: []string{"latin1", "ISO Latin 1", "IBM819", "cp819", "ISO_8859-1:1987", "iso-ir-100", "l1", "csISOLatin1"},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeASCIIRune(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
b := p[0]
|
||||||
|
if b > 127 {
|
||||||
|
return 0xfffd, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
return rune(b), 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeASCIIRune(p []byte, c rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if c < 128 {
|
||||||
|
p[0] = byte(c)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeLatin1Rune(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
return rune(p[0]), 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeLatin1Rune(p []byte, c rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if c < 256 {
|
||||||
|
p[0] = byte(c)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
13707
modules/mahonia/big5-data.go
Normal file
13707
modules/mahonia/big5-data.go
Normal file
File diff suppressed because it is too large
Load Diff
89
modules/mahonia/big5.go
Normal file
89
modules/mahonia/big5.go
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
// Converters for Big 5 encoding.
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
RegisterCharset(&Charset{
|
||||||
|
Name: "Big5",
|
||||||
|
Aliases: []string{"csBig5"},
|
||||||
|
NewDecoder: func() Decoder {
|
||||||
|
return decodeBig5Rune
|
||||||
|
},
|
||||||
|
NewEncoder: func() Encoder {
|
||||||
|
big5Once.Do(reverseBig5Table)
|
||||||
|
return encodeBig5Rune
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeBig5Rune(p []byte) (r rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
b := p[0]
|
||||||
|
if b < 128 {
|
||||||
|
return rune(b), 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c := int(p[0])<<8 + int(p[1])
|
||||||
|
c = int(big5ToUnicode[c])
|
||||||
|
if c > 0 {
|
||||||
|
return rune(c), 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0xfffd, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeBig5Rune(p []byte, r rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if r < 128 {
|
||||||
|
p[0] = byte(r)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if r < 0x10000 {
|
||||||
|
c := unicodeToBig5[r]
|
||||||
|
if c > 0 {
|
||||||
|
p[0] = byte(c >> 8)
|
||||||
|
p[1] = byte(c)
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
var big5Once sync.Once
|
||||||
|
|
||||||
|
var unicodeToBig5 []uint16
|
||||||
|
|
||||||
|
func reverseBig5Table() {
|
||||||
|
unicodeToBig5 = make([]uint16, 65536)
|
||||||
|
|
||||||
|
for big5, unicode := range big5ToUnicode {
|
||||||
|
if unicode > 0 {
|
||||||
|
unicodeToBig5[unicode] = uint16(big5)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
115
modules/mahonia/charset.go
Normal file
115
modules/mahonia/charset.go
Normal file
|
@ -0,0 +1,115 @@
|
||||||
|
// This package is a character-set conversion library for Go.
|
||||||
|
//
|
||||||
|
// (DEPRECATED: use code.google.com/p/go.text/encoding, perhaps along with
|
||||||
|
// code.google.com/p/go.net/html/charset)
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"unicode"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Status is the type for the status return value from a Decoder or Encoder.
|
||||||
|
type Status int
|
||||||
|
|
||||||
|
const (
|
||||||
|
// SUCCESS means that the character was converted with no problems.
|
||||||
|
SUCCESS = Status(iota)
|
||||||
|
|
||||||
|
// INVALID_CHAR means that the source contained invalid bytes, or that the character
|
||||||
|
// could not be represented in the destination encoding.
|
||||||
|
// The Encoder or Decoder should have output a substitute character.
|
||||||
|
INVALID_CHAR
|
||||||
|
|
||||||
|
// NO_ROOM means there were not enough input bytes to form a complete character,
|
||||||
|
// or there was not enough room in the output buffer to write a complete character.
|
||||||
|
// No bytes were written, and no internal state was changed in the Encoder or Decoder.
|
||||||
|
NO_ROOM
|
||||||
|
|
||||||
|
// STATE_ONLY means that bytes were read or written indicating a state transition,
|
||||||
|
// but no actual character was processed. (Examples: byte order marks, ISO-2022 escape sequences)
|
||||||
|
STATE_ONLY
|
||||||
|
)
|
||||||
|
|
||||||
|
// A Decoder is a function that decodes a character set, one character at a time.
|
||||||
|
// It works much like utf8.DecodeRune, but has an aditional status return value.
|
||||||
|
type Decoder func(p []byte) (c rune, size int, status Status)
|
||||||
|
|
||||||
|
// An Encoder is a function that encodes a character set, one character at a time.
|
||||||
|
// It works much like utf8.EncodeRune, but has an additional status return value.
|
||||||
|
type Encoder func(p []byte, c rune) (size int, status Status)
|
||||||
|
|
||||||
|
// A Charset represents a character set that can be converted, and contains functions
|
||||||
|
// to create Converters to encode and decode strings in that character set.
|
||||||
|
type Charset struct {
|
||||||
|
// Name is the character set's canonical name.
|
||||||
|
Name string
|
||||||
|
|
||||||
|
// Aliases returns a list of alternate names.
|
||||||
|
Aliases []string
|
||||||
|
|
||||||
|
// NewDecoder returns a Decoder to convert from the charset to Unicode.
|
||||||
|
NewDecoder func() Decoder
|
||||||
|
|
||||||
|
// NewEncoder returns an Encoder to convert from Unicode to the charset.
|
||||||
|
NewEncoder func() Encoder
|
||||||
|
}
|
||||||
|
|
||||||
|
// The charsets are stored in charsets under their canonical names.
|
||||||
|
var charsets = make(map[string]*Charset)
|
||||||
|
|
||||||
|
// aliases maps their aliases to their canonical names.
|
||||||
|
var aliases = make(map[string]string)
|
||||||
|
|
||||||
|
// simplifyName converts a name to lower case and removes non-alphanumeric characters.
|
||||||
|
// This is how the names are used as keys to the maps.
|
||||||
|
func simplifyName(name string) string {
|
||||||
|
var buf bytes.Buffer
|
||||||
|
for _, c := range name {
|
||||||
|
switch {
|
||||||
|
case unicode.IsDigit(c):
|
||||||
|
buf.WriteRune(c)
|
||||||
|
case unicode.IsLetter(c):
|
||||||
|
buf.WriteRune(unicode.ToLower(c))
|
||||||
|
default:
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return buf.String()
|
||||||
|
}
|
||||||
|
|
||||||
|
// RegisterCharset adds a charset to the charsetMap.
|
||||||
|
func RegisterCharset(cs *Charset) {
|
||||||
|
name := cs.Name
|
||||||
|
charsets[name] = cs
|
||||||
|
aliases[simplifyName(name)] = name
|
||||||
|
for _, alias := range cs.Aliases {
|
||||||
|
aliases[simplifyName(alias)] = name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetCharset fetches a charset by name.
|
||||||
|
// If the name is not found, it returns nil.
|
||||||
|
func GetCharset(name string) *Charset {
|
||||||
|
return charsets[aliases[simplifyName(name)]]
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewDecoder returns a Decoder to decode the named charset.
|
||||||
|
// If the name is not found, it returns nil.
|
||||||
|
func NewDecoder(name string) Decoder {
|
||||||
|
cs := GetCharset(name)
|
||||||
|
if cs == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return cs.NewDecoder()
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewEncoder returns an Encoder to encode the named charset.
|
||||||
|
func NewEncoder(name string) Encoder {
|
||||||
|
cs := GetCharset(name)
|
||||||
|
if cs == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return cs.NewEncoder()
|
||||||
|
}
|
135
modules/mahonia/convert_string.go
Normal file
135
modules/mahonia/convert_string.go
Normal file
|
@ -0,0 +1,135 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"unicode/utf8"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ConvertString converts a string from UTF-8 to e's encoding.
|
||||||
|
func (e Encoder) ConvertString(s string) string {
|
||||||
|
dest := make([]byte, len(s)+10)
|
||||||
|
destPos := 0
|
||||||
|
|
||||||
|
for _, rune := range s {
|
||||||
|
retry:
|
||||||
|
size, status := e(dest[destPos:], rune)
|
||||||
|
|
||||||
|
if status == NO_ROOM {
|
||||||
|
newDest := make([]byte, len(dest)*2)
|
||||||
|
copy(newDest, dest)
|
||||||
|
dest = newDest
|
||||||
|
goto retry
|
||||||
|
}
|
||||||
|
|
||||||
|
if status == STATE_ONLY {
|
||||||
|
destPos += size
|
||||||
|
goto retry
|
||||||
|
}
|
||||||
|
|
||||||
|
destPos += size
|
||||||
|
}
|
||||||
|
|
||||||
|
return string(dest[:destPos])
|
||||||
|
}
|
||||||
|
|
||||||
|
// ConvertString converts a string from d's encoding to UTF-8.
|
||||||
|
func (d Decoder) ConvertString(s string) string {
|
||||||
|
bytes := []byte(s)
|
||||||
|
runes := make([]rune, len(s))
|
||||||
|
destPos := 0
|
||||||
|
|
||||||
|
for len(bytes) > 0 {
|
||||||
|
c, size, status := d(bytes)
|
||||||
|
|
||||||
|
if status == STATE_ONLY {
|
||||||
|
bytes = bytes[size:]
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if status == NO_ROOM {
|
||||||
|
c = 0xfffd
|
||||||
|
size = len(bytes)
|
||||||
|
status = INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
bytes = bytes[size:]
|
||||||
|
runes[destPos] = c
|
||||||
|
destPos++
|
||||||
|
}
|
||||||
|
|
||||||
|
return string(runes[:destPos])
|
||||||
|
}
|
||||||
|
|
||||||
|
// ConvertStringOK converts a string from UTF-8 to e's encoding. It also
|
||||||
|
// returns a boolean indicating whether every character was converted
|
||||||
|
// successfully.
|
||||||
|
func (e Encoder) ConvertStringOK(s string) (result string, ok bool) {
|
||||||
|
dest := make([]byte, len(s)+10)
|
||||||
|
destPos := 0
|
||||||
|
ok = true
|
||||||
|
|
||||||
|
for i, r := range s {
|
||||||
|
// The following test is copied from utf8.ValidString.
|
||||||
|
if r == utf8.RuneError && ok {
|
||||||
|
_, size := utf8.DecodeRuneInString(s[i:])
|
||||||
|
if size == 1 {
|
||||||
|
ok = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
retry:
|
||||||
|
size, status := e(dest[destPos:], r)
|
||||||
|
|
||||||
|
switch status {
|
||||||
|
case NO_ROOM:
|
||||||
|
newDest := make([]byte, len(dest)*2)
|
||||||
|
copy(newDest, dest)
|
||||||
|
dest = newDest
|
||||||
|
goto retry
|
||||||
|
|
||||||
|
case STATE_ONLY:
|
||||||
|
destPos += size
|
||||||
|
goto retry
|
||||||
|
|
||||||
|
case INVALID_CHAR:
|
||||||
|
ok = false
|
||||||
|
}
|
||||||
|
|
||||||
|
destPos += size
|
||||||
|
}
|
||||||
|
|
||||||
|
return string(dest[:destPos]), ok
|
||||||
|
}
|
||||||
|
|
||||||
|
// ConvertStringOK converts a string from d's encoding to UTF-8.
|
||||||
|
// It also returns a boolean indicating whether every character was converted
|
||||||
|
// successfully.
|
||||||
|
func (d Decoder) ConvertStringOK(s string) (result string, ok bool) {
|
||||||
|
bytes := []byte(s)
|
||||||
|
runes := make([]rune, len(s))
|
||||||
|
destPos := 0
|
||||||
|
ok = true
|
||||||
|
|
||||||
|
for len(bytes) > 0 {
|
||||||
|
c, size, status := d(bytes)
|
||||||
|
|
||||||
|
switch status {
|
||||||
|
case STATE_ONLY:
|
||||||
|
bytes = bytes[size:]
|
||||||
|
continue
|
||||||
|
|
||||||
|
case NO_ROOM:
|
||||||
|
c = 0xfffd
|
||||||
|
size = len(bytes)
|
||||||
|
ok = false
|
||||||
|
|
||||||
|
case INVALID_CHAR:
|
||||||
|
ok = false
|
||||||
|
}
|
||||||
|
|
||||||
|
bytes = bytes[size:]
|
||||||
|
runes[destPos] = c
|
||||||
|
destPos++
|
||||||
|
}
|
||||||
|
|
||||||
|
return string(runes[:destPos]), ok
|
||||||
|
}
|
76
modules/mahonia/cp51932.go
Normal file
76
modules/mahonia/cp51932.go
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"unicode/utf8"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Converters for Microsoft's version of the EUC-JP encoding
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
RegisterCharset(&Charset{
|
||||||
|
Name: "cp51932",
|
||||||
|
Aliases: []string{"windows-51932"},
|
||||||
|
NewDecoder: func() Decoder {
|
||||||
|
return decodeCP51932
|
||||||
|
},
|
||||||
|
NewEncoder: func() Encoder {
|
||||||
|
msJISTable.Reverse()
|
||||||
|
return encodeCP51932
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeCP51932(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
b := p[0]
|
||||||
|
switch {
|
||||||
|
case b < 0x80:
|
||||||
|
return rune(b), 1, SUCCESS
|
||||||
|
|
||||||
|
case b == 0x8e:
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
b2 := p[1]
|
||||||
|
if b2 < 0xa1 || b2 > 0xdf {
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
return rune(b2) + (0xff61 - 0xa1), 2, SUCCESS
|
||||||
|
|
||||||
|
case 0xa1 <= b && b <= 0xfe:
|
||||||
|
return msJISTable.DecodeHigh(p)
|
||||||
|
}
|
||||||
|
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeCP51932(p []byte, c rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if c < 0x80 {
|
||||||
|
p[0] = byte(c)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if c > 0xffff {
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
if 0xff61 <= c && c <= 0xff9f {
|
||||||
|
p[0] = 0x8e
|
||||||
|
p[1] = byte(c - (0xff61 - 0xa1))
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
return msJISTable.EncodeHigh(p, c)
|
||||||
|
}
|
179
modules/mahonia/entity.go
Normal file
179
modules/mahonia/entity.go
Normal file
|
@ -0,0 +1,179 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
// decoding HTML entities
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sort"
|
||||||
|
)
|
||||||
|
|
||||||
|
// EntityDecoder returns a Decoder that decodes HTML character entities.
|
||||||
|
// If there is no valid character entity at the current position, it returns INVALID_CHAR.
|
||||||
|
// So it needs to be combined with another Decoder via FallbackDecoder.
|
||||||
|
func EntityDecoder() Decoder {
|
||||||
|
var leftover rune // leftover rune from two-rune entity
|
||||||
|
return func(p []byte) (r rune, size int, status Status) {
|
||||||
|
if leftover != 0 {
|
||||||
|
r = leftover
|
||||||
|
leftover = 0
|
||||||
|
return r, 0, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if p[0] != '&' {
|
||||||
|
return 0xfffd, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 3 {
|
||||||
|
return 0, 1, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
r, size, status = 0xfffd, 1, INVALID_CHAR
|
||||||
|
n := 1 // number of bytes read so far
|
||||||
|
|
||||||
|
if p[n] == '#' {
|
||||||
|
n++
|
||||||
|
c := p[n]
|
||||||
|
hex := false
|
||||||
|
if c == 'x' || c == 'X' {
|
||||||
|
hex = true
|
||||||
|
n++
|
||||||
|
}
|
||||||
|
|
||||||
|
var x rune
|
||||||
|
for n < len(p) {
|
||||||
|
c = p[n]
|
||||||
|
n++
|
||||||
|
if hex {
|
||||||
|
if '0' <= c && c <= '9' {
|
||||||
|
x = 16*x + rune(c) - '0'
|
||||||
|
continue
|
||||||
|
} else if 'a' <= c && c <= 'f' {
|
||||||
|
x = 16*x + rune(c) - 'a' + 10
|
||||||
|
continue
|
||||||
|
} else if 'A' <= c && c <= 'F' {
|
||||||
|
x = 16*x + rune(c) - 'A' + 10
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
} else if '0' <= c && c <= '9' {
|
||||||
|
x = 10*x + rune(c) - '0'
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if c != ';' {
|
||||||
|
n--
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
if n == len(p) && p[n-1] != ';' {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
size = n
|
||||||
|
if p[n-1] == ';' {
|
||||||
|
n--
|
||||||
|
}
|
||||||
|
if hex {
|
||||||
|
n--
|
||||||
|
}
|
||||||
|
n--
|
||||||
|
// Now n is the number of actual digits read.
|
||||||
|
if n == 0 {
|
||||||
|
return 0xfffd, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
if 0x80 <= x && x <= 0x9F {
|
||||||
|
// Replace characters from Windows-1252 with UTF-8 equivalents.
|
||||||
|
x = replacementTable[x-0x80]
|
||||||
|
} else if x == 0 || (0xD800 <= x && x <= 0xDFFF) || x > 0x10FFFF {
|
||||||
|
// Replace invalid characters with the replacement character.
|
||||||
|
return 0xfffd, size, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
r = x
|
||||||
|
status = SUCCESS
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Look for a named entity in EntityList.
|
||||||
|
|
||||||
|
possible := entityList
|
||||||
|
for len(possible) > 0 {
|
||||||
|
if len(p) <= n {
|
||||||
|
leftover = 0
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
c := p[n]
|
||||||
|
|
||||||
|
// Narrow down the selection in possible to those items that have c in the
|
||||||
|
// appropriate byte.
|
||||||
|
first := sort.Search(len(possible), func(i int) bool {
|
||||||
|
e := possible[i].name
|
||||||
|
if len(e) < n {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return e[n-1] >= c
|
||||||
|
})
|
||||||
|
possible = possible[first:]
|
||||||
|
last := sort.Search(len(possible), func(i int) bool {
|
||||||
|
return possible[i].name[n-1] > c
|
||||||
|
})
|
||||||
|
possible = possible[:last]
|
||||||
|
|
||||||
|
n++
|
||||||
|
if len(possible) > 0 && len(possible[0].name) == n-1 {
|
||||||
|
r, leftover = possible[0].r1, possible[0].r2
|
||||||
|
size = n
|
||||||
|
status = SUCCESS
|
||||||
|
// but don't return yet, since we need the longest match
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// This table is copied from /src/pkg/html/escape.go in the Go source
|
||||||
|
//
|
||||||
|
// These replacements permit compatibility with old numeric entities that
|
||||||
|
// assumed Windows-1252 encoding.
|
||||||
|
// http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#consume-a-character-reference
|
||||||
|
var replacementTable = [...]rune{
|
||||||
|
'\u20AC', // First entry is what 0x80 should be replaced with.
|
||||||
|
'\u0081',
|
||||||
|
'\u201A',
|
||||||
|
'\u0192',
|
||||||
|
'\u201E',
|
||||||
|
'\u2026',
|
||||||
|
'\u2020',
|
||||||
|
'\u2021',
|
||||||
|
'\u02C6',
|
||||||
|
'\u2030',
|
||||||
|
'\u0160',
|
||||||
|
'\u2039',
|
||||||
|
'\u0152',
|
||||||
|
'\u008D',
|
||||||
|
'\u017D',
|
||||||
|
'\u008F',
|
||||||
|
'\u0090',
|
||||||
|
'\u2018',
|
||||||
|
'\u2019',
|
||||||
|
'\u201C',
|
||||||
|
'\u201D',
|
||||||
|
'\u2022',
|
||||||
|
'\u2013',
|
||||||
|
'\u2014',
|
||||||
|
'\u02DC',
|
||||||
|
'\u2122',
|
||||||
|
'\u0161',
|
||||||
|
'\u203A',
|
||||||
|
'\u0153',
|
||||||
|
'\u009D',
|
||||||
|
'\u017E',
|
||||||
|
'\u0178', // Last entry is 0x9F.
|
||||||
|
// 0x00->'\uFFFD' is handled programmatically.
|
||||||
|
// 0x0D->'\u000D' is a no-op.
|
||||||
|
}
|
2254
modules/mahonia/entity_data.go
Normal file
2254
modules/mahonia/entity_data.go
Normal file
File diff suppressed because it is too large
Load Diff
102
modules/mahonia/euc-jp.go
Normal file
102
modules/mahonia/euc-jp.go
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"unicode/utf8"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Converters for the EUC-JP encoding
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
RegisterCharset(&Charset{
|
||||||
|
Name: "EUC-JP",
|
||||||
|
Aliases: []string{"extended_unix_code_packed_format_for_japanese", "cseucpkdfmtjapanese"},
|
||||||
|
NewDecoder: func() Decoder {
|
||||||
|
return decodeEucJP
|
||||||
|
},
|
||||||
|
NewEncoder: func() Encoder {
|
||||||
|
jis0208Table.Reverse()
|
||||||
|
jis0212Table.Reverse()
|
||||||
|
return encodeEucJP
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeEucJP(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
b := p[0]
|
||||||
|
switch {
|
||||||
|
case b < 0x80:
|
||||||
|
return rune(b), 1, SUCCESS
|
||||||
|
|
||||||
|
case b == 0x8e:
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
b2 := p[1]
|
||||||
|
if b2 < 0xa1 || b2 > 0xdf {
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
return rune(b2) + (0xff61 - 0xa1), 2, SUCCESS
|
||||||
|
|
||||||
|
case b == 0x8f:
|
||||||
|
if len(p) < 3 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
c, size, status = jis0212Table.DecodeHigh(p[1:3])
|
||||||
|
if status == SUCCESS {
|
||||||
|
size = 3
|
||||||
|
}
|
||||||
|
return
|
||||||
|
|
||||||
|
case 0xa1 <= b && b <= 0xfe:
|
||||||
|
return jis0208Table.DecodeHigh(p)
|
||||||
|
}
|
||||||
|
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeEucJP(p []byte, c rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if c < 0x80 {
|
||||||
|
p[0] = byte(c)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if c > 0xffff {
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
if 0xff61 <= c && c <= 0xff9f {
|
||||||
|
p[0] = 0x8e
|
||||||
|
p[1] = byte(c - (0xff61 - 0xa1))
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
size, status = jis0208Table.EncodeHigh(p, c)
|
||||||
|
if status == SUCCESS {
|
||||||
|
return size, status
|
||||||
|
}
|
||||||
|
|
||||||
|
size, status = jis0212Table.EncodeHigh(p[1:], c)
|
||||||
|
switch status {
|
||||||
|
case SUCCESS:
|
||||||
|
p[0] = 0x8f
|
||||||
|
return size + 1, SUCCESS
|
||||||
|
|
||||||
|
case INVALID_CHAR:
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
return size, status
|
||||||
|
}
|
17072
modules/mahonia/euc-kr-data.go
Normal file
17072
modules/mahonia/euc-kr-data.go
Normal file
File diff suppressed because it is too large
Load Diff
89
modules/mahonia/euc-kr.go
Normal file
89
modules/mahonia/euc-kr.go
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
// Converters for the EUC-KR encoding.
|
||||||
|
|
||||||
|
import (
|
||||||
|
"unicode/utf8"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
RegisterCharset(&Charset{
|
||||||
|
Name: "EUC-KR",
|
||||||
|
Aliases: []string{
|
||||||
|
"ibm-1363",
|
||||||
|
"KS_C_5601-1987",
|
||||||
|
"KS_C_5601-1989",
|
||||||
|
"KSC_5601",
|
||||||
|
"Korean",
|
||||||
|
"iso-ir-149",
|
||||||
|
"cp1363",
|
||||||
|
"5601",
|
||||||
|
"ksc",
|
||||||
|
"windows-949",
|
||||||
|
"ibm-970",
|
||||||
|
"cp970",
|
||||||
|
"970",
|
||||||
|
"cp949",
|
||||||
|
},
|
||||||
|
NewDecoder: func() Decoder {
|
||||||
|
return decodeEucKr
|
||||||
|
},
|
||||||
|
NewEncoder: func() Encoder {
|
||||||
|
eucKrOnce.Do(reverseEucKrTable)
|
||||||
|
return encodeEucKr
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeEucKr(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
b := p[0]
|
||||||
|
if b < 0x80 {
|
||||||
|
return rune(b), 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
euc := int(b)<<8 + int(p[1])
|
||||||
|
c = rune(eucKrToUnicode[euc])
|
||||||
|
|
||||||
|
if c == 0 {
|
||||||
|
return utf8.RuneError, 2, INVALID_CHAR
|
||||||
|
}
|
||||||
|
return c, 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeEucKr(p []byte, c rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if c < 0x80 {
|
||||||
|
p[0] = byte(c)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if c > 0xffff {
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
euc := unicodeToEucKr[c]
|
||||||
|
if euc == 0 {
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
p[0] = byte(euc >> 8)
|
||||||
|
p[1] = byte(euc)
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
19
modules/mahonia/fallback.go
Normal file
19
modules/mahonia/fallback.go
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
// FallbackDecoder combines a series of Decoders into one.
|
||||||
|
// If the first Decoder returns a status of INVALID_CHAR, the others are tried as well.
|
||||||
|
//
|
||||||
|
// Note: if the text to be decoded ends with a sequence of bytes that is not a valid character in the first charset,
|
||||||
|
// but it could be the beginning of a valid character, the FallbackDecoder will give a status of NO_ROOM instead of
|
||||||
|
// falling back to the other Decoders.
|
||||||
|
func FallbackDecoder(decoders ...Decoder) Decoder {
|
||||||
|
return func(p []byte) (c rune, size int, status Status) {
|
||||||
|
for _, d := range decoders {
|
||||||
|
c, size, status = d(p)
|
||||||
|
if status != INVALID_CHAR {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
}
|
6839
modules/mahonia/gb18030-data.go
Normal file
6839
modules/mahonia/gb18030-data.go
Normal file
File diff suppressed because it is too large
Load Diff
156
modules/mahonia/gb18030.go
Normal file
156
modules/mahonia/gb18030.go
Normal file
|
@ -0,0 +1,156 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Converters for GB18030 encoding.
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
RegisterCharset(&Charset{
|
||||||
|
Name: "GB18030",
|
||||||
|
NewDecoder: func() Decoder {
|
||||||
|
gb18030Once.Do(buildGB18030Tables)
|
||||||
|
return decodeGB18030Rune
|
||||||
|
},
|
||||||
|
NewEncoder: func() Encoder {
|
||||||
|
gb18030Once.Do(buildGB18030Tables)
|
||||||
|
return encodeGB18030Rune
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeGB18030Rune(p []byte) (r rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
b := p[0]
|
||||||
|
if b < 128 {
|
||||||
|
return rune(b), 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if p[0] < 0x81 || p[0] > 0xfe {
|
||||||
|
return 0xfffd, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
if p[1] >= 0x40 {
|
||||||
|
// 2-byte character
|
||||||
|
c := uint16(p[0])<<8 + uint16(p[1])
|
||||||
|
r = rune(gbkToUnicode[c])
|
||||||
|
if r == 0 {
|
||||||
|
r = gbkToUnicodeExtra[c]
|
||||||
|
}
|
||||||
|
|
||||||
|
if r != 0 {
|
||||||
|
return r, 2, SUCCESS
|
||||||
|
}
|
||||||
|
} else if p[1] >= 0x30 {
|
||||||
|
// 4-byte character
|
||||||
|
if len(p) < 4 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
if p[2] < 0x81 || p[2] > 0xfe || p[3] < 0x30 || p[3] > 0x39 {
|
||||||
|
return 0xfffd, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
code := uint32(p[0])<<24 + uint32(p[1])<<16 + uint32(p[2])<<8 + uint32(p[3])
|
||||||
|
lin := gb18030Linear(code)
|
||||||
|
|
||||||
|
if lin <= maxGB18030Linear {
|
||||||
|
r = rune(gb18030LinearToUnicode[lin])
|
||||||
|
if r != 0 {
|
||||||
|
return r, 4, SUCCESS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, rng := range gb18030Ranges {
|
||||||
|
if lin >= rng.firstGB && lin <= rng.lastGB {
|
||||||
|
return rng.firstRune + rune(lin) - rune(rng.firstGB), 4, SUCCESS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0xfffd, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeGB18030Rune(p []byte, r rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if r < 128 {
|
||||||
|
p[0] = byte(r)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var c uint16
|
||||||
|
if r < 0x10000 {
|
||||||
|
c = unicodeToGBK[r]
|
||||||
|
} else {
|
||||||
|
c = unicodeToGBKExtra[r]
|
||||||
|
}
|
||||||
|
|
||||||
|
if c != 0 {
|
||||||
|
p[0] = byte(c >> 8)
|
||||||
|
p[1] = byte(c)
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 4 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if r < 0x10000 {
|
||||||
|
f := unicodeToGB18030[r]
|
||||||
|
if f != 0 {
|
||||||
|
p[0] = byte(f >> 24)
|
||||||
|
p[1] = byte(f >> 16)
|
||||||
|
p[2] = byte(f >> 8)
|
||||||
|
p[3] = byte(f)
|
||||||
|
return 4, SUCCESS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, rng := range gb18030Ranges {
|
||||||
|
if r >= rng.firstRune && r <= rng.lastRune {
|
||||||
|
lin := rng.firstGB + uint32(r) - uint32(rng.firstRune)
|
||||||
|
p[0] = byte(lin/(10*126*10)) + 0x81
|
||||||
|
p[1] = byte(lin/(126*10)%10) + 0x30
|
||||||
|
p[2] = byte(lin/10%126) + 0x81
|
||||||
|
p[3] = byte(lin%10) + 0x30
|
||||||
|
return 4, SUCCESS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
p[0] = 0x1a
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
var gb18030Once sync.Once
|
||||||
|
|
||||||
|
// Mapping from gb18039Linear values to Unicode.
|
||||||
|
var gb18030LinearToUnicode []uint16
|
||||||
|
|
||||||
|
var unicodeToGB18030 []uint32
|
||||||
|
|
||||||
|
func buildGB18030Tables() {
|
||||||
|
gb18030LinearToUnicode = make([]uint16, maxGB18030Linear+1)
|
||||||
|
unicodeToGB18030 = make([]uint32, 65536)
|
||||||
|
for _, data := range gb18030Data {
|
||||||
|
gb18030LinearToUnicode[gb18030Linear(data.gb18030)] = data.unicode
|
||||||
|
unicodeToGB18030[data.unicode] = data.gb18030
|
||||||
|
}
|
||||||
|
}
|
47922
modules/mahonia/gbk-data.go
Normal file
47922
modules/mahonia/gbk-data.go
Normal file
File diff suppressed because it is too large
Load Diff
78
modules/mahonia/gbk.go
Normal file
78
modules/mahonia/gbk.go
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
// Converters for GBK encoding.
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
RegisterCharset(&Charset{
|
||||||
|
Name: "GBK",
|
||||||
|
Aliases: []string{"GB2312"}, // GBK is a superset of GB2312.
|
||||||
|
NewDecoder: func() Decoder {
|
||||||
|
return decodeGBKRune
|
||||||
|
},
|
||||||
|
NewEncoder: func() Encoder {
|
||||||
|
return encodeGBKRune
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeGBKRune(p []byte) (r rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
b := p[0]
|
||||||
|
if b < 128 {
|
||||||
|
return rune(b), 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c := uint16(p[0])<<8 + uint16(p[1])
|
||||||
|
r = rune(gbkToUnicode[c])
|
||||||
|
if r == 0 {
|
||||||
|
r = gbkToUnicodeExtra[c]
|
||||||
|
}
|
||||||
|
|
||||||
|
if r != 0 {
|
||||||
|
return r, 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0xfffd, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeGBKRune(p []byte, r rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if r < 128 {
|
||||||
|
p[0] = byte(r)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var c uint16
|
||||||
|
if r < 0x10000 {
|
||||||
|
c = unicodeToGBK[r]
|
||||||
|
} else {
|
||||||
|
c = unicodeToGBKExtra[r]
|
||||||
|
}
|
||||||
|
|
||||||
|
if c != 0 {
|
||||||
|
p[0] = byte(c >> 8)
|
||||||
|
p[1] = byte(c)
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
p[0] = 0x1a
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
124
modules/mahonia/iso2022jp.go
Normal file
124
modules/mahonia/iso2022jp.go
Normal file
|
@ -0,0 +1,124 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"unicode/utf8"
|
||||||
|
)
|
||||||
|
|
||||||
|
// converters for ISO-2022-JP encoding
|
||||||
|
|
||||||
|
const esc = 27
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
type jpEncoding int
|
||||||
|
const (
|
||||||
|
ascii jpEncoding = iota
|
||||||
|
jisX0201Roman
|
||||||
|
jisX0208
|
||||||
|
)
|
||||||
|
|
||||||
|
RegisterCharset(&Charset{
|
||||||
|
Name: "ISO-2022-JP",
|
||||||
|
NewDecoder: func() Decoder {
|
||||||
|
encoding := ascii
|
||||||
|
return func(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
b := p[0]
|
||||||
|
if b == esc {
|
||||||
|
if len(p) < 3 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
switch p[1] {
|
||||||
|
case '(':
|
||||||
|
switch p[2] {
|
||||||
|
case 'B':
|
||||||
|
encoding = ascii
|
||||||
|
return 0, 3, STATE_ONLY
|
||||||
|
|
||||||
|
case 'J':
|
||||||
|
encoding = jisX0201Roman
|
||||||
|
return 0, 3, STATE_ONLY
|
||||||
|
}
|
||||||
|
|
||||||
|
case '$':
|
||||||
|
switch p[2] {
|
||||||
|
case '@', 'B':
|
||||||
|
encoding = jisX0208
|
||||||
|
return 0, 3, STATE_ONLY
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
switch encoding {
|
||||||
|
case ascii:
|
||||||
|
if b > 127 {
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
return rune(b), 1, SUCCESS
|
||||||
|
|
||||||
|
case jisX0201Roman:
|
||||||
|
if b > 127 {
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
switch b {
|
||||||
|
case '\\':
|
||||||
|
return 0xA5, 1, SUCCESS
|
||||||
|
case '~':
|
||||||
|
return 0x203E, 1, SUCCESS
|
||||||
|
}
|
||||||
|
return rune(b), 1, SUCCESS
|
||||||
|
|
||||||
|
case jisX0208:
|
||||||
|
return jis0208Table.DecodeLow(p)
|
||||||
|
}
|
||||||
|
panic("unreachable")
|
||||||
|
}
|
||||||
|
},
|
||||||
|
NewEncoder: func() Encoder {
|
||||||
|
jis0208Table.Reverse()
|
||||||
|
encoding := ascii
|
||||||
|
return func(p []byte, c rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if c < 128 {
|
||||||
|
if encoding != ascii {
|
||||||
|
if len(p) < 4 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
p[0], p[1], p[2] = esc, '(', 'B'
|
||||||
|
p[3] = byte(c)
|
||||||
|
encoding = ascii
|
||||||
|
return 4, SUCCESS
|
||||||
|
}
|
||||||
|
p[0] = byte(c)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if c > 65535 {
|
||||||
|
return 0, INVALID_CHAR
|
||||||
|
}
|
||||||
|
jis := jis0208Table.FromUnicode[c]
|
||||||
|
if jis == [2]byte{0, 0} && c != rune(jis0208Table.Data[0][0]) {
|
||||||
|
return 0, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
if encoding != jisX0208 {
|
||||||
|
if len(p) < 3 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
p[0], p[1], p[2] = esc, '$', 'B'
|
||||||
|
encoding = jisX0208
|
||||||
|
return 3, STATE_ONLY
|
||||||
|
}
|
||||||
|
|
||||||
|
p[0] = jis[0] + 0x21
|
||||||
|
p[1] = jis[1] + 0x21
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
162
modules/mahonia/jis0201-data.go
Normal file
162
modules/mahonia/jis0201-data.go
Normal file
|
@ -0,0 +1,162 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
var jis0201ToUnicode = [256]uint16{
|
||||||
|
0x20: 0x0020, // SPACE
|
||||||
|
0x21: 0x0021, // EXCLAMATION MARK
|
||||||
|
0x22: 0x0022, // QUOTATION MARK
|
||||||
|
0x23: 0x0023, // NUMBER SIGN
|
||||||
|
0x24: 0x0024, // DOLLAR SIGN
|
||||||
|
0x25: 0x0025, // PERCENT SIGN
|
||||||
|
0x26: 0x0026, // AMPERSAND
|
||||||
|
0x27: 0x0027, // APOSTROPHE
|
||||||
|
0x28: 0x0028, // LEFT PARENTHESIS
|
||||||
|
0x29: 0x0029, // RIGHT PARENTHESIS
|
||||||
|
0x2A: 0x002A, // ASTERISK
|
||||||
|
0x2B: 0x002B, // PLUS SIGN
|
||||||
|
0x2C: 0x002C, // COMMA
|
||||||
|
0x2D: 0x002D, // HYPHEN-MINUS
|
||||||
|
0x2E: 0x002E, // FULL STOP
|
||||||
|
0x2F: 0x002F, // SOLIDUS
|
||||||
|
0x30: 0x0030, // DIGIT ZERO
|
||||||
|
0x31: 0x0031, // DIGIT ONE
|
||||||
|
0x32: 0x0032, // DIGIT TWO
|
||||||
|
0x33: 0x0033, // DIGIT THREE
|
||||||
|
0x34: 0x0034, // DIGIT FOUR
|
||||||
|
0x35: 0x0035, // DIGIT FIVE
|
||||||
|
0x36: 0x0036, // DIGIT SIX
|
||||||
|
0x37: 0x0037, // DIGIT SEVEN
|
||||||
|
0x38: 0x0038, // DIGIT EIGHT
|
||||||
|
0x39: 0x0039, // DIGIT NINE
|
||||||
|
0x3A: 0x003A, // COLON
|
||||||
|
0x3B: 0x003B, // SEMICOLON
|
||||||
|
0x3C: 0x003C, // LESS-THAN SIGN
|
||||||
|
0x3D: 0x003D, // EQUALS SIGN
|
||||||
|
0x3E: 0x003E, // GREATER-THAN SIGN
|
||||||
|
0x3F: 0x003F, // QUESTION MARK
|
||||||
|
0x40: 0x0040, // COMMERCIAL AT
|
||||||
|
0x41: 0x0041, // LATIN CAPITAL LETTER A
|
||||||
|
0x42: 0x0042, // LATIN CAPITAL LETTER B
|
||||||
|
0x43: 0x0043, // LATIN CAPITAL LETTER C
|
||||||
|
0x44: 0x0044, // LATIN CAPITAL LETTER D
|
||||||
|
0x45: 0x0045, // LATIN CAPITAL LETTER E
|
||||||
|
0x46: 0x0046, // LATIN CAPITAL LETTER F
|
||||||
|
0x47: 0x0047, // LATIN CAPITAL LETTER G
|
||||||
|
0x48: 0x0048, // LATIN CAPITAL LETTER H
|
||||||
|
0x49: 0x0049, // LATIN CAPITAL LETTER I
|
||||||
|
0x4A: 0x004A, // LATIN CAPITAL LETTER J
|
||||||
|
0x4B: 0x004B, // LATIN CAPITAL LETTER K
|
||||||
|
0x4C: 0x004C, // LATIN CAPITAL LETTER L
|
||||||
|
0x4D: 0x004D, // LATIN CAPITAL LETTER M
|
||||||
|
0x4E: 0x004E, // LATIN CAPITAL LETTER N
|
||||||
|
0x4F: 0x004F, // LATIN CAPITAL LETTER O
|
||||||
|
0x50: 0x0050, // LATIN CAPITAL LETTER P
|
||||||
|
0x51: 0x0051, // LATIN CAPITAL LETTER Q
|
||||||
|
0x52: 0x0052, // LATIN CAPITAL LETTER R
|
||||||
|
0x53: 0x0053, // LATIN CAPITAL LETTER S
|
||||||
|
0x54: 0x0054, // LATIN CAPITAL LETTER T
|
||||||
|
0x55: 0x0055, // LATIN CAPITAL LETTER U
|
||||||
|
0x56: 0x0056, // LATIN CAPITAL LETTER V
|
||||||
|
0x57: 0x0057, // LATIN CAPITAL LETTER W
|
||||||
|
0x58: 0x0058, // LATIN CAPITAL LETTER X
|
||||||
|
0x59: 0x0059, // LATIN CAPITAL LETTER Y
|
||||||
|
0x5A: 0x005A, // LATIN CAPITAL LETTER Z
|
||||||
|
0x5B: 0x005B, // LEFT SQUARE BRACKET
|
||||||
|
0x5C: 0x00A5, // YEN SIGN
|
||||||
|
0x5D: 0x005D, // RIGHT SQUARE BRACKET
|
||||||
|
0x5E: 0x005E, // CIRCUMFLEX ACCENT
|
||||||
|
0x5F: 0x005F, // LOW LINE
|
||||||
|
0x60: 0x0060, // GRAVE ACCENT
|
||||||
|
0x61: 0x0061, // LATIN SMALL LETTER A
|
||||||
|
0x62: 0x0062, // LATIN SMALL LETTER B
|
||||||
|
0x63: 0x0063, // LATIN SMALL LETTER C
|
||||||
|
0x64: 0x0064, // LATIN SMALL LETTER D
|
||||||
|
0x65: 0x0065, // LATIN SMALL LETTER E
|
||||||
|
0x66: 0x0066, // LATIN SMALL LETTER F
|
||||||
|
0x67: 0x0067, // LATIN SMALL LETTER G
|
||||||
|
0x68: 0x0068, // LATIN SMALL LETTER H
|
||||||
|
0x69: 0x0069, // LATIN SMALL LETTER I
|
||||||
|
0x6A: 0x006A, // LATIN SMALL LETTER J
|
||||||
|
0x6B: 0x006B, // LATIN SMALL LETTER K
|
||||||
|
0x6C: 0x006C, // LATIN SMALL LETTER L
|
||||||
|
0x6D: 0x006D, // LATIN SMALL LETTER M
|
||||||
|
0x6E: 0x006E, // LATIN SMALL LETTER N
|
||||||
|
0x6F: 0x006F, // LATIN SMALL LETTER O
|
||||||
|
0x70: 0x0070, // LATIN SMALL LETTER P
|
||||||
|
0x71: 0x0071, // LATIN SMALL LETTER Q
|
||||||
|
0x72: 0x0072, // LATIN SMALL LETTER R
|
||||||
|
0x73: 0x0073, // LATIN SMALL LETTER S
|
||||||
|
0x74: 0x0074, // LATIN SMALL LETTER T
|
||||||
|
0x75: 0x0075, // LATIN SMALL LETTER U
|
||||||
|
0x76: 0x0076, // LATIN SMALL LETTER V
|
||||||
|
0x77: 0x0077, // LATIN SMALL LETTER W
|
||||||
|
0x78: 0x0078, // LATIN SMALL LETTER X
|
||||||
|
0x79: 0x0079, // LATIN SMALL LETTER Y
|
||||||
|
0x7A: 0x007A, // LATIN SMALL LETTER Z
|
||||||
|
0x7B: 0x007B, // LEFT CURLY BRACKET
|
||||||
|
0x7C: 0x007C, // VERTICAL LINE
|
||||||
|
0x7D: 0x007D, // RIGHT CURLY BRACKET
|
||||||
|
0x7E: 0x203E, // OVERLINE
|
||||||
|
0xA1: 0xFF61, // HALFWIDTH IDEOGRAPHIC FULL STOP
|
||||||
|
0xA2: 0xFF62, // HALFWIDTH LEFT CORNER BRACKET
|
||||||
|
0xA3: 0xFF63, // HALFWIDTH RIGHT CORNER BRACKET
|
||||||
|
0xA4: 0xFF64, // HALFWIDTH IDEOGRAPHIC COMMA
|
||||||
|
0xA5: 0xFF65, // HALFWIDTH KATAKANA MIDDLE DOT
|
||||||
|
0xA6: 0xFF66, // HALFWIDTH KATAKANA LETTER WO
|
||||||
|
0xA7: 0xFF67, // HALFWIDTH KATAKANA LETTER SMALL A
|
||||||
|
0xA8: 0xFF68, // HALFWIDTH KATAKANA LETTER SMALL I
|
||||||
|
0xA9: 0xFF69, // HALFWIDTH KATAKANA LETTER SMALL U
|
||||||
|
0xAA: 0xFF6A, // HALFWIDTH KATAKANA LETTER SMALL E
|
||||||
|
0xAB: 0xFF6B, // HALFWIDTH KATAKANA LETTER SMALL O
|
||||||
|
0xAC: 0xFF6C, // HALFWIDTH KATAKANA LETTER SMALL YA
|
||||||
|
0xAD: 0xFF6D, // HALFWIDTH KATAKANA LETTER SMALL YU
|
||||||
|
0xAE: 0xFF6E, // HALFWIDTH KATAKANA LETTER SMALL YO
|
||||||
|
0xAF: 0xFF6F, // HALFWIDTH KATAKANA LETTER SMALL TU
|
||||||
|
0xB0: 0xFF70, // HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK
|
||||||
|
0xB1: 0xFF71, // HALFWIDTH KATAKANA LETTER A
|
||||||
|
0xB2: 0xFF72, // HALFWIDTH KATAKANA LETTER I
|
||||||
|
0xB3: 0xFF73, // HALFWIDTH KATAKANA LETTER U
|
||||||
|
0xB4: 0xFF74, // HALFWIDTH KATAKANA LETTER E
|
||||||
|
0xB5: 0xFF75, // HALFWIDTH KATAKANA LETTER O
|
||||||
|
0xB6: 0xFF76, // HALFWIDTH KATAKANA LETTER KA
|
||||||
|
0xB7: 0xFF77, // HALFWIDTH KATAKANA LETTER KI
|
||||||
|
0xB8: 0xFF78, // HALFWIDTH KATAKANA LETTER KU
|
||||||
|
0xB9: 0xFF79, // HALFWIDTH KATAKANA LETTER KE
|
||||||
|
0xBA: 0xFF7A, // HALFWIDTH KATAKANA LETTER KO
|
||||||
|
0xBB: 0xFF7B, // HALFWIDTH KATAKANA LETTER SA
|
||||||
|
0xBC: 0xFF7C, // HALFWIDTH KATAKANA LETTER SI
|
||||||
|
0xBD: 0xFF7D, // HALFWIDTH KATAKANA LETTER SU
|
||||||
|
0xBE: 0xFF7E, // HALFWIDTH KATAKANA LETTER SE
|
||||||
|
0xBF: 0xFF7F, // HALFWIDTH KATAKANA LETTER SO
|
||||||
|
0xC0: 0xFF80, // HALFWIDTH KATAKANA LETTER TA
|
||||||
|
0xC1: 0xFF81, // HALFWIDTH KATAKANA LETTER TI
|
||||||
|
0xC2: 0xFF82, // HALFWIDTH KATAKANA LETTER TU
|
||||||
|
0xC3: 0xFF83, // HALFWIDTH KATAKANA LETTER TE
|
||||||
|
0xC4: 0xFF84, // HALFWIDTH KATAKANA LETTER TO
|
||||||
|
0xC5: 0xFF85, // HALFWIDTH KATAKANA LETTER NA
|
||||||
|
0xC6: 0xFF86, // HALFWIDTH KATAKANA LETTER NI
|
||||||
|
0xC7: 0xFF87, // HALFWIDTH KATAKANA LETTER NU
|
||||||
|
0xC8: 0xFF88, // HALFWIDTH KATAKANA LETTER NE
|
||||||
|
0xC9: 0xFF89, // HALFWIDTH KATAKANA LETTER NO
|
||||||
|
0xCA: 0xFF8A, // HALFWIDTH KATAKANA LETTER HA
|
||||||
|
0xCB: 0xFF8B, // HALFWIDTH KATAKANA LETTER HI
|
||||||
|
0xCC: 0xFF8C, // HALFWIDTH KATAKANA LETTER HU
|
||||||
|
0xCD: 0xFF8D, // HALFWIDTH KATAKANA LETTER HE
|
||||||
|
0xCE: 0xFF8E, // HALFWIDTH KATAKANA LETTER HO
|
||||||
|
0xCF: 0xFF8F, // HALFWIDTH KATAKANA LETTER MA
|
||||||
|
0xD0: 0xFF90, // HALFWIDTH KATAKANA LETTER MI
|
||||||
|
0xD1: 0xFF91, // HALFWIDTH KATAKANA LETTER MU
|
||||||
|
0xD2: 0xFF92, // HALFWIDTH KATAKANA LETTER ME
|
||||||
|
0xD3: 0xFF93, // HALFWIDTH KATAKANA LETTER MO
|
||||||
|
0xD4: 0xFF94, // HALFWIDTH KATAKANA LETTER YA
|
||||||
|
0xD5: 0xFF95, // HALFWIDTH KATAKANA LETTER YU
|
||||||
|
0xD6: 0xFF96, // HALFWIDTH KATAKANA LETTER YO
|
||||||
|
0xD7: 0xFF97, // HALFWIDTH KATAKANA LETTER RA
|
||||||
|
0xD8: 0xFF98, // HALFWIDTH KATAKANA LETTER RI
|
||||||
|
0xD9: 0xFF99, // HALFWIDTH KATAKANA LETTER RU
|
||||||
|
0xDA: 0xFF9A, // HALFWIDTH KATAKANA LETTER RE
|
||||||
|
0xDB: 0xFF9B, // HALFWIDTH KATAKANA LETTER RO
|
||||||
|
0xDC: 0xFF9C, // HALFWIDTH KATAKANA LETTER WA
|
||||||
|
0xDD: 0xFF9D, // HALFWIDTH KATAKANA LETTER N
|
||||||
|
0xDE: 0xFF9E, // HALFWIDTH KATAKANA VOICED SOUND MARK
|
||||||
|
0xDF: 0xFF9F, // HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK
|
||||||
|
}
|
7039
modules/mahonia/jis0208-data.go
Normal file
7039
modules/mahonia/jis0208-data.go
Normal file
File diff suppressed because it is too large
Load Diff
6209
modules/mahonia/jis0212-data.go
Normal file
6209
modules/mahonia/jis0212-data.go
Normal file
File diff suppressed because it is too large
Load Diff
88
modules/mahonia/kuten.go
Normal file
88
modules/mahonia/kuten.go
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync"
|
||||||
|
"unicode/utf8"
|
||||||
|
)
|
||||||
|
|
||||||
|
// A kutenTable holds the data for a double-byte character set, arranged by ku
|
||||||
|
// (区, zone) and ten (点, position). These can be converted to various actual
|
||||||
|
// encoding schemes.
|
||||||
|
type kutenTable struct {
|
||||||
|
// Data[ku][ten] is the unicode value for the character at that zone and
|
||||||
|
// position.
|
||||||
|
Data [94][94]uint16
|
||||||
|
|
||||||
|
// FromUnicode holds the ku and ten for each Unicode code point.
|
||||||
|
// It is not available until Reverse() has been called.
|
||||||
|
FromUnicode [][2]byte
|
||||||
|
|
||||||
|
// once is used to synchronize the generation of FromUnicode.
|
||||||
|
once sync.Once
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reverse generates FromUnicode.
|
||||||
|
func (t *kutenTable) Reverse() {
|
||||||
|
t.once.Do(func() {
|
||||||
|
t.FromUnicode = make([][2]byte, 65536)
|
||||||
|
for ku := range t.Data {
|
||||||
|
for ten, unicode := range t.Data[ku] {
|
||||||
|
t.FromUnicode[unicode] = [2]byte{byte(ku), byte(ten)}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// DecodeLow decodes a character from an encoding that does not have the high
|
||||||
|
// bit set.
|
||||||
|
func (t *kutenTable) DecodeLow(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
ku := p[0] - 0x21
|
||||||
|
ten := p[1] - 0x21
|
||||||
|
if ku > 93 || ten > 93 {
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
u := t.Data[ku][ten]
|
||||||
|
if u == 0 {
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
return rune(u), 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
// DecodeHigh decodes a character from an encoding that has the high bit set.
|
||||||
|
func (t *kutenTable) DecodeHigh(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
ku := p[0] - 0xa1
|
||||||
|
ten := p[1] - 0xa1
|
||||||
|
if ku > 93 || ten > 93 {
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
u := t.Data[ku][ten]
|
||||||
|
if u == 0 {
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
return rune(u), 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
// EncodeHigh encodes a character in an encoding that has the high bit set.
|
||||||
|
func (t *kutenTable) EncodeHigh(p []byte, c rune) (size int, status Status) {
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
if c > 0xffff {
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
kuten := t.FromUnicode[c]
|
||||||
|
if kuten == [2]byte{0, 0} && c != rune(t.Data[0][0]) {
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
p[0] = kuten[0] + 0xa1
|
||||||
|
p[1] = kuten[1] + 0xa1
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
229
modules/mahonia/mahonia_test.go
Normal file
229
modules/mahonia/mahonia_test.go
Normal file
|
@ -0,0 +1,229 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"io/ioutil"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
var nameTests = map[string]string{
|
||||||
|
"utf8": "utf8",
|
||||||
|
"ISO 8859-1": "iso88591",
|
||||||
|
"Big5": "big5",
|
||||||
|
"": "",
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSimplifyName(t *testing.T) {
|
||||||
|
for name, simple := range nameTests {
|
||||||
|
if simple != simplifyName(name) {
|
||||||
|
t.Errorf("%s came out as %s instead of as %s", name, simplifyName(name), simple)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var testData = []struct {
|
||||||
|
utf8, other, otherEncoding string
|
||||||
|
}{
|
||||||
|
{"Résumé", "Résumé", "utf8"},
|
||||||
|
{"Résumé", "R\xe9sum\xe9", "latin-1"},
|
||||||
|
{"これは漢字です。", "S0\x8c0o0\"oW[g0Y0\x020", "UTF-16LE"},
|
||||||
|
{"これは漢字です。", "0S0\x8c0oo\"[W0g0Y0\x02", "UTF-16BE"},
|
||||||
|
{"これは漢字です。", "\xfe\xff0S0\x8c0oo\"[W0g0Y0\x02", "UTF-16"},
|
||||||
|
{"𝄢𝄞𝄪𝄫", "\xfe\xff\xd8\x34\xdd\x22\xd8\x34\xdd\x1e\xd8\x34\xdd\x2a\xd8\x34\xdd\x2b", "UTF-16"},
|
||||||
|
{"Hello, world", "Hello, world", "ASCII"},
|
||||||
|
{"Gdańsk", "Gda\xf1sk", "ISO-8859-2"},
|
||||||
|
{"Ââ Čč Đđ Ŋŋ Õõ Šš Žž Åå Ää", "\xc2\xe2 \xc8\xe8 \xa9\xb9 \xaf\xbf \xd5\xf5 \xaa\xba \xac\xbc \xc5\xe5 \xc4\xe4", "ISO-8859-10"},
|
||||||
|
{"สำหรับ", "\xca\xd3\xcb\xc3\u047a", "ISO-8859-11"},
|
||||||
|
{"latviešu", "latvie\xf0u", "ISO-8859-13"},
|
||||||
|
{"Seònaid", "Se\xf2naid", "ISO-8859-14"},
|
||||||
|
{"€1 is cheap", "\xa41 is cheap", "ISO-8859-15"},
|
||||||
|
{"românește", "rom\xe2ne\xbate", "ISO-8859-16"},
|
||||||
|
{"nutraĵo", "nutra\xbco", "ISO-8859-3"},
|
||||||
|
{"Kalâdlit", "Kal\xe2dlit", "ISO-8859-4"},
|
||||||
|
{"русский", "\xe0\xe3\xe1\xe1\xda\xd8\xd9", "ISO-8859-5"},
|
||||||
|
{"ελληνικά", "\xe5\xeb\xeb\xe7\xed\xe9\xea\xdc", "ISO-8859-7"},
|
||||||
|
{"Kağan", "Ka\xf0an", "ISO-8859-9"},
|
||||||
|
{"Résumé", "R\x8esum\x8e", "macintosh"},
|
||||||
|
{"Gdańsk", "Gda\xf1sk", "windows-1250"},
|
||||||
|
{"русский", "\xf0\xf3\xf1\xf1\xea\xe8\xe9", "windows-1251"},
|
||||||
|
{"Résumé", "R\xe9sum\xe9", "windows-1252"},
|
||||||
|
{"ελληνικά", "\xe5\xeb\xeb\xe7\xed\xe9\xea\xdc", "windows-1253"},
|
||||||
|
{"Kağan", "Ka\xf0an", "windows-1254"},
|
||||||
|
{"עִבְרִית", "\xf2\xc4\xe1\xc0\xf8\xc4\xe9\xfa", "windows-1255"},
|
||||||
|
{"العربية", "\xc7\xe1\xda\xd1\xc8\xed\xc9", "windows-1256"},
|
||||||
|
{"latviešu", "latvie\xf0u", "windows-1257"},
|
||||||
|
{"Việt", "Vi\xea\xf2t", "windows-1258"},
|
||||||
|
{"สำหรับ", "\xca\xd3\xcb\xc3\u047a", "windows-874"},
|
||||||
|
{"русский", "\xd2\xd5\xd3\xd3\xcb\xc9\xca", "KOI8-R"},
|
||||||
|
{"українська", "\xd5\xcb\xd2\xc1\xa7\xce\xd3\xd8\xcb\xc1", "KOI8-U"},
|
||||||
|
{"Hello 常用國字標準字體表", "Hello \xb1`\xa5\u03b0\xea\xa6r\xbc\u0437\u01e6r\xc5\xe9\xaa\xed", "big5"},
|
||||||
|
{"Hello 常用國字標準字體表", "Hello \xb3\xa3\xd3\xc3\x87\xf8\xd7\xd6\x98\xcb\x9c\xca\xd7\xd6\xf3\x77\xb1\xed", "gbk"},
|
||||||
|
{"Hello 常用國字標準字體表", "Hello \xb3\xa3\xd3\xc3\x87\xf8\xd7\xd6\x98\xcb\x9c\xca\xd7\xd6\xf3\x77\xb1\xed", "gb18030"},
|
||||||
|
{"עִבְרִית", "\x81\x30\xfb\x30\x81\x30\xf6\x34\x81\x30\xf9\x33\x81\x30\xf6\x30\x81\x30\xfb\x36\x81\x30\xf6\x34\x81\x30\xfa\x31\x81\x30\xfb\x38", "gb18030"},
|
||||||
|
{"㧯", "\x82\x31\x89\x38", "gb18030"},
|
||||||
|
{"これは漢字です。", "\x82\xb1\x82\xea\x82\xcd\x8a\xbf\x8e\x9a\x82\xc5\x82\xb7\x81B", "SJIS"},
|
||||||
|
{"Hello, 世界!", "Hello, \x90\xa2\x8aE!", "SJIS"},
|
||||||
|
{"イウエオカ", "\xb2\xb3\xb4\xb5\xb6", "SJIS"},
|
||||||
|
{"これは漢字です。", "\xa4\xb3\xa4\xec\xa4\u03f4\xc1\xbb\xfa\xa4\u01e4\xb9\xa1\xa3", "EUC-JP"},
|
||||||
|
{"これは漢字です。", "\xa4\xb3\xa4\xec\xa4\u03f4\xc1\xbb\xfa\xa4\u01e4\xb9\xa1\xa3", "CP51932"},
|
||||||
|
{"Thông tin bạn đồng hànhỌ", "Th\xabng tin b\xb9n \xae\xe5ng h\xb5nhO\xe4", "TCVN3"},
|
||||||
|
{"Hello, 世界!", "Hello, \x1b$B@$3&\x1b(B!", "ISO-2022-JP"},
|
||||||
|
{"네이트 | 즐거움의 시작, 슈파스(Spaβ) NATE", "\xb3\xd7\xc0\xcc\xc6\xae | \xc1\xf1\xb0\xc5\xbf\xf2\xc0\xc7 \xbd\xc3\xc0\xdb, \xbd\xb4\xc6\xc4\xbd\xba(Spa\xa5\xe2) NATE", "EUC-KR"},
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDecode(t *testing.T) {
|
||||||
|
for _, data := range testData {
|
||||||
|
d := NewDecoder(data.otherEncoding)
|
||||||
|
if d == nil {
|
||||||
|
t.Errorf("Could not create decoder for %s", data.otherEncoding)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
str := d.ConvertString(data.other)
|
||||||
|
|
||||||
|
if str != data.utf8 {
|
||||||
|
t.Errorf("Unexpected value: %#v (expected %#v)", str, data.utf8)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDecodeTranslate(t *testing.T) {
|
||||||
|
for _, data := range testData {
|
||||||
|
d := NewDecoder(data.otherEncoding)
|
||||||
|
if d == nil {
|
||||||
|
t.Errorf("Could not create decoder for %s", data.otherEncoding)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
_, cdata, _ := d.Translate([]byte(data.other), true)
|
||||||
|
str := string(cdata)
|
||||||
|
|
||||||
|
if str != data.utf8 {
|
||||||
|
t.Errorf("Unexpected value: %#v (expected %#v)", str, data.utf8)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestEncode(t *testing.T) {
|
||||||
|
for _, data := range testData {
|
||||||
|
e := NewEncoder(data.otherEncoding)
|
||||||
|
if e == nil {
|
||||||
|
t.Errorf("Could not create encoder for %s", data.otherEncoding)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
str := e.ConvertString(data.utf8)
|
||||||
|
|
||||||
|
if str != data.other {
|
||||||
|
t.Errorf("Unexpected value: %#v (expected %#v)", str, data.other)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestReader(t *testing.T) {
|
||||||
|
for _, data := range testData {
|
||||||
|
d := NewDecoder(data.otherEncoding)
|
||||||
|
if d == nil {
|
||||||
|
t.Errorf("Could not create decoder for %s", data.otherEncoding)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
b := bytes.NewBufferString(data.other)
|
||||||
|
r := d.NewReader(b)
|
||||||
|
result, _ := ioutil.ReadAll(r)
|
||||||
|
str := string(result)
|
||||||
|
|
||||||
|
if str != data.utf8 {
|
||||||
|
t.Errorf("Unexpected value: %#v (expected %#v)", str, data.utf8)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWriter(t *testing.T) {
|
||||||
|
for _, data := range testData {
|
||||||
|
e := NewEncoder(data.otherEncoding)
|
||||||
|
if e == nil {
|
||||||
|
t.Errorf("Could not create encoder for %s", data.otherEncoding)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
b := new(bytes.Buffer)
|
||||||
|
w := e.NewWriter(b)
|
||||||
|
w.Write([]byte(data.utf8))
|
||||||
|
str := b.String()
|
||||||
|
|
||||||
|
if str != data.other {
|
||||||
|
t.Errorf("Unexpected value: %#v (expected %#v)", str, data.other)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFallback(t *testing.T) {
|
||||||
|
mixed := "résum\xe9 " // The space is needed because of the issue mentioned in the Note: in fallback.go
|
||||||
|
pure := "résumé "
|
||||||
|
d := FallbackDecoder(NewDecoder("utf8"), NewDecoder("ISO-8859-1"))
|
||||||
|
result := d.ConvertString(mixed)
|
||||||
|
if result != pure {
|
||||||
|
t.Errorf("Unexpected value: %#v (expected %#v)", result, pure)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestEntities(t *testing.T) {
|
||||||
|
escaped := "¬it; I'm ∉ I tell you‚ ≪⃒ "
|
||||||
|
plain := "¬it; I'm ∉ I tell you\u201a \u226A\u20D2 "
|
||||||
|
d := FallbackDecoder(EntityDecoder(), NewDecoder("ISO-8859-1"))
|
||||||
|
result := d.ConvertString(escaped)
|
||||||
|
if result != plain {
|
||||||
|
t.Errorf("Unexpected value: %#v (expected %#v)", result, plain)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestConvertStringOK(t *testing.T) {
|
||||||
|
d := NewDecoder("ASCII")
|
||||||
|
if d == nil {
|
||||||
|
t.Fatal("Could not create decoder for ASCII")
|
||||||
|
}
|
||||||
|
|
||||||
|
str, ok := d.ConvertStringOK("hello")
|
||||||
|
if !ok {
|
||||||
|
t.Error("Spurious error found while decoding")
|
||||||
|
}
|
||||||
|
if str != "hello" {
|
||||||
|
t.Errorf("expected %#v, got %#v", "hello", str)
|
||||||
|
}
|
||||||
|
|
||||||
|
str, ok = d.ConvertStringOK("\x80")
|
||||||
|
if ok {
|
||||||
|
t.Error(`Failed to detect error decoding "\x80"`)
|
||||||
|
}
|
||||||
|
|
||||||
|
e := NewEncoder("ISO-8859-3")
|
||||||
|
if e == nil {
|
||||||
|
t.Fatal("Could not create encoder for ISO-8859-1")
|
||||||
|
}
|
||||||
|
|
||||||
|
str, ok = e.ConvertStringOK("nutraĵo")
|
||||||
|
if !ok {
|
||||||
|
t.Error("spurious error while encoding")
|
||||||
|
}
|
||||||
|
if str != "nutra\xbco" {
|
||||||
|
t.Errorf("expected %#v, got %#v", "nutra\xbco", str)
|
||||||
|
}
|
||||||
|
|
||||||
|
str, ok = e.ConvertStringOK("\x80abc")
|
||||||
|
if ok {
|
||||||
|
t.Error("failed to detect invalid UTF-8 while encoding")
|
||||||
|
}
|
||||||
|
|
||||||
|
str, ok = e.ConvertStringOK("русский")
|
||||||
|
if ok {
|
||||||
|
t.Error("failed to detect characters that couldn't be encoded")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestBadCharset(t *testing.T) {
|
||||||
|
d := NewDecoder("this is not a valid charset")
|
||||||
|
if d != nil {
|
||||||
|
t.Fatal("got a non-nil decoder for an invalid charset")
|
||||||
|
}
|
||||||
|
}
|
39
modules/mahonia/mahoniconv/mahoniconv.go
Normal file
39
modules/mahonia/mahoniconv/mahoniconv.go
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"code.google.com/p/mahonia"
|
||||||
|
"flag"
|
||||||
|
"io"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
|
// An iconv workalike using mahonia.
|
||||||
|
|
||||||
|
var from = flag.String("f", "utf-8", "source character set")
|
||||||
|
var to = flag.String("t", "utf-8", "destination character set")
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
flag.Parse()
|
||||||
|
|
||||||
|
var r io.Reader = os.Stdin
|
||||||
|
var w io.Writer = os.Stdout
|
||||||
|
|
||||||
|
if *from != "utf-8" {
|
||||||
|
decode := mahonia.NewDecoder(*from)
|
||||||
|
if decode == nil {
|
||||||
|
log.Fatalf("Could not create decoder for %s", *from)
|
||||||
|
}
|
||||||
|
r = decode.NewReader(r)
|
||||||
|
}
|
||||||
|
|
||||||
|
if *to != "utf-8" {
|
||||||
|
encode := mahonia.NewEncoder(*to)
|
||||||
|
if encode == nil {
|
||||||
|
log.Fatalf("Could not create decoder for %s", *to)
|
||||||
|
}
|
||||||
|
w = encode.NewWriter(w)
|
||||||
|
}
|
||||||
|
|
||||||
|
io.Copy(w, r)
|
||||||
|
}
|
92
modules/mahonia/mbcs.go
Normal file
92
modules/mahonia/mbcs.go
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
// Generic converters for multibyte character sets.
|
||||||
|
|
||||||
|
// An mbcsTrie contains the data to convert from the character set to Unicode.
|
||||||
|
// If a character would be encoded as "\x01\x02\x03", its unicode value would be found at t.children[1].children[2].children[3].rune
|
||||||
|
// children either is nil or has 256 elements.
|
||||||
|
type mbcsTrie struct {
|
||||||
|
// For leaf nodes, the Unicode character that is represented.
|
||||||
|
char rune
|
||||||
|
|
||||||
|
// For non-leaf nodes, the trie to decode the remainder of the character.
|
||||||
|
children []mbcsTrie
|
||||||
|
}
|
||||||
|
|
||||||
|
// A MBCSTable holds the data to convert to and from Unicode.
|
||||||
|
type MBCSTable struct {
|
||||||
|
toUnicode mbcsTrie
|
||||||
|
fromUnicode map[rune]string
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddCharacter adds a character to the table. rune is its Unicode code point,
|
||||||
|
// and bytes contains the bytes used to encode it in the character set.
|
||||||
|
func (table *MBCSTable) AddCharacter(c rune, bytes string) {
|
||||||
|
if table.fromUnicode == nil {
|
||||||
|
table.fromUnicode = make(map[rune]string)
|
||||||
|
}
|
||||||
|
|
||||||
|
table.fromUnicode[c] = bytes
|
||||||
|
|
||||||
|
trie := &table.toUnicode
|
||||||
|
for i := 0; i < len(bytes); i++ {
|
||||||
|
if trie.children == nil {
|
||||||
|
trie.children = make([]mbcsTrie, 256)
|
||||||
|
}
|
||||||
|
|
||||||
|
b := bytes[i]
|
||||||
|
trie = &trie.children[b]
|
||||||
|
}
|
||||||
|
|
||||||
|
trie.char = c
|
||||||
|
}
|
||||||
|
|
||||||
|
func (table *MBCSTable) Decoder() Decoder {
|
||||||
|
return func(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if p[0] == 0 {
|
||||||
|
return 0, 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
trie := &table.toUnicode
|
||||||
|
for trie.char == 0 {
|
||||||
|
if trie.children == nil {
|
||||||
|
return 0xfffd, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
if len(p) < size+1 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
trie = &trie.children[p[size]]
|
||||||
|
size++
|
||||||
|
}
|
||||||
|
|
||||||
|
c = trie.char
|
||||||
|
status = SUCCESS
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (table *MBCSTable) Encoder() Encoder {
|
||||||
|
return func(p []byte, c rune) (size int, status Status) {
|
||||||
|
bytes := table.fromUnicode[c]
|
||||||
|
if bytes == "" {
|
||||||
|
if len(p) > 0 {
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
} else {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < len(bytes) {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
return copy(p, bytes), SUCCESS
|
||||||
|
}
|
||||||
|
}
|
7497
modules/mahonia/ms-jis-data.go
Normal file
7497
modules/mahonia/ms-jis-data.go
Normal file
File diff suppressed because it is too large
Load Diff
151
modules/mahonia/reader.go
Normal file
151
modules/mahonia/reader.go
Normal file
|
@ -0,0 +1,151 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
// This file is based on bufio.Reader in the Go standard library,
|
||||||
|
// which has the following copyright notice:
|
||||||
|
|
||||||
|
// Copyright 2009 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"unicode/utf8"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
defaultBufSize = 4096
|
||||||
|
)
|
||||||
|
|
||||||
|
// Reader implements character-set decoding for an io.Reader object.
|
||||||
|
type Reader struct {
|
||||||
|
buf []byte
|
||||||
|
rd io.Reader
|
||||||
|
decode Decoder
|
||||||
|
r, w int
|
||||||
|
err error
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewReader creates a new Reader that uses the receiver to decode text.
|
||||||
|
func (d Decoder) NewReader(rd io.Reader) *Reader {
|
||||||
|
b := new(Reader)
|
||||||
|
b.buf = make([]byte, defaultBufSize)
|
||||||
|
b.rd = rd
|
||||||
|
b.decode = d
|
||||||
|
return b
|
||||||
|
}
|
||||||
|
|
||||||
|
// fill reads a new chunk into the buffer.
|
||||||
|
func (b *Reader) fill() {
|
||||||
|
// Slide existing data to beginning.
|
||||||
|
if b.r > 0 {
|
||||||
|
copy(b.buf, b.buf[b.r:b.w])
|
||||||
|
b.w -= b.r
|
||||||
|
b.r = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read new data.
|
||||||
|
n, e := b.rd.Read(b.buf[b.w:])
|
||||||
|
b.w += n
|
||||||
|
if e != nil {
|
||||||
|
b.err = e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read reads data into p.
|
||||||
|
// It returns the number of bytes read into p.
|
||||||
|
// It calls Read at most once on the underlying Reader,
|
||||||
|
// hence n may be less than len(p).
|
||||||
|
// At EOF, the count will be zero and err will be os.EOF.
|
||||||
|
func (b *Reader) Read(p []byte) (n int, err error) {
|
||||||
|
n = len(p)
|
||||||
|
filled := false
|
||||||
|
if n == 0 {
|
||||||
|
return 0, b.err
|
||||||
|
}
|
||||||
|
if b.w == b.r {
|
||||||
|
if b.err != nil {
|
||||||
|
return 0, b.err
|
||||||
|
}
|
||||||
|
if n > len(b.buf) {
|
||||||
|
// Large read, empty buffer.
|
||||||
|
// Allocate a larger buffer for efficiency.
|
||||||
|
b.buf = make([]byte, n)
|
||||||
|
}
|
||||||
|
b.fill()
|
||||||
|
filled = true
|
||||||
|
if b.w == b.r {
|
||||||
|
return 0, b.err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
i := 0
|
||||||
|
for i < n {
|
||||||
|
rune, size, status := b.decode(b.buf[b.r:b.w])
|
||||||
|
|
||||||
|
if status == STATE_ONLY {
|
||||||
|
b.r += size
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if status == NO_ROOM {
|
||||||
|
if b.err != nil {
|
||||||
|
rune = 0xfffd
|
||||||
|
size = b.w - b.r
|
||||||
|
if size == 0 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
status = INVALID_CHAR
|
||||||
|
} else if filled {
|
||||||
|
break
|
||||||
|
} else {
|
||||||
|
b.fill()
|
||||||
|
filled = true
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if i+utf8.RuneLen(rune) > n {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
b.r += size
|
||||||
|
if rune < 128 {
|
||||||
|
p[i] = byte(rune)
|
||||||
|
i++
|
||||||
|
} else {
|
||||||
|
i += utf8.EncodeRune(p[i:], rune)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return i, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ReadRune reads a single Unicode character and returns the
|
||||||
|
// rune and its size in bytes.
|
||||||
|
func (b *Reader) ReadRune() (c rune, size int, err error) {
|
||||||
|
read:
|
||||||
|
c, size, status := b.decode(b.buf[b.r:b.w])
|
||||||
|
|
||||||
|
if status == NO_ROOM && b.err == nil {
|
||||||
|
b.fill()
|
||||||
|
goto read
|
||||||
|
}
|
||||||
|
|
||||||
|
if status == STATE_ONLY {
|
||||||
|
b.r += size
|
||||||
|
goto read
|
||||||
|
}
|
||||||
|
|
||||||
|
if b.r == b.w {
|
||||||
|
return 0, 0, b.err
|
||||||
|
}
|
||||||
|
|
||||||
|
if status == NO_ROOM {
|
||||||
|
c = 0xfffd
|
||||||
|
size = b.w - b.r
|
||||||
|
status = INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
b.r += size
|
||||||
|
return c, size, nil
|
||||||
|
}
|
7748
modules/mahonia/shiftjis-data.go
Normal file
7748
modules/mahonia/shiftjis-data.go
Normal file
File diff suppressed because it is too large
Load Diff
88
modules/mahonia/shiftjis.go
Normal file
88
modules/mahonia/shiftjis.go
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
// Converters for the Shift-JIS encoding.
|
||||||
|
|
||||||
|
import (
|
||||||
|
"unicode/utf8"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
RegisterCharset(&Charset{
|
||||||
|
Name: "Shift_JIS",
|
||||||
|
Aliases: []string{"MS_Kanji", "csShiftJIS", "SJIS", "ibm-943", "windows-31j", "cp932", "windows-932"},
|
||||||
|
NewDecoder: func() Decoder {
|
||||||
|
return decodeSJIS
|
||||||
|
},
|
||||||
|
NewEncoder: func() Encoder {
|
||||||
|
shiftJISOnce.Do(reverseShiftJISTable)
|
||||||
|
return encodeSJIS
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeSJIS(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
b := p[0]
|
||||||
|
if b < 0x80 {
|
||||||
|
return rune(b), 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if 0xa1 <= b && b <= 0xdf {
|
||||||
|
return rune(b) + (0xff61 - 0xa1), 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if b == 0x80 || b == 0xa0 {
|
||||||
|
return utf8.RuneError, 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
jis := int(b)<<8 + int(p[1])
|
||||||
|
c = rune(shiftJISToUnicode[jis])
|
||||||
|
|
||||||
|
if c == 0 {
|
||||||
|
return utf8.RuneError, 2, INVALID_CHAR
|
||||||
|
}
|
||||||
|
return c, 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeSJIS(p []byte, c rune) (size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if c < 0x80 {
|
||||||
|
p[0] = byte(c)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if 0xff61 <= c && c <= 0xff9f {
|
||||||
|
// half-width katakana
|
||||||
|
p[0] = byte(c - (0xff61 - 0xa1))
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
if c > 0xffff {
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
jis := unicodeToShiftJIS[c]
|
||||||
|
if jis == 0 {
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
p[0] = byte(jis >> 8)
|
||||||
|
p[1] = byte(jis)
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
228
modules/mahonia/tcvn3.go
Normal file
228
modules/mahonia/tcvn3.go
Normal file
|
@ -0,0 +1,228 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
// Converters for TCVN3 encoding.
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
onceTCVN3 sync.Once
|
||||||
|
dataTCVN3 = struct {
|
||||||
|
UnicodeToWord map[rune][2]byte
|
||||||
|
WordToUnicode [256]struct {
|
||||||
|
r rune
|
||||||
|
m *[256]rune
|
||||||
|
}
|
||||||
|
}{}
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
p := new(Charset)
|
||||||
|
p.Name = "TCVN3"
|
||||||
|
p.NewDecoder = func() Decoder {
|
||||||
|
onceTCVN3.Do(buildTCVN3Tables)
|
||||||
|
return decodeTCVN3
|
||||||
|
}
|
||||||
|
p.NewEncoder = func() Encoder {
|
||||||
|
onceTCVN3.Do(buildTCVN3Tables)
|
||||||
|
return encodeTCVN3
|
||||||
|
}
|
||||||
|
RegisterCharset(p)
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeTCVN3(p []byte) (rune, int, Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
item := &dataTCVN3.WordToUnicode[p[0]]
|
||||||
|
if item.m != nil && len(p) > 1 {
|
||||||
|
if r := item.m[p[1]]; r != 0 {
|
||||||
|
return r, 2, SUCCESS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if item.r != 0 {
|
||||||
|
return item.r, 1, SUCCESS
|
||||||
|
}
|
||||||
|
if p[0] < 0x80 {
|
||||||
|
return rune(p[0]), 1, SUCCESS
|
||||||
|
}
|
||||||
|
return '?', 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeTCVN3(p []byte, c rune) (int, Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
if c < rune(0x80) {
|
||||||
|
p[0] = byte(c)
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
if v, ok := dataTCVN3.UnicodeToWord[c]; ok {
|
||||||
|
if v[1] != 0 {
|
||||||
|
if len(p) < 2 {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
p[0] = v[0]
|
||||||
|
p[1] = v[1]
|
||||||
|
return 2, SUCCESS
|
||||||
|
} else {
|
||||||
|
p[0] = v[0]
|
||||||
|
return 1, SUCCESS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p[0] = '?'
|
||||||
|
return 1, INVALID_CHAR
|
||||||
|
}
|
||||||
|
|
||||||
|
func buildTCVN3Tables() {
|
||||||
|
dataTCVN3.UnicodeToWord = map[rune][2]byte{
|
||||||
|
// one byte
|
||||||
|
0x00C2: {0xA2, 0x00},
|
||||||
|
0x00CA: {0xA3, 0x00},
|
||||||
|
0x00D4: {0xA4, 0x00},
|
||||||
|
0x00E0: {0xB5, 0x00},
|
||||||
|
0x00E1: {0xB8, 0x00},
|
||||||
|
0x00E2: {0xA9, 0x00},
|
||||||
|
0x00E3: {0xB7, 0x00},
|
||||||
|
0x00E8: {0xCC, 0x00},
|
||||||
|
0x00E9: {0xD0, 0x00},
|
||||||
|
0x00EA: {0xAA, 0x00},
|
||||||
|
0x00EC: {0xD7, 0x00},
|
||||||
|
0x00ED: {0xDD, 0x00},
|
||||||
|
0x00F2: {0xDF, 0x00},
|
||||||
|
0x00F3: {0xE3, 0x00},
|
||||||
|
0x00F4: {0xAB, 0x00},
|
||||||
|
0x00F5: {0xE2, 0x00},
|
||||||
|
0x00F9: {0xEF, 0x00},
|
||||||
|
0x00FA: {0xF3, 0x00},
|
||||||
|
0x00FD: {0xFD, 0x00},
|
||||||
|
0x0102: {0xA1, 0x00},
|
||||||
|
0x0103: {0xA8, 0x00},
|
||||||
|
0x0110: {0xA7, 0x00},
|
||||||
|
0x0111: {0xAE, 0x00},
|
||||||
|
0x0129: {0xDC, 0x00},
|
||||||
|
0x0169: {0xF2, 0x00},
|
||||||
|
0x01A0: {0xA5, 0x00},
|
||||||
|
0x01A1: {0xAC, 0x00},
|
||||||
|
0x01AF: {0xA6, 0x00},
|
||||||
|
0x01B0: {0xAD, 0x00},
|
||||||
|
0x1EA1: {0xB9, 0x00},
|
||||||
|
0x1EA3: {0xB6, 0x00},
|
||||||
|
0x1EA5: {0xCA, 0x00},
|
||||||
|
0x1EA7: {0xC7, 0x00},
|
||||||
|
0x1EA9: {0xC8, 0x00},
|
||||||
|
0x1EAB: {0xC9, 0x00},
|
||||||
|
0x1EAD: {0xCB, 0x00},
|
||||||
|
0x1EAF: {0xBE, 0x00},
|
||||||
|
0x1EB1: {0xBB, 0x00},
|
||||||
|
0x1EB3: {0xBC, 0x00},
|
||||||
|
0x1EB5: {0xBD, 0x00},
|
||||||
|
0x1EB7: {0xC6, 0x00},
|
||||||
|
0x1EB9: {0xD1, 0x00},
|
||||||
|
0x1EBB: {0xCE, 0x00},
|
||||||
|
0x1EBD: {0xCF, 0x00},
|
||||||
|
0x1EBF: {0xD5, 0x00},
|
||||||
|
0x1EC1: {0xD2, 0x00},
|
||||||
|
0x1EC3: {0xD3, 0x00},
|
||||||
|
0x1EC5: {0xD4, 0x00},
|
||||||
|
0x1EC7: {0xD6, 0x00},
|
||||||
|
0x1EC9: {0xD8, 0x00},
|
||||||
|
0x1ECB: {0xDE, 0x00},
|
||||||
|
0x1ECD: {0xE4, 0x00},
|
||||||
|
0x1ECF: {0xE1, 0x00},
|
||||||
|
0x1ED1: {0xE8, 0x00},
|
||||||
|
0x1ED3: {0xE5, 0x00},
|
||||||
|
0x1ED5: {0xE6, 0x00},
|
||||||
|
0x1ED7: {0xE7, 0x00},
|
||||||
|
0x1ED9: {0xE9, 0x00},
|
||||||
|
0x1EDB: {0xED, 0x00},
|
||||||
|
0x1EDD: {0xEA, 0x00},
|
||||||
|
0x1EDF: {0xEB, 0x00},
|
||||||
|
0x1EE1: {0xEC, 0x00},
|
||||||
|
0x1EE3: {0xEE, 0x00},
|
||||||
|
0x1EE5: {0xF4, 0x00},
|
||||||
|
0x1EE7: {0xF1, 0x00},
|
||||||
|
0x1EE9: {0xF8, 0x00},
|
||||||
|
0x1EEB: {0xF5, 0x00},
|
||||||
|
0x1EED: {0xF6, 0x00},
|
||||||
|
0x1EEF: {0xF7, 0x00},
|
||||||
|
0x1EF1: {0xF9, 0x00},
|
||||||
|
0x1EF3: {0xFA, 0x00},
|
||||||
|
0x1EF5: {0xFE, 0x00},
|
||||||
|
0x1EF7: {0xFB, 0x00},
|
||||||
|
0x1EF9: {0xFC, 0x00},
|
||||||
|
// two bytes
|
||||||
|
0x00C0: {0x41, 0xB5},
|
||||||
|
0x00C1: {0x41, 0xB8},
|
||||||
|
0x00C3: {0x41, 0xB7},
|
||||||
|
0x00C8: {0x45, 0xCC},
|
||||||
|
0x00C9: {0x45, 0xD0},
|
||||||
|
0x00CC: {0x49, 0xD7},
|
||||||
|
0x00CD: {0x49, 0xDD},
|
||||||
|
0x00D2: {0x4F, 0xDF},
|
||||||
|
0x00D3: {0x4F, 0xE3},
|
||||||
|
0x00D5: {0x4F, 0xE2},
|
||||||
|
0x00D9: {0x55, 0xEF},
|
||||||
|
0x00DA: {0x55, 0xF3},
|
||||||
|
0x00DD: {0x59, 0xFD},
|
||||||
|
0x0128: {0x49, 0xDC},
|
||||||
|
0x0168: {0x55, 0xF2},
|
||||||
|
0x1EA0: {0x41, 0xB9},
|
||||||
|
0x1EA2: {0x41, 0xB6},
|
||||||
|
0x1EA4: {0xA2, 0xCA},
|
||||||
|
0x1EA6: {0xA2, 0xC7},
|
||||||
|
0x1EA8: {0xA2, 0xC8},
|
||||||
|
0x1EAA: {0xA2, 0xC9},
|
||||||
|
0x1EAC: {0xA2, 0xCB},
|
||||||
|
0x1EAE: {0xA1, 0xBE},
|
||||||
|
0x1EB0: {0xA1, 0xBB},
|
||||||
|
0x1EB2: {0xA1, 0xBC},
|
||||||
|
0x1EB4: {0xA1, 0xBD},
|
||||||
|
0x1EB6: {0xA1, 0xC6},
|
||||||
|
0x1EB8: {0x45, 0xD1},
|
||||||
|
0x1EBA: {0x45, 0xCE},
|
||||||
|
0x1EBC: {0x45, 0xCF},
|
||||||
|
0x1EBE: {0xA3, 0xD5},
|
||||||
|
0x1EC0: {0xA3, 0xD2},
|
||||||
|
0x1EC2: {0xA3, 0xD3},
|
||||||
|
0x1EC4: {0xA3, 0xD4},
|
||||||
|
0x1EC6: {0xA3, 0xD6},
|
||||||
|
0x1EC8: {0x49, 0xD8},
|
||||||
|
0x1ECA: {0x49, 0xDE},
|
||||||
|
0x1ECC: {0x4F, 0xE4},
|
||||||
|
0x1ECE: {0x4F, 0xE1},
|
||||||
|
0x1ED0: {0xA4, 0xE8},
|
||||||
|
0x1ED2: {0xA4, 0xE5},
|
||||||
|
0x1ED4: {0xA4, 0xE6},
|
||||||
|
0x1ED6: {0xA4, 0xE7},
|
||||||
|
0x1ED8: {0xA4, 0xE9},
|
||||||
|
0x1EDA: {0xA5, 0xED},
|
||||||
|
0x1EDC: {0xA5, 0xEA},
|
||||||
|
0x1EDE: {0xA5, 0xEB},
|
||||||
|
0x1EE0: {0xA5, 0xEC},
|
||||||
|
0x1EE2: {0xA5, 0xEE},
|
||||||
|
0x1EE4: {0x55, 0xF4},
|
||||||
|
0x1EE6: {0x55, 0xF1},
|
||||||
|
0x1EE8: {0xA6, 0xF8},
|
||||||
|
0x1EEA: {0xA6, 0xF5},
|
||||||
|
0x1EEC: {0xA6, 0xF6},
|
||||||
|
0x1EEE: {0xA6, 0xF7},
|
||||||
|
0x1EF0: {0xA6, 0xF9},
|
||||||
|
0x1EF2: {0x59, 0xFA},
|
||||||
|
0x1EF4: {0x59, 0xFE},
|
||||||
|
0x1EF6: {0x59, 0xFB},
|
||||||
|
0x1EF8: {0x59, 0xFC},
|
||||||
|
}
|
||||||
|
for r, b := range dataTCVN3.UnicodeToWord {
|
||||||
|
item := &dataTCVN3.WordToUnicode[b[0]]
|
||||||
|
if b[1] == 0 {
|
||||||
|
item.r = r
|
||||||
|
} else {
|
||||||
|
if item.m == nil {
|
||||||
|
item.m = new([256]rune)
|
||||||
|
}
|
||||||
|
item.m[b[1]] = r
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
50
modules/mahonia/translate.go
Normal file
50
modules/mahonia/translate.go
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import "unicode/utf8"
|
||||||
|
|
||||||
|
// Translate enables a Decoder to implement go-charset's Translator interface.
|
||||||
|
func (d Decoder) Translate(data []byte, eof bool) (n int, cdata []byte, err error) {
|
||||||
|
cdata = make([]byte, len(data)+1)
|
||||||
|
destPos := 0
|
||||||
|
|
||||||
|
for n < len(data) {
|
||||||
|
rune, size, status := d(data[n:])
|
||||||
|
|
||||||
|
switch status {
|
||||||
|
case STATE_ONLY:
|
||||||
|
n += size
|
||||||
|
continue
|
||||||
|
|
||||||
|
case NO_ROOM:
|
||||||
|
if !eof {
|
||||||
|
return n, cdata[:destPos], nil
|
||||||
|
}
|
||||||
|
rune = 0xfffd
|
||||||
|
n = len(data)
|
||||||
|
|
||||||
|
default:
|
||||||
|
n += size
|
||||||
|
}
|
||||||
|
|
||||||
|
if rune < 128 {
|
||||||
|
if destPos >= len(cdata) {
|
||||||
|
cdata = doubleLength(cdata)
|
||||||
|
}
|
||||||
|
cdata[destPos] = byte(rune)
|
||||||
|
destPos++
|
||||||
|
} else {
|
||||||
|
if destPos+utf8.RuneLen(rune) > len(cdata) {
|
||||||
|
cdata = doubleLength(cdata)
|
||||||
|
}
|
||||||
|
destPos += utf8.EncodeRune(cdata[destPos:], rune)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return n, cdata[:destPos], nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func doubleLength(b []byte) []byte {
|
||||||
|
b2 := make([]byte, 2*len(b))
|
||||||
|
copy(b2, b)
|
||||||
|
return b2
|
||||||
|
}
|
170
modules/mahonia/utf16.go
Normal file
170
modules/mahonia/utf16.go
Normal file
|
@ -0,0 +1,170 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"unicode/utf16"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
for i := 0; i < len(utf16Charsets); i++ {
|
||||||
|
RegisterCharset(&utf16Charsets[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var utf16Charsets = []Charset{
|
||||||
|
{
|
||||||
|
Name: "UTF-16",
|
||||||
|
NewDecoder: func() Decoder {
|
||||||
|
var decodeRune Decoder
|
||||||
|
return func(p []byte) (c rune, size int, status Status) {
|
||||||
|
if decodeRune == nil {
|
||||||
|
// haven't read the BOM yet
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
switch {
|
||||||
|
case p[0] == 0xfe && p[1] == 0xff:
|
||||||
|
decodeRune = decodeUTF16beRune
|
||||||
|
return 0, 2, STATE_ONLY
|
||||||
|
case p[0] == 0xff && p[1] == 0xfe:
|
||||||
|
decodeRune = decodeUTF16leRune
|
||||||
|
return 0, 2, STATE_ONLY
|
||||||
|
default:
|
||||||
|
decodeRune = decodeUTF16beRune
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return decodeRune(p)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
NewEncoder: func() Encoder {
|
||||||
|
wroteBOM := false
|
||||||
|
return func(p []byte, c rune) (size int, status Status) {
|
||||||
|
if !wroteBOM {
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
p[0] = 0xfe
|
||||||
|
p[1] = 0xff
|
||||||
|
wroteBOM = true
|
||||||
|
return 2, STATE_ONLY
|
||||||
|
}
|
||||||
|
|
||||||
|
return encodeUTF16beRune(p, c)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "UTF-16BE",
|
||||||
|
NewDecoder: func() Decoder { return decodeUTF16beRune },
|
||||||
|
NewEncoder: func() Encoder { return encodeUTF16beRune },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "UTF-16LE",
|
||||||
|
NewDecoder: func() Decoder { return decodeUTF16leRune },
|
||||||
|
NewEncoder: func() Encoder { return encodeUTF16leRune },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeUTF16beRune(p []byte) (r rune, size int, status Status) {
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c := rune(p[0])<<8 + rune(p[1])
|
||||||
|
|
||||||
|
if utf16.IsSurrogate(c) {
|
||||||
|
if len(p) < 4 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c2 := rune(p[2])<<8 + rune(p[3])
|
||||||
|
c = utf16.DecodeRune(c, c2)
|
||||||
|
|
||||||
|
if c == 0xfffd {
|
||||||
|
return c, 2, INVALID_CHAR
|
||||||
|
} else {
|
||||||
|
return c, 4, SUCCESS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return c, 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeUTF16beRune(p []byte, c rune) (size int, status Status) {
|
||||||
|
if c < 0x10000 {
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
p[0] = byte(c >> 8)
|
||||||
|
p[1] = byte(c)
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 4 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
s1, s2 := utf16.EncodeRune(c)
|
||||||
|
p[0] = byte(s1 >> 8)
|
||||||
|
p[1] = byte(s1)
|
||||||
|
p[2] = byte(s2 >> 8)
|
||||||
|
p[3] = byte(s2)
|
||||||
|
return 4, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeUTF16leRune(p []byte) (r rune, size int, status Status) {
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c := rune(p[1])<<8 + rune(p[0])
|
||||||
|
|
||||||
|
if utf16.IsSurrogate(c) {
|
||||||
|
if len(p) < 4 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c2 := rune(p[3])<<8 + rune(p[2])
|
||||||
|
c = utf16.DecodeRune(c, c2)
|
||||||
|
|
||||||
|
if c == 0xfffd {
|
||||||
|
return c, 2, INVALID_CHAR
|
||||||
|
} else {
|
||||||
|
return c, 4, SUCCESS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return c, 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeUTF16leRune(p []byte, c rune) (size int, status Status) {
|
||||||
|
if c < 0x10000 {
|
||||||
|
if len(p) < 2 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
p[1] = byte(c >> 8)
|
||||||
|
p[0] = byte(c)
|
||||||
|
return 2, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(p) < 4 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
s1, s2 := utf16.EncodeRune(c)
|
||||||
|
p[1] = byte(s1 >> 8)
|
||||||
|
p[0] = byte(s1)
|
||||||
|
p[3] = byte(s2 >> 8)
|
||||||
|
p[2] = byte(s2)
|
||||||
|
return 4, SUCCESS
|
||||||
|
}
|
45
modules/mahonia/utf8.go
Normal file
45
modules/mahonia/utf8.go
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import "unicode/utf8"
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
RegisterCharset(&Charset{
|
||||||
|
Name: "UTF-8",
|
||||||
|
NewDecoder: func() Decoder { return decodeUTF8Rune },
|
||||||
|
NewEncoder: func() Encoder { return encodeUTF8Rune },
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeUTF8Rune(p []byte) (c rune, size int, status Status) {
|
||||||
|
if len(p) == 0 {
|
||||||
|
status = NO_ROOM
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if p[0] < 128 {
|
||||||
|
return rune(p[0]), 1, SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
|
c, size = utf8.DecodeRune(p)
|
||||||
|
|
||||||
|
if c == 0xfffd {
|
||||||
|
if utf8.FullRune(p) {
|
||||||
|
status = INVALID_CHAR
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0, 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
status = SUCCESS
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func encodeUTF8Rune(p []byte, c rune) (size int, status Status) {
|
||||||
|
size = utf8.RuneLen(c)
|
||||||
|
if size > len(p) {
|
||||||
|
return 0, NO_ROOM
|
||||||
|
}
|
||||||
|
|
||||||
|
return utf8.EncodeRune(p, c), SUCCESS
|
||||||
|
}
|
108
modules/mahonia/writer.go
Normal file
108
modules/mahonia/writer.go
Normal file
|
@ -0,0 +1,108 @@
|
||||||
|
package mahonia
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"unicode/utf8"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Writer implements character-set encoding for an io.Writer object.
|
||||||
|
type Writer struct {
|
||||||
|
wr io.Writer
|
||||||
|
encode Encoder
|
||||||
|
inbuf []byte
|
||||||
|
outbuf []byte
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewWriter creates a new Writer that uses the receiver to encode text.
|
||||||
|
func (e Encoder) NewWriter(wr io.Writer) *Writer {
|
||||||
|
w := new(Writer)
|
||||||
|
w.wr = wr
|
||||||
|
w.encode = e
|
||||||
|
return w
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write encodes and writes the data from p.
|
||||||
|
func (w *Writer) Write(p []byte) (n int, err error) {
|
||||||
|
n = len(p)
|
||||||
|
|
||||||
|
if len(w.inbuf) > 0 {
|
||||||
|
w.inbuf = append(w.inbuf, p...)
|
||||||
|
p = w.inbuf
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(w.outbuf) < len(p) {
|
||||||
|
w.outbuf = make([]byte, len(p)+10)
|
||||||
|
}
|
||||||
|
|
||||||
|
outpos := 0
|
||||||
|
|
||||||
|
for len(p) > 0 {
|
||||||
|
rune, size := utf8.DecodeRune(p)
|
||||||
|
if rune == 0xfffd && !utf8.FullRune(p) {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
p = p[size:]
|
||||||
|
|
||||||
|
retry:
|
||||||
|
size, status := w.encode(w.outbuf[outpos:], rune)
|
||||||
|
|
||||||
|
if status == NO_ROOM {
|
||||||
|
newDest := make([]byte, len(w.outbuf)*2)
|
||||||
|
copy(newDest, w.outbuf)
|
||||||
|
w.outbuf = newDest
|
||||||
|
goto retry
|
||||||
|
}
|
||||||
|
|
||||||
|
if status == STATE_ONLY {
|
||||||
|
outpos += size
|
||||||
|
goto retry
|
||||||
|
}
|
||||||
|
|
||||||
|
outpos += size
|
||||||
|
}
|
||||||
|
|
||||||
|
w.inbuf = w.inbuf[:0]
|
||||||
|
if len(p) > 0 {
|
||||||
|
w.inbuf = append(w.inbuf, p...)
|
||||||
|
}
|
||||||
|
|
||||||
|
n1, err := w.wr.Write(w.outbuf[0:outpos])
|
||||||
|
|
||||||
|
if err != nil && n1 < n {
|
||||||
|
n = n1
|
||||||
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (w *Writer) WriteRune(c rune) (size int, err error) {
|
||||||
|
if len(w.inbuf) > 0 {
|
||||||
|
// There are leftover bytes, a partial UTF-8 sequence.
|
||||||
|
w.inbuf = w.inbuf[:0]
|
||||||
|
w.WriteRune(0xfffd)
|
||||||
|
}
|
||||||
|
|
||||||
|
if w.outbuf == nil {
|
||||||
|
w.outbuf = make([]byte, 16)
|
||||||
|
}
|
||||||
|
|
||||||
|
outpos := 0
|
||||||
|
|
||||||
|
retry:
|
||||||
|
size, status := w.encode(w.outbuf[outpos:], c)
|
||||||
|
|
||||||
|
if status == NO_ROOM {
|
||||||
|
w.outbuf = make([]byte, len(w.outbuf)*2)
|
||||||
|
goto retry
|
||||||
|
}
|
||||||
|
|
||||||
|
if status == STATE_ONLY {
|
||||||
|
outpos += size
|
||||||
|
goto retry
|
||||||
|
}
|
||||||
|
|
||||||
|
outpos += size
|
||||||
|
|
||||||
|
return w.wr.Write(w.outbuf[0:outpos])
|
||||||
|
}
|
|
@ -11,13 +11,13 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/saintfish/chardet"
|
||||||
|
|
||||||
"github.com/gogits/gogs/modules/base"
|
"github.com/gogits/gogs/modules/base"
|
||||||
"github.com/gogits/gogs/modules/git"
|
"github.com/gogits/gogs/modules/git"
|
||||||
"github.com/gogits/gogs/modules/log"
|
"github.com/gogits/gogs/modules/log"
|
||||||
|
"github.com/gogits/gogs/modules/mahonia"
|
||||||
"github.com/gogits/gogs/modules/middleware"
|
"github.com/gogits/gogs/modules/middleware"
|
||||||
|
|
||||||
"code.google.com/p/mahonia"
|
|
||||||
"github.com/saintfish/chardet"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
Loading…
Reference in New Issue
Block a user