taiqihe commited on
Commit
ec5d7f2
1 Parent(s): 08ccc13

initial commit

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
odin_data.py ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright 2023 The HuggingFace Datasets Authors and
2
+ # the current dataset script contributor.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ """HF datasets wrapper for the SIGMORPHON-2023 IGT shared task data (open track)"""
16
+
17
+ import datasets
18
+
19
+ # flake8: noqa
20
+ from .odin_languages import _ALL_LANGS
21
+
22
+ _ALL_CONFIGS = [lang for lang in _ALL_LANGS] + ["all"]
23
+
24
+ _DESCRIPTION = ""
25
+ _CITATION = ""
26
+ _HOMEPAGE_URL = "https://github.com/sigmorphon/2023glossingST"
27
+
28
+ # hard-code to use open track
29
+ _DATA_URL = "odin_raw/{shortname}.txt"
30
+
31
+
32
+ class GlossConfig(datasets.BuilderConfig):
33
+ def __init__(self, name, **kwargs):
34
+ super().__init__(name=name, version=datasets.Version("0.0.0", ""), **kwargs)
35
+
36
+
37
+ class Gloss(datasets.GeneratorBasedBuilder):
38
+ BUILDER_CONFIGS = [GlossConfig(name) for name in _ALL_CONFIGS]
39
+
40
+ def _info(self):
41
+ # langs = _ALL_CONFIGS
42
+ features = datasets.Features(
43
+ {
44
+ "transcription": datasets.Value("string"),
45
+ "language": datasets.Value("string"),
46
+ "underlying": datasets.Value("string"),
47
+ "gloss": datasets.Value("string"),
48
+ "translation": datasets.Value("string"),
49
+ }
50
+ )
51
+
52
+ return datasets.DatasetInfo(
53
+ description=_DESCRIPTION,
54
+ features=features,
55
+ homepage=_HOMEPAGE_URL,
56
+ citation=_CITATION,
57
+ task_templates=None,
58
+ )
59
+
60
+ def _split_generators(self, dl_manager):
61
+ splits = ["train"]
62
+
63
+ if self.config.name == "all":
64
+ data_urls = {
65
+ split: [
66
+ _DATA_URL.format(
67
+ longname=_ALL_LANGS[lang], shortname=lang, split=split
68
+ )
69
+ for lang in _ALL_LANGS
70
+ ]
71
+ for split in splits
72
+ }
73
+ else:
74
+ data_urls = {
75
+ split: [
76
+ _DATA_URL.format(
77
+ longname=_ALL_LANGS[self.config.name],
78
+ shortname=self.config.name,
79
+ split=split,
80
+ )
81
+ ]
82
+ for split in splits
83
+ }
84
+
85
+ text_paths = dl_manager.download(data_urls)
86
+
87
+ return [
88
+ datasets.SplitGenerator(
89
+ name=datasets.Split.TRAIN,
90
+ gen_kwargs={
91
+ "text_paths": text_paths.get("train"),
92
+ },
93
+ ),
94
+ # datasets.SplitGenerator(
95
+ # name=datasets.Split.VALIDATION,
96
+ # gen_kwargs={
97
+ # "text_paths": text_paths.get("dev"),
98
+ # },
99
+ # ),
100
+ ]
101
+
102
+ def _get_data(self, lang, transcription, segmentation, glosses, translation):
103
+ return {
104
+ "language": lang,
105
+ "transcription": transcription,
106
+ "underlying": segmentation,
107
+ "gloss": glosses,
108
+ "translation": translation,
109
+ }
110
+
111
+ def _generate_examples(self, text_paths):
112
+ key = 0
113
+
114
+ if self.config.name == "all":
115
+ langs = _ALL_LANGS
116
+ else:
117
+ langs = [self.config.name]
118
+
119
+ for text_path, lang in zip(text_paths, langs):
120
+ with open(text_path, encoding="utf-8") as file:
121
+ current_entry = [None, None, None, None] # transc, segm, gloss, transl
122
+
123
+ for line in file:
124
+ # Determine the type of line
125
+ # If we see a type that has already been filled for the current
126
+ # entry, something is wrong
127
+ line_prefix = line[:2]
128
+ if line_prefix == "\\t" and current_entry[0] is None:
129
+ current_entry[0] = line[3:].strip()
130
+ elif line_prefix == "\\m" and current_entry[1] is None:
131
+ current_entry[1] = line[3:].strip()
132
+ elif line_prefix == "\\g" and current_entry[2] is None:
133
+ if len(line[3:].strip()) > 0:
134
+ current_entry[2] = line[3:].strip()
135
+ elif line_prefix == "\\l" and current_entry[3] is None:
136
+ current_entry[3] = line[3:].strip()
137
+ # Once we have the translation, we've reached the end and can
138
+ # save this entry
139
+ yield key, self._get_data(
140
+ lang=_ALL_LANGS[lang],
141
+ transcription=current_entry[0],
142
+ segmentation=current_entry[1],
143
+ glosses=current_entry[2],
144
+ translation=current_entry[3],
145
+ )
146
+ key += 1
147
+ current_entry = [None, None, None, None]
148
+ elif line.strip() != "":
149
+ # Something went wrong
150
+ # print("Skipping line: ", line)
151
+ pass
152
+ else:
153
+ if not current_entry == [None, None, None, None]:
154
+ yield key, self._get_data(
155
+ lang=_ALL_LANGS[lang],
156
+ transcription=current_entry[0],
157
+ segmentation=current_entry[1],
158
+ glosses=current_entry[2],
159
+ translation=None,
160
+ )
161
+ key += 1
162
+ current_entry = [None, None, None, None]
163
+ # Might have one extra line at the end
164
+ if not current_entry == [None, None, None, None]:
165
+ yield key, self._get_data(
166
+ lang=_ALL_LANGS[lang],
167
+ transcription=current_entry[0],
168
+ segmentation=current_entry[1],
169
+ glosses=current_entry[2],
170
+ translation=None,
171
+ )
172
+ key += 1
odin_languages.py ADDED
@@ -0,0 +1,975 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ _ALL_LANGS = {
2
+ "bav": "Vengo",
3
+ "acf": "Saint Lucian Creole French",
4
+ "frp": "Arpitan",
5
+ "sea": "Semai",
6
+ "atv-alt": "Northern Altai",
7
+ "csh": "Asho Chin",
8
+ "ddo": "Tsez",
9
+ "ukr": "Ukrainian",
10
+ "skd": "Southern Sierra Miwok",
11
+ "pej": "Northern Pomo",
12
+ "cjo-cpy": "Ash\u00e9ninka Pajonal",
13
+ "bfu": "Bunan",
14
+ "poi": "Highland Popoluca",
15
+ "shp": "Shipibo-Conibo",
16
+ "nyt": "Nyawaygi",
17
+ "zav": "Yatzachi Zapotec",
18
+ "kut": "Kutenai",
19
+ "rap": "Rapanui",
20
+ "ndh": "Ndali",
21
+ "jup": "Hup",
22
+ "cok-crn": "Santa Teresa Cora",
23
+ "neb": "Toura (C\u00f4te d'Ivoire)",
24
+ "bho": "Bhojpuri",
25
+ "kiu": "Kirmanjki",
26
+ "nas": "Naasioi",
27
+ "tnc": "Tanimuca-Retuar\u00e3",
28
+ "wsk": "Waskia",
29
+ "tow": "Towa",
30
+ "hsb": "Upper Sorbian",
31
+ "rmb": "Rembarrnga",
32
+ "bee": "Byangsi",
33
+ "orh": "Oroqen",
34
+ "nlg": "Gela",
35
+ "kdr": "Karaim",
36
+ "tby": "Tabaru",
37
+ "tae": "Tariana",
38
+ "der": "Deori",
39
+ "peg": "Pengo",
40
+ "cap": "Chipaya",
41
+ "faa": "Fasu",
42
+ "ykg-yu": "Northern Yukaghir",
43
+ "kvw": "Wersing",
44
+ "smo": "Samoan",
45
+ "kor": "Korean",
46
+ "dic": "Lakota Dida",
47
+ "quh": "South Bolivian Quechua",
48
+ "skv": "Skou",
49
+ "yap": "Yapese",
50
+ "dua": "Duala",
51
+ "tbg": "North Tairora",
52
+ "csy": "Sizang Chin",
53
+ "aho": "Ahom",
54
+ "khc-bhq": "Tukang Besi North",
55
+ "srq": "Sirion\u00f3",
56
+ "hid": "Hidatsa",
57
+ "cac": "Chuj",
58
+ "cir": "Tiri-Mea",
59
+ "ace": "Acehnese",
60
+ "hmb": "Humburi Senni Songhay",
61
+ "zai": "Isthmus Zapotec",
62
+ "trp": "Kok Borok",
63
+ "idu": "Idoma",
64
+ "cmn": "Mandarin Chinese",
65
+ "che": "Chechen",
66
+ "bck": "Bunaba",
67
+ "otw": "Ottawa",
68
+ "ati": "Atti\u00e9",
69
+ "vut": "Vute",
70
+ "khk": "Halh Mongolian",
71
+ "chr": "Cherokee",
72
+ "hna": "Mina (Cameroon)",
73
+ "kwk": "Kwak'wala",
74
+ "swh": "Swahili",
75
+ "niv": "Amur Nivkh",
76
+ "trc": "Copala Triqui",
77
+ "ewe": "Ewe",
78
+ "apt": "Apatani",
79
+ "sag-sbp": "Sango",
80
+ "one": "Oneida",
81
+ "wac": "Upper Chinook",
82
+ "csc": "Catalan Sign Language",
83
+ "gma": "Gambera",
84
+ "qwh-qxn": "Huaylas Ancash Quechua",
85
+ "dta": "Dagur",
86
+ "urh": "Urhobo",
87
+ "dak": "Dakota",
88
+ "jap": "Jaru\u00e1ra",
89
+ "djj": "Djeebbana",
90
+ "jeh": "Jeh",
91
+ "slv": "Slovenian",
92
+ "djr": "Djambarrpuyngu",
93
+ "azb": "South Azerbaijani",
94
+ "swb": "Maore Comorian",
95
+ "ote": "Mezquital Otomi",
96
+ "cak": "Kaqchikel",
97
+ "kbk": "Grass Koiari",
98
+ "aoa": "Angolar",
99
+ "wga": "Wagaya",
100
+ "ses": "Koyraboro Senni Songhai",
101
+ "qxs-cng": "Southern Qiang",
102
+ "thk": "Tharaka",
103
+ "glg": "Galician",
104
+ "cni": "Ash\u00e1ninka",
105
+ "yor": "Yoruba",
106
+ "yuz": "Yuracar\u00e9",
107
+ "alr": "Alutor",
108
+ "suk": "Sukuma",
109
+ "tdt": "Tetun Dili",
110
+ "ngn": "Ngwo",
111
+ "any": "Anyin",
112
+ "ivv": "Itbayat",
113
+ "niy": "Ngiti",
114
+ "ngk": "Ngalkbun",
115
+ "pus": "Nuclear Pashto",
116
+ "nds": "Eastern Low German",
117
+ "ady": "Adyghe",
118
+ "kmc": "Southern Dong",
119
+ "cso": "Sochiapam Chinantec",
120
+ "nly": "Nyamal",
121
+ "jac": "Popti'",
122
+ "itz": "Itz\u00e1",
123
+ "kas": "Kashmiri",
124
+ "ajp": "South Levantine Arabic",
125
+ "yia": "Yinggarda",
126
+ "ary": "Moroccan Arabic",
127
+ "bbc": "Batak Toba",
128
+ "jpn": "Japanese",
129
+ "twf": "Taos Northern Tiwa",
130
+ "wbv": "Wajarri",
131
+ "dan": "Danish",
132
+ "brc": "Berbice Creole Dutch",
133
+ "vai": "Vai",
134
+ "yua": "Yucatec Maya",
135
+ "kpw": "Kobon",
136
+ "ktg": "Kalkutung",
137
+ "ojg-ojb": "Eastern Ojibwa",
138
+ "urd": "Urdu",
139
+ "kgs": "Kumbainggar",
140
+ "chp": "Chipewyan",
141
+ "for": "Fore",
142
+ "pad": "Paumari",
143
+ "des": "Desano",
144
+ "gcr": "Guianese Creole French",
145
+ "bod": "Tibetan",
146
+ "pip": "Pero",
147
+ "crs": "Seselwa Creole French",
148
+ "adj": "Adioukrou",
149
+ "tsj": "Tshangla",
150
+ "non": "Old Norse",
151
+ "bft": "Balti",
152
+ "trv": "Seediq",
153
+ "kir": "Kirghiz",
154
+ "piu": "Pintupi-Luritja",
155
+ "srb": "Sora",
156
+ "ast": "Asturian-Leonese-Cantabrian",
157
+ "ztu": "G\u00fcil\u00e1 Zapotec",
158
+ "tzb-tzh": "Tzeltal, Bachaj\u00f3n",
159
+ "kmu": "Kanite",
160
+ "pes": "Western Farsi",
161
+ "kjl-kip-kgj-kif": "Western Parbate Kham",
162
+ "nuy": "Wubuy",
163
+ "goh": "Old High German (ca. 750-1050)",
164
+ "nir": "Nimboran",
165
+ "ayu": "Ayu",
166
+ "awn": "Awngi",
167
+ "ilo": "Iloko",
168
+ "kin": "Kinyarwanda",
169
+ "gni": "Gooniyandi",
170
+ "kck": "Kalanga",
171
+ "shs": "Shuswap",
172
+ "eng": "English",
173
+ "kac": "Southern Jinghpaw",
174
+ "khb": "L\u00fc",
175
+ "bgq": "Bagri",
176
+ "nun-nut-raw-yue": "Nung (Myanmar)",
177
+ "nyn-cgg": "Nyankole",
178
+ "tbo": "Tawala",
179
+ "yab": "Yuhup",
180
+ "enq": "Enga",
181
+ "ssf": "Thao",
182
+ "fro": "Old French (842-ca. 1400)",
183
+ "sbe": "Saliba",
184
+ "esi": "North Alaskan Inupiatun",
185
+ "amp": "Alamblak",
186
+ "van": "Walman",
187
+ "did-laj-lno": "Didinga",
188
+ "srp-hrv": "Serbian Standard",
189
+ "kmn": "Awtuw",
190
+ "cku": "Koasati",
191
+ "gvn": "Kuku-Yalanji",
192
+ "gru": "Kistane",
193
+ "rwr": "Marwari (India)",
194
+ "kfz": "Koromf\u00e9",
195
+ "kpv": "Komi-Zyrian",
196
+ "pyu": "Puyuma",
197
+ "wrr": "Wardaman",
198
+ "sac": "Meskwaki",
199
+ "ted": "Tepo Krumen",
200
+ "njo": "Ao Naga",
201
+ "sei": "Seri",
202
+ "kla": "Klamath-Modoc",
203
+ "kzh": "Kenuzi-Dongola",
204
+ "egy": "Egyptian (Ancient)",
205
+ "bew": "Betawi",
206
+ "tvo": "Tidore",
207
+ "fuc": "Pulaar",
208
+ "jek": "Jeli",
209
+ "vls": "Western Flemish",
210
+ "pih": "Pitcairn-Norfolk",
211
+ "gnn": "Gumatj",
212
+ "aer-are": "Eastern Arrernte",
213
+ "hoa": "Hoava",
214
+ "gbi": "Galela",
215
+ "fuv-fub-fuq-fuh-fuc": "Hausa States Fulfulde",
216
+ "grt": "Garo",
217
+ "fon": "Fon",
218
+ "kgq": "Kamoro",
219
+ "tur": "Turkish",
220
+ "zmu": "Muruwari",
221
+ "cad": "Caddo",
222
+ "dhr": "Dhargari",
223
+ "nhg": "Tetelcingo Nahuatl",
224
+ "bsk": "Burushaski",
225
+ "now": "Nyambo",
226
+ "dif": "Dieri",
227
+ "ood": "Tohono O'odham",
228
+ "als": "Northern Tosk Albanian",
229
+ "gvr": "Gurung",
230
+ "ktn": "Kariti\u00e2na",
231
+ "amh": "Amharic",
232
+ "nmn": "East Taa",
233
+ "nav": "Navajo",
234
+ "zaa": "Sierra de Ju\u00e1rez Zapotec",
235
+ "afr": "Afrikaans",
236
+ "wuu": "Wu Chinese",
237
+ "guh": "Sikuani",
238
+ "kpv-koi": "Komi-Zyrian",
239
+ "aer": "Eastern Arrernte",
240
+ "oia": "Oirata",
241
+ "guw": "Gun",
242
+ "pjt": "Pitjantjatjara",
243
+ "krc": "Karachay-Balkar",
244
+ "yue": "Yue Chinese",
245
+ "fin": "Finnish",
246
+ "osp": "Old Spanish",
247
+ "bcr": "Witsuwit'en-Babine",
248
+ "nay": "Narrinyeri",
249
+ "shu": "Chadian Arabic",
250
+ "anu": "Anuak",
251
+ "bjh": "Bahinemo",
252
+ "end": "Ende",
253
+ "tsz": "Purepecha",
254
+ "sat": "Santali",
255
+ "agq": "Aghem",
256
+ "gsc": "Gascon (Retired)",
257
+ "djk": "Aukan",
258
+ "hbb": "Huba",
259
+ "qxo": "Southern Conchucos Ancash Quechua",
260
+ "ryu": "Central Okinawan",
261
+ "san": "Sanskrit",
262
+ "tzt-tzj": "Tz'utujil, Western",
263
+ "ksw": "S'gaw Karen",
264
+ "ski": "Sika",
265
+ "ekg": "Ekari",
266
+ "ani": "Andi",
267
+ "fao": "Faroese",
268
+ "djd": "Jaminjung-Ngaliwurru",
269
+ "nci": "Classical Nahuatl",
270
+ "klu": "Klao",
271
+ "agb": "Legbo",
272
+ "sot": "Southern Sotho",
273
+ "tzj-tzt": "Tz'utujil",
274
+ "spp": "Supyire Senoufo",
275
+ "plt": "Plateau Malagasy",
276
+ "gyn": "Guyanese Creole English",
277
+ "arn": "Mapudungun",
278
+ "imn": "Imonda",
279
+ "bot": "Bongo",
280
+ "diq": "Dimli",
281
+ "slp": "Lamaholot",
282
+ "ywr": "Yawuru",
283
+ "hae": "Eastern Oromo",
284
+ "tri": "Tri\u00f3",
285
+ "cha": "Chamorro",
286
+ "pms": "Piemontese",
287
+ "bxw-fmp": "Bankagooma",
288
+ "ojg-otw": "Eastern Ojibwa",
289
+ "auw": "Awyi",
290
+ "cks": "Tayo",
291
+ "aqc": "Archi",
292
+ "ntp": "Northern Tepehuan",
293
+ "rus": "Russian",
294
+ "yak": "Northwest Sahaptin",
295
+ "ibo": "Igbo",
296
+ "srp": "Serbian Standard",
297
+ "ayz": "Maybrat-Karon",
298
+ "skb": "Saek",
299
+ "nus": "Nuer",
300
+ "tus": "Tuscarora",
301
+ "ruf": "Luguru",
302
+ "gbz": "Zoroastrian Yazdi",
303
+ "uzb": "Uzbek",
304
+ "gdo": "Godoberi",
305
+ "boa": "Bora",
306
+ "ikt": "Western Canadian Inuktitut",
307
+ "ktz": "South-Eastern Ju",
308
+ "qub-quz-quh-quy-qwh": "Huallaga Hu\u00e1nuco Quechua",
309
+ "ths": "Thakali",
310
+ "kxi": "Keningau Murut",
311
+ "ang": "Old English (ca. 450-1100)",
312
+ "gsg": "German Sign Language",
313
+ "fuv-fub-fuq-fuh": "Hausa States Fulfulde",
314
+ "eve": "Even",
315
+ "nna": "Nyangumarta",
316
+ "tgk": "Tajik",
317
+ "pap": "Papiamento",
318
+ "etu": "Ejagham",
319
+ "rcf": "R\u00e9union Creole French",
320
+ "jmc": "Machame",
321
+ "huz": "Hunzib",
322
+ "crj": "Southern East Cree",
323
+ "wao": "Wappo",
324
+ "oac": "Oroch",
325
+ "dis": "Dimasa",
326
+ "ker": "Kera",
327
+ "dga": "Central Dagaare",
328
+ "ike": "Eastern Canadian Inuktitut",
329
+ "sas": "Sasak",
330
+ "bps": "Sarangani Blaan",
331
+ "woe": "Woleaian",
332
+ "cop": "Coptic",
333
+ "nia": "Nias",
334
+ "apc": "Levantine Arabic",
335
+ "esu": "Central Alaskan Yupik",
336
+ "gmh": "Middle High German",
337
+ "ple": "Palu'e",
338
+ "str": "Northern Straits Salish",
339
+ "qvn": "North Jun\u00edn Quechua",
340
+ "omb": "East Ambae",
341
+ "yih": "Western Yiddish",
342
+ "wof": "Gambian Wolof",
343
+ "hye": "Eastern Armenian",
344
+ "tbc": "Takia",
345
+ "pnb": "Western Panjabi",
346
+ "kjq": "Western Keres",
347
+ "ixi": "Ixil Nebaj",
348
+ "gle": "Irish",
349
+ "ijc": "Izon",
350
+ "orv": "Old Russian",
351
+ "nhe-nhw-nch-ngu-nhs-azz": "Eastern Huasteca Nahuatl",
352
+ "bci": "Baoul\u00e9",
353
+ "bnn": "Bunun",
354
+ "kkk": "Kokota",
355
+ "pnt": "Pontic",
356
+ "cjv": "Chuave",
357
+ "kcd": "Ngkontar Ngkolmpu",
358
+ "yad": "Yagua",
359
+ "nio": "Nganasan",
360
+ "dyy": "Dyaabugay",
361
+ "tat": "Tatar",
362
+ "yee": "Yimas",
363
+ "ons": "Ono",
364
+ "alp": "Alune",
365
+ "puw": "Puluwatese",
366
+ "knc": "Central Kanuri",
367
+ "pln": "Palenquero",
368
+ "had": "Hatam",
369
+ "ifb": "Batad Ifugao",
370
+ "fuv": "Hausa States Fulfulde",
371
+ "nnb": "Nande",
372
+ "ise": "Italian Sign Language",
373
+ "vay": "Wayu",
374
+ "gyd": "Kayardild",
375
+ "rab": "Camling",
376
+ "car": "Galibi Carib",
377
+ "kbc": "Kadiw\u00e9u",
378
+ "snf": "Noon",
379
+ "gbc": "Garrwan",
380
+ "qwh": "Huaylas Ancash Quechua",
381
+ "qvs": "San Mart\u00edn Quechua",
382
+ "saj": "Sahu",
383
+ "alo": "Larike-Wakasihu",
384
+ "idb": "Daman-Diu Portuguese",
385
+ "zap": "Zapotec",
386
+ "tly": "North-Central Talysh",
387
+ "wkw": "Wakawaka",
388
+ "pbt": "Southern Pashto",
389
+ "tzz": "Tzotzil, Zinacant\u00e1n",
390
+ "ach": "Acoli",
391
+ "nan": "Min Nan Chinese",
392
+ "ian": "Iatmul",
393
+ "gbj": "Bodo Gadaba",
394
+ "dus": "Dumi",
395
+ "quz": "Cusco Quechua",
396
+ "peb": "Eastern Pomo",
397
+ "aib-ain": "Ainu (China)",
398
+ "iai": "Iaai",
399
+ "pwn": "Paiwan",
400
+ "dnw": "Western Dani",
401
+ "rma": "Rama",
402
+ "hit": "Hittite",
403
+ "sza": "Semelai",
404
+ "rog": "Northern Roglai",
405
+ "vmw": "Makhuwa",
406
+ "ckb": "Central Kurdish",
407
+ "umu": "Munsee",
408
+ "kju": "Kashaya",
409
+ "koi": "Komi-Permyak",
410
+ "koy": "Koyukon",
411
+ "ojp": "Old Japanese",
412
+ "ert": "Eritai",
413
+ "csz": "Hanis",
414
+ "cpu": "Pichis Ash\u00e9ninka",
415
+ "yuf": "Havasupai-Walapai-Yavapai",
416
+ "ase": "American Sign Language",
417
+ "ojc": "Central Ojibwa",
418
+ "akv": "Akhvakh",
419
+ "fab": "Annobonese",
420
+ "sme": "North Saami",
421
+ "hun": "Hungarian",
422
+ "ard-wgg": "Arabana",
423
+ "urk": "Urak Lawoi'",
424
+ "och": "Old Chinese",
425
+ "ctu-cti": "Chol",
426
+ "odt": "Old Dutch-Old Frankish",
427
+ "apy": "Apala\u00ed",
428
+ "cup": "Cupe\u00f1o",
429
+ "ygr": "Yagaria",
430
+ "bfa": "Bari",
431
+ "tyn": "Kombai",
432
+ "bhq-khc": "Tukang Besi South",
433
+ "pit": "Pitta Pitta",
434
+ "cbs": "Cashinahua",
435
+ "nab": "Southern Nambiku\u00e1ra",
436
+ "yai": "Yagnobi",
437
+ "ydd": "Eastern Yiddish",
438
+ "nez": "Nez Perce",
439
+ "bwu": "Buli (Ghana)",
440
+ "yaz": "Lokaa",
441
+ "hur": "Halkomelem",
442
+ "tpc": "Azoy\u00fa Me'phaa",
443
+ "nhe-nhw-nch-nhs": "Eastern Huasteca Nahuatl",
444
+ "kaz": "Kazakh",
445
+ "onr-oin": "Northern One",
446
+ "asb": "Assiniboine",
447
+ "rmn": "Balkan Romani",
448
+ "yuc": "Yuchi",
449
+ "waw": "Waiwai",
450
+ "pdc": "Pennsylvania German",
451
+ "yij": "Yindjibarndi",
452
+ "bca-bfc-bfs": "Central Bai",
453
+ "pav": "Wari'",
454
+ "cro": "Crow",
455
+ "fud": "East Futuna",
456
+ "ddj": "Jaru",
457
+ "gue-rop": "Gurindji",
458
+ "ojg-ojc": "Eastern Ojibwa",
459
+ "gax-hae": "Borana-Arsi-Guji Oromo",
460
+ "nya": "Nyanja",
461
+ "kio": "Kiowa",
462
+ "khq": "Koyra Chiini Songhay",
463
+ "vec": "Venetian",
464
+ "toi": "Tonga (Zambia)",
465
+ "jut": "Jutish",
466
+ "dag": "Dagbani",
467
+ "bfa-mqu-muw-unr": "Bari",
468
+ "acv": "Achumawi",
469
+ "kwi": "Awa-Cuaiquer",
470
+ "bnd": "Banda (Indonesia)",
471
+ "tig": "Tigre",
472
+ "pei": "Chichimeca-Jonaz",
473
+ "tao": "Yami",
474
+ "chg": "Chagatai",
475
+ "kjc": "Coastal Konjo",
476
+ "vie": "Vietnamese",
477
+ "soq": "Kanasi",
478
+ "rop": "Kriol",
479
+ "bsf": "Bauchi",
480
+ "wba": "Warao",
481
+ "nbi": "Mao Naga",
482
+ "pau": "Palauan",
483
+ "gvp": "Par\u00e1-Maranh\u00e3o Gavi\u00e3o",
484
+ "ess": "Central Siberian Yupik",
485
+ "hbo": "Ancient Hebrew",
486
+ "huq": "Tsat",
487
+ "ngu": "Central Guerrero Nahuatl",
488
+ "wno": "Wano",
489
+ "ces": "Czech",
490
+ "plo": "Oluta Popoluca",
491
+ "sin": "Sinhala",
492
+ "kjh": "Khakas",
493
+ "esu-ess": "Central Alaskan Yupik",
494
+ "onr-oin-aun": "Northern One",
495
+ "nad": "Nijadali",
496
+ "cji": "Chamalal",
497
+ "cjs": "Shor",
498
+ "tui": "Tupuri",
499
+ "kea": "Kabuverdianu",
500
+ "tuv": "Turkana",
501
+ "gla": "Scottish Gaelic",
502
+ "bar": "Bavarian",
503
+ "qwh-qxn-qxo": "Huaylas Ancash Quechua",
504
+ "bgr": "Bawm Chin",
505
+ "twq": "Tasawaq",
506
+ "cho": "Choctaw",
507
+ "cng": "Northern Qiang",
508
+ "div": "Dhivehi",
509
+ "sgw": "Sebat Bet Gurage",
510
+ "wmb": "Wambayan",
511
+ "tdh": "Thulung",
512
+ "kng": "South-Central Koongo",
513
+ "knj": "Akateko",
514
+ "tzc-tzz": "Tzotzil, Chamula",
515
+ "pbu": "Northern Pashto",
516
+ "nbc": "Chang Naga",
517
+ "fut": "Futuna-Aniwa",
518
+ "dni": "Lower Grand Valley Dani",
519
+ "ksz": "Kodaku",
520
+ "enn": "Egene",
521
+ "sjo": "Xibe",
522
+ "otw-ojg": "Ottawa",
523
+ "omr": "Old Marathi",
524
+ "bao-bsn": "Waimaha",
525
+ "gvf": "Golin",
526
+ "jda": "Jad",
527
+ "fra": "French",
528
+ "khr": "Kharia",
529
+ "toh": "Gitonga",
530
+ "zpi": "Santa Mar\u00eda Quiegolani Zapotec",
531
+ "kjp": "Pwo Eastern Karen",
532
+ "cic": "Chickasaw",
533
+ "kek": "Kekch\u00ed",
534
+ "kif": "Eastern Parbate Kham",
535
+ "bxr": "Russia Buriat",
536
+ "gvo": "Gavi\u00e3o Do Jiparan\u00e1",
537
+ "awb": "Awa (Papua New Guinea)",
538
+ "hay": "Haya",
539
+ "sga": "Early Irish",
540
+ "uma": "Umatilla",
541
+ "pcj": "Gorum-Parenga",
542
+ "sja": "Epena",
543
+ "ibd": "Iwaidja",
544
+ "yoy": "Yoy",
545
+ "smn": "Inari Saami",
546
+ "adg": "Andegerebinha",
547
+ "ceb": "Cebuano",
548
+ "wms": "Wambon",
549
+ "kkp": "Gugubera",
550
+ "rit": "Ritharrngu",
551
+ "rif": "Tarifiyt-Beni-Iznasen-Eastern Middle Atlas Berber",
552
+ "nmv": "Ngamini-Yarluyandi-Karangura",
553
+ "dru": "Rukai",
554
+ "udi": "Udi",
555
+ "vot": "Votic",
556
+ "hin-urd": "Hindi",
557
+ "gaz-hae": "West Central Oromo",
558
+ "pea": "Peranakan Indonesian",
559
+ "nhe": "Eastern Huasteca Nahuatl",
560
+ "ono": "Onondaga",
561
+ "zab": "Western Tlacolula Valley Zapotec",
562
+ "izi": "Izi-Ezaa-Ikwo-Mgbo",
563
+ "tnk": "Kwamera",
564
+ "sad": "Sandawe",
565
+ "nor": "Norwegian",
566
+ "naf": "Nabak",
567
+ "ute": "Ute-Southern Paiute",
568
+ "aly": "Alyawarr",
569
+ "ita": "Italian",
570
+ "hia": "Lamang",
571
+ "abx-bdl-ccg-kte-pnq-smd-ssb-sse": "Inabaknon",
572
+ "jya": "Northern Gyalrong",
573
+ "roe": "Ronji",
574
+ "deu-pdt": "German",
575
+ "vmf": "Ostfr\u00e4nkisch",
576
+ "tzc": "Tzotzil, Chamula",
577
+ "dhv": "Dehu",
578
+ "sna": "Shona",
579
+ "ape": "Bukiyip",
580
+ "kal-ike": "Kalaallisut",
581
+ "chd": "Highland Oaxaca Chontal",
582
+ "tmd": "Haruai",
583
+ "pov": "Upper Guinea Crioulo",
584
+ "dur": "Dii",
585
+ "rup": "Aromanian",
586
+ "blc": "Bella Coola",
587
+ "brg": "Baure",
588
+ "gbo-gec": "Northern Grebo",
589
+ "fri": "Western Frisian (Retired)",
590
+ "cpg": "Cappadocian Greek",
591
+ "new": "Kathmandu Valley Newari",
592
+ "blu": "Hmong Njua (Retired)",
593
+ "ojg": "Eastern Ojibwa",
594
+ "aka": "Akan",
595
+ "ncg": "Nisga'a",
596
+ "kpo": "Ikposo",
597
+ "cos": "Corsican",
598
+ "hin": "Hindi",
599
+ "kdd": "Yankunytjatjara",
600
+ "caa": "Chort\u00ed",
601
+ "tar-tac": "Central Tarahumara",
602
+ "tzj": "Tz'utujil",
603
+ "jaa": "Madi",
604
+ "rmy": "Vlax Romani",
605
+ "tpi": "Tok Pisin",
606
+ "umb": "Umbundu",
607
+ "shh": "Shoshoni",
608
+ "aiz": "Aari-Gayil",
609
+ "src": "Logudorese Sardinian",
610
+ "poq": "Texistepec Popoluca",
611
+ "sry": "Sera",
612
+ "ven": "Venda",
613
+ "bae": "Bar\u00e9",
614
+ "apu": "Apurin\u00e3",
615
+ "ton": "Tonga (Tonga Islands)",
616
+ "tah": "Tahitian",
617
+ "sjr": "Siar-Lak",
618
+ "dgz": "Daga",
619
+ "yrk": "Tundra Nenets",
620
+ "prq": "Ash\u00e9ninka Peren\u00e9",
621
+ "crk": "Plains Cree",
622
+ "bob": "Aweer",
623
+ "dhg": "Dhangu",
624
+ "nig": "Ngalakgan",
625
+ "azr": "Adzera (Retired)",
626
+ "nmf": "East-Central Tangkhul Naga",
627
+ "ong": "Olo",
628
+ "dgr": "Dogrib",
629
+ "pmy": "Papuan Malay",
630
+ "iii": "Sichuan Yi",
631
+ "zpq": "Zoogocho Zapotec",
632
+ "fij": "Fijian",
633
+ "aar": "Afar",
634
+ "klq": "Rumu",
635
+ "tew": "Rio Grande Tewa",
636
+ "tsn": "Tswana",
637
+ "kva": "Bagvalal",
638
+ "roh": "Romansh",
639
+ "hat": "Haitian",
640
+ "njb": "Nocte Naga",
641
+ "guj": "Gujarati",
642
+ "wls": "East Uvean",
643
+ "tzb": "Tzeltal, Bachaj\u00f3n",
644
+ "nob": "Norwegian Bokm\u00e5l",
645
+ "spa": "Spanish",
646
+ "kkj": "Kako",
647
+ "kjs-kew": "East Kewa",
648
+ "haw": "Hawaiian",
649
+ "ruq": "Megleno Romanian",
650
+ "gcc": "Mali",
651
+ "gbb": "Kaytetye",
652
+ "pbu-pbt": "Northern Pashto",
653
+ "sur": "Mwaghavul",
654
+ "cas": "Moset\u00e9n-Chiman\u00e9",
655
+ "sus": "Susu",
656
+ "hnj": "Hmong Njua",
657
+ "zmr": "Maranunggu",
658
+ "waa": "Northeast Sahaptin",
659
+ "peo": "Old Persian (ca. 600-400 B.C.)",
660
+ "ike-ka": "Eastern Canadian Inuktitut",
661
+ "agn": "Agutaynen",
662
+ "aeb": "Tunisian Arabic",
663
+ "arz": "Egyptian Arabic",
664
+ "fur": "Friulian",
665
+ "jai": "Jakalteko, Western",
666
+ "bos": "Bosnian Standard",
667
+ "twu-dnk-txq-llg-rgu-row-bpz": "Termanu",
668
+ "kgo": "Krongo",
669
+ "aia": "Arosi",
670
+ "tha": "Thai",
671
+ "nhs": "Sierra Negra Nahuatl-Southeastern Puebla Nahuatl",
672
+ "naq": "Nama (Namibia)",
673
+ "zaw": "Mitla Zapotec",
674
+ "jig": "Jingulu",
675
+ "raw": "Rawang",
676
+ "ksb": "Shambala",
677
+ "kwb": "Baa",
678
+ "enh": "Tundra Enets",
679
+ "run": "Rundi",
680
+ "ron": "Romanian",
681
+ "wln": "Walloon",
682
+ "stp": "Southeastern Tepehuan",
683
+ "oma": "Omaha-Ponca",
684
+ "cub": "Cubeo",
685
+ "kno": "Kono (Sierra Leone)",
686
+ "ram-xra": "Canela-Krah\u00f4",
687
+ "cat": "Catalan",
688
+ "wbp": "Warlpiri",
689
+ "btg": "Gagnoa B\u00e9t\u00e9",
690
+ "bni": "Bobangi",
691
+ "tsu": "Tsou",
692
+ "yur": "Yurok",
693
+ "abq": "Abaza",
694
+ "nge": "Ngemba",
695
+ "knw": "North-Central Ju",
696
+ "dds": "Donno So Dogon",
697
+ "kna": "Dera (Nigeria)",
698
+ "bfd": "Bafut",
699
+ "kha": "Khasi",
700
+ "noo": "Nootka",
701
+ "ibb": "Ibibio",
702
+ "amc": "Amahuaca",
703
+ "ncb": "Central Nicobarese",
704
+ "nup": "Nupe-Nupe-Tako",
705
+ "wwr": "Warrwa",
706
+ "kat": "Georgian",
707
+ "ket": "Ket",
708
+ "gde": "Gude",
709
+ "byw": "Belhariya",
710
+ "oge": "Old Georgian",
711
+ "cay": "Cayuga",
712
+ "pbe": "Mezontla Popoloca",
713
+ "tik": "Tikar",
714
+ "ben": "Bengali",
715
+ "klj": "Turkic Khalaj",
716
+ "scn": "Sicilian",
717
+ "bwe": "Bwe Karen",
718
+ "bin": "Bini",
719
+ "sae": "Saban\u00ea",
720
+ "ure": "Uru",
721
+ "yux-ykg": "Southern Yukaghir",
722
+ "gej": "Gen",
723
+ "hwo": "Hwana",
724
+ "dsq": "Tadaksahak",
725
+ "nep": "Eastern Pahari",
726
+ "ncj": "Northern Puebla Nahuatl",
727
+ "kmb": "Kimbundu",
728
+ "ser": "Serrano",
729
+ "pbu-pst": "Northern Pashto",
730
+ "wit": "Wintu",
731
+ "ctd": "Tedim Chin",
732
+ "ewo": "Ewondo",
733
+ "kew-kjs": "West Kewa",
734
+ "gkn": "Gokana",
735
+ "emk": "Eastern Maninkakan",
736
+ "kij": "Kilivila",
737
+ "knk": "Kuranko",
738
+ "cle": "Lealao Chinantec",
739
+ "bua": "Buriat",
740
+ "jao": "Yanyuwa",
741
+ "tlp": "Filomeno Mata Totonac",
742
+ "rug": "Roviana",
743
+ "aey": "Amele",
744
+ "thp": "Thompson",
745
+ "nso": "Pedi",
746
+ "ckv": "Kavalan",
747
+ "tep": "Tepecano",
748
+ "dap": "Dafla",
749
+ "wae": "Walser",
750
+ "bsn-bao-pok": "Barasana-Eduria",
751
+ "fuv-fub": "Hausa States Fulfulde",
752
+ "ynn": "Yana",
753
+ "tcb": "Tanacross",
754
+ "nhd": "Chirip\u00e1",
755
+ "wsa": "Warembori",
756
+ "kxa": "Kairiru",
757
+ "eky": "Eastern Kayah",
758
+ "pbi": "Parkwa",
759
+ "tue": "Tuyuca",
760
+ "prs": "Dari",
761
+ "tiw": "Tiwi",
762
+ "sgu": "Salas",
763
+ "gue": "Gurindji",
764
+ "tkr": "Tsakhur",
765
+ "wnu": "Usan",
766
+ "niu": "Niuean",
767
+ "abk": "Abkhaz",
768
+ "pmi-pmj": "Northern Pumi",
769
+ "eus": "Basque",
770
+ "tub": "T\u00fcbatulabal",
771
+ "cjh": "Upper Chehalis",
772
+ "csw": "Swampy Cree",
773
+ "kgr": "Abun",
774
+ "bqe": "Navarro-Labourdin Basque",
775
+ "amk": "Ambai",
776
+ "bbb": "Barai",
777
+ "kan": "Kannada",
778
+ "jav": "Javanese",
779
+ "ogo": "Khana",
780
+ "thd": "Thayore",
781
+ "hau": "Hausa",
782
+ "ckt": "Chukchi",
783
+ "abs": "Ambonese Malay",
784
+ "kfk": "Kinnauri",
785
+ "baz": "Tunen (Retired)",
786
+ "gcd": "Ganggalida",
787
+ "kri": "Krio",
788
+ "nld": "Dutch",
789
+ "gax-or": "Borana-Arsi-Guji Oromo",
790
+ "ktu": "Kituba (Democratic Republic of Congo)",
791
+ "ppn": "Papapana",
792
+ "kay": "Kamayur\u00e1",
793
+ "kik": "Kikuyu",
794
+ "tpy": "Trumai",
795
+ "kqr": "Kimaragang",
796
+ "jqr": "Jaqaru",
797
+ "nyq": "Nayinic",
798
+ "tht": "Tahltan",
799
+ "tan": "Tangale",
800
+ "svs": "Savosavo",
801
+ "bak": "Bashkir",
802
+ "crg": "Michif",
803
+ "pan": "Eastern Panjabi",
804
+ "par": "Panamint",
805
+ "hch": "Huichol",
806
+ "txg": "Tangut",
807
+ "kwd": "Kwaio",
808
+ "sah": "Sakha",
809
+ "heb": "Modern Hebrew",
810
+ "grc": "Ionic-Attic Ancient Greek",
811
+ "bao": "Waimaha",
812
+ "kbd": "Kabardian",
813
+ "tyv": "Tuvinian",
814
+ "srs": "Sarsi",
815
+ "njh": "Lotha Naga",
816
+ "bez": "Bena (Tanzania)",
817
+ "ahk": "Akha",
818
+ "yaf": "Yaka-Pelende-Lonzo",
819
+ "ung": "Ngarinyin",
820
+ "kmg-kup": "K\u00e2te",
821
+ "por": "Portuguese",
822
+ "kos": "Kosraean",
823
+ "wbk": "Nuristani Kalasha",
824
+ "gld": "Nanai",
825
+ "yaq": "Yaqui",
826
+ "deu": "German",
827
+ "bhq": "Tukang Besi South",
828
+ "atb": "Zaiwa",
829
+ "nee": "N\u00eal\u00eamwa-Nixumwak",
830
+ "pis": "Pijin",
831
+ "ylr": "Yalarnnga",
832
+ "kjn": "Kunjen",
833
+ "swe": "Swedish",
834
+ "pdo": "Padoe",
835
+ "kmg": "K\u00e2te",
836
+ "bhp": "Bima",
837
+ "ain": "Hokkaido Ainu",
838
+ "gcf": "Guadeloupe-Martinique Creole French",
839
+ "ojw": "Western Ojibwa",
840
+ "bin-lew": "Bini",
841
+ "hmr": "Hmar",
842
+ "chv": "Chuvash",
843
+ "nuf": "Nusu",
844
+ "kew": "West Kewa",
845
+ "slk": "Slovak",
846
+ "gaa": "Ga",
847
+ "alt": "Southern Altai",
848
+ "grb": "Liberian Grebo",
849
+ "kmr": "Northern Kurdish",
850
+ "ohu": "Old Hungarian",
851
+ "nut": "Nung (Viet Nam)",
852
+ "tpz": "Tinputz",
853
+ "ssd": "Siroi",
854
+ "scs": "North Slavey",
855
+ "wyb": "Ngiyambaa",
856
+ "gug": "Paraguayan Guaran\u00ed",
857
+ "aph": "Athpariya",
858
+ "abt": "Ambulas",
859
+ "irk": "Iraqw",
860
+ "var": "Huarijio",
861
+ "gae": "Baniva de Maroa",
862
+ "kpc": "Curripaco",
863
+ "gsw": "Central Alemannic",
864
+ "tpn": "Tupinamb\u00e1",
865
+ "ban": "Balinese",
866
+ "bap": "Bantawa",
867
+ "kmh": "Kalam",
868
+ "ojg-ojb-ojw-ojs-otw": "Eastern Ojibwa",
869
+ "bej": "Beja",
870
+ "jai-jac": "Jakalteko, Western",
871
+ "evn": "Evenki",
872
+ "uig": "Uighur",
873
+ "crn": "El Nayar Cora",
874
+ "tar": "Central Tarahumara",
875
+ "pma": "Paama",
876
+ "hdn": "Northern Haida",
877
+ "bre": "Breton",
878
+ "nec": "Nedebang",
879
+ "ksh": "K\u00f6lsch",
880
+ "efi": "Efik",
881
+ "onr-oin-aun-onk-osu-okk": "Northern One",
882
+ "inh": "Ingush",
883
+ "nse": "Nsenga",
884
+ "kky": "Guugu Yimidhirr",
885
+ "dih": "Tipai",
886
+ "tcg": "Tamagario",
887
+ "ami": "Amis",
888
+ "tir": "Tigrinya",
889
+ "vma": "Martuthunira",
890
+ "nid": "Ngandi",
891
+ "ybi": "Yamphu",
892
+ "nsz": "Nisenan",
893
+ "quc": "K'iche'",
894
+ "yii": "Yidi\u00f1",
895
+ "akk": "Akkadian",
896
+ "ape-aoj-aon": "Bukiyip",
897
+ "quz-quh-quy-qug-qvc-qwh": "Cusco Quechua",
898
+ "gup": "Bininj Kun-Wok",
899
+ "apj": "Jicarilla Apache",
900
+ "ydd-yid-yih": "Eastern Yiddish",
901
+ "cnh": "Haka Chin",
902
+ "kuu": "Upper Kuskokwim",
903
+ "wau": "Waur\u00e1",
904
+ "bor": "Bororo",
905
+ "ksd": "Kuanua",
906
+ "kip-kgj": "Sheshi Kham",
907
+ "tay": "Atayal",
908
+ "nyv": "Nyulnyul",
909
+ "nhw-nhe": "Western Huasteca Nahuatl",
910
+ "bmi": "Bagirmi",
911
+ "tzh": "Tzeltal",
912
+ "asc-cns": "Casuarina Coast Asmat",
913
+ "kjs": "East Kewa",
914
+ "cns": "Central Asmat",
915
+ "dar": "North-Central Dargwa",
916
+ "qvi": "Imbabura Highland Quichua",
917
+ "caq": "Car Nicobarese",
918
+ "poo": "Central Pomo",
919
+ "hop": "Hopi",
920
+ "ito": "Itonama",
921
+ "ind": "Standard Indonesian",
922
+ "sip": "Sikkimese",
923
+ "agj": "Argobba",
924
+ "tac": "Western Tarahumara",
925
+ "got": "Gothic",
926
+ "aae": "Arb\u00ebresh\u00eb Albanian",
927
+ "hrv": "Croatian Standard",
928
+ "ssw": "Swati",
929
+ "ojs": "Severn Ojibwa",
930
+ "ava": "Avar",
931
+ "snc": "Sinaugoro",
932
+ "kun": "Kunama",
933
+ "qub": "Huallaga Hu\u00e1nuco Quechua",
934
+ "srn": "Sranan Tongo",
935
+ "god": "Godi\u00e9",
936
+ "sva": "Svan",
937
+ "bwi": "Baniwa do Icana",
938
+ "sly": "Selayar",
939
+ "swr": "Saweru",
940
+ "cpc": "Ajy\u00edninka Apurucayali",
941
+ "pag": "Pangasinan",
942
+ "bis": "Bislama",
943
+ "nog": "Nogai",
944
+ "pua-tsz": "Western Highland Purepecha",
945
+ "ccc": "Chamicuro",
946
+ "pon": "Pohnpeian",
947
+ "bla": "Siksika",
948
+ "kca": "Kazym-Berezover-Suryskarer Khanty",
949
+ "pnw": "Panytyima",
950
+ "kaq": "Capanahua",
951
+ "pbb": "P\u00e1ez",
952
+ "aty": "Aneityum",
953
+ "kji": "Zabana",
954
+ "hni": "Hani",
955
+ "tya": "Tauya",
956
+ "yea": "Ravula",
957
+ "quc-qut-quu": "K'iche'",
958
+ "ude": "Udihe",
959
+ "nno": "Norwegian Nynorsk",
960
+ "ojb": "Northwestern Ojibwa",
961
+ "arb": "Standard Arabic",
962
+ "afb": "Gulf Arabic",
963
+ "sue": "Suena",
964
+ "adi": "Bori-Karko",
965
+ "ale": "Aleut",
966
+ "apr": "Arop-Lokep",
967
+ "khe": "Korowai",
968
+ "arh": "Arhuaco",
969
+ "tuo": "Tucano",
970
+ "rmw": "Welsh Romani",
971
+ "hai": "Haida",
972
+ "urb": "Urub\u00fa-Kaapor",
973
+ "hmo": "Hiri Motu",
974
+ "bqc": "Boko (Benin)",
975
+ }
odin_raw/*xxx*.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1dfa9289e2a9bed7309d5cac22da60f8081b57a024c122c11b13a0a90e44f2ec
3
+ size 1155
odin_raw/???.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c60483ea6b48ea0536eb649191919727f2d7d76a2506063926446d28397b7c3
3
+ size 62360
odin_raw/a.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b381b8668a6cc7115b65f12bf4e8bfbf54f74f81a50c752441c56264c5831ef
3
+ size 7525
odin_raw/aae.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:938f156fef4659cce4557bb11787fefb29c3b760850e0a1f7e6d0e0f61391258
3
+ size 8820
odin_raw/aar.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7bef79e6ad5e82bea0d98cda7b63194bac6cbb12896aa57abb927f6608036b0
3
+ size 308
odin_raw/abk.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5b65932406ba3710b49d35ca8dca406ad7145fa9a002be8980f441576351eb2
3
+ size 5728
odin_raw/abq.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ef15a589b25ad36efed2054d0be4440071a4bb7cb4592e99308d60295b1b787
3
+ size 10887
odin_raw/abs.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef144e618a57bfb9bd1c0683105c4903bb54307a1f2ac95440a8fd0bed3c6049
3
+ size 168
odin_raw/abt.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cc81e151f4c37b289bce7ccf76c952bff8a0157b0b941dbe0e87f2d969f6738
3
+ size 1007
odin_raw/abx-bdl-ccg-kte-pnq-smd-ssb-sse.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d97e102c7a5fb5203c018a8b4ac85010de985e732f34e1a2509369f12613b4be
3
+ size 387
odin_raw/ac.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9b7eaa2582670a504c50d24707fe5e7720eeb5c114924f7a50d43b57122570b
3
+ size 282
odin_raw/ace.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0ae223bd1f5be6639fd6a0c4cedddaa9ef0447acfdc5a8df207f865bd485688
3
+ size 9561
odin_raw/acf.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:935afe58672312614eaa2602266a3d8da56979668062c7552edfe79f7ff1d72d
3
+ size 362
odin_raw/ach.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:837cf45ee9cf9289ed363c0a4f2ffd83d36df876b01f952b6864b9c4e4c15e3e
3
+ size 44
odin_raw/acv.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ac76c724a3b557b838fe824e4049702e51a924d73b6741c6b45bceca50fbcd3
3
+ size 160
odin_raw/ad.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f6776ee13f10796ae922bd0eb21d52c88b18103ea9653f562901e92f1da6ce7
3
+ size 5357
odin_raw/adg.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:996c7c2731d42a6b93907a2a368ecb587b8a923be4116be8be973b2133d8d70c
3
+ size 189
odin_raw/adi.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71381e1a4eef67f03d73e514da84ae4a0bc7e735f291a79736ce43994cc2180e
3
+ size 840
odin_raw/adj.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e6e0d0ec728422482da9ca0144d6d43cafcf0d2a2215080e12621c85e895900
3
+ size 838
odin_raw/ady.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b61fc224982f9443b3048c38bfde53796935f0d56b91da3109a7c2dc011fd641
3
+ size 3971
odin_raw/ae.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76fad867e4978d7b122672ed8d9ab8d5f7e4ddc93d64fcde9cc0ee2724b2729c
3
+ size 1000
odin_raw/aeb.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce2dfdc9a2ce20666ab936126a83a9f66b6fd0ae760318557ec6ab4d51b56755
3
+ size 2353
odin_raw/aer-are.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb80a1774b10211f483937b8c73d8c089c3f566f1c0b80d3724ac0545ee45136
3
+ size 197
odin_raw/aer.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fe0c0ec078130d59438a9fc78950908d3dbaba761baf340f4d8ecd572027d76
3
+ size 3568
odin_raw/aey.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89b6fdccb4a5926bfe2b3fd7ba6e4860f1a6dd767f8ff3bd452887c4838012d8
3
+ size 12437
odin_raw/afb.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a58f47e2c16a3bf367cda9531db0cfc32dd24502fac43f9d98c566012ac454b0
3
+ size 202
odin_raw/afr.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:679abb88d7489f50c82f5232cb572a7731380e587cda956787ef64c9057a565a
3
+ size 55549
odin_raw/ag.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:610dc30ba219679506aeeac3e1c4a27b95132ffc404504e2813d234dac068418
3
+ size 692
odin_raw/agb.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af3647367dd80111f685013820cea80c63158e959583f738485c85f76814f112
3
+ size 1166
odin_raw/agj.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43d00a15e4694b86637d31bdc6a66531f1c9205ade821f6e7ed9cea1e5c753a8
3
+ size 650
odin_raw/agn.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5de30c7fa7a384e4368b7a07f03e8ec7fd8b803294a8919d5831b165883de60b
3
+ size 17194
odin_raw/agq.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c465b1000f31b1ecc05a6f358d5241b00a96824ff3cb325c306205296e12705a
3
+ size 2198
odin_raw/ah.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:571200cac7d4e95985479a9e11b079ade955a85bf2306f813d14758211b56a6f
3
+ size 180
odin_raw/ahk.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:060b37e28f2e3e51bac427e84209f1f8c568657f37b06dca3d7c2d8305c8adc4
3
+ size 585
odin_raw/aho.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c70269ecfe559f84b9bbf6f9837813343a50b7daf3c4b26c48e72ea19d79854
3
+ size 285
odin_raw/ai.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f06673639291843ac352b0eb3b7815165e446fa835f85797d0d7fde5835e3481
3
+ size 5410
odin_raw/aia.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:923da6756c038eb40a0266d8ffee8a8043d8b27f934a8ecf6317104623c41fa0
3
+ size 148
odin_raw/aib-ain.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e73ca70258c4e95d732fb66e8b43bc18325b26596080c37f4a7154c603bde15b
3
+ size 93
odin_raw/ain.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f5e989a17e500cbdaa316ae5158da81967cfdd587861efba7e9ef1e47d7a991
3
+ size 3368
odin_raw/aiz.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad38855ba28f2736887b7364963c2283d337840a9d2ba0655f782d7b0ab33382
3
+ size 209
odin_raw/aj-lno.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ec6ed7fc44376ce050240ffbabfb1234240af6ecaf08a49237925970da04c87
3
+ size 375
odin_raw/aj.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e8435f6f8752645cde0febf247a49047d0e4ca523f9302c71cd75066eb2b566
3
+ size 15049
odin_raw/ajp.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b14cbad8f196021b4fd3bc8907cbd2dd1088df10e2461e24ed4e52530b18a453
3
+ size 23399
odin_raw/aka.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a40c1e556a7cad5669c8c6a8d8a1109e0106eb15b6fd908e3bd168f1bd20c4b5
3
+ size 20648
odin_raw/akk.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58d2ac2942493289e0415533ac8d9cabe993400ff554f6b04c7ffb1dfe466b2f
3
+ size 665
odin_raw/akv.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:957637a4fd53b4e41a3328fcf62e84ced92865e429b17768e1c0599c06dd55cc
3
+ size 1399
odin_raw/ale.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:154d2885fd0d9065fc95a27e53ece5468e6e8c191a18b68994d9fa817df2e920
3
+ size 352
odin_raw/alo.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54364ccc6ba8ae8b63f43371179ec8538f024f31a55aa9139d6afd1614425782
3
+ size 2222