xref: /dokuwiki/inc/Utf8/tables/case.php (revision d4f83172d9533c4d84f450fe22ef630816b21d75)
113067778SAndreas Gohr<?php
2*d4f83172SAndreas Gohr
313067778SAndreas Gohr/**
413067778SAndreas Gohr * UTF-8 Case lookup table
513067778SAndreas Gohr *
613067778SAndreas Gohr * This lookuptable defines the lower case letters to their corresponding
713067778SAndreas Gohr * upper case letter in UTF-8
813067778SAndreas Gohr *
913067778SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
1013067778SAndreas Gohr */
11*d4f83172SAndreas Gohr
1213067778SAndreas Gohrreturn [
1313067778SAndreas Gohr    'A' => 'a',
140884c254SAndreas Gohr    'B' => 'b',
150884c254SAndreas Gohr    'C' => 'c',
160884c254SAndreas Gohr    'D' => 'd',
170884c254SAndreas Gohr    'E' => 'e',
180884c254SAndreas Gohr    'F' => 'f',
190884c254SAndreas Gohr    'G' => 'g',
200884c254SAndreas Gohr    'H' => 'h',
210884c254SAndreas Gohr    'I' => 'i',
220884c254SAndreas Gohr    'J' => 'j',
230884c254SAndreas Gohr    'K' => 'k',
240884c254SAndreas Gohr    'L' => 'l',
250884c254SAndreas Gohr    'M' => 'm',
260884c254SAndreas Gohr    'N' => 'n',
270884c254SAndreas Gohr    'O' => 'o',
280884c254SAndreas Gohr    'P' => 'p',
290884c254SAndreas Gohr    'Q' => 'q',
300884c254SAndreas Gohr    'R' => 'r',
310884c254SAndreas Gohr    'S' => 's',
320884c254SAndreas Gohr    'T' => 't',
330884c254SAndreas Gohr    'U' => 'u',
340884c254SAndreas Gohr    'V' => 'v',
350884c254SAndreas Gohr    'W' => 'w',
360884c254SAndreas Gohr    'X' => 'x',
370884c254SAndreas Gohr    'Y' => 'y',
380884c254SAndreas Gohr    'Z' => 'z',
3913067778SAndreas Gohr    'À' => 'à',
400884c254SAndreas Gohr    'Á' => 'á',
4113067778SAndreas Gohr    'Â' => 'â',
4213067778SAndreas Gohr    'Ã' => 'ã',
430884c254SAndreas Gohr    'Ä' => 'ä',
440884c254SAndreas Gohr    'Å' => 'å',
4513067778SAndreas Gohr    'Æ' => 'æ',
460884c254SAndreas Gohr    'Ç' => 'ç',
470884c254SAndreas Gohr    'È' => 'è',
480884c254SAndreas Gohr    'É' => 'é',
490884c254SAndreas Gohr    'Ê' => 'ê',
500884c254SAndreas Gohr    'Ë' => 'ë',
510884c254SAndreas Gohr    'Ì' => 'ì',
520884c254SAndreas Gohr    'Í' => 'í',
530884c254SAndreas Gohr    'Î' => 'î',
540884c254SAndreas Gohr    'Ï' => 'ï',
550884c254SAndreas Gohr    'Ð' => 'ð',
560884c254SAndreas Gohr    'Ñ' => 'ñ',
570884c254SAndreas Gohr    'Ò' => 'ò',
580884c254SAndreas Gohr    'Ó' => 'ó',
590884c254SAndreas Gohr    'Ô' => 'ô',
600884c254SAndreas Gohr    'Õ' => 'õ',
610884c254SAndreas Gohr    'Ö' => 'ö',
620884c254SAndreas Gohr    'Ø' => 'ø',
630884c254SAndreas Gohr    'Ù' => 'ù',
640884c254SAndreas Gohr    'Ú' => 'ú',
650884c254SAndreas Gohr    'Û' => 'û',
660884c254SAndreas Gohr    'Ü' => 'ü',
670884c254SAndreas Gohr    'Ý' => 'ý',
680884c254SAndreas Gohr    'Þ' => 'þ',
690884c254SAndreas Gohr    'Ā' => 'ā',
700884c254SAndreas Gohr    'Ă' => 'ă',
710884c254SAndreas Gohr    'Ą' => 'ą',
7213067778SAndreas Gohr    'Ć' => 'ć',
7313067778SAndreas Gohr    'Ĉ' => 'ĉ',
7413067778SAndreas Gohr    'Ċ' => 'ċ',
750884c254SAndreas Gohr    'Č' => 'č',
7613067778SAndreas Gohr    'Ď' => 'ď',
770884c254SAndreas Gohr    'Đ' => 'đ',
780884c254SAndreas Gohr    'Ē' => 'ē',
790884c254SAndreas Gohr    'Ĕ' => 'ĕ',
800884c254SAndreas Gohr    'Ė' => 'ė',
810884c254SAndreas Gohr    'Ę' => 'ę',
820884c254SAndreas Gohr    'Ě' => 'ě',
830884c254SAndreas Gohr    'Ĝ' => 'ĝ',
840884c254SAndreas Gohr    'Ğ' => 'ğ',
850884c254SAndreas Gohr    'Ġ' => 'ġ',
860884c254SAndreas Gohr    'Ģ' => 'ģ',
870884c254SAndreas Gohr    'Ĥ' => 'ĥ',
880884c254SAndreas Gohr    'Ħ' => 'ħ',
890884c254SAndreas Gohr    'Ĩ' => 'ĩ',
900884c254SAndreas Gohr    'Ī' => 'ī',
910884c254SAndreas Gohr    'Ĭ' => 'ĭ',
920884c254SAndreas Gohr    'Į' => 'į',
930884c254SAndreas Gohr    'IJ' => 'ij',
940884c254SAndreas Gohr    'Ĵ' => 'ĵ',
950884c254SAndreas Gohr    'Ķ' => 'ķ',
960884c254SAndreas Gohr    'Ĺ' => 'ĺ',
970884c254SAndreas Gohr    'Ļ' => 'ļ',
980884c254SAndreas Gohr    'Ľ' => 'ľ',
990884c254SAndreas Gohr    'Ŀ' => 'ŀ',
1000884c254SAndreas Gohr    'Ł' => 'ł',
1010884c254SAndreas Gohr    'Ń' => 'ń',
1020884c254SAndreas Gohr    'Ņ' => 'ņ',
1030884c254SAndreas Gohr    'Ň' => 'ň',
1040884c254SAndreas Gohr    'Ŋ' => 'ŋ',
1050884c254SAndreas Gohr    'Ō' => 'ō',
1060884c254SAndreas Gohr    'Ŏ' => 'ŏ',
1070884c254SAndreas Gohr    'Ő' => 'ő',
1080884c254SAndreas Gohr    'Œ' => 'œ',
1090884c254SAndreas Gohr    'Ŕ' => 'ŕ',
1100884c254SAndreas Gohr    'Ŗ' => 'ŗ',
1110884c254SAndreas Gohr    'Ř' => 'ř',
1120884c254SAndreas Gohr    'Ś' => 'ś',
1130884c254SAndreas Gohr    'Ŝ' => 'ŝ',
1140884c254SAndreas Gohr    'Ş' => 'ş',
1150884c254SAndreas Gohr    'Š' => 'š',
1160884c254SAndreas Gohr    'Ţ' => 'ţ',
1170884c254SAndreas Gohr    'Ť' => 'ť',
1180884c254SAndreas Gohr    'Ŧ' => 'ŧ',
1190884c254SAndreas Gohr    'Ũ' => 'ũ',
1200884c254SAndreas Gohr    'Ū' => 'ū',
1210884c254SAndreas Gohr    'Ŭ' => 'ŭ',
1220884c254SAndreas Gohr    'Ů' => 'ů',
1230884c254SAndreas Gohr    'Ű' => 'ű',
1240884c254SAndreas Gohr    'Ų' => 'ų',
1250884c254SAndreas Gohr    'Ŵ' => 'ŵ',
1260884c254SAndreas Gohr    'Ŷ' => 'ŷ',
1270884c254SAndreas Gohr    'Ÿ' => 'ÿ',
1280884c254SAndreas Gohr    'Ź' => 'ź',
1290884c254SAndreas Gohr    'Ż' => 'ż',
1300884c254SAndreas Gohr    'Ž' => 'ž',
1310884c254SAndreas Gohr    'Ɓ' => 'ɓ',
1320884c254SAndreas Gohr    'Ƃ' => 'ƃ',
1330884c254SAndreas Gohr    'Ƅ' => 'ƅ',
1340884c254SAndreas Gohr    'Ɔ' => 'ɔ',
1350884c254SAndreas Gohr    'Ƈ' => 'ƈ',
1360884c254SAndreas Gohr    'Ɖ' => 'ɖ',
13713067778SAndreas Gohr    'Ɗ' => 'ɗ',
13813067778SAndreas Gohr    'Ƌ' => 'ƌ',
13913067778SAndreas Gohr    'Ǝ' => 'ǝ',
14013067778SAndreas Gohr    'Ə' => 'ə',
14113067778SAndreas Gohr    'Ɛ' => 'ɛ',
14213067778SAndreas Gohr    'Ƒ' => 'ƒ',
14313067778SAndreas Gohr    'Ɣ' => 'ɣ',
14413067778SAndreas Gohr    'Ɩ' => 'ɩ',
1450884c254SAndreas Gohr    'Ɨ' => 'ɨ',
14613067778SAndreas Gohr    'Ƙ' => 'ƙ',
1470884c254SAndreas Gohr    'Ɯ' => 'ɯ',
14813067778SAndreas Gohr    'Ɲ' => 'ɲ',
14913067778SAndreas Gohr    'Ɵ' => 'ɵ',
1500884c254SAndreas Gohr    'Ơ' => 'ơ',
1510884c254SAndreas Gohr    'Ƣ' => 'ƣ',
15213067778SAndreas Gohr    'Ƥ' => 'ƥ',
15313067778SAndreas Gohr    'Ʀ' => 'ʀ',
1540884c254SAndreas Gohr    'Ƨ' => 'ƨ',
1550884c254SAndreas Gohr    'Ʃ' => 'ʃ',
15613067778SAndreas Gohr    'Ƭ' => 'ƭ',
15713067778SAndreas Gohr    'Ʈ' => 'ʈ',
1580884c254SAndreas Gohr    'Ư' => 'ư',
1590884c254SAndreas Gohr    'Ʊ' => 'ʊ',
1600884c254SAndreas Gohr    'Ʋ' => 'ʋ',
1610884c254SAndreas Gohr    'Ƴ' => 'ƴ',
1620884c254SAndreas Gohr    'Ƶ' => 'ƶ',
1630884c254SAndreas Gohr    'Ʒ' => 'ʒ',
1640884c254SAndreas Gohr    'Ƹ' => 'ƹ',
1650884c254SAndreas Gohr    'Ƽ' => 'ƽ',
1660884c254SAndreas Gohr    'Dž' => 'dž',
1670884c254SAndreas Gohr    'Lj' => 'lj',
1680884c254SAndreas Gohr    'Nj' => 'nj',
1690884c254SAndreas Gohr    'Ǎ' => 'ǎ',
1700884c254SAndreas Gohr    'Ǐ' => 'ǐ',
1710884c254SAndreas Gohr    'Ǒ' => 'ǒ',
17213067778SAndreas Gohr    'Ǔ' => 'ǔ',
17313067778SAndreas Gohr    'Ǖ' => 'ǖ',
1740884c254SAndreas Gohr    'Ǘ' => 'ǘ',
1750884c254SAndreas Gohr    'Ǚ' => 'ǚ',
1760884c254SAndreas Gohr    'Ǜ' => 'ǜ',
1770884c254SAndreas Gohr    'Ǟ' => 'ǟ',
1780884c254SAndreas Gohr    'Ǡ' => 'ǡ',
1790884c254SAndreas Gohr    'Ǣ' => 'ǣ',
1800884c254SAndreas Gohr    'Ǥ' => 'ǥ',
1810884c254SAndreas Gohr    'Ǧ' => 'ǧ',
1820884c254SAndreas Gohr    'Ǩ' => 'ǩ',
1830884c254SAndreas Gohr    'Ǫ' => 'ǫ',
1840884c254SAndreas Gohr    'Ǭ' => 'ǭ',
1850884c254SAndreas Gohr    'Ǯ' => 'ǯ',
1860884c254SAndreas Gohr    'Dz' => 'dz',
1870884c254SAndreas Gohr    'Ǵ' => 'ǵ',
1880884c254SAndreas Gohr    'Ƕ' => 'ƕ',
1890884c254SAndreas Gohr    'Ƿ' => 'ƿ',
1900884c254SAndreas Gohr    'Ǹ' => 'ǹ',
1910884c254SAndreas Gohr    'Ǻ' => 'ǻ',
1920884c254SAndreas Gohr    'Ǽ' => 'ǽ',
1930884c254SAndreas Gohr    'Ǿ' => 'ǿ',
1940884c254SAndreas Gohr    'Ȁ' => 'ȁ',
1950884c254SAndreas Gohr    'Ȃ' => 'ȃ',
1960884c254SAndreas Gohr    'Ȅ' => 'ȅ',
1970884c254SAndreas Gohr    'Ȇ' => 'ȇ',
1980884c254SAndreas Gohr    'Ȉ' => 'ȉ',
1990884c254SAndreas Gohr    'Ȋ' => 'ȋ',
2000884c254SAndreas Gohr    'Ȍ' => 'ȍ',
2010884c254SAndreas Gohr    'Ȏ' => 'ȏ',
2020884c254SAndreas Gohr    'Ȑ' => 'ȑ',
2030884c254SAndreas Gohr    'Ȓ' => 'ȓ',
20413067778SAndreas Gohr    'Ȕ' => 'ȕ',
20513067778SAndreas Gohr    'Ȗ' => 'ȗ',
2060884c254SAndreas Gohr    'Ș' => 'ș',
2070884c254SAndreas Gohr    'Ț' => 'ț',
20813067778SAndreas Gohr    'Ȝ' => 'ȝ',
2090884c254SAndreas Gohr    'Ȟ' => 'ȟ',
2100884c254SAndreas Gohr    'Ƞ' => 'ƞ',
2110884c254SAndreas Gohr    'Ȣ' => 'ȣ',
21213067778SAndreas Gohr    'Ȥ' => 'ȥ',
2130884c254SAndreas Gohr    'Ȧ' => 'ȧ',
2140884c254SAndreas Gohr    'Ȩ' => 'ȩ',
2150884c254SAndreas Gohr    'Ȫ' => 'ȫ',
2160884c254SAndreas Gohr    'Ȭ' => 'ȭ',
2170884c254SAndreas Gohr    'Ȯ' => 'ȯ',
2180884c254SAndreas Gohr    'Ȱ' => 'ȱ',
2190884c254SAndreas Gohr    'Ȳ' => 'ȳ',
2200884c254SAndreas Gohr    'Ά' => 'ά',
2210884c254SAndreas Gohr    'Έ' => 'έ',
2220884c254SAndreas Gohr    'Ή' => 'ή',
2230884c254SAndreas Gohr    'Ί' => 'ί',
2240884c254SAndreas Gohr    'Ό' => 'ό',
2250884c254SAndreas Gohr    'Ύ' => 'ύ',
2260884c254SAndreas Gohr    'Ώ' => 'ώ',
22713067778SAndreas Gohr    'Α' => 'α',
22813067778SAndreas Gohr    'Β' => 'β',
22913067778SAndreas Gohr    'Γ' => 'γ',
2300884c254SAndreas Gohr    'Δ' => 'δ',
23113067778SAndreas Gohr    'Ε' => 'ε',
23213067778SAndreas Gohr    'Ζ' => 'ζ',
23313067778SAndreas Gohr    'Η' => 'η',
23413067778SAndreas Gohr    'Θ' => 'θ',
23513067778SAndreas Gohr    'Ι' => 'ι',
23613067778SAndreas Gohr    'Κ' => 'κ',
23713067778SAndreas Gohr    'Λ' => 'λ',
2380884c254SAndreas Gohr    'Μ' => 'μ',
23913067778SAndreas Gohr    'Ν' => 'ν',
24013067778SAndreas Gohr    'Ξ' => 'ξ',
24113067778SAndreas Gohr    'Ο' => 'ο',
24213067778SAndreas Gohr    'Π' => 'π',
24313067778SAndreas Gohr    'Ρ' => 'ρ',
244a1c26920SAndreas Gohr    'Σ' => 'σ',
24513067778SAndreas Gohr    'Τ' => 'τ',
24613067778SAndreas Gohr    'Υ' => 'υ',
2470884c254SAndreas Gohr    'Φ' => 'φ',
24813067778SAndreas Gohr    'Χ' => 'χ',
24913067778SAndreas Gohr    'Ψ' => 'ψ',
25013067778SAndreas Gohr    'Ω' => 'ω',
2510884c254SAndreas Gohr    'Ϊ' => 'ϊ',
2520884c254SAndreas Gohr    'Ϋ' => 'ϋ',
2530884c254SAndreas Gohr    'Ϙ' => 'ϙ',
2540884c254SAndreas Gohr    'Ϛ' => 'ϛ',
2550884c254SAndreas Gohr    'Ϝ' => 'ϝ',
2560884c254SAndreas Gohr    'Ϟ' => 'ϟ',
2570884c254SAndreas Gohr    'Ϡ' => 'ϡ',
25813067778SAndreas Gohr    'Ϣ' => 'ϣ',
25913067778SAndreas Gohr    'Ϥ' => 'ϥ',
26013067778SAndreas Gohr    'Ϧ' => 'ϧ',
26113067778SAndreas Gohr    'Ϩ' => 'ϩ',
26213067778SAndreas Gohr    'Ϫ' => 'ϫ',
26313067778SAndreas Gohr    'Ϭ' => 'ϭ',
2640884c254SAndreas Gohr    'Ϯ' => 'ϯ',
26513067778SAndreas Gohr    'Ѐ' => 'ѐ',
26613067778SAndreas Gohr    'Ё' => 'ё',
2670884c254SAndreas Gohr    'Ђ' => 'ђ',
2680884c254SAndreas Gohr    'Ѓ' => 'ѓ',
26913067778SAndreas Gohr    'Є' => 'є',
27013067778SAndreas Gohr    'Ѕ' => 'ѕ',
27113067778SAndreas Gohr    'І' => 'і',
27213067778SAndreas Gohr    'Ї' => 'ї',
2730884c254SAndreas Gohr    'Ј' => 'ј',
2740884c254SAndreas Gohr    'Љ' => 'љ',
2750884c254SAndreas Gohr    'Њ' => 'њ',
2760884c254SAndreas Gohr    'Ћ' => 'ћ',
2770884c254SAndreas Gohr    'Ќ' => 'ќ',
2780884c254SAndreas Gohr    'Ѝ' => 'ѝ',
2790884c254SAndreas Gohr    'Ў' => 'ў',
2800884c254SAndreas Gohr    'Џ' => 'џ',
2810884c254SAndreas Gohr    'А' => 'а',
2820884c254SAndreas Gohr    'Б' => 'б',
2830884c254SAndreas Gohr    'В' => 'в',
2840884c254SAndreas Gohr    'Г' => 'г',
2850884c254SAndreas Gohr    'Д' => 'д',
2860884c254SAndreas Gohr    'Е' => 'е',
2870884c254SAndreas Gohr    'Ж' => 'ж',
2880884c254SAndreas Gohr    'З' => 'з',
2890884c254SAndreas Gohr    'И' => 'и',
29013067778SAndreas Gohr    'Й' => 'й',
29113067778SAndreas Gohr    'К' => 'к',
29213067778SAndreas Gohr    'Л' => 'л',
29313067778SAndreas Gohr    'М' => 'м',
2940884c254SAndreas Gohr    'Н' => 'н',
2950884c254SAndreas Gohr    'О' => 'о',
29613067778SAndreas Gohr    'П' => 'п',
2970884c254SAndreas Gohr    'Р' => 'р',
29813067778SAndreas Gohr    'С' => 'с',
29913067778SAndreas Gohr    'Т' => 'т',
30013067778SAndreas Gohr    'У' => 'у',
30113067778SAndreas Gohr    'Ф' => 'ф',
30213067778SAndreas Gohr    'Х' => 'х',
30313067778SAndreas Gohr    'Ц' => 'ц',
30413067778SAndreas Gohr    'Ч' => 'ч',
3050884c254SAndreas Gohr    'Ш' => 'ш',
30613067778SAndreas Gohr    'Щ' => 'щ',
30713067778SAndreas Gohr    'Ъ' => 'ъ',
30813067778SAndreas Gohr    'Ы' => 'ы',
30913067778SAndreas Gohr    'Ь' => 'ь',
31013067778SAndreas Gohr    'Э' => 'э',
31113067778SAndreas Gohr    'Ю' => 'ю',
31213067778SAndreas Gohr    'Я' => 'я',
3130884c254SAndreas Gohr    'Ѡ' => 'ѡ',
3140884c254SAndreas Gohr    'Ѣ' => 'ѣ',
31513067778SAndreas Gohr    'Ѥ' => 'ѥ',
31613067778SAndreas Gohr    'Ѧ' => 'ѧ',
31713067778SAndreas Gohr    'Ѩ' => 'ѩ',
3180884c254SAndreas Gohr    'Ѫ' => 'ѫ',
31913067778SAndreas Gohr    'Ѭ' => 'ѭ',
32013067778SAndreas Gohr    'Ѯ' => 'ѯ',
32113067778SAndreas Gohr    'Ѱ' => 'ѱ',
32213067778SAndreas Gohr    'Ѳ' => 'ѳ',
32313067778SAndreas Gohr    'Ѵ' => 'ѵ',
3240884c254SAndreas Gohr    'Ѷ' => 'ѷ',
3250884c254SAndreas Gohr    'Ѹ' => 'ѹ',
3260884c254SAndreas Gohr    'Ѻ' => 'ѻ',
3270884c254SAndreas Gohr    'Ѽ' => 'ѽ',
3280884c254SAndreas Gohr    'Ѿ' => 'ѿ',
3290884c254SAndreas Gohr    'Ҁ' => 'ҁ',
3300884c254SAndreas Gohr    'Ҋ' => 'ҋ',
3310884c254SAndreas Gohr    'Ҍ' => 'ҍ',
3320884c254SAndreas Gohr    'Ҏ' => 'ҏ',
3330884c254SAndreas Gohr    'Ґ' => 'ґ',
3340884c254SAndreas Gohr    'Ғ' => 'ғ',
3350884c254SAndreas Gohr    'Ҕ' => 'ҕ',
3360884c254SAndreas Gohr    'Җ' => 'җ',
3370884c254SAndreas Gohr    'Ҙ' => 'ҙ',
3380884c254SAndreas Gohr    'Қ' => 'қ',
3390884c254SAndreas Gohr    'Ҝ' => 'ҝ',
3400884c254SAndreas Gohr    'Ҟ' => 'ҟ',
3410884c254SAndreas Gohr    'Ҡ' => 'ҡ',
3420884c254SAndreas Gohr    'Ң' => 'ң',
3430884c254SAndreas Gohr    'Ҥ' => 'ҥ',
3440884c254SAndreas Gohr    'Ҧ' => 'ҧ',
34513067778SAndreas Gohr    'Ҩ' => 'ҩ',
3460884c254SAndreas Gohr    'Ҫ' => 'ҫ',
3470884c254SAndreas Gohr    'Ҭ' => 'ҭ',
3480884c254SAndreas Gohr    'Ү' => 'ү',
3490884c254SAndreas Gohr    'Ұ' => 'ұ',
3500884c254SAndreas Gohr    'Ҳ' => 'ҳ',
3510884c254SAndreas Gohr    'Ҵ' => 'ҵ',
3520884c254SAndreas Gohr    'Ҷ' => 'ҷ',
3530884c254SAndreas Gohr    'Ҹ' => 'ҹ',
3540884c254SAndreas Gohr    'Һ' => 'һ',
3550884c254SAndreas Gohr    'Ҽ' => 'ҽ',
3560884c254SAndreas Gohr    'Ҿ' => 'ҿ',
3570884c254SAndreas Gohr    'Ӂ' => 'ӂ',
3580884c254SAndreas Gohr    'Ӄ' => 'ӄ',
3590884c254SAndreas Gohr    'Ӆ' => 'ӆ',
3600884c254SAndreas Gohr    'Ӈ' => 'ӈ',
3610884c254SAndreas Gohr    'Ӊ' => 'ӊ',
3620884c254SAndreas Gohr    'Ӌ' => 'ӌ',
3630884c254SAndreas Gohr    'Ӎ' => 'ӎ',
3640884c254SAndreas Gohr    'Ӑ' => 'ӑ',
3650884c254SAndreas Gohr    'Ӓ' => 'ӓ',
3660884c254SAndreas Gohr    'Ӕ' => 'ӕ',
3670884c254SAndreas Gohr    'Ӗ' => 'ӗ',
3680884c254SAndreas Gohr    'Ә' => 'ә',
3690884c254SAndreas Gohr    'Ӛ' => 'ӛ',
3700884c254SAndreas Gohr    'Ӝ' => 'ӝ',
3710884c254SAndreas Gohr    'Ӟ' => 'ӟ',
3720884c254SAndreas Gohr    'Ӡ' => 'ӡ',
3730884c254SAndreas Gohr    'Ӣ' => 'ӣ',
3740884c254SAndreas Gohr    'Ӥ' => 'ӥ',
3750884c254SAndreas Gohr    'Ӧ' => 'ӧ',
3760884c254SAndreas Gohr    'Ө' => 'ө',
3770884c254SAndreas Gohr    'Ӫ' => 'ӫ',
3780884c254SAndreas Gohr    'Ӭ' => 'ӭ',
3790884c254SAndreas Gohr    'Ӯ' => 'ӯ',
3800884c254SAndreas Gohr    'Ӱ' => 'ӱ',
3810884c254SAndreas Gohr    'Ӳ' => 'ӳ',
3820884c254SAndreas Gohr    'Ӵ' => 'ӵ',
3830884c254SAndreas Gohr    'Ӹ' => 'ӹ',
3840884c254SAndreas Gohr    'Ԁ' => 'ԁ',
3850884c254SAndreas Gohr    'Ԃ' => 'ԃ',
3860884c254SAndreas Gohr    'Ԅ' => 'ԅ',
3870884c254SAndreas Gohr    'Ԇ' => 'ԇ',
3880884c254SAndreas Gohr    'Ԉ' => 'ԉ',
3890884c254SAndreas Gohr    'Ԋ' => 'ԋ',
3900884c254SAndreas Gohr    'Ԍ' => 'ԍ',
3910884c254SAndreas Gohr    'Ԏ' => 'ԏ',
39213067778SAndreas Gohr    'Ա' => 'ա',
39313067778SAndreas Gohr    'Բ' => 'բ',
39413067778SAndreas Gohr    'Գ' => 'գ',
39513067778SAndreas Gohr    'Դ' => 'դ',
39613067778SAndreas Gohr    'Ե' => 'ե',
3970884c254SAndreas Gohr    'Զ' => 'զ',
39813067778SAndreas Gohr    'Է' => 'է',
39913067778SAndreas Gohr    'Ը' => 'ը',
40013067778SAndreas Gohr    'Թ' => 'թ',
40113067778SAndreas Gohr    'Ժ' => 'ժ',
40213067778SAndreas Gohr    'Ի' => 'ի',
40313067778SAndreas Gohr    'Լ' => 'լ',
4040884c254SAndreas Gohr    'Խ' => 'խ',
40513067778SAndreas Gohr    'Ծ' => 'ծ',
40613067778SAndreas Gohr    'Կ' => 'կ',
40713067778SAndreas Gohr    'Հ' => 'հ',
40813067778SAndreas Gohr    'Ձ' => 'ձ',
40913067778SAndreas Gohr    'Ղ' => 'ղ',
41013067778SAndreas Gohr    'Ճ' => 'ճ',
4110884c254SAndreas Gohr    'Մ' => 'մ',
41213067778SAndreas Gohr    'Յ' => 'յ',
41313067778SAndreas Gohr    'Ն' => 'ն',
41413067778SAndreas Gohr    'Շ' => 'շ',
41513067778SAndreas Gohr    'Ո' => 'ո',
41613067778SAndreas Gohr    'Չ' => 'չ',
41713067778SAndreas Gohr    'Պ' => 'պ',
4180884c254SAndreas Gohr    'Ջ' => 'ջ',
41913067778SAndreas Gohr    'Ռ' => 'ռ',
42013067778SAndreas Gohr    'Ս' => 'ս',
42113067778SAndreas Gohr    'Վ' => 'վ',
42213067778SAndreas Gohr    'Տ' => 'տ',
42313067778SAndreas Gohr    'Ր' => 'ր',
42413067778SAndreas Gohr    'Ց' => 'ց',
4250884c254SAndreas Gohr    'Ւ' => 'ւ',
42613067778SAndreas Gohr    'Փ' => 'փ',
42713067778SAndreas Gohr    'Ք' => 'ք',
42813067778SAndreas Gohr    'Օ' => 'օ',
42913067778SAndreas Gohr    'Ֆ' => 'ֆ',
4300884c254SAndreas Gohr    'Ḁ' => 'ḁ',
4310884c254SAndreas Gohr    'Ḃ' => 'ḃ',
4320884c254SAndreas Gohr    'Ḅ' => 'ḅ',
4330884c254SAndreas Gohr    'Ḇ' => 'ḇ',
4340884c254SAndreas Gohr    'Ḉ' => 'ḉ',
4350884c254SAndreas Gohr    'Ḋ' => 'ḋ',
4360884c254SAndreas Gohr    'Ḍ' => 'ḍ',
4370884c254SAndreas Gohr    'Ḏ' => 'ḏ',
4380884c254SAndreas Gohr    'Ḑ' => 'ḑ',
4390884c254SAndreas Gohr    'Ḓ' => 'ḓ',
4400884c254SAndreas Gohr    'Ḕ' => 'ḕ',
4410884c254SAndreas Gohr    'Ḗ' => 'ḗ',
4420884c254SAndreas Gohr    'Ḙ' => 'ḙ',
4430884c254SAndreas Gohr    'Ḛ' => 'ḛ',
4440884c254SAndreas Gohr    'Ḝ' => 'ḝ',
4450884c254SAndreas Gohr    'Ḟ' => 'ḟ',
4460884c254SAndreas Gohr    'Ḡ' => 'ḡ',
4470884c254SAndreas Gohr    'Ḣ' => 'ḣ',
4480884c254SAndreas Gohr    'Ḥ' => 'ḥ',
4490884c254SAndreas Gohr    'Ḧ' => 'ḧ',
4500884c254SAndreas Gohr    'Ḩ' => 'ḩ',
4510884c254SAndreas Gohr    'Ḫ' => 'ḫ',
4520884c254SAndreas Gohr    'Ḭ' => 'ḭ',
4530884c254SAndreas Gohr    'Ḯ' => 'ḯ',
4540884c254SAndreas Gohr    'Ḱ' => 'ḱ',
4550884c254SAndreas Gohr    'Ḳ' => 'ḳ',
4560884c254SAndreas Gohr    'Ḵ' => 'ḵ',
4570884c254SAndreas Gohr    'Ḷ' => 'ḷ',
4580884c254SAndreas Gohr    'Ḹ' => 'ḹ',
4590884c254SAndreas Gohr    'Ḻ' => 'ḻ',
4600884c254SAndreas Gohr    'Ḽ' => 'ḽ',
4610884c254SAndreas Gohr    'Ḿ' => 'ḿ',
4620884c254SAndreas Gohr    'Ṁ' => 'ṁ',
4630884c254SAndreas Gohr    'Ṃ' => 'ṃ',
4640884c254SAndreas Gohr    'Ṅ' => 'ṅ',
4650884c254SAndreas Gohr    'Ṇ' => 'ṇ',
4660884c254SAndreas Gohr    'Ṉ' => 'ṉ',
4670884c254SAndreas Gohr    'Ṋ' => 'ṋ',
4680884c254SAndreas Gohr    'Ṍ' => 'ṍ',
4690884c254SAndreas Gohr    'Ṏ' => 'ṏ',
4700884c254SAndreas Gohr    'Ṑ' => 'ṑ',
4710884c254SAndreas Gohr    'Ṓ' => 'ṓ',
4720884c254SAndreas Gohr    'Ṕ' => 'ṕ',
4730884c254SAndreas Gohr    'Ṗ' => 'ṗ',
4740884c254SAndreas Gohr    'Ṙ' => 'ṙ',
4750884c254SAndreas Gohr    'Ṛ' => 'ṛ',
4760884c254SAndreas Gohr    'Ṝ' => 'ṝ',
4770884c254SAndreas Gohr    'Ṟ' => 'ṟ',
4780884c254SAndreas Gohr    'Ṡ' => 'ṡ',
4790884c254SAndreas Gohr    'Ṣ' => 'ṣ',
4800884c254SAndreas Gohr    'Ṥ' => 'ṥ',
4810884c254SAndreas Gohr    'Ṧ' => 'ṧ',
4820884c254SAndreas Gohr    'Ṩ' => 'ṩ',
4830884c254SAndreas Gohr    'Ṫ' => 'ṫ',
4840884c254SAndreas Gohr    'Ṭ' => 'ṭ',
4850884c254SAndreas Gohr    'Ṯ' => 'ṯ',
4860884c254SAndreas Gohr    'Ṱ' => 'ṱ',
4870884c254SAndreas Gohr    'Ṳ' => 'ṳ',
4880884c254SAndreas Gohr    'Ṵ' => 'ṵ',
4890884c254SAndreas Gohr    'Ṷ' => 'ṷ',
4900884c254SAndreas Gohr    'Ṹ' => 'ṹ',
4910884c254SAndreas Gohr    'Ṻ' => 'ṻ',
4920884c254SAndreas Gohr    'Ṽ' => 'ṽ',
4930884c254SAndreas Gohr    'Ṿ' => 'ṿ',
4940884c254SAndreas Gohr    'Ẁ' => 'ẁ',
4950884c254SAndreas Gohr    'Ẃ' => 'ẃ',
4960884c254SAndreas Gohr    'Ẅ' => 'ẅ',
4970884c254SAndreas Gohr    'Ẇ' => 'ẇ',
4980884c254SAndreas Gohr    'Ẉ' => 'ẉ',
4990884c254SAndreas Gohr    'Ẋ' => 'ẋ',
5000884c254SAndreas Gohr    'Ẍ' => 'ẍ',
5010884c254SAndreas Gohr    'Ẏ' => 'ẏ',
5020884c254SAndreas Gohr    'Ẑ' => 'ẑ',
5030884c254SAndreas Gohr    'Ẓ' => 'ẓ',
5040884c254SAndreas Gohr    'Ẕ' => 'ẕ',
5050884c254SAndreas Gohr    'Ạ' => 'ạ',
5060884c254SAndreas Gohr    'Ả' => 'ả',
5070884c254SAndreas Gohr    'Ấ' => 'ấ',
5080884c254SAndreas Gohr    'Ầ' => 'ầ',
5090884c254SAndreas Gohr    'Ẩ' => 'ẩ',
5100884c254SAndreas Gohr    'Ẫ' => 'ẫ',
5110884c254SAndreas Gohr    'Ậ' => 'ậ',
5120884c254SAndreas Gohr    'Ắ' => 'ắ',
5130884c254SAndreas Gohr    'Ằ' => 'ằ',
5140884c254SAndreas Gohr    'Ẳ' => 'ẳ',
5150884c254SAndreas Gohr    'Ẵ' => 'ẵ',
5160884c254SAndreas Gohr    'Ặ' => 'ặ',
5170884c254SAndreas Gohr    'Ẹ' => 'ẹ',
5180884c254SAndreas Gohr    'Ẻ' => 'ẻ',
5190884c254SAndreas Gohr    'Ẽ' => 'ẽ',
5200884c254SAndreas Gohr    'Ế' => 'ế',
5210884c254SAndreas Gohr    'Ề' => 'ề',
5220884c254SAndreas Gohr    'Ể' => 'ể',
5230884c254SAndreas Gohr    'Ễ' => 'ễ',
5240884c254SAndreas Gohr    'Ệ' => 'ệ',
5250884c254SAndreas Gohr    'Ỉ' => 'ỉ',
5260884c254SAndreas Gohr    'Ị' => 'ị',
5270884c254SAndreas Gohr    'Ọ' => 'ọ',
5280884c254SAndreas Gohr    'Ỏ' => 'ỏ',
5290884c254SAndreas Gohr    'Ố' => 'ố',
5300884c254SAndreas Gohr    'Ồ' => 'ồ',
5310884c254SAndreas Gohr    'Ổ' => 'ổ',
5320884c254SAndreas Gohr    'Ỗ' => 'ỗ',
5330884c254SAndreas Gohr    'Ộ' => 'ộ',
5340884c254SAndreas Gohr    'Ớ' => 'ớ',
5350884c254SAndreas Gohr    'Ờ' => 'ờ',
5360884c254SAndreas Gohr    'Ở' => 'ở',
5370884c254SAndreas Gohr    'Ỡ' => 'ỡ',
5380884c254SAndreas Gohr    'Ợ' => 'ợ',
5390884c254SAndreas Gohr    'Ụ' => 'ụ',
5400884c254SAndreas Gohr    'Ủ' => 'ủ',
5410884c254SAndreas Gohr    'Ứ' => 'ứ',
5420884c254SAndreas Gohr    'Ừ' => 'ừ',
5430884c254SAndreas Gohr    'Ử' => 'ử',
5440884c254SAndreas Gohr    'Ữ' => 'ữ',
5450884c254SAndreas Gohr    'Ự' => 'ự',
5460884c254SAndreas Gohr    'Ỳ' => 'ỳ',
5470884c254SAndreas Gohr    'Ỵ' => 'ỵ',
5480884c254SAndreas Gohr    'Ỷ' => 'ỷ',
5490884c254SAndreas Gohr    'Ỹ' => 'ỹ',
5500884c254SAndreas Gohr    'Ἀ' => 'ἀ',
5510884c254SAndreas Gohr    'Ἁ' => 'ἁ',
5520884c254SAndreas Gohr    'Ἂ' => 'ἂ',
5530884c254SAndreas Gohr    'Ἃ' => 'ἃ',
5540884c254SAndreas Gohr    'Ἄ' => 'ἄ',
5550884c254SAndreas Gohr    'Ἅ' => 'ἅ',
5560884c254SAndreas Gohr    'Ἆ' => 'ἆ',
5570884c254SAndreas Gohr    'Ἇ' => 'ἇ',
5580884c254SAndreas Gohr    'Ἐ' => 'ἐ',
5590884c254SAndreas Gohr    'Ἑ' => 'ἑ',
5600884c254SAndreas Gohr    'Ἒ' => 'ἒ',
5610884c254SAndreas Gohr    'Ἓ' => 'ἓ',
5620884c254SAndreas Gohr    'Ἔ' => 'ἔ',
5630884c254SAndreas Gohr    'Ἕ' => 'ἕ',
5640884c254SAndreas Gohr    'Ἡ' => 'ἡ',
5650884c254SAndreas Gohr    'Ἢ' => 'ἢ',
5660884c254SAndreas Gohr    'Ἣ' => 'ἣ',
5670884c254SAndreas Gohr    'Ἤ' => 'ἤ',
5680884c254SAndreas Gohr    'Ἥ' => 'ἥ',
5690884c254SAndreas Gohr    'Ἦ' => 'ἦ',
5700884c254SAndreas Gohr    'Ἧ' => 'ἧ',
5710884c254SAndreas Gohr    'Ἰ' => 'ἰ',
5720884c254SAndreas Gohr    'Ἱ' => 'ἱ',
5730884c254SAndreas Gohr    'Ἲ' => 'ἲ',
5740884c254SAndreas Gohr    'Ἳ' => 'ἳ',
5750884c254SAndreas Gohr    'Ἴ' => 'ἴ',
5760884c254SAndreas Gohr    'Ἵ' => 'ἵ',
5770884c254SAndreas Gohr    'Ἶ' => 'ἶ',
5780884c254SAndreas Gohr    'Ἷ' => 'ἷ',
5790884c254SAndreas Gohr    'Ὀ' => 'ὀ',
5800884c254SAndreas Gohr    'Ὁ' => 'ὁ',
5810884c254SAndreas Gohr    'Ὂ' => 'ὂ',
5820884c254SAndreas Gohr    'Ὃ' => 'ὃ',
5830884c254SAndreas Gohr    'Ὄ' => 'ὄ',
5840884c254SAndreas Gohr    'Ὅ' => 'ὅ',
5850884c254SAndreas Gohr    'Ὑ' => 'ὑ',
5860884c254SAndreas Gohr    'Ὓ' => 'ὓ',
5870884c254SAndreas Gohr    'Ὕ' => 'ὕ',
5880884c254SAndreas Gohr    'Ὗ' => 'ὗ',
5890884c254SAndreas Gohr    'Ὡ' => 'ὡ',
5900884c254SAndreas Gohr    'Ὢ' => 'ὢ',
5910884c254SAndreas Gohr    'Ὣ' => 'ὣ',
5920884c254SAndreas Gohr    'Ὤ' => 'ὤ',
5930884c254SAndreas Gohr    'Ὥ' => 'ὥ',
5940884c254SAndreas Gohr    'Ὦ' => 'ὦ',
5950884c254SAndreas Gohr    'Ὧ' => 'ὧ',
5960884c254SAndreas Gohr    'ᾈ' => 'ᾀ',
5970884c254SAndreas Gohr    'ᾉ' => 'ᾁ',
5980884c254SAndreas Gohr    'ᾊ' => 'ᾂ',
5990884c254SAndreas Gohr    'ᾋ' => 'ᾃ',
6000884c254SAndreas Gohr    'ᾌ' => 'ᾄ',
6010884c254SAndreas Gohr    'ᾍ' => 'ᾅ',
6020884c254SAndreas Gohr    'ᾎ' => 'ᾆ',
6030884c254SAndreas Gohr    'ᾏ' => 'ᾇ',
6040884c254SAndreas Gohr    'ᾘ' => 'ᾐ',
6050884c254SAndreas Gohr    'ᾙ' => 'ᾑ',
6060884c254SAndreas Gohr    'ᾚ' => 'ᾒ',
6070884c254SAndreas Gohr    'ᾛ' => 'ᾓ',
6080884c254SAndreas Gohr    'ᾜ' => 'ᾔ',
6090884c254SAndreas Gohr    'ᾝ' => 'ᾕ',
6100884c254SAndreas Gohr    'ᾞ' => 'ᾖ',
6110884c254SAndreas Gohr    'ᾟ' => 'ᾗ',
6120884c254SAndreas Gohr    'ᾩ' => 'ᾡ',
6130884c254SAndreas Gohr    'ᾪ' => 'ᾢ',
6140884c254SAndreas Gohr    'ᾫ' => 'ᾣ',
6150884c254SAndreas Gohr    'ᾬ' => 'ᾤ',
6160884c254SAndreas Gohr    'ᾭ' => 'ᾥ',
6170884c254SAndreas Gohr    'ᾮ' => 'ᾦ',
6180884c254SAndreas Gohr    'ᾯ' => 'ᾧ',
6190884c254SAndreas Gohr    'Ᾰ' => 'ᾰ',
6200884c254SAndreas Gohr    'Ᾱ' => 'ᾱ',
6210884c254SAndreas Gohr    'Ὰ' => 'ὰ',
6220884c254SAndreas Gohr    'ᾼ' => 'ᾳ',
6230884c254SAndreas Gohr    'Ὲ' => 'ὲ',
6240884c254SAndreas Gohr    'Ὴ' => 'ὴ',
6250884c254SAndreas Gohr    'ῌ' => 'ῃ',
6260884c254SAndreas Gohr    'Ῐ' => 'ῐ',
6270884c254SAndreas Gohr    'Ῑ' => 'ῑ',
6280884c254SAndreas Gohr    'Ὶ' => 'ὶ',
6290884c254SAndreas Gohr    'Ῡ' => 'ῡ',
6300884c254SAndreas Gohr    'Ὺ' => 'ὺ',
6310884c254SAndreas Gohr    'Ῥ' => 'ῥ',
6320884c254SAndreas Gohr    'Ὸ' => 'ὸ',
6330884c254SAndreas Gohr    'Ὼ' => 'ὼ',
6340884c254SAndreas Gohr    'ῼ' => 'ῳ',
6350884c254SAndreas Gohr    'A' => 'a',
6360884c254SAndreas Gohr    'B' => 'b',
6370884c254SAndreas Gohr    'C' => 'c',
6380884c254SAndreas Gohr    'D' => 'd',
6390884c254SAndreas Gohr    'E' => 'e',
6400884c254SAndreas Gohr    'F' => 'f',
6410884c254SAndreas Gohr    'G' => 'g',
6420884c254SAndreas Gohr    'H' => 'h',
6430884c254SAndreas Gohr    'I' => 'i',
6440884c254SAndreas Gohr    'J' => 'j',
6450884c254SAndreas Gohr    'K' => 'k',
6460884c254SAndreas Gohr    'L' => 'l',
6470884c254SAndreas Gohr    'M' => 'm',
6480884c254SAndreas Gohr    'N' => 'n',
6490884c254SAndreas Gohr    'O' => 'o',
6500884c254SAndreas Gohr    'P' => 'p',
6510884c254SAndreas Gohr    'Q' => 'q',
6520884c254SAndreas Gohr    'R' => 'r',
6530884c254SAndreas Gohr    'S' => 's',
6540884c254SAndreas Gohr    'T' => 't',
6550884c254SAndreas Gohr    'U' => 'u',
6560884c254SAndreas Gohr    'V' => 'v',
6570884c254SAndreas Gohr    'W' => 'w',
6580884c254SAndreas Gohr    'X' => 'x',
6590884c254SAndreas Gohr    'Y' => 'y',
6600884c254SAndreas Gohr    'Z' => 'z',
66113067778SAndreas Gohr];
662