el.xml 181 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 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123
<?xml version="1.0" encoding="UTF-8" ?>
<ldml>
	<identity>
		<version number="$Revision: 1.116 $"/>
		<generation date="$Date: 2009/06/15 20:34:50 $"/>
		<language type="el"/>
	</identity>
	<localeDisplayNames>
		<languages>
			<language type="aa">Αφάρ</language>
			<language type="ab">Αμπχαζικά</language>
			<language type="ace">Αχινίζ</language>
			<language type="ach">Ακολί</language>
			<language type="ada">Αντάνγκμε</language>
			<language type="ady">Αντιγκέα</language>
			<language type="ae">Αβεστάν</language>
			<language type="af">Αφρικάανς</language>
			<language type="afa">Αφροασιατική γλώσσα</language>
			<language type="afh">Αφριχίλι</language>
			<language type="ain">Αϊνού</language>
			<language type="ak">Ακάν</language>
			<language type="akk">Ακάντιαν</language>
			<language type="ale">Αλούτ</language>
			<language type="alg">Γλώσσα Αλγκονκιάν</language>
			<language type="alt">Νότια Αλαταϊκά</language>
			<language type="am">Αμαρικά</language>
			<language type="an">Αραγκονικά</language>
			<language type="ang">Παλαιά Αγγλικά</language>
			<language type="anp">Ανγκικά</language>
			<language type="apa">Γλώσσα Απάτσι</language>
			<language type="ar">Αραβικά</language>
			<language type="arc">Αραμαϊκά</language>
			<language type="arn">Αρουκάνιαν</language>
			<language type="arp">Αράπαχο</language>
			<language type="art">Τεχνητή γλώσσα</language>
			<language type="arw">Αραγουάκ</language>
			<language type="as">Ασαμεζικά</language>
			<language type="ast">Αστουριανά</language>
			<language type="ath">Γλώσσα Αθαπάσκαν</language>
			<language type="aus">Αυστραλιανή γλώσσα</language>
			<language type="av">Άβαρικ</language>
			<language type="awa">Αγουαντί</language>
			<language type="ay">Αϊμάρα</language>
			<language type="az">Αζερμπαϊτζανικά</language>
			<language type="ba">Μπασκίρ</language>
			<language type="bad">Μπάντα</language>
			<language type="bai">Γλώσσα Μπαμιλέκ</language>
			<language type="bal">Μπαλούτσι</language>
			<language type="ban">Μπαλινίζ</language>
			<language type="bas">Μπάσα</language>
			<language type="bat">Βαλτική γλώσσα</language>
			<language type="be">Λευκορωσικά</language>
			<language type="bej">Μπέζα</language>
			<language type="bem">Μπέμπα</language>
			<language type="ber">Μπέρμπερ</language>
			<language type="bg">Βουλγαρικά</language>
			<language type="bh">Μπιχάρι</language>
			<language type="bho">Μποζπούρι</language>
			<language type="bi">Μπισλάμα</language>
			<language type="bik">Μπικόλ</language>
			<language type="bin">Μπίνι</language>
			<language type="bla">Σικσίκα</language>
			<language type="bm">Μπαμπάρα</language>
			<language type="bn">Μπενγκάλι</language>
			<language type="bnt">Μπαντού</language>
			<language type="bo">Θιβετιανά</language>
			<language type="br">Βρετονικά</language>
			<language type="bra">Μπρατζ</language>
			<language type="bs">Βοσνιακά</language>
			<language type="btk">Μπατάκ</language>
			<language type="bua">Μπουριάτ</language>
			<language type="bug">Μπουγκίζ</language>
			<language type="byn">Μπλιν</language>
			<language type="ca">Καταλανικά</language>
			<language type="cad">Κάντο</language>
			<language type="cai">Ινδιανική γλώσσα Κεντρικής Αμερικής</language>
			<language type="car">Καρίμπ</language>
			<language type="cau">Καυκάσια γλώσσα</language>
			<language type="cch">Ατσάμ</language>
			<language type="ce">Τσέτσνιαν</language>
			<language type="ceb">Κεμπουάνο</language>
			<language type="cel">Κελτική γλώσσα</language>
			<language type="ch">Καμόρρο</language>
			<language type="chb">Τσίμπτσα</language>
			<language type="chg">Τσαγκατάι</language>
			<language type="chk">Τσουκίζι</language>
			<language type="chm">Μάρι</language>
			<language type="chn">Ιδιωματικά Σινούκ</language>
			<language type="cho">Τσοκτάου</language>
			<language type="chp">Τσίπιουαν</language>
			<language type="chr">Τσερόκι</language>
			<language type="chy">Σεγιέν</language>
			<language type="cmc">Χαμική γλώσσα</language>
			<language type="co">Κορσικανικά</language>
			<language type="cop">Κοπτικά</language>
			<language type="cpe">Κρεόλ ή Πίντγκιν βάσει Αγγλικών</language>
			<language type="cpf">Κρεόλ ή Πίντγκιν βάσει Γαλλικών</language>
			<language type="cpp">Κρεόλ και Πίντγκιν βάσει Πορτογαλικών</language>
			<language type="cr">Κρι</language>
			<language type="crh">Τουρκικά Κριμαίας</language>
			<language type="crp">Κρεόλ ή Πίντγκιν</language>
			<language type="cs">Τσεχικά</language>
			<language type="csb">Κασούμπιαν</language>
			<language type="cu">Εκκλησιαστικά Σλαβικά</language>
			<language type="cus">Γλώσσα Κουσιτίκ</language>
			<language type="cv">Χουβάς</language>
			<language type="cy">Ουαλικά</language>
			<language type="da">Δανικά</language>
			<language type="dak">Ντακότα</language>
			<language type="dar">Ντάργκουα</language>
			<language type="day">Νταγιάκ</language>
			<language type="de">Γερμανικά</language>
			<language type="de_AT">Γερμανικά Αυστρίας</language>
			<language type="de_CH">Γερμανικά Ελβετίας</language>
			<language type="del">Ντέλαγουερ</language>
			<language type="den">Σλαβικά</language>
			<language type="dgr">Ντόγκριμπ</language>
			<language type="din">Ντίνκα</language>
			<language type="doi">Ντόγκρι</language>
			<language type="dra">Γλώσσα Ντραβίδιαν</language>
			<language type="dsb">Γλώσσα Κάτω Λουσατίας</language>
			<language type="dua">Ντουάλα</language>
			<language type="dum">Μέσα Ολλανδικά</language>
			<language type="dv">Ντιβέχι</language>
			<language type="dyu">Ντογιούλα</language>
			<language type="dz">Ντζόνγκχα</language>
			<language type="ee">Γι</language>
			<language type="efi">Εφίκ</language>
			<language type="egy">Αρχαία Αιγυπτιακά</language>
			<language type="eka">Εκατζούκ</language>
			<language type="el">Ελληνικά</language>
			<language type="elx">Ελαμάιτ</language>
			<language type="en">Αγγλικά</language>
			<language type="en_AU">Αγγλικά Αυστραλίας</language>
			<language type="en_CA">Αγγλικά Καναδά</language>
			<language type="en_GB">Αγγλικά Ηνωμένου Βασιλείου</language>
			<language type="en_US">Αγγλικά Η.Π.Α.</language>
			<language type="enm">Μέσα Αγγλικά</language>
			<language type="eo">Εσπεράντο</language>
			<language type="es">Ισπανικά</language>
			<language type="es_419">Ισπανικά Λατινικής Αμερικής</language>
			<language type="es_ES">Ισπανικά Ιβηρικής</language>
			<language type="et">Εσθονικά</language>
			<language type="eu">Βασκικά</language>
			<language type="ewo">Εγουόντο</language>
			<language type="fa">Περσικά</language>
			<language type="fan">Φανγκ</language>
			<language type="fat">Φάντι</language>
			<language type="ff">Φουλάχ</language>
			<language type="fi">Φινλανδικά</language>
			<language type="fil">Φιλιππινεζικά</language>
			<language type="fiu">Φιννο-Ούγκριαν</language>
			<language type="fj">Φίτζι</language>
			<language type="fo">Φαρόε</language>
			<language type="fon">Φον</language>
			<language type="fr">Γαλλικά</language>
			<language type="fr_CA">Γαλλικά Καναδά</language>
			<language type="fr_CH">Γαλλικά Ελβετίας</language>
			<language type="frm">Μέσα Γαλλικά</language>
			<language type="fro">Παλαιά Γαλλικά</language>
			<language type="frr">Βόρεια Φριζιανά</language>
			<language type="frs">Ανατολικά Φριζιανά</language>
			<language type="fur">Φριούλιαν</language>
			<language type="fy">Δυτικά Φριζιανά</language>
			<language type="ga">Ιρλανδικά</language>
			<language type="gaa">Γκα</language>
			<language type="gay">Γκάγιο</language>
			<language type="gba">Γκμπάγια</language>
			<language type="gd">Σκωτικά Κελτικά</language>
			<language type="gem">Γερμανική γλώσσα</language>
			<language type="gez">Γκιζ</language>
			<language type="gil">Γκιλμπερτίζ</language>
			<language type="gl">Γαλικιανά</language>
			<language type="gmh">Μέσα Άνω Γερμανικά</language>
			<language type="gn">Γκουαρανί</language>
			<language type="goh">Παλαιά Άνω Γερμανικά</language>
			<language type="gon">Γκόντι</language>
			<language type="gor">Γκοροντάλο</language>
			<language type="got">Γοτθικά</language>
			<language type="grb">Γκρίμπο</language>
			<language type="grc">Αρχαία Ελληνικά</language>
			<language type="gsw">Ελβετικά Γερμανικά</language>
			<language type="gu">Γκουγιαράτι</language>
			<language type="gv">Μανξ</language>
			<language type="gwi">Γκουίτσιν</language>
			<language type="ha">Χάουσα</language>
			<language type="hai">Χάιντα</language>
			<language type="haw">Χαβανεζικά</language>
			<language type="he">Εβραϊκά</language>
			<language type="hi">Χίντι</language>
			<language type="hil">Χιλιγκαγιόν</language>
			<language type="him">Χιματσάλι</language>
			<language type="hit">Χιτίτε</language>
			<language type="hmn">Χμονγκ</language>
			<language type="ho">Χίρι Μότου</language>
			<language type="hr">Κροατικά</language>
			<language type="hsb">Γλώσσα Άνω Λουσατίας</language>
			<language type="ht">Αϊτιανά</language>
			<language type="hu">Ουγγρικά</language>
			<language type="hup">Χούπα</language>
			<language type="hy">Αρμενικά</language>
			<language type="hz">Χερέρο</language>
			<language type="ia">Ιντερλίνγκουα</language>
			<language type="iba">Ιμπάν</language>
			<language type="id">Ινδονησιακά</language>
			<language type="ie">Ιντερλίνγκουε</language>
			<language type="ig">Ίγκμπο</language>
			<language type="ii">Σικουάν Γι</language>
			<language type="ijo">Ιζό</language>
			<language type="ik">Ινουπιάκ</language>
			<language type="ilo">Ιλόκο</language>
			<language type="inc">Ινδική γλώσσα</language>
			<language type="ine">Ινδοευρωπαϊκή γλώσσα</language>
			<language type="inh">Ινγκούς</language>
			<language type="io">Ίντο</language>
			<language type="ira">Ιρανική γλώσσα</language>
			<language type="iro">Γλώσσα Ιροκόιαν</language>
			<language type="is">Ισλανδικά</language>
			<language type="it">Ιταλικά</language>
			<language type="iu">Ινουκτιτούτ</language>
			<language type="ja">Ιαπωνικά</language>
			<language type="jbo">Λόζμπαν</language>
			<language type="jpr">Ιουδαϊκά-Περσικά</language>
			<language type="jrb">Ιουδαϊκά-Αραβικά</language>
			<language type="jv">Ιαβανεζικά</language>
			<language type="ka">Γεωργιανά</language>
			<language type="kaa">Κάρα-Καλπάκ</language>
			<language type="kab">Καμπίλε</language>
			<language type="kac">Κατσίν</language>
			<language type="kaj">Τζου</language>
			<language type="kam">Κάμπα</language>
			<language type="kar">Καρέν</language>
			<language type="kaw">Κάουι</language>
			<language type="kbd">Καμπαρντιανά</language>
			<language type="kcg">Τουάπ</language>
			<language type="kfo">Κόρο</language>
			<language type="kg">Κονγκό</language>
			<language type="kha">Κάσι</language>
			<language type="khi">Γλώσσα Κοϊσάν</language>
			<language type="kho">Κοτανικά</language>
			<language type="ki">Κικούγιου</language>
			<language type="kj">Κουανιγιάμα</language>
			<language type="kk">Καζακικά</language>
			<language type="kl">Καλααλισούτ</language>
			<language type="km">Καμποτζιανά</language>
			<language type="kmb">Κιμπούντου</language>
			<language type="kn">Κανάντα</language>
			<language type="ko">Κορεατικά</language>
			<language type="kok">Κονκάνι</language>
			<language type="kos">Κοσραενικά</language>
			<language type="kpe">Κπέλε</language>
			<language type="kr">Κανούρι</language>
			<language type="krc">Καρατσάι-Μπαλκάρ</language>
			<language type="krl">Καρελιακά</language>
			<language type="kro">Κρου</language>
			<language type="kru">Κουρούχ</language>
			<language type="ks">Κασμίρι</language>
			<language type="ku">Κουρδικά</language>
			<language type="kum">Κουμγιούκ</language>
			<language type="kut">Κουτενάι</language>
			<language type="kv">Κόμι</language>
			<language type="kw">Κόρνις</language>
			<language type="ky">Κυργιζικά</language>
			<language type="la">Λατινικά</language>
			<language type="lad">Λαδίνο</language>
			<language type="lah">Λάχδα</language>
			<language type="lam">Λάμπα</language>
			<language type="lb">Λουξεμβουργικά</language>
			<language type="lez">Λαζγκιάν</language>
			<language type="lg">Γκάντα</language>
			<language type="li">Λιμβουργιανά</language>
			<language type="ln">Λινγκάλα</language>
			<language type="lo">Λαοθιανά</language>
			<language type="lol">Μόνγκο</language>
			<language type="loz">Λόζι</language>
			<language type="lt">Λιθουανικά</language>
			<language type="lu">Λούμπα-Κατάνγκα</language>
			<language type="lua">Λούμπα-Λουλούα</language>
			<language type="lui">Λουισένο</language>
			<language type="lun">Λούντα</language>
			<language type="luo">Λούο</language>
			<language type="lus">Λουσάι</language>
			<language type="lv">Λετονικά</language>
			<language type="mad">Μαντουρίζ</language>
			<language type="mag">Μαγκάχι</language>
			<language type="mai">Μαϊτχίλι</language>
			<language type="mak">Μακαζάρ</language>
			<language type="man">Μαντίνγκο</language>
			<language type="map">Οστρονέζιαν</language>
			<language type="mas">Μασάι</language>
			<language type="mdf">Μόκσα</language>
			<language type="mdr">Μανδάρ</language>
			<language type="men">Μέντε</language>
			<language type="mg">Μαλαγάσι</language>
			<language type="mga">Μέσα Ιρλανδικά</language>
			<language type="mh">Μάρσαλ</language>
			<language type="mi">Μάορι</language>
			<language type="mic">Μικμάκ</language>
			<language type="min">Μινανγκαμπάου</language>
			<language type="mis">Διάφορες γλώσσες</language>
			<language type="mk">Σλαβομακεδονικά</language>
			<language type="mkh">Γλώσσα Μον-Χμερ</language>
			<language type="ml">Μαλαγιαλάμ</language>
			<language type="mn">Μογγολικά</language>
			<language type="mnc">Μαντσού</language>
			<language type="mni">Μανιπούρι</language>
			<language type="mno">Γλώσσα Μανόμπο</language>
			<language type="mo">Μολδαβικά</language>
			<language type="moh">Μοχόκ</language>
			<language type="mos">Μόσι</language>
			<language type="mr">Μαράθι</language>
			<language type="ms">Μαλάι</language>
			<language type="mt">Μαλτεζικά</language>
			<language type="mul">Πολλαπλές γλώσσες</language>
			<language type="mun">Γλώσσα Μούντα</language>
			<language type="mus">Κρικ</language>
			<language type="mwl">Μιραντεζικά</language>
			<language type="mwr">Μαργουάρι</language>
			<language type="my">Βιρμανικά</language>
			<language type="myn">Γλώσσα Μάγιαν</language>
			<language type="myv">Έρζυα</language>
			<language type="na">Ναούρου</language>
			<language type="nah">Ναχουάτλ</language>
			<language type="nai">Ινδιανική γλώσσα Βόρειας Αμερικής</language>
			<language type="nap">Ναπολιτανικά</language>
			<language type="nb">Νορβηγικά Μποκμάλ</language>
			<language type="nd">Ντεμπέλε Βορρά</language>
			<language type="nds">Κάτω Γερμανικά</language>
			<language type="ne">Νεπάλι</language>
			<language type="new">Νεγουάρι</language>
			<language type="ng">Ντόνγκα</language>
			<language type="nia">Νίας</language>
			<language type="nic">Γλώσσα Νίγηρα-Κορδοφάνιαν</language>
			<language type="niu">Νιούεαν</language>
			<language type="nl">Ολλανδικά</language>
			<language type="nl_BE">Φλαμανδικά</language>
			<language type="nn">Νορβηγικά Νινόρσκ</language>
			<language type="no">Νορβηγικά</language>
			<language type="nog">Νογκάι</language>
			<language type="non">Παλαιά Νορβηγικά</language>
			<language type="nqo">Ν'Κο</language>
			<language type="nr">Ντεμπέλε Νότου</language>
			<language type="nso">Βόρεια Σόθο</language>
			<language type="nub">Γλώσσα Νούμπιαν</language>
			<language type="nv">Νάβαχο</language>
			<language type="nwc">Κλασικά Νεουάρι</language>
			<language type="ny">Νιάντζα</language>
			<language type="nym">Νιαμγουέζι</language>
			<language type="nyn">Νιανκόλε</language>
			<language type="nyo">Νιόρο</language>
			<language type="nzi">Νζίμα</language>
			<language type="oc">Οκσιτανικά</language>
			<language type="oj">Οζιβίγουα</language>
			<language type="om">Ορόμο</language>
			<language type="or">Ορίγια</language>
			<language type="os">Οσετικά</language>
			<language type="osa">Οσάζ</language>
			<language type="ota">Οθωμανικά Τουρκικά</language>
			<language type="oto">Οθωμανική γλώσσα</language>
			<language type="pa">Παντζαπικά</language>
			<language type="paa">Παπούα</language>
			<language type="pag">Πανγκασινάν</language>
			<language type="pal">Παχλάβι</language>
			<language type="pam">Παμπάνγκα</language>
			<language type="pap">Παπιαμέντο</language>
			<language type="pau">Παλάουαν</language>
			<language type="peo">Αρχαία Περσικά</language>
			<language type="phi">Φιλιππινεζική γλώσσα</language>
			<language type="phn">Φοινικικά</language>
			<language type="pi">Πάλι</language>
			<language type="pl">Πολωνικά</language>
			<language type="pon">Ποχπέιαν</language>
			<language type="pra">Γλώσσα Πράκριτ</language>
			<language type="pro">Παλαιά Προβενσιάλ</language>
			<language type="ps">Πάστο</language>
			<language type="pt">Πορτογαλικά</language>
			<language type="pt_BR">Πορτογαλικά Βραζιλίας</language>
			<language type="pt_PT">Πορτογαλικά Ιβηρικής</language>
			<language type="qu">Κετσούα</language>
			<language type="raj">Ραζασθάνι</language>
			<language type="rap">Ραπανούι</language>
			<language type="rar">Ραροτονγκάν</language>
			<language type="rm">Ρετο-Ρομανικά</language>
			<language type="rn">Ρούντι</language>
			<language type="ro">Ρουμανικά</language>
			<language type="roa">Ρομανική γλώσσα</language>
			<language type="rom">Ρομανί</language>
			<language type="root">Ρουτ</language>
			<language type="ru">Ρωσικά</language>
			<language type="rup">Αρομανικά</language>
			<language type="rw">Κινιαρβάντα</language>
			<language type="sa">Σανσκριτικά</language>
			<language type="sad">Σαντάγουε</language>
			<language type="sah">Γιακούτ</language>
			<language type="sai">Ινδιανική γλώσσα Νότιας Αμερικής</language>
			<language type="sal">Γλώσσα Σαλισάν</language>
			<language type="sam">Σαμαρίτικα Αραμαϊκά</language>
			<language type="sas">Σασάκ</language>
			<language type="sat">Σαντάλι</language>
			<language type="sc">Σαρδινικά</language>
			<language type="scn">Σικελιανά</language>
			<language type="sco">Σκωτικά</language>
			<language type="sd">Σίντι</language>
			<language type="se">Βόρεια Σάμι</language>
			<language type="sel">Σελκούπ</language>
			<language type="sem">Σημητική γλώσσα</language>
			<language type="sg">Σάνγκο</language>
			<language type="sga">Παλαιά Ιρλανδικά</language>
			<language type="sgn">Νοηματική γλώσσα</language>
			<language type="sh">Σερβοκροατικά</language>
			<language type="shn">Σαν</language>
			<language type="si">Σινχαλεζικά</language>
			<language type="sid">Σιντάμο</language>
			<language type="sio">Γλώσσα Σιουάν</language>
			<language type="sit">Σινοθιβετιανή γλώσσα</language>
			<language type="sk">Σλοβακικά</language>
			<language type="sl">Σλοβενικά</language>
			<language type="sla">Σλαβική γλώσσα</language>
			<language type="sm">Σαμόαν</language>
			<language type="sma">Νότια Σάμι</language>
			<language type="smi">Γλώσσα Σάμι</language>
			<language type="smj">Λούλε Σάμι</language>
			<language type="smn">Ινάρι Σάμι</language>
			<language type="sms">Σκολτ Σάμι</language>
			<language type="sn">Σχόνα</language>
			<language type="snk">Σονίνκε</language>
			<language type="so">Σομάλι</language>
			<language type="sog">Σογκντιέν</language>
			<language type="son">Σονγκχάι</language>
			<language type="sq">Αλβανικά</language>
			<language type="sr">Σερβικά</language>
			<language type="srn">Σρανάρ Τόνγκο</language>
			<language type="srr">Σερέρ</language>
			<language type="ss">Σουάτι</language>
			<language type="ssa">Νιλο-Σαχαριανή γλώσσα</language>
			<language type="st">Νότια Σόθο</language>
			<language type="su">Σουδανικά</language>
			<language type="suk">Σουκούμα</language>
			<language type="sus">Σούσου</language>
			<language type="sux">Σουμερικά</language>
			<language type="sv">Σουηδικά</language>
			<language type="sw">Σουαχίλι</language>
			<language type="syc">Κλασικά Συριακά</language>
			<language type="syr">Συριακά</language>
			<language type="ta">Ταμίλ</language>
			<language type="tai">Ταϊλανδική γλώσσα</language>
			<language type="te">Τελούγκου</language>
			<language type="tem">Τίμνε</language>
			<language type="ter">Τερένο</language>
			<language type="tet">Τέτουμ</language>
			<language type="tg">Τατζίκ</language>
			<language type="th">Ταϊλανδικά</language>
			<language type="ti">Τιγκρίνυα</language>
			<language type="tig">Τίγκρε</language>
			<language type="tiv">Τιβ</language>
			<language type="tk">Τουρκμενικά</language>
			<language type="tkl">Τοκελάου</language>
			<language type="tl">Ταγκαλόγκ</language>
			<language type="tlh">Κλίνγκον</language>
			<language type="tli">Τλίνγκιτ</language>
			<language type="tmh">Ταμασέκ</language>
			<language type="tn">Τσιγουάνα</language>
			<language type="to">Τόνγκα</language>
			<language type="tog">Νιάσα Τόνγκα</language>
			<language type="tpi">Τοκ Πισίν</language>
			<language type="tr">Τουρκικά</language>
			<language type="ts">Τσόνγκα</language>
			<language type="tsi">Τσίμσιαν</language>
			<language type="tt">Τατάρ</language>
			<language type="tum">Τουμπούκα</language>
			<language type="tup">Γλώσσα Τούπι</language>
			<language type="tut">Αλταϊκή γλώσσα</language>
			<language type="tvl">Τουβαλού</language>
			<language type="tw">Τούι</language>
			<language type="ty">Ταϊτιανά</language>
			<language type="tyv">Τουβίνιαν</language>
			<language type="udm">Ουντμούρτ</language>
			<language type="ug">Ουιγουρικά</language>
			<language type="uga">Ουγκαρίτικ</language>
			<language type="uk">Ουκρανικά</language>
			<language type="umb">Ουμπούντου</language>
			<language type="und">Άγνωστη ή ακατάλληλη γλώσσα</language>
			<language type="ur">Ουρντού</language>
			<language type="uz">Ουζμπεκικά</language>
			<language type="vai">Βάι</language>
			<language type="ve">Βένδα</language>
			<language type="vi">Βιετναμεζικά</language>
			<language type="vo">Βόλαπικ</language>
			<language type="vot">Βότικ</language>
			<language type="wa">Γουαλούν</language>
			<language type="wak">Γλώσσα Γουακασάν</language>
			<language type="wal">Γουάλαμο</language>
			<language type="war">Γουάρει</language>
			<language type="was">Γουασό</language>
			<language type="wen">Διάλεκτος Άνω Λουσατίας</language>
			<language type="wo">Γουόλοφ</language>
			<language type="xal">Καλμίκ</language>
			<language type="xh">Ζόσα</language>
			<language type="yao">Γιάο</language>
			<language type="yap">Γιαπίζ</language>
			<language type="yi">Γίντις</language>
			<language type="yo">Γιορούμπα</language>
			<language type="ypk">Γλώσσα Γιούπικ</language>
			<language type="za">Ζουάνγκ</language>
			<language type="zap">Ζάποτεκ</language>
			<language type="zbl">Σύμβολα Bliss</language>
			<language type="zen">Ζενάγκα</language>
			<language type="zh">Κινεζικά</language>
			<language type="zh_Hans">Απλοποιημένα Κινεζικά</language>
			<language type="zh_Hant">Παραδοσιακά Κινεζικά</language>
			<language type="znd">Ζάντε</language>
			<language type="zu">Ζουλού</language>
			<language type="zun">Ζούνι</language>
			<language type="zxx">Χωρίς γλωσσολογικό περιεχόμενο</language>
			<language type="zza">Ζάζα</language>
		</languages>
		<scripts>
			<script type="Arab">Αραβικό</script>
			<script type="Armi">Αυτοκρατορικό Αραμαϊκό</script>
			<script type="Armn">Αρμενικό</script>
			<script type="Avst">Αβεστάν</script>
			<script type="Bali">Μπαλινίζ</script>
			<script type="Batk">Μπατάκ</script>
			<script type="Beng">Μπενγκάλι</script>
			<script type="Blis">Σύμβολα Bliss</script>
			<script type="Bopo">Μποπομόφο</script>
			<script type="Brah">Μπραχμί</script>
			<script type="Brai">Μπράιγ</script>
			<script type="Bugi">Μπούγκις</script>
			<script type="Buhd">Μπουχίντ</script>
			<script type="Cakm">Τσάκμα</script>
			<script type="Cans">Ενοποιημένοι Καναδεζικοί Συλλαβισμοί Ιθαγενών</script>
			<script type="Cari">Καριάν</script>
			<script type="Cham">Τσαμ</script>
			<script type="Cher">Τσερόκι</script>
			<script type="Cirt">Σερθ</script>
			<script type="Copt">Κοπτικό</script>
			<script type="Cprt">Κυπριακό</script>
			<script type="Cyrl">Κυριλλικό</script>
			<script type="Cyrs">Παλαιό Εκκλησιαστικό Σλαβικό Κυριλλικό</script>
			<script type="Deva">Ντεβαναγκάρι</script>
			<script type="Dsrt">Ντεσερέ</script>
			<script type="Egyd">Λαϊκό Αιγυπτιακό</script>
			<script type="Egyh">Ιερατικό Αιγυπτιακό</script>
			<script type="Egyp">Αιγυπτιακά Ιερογλυφικά</script>
			<script type="Ethi">Αιθιοπικό</script>
			<script type="Geok">Γεωργιανό Κχουτσούρι</script>
			<script type="Geor">Γεωργιανό</script>
			<script type="Glag">Γκλαγκολιτικό</script>
			<script type="Goth">Γοτθικό</script>
			<script type="Grek">Ελληνικό</script>
			<script type="Gujr">Γκουγιαράτι</script>
			<script type="Guru">Γκουρμουκχί</script>
			<script type="Hang">Χανγκούλ</script>
			<script type="Hani">Χαν</script>
			<script type="Hano">Χανούνου</script>
			<script type="Hans">Απλοποιημένο Κινεζικό</script>
			<script type="Hant">Παραδοσιακό Κινεζικό</script>
			<script type="Hebr">Εβραϊκό</script>
			<script type="Hira">Χιραγκάνα</script>
			<script type="Hmng">Παχάχ Χμονγκ</script>
			<script type="Hrkt">Κατακάνα ή Χιραγκάνα</script>
			<script type="Hung">Παλαιό Ουγγρικό</script>
			<script type="Inds">Ίνδους</script>
			<script type="Ital">Παλαιό Ιταλικό</script>
			<script type="Java">Ιαβανεζικό</script>
			<script type="Jpan">Ιαπωνικό</script>
			<script type="Kali">Καγιάχ Λι</script>
			<script type="Kana">Κατακάνα</script>
			<script type="Khar">Καρόσθι</script>
			<script type="Khmr">Κχμερ</script>
			<script type="Knda">Κανάντα</script>
			<script type="Kore">Κορεατικό</script>
			<script type="Kthi">Καϊθί</script>
			<script type="Lana">Λάννα</script>
			<script type="Laoo">Λάος</script>
			<script type="Latf">Φράκτουρ Λατινικό</script>
			<script type="Latg">Γαελικό Λατινικό</script>
			<script type="Latn">Λατινικό</script>
			<script type="Lepc">Λέπτσα</script>
			<script type="Limb">Λιμπού</script>
			<script type="Lina">Γραμμικό Α</script>
			<script type="Linb">Γραμμικό Β</script>
			<script type="Lyci">Λυκιανικό</script>
			<script type="Lydi">Λυδιανικό</script>
			<script type="Mand">Μανδαϊκό</script>
			<script type="Mani">Μανιχαϊκό</script>
			<script type="Maya">Ιερογλυφικά Μάγια</script>
			<script type="Mero">Μεροϊτικό</script>
			<script type="Mlym">Μαλαϊκό</script>
			<script type="Mong">Μογγολικό</script>
			<script type="Moon">Μουν</script>
			<script type="Mtei">Μεϊτέι Μάγεκ</script>
			<script type="Mymr">Μιανμάρ</script>
			<script type="Nkoo">Ν'Κο</script>
			<script type="Ogam">Όγκχαμ</script>
			<script type="Olck">Ολ Τσίκι</script>
			<script type="Orkh">Όρκχον</script>
			<script type="Orya">Ορίγια</script>
			<script type="Osma">Οσμάνγια</script>
			<script type="Perm">Παλαιό Περμικό</script>
			<script type="Phag">Παγκς-πα</script>
			<script type="Phli">Επιγραφικό Παχλάβι</script>
			<script type="Phlp">Ψάλτερ Παχλάβι</script>
			<script type="Phlv">Μπουκ Παχλαβί</script>
			<script type="Phnx">Φοινικικό</script>
			<script type="Plrd">Φωνητικό Πόλαρντ</script>
			<script type="Prti">Επιγραφικό Παρθιάν</script>
			<script type="Qaai">Κληρονομημένο</script>
			<script type="Rjng">Ρετζάνγκ</script>
			<script type="Roro">Ρονγκορόνγκο</script>
			<script type="Runr">Ρουνίκ</script>
			<script type="Samr">Σαμαριτικό</script>
			<script type="Sara">Σαράθι</script>
			<script type="Saur">Σαουράστρα</script>
			<script type="Sgnw">Νοηματική γραφή</script>
			<script type="Shaw">Σαβιανό</script>
			<script type="Sinh">Σινχάλα</script>
			<script type="Sund">Σουδανεζικό</script>
			<script type="Sylo">Συλότι Νάγκρι</script>
			<script type="Syrc">Συριακό</script>
			<script type="Syre">Εστραντζέλο Συριακό</script>
			<script type="Syrj">Δυτικό Συριακό</script>
			<script type="Syrn">Ανατολικό Συριακό</script>
			<script type="Tagb">Ταγκμάνγουα</script>
			<script type="Tale">Τάι Λε</script>
			<script type="Talu">Νέο Τάι Λούε</script>
			<script type="Taml">Ταμίλ</script>
			<script type="Tavt">Τάι Βιέτ</script>
			<script type="Telu">Τελούγκου</script>
			<script type="Teng">Τεγνγουάρ</script>
			<script type="Tfng">Τιφινάγκ</script>
			<script type="Tglg">Ταγκαλόγκ</script>
			<script type="Thaa">Θαανά</script>
			<script type="Thai">Ταϊλανδικό</script>
			<script type="Tibt">Θιβετιανό</script>
			<script type="Ugar">Ουγκαριτικό</script>
			<script type="Vaii">Βάι</script>
			<script type="Visp">Ορατή ομιλία</script>
			<script type="Xpeo">Παλαιό Περσικό</script>
			<script type="Xsux">Σούμερο-Ακάντιαν Κουνεϊφόρμ</script>
			<script type="Yiii">Γι</script>
			<script type="Zmth">Μαθηματική παράσταση</script>
			<script type="Zsym">Σύμβολα</script>
			<script type="Zxxx">Άγραφο</script>
			<script type="Zyyy">Κοινό</script>
			<script type="Zzzz">Άγνωστη ή ακατάλληλη γραφή</script>
		</scripts>
		<territories>
			<territory type="001">Κόσμος</territory>
			<territory type="002">Αφρική</territory>
			<territory type="003">Βόρεια Αμερική</territory>
			<territory type="005">Νότια Αμερική</territory>
			<territory type="009">Ωκεανία</territory>
			<territory type="011">Δυτική Αφρική</territory>
			<territory type="013">Κεντρική Αμερική</territory>
			<territory type="014">Ανατολική Αφρική</territory>
			<territory type="015">Βόρεια Αφρική</territory>
			<territory type="017">Μέση Αφρική</territory>
			<territory type="018">Νότιος Αφρική</territory>
			<territory type="019">Αμερική</territory>
			<territory type="021">Βόρειος Αμερική</territory>
			<territory type="029">Καραϊβική</territory>
			<territory type="030">Ανατολική Ασία</territory>
			<territory type="034">Νότια Ασία</territory>
			<territory type="035">Νοτιοανατολική Ασία</territory>
			<territory type="039">Νότια Ευρώπη</territory>
			<territory type="053">Αυστραλία και Νέα Ζηλανδία</territory>
			<territory type="054">Μελανησία</territory>
			<territory type="057">Περιοχή Μικρονησίας</territory>
			<territory type="061">Πολυνησία</territory>
			<territory type="062">Νότια Κεντρική Ασία</territory>
			<territory type="142">Ασία</territory>
			<territory type="143">Κεντρική Ασία</territory>
			<territory type="145">Δυτική Ασία</territory>
			<territory type="150">Ευρώπη</territory>
			<territory type="151">Ανατολική Ευρώπη</territory>
			<territory type="154">Βόρεια Ευρώπη</territory>
			<territory type="155">Δυτική Ευρώπη</territory>
			<territory type="172">Κοινοπολιτεία Ανεξαρτήτων Πολιτειών</territory>
			<territory type="419">Λατινική Αμερική και Καραϊβική</territory>
			<territory type="830">Νησιά Τσάνελ</territory>
			<territory type="AD">Ανδόρα</territory>
			<territory type="AE">Ηνωμένα Αραβικά Εμιράτα</territory>
			<territory type="AF">Αφγανιστάν</territory>
			<territory type="AG">Αντίγκουα και Μπαρμπούντα</territory>
			<territory type="AI">Ανγκουίλα</territory>
			<territory type="AL">Αλβανία</territory>
			<territory type="AM">Αρμενία</territory>
			<territory type="AN">Ολλανδικές Αντίλλες</territory>
			<territory type="AO">Ανγκόλα</territory>
			<territory type="AQ">Ανταρκτική</territory>
			<territory type="AR">Αργεντινή</territory>
			<territory type="AS">Αμερικανική Σαμόα</territory>
			<territory type="AT">Αυστρία</territory>
			<territory type="AU">Αυστραλία</territory>
			<territory type="AW">Αρούμπα</territory>
			<territory type="AX">Νήσοι Άλαντ</territory>
			<territory type="AZ">Αζερμπαϊτζάν</territory>
			<territory type="BA">Βοσνία - Ερζεγοβίνη</territory>
			<territory type="BB">Μπαρμπάντος</territory>
			<territory type="BD">Μπανγκλαντές</territory>
			<territory type="BE">Βέλγιο</territory>
			<territory type="BF">Μπουρκίνα Φάσο</territory>
			<territory type="BG">Βουλγαρία</territory>
			<territory type="BH">Μπαχρέιν</territory>
			<territory type="BI">Μπουρούντι</territory>
			<territory type="BJ">Μπενίν</territory>
			<territory type="BL">Άγιος Βαρθολομαίος</territory>
			<territory type="BM">Βερμούδες</territory>
			<territory type="BN">Μπρουνέι</territory>
			<territory type="BO">Βολιβία</territory>
			<territory type="BR">Βραζιλία</territory>
			<territory type="BS">Μπαχάμες</territory>
			<territory type="BT">Μπουτάν</territory>
			<territory type="BV">Νήσος Μπουβέ</territory>
			<territory type="BW">Μποτσουάνα</territory>
			<territory type="BY">Λευκορωσία</territory>
			<territory type="BZ">Μπελίσε</territory>
			<territory type="CA">Καναδάς</territory>
			<territory type="CC">Νήσοι Κόκος</territory>
			<territory type="CD">Κονγκό - Κινσάσα</territory>
			<territory type="CF">Κεντροαφρικανική Δημοκρατία</territory>
			<territory type="CG">Κονγκό - Μπραζαβίλ</territory>
			<territory type="CH">Ελβετία</territory>
			<territory type="CI">Ακτή Ελεφαντοστού</territory>
			<territory type="CK">Νήσοι Κουκ</territory>
			<territory type="CL">Χιλή</territory>
			<territory type="CM">Καμερούν</territory>
			<territory type="CN">Κίνα</territory>
			<territory type="CO">Κολομβία</territory>
			<territory type="CR">Κόστα Ρίκα</territory>
			<territory type="CS">Σερβία και Μαυροβούνιο</territory>
			<territory type="CU">Κούβα</territory>
			<territory type="CV">Πράσινο Ακρωτήριο</territory>
			<territory type="CX">Νήσος Χριστουγέννων</territory>
			<territory type="CY">Κύπρος</territory>
			<territory type="CZ">Τσεχία</territory>
			<territory type="DE">Γερμανία</territory>
			<territory type="DJ">Τζιμπουτί</territory>
			<territory type="DK">Δανία</territory>
			<territory type="DM">Ντομίνικα</territory>
			<territory type="DO">Δομινικανή Δημοκρατία</territory>
			<territory type="DZ">Αλγερία</territory>
			<territory type="EC">Ισημερινός</territory>
			<territory type="EE">Εσθονία</territory>
			<territory type="EG">Αίγυπτος</territory>
			<territory type="EH">Δυτική Σαχάρα</territory>
			<territory type="ER">Ερυθραία</territory>
			<territory type="ES">Ισπανία</territory>
			<territory type="ET">Αιθιοπία</territory>
			<territory type="FI">Φινλανδία</territory>
			<territory type="FJ">Φίτζι</territory>
			<territory type="FK">Νήσοι Φώκλαντ</territory>
			<territory type="FM">Μικρονησία</territory>
			<territory type="FO">Νήσοι Φερόε</territory>
			<territory type="FR">Γαλλία</territory>
			<territory type="GA">Γκαμπόν</territory>
			<territory type="GB">Ηνωμένο Βασίλειο</territory>
			<territory type="GD">Γρενάδα</territory>
			<territory type="GE">Γεωργία</territory>
			<territory type="GF">Γαλλική Γουιάνα</territory>
			<territory type="GG">Γκερνσέι</territory>
			<territory type="GH">Γκάνα</territory>
			<territory type="GI">Γιβραλτάρ</territory>
			<territory type="GL">Γροιλανδία</territory>
			<territory type="GM">Γκάμπια</territory>
			<territory type="GN">Γουινέα</territory>
			<territory type="GP">Γουαδελούπη</territory>
			<territory type="GQ">Ισημερινή Γουινέα</territory>
			<territory type="GR">Ελλάδα</territory>
			<territory type="GS">Νότια Γεωργία και Νότιες Νήσοι Σάντουιτς</territory>
			<territory type="GT">Γουατεμάλα</territory>
			<territory type="GU">Γκουάμ</territory>
			<territory type="GW">Γουινέα-Μπισάου</territory>
			<territory type="GY">Γουιάνα</territory>
			<territory type="HK">Χονγκ Κονγκ ΕΔΠ Κίνας</territory>
			<territory type="HM">Νήσοι Χερντ και Μακντόναλντ</territory>
			<territory type="HN">Ονδούρα</territory>
			<territory type="HR">Κροατία</territory>
			<territory type="HT">Αϊτή</territory>
			<territory type="HU">Ουγγαρία</territory>
			<territory type="ID">Ινδονησία</territory>
			<territory type="IE">Ιρλανδία</territory>
			<territory type="IL">Ισραήλ</territory>
			<territory type="IM">Νήσος Μαν</territory>
			<territory type="IN">Ινδία</territory>
			<territory type="IO">Βρετανικά Εδάφη Ινδικού Ωκεανού</territory>
			<territory type="IQ">Ιράκ</territory>
			<territory type="IR">Ιράν</territory>
			<territory type="IS">Ισλανδία</territory>
			<territory type="IT">Ιταλία</territory>
			<territory type="JE">Υερσέη</territory>
			<territory type="JM">Τζαμάικα</territory>
			<territory type="JO">Ιορδανία</territory>
			<territory type="JP">Ιαπωνία</territory>
			<territory type="KE">Κένυα</territory>
			<territory type="KG">Κιργιζία</territory>
			<territory type="KH">Καμπότζη</territory>
			<territory type="KI">Κιριμπάτι</territory>
			<territory type="KM">Κομόρος</territory>
			<territory type="KN">Σαιντ Κιτς και Νέβις</territory>
			<territory type="KP">Βόρεια Κορέα</territory>
			<territory type="KR">Νότια Κορέα</territory>
			<territory type="KW">Κουβέιτ</territory>
			<territory type="KY">Νήσοι Κέιμαν</territory>
			<territory type="KZ">Καζακστάν</territory>
			<territory type="LA">Λάος</territory>
			<territory type="LB">Λίβανος</territory>
			<territory type="LC">Αγία Λουκία</territory>
			<territory type="LI">Λιχτενστάιν</territory>
			<territory type="LK">Σρι Λάνκα</territory>
			<territory type="LR">Λιβερία</territory>
			<territory type="LS">Λεσότο</territory>
			<territory type="LT">Λιθουανία</territory>
			<territory type="LU">Λουξεμβούργο</territory>
			<territory type="LV">Λετονία</territory>
			<territory type="LY">Λιβύη</territory>
			<territory type="MA">Μαρόκο</territory>
			<territory type="MC">Μονακό</territory>
			<territory type="MD">Μολδαβία</territory>
			<territory type="ME">Μαυροβούνιο</territory>
			<territory type="MF">Άγιος Μαρτίνος</territory>
			<territory type="MG">Μαδαγασκάρη</territory>
			<territory type="MH">Νήσοι Μάρσαλ</territory>
			<territory type="MK">ΠΓΔ Μακεδονίας</territory>
			<territory type="ML">Μάλι</territory>
			<territory type="MM">Μιανμάρ</territory>
			<territory type="MN">Μογγολία</territory>
			<territory type="MO">Μακάο ΕΔΠ Κίνας</territory>
			<territory type="MP">Βόρειες Μαριάνες Νήσοι</territory>
			<territory type="MQ">Μαρτινίκα</territory>
			<territory type="MR">Μαυριτανία</territory>
			<territory type="MS">Μονσεράτ</territory>
			<territory type="MT">Μάλτα</territory>
			<territory type="MU">Μαυρίκιος</territory>
			<territory type="MV">Μαλδίβες</territory>
			<territory type="MW">Μαλάουι</territory>
			<territory type="MX">Μεξικό</territory>
			<territory type="MY">Μαλαισία</territory>
			<territory type="MZ">Μοζαμβίκη</territory>
			<territory type="NA">Ναμίμπια</territory>
			<territory type="NC">Νέα Καληδονία</territory>
			<territory type="NE">Νίγηρας</territory>
			<territory type="NF">Νήσος Νόρφολκ</territory>
			<territory type="NG">Νιγηρία</territory>
			<territory type="NI">Νικαράγουα</territory>
			<territory type="NL">Ολλανδία</territory>
			<territory type="NO">Νορβηγία</territory>
			<territory type="NP">Νεπάλ</territory>
			<territory type="NR">Ναούρου</territory>
			<territory type="NU">Νιούε</territory>
			<territory type="NZ">Νέα Ζηλανδία</territory>
			<territory type="OM">Ομάν</territory>
			<territory type="PA">Παναμάς</territory>
			<territory type="PE">Περού</territory>
			<territory type="PF">Γαλλική Πολυνησία</territory>
			<territory type="PG">Παπούα Νέα Γουινέα</territory>
			<territory type="PH">Φιλιππίνες</territory>
			<territory type="PK">Πακιστάν</territory>
			<territory type="PL">Πολωνία</territory>
			<territory type="PM">Σαιντ Πιέρ και Μικελόν</territory>
			<territory type="PN">Πίτκερν</territory>
			<territory type="PR">Πουέρτο Ρίκο</territory>
			<territory type="PS">Παλαιστινιακά Εδάφη</territory>
			<territory type="PT">Πορτογαλία</territory>
			<territory type="PW">Παλάου</territory>
			<territory type="PY">Παραγουάη</territory>
			<territory type="QA">Κατάρ</territory>
			<territory type="QO">Περιφερειακή Ωκεανία</territory>
			<territory type="QU">Ευρωπαϊκή Ένωση</territory>
			<territory type="RE">Ρεϋνιόν</territory>
			<territory type="RO">Ρουμανία</territory>
			<territory type="RS">Σερβία</territory>
			<territory type="RU">Ρωσία</territory>
			<territory type="RW">Ρουάντα</territory>
			<territory type="SA">Σαουδική Αραβία</territory>
			<territory type="SB">Νήσοι Σολομώντος</territory>
			<territory type="SC">Σεϋχέλλες</territory>
			<territory type="SD">Σουδάν</territory>
			<territory type="SE">Σουηδία</territory>
			<territory type="SG">Σιγκαπούρη</territory>
			<territory type="SH">Αγία Ελένη</territory>
			<territory type="SI">Σλοβενία</territory>
			<territory type="SJ">Σβαλμπάρντ και Γιαν Μαγιέν</territory>
			<territory type="SK">Σλοβακία</territory>
			<territory type="SL">Σιέρα Λεόνε</territory>
			<territory type="SM">Άγιος Μαρίνος</territory>
			<territory type="SN">Σενεγάλη</territory>
			<territory type="SO">Σομαλία</territory>
			<territory type="SR">Σουρινάμ</territory>
			<territory type="ST">Σάο Τομέ και Πρίνσιπε</territory>
			<territory type="SV">Ελ Σαλβαδόρ</territory>
			<territory type="SY">Συρία</territory>
			<territory type="SZ">Ζουαζηλάνδη</territory>
			<territory type="TC">Νήσοι Τερκς και Κάικος</territory>
			<territory type="TD">Τσαντ</territory>
			<territory type="TF">Γαλλικά Νότια Εδάφη</territory>
			<territory type="TG">Τόγκο</territory>
			<territory type="TH">Ταϊλάνδη</territory>
			<territory type="TJ">Τατζικιστάν</territory>
			<territory type="TK">Τοκελάου</territory>
			<territory type="TL">Ανατολικό Τιμόρ</territory>
			<territory type="TM">Τουρκμενιστάν</territory>
			<territory type="TN">Τυνησία</territory>
			<territory type="TO">Τόνγκα</territory>
			<territory type="TR">Τουρκία</territory>
			<territory type="TT">Τρινιντάντ και Τομπάγκο</territory>
			<territory type="TV">Τουβαλού</territory>
			<territory type="TW">Ταϊβάν</territory>
			<territory type="TZ">Τανζανία</territory>
			<territory type="UA">Ουκρανία</territory>
			<territory type="UG">Ουγκάντα</territory>
			<territory type="UM">Απομακρυσμένες Νησίδες Η.Π.Α.</territory>
			<territory type="US">Ηνωμένες Πολιτείες της Αμερικής</territory>
			<territory type="UY">Ουρουγουάη</territory>
			<territory type="UZ">Ουζμπεκιστάν</territory>
			<territory type="VA">Βατικανό</territory>
			<territory type="VC">Άγιος Βικέντιος και Γρεναδίνες</territory>
			<territory type="VE">Βενεζουέλα</territory>
			<territory type="VG">Βρετανικές Παρθένοι Νήσοι</territory>
			<territory type="VI">Αμερικανικές Παρθένοι Νήσοι</territory>
			<territory type="VN">Βιετνάμ</territory>
			<territory type="VU">Βανουάτου</territory>
			<territory type="WF">Νήσοι Ουαλλίς και Φουτουνά</territory>
			<territory type="WS">Σαμόα</territory>
			<territory type="YE">Υεμένη</territory>
			<territory type="YT">Μαγιότ</territory>
			<territory type="ZA">Νότια Αφρική</territory>
			<territory type="ZM">Ζάμπια</territory>
			<territory type="ZW">Ζιμπάμπουε</territory>
			<territory type="ZZ">Άγνωστη ή μη έγκυρη περιοχή</territory>
		</territories>
		<variants>
			<variant type="1901">Παραδοσιακή γερμανική ορθογραφία</variant>
			<variant type="1994">Τυποποιημένη ορθογραφία Ρεσιάν</variant>
			<variant type="1996">Γερμανική ορθογραφία του 1996</variant>
			<variant type="1606NICT">Νεότερα Μέσα Γαλλικά του 1606</variant>
			<variant type="1694ACAD">Πρώιμα Σύγχρονα Γαλλικά</variant>
			<variant type="AREVELA">Ανατολικά Αρμενικά</variant>
			<variant type="AREVMDA">Δυτικά Αρμενικά</variant>
			<variant type="BAKU1926">Ενοποιημένη τουρκική λατινική αλφάβητος</variant>
			<variant type="BISKE">Διάλεκτος Σαν Τζιόρτζιο/Βίλα</variant>
			<variant type="BOONT">Μπούντλινγκ</variant>
			<variant type="FONIPA">Διεθνής φωνητική αλφάβητος</variant>
			<variant type="FONUPA">Ουραλική φωνητική αλφάβητος</variant>
			<variant type="LIPAW">Διάλεκτος Λιποβάζ της Ρεσιάν</variant>
			<variant type="MONOTON">Μονοτονικό</variant>
			<variant type="NEDIS">Διάλεκτος Νατισόνε</variant>
			<variant type="NJIVA">Διάλεκτος Γκνιβά/Ντζιβά</variant>
			<variant type="OSOJS">Διάλεκτος Οσεακό/Οσοτζάν</variant>
			<variant type="POLYTON">Πολυτονικό</variant>
			<variant type="POSIX">Υπολογιστής</variant>
			<variant type="REVISED">Αναθεωρημένη ορθογραφία</variant>
			<variant type="ROZAJ">Ρεσιάν</variant>
			<variant type="SAAHO">Σάχο</variant>
			<variant type="SCOTLAND">Σκοτσεζικά τυποποιημένα Αγγλικά</variant>
			<variant type="SCOUSE">Σκουζ</variant>
			<variant type="SOLBA">Διάλεκτος Στολβιτζά/Σολμπικά</variant>
			<variant type="TARASK">Ταρασκιεβική ορθογραφία</variant>
			<variant type="VALENCIA">Βαλενθιανά</variant>
		</variants>
		<keys>
			<key type="calendar">ημερολόγιο</key>
			<key type="collation">τακτοποίηση</key>
			<key type="currency">νόμισμα</key>
		</keys>
		<types>
			<type type="big5han" key="collation">Σειρά ταξινόμησης Παραδοσιακών Κινεζικών - Big5</type>
			<type type="buddhist" key="calendar">Βουδιστικό ημερολόγιο</type>
			<type type="chinese" key="calendar">Κινεζικό ημερολόγιο</type>
			<type type="direct" key="collation">Άμεση σειρά ταξινόμησης</type>
			<type type="gb2312han" key="collation">Σειρά ταξινόμησης Απλουστευμένων Κινεζικών - GB2312</type>
			<type type="gregorian" key="calendar">Γρηγοριανό ημερολόγιο</type>
			<type type="hebrew" key="calendar">Εβραϊκό ημερολόγιο</type>
			<type type="indian" key="calendar">Ινδικό εθνικό ημερολόγιο</type>
			<type type="islamic" key="calendar">Ισλαμικό ημερολόγιο</type>
			<type type="islamic-civil" key="calendar">Ισλαμικό αστικό ημερολόγιο</type>
			<type type="japanese" key="calendar">Ιαπωνικό ημερολόγιο</type>
			<type type="phonebook" key="collation">Σειρά ταξινόμησης τηλεφωνικού καταλόγου</type>
			<type type="pinyin" key="collation">Σειρά ταξινόμησης Πινγίν</type>
			<type type="roc" key="calendar">Ημερολόγιο της Δημοκρατίας της Κίνας</type>
			<type type="stroke" key="collation">Σειρά ταξινόμησης κινήσεων</type>
			<type type="traditional" key="collation">Παραδοσιακή σειρά ταξινόμησης</type>
		</types>
		<measurementSystemNames>
			<measurementSystemName type="metric">Μετρικό</measurementSystemName>
			<measurementSystemName type="US">Αγγλοσαξωνικό</measurementSystemName>
		</measurementSystemNames>
		<codePatterns>
			<codePattern type="language">Γλώσσα: {0}</codePattern>
			<codePattern type="script">Σύστημα γραφής: {0}</codePattern>
			<codePattern type="territory">Περιοχή: {0}</codePattern>
		</codePatterns>
	</localeDisplayNames>
	<layout>
		<inText type="languages">lowercase-words</inText>
	</layout>
	<characters>
		<exemplarCharacters>[α ά β-ε έ ζ η ή θ ι ί ϊ ΐ κ-ο ό π ρ σ ς τ υ ύ ϋ ΰ φ-ω ώ]</exemplarCharacters>
	</characters>
	<delimiters>
		<quotationStart>«</quotationStart>
		<quotationEnd>»</quotationEnd>
		<alternateQuotationStart></alternateQuotationStart>
		<alternateQuotationEnd></alternateQuotationEnd>
	</delimiters>
	<dates>
		<calendars>
			<calendar type="buddhist">
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
				<dateFormats>
					<dateFormatLength type="full">
						<dateFormat>
							<pattern>EEEE, d MMMM, y G</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="long">
						<dateFormat>
							<pattern>d MMMM, y G</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="medium">
						<dateFormat>
							<pattern>d MMM, y G</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="short">
						<dateFormat>
							<pattern>d/M/yyyy</pattern>
						</dateFormat>
					</dateFormatLength>
				</dateFormats>
				<dateTimeFormats>
					<availableFormats>
						<dateFormatItem id="Md">d/M</dateFormatItem>
						<dateFormatItem id="MEd">E, d/M</dateFormatItem>
						<dateFormatItem id="MMMd">d MMM</dateFormatItem>
						<dateFormatItem id="MMMEd">E, d MMM</dateFormatItem>
						<dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
						<dateFormatItem id="MMMMEd">E, d MMMM</dateFormatItem>
						<dateFormatItem id="yMEd">EEE, d/M/y</dateFormatItem>
						<dateFormatItem id="yMMMEd">EEE, d MMM, y</dateFormatItem>
						<dateFormatItem id="yMMMM">LLLL, y</dateFormatItem>
					</availableFormats>
				</dateTimeFormats>
			</calendar>
			<calendar type="chinese">
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
			</calendar>
			<calendar type="coptic">
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
			</calendar>
			<calendar type="ethiopic">
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
			</calendar>
			<calendar type="gregorian">
				<months>
					<monthContext type="format">
						<monthWidth type="abbreviated">
							<month type="1">Ιαν</month>
							<month type="2">Φεβ</month>
							<month type="3">Μαρ</month>
							<month type="4">Απρ</month>
							<month type="5">Μαϊ</month>
							<month type="6">Ιουν</month>
							<month type="7">Ιουλ</month>
							<month type="8">Αυγ</month>
							<month type="9">Σεπ</month>
							<month type="10">Οκτ</month>
							<month type="11">Νοε</month>
							<month type="12">Δεκ</month>
						</monthWidth>
						<monthWidth type="wide">
							<month type="1">Ιανουαρίου</month>
							<month type="2">Φεβρουαρίου</month>
							<month type="3">Μαρτίου</month>
							<month type="4">Απριλίου</month>
							<month type="5">Μαΐου</month>
							<month type="6">Ιουνίου</month>
							<month type="7">Ιουλίου</month>
							<month type="8">Αυγούστου</month>
							<month type="9">Σεπτεμβρίου</month>
							<month type="10">Οκτωβρίου</month>
							<month type="11">Νοεμβρίου</month>
							<month type="12">Δεκεμβρίου</month>
						</monthWidth>
					</monthContext>
					<monthContext type="stand-alone">
						<monthWidth type="narrow">
							<month type="1">Ι</month>
							<month type="2">Φ</month>
							<month type="3">Μ</month>
							<month type="4">Α</month>
							<month type="5">Μ</month>
							<month type="6">Ι</month>
							<month type="7">Ι</month>
							<month type="8">Α</month>
							<month type="9">Σ</month>
							<month type="10">Ο</month>
							<month type="11">Ν</month>
							<month type="12">Δ</month>
						</monthWidth>
						<monthWidth type="wide">
							<month type="1">Ιανουάριος</month>
							<month type="2">Φεβρουάριος</month>
							<month type="3">Μάρτιος</month>
							<month type="4">Απρίλιος</month>
							<month type="5">Μάιος</month>
							<month type="6">Ιούνιος</month>
							<month type="7">Ιούλιος</month>
							<month type="8">Αύγουστος</month>
							<month type="9">Σεπτέμβριος</month>
							<month type="10">Οκτώβριος</month>
							<month type="11">Νοέμβριος</month>
							<month type="12">Δεκέμβριος</month>
						</monthWidth>
					</monthContext>
				</months>
				<days>
					<dayContext type="format">
						<dayWidth type="abbreviated">
							<day type="sun">Κυρ</day>
							<day type="mon">Δευ</day>
							<day type="tue">Τρι</day>
							<day type="wed">Τετ</day>
							<day type="thu">Πεμ</day>
							<day type="fri">Παρ</day>
							<day type="sat">Σαβ</day>
						</dayWidth>
						<dayWidth type="wide">
							<day type="sun">Κυριακή</day>
							<day type="mon">Δευτέρα</day>
							<day type="tue">Τρίτη</day>
							<day type="wed">Τετάρτη</day>
							<day type="thu">Πέμπτη</day>
							<day type="fri">Παρασκευή</day>
							<day type="sat">Σάββατο</day>
						</dayWidth>
					</dayContext>
					<dayContext type="stand-alone">
						<dayWidth type="narrow">
							<day type="sun">Κ</day>
							<day type="mon">Δ</day>
							<day type="tue">Τ</day>
							<day type="wed">Τ</day>
							<day type="thu">Π</day>
							<day type="fri">Π</day>
							<day type="sat">Σ</day>
						</dayWidth>
					</dayContext>
				</days>
				<quarters>
					<quarterContext type="format">
						<quarterWidth type="abbreviated">
							<quarter type="1">Τ1</quarter>
							<quarter type="2">Τ2</quarter>
							<quarter type="3">Τ3</quarter>
							<quarter type="4">Τ4</quarter>
						</quarterWidth>
						<quarterWidth type="wide">
							<quarter type="1">1ο τρίμηνο</quarter>
							<quarter type="2">2ο τρίμηνο</quarter>
							<quarter type="3">3ο τρίμηνο</quarter>
							<quarter type="4">4ο τρίμηνο</quarter>
						</quarterWidth>
					</quarterContext>
					<quarterContext type="stand-alone">
						<quarterWidth type="abbreviated">
							<quarter type="1">Τ1</quarter>
							<quarter type="2">Τ2</quarter>
							<quarter type="3">Τ3</quarter>
							<quarter type="4">Τ4</quarter>
						</quarterWidth>
						<quarterWidth type="narrow">
							<quarter type="1">1</quarter>
							<quarter type="2">2</quarter>
							<quarter type="3">3</quarter>
							<quarter type="4">4</quarter>
						</quarterWidth>
					</quarterContext>
				</quarters>
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
				<eras>
					<eraNames>
						<era type="0">π.Χ.</era>
						<era type="1">μ.Χ.</era>
					</eraNames>
					<eraAbbr>
						<era type="0">π.Χ.</era>
						<era type="1">μ.Χ.</era>
					</eraAbbr>
				</eras>
				<dateFormats>
					<dateFormatLength type="full">
						<dateFormat>
							<pattern>EEEE, dd MMMM y</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="long">
						<dateFormat>
							<pattern>dd MMMM y</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="medium">
						<dateFormat>
							<pattern>dd MMM y</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="short">
						<dateFormat>
							<pattern>dd/MM/yyyy</pattern>
						</dateFormat>
					</dateFormatLength>
				</dateFormats>
				<timeFormats>
					<timeFormatLength type="full">
						<timeFormat>
							<pattern>h:mm:ss a zzzz</pattern>
						</timeFormat>
					</timeFormatLength>
					<timeFormatLength type="long">
						<timeFormat>
							<pattern>h:mm:ss a z</pattern>
						</timeFormat>
					</timeFormatLength>
					<timeFormatLength type="medium">
						<timeFormat>
							<pattern>h:mm:ss a</pattern>
						</timeFormat>
					</timeFormatLength>
					<timeFormatLength type="short">
						<timeFormat>
							<pattern>h:mm a</pattern>
						</timeFormat>
					</timeFormatLength>
				</timeFormats>
				<dateTimeFormats>
					<availableFormats>
						<dateFormatItem id="d">d</dateFormatItem>
						<dateFormatItem id="Ed">E d</dateFormatItem>
						<dateFormatItem id="EEEd">EEE d</dateFormatItem>
						<dateFormatItem id="H">H</dateFormatItem>
						<dateFormatItem id="HHmm">HH:mm</dateFormatItem>
						<dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
						<dateFormatItem id="Hm">H:mm</dateFormatItem>
						<dateFormatItem id="M">L</dateFormatItem>
						<dateFormatItem id="Md">d/M</dateFormatItem>
						<dateFormatItem id="MEd">E, d/M</dateFormatItem>
						<dateFormatItem id="MMdd">dd/MM</dateFormatItem>
						<dateFormatItem id="MMM">LLL</dateFormatItem>
						<dateFormatItem id="MMMd">d MMM</dateFormatItem>
						<dateFormatItem id="MMMEd">E, d MMM</dateFormatItem>
						<dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
						<dateFormatItem id="MMMMdd">dd MMMM</dateFormatItem>
						<dateFormatItem id="MMMMEd">E, d MMMM</dateFormatItem>
						<dateFormatItem id="mmss">mm:ss</dateFormatItem>
						<dateFormatItem id="ms">mm:ss</dateFormatItem>
						<dateFormatItem id="y">y</dateFormatItem>
						<dateFormatItem id="yM">M/yyyy</dateFormatItem>
						<dateFormatItem id="yMEd">EEE, d/M/yyyy</dateFormatItem>
						<dateFormatItem id="yMMM">MMM y</dateFormatItem>
						<dateFormatItem id="yMMMEd">EEE, d MMM y</dateFormatItem>
						<dateFormatItem id="yMMMM">LLLL y</dateFormatItem>
						<dateFormatItem id="yQ">y Q</dateFormatItem>
						<dateFormatItem id="yQQQ">y QQQ</dateFormatItem>
						<dateFormatItem id="yyMM">MM/yy</dateFormatItem>
						<dateFormatItem id="yyMMM">MMM yy</dateFormatItem>
						<dateFormatItem id="yyQ">Q yy</dateFormatItem>
						<dateFormatItem id="yyQQQQ">QQQQ yy</dateFormatItem>
						<dateFormatItem id="yyyy">y</dateFormatItem>
						<dateFormatItem id="yyyyMM">MM/yyyy</dateFormatItem>
						<dateFormatItem id="yyyyMMMM">MMMM y</dateFormatItem>
					</availableFormats>
					<intervalFormats>
						<intervalFormatFallback>{0} - {1}</intervalFormatFallback>
						<intervalFormatItem id="d">
							<greatestDifference id="d">d-d</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="h">
							<greatestDifference id="a">h a - h a</greatestDifference>
							<greatestDifference id="h">h-h a</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="hm">
							<greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
							<greatestDifference id="h">h:mm-h:mm a</greatestDifference>
							<greatestDifference id="m">h:mm-h:mm a</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="hmv">
							<greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
							<greatestDifference id="h">h:mm-h:mm a v</greatestDifference>
							<greatestDifference id="m">h:mm-h:mm a v</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="hv">
							<greatestDifference id="a">h a - h a v</greatestDifference>
							<greatestDifference id="h">h-h a v</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="M">
							<greatestDifference id="M">M-M</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="Md">
							<greatestDifference id="d">dd/MM - dd/MM</greatestDifference>
							<greatestDifference id="M">dd/MM - dd/MM</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="MEd">
							<greatestDifference id="d">E, dd/MM - E, dd/MM</greatestDifference>
							<greatestDifference id="M">E, dd/MM - E, dd/MM</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="MMM">
							<greatestDifference id="M">LLL-LLL</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="MMMd">
							<greatestDifference id="d">dd-dd MMM</greatestDifference>
							<greatestDifference id="M">dd MMM - dd MMM</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="MMMEd">
							<greatestDifference id="d">E, dd - E, dd MMM</greatestDifference>
							<greatestDifference id="M">E, dd MMM - E, dd MMM</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="MMMM">
							<greatestDifference id="M">LLLL-LLLL</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="y">
							<greatestDifference id="y">y-y</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="yM">
							<greatestDifference id="M">MM/yyyy - MM/yyyy</greatestDifference>
							<greatestDifference id="y">MM/yyyy - MM/yyyy</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="yMd">
							<greatestDifference id="d">dd/MM/yyyy - dd/MM/yyyy</greatestDifference>
							<greatestDifference id="M">dd/MM/yyyy - dd/MM/yyyy</greatestDifference>
							<greatestDifference id="y">dd/MM/yyyy - dd/MM/yyyy</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="yMEd">
							<greatestDifference id="d">E, dd/MM/yyyy - E, dd/MM/yyyy</greatestDifference>
							<greatestDifference id="M">E, dd/MM/yyyy - E, dd/MM/yyyy</greatestDifference>
							<greatestDifference id="y">E, dd/MM/yyyy - E, dd/MM/yyyy</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="yMMM">
							<greatestDifference id="M">LLL-LLL y</greatestDifference>
							<greatestDifference id="y">LLL y - LLL y</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="yMMMd">
							<greatestDifference id="d">dd-dd MMM y</greatestDifference>
							<greatestDifference id="M">dd MMM - dd MMM y</greatestDifference>
							<greatestDifference id="y">dd MMM y - dd MMM y</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="yMMMEd">
							<greatestDifference id="d">E, dd - E, dd MMM y</greatestDifference>
							<greatestDifference id="M">E, dd MMM - E, dd MMM y</greatestDifference>
							<greatestDifference id="y">E, dd MMM y - E, dd MMM y</greatestDifference>
						</intervalFormatItem>
						<intervalFormatItem id="yMMMM">
							<greatestDifference id="M">MM-MM/yyyy</greatestDifference>
							<greatestDifference id="y">MM/yyyy-MM/yyyy</greatestDifference>
						</intervalFormatItem>
					</intervalFormats>
				</dateTimeFormats>
				<fields>
					<field type="era">
						<displayName>Περίοδος</displayName>
					</field>
					<field type="year">
						<displayName>Έτος</displayName>
					</field>
					<field type="month">
						<displayName>Μήνας</displayName>
					</field>
					<field type="week">
						<displayName>Εβδομάδα</displayName>
					</field>
					<field type="day">
						<displayName>Ημέρα</displayName>
						<relative type="-3">Πριν από τρεις ημέρες</relative>
						<relative type="-2">Προχτές</relative>
						<relative type="-1">Χτες</relative>
						<relative type="0">Σήμερα</relative>
						<relative type="1">Αύριο</relative>
						<relative type="2">Μεθαύριο</relative>
						<relative type="3">Σε τρεις ημέρες από τώρα</relative>
					</field>
					<field type="weekday">
						<displayName>Ημέρα εβδομάδας</displayName>
					</field>
					<field type="dayperiod">
						<displayName>π.μ./μ.μ.</displayName>
					</field>
					<field type="hour">
						<displayName>Ώρα</displayName>
					</field>
					<field type="minute">
						<displayName>Λεπτό</displayName>
					</field>
					<field type="second">
						<displayName>Δευτερόλεπτο</displayName>
					</field>
					<field type="zone">
						<displayName>Ζώνη</displayName>
					</field>
				</fields>
			</calendar>
			<calendar type="hebrew">
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
				<eras>
					<eraAbbr>
						<era type="0">π.μ.</era>
					</eraAbbr>
				</eras>
			</calendar>
			<calendar type="indian">
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
			</calendar>
			<calendar type="islamic">
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
			</calendar>
			<calendar type="japanese">
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
				<dateFormats>
					<dateFormatLength type="full">
						<dateFormat>
							<pattern>EEEE, d MMMM, y G</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="long">
						<dateFormat>
							<pattern>d MMMM, y G</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="medium">
						<dateFormat>
							<pattern>d MMM, y G</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="short">
						<dateFormat>
							<pattern>d/M/yy</pattern>
						</dateFormat>
					</dateFormatLength>
				</dateFormats>
				<dateTimeFormats>
					<availableFormats>
						<dateFormatItem id="Md">d/M</dateFormatItem>
						<dateFormatItem id="MMMEd">E, d MMM</dateFormatItem>
						<dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
						<dateFormatItem id="yyyyM">MM/yy GGGGG</dateFormatItem>
						<dateFormatItem id="yyyyMMM">MMM yy GGGGG</dateFormatItem>
						<dateFormatItem id="yyyyQ">yy GGGGG Q</dateFormatItem>
					</availableFormats>
				</dateTimeFormats>
			</calendar>
			<calendar type="persian">
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
			</calendar>
			<calendar type="roc">
				<am>π.μ.</am>
				<pm>μ.μ.</pm>
				<eras>
					<eraAbbr>
						<era type="0">Πριν R.O.C.</era>
					</eraAbbr>
				</eras>
				<dateFormats>
					<dateFormatLength type="full">
						<dateFormat>
							<pattern>EEEE, d MMMM, y G</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="long">
						<dateFormat>
							<pattern>d MMMM, y G</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="medium">
						<dateFormat>
							<pattern>d MMM, y G</pattern>
						</dateFormat>
					</dateFormatLength>
					<dateFormatLength type="short">
						<dateFormat>
							<pattern>d/M/y G</pattern>
						</dateFormat>
					</dateFormatLength>
				</dateFormats>
				<dateTimeFormats>
					<availableFormats>
						<dateFormatItem id="Md">d/M</dateFormatItem>
						<dateFormatItem id="MEd">E, d/M</dateFormatItem>
						<dateFormatItem id="MMMd">d MMM</dateFormatItem>
						<dateFormatItem id="MMMEd">E, d MMM</dateFormatItem>
						<dateFormatItem id="yyyy">y G</dateFormatItem>
						<dateFormatItem id="yyyyM">M/y G</dateFormatItem>
						<dateFormatItem id="yyyyMEd">EEE, d/M/y G</dateFormatItem>
						<dateFormatItem id="yyyyMMM">MMM, y G</dateFormatItem>
						<dateFormatItem id="yyyyMMMEd">EEE, d MMM, y G</dateFormatItem>
						<dateFormatItem id="yyyyQ">y G Q</dateFormatItem>
						<dateFormatItem id="yyyyQQQ">QQQ y G</dateFormatItem>
					</availableFormats>
				</dateTimeFormats>
			</calendar>
		</calendars>
		<timeZoneNames>
			<hourFormat>+HHmm;-HHmm</hourFormat>
			<gmtFormat>GMT{0}</gmtFormat>
			<regionFormat>{0}</regionFormat>
			<zone type="Etc/Unknown">
				<exemplarCity>Άγνωστη</exemplarCity>
			</zone>
			<zone type="Europe/Andorra">
				<exemplarCity>Ανδόρα</exemplarCity>
			</zone>
			<zone type="Asia/Dubai">
				<exemplarCity>Ντουμπάι</exemplarCity>
			</zone>
			<zone type="Asia/Kabul">
				<exemplarCity>Καμπούλ</exemplarCity>
			</zone>
			<zone type="America/Antigua">
				<exemplarCity>Αντίγκουα</exemplarCity>
			</zone>
			<zone type="America/Anguilla">
				<exemplarCity>Ανγκουίλλα</exemplarCity>
			</zone>
			<zone type="Europe/Tirane">
				<exemplarCity>Τίρανα</exemplarCity>
			</zone>
			<zone type="Asia/Yerevan">
				<exemplarCity>Γερεβάν</exemplarCity>
			</zone>
			<zone type="America/Curacao">
				<exemplarCity>Κουρακάο</exemplarCity>
			</zone>
			<zone type="Africa/Luanda">
				<exemplarCity>Αγκόλα</exemplarCity>
			</zone>
			<zone type="Antarctica/Rothera">
				<exemplarCity>Ροθέρα</exemplarCity>
			</zone>
			<zone type="Antarctica/Palmer">
				<exemplarCity>Πάλμερ</exemplarCity>
			</zone>
			<zone type="Antarctica/South_Pole">
				<exemplarCity>Νότιος Πόλος</exemplarCity>
			</zone>
			<zone type="Antarctica/Syowa">
				<exemplarCity>Σύοβα</exemplarCity>
			</zone>
			<zone type="Antarctica/Mawson">
				<exemplarCity>Μόουσον</exemplarCity>
			</zone>
			<zone type="Antarctica/Davis">
				<exemplarCity>Ντέιβις</exemplarCity>
			</zone>
			<zone type="Antarctica/Vostok">
				<exemplarCity>Βόστοκ</exemplarCity>
			</zone>
			<zone type="Antarctica/Casey">
				<exemplarCity>Κάσεϊ</exemplarCity>
			</zone>
			<zone type="Antarctica/DumontDUrville">
				<exemplarCity>Ντυμόντ Ντερβίλ</exemplarCity>
			</zone>
			<zone type="Antarctica/McMurdo">
				<exemplarCity>Μακμέρντο</exemplarCity>
			</zone>
			<zone type="America/Argentina/Rio_Gallegos">
				<exemplarCity>Ρίο Γκαγιέγκος</exemplarCity>
			</zone>
			<zone type="America/Mendoza">
				<exemplarCity>Μεντόζα</exemplarCity>
			</zone>
			<zone type="America/Argentina/San_Juan">
				<exemplarCity>Σαν Χουάν</exemplarCity>
			</zone>
			<zone type="America/Argentina/Ushuaia">
				<exemplarCity>Ουσουάια</exemplarCity>
			</zone>
			<zone type="America/Argentina/La_Rioja">
				<exemplarCity>Λα Ριόχα</exemplarCity>
			</zone>
			<zone type="America/Argentina/San_Luis">
				<exemplarCity>Σαν Λούις</exemplarCity>
			</zone>
			<zone type="America/Catamarca">
				<exemplarCity>Καταμάρκα</exemplarCity>
			</zone>
			<zone type="America/Argentina/Salta">
				<exemplarCity>Σάλτα</exemplarCity>
			</zone>
			<zone type="America/Jujuy">
				<exemplarCity>Χουχούι</exemplarCity>
			</zone>
			<zone type="America/Argentina/Tucuman">
				<exemplarCity>Τουκουμάν</exemplarCity>
			</zone>
			<zone type="America/Cordoba">
				<exemplarCity>Κόρδοβα</exemplarCity>
			</zone>
			<zone type="America/Buenos_Aires">
				<exemplarCity>Μπουένος Άιρες</exemplarCity>
			</zone>
			<zone type="Pacific/Pago_Pago">
				<exemplarCity>Πάγκο Πάγκο</exemplarCity>
			</zone>
			<zone type="Europe/Vienna">
				<exemplarCity>Βιέννη</exemplarCity>
			</zone>
			<zone type="Australia/Perth">
				<exemplarCity>Περθ</exemplarCity>
			</zone>
			<zone type="Australia/Eucla">
				<exemplarCity>Εούκλα</exemplarCity>
			</zone>
			<zone type="Australia/Darwin">
				<exemplarCity>Ντάργουιν</exemplarCity>
			</zone>
			<zone type="Australia/Adelaide">
				<exemplarCity>Αδελαΐδα</exemplarCity>
			</zone>
			<zone type="Australia/Broken_Hill">
				<exemplarCity>Μπρόκεν Χιλ</exemplarCity>
			</zone>
			<zone type="Australia/Currie">
				<exemplarCity>Κιουρί</exemplarCity>
			</zone>
			<zone type="Australia/Melbourne">
				<exemplarCity>Μελβούρνη</exemplarCity>
			</zone>
			<zone type="Australia/Hobart">
				<exemplarCity>Χόμπαρτ</exemplarCity>
			</zone>
			<zone type="Australia/Lindeman">
				<exemplarCity>Λίντεμαν</exemplarCity>
			</zone>
			<zone type="Australia/Sydney">
				<exemplarCity>Σίδνεϊ</exemplarCity>
			</zone>
			<zone type="Australia/Brisbane">
				<exemplarCity>Μπρίσμπεϊν</exemplarCity>
			</zone>
			<zone type="Australia/Lord_Howe">
				<exemplarCity>Λορντ Χάουι</exemplarCity>
			</zone>
			<zone type="America/Aruba">
				<exemplarCity>Αρούμπα</exemplarCity>
			</zone>
			<zone type="Asia/Baku">
				<exemplarCity>Μπακού</exemplarCity>
			</zone>
			<zone type="America/Barbados">
				<exemplarCity>Μπαρμπέιντος</exemplarCity>
			</zone>
			<zone type="Asia/Dhaka">
				<exemplarCity>Ντάκα</exemplarCity>
			</zone>
			<zone type="Europe/Brussels">
				<exemplarCity>Βρυξέλλες</exemplarCity>
			</zone>
			<zone type="Africa/Ouagadougou">
				<exemplarCity>Μπουρκίνα Φάσο</exemplarCity>
			</zone>
			<zone type="Europe/Sofia">
				<exemplarCity>Σόφια</exemplarCity>
			</zone>
			<zone type="Asia/Bahrain">
				<exemplarCity>Μπαχρέιν</exemplarCity>
			</zone>
			<zone type="Africa/Bujumbura">
				<exemplarCity>Μπουρούντι</exemplarCity>
			</zone>
			<zone type="Africa/Porto-Novo">
				<exemplarCity>Μπενίν</exemplarCity>
			</zone>
			<zone type="Atlantic/Bermuda">
				<exemplarCity>Βερμούδα</exemplarCity>
			</zone>
			<zone type="Asia/Brunei">
				<exemplarCity>Μπρούνεϊ</exemplarCity>
			</zone>
			<zone type="America/La_Paz">
				<exemplarCity>Λα Παζ</exemplarCity>
			</zone>
			<zone type="America/Eirunepe">
				<exemplarCity>Εϊρουνέπε</exemplarCity>
			</zone>
			<zone type="America/Rio_Branco">
				<exemplarCity>Ρίο Μπράνκο</exemplarCity>
			</zone>
			<zone type="America/Porto_Velho">
				<exemplarCity>Πόρτο Βέλο</exemplarCity>
			</zone>
			<zone type="America/Boa_Vista">
				<exemplarCity>Μπόα Βίστα</exemplarCity>
			</zone>
			<zone type="America/Manaus">
				<exemplarCity>Μανάος</exemplarCity>
			</zone>
			<zone type="America/Cuiaba">
				<exemplarCity>Κουϊάμπα</exemplarCity>
			</zone>
			<zone type="America/Santarem">
				<exemplarCity>Σανταρέμ</exemplarCity>
			</zone>
			<zone type="America/Campo_Grande">
				<exemplarCity>Κάμπο Γκράντε</exemplarCity>
			</zone>
			<zone type="America/Belem">
				<exemplarCity>Μπέλεμ</exemplarCity>
			</zone>
			<zone type="America/Araguaina">
				<exemplarCity>Αραγκουάινα</exemplarCity>
			</zone>
			<zone type="America/Sao_Paulo">
				<exemplarCity>Σάο Πάολο</exemplarCity>
			</zone>
			<zone type="America/Bahia">
				<exemplarCity>Μπάχια</exemplarCity>
			</zone>
			<zone type="America/Fortaleza">
				<exemplarCity>Φορταλέζα</exemplarCity>
			</zone>
			<zone type="America/Maceio">
				<exemplarCity>Μασέιο</exemplarCity>
			</zone>
			<zone type="America/Recife">
				<exemplarCity>Ρεσίφε</exemplarCity>
			</zone>
			<zone type="America/Noronha">
				<exemplarCity>Νορόνχα</exemplarCity>
			</zone>
			<zone type="America/Nassau">
				<exemplarCity>Νασάου</exemplarCity>
			</zone>
			<zone type="Asia/Thimphu">
				<exemplarCity>Τρίμφου</exemplarCity>
			</zone>
			<zone type="Africa/Gaborone">
				<exemplarCity>Γκαμπορόνε</exemplarCity>
			</zone>
			<zone type="Europe/Minsk">
				<exemplarCity>Μινσκ</exemplarCity>
			</zone>
			<zone type="America/Belize">
				<exemplarCity>Μπελίζ</exemplarCity>
			</zone>
			<zone type="America/Dawson">
				<exemplarCity>Ντόσον</exemplarCity>
			</zone>
			<zone type="America/Whitehorse">
				<exemplarCity>Γουάιτχορς</exemplarCity>
			</zone>
			<zone type="America/Inuvik">
				<exemplarCity>Ινούβικ</exemplarCity>
			</zone>
			<zone type="America/Vancouver">
				<exemplarCity>Βανκούβερ</exemplarCity>
			</zone>
			<zone type="America/Dawson_Creek">
				<exemplarCity>Ντόσον Κρικ</exemplarCity>
			</zone>
			<zone type="America/Yellowknife">
				<exemplarCity>Γέλοουναϊφ</exemplarCity>
			</zone>
			<zone type="America/Edmonton">
				<exemplarCity>Έντμοντον</exemplarCity>
			</zone>
			<zone type="America/Swift_Current">
				<exemplarCity>Σουίφτ Κάρρεντ</exemplarCity>
			</zone>
			<zone type="America/Cambridge_Bay">
				<exemplarCity>Κέμπριτζ Μπέι</exemplarCity>
			</zone>
			<zone type="America/Regina">
				<exemplarCity>Ρετζίνα</exemplarCity>
			</zone>
			<zone type="America/Winnipeg">
				<exemplarCity>Γούνιπεγκ</exemplarCity>
			</zone>
			<zone type="America/Resolute">
				<exemplarCity>Ρέσολουτ</exemplarCity>
			</zone>
			<zone type="America/Rainy_River">
				<exemplarCity>Ρέινι Ρίβερ</exemplarCity>
			</zone>
			<zone type="America/Rankin_Inlet">
				<exemplarCity>Ρέινκιν Ίνλετ</exemplarCity>
			</zone>
			<zone type="America/Coral_Harbour">
				<exemplarCity>Κόραλ Χάρμπουρ</exemplarCity>
			</zone>
			<zone type="America/Thunder_Bay">
				<exemplarCity>Θάντερ Μπέι</exemplarCity>
			</zone>
			<zone type="America/Nipigon">
				<exemplarCity>Νιπιγκόν</exemplarCity>
			</zone>
			<zone type="America/Toronto">
				<exemplarCity>Τορόντο</exemplarCity>
			</zone>
			<zone type="America/Montreal">
				<exemplarCity>Μόντρεαλ</exemplarCity>
			</zone>
			<zone type="America/Iqaluit">
				<exemplarCity>Ικαλούτ</exemplarCity>
			</zone>
			<zone type="America/Pangnirtung">
				<exemplarCity>Πανγκνίρτουνγκ</exemplarCity>
			</zone>
			<zone type="America/Moncton">
				<exemplarCity>Μονκτόν</exemplarCity>
			</zone>
			<zone type="America/Halifax">
				<exemplarCity>Χάλιφαξ</exemplarCity>
			</zone>
			<zone type="America/Goose_Bay">
				<exemplarCity>Γκους Μπέι</exemplarCity>
			</zone>
			<zone type="America/Glace_Bay">
				<exemplarCity>Γκλέις Μπέι</exemplarCity>
			</zone>
			<zone type="America/Blanc-Sablon">
				<exemplarCity>Μπλαν Σαμπλόν</exemplarCity>
			</zone>
			<zone type="America/St_Johns">
				<exemplarCity>Σεντ Τζονς</exemplarCity>
			</zone>
			<zone type="Indian/Cocos">
				<exemplarCity>Κόκος</exemplarCity>
			</zone>
			<zone type="Africa/Kinshasa">
				<exemplarCity>Κινσάσα</exemplarCity>
			</zone>
			<zone type="Africa/Lubumbashi">
				<exemplarCity>Λουμπουμπάσι</exemplarCity>
			</zone>
			<zone type="Africa/Bangui">
				<exemplarCity>Κεντροαφρικανική Δημοκρατία</exemplarCity>
			</zone>
			<zone type="Africa/Brazzaville">
				<exemplarCity>Μπράζαβιλ</exemplarCity>
			</zone>
			<zone type="Europe/Zurich">
				<exemplarCity>Ζυρίχη</exemplarCity>
			</zone>
			<zone type="Africa/Abidjan">
				<exemplarCity>Ακτή Ελεφαντοστού</exemplarCity>
			</zone>
			<zone type="Pacific/Rarotonga">
				<exemplarCity>Ραροτόνγκα</exemplarCity>
			</zone>
			<zone type="Pacific/Easter">
				<exemplarCity>Νήσος Πάσχα</exemplarCity>
			</zone>
			<zone type="America/Santiago">
				<exemplarCity>Σαντιάγκο</exemplarCity>
			</zone>
			<zone type="Africa/Douala">
				<exemplarCity>Καμερούν</exemplarCity>
			</zone>
			<zone type="Asia/Kashgar">
				<exemplarCity>Κάσγκαρ</exemplarCity>
			</zone>
			<zone type="Asia/Urumqi">
				<exemplarCity>Ουρουμκί</exemplarCity>
			</zone>
			<zone type="Asia/Chongqing">
				<exemplarCity>Τσονγκίνγκ</exemplarCity>
			</zone>
			<zone type="Asia/Shanghai">
				<exemplarCity>Σανγκάη</exemplarCity>
			</zone>
			<zone type="Asia/Harbin">
				<exemplarCity>Χαρμπίν</exemplarCity>
			</zone>
			<zone type="America/Bogota">
				<exemplarCity>Μπογκοτά</exemplarCity>
			</zone>
			<zone type="America/Costa_Rica">
				<exemplarCity>Κόστα Ρίκα</exemplarCity>
			</zone>
			<zone type="America/Havana">
				<exemplarCity>Αβάνα</exemplarCity>
			</zone>
			<zone type="Indian/Christmas">
				<exemplarCity>Νήσοι Χριστουγέννων</exemplarCity>
			</zone>
			<zone type="Asia/Nicosia">
				<exemplarCity>Λευκωσία</exemplarCity>
			</zone>
			<zone type="Europe/Berlin">
				<exemplarCity>Βερολίνο</exemplarCity>
			</zone>
			<zone type="Africa/Djibouti">
				<exemplarCity>Τζιμπουτί</exemplarCity>
			</zone>
			<zone type="Europe/Copenhagen">
				<exemplarCity>Κοπεγχάγη</exemplarCity>
			</zone>
			<zone type="America/Dominica">
				<exemplarCity>Δομινίκα</exemplarCity>
			</zone>
			<zone type="America/Santo_Domingo">
				<exemplarCity>Σάντο Ντομίνγκο</exemplarCity>
			</zone>
			<zone type="Africa/Algiers">
				<exemplarCity>Αλγέρι</exemplarCity>
			</zone>
			<zone type="Pacific/Galapagos">
				<exemplarCity>Γκαλαπάγκος</exemplarCity>
			</zone>
			<zone type="America/Guayaquil">
				<exemplarCity>Γκουαγιακύλ</exemplarCity>
			</zone>
			<zone type="Europe/Tallinn">
				<exemplarCity>Ταλίν</exemplarCity>
			</zone>
			<zone type="Africa/Cairo">
				<exemplarCity>Αίγυπτος</exemplarCity>
			</zone>
			<zone type="Africa/El_Aaiun">
				<exemplarCity>Δυτική Σαχάρα</exemplarCity>
			</zone>
			<zone type="Africa/Asmera">
				<exemplarCity>Ασμέρα</exemplarCity>
			</zone>
			<zone type="Atlantic/Canary">
				<exemplarCity>Κανάρια</exemplarCity>
			</zone>
			<zone type="Africa/Ceuta">
				<exemplarCity>Κέουτα</exemplarCity>
			</zone>
			<zone type="Europe/Madrid">
				<exemplarCity>Μαδρίτη</exemplarCity>
			</zone>
			<zone type="Africa/Addis_Ababa">
				<exemplarCity>Αιθιοπία</exemplarCity>
			</zone>
			<zone type="Europe/Helsinki">
				<exemplarCity>Ελσίνκι</exemplarCity>
			</zone>
			<zone type="Pacific/Fiji">
				<exemplarCity>Φίτζι</exemplarCity>
			</zone>
			<zone type="Atlantic/Stanley">
				<exemplarCity>Στάνλεϋ</exemplarCity>
			</zone>
			<zone type="Pacific/Truk">
				<exemplarCity>Τρουκ</exemplarCity>
			</zone>
			<zone type="Pacific/Ponape">
				<exemplarCity>Πονάπε</exemplarCity>
			</zone>
			<zone type="Pacific/Kosrae">
				<exemplarCity>Κοσράη</exemplarCity>
			</zone>
			<zone type="Atlantic/Faeroe">
				<exemplarCity>Φερόες</exemplarCity>
			</zone>
			<zone type="Europe/Paris">
				<exemplarCity>Παρίσι</exemplarCity>
			</zone>
			<zone type="Africa/Libreville">
				<exemplarCity>Γκαμπόν</exemplarCity>
			</zone>
			<zone type="Europe/London">
				<exemplarCity>Λονδίνο</exemplarCity>
			</zone>
			<zone type="America/Grenada">
				<exemplarCity>Γρενάδα</exemplarCity>
			</zone>
			<zone type="Asia/Tbilisi">
				<exemplarCity>Τμπιλίσι</exemplarCity>
			</zone>
			<zone type="America/Cayenne">
				<exemplarCity>Καγιένε</exemplarCity>
			</zone>
			<zone type="Africa/Accra">
				<exemplarCity>Άκκρα</exemplarCity>
			</zone>
			<zone type="Europe/Gibraltar">
				<exemplarCity>Γιβραλτάρ</exemplarCity>
			</zone>
			<zone type="America/Thule">
				<exemplarCity>Τούλε</exemplarCity>
			</zone>
			<zone type="America/Godthab">
				<exemplarCity>Γκόνθαμπ</exemplarCity>
			</zone>
			<zone type="America/Scoresbysund">
				<exemplarCity>Σκορεσμπίσουντ</exemplarCity>
			</zone>
			<zone type="America/Danmarkshavn">
				<exemplarCity>Ντανμαρκσάβν</exemplarCity>
			</zone>
			<zone type="Africa/Banjul">
				<exemplarCity>Γκάμπια</exemplarCity>
			</zone>
			<zone type="Africa/Conakry">
				<exemplarCity>Γουινέα</exemplarCity>
			</zone>
			<zone type="America/Guadeloupe">
				<exemplarCity>Γουαδελούπη</exemplarCity>
			</zone>
			<zone type="Africa/Malabo">
				<exemplarCity>Ισημερινή Γουινέα</exemplarCity>
			</zone>
			<zone type="Europe/Athens">
				<exemplarCity>Αθήνα</exemplarCity>
			</zone>
			<zone type="Atlantic/South_Georgia">
				<exemplarCity>Νότια Γεωργία</exemplarCity>
			</zone>
			<zone type="America/Guatemala">
				<exemplarCity>Γουατεμάλα</exemplarCity>
			</zone>
			<zone type="Pacific/Guam">
				<exemplarCity>Γκουάμ</exemplarCity>
			</zone>
			<zone type="Africa/Bissau">
				<exemplarCity>Γουινέα Μπισσάου</exemplarCity>
			</zone>
			<zone type="America/Guyana">
				<exemplarCity>Γουιάνα</exemplarCity>
			</zone>
			<zone type="Asia/Hong_Kong">
				<exemplarCity>Χονγκ Κονγκ</exemplarCity>
			</zone>
			<zone type="America/Port-au-Prince">
				<exemplarCity>Πορτ-Ο-Πρενς</exemplarCity>
			</zone>
			<zone type="Europe/Budapest">
				<exemplarCity>Βουδαπέστη</exemplarCity>
			</zone>
			<zone type="Asia/Jakarta">
				<exemplarCity>Τζακάρτα</exemplarCity>
			</zone>
			<zone type="Asia/Pontianak">
				<exemplarCity>Πόντιανακ</exemplarCity>
			</zone>
			<zone type="Asia/Makassar">
				<exemplarCity>Μακασάρ</exemplarCity>
			</zone>
			<zone type="Asia/Jayapura">
				<exemplarCity>Χαγιαπούρα</exemplarCity>
			</zone>
			<zone type="Europe/Dublin">
				<exemplarCity>Δουβλίνο</exemplarCity>
			</zone>
			<zone type="Asia/Jerusalem">
				<exemplarCity>Ιερουσαλήμ</exemplarCity>
			</zone>
			<zone type="Indian/Chagos">
				<exemplarCity>Τσάγκος</exemplarCity>
			</zone>
			<zone type="Asia/Baghdad">
				<exemplarCity>Βαγδάτη</exemplarCity>
			</zone>
			<zone type="Asia/Tehran">
				<exemplarCity>Τεχεράνη</exemplarCity>
			</zone>
			<zone type="Atlantic/Reykjavik">
				<exemplarCity>Ρέυκιαβικ</exemplarCity>
			</zone>
			<zone type="Europe/Rome">
				<exemplarCity>Ρώμη</exemplarCity>
			</zone>
			<zone type="America/Jamaica">
				<exemplarCity>Τζαμάικα</exemplarCity>
			</zone>
			<zone type="Asia/Amman">
				<exemplarCity>Αμάν</exemplarCity>
			</zone>
			<zone type="Asia/Tokyo">
				<exemplarCity>Τόκυο</exemplarCity>
			</zone>
			<zone type="Africa/Nairobi">
				<exemplarCity>Κένυα</exemplarCity>
			</zone>
			<zone type="Asia/Bishkek">
				<exemplarCity>Μπισχέκ</exemplarCity>
			</zone>
			<zone type="Asia/Phnom_Penh">
				<exemplarCity>Πιόμ Πενχ</exemplarCity>
			</zone>
			<zone type="Pacific/Enderbury">
				<exemplarCity>Εντερμπέρυ</exemplarCity>
			</zone>
			<zone type="Pacific/Kiritimati">
				<exemplarCity>Κιριτιμάτι</exemplarCity>
			</zone>
			<zone type="Pacific/Tarawa">
				<exemplarCity>Ταράουα</exemplarCity>
			</zone>
			<zone type="Indian/Comoro">
				<exemplarCity>Κομόρο</exemplarCity>
			</zone>
			<zone type="America/St_Kitts">
				<exemplarCity>Σαιν Κιττς</exemplarCity>
			</zone>
			<zone type="Asia/Pyongyang">
				<exemplarCity>Πυόνγκ Γιάνγκ</exemplarCity>
			</zone>
			<zone type="Asia/Seoul">
				<exemplarCity>Σεούλ</exemplarCity>
			</zone>
			<zone type="America/Cayman">
				<exemplarCity>Κέυμαν</exemplarCity>
			</zone>
			<zone type="Asia/Aqtau">
				<exemplarCity>Ακτάου</exemplarCity>
			</zone>
			<zone type="Asia/Oral">
				<exemplarCity>Όραλ</exemplarCity>
			</zone>
			<zone type="Asia/Aqtobe">
				<exemplarCity>Ακτόμπε</exemplarCity>
			</zone>
			<zone type="Asia/Qyzylorda">
				<exemplarCity>Κτζιλ-Ορντά</exemplarCity>
			</zone>
			<zone type="Asia/Almaty">
				<exemplarCity>Αλμάτυ</exemplarCity>
			</zone>
			<zone type="Asia/Vientiane">
				<exemplarCity>Βιεντιάνε</exemplarCity>
			</zone>
			<zone type="Asia/Beirut">
				<exemplarCity>Βηρυτός</exemplarCity>
			</zone>
			<zone type="America/St_Lucia">
				<exemplarCity>Αγ. Λουκία</exemplarCity>
			</zone>
			<zone type="Europe/Vaduz">
				<exemplarCity>Βαντούζ</exemplarCity>
			</zone>
			<zone type="Asia/Colombo">
				<exemplarCity>Κολόμπο</exemplarCity>
			</zone>
			<zone type="Africa/Monrovia">
				<exemplarCity>Λιβερία</exemplarCity>
			</zone>
			<zone type="Africa/Maseru">
				<exemplarCity>Λεσόθο</exemplarCity>
			</zone>
			<zone type="Europe/Vilnius">
				<exemplarCity>Βίλνιους</exemplarCity>
			</zone>
			<zone type="Europe/Luxembourg">
				<exemplarCity>Λουξεμβούργο</exemplarCity>
			</zone>
			<zone type="Europe/Riga">
				<exemplarCity>Ρίγα</exemplarCity>
			</zone>
			<zone type="Africa/Tripoli">
				<exemplarCity>Λιβύη</exemplarCity>
			</zone>
			<zone type="Africa/Casablanca">
				<exemplarCity>Καζαμπλάνκα</exemplarCity>
			</zone>
			<zone type="Europe/Monaco">
				<exemplarCity>Μονακό</exemplarCity>
			</zone>
			<zone type="Europe/Chisinau">
				<exemplarCity>Τσισινάου</exemplarCity>
			</zone>
			<zone type="Indian/Antananarivo">
				<exemplarCity>Ανταναναρίβο</exemplarCity>
			</zone>
			<zone type="Pacific/Kwajalein">
				<exemplarCity>Κουαχαλέιν</exemplarCity>
			</zone>
			<zone type="Pacific/Majuro">
				<exemplarCity>Μαχούρο</exemplarCity>
			</zone>
			<zone type="Africa/Bamako">
				<exemplarCity>Μπαμάκο</exemplarCity>
			</zone>
			<zone type="Asia/Rangoon">
				<exemplarCity>Ρανγκούν</exemplarCity>
			</zone>
			<zone type="Asia/Hovd">
				<exemplarCity>Χοβντ</exemplarCity>
			</zone>
			<zone type="Asia/Ulaanbaatar">
				<exemplarCity>Ουλάν Μπατόρ</exemplarCity>
			</zone>
			<zone type="Asia/Choibalsan">
				<exemplarCity>Χόιμπαλσαν</exemplarCity>
			</zone>
			<zone type="Asia/Macau">
				<exemplarCity>Μακάο</exemplarCity>
			</zone>
			<zone type="Pacific/Saipan">
				<exemplarCity>Σάιπαν</exemplarCity>
			</zone>
			<zone type="America/Martinique">
				<exemplarCity>Μαρτινίκα</exemplarCity>
			</zone>
			<zone type="Africa/Nouakchott">
				<exemplarCity>Μαυριτανία</exemplarCity>
			</zone>
			<zone type="America/Montserrat">
				<exemplarCity>Μονσεράτ</exemplarCity>
			</zone>
			<zone type="Europe/Malta">
				<exemplarCity>Μάλτα</exemplarCity>
			</zone>
			<zone type="Indian/Mauritius">
				<exemplarCity>Μαυρίκιος</exemplarCity>
			</zone>
			<zone type="Indian/Maldives">
				<exemplarCity>Μαλδίβες</exemplarCity>
			</zone>
			<zone type="Africa/Blantyre">
				<exemplarCity>Μαλάουι</exemplarCity>
			</zone>
			<zone type="America/Tijuana">
				<exemplarCity>Τιχουάνα</exemplarCity>
			</zone>
			<zone type="America/Hermosillo">
				<exemplarCity>Ερμοσίγιο</exemplarCity>
			</zone>
			<zone type="America/Mazatlan">
				<exemplarCity>Μαζατλάν</exemplarCity>
			</zone>
			<zone type="America/Chihuahua">
				<exemplarCity>Τσιουάουα</exemplarCity>
			</zone>
			<zone type="America/Monterrey">
				<exemplarCity>Μοντερέι</exemplarCity>
			</zone>
			<zone type="America/Mexico_City">
				<exemplarCity>Πόλη του Μεξικού</exemplarCity>
			</zone>
			<zone type="America/Merida">
				<exemplarCity>Μέριντα</exemplarCity>
			</zone>
			<zone type="America/Cancun">
				<exemplarCity>Κανκούν</exemplarCity>
			</zone>
			<zone type="Asia/Kuala_Lumpur">
				<exemplarCity>Κουάλα Λουμπούρ</exemplarCity>
			</zone>
			<zone type="Asia/Kuching">
				<exemplarCity>Κουτσίνγκ</exemplarCity>
			</zone>
			<zone type="Africa/Maputo">
				<exemplarCity>Μαπούτο</exemplarCity>
			</zone>
			<zone type="Africa/Windhoek">
				<exemplarCity>Γουιντχόεκ</exemplarCity>
			</zone>
			<zone type="Pacific/Noumea">
				<exemplarCity>Νουμέα</exemplarCity>
			</zone>
			<zone type="Africa/Niamey">
				<exemplarCity>Νιαμέυ</exemplarCity>
			</zone>
			<zone type="Pacific/Norfolk">
				<exemplarCity>Νόρφολκ</exemplarCity>
			</zone>
			<zone type="Africa/Lagos">
				<exemplarCity>Λάγος</exemplarCity>
			</zone>
			<zone type="America/Managua">
				<exemplarCity>Μανάγκουα</exemplarCity>
			</zone>
			<zone type="Europe/Amsterdam">
				<exemplarCity>Άμστερνταμ</exemplarCity>
			</zone>
			<zone type="Europe/Oslo">
				<exemplarCity>Όσλο</exemplarCity>
			</zone>
			<zone type="Asia/Katmandu">
				<exemplarCity>Κατμαντού</exemplarCity>
			</zone>
			<zone type="Pacific/Nauru">
				<exemplarCity>Ναούρου</exemplarCity>
			</zone>
			<zone type="Pacific/Niue">
				<exemplarCity>Νιούε</exemplarCity>
			</zone>
			<zone type="Pacific/Chatham">
				<exemplarCity>Τσάταμ</exemplarCity>
			</zone>
			<zone type="Pacific/Auckland">
				<exemplarCity>Όκλαντ</exemplarCity>
			</zone>
			<zone type="Asia/Muscat">
				<exemplarCity>Μουσκάτ</exemplarCity>
			</zone>
			<zone type="America/Panama">
				<exemplarCity>Παναμάς</exemplarCity>
			</zone>
			<zone type="America/Lima">
				<exemplarCity>Λίμα</exemplarCity>
			</zone>
			<zone type="Pacific/Tahiti">
				<exemplarCity>Αϊτή</exemplarCity>
			</zone>
			<zone type="Pacific/Marquesas">
				<exemplarCity>Μαρκέσας</exemplarCity>
			</zone>
			<zone type="Pacific/Gambier">
				<exemplarCity>Γκάμπιερ</exemplarCity>
			</zone>
			<zone type="Pacific/Port_Moresby">
				<exemplarCity>Πορτ Μόρεσμπυ</exemplarCity>
			</zone>
			<zone type="Asia/Manila">
				<exemplarCity>Μανίλα</exemplarCity>
			</zone>
			<zone type="Asia/Karachi">
				<exemplarCity>Καράτσι</exemplarCity>
			</zone>
			<zone type="Europe/Warsaw">
				<exemplarCity>Βαρσοβία</exemplarCity>
			</zone>
			<zone type="America/Miquelon">
				<exemplarCity>Μικελόν</exemplarCity>
			</zone>
			<zone type="Pacific/Pitcairn">
				<exemplarCity>Πιτκέιρν</exemplarCity>
			</zone>
			<zone type="America/Puerto_Rico">
				<exemplarCity>Πουέρτο Ρίκο</exemplarCity>
			</zone>
			<zone type="Asia/Gaza">
				<exemplarCity>Γάζα</exemplarCity>
			</zone>
			<zone type="Atlantic/Azores">
				<exemplarCity>Αζόρες</exemplarCity>
			</zone>
			<zone type="Atlantic/Madeira">
				<exemplarCity>Μαδέρα</exemplarCity>
			</zone>
			<zone type="Europe/Lisbon">
				<exemplarCity>Λισσαβώνα</exemplarCity>
			</zone>
			<zone type="Pacific/Palau">
				<exemplarCity>Παλάου</exemplarCity>
			</zone>
			<zone type="America/Asuncion">
				<exemplarCity>Ασουνσιόν</exemplarCity>
			</zone>
			<zone type="Asia/Qatar">
				<exemplarCity>Κατάρ</exemplarCity>
			</zone>
			<zone type="Indian/Reunion">
				<exemplarCity>Ρεϋνιόν</exemplarCity>
			</zone>
			<zone type="Europe/Bucharest">
				<exemplarCity>Βουκουρέστι</exemplarCity>
			</zone>
			<zone type="Europe/Kaliningrad">
				<exemplarCity>Καλλίπολη</exemplarCity>
			</zone>
			<zone type="Europe/Moscow">
				<exemplarCity>Μόσχα</exemplarCity>
			</zone>
			<zone type="Europe/Volgograd">
				<exemplarCity>Βόλγκοκραντ</exemplarCity>
			</zone>
			<zone type="Europe/Samara">
				<exemplarCity>Σαμάρα</exemplarCity>
			</zone>
			<zone type="Asia/Yekaterinburg">
				<exemplarCity>Αικατερινούπολη</exemplarCity>
			</zone>
			<zone type="Asia/Omsk">
				<exemplarCity>Ομσκ</exemplarCity>
			</zone>
			<zone type="Asia/Novosibirsk">
				<exemplarCity>Νοβοσιμπίρσκ</exemplarCity>
			</zone>
			<zone type="Asia/Krasnoyarsk">
				<exemplarCity>Κρασνογιάρσκ</exemplarCity>
			</zone>
			<zone type="Asia/Irkutsk">
				<exemplarCity>Ιρκούτσκ</exemplarCity>
			</zone>
			<zone type="Asia/Yakutsk">
				<exemplarCity>Γιάκουτσκ</exemplarCity>
			</zone>
			<zone type="Asia/Vladivostok">
				<exemplarCity>Βλαδιβοστόκ</exemplarCity>
			</zone>
			<zone type="Asia/Sakhalin">
				<exemplarCity>Σακαλίνσκ</exemplarCity>
			</zone>
			<zone type="Asia/Magadan">
				<exemplarCity>Μαγκαντάν</exemplarCity>
			</zone>
			<zone type="Asia/Kamchatka">
				<exemplarCity>Καμτσάτκα</exemplarCity>
			</zone>
			<zone type="Asia/Anadyr">
				<exemplarCity>Αναντίρ</exemplarCity>
			</zone>
			<zone type="Africa/Kigali">
				<exemplarCity>Κιγκάλι</exemplarCity>
			</zone>
			<zone type="Asia/Riyadh">
				<exemplarCity>Ριάντ</exemplarCity>
			</zone>
			<zone type="Pacific/Guadalcanal">
				<exemplarCity>Γκουανταλκανάλ</exemplarCity>
			</zone>
			<zone type="Indian/Mahe">
				<exemplarCity>Μάχε</exemplarCity>
			</zone>
			<zone type="Africa/Khartoum">
				<exemplarCity>Σουδάν</exemplarCity>
			</zone>
			<zone type="Europe/Stockholm">
				<exemplarCity>Στοκχόλμη</exemplarCity>
			</zone>
			<zone type="Asia/Singapore">
				<exemplarCity>Σιγκαπούρη</exemplarCity>
			</zone>
			<zone type="Atlantic/St_Helena">
				<exemplarCity>Αγ. Ελένη</exemplarCity>
			</zone>
			<zone type="Africa/Freetown">
				<exemplarCity>Σιέρα Λεόνε</exemplarCity>
			</zone>
			<zone type="Africa/Dakar">
				<exemplarCity>Ντακάρ</exemplarCity>
			</zone>
			<zone type="Africa/Mogadishu">
				<exemplarCity>Μογκαντίσου</exemplarCity>
			</zone>
			<zone type="America/Paramaribo">
				<exemplarCity>Παραμαρίνμπο</exemplarCity>
			</zone>
			<zone type="Africa/Sao_Tome">
				<exemplarCity>Σάο Τόμε</exemplarCity>
			</zone>
			<zone type="America/El_Salvador">
				<exemplarCity>Σαλβαδόρ</exemplarCity>
			</zone>
			<zone type="Asia/Damascus">
				<exemplarCity>Δαμασκός</exemplarCity>
			</zone>
			<zone type="Africa/Mbabane">
				<exemplarCity>Ζουαζιλάνδη</exemplarCity>
			</zone>
			<zone type="America/Grand_Turk">
				<exemplarCity>Γραντ Τουρκ</exemplarCity>
			</zone>
			<zone type="Africa/Ndjamena">
				<exemplarCity>Ντζαμένα</exemplarCity>
			</zone>
			<zone type="Indian/Kerguelen">
				<exemplarCity>Κέργκουελεν</exemplarCity>
			</zone>
			<zone type="Africa/Lome">
				<exemplarCity>Λόμε</exemplarCity>
			</zone>
			<zone type="Asia/Bangkok">
				<exemplarCity>Μπανγκόκ</exemplarCity>
			</zone>
			<zone type="Asia/Dushanbe">
				<exemplarCity>Ντουσχάνμπη</exemplarCity>
			</zone>
			<zone type="Pacific/Fakaofo">
				<exemplarCity>Φακαόφο</exemplarCity>
			</zone>
			<zone type="Asia/Dili">
				<exemplarCity>Ντίλι</exemplarCity>
			</zone>
			<zone type="Asia/Ashgabat">
				<exemplarCity>Ασγκάμπατ</exemplarCity>
			</zone>
			<zone type="Africa/Tunis">
				<exemplarCity>Τυνησία</exemplarCity>
			</zone>
			<zone type="Pacific/Tongatapu">
				<exemplarCity>Τονγκατάπου</exemplarCity>
			</zone>
			<zone type="Europe/Istanbul">
				<exemplarCity>Κωνσταντινούπολη</exemplarCity>
			</zone>
			<zone type="America/Port_of_Spain">
				<exemplarCity>Πορτ-Οφ-Σπέιν</exemplarCity>
			</zone>
			<zone type="Pacific/Funafuti">
				<exemplarCity>Φουναφούτι</exemplarCity>
			</zone>
			<zone type="Asia/Taipei">
				<exemplarCity>Ταϊπέι</exemplarCity>
			</zone>
			<zone type="Africa/Dar_es_Salaam">
				<exemplarCity>Νταρ Ες Σαλάμ</exemplarCity>
			</zone>
			<zone type="Europe/Uzhgorod">
				<exemplarCity>Ουζκόροντ</exemplarCity>
			</zone>
			<zone type="Europe/Kiev">
				<exemplarCity>Κίεβο</exemplarCity>
			</zone>
			<zone type="Europe/Simferopol">
				<exemplarCity>Συμφερούπολη</exemplarCity>
			</zone>
			<zone type="Europe/Zaporozhye">
				<exemplarCity>Ζαπορόζιε</exemplarCity>
			</zone>
			<zone type="Africa/Kampala">
				<exemplarCity>Καμπάλα</exemplarCity>
			</zone>
			<zone type="Pacific/Midway">
				<exemplarCity>Μίντγουεϊ</exemplarCity>
			</zone>
			<zone type="Pacific/Johnston">
				<exemplarCity>Τζόνστον</exemplarCity>
			</zone>
			<zone type="Pacific/Wake">
				<exemplarCity>Γουέικ</exemplarCity>
			</zone>
			<zone type="America/Adak">
				<exemplarCity>Άντακ</exemplarCity>
			</zone>
			<zone type="America/Nome">
				<exemplarCity>Νόμε</exemplarCity>
			</zone>
			<zone type="Pacific/Honolulu">
				<exemplarCity>Χονολουλού</exemplarCity>
			</zone>
			<zone type="America/Anchorage">
				<exemplarCity>Άνκορατζ</exemplarCity>
			</zone>
			<zone type="America/Yakutat">
				<exemplarCity>Γιακούτατ</exemplarCity>
			</zone>
			<zone type="America/Juneau">
				<exemplarCity>Τζούνο</exemplarCity>
			</zone>
			<zone type="America/Los_Angeles">
				<exemplarCity>Λος Άντζελες</exemplarCity>
			</zone>
			<zone type="America/Boise">
				<exemplarCity>Μπόιζ</exemplarCity>
			</zone>
			<zone type="America/Phoenix">
				<exemplarCity>Φοίνιξ</exemplarCity>
			</zone>
			<zone type="America/Shiprock">
				<exemplarCity>Σίπροκ</exemplarCity>
			</zone>
			<zone type="America/Denver">
				<exemplarCity>Ντένβερ</exemplarCity>
			</zone>
			<zone type="America/North_Dakota/New_Salem">
				<exemplarCity>Νιου Σάλεμ, Βόρεια Ντακότα</exemplarCity>
			</zone>
			<zone type="America/North_Dakota/Center">
				<exemplarCity>Κέντρο, Βόρεια Ντακότα</exemplarCity>
			</zone>
			<zone type="America/Chicago">
				<exemplarCity>Σικάγο</exemplarCity>
			</zone>
			<zone type="America/Menominee">
				<exemplarCity>Μενομίνε</exemplarCity>
			</zone>
			<zone type="America/Indiana/Vincennes">
				<exemplarCity>Βίνκενες, Ιντιάνα</exemplarCity>
			</zone>
			<zone type="America/Indiana/Petersburg">
				<exemplarCity>Πίτερσμπεργκ, Ιντιάνα</exemplarCity>
			</zone>
			<zone type="America/Indiana/Tell_City">
				<exemplarCity>Τελ Σίτυ, Ιντιάνα</exemplarCity>
			</zone>
			<zone type="America/Indiana/Knox">
				<exemplarCity>Νοξ, Ιντιάνα</exemplarCity>
			</zone>
			<zone type="America/Indiana/Winamac">
				<exemplarCity>Γουίναμακ, Ιντιάνα</exemplarCity>
			</zone>
			<zone type="America/Indiana/Marengo">
				<exemplarCity>Μαρένγκο, Ιντιάνα</exemplarCity>
			</zone>
			<zone type="America/Indianapolis">
				<exemplarCity>Ινδιανάπολη</exemplarCity>
			</zone>
			<zone type="America/Louisville">
				<exemplarCity>Λούισβιλ</exemplarCity>
			</zone>
			<zone type="America/Indiana/Vevay">
				<exemplarCity>Βεβάι, Ιντιάνα</exemplarCity>
			</zone>
			<zone type="America/Kentucky/Monticello">
				<exemplarCity>Μοντιτσέλο, Κεντάκι</exemplarCity>
			</zone>
			<zone type="America/Detroit">
				<exemplarCity>Ντητρόιτ</exemplarCity>
			</zone>
			<zone type="America/New_York">
				<exemplarCity>Νέα Υόρκη</exemplarCity>
			</zone>
			<zone type="America/Montevideo">
				<exemplarCity>Μοντεβίδεο</exemplarCity>
			</zone>
			<zone type="Asia/Samarkand">
				<exemplarCity>Σαμαρκάνδη</exemplarCity>
			</zone>
			<zone type="Asia/Tashkent">
				<exemplarCity>Τασκένδη</exemplarCity>
			</zone>
			<zone type="America/St_Vincent">
				<exemplarCity>Αγ. Βικέντιος</exemplarCity>
			</zone>
			<zone type="America/Caracas">
				<exemplarCity>Καράκας</exemplarCity>
			</zone>
			<zone type="America/Tortola">
				<exemplarCity>Τορτόλα</exemplarCity>
			</zone>
			<zone type="America/St_Thomas">
				<exemplarCity>Σαιντ Τόμας</exemplarCity>
			</zone>
			<zone type="Asia/Saigon">
				<exemplarCity>Σαϊγκόν</exemplarCity>
			</zone>
			<zone type="Pacific/Efate">
				<exemplarCity>Εφάτε</exemplarCity>
			</zone>
			<zone type="Pacific/Wallis">
				<exemplarCity>Γουόλις</exemplarCity>
			</zone>
			<zone type="Pacific/Apia">
				<exemplarCity>Άπια</exemplarCity>
			</zone>
			<zone type="Asia/Aden">
				<exemplarCity>Έιντεν</exemplarCity>
			</zone>
			<zone type="Indian/Mayotte">
				<exemplarCity>Μαγιότε</exemplarCity>
			</zone>
			<zone type="Africa/Johannesburg">
				<exemplarCity>Γιοχάνεσμπουργκ</exemplarCity>
			</zone>
			<zone type="Africa/Lusaka">
				<exemplarCity>Ζάμπια</exemplarCity>
			</zone>
			<zone type="Africa/Harare">
				<exemplarCity>Ζιμπάμπουε</exemplarCity>
			</zone>
			<metazone type="Acre">
				<short>
					<standard>ACT (Ακρ)</standard>
					<daylight>ACST (Ακρ)</daylight>
				</short>
			</metazone>
			<metazone type="Africa_Central">
				<long>
					<standard>ώρα Κεντρικής Αφρικής</standard>
				</long>
			</metazone>
			<metazone type="Africa_Eastern">
				<long>
					<standard>ώρα Ανατολικής Αφρικής</standard>
				</long>
			</metazone>
			<metazone type="Africa_Southern">
				<long>
					<generic>ώρα Νότιας Αφρικής</generic>
					<standard>τυπική ώρα Νότιας Αφρικής</standard>
				</long>
			</metazone>
			<metazone type="Africa_Western">
				<long>
					<standard>ώρα Δυτικής Αφρικής</standard>
					<daylight>καλοκαιρινή ώρα Δυτικής Αφρικής</daylight>
				</long>
			</metazone>
			<metazone type="Aqtau">
				<short>
					<standard>AQTT (Ακτάου)</standard>
					<daylight>AQTST (Ακτάου)</daylight>
				</short>
			</metazone>
			<metazone type="Aqtobe">
				<short>
					<standard>AQTT (Ακτοβε)</standard>
					<daylight>AQTST (Ακτοβε)</daylight>
				</short>
			</metazone>
			<metazone type="Bering">
				<short>
					<standard>BST (Μπερίνγκ)</standard>
					<daylight>BDT (Μπερίνγκ)</daylight>
				</short>
			</metazone>
			<metazone type="Cuba">
				<short>
					<standard>CST (Κούβα)</standard>
					<daylight>CDT (Κούβα)</daylight>
				</short>
			</metazone>
			<metazone type="Samarkand">
				<short>
					<standard>SAMT (Σάμαρκαντ)</standard>
					<daylight>SAMST (Σάμαρκαντ)</daylight>
				</short>
			</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>
		<percentFormats>
			<percentFormatLength>
				<percentFormat>
					<pattern>#,##0%</pattern>
				</percentFormat>
			</percentFormatLength>
		</percentFormats>
		<currencyFormats>
			<currencyFormatLength>
				<currencyFormat>
					<pattern>#,##0.00 ¤</pattern>
				</currencyFormat>
			</currencyFormatLength>
			<unitPattern count="other">{0} {1}</unitPattern>
		</currencyFormats>
		<currencies>
			<currency type="ADP">
				<displayName>Πεσέτα Ανδόρας</displayName>
				<displayName count="one">πεσέτα Ανδόρας</displayName>
				<displayName count="other">πεσέτες Ανδόρας</displayName>
			</currency>
			<currency type="AED">
				<displayName>Ντιράμ Ηνωμένων Αραβικών Εμιράτων</displayName>
				<displayName count="one">ντιράμ Ηνωμένων Αραβικών Εμιράτων</displayName>
				<displayName count="other">ντιράμ Ηνωμένων Αραβικών Εμιράτων</displayName>
			</currency>
			<currency type="AFA">
				<displayName>Αφγανί Αφγανιστάν (1927-2002)</displayName>
				<displayName count="one">αφγάνι Αφγανιστάν (AFA)</displayName>
				<displayName count="other">αφγάνι Αφγανιστάν (AFA)</displayName>
			</currency>
			<currency type="AFN">
				<displayName>Αφγανί Αφγανιστάν</displayName>
				<displayName count="one">αφγάνι Αφγανιστάν</displayName>
				<displayName count="other">Αφγάνι Αφγανιστάν</displayName>
			</currency>
			<currency type="ALL">
				<displayName>Λεκ Αλβανίας</displayName>
				<displayName count="one">λεκ Αλβανίας</displayName>
				<displayName count="other">λεκ Αλβανίας</displayName>
			</currency>
			<currency type="AMD">
				<displayName>Ντραμ Αρμενίας</displayName>
				<displayName count="one">ντραμ Αρμενίας</displayName>
				<displayName count="other">ντραμ Αρμενίας</displayName>
			</currency>
			<currency type="ANG">
				<displayName>Γκίλντα Ολλανδικών Αντιλλών</displayName>
				<displayName count="one">γκίλντα Ολλανδικών Αντιλλών</displayName>
				<displayName count="other">γκίλντα Ολλανδικών Αντιλλών</displayName>
			</currency>
			<currency type="AOA">
				<displayName>Κουάνζα Ανγκόλας</displayName>
				<displayName count="one">κουάνζα Ανγκόλας</displayName>
				<displayName count="other">κουάνζα Ανγκόλας</displayName>
			</currency>
			<currency type="AOK">
				<displayName>Κουάνζα Ανγκόλας (1977-1990)</displayName>
				<displayName count="one">κουάνζα Ανγκόλας (AOK)</displayName>
				<displayName count="other">κουάνζα Ανγκόλας (AOK)</displayName>
			</currency>
			<currency type="AON">
				<displayName>Νέα Κουάνζα Ανγκόλας (1990-2000)</displayName>
				<displayName count="one">νέο κουάνζα Ανγκόλας (AON)</displayName>
				<displayName count="other">νέα κουάνζα Ανγκόλας (AON)</displayName>
			</currency>
			<currency type="AOR">
				<displayName>Κουάνζα Reajustado Ανγκόλας (1995-1999)</displayName>
				<displayName count="one">κουάνζα Reajustado Ανγκόλας (AOR)</displayName>
				<displayName count="other">κουάνζα Reajustado Ανγκόλας (AOR)</displayName>
			</currency>
			<currency type="ARA">
				<displayName>Ωστράλ Αργετινής</displayName>
				<displayName count="one">αουστράλ Αργεντινής</displayName>
				<displayName count="other">αουστράλ Αργεντινής</displayName>
			</currency>
			<currency type="ARP">
				<displayName>Πέσο Αργεντινής (1983-1985)</displayName>
				<displayName count="one">πέσο Αργεντινής (ARP)</displayName>
				<displayName count="other">πέσο Αργεντινής (ARP)</displayName>
			</currency>
			<currency type="ARS">
				<displayName>Πέσο Αργεντινής</displayName>
				<displayName count="one">πέσο Αργεντινής</displayName>
				<displayName count="other">πέσο Αργεντινής</displayName>
			</currency>
			<currency type="ATS">
				<displayName>Σελίνι Αυστρίας</displayName>
				<displayName count="one">σελίνι Αυστρίας</displayName>
				<displayName count="other">σελίνια Αυστρίας</displayName>
			</currency>
			<currency type="AUD">
				<displayName>Δολάριο Αυστραλίας</displayName>
				<displayName count="one">δολάριο Αυστραλίας</displayName>
				<displayName count="other">δολάρια Αυστραλίας</displayName>
			</currency>
			<currency type="AWG">
				<displayName>Γκίλντα Αρούμπα</displayName>
				<displayName count="one">γκίλντα Αρούμπα</displayName>
				<displayName count="other">γκίλντα Αρούμπα</displayName>
			</currency>
			<currency type="AZM">
				<displayName>Μανάτ Αζερμπαϊτζάν (1993-2006)</displayName>
				<displayName count="one">μανάτ Αζερμπαϊτζάν (1993-2006)</displayName>
				<displayName count="other">μανάτ Αζερμπαϊτζάν (1993-2006)</displayName>
			</currency>
			<currency type="AZN">
				<displayName>Μανάτ Αζερμπαϊτζάν</displayName>
				<displayName count="one">μανάτ Αζερμπαϊτζαν</displayName>
				<displayName count="other">μανάτ Αζερμπαϊτζαν</displayName>
			</currency>
			<currency type="BAD">
				<displayName>Δηνάριο Βοσνίας-Ερζεγοβίνης</displayName>
				<displayName count="one">δηνάριο Βοσνίας-Ερζεγοβίνης</displayName>
				<displayName count="other">δηνάρια Βοσνίας-Ερζεγοβίνης</displayName>
			</currency>
			<currency type="BAM">
				<displayName>Μετατρέψιμο Μάρκο Βοσνίας-Ερζεγοβίνης</displayName>
				<displayName count="one">μάρκο Βοσνίας-Ερζεγοβίνης</displayName>
				<displayName count="other">μάρκα Βοσνίας-Ερζεγοβίνης</displayName>
			</currency>
			<currency type="BBD">
				<displayName>Δολάριο Μπαρμπάντος</displayName>
				<displayName count="one">δολάριο Μπαρμπάντος</displayName>
				<displayName count="other">δολάρια Μπαρμπάντος</displayName>
			</currency>
			<currency type="BDT">
				<displayName>Τάκα Μπαγκλαντές</displayName>
				<displayName count="one">τάκα Μπαγκλαντές</displayName>
				<displayName count="other">τάκα Μπαγκλαντές</displayName>
			</currency>
			<currency type="BEC">
				<displayName>Φράγκο Βελγίου (μετατρέψιμο)</displayName>
				<displayName count="one">φράγκο Βελγίου (μετατρέψιμο)</displayName>
				<displayName count="other">φράγκα Βελγίου (μετατρέψιμα)</displayName>
			</currency>
			<currency type="BEF">
				<displayName>Φράγκο Βελγίου</displayName>
				<displayName count="one">φράγκο Βελγίου</displayName>
				<displayName count="other">φράγκα Βελγίου</displayName>
			</currency>
			<currency type="BEL">
				<displayName>Φράγκο Βελγίου (οικονομικό)</displayName>
				<displayName count="one">φράγκο Βελγίου (οικονομικό)</displayName>
				<displayName count="other">φράγκα Βελγίου (οικονομικό)</displayName>
			</currency>
			<currency type="BGL">
				<displayName>Μεταλλικό Λεβ Βουλγαρίας</displayName>
				<displayName count="one">μεταλλικό λεβ Βουλγαρίας</displayName>
				<displayName count="other">μεταλλικά λεβ Βουλγαρίας</displayName>
			</currency>
			<currency type="BGN">
				<displayName>Νέο Λεβ Βουλγαρίας</displayName>
				<displayName count="one">νέο λεβ Βουλγαρίας</displayName>
				<displayName count="other">νέα λεβ Βουλγαρίας</displayName>
			</currency>
			<currency type="BHD">
				<displayName>Δηνάριο Μπαχρέιν</displayName>
				<displayName count="one">δηνάριο Μπαχρέιν</displayName>
				<displayName count="other">δηνάρια Μπαχρέιν</displayName>
			</currency>
			<currency type="BIF">
				<displayName>Φράγκο Μπουρούντι</displayName>
				<displayName count="one">φράγκο Μπουρούντι</displayName>
				<displayName count="other">φράγκα Μπουρούντι</displayName>
			</currency>
			<currency type="BMD">
				<displayName>Δολάριο Βερμούδων</displayName>
				<displayName count="one">δολάριο Βερμούδων</displayName>
				<displayName count="other">δολάρια Βερμούδων</displayName>
			</currency>
			<currency type="BND">
				<displayName>Δολάριο Μπρουνέι</displayName>
				<displayName count="one">δολάριο Μπρουνέι</displayName>
				<displayName count="other">δολάρια Μπρουνέι</displayName>
			</currency>
			<currency type="BOB">
				<displayName>Μπολιβιάνο Βολιβίας</displayName>
				<displayName count="one">μπολιβιάνο Βολιβίας</displayName>
				<displayName count="other">μπολιβιάνο Βολιβίας</displayName>
			</currency>
			<currency type="BOP">
				<displayName>Πέσο Βολιβίας</displayName>
				<displayName count="one">πέσο Βολιβίας</displayName>
				<displayName count="other">πέσο Βολιβίας</displayName>
			</currency>
			<currency type="BOV">
				<displayName>Μβδολ Βολιβίας</displayName>
				<displayName count="one">μβντολ Βολιβίας</displayName>
				<displayName count="other">μβντολ Βολιβίας</displayName>
			</currency>
			<currency type="BRB">
				<displayName>Νέο Κρουζιέρο Βραζιλίας (1967-1986)</displayName>
				<displayName count="one">νέο κρουζέιρο Βραζιλίας (BRB)</displayName>
				<displayName count="other">νέα κρουζέιρο Βραζιλίας (BRB)</displayName>
			</currency>
			<currency type="BRC">
				<displayName>Κρουζάντο Βραζιλίας</displayName>
				<displayName count="one">κρουζάντο Βραζιλίας</displayName>
				<displayName count="other">κρουζάντο Βραζιλίας</displayName>
			</currency>
			<currency type="BRE">
				<displayName>Κρουζιέρο Βραζιλίας (1990-1993)</displayName>
				<displayName count="one">κρουζέιρο Βραζιλίας (BRE)</displayName>
				<displayName count="other">κρουζέιρο Βραζιλίας (BRE)</displayName>
			</currency>
			<currency type="BRL">
				<displayName>Ρεάλ Βραζιλίας</displayName>
				<displayName count="one">ρεάλ Βραζιλίας</displayName>
				<displayName count="other">ρεάλ Βραζιλίας</displayName>
			</currency>
			<currency type="BRN">
				<displayName>Νέο Κρουζάντο Βραζιλίας</displayName>
				<displayName count="one">νέο κρουζάντο Βρα±ζιλίας</displayName>
				<displayName count="other">νέα κρουζάντο Βραζιλίας</displayName>
			</currency>
			<currency type="BRR">
				<displayName>Κρουζιέρο Βραζιλίας</displayName>
				<displayName count="one">κρουζέιρο Βραζιλίας</displayName>
				<displayName count="other">κρουζέιρο Βραζιλίας</displayName>
			</currency>
			<currency type="BSD">
				<displayName>Δολάριο Μπαχάμες</displayName>
				<displayName count="one">δολάριο Μπαχάμες</displayName>
				<displayName count="other">δολάρια Μπαχάμες</displayName>
			</currency>
			<currency type="BTN">
				<displayName>Νγκούλτρουμ Μπουτάν</displayName>
				<displayName count="one">νγκούλτρουμ Μπουτάν</displayName>
				<displayName count="other">νγκούλτρουμ Μπουτάν</displayName>
			</currency>
			<currency type="BUK">
				<displayName>Κιατ Βιρμανίας</displayName>
				<displayName count="one">κιάτ Βιρμανίας</displayName>
				<displayName count="other">κιάτ Βιρμανίας</displayName>
			</currency>
			<currency type="BWP">
				<displayName>Πούλα Μποτσουάνας</displayName>
				<displayName count="one">πούλα Μποτσουάνας</displayName>
				<displayName count="other">πούλα Μποτσουάνας</displayName>
			</currency>
			<currency type="BYB">
				<displayName>Νέο Ρούβλι Λευκορωσίας (1994-1999)</displayName>
				<displayName count="one">νέο ρούβλι Λευκορωσίας (1994-1999)</displayName>
				<displayName count="other">νέα ρούβλια Λευκορωσίας (1994-1999)</displayName>
			</currency>
			<currency type="BYR">
				<displayName>Ρούβλι Λευκορωσίας</displayName>
				<displayName count="one">ρούβλι Λευκορωσίας</displayName>
				<displayName count="other">ρούβλια Λευκορωσίας</displayName>
			</currency>
			<currency type="BZD">
				<displayName>Δολάριο Μπελίζ</displayName>
				<displayName count="one">δολάριο Μπελίζ</displayName>
				<displayName count="other">δολάρια Μπελίζ</displayName>
			</currency>
			<currency type="CAD">
				<displayName>Δολάριο Καναδά</displayName>
				<displayName count="one">δολάριο Καναδά</displayName>
				<displayName count="other">δολάρια Καναδά</displayName>
			</currency>
			<currency type="CDF">
				<displayName>Φράγκο Κονγκό</displayName>
				<displayName count="one">φράγκο Κονγκό</displayName>
				<displayName count="other">φράγκα Κονγκό</displayName>
			</currency>
			<currency type="CHE">
				<displayName>Ευρώ WIR</displayName>
				<displayName count="one">ευρώ WIR</displayName>
				<displayName count="other">ευρώ WIR</displayName>
			</currency>
			<currency type="CHF">
				<displayName>Φράγκο Ελβετίας</displayName>
				<displayName count="one">φράγκο Ελβετίας</displayName>
				<displayName count="other">φράγκα Ελβετίας</displayName>
			</currency>
			<currency type="CHW">
				<displayName>Φράγκο WIR</displayName>
				<displayName count="one">φράγκο WIR</displayName>
				<displayName count="other">φράγκα WIR</displayName>
			</currency>
			<currency type="CLF">
				<displayName>Unidades de Fomento Χιλής</displayName>
				<displayName count="one">ουνιδάδες ντε φομέντο Χιλής</displayName>
				<displayName count="other">ουνιδάδες ντε φομέντο Χιλής</displayName>
			</currency>
			<currency type="CLP">
				<displayName>Πέσο Χιλής</displayName>
				<displayName count="one">πέσο Χιλής</displayName>
				<displayName count="other">πέσο Χιλής</displayName>
			</currency>
			<currency type="CNY">
				<displayName>Γιουάν Ρενμίμπι Κίνας</displayName>
				<displayName count="one">γιουάν Κίνας</displayName>
				<displayName count="other">γιουάν Κίνας</displayName>
			</currency>
			<currency type="COP">
				<displayName>Πέσο Κολομβίας</displayName>
				<displayName count="one">πέσο Κολομβίας</displayName>
				<displayName count="other">πέσο Κολομβίας</displayName>
			</currency>
			<currency type="COU">
				<displayName>unidad de valor real</displayName>
				<displayName count="one">unidad de valor real</displayName>
				<displayName count="other">unidad de valor reals</displayName>
			</currency>
			<currency type="CRC">
				<displayName>Κολόν Κόστα Ρίκα</displayName>
				<displayName count="one">κολόν Κόστα Ρίκα</displayName>
				<displayName count="other">κολόν Κόστα Ρίκα</displayName>
			</currency>
			<currency type="CSD">
				<displayName>Παλαιό Δηνάριο Σερβίας</displayName>
				<displayName count="one">παλιό δινάρη Σερβίας</displayName>
				<displayName count="other">παλιά δινάρια Σερβίας</displayName>
			</currency>
			<currency type="CSK">
				<displayName>Σκληρή Κορόνα Τσεχοσλοβακίας</displayName>
				<displayName count="one">σκληρή κορόνα Τσεχοσλοβακίας</displayName>
				<displayName count="other">σκληρές κορόνες Τσεχοσλοβακίας</displayName>
			</currency>
			<currency type="CUP">
				<displayName>Πέσο Κούβας</displayName>
				<displayName count="one">πέσο Κούβας</displayName>
				<displayName count="other">πέσο Κούβας</displayName>
			</currency>
			<currency type="CVE">
				<displayName>Εσκούδο Πράσινου Ακρωτηρίου</displayName>
				<displayName count="one">εσκούδο Πράσινου Ακρωτηρίου</displayName>
				<displayName count="other">εσκούδο Πράσινου Ακρωτηρίου</displayName>
			</currency>
			<currency type="CYP">
				<displayName>Λίρα Κύπρου</displayName>
				<displayName count="one">λίρα Κύπρου</displayName>
				<displayName count="other">λίρες Κύπρου</displayName>
			</currency>
			<currency type="CZK">
				<displayName>Κορόνα Τσέχικης Δημοκρατίας</displayName>
				<displayName count="one">κορόνα Τσέχικης Δημοκρατίας</displayName>
				<displayName count="other">κορόνες Τσέχικης Δημοκρατίας</displayName>
			</currency>
			<currency type="DDM">
				<displayName>Οστμάρκ Ανατολικής Γερμανίας</displayName>
				<displayName count="one">όστμαρκ Ανατολικής Γερμανίας</displayName>
				<displayName count="other">όστμαρκ Ανατολικής Γερμανίας</displayName>
			</currency>
			<currency type="DEM">
				<displayName>Μάρκο Γερμανίας</displayName>
				<displayName count="one">μάρκο Γερμανίας</displayName>
				<displayName count="other">μάρκα Γερμανίας</displayName>
			</currency>
			<currency type="DJF">
				<displayName>Φράγκο Τζιμπουτί</displayName>
				<displayName count="one">φράγκο Τζιμπουτί</displayName>
				<displayName count="other">φράγκα Τζιμπουτί</displayName>
			</currency>
			<currency type="DKK">
				<displayName>Κορόνα Δανίας</displayName>
				<displayName count="one">κορόνα Δανίας</displayName>
				<displayName count="other">κορόνες Δανίας</displayName>
			</currency>
			<currency type="DOP">
				<displayName>Πέσο Δομίνικου</displayName>
				<displayName count="one">πέσο Δομίνικου</displayName>
				<displayName count="other">πέσο Δομινικανής Δημοκρατίας</displayName>
			</currency>
			<currency type="DZD">
				<displayName>Δηνάριο Αλγερίας</displayName>
				<displayName count="one">δηνάριο Αλγερίας</displayName>
				<displayName count="other">δηνάρια Αλγερίας</displayName>
			</currency>
			<currency type="ECS">
				<displayName>Σούκρε Εκουαδόρ</displayName>
				<displayName count="one">σούκρε Εκουαδόρ</displayName>
				<displayName count="other">σούκρε Εκουαδόρ</displayName>
			</currency>
			<currency type="ECV">
				<displayName>Unidad de Valor Constante (UVC) Ισημερινού</displayName>
				<displayName count="one">Unidad de Valor Constante (UVC) Ισημερινού</displayName>
				<displayName count="other">Unidads de Valor Constante (UVC) Ισημερινού</displayName>
			</currency>
			<currency type="EEK">
				<displayName>Κορόνα Εσθονίας</displayName>
				<displayName count="one">κορόνα Εσθονίας</displayName>
				<displayName count="other">κορόνες Εσθονίας</displayName>
			</currency>
			<currency type="EGP">
				<displayName>Λίρα Αιγύπτου</displayName>
				<displayName count="one">λίρα Αιγύπτου</displayName>
				<displayName count="other">λίρες Αιγύπτου</displayName>
			</currency>
			<currency type="ERN">
				<displayName>Νάκφα Ερυθραίας</displayName>
				<displayName count="one">νάκφα Ερυθραίας</displayName>
				<displayName count="other">νάκφα Ερυθραίας</displayName>
			</currency>
			<currency type="ESA">
				<displayName>πεσέτα Ισπανίας (λογαριασμός Α)</displayName>
				<displayName count="one">πεσέτα Ισπανίας (λογαριασμός Α)</displayName>
				<displayName count="other">πεσέτες Ισπανίας (λογαριασμός Α)</displayName>
			</currency>
			<currency type="ESB">
				<displayName>πεσέτα Ισπανίας (μετατρέψιμος λογαριασμός)</displayName>
				<displayName count="one">πεσέτα Ισπανίας (μετατρέψιμος λογαριασμός)</displayName>
				<displayName count="other">πεσέτες Ισπανίας (μετατρέψιμες)</displayName>
			</currency>
			<currency type="ESP">
				<displayName>Πεσέτα Ισπανίας</displayName>
				<displayName count="one">πεσέτα Ισπανίας</displayName>
				<displayName count="other">πεσέτες Ισπανίας</displayName>
			</currency>
			<currency type="ETB">
				<displayName>Μπιρ Αιθιοπίας</displayName>
				<displayName count="one">μπιρ Αιθιοπίας</displayName>
				<displayName count="other">μπιρ Αιθιοπίας</displayName>
			</currency>
			<currency type="EUR">
				<displayName>Ευρώ</displayName>
				<displayName count="one">ευρώ</displayName>
				<displayName count="other">ευρώ</displayName>
			</currency>
			<currency type="FIM">
				<displayName>Μάρκο Φινλανδίας</displayName>
				<displayName count="one">μάρκο Φινλανδίας</displayName>
				<displayName count="other">μάρκα Φινλανδίας</displayName>
			</currency>
			<currency type="FJD">
				<displayName>Δολάριο Φίτζι</displayName>
				<displayName count="one">δολάριο Φίτζι</displayName>
				<displayName count="other">δολάρια Φίτζι</displayName>
			</currency>
			<currency type="FKP">
				<displayName>Λίρα Νησιών Φώλκλαντ</displayName>
				<displayName count="one">λίρα Νησιών Φώλκλαντ</displayName>
				<displayName count="other">λίρες Νησιών Φώλκλαντ</displayName>
			</currency>
			<currency type="FRF">
				<displayName>Φράγκο Γαλλίας</displayName>
				<displayName count="one">φράγκο Γαλλίας</displayName>
				<displayName count="other">φράγκα Γαλλίας</displayName>
			</currency>
			<currency type="GBP">
				<displayName>Λίρα Στερλίνα Βρετανίας</displayName>
				<displayName count="one">λίρα στερλίνα Βρετανίας</displayName>
				<displayName count="other">λίρες στερλίνες Βρετανίας</displayName>
			</currency>
			<currency type="GEK">
				<displayName>Κούπον Λάρι Γεωργίας</displayName>
				<displayName count="one">κούπον λάρι Γεωργίας</displayName>
				<displayName count="other">κούπον λάρι Γεωργίας</displayName>
			</currency>
			<currency type="GEL">
				<displayName>Λάρι Γεωργίας</displayName>
				<displayName count="one">λάρι Γεωργίας</displayName>
				<displayName count="other">λάρι Γεωργίας</displayName>
			</currency>
			<currency type="GHC">
				<displayName>Σέντι Γκάνας (1979-2007)</displayName>
				<displayName count="one">σέντι Γκάνας (GHC)</displayName>
				<displayName count="other">σέντι Γκάνας (GHC)</displayName>
			</currency>
			<currency type="GHS">
				<displayName>Σέντι Γκάνας</displayName>
				<displayName count="one">σέντι Γκάνας</displayName>
				<displayName count="other">σέντι Γκανά</displayName>
			</currency>
			<currency type="GIP">
				<displayName>Λίρα Γιβραλτάρ</displayName>
				<displayName count="one">λίρα Γιβραλτάρ</displayName>
				<displayName count="other">λίρες Γιβραλτάρ</displayName>
			</currency>
			<currency type="GMD">
				<displayName>Νταλάσι Γκάμπιας</displayName>
				<displayName count="one">νταλάσι Γκάμπιας</displayName>
				<displayName count="other">νταλάσι Γκάμπιας</displayName>
			</currency>
			<currency type="GNF">
				<displayName>Φράγκο Γουινέας</displayName>
				<displayName count="one">φράγκο Γουινέας</displayName>
				<displayName count="other">φράγκα Γουινέας</displayName>
			</currency>
			<currency type="GNS">
				<displayName>Συλί Γουινέας</displayName>
				<displayName count="one">συλί Γουινέας</displayName>
				<displayName count="other">συλί Γουινέας</displayName>
			</currency>
			<currency type="GQE">
				<displayName>Εκγουέλε Ισημερινής Γουινέας</displayName>
				<displayName count="one">εκουέλε Ισημερινής Γουινέας</displayName>
				<displayName count="other">εκουέλε Ισημερινής Γουινέας</displayName>
			</currency>
			<currency type="GRD">
				<pattern>#,##0.00 ¤;-#,##0.00 ¤</pattern>
				<displayName>Δραχμή Ελλάδας</displayName>
				<displayName count="one">δραχμή Ελλάδας</displayName>
				<displayName count="other">δραχμές Ελλάδας</displayName>
				<symbol>Δρχ</symbol>
				<decimal>,</decimal>
				<group>.</group>
			</currency>
			<currency type="GTQ">
				<displayName>Κουετσάλ Γουατεμάλας</displayName>
				<displayName count="one">κουετσάλ Γουατεμάλας</displayName>
				<displayName count="other">κουετσάλ Γουατεμάλας</displayName>
			</currency>
			<currency type="GWE">
				<displayName>Γκινέα Εσκούδο Πορτογαλίας</displayName>
				<displayName count="one">γκινέα εσκούδο Πορτογαλίας</displayName>
				<displayName count="other">γκινέα εσκούδο Πορτογαλίας</displayName>
			</currency>
			<currency type="GWP">
				<displayName>Πέσο Γουινέας-Μπισάου</displayName>
				<displayName count="one">πέσο Γουινέα-Μπισάου</displayName>
				<displayName count="other">πέσο Γουινέα-Μπισάου</displayName>
			</currency>
			<currency type="GYD">
				<displayName>Δολάριο Γουιάνας</displayName>
				<displayName count="one">δολάριο Γουιάνας</displayName>
				<displayName count="other">δολάρια Γουιάνας</displayName>
			</currency>
			<currency type="HKD">
				<displayName>Δολάριο Χονγκ Κονγκ</displayName>
				<displayName count="one">δολάριο Χονγκ Κονγκ</displayName>
				<displayName count="other">δολάρια Χονγκ Κονγκ</displayName>
			</currency>
			<currency type="HNL">
				<displayName>Λεμπίρα Ονδούρας</displayName>
				<displayName count="one">λεμπίρα Ονδούρας</displayName>
				<displayName count="other">λεμπίρα Ονδούρας</displayName>
			</currency>
			<currency type="HRD">
				<displayName>Δηνάριο Κροατίας</displayName>
				<displayName count="one">δηνάριο Κροατίας</displayName>
				<displayName count="other">δηνάρια Κροατίας</displayName>
			</currency>
			<currency type="HRK">
				<displayName>Κούνα Κροατίας</displayName>
				<displayName count="one">κούνα Κροατίας</displayName>
				<displayName count="other">κούνα Κροατίας</displayName>
			</currency>
			<currency type="HTG">
				<displayName>Γκουρντ Αϊτής</displayName>
				<displayName count="one">γκουρντ Αϊτής</displayName>
				<displayName count="other">γκουρντ Αϊτής</displayName>
			</currency>
			<currency type="HUF">
				<displayName>Φιορίνι Ουγγαρίας</displayName>
				<displayName count="one">φιορίνι Ουγγαρίας</displayName>
				<displayName count="other">φιορίνια Ουγγαρίας</displayName>
			</currency>
			<currency type="IDR">
				<displayName>Ρούπια Ινδονησίας</displayName>
				<displayName count="one">ρούπι Ινδονησίας</displayName>
				<displayName count="other">ρούπια Ινδονησίας</displayName>
			</currency>
			<currency type="IEP">
				<displayName>Λίρα Ιρλανδίας</displayName>
				<displayName count="one">λίρα Ιρλανδίας</displayName>
				<displayName count="other">λίρες Ιρλανδίας</displayName>
			</currency>
			<currency type="ILP">
				<displayName>Λίρα Ισραήλ</displayName>
				<displayName count="one">λίρα Ισραήλ</displayName>
				<displayName count="other">λίρες Ισραήλ</displayName>
			</currency>
			<currency type="ILR">
				<displayName>παλιό σεκέλ Ισραήλ</displayName>
				<displayName count="one">παλιό σεκέλ Ισραήλ</displayName>
				<displayName count="other">παλιά σεκέλ Ισραήλ</displayName>
			</currency>
			<currency type="ILS">
				<displayName>Νέο Σέκελ Ισραήλ</displayName>
				<displayName count="one">νέο σέκελ Ισραήλ</displayName>
				<displayName count="other">νέα σέκελ Ισραήλ</displayName>
			</currency>
			<currency type="INR">
				<displayName>Ρούπια Ινδίας</displayName>
				<displayName count="one">ρούπι Ινδίας</displayName>
				<displayName count="other">ρούπια Ινδίας</displayName>
			</currency>
			<currency type="IQD">
				<displayName>Δηνάριο Ιράκ</displayName>
				<displayName count="one">δηνάριο Ιράκ</displayName>
				<displayName count="other">δηνάρια Ιράκ</displayName>
			</currency>
			<currency type="IRR">
				<displayName>Ριάλ Ιράν</displayName>
				<displayName count="one">ριάλ Ιράν</displayName>
				<displayName count="other">ριάλ Ιράν</displayName>
			</currency>
			<currency type="ISJ">
				<displayName>Παλιά κορόνα Ισλανδίας</displayName>
				<displayName count="one">Παλιά κορόνα Ισλανδίας</displayName>
				<displayName count="other">παλιές κορόνες Ισλανδίας</displayName>
			</currency>
			<currency type="ISK">
				<displayName>Κορόνα Ισλανδίας</displayName>
				<displayName count="one">κορόνα Ισλανδίας</displayName>
				<displayName count="other">κορόνες Ισλανδίας</displayName>
			</currency>
			<currency type="ITL">
				<displayName>Λιρέτα Ιταλίας</displayName>
				<displayName count="one">λιρέτα Ιταλίας</displayName>
				<displayName count="other">λιρέτες Ιταλίας</displayName>
			</currency>
			<currency type="JMD">
				<displayName>Δολάριο Τζαμάικας</displayName>
				<displayName count="one">δολάριο Τζαμάικας</displayName>
				<displayName count="other">δολάρια Τζαμάικας</displayName>
			</currency>
			<currency type="JOD">
				<displayName>Δηνάριο Ιορδανίας</displayName>
				<displayName count="one">δηνάριο Ιορδανίας</displayName>
				<displayName count="other">δηνάρια Ιορδανίας</displayName>
			</currency>
			<currency type="JPY">
				<displayName>Γιεν Ιαπωνίας</displayName>
				<displayName count="one">γιεν Ιαπωνίας</displayName>
				<displayName count="other">γιεν Ιαπωνίας</displayName>
			</currency>
			<currency type="KES">
				<displayName>Σελίνι Κένυας</displayName>
				<displayName count="one">σελίνι Κένυας</displayName>
				<displayName count="other">σελίνια Κένυας</displayName>
			</currency>
			<currency type="KGS">
				<displayName>Σομ Κιργιζίας</displayName>
				<displayName count="one">σομ Κιργιστάν</displayName>
				<displayName count="other">σομ Κιργιστάν</displayName>
			</currency>
			<currency type="KHR">
				<displayName>Ρίελ Καμπότζης</displayName>
				<displayName count="one">ρίελ Καμπότζης</displayName>
				<displayName count="other">ρίελ Καμπότζης</displayName>
			</currency>
			<currency type="KMF">
				<displayName>Φράγκο Κομόρος</displayName>
				<displayName count="one">φράγκο Κομόρος</displayName>
				<displayName count="other">φράγκα Κομόρο</displayName>
			</currency>
			<currency type="KPW">
				<displayName>Γον Βόρειας Κορέας</displayName>
				<displayName count="one">γουόν Βόρειας Κορέας</displayName>
				<displayName count="other">γουόν Βόρειας Κορέας</displayName>
			</currency>
			<currency type="KRW">
				<displayName>Γον Νότιας Κορέας</displayName>
				<displayName count="one">γουόν Νότιας Κορέας</displayName>
				<displayName count="other">γουόν Νότιας Κορέας</displayName>
			</currency>
			<currency type="KWD">
				<displayName>Δηνάριο Κουβέιτ</displayName>
				<displayName count="one">δηνάριο Κουβέιτ</displayName>
				<displayName count="other">δηνάρια Κουβέιτ</displayName>
			</currency>
			<currency type="KYD">
				<displayName>Δολάριο Νήσων Κάιμαν</displayName>
				<displayName count="one">δολάριο Νήσων Κάιμαν</displayName>
				<displayName count="other">δολάρια Νήσων Κάιμαν</displayName>
			</currency>
			<currency type="KZT">
				<displayName>Τένγκε Καζακστάν</displayName>
				<displayName count="one">τένγκε Καζακστάν</displayName>
				<displayName count="other">τένγκε Καζακστάν</displayName>
			</currency>
			<currency type="LAK">
				<displayName>Κιπ Λάος</displayName>
				<displayName count="one">κιπ Λάος</displayName>
				<displayName count="other">κιπ Λάος</displayName>
			</currency>
			<currency type="LBP">
				<displayName>Λίρα Λιβάνου</displayName>
				<displayName count="one">λίρα Λιβάνου</displayName>
				<displayName count="other">λίρες Λιβάνου</displayName>
			</currency>
			<currency type="LKR">
				<displayName>Ρούπια Σρι Λάνκα</displayName>
				<displayName count="one">ρούπι Σρι Λάνκα</displayName>
				<displayName count="other">ρούπια Σρι Λάνκα</displayName>
			</currency>
			<currency type="LRD">
				<displayName>Δολάριο Λιβερίας</displayName>
				<displayName count="one">δολάριο Λιβερίας</displayName>
				<displayName count="other">δολάρια Λιβερίας</displayName>
			</currency>
			<currency type="LSL">
				<displayName>Λότι Λεσότο</displayName>
				<displayName count="one">λότι Λεσόθο</displayName>
				<displayName count="other">λότι Λεσόθο</displayName>
			</currency>
			<currency type="LTL">
				<displayName>Λίτα Λιθουανίας</displayName>
				<displayName count="one">λίτα Λιθουανίας</displayName>
				<displayName count="other">λίτα Λιθουανίας</displayName>
			</currency>
			<currency type="LTT">
				<displayName>Ταλόνας Λιθουανίας</displayName>
				<displayName count="one">ταλόνας Λιθουανίας</displayName>
				<displayName count="other">ταλόνας Λιθουανίας</displayName>
			</currency>
			<currency type="LUC">
				<displayName>Μετατρέψιμο Φράγκο Λουξεμβούργου</displayName>
				<displayName count="one">LUC</displayName>
				<displayName count="other">LUC</displayName>
			</currency>
			<currency type="LUF">
				<displayName>Φράγκο Λουξεμβούργου</displayName>
				<displayName count="one">φράγκο Λουξεμβούργου</displayName>
				<displayName count="other">φράγκα Λουξεμβούργου</displayName>
			</currency>
			<currency type="LUL">
				<displayName>Οικονομικό Φράγκο Λουξεμβούργου</displayName>
				<displayName count="one">LUL</displayName>
				<displayName count="other">LUL</displayName>
			</currency>
			<currency type="LVL">
				<displayName>Λατς Λετονίας</displayName>
				<displayName count="one">λατς Λετονίας</displayName>
				<displayName count="other">λατς Λετονίας</displayName>
			</currency>
			<currency type="LVR">
				<displayName>Ρούβλι Λετονίας</displayName>
				<displayName count="one">ρούβλι Λετονίας</displayName>
				<displayName count="other">ρούβλια Λετονίας</displayName>
			</currency>
			<currency type="LYD">
				<displayName>Δηνάριο Λιβύης</displayName>
				<displayName count="one">δηνάριο Λιβύης</displayName>
				<displayName count="other">δηνάρια Λιβύης</displayName>
			</currency>
			<currency type="MAD">
				<displayName>Ντιράμ Μαρόκου</displayName>
				<displayName count="one">ντιράμ Μαρόκου</displayName>
				<displayName count="other">ντιράμ Μαρόκου</displayName>
			</currency>
			<currency type="MAF">
				<displayName>Φράγκο Μαρόκου</displayName>
				<displayName count="one">φράγκο Μαρόκου</displayName>
				<displayName count="other">φράγκα Μαρόκου</displayName>
			</currency>
			<currency type="MDL">
				<displayName>Λέι Μολδαβίας</displayName>
				<displayName count="one">λέι Μολδαβίας</displayName>
				<displayName count="other">λέι Μολδαβίας</displayName>
			</currency>
			<currency type="MGA">
				<displayName>Αριανί Μαδαγασκάρης</displayName>
				<displayName count="one">αριάρι Μαδαγασκάρης</displayName>
				<displayName count="other">αριάρι Μαδαγασκάρης</displayName>
			</currency>
			<currency type="MGF">
				<displayName>Φράγκο Μαδαγασκάρης</displayName>
				<displayName count="one">φράγκο Μαδαγασκάρης</displayName>
				<displayName count="other">φράγκα Μαδαγασκάρης</displayName>
			</currency>
			<currency type="MKD">
				<displayName>Δηνάριο Π.Γ.Δ.Μ.</displayName>
				<displayName count="one">δηνάριο Π.Γ.Δ.Μ.</displayName>
				<displayName count="other">δηνάρια Π.Γ.Δ.Μ.</displayName>
			</currency>
			<currency type="MLF">
				<displayName>Φράγκο Μαλί</displayName>
				<displayName count="one">φράγκο Μαλί</displayName>
				<displayName count="other">φράγκα Μαλί</displayName>
			</currency>
			<currency type="MMK">
				<displayName>Κυάτ Μιανμάρ</displayName>
				<displayName count="one">κυάτ Μιανμάρ</displayName>
				<displayName count="other">κυάτ Μιανμάρ</displayName>
			</currency>
			<currency type="MNT">
				<displayName>Τουγκρίκ Μογγολίας</displayName>
				<displayName count="one">τουγκρίκ Μογγολίας</displayName>
				<displayName count="other">τουγκρίκ Μογγολίας</displayName>
			</currency>
			<currency type="MOP">
				<displayName>Πατάκα Μακάο</displayName>
				<displayName count="one">πατάκα Μακάο</displayName>
				<displayName count="other">πατάκα Μακάο</displayName>
			</currency>
			<currency type="MRO">
				<displayName>Ουγκουίγκα Μαυριτανίας</displayName>
				<displayName count="one">ουγκουίγκα Μαυριτανίας</displayName>
				<displayName count="other">ουγκουίγκα Μαυριτανίας</displayName>
			</currency>
			<currency type="MTL">
				<displayName>Λιρέτα Μάλτας</displayName>
				<displayName count="one">λιρέτα Μάλτας</displayName>
				<displayName count="other">λιρέτες Μάλτας</displayName>
			</currency>
			<currency type="MTP">
				<displayName>Λίρα Μάλτας</displayName>
				<displayName count="one">λίρα Μάλτας</displayName>
				<displayName count="other">λίρες Μάλτας</displayName>
			</currency>
			<currency type="MUR">
				<displayName>Ρούπια Μαυρικίου</displayName>
				<displayName count="one">ρούπι Μαυρικίου</displayName>
				<displayName count="other">ρούπια Μαυρικίου</displayName>
			</currency>
			<currency type="MVR">
				<displayName>Ρουφίγια Νήσων Μαλδίβων</displayName>
				<displayName count="one">ρουφίγια Νήσων Μαλδίβων</displayName>
				<displayName count="other">ρουφίγια Νήσων Μαλδίβων</displayName>
			</currency>
			<currency type="MWK">
				<displayName>Κουάτσα Μαλάουι</displayName>
				<displayName count="one">κουάτσα Μαλάουι</displayName>
				<displayName count="other">κουάτσα Μαλάουι</displayName>
			</currency>
			<currency type="MXN">
				<displayName>Πέσο Μεξικού</displayName>
				<displayName count="one">πέσο Μεξικού</displayName>
				<displayName count="other">πέσο Μεξικού</displayName>
			</currency>
			<currency type="MXP">
				<displayName>Ασημένιο Πέσο Μεξικού (1861-1992)</displayName>
				<displayName count="one">ασημένιο πέσο Μεξικού (MXP)</displayName>
				<displayName count="other">ασημένια πέσο Μεξικού (MXP)</displayName>
			</currency>
			<currency type="MXV">
				<displayName>Unidad de Inversion (UDI) Μεξικού</displayName>
				<displayName count="one">Unidad de Inversion (UDI) Μεξικού</displayName>
				<displayName count="other">Unidads de Inversion (UDI) Μεξικού</displayName>
			</currency>
			<currency type="MYR">
				<displayName>Ρινγκίτ Μαλαισίας</displayName>
				<displayName count="one">ρινγκίτ Μαλαισίας</displayName>
				<displayName count="other">ρινγκίτ Μαλαισίας</displayName>
			</currency>
			<currency type="MZE">
				<displayName>Εσκούδο Μοζαμβίκης</displayName>
				<displayName count="one">εσκούδο Μοζαμβίκης</displayName>
				<displayName count="other">εσκούδο Μοζαμβίκης</displayName>
			</currency>
			<currency type="MZM">
				<displayName>Παλαιό Μετικάλ Μοζαμβίκης</displayName>
				<displayName count="one">παλιό μετικάλ Μοζαμβίκης</displayName>
				<displayName count="other">παλιά μετικάλ Μοζαμβίκης</displayName>
			</currency>
			<currency type="MZN">
				<displayName>Μετικάλ Μοζαμβίκης</displayName>
				<displayName count="one">μετικάλ Μοζαμβίκης</displayName>
				<displayName count="other">μετικάλ Μοζαμβίκης</displayName>
			</currency>
			<currency type="NAD">
				<displayName>Δολάριο Ναμίμπια</displayName>
				<displayName count="one">δολάριο Ναμίμπια</displayName>
				<displayName count="other">δολάρια Ναμίμπια</displayName>
			</currency>
			<currency type="NGN">
				<displayName>Νάιρα Νιγηρίας</displayName>
				<displayName count="one">νάιρα Νιγηρίας</displayName>
				<displayName count="other">νάιρα Νιγηρίας</displayName>
			</currency>
			<currency type="NIC">
				<displayName>Κόρδοβα Νικαράγουας</displayName>
				<displayName count="one">κόρδοβα Νικαράγουας</displayName>
				<displayName count="other">κόρδοβα Νικαράγουας</displayName>
			</currency>
			<currency type="NIO">
				<displayName>Χρυσή Κόρδοβα Νικαράγουας</displayName>
				<displayName count="one">χρυσή κόρδοβα Νικαράγουας</displayName>
				<displayName count="other">χρυσές κόρδοβα Νικαράγουας</displayName>
			</currency>
			<currency type="NLG">
				<displayName>Γκίλντα Ολλανδίας</displayName>
				<displayName count="one">γκίλντα Ολλανδίας</displayName>
				<displayName count="other">γκίλντα Ολλανδίας</displayName>
			</currency>
			<currency type="NOK">
				<displayName>Κορόνα Νορβηγίας</displayName>
				<displayName count="one">κορόνα Νορβηγίας</displayName>
				<displayName count="other">κορόνες Νορβηγίας</displayName>
			</currency>
			<currency type="NPR">
				<displayName>Ρούπια Νεπάλ</displayName>
				<displayName count="one">ρούπι Νεπάλ</displayName>
				<displayName count="other">ρούπια Νεπάλ</displayName>
			</currency>
			<currency type="NZD">
				<displayName>Δολάριο Νέας Ζηλανδίας</displayName>
				<displayName count="one">δολάριο Νέας Ζηλανδίας</displayName>
				<displayName count="other">δολάρια Νέας Ζηλανδίας</displayName>
			</currency>
			<currency type="OMR">
				<displayName>Ριάλ Ομάν</displayName>
				<displayName count="one">ριάλ Ομάν</displayName>
				<displayName count="other">ριάλ Ομάν</displayName>
			</currency>
			<currency type="PAB">
				<displayName>Μπαλμπόα Παναμά</displayName>
				<displayName count="one">μπαλμπόα Παναμά</displayName>
				<displayName count="other">μπαλμπόα Παναμά</displayName>
			</currency>
			<currency type="PEI">
				<displayName>Ίντι Περού</displayName>
				<displayName count="one">ίντι Περού</displayName>
				<displayName count="other">ίντι Περού</displayName>
			</currency>
			<currency type="PEN">
				<displayName>Νέο Σολ Περού</displayName>
				<displayName count="one">νέο σολ Περού</displayName>
				<displayName count="other">νέα Σολ Περού</displayName>
			</currency>
			<currency type="PES">
				<displayName>Σολ Περού</displayName>
				<displayName count="one">σολ Περού</displayName>
				<displayName count="other">σολ Περού</displayName>
			</currency>
			<currency type="PGK">
				<displayName>Κίνα Παπούα Νέα Γουινέα</displayName>
				<displayName count="one">κίνα Παπούα Νέα Γουινέα</displayName>
				<displayName count="other">κίνα Παπούα Νέα Γουινέα</displayName>
			</currency>
			<currency type="PHP">
				<displayName>Πέσο Φιλιππίνων</displayName>
				<displayName count="one">πέσο Φιλιππίνων</displayName>
				<displayName count="other">πέσο Φιλιππίνων</displayName>
			</currency>
			<currency type="PKR">
				<displayName>Ρούπια Πακιστάν</displayName>
				<displayName count="one">ρούπι Πακιστάν</displayName>
				<displayName count="other">ρούπια Πακιστάν</displayName>
			</currency>
			<currency type="PLN">
				<displayName>Ζλότυ Πολωνίας</displayName>
				<displayName count="one">ζλότυ Πολωνίας</displayName>
				<displayName count="other">ζλότυ Πολωνίας</displayName>
			</currency>
			<currency type="PLZ">
				<displayName>Ζλότυ Πολωνίας (1950-1995)</displayName>
				<displayName count="one">ζλότυ Πολωνίας (PLZ)</displayName>
				<displayName count="other">ζλότυ Πολωνίας (PLZ)</displayName>
			</currency>
			<currency type="PTE">
				<displayName>Εσκούδο Πορτογαλίας</displayName>
				<displayName count="one">εσκούδο Πορτογαλίας</displayName>
				<displayName count="other">εσκούδο Πορτογαλίας</displayName>
			</currency>
			<currency type="PYG">
				<displayName>Γκουαρανί Παραγουάης</displayName>
				<displayName count="one">γκουαρανί Παραγουάης</displayName>
				<displayName count="other">γκουαρανί Παραγουάης</displayName>
			</currency>
			<currency type="QAR">
				<displayName>Ριάλ Κατάρ</displayName>
				<displayName count="one">ριάλ Κατάρ</displayName>
				<displayName count="other">ριάλ Κατάρ</displayName>
			</currency>
			<currency type="RHD">
				<displayName>Δολάριο Ροδεσίας</displayName>
				<displayName count="one">δολάριο Ροδεσίας</displayName>
				<displayName count="other">δολάρια Ροδεσίας</displayName>
			</currency>
			<currency type="ROL">
				<displayName>Λέι Ρουμανίας</displayName>
				<displayName count="one">παλιό λέι Ρουμανίας</displayName>
				<displayName count="other">παλιά λέι Ρουμανίας</displayName>
			</currency>
			<currency type="RON">
				<displayName>Λεβ Ρουμανίας</displayName>
				<displayName count="one">λεβ Ρουμανίας</displayName>
				<displayName count="other">λεβ Ρουμανίας</displayName>
			</currency>
			<currency type="RSD">
				<displayName>Δηνάριο Σερβίας</displayName>
				<displayName count="one">δηνάριο Σερβίας</displayName>
				<displayName count="other">δηνάρια Σερβίας</displayName>
			</currency>
			<currency type="RUB">
				<displayName>Ρούβλι Ρωσίας</displayName>
				<displayName count="one">ρούβλι Ρωσίας</displayName>
				<displayName count="other">ρούβλια Ρωσίας</displayName>
			</currency>
			<currency type="RUR">
				<displayName>Ρούβλι Ρωσίας (1991-1998)</displayName>
				<displayName count="one">ρούβλι Ρωσίας (RUR)</displayName>
				<displayName count="other">ρούβλια Ρωσίας (1991-1998)</displayName>
			</currency>
			<currency type="RWF">
				<displayName>Φράγκο Ρουάντας</displayName>
				<displayName count="one">φράγκο Ρουάντας</displayName>
				<displayName count="other">φράγκα Ρουάντας</displayName>
			</currency>
			<currency type="SAR">
				<displayName>Ριάλ Σαουδικής Αραβίας</displayName>
				<displayName count="one">ριάλ Σαουδικής Αραβίας</displayName>
				<displayName count="other">ριάλ Σαουδικής Αραβίας</displayName>
			</currency>
			<currency type="SBD">
				<displayName>Δολάριο Νήσων Σολομώντος</displayName>
				<displayName count="one">δολάριο Νήσων Σολομώντος</displayName>
				<displayName count="other">δολάρια Νήσων Σολομώντος</displayName>
			</currency>
			<currency type="SCR">
				<displayName>Ρούπια Σεϋχέλες</displayName>
				<displayName count="one">ρούπι Σεϋχέλες</displayName>
				<displayName count="other">ρούπια Σεϋχέλες</displayName>
			</currency>
			<currency type="SDD">
				<displayName>Δηνάριο Σουδάν</displayName>
				<displayName count="one">δηνάριο Σουδάν</displayName>
				<displayName count="other">δηνάρια Σουδάν</displayName>
			</currency>
			<currency type="SDG">
				<displayName>Λίρα Σουδάν</displayName>
				<displayName count="one">λίρα Σουδάν</displayName>
				<displayName count="other">λίρες Σουδάν</displayName>
			</currency>
			<currency type="SDP">
				<displayName>Παλαιά Λίρα Σουδάν</displayName>
				<displayName count="one">παλιά λίρα Σουδάν</displayName>
				<displayName count="other">παλαιές λίρες Σουδάν</displayName>
			</currency>
			<currency type="SEK">
				<displayName>Κορόνα Σουηδίας</displayName>
				<displayName count="one">κορόνα Σουηδίας</displayName>
				<displayName count="other">κορόνες Σουηδίας</displayName>
			</currency>
			<currency type="SGD">
				<displayName>Δολάριο Σιγκαπούρης</displayName>
				<displayName count="one">δολάριο Σιγκαπούρης</displayName>
				<displayName count="other">δολάρια Σιγκαπούρης</displayName>
			</currency>
			<currency type="SHP">
				<displayName>Λίρα Αγίας Ελένης</displayName>
				<displayName count="one">λίρα Αγίας Ελένης</displayName>
				<displayName count="other">λίρες Αγίας Ελένης</displayName>
			</currency>
			<currency type="SIT">
				<displayName>Τόλαρ Σλοβενίας</displayName>
				<displayName count="one">τόλαρ Σλοβενίας</displayName>
				<displayName count="other">τόλαρ Σλοβ</displayName>
			</currency>
			<currency type="SKK">
				<displayName>Κορόνα Σλοβενίας</displayName>
				<displayName count="one">κορόνα Σλοβενίας</displayName>
				<displayName count="other">κορόνες Σλοβενίας</displayName>
			</currency>
			<currency type="SLL">
				<displayName>Λεόνε Σιέρα Λεόνε</displayName>
				<displayName count="one">λεόνε Σιέρα Λεόνε</displayName>
				<displayName count="other">λεόνε Σιέρα Λεόνε</displayName>
			</currency>
			<currency type="SOS">
				<displayName>Σελίνι Σομαλίας</displayName>
				<displayName count="one">σελίνι Σομαλίας</displayName>
				<displayName count="other">σελίνια Σομαλίας</displayName>
			</currency>
			<currency type="SRD">
				<displayName>Δολάριο Σουρινάμ</displayName>
				<displayName count="one">δολάριο Σουρινάμ</displayName>
				<displayName count="other">δολάρια Σουρινάμ</displayName>
			</currency>
			<currency type="SRG">
				<displayName>Γκίλντα Σουρινάμ</displayName>
				<displayName count="one">γκίλντα Σουρινάμ</displayName>
				<displayName count="other">γκίλντα Σουρινάμ</displayName>
			</currency>
			<currency type="STD">
				<displayName>Ντόμπρα Σάο Τομέ και Πρίνσιπε</displayName>
				<displayName count="one">ντόμπρα Σάο Τόμε και Πρίνσιπε</displayName>
				<displayName count="other">ντόμπρα Σάο Τόμε και Πρίνσιπε</displayName>
			</currency>
			<currency type="SUR">
				<displayName>Σοβιετικό Ρούβλι</displayName>
				<displayName count="one">σοβιετικό ρούβλι</displayName>
				<displayName count="other">σοβιετικά ρούβλια</displayName>
			</currency>
			<currency type="SVC">
				<displayName>Κολόν Ελ Σαλβαδόρ</displayName>
				<displayName count="one">κολόν Ελ Σαλβαδόρ</displayName>
				<displayName count="other">κολόν Ελ Σαλβαδόρ</displayName>
			</currency>
			<currency type="SYP">
				<displayName>Λίρα Συρίας</displayName>
				<displayName count="one">λίρα Συρίας</displayName>
				<displayName count="other">λίρες Συρίας</displayName>
			</currency>
			<currency type="SZL">
				<displayName>Λιλανγκένι Σουαζιλάνδη</displayName>
				<displayName count="one">λιλανγκένι Σουαζιλάνδη</displayName>
				<displayName count="other">λιλανγκένι Σουαζιλάνδη</displayName>
			</currency>
			<currency type="THB">
				<displayName>Μπατ Ταϊλάνδης</displayName>
				<displayName count="one">μπατ Ταϊλάνδης</displayName>
				<displayName count="other">μπατ Ταϊλάνδης</displayName>
			</currency>
			<currency type="TJR">
				<displayName>Ρούβλι Τατζικιστάν</displayName>
				<displayName count="one">ρούβλι Τατζικιστάν</displayName>
				<displayName count="other">ρούβλια Τατζικιστάν</displayName>
			</currency>
			<currency type="TJS">
				<displayName>Σομόν Τατζικιστάν</displayName>
				<displayName count="one">σομόν Τατζικιστάν</displayName>
				<displayName count="other">σομόν Τατζικιστάν</displayName>
			</currency>
			<currency type="TMM">
				<displayName>Μανάτ Τουρκμενιστάν</displayName>
				<displayName count="one">μανάτ Τουρκμενιστάν</displayName>
				<displayName count="other">μανάτ Τουρκμενιστάν</displayName>
			</currency>
			<currency type="TND">
				<displayName>Δηνάριο Τυνησίας</displayName>
				<displayName count="one">δηνάριο Τυνησίας</displayName>
				<displayName count="other">δηνάρια Τυνησίας</displayName>
			</currency>
			<currency type="TOP">
				<displayName>Παάνγκα Τόνγκας</displayName>
				<displayName count="one">πάνγκα Τόγκα</displayName>
				<displayName count="other">πάνγκα Τόγκα</displayName>
			</currency>
			<currency type="TPE">
				<displayName>Εσκούδο Τιμόρ</displayName>
				<displayName count="one">εσκούδο Τιμόρ</displayName>
				<displayName count="other">εσκούδο Τιμόρ</displayName>
			</currency>
			<currency type="TRL">
				<displayName>Παλιά Λίρα Τουρκίας</displayName>
				<displayName count="one">παλιά λίρα Τουρκίας</displayName>
				<displayName count="other">παλιές λίρες Τουρκίας</displayName>
			</currency>
			<currency type="TRY">
				<displayName>Τουρκική Λίρα</displayName>
				<displayName count="one">λίρα Τουρκίας</displayName>
				<displayName count="other">λίρες Τουρκίας</displayName>
			</currency>
			<currency type="TTD">
				<displayName>Δολάριο Τρινιντάντ και Τομπάγκο</displayName>
				<displayName count="one">δολάριο Τρινιδάδ και Τομπάγκο</displayName>
				<displayName count="other">δολάρια Τρινιδάδ και Τομπάγκο</displayName>
			</currency>
			<currency type="TWD">
				<displayName>Νέο Δολάριο Ταϊβάν</displayName>
				<displayName count="one">νέο δολάριο Ταϊβάν</displayName>
				<displayName count="other">νέα δολάρια Ταϊβάν</displayName>
			</currency>
			<currency type="TZS">
				<displayName>Σελίνι Τανζανίας</displayName>
				<displayName count="one">σελίνι Τανζανίας</displayName>
				<displayName count="other">σελίνι Τανζανίας</displayName>
			</currency>
			<currency type="UAH">
				<displayName>Χρίφνα Ουκρανίας</displayName>
				<displayName count="one">χρίφνα Ουκρανίας</displayName>
				<displayName count="other">χρίφνα Ουκρανίας</displayName>
			</currency>
			<currency type="UAK">
				<displayName>Καρμποβανέτς Ουκρανίας</displayName>
				<displayName count="one">καρμποβανέτς Ουκρανίας</displayName>
				<displayName count="other">καρμποβανέτς Ουκρανίας</displayName>
			</currency>
			<currency type="UGS">
				<displayName>Σελίνι Ουγκάντας (1966-1987)</displayName>
				<displayName count="one">σελίνι Ουγκάντας (UGS)</displayName>
				<displayName count="other">σελίνια Ουγκάντας (UGS)</displayName>
			</currency>
			<currency type="UGX">
				<displayName>Σελίνι Ουγκάντας</displayName>
				<displayName count="one">σελίνι Ουγκάντας</displayName>
				<displayName count="other">σελίνια Ουγκάντας</displayName>
			</currency>
			<currency type="USD">
				<displayName>Δολάριο ΗΠΑ</displayName>
				<displayName count="one">δολάριο Η.Π.Α.</displayName>
				<displayName count="other">δολάρια Η.Π.Α.</displayName>
			</currency>
			<currency type="USN">
				<displayName>Δολάριο ΗΠΑ (επόμενη ημέρα)</displayName>
				<displayName count="one">δολάριο Η.Π.Α. (επόμενη ημέρα)</displayName>
				<displayName count="other">δολάρια Η.Π.Α. (επόμενη ημέρα)</displayName>
			</currency>
			<currency type="USS">
				<displayName>Δολάριο ΗΠΑ (ίδια ημέρα)</displayName>
				<displayName count="one">δολάριο Η.Π.Α. (ίδια ημέρα)</displayName>
				<displayName count="other">δολάρια Η.Π.Α. (ίδια ημέρα)</displayName>
			</currency>
			<currency type="UYI">
				<displayName>Peso en Unidades Indexadas Ουρουγουάης</displayName>
				<displayName count="one">peso en unidades indexadas Ουρουγκουάης</displayName>
				<displayName count="other">pesos en unidades indexadas Ουρουγκουάης</displayName>
			</currency>
			<currency type="UYP">
				<displayName>Πέσο Ουρουγουάης (1975-1993)</displayName>
				<displayName count="one">πέσο Ουρουγουάης (UYP)</displayName>
				<displayName count="other">πέσο Ουρουγουάης (UYP)</displayName>
			</currency>
			<currency type="UYU">
				<displayName>Πέσο Ουρουγουάης</displayName>
				<displayName count="one">πέσο Ουρουγουάης</displayName>
				<displayName count="other">πέσο Ουρουγουάης</displayName>
			</currency>
			<currency type="UZS">
				<displayName>Σομ Ουζμπεκιστάν</displayName>
				<displayName count="one">σομ Ουζμπεκιστάν</displayName>
				<displayName count="other">σομ Ουζμπεκιστάν</displayName>
			</currency>
			<currency type="VEB">
				<displayName>Μπολιβάρ Βενεζουέλας</displayName>
				<displayName count="one">μπολιβάρ Βενεζουέλας</displayName>
				<displayName count="other">μπολιβάρ Βενεζουέλας</displayName>
			</currency>
			<currency type="VEF">
				<displayName>Βολιβάρ Φουέρτε Βενεζουέλας</displayName>
				<displayName count="one">βολιβάρ φουέρτε Βενεζουέλας</displayName>
				<displayName count="other">βολιβάρ φουέρτε Βενεζουέλας</displayName>
			</currency>
			<currency type="VND">
				<displayName>Ντονγκ Βιετνάμ</displayName>
				<displayName count="one">ντονγκ Βιετνάμ</displayName>
				<displayName count="other">ντονγκ Βιετνάμ</displayName>
			</currency>
			<currency type="VUV">
				<displayName>Βατού Βανουάτου</displayName>
				<displayName count="one">βατού Βανουάτου</displayName>
				<displayName count="other">βατού Βανουάτου</displayName>
			</currency>
			<currency type="WST">
				<displayName>Ταλά Δυτικής Σαμόας</displayName>
				<displayName count="one">Τάλα Σαμόας</displayName>
				<displayName count="other">τάλα Σαμόας</displayName>
			</currency>
			<currency type="XAF">
				<displayName>Φράγκο BEAC CFA</displayName>
				<displayName count="one">φράγκο BEAC CFA</displayName>
				<displayName count="other">φράγκα BEAC CFA</displayName>
			</currency>
			<currency type="XAU">
				<displayName>Χρυσός</displayName>
				<displayName count="one">XAU</displayName>
				<displayName count="other">XAU</displayName>
			</currency>
			<currency type="XBA">
				<displayName>Ευρωπαϊκή Σύνθετη Μονάδα</displayName>
				<displayName count="one">ευρωπαϊκή σύνθετη μονάδα</displayName>
				<displayName count="other">ευρωπαϊκές σύνθετες μονάδες</displayName>
			</currency>
			<currency type="XBB">
				<displayName>Ευρωπαϊκή Νομισματική Μονάδα</displayName>
				<displayName count="one">ευρωπαϊκή νομισματική μονάδα</displayName>
				<displayName count="other">ευρωπαϊκές νομισματικές μονάδες</displayName>
			</currency>
			<currency type="XBC">
				<displayName>Ευρωπαϊκή μονάδα λογαριασμού (XBC)</displayName>
				<displayName count="one">ευρωπαϊκή μονάδα λογαριασμού (XBC)</displayName>
				<displayName count="other">ευρωπαϊκές μονάδες λογαριασμού (XBC)</displayName>
			</currency>
			<currency type="XBD">
				<displayName>Ευρωπαϊκή μονάδα λογαριασμού (XBD)</displayName>
				<displayName count="one">ευρωπαϊκή μονάδα λογαριασμού (XBD)</displayName>
				<displayName count="other">ευρωπαϊκές μονάδες λογαριασμού (XBD)</displayName>
			</currency>
			<currency type="XCD">
				<displayName>Δολάριο Ανατολικής Καραϊβικής</displayName>
				<displayName count="one">δολάριο Ανατολικής Καραϊβικής</displayName>
				<displayName count="other">δολάρια Ανατολικής Καραϊβικής</displayName>
			</currency>
			<currency type="XDR">
				<displayName>Ειδικά Δικαιώματα Ανάληψης</displayName>
				<displayName count="one">ειδικό δικαίωμα ανάληψης</displayName>
				<displayName count="other">ειδικά δικαιώματα ανάληψης</displayName>
			</currency>
			<currency type="XEU">
				<displayName>Ευρωπαϊκή Συναλλαγματική Μονάδα</displayName>
				<displayName count="one">ευρωπαϊκή συναλλαγματική μονάδα</displayName>
				<displayName count="other">ευρωπαϊκές συναλλαγματικές μονάδες</displayName>
			</currency>
			<currency type="XFO">
				<displayName>Χρυσό Φράγκο Γαλλίας</displayName>
				<displayName count="one">χρυσό φράγκο Γαλλίας</displayName>
				<displayName count="other">χρυσά φράγκα Γαλλίας</displayName>
			</currency>
			<currency type="XFU">
				<displayName>UIC-Φράγκο Γαλλίας</displayName>
				<displayName count="one">UIC-φράγκο Γαλλίας</displayName>
				<displayName count="other">UIC-φράγκα Γαλλίας</displayName>
			</currency>
			<currency type="XOF">
				<displayName>Φράγκο BCEAO CFA</displayName>
				<displayName count="one">φράγκο BCEAO CFA</displayName>
				<displayName count="other">φράγκα BCEAO CFA</displayName>
			</currency>
			<currency type="XPF">
				<displayName>Φράγκο CFP</displayName>
				<displayName count="one">φράγκο CFP</displayName>
				<displayName count="other">φράγκα CFP</displayName>
			</currency>
			<currency type="XXX">
				<displayName>Άγνωστο ή μη έγκυρο νόμισμα</displayName>
				<displayName count="one">άγνωστο/μη έγκυρο νόμισμα</displayName>
				<displayName count="other">Άγνωστο ή μη έγκυρο νόμισμα</displayName>
			</currency>
			<currency type="YDD">
				<displayName>Δηνάριο Υεμένης</displayName>
				<displayName count="one">δηνάριο Υεμένης</displayName>
				<displayName count="other">δηνάρια Υεμένης</displayName>
			</currency>
			<currency type="YER">
				<displayName>Ριάλ Υεμένης</displayName>
				<displayName count="one">ριάλ Υεμένης</displayName>
				<displayName count="other">ριάλ Υεμένης</displayName>
			</currency>
			<currency type="YUD">
				<displayName>Μεταλλικό Δηνάριο Γιουγκοσλαβίας</displayName>
				<displayName count="one">μεταλλικό δηνάριο Γιουγκοσλαβίας</displayName>
				<displayName count="other">μεταλλικά δηνάρια Γιουγκοσλαβίας</displayName>
			</currency>
			<currency type="YUM">
				<displayName>Νέο Δηνάριο Γιουγκοσλαβίας</displayName>
				<displayName count="one">νέο δηνάριο Γιουγκοσλαβίας</displayName>
				<displayName count="other">νέο δηνάριο Γιουγκοσλαβίας</displayName>
			</currency>
			<currency type="YUN">
				<displayName>Μετατρέψιμο Δηνάριο Γιουγκοσλαβίας</displayName>
				<displayName count="one">μετατρέψιμο δινάριο Γιουγκοσλαβίας</displayName>
				<displayName count="other">μετατρέψιμο δηνάριο Γιουγκοσλαβίας</displayName>
			</currency>
			<currency type="ZAL">
				<displayName>Ραντ Νότιας Αφρικής (οικονομικό)</displayName>
				<displayName count="one">ραντ Νότιας Αφρικής (οικονομικό)</displayName>
				<displayName count="other">ραντ Νότιας Αφρικής (οικονομικό)</displayName>
			</currency>
			<currency type="ZAR">
				<displayName>Ραντ Νότιας Αφρικής</displayName>
				<displayName count="one">ραντ Νότιας Αφρικής</displayName>
				<displayName count="other">ραντ Νότιας Αφρικής</displayName>
			</currency>
			<currency type="ZMK">
				<displayName>Κουάνζα Ζαΐρ</displayName>
				<displayName count="one">κουάτσα Ζάμπιας</displayName>
				<displayName count="other">κουάτσα Ζάμπιας</displayName>
			</currency>
			<currency type="ZRN">
				<displayName>Νέο Ζαΐρ Ζαΐρ</displayName>
				<displayName count="one">νέο ζαΐρ Ζαΐρ</displayName>
				<displayName count="other">νέα ζαΐρ Ζαΐρ</displayName>
			</currency>
			<currency type="ZRZ">
				<displayName>Ζαΐρ Ζαΐρ</displayName>
				<displayName count="one">ζαΐρ Ζαΐρ</displayName>
				<displayName count="other">ζαΐρ Ζαΐρ</displayName>
			</currency>
			<currency type="ZWD">
				<displayName>Δολάριο Ζιμπάμπουε</displayName>
				<displayName count="one">δολάριο Ζιμπάμπουε</displayName>
				<displayName count="other">δολάρια Ζιμπάμπουε</displayName>
			</currency>
		</currencies>
	</numbers>
	<units>
		<unit type="day">
			<unitPattern count="one">{0} ημέρα</unitPattern>
			<unitPattern count="other">{0} ημέρες</unitPattern>
		</unit>
		<unit type="hour">
			<unitPattern count="one">{0} ώρα</unitPattern>
			<unitPattern count="other">{0} ώρες</unitPattern>
		</unit>
		<unit type="minute">
			<unitPattern count="one">{0} λεπτό</unitPattern>
			<unitPattern count="other">{0} λεπτά</unitPattern>
		</unit>
		<unit type="month">
			<unitPattern count="one">{0} μήνας</unitPattern>
			<unitPattern count="other">{0} μήνες</unitPattern>
		</unit>
		<unit type="second">
			<unitPattern count="one">{0} δευτερόλεπτο</unitPattern>
			<unitPattern count="other">{0} δευτερόλεπτα</unitPattern>
		</unit>
		<unit type="week">
			<unitPattern count="one">{0} εβδομάδα</unitPattern>
			<unitPattern count="other">{0} εβδομάδες</unitPattern>
		</unit>
		<unit type="year">
			<unitPattern count="one">{0} έτος</unitPattern>
			<unitPattern count="other">{0} έτη</unitPattern>
		</unit>
	</units>
	<posix>
		<messages>
			<yesstr>ναι:ν</yesstr>
			<nostr>όχι:ό</nostr>
		</messages>
	</posix>
</ldml>