-
Notifications
You must be signed in to change notification settings - Fork 2
/
lang-db.go
8530 lines (8527 loc) · 654 KB
/
lang-db.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package iso639_3
// LanguagesPart3 lookup table. Keys are ISO 639-3 codes
var LanguagesPart3 = map[string]Language{
"aaa": {Part3: "aaa", Scope: 'I', LanguageType: 'L', Name: "Ghotuo"},
"aab": {Part3: "aab", Scope: 'I', LanguageType: 'L', Name: "Alumu-Tesu"},
"aac": {Part3: "aac", Scope: 'I', LanguageType: 'L', Name: "Ari"},
"aad": {Part3: "aad", Scope: 'I', LanguageType: 'L', Name: "Amal"},
"aae": {Part3: "aae", Scope: 'I', LanguageType: 'L', Name: "Arbëreshë Albanian"},
"aaf": {Part3: "aaf", Scope: 'I', LanguageType: 'L', Name: "Aranadan"},
"aag": {Part3: "aag", Scope: 'I', LanguageType: 'L', Name: "Ambrak"},
"aah": {Part3: "aah", Scope: 'I', LanguageType: 'L', Name: "Abu' Arapesh"},
"aai": {Part3: "aai", Scope: 'I', LanguageType: 'L', Name: "Arifama-Miniafia"},
"aak": {Part3: "aak", Scope: 'I', LanguageType: 'L', Name: "Ankave"},
"aal": {Part3: "aal", Scope: 'I', LanguageType: 'L', Name: "Afade"},
"aan": {Part3: "aan", Scope: 'I', LanguageType: 'L', Name: "Anambé"},
"aao": {Part3: "aao", Scope: 'I', LanguageType: 'L', Name: "Algerian Saharan Arabic"},
"aap": {Part3: "aap", Scope: 'I', LanguageType: 'L', Name: "Pará Arára"},
"aaq": {Part3: "aaq", Scope: 'I', LanguageType: 'E', Name: "Eastern Abnaki"},
"aar": {Part3: "aar", Part2B: "aar", Part2T: "aar", Part1: "aa", Scope: 'I', LanguageType: 'L', Name: "Afar"},
"aas": {Part3: "aas", Scope: 'I', LanguageType: 'L', Name: "Aasáx"},
"aat": {Part3: "aat", Scope: 'I', LanguageType: 'L', Name: "Arvanitika Albanian"},
"aau": {Part3: "aau", Scope: 'I', LanguageType: 'L', Name: "Abau"},
"aaw": {Part3: "aaw", Scope: 'I', LanguageType: 'L', Name: "Solong"},
"aax": {Part3: "aax", Scope: 'I', LanguageType: 'L', Name: "Mandobo Atas"},
"aaz": {Part3: "aaz", Scope: 'I', LanguageType: 'L', Name: "Amarasi"},
"aba": {Part3: "aba", Scope: 'I', LanguageType: 'L', Name: "Abé"},
"abb": {Part3: "abb", Scope: 'I', LanguageType: 'L', Name: "Bankon"},
"abc": {Part3: "abc", Scope: 'I', LanguageType: 'L', Name: "Ambala Ayta"},
"abd": {Part3: "abd", Scope: 'I', LanguageType: 'L', Name: "Manide"},
"abe": {Part3: "abe", Scope: 'I', LanguageType: 'L', Name: "Western Abnaki"},
"abf": {Part3: "abf", Scope: 'I', LanguageType: 'L', Name: "Abai Sungai"},
"abg": {Part3: "abg", Scope: 'I', LanguageType: 'L', Name: "Abaga"},
"abh": {Part3: "abh", Scope: 'I', LanguageType: 'L', Name: "Tajiki Arabic"},
"abi": {Part3: "abi", Scope: 'I', LanguageType: 'L', Name: "Abidji"},
"abj": {Part3: "abj", Scope: 'I', LanguageType: 'E', Name: "Aka-Bea"},
"abk": {Part3: "abk", Part2B: "abk", Part2T: "abk", Part1: "ab", Scope: 'I', LanguageType: 'L', Name: "Abkhazian"},
"abl": {Part3: "abl", Scope: 'I', LanguageType: 'L', Name: "Lampung Nyo"},
"abm": {Part3: "abm", Scope: 'I', LanguageType: 'L', Name: "Abanyom"},
"abn": {Part3: "abn", Scope: 'I', LanguageType: 'L', Name: "Abua"},
"abo": {Part3: "abo", Scope: 'I', LanguageType: 'L', Name: "Abon"},
"abp": {Part3: "abp", Scope: 'I', LanguageType: 'L', Name: "Abellen Ayta"},
"abq": {Part3: "abq", Scope: 'I', LanguageType: 'L', Name: "Abaza"},
"abr": {Part3: "abr", Scope: 'I', LanguageType: 'L', Name: "Abron"},
"abs": {Part3: "abs", Scope: 'I', LanguageType: 'L', Name: "Ambonese Malay"},
"abt": {Part3: "abt", Scope: 'I', LanguageType: 'L', Name: "Ambulas"},
"abu": {Part3: "abu", Scope: 'I', LanguageType: 'L', Name: "Abure"},
"abv": {Part3: "abv", Scope: 'I', LanguageType: 'L', Name: "Baharna Arabic"},
"abw": {Part3: "abw", Scope: 'I', LanguageType: 'L', Name: "Pal"},
"abx": {Part3: "abx", Scope: 'I', LanguageType: 'L', Name: "Inabaknon"},
"aby": {Part3: "aby", Scope: 'I', LanguageType: 'L', Name: "Aneme Wake"},
"abz": {Part3: "abz", Scope: 'I', LanguageType: 'L', Name: "Abui"},
"aca": {Part3: "aca", Scope: 'I', LanguageType: 'L', Name: "Achagua"},
"acb": {Part3: "acb", Scope: 'I', LanguageType: 'L', Name: "Áncá"},
"acd": {Part3: "acd", Scope: 'I', LanguageType: 'L', Name: "Gikyode"},
"ace": {Part3: "ace", Part2B: "ace", Part2T: "ace", Scope: 'I', LanguageType: 'L', Name: "Achinese"},
"acf": {Part3: "acf", Scope: 'I', LanguageType: 'L', Name: "Saint Lucian Creole French"},
"ach": {Part3: "ach", Part2B: "ach", Part2T: "ach", Scope: 'I', LanguageType: 'L', Name: "Acoli"},
"aci": {Part3: "aci", Scope: 'I', LanguageType: 'E', Name: "Aka-Cari"},
"ack": {Part3: "ack", Scope: 'I', LanguageType: 'E', Name: "Aka-Kora"},
"acl": {Part3: "acl", Scope: 'I', LanguageType: 'E', Name: "Akar-Bale"},
"acm": {Part3: "acm", Scope: 'I', LanguageType: 'L', Name: "Mesopotamian Arabic"},
"acn": {Part3: "acn", Scope: 'I', LanguageType: 'L', Name: "Achang"},
"acp": {Part3: "acp", Scope: 'I', LanguageType: 'L', Name: "Eastern Acipa"},
"acq": {Part3: "acq", Scope: 'I', LanguageType: 'L', Name: "Ta'izzi-Adeni Arabic"},
"acr": {Part3: "acr", Scope: 'I', LanguageType: 'L', Name: "Achi"},
"acs": {Part3: "acs", Scope: 'I', LanguageType: 'E', Name: "Acroá"},
"act": {Part3: "act", Scope: 'I', LanguageType: 'L', Name: "Achterhoeks"},
"acu": {Part3: "acu", Scope: 'I', LanguageType: 'L', Name: "Achuar-Shiwiar"},
"acv": {Part3: "acv", Scope: 'I', LanguageType: 'L', Name: "Achumawi"},
"acw": {Part3: "acw", Scope: 'I', LanguageType: 'L', Name: "Hijazi Arabic"},
"acx": {Part3: "acx", Scope: 'I', LanguageType: 'L', Name: "Omani Arabic"},
"acy": {Part3: "acy", Scope: 'I', LanguageType: 'L', Name: "Cypriot Arabic"},
"acz": {Part3: "acz", Scope: 'I', LanguageType: 'L', Name: "Acheron"},
"ada": {Part3: "ada", Part2B: "ada", Part2T: "ada", Scope: 'I', LanguageType: 'L', Name: "Adangme"},
"adb": {Part3: "adb", Scope: 'I', LanguageType: 'L', Name: "Atauran"},
"add": {Part3: "add", Scope: 'I', LanguageType: 'L', Name: "Lidzonka"},
"ade": {Part3: "ade", Scope: 'I', LanguageType: 'L', Name: "Adele"},
"adf": {Part3: "adf", Scope: 'I', LanguageType: 'L', Name: "Dhofari Arabic"},
"adg": {Part3: "adg", Scope: 'I', LanguageType: 'L', Name: "Andegerebinha"},
"adh": {Part3: "adh", Scope: 'I', LanguageType: 'L', Name: "Adhola"},
"adi": {Part3: "adi", Scope: 'I', LanguageType: 'L', Name: "Adi"},
"adj": {Part3: "adj", Scope: 'I', LanguageType: 'L', Name: "Adioukrou"},
"adl": {Part3: "adl", Scope: 'I', LanguageType: 'L', Name: "Galo"},
"adn": {Part3: "adn", Scope: 'I', LanguageType: 'L', Name: "Adang"},
"ado": {Part3: "ado", Scope: 'I', LanguageType: 'L', Name: "Abu"},
"adq": {Part3: "adq", Scope: 'I', LanguageType: 'L', Name: "Adangbe"},
"adr": {Part3: "adr", Scope: 'I', LanguageType: 'L', Name: "Adonara"},
"ads": {Part3: "ads", Scope: 'I', LanguageType: 'L', Name: "Adamorobe Sign Language"},
"adt": {Part3: "adt", Scope: 'I', LanguageType: 'L', Name: "Adnyamathanha"},
"adu": {Part3: "adu", Scope: 'I', LanguageType: 'L', Name: "Aduge"},
"adw": {Part3: "adw", Scope: 'I', LanguageType: 'L', Name: "Amundava"},
"adx": {Part3: "adx", Scope: 'I', LanguageType: 'L', Name: "Amdo Tibetan"},
"ady": {Part3: "ady", Part2B: "ady", Part2T: "ady", Scope: 'I', LanguageType: 'L', Name: "Adyghe"},
"adz": {Part3: "adz", Scope: 'I', LanguageType: 'L', Name: "Adzera"},
"aea": {Part3: "aea", Scope: 'I', LanguageType: 'E', Name: "Areba"},
"aeb": {Part3: "aeb", Scope: 'I', LanguageType: 'L', Name: "Tunisian Arabic"},
"aec": {Part3: "aec", Scope: 'I', LanguageType: 'L', Name: "Saidi Arabic"},
"aed": {Part3: "aed", Scope: 'I', LanguageType: 'L', Name: "Argentine Sign Language"},
"aee": {Part3: "aee", Scope: 'I', LanguageType: 'L', Name: "Northeast Pashai"},
"aek": {Part3: "aek", Scope: 'I', LanguageType: 'L', Name: "Haeke"},
"ael": {Part3: "ael", Scope: 'I', LanguageType: 'L', Name: "Ambele"},
"aem": {Part3: "aem", Scope: 'I', LanguageType: 'L', Name: "Arem"},
"aen": {Part3: "aen", Scope: 'I', LanguageType: 'L', Name: "Armenian Sign Language"},
"aeq": {Part3: "aeq", Scope: 'I', LanguageType: 'L', Name: "Aer"},
"aer": {Part3: "aer", Scope: 'I', LanguageType: 'L', Name: "Eastern Arrernte"},
"aes": {Part3: "aes", Scope: 'I', LanguageType: 'E', Name: "Alsea"},
"aeu": {Part3: "aeu", Scope: 'I', LanguageType: 'L', Name: "Akeu"},
"aew": {Part3: "aew", Scope: 'I', LanguageType: 'L', Name: "Ambakich"},
"aey": {Part3: "aey", Scope: 'I', LanguageType: 'L', Name: "Amele"},
"aez": {Part3: "aez", Scope: 'I', LanguageType: 'L', Name: "Aeka"},
"afb": {Part3: "afb", Scope: 'I', LanguageType: 'L', Name: "Gulf Arabic"},
"afd": {Part3: "afd", Scope: 'I', LanguageType: 'L', Name: "Andai"},
"afe": {Part3: "afe", Scope: 'I', LanguageType: 'L', Name: "Putukwam"},
"afg": {Part3: "afg", Scope: 'I', LanguageType: 'L', Name: "Afghan Sign Language"},
"afh": {Part3: "afh", Part2B: "afh", Part2T: "afh", Scope: 'I', LanguageType: 'C', Name: "Afrihili"},
"afi": {Part3: "afi", Scope: 'I', LanguageType: 'L', Name: "Akrukay"},
"afk": {Part3: "afk", Scope: 'I', LanguageType: 'L', Name: "Nanubae"},
"afn": {Part3: "afn", Scope: 'I', LanguageType: 'L', Name: "Defaka"},
"afo": {Part3: "afo", Scope: 'I', LanguageType: 'L', Name: "Eloyi"},
"afp": {Part3: "afp", Scope: 'I', LanguageType: 'L', Name: "Tapei"},
"afr": {Part3: "afr", Part2B: "afr", Part2T: "afr", Part1: "af", Scope: 'I', LanguageType: 'L', Name: "Afrikaans"},
"afs": {Part3: "afs", Scope: 'I', LanguageType: 'L', Name: "Afro-Seminole Creole"},
"aft": {Part3: "aft", Scope: 'I', LanguageType: 'L', Name: "Afitti"},
"afu": {Part3: "afu", Scope: 'I', LanguageType: 'L', Name: "Awutu"},
"afz": {Part3: "afz", Scope: 'I', LanguageType: 'L', Name: "Obokuitai"},
"aga": {Part3: "aga", Scope: 'I', LanguageType: 'E', Name: "Aguano"},
"agb": {Part3: "agb", Scope: 'I', LanguageType: 'L', Name: "Legbo"},
"agc": {Part3: "agc", Scope: 'I', LanguageType: 'L', Name: "Agatu"},
"agd": {Part3: "agd", Scope: 'I', LanguageType: 'L', Name: "Agarabi"},
"age": {Part3: "age", Scope: 'I', LanguageType: 'L', Name: "Angal"},
"agf": {Part3: "agf", Scope: 'I', LanguageType: 'L', Name: "Arguni"},
"agg": {Part3: "agg", Scope: 'I', LanguageType: 'L', Name: "Angor"},
"agh": {Part3: "agh", Scope: 'I', LanguageType: 'L', Name: "Ngelima"},
"agi": {Part3: "agi", Scope: 'I', LanguageType: 'L', Name: "Agariya"},
"agj": {Part3: "agj", Scope: 'I', LanguageType: 'L', Name: "Argobba"},
"agk": {Part3: "agk", Scope: 'I', LanguageType: 'L', Name: "Isarog Agta"},
"agl": {Part3: "agl", Scope: 'I', LanguageType: 'L', Name: "Fembe"},
"agm": {Part3: "agm", Scope: 'I', LanguageType: 'L', Name: "Angaataha"},
"agn": {Part3: "agn", Scope: 'I', LanguageType: 'L', Name: "Agutaynen"},
"ago": {Part3: "ago", Scope: 'I', LanguageType: 'L', Name: "Tainae"},
"agq": {Part3: "agq", Scope: 'I', LanguageType: 'L', Name: "Aghem"},
"agr": {Part3: "agr", Scope: 'I', LanguageType: 'L', Name: "Aguaruna"},
"ags": {Part3: "ags", Scope: 'I', LanguageType: 'L', Name: "Esimbi"},
"agt": {Part3: "agt", Scope: 'I', LanguageType: 'L', Name: "Central Cagayan Agta"},
"agu": {Part3: "agu", Scope: 'I', LanguageType: 'L', Name: "Aguacateco"},
"agv": {Part3: "agv", Scope: 'I', LanguageType: 'L', Name: "Remontado Dumagat"},
"agw": {Part3: "agw", Scope: 'I', LanguageType: 'L', Name: "Kahua"},
"agx": {Part3: "agx", Scope: 'I', LanguageType: 'L', Name: "Aghul"},
"agy": {Part3: "agy", Scope: 'I', LanguageType: 'L', Name: "Southern Alta"},
"agz": {Part3: "agz", Scope: 'I', LanguageType: 'L', Name: "Mt. Iriga Agta"},
"aha": {Part3: "aha", Scope: 'I', LanguageType: 'L', Name: "Ahanta"},
"ahb": {Part3: "ahb", Scope: 'I', LanguageType: 'L', Name: "Axamb"},
"ahg": {Part3: "ahg", Scope: 'I', LanguageType: 'L', Name: "Qimant"},
"ahh": {Part3: "ahh", Scope: 'I', LanguageType: 'L', Name: "Aghu"},
"ahi": {Part3: "ahi", Scope: 'I', LanguageType: 'L', Name: "Tiagbamrin Aizi"},
"ahk": {Part3: "ahk", Scope: 'I', LanguageType: 'L', Name: "Akha"},
"ahl": {Part3: "ahl", Scope: 'I', LanguageType: 'L', Name: "Igo"},
"ahm": {Part3: "ahm", Scope: 'I', LanguageType: 'L', Name: "Mobumrin Aizi"},
"ahn": {Part3: "ahn", Scope: 'I', LanguageType: 'L', Name: "Àhàn"},
"aho": {Part3: "aho", Scope: 'I', LanguageType: 'E', Name: "Ahom"},
"ahp": {Part3: "ahp", Scope: 'I', LanguageType: 'L', Name: "Aproumu Aizi"},
"ahr": {Part3: "ahr", Scope: 'I', LanguageType: 'L', Name: "Ahirani"},
"ahs": {Part3: "ahs", Scope: 'I', LanguageType: 'L', Name: "Ashe"},
"aht": {Part3: "aht", Scope: 'I', LanguageType: 'L', Name: "Ahtena"},
"aia": {Part3: "aia", Scope: 'I', LanguageType: 'L', Name: "Arosi"},
"aib": {Part3: "aib", Scope: 'I', LanguageType: 'L', Name: "Ainu (China)"},
"aic": {Part3: "aic", Scope: 'I', LanguageType: 'L', Name: "Ainbai"},
"aid": {Part3: "aid", Scope: 'I', LanguageType: 'E', Name: "Alngith"},
"aie": {Part3: "aie", Scope: 'I', LanguageType: 'L', Name: "Amara"},
"aif": {Part3: "aif", Scope: 'I', LanguageType: 'L', Name: "Agi"},
"aig": {Part3: "aig", Scope: 'I', LanguageType: 'L', Name: "Antigua and Barbuda Creole English"},
"aih": {Part3: "aih", Scope: 'I', LanguageType: 'L', Name: "Ai-Cham"},
"aii": {Part3: "aii", Scope: 'I', LanguageType: 'L', Name: "Assyrian Neo-Aramaic"},
"aij": {Part3: "aij", Scope: 'I', LanguageType: 'L', Name: "Lishanid Noshan"},
"aik": {Part3: "aik", Scope: 'I', LanguageType: 'L', Name: "Ake"},
"ail": {Part3: "ail", Scope: 'I', LanguageType: 'L', Name: "Aimele"},
"aim": {Part3: "aim", Scope: 'I', LanguageType: 'L', Name: "Aimol"},
"ain": {Part3: "ain", Part2B: "ain", Part2T: "ain", Scope: 'I', LanguageType: 'L', Name: "Ainu (Japan)"},
"aio": {Part3: "aio", Scope: 'I', LanguageType: 'L', Name: "Aiton"},
"aip": {Part3: "aip", Scope: 'I', LanguageType: 'L', Name: "Burumakok"},
"aiq": {Part3: "aiq", Scope: 'I', LanguageType: 'L', Name: "Aimaq"},
"air": {Part3: "air", Scope: 'I', LanguageType: 'L', Name: "Airoran"},
"ait": {Part3: "ait", Scope: 'I', LanguageType: 'E', Name: "Arikem"},
"aiw": {Part3: "aiw", Scope: 'I', LanguageType: 'L', Name: "Aari"},
"aix": {Part3: "aix", Scope: 'I', LanguageType: 'L', Name: "Aighon"},
"aiy": {Part3: "aiy", Scope: 'I', LanguageType: 'L', Name: "Ali"},
"aja": {Part3: "aja", Scope: 'I', LanguageType: 'L', Name: "Aja (South Sudan)"},
"ajg": {Part3: "ajg", Scope: 'I', LanguageType: 'L', Name: "Aja (Benin)"},
"aji": {Part3: "aji", Scope: 'I', LanguageType: 'L', Name: "Ajië"},
"ajn": {Part3: "ajn", Scope: 'I', LanguageType: 'L', Name: "Andajin"},
"ajp": {Part3: "ajp", Scope: 'I', LanguageType: 'L', Name: "South Levantine Arabic"},
"ajt": {Part3: "ajt", Scope: 'I', LanguageType: 'L', Name: "Judeo-Tunisian Arabic"},
"aju": {Part3: "aju", Scope: 'I', LanguageType: 'L', Name: "Judeo-Moroccan Arabic"},
"ajw": {Part3: "ajw", Scope: 'I', LanguageType: 'E', Name: "Ajawa"},
"ajz": {Part3: "ajz", Scope: 'I', LanguageType: 'L', Name: "Amri Karbi"},
"aka": {Part3: "aka", Part2B: "aka", Part2T: "aka", Part1: "ak", Scope: 'M', LanguageType: 'L', Name: "Akan"},
"akb": {Part3: "akb", Scope: 'I', LanguageType: 'L', Name: "Batak Angkola"},
"akc": {Part3: "akc", Scope: 'I', LanguageType: 'L', Name: "Mpur"},
"akd": {Part3: "akd", Scope: 'I', LanguageType: 'L', Name: "Ukpet-Ehom"},
"ake": {Part3: "ake", Scope: 'I', LanguageType: 'L', Name: "Akawaio"},
"akf": {Part3: "akf", Scope: 'I', LanguageType: 'L', Name: "Akpa"},
"akg": {Part3: "akg", Scope: 'I', LanguageType: 'L', Name: "Anakalangu"},
"akh": {Part3: "akh", Scope: 'I', LanguageType: 'L', Name: "Angal Heneng"},
"aki": {Part3: "aki", Scope: 'I', LanguageType: 'L', Name: "Aiome"},
"akj": {Part3: "akj", Scope: 'I', LanguageType: 'E', Name: "Aka-Jeru"},
"akk": {Part3: "akk", Part2B: "akk", Part2T: "akk", Scope: 'I', LanguageType: 'A', Name: "Akkadian"},
"akl": {Part3: "akl", Scope: 'I', LanguageType: 'L', Name: "Aklanon"},
"akm": {Part3: "akm", Scope: 'I', LanguageType: 'E', Name: "Aka-Bo"},
"ako": {Part3: "ako", Scope: 'I', LanguageType: 'L', Name: "Akurio"},
"akp": {Part3: "akp", Scope: 'I', LanguageType: 'L', Name: "Siwu"},
"akq": {Part3: "akq", Scope: 'I', LanguageType: 'L', Name: "Ak"},
"akr": {Part3: "akr", Scope: 'I', LanguageType: 'L', Name: "Araki"},
"aks": {Part3: "aks", Scope: 'I', LanguageType: 'L', Name: "Akaselem"},
"akt": {Part3: "akt", Scope: 'I', LanguageType: 'L', Name: "Akolet"},
"aku": {Part3: "aku", Scope: 'I', LanguageType: 'L', Name: "Akum"},
"akv": {Part3: "akv", Scope: 'I', LanguageType: 'L', Name: "Akhvakh"},
"akw": {Part3: "akw", Scope: 'I', LanguageType: 'L', Name: "Akwa"},
"akx": {Part3: "akx", Scope: 'I', LanguageType: 'E', Name: "Aka-Kede"},
"aky": {Part3: "aky", Scope: 'I', LanguageType: 'E', Name: "Aka-Kol"},
"akz": {Part3: "akz", Scope: 'I', LanguageType: 'L', Name: "Alabama"},
"ala": {Part3: "ala", Scope: 'I', LanguageType: 'L', Name: "Alago"},
"alc": {Part3: "alc", Scope: 'I', LanguageType: 'L', Name: "Qawasqar"},
"ald": {Part3: "ald", Scope: 'I', LanguageType: 'L', Name: "Alladian"},
"ale": {Part3: "ale", Part2B: "ale", Part2T: "ale", Scope: 'I', LanguageType: 'L', Name: "Aleut"},
"alf": {Part3: "alf", Scope: 'I', LanguageType: 'L', Name: "Alege"},
"alh": {Part3: "alh", Scope: 'I', LanguageType: 'L', Name: "Alawa"},
"ali": {Part3: "ali", Scope: 'I', LanguageType: 'L', Name: "Amaimon"},
"alj": {Part3: "alj", Scope: 'I', LanguageType: 'L', Name: "Alangan"},
"alk": {Part3: "alk", Scope: 'I', LanguageType: 'L', Name: "Alak"},
"all": {Part3: "all", Scope: 'I', LanguageType: 'L', Name: "Allar"},
"alm": {Part3: "alm", Scope: 'I', LanguageType: 'L', Name: "Amblong"},
"aln": {Part3: "aln", Scope: 'I', LanguageType: 'L', Name: "Gheg Albanian"},
"alo": {Part3: "alo", Scope: 'I', LanguageType: 'L', Name: "Larike-Wakasihu"},
"alp": {Part3: "alp", Scope: 'I', LanguageType: 'L', Name: "Alune"},
"alq": {Part3: "alq", Scope: 'I', LanguageType: 'L', Name: "Algonquin"},
"alr": {Part3: "alr", Scope: 'I', LanguageType: 'L', Name: "Alutor"},
"als": {Part3: "als", Scope: 'I', LanguageType: 'L', Name: "Tosk Albanian"},
"alt": {Part3: "alt", Part2B: "alt", Part2T: "alt", Scope: 'I', LanguageType: 'L', Name: "Southern Altai"},
"alu": {Part3: "alu", Scope: 'I', LanguageType: 'L', Name: "'Are'are"},
"alw": {Part3: "alw", Scope: 'I', LanguageType: 'L', Name: "Alaba-K’abeena"},
"alx": {Part3: "alx", Scope: 'I', LanguageType: 'L', Name: "Amol"},
"aly": {Part3: "aly", Scope: 'I', LanguageType: 'L', Name: "Alyawarr"},
"alz": {Part3: "alz", Scope: 'I', LanguageType: 'L', Name: "Alur"},
"ama": {Part3: "ama", Scope: 'I', LanguageType: 'E', Name: "Amanayé"},
"amb": {Part3: "amb", Scope: 'I', LanguageType: 'L', Name: "Ambo"},
"amc": {Part3: "amc", Scope: 'I', LanguageType: 'L', Name: "Amahuaca"},
"ame": {Part3: "ame", Scope: 'I', LanguageType: 'L', Name: "Yanesha'"},
"amf": {Part3: "amf", Scope: 'I', LanguageType: 'L', Name: "Hamer-Banna"},
"amg": {Part3: "amg", Scope: 'I', LanguageType: 'L', Name: "Amurdak"},
"amh": {Part3: "amh", Part2B: "amh", Part2T: "amh", Part1: "am", Scope: 'I', LanguageType: 'L', Name: "Amharic"},
"ami": {Part3: "ami", Scope: 'I', LanguageType: 'L', Name: "Amis"},
"amj": {Part3: "amj", Scope: 'I', LanguageType: 'L', Name: "Amdang"},
"amk": {Part3: "amk", Scope: 'I', LanguageType: 'L', Name: "Ambai"},
"aml": {Part3: "aml", Scope: 'I', LanguageType: 'L', Name: "War-Jaintia"},
"amm": {Part3: "amm", Scope: 'I', LanguageType: 'L', Name: "Ama (Papua New Guinea)"},
"amn": {Part3: "amn", Scope: 'I', LanguageType: 'L', Name: "Amanab"},
"amo": {Part3: "amo", Scope: 'I', LanguageType: 'L', Name: "Amo"},
"amp": {Part3: "amp", Scope: 'I', LanguageType: 'L', Name: "Alamblak"},
"amq": {Part3: "amq", Scope: 'I', LanguageType: 'L', Name: "Amahai"},
"amr": {Part3: "amr", Scope: 'I', LanguageType: 'L', Name: "Amarakaeri"},
"ams": {Part3: "ams", Scope: 'I', LanguageType: 'L', Name: "Southern Amami-Oshima"},
"amt": {Part3: "amt", Scope: 'I', LanguageType: 'L', Name: "Amto"},
"amu": {Part3: "amu", Scope: 'I', LanguageType: 'L', Name: "Guerrero Amuzgo"},
"amv": {Part3: "amv", Scope: 'I', LanguageType: 'L', Name: "Ambelau"},
"amw": {Part3: "amw", Scope: 'I', LanguageType: 'L', Name: "Western Neo-Aramaic"},
"amx": {Part3: "amx", Scope: 'I', LanguageType: 'L', Name: "Anmatyerre"},
"amy": {Part3: "amy", Scope: 'I', LanguageType: 'L', Name: "Ami"},
"amz": {Part3: "amz", Scope: 'I', LanguageType: 'E', Name: "Atampaya"},
"ana": {Part3: "ana", Scope: 'I', LanguageType: 'E', Name: "Andaqui"},
"anb": {Part3: "anb", Scope: 'I', LanguageType: 'E', Name: "Andoa"},
"anc": {Part3: "anc", Scope: 'I', LanguageType: 'L', Name: "Ngas"},
"and": {Part3: "and", Scope: 'I', LanguageType: 'L', Name: "Ansus"},
"ane": {Part3: "ane", Scope: 'I', LanguageType: 'L', Name: "Xârâcùù"},
"anf": {Part3: "anf", Scope: 'I', LanguageType: 'L', Name: "Animere"},
"ang": {Part3: "ang", Part2B: "ang", Part2T: "ang", Scope: 'I', LanguageType: 'H', Name: "Old English (ca. 450-1100)"},
"anh": {Part3: "anh", Scope: 'I', LanguageType: 'L', Name: "Nend"},
"ani": {Part3: "ani", Scope: 'I', LanguageType: 'L', Name: "Andi"},
"anj": {Part3: "anj", Scope: 'I', LanguageType: 'L', Name: "Anor"},
"ank": {Part3: "ank", Scope: 'I', LanguageType: 'L', Name: "Goemai"},
"anl": {Part3: "anl", Scope: 'I', LanguageType: 'L', Name: "Anu-Hkongso Chin"},
"anm": {Part3: "anm", Scope: 'I', LanguageType: 'L', Name: "Anal"},
"ann": {Part3: "ann", Scope: 'I', LanguageType: 'L', Name: "Obolo"},
"ano": {Part3: "ano", Scope: 'I', LanguageType: 'L', Name: "Andoque"},
"anp": {Part3: "anp", Part2B: "anp", Part2T: "anp", Scope: 'I', LanguageType: 'L', Name: "Angika"},
"anq": {Part3: "anq", Scope: 'I', LanguageType: 'L', Name: "Jarawa (India)"},
"anr": {Part3: "anr", Scope: 'I', LanguageType: 'L', Name: "Andh"},
"ans": {Part3: "ans", Scope: 'I', LanguageType: 'E', Name: "Anserma"},
"ant": {Part3: "ant", Scope: 'I', LanguageType: 'L', Name: "Antakarinya"},
"anu": {Part3: "anu", Scope: 'I', LanguageType: 'L', Name: "Anuak"},
"anv": {Part3: "anv", Scope: 'I', LanguageType: 'L', Name: "Denya"},
"anw": {Part3: "anw", Scope: 'I', LanguageType: 'L', Name: "Anaang"},
"anx": {Part3: "anx", Scope: 'I', LanguageType: 'L', Name: "Andra-Hus"},
"any": {Part3: "any", Scope: 'I', LanguageType: 'L', Name: "Anyin"},
"anz": {Part3: "anz", Scope: 'I', LanguageType: 'L', Name: "Anem"},
"aoa": {Part3: "aoa", Scope: 'I', LanguageType: 'L', Name: "Angolar"},
"aob": {Part3: "aob", Scope: 'I', LanguageType: 'L', Name: "Abom"},
"aoc": {Part3: "aoc", Scope: 'I', LanguageType: 'L', Name: "Pemon"},
"aod": {Part3: "aod", Scope: 'I', LanguageType: 'L', Name: "Andarum"},
"aoe": {Part3: "aoe", Scope: 'I', LanguageType: 'L', Name: "Angal Enen"},
"aof": {Part3: "aof", Scope: 'I', LanguageType: 'L', Name: "Bragat"},
"aog": {Part3: "aog", Scope: 'I', LanguageType: 'L', Name: "Angoram"},
"aoi": {Part3: "aoi", Scope: 'I', LanguageType: 'L', Name: "Anindilyakwa"},
"aoj": {Part3: "aoj", Scope: 'I', LanguageType: 'L', Name: "Mufian"},
"aok": {Part3: "aok", Scope: 'I', LanguageType: 'L', Name: "Arhö"},
"aol": {Part3: "aol", Scope: 'I', LanguageType: 'L', Name: "Alor"},
"aom": {Part3: "aom", Scope: 'I', LanguageType: 'L', Name: "Ömie"},
"aon": {Part3: "aon", Scope: 'I', LanguageType: 'L', Name: "Bumbita Arapesh"},
"aor": {Part3: "aor", Scope: 'I', LanguageType: 'E', Name: "Aore"},
"aos": {Part3: "aos", Scope: 'I', LanguageType: 'L', Name: "Taikat"},
"aot": {Part3: "aot", Scope: 'I', LanguageType: 'L', Name: "Atong (India)"},
"aou": {Part3: "aou", Scope: 'I', LanguageType: 'L', Name: "A'ou"},
"aox": {Part3: "aox", Scope: 'I', LanguageType: 'L', Name: "Atorada"},
"aoz": {Part3: "aoz", Scope: 'I', LanguageType: 'L', Name: "Uab Meto"},
"apb": {Part3: "apb", Scope: 'I', LanguageType: 'L', Name: "Sa'a"},
"apc": {Part3: "apc", Scope: 'I', LanguageType: 'L', Name: "North Levantine Arabic"},
"apd": {Part3: "apd", Scope: 'I', LanguageType: 'L', Name: "Sudanese Arabic"},
"ape": {Part3: "ape", Scope: 'I', LanguageType: 'L', Name: "Bukiyip"},
"apf": {Part3: "apf", Scope: 'I', LanguageType: 'L', Name: "Pahanan Agta"},
"apg": {Part3: "apg", Scope: 'I', LanguageType: 'L', Name: "Ampanang"},
"aph": {Part3: "aph", Scope: 'I', LanguageType: 'L', Name: "Athpariya"},
"api": {Part3: "api", Scope: 'I', LanguageType: 'L', Name: "Apiaká"},
"apj": {Part3: "apj", Scope: 'I', LanguageType: 'L', Name: "Jicarilla Apache"},
"apk": {Part3: "apk", Scope: 'I', LanguageType: 'L', Name: "Kiowa Apache"},
"apl": {Part3: "apl", Scope: 'I', LanguageType: 'L', Name: "Lipan Apache"},
"apm": {Part3: "apm", Scope: 'I', LanguageType: 'L', Name: "Mescalero-Chiricahua Apache"},
"apn": {Part3: "apn", Scope: 'I', LanguageType: 'L', Name: "Apinayé"},
"apo": {Part3: "apo", Scope: 'I', LanguageType: 'L', Name: "Ambul"},
"app": {Part3: "app", Scope: 'I', LanguageType: 'L', Name: "Apma"},
"apq": {Part3: "apq", Scope: 'I', LanguageType: 'L', Name: "A-Pucikwar"},
"apr": {Part3: "apr", Scope: 'I', LanguageType: 'L', Name: "Arop-Lokep"},
"aps": {Part3: "aps", Scope: 'I', LanguageType: 'L', Name: "Arop-Sissano"},
"apt": {Part3: "apt", Scope: 'I', LanguageType: 'L', Name: "Apatani"},
"apu": {Part3: "apu", Scope: 'I', LanguageType: 'L', Name: "Apurinã"},
"apv": {Part3: "apv", Scope: 'I', LanguageType: 'E', Name: "Alapmunte"},
"apw": {Part3: "apw", Scope: 'I', LanguageType: 'L', Name: "Western Apache"},
"apx": {Part3: "apx", Scope: 'I', LanguageType: 'L', Name: "Aputai"},
"apy": {Part3: "apy", Scope: 'I', LanguageType: 'L', Name: "Apalaí"},
"apz": {Part3: "apz", Scope: 'I', LanguageType: 'L', Name: "Safeyoka"},
"aqc": {Part3: "aqc", Scope: 'I', LanguageType: 'L', Name: "Archi"},
"aqd": {Part3: "aqd", Scope: 'I', LanguageType: 'L', Name: "Ampari Dogon"},
"aqg": {Part3: "aqg", Scope: 'I', LanguageType: 'L', Name: "Arigidi"},
"aqk": {Part3: "aqk", Scope: 'I', LanguageType: 'L', Name: "Aninka"},
"aqm": {Part3: "aqm", Scope: 'I', LanguageType: 'L', Name: "Atohwaim"},
"aqn": {Part3: "aqn", Scope: 'I', LanguageType: 'L', Name: "Northern Alta"},
"aqp": {Part3: "aqp", Scope: 'I', LanguageType: 'E', Name: "Atakapa"},
"aqr": {Part3: "aqr", Scope: 'I', LanguageType: 'L', Name: "Arhâ"},
"aqt": {Part3: "aqt", Scope: 'I', LanguageType: 'L', Name: "Angaité"},
"aqz": {Part3: "aqz", Scope: 'I', LanguageType: 'L', Name: "Akuntsu"},
"ara": {Part3: "ara", Part2B: "ara", Part2T: "ara", Part1: "ar", Scope: 'M', LanguageType: 'L', Name: "Arabic"},
"arb": {Part3: "arb", Scope: 'I', LanguageType: 'L', Name: "Standard Arabic"},
"arc": {Part3: "arc", Part2B: "arc", Part2T: "arc", Scope: 'I', LanguageType: 'A', Name: "Official Aramaic (700-300 BCE)"},
"ard": {Part3: "ard", Scope: 'I', LanguageType: 'E', Name: "Arabana"},
"are": {Part3: "are", Scope: 'I', LanguageType: 'L', Name: "Western Arrarnta"},
"arg": {Part3: "arg", Part2B: "arg", Part2T: "arg", Part1: "an", Scope: 'I', LanguageType: 'L', Name: "Aragonese"},
"arh": {Part3: "arh", Scope: 'I', LanguageType: 'L', Name: "Arhuaco"},
"ari": {Part3: "ari", Scope: 'I', LanguageType: 'L', Name: "Arikara"},
"arj": {Part3: "arj", Scope: 'I', LanguageType: 'E', Name: "Arapaso"},
"ark": {Part3: "ark", Scope: 'I', LanguageType: 'L', Name: "Arikapú"},
"arl": {Part3: "arl", Scope: 'I', LanguageType: 'L', Name: "Arabela"},
"arn": {Part3: "arn", Part2B: "arn", Part2T: "arn", Scope: 'I', LanguageType: 'L', Name: "Mapudungun"},
"aro": {Part3: "aro", Scope: 'I', LanguageType: 'L', Name: "Araona"},
"arp": {Part3: "arp", Part2B: "arp", Part2T: "arp", Scope: 'I', LanguageType: 'L', Name: "Arapaho"},
"arq": {Part3: "arq", Scope: 'I', LanguageType: 'L', Name: "Algerian Arabic"},
"arr": {Part3: "arr", Scope: 'I', LanguageType: 'L', Name: "Karo (Brazil)"},
"ars": {Part3: "ars", Scope: 'I', LanguageType: 'L', Name: "Najdi Arabic"},
"aru": {Part3: "aru", Scope: 'I', LanguageType: 'E', Name: "Aruá (Amazonas State)"},
"arv": {Part3: "arv", Scope: 'I', LanguageType: 'L', Name: "Arbore"},
"arw": {Part3: "arw", Part2B: "arw", Part2T: "arw", Scope: 'I', LanguageType: 'L', Name: "Arawak"},
"arx": {Part3: "arx", Scope: 'I', LanguageType: 'L', Name: "Aruá (Rodonia State)"},
"ary": {Part3: "ary", Scope: 'I', LanguageType: 'L', Name: "Moroccan Arabic"},
"arz": {Part3: "arz", Scope: 'I', LanguageType: 'L', Name: "Egyptian Arabic"},
"asa": {Part3: "asa", Scope: 'I', LanguageType: 'L', Name: "Asu (Tanzania)"},
"asb": {Part3: "asb", Scope: 'I', LanguageType: 'L', Name: "Assiniboine"},
"asc": {Part3: "asc", Scope: 'I', LanguageType: 'L', Name: "Casuarina Coast Asmat"},
"ase": {Part3: "ase", Scope: 'I', LanguageType: 'L', Name: "American Sign Language"},
"asf": {Part3: "asf", Scope: 'I', LanguageType: 'L', Name: "Auslan"},
"asg": {Part3: "asg", Scope: 'I', LanguageType: 'L', Name: "Cishingini"},
"ash": {Part3: "ash", Scope: 'I', LanguageType: 'E', Name: "Abishira"},
"asi": {Part3: "asi", Scope: 'I', LanguageType: 'L', Name: "Buruwai"},
"asj": {Part3: "asj", Scope: 'I', LanguageType: 'L', Name: "Sari"},
"ask": {Part3: "ask", Scope: 'I', LanguageType: 'L', Name: "Ashkun"},
"asl": {Part3: "asl", Scope: 'I', LanguageType: 'L', Name: "Asilulu"},
"asm": {Part3: "asm", Part2B: "asm", Part2T: "asm", Part1: "as", Scope: 'I', LanguageType: 'L', Name: "Assamese"},
"asn": {Part3: "asn", Scope: 'I', LanguageType: 'L', Name: "Xingú Asuriní"},
"aso": {Part3: "aso", Scope: 'I', LanguageType: 'L', Name: "Dano"},
"asp": {Part3: "asp", Scope: 'I', LanguageType: 'L', Name: "Algerian Sign Language"},
"asq": {Part3: "asq", Scope: 'I', LanguageType: 'L', Name: "Austrian Sign Language"},
"asr": {Part3: "asr", Scope: 'I', LanguageType: 'L', Name: "Asuri"},
"ass": {Part3: "ass", Scope: 'I', LanguageType: 'L', Name: "Ipulo"},
"ast": {Part3: "ast", Part2B: "ast", Part2T: "ast", Scope: 'I', LanguageType: 'L', Name: "Asturian"},
"asu": {Part3: "asu", Scope: 'I', LanguageType: 'L', Name: "Tocantins Asurini"},
"asv": {Part3: "asv", Scope: 'I', LanguageType: 'L', Name: "Asoa"},
"asw": {Part3: "asw", Scope: 'I', LanguageType: 'L', Name: "Australian Aborigines Sign Language"},
"asx": {Part3: "asx", Scope: 'I', LanguageType: 'L', Name: "Muratayak"},
"asy": {Part3: "asy", Scope: 'I', LanguageType: 'L', Name: "Yaosakor Asmat"},
"asz": {Part3: "asz", Scope: 'I', LanguageType: 'L', Name: "As"},
"ata": {Part3: "ata", Scope: 'I', LanguageType: 'L', Name: "Pele-Ata"},
"atb": {Part3: "atb", Scope: 'I', LanguageType: 'L', Name: "Zaiwa"},
"atc": {Part3: "atc", Scope: 'I', LanguageType: 'E', Name: "Atsahuaca"},
"atd": {Part3: "atd", Scope: 'I', LanguageType: 'L', Name: "Ata Manobo"},
"ate": {Part3: "ate", Scope: 'I', LanguageType: 'L', Name: "Atemble"},
"atg": {Part3: "atg", Scope: 'I', LanguageType: 'L', Name: "Ivbie North-Okpela-Arhe"},
"ati": {Part3: "ati", Scope: 'I', LanguageType: 'L', Name: "Attié"},
"atj": {Part3: "atj", Scope: 'I', LanguageType: 'L', Name: "Atikamekw"},
"atk": {Part3: "atk", Scope: 'I', LanguageType: 'L', Name: "Ati"},
"atl": {Part3: "atl", Scope: 'I', LanguageType: 'L', Name: "Mt. Iraya Agta"},
"atm": {Part3: "atm", Scope: 'I', LanguageType: 'L', Name: "Ata"},
"atn": {Part3: "atn", Scope: 'I', LanguageType: 'L', Name: "Ashtiani"},
"ato": {Part3: "ato", Scope: 'I', LanguageType: 'L', Name: "Atong (Cameroon)"},
"atp": {Part3: "atp", Scope: 'I', LanguageType: 'L', Name: "Pudtol Atta"},
"atq": {Part3: "atq", Scope: 'I', LanguageType: 'L', Name: "Aralle-Tabulahan"},
"atr": {Part3: "atr", Scope: 'I', LanguageType: 'L', Name: "Waimiri-Atroari"},
"ats": {Part3: "ats", Scope: 'I', LanguageType: 'L', Name: "Gros Ventre"},
"att": {Part3: "att", Scope: 'I', LanguageType: 'L', Name: "Pamplona Atta"},
"atu": {Part3: "atu", Scope: 'I', LanguageType: 'L', Name: "Reel"},
"atv": {Part3: "atv", Scope: 'I', LanguageType: 'L', Name: "Northern Altai"},
"atw": {Part3: "atw", Scope: 'I', LanguageType: 'L', Name: "Atsugewi"},
"atx": {Part3: "atx", Scope: 'I', LanguageType: 'L', Name: "Arutani"},
"aty": {Part3: "aty", Scope: 'I', LanguageType: 'L', Name: "Aneityum"},
"atz": {Part3: "atz", Scope: 'I', LanguageType: 'L', Name: "Arta"},
"aua": {Part3: "aua", Scope: 'I', LanguageType: 'L', Name: "Asumboa"},
"aub": {Part3: "aub", Scope: 'I', LanguageType: 'L', Name: "Alugu"},
"auc": {Part3: "auc", Scope: 'I', LanguageType: 'L', Name: "Waorani"},
"aud": {Part3: "aud", Scope: 'I', LanguageType: 'L', Name: "Anuta"},
"aug": {Part3: "aug", Scope: 'I', LanguageType: 'L', Name: "Aguna"},
"auh": {Part3: "auh", Scope: 'I', LanguageType: 'L', Name: "Aushi"},
"aui": {Part3: "aui", Scope: 'I', LanguageType: 'L', Name: "Anuki"},
"auj": {Part3: "auj", Scope: 'I', LanguageType: 'L', Name: "Awjilah"},
"auk": {Part3: "auk", Scope: 'I', LanguageType: 'L', Name: "Heyo"},
"aul": {Part3: "aul", Scope: 'I', LanguageType: 'L', Name: "Aulua"},
"aum": {Part3: "aum", Scope: 'I', LanguageType: 'L', Name: "Asu (Nigeria)"},
"aun": {Part3: "aun", Scope: 'I', LanguageType: 'L', Name: "Molmo One"},
"auo": {Part3: "auo", Scope: 'I', LanguageType: 'E', Name: "Auyokawa"},
"aup": {Part3: "aup", Scope: 'I', LanguageType: 'L', Name: "Makayam"},
"auq": {Part3: "auq", Scope: 'I', LanguageType: 'L', Name: "Anus"},
"aur": {Part3: "aur", Scope: 'I', LanguageType: 'L', Name: "Aruek"},
"aut": {Part3: "aut", Scope: 'I', LanguageType: 'L', Name: "Austral"},
"auu": {Part3: "auu", Scope: 'I', LanguageType: 'L', Name: "Auye"},
"auw": {Part3: "auw", Scope: 'I', LanguageType: 'L', Name: "Awyi"},
"aux": {Part3: "aux", Scope: 'I', LanguageType: 'E', Name: "Aurá"},
"auy": {Part3: "auy", Scope: 'I', LanguageType: 'L', Name: "Awiyaana"},
"auz": {Part3: "auz", Scope: 'I', LanguageType: 'L', Name: "Uzbeki Arabic"},
"ava": {Part3: "ava", Part2B: "ava", Part2T: "ava", Part1: "av", Scope: 'I', LanguageType: 'L', Name: "Avaric"},
"avb": {Part3: "avb", Scope: 'I', LanguageType: 'L', Name: "Avau"},
"avd": {Part3: "avd", Scope: 'I', LanguageType: 'L', Name: "Alviri-Vidari"},
"ave": {Part3: "ave", Part2B: "ave", Part2T: "ave", Part1: "ae", Scope: 'I', LanguageType: 'A', Name: "Avestan"},
"avi": {Part3: "avi", Scope: 'I', LanguageType: 'L', Name: "Avikam"},
"avk": {Part3: "avk", Scope: 'I', LanguageType: 'C', Name: "Kotava"},
"avl": {Part3: "avl", Scope: 'I', LanguageType: 'L', Name: "Eastern Egyptian Bedawi Arabic"},
"avm": {Part3: "avm", Scope: 'I', LanguageType: 'E', Name: "Angkamuthi"},
"avn": {Part3: "avn", Scope: 'I', LanguageType: 'L', Name: "Avatime"},
"avo": {Part3: "avo", Scope: 'I', LanguageType: 'E', Name: "Agavotaguerra"},
"avs": {Part3: "avs", Scope: 'I', LanguageType: 'E', Name: "Aushiri"},
"avt": {Part3: "avt", Scope: 'I', LanguageType: 'L', Name: "Au"},
"avu": {Part3: "avu", Scope: 'I', LanguageType: 'L', Name: "Avokaya"},
"avv": {Part3: "avv", Scope: 'I', LanguageType: 'L', Name: "Avá-Canoeiro"},
"awa": {Part3: "awa", Part2B: "awa", Part2T: "awa", Scope: 'I', LanguageType: 'L', Name: "Awadhi"},
"awb": {Part3: "awb", Scope: 'I', LanguageType: 'L', Name: "Awa (Papua New Guinea)"},
"awc": {Part3: "awc", Scope: 'I', LanguageType: 'L', Name: "Cicipu"},
"awe": {Part3: "awe", Scope: 'I', LanguageType: 'L', Name: "Awetí"},
"awg": {Part3: "awg", Scope: 'I', LanguageType: 'E', Name: "Anguthimri"},
"awh": {Part3: "awh", Scope: 'I', LanguageType: 'L', Name: "Awbono"},
"awi": {Part3: "awi", Scope: 'I', LanguageType: 'L', Name: "Aekyom"},
"awk": {Part3: "awk", Scope: 'I', LanguageType: 'E', Name: "Awabakal"},
"awm": {Part3: "awm", Scope: 'I', LanguageType: 'L', Name: "Arawum"},
"awn": {Part3: "awn", Scope: 'I', LanguageType: 'L', Name: "Awngi"},
"awo": {Part3: "awo", Scope: 'I', LanguageType: 'L', Name: "Awak"},
"awr": {Part3: "awr", Scope: 'I', LanguageType: 'L', Name: "Awera"},
"aws": {Part3: "aws", Scope: 'I', LanguageType: 'L', Name: "South Awyu"},
"awt": {Part3: "awt", Scope: 'I', LanguageType: 'L', Name: "Araweté"},
"awu": {Part3: "awu", Scope: 'I', LanguageType: 'L', Name: "Central Awyu"},
"awv": {Part3: "awv", Scope: 'I', LanguageType: 'L', Name: "Jair Awyu"},
"aww": {Part3: "aww", Scope: 'I', LanguageType: 'L', Name: "Awun"},
"awx": {Part3: "awx", Scope: 'I', LanguageType: 'L', Name: "Awara"},
"awy": {Part3: "awy", Scope: 'I', LanguageType: 'L', Name: "Edera Awyu"},
"axb": {Part3: "axb", Scope: 'I', LanguageType: 'E', Name: "Abipon"},
"axe": {Part3: "axe", Scope: 'I', LanguageType: 'E', Name: "Ayerrerenge"},
"axg": {Part3: "axg", Scope: 'I', LanguageType: 'E', Name: "Mato Grosso Arára"},
"axk": {Part3: "axk", Scope: 'I', LanguageType: 'L', Name: "Yaka (Central African Republic)"},
"axl": {Part3: "axl", Scope: 'I', LanguageType: 'E', Name: "Lower Southern Aranda"},
"axm": {Part3: "axm", Scope: 'I', LanguageType: 'H', Name: "Middle Armenian"},
"axx": {Part3: "axx", Scope: 'I', LanguageType: 'L', Name: "Xârâgurè"},
"aya": {Part3: "aya", Scope: 'I', LanguageType: 'L', Name: "Awar"},
"ayb": {Part3: "ayb", Scope: 'I', LanguageType: 'L', Name: "Ayizo Gbe"},
"ayc": {Part3: "ayc", Scope: 'I', LanguageType: 'L', Name: "Southern Aymara"},
"ayd": {Part3: "ayd", Scope: 'I', LanguageType: 'E', Name: "Ayabadhu"},
"aye": {Part3: "aye", Scope: 'I', LanguageType: 'L', Name: "Ayere"},
"ayg": {Part3: "ayg", Scope: 'I', LanguageType: 'L', Name: "Ginyanga"},
"ayh": {Part3: "ayh", Scope: 'I', LanguageType: 'L', Name: "Hadrami Arabic"},
"ayi": {Part3: "ayi", Scope: 'I', LanguageType: 'L', Name: "Leyigha"},
"ayk": {Part3: "ayk", Scope: 'I', LanguageType: 'L', Name: "Akuku"},
"ayl": {Part3: "ayl", Scope: 'I', LanguageType: 'L', Name: "Libyan Arabic"},
"aym": {Part3: "aym", Part2B: "aym", Part2T: "aym", Part1: "ay", Scope: 'M', LanguageType: 'L', Name: "Aymara"},
"ayn": {Part3: "ayn", Scope: 'I', LanguageType: 'L', Name: "Sanaani Arabic"},
"ayo": {Part3: "ayo", Scope: 'I', LanguageType: 'L', Name: "Ayoreo"},
"ayp": {Part3: "ayp", Scope: 'I', LanguageType: 'L', Name: "North Mesopotamian Arabic"},
"ayq": {Part3: "ayq", Scope: 'I', LanguageType: 'L', Name: "Ayi (Papua New Guinea)"},
"ayr": {Part3: "ayr", Scope: 'I', LanguageType: 'L', Name: "Central Aymara"},
"ays": {Part3: "ays", Scope: 'I', LanguageType: 'L', Name: "Sorsogon Ayta"},
"ayt": {Part3: "ayt", Scope: 'I', LanguageType: 'L', Name: "Magbukun Ayta"},
"ayu": {Part3: "ayu", Scope: 'I', LanguageType: 'L', Name: "Ayu"},
"ayz": {Part3: "ayz", Scope: 'I', LanguageType: 'L', Name: "Mai Brat"},
"aza": {Part3: "aza", Scope: 'I', LanguageType: 'L', Name: "Azha"},
"azb": {Part3: "azb", Scope: 'I', LanguageType: 'L', Name: "South Azerbaijani"},
"azd": {Part3: "azd", Scope: 'I', LanguageType: 'L', Name: "Eastern Durango Nahuatl"},
"aze": {Part3: "aze", Part2B: "aze", Part2T: "aze", Part1: "az", Scope: 'M', LanguageType: 'L', Name: "Azerbaijani"},
"azg": {Part3: "azg", Scope: 'I', LanguageType: 'L', Name: "San Pedro Amuzgos Amuzgo"},
"azj": {Part3: "azj", Scope: 'I', LanguageType: 'L', Name: "North Azerbaijani"},
"azm": {Part3: "azm", Scope: 'I', LanguageType: 'L', Name: "Ipalapa Amuzgo"},
"azn": {Part3: "azn", Scope: 'I', LanguageType: 'L', Name: "Western Durango Nahuatl"},
"azo": {Part3: "azo", Scope: 'I', LanguageType: 'L', Name: "Awing"},
"azt": {Part3: "azt", Scope: 'I', LanguageType: 'L', Name: "Faire Atta"},
"azz": {Part3: "azz", Scope: 'I', LanguageType: 'L', Name: "Highland Puebla Nahuatl"},
"baa": {Part3: "baa", Scope: 'I', LanguageType: 'L', Name: "Babatana"},
"bab": {Part3: "bab", Scope: 'I', LanguageType: 'L', Name: "Bainouk-Gunyuño"},
"bac": {Part3: "bac", Scope: 'I', LanguageType: 'L', Name: "Badui"},
"bae": {Part3: "bae", Scope: 'I', LanguageType: 'E', Name: "Baré"},
"baf": {Part3: "baf", Scope: 'I', LanguageType: 'L', Name: "Nubaca"},
"bag": {Part3: "bag", Scope: 'I', LanguageType: 'L', Name: "Tuki"},
"bah": {Part3: "bah", Scope: 'I', LanguageType: 'L', Name: "Bahamas Creole English"},
"baj": {Part3: "baj", Scope: 'I', LanguageType: 'L', Name: "Barakai"},
"bak": {Part3: "bak", Part2B: "bak", Part2T: "bak", Part1: "ba", Scope: 'I', LanguageType: 'L', Name: "Bashkir"},
"bal": {Part3: "bal", Part2B: "bal", Part2T: "bal", Scope: 'M', LanguageType: 'L', Name: "Baluchi"},
"bam": {Part3: "bam", Part2B: "bam", Part2T: "bam", Part1: "bm", Scope: 'I', LanguageType: 'L', Name: "Bambara"},
"ban": {Part3: "ban", Part2B: "ban", Part2T: "ban", Scope: 'I', LanguageType: 'L', Name: "Balinese"},
"bao": {Part3: "bao", Scope: 'I', LanguageType: 'L', Name: "Waimaha"},
"bap": {Part3: "bap", Scope: 'I', LanguageType: 'L', Name: "Bantawa"},
"bar": {Part3: "bar", Scope: 'I', LanguageType: 'L', Name: "Bavarian"},
"bas": {Part3: "bas", Part2B: "bas", Part2T: "bas", Scope: 'I', LanguageType: 'L', Name: "Basa (Cameroon)"},
"bau": {Part3: "bau", Scope: 'I', LanguageType: 'L', Name: "Bada (Nigeria)"},
"bav": {Part3: "bav", Scope: 'I', LanguageType: 'L', Name: "Vengo"},
"baw": {Part3: "baw", Scope: 'I', LanguageType: 'L', Name: "Bambili-Bambui"},
"bax": {Part3: "bax", Scope: 'I', LanguageType: 'L', Name: "Bamun"},
"bay": {Part3: "bay", Scope: 'I', LanguageType: 'L', Name: "Batuley"},
"bba": {Part3: "bba", Scope: 'I', LanguageType: 'L', Name: "Baatonum"},
"bbb": {Part3: "bbb", Scope: 'I', LanguageType: 'L', Name: "Barai"},
"bbc": {Part3: "bbc", Scope: 'I', LanguageType: 'L', Name: "Batak Toba"},
"bbd": {Part3: "bbd", Scope: 'I', LanguageType: 'L', Name: "Bau"},
"bbe": {Part3: "bbe", Scope: 'I', LanguageType: 'L', Name: "Bangba"},
"bbf": {Part3: "bbf", Scope: 'I', LanguageType: 'L', Name: "Baibai"},
"bbg": {Part3: "bbg", Scope: 'I', LanguageType: 'L', Name: "Barama"},
"bbh": {Part3: "bbh", Scope: 'I', LanguageType: 'L', Name: "Bugan"},
"bbi": {Part3: "bbi", Scope: 'I', LanguageType: 'L', Name: "Barombi"},
"bbj": {Part3: "bbj", Scope: 'I', LanguageType: 'L', Name: "Ghomálá'"},
"bbk": {Part3: "bbk", Scope: 'I', LanguageType: 'L', Name: "Babanki"},
"bbl": {Part3: "bbl", Scope: 'I', LanguageType: 'L', Name: "Bats"},
"bbm": {Part3: "bbm", Scope: 'I', LanguageType: 'L', Name: "Babango"},
"bbn": {Part3: "bbn", Scope: 'I', LanguageType: 'L', Name: "Uneapa"},
"bbo": {Part3: "bbo", Scope: 'I', LanguageType: 'L', Name: "Northern Bobo Madaré"},
"bbp": {Part3: "bbp", Scope: 'I', LanguageType: 'L', Name: "West Central Banda"},
"bbq": {Part3: "bbq", Scope: 'I', LanguageType: 'L', Name: "Bamali"},
"bbr": {Part3: "bbr", Scope: 'I', LanguageType: 'L', Name: "Girawa"},
"bbs": {Part3: "bbs", Scope: 'I', LanguageType: 'L', Name: "Bakpinka"},
"bbt": {Part3: "bbt", Scope: 'I', LanguageType: 'L', Name: "Mburku"},
"bbu": {Part3: "bbu", Scope: 'I', LanguageType: 'L', Name: "Kulung (Nigeria)"},
"bbv": {Part3: "bbv", Scope: 'I', LanguageType: 'L', Name: "Karnai"},
"bbw": {Part3: "bbw", Scope: 'I', LanguageType: 'L', Name: "Baba"},
"bbx": {Part3: "bbx", Scope: 'I', LanguageType: 'L', Name: "Bubia"},
"bby": {Part3: "bby", Scope: 'I', LanguageType: 'L', Name: "Befang"},
"bca": {Part3: "bca", Scope: 'I', LanguageType: 'L', Name: "Central Bai"},
"bcb": {Part3: "bcb", Scope: 'I', LanguageType: 'L', Name: "Bainouk-Samik"},
"bcc": {Part3: "bcc", Scope: 'I', LanguageType: 'L', Name: "Southern Balochi"},
"bcd": {Part3: "bcd", Scope: 'I', LanguageType: 'L', Name: "North Babar"},
"bce": {Part3: "bce", Scope: 'I', LanguageType: 'L', Name: "Bamenyam"},
"bcf": {Part3: "bcf", Scope: 'I', LanguageType: 'L', Name: "Bamu"},
"bcg": {Part3: "bcg", Scope: 'I', LanguageType: 'L', Name: "Baga Pokur"},
"bch": {Part3: "bch", Scope: 'I', LanguageType: 'L', Name: "Bariai"},
"bci": {Part3: "bci", Scope: 'I', LanguageType: 'L', Name: "Baoulé"},
"bcj": {Part3: "bcj", Scope: 'I', LanguageType: 'L', Name: "Bardi"},
"bck": {Part3: "bck", Scope: 'I', LanguageType: 'L', Name: "Bunuba"},
"bcl": {Part3: "bcl", Scope: 'I', LanguageType: 'L', Name: "Central Bikol"},
"bcm": {Part3: "bcm", Scope: 'I', LanguageType: 'L', Name: "Bannoni"},
"bcn": {Part3: "bcn", Scope: 'I', LanguageType: 'L', Name: "Bali (Nigeria)"},
"bco": {Part3: "bco", Scope: 'I', LanguageType: 'L', Name: "Kaluli"},
"bcp": {Part3: "bcp", Scope: 'I', LanguageType: 'L', Name: "Bali (Democratic Republic of Congo)"},
"bcq": {Part3: "bcq", Scope: 'I', LanguageType: 'L', Name: "Bench"},
"bcr": {Part3: "bcr", Scope: 'I', LanguageType: 'L', Name: "Babine"},
"bcs": {Part3: "bcs", Scope: 'I', LanguageType: 'L', Name: "Kohumono"},
"bct": {Part3: "bct", Scope: 'I', LanguageType: 'L', Name: "Bendi"},
"bcu": {Part3: "bcu", Scope: 'I', LanguageType: 'L', Name: "Awad Bing"},
"bcv": {Part3: "bcv", Scope: 'I', LanguageType: 'L', Name: "Shoo-Minda-Nye"},
"bcw": {Part3: "bcw", Scope: 'I', LanguageType: 'L', Name: "Bana"},
"bcy": {Part3: "bcy", Scope: 'I', LanguageType: 'L', Name: "Bacama"},
"bcz": {Part3: "bcz", Scope: 'I', LanguageType: 'L', Name: "Bainouk-Gunyaamolo"},
"bda": {Part3: "bda", Scope: 'I', LanguageType: 'L', Name: "Bayot"},
"bdb": {Part3: "bdb", Scope: 'I', LanguageType: 'L', Name: "Basap"},
"bdc": {Part3: "bdc", Scope: 'I', LanguageType: 'L', Name: "Emberá-Baudó"},
"bdd": {Part3: "bdd", Scope: 'I', LanguageType: 'L', Name: "Bunama"},
"bde": {Part3: "bde", Scope: 'I', LanguageType: 'L', Name: "Bade"},
"bdf": {Part3: "bdf", Scope: 'I', LanguageType: 'L', Name: "Biage"},
"bdg": {Part3: "bdg", Scope: 'I', LanguageType: 'L', Name: "Bonggi"},
"bdh": {Part3: "bdh", Scope: 'I', LanguageType: 'L', Name: "Baka (South Sudan)"},
"bdi": {Part3: "bdi", Scope: 'I', LanguageType: 'L', Name: "Burun"},
"bdj": {Part3: "bdj", Scope: 'I', LanguageType: 'L', Name: "Bai (South Sudan)"},
"bdk": {Part3: "bdk", Scope: 'I', LanguageType: 'L', Name: "Budukh"},
"bdl": {Part3: "bdl", Scope: 'I', LanguageType: 'L', Name: "Indonesian Bajau"},
"bdm": {Part3: "bdm", Scope: 'I', LanguageType: 'L', Name: "Buduma"},
"bdn": {Part3: "bdn", Scope: 'I', LanguageType: 'L', Name: "Baldemu"},
"bdo": {Part3: "bdo", Scope: 'I', LanguageType: 'L', Name: "Morom"},
"bdp": {Part3: "bdp", Scope: 'I', LanguageType: 'L', Name: "Bende"},
"bdq": {Part3: "bdq", Scope: 'I', LanguageType: 'L', Name: "Bahnar"},
"bdr": {Part3: "bdr", Scope: 'I', LanguageType: 'L', Name: "West Coast Bajau"},
"bds": {Part3: "bds", Scope: 'I', LanguageType: 'L', Name: "Burunge"},
"bdt": {Part3: "bdt", Scope: 'I', LanguageType: 'L', Name: "Bokoto"},
"bdu": {Part3: "bdu", Scope: 'I', LanguageType: 'L', Name: "Oroko"},
"bdv": {Part3: "bdv", Scope: 'I', LanguageType: 'L', Name: "Bodo Parja"},
"bdw": {Part3: "bdw", Scope: 'I', LanguageType: 'L', Name: "Baham"},
"bdx": {Part3: "bdx", Scope: 'I', LanguageType: 'L', Name: "Budong-Budong"},
"bdy": {Part3: "bdy", Scope: 'I', LanguageType: 'L', Name: "Bandjalang"},
"bdz": {Part3: "bdz", Scope: 'I', LanguageType: 'L', Name: "Badeshi"},
"bea": {Part3: "bea", Scope: 'I', LanguageType: 'L', Name: "Beaver"},
"beb": {Part3: "beb", Scope: 'I', LanguageType: 'L', Name: "Bebele"},
"bec": {Part3: "bec", Scope: 'I', LanguageType: 'L', Name: "Iceve-Maci"},
"bed": {Part3: "bed", Scope: 'I', LanguageType: 'L', Name: "Bedoanas"},
"bee": {Part3: "bee", Scope: 'I', LanguageType: 'L', Name: "Byangsi"},
"bef": {Part3: "bef", Scope: 'I', LanguageType: 'L', Name: "Benabena"},
"beg": {Part3: "beg", Scope: 'I', LanguageType: 'L', Name: "Belait"},
"beh": {Part3: "beh", Scope: 'I', LanguageType: 'L', Name: "Biali"},
"bei": {Part3: "bei", Scope: 'I', LanguageType: 'L', Name: "Bekati'"},
"bej": {Part3: "bej", Part2B: "bej", Part2T: "bej", Scope: 'I', LanguageType: 'L', Name: "Beja"},
"bek": {Part3: "bek", Scope: 'I', LanguageType: 'L', Name: "Bebeli"},
"bel": {Part3: "bel", Part2B: "bel", Part2T: "bel", Part1: "be", Scope: 'I', LanguageType: 'L', Name: "Belarusian"},
"bem": {Part3: "bem", Part2B: "bem", Part2T: "bem", Scope: 'I', LanguageType: 'L', Name: "Bemba (Zambia)"},
"ben": {Part3: "ben", Part2B: "ben", Part2T: "ben", Part1: "bn", Scope: 'I', LanguageType: 'L', Name: "Bengali"},
"beo": {Part3: "beo", Scope: 'I', LanguageType: 'L', Name: "Beami"},
"bep": {Part3: "bep", Scope: 'I', LanguageType: 'L', Name: "Besoa"},
"beq": {Part3: "beq", Scope: 'I', LanguageType: 'L', Name: "Beembe"},
"bes": {Part3: "bes", Scope: 'I', LanguageType: 'L', Name: "Besme"},
"bet": {Part3: "bet", Scope: 'I', LanguageType: 'L', Name: "Guiberoua Béte"},
"beu": {Part3: "beu", Scope: 'I', LanguageType: 'L', Name: "Blagar"},
"bev": {Part3: "bev", Scope: 'I', LanguageType: 'L', Name: "Daloa Bété"},
"bew": {Part3: "bew", Scope: 'I', LanguageType: 'L', Name: "Betawi"},
"bex": {Part3: "bex", Scope: 'I', LanguageType: 'L', Name: "Jur Modo"},
"bey": {Part3: "bey", Scope: 'I', LanguageType: 'L', Name: "Beli (Papua New Guinea)"},
"bez": {Part3: "bez", Scope: 'I', LanguageType: 'L', Name: "Bena (Tanzania)"},
"bfa": {Part3: "bfa", Scope: 'I', LanguageType: 'L', Name: "Bari"},
"bfb": {Part3: "bfb", Scope: 'I', LanguageType: 'L', Name: "Pauri Bareli"},
"bfc": {Part3: "bfc", Scope: 'I', LanguageType: 'L', Name: "Panyi Bai"},
"bfd": {Part3: "bfd", Scope: 'I', LanguageType: 'L', Name: "Bafut"},
"bfe": {Part3: "bfe", Scope: 'I', LanguageType: 'L', Name: "Betaf"},
"bff": {Part3: "bff", Scope: 'I', LanguageType: 'L', Name: "Bofi"},
"bfg": {Part3: "bfg", Scope: 'I', LanguageType: 'L', Name: "Busang Kayan"},
"bfh": {Part3: "bfh", Scope: 'I', LanguageType: 'L', Name: "Blafe"},
"bfi": {Part3: "bfi", Scope: 'I', LanguageType: 'L', Name: "British Sign Language"},
"bfj": {Part3: "bfj", Scope: 'I', LanguageType: 'L', Name: "Bafanji"},
"bfk": {Part3: "bfk", Scope: 'I', LanguageType: 'L', Name: "Ban Khor Sign Language"},
"bfl": {Part3: "bfl", Scope: 'I', LanguageType: 'L', Name: "Banda-Ndélé"},
"bfm": {Part3: "bfm", Scope: 'I', LanguageType: 'L', Name: "Mmen"},
"bfn": {Part3: "bfn", Scope: 'I', LanguageType: 'L', Name: "Bunak"},
"bfo": {Part3: "bfo", Scope: 'I', LanguageType: 'L', Name: "Malba Birifor"},
"bfp": {Part3: "bfp", Scope: 'I', LanguageType: 'L', Name: "Beba"},
"bfq": {Part3: "bfq", Scope: 'I', LanguageType: 'L', Name: "Badaga"},
"bfr": {Part3: "bfr", Scope: 'I', LanguageType: 'L', Name: "Bazigar"},
"bfs": {Part3: "bfs", Scope: 'I', LanguageType: 'L', Name: "Southern Bai"},
"bft": {Part3: "bft", Scope: 'I', LanguageType: 'L', Name: "Balti"},
"bfu": {Part3: "bfu", Scope: 'I', LanguageType: 'L', Name: "Gahri"},
"bfw": {Part3: "bfw", Scope: 'I', LanguageType: 'L', Name: "Bondo"},
"bfx": {Part3: "bfx", Scope: 'I', LanguageType: 'L', Name: "Bantayanon"},
"bfy": {Part3: "bfy", Scope: 'I', LanguageType: 'L', Name: "Bagheli"},
"bfz": {Part3: "bfz", Scope: 'I', LanguageType: 'L', Name: "Mahasu Pahari"},
"bga": {Part3: "bga", Scope: 'I', LanguageType: 'L', Name: "Gwamhi-Wuri"},
"bgb": {Part3: "bgb", Scope: 'I', LanguageType: 'L', Name: "Bobongko"},
"bgc": {Part3: "bgc", Scope: 'I', LanguageType: 'L', Name: "Haryanvi"},
"bgd": {Part3: "bgd", Scope: 'I', LanguageType: 'L', Name: "Rathwi Bareli"},
"bge": {Part3: "bge", Scope: 'I', LanguageType: 'L', Name: "Bauria"},
"bgf": {Part3: "bgf", Scope: 'I', LanguageType: 'L', Name: "Bangandu"},
"bgg": {Part3: "bgg", Scope: 'I', LanguageType: 'L', Name: "Bugun"},
"bgi": {Part3: "bgi", Scope: 'I', LanguageType: 'L', Name: "Giangan"},
"bgj": {Part3: "bgj", Scope: 'I', LanguageType: 'L', Name: "Bangolan"},
"bgk": {Part3: "bgk", Scope: 'I', LanguageType: 'L', Name: "Bit"},
"bgl": {Part3: "bgl", Scope: 'I', LanguageType: 'L', Name: "Bo (Laos)"},
"bgn": {Part3: "bgn", Scope: 'I', LanguageType: 'L', Name: "Western Balochi"},
"bgo": {Part3: "bgo", Scope: 'I', LanguageType: 'L', Name: "Baga Koga"},
"bgp": {Part3: "bgp", Scope: 'I', LanguageType: 'L', Name: "Eastern Balochi"},
"bgq": {Part3: "bgq", Scope: 'I', LanguageType: 'L', Name: "Bagri"},
"bgr": {Part3: "bgr", Scope: 'I', LanguageType: 'L', Name: "Bawm Chin"},
"bgs": {Part3: "bgs", Scope: 'I', LanguageType: 'L', Name: "Tagabawa"},
"bgt": {Part3: "bgt", Scope: 'I', LanguageType: 'L', Name: "Bughotu"},
"bgu": {Part3: "bgu", Scope: 'I', LanguageType: 'L', Name: "Mbongno"},
"bgv": {Part3: "bgv", Scope: 'I', LanguageType: 'L', Name: "Warkay-Bipim"},
"bgw": {Part3: "bgw", Scope: 'I', LanguageType: 'L', Name: "Bhatri"},
"bgx": {Part3: "bgx", Scope: 'I', LanguageType: 'L', Name: "Balkan Gagauz Turkish"},
"bgy": {Part3: "bgy", Scope: 'I', LanguageType: 'L', Name: "Benggoi"},
"bgz": {Part3: "bgz", Scope: 'I', LanguageType: 'L', Name: "Banggai"},
"bha": {Part3: "bha", Scope: 'I', LanguageType: 'L', Name: "Bharia"},
"bhb": {Part3: "bhb", Scope: 'I', LanguageType: 'L', Name: "Bhili"},
"bhc": {Part3: "bhc", Scope: 'I', LanguageType: 'L', Name: "Biga"},
"bhd": {Part3: "bhd", Scope: 'I', LanguageType: 'L', Name: "Bhadrawahi"},
"bhe": {Part3: "bhe", Scope: 'I', LanguageType: 'L', Name: "Bhaya"},
"bhf": {Part3: "bhf", Scope: 'I', LanguageType: 'L', Name: "Odiai"},
"bhg": {Part3: "bhg", Scope: 'I', LanguageType: 'L', Name: "Binandere"},
"bhh": {Part3: "bhh", Scope: 'I', LanguageType: 'L', Name: "Bukharic"},
"bhi": {Part3: "bhi", Scope: 'I', LanguageType: 'L', Name: "Bhilali"},
"bhj": {Part3: "bhj", Scope: 'I', LanguageType: 'L', Name: "Bahing"},
"bhl": {Part3: "bhl", Scope: 'I', LanguageType: 'L', Name: "Bimin"},
"bhm": {Part3: "bhm", Scope: 'I', LanguageType: 'L', Name: "Bathari"},
"bhn": {Part3: "bhn", Scope: 'I', LanguageType: 'L', Name: "Bohtan Neo-Aramaic"},
"bho": {Part3: "bho", Part2B: "bho", Part2T: "bho", Scope: 'I', LanguageType: 'L', Name: "Bhojpuri"},
"bhp": {Part3: "bhp", Scope: 'I', LanguageType: 'L', Name: "Bima"},
"bhq": {Part3: "bhq", Scope: 'I', LanguageType: 'L', Name: "Tukang Besi South"},
"bhr": {Part3: "bhr", Scope: 'I', LanguageType: 'L', Name: "Bara Malagasy"},
"bhs": {Part3: "bhs", Scope: 'I', LanguageType: 'L', Name: "Buwal"},
"bht": {Part3: "bht", Scope: 'I', LanguageType: 'L', Name: "Bhattiyali"},
"bhu": {Part3: "bhu", Scope: 'I', LanguageType: 'L', Name: "Bhunjia"},
"bhv": {Part3: "bhv", Scope: 'I', LanguageType: 'L', Name: "Bahau"},
"bhw": {Part3: "bhw", Scope: 'I', LanguageType: 'L', Name: "Biak"},
"bhx": {Part3: "bhx", Scope: 'I', LanguageType: 'L', Name: "Bhalay"},
"bhy": {Part3: "bhy", Scope: 'I', LanguageType: 'L', Name: "Bhele"},
"bhz": {Part3: "bhz", Scope: 'I', LanguageType: 'L', Name: "Bada (Indonesia)"},
"bia": {Part3: "bia", Scope: 'I', LanguageType: 'L', Name: "Badimaya"},
"bib": {Part3: "bib", Scope: 'I', LanguageType: 'L', Name: "Bissa"},
"bid": {Part3: "bid", Scope: 'I', LanguageType: 'L', Name: "Bidiyo"},
"bie": {Part3: "bie", Scope: 'I', LanguageType: 'L', Name: "Bepour"},
"bif": {Part3: "bif", Scope: 'I', LanguageType: 'L', Name: "Biafada"},
"big": {Part3: "big", Scope: 'I', LanguageType: 'L', Name: "Biangai"},
"bik": {Part3: "bik", Part2B: "bik", Part2T: "bik", Scope: 'M', LanguageType: 'L', Name: "Bikol"},
"bil": {Part3: "bil", Scope: 'I', LanguageType: 'L', Name: "Bile"},
"bim": {Part3: "bim", Scope: 'I', LanguageType: 'L', Name: "Bimoba"},
"bin": {Part3: "bin", Part2B: "bin", Part2T: "bin", Scope: 'I', LanguageType: 'L', Name: "Bini"},
"bio": {Part3: "bio", Scope: 'I', LanguageType: 'L', Name: "Nai"},
"bip": {Part3: "bip", Scope: 'I', LanguageType: 'L', Name: "Bila"},
"biq": {Part3: "biq", Scope: 'I', LanguageType: 'L', Name: "Bipi"},
"bir": {Part3: "bir", Scope: 'I', LanguageType: 'L', Name: "Bisorio"},
"bis": {Part3: "bis", Part2B: "bis", Part2T: "bis", Part1: "bi", Scope: 'I', LanguageType: 'L', Name: "Bislama"},
"bit": {Part3: "bit", Scope: 'I', LanguageType: 'L', Name: "Berinomo"},
"biu": {Part3: "biu", Scope: 'I', LanguageType: 'L', Name: "Biete"},
"biv": {Part3: "biv", Scope: 'I', LanguageType: 'L', Name: "Southern Birifor"},
"biw": {Part3: "biw", Scope: 'I', LanguageType: 'L', Name: "Kol (Cameroon)"},
"bix": {Part3: "bix", Scope: 'I', LanguageType: 'L', Name: "Bijori"},
"biy": {Part3: "biy", Scope: 'I', LanguageType: 'L', Name: "Birhor"},
"biz": {Part3: "biz", Scope: 'I', LanguageType: 'L', Name: "Baloi"},
"bja": {Part3: "bja", Scope: 'I', LanguageType: 'L', Name: "Budza"},
"bjb": {Part3: "bjb", Scope: 'I', LanguageType: 'E', Name: "Banggarla"},
"bjc": {Part3: "bjc", Scope: 'I', LanguageType: 'L', Name: "Bariji"},
"bje": {Part3: "bje", Scope: 'I', LanguageType: 'L', Name: "Biao-Jiao Mien"},
"bjf": {Part3: "bjf", Scope: 'I', LanguageType: 'L', Name: "Barzani Jewish Neo-Aramaic"},
"bjg": {Part3: "bjg", Scope: 'I', LanguageType: 'L', Name: "Bidyogo"},
"bjh": {Part3: "bjh", Scope: 'I', LanguageType: 'L', Name: "Bahinemo"},
"bji": {Part3: "bji", Scope: 'I', LanguageType: 'L', Name: "Burji"},
"bjj": {Part3: "bjj", Scope: 'I', LanguageType: 'L', Name: "Kanauji"},
"bjk": {Part3: "bjk", Scope: 'I', LanguageType: 'L', Name: "Barok"},
"bjl": {Part3: "bjl", Scope: 'I', LanguageType: 'L', Name: "Bulu (Papua New Guinea)"},
"bjm": {Part3: "bjm", Scope: 'I', LanguageType: 'L', Name: "Bajelani"},
"bjn": {Part3: "bjn", Scope: 'I', LanguageType: 'L', Name: "Banjar"},
"bjo": {Part3: "bjo", Scope: 'I', LanguageType: 'L', Name: "Mid-Southern Banda"},
"bjp": {Part3: "bjp", Scope: 'I', LanguageType: 'L', Name: "Fanamaket"},
"bjr": {Part3: "bjr", Scope: 'I', LanguageType: 'L', Name: "Binumarien"},
"bjs": {Part3: "bjs", Scope: 'I', LanguageType: 'L', Name: "Bajan"},
"bjt": {Part3: "bjt", Scope: 'I', LanguageType: 'L', Name: "Balanta-Ganja"},
"bju": {Part3: "bju", Scope: 'I', LanguageType: 'L', Name: "Busuu"},
"bjv": {Part3: "bjv", Scope: 'I', LanguageType: 'L', Name: "Bedjond"},
"bjw": {Part3: "bjw", Scope: 'I', LanguageType: 'L', Name: "Bakwé"},
"bjx": {Part3: "bjx", Scope: 'I', LanguageType: 'L', Name: "Banao Itneg"},
"bjy": {Part3: "bjy", Scope: 'I', LanguageType: 'E', Name: "Bayali"},
"bjz": {Part3: "bjz", Scope: 'I', LanguageType: 'L', Name: "Baruga"},
"bka": {Part3: "bka", Scope: 'I', LanguageType: 'L', Name: "Kyak"},
"bkc": {Part3: "bkc", Scope: 'I', LanguageType: 'L', Name: "Baka (Cameroon)"},
"bkd": {Part3: "bkd", Scope: 'I', LanguageType: 'L', Name: "Binukid"},
"bkf": {Part3: "bkf", Scope: 'I', LanguageType: 'L', Name: "Beeke"},
"bkg": {Part3: "bkg", Scope: 'I', LanguageType: 'L', Name: "Buraka"},
"bkh": {Part3: "bkh", Scope: 'I', LanguageType: 'L', Name: "Bakoko"},
"bki": {Part3: "bki", Scope: 'I', LanguageType: 'L', Name: "Baki"},
"bkj": {Part3: "bkj", Scope: 'I', LanguageType: 'L', Name: "Pande"},
"bkk": {Part3: "bkk", Scope: 'I', LanguageType: 'L', Name: "Brokskat"},
"bkl": {Part3: "bkl", Scope: 'I', LanguageType: 'L', Name: "Berik"},
"bkm": {Part3: "bkm", Scope: 'I', LanguageType: 'L', Name: "Kom (Cameroon)"},
"bkn": {Part3: "bkn", Scope: 'I', LanguageType: 'L', Name: "Bukitan"},
"bko": {Part3: "bko", Scope: 'I', LanguageType: 'L', Name: "Kwa'"},
"bkp": {Part3: "bkp", Scope: 'I', LanguageType: 'L', Name: "Boko (Democratic Republic of Congo)"},
"bkq": {Part3: "bkq", Scope: 'I', LanguageType: 'L', Name: "Bakairí"},
"bkr": {Part3: "bkr", Scope: 'I', LanguageType: 'L', Name: "Bakumpai"},
"bks": {Part3: "bks", Scope: 'I', LanguageType: 'L', Name: "Northern Sorsoganon"},
"bkt": {Part3: "bkt", Scope: 'I', LanguageType: 'L', Name: "Boloki"},
"bku": {Part3: "bku", Scope: 'I', LanguageType: 'L', Name: "Buhid"},
"bkv": {Part3: "bkv", Scope: 'I', LanguageType: 'L', Name: "Bekwarra"},
"bkw": {Part3: "bkw", Scope: 'I', LanguageType: 'L', Name: "Bekwel"},
"bkx": {Part3: "bkx", Scope: 'I', LanguageType: 'L', Name: "Baikeno"},
"bky": {Part3: "bky", Scope: 'I', LanguageType: 'L', Name: "Bokyi"},
"bkz": {Part3: "bkz", Scope: 'I', LanguageType: 'L', Name: "Bungku"},
"bla": {Part3: "bla", Part2B: "bla", Part2T: "bla", Scope: 'I', LanguageType: 'L', Name: "Siksika"},
"blb": {Part3: "blb", Scope: 'I', LanguageType: 'L', Name: "Bilua"},
"blc": {Part3: "blc", Scope: 'I', LanguageType: 'L', Name: "Bella Coola"},
"bld": {Part3: "bld", Scope: 'I', LanguageType: 'L', Name: "Bolango"},
"ble": {Part3: "ble", Scope: 'I', LanguageType: 'L', Name: "Balanta-Kentohe"},
"blf": {Part3: "blf", Scope: 'I', LanguageType: 'L', Name: "Buol"},
"blh": {Part3: "blh", Scope: 'I', LanguageType: 'L', Name: "Kuwaa"},
"bli": {Part3: "bli", Scope: 'I', LanguageType: 'L', Name: "Bolia"},
"blj": {Part3: "blj", Scope: 'I', LanguageType: 'L', Name: "Bolongan"},
"blk": {Part3: "blk", Scope: 'I', LanguageType: 'L', Name: "Pa'o Karen"},
"bll": {Part3: "bll", Scope: 'I', LanguageType: 'E', Name: "Biloxi"},
"blm": {Part3: "blm", Scope: 'I', LanguageType: 'L', Name: "Beli (South Sudan)"},
"bln": {Part3: "bln", Scope: 'I', LanguageType: 'L', Name: "Southern Catanduanes Bikol"},
"blo": {Part3: "blo", Scope: 'I', LanguageType: 'L', Name: "Anii"},
"blp": {Part3: "blp", Scope: 'I', LanguageType: 'L', Name: "Blablanga"},
"blq": {Part3: "blq", Scope: 'I', LanguageType: 'L', Name: "Baluan-Pam"},
"blr": {Part3: "blr", Scope: 'I', LanguageType: 'L', Name: "Blang"},
"bls": {Part3: "bls", Scope: 'I', LanguageType: 'L', Name: "Balaesang"},
"blt": {Part3: "blt", Scope: 'I', LanguageType: 'L', Name: "Tai Dam"},
"blv": {Part3: "blv", Scope: 'I', LanguageType: 'L', Name: "Kibala"},
"blw": {Part3: "blw", Scope: 'I', LanguageType: 'L', Name: "Balangao"},
"blx": {Part3: "blx", Scope: 'I', LanguageType: 'L', Name: "Mag-Indi Ayta"},
"bly": {Part3: "bly", Scope: 'I', LanguageType: 'L', Name: "Notre"},
"blz": {Part3: "blz", Scope: 'I', LanguageType: 'L', Name: "Balantak"},
"bma": {Part3: "bma", Scope: 'I', LanguageType: 'L', Name: "Lame"},
"bmb": {Part3: "bmb", Scope: 'I', LanguageType: 'L', Name: "Bembe"},
"bmc": {Part3: "bmc", Scope: 'I', LanguageType: 'L', Name: "Biem"},
"bmd": {Part3: "bmd", Scope: 'I', LanguageType: 'L', Name: "Baga Manduri"},
"bme": {Part3: "bme", Scope: 'I', LanguageType: 'L', Name: "Limassa"},
"bmf": {Part3: "bmf", Scope: 'I', LanguageType: 'L', Name: "Bom-Kim"},
"bmg": {Part3: "bmg", Scope: 'I', LanguageType: 'L', Name: "Bamwe"},
"bmh": {Part3: "bmh", Scope: 'I', LanguageType: 'L', Name: "Kein"},
"bmi": {Part3: "bmi", Scope: 'I', LanguageType: 'L', Name: "Bagirmi"},
"bmj": {Part3: "bmj", Scope: 'I', LanguageType: 'L', Name: "Bote-Majhi"},
"bmk": {Part3: "bmk", Scope: 'I', LanguageType: 'L', Name: "Ghayavi"},
"bml": {Part3: "bml", Scope: 'I', LanguageType: 'L', Name: "Bomboli"},
"bmm": {Part3: "bmm", Scope: 'I', LanguageType: 'L', Name: "Northern Betsimisaraka Malagasy"},
"bmn": {Part3: "bmn", Scope: 'I', LanguageType: 'E', Name: "Bina (Papua New Guinea)"},
"bmo": {Part3: "bmo", Scope: 'I', LanguageType: 'L', Name: "Bambalang"},
"bmp": {Part3: "bmp", Scope: 'I', LanguageType: 'L', Name: "Bulgebi"},
"bmq": {Part3: "bmq", Scope: 'I', LanguageType: 'L', Name: "Bomu"},
"bmr": {Part3: "bmr", Scope: 'I', LanguageType: 'L', Name: "Muinane"},
"bms": {Part3: "bms", Scope: 'I', LanguageType: 'L', Name: "Bilma Kanuri"},
"bmt": {Part3: "bmt", Scope: 'I', LanguageType: 'L', Name: "Biao Mon"},
"bmu": {Part3: "bmu", Scope: 'I', LanguageType: 'L', Name: "Somba-Siawari"},
"bmv": {Part3: "bmv", Scope: 'I', LanguageType: 'L', Name: "Bum"},
"bmw": {Part3: "bmw", Scope: 'I', LanguageType: 'L', Name: "Bomwali"},
"bmx": {Part3: "bmx", Scope: 'I', LanguageType: 'L', Name: "Baimak"},
"bmz": {Part3: "bmz", Scope: 'I', LanguageType: 'L', Name: "Baramu"},
"bna": {Part3: "bna", Scope: 'I', LanguageType: 'L', Name: "Bonerate"},
"bnb": {Part3: "bnb", Scope: 'I', LanguageType: 'L', Name: "Bookan"},
"bnc": {Part3: "bnc", Scope: 'M', LanguageType: 'L', Name: "Bontok"},
"bnd": {Part3: "bnd", Scope: 'I', LanguageType: 'L', Name: "Banda (Indonesia)"},
"bne": {Part3: "bne", Scope: 'I', LanguageType: 'L', Name: "Bintauna"},
"bnf": {Part3: "bnf", Scope: 'I', LanguageType: 'L', Name: "Masiwang"},
"bng": {Part3: "bng", Scope: 'I', LanguageType: 'L', Name: "Benga"},
"bni": {Part3: "bni", Scope: 'I', LanguageType: 'L', Name: "Bangi"},
"bnj": {Part3: "bnj", Scope: 'I', LanguageType: 'L', Name: "Eastern Tawbuid"},
"bnk": {Part3: "bnk", Scope: 'I', LanguageType: 'L', Name: "Bierebo"},
"bnl": {Part3: "bnl", Scope: 'I', LanguageType: 'L', Name: "Boon"},
"bnm": {Part3: "bnm", Scope: 'I', LanguageType: 'L', Name: "Batanga"},
"bnn": {Part3: "bnn", Scope: 'I', LanguageType: 'L', Name: "Bunun"},
"bno": {Part3: "bno", Scope: 'I', LanguageType: 'L', Name: "Bantoanon"},
"bnp": {Part3: "bnp", Scope: 'I', LanguageType: 'L', Name: "Bola"},
"bnq": {Part3: "bnq", Scope: 'I', LanguageType: 'L', Name: "Bantik"},
"bnr": {Part3: "bnr", Scope: 'I', LanguageType: 'L', Name: "Butmas-Tur"},
"bns": {Part3: "bns", Scope: 'I', LanguageType: 'L', Name: "Bundeli"},
"bnu": {Part3: "bnu", Scope: 'I', LanguageType: 'L', Name: "Bentong"},
"bnv": {Part3: "bnv", Scope: 'I', LanguageType: 'L', Name: "Bonerif"},
"bnw": {Part3: "bnw", Scope: 'I', LanguageType: 'L', Name: "Bisis"},
"bnx": {Part3: "bnx", Scope: 'I', LanguageType: 'L', Name: "Bangubangu"},
"bny": {Part3: "bny", Scope: 'I', LanguageType: 'L', Name: "Bintulu"},
"bnz": {Part3: "bnz", Scope: 'I', LanguageType: 'L', Name: "Beezen"},
"boa": {Part3: "boa", Scope: 'I', LanguageType: 'L', Name: "Bora"},
"bob": {Part3: "bob", Scope: 'I', LanguageType: 'L', Name: "Aweer"},
"bod": {Part3: "bod", Part2B: "tib", Part2T: "bod", Part1: "bo", Scope: 'I', LanguageType: 'L', Name: "Tibetan"},
"boe": {Part3: "boe", Scope: 'I', LanguageType: 'L', Name: "Mundabli"},
"bof": {Part3: "bof", Scope: 'I', LanguageType: 'L', Name: "Bolon"},
"bog": {Part3: "bog", Scope: 'I', LanguageType: 'L', Name: "Bamako Sign Language"},
"boh": {Part3: "boh", Scope: 'I', LanguageType: 'L', Name: "Boma"},
"boi": {Part3: "boi", Scope: 'I', LanguageType: 'E', Name: "Barbareño"},
"boj": {Part3: "boj", Scope: 'I', LanguageType: 'L', Name: "Anjam"},
"bok": {Part3: "bok", Scope: 'I', LanguageType: 'L', Name: "Bonjo"},
"bol": {Part3: "bol", Scope: 'I', LanguageType: 'L', Name: "Bole"},
"bom": {Part3: "bom", Scope: 'I', LanguageType: 'L', Name: "Berom"},
"bon": {Part3: "bon", Scope: 'I', LanguageType: 'L', Name: "Bine"},
"boo": {Part3: "boo", Scope: 'I', LanguageType: 'L', Name: "Tiemacèwè Bozo"},
"bop": {Part3: "bop", Scope: 'I', LanguageType: 'L', Name: "Bonkiman"},
"boq": {Part3: "boq", Scope: 'I', LanguageType: 'L', Name: "Bogaya"},
"bor": {Part3: "bor", Scope: 'I', LanguageType: 'L', Name: "Borôro"},
"bos": {Part3: "bos", Part2B: "bos", Part2T: "bos", Part1: "bs", Scope: 'I', LanguageType: 'L', Name: "Bosnian"},
"bot": {Part3: "bot", Scope: 'I', LanguageType: 'L', Name: "Bongo"},
"bou": {Part3: "bou", Scope: 'I', LanguageType: 'L', Name: "Bondei"},
"bov": {Part3: "bov", Scope: 'I', LanguageType: 'L', Name: "Tuwuli"},
"bow": {Part3: "bow", Scope: 'I', LanguageType: 'E', Name: "Rema"},
"box": {Part3: "box", Scope: 'I', LanguageType: 'L', Name: "Buamu"},
"boy": {Part3: "boy", Scope: 'I', LanguageType: 'L', Name: "Bodo (Central African Republic)"},
"boz": {Part3: "boz", Scope: 'I', LanguageType: 'L', Name: "Tiéyaxo Bozo"},
"bpa": {Part3: "bpa", Scope: 'I', LanguageType: 'L', Name: "Daakaka"},
"bpd": {Part3: "bpd", Scope: 'I', LanguageType: 'L', Name: "Banda-Banda"},
"bpe": {Part3: "bpe", Scope: 'I', LanguageType: 'L', Name: "Bauni"},
"bpg": {Part3: "bpg", Scope: 'I', LanguageType: 'L', Name: "Bonggo"},
"bph": {Part3: "bph", Scope: 'I', LanguageType: 'L', Name: "Botlikh"},
"bpi": {Part3: "bpi", Scope: 'I', LanguageType: 'L', Name: "Bagupi"},
"bpj": {Part3: "bpj", Scope: 'I', LanguageType: 'L', Name: "Binji"},
"bpk": {Part3: "bpk", Scope: 'I', LanguageType: 'L', Name: "Orowe"},
"bpl": {Part3: "bpl", Scope: 'I', LanguageType: 'L', Name: "Broome Pearling Lugger Pidgin"},
"bpm": {Part3: "bpm", Scope: 'I', LanguageType: 'L', Name: "Biyom"},
"bpn": {Part3: "bpn", Scope: 'I', LanguageType: 'L', Name: "Dzao Min"},
"bpo": {Part3: "bpo", Scope: 'I', LanguageType: 'L', Name: "Anasi"},
"bpp": {Part3: "bpp", Scope: 'I', LanguageType: 'L', Name: "Kaure"},
"bpq": {Part3: "bpq", Scope: 'I', LanguageType: 'L', Name: "Banda Malay"},
"bpr": {Part3: "bpr", Scope: 'I', LanguageType: 'L', Name: "Koronadal Blaan"},
"bps": {Part3: "bps", Scope: 'I', LanguageType: 'L', Name: "Sarangani Blaan"},
"bpt": {Part3: "bpt", Scope: 'I', LanguageType: 'E', Name: "Barrow Point"},
"bpu": {Part3: "bpu", Scope: 'I', LanguageType: 'L', Name: "Bongu"},
"bpv": {Part3: "bpv", Scope: 'I', LanguageType: 'L', Name: "Bian Marind"},
"bpw": {Part3: "bpw", Scope: 'I', LanguageType: 'L', Name: "Bo (Papua New Guinea)"},
"bpx": {Part3: "bpx", Scope: 'I', LanguageType: 'L', Name: "Palya Bareli"},
"bpy": {Part3: "bpy", Scope: 'I', LanguageType: 'L', Name: "Bishnupriya"},
"bpz": {Part3: "bpz", Scope: 'I', LanguageType: 'L', Name: "Bilba"},
"bqa": {Part3: "bqa", Scope: 'I', LanguageType: 'L', Name: "Tchumbuli"},
"bqb": {Part3: "bqb", Scope: 'I', LanguageType: 'L', Name: "Bagusa"},
"bqc": {Part3: "bqc", Scope: 'I', LanguageType: 'L', Name: "Boko (Benin)"},
"bqd": {Part3: "bqd", Scope: 'I', LanguageType: 'L', Name: "Bung"},
"bqf": {Part3: "bqf", Scope: 'I', LanguageType: 'E', Name: "Baga Kaloum"},
"bqg": {Part3: "bqg", Scope: 'I', LanguageType: 'L', Name: "Bago-Kusuntu"},
"bqh": {Part3: "bqh", Scope: 'I', LanguageType: 'L', Name: "Baima"},
"bqi": {Part3: "bqi", Scope: 'I', LanguageType: 'L', Name: "Bakhtiari"},
"bqj": {Part3: "bqj", Scope: 'I', LanguageType: 'L', Name: "Bandial"},
"bqk": {Part3: "bqk", Scope: 'I', LanguageType: 'L', Name: "Banda-Mbrès"},
"bql": {Part3: "bql", Scope: 'I', LanguageType: 'L', Name: "Bilakura"},
"bqm": {Part3: "bqm", Scope: 'I', LanguageType: 'L', Name: "Wumboko"},
"bqn": {Part3: "bqn", Scope: 'I', LanguageType: 'L', Name: "Bulgarian Sign Language"},
"bqo": {Part3: "bqo", Scope: 'I', LanguageType: 'L', Name: "Balo"},
"bqp": {Part3: "bqp", Scope: 'I', LanguageType: 'L', Name: "Busa"},
"bqq": {Part3: "bqq", Scope: 'I', LanguageType: 'L', Name: "Biritai"},
"bqr": {Part3: "bqr", Scope: 'I', LanguageType: 'L', Name: "Burusu"},
"bqs": {Part3: "bqs", Scope: 'I', LanguageType: 'L', Name: "Bosngun"},
"bqt": {Part3: "bqt", Scope: 'I', LanguageType: 'L', Name: "Bamukumbit"},
"bqu": {Part3: "bqu", Scope: 'I', LanguageType: 'L', Name: "Boguru"},
"bqv": {Part3: "bqv", Scope: 'I', LanguageType: 'L', Name: "Koro Wachi"},
"bqw": {Part3: "bqw", Scope: 'I', LanguageType: 'L', Name: "Buru (Nigeria)"},
"bqx": {Part3: "bqx", Scope: 'I', LanguageType: 'L', Name: "Baangi"},
"bqy": {Part3: "bqy", Scope: 'I', LanguageType: 'L', Name: "Bengkala Sign Language"},
"bqz": {Part3: "bqz", Scope: 'I', LanguageType: 'L', Name: "Bakaka"},
"bra": {Part3: "bra", Part2B: "bra", Part2T: "bra", Scope: 'I', LanguageType: 'L', Name: "Braj"},
"brb": {Part3: "brb", Scope: 'I', LanguageType: 'L', Name: "Lave"},
"brc": {Part3: "brc", Scope: 'I', LanguageType: 'E', Name: "Berbice Creole Dutch"},
"brd": {Part3: "brd", Scope: 'I', LanguageType: 'L', Name: "Baraamu"},
"bre": {Part3: "bre", Part2B: "bre", Part2T: "bre", Part1: "br", Scope: 'I', LanguageType: 'L', Name: "Breton"},
"brf": {Part3: "brf", Scope: 'I', LanguageType: 'L', Name: "Bira"},
"brg": {Part3: "brg", Scope: 'I', LanguageType: 'L', Name: "Baure"},
"brh": {Part3: "brh", Scope: 'I', LanguageType: 'L', Name: "Brahui"},
"bri": {Part3: "bri", Scope: 'I', LanguageType: 'L', Name: "Mokpwe"},
"brj": {Part3: "brj", Scope: 'I', LanguageType: 'L', Name: "Bieria"},
"brk": {Part3: "brk", Scope: 'I', LanguageType: 'E', Name: "Birked"},
"brl": {Part3: "brl", Scope: 'I', LanguageType: 'L', Name: "Birwa"},
"brm": {Part3: "brm", Scope: 'I', LanguageType: 'L', Name: "Barambu"},
"brn": {Part3: "brn", Scope: 'I', LanguageType: 'L', Name: "Boruca"},
"bro": {Part3: "bro", Scope: 'I', LanguageType: 'L', Name: "Brokkat"},
"brp": {Part3: "brp", Scope: 'I', LanguageType: 'L', Name: "Barapasi"},
"brq": {Part3: "brq", Scope: 'I', LanguageType: 'L', Name: "Breri"},
"brr": {Part3: "brr", Scope: 'I', LanguageType: 'L', Name: "Birao"},
"brs": {Part3: "brs", Scope: 'I', LanguageType: 'L', Name: "Baras"},
"brt": {Part3: "brt", Scope: 'I', LanguageType: 'L', Name: "Bitare"},
"bru": {Part3: "bru", Scope: 'I', LanguageType: 'L', Name: "Eastern Bru"},
"brv": {Part3: "brv", Scope: 'I', LanguageType: 'L', Name: "Western Bru"},
"brw": {Part3: "brw", Scope: 'I', LanguageType: 'L', Name: "Bellari"},
"brx": {Part3: "brx", Scope: 'I', LanguageType: 'L', Name: "Bodo (India)"},
"bry": {Part3: "bry", Scope: 'I', LanguageType: 'L', Name: "Burui"},
"brz": {Part3: "brz", Scope: 'I', LanguageType: 'L', Name: "Bilbil"},
"bsa": {Part3: "bsa", Scope: 'I', LanguageType: 'L', Name: "Abinomn"},
"bsb": {Part3: "bsb", Scope: 'I', LanguageType: 'L', Name: "Brunei Bisaya"},
"bsc": {Part3: "bsc", Scope: 'I', LanguageType: 'L', Name: "Bassari"},
"bse": {Part3: "bse", Scope: 'I', LanguageType: 'L', Name: "Wushi"},
"bsf": {Part3: "bsf", Scope: 'I', LanguageType: 'L', Name: "Bauchi"},
"bsg": {Part3: "bsg", Scope: 'I', LanguageType: 'L', Name: "Bashkardi"},
"bsh": {Part3: "bsh", Scope: 'I', LanguageType: 'L', Name: "Kati"},
"bsi": {Part3: "bsi", Scope: 'I', LanguageType: 'L', Name: "Bassossi"},
"bsj": {Part3: "bsj", Scope: 'I', LanguageType: 'L', Name: "Bangwinji"},
"bsk": {Part3: "bsk", Scope: 'I', LanguageType: 'L', Name: "Burushaski"},
"bsl": {Part3: "bsl", Scope: 'I', LanguageType: 'E', Name: "Basa-Gumna"},
"bsm": {Part3: "bsm", Scope: 'I', LanguageType: 'L', Name: "Busami"},
"bsn": {Part3: "bsn", Scope: 'I', LanguageType: 'L', Name: "Barasana-Eduria"},
"bso": {Part3: "bso", Scope: 'I', LanguageType: 'L', Name: "Buso"},
"bsp": {Part3: "bsp", Scope: 'I', LanguageType: 'L', Name: "Baga Sitemu"},
"bsq": {Part3: "bsq", Scope: 'I', LanguageType: 'L', Name: "Bassa"},
"bsr": {Part3: "bsr", Scope: 'I', LanguageType: 'L', Name: "Bassa-Kontagora"},
"bss": {Part3: "bss", Scope: 'I', LanguageType: 'L', Name: "Akoose"},
"bst": {Part3: "bst", Scope: 'I', LanguageType: 'L', Name: "Basketo"},
"bsu": {Part3: "bsu", Scope: 'I', LanguageType: 'L', Name: "Bahonsuai"},
"bsv": {Part3: "bsv", Scope: 'I', LanguageType: 'E', Name: "Baga Sobané"},
"bsw": {Part3: "bsw", Scope: 'I', LanguageType: 'L', Name: "Baiso"},
"bsx": {Part3: "bsx", Scope: 'I', LanguageType: 'L', Name: "Yangkam"},
"bsy": {Part3: "bsy", Scope: 'I', LanguageType: 'L', Name: "Sabah Bisaya"},
"bta": {Part3: "bta", Scope: 'I', LanguageType: 'L', Name: "Bata"},
"btc": {Part3: "btc", Scope: 'I', LanguageType: 'L', Name: "Bati (Cameroon)"},
"btd": {Part3: "btd", Scope: 'I', LanguageType: 'L', Name: "Batak Dairi"},
"bte": {Part3: "bte", Scope: 'I', LanguageType: 'E', Name: "Gamo-Ningi"},
"btf": {Part3: "btf", Scope: 'I', LanguageType: 'L', Name: "Birgit"},
"btg": {Part3: "btg", Scope: 'I', LanguageType: 'L', Name: "Gagnoa Bété"},
"bth": {Part3: "bth", Scope: 'I', LanguageType: 'L', Name: "Biatah Bidayuh"},
"bti": {Part3: "bti", Scope: 'I', LanguageType: 'L', Name: "Burate"},
"btj": {Part3: "btj", Scope: 'I', LanguageType: 'L', Name: "Bacanese Malay"},
"btm": {Part3: "btm", Scope: 'I', LanguageType: 'L', Name: "Batak Mandailing"},
"btn": {Part3: "btn", Scope: 'I', LanguageType: 'L', Name: "Ratagnon"},
"bto": {Part3: "bto", Scope: 'I', LanguageType: 'L', Name: "Rinconada Bikol"},
"btp": {Part3: "btp", Scope: 'I', LanguageType: 'L', Name: "Budibud"},
"btq": {Part3: "btq", Scope: 'I', LanguageType: 'L', Name: "Batek"},
"btr": {Part3: "btr", Scope: 'I', LanguageType: 'L', Name: "Baetora"},
"bts": {Part3: "bts", Scope: 'I', LanguageType: 'L', Name: "Batak Simalungun"},
"btt": {Part3: "btt", Scope: 'I', LanguageType: 'L', Name: "Bete-Bendi"},
"btu": {Part3: "btu", Scope: 'I', LanguageType: 'L', Name: "Batu"},
"btv": {Part3: "btv", Scope: 'I', LanguageType: 'L', Name: "Bateri"},
"btw": {Part3: "btw", Scope: 'I', LanguageType: 'L', Name: "Butuanon"},
"btx": {Part3: "btx", Scope: 'I', LanguageType: 'L', Name: "Batak Karo"},
"bty": {Part3: "bty", Scope: 'I', LanguageType: 'L', Name: "Bobot"},
"btz": {Part3: "btz", Scope: 'I', LanguageType: 'L', Name: "Batak Alas-Kluet"},
"bua": {Part3: "bua", Part2B: "bua", Part2T: "bua", Scope: 'M', LanguageType: 'L', Name: "Buriat"},