az.xml
101 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
<?xml version="1.0" encoding="UTF-8" ?>
<ldml>
<identity>
<version number="$Revision: 1.77 $"/>
<generation date="$Date: 2009/06/15 03:46:25 $"/>
<language type="az"/>
</identity>
<localeDisplayNames>
<languages>
<language type="aa">afarca</language>
<language type="ab">abxazca</language>
<language type="ace">akin dili</language>
<language type="ach">akoli dili</language>
<language type="ada">adangme dili</language>
<language type="ady">aduge dili</language>
<language type="ae">avestanca</language>
<language type="af">Afrikaanca</language>
<language type="afa">afro-aziat dili</language>
<language type="afh">afrihili dili</language>
<language type="ain">aynuca</language>
<language type="ak">akanca</language>
<language type="akk">akadianca</language>
<language type="ale">aleutca</language>
<language type="alg">algonguyan dili</language>
<language type="alt">cənub altay dili</language>
<language type="am">amarikcə</language>
<language type="an">aragonca</language>
<language type="ang">qədimi ingiliscə</language>
<language type="anp">angikə dili</language>
<language type="apa">apaçi dili</language>
<language type="ar">Ərəbcə</language>
<language type="arc">aramik dili</language>
<language type="arn">araukanca</language>
<language type="arp">arapaho dili</language>
<language type="art">suni dil</language>
<language type="arw">aravakça</language>
<language type="as">as</language>
<language type="ast">asturicə</language>
<language type="ath">atapaskanca</language>
<language type="aus">avstraliyca</language>
<language type="av">avarikcə</language>
<language type="awa">avadicə</language>
<language type="ay">aymarca</language>
<language type="az">azərbaycanca</language>
<language type="ba">başkir dili</language>
<language type="bad">banda dili</language>
<language type="bai">bamilek dili</language>
<language type="bal">baluc dili</language>
<language type="ban">balincə</language>
<language type="bas">basa dili</language>
<language type="bat">baltik dili</language>
<language type="be">belarusca</language>
<language type="bej">beja dili</language>
<language type="bem">bemba dili</language>
<language type="ber">berber dili</language>
<language type="bg">bolqarca</language>
<language type="bh">biharicə</language>
<language type="bho">bxoçpuri dili</language>
<language type="bi">bislama dili</language>
<language type="bik">bikolca</language>
<language type="bin">bini dili</language>
<language type="bla">siksikə dili</language>
<language type="bm">bambara dili</language>
<language type="bn">Benqal dili</language>
<language type="bnt">bantu dili</language>
<language type="bo">tibet dili</language>
<language type="br">Bretonca</language>
<language type="bra">braj dili</language>
<language type="bs">bosniya dili</language>
<language type="btk">batak dili</language>
<language type="bua">buryat dili</language>
<language type="bug">bugin dili</language>
<language type="byn">bilincə</language>
<language type="ca">katalanca</language>
<language type="cad">kado dili</language>
<language type="cai">mərkəzi amerika indus dili</language>
<language type="car">karib dili</language>
<language type="cau">qavqaz dili</language>
<language type="cch">atsamca</language>
<language type="ce">çeçen dili</language>
<language type="ceb">kebuano dili</language>
<language type="cel">kelt dili</language>
<language type="ch">çamoro dili</language>
<language type="chb">çibçə dili</language>
<language type="chg">çağatay dili</language>
<language type="chk">çukiz dili</language>
<language type="chm">mari dili</language>
<language type="chn">çinuk ləhçəsi</language>
<language type="cho">çoktau dili</language>
<language type="chp">çipevyan dili</language>
<language type="chr">çiroki dili</language>
<language type="chy">çeyen dili</language>
<language type="cmc">çamik dili</language>
<language type="co">korsikan dili</language>
<language type="cop">kopt dili</language>
<language type="cpe">inglis kreol dili</language>
<language type="cpf">fransız kreol dili</language>
<language type="cpp">portugal kreol dili</language>
<language type="cr">kri dili</language>
<language type="crh">krım türkçə</language>
<language type="crp">kreol dili</language>
<language type="cs">çex dili</language>
<language type="csb">kaşubyan dili</language>
<language type="cu">kilsə slav dili</language>
<language type="cus">kuşitik dili</language>
<language type="cv">çuvaş dili</language>
<language type="cy">uelscə</language>
<language type="da">danimarka dili</language>
<language type="dak">dakota dili</language>
<language type="dar">darqva dili</language>
<language type="day">dayak dili</language>
<language type="de">almanca</language>
<language type="de_AT">almanca (AT)</language>
<language type="de_CH">isveç yüksək almancası</language>
<language type="del">delaver dili</language>
<language type="den">slavey</language>
<language type="dgr">doqrib dili</language>
<language type="din">dinka dili</language>
<language type="doi">doqri dili</language>
<language type="dra">dravid dili</language>
<language type="dsb">aşağı sorbca</language>
<language type="dua">duala dili</language>
<language type="dum">ortacaq hollandca</language>
<language type="dv">diveh dili</language>
<language type="dyu">dyula dili</language>
<language type="dz">dzonqa dili</language>
<language type="ee">eve dili</language>
<language type="efi">efik dili</language>
<language type="egy">qədimi misir dili</language>
<language type="eka">ekacuk dili</language>
<language type="el">yunanca</language>
<language type="elx">elamit dili</language>
<language type="en">ingiliscə</language>
<language type="en_AU">ingiliscə (AU)</language>
<language type="en_CA">ingiliscə (CA)</language>
<language type="en_GB">ingiliscə (GB)</language>
<language type="en_US">ingiliscə (ABŞ)</language>
<language type="enm">ortacaq ingiliscə</language>
<language type="eo">esperanto dili</language>
<language type="es">ispanca</language>
<language type="es_419">latın amerika ispancası</language>
<language type="es_ES">iber-ispanca</language>
<language type="et">estonca</language>
<language type="eu">bask dili</language>
<language type="ewo">evondo dili</language>
<language type="fa">farsca</language>
<language type="fan">fang dili</language>
<language type="fat">fanti dili</language>
<language type="ff">fula dili</language>
<language type="fi">fincə</language>
<language type="fil">taqaloqca</language>
<language type="fiu">fin-uğri dili</language>
<language type="fj">fiji dili</language>
<language type="fo">farer dili</language>
<language type="fon">fon dili</language>
<language type="fr">fransızca</language>
<language type="fr_CA">fransızca (CA)</language>
<language type="fr_CH">isveç fransızca</language>
<language type="frm">ortacaq fransızca</language>
<language type="fro">qədimi fransızca</language>
<language type="frr">şimal fris dili</language>
<language type="fur">friul dili</language>
<language type="fy">frisk dili</language>
<language type="ga">irlandca</language>
<language type="gaa">qa dili</language>
<language type="gay">qayo dili</language>
<language type="gba">qabaya dili</language>
<language type="gd">skot gaelik dili</language>
<language type="gem">Alman dili</language>
<language type="gez">qez dili</language>
<language type="gil">qilbert gili</language>
<language type="gl">qalisian dili</language>
<language type="gmh">ortacaq yüksək almanca</language>
<language type="gn">quaranicə</language>
<language type="goh">qədimi almanca</language>
<language type="gon">qondi dili</language>
<language type="gor">qorontalo dili</language>
<language type="got">gotça</language>
<language type="grb">qrebo dili</language>
<language type="grc">qədimi yunanca</language>
<language type="gsw">isveç almanca</language>
<language type="gu">gujarati dili</language>
<language type="gv">manks dili</language>
<language type="gwi">qviçin dili</language>
<language type="ha">Hausa dili</language>
<language type="hai">hayda dili</language>
<language type="haw">Qavayca</language>
<language type="he">ivritcə</language>
<language type="hi">hindi dili</language>
<language type="hil">hiliqaynon dili</language>
<language type="him">himaçali dili</language>
<language type="hit">hittit dili</language>
<language type="hmn">monq dili</language>
<language type="ho">hiri motu dili</language>
<language type="hr">xorvatca</language>
<language type="hsb">yuxarı sorbca</language>
<language type="ht">haiti dili</language>
<language type="hu">macarca</language>
<language type="hup">hupa dili</language>
<language type="hy">Ermənicə</language>
<language type="hz">Herer dili</language>
<language type="ia">interlingua dili</language>
<language type="iba">iban dili</language>
<language type="id">indoneziya dili</language>
<language type="ie">interlingue dili</language>
<language type="ig">iqbo dili</language>
<language type="ii">siçuan yi dili</language>
<language type="ijo">ico dili</language>
<language type="ik">inupiaq dili</language>
<language type="ilo">iloko dili</language>
<language type="inc">diqər hint dili</language>
<language type="ine">hint-yevropa dili</language>
<language type="inh">inquş dili</language>
<language type="io">ido dili</language>
<language type="ira">iranca</language>
<language type="iro">irokuay dili</language>
<language type="is">isləndcə</language>
<language type="it">italyanca</language>
<language type="iu">inuktikut dili</language>
<language type="ja">yaponca</language>
<language type="jbo">loğban dili</language>
<language type="jpr">judo-farsca</language>
<language type="jrb">jude-ərəbcə</language>
<language type="jv">yavaca dili</language>
<language type="ka">gürcü dili</language>
<language type="kaa">qara-qalpaq dili</language>
<language type="kab">kabule dili</language>
<language type="kac">kaçinca</language>
<language type="kaj">ju dili</language>
<language type="kam">kamba dili</language>
<language type="kar">karen dili</language>
<language type="kaw">kavi dili</language>
<language type="kbd">kabardca</language>
<language type="kcg">tiyap dili</language>
<language type="kfo">koro dili</language>
<language type="kg">konqo dili</language>
<language type="kha">xazi dili</language>
<language type="khi">xoyzan dili</language>
<language type="kho">xotan dili</language>
<language type="ki">kikuyu dili</language>
<language type="kj">kuanyama dili</language>
<language type="kk">qazax dili</language>
<language type="kl">kalalisut dili</language>
<language type="km">kambodiya dili</language>
<language type="kmb">kimbundu dili</language>
<language type="kn">kannada dili</language>
<language type="ko">koreya dili</language>
<language type="kok">konkan dili</language>
<language type="kos">kosreyan dili</language>
<language type="kpe">kpelle dili</language>
<language type="kr">kanur dili</language>
<language type="krc">qaraçay-balkar dili</language>
<language type="krl">karelyan dili</language>
<language type="kro">kru dili</language>
<language type="kru">kurux dili</language>
<language type="ks">kəşmir dili</language>
<language type="ku">kürdcə</language>
<language type="kum">kumuk dili</language>
<language type="kut">kutenay dili</language>
<language type="kv">komi dili</language>
<language type="kw">korniş dili</language>
<language type="ky">qırğızca</language>
<language type="la">latınca</language>
<language type="lad">ladin dili</language>
<language type="lah">laxnda dili</language>
<language type="lam">lamba dili</language>
<language type="lb">luksemburq dili</language>
<language type="lez">ləzqi dili</language>
<language type="lg">qanda dili</language>
<language type="li">limburqiş dili</language>
<language type="ln">Linqala dili</language>
<language type="lo">laos dili</language>
<language type="lol">monqo dili</language>
<language type="loz">lozi dili</language>
<language type="lt">litva dili</language>
<language type="lu">luba-katanqa dili</language>
<language type="lua">luba-lulua dili</language>
<language type="lui">luyseno dili</language>
<language type="lun">lunda dili</language>
<language type="luo">luo dili</language>
<language type="lus">lushayca</language>
<language type="lv">latışca</language>
<language type="mad">maduriz dili</language>
<language type="mag">maqahi dili</language>
<language type="mai">maitili dili</language>
<language type="mak">makasar dili</language>
<language type="man">məndinqo dili</language>
<language type="map">avstronezicə</language>
<language type="mas">masay dili</language>
<language type="mdf">mokşa dili</language>
<language type="mdr">mandar dili</language>
<language type="men">mende dili</language>
<language type="mg">malaqas dili</language>
<language type="mga">ortacaq irlandca</language>
<language type="mh">marşal dili</language>
<language type="mi">maori dili</language>
<language type="mic">mikmak dili</language>
<language type="min">minanqkaban dili</language>
<language type="mis">çeşitli diller</language>
<language type="mk">makedoniya dili</language>
<language type="mkh">mon-xmer dili</language>
<language type="ml">malayalamca</language>
<language type="mn">monqolca</language>
<language type="mnc">mançu dili</language>
<language type="mni">manipüri dili</language>
<language type="mno">manobo dili</language>
<language type="mo">moldavca</language>
<language type="moh">moxak dili</language>
<language type="mos">mosi dili</language>
<language type="mr">marati dili</language>
<language type="ms">malayca</language>
<language type="mt">malta dili</language>
<language type="mul">digər dillər</language>
<language type="mun">munda dili</language>
<language type="mus">krik dili</language>
<language type="mwl">mirand dili</language>
<language type="mwr">maruari dili</language>
<language type="my">burmis dili</language>
<language type="myn">maya dili</language>
<language type="myv">erzya dili</language>
<language type="na">nauru dili</language>
<language type="nah">nahuatl dili</language>
<language type="nai">şimal amerika yerli dili</language>
<language type="nap">neapolital dili</language>
<language type="nb">norvec bokmal dili</language>
<language type="nd">şimal ndebele dili</language>
<language type="nds">aşağı almanca</language>
<language type="ne">nepalca</language>
<language type="new">nevari dili</language>
<language type="ng">nqonka dili</language>
<language type="nia">nyas dili</language>
<language type="nic">niger-kordofyan dili</language>
<language type="niu">niyuan dili</language>
<language type="nl">hollandca</language>
<language type="nl_BE">flem dili</language>
<language type="nn">norveç ninorsk dili</language>
<language type="no">norveç dili</language>
<language type="nog">noqay dili</language>
<language type="non">qədimi norsca</language>
<language type="nqo">nqo dili</language>
<language type="nr">cənub ndebele dili</language>
<language type="nso">şimal soto dili</language>
<language type="nub">nubiy dili</language>
<language type="nv">navayo dili</language>
<language type="ny">nyanca dili</language>
<language type="nym">nyamvezi dili</language>
<language type="nyn">nyankol dili</language>
<language type="nyo">niyoro dili</language>
<language type="nzi">nizima dili</language>
<language type="oc">oksitanca</language>
<language type="oj">ocibva dili</language>
<language type="om">oromo dili</language>
<language type="or">Oriyə dili</language>
<language type="os">osetik dili</language>
<language type="osa">osage dili</language>
<language type="ota">osman dili</language>
<language type="oto">otomian dili</language>
<language type="pa">puncab dili</language>
<language type="paa">papua dili</language>
<language type="pag">panqasinan dili</language>
<language type="pal">paxlavi dili</language>
<language type="pam">pampanqa dili</language>
<language type="pap">papyamento dili</language>
<language type="pau">palayanca</language>
<language type="peo">qədimi farsca</language>
<language type="phi">filipin dili</language>
<language type="phn">foyenik dili</language>
<language type="pi">pali dili</language>
<language type="pl">Polish dili</language>
<language type="pon">ponpeyan dili</language>
<language type="pra">prakrit dili</language>
<language type="pro">qədimi provensialca</language>
<language type="ps">Puştu dili</language>
<language type="pt">portuqalca</language>
<language type="pt_PT">İber portuqalca</language>
<language type="qu">kuechya dili</language>
<language type="raj">racastan dili</language>
<language type="rap">rapanu dili</language>
<language type="rar">rarotonqan dili</language>
<language type="rn">rundi dili</language>
<language type="ro">rumın</language>
<language type="rom">roman dili</language>
<language type="root">rut dili</language>
<language type="ru">rusca</language>
<language type="rup">aromanca</language>
<language type="rw">kinyarvanda dili</language>
<language type="sa">Sanskrit dili</language>
<language type="sad">sandave dili</language>
<language type="sah">yakut dili</language>
<language type="sai">cənub amerika yerli dili</language>
<language type="sal">salişan dili</language>
<language type="sam">samaritan dili</language>
<language type="sas">sasak dili</language>
<language type="sat">santal dili</language>
<language type="sc">sardin dili</language>
<language type="scn">sisili dili</language>
<language type="sco">skots dili</language>
<language type="sd">sindhi dili</language>
<language type="se">şimal sami dili</language>
<language type="sel">selkup dili</language>
<language type="sem">ivrit dili</language>
<language type="sg">sanqo dili</language>
<language type="sga">qədimi irlandca</language>
<language type="sgn">işarət dili</language>
<language type="sh">serb-xorvatca</language>
<language type="shn">şan dili</language>
<language type="si">sinhaliscə</language>
<language type="sid">sidamo dili</language>
<language type="sio">sioyan dili</language>
<language type="sit">sino-tibet dili</language>
<language type="sk">slovakca</language>
<language type="sl">slovencə</language>
<language type="sla">slav dili</language>
<language type="sm">samoa dili</language>
<language type="sma">cənub sami dili</language>
<language type="smi">səmi dili</language>
<language type="smj">lule sami dili</language>
<language type="smn">inari sami</language>
<language type="sms">skolt dili</language>
<language type="sn">şona dili</language>
<language type="snk">soninke dili</language>
<language type="so">somali dili</language>
<language type="sog">soqdiyen dili</language>
<language type="son">sonqay dili</language>
<language type="sq">Albanca</language>
<language type="sr">serb dili</language>
<language type="srn">sranan tonqo dili</language>
<language type="srr">serer dilii</language>
<language type="ss">svati dili</language>
<language type="ssa">nilo-sahara dili</language>
<language type="st">Sesoto dili</language>
<language type="su">sundanca</language>
<language type="suk">sukuma dili</language>
<language type="sus">susu dili</language>
<language type="sux">sumeryan dili</language>
<language type="sv">isveçcə</language>
<language type="sw">suahilicə</language>
<language type="syr">siryak dili</language>
<language type="ta">tamilcə</language>
<language type="tai">tay dili</language>
<language type="te">teluqu dili</language>
<language type="tem">timne dili</language>
<language type="ter">tereno dili</language>
<language type="tet">tetum dili</language>
<language type="tg">tacik dili</language>
<language type="th">tayca</language>
<language type="ti">tiqrin dili</language>
<language type="tig">tiqre dili</language>
<language type="tiv">tiv dili</language>
<language type="tk">türkməncə</language>
<language type="tkl">tokelay dili</language>
<language type="tl">taqaloq dili</language>
<language type="tlh">klinqon</language>
<language type="tli">tlinqit dili</language>
<language type="tmh">tamaşek dili</language>
<language type="tn">svana dili</language>
<language type="to">tonqa dili</language>
<language type="tog">niyasa tonga dili</language>
<language type="tpi">tok pisin dili</language>
<language type="tr">türkcə</language>
<language type="ts">sonqa dili</language>
<language type="tsi">simşyan dili</language>
<language type="tt">tatarca</language>
<language type="tum">tumbuka dili</language>
<language type="tup">tupi dili</language>
<language type="tut">altaik dili</language>
<language type="tvl">tuvalu dili</language>
<language type="tw">Tvi dili</language>
<language type="ty">taxiti dili</language>
<language type="tyv">tuvinyan dili</language>
<language type="udm">udmurt dili</language>
<language type="ug">uyğurca</language>
<language type="uga">uqaritik dili</language>
<language type="uk">ukraynaca</language>
<language type="umb">umbundu dili</language>
<language type="und">bilinməyən vəya gəcərsiz dil</language>
<language type="ur">urduca</language>
<language type="uz">özbəkcə</language>
<language type="vai">vay dili</language>
<language type="ve">venda dili</language>
<language type="vi">vyetnamca</language>
<language type="vo">volapük dili</language>
<language type="vot">votik dili</language>
<language type="wa">valun dili</language>
<language type="wak">vakaşan dili</language>
<language type="wal">valamo dili</language>
<language type="war">varay dili</language>
<language type="was">vaşo dili</language>
<language type="wen">sorb dili</language>
<language type="wo">volof dili</language>
<language type="xal">kalmıqca</language>
<language type="xh">xosa dili</language>
<language type="yao">yao dili</language>
<language type="yap">yapiz dili</language>
<language type="yi">Yahudi dili</language>
<language type="yo">yoruba dili</language>
<language type="ypk">yupik dili</language>
<language type="za">juənq dili</language>
<language type="zap">zapotek dili</language>
<language type="zbl">blisimbols dili</language>
<language type="zen">zenaqa dili</language>
<language type="zh">çincə</language>
<language type="zh_Hans">adi çincə</language>
<language type="zh_Hant">gələnəksəl çincə</language>
<language type="znd">zande dili</language>
<language type="zu">zulu dili</language>
<language type="zun">zuni dili</language>
<language type="zza">zaza dili</language>
</languages>
<scripts>
<script type="Arab">ərəb</script>
<script type="Armi">armi</script>
<script type="Armn">erməni</script>
<script type="Avst">avestan</script>
<script type="Bali">bali</script>
<script type="Batk">batak</script>
<script type="Beng">benqal</script>
<script type="Blis">blissymbols</script>
<script type="Bopo">Bopomofo</script>
<script type="Brah">brahmi</script>
<script type="Brai">kor yazısı</script>
<script type="Bugi">buqin</script>
<script type="Buhd">buhid</script>
<script type="Cakm">kakm</script>
<script type="Cans">birləşmiş kanada yerli yazısı</script>
<script type="Cari">kariyan</script>
<script type="Cham">çam</script>
<script type="Cher">çiroki</script>
<script type="Cirt">sirt</script>
<script type="Copt">koptik</script>
<script type="Cprt">kipr</script>
<script type="Cyrl">kiril</script>
<script type="Cyrs">qədimi kilsa kirili</script>
<script type="Deva">devanagari</script>
<script type="Dsrt">deseret</script>
<script type="Egyd">misir demotik</script>
<script type="Egyh">misir hiyeratik</script>
<script type="Egyp">misir hiyeroqlif</script>
<script type="Ethi">efiopiya</script>
<script type="Geok">gürcü xutsuri</script>
<script type="Geor">gürcü</script>
<script type="Glag">qlaqolitik</script>
<script type="Goth">qotik</script>
<script type="Grek">yunan</script>
<script type="Gujr">qucarat</script>
<script type="Guru">qurmuxi</script>
<script type="Hang">hanqul</script>
<script type="Hani">han</script>
<script type="Hano">hanunu</script>
<script type="Hans">basitləştirilmiş han</script>
<script type="Hant">qədimi han</script>
<script type="Hebr">yahudi</script>
<script type="Hira">iragana</script>
<script type="Hmng">pahav monq</script>
<script type="Hrkt">katakana vəya hiraqana</script>
<script type="Hung">qədimi macar</script>
<script type="Inds">hindistan</script>
<script type="Ital">qədimi italyalı</script>
<script type="Java">cava</script>
<script type="Jpan">yapon</script>
<script type="Kali">kayax li</script>
<script type="Kana">katakana</script>
<script type="Khar">xaroşti</script>
<script type="Khmr">xmer</script>
<script type="Knda">kannada</script>
<script type="Kore">korean</script>
<script type="Kthi">kti</script>
<script type="Lana">lanna</script>
<script type="Laoo">lao</script>
<script type="Latf">fraktur latını</script>
<script type="Latg">gael latını</script>
<script type="Latn">latın</script>
<script type="Lepc">lepçə</script>
<script type="Limb">limbu</script>
<script type="Lyci">lusian</script>
<script type="Lydi">ludian</script>
<script type="Mand">mandayen</script>
<script type="Mani">maniçayen</script>
<script type="Maya">maya hiyeroqlifi</script>
<script type="Mero">meroytik</script>
<script type="Mlym">malayalam</script>
<script type="Mong">monqol</script>
<script type="Moon">mun</script>
<script type="Mtei">meytey mayek</script>
<script type="Mymr">miyanmar</script>
<script type="Nkoo">nko</script>
<script type="Ogam">oğam</script>
<script type="Olck">ol çiki</script>
<script type="Orkh">orxon</script>
<script type="Orya">oriya</script>
<script type="Osma">osmanya</script>
<script type="Perm">qədimi permik</script>
<script type="Phag">faqs-pa</script>
<script type="Phli">fli</script>
<script type="Phlp">flp</script>
<script type="Phlv">kitab paxlavi</script>
<script type="Phnx">foenik</script>
<script type="Plrd">polard fonetik</script>
<script type="Prti">prti</script>
<script type="Rjng">recəng</script>
<script type="Roro">ronqoronqo</script>
<script type="Runr">runik</script>
<script type="Samr">samaritan</script>
<script type="Sara">sarati</script>
<script type="Saur">saurastra</script>
<script type="Sgnw">işarət yazısı</script>
<script type="Shaw">şavyan</script>
<script type="Sinh">sinhala</script>
<script type="Sund">sundan</script>
<script type="Sylo">siloti nəqri</script>
<script type="Syrc">siryak</script>
<script type="Syre">estrangela süryanice</script>
<script type="Syrn">Syrn</script>
<script type="Tagb">taqbanva</script>
<script type="Tale">tay le</script>
<script type="Talu">təzə tay lu</script>
<script type="Taml">tamil</script>
<script type="Tavt">tavt</script>
<script type="Telu">telugu</script>
<script type="Teng">tengvar</script>
<script type="Tfng">tifinaq</script>
<script type="Tglg">taqaloq</script>
<script type="Thaa">txana</script>
<script type="Thai">tay</script>
<script type="Tibt">tibet</script>
<script type="Ugar">uqarit</script>
<script type="Vaii">vay</script>
<script type="Visp">danışma səsləri</script>
<script type="Xpeo">qədimi fars</script>
<script type="Xsux">sumer-akadyan kuneyform</script>
<script type="Yiii">yi</script>
<script type="Zmth">zmth</script>
<script type="Zsym">zsym</script>
<script type="Zxxx">yazısız</script>
<script type="Zyyy">adi yazi</script>
<script type="Zzzz">bilinməyən veya gəcərsiz</script>
</scripts>
<territories>
<territory type="001">Dünya</territory>
<territory type="002">Afrika</territory>
<territory type="003">Şimal Amerika</territory>
<territory type="005">Cənub Amerika</territory>
<territory type="009">Okeyaniya</territory>
<territory type="011">Qərb afrika</territory>
<territory type="013">Orta Amerika</territory>
<territory type="014">Şərq Afrika</territory>
<territory type="015">Şimal Afrika</territory>
<territory type="017">Orta Afrika</territory>
<territory type="018">018</territory>
<territory type="019">Amerikalar</territory>
<territory type="021">021</territory>
<territory type="029">Kariyıplar</territory>
<territory type="030">Şərq Asiya</territory>
<territory type="034">Cənub Asiya</territory>
<territory type="035">Cənub Şərq Asiya</territory>
<territory type="039">Cənub Avropa</territory>
<territory type="053">Avstraliya və Yeni Zelandiya</territory>
<territory type="054">Melanesya</territory>
<territory type="057">Mikronesiya reqionu</territory>
<territory type="061">Polineziya</territory>
<territory type="062">Cənub Orta Asiya</territory>
<territory type="142">Aziya</territory>
<territory type="143">Orta Aziya</territory>
<territory type="145">Qərb Asiya</territory>
<territory type="150">Avropa</territory>
<territory type="151">Şərq Avropa</territory>
<territory type="154">Şimal Avropa</territory>
<territory type="155">Qərb Avropa</territory>
<territory type="172">172</territory>
<territory type="419">Latın Amerikası və Kariblər</territory>
<territory type="AD">Andorra</territory>
<territory type="AE">Birləşmiş Ərəb Emiratları</territory>
<territory type="AF">Əfqənistan</territory>
<territory type="AG">Antiqua və Barbuda</territory>
<territory type="AI">Anquila</territory>
<territory type="AL">Albaniya</territory>
<territory type="AM">Ermənistan</territory>
<territory type="AN">Hollandiya antilleri</territory>
<territory type="AO">Angola</territory>
<territory type="AQ">Antarktika</territory>
<territory type="AR">Arqentina</territory>
<territory type="AS">Amerika Samoası</territory>
<territory type="AT">Avstriya</territory>
<territory type="AU">Avstraliya</territory>
<territory type="AW">Aruba</territory>
<territory type="AX">Aland Adaları</territory>
<territory type="AZ">Azərbaycan</territory>
<territory type="BA">Bosniya və Herzokovina</territory>
<territory type="BB">Barbados</territory>
<territory type="BD">Banqladeş</territory>
<territory type="BE">Belçika</territory>
<territory type="BF">Burkina Faso</territory>
<territory type="BG">Bolqariya</territory>
<territory type="BH">Bahreyn</territory>
<territory type="BI">Burundi</territory>
<territory type="BJ">Benin</territory>
<territory type="BL">Seynt Bartelemey</territory>
<territory type="BM">Bermuda</territory>
<territory type="BN">Bruney</territory>
<territory type="BO">Boliviya</territory>
<territory type="BR">Braziliya</territory>
<territory type="BS">Bahamalar</territory>
<territory type="BT">Butan</territory>
<territory type="BV">Bove Adası</territory>
<territory type="BW">Botsvana</territory>
<territory type="BY">Belarus</territory>
<territory type="BZ">Beliz</territory>
<territory type="CA">Kanada</territory>
<territory type="CC">Kokos Adaları</territory>
<territory type="CD">Konqo - Kinşasa</territory>
<territory type="CF">Orta Afrika respublikası</territory>
<territory type="CG">Konqo - Brazavil</territory>
<territory type="CH">isveçriya</territory>
<territory type="CI">İvori Sahili</territory>
<territory type="CK">Kuk Adaları</territory>
<territory type="CL">Çile</territory>
<territory type="CM">Kamerun</territory>
<territory type="CN">Çin</territory>
<territory type="CO">Kolumbiya</territory>
<territory type="CR">Kosta Rika</territory>
<territory type="CU">Kuba</territory>
<territory type="CV">Kape Verde</territory>
<territory type="CX">Çristmas Adası</territory>
<territory type="CY">Kipr</territory>
<territory type="CZ">Çex respublikası</territory>
<territory type="DE">Almaniya</territory>
<territory type="DJ">Ciboti</territory>
<territory type="DK">Danemarka</territory>
<territory type="DM">Dominika</territory>
<territory type="DO">Dominik Respublikası</territory>
<territory type="DZ">Cezayır</territory>
<territory type="EC">Ekvador</territory>
<territory type="EE">Estoniya</territory>
<territory type="EG">Misir</territory>
<territory type="EH">Qərb Sahara</territory>
<territory type="ER">Eritreya</territory>
<territory type="ES">İspaniya</territory>
<territory type="ET">Efiopiya</territory>
<territory type="FI">Finlandiya</territory>
<territory type="FJ">Fici</territory>
<territory type="FK">Folkland Adaları</territory>
<territory type="FM">Mikronesiya</territory>
<territory type="FO">Faro Adaları</territory>
<territory type="FR">Fransa</territory>
<territory type="GA">Qabon</territory>
<territory type="GB">Birləşmiş Krallıq</territory>
<territory type="GD">Qrenada</territory>
<territory type="GE">Gürcüstan</territory>
<territory type="GF">Fransız Quyanası</territory>
<territory type="GG">Görnsey</territory>
<territory type="GH">Qana</territory>
<territory type="GI">Gibraltar</territory>
<territory type="GL">Qrinland</territory>
<territory type="GM">Qambiya</territory>
<territory type="GN">Qvineya</territory>
<territory type="GP">Qvadalup</territory>
<territory type="GQ">Ekvator Qineya</territory>
<territory type="GR">Yunanıstan</territory>
<territory type="GS">Cənub Gürcüstan və Cənub Sandvilç Adaları</territory>
<territory type="GT">Qvatemala</territory>
<territory type="GU">Quam</territory>
<territory type="GW">Qvineya-Bisau</territory>
<territory type="GY">Quyana</territory>
<territory type="HK">Honk Konq çina</territory>
<territory type="HM">Hörd və Makdonald Adaları</territory>
<territory type="HN">Qonduras</territory>
<territory type="HR">Xorvatiya</territory>
<territory type="HT">Haiti</territory>
<territory type="HU">Macaristan</territory>
<territory type="ID">İndoneziya</territory>
<territory type="IE">İrlandiya</territory>
<territory type="IL">İzrail</territory>
<territory type="IM">Man Adası</territory>
<territory type="IN">Hindistan</territory>
<territory type="IO">Britaniya-Hindistan Okeanik territoriyası</territory>
<territory type="IQ">İrak</territory>
<territory type="IR">İran</territory>
<territory type="IS">İslandiya</territory>
<territory type="IT">İtaliya</territory>
<territory type="JE">Cörsi</territory>
<territory type="JM">Yamayka</territory>
<territory type="JO">Ürdün</territory>
<territory type="JP">Yaponiya</territory>
<territory type="KE">Kenya</territory>
<territory type="KG">Kırqızstan</territory>
<territory type="KH">Kambodiya</territory>
<territory type="KI">Kiribati</territory>
<territory type="KM">Komoros</territory>
<territory type="KN">Seynt Kits və Nevis</territory>
<territory type="KP">Şimal Koreya</territory>
<territory type="KR">Cənub Koreya</territory>
<territory type="KW">Kuveyt</territory>
<territory type="KY">Kayman Adaları</territory>
<territory type="KZ">Kazaxstan</territory>
<territory type="LA">Laos</territory>
<territory type="LB">Lebanon</territory>
<territory type="LC">Seynt Lusiya</territory>
<territory type="LI">Lixtenşteyn</territory>
<territory type="LK">Şri Lanka</territory>
<territory type="LR">Liberiya</territory>
<territory type="LS">Lesoto</territory>
<territory type="LT">Litva</territory>
<territory type="LU">Lüksemburq</territory>
<territory type="LV">Latviya</territory>
<territory type="LY">Libya</territory>
<territory type="MA">Morokko</territory>
<territory type="MC">Monako</territory>
<territory type="MD">Moldova</territory>
<territory type="ME">Monteneqro</territory>
<territory type="MF">Seynt Martin</territory>
<territory type="MG">Madaqaskar</territory>
<territory type="MH">Marşal Adaları</territory>
<territory type="MK">Masedoniya</territory>
<territory type="ML">Mali</territory>
<territory type="MM">Myanmar</territory>
<territory type="MN">Monqoliya</territory>
<territory type="MO">Makao Çina</territory>
<territory type="MP">Şimal Mariana Adaları</territory>
<territory type="MQ">Martiniqu</territory>
<territory type="MR">Mavritaniya</territory>
<territory type="MS">Montserat</territory>
<territory type="MT">Malta</territory>
<territory type="MU">Mavritis</territory>
<territory type="MV">Maldiv</territory>
<territory type="MW">Malavi</territory>
<territory type="MX">Meksika</territory>
<territory type="MY">Malaysiya</territory>
<territory type="MZ">Mazambik</territory>
<territory type="NA">Namibiya</territory>
<territory type="NC">Yeni Kaledoniya</territory>
<territory type="NE">nijer</territory>
<territory type="NF">Norfolk Adası</territory>
<territory type="NG">Nijeriya</territory>
<territory type="NI">Nikaraqua</territory>
<territory type="NL">Hollandiya</territory>
<territory type="NO">Norvec</territory>
<territory type="NP">Nepal</territory>
<territory type="NR">Nauru</territory>
<territory type="NU">Niye</territory>
<territory type="NZ">Yeni Zelandiya</territory>
<territory type="OM">Oman</territory>
<territory type="PA">Panama</territory>
<territory type="PE">Peru</territory>
<territory type="PF">Fransız Polineziya</territory>
<territory type="PG">Papua Yeni Qvineya</territory>
<territory type="PH">Filipin</territory>
<territory type="PK">Pakistan</territory>
<territory type="PL">Polşa</territory>
<territory type="PM">Seynt Piyer və Mikelon</territory>
<territory type="PN">Pitkarn</territory>
<territory type="PR">Puerto Riko</territory>
<territory type="PS">Fələstin Bölqüsü</territory>
<territory type="PT">Portuqal</territory>
<territory type="PW">Palav</territory>
<territory type="PY">Paraqvay</territory>
<territory type="QA">Qatar</territory>
<territory type="QO">Uzak Okeyaniya</territory>
<territory type="QU">Avropa Birləşliyi</territory>
<territory type="RE">Reyunion</territory>
<territory type="RO">Romaniya</territory>
<territory type="RS">Serbiya</territory>
<territory type="RU">Rusiya</territory>
<territory type="RW">Rvanda</territory>
<territory type="SA">Saudi Ərəbistan</territory>
<territory type="SB">Solomon Adaları</territory>
<territory type="SC">Seyçels</territory>
<territory type="SD">sudan</territory>
<territory type="SE">isveç</territory>
<territory type="SG">Sinqapur</territory>
<territory type="SH">Seynt Elena</territory>
<territory type="SI">Sloveniya</territory>
<territory type="SJ">svalbard və yan mayen</territory>
<territory type="SK">Slovakiya</territory>
<territory type="SL">Siyera Leon</territory>
<territory type="SM">San Marino</territory>
<territory type="SN">Seneqal</territory>
<territory type="SO">Somaliya</territory>
<territory type="SR">surinamə</territory>
<territory type="ST">Sao Tom və Prinsip</territory>
<territory type="SV">El Salvador</territory>
<territory type="SY">siriya</territory>
<territory type="SZ">svazilənd</territory>
<territory type="TC">Türk və Kaykos Adaları</territory>
<territory type="TD">Çad</territory>
<territory type="TF">Fransız Cənub teritoriyası</territory>
<territory type="TG">Toqo</territory>
<territory type="TH">tayland</territory>
<territory type="TJ">tacikistan</territory>
<territory type="TK">Tokelau</territory>
<territory type="TL">Şərq Timor</territory>
<territory type="TM">Türkmənistan</territory>
<territory type="TN">Tunisiya</territory>
<territory type="TO">Tonqa</territory>
<territory type="TR">Türkiya</territory>
<territory type="TT">Trinidan və Tobaqo</territory>
<territory type="TV">Tuvalu</territory>
<territory type="TW">tayvan</territory>
<territory type="TZ">tanzaniya</territory>
<territory type="UA">Ukraina</territory>
<territory type="UG">Uqanda</territory>
<territory type="UM">Birləşmiş Ştatların uzaq adaları</territory>
<territory type="US">Amerika Birləşmiş Ştatları</territory>
<territory type="UY">Uruqvay</territory>
<territory type="UZ">Özbəkistan</territory>
<territory type="VA">Vatikan</territory>
<territory type="VC">Seynt Vinsent və Qrenada</territory>
<territory type="VE">Venesuela</territory>
<territory type="VG">Britaniya Virgin Adaları</territory>
<territory type="VI">ABŞ Virqin Adaları</territory>
<territory type="VN">Vyetnam</territory>
<territory type="VU">Vanuatu</territory>
<territory type="WF">Valis və Futuna</territory>
<territory type="WS">Samoa</territory>
<territory type="YE">Yemen</territory>
<territory type="YT">Mayot</territory>
<territory type="ZA">Cənub Afrika</territory>
<territory type="ZM">Zambiya</territory>
<territory type="ZW">Zimbabve</territory>
<territory type="ZZ">bilinmir</territory>
</territories>
<types>
<type type="buddhist" key="calendar">Budist təqvimi</type>
<type type="chinese" key="calendar">Çin təqvimi</type>
<type type="gregorian" key="calendar">Qreqoriy təqvimi</type>
<type type="hebrew" key="calendar">Yahudi təqvimi</type>
<type type="indian" key="calendar">Hindi təqvimi</type>
<type type="islamic" key="calendar">Müsəlman təqvimi</type>
<type type="islamic-civil" key="calendar">Ivrit təqvimi</type>
<type type="japanese" key="calendar">Yapon təqvimi</type>
<type type="pinyin" key="collation">Pinyin təqvimi</type>
<type type="roc" key="calendar">Çin respublikası təqvimi</type>
</types>
<measurementSystemNames>
<measurementSystemName type="metric">metr</measurementSystemName>
<measurementSystemName type="US">ABŞ</measurementSystemName>
</measurementSystemNames>
<codePatterns>
<codePattern type="language">Dil: {0}</codePattern>
<codePattern type="script">Yazı: {0}</codePattern>
<codePattern type="territory">Rayon: {0}</codePattern>
</codePatterns>
</localeDisplayNames>
<characters>
<exemplarCharacters>[a-c ç d e ə f g ğ h x ı i İ {i\u0307} j k q l-o ö p r s ş t u ü v y z]</exemplarCharacters>
<exemplarCharacters type="auxiliary">[w]</exemplarCharacters>
</characters>
<delimiters>
<quotationStart>“</quotationStart>
<quotationEnd>”</quotationEnd>
<alternateQuotationStart>‘</alternateQuotationStart>
<alternateQuotationEnd>’</alternateQuotationEnd>
</delimiters>
<dates>
<calendars>
<calendar type="gregorian">
<months>
<monthContext type="format">
<monthWidth type="abbreviated">
<month type="1">yan</month>
<month type="2">fev</month>
<month type="3">mar</month>
<month type="4">apr</month>
<month type="5">may</month>
<month type="6">iyn</month>
<month type="7">iyl</month>
<month type="8">avq</month>
<month type="9">sen</month>
<month type="10">okt</month>
<month type="11">noy</month>
<month type="12">dek</month>
</monthWidth>
<monthWidth type="wide">
<month type="1">Yanvar</month>
<month type="2">Fevral</month>
<month type="3">Mart</month>
<month type="4">Aprel</month>
<month type="5">May</month>
<month type="6">İyun</month>
<month type="7">İyul</month>
<month type="8">Avqust</month>
<month type="9">Sentyabr</month>
<month type="10">Oktyabr</month>
<month type="11">Noyabr</month>
<month type="12">Dekabr</month>
</monthWidth>
</monthContext>
<monthContext type="stand-alone">
<monthWidth type="narrow">
<month type="1">1</month>
<month type="2">2</month>
<month type="3">3</month>
<month type="4">4</month>
<month type="5">5</month>
<month type="6">6</month>
<month type="7">7</month>
<month type="8">8</month>
<month type="9">9</month>
<month type="10">10</month>
<month type="11">11</month>
<month type="12">12</month>
</monthWidth>
</monthContext>
</months>
<days>
<dayContext type="format">
<dayWidth type="abbreviated">
<day type="sun">B.</day>
<day type="mon">B.E.</day>
<day type="tue">Ç.A.</day>
<day type="wed">Ç.</day>
<day type="thu">C.A.</day>
<day type="fri">C</day>
<day type="sat">Ş.</day>
</dayWidth>
<dayWidth type="wide">
<day type="sun">bazar</day>
<day type="mon">bazar ertəsi</day>
<day type="tue">çərşənbə axşamı</day>
<day type="wed">çərşənbə</day>
<day type="thu">cümə axşamı</day>
<day type="fri">cümə</day>
<day type="sat">şənbə</day>
</dayWidth>
</dayContext>
<dayContext type="stand-alone">
<dayWidth type="narrow">
<day type="sun">7</day>
<day type="mon">1</day>
<day type="tue">2</day>
<day type="wed">3</day>
<day type="thu">4</day>
<day type="fri">5</day>
<day type="sat">6</day>
</dayWidth>
</dayContext>
</days>
<quarters>
<quarterContext type="format">
<quarterWidth type="abbreviated">
<quarter type="1">1-ci kv.</quarter>
<quarter type="2">2-ci kv.</quarter>
<quarter type="3">3-cü kv.</quarter>
<quarter type="4">4-cü kv.</quarter>
</quarterWidth>
<quarterWidth type="wide">
<quarter type="1">1-ci kvartal</quarter>
<quarter type="2">2-ci kvartal</quarter>
<quarter type="3">3-cü kvartal</quarter>
<quarter type="4">4-cü kvartal</quarter>
</quarterWidth>
</quarterContext>
</quarters>
<am>AM</am>
<pm>PM</pm>
<eras>
<eraNames>
<era type="0">eramızdan əvvəl</era>
<era type="1">bizim eramızın</era>
</eraNames>
<eraAbbr>
<era type="0">e.ə.</era>
<era type="1">b.e.</era>
</eraAbbr>
</eras>
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern>EEEE, d, MMMM, y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern>d MMMM , y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern>d MMM, y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern>yy/MM/dd</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<timeFormats>
<timeFormatLength type="full">
<timeFormat>
<pattern>HH:mm:ss zzzz</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="long">
<timeFormat>
<pattern>HH:mm:ss z</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="medium">
<timeFormat>
<pattern>HH:mm:ss</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="short">
<timeFormat>
<pattern>HH:mm</pattern>
</timeFormat>
</timeFormatLength>
</timeFormats>
<dateTimeFormats>
<availableFormats>
<dateFormatItem id="yyQ">Q yy</dateFormatItem>
</availableFormats>
</dateTimeFormats>
<fields>
<field type="era">
<displayName>era</displayName>
</field>
<field type="year">
<displayName>il</displayName>
</field>
<field type="month">
<displayName>ay</displayName>
</field>
<field type="week">
<displayName>həftə</displayName>
</field>
<field type="day">
<displayName>bu gün</displayName>
<relative type="-3">üç gün əvvəl</relative>
<relative type="-1">dünən</relative>
<relative type="0">bu gün</relative>
<relative type="1">sabah</relative>
<relative type="3">üç gün sonra</relative>
</field>
<field type="weekday">
<displayName>həftə günü</displayName>
</field>
<field type="hour">
<displayName>saat</displayName>
</field>
<field type="minute">
<displayName>dəqiqə</displayName>
</field>
<field type="second">
<displayName>saniyə</displayName>
</field>
<field type="zone">
<displayName>zona</displayName>
</field>
</fields>
</calendar>
</calendars>
<timeZoneNames>
<hourFormat>+HH:mm;-HH:mm</hourFormat>
<gmtFormat>GMT{0}</gmtFormat>
<regionFormat>{0}</regionFormat>
<fallbackFormat>{1} ({0})</fallbackFormat>
<zone type="Etc/Unknown">
<exemplarCity>Bilinmir</exemplarCity>
</zone>
<zone type="Antarctica/Rothera">
<exemplarCity>rofera</exemplarCity>
</zone>
<zone type="Antarctica/South_Pole">
<exemplarCity>çənub polus</exemplarCity>
</zone>
<zone type="Antarctica/Syowa">
<exemplarCity>syova</exemplarCity>
</zone>
<zone type="Antarctica/Mawson">
<exemplarCity>moson</exemplarCity>
</zone>
<zone type="Antarctica/Davis">
<exemplarCity>Deyvis</exemplarCity>
</zone>
<zone type="Antarctica/Vostok">
<exemplarCity>vostok</exemplarCity>
</zone>
<zone type="Antarctica/Casey">
<exemplarCity>Keysi</exemplarCity>
</zone>
<zone type="Antarctica/DumontDUrville">
<exemplarCity>Dumont de Urvile</exemplarCity>
</zone>
<zone type="Antarctica/McMurdo">
<exemplarCity>makmurdo</exemplarCity>
</zone>
<zone type="America/Argentina/Rio_Gallegos">
<exemplarCity>rio qayegos</exemplarCity>
</zone>
<zone type="America/Mendoza">
<exemplarCity>mendoza</exemplarCity>
</zone>
<zone type="America/Argentina/San_Juan">
<exemplarCity>san xuan</exemplarCity>
</zone>
<zone type="America/Argentina/Ushuaia">
<exemplarCity>uşuya</exemplarCity>
</zone>
<zone type="America/Argentina/La_Rioja">
<exemplarCity>La Rioha</exemplarCity>
</zone>
<zone type="America/Argentina/San_Luis">
<exemplarCity>san luis</exemplarCity>
</zone>
<zone type="America/Catamarca">
<exemplarCity>Katamarka</exemplarCity>
</zone>
<zone type="America/Jujuy">
<exemplarCity>Cucuy</exemplarCity>
</zone>
<zone type="America/Argentina/Tucuman">
<exemplarCity>tukuman</exemplarCity>
</zone>
<zone type="America/Cordoba">
<exemplarCity>Kordoba</exemplarCity>
</zone>
<zone type="America/Buenos_Aires">
<exemplarCity>Buenos Ayres</exemplarCity>
</zone>
<zone type="Australia/Perth">
<exemplarCity>perf</exemplarCity>
</zone>
<zone type="Australia/Eucla">
<exemplarCity>Yukla</exemplarCity>
</zone>
<zone type="Australia/Darwin">
<exemplarCity>Darvin</exemplarCity>
</zone>
<zone type="Australia/Adelaide">
<exemplarCity>Adelayd</exemplarCity>
</zone>
<zone type="Australia/Broken_Hill">
<exemplarCity>Broken Hil</exemplarCity>
</zone>
<zone type="Australia/Currie">
<exemplarCity>Kuriye</exemplarCity>
</zone>
<zone type="Australia/Melbourne">
<exemplarCity>melburn</exemplarCity>
</zone>
<zone type="Australia/Sydney">
<exemplarCity>sidney</exemplarCity>
</zone>
<zone type="Australia/Brisbane">
<exemplarCity>Brisbeyn</exemplarCity>
</zone>
<zone type="Australia/Lord_Howe">
<exemplarCity>Lord Hove</exemplarCity>
</zone>
<zone type="America/Eirunepe">
<exemplarCity>İrunepe</exemplarCity>
</zone>
<zone type="America/Rio_Branco">
<exemplarCity>Rio Branko</exemplarCity>
</zone>
<zone type="America/Porto_Velho">
<exemplarCity>porto velo</exemplarCity>
</zone>
<zone type="America/Cuiaba">
<exemplarCity>Kuyaba</exemplarCity>
</zone>
<zone type="America/Campo_Grande">
<exemplarCity>Kampo Qrande</exemplarCity>
</zone>
<zone type="America/Araguaina">
<exemplarCity>Araguayna</exemplarCity>
</zone>
<zone type="America/Sao_Paulo">
<exemplarCity>sao paulo</exemplarCity>
</zone>
<zone type="America/Bahia">
<exemplarCity>Bahiya</exemplarCity>
</zone>
<zone type="America/Maceio">
<exemplarCity>Maseyo</exemplarCity>
</zone>
<zone type="America/Recife">
<exemplarCity>resif</exemplarCity>
</zone>
<zone type="America/Noronha">
<exemplarCity>noronha</exemplarCity>
</zone>
<zone type="America/Dawson">
<exemplarCity>Douson</exemplarCity>
</zone>
<zone type="America/Whitehorse">
<exemplarCity>vaythors</exemplarCity>
</zone>
<zone type="America/Inuvik">
<exemplarCity>İnuvik</exemplarCity>
</zone>
<zone type="America/Vancouver">
<exemplarCity>vənkuver</exemplarCity>
</zone>
<zone type="America/Dawson_Creek">
<exemplarCity>Douson Krik</exemplarCity>
</zone>
<zone type="America/Yellowknife">
<exemplarCity>yelounayf</exemplarCity>
</zone>
<zone type="America/Edmonton">
<exemplarCity>Edmondton</exemplarCity>
</zone>
<zone type="America/Swift_Current">
<exemplarCity>svift kurent</exemplarCity>
</zone>
<zone type="America/Cambridge_Bay">
<exemplarCity>Kəmbric Bey</exemplarCity>
</zone>
<zone type="America/Regina">
<exemplarCity>recina</exemplarCity>
</zone>
<zone type="America/Winnipeg">
<exemplarCity>vinipeq</exemplarCity>
</zone>
<zone type="America/Resolute">
<exemplarCity>resolut</exemplarCity>
</zone>
<zone type="America/Rainy_River">
<exemplarCity>reyni river</exemplarCity>
</zone>
<zone type="America/Rankin_Inlet">
<exemplarCity>rankin inlet</exemplarCity>
</zone>
<zone type="America/Coral_Harbour">
<exemplarCity>Koral Harbor</exemplarCity>
</zone>
<zone type="America/Thunder_Bay">
<exemplarCity>funder bey</exemplarCity>
</zone>
<zone type="America/Nipigon">
<exemplarCity>nipiqon</exemplarCity>
</zone>
<zone type="America/Toronto">
<exemplarCity>toronto</exemplarCity>
</zone>
<zone type="America/Montreal">
<exemplarCity>montreal</exemplarCity>
</zone>
<zone type="America/Iqaluit">
<exemplarCity>İqalut</exemplarCity>
</zone>
<zone type="America/Pangnirtung">
<exemplarCity>panqnirtanq</exemplarCity>
</zone>
<zone type="America/Moncton">
<exemplarCity>monkton</exemplarCity>
</zone>
<zone type="America/Halifax">
<exemplarCity>Halifaks</exemplarCity>
</zone>
<zone type="America/Goose_Bay">
<exemplarCity>Qus Bey</exemplarCity>
</zone>
<zone type="America/Glace_Bay">
<exemplarCity>Qleys Bey</exemplarCity>
</zone>
<zone type="America/Blanc-Sablon">
<exemplarCity>Blank-Sablon</exemplarCity>
</zone>
<zone type="America/St_Johns">
<exemplarCity>St Johns</exemplarCity>
</zone>
<zone type="Africa/Kinshasa">
<exemplarCity>Kinşasa</exemplarCity>
</zone>
<zone type="Africa/Lubumbashi">
<exemplarCity>Lubumbaşi</exemplarCity>
</zone>
<zone type="Pacific/Easter">
<exemplarCity>İster</exemplarCity>
</zone>
<zone type="Asia/Kashgar">
<exemplarCity>Kaşqar</exemplarCity>
</zone>
<zone type="Asia/Urumqi">
<exemplarCity>urumçi</exemplarCity>
</zone>
<zone type="Asia/Chongqing">
<exemplarCity>Conqinq</exemplarCity>
</zone>
<zone type="Pacific/Galapagos">
<exemplarCity>Qalapaqos</exemplarCity>
</zone>
<zone type="Atlantic/Canary">
<exemplarCity>Kanari</exemplarCity>
</zone>
<zone type="Africa/Ceuta">
<exemplarCity>Seuta</exemplarCity>
</zone>
<zone type="Pacific/Ponape">
<exemplarCity>ponape</exemplarCity>
</zone>
<zone type="Pacific/Kosrae">
<exemplarCity>Kosraye</exemplarCity>
</zone>
<zone type="America/Thule">
<exemplarCity>tul</exemplarCity>
</zone>
<zone type="America/Scoresbysund">
<exemplarCity>skoresbisund</exemplarCity>
</zone>
<zone type="America/Danmarkshavn">
<exemplarCity>Danmarkşavn</exemplarCity>
</zone>
<zone type="Asia/Jakarta">
<exemplarCity>Cakarta</exemplarCity>
</zone>
<zone type="Asia/Pontianak">
<exemplarCity>pontiyanak</exemplarCity>
</zone>
<zone type="Asia/Makassar">
<exemplarCity>Makasar</exemplarCity>
</zone>
<zone type="Asia/Jayapura">
<exemplarCity>Cayapura</exemplarCity>
</zone>
<zone type="Pacific/Enderbury">
<exemplarCity>Enderböri</exemplarCity>
</zone>
<zone type="Pacific/Kiritimati">
<exemplarCity>Kirimati</exemplarCity>
</zone>
<zone type="Pacific/Tarawa">
<exemplarCity>tarava</exemplarCity>
</zone>
<zone type="Asia/Aqtau">
<exemplarCity>Aktau</exemplarCity>
</zone>
<zone type="Asia/Qyzylorda">
<exemplarCity>qüzülorda</exemplarCity>
</zone>
<zone type="Asia/Almaty">
<exemplarCity>Almati</exemplarCity>
</zone>
<zone type="Pacific/Kwajalein">
<exemplarCity>Kvajaleyn</exemplarCity>
</zone>
<zone type="Pacific/Majuro">
<exemplarCity>Maxiro</exemplarCity>
</zone>
<zone type="Asia/Ulaanbaatar">
<exemplarCity>ulanbatar</exemplarCity>
</zone>
<zone type="Asia/Choibalsan">
<exemplarCity>Coybalsan</exemplarCity>
</zone>
<zone type="America/Tijuana">
<exemplarCity>tixuana</exemplarCity>
</zone>
<zone type="America/Hermosillo">
<exemplarCity>Hermosilo</exemplarCity>
</zone>
<zone type="America/Mazatlan">
<exemplarCity>mazaltan</exemplarCity>
</zone>
<zone type="America/Chihuahua">
<exemplarCity>Cihuvava</exemplarCity>
</zone>
<zone type="America/Monterrey">
<exemplarCity>monterey</exemplarCity>
</zone>
<zone type="America/Mexico_City">
<exemplarCity>mexiko</exemplarCity>
</zone>
<zone type="America/Cancun">
<exemplarCity>Kankun</exemplarCity>
</zone>
<zone type="Asia/Kuching">
<exemplarCity>Kuçinq</exemplarCity>
</zone>
<zone type="Pacific/Chatham">
<exemplarCity>Çatam</exemplarCity>
</zone>
<zone type="Pacific/Marquesas">
<exemplarCity>Markuyesas</exemplarCity>
</zone>
<zone type="Pacific/Gambier">
<exemplarCity>Qambiyer</exemplarCity>
</zone>
<zone type="Atlantic/Madeira">
<exemplarCity>Madeyra</exemplarCity>
</zone>
<zone type="Europe/Kaliningrad">
<exemplarCity>Kalininqrad</exemplarCity>
</zone>
<zone type="Europe/Moscow">
<exemplarCity>moskva</exemplarCity>
</zone>
<zone type="Europe/Volgograd">
<exemplarCity>volqoqrad</exemplarCity>
</zone>
<zone type="Europe/Samara">
<exemplarCity>samara</exemplarCity>
</zone>
<zone type="Asia/Yekaterinburg">
<exemplarCity>yekaterinburq</exemplarCity>
</zone>
<zone type="Asia/Novosibirsk">
<exemplarCity>novosibirsk</exemplarCity>
</zone>
<zone type="Asia/Irkutsk">
<exemplarCity>İrkutsk</exemplarCity>
</zone>
<zone type="Asia/Yakutsk">
<exemplarCity>yakutsk</exemplarCity>
</zone>
<zone type="Asia/Vladivostok">
<exemplarCity>vladivostok</exemplarCity>
</zone>
<zone type="Asia/Sakhalin">
<exemplarCity>saxalin</exemplarCity>
</zone>
<zone type="Asia/Magadan">
<exemplarCity>Maqadan</exemplarCity>
</zone>
<zone type="Asia/Kamchatka">
<exemplarCity>Kamçatka</exemplarCity>
</zone>
<zone type="Asia/Anadyr">
<exemplarCity>Anadır</exemplarCity>
</zone>
<zone type="Europe/Uzhgorod">
<exemplarCity>ujgorod</exemplarCity>
</zone>
<zone type="Europe/Kiev">
<exemplarCity>Kiyev</exemplarCity>
</zone>
<zone type="Europe/Simferopol">
<exemplarCity>simferopol</exemplarCity>
</zone>
<zone type="Europe/Zaporozhye">
<exemplarCity>zaporojye</exemplarCity>
</zone>
<zone type="Pacific/Midway">
<exemplarCity>midvey</exemplarCity>
</zone>
<zone type="Pacific/Johnston">
<exemplarCity>Conston</exemplarCity>
</zone>
<zone type="Pacific/Wake">
<exemplarCity>veyk</exemplarCity>
</zone>
<zone type="America/Nome">
<exemplarCity>nom</exemplarCity>
</zone>
<zone type="America/Anchorage">
<exemplarCity>Ankorac</exemplarCity>
</zone>
<zone type="America/Yakutat">
<exemplarCity>yakutat</exemplarCity>
</zone>
<zone type="America/Juneau">
<exemplarCity>Cüneau</exemplarCity>
</zone>
<zone type="America/Los_Angeles">
<exemplarCity>Los Anceles</exemplarCity>
</zone>
<zone type="America/Boise">
<exemplarCity>Boyse</exemplarCity>
</zone>
<zone type="America/Phoenix">
<exemplarCity>finiks</exemplarCity>
</zone>
<zone type="America/Shiprock">
<exemplarCity>şiprok</exemplarCity>
</zone>
<zone type="America/North_Dakota/New_Salem">
<exemplarCity>nyu salem</exemplarCity>
</zone>
<zone type="America/North_Dakota/Center">
<exemplarCity>Orta, Şimal Dakota</exemplarCity>
</zone>
<zone type="America/Chicago">
<exemplarCity>Cikaqo</exemplarCity>
</zone>
<zone type="America/Menominee">
<exemplarCity>menomini</exemplarCity>
</zone>
<zone type="America/Indiana/Vincennes">
<exemplarCity>vinsenes</exemplarCity>
</zone>
<zone type="America/Indiana/Petersburg">
<exemplarCity>pitersburq</exemplarCity>
</zone>
<zone type="America/Indiana/Tell_City">
<exemplarCity>tell şəhəri</exemplarCity>
</zone>
<zone type="America/Indiana/Knox">
<exemplarCity>Noks</exemplarCity>
</zone>
<zone type="America/Indiana/Winamac">
<exemplarCity>vinamak</exemplarCity>
</zone>
<zone type="America/Indiana/Marengo">
<exemplarCity>Marenqo</exemplarCity>
</zone>
<zone type="America/Indianapolis">
<exemplarCity>İndianapolis</exemplarCity>
</zone>
<zone type="America/Louisville">
<exemplarCity>Luisvil</exemplarCity>
</zone>
<zone type="America/Indiana/Vevay">
<exemplarCity>vevey</exemplarCity>
</zone>
<zone type="America/Kentucky/Monticello">
<exemplarCity>montiçelo</exemplarCity>
</zone>
<zone type="America/Detroit">
<exemplarCity>Detroyt</exemplarCity>
</zone>
<zone type="America/New_York">
<exemplarCity>nyu york</exemplarCity>
</zone>
<zone type="Asia/Samarkand">
<exemplarCity>səmərkənd</exemplarCity>
</zone>
<metazone type="Europe_Central">
<long>
<standard>Orta Avropa</standard>
<daylight>Orta Avropa/yay</daylight>
</long>
<short>
<standard>Orta Avropa/standart</standard>
<daylight>Orta Avropa/yaz</daylight>
</short>
</metazone>
<metazone type="Europe_Eastern">
<long>
<standard>Şərq Avropa</standard>
<daylight>Şərq Avropa/yay</daylight>
</long>
<short>
<standard>Şərq Avropa/standart</standard>
<daylight>Şərq Avropa/yaz</daylight>
</short>
<commonlyUsed>true</commonlyUsed>
</metazone>
<metazone type="Kuybyshev">
<long>
<standard>Kuybuşev</standard>
<daylight>Kuybuşev/yay</daylight>
</long>
</metazone>
<metazone type="Moscow">
<long>
<generic>Moskva</generic>
<standard>Moskva/standart</standard>
<daylight>Moskva/yay</daylight>
</long>
<commonlyUsed>true</commonlyUsed>
</metazone>
<metazone type="Samara">
<long>
<standard>Samara</standard>
<daylight>Samara/yay</daylight>
</long>
</metazone>
<metazone type="Turkey">
<long>
<standard>Türkiya</standard>
<daylight>Türkiya/yay</daylight>
</long>
<commonlyUsed>true</commonlyUsed>
</metazone>
<metazone type="Volgograd">
<long>
<standard>Volqoqrad</standard>
<daylight>Volqoqrad/yay</daylight>
</long>
</metazone>
</timeZoneNames>
</dates>
<numbers>
<symbols>
<decimal>,</decimal>
<group>.</group>
<list>;</list>
<percentSign>%</percentSign>
<nativeZeroDigit>0</nativeZeroDigit>
<patternDigit>#</patternDigit>
<plusSign>+</plusSign>
<minusSign>-</minusSign>
<exponential>E</exponential>
<perMille>‰</perMille>
<infinity>∞</infinity>
<nan>NaN</nan>
</symbols>
<currencyFormats>
<currencyFormatLength>
<currencyFormat>
<pattern>¤ #,##0.00</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
<currencies>
<currency type="ADP">
<displayName>Andora pesetası</displayName>
<displayName count="other">Andora pesetası</displayName>
</currency>
<currency type="AED">
<displayName>Birləşmiş ərəb emiratlar dirhamı</displayName>
<displayName count="other">BƏE dirhamı</displayName>
</currency>
<currency type="AFA">
<displayName>Əfgəni (AFA)</displayName>
<displayName count="other">Əfgən (AFA)</displayName>
</currency>
<currency type="AFN">
<displayName>Əfgəni</displayName>
<displayName count="other">Əfgən</displayName>
</currency>
<currency type="ALL">
<displayName>Alban leki</displayName>
<displayName count="other">Alban leki</displayName>
</currency>
<currency type="AMD">
<displayName>Erməni dramı</displayName>
<displayName count="other">Erməni dramı</displayName>
</currency>
<currency type="ANG">
<displayName>Hollandiya antila gilderi</displayName>
<displayName count="other">Hollandiya Antila gilderi</displayName>
</currency>
<currency type="AOA">
<displayName>Anqola kvanzası</displayName>
<displayName count="other">Anqola kvanzasi</displayName>
</currency>
<currency type="AOK">
<displayName>Anqola kvanzasi (1977-1990)</displayName>
<displayName count="other">Anqola kvanzasi (AOK)</displayName>
</currency>
<currency type="AON">
<displayName>Anqola yeni kvanzası (1990-2000)</displayName>
<displayName count="other">Anqola yeni kvanzasi (AON)</displayName>
</currency>
<currency type="AOR">
<displayName>Anqola kvanzası (1995-1999)</displayName>
<displayName count="other">Anqola kvanzasi (AOR)</displayName>
</currency>
<currency type="ARA">
<displayName>Argentina avstralı</displayName>
<displayName count="other">Argentina avstralı</displayName>
</currency>
<currency type="ARP">
<displayName>Argentina pesosu (1983-1985)</displayName>
<displayName count="other">Argentina pesosu (ARP)</displayName>
</currency>
<currency type="ARS">
<displayName>Argentina pesosu</displayName>
<displayName count="other">Argentina pesosu</displayName>
</currency>
<currency type="ATS">
<displayName>Avstriya şilingi</displayName>
<displayName count="other">Avstriya şilingi</displayName>
</currency>
<currency type="AUD">
<displayName>Avstraliya dolları</displayName>
<displayName count="other">Avstraliya dolları</displayName>
</currency>
<currency type="AWG">
<displayName>Aruba qilderi</displayName>
<displayName count="other">Aruba qilderi</displayName>
</currency>
<currency type="AZM">
<displayName>Manat</displayName>
<displayName count="other">Azərbaycan manatı (AZM)</displayName>
</currency>
<currency type="AZN">
<displayName>Azərbaycan manatı</displayName>
<displayName count="other">Azərbaycan manatı</displayName>
</currency>
<currency type="BAD">
<displayName>Bosniya-Herzeqovina dinarı</displayName>
<displayName count="other">Bosniya-Herzeqovina dinarı</displayName>
</currency>
<currency type="BAM">
<displayName>Bosniya-Herzeqovina markası</displayName>
<displayName count="other">Bosniya-Herzeqovina markası</displayName>
</currency>
<currency type="BBD">
<displayName>Barbados dolları</displayName>
<displayName count="other">Barbados dolları</displayName>
</currency>
<currency type="BDT">
<displayName>Banqladeş takası</displayName>
<displayName count="other">Banqladeş takası</displayName>
</currency>
<currency type="BEC">
<displayName>Belçika frankı (deyşirik)</displayName>
<displayName count="other">Belçika frankı (deyşirik)</displayName>
</currency>
<currency type="BEF">
<displayName>Belçika frankı</displayName>
<displayName count="other">Belçika frankı</displayName>
</currency>
<currency type="BEL">
<displayName>Belçika frankı (finans)</displayName>
<displayName count="other">Belçika frankı (finans)</displayName>
</currency>
<currency type="BGL">
<displayName>Bolqariya levası</displayName>
<displayName count="other">Bolqariya levası</displayName>
</currency>
<currency type="BGN">
<displayName>Bolqariya yeni levası</displayName>
<displayName count="other">Bolqariya yeni levası</displayName>
</currency>
<currency type="BHD">
<displayName>Bahreyn dinarı</displayName>
<displayName count="other">Bahreyn dinarı</displayName>
</currency>
<currency type="BIF">
<displayName>Burundi frankası</displayName>
<displayName count="other">Burundi frankası</displayName>
</currency>
<currency type="BMD">
<displayName>Bermuda dolları</displayName>
<displayName count="other">Bermuda dolları</displayName>
</currency>
<currency type="BND">
<displayName>Bruney dolları</displayName>
<displayName count="other">Bruney dolları</displayName>
</currency>
<currency type="BOB">
<displayName>Boliviano</displayName>
<displayName count="other">Boliviano</displayName>
</currency>
<currency type="BOP">
<displayName>Boliviya pesosu</displayName>
<displayName count="other">Boliviya pesosu</displayName>
</currency>
<currency type="BOV">
<displayName>Boliviya mvdolı</displayName>
<displayName count="other">Boliviya mvdolı</displayName>
</currency>
<currency type="BRB">
<displayName>Braziliya kruzeyro novası</displayName>
<displayName count="other">Braziliya kruzeyro novası</displayName>
</currency>
<currency type="BRC">
<displayName>Braziliya kruzadosu</displayName>
<displayName count="other">Braziliya kruzadosu</displayName>
</currency>
<currency type="BRE">
<displayName>Braziliya kruzeyrosu (1990-1993)</displayName>
<displayName count="other">Braziliya kruzeyrosu (BRE)</displayName>
</currency>
<currency type="BRL">
<displayName>Braziliya realı</displayName>
<displayName count="other">Braziliya realı</displayName>
</currency>
<currency type="BRN">
<displayName>Braziliya kruzado novası</displayName>
<displayName count="other">Braziliya kruzado novası</displayName>
</currency>
<currency type="BRR">
<displayName>Braziliya kruzeyrosu</displayName>
<displayName count="other">Braziliya kruzeyrosu</displayName>
</currency>
<currency type="BSD">
<displayName>Bahama dolları</displayName>
<displayName count="other">Bahama dolları</displayName>
</currency>
<currency type="BTN">
<displayName>Butan ngultrumu</displayName>
<displayName count="other">Butan ngultrumu</displayName>
</currency>
<currency type="BUK">
<displayName>Burmis kyatı</displayName>
<displayName count="other">Burmis kyatı</displayName>
</currency>
<currency type="BWP">
<displayName>Botsvana pulası</displayName>
<displayName count="other">Botsvana pulası</displayName>
</currency>
<currency type="BYB">
<displayName>Belarusiya yeni rublu</displayName>
<displayName count="other">Belarusiya yeni rublu</displayName>
</currency>
<currency type="BYR">
<displayName>Belarusiya rublu</displayName>
<displayName count="other">Belarusiya rublu</displayName>
</currency>
<currency type="BZD">
<displayName>Beliz dolları</displayName>
<displayName count="other">Beliz dolları</displayName>
</currency>
<currency type="CAD">
<displayName>Kanadiya dolları</displayName>
<displayName count="other">Kanada dolları</displayName>
</currency>
<currency type="CDF">
<displayName>Konqoliz frank konqolaysı</displayName>
<displayName count="other">Konqoliz frank konqolaysı</displayName>
</currency>
<currency type="CHE">
<displayName>WIR Yevrosu</displayName>
<displayName count="other">WIR Yevrosu</displayName>
</currency>
<currency type="CHF">
<displayName>İsveçriya frankası</displayName>
<displayName count="other">İsveçriya frankası</displayName>
</currency>
<currency type="CHW">
<displayName>WIR frankası</displayName>
<displayName count="other">WIR frankası</displayName>
</currency>
<currency type="CLP">
<displayName>Çili pesosu</displayName>
<displayName count="other">Çili pesosu</displayName>
</currency>
<currency type="CNY">
<displayName>Çin yuan renminbi</displayName>
<displayName count="other">Çin yuanı</displayName>
</currency>
<currency type="COP">
<displayName>Kolombiya pesosu</displayName>
<displayName count="other">Kolombiya pesosu</displayName>
</currency>
<currency type="CRC">
<displayName>Kosta rika kolonu</displayName>
<displayName count="other">Kosta Rika kolonu</displayName>
</currency>
<currency type="CSD">
<displayName>Qədimi Serb dinarı</displayName>
<displayName count="other">Qədimi serb dinarı</displayName>
</currency>
<currency type="CSK">
<displayName>Çexoslavakiya korunası</displayName>
<displayName count="other">Çexoslavakiya korunası</displayName>
</currency>
<currency type="CUP">
<displayName>Kuba pesosu</displayName>
<displayName count="other">Kuba pesosu</displayName>
</currency>
<currency type="CVE">
<displayName>Kape Verde eskudosu</displayName>
<displayName count="other">Kape Verde eskudosu</displayName>
</currency>
<currency type="CYP">
<displayName>Kipr paundu</displayName>
<displayName count="other">Kipr paundu</displayName>
</currency>
<currency type="CZK">
<displayName>Çex respublikası korunası</displayName>
<displayName count="other">Cex respublika korunası</displayName>
</currency>
<currency type="DDM">
<displayName>şərq almaniya ostmarkı</displayName>
<displayName count="other">Şərq Almaniya ostmarkı</displayName>
</currency>
<currency type="DEM">
<displayName>alman markası</displayName>
<displayName count="other">Alman markası</displayName>
</currency>
<currency type="DJF">
<displayName>jibouti frankası</displayName>
<displayName count="other">Jibouti frankası</displayName>
</currency>
<currency type="DKK">
<displayName>Danemarka kronası</displayName>
<displayName count="other">Danemarka kronası</displayName>
</currency>
<currency type="DOP">
<displayName>dominika pesosu</displayName>
<displayName count="other">Dominika pesosu</displayName>
</currency>
<currency type="DZD">
<displayName>Alcəzir dinarı</displayName>
<displayName count="other">Alcəzir dinarı</displayName>
</currency>
<currency type="ECS">
<displayName>ekvador sukresi</displayName>
<displayName count="other">Ekvador sukresi</displayName>
</currency>
<currency type="EEK">
<displayName>Estoniya krunu</displayName>
<displayName count="other">Estoniya krunu</displayName>
</currency>
<currency type="EGP">
<displayName>misir paundu</displayName>
<displayName count="other">Misir paundu</displayName>
</currency>
<currency type="ERN">
<displayName>Eirtreya nakfası</displayName>
<displayName count="other">Eritreya nakfası</displayName>
</currency>
<currency type="ESA">
<displayName>İspan pesetası (A)</displayName>
<displayName count="other">İspan pesetası (A account)</displayName>
</currency>
<currency type="ESB">
<displayName>İspan pesetası (dəyşirik)</displayName>
<displayName count="other">İspan pesetası (dəyşirik)</displayName>
</currency>
<currency type="ESP">
<displayName>İspan pesetası</displayName>
<displayName count="other">İspan pesetası</displayName>
</currency>
<currency type="ETB">
<displayName>Efiopiya birası</displayName>
<displayName count="other">Efiopiya birası</displayName>
</currency>
<currency type="EUR">
<displayName>Yevro</displayName>
<displayName count="other">yevro</displayName>
</currency>
<currency type="FIM">
<displayName>Fin markası</displayName>
<displayName count="other">Fin markası</displayName>
</currency>
<currency type="FJD">
<displayName>Fici dolları</displayName>
<displayName count="other">Fici dolları</displayName>
</currency>
<currency type="FKP">
<displayName>Folkland Adası paundu</displayName>
<displayName count="other">Folkland adası paundu</displayName>
</currency>
<currency type="FRF">
<displayName>Fransız markası</displayName>
<displayName count="other">Fransız markası</displayName>
</currency>
<currency type="GBP">
<displayName>Britaniya paund sterlingi</displayName>
<displayName count="other">Britaniya paund sterlingi</displayName>
</currency>
<currency type="GEK">
<displayName>Gürcüstan kupon lariti</displayName>
<displayName count="other">Gürcüstan kupon lariti</displayName>
</currency>
<currency type="GEL">
<displayName>Gürcüstan larisi</displayName>
<displayName count="other">Gürcüstan larisi</displayName>
</currency>
<currency type="GHC">
<displayName>Qana sedisi (1979-2007)</displayName>
<displayName count="other">Qana sedisi (GHC)</displayName>
</currency>
<currency type="GHS">
<displayName>Qana sedisi</displayName>
<displayName count="other">Qana sedisi</displayName>
</currency>
<currency type="GIP">
<displayName>Gibraltar paundu</displayName>
<displayName count="other">Gibraltar paundu</displayName>
</currency>
<currency type="GMD">
<displayName>Qambiya dalasi</displayName>
<displayName count="other">Qambiya dalasi</displayName>
</currency>
<currency type="GNF">
<displayName>Qvineya frankası</displayName>
<displayName count="other">qvineya frankası</displayName>
</currency>
<currency type="GNS">
<displayName>Qvineya sulisi</displayName>
<displayName count="other">Gineya sulisi</displayName>
</currency>
<currency type="GQE">
<displayName>Ekvatoriya Gvineya ekvele quneanası</displayName>
<displayName count="other">Ekvatoriya Gvineya ekvele quneanası</displayName>
</currency>
<currency type="GRD">
<displayName>Yunan draçması</displayName>
<displayName count="other">Yunan draxması</displayName>
</currency>
<currency type="GTQ">
<displayName>Qvatemala küetzalı</displayName>
<displayName count="other">Qvatemala küetzalı</displayName>
</currency>
<currency type="GWE">
<displayName>Portugal Qvineya eskudosu</displayName>
<displayName count="other">Portugal Qvineya eskudosu</displayName>
</currency>
<currency type="GWP">
<displayName>Qvineya-Bisau pesosu</displayName>
<displayName count="other">Qvineya-Bisau pesosu</displayName>
</currency>
<currency type="GYD">
<displayName>Quyana dolları</displayName>
<displayName count="other">Quyana dolları</displayName>
</currency>
<currency type="HKD">
<displayName>Honk Konq dolları</displayName>
<displayName count="other">Honk Konq dolları</displayName>
</currency>
<currency type="HNL">
<displayName>Honduras lempirası</displayName>
<displayName count="other">Honduras lempirası</displayName>
</currency>
<currency type="HRD">
<displayName>Xorvatiya dinarı</displayName>
<displayName count="other">Xorvatiya dinarı</displayName>
</currency>
<currency type="HRK">
<displayName>Xorvatiya kunu</displayName>
<displayName count="other">Xorvatiya kunu</displayName>
</currency>
<currency type="HTG">
<displayName>Haiti qourdu</displayName>
<displayName count="other">Haiti qourdu</displayName>
</currency>
<currency type="HUF">
<displayName>Macarıstan forinti</displayName>
<displayName count="other">Macarıstan forinti</displayName>
</currency>
<currency type="IDR">
<displayName>İndoneziya rupisi</displayName>
<displayName count="other">İndoneziya rupisi</displayName>
</currency>
<currency type="IEP">
<displayName>İrlandiya paundu</displayName>
<displayName count="other">İrlandiya paundu</displayName>
</currency>
<currency type="ILP">
<displayName>İzrail paundu</displayName>
<displayName count="other">İzrail paundu</displayName>
</currency>
<currency type="ILS">
<displayName>İzrail yeni şekeli</displayName>
<displayName count="other">İzrail ail yeni şekeli</displayName>
</currency>
<currency type="INR">
<displayName>Hindistan rupisi</displayName>
<displayName count="other">Hindistan rupisi</displayName>
</currency>
<currency type="IQD">
<displayName>İraq dinarı</displayName>
<displayName count="other">İraq dinarı</displayName>
</currency>
<currency type="IRR">
<displayName>İran rialı</displayName>
<displayName count="other">İran rialı</displayName>
</currency>
<currency type="ISK">
<displayName>Aysland kronası</displayName>
<displayName count="other">Aysland kronası</displayName>
</currency>
<currency type="ITL">
<displayName>İtaliya lirası</displayName>
<displayName count="other">İtaliya lirası</displayName>
</currency>
<currency type="JMD">
<displayName>Yamayka dolları</displayName>
<displayName count="other">Yamayka dolları</displayName>
</currency>
<currency type="JOD">
<displayName>İordaniya dinarı</displayName>
<displayName count="other">İordaniya dinarı</displayName>
</currency>
<currency type="JPY">
<displayName>Yapon yeni</displayName>
<displayName count="other">Yapon yeni</displayName>
</currency>
<currency type="KES">
<displayName>Kenya şillingi</displayName>
<displayName count="other">Kenya şillingi</displayName>
</currency>
<currency type="KGS">
<displayName>Kırğızstan somu</displayName>
<displayName count="other">Kırğızstan somu</displayName>
</currency>
<currency type="KHR">
<displayName>Kambodiya riyeli</displayName>
<displayName count="other">Kambodiya riyeli</displayName>
</currency>
<currency type="KMF">
<displayName>Komoro frankı</displayName>
<displayName count="other">Komoro frankı</displayName>
</currency>
<currency type="KPW">
<displayName>Şimal koreya vonu</displayName>
<displayName count="other">Şimal Koreya vonu</displayName>
</currency>
<currency type="KRW">
<displayName>Cənub koreya vonu</displayName>
<displayName count="other">Cənub Koreya vonu</displayName>
</currency>
<currency type="KWD">
<displayName>Kuveyt dinarı</displayName>
<displayName count="other">Kuveyt dinarı</displayName>
</currency>
<currency type="KYD">
<displayName>Keyman Adaları dolları</displayName>
<displayName count="other">Keyman Adaları dolları</displayName>
</currency>
<currency type="KZT">
<displayName>Kazaxstan tenqesi</displayName>
<displayName count="other">Kazaxstan tenqesi</displayName>
</currency>
<currency type="LAK">
<displayName>Laotiya kipi</displayName>
<displayName count="other">Laotiya kipi</displayName>
</currency>
<currency type="LBP">
<displayName>Lebanon paundu</displayName>
<displayName count="other">Lebanon paundu</displayName>
</currency>
<currency type="LKR">
<displayName>Şri Lanka rupisi</displayName>
<displayName count="other">Şri Lanka rupisi</displayName>
</currency>
<currency type="LRD">
<displayName>Liberiya dolları</displayName>
<displayName count="other">Liberiya dolları</displayName>
</currency>
<currency type="LSL">
<displayName>Lesoto lotisi</displayName>
<displayName count="other">Lesoto lotisi</displayName>
</currency>
<currency type="LTL">
<displayName>Litva litası</displayName>
<displayName count="other">Litva litası</displayName>
</currency>
<currency type="LTT">
<displayName>Litva talonası</displayName>
<displayName count="other">Litva talonası</displayName>
</currency>
<currency type="LUC">
<displayName>Luksemburq frankası (dəyişik)</displayName>
<displayName count="other">Luksemburq dəyişik frankası</displayName>
</currency>
<currency type="LUF">
<displayName>Luksemburq frankası</displayName>
<displayName count="other">Luksemburq frankası</displayName>
</currency>
<currency type="LUL">
<displayName>Luksemburq frankası (finans)</displayName>
<displayName count="other">Luksemburq finans frankası</displayName>
</currency>
<currency type="LVL">
<displayName>Latviya latsı</displayName>
<displayName count="other">Latviya latsı</displayName>
</currency>
<currency type="LVR">
<displayName>Latviya rublu</displayName>
<displayName count="other">Latviya rublu</displayName>
</currency>
<currency type="LYD">
<displayName>Liviya dinarı</displayName>
<displayName count="other">Liviya dinarı</displayName>
</currency>
<currency type="MAD">
<displayName>Morokko dirhamı</displayName>
<displayName count="other">Morokko dirhamı</displayName>
</currency>
<currency type="MAF">
<displayName>Morokko frankası</displayName>
<displayName count="other">Morokko frankası</displayName>
</currency>
<currency type="MDL">
<displayName>Moldova leyusu</displayName>
<displayName count="other">Moldova leyusu</displayName>
</currency>
<currency type="MGA">
<displayName>Madaqaskar ariarisi</displayName>
<displayName count="other">Madaqaskar ariarisi</displayName>
</currency>
<currency type="MGF">
<displayName>Madaqaskar frankası</displayName>
<displayName count="other">Madaqaskar frankası</displayName>
</currency>
<currency type="MKD">
<displayName>Masedoniya denarı</displayName>
<displayName count="other">Masedoniya denarı</displayName>
</currency>
<currency type="MLF">
<displayName>Mali frankı</displayName>
<displayName count="other">Mali frankı</displayName>
</currency>
<currency type="MMK">
<displayName>Myanmar kiyatı</displayName>
<displayName count="other">Myanmar kiyatı</displayName>
</currency>
<currency type="MNT">
<displayName>Monqoliya tuqriki</displayName>
<displayName count="other">Monqoliya tuqriki</displayName>
</currency>
<currency type="MOP">
<displayName>Makao patakası</displayName>
<displayName count="other">Makao patakası</displayName>
</currency>
<currency type="MRO">
<displayName>Mavritaniya oyuquyası</displayName>
<displayName count="other">Mavritaniya oyuquyası</displayName>
</currency>
<currency type="MTP">
<displayName>Maltiz paundu</displayName>
<displayName count="other">Maltiz paundu</displayName>
</currency>
<currency type="MUR">
<displayName>Mavritis rupiyi</displayName>
<displayName count="other">Mavritis rupiyi</displayName>
</currency>
<currency type="MVR">
<displayName>Maldiv Adaları rufiyi</displayName>
<displayName count="other">Maldiv adaları rufiyi</displayName>
</currency>
<currency type="MWK">
<displayName>Malavi kvaçası</displayName>
<displayName count="other">Malavi kvaçası</displayName>
</currency>
<currency type="MXN">
<displayName>Meksika pesosu</displayName>
<displayName count="other">Meksika pesosu</displayName>
</currency>
<currency type="MXP">
<displayName>Meksika gümüş pesosu</displayName>
<displayName count="other">Meksika gümüş pesosu</displayName>
</currency>
<currency type="MYR">
<displayName>Malaysiya rinqiti</displayName>
<displayName count="other">Malaysiya rinqiti</displayName>
</currency>
<currency type="MZE">
<displayName>Mozambik eskudosu</displayName>
<displayName count="other">Mozambik eskudosu</displayName>
</currency>
<currency type="MZM">
<displayName>Qədim Mozambik metikalı</displayName>
<displayName count="other">Qədim mozambik metikalı</displayName>
</currency>
<currency type="MZN">
<displayName>Mozambik metikalı</displayName>
<displayName count="other">Mozambik metikalı</displayName>
</currency>
<currency type="NAD">
<displayName>Namibiya dolları</displayName>
<displayName count="other">Namibiya dolları</displayName>
</currency>
<currency type="NGN">
<displayName>Nigeriya nairi</displayName>
<displayName count="other">Nigeriya nairi</displayName>
</currency>
<currency type="NIC">
<displayName>Nikaraqua kordobu</displayName>
<displayName count="other">Nikaraqua kordobu</displayName>
</currency>
<currency type="NLG">
<displayName>Hollandiya gilderi</displayName>
<displayName count="other">Hollandiya gilderi</displayName>
</currency>
<currency type="NOK">
<displayName>Norveç kronu</displayName>
<displayName count="other">Norveç kronu</displayName>
</currency>
<currency type="NPR">
<displayName>Nepal rupiyi</displayName>
<displayName count="other">Nepal rupiyi</displayName>
</currency>
<currency type="NZD">
<displayName>Yeni Zelandiya dolları</displayName>
<displayName count="other">Yeni Zelandiya dolları</displayName>
</currency>
<currency type="OMR">
<displayName>Mman rialı</displayName>
<displayName count="other">Oman rialı</displayName>
</currency>
<currency type="PAB">
<displayName>Panamaniya balboa</displayName>
<displayName count="other">Panamaniya balboa</displayName>
</currency>
<currency type="PEI">
<displayName>Peru inti</displayName>
<displayName count="other">Peru inti</displayName>
</currency>
<currency type="PEN">
<displayName>Peru sol nuyevosu</displayName>
<displayName count="other">Peru sol nuyevosu</displayName>
</currency>
<currency type="PES">
<displayName>Peru solu</displayName>
<displayName count="other">Peru solu</displayName>
</currency>
<currency type="PGK">
<displayName>Papua Yeni Qvineya kini</displayName>
<displayName count="other">Papua Yeni Qvineya kini</displayName>
</currency>
<currency type="PHP">
<displayName>Filipin pesosu</displayName>
<displayName count="other">Filipin pesosu</displayName>
</currency>
<currency type="PKR">
<displayName>Pakistan rupiyi</displayName>
<displayName count="other">Pakistan rupiyi</displayName>
</currency>
<currency type="PLN">
<displayName>Polsha zlotisi</displayName>
<displayName count="other">Polsha zlotisi</displayName>
</currency>
<currency type="PLZ">
<displayName>Polsha zlotisi (1950-1995)</displayName>
<displayName count="other">Polsha zlotisi (PLZ)</displayName>
</currency>
<currency type="PTE">
<displayName>Portuqal eskudosu</displayName>
<displayName count="other">Portuqal eskudosu</displayName>
</currency>
<currency type="PYG">
<displayName>Paraqvay quarani</displayName>
<displayName count="other">Paraqvay quarani</displayName>
</currency>
<currency type="QAR">
<displayName>Qatar rialı</displayName>
<displayName count="other">Qatar rialı</displayName>
</currency>
<currency type="RHD">
<displayName>Rodezian dolları</displayName>
<displayName count="other">Rodezian dolları</displayName>
</currency>
<currency type="ROL">
<displayName>Qədim Roman leyu</displayName>
<displayName count="other">Roman qədimi leyu</displayName>
</currency>
<currency type="RON">
<displayName>Roman leyu</displayName>
<displayName count="other">Roman leyu</displayName>
</currency>
<currency type="RSD">
<displayName>Serbiya dinarı</displayName>
<displayName count="other">Serbiya dinarı</displayName>
</currency>
<currency type="RUB">
<displayName>Rusiya rublu</displayName>
<displayName count="other">Rusiya rublu</displayName>
</currency>
<currency type="RUR">
<displayName>Rusiya rublu (1991-1998)</displayName>
<displayName count="other">Rusiya rublu (RUR)</displayName>
</currency>
<currency type="RWF">
<displayName>Rvanda frankı</displayName>
<displayName count="other">Rvanda frankı</displayName>
</currency>
<currency type="SAR">
<displayName>Saudi riyalı</displayName>
<displayName count="other">Saudi riyalı</displayName>
</currency>
<currency type="SBD">
<displayName>Solomon Adaları dolları</displayName>
<displayName count="other">Solomon Adaları dolları</displayName>
</currency>
<currency type="SCR">
<displayName>Seyçel rupiyi</displayName>
<displayName count="other">Seyçel rupiyi</displayName>
</currency>
<currency type="SDG">
<displayName>Sudan paundu</displayName>
<displayName count="other">Sudan paundu</displayName>
</currency>
<currency type="SEK">
<displayName>İsveç kronu</displayName>
<displayName count="other">İsveç kronu</displayName>
</currency>
<currency type="SGD">
<displayName>Sinqapur dolları</displayName>
<displayName count="other">Sinqapur dolları</displayName>
</currency>
<currency type="SIT">
<displayName>Sloveniya toları</displayName>
<displayName count="other">Sloveniya toları</displayName>
</currency>
<currency type="SKK">
<displayName>Slovak korunası</displayName>
<displayName count="other">Slovak korunası</displayName>
</currency>
<currency type="SOS">
<displayName>Somaliya şillingi</displayName>
<displayName count="other">Somaliya şillingi</displayName>
</currency>
<currency type="SRD">
<displayName>Surinam dolları</displayName>
<displayName count="other">Surinam dolları</displayName>
</currency>
<currency type="SUR">
<displayName>Sovet rublu</displayName>
<displayName count="other">Sovet rublu</displayName>
</currency>
<currency type="SVC">
<displayName>el salvador kolonu</displayName>
<displayName count="other">El Salvador kolonu</displayName>
</currency>
<currency type="SYP">
<displayName>Siriya paundu</displayName>
<displayName count="other">Siriya paundu</displayName>
</currency>
<currency type="SZL">
<displayName>Svazilənd lilangeni</displayName>
<displayName count="other">Svazilənd lilangeni</displayName>
</currency>
<currency type="THB">
<displayName>tay bahtı</displayName>
<displayName count="other">Tay bahtı</displayName>
</currency>
<currency type="TJR">
<displayName>Tacikistan rublu</displayName>
<displayName count="other">Tacikistan rublu</displayName>
</currency>
<currency type="TJS">
<displayName>Tacikistan somoni</displayName>
<displayName count="other">Tacikistan somoni</displayName>
</currency>
<currency type="TMM">
<displayName>Türkmənistan manatı</displayName>
<displayName count="other">Türkmənistan manatı</displayName>
</currency>
<currency type="TND">
<displayName>Tunis dinarı</displayName>
<displayName count="other">Tunis dinarı</displayName>
</currency>
<currency type="TOP">
<displayName>Tonqa panqası</displayName>
<displayName count="other">Tonqa panqası</displayName>
</currency>
<currency type="TPE">
<displayName>Timor eskudu</displayName>
<displayName count="other">Timor eskudu</displayName>
</currency>
<currency type="TRL">
<displayName>Türk köhnə lirası</displayName>
<displayName count="other">Türk köhnə lirası</displayName>
</currency>
<currency type="TRY">
<displayName>Türk lirası</displayName>
<displayName count="other">Türk lira</displayName>
</currency>
<currency type="TWD">
<displayName>Tayvan yeni dolları</displayName>
<displayName count="other">Tayvan yeni dolları</displayName>
</currency>
<currency type="TZS">
<displayName>Tanzaniya şilingi</displayName>
<displayName count="other">Tanzaniya şilingi</displayName>
</currency>
<currency type="UAH">
<displayName>Ukraina hrivnyası</displayName>
<displayName count="other">Ukraina hrivnyası</displayName>
</currency>
<currency type="UAK">
<displayName>Ukraina karbovenesası</displayName>
<displayName count="other">Ukraina karbovenesası</displayName>
</currency>
<currency type="UGS">
<displayName>Uqanda şelingi (1966-1987)</displayName>
<displayName count="other">Uqanda şelingi (UGS)</displayName>
</currency>
<currency type="UGX">
<displayName>Uqanda şelingi</displayName>
<displayName count="other">Uqanda şelingi</displayName>
</currency>
<currency type="USD">
<displayName>ABŞ dolları</displayName>
<displayName count="other">ABŞ dolları</displayName>
</currency>
<currency type="USN">
<displayName>ABŞ dolları (yeni gün)</displayName>
<displayName count="other">ABŞ dolları (yeni gün)</displayName>
</currency>
<currency type="USS">
<displayName>ABŞ dolları (həmin gün)</displayName>
<displayName count="other">ABŞ dolları (həmin gün)</displayName>
</currency>
<currency type="UYI">
<displayName>Uruqvay pesosu Unidades Indexadas</displayName>
<displayName count="other">Uruqvay pesosu unidades indexadas</displayName>
</currency>
<currency type="UYP">
<displayName>Uruqvay pesosu (1975-1993)</displayName>
<displayName count="other">Uruqvay pesosu (UYP)</displayName>
</currency>
<currency type="UYU">
<displayName>Uruqvay pesosu (Uruguayo)</displayName>
<displayName count="other">Uruqvay pesosu</displayName>
</currency>
<currency type="UZS">
<displayName>özbəkistan sumu</displayName>
<displayName count="other">Özbəkistan sumu</displayName>
</currency>
<currency type="VEB">
<displayName>venesuela bolivarı</displayName>
<displayName count="other">Venesuela bolivarı</displayName>
</currency>
<currency type="VEF">
<displayName>venesuela bolivar fuerti</displayName>
<displayName count="other">Venesuela Bolivar fuerti</displayName>
</currency>
<currency type="VND">
<displayName>vyetnam donqu</displayName>
<displayName count="other">Vyetnam donqu</displayName>
</currency>
<currency type="WST">
<displayName>qərb samoa talası</displayName>
<displayName count="other">Qərb Samoa talası</displayName>
</currency>
<currency type="XAG">
<displayName>gümüş</displayName>
<displayName count="other">gümüş</displayName>
</currency>
<currency type="XAU">
<displayName>qızıl</displayName>
<displayName count="other">qızıl</displayName>
</currency>
<currency type="XCD">
<displayName>şərq karib dolları</displayName>
<displayName count="other">Şərq karib dolları</displayName>
</currency>
<currency type="XFO">
<displayName>Fransız gızıl frankı</displayName>
<displayName count="other">Fransız gızıl frankı</displayName>
</currency>
<currency type="XFU">
<displayName>Fransız UİC frankı</displayName>
<displayName count="other">Fransız UİC frankı</displayName>
</currency>
<currency type="XOF">
<displayName>CFA franka BCEAO</displayName>
<displayName count="other">CFA franka BCEAO</displayName>
</currency>
<currency type="XPD">
<displayName>Palladium</displayName>
<displayName count="other">Palladium</displayName>
</currency>
<currency type="XPF">
<displayName>CFP frankı</displayName>
<displayName count="other">CFP frankı</displayName>
</currency>
<currency type="XPT">
<displayName>platinum</displayName>
<displayName count="other">platinum</displayName>
</currency>
<currency type="XXX">
<displayName>bilinməyən vəya gəcərsiz</displayName>
<displayName count="other">bilinməyən vəya gəcərsiz</displayName>
</currency>
<currency type="YDD">
<displayName>yemen dinarı</displayName>
<displayName count="other">Yemen dinarı</displayName>
</currency>
<currency type="YER">
<displayName>yemen rialı</displayName>
<displayName count="other">Yemen rialı</displayName>
</currency>
<currency type="YUD">
<displayName>Yuqoslaviya dinarı (hard)</displayName>
<displayName count="other">Yuqoslaviya dinarı (hard)</displayName>
</currency>
<currency type="YUM">
<displayName>Yuqoslaviya yeni dinarı (hard)</displayName>
<displayName count="other">Yuqoslaviya yeni dinarı (hard)</displayName>
</currency>
<currency type="YUN">
<displayName>Yuqoslaviya dinarı (dəyişik)</displayName>
<displayName count="other">Yuqoslaviya dinarı (dəyişik)</displayName>
</currency>
<currency type="ZAL">
<displayName>Cənub afrika randı (finans)</displayName>
<displayName count="other">Cənub Afrika randı (finans)</displayName>
</currency>
<currency type="ZAR">
<displayName>Cənub afrika randı</displayName>
<displayName count="other">Cənub Afrika randı</displayName>
</currency>
<currency type="ZMK">
<displayName>Zambiya kvaçı</displayName>
<displayName count="other">Zambiya kvaçı</displayName>
</currency>
<currency type="ZRN">
<displayName>Zair yeni zairi</displayName>
<displayName count="other">Zair yeni zairi</displayName>
</currency>
<currency type="ZRZ">
<displayName>Zair zairi</displayName>
<displayName count="other">Zair zairi</displayName>
</currency>
<currency type="ZWD">
<displayName>Zimbabve dolları</displayName>
<displayName count="other">Zimbabve dolları</displayName>
</currency>
</currencies>
</numbers>
<units>
<unit type="day">
<unitPattern count="other">{0} gün</unitPattern>
</unit>
<unit type="hour">
<unitPattern count="other">{0} saat</unitPattern>
</unit>
<unit type="minute">
<unitPattern count="other">{0} dəqiqə</unitPattern>
</unit>
<unit type="month">
<unitPattern count="other">{0} ay</unitPattern>
</unit>
<unit type="second">
<unitPattern count="other">{0} saniyə</unitPattern>
</unit>
<unit type="week">
<unitPattern count="other">{0} həftə</unitPattern>
</unit>
<unit type="year">
<unitPattern count="other">{0} il</unitPattern>
</unit>
</units>
<posix>
<messages>
<yesstr>hə:h</yesstr>
<nostr>yox:y</nostr>
</messages>
</posix>
</ldml>