-
Notifications
You must be signed in to change notification settings - Fork 0
/
countriesData.js
23956 lines (23956 loc) · 954 KB
/
countriesData.js
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
export default [
{
name: {
common: 'Barbados',
official: 'Barbados',
nativeName: { eng: { official: 'Barbados', common: 'Barbados' } },
},
tld: ['.bb'],
cca2: 'BB',
ccn3: '052',
cca3: 'BRB',
cioc: 'BAR',
independent: true,
status: 'officially-assigned',
unMember: true,
currencies: { BBD: { name: 'Barbadian dollar', symbol: '$' } },
idd: { root: '+1', suffixes: ['246'] },
capital: ['Bridgetown'],
altSpellings: ['BB'],
region: 'Americas',
subregion: 'Caribbean',
languages: { eng: 'English' },
translations: {
ara: { official: 'باربادوس', common: 'باربادوس' },
bre: { official: 'Barbados', common: 'Barbados' },
ces: { official: 'Barbados', common: 'Barbados' },
cym: { official: 'Barbados', common: 'Barbados' },
deu: { official: 'Barbados', common: 'Barbados' },
est: { official: 'Barbados', common: 'Barbados' },
fin: { official: 'Barbados', common: 'Barbados' },
fra: { official: 'Barbade', common: 'Barbade' },
hrv: { official: 'Barbados', common: 'Barbados' },
hun: { official: 'Barbados', common: 'Barbados' },
ita: { official: 'Barbados', common: 'Barbados' },
jpn: { official: 'バルバドス', common: 'バルバドス' },
kor: { official: '바베이도스', common: '바베이도스' },
nld: { official: 'Barbados', common: 'Barbados' },
per: { official: 'باربادوس', common: 'باربادوس' },
pol: { official: 'Barbados', common: 'Barbados' },
por: { official: 'Barbados', common: 'Barbados' },
rus: { official: 'Барбадос', common: 'Барбадос' },
slk: { official: 'Barbados', common: 'Barbados' },
spa: { official: 'Barbados', common: 'Barbados' },
srp: { official: 'Барбадос', common: 'Барбадос' },
swe: { official: 'Barbados', common: 'Barbados' },
tur: { official: 'Barbados', common: 'Barbados' },
urd: { official: 'بارباڈوس', common: 'بارباڈوس' },
zho: { official: '巴巴多斯', common: '巴巴多斯' },
},
latlng: [13.16666666, -59.53333333],
landlocked: false,
area: 430.0,
demonyms: {
eng: { f: 'Barbadian', m: 'Barbadian' },
fra: { f: 'Barbadienne', m: 'Barbadien' },
},
flag: '\uD83C\uDDE7\uD83C\uDDE7',
maps: {
googleMaps: 'https://goo.gl/maps/2m36v8STvbGAWd9c7',
openStreetMaps: 'https://www.openstreetmap.org/relation/547511',
},
population: 287371,
fifa: 'BRB',
car: { signs: ['BDS'], side: 'left' },
timezones: ['UTC-04:00'],
continents: ['North America'],
flags: {
png: 'https://flagcdn.com/w320/bb.png',
svg: 'https://flagcdn.com/bb.svg',
alt: 'The flag of Barbados is composed of three equal vertical bands of ultramarine, gold and ultramarine. The head of a black trident is centered in the gold band.',
},
coatOfArms: {
png: 'https://mainfacts.com/media/images/coats_of_arms/bb.png',
svg: 'https://mainfacts.com/media/images/coats_of_arms/bb.svg',
},
startOfWeek: 'monday',
capitalInfo: { latlng: [13.1, -59.62] },
postalCode: { format: 'BB#####', regex: '^(?:BB)*(\\d{5})$' },
},
{
name: {
common: 'Réunion',
official: 'Réunion Island',
nativeName: {
fra: { official: 'Ile de la Réunion', common: 'La Réunion' },
},
},
tld: ['.re'],
cca2: 'RE',
ccn3: '638',
cca3: 'REU',
independent: false,
status: 'officially-assigned',
unMember: false,
currencies: { EUR: { name: 'Euro', symbol: '€' } },
idd: { root: '+2', suffixes: ['62'] },
capital: ['Saint-Denis'],
altSpellings: ['RE', 'Reunion'],
region: 'Africa',
subregion: 'Eastern Africa',
languages: { fra: 'French' },
translations: {
ara: { official: 'جزيرة لا ريونيون', common: 'لا ريونيون' },
bre: { official: 'Enez ar Reünion', common: 'Reünion' },
ces: { official: 'Réunion', common: 'Réunion' },
cym: { official: 'Réunion Island', common: 'Réunion' },
deu: { official: 'Réunion', common: 'Réunion' },
est: { official: 'Réunioni departemang', common: 'Réunion' },
fin: { official: 'Réunion', common: 'Réunion' },
fra: { official: 'Ile de la Réunion', common: 'Réunion' },
hrv: { official: 'Réunion Island', common: 'Réunion' },
hun: { official: 'Réunion', common: 'Réunion' },
ita: { official: 'Réunion', common: 'Riunione' },
jpn: { official: 'レユニオン島', common: 'レユニオン' },
kor: { official: '레위니옹', common: '레위니옹' },
nld: { official: 'Réunion', common: 'Réunion' },
per: { official: 'رئونیون', common: 'رئونیون' },
pol: { official: 'Reunion', common: 'Reunion' },
por: { official: 'Ilha da Reunião', common: 'Reunião' },
rus: { official: 'Реюньон', common: 'Реюньон' },
slk: { official: 'Réunionský zámorský departmán', common: 'Réunion' },
spa: { official: 'Isla de la Reunión', common: 'Reunión' },
srp: { official: 'Реинион', common: 'Реинион' },
swe: { official: 'Réunion', common: 'Réunion' },
tur: { official: 'Réunion', common: 'Réunion' },
urd: { official: 'رے یونیوں جزیرہ', common: 'رے یونیوں' },
zho: { official: '留尼旺岛', common: '留尼旺岛' },
},
latlng: [-21.15, 55.5],
landlocked: false,
area: 2511.0,
demonyms: {
eng: { f: 'Réunionese', m: 'Réunionese' },
fra: { f: 'Réunionnaise', m: 'Réunionnais' },
},
flag: '\uD83C\uDDF7\uD83C\uDDEA',
maps: {
googleMaps: 'https://goo.gl/maps/wWpBrXsp8UHVbah29',
openStreetMaps: 'https://www.openstreetmap.org/relation/1785276',
},
population: 840974,
car: { signs: ['F'], side: 'right' },
timezones: ['UTC+04:00'],
continents: ['Africa'],
flags: {
png: 'https://flagcdn.com/w320/re.png',
svg: 'https://flagcdn.com/re.svg',
},
coatOfArms: {},
startOfWeek: 'monday',
capitalInfo: { latlng: [-20.88, 55.45] },
postalCode: { format: '#####', regex: '^((97|98)(4|7|8)\\d{2})$' },
},
{
name: {
common: 'Suriname',
official: 'Republic of Suriname',
nativeName: {
nld: { official: 'Republiek Suriname', common: 'Suriname' },
},
},
tld: ['.sr'],
cca2: 'SR',
ccn3: '740',
cca3: 'SUR',
cioc: 'SUR',
independent: true,
status: 'officially-assigned',
unMember: true,
currencies: { SRD: { name: 'Surinamese dollar', symbol: '$' } },
idd: { root: '+5', suffixes: ['97'] },
capital: ['Paramaribo'],
altSpellings: [
'SR',
'Sarnam',
'Sranangron',
'Republic of Suriname',
'Republiek Suriname',
],
region: 'Americas',
subregion: 'South America',
languages: { nld: 'Dutch' },
translations: {
ara: { official: 'جمهورية سورينام', common: 'سورينام' },
bre: { official: 'Republik Surinam', common: 'Surinam' },
ces: { official: 'Republika Surinam', common: 'Surinam' },
cym: { official: 'Republic of Suriname', common: 'Suriname' },
deu: { official: 'Republik Suriname', common: 'Suriname' },
est: { official: 'Suriname Vabariik', common: 'Suriname' },
fin: { official: 'Surinamen tasavalta', common: 'Suriname' },
fra: { official: 'République du Suriname', common: 'Surinam' },
hrv: { official: 'Republika Surinam', common: 'Surinam' },
hun: { official: 'Suriname Köztársaság', common: 'Suriname' },
ita: { official: 'Repubblica del Suriname', common: 'Suriname' },
jpn: { official: 'スリナム共和国', common: 'スリナム' },
kor: { official: '수리남 공화국', common: '수리남' },
nld: { official: 'Republiek Suriname', common: 'Suriname' },
per: { official: 'جمهوری سورینام', common: 'سورینام' },
pol: { official: 'Republika Surinamu', common: 'Surinam' },
por: { official: 'República do Suriname', common: 'Suriname' },
rus: { official: 'Республика Суринам', common: 'Суринам' },
slk: { official: 'Surinamská republika', common: 'Surinam' },
spa: { official: 'República de Suriname', common: 'Surinam' },
srp: { official: 'Република Суринам', common: 'Суринам' },
swe: { official: 'Republiken Surinam', common: 'Surinam' },
tur: { official: 'Surinam Cumhuriyeti', common: 'Surinam' },
urd: { official: 'جمہوریہ سرینام', common: 'سرینام' },
zho: { official: '苏里南共和国', common: '苏里南' },
},
latlng: [4.0, -56.0],
landlocked: false,
borders: ['BRA', 'GUF', 'GUY'],
area: 163820.0,
demonyms: {
eng: { f: 'Surinamer', m: 'Surinamer' },
fra: { f: 'Surinamaise', m: 'Surinamais' },
},
flag: '\uD83C\uDDF8\uD83C\uDDF7',
maps: {
googleMaps: 'https://goo.gl/maps/iy7TuQLSi4qgoBoG7',
openStreetMaps: 'https://www.openstreetmap.org/relation/287082',
},
population: 586634,
gini: { 1999: 57.9 },
fifa: 'SUR',
car: { signs: ['SME'], side: 'left' },
timezones: ['UTC-03:00'],
continents: ['South America'],
flags: {
png: 'https://flagcdn.com/w320/sr.png',
svg: 'https://flagcdn.com/sr.svg',
alt: 'The flag of Suriname is composed of five horizontal bands of green, white, red, white and green in the ratio of 2:1:4:1:2. A large five-pointed yellow star is centered in the red band.',
},
coatOfArms: {
png: 'https://mainfacts.com/media/images/coats_of_arms/sr.png',
svg: 'https://mainfacts.com/media/images/coats_of_arms/sr.svg',
},
startOfWeek: 'monday',
capitalInfo: { latlng: [5.83, -55.17] },
},
{
name: {
common: 'Namibia',
official: 'Republic of Namibia',
nativeName: {
afr: { official: 'Republiek van Namibië', common: 'Namibië' },
deu: { official: 'Republik Namibia', common: 'Namibia' },
eng: { official: 'Republic of Namibia', common: 'Namibia' },
her: { official: 'Republic of Namibia', common: 'Namibia' },
hgm: { official: 'Republic of Namibia', common: 'Namibia' },
kwn: { official: 'Republic of Namibia', common: 'Namibia' },
loz: { official: 'Republic of Namibia', common: 'Namibia' },
ndo: { official: 'Republic of Namibia', common: 'Namibia' },
tsn: { official: 'Lefatshe la Namibia', common: 'Namibia' },
},
},
tld: ['.na'],
cca2: 'NA',
ccn3: '516',
cca3: 'NAM',
cioc: 'NAM',
independent: true,
status: 'officially-assigned',
unMember: true,
currencies: {
NAD: { name: 'Namibian dollar', symbol: '$' },
ZAR: { name: 'South African rand', symbol: 'R' },
},
idd: { root: '+2', suffixes: ['64'] },
capital: ['Windhoek'],
altSpellings: ['NA', 'Namibië', 'Republic of Namibia'],
region: 'Africa',
subregion: 'Southern Africa',
languages: {
afr: 'Afrikaans',
deu: 'German',
eng: 'English',
her: 'Herero',
hgm: 'Khoekhoe',
kwn: 'Kwangali',
loz: 'Lozi',
ndo: 'Ndonga',
tsn: 'Tswana',
},
translations: {
ara: { official: 'جمهورية ناميبيا', common: 'ناميبيا' },
bre: { official: 'Republik Namibia', common: 'Namibia' },
ces: { official: 'Namibijská republika', common: 'Namibie' },
cym: { official: 'Republic of Namibia', common: 'Namibia' },
deu: { official: 'Republik Namibia', common: 'Namibia' },
est: { official: 'Namiibia Vabariik', common: 'Namiibia' },
fin: { official: 'Namibian tasavalta', common: 'Namibia' },
fra: { official: 'République de Namibie', common: 'Namibie' },
hrv: { official: 'Republika Namibija', common: 'Namibija' },
hun: { official: 'Namíbiai Köztársaság', common: 'Namíbia' },
ita: { official: 'Repubblica di Namibia', common: 'Namibia' },
jpn: { official: 'ナミビア共和国', common: 'ナミビア' },
kor: { official: '나미비아 공화국', common: '나미비아' },
nld: { official: 'Republiek Namibië', common: 'Namibië' },
per: { official: 'جمهوری نامیبیا', common: 'نامیبیا' },
pol: { official: 'Republika Namibii', common: 'Namibia' },
por: { official: 'República da Namíbia', common: 'Namíbia' },
rus: { official: 'Республика Намибия', common: 'Намибия' },
slk: { official: 'Namíbijská republika', common: 'Namíbia' },
spa: { official: 'República de Namibia', common: 'Namibia' },
srp: { official: 'Република Намибија', common: 'Намибија' },
swe: { official: 'Republiken Namibia', common: 'Namibia' },
tur: { official: 'Namibya Cumhuriyeti', common: 'Namibya' },
urd: { official: 'جمہوریہ نمیبیا', common: 'نمیبیا' },
zho: { official: '纳米比亚共和国', common: '纳米比亚' },
},
latlng: [-22.0, 17.0],
landlocked: false,
borders: ['AGO', 'BWA', 'ZAF', 'ZMB'],
area: 825615.0,
demonyms: {
eng: { f: 'Namibian', m: 'Namibian' },
fra: { f: 'Namibienne', m: 'Namibien' },
},
flag: '\uD83C\uDDF3\uD83C\uDDE6',
maps: {
googleMaps: 'https://goo.gl/maps/oR1i8BFEYX3EY83WA',
openStreetMaps: 'https://www.openstreetmap.org/relation/195266',
},
population: 2540916,
gini: { 2015: 59.1 },
fifa: 'NAM',
car: { signs: ['NAM'], side: 'left' },
timezones: ['UTC+01:00'],
continents: ['Africa'],
flags: {
png: 'https://flagcdn.com/w320/na.png',
svg: 'https://flagcdn.com/na.svg',
alt: 'The flag of Namibia features a white-edged red diagonal band that extends from the lower hoist-side corner to the upper fly-side corner of the field. Above and beneath this band are a blue and green triangle respectively. A gold sun with twelve triangular rays is situated on the hoist side of the upper triangle.',
},
coatOfArms: {
png: 'https://mainfacts.com/media/images/coats_of_arms/na.png',
svg: 'https://mainfacts.com/media/images/coats_of_arms/na.svg',
},
startOfWeek: 'monday',
capitalInfo: { latlng: [-22.57, 17.08] },
},
{
name: {
common: 'Guinea',
official: 'Republic of Guinea',
nativeName: {
fra: { official: 'République de Guinée', common: 'Guinée' },
},
},
tld: ['.gn'],
cca2: 'GN',
ccn3: '324',
cca3: 'GIN',
cioc: 'GUI',
independent: true,
status: 'officially-assigned',
unMember: true,
currencies: { GNF: { name: 'Guinean franc', symbol: 'Fr' } },
idd: { root: '+2', suffixes: ['24'] },
capital: ['Conakry'],
altSpellings: ['GN', 'Republic of Guinea', 'République de Guinée'],
region: 'Africa',
subregion: 'Western Africa',
languages: { fra: 'French' },
translations: {
ara: { official: 'جمهورية غينيا', common: 'غينيا' },
bre: { official: 'Republik Ginea', common: 'Ginea' },
ces: { official: 'Guinejská republika', common: 'Guinea' },
cym: { official: 'Republic of Guinea', common: 'Guinea' },
deu: { official: 'Republik Guinea', common: 'Guinea' },
est: { official: 'Guinea Vabariik', common: 'Guinea' },
fin: { official: 'Guinean tasavalta', common: 'Guinea' },
fra: { official: 'République de Guinée', common: 'Guinée' },
hrv: { official: 'Republika Gvineja', common: 'Gvineja' },
hun: { official: 'Guineai Köztársaság', common: 'Guinea' },
ita: { official: 'Repubblica di Guinea', common: 'Guinea' },
jpn: { official: 'ギニア共和国', common: 'ギニア' },
kor: { official: '기니 공화국', common: '기니' },
nld: { official: 'Republiek Guinee', common: 'Guinee' },
per: { official: 'مملکت مستقل پاپوآ گینه نو', common: 'پاپوآ گینه نو' },
pol: { official: 'Republika Gwinei', common: 'Gwinea' },
por: { official: 'República da Guiné', common: 'Guiné' },
rus: { official: 'Республика Гвинея', common: 'Гвинея' },
slk: { official: 'Guinejská republika', common: 'Guinea' },
spa: { official: 'República de Guinea', common: 'Guinea' },
srp: { official: 'Кооперативна Република Гвајана', common: 'Гвајана' },
swe: { official: 'Republiken Guinea', common: 'Guinea' },
tur: { official: 'Gine Cumhuriyeti', common: 'Gine' },
urd: { official: 'جمہوریہ گنی', common: 'گنی' },
zho: { official: '几内亚共和国', common: '几内亚' },
},
latlng: [11.0, -10.0],
landlocked: false,
borders: ['CIV', 'GNB', 'LBR', 'MLI', 'SEN', 'SLE'],
area: 245857.0,
demonyms: {
eng: { f: 'Guinean', m: 'Guinean' },
fra: { f: 'Guinéenne', m: 'Guinéen' },
},
flag: '\uD83C\uDDEC\uD83C\uDDF3',
maps: {
googleMaps: 'https://goo.gl/maps/8J5oM5sA4Ayr1ZYGA',
openStreetMaps: 'https://www.openstreetmap.org/relation/192778',
},
population: 13132792,
gini: { 2012: 33.7 },
fifa: 'GUI',
car: { signs: ['RG'], side: 'right' },
timezones: ['UTC'],
continents: ['Africa'],
flags: {
png: 'https://flagcdn.com/w320/gn.png',
svg: 'https://flagcdn.com/gn.svg',
alt: 'The flag of Guinea is composed of three equal vertical bands of red, yellow and green.',
},
coatOfArms: {
png: 'https://mainfacts.com/media/images/coats_of_arms/gn.png',
svg: 'https://mainfacts.com/media/images/coats_of_arms/gn.svg',
},
startOfWeek: 'monday',
capitalInfo: { latlng: [9.5, -13.7] },
},
{
name: {
common: 'Vanuatu',
official: 'Republic of Vanuatu',
nativeName: {
bis: { official: 'Ripablik blong Vanuatu', common: 'Vanuatu' },
eng: { official: 'Republic of Vanuatu', common: 'Vanuatu' },
fra: { official: 'République de Vanuatu', common: 'Vanuatu' },
},
},
tld: ['.vu'],
cca2: 'VU',
ccn3: '548',
cca3: 'VUT',
cioc: 'VAN',
independent: true,
status: 'officially-assigned',
unMember: true,
currencies: { VUV: { name: 'Vanuatu vatu', symbol: 'Vt' } },
idd: { root: '+6', suffixes: ['78'] },
capital: ['Port Vila'],
altSpellings: [
'VU',
'Republic of Vanuatu',
'Ripablik blong Vanuatu',
'République de Vanuatu',
],
region: 'Oceania',
subregion: 'Melanesia',
languages: { bis: 'Bislama', eng: 'English', fra: 'French' },
translations: {
ara: { official: 'جمهورية فانواتو', common: 'فانواتو' },
bre: { official: 'Republik Vanuatu', common: 'Vanuatu' },
ces: { official: 'Republika Vanuatu', common: 'Vanuatu' },
cym: { official: 'Republic of Vanuatu', common: 'Vanuatu' },
deu: { official: 'Vanuatu', common: 'Vanuatu' },
est: { official: 'Vanuatu Vabariik', common: 'Vanuatu' },
fin: { official: 'Vanuatun tasavalta', common: 'Vanuatu' },
fra: { official: 'République de Vanuatu', common: 'Vanuatu' },
hrv: { official: 'Republika Vanuatu', common: 'Vanuatu' },
hun: { official: 'Vanuatui Köztársaság', common: 'Vanuatu' },
ita: { official: 'Repubblica di Vanuatu', common: 'Vanuatu' },
jpn: { official: 'バヌアツ共和国', common: 'バヌアツ' },
kor: { official: '바누아투 공화국', common: '바누아투' },
nld: { official: 'Republiek Vanuatu', common: 'Vanuatu' },
per: { official: 'جمهوری وانواتو', common: 'وانواتو' },
pol: { official: 'Republika Vanuatu', common: 'Vanuatu' },
por: { official: 'República de Vanuatu', common: 'Vanuatu' },
rus: { official: 'Республика Вануату', common: 'Вануату' },
slk: { official: 'Vanuatská republika', common: 'Vanuatu' },
spa: { official: 'República de Vanuatu', common: 'Vanuatu' },
srp: { official: 'Република Вануату', common: 'Вануату' },
swe: { official: 'Republiken Vanuatu', common: 'Vanuatu' },
tur: { official: 'Vanuatu Cumhuriyeti', common: 'Vanuatu' },
urd: { official: 'جمہوریہ وانواتو', common: 'وانواتو' },
zho: { official: '瓦努阿图共和国', common: '瓦努阿图' },
},
latlng: [-16.0, 167.0],
landlocked: false,
area: 12189.0,
demonyms: {
eng: { f: 'Ni-Vanuatu', m: 'Ni-Vanuatu' },
fra: { f: 'Vanuatuane', m: 'Vanuatuan' },
},
flag: '\uD83C\uDDFB\uD83C\uDDFA',
maps: {
googleMaps: 'https://goo.gl/maps/hwAjehcT7VfvP5zJ8',
openStreetMaps: 'https://www.openstreetmap.org/relation/2177246',
},
population: 307150,
gini: { 2010: 37.6 },
fifa: 'VAN',
car: { signs: ['VU'], side: 'right' },
timezones: ['UTC+11:00'],
continents: ['Oceania'],
flags: {
png: 'https://flagcdn.com/w320/vu.png',
svg: 'https://flagcdn.com/vu.svg',
alt: "The flag of Vanuatu is composed of two equal horizontal bands of red and green, with a black isosceles triangle superimposed on the hoist side of the field. This triangle has its base on the hoist end, spans about two-fifth the width of the field and is enclosed on its sides by the arms of a thin black-edged yellow horizontally oriented Y-shaped band which extends along the boundary of the red and green bands to the fly end of the field. A yellow boar's tusk encircling two yellow crossed namele leaves is centered in the triangle.",
},
coatOfArms: {
png: 'https://mainfacts.com/media/images/coats_of_arms/vu.png',
svg: 'https://mainfacts.com/media/images/coats_of_arms/vu.svg',
},
startOfWeek: 'monday',
capitalInfo: { latlng: [-17.73, 168.32] },
},
{
name: {
common: 'Samoa',
official: 'Independent State of Samoa',
nativeName: {
eng: { official: 'Independent State of Samoa', common: 'Samoa' },
smo: { official: 'Malo Saʻoloto Tutoʻatasi o Sāmoa', common: 'Sāmoa' },
},
},
tld: ['.ws'],
cca2: 'WS',
ccn3: '882',
cca3: 'WSM',
cioc: 'SAM',
independent: true,
status: 'officially-assigned',
unMember: true,
currencies: { WST: { name: 'Samoan tālā', symbol: 'T' } },
idd: { root: '+6', suffixes: ['85'] },
capital: ['Apia'],
altSpellings: [
'WS',
'Independent State of Samoa',
'Malo Saʻoloto Tutoʻatasi o Sāmoa',
],
region: 'Oceania',
subregion: 'Polynesia',
languages: { eng: 'English', smo: 'Samoan' },
translations: {
ara: { official: 'دولة ساموا المستقلة', common: 'ساموا' },
bre: { official: "Stad Dizalc'h Samoa", common: 'Samoa' },
ces: { official: 'Nezávislý stát Samoa', common: 'Samoa' },
cym: { official: 'Independent State of Samoa', common: 'Samoa' },
deu: { official: 'Unabhängige Staat Samoa', common: 'Samoa' },
est: { official: 'Samoa Iseseisvusriik', common: 'Samoa' },
fin: { official: 'Samoan itsenäinen valtio', common: 'Samoa' },
fra: { official: 'Samoa', common: 'Samoa' },
hrv: { official: 'Nezavisna Država Samoa', common: 'Samoa' },
hun: { official: 'Szamoai Független Állam', common: 'Szamoa' },
ita: { official: 'Stato indipendente di Samoa', common: 'Samoa' },
jpn: { official: 'サモア独立国', common: 'サモア' },
kor: { official: '사모아 독립국', common: '사모아' },
nld: { official: 'Onafhankelijke Staat Samoa', common: 'Samoa' },
per: { official: 'ایالت مستقل ساموآ', common: 'ساموآ' },
pol: { official: 'Niezależne Państwo Samoa', common: 'Samoa' },
por: { official: 'Estado Independente de Samoa', common: 'Samoa' },
rus: { official: 'Независимое Государство Самоа', common: 'Самоа' },
slk: { official: 'Nezávislý štátSamoa', common: 'Samoa' },
spa: { official: 'Estado Independiente de Samoa', common: 'Samoa' },
srp: { official: 'Независна Држава Самоа', common: 'Самоа' },
swe: { official: 'Självständiga staten Samoa', common: 'Samoa' },
tur: {
official: 'Bağımsız Samoa Devleti',
common: 'Bağımsız Samoa Devleti',
},
urd: { official: 'آزاد سلطنتِ ساموا', common: 'سامووا' },
zho: { official: '萨摩亚独立国', common: '萨摩亚' },
},
latlng: [-13.58333333, -172.33333333],
landlocked: false,
area: 2842.0,
demonyms: {
eng: { f: 'Samoan', m: 'Samoan' },
fra: { f: 'Samoane', m: 'Samoan' },
},
flag: '\uD83C\uDDFC\uD83C\uDDF8',
maps: {
googleMaps: 'https://goo.gl/maps/CFC9fEFP9cfkYUBF9',
openStreetMaps: 'https://www.openstreetmap.org/relation/1872673',
},
population: 198410,
gini: { 2013: 38.7 },
fifa: 'SAM',
car: { signs: ['WS'], side: 'left' },
timezones: ['UTC+13:00'],
continents: ['Oceania'],
flags: {
png: 'https://flagcdn.com/w320/ws.png',
svg: 'https://flagcdn.com/ws.svg',
alt: 'The flag of Samoa has a red field. A blue rectangle, bearing a representation of the Southern Cross made up of five large and one smaller five-pointed white stars, is superimposed in the canton.',
},
coatOfArms: {
png: 'https://mainfacts.com/media/images/coats_of_arms/ws.png',
svg: 'https://mainfacts.com/media/images/coats_of_arms/ws.svg',
},
startOfWeek: 'monday',
capitalInfo: { latlng: [-13.82, -171.77] },
},
{
name: {
common: 'France',
official: 'French Republic',
nativeName: {
fra: { official: 'République française', common: 'France' },
},
},
tld: ['.fr'],
cca2: 'FR',
ccn3: '250',
cca3: 'FRA',
cioc: 'FRA',
independent: true,
status: 'officially-assigned',
unMember: true,
currencies: { EUR: { name: 'Euro', symbol: '€' } },
idd: { root: '+3', suffixes: ['3'] },
capital: ['Paris'],
altSpellings: ['FR', 'French Republic', 'République française'],
region: 'Europe',
subregion: 'Western Europe',
languages: { fra: 'French' },
translations: {
ara: { official: 'الجمهورية الفرنسية', common: 'فرنسا' },
bre: { official: 'Republik Frañs', common: 'Frañs' },
ces: { official: 'Francouzská republika', common: 'Francie' },
cym: { official: 'French Republic', common: 'France' },
deu: { official: 'Französische Republik', common: 'Frankreich' },
est: { official: 'Prantsuse Vabariik', common: 'Prantsusmaa' },
fin: { official: 'Ranskan tasavalta', common: 'Ranska' },
fra: { official: 'République française', common: 'France' },
hrv: { official: 'Francuska Republika', common: 'Francuska' },
hun: { official: 'Francia Köztársaság', common: 'Franciaország' },
ita: { official: 'Repubblica francese', common: 'Francia' },
jpn: { official: 'フランス共和国', common: 'フランス' },
kor: { official: '프랑스 공화국', common: '프랑스' },
nld: { official: 'Franse Republiek', common: 'Frankrijk' },
per: { official: 'جمهوری فرانسه', common: 'فرانسه' },
pol: { official: 'Republika Francuska', common: 'Francja' },
por: { official: 'República Francesa', common: 'França' },
rus: { official: 'Французская Республика', common: 'Франция' },
slk: { official: 'Francúzska republika', common: 'Francúzsko' },
spa: { official: 'República francés', common: 'Francia' },
srp: { official: 'Француска Република', common: 'Француска' },
swe: { official: 'Republiken Frankrike', common: 'Frankrike' },
tur: { official: 'Fransa Cumhuriyeti', common: 'Fransa' },
urd: { official: 'جمہوریہ فرانس', common: 'فرانس' },
zho: { official: '法兰西共和国', common: '法国' },
},
latlng: [46.0, 2.0],
landlocked: false,
borders: ['AND', 'BEL', 'DEU', 'ITA', 'LUX', 'MCO', 'ESP', 'CHE'],
area: 551695.0,
demonyms: {
eng: { f: 'French', m: 'French' },
fra: { f: 'Française', m: 'Français' },
},
flag: '\uD83C\uDDEB\uD83C\uDDF7',
maps: {
googleMaps: 'https://goo.gl/maps/g7QxxSFsWyTPKuzd7',
openStreetMaps: 'https://www.openstreetmap.org/relation/1403916',
},
population: 67391582,
gini: { 2018: 32.4 },
fifa: 'FRA',
car: { signs: ['F'], side: 'right' },
timezones: [
'UTC-10:00',
'UTC-09:30',
'UTC-09:00',
'UTC-08:00',
'UTC-04:00',
'UTC-03:00',
'UTC+01:00',
'UTC+02:00',
'UTC+03:00',
'UTC+04:00',
'UTC+05:00',
'UTC+10:00',
'UTC+11:00',
'UTC+12:00',
],
continents: ['Europe'],
flags: {
png: 'https://flagcdn.com/w320/fr.png',
svg: 'https://flagcdn.com/fr.svg',
alt: 'The flag of France is composed of three equal vertical bands of blue, white and red.',
},
coatOfArms: {
png: 'https://mainfacts.com/media/images/coats_of_arms/fr.png',
svg: 'https://mainfacts.com/media/images/coats_of_arms/fr.svg',
},
startOfWeek: 'monday',
capitalInfo: { latlng: [48.87, 2.33] },
postalCode: { format: '#####', regex: '^(\\d{5})$' },
},
{
name: {
common: 'Andorra',
official: 'Principality of Andorra',
nativeName: {
cat: { official: "Principat d'Andorra", common: 'Andorra' },
},
},
tld: ['.ad'],
cca2: 'AD',
ccn3: '020',
cca3: 'AND',
cioc: 'AND',
independent: true,
status: 'officially-assigned',
unMember: true,
currencies: { EUR: { name: 'Euro', symbol: '€' } },
idd: { root: '+3', suffixes: ['76'] },
capital: ['Andorra la Vella'],
altSpellings: ['AD', 'Principality of Andorra', "Principat d'Andorra"],
region: 'Europe',
subregion: 'Southern Europe',
languages: { cat: 'Catalan' },
translations: {
ara: { official: 'إمارة أندورا', common: 'أندورا' },
bre: { official: 'Priñselezh Andorra', common: 'Andorra' },
ces: { official: 'Andorrské knížectví', common: 'Andorra' },
cym: { official: 'Tywysogaeth Andorra', common: 'Andorra' },
deu: { official: 'Fürstentum Andorra', common: 'Andorra' },
est: { official: 'Andorra Vürstiriik', common: 'Andorra' },
fin: { official: 'Andorran ruhtinaskunta', common: 'Andorra' },
fra: { official: "Principauté d'Andorre", common: 'Andorre' },
hrv: { official: 'Kneževina Andora', common: 'Andora' },
hun: { official: 'Andorra', common: 'Andorra' },
ita: { official: 'Principato di Andorra', common: 'Andorra' },
jpn: { official: 'アンドラ公国', common: 'アンドラ' },
kor: { official: '안도라 공국', common: '안도라' },
nld: { official: 'Prinsdom Andorra', common: 'Andorra' },
per: { official: 'شاهزادهنشین آندورا', common: 'آندورا' },
pol: { official: 'Księstwo Andory', common: 'Andora' },
por: { official: 'Principado de Andorra', common: 'Andorra' },
rus: { official: 'Княжество Андорра', common: 'Андорра' },
slk: { official: 'Andorrské kniežatstvo', common: 'Andorra' },
spa: { official: 'Principado de Andorra', common: 'Andorra' },
srp: { official: 'Кнежевина Андора', common: 'Андора' },
swe: { official: 'Furstendömet Andorra', common: 'Andorra' },
tur: { official: 'Andorra Prensliği', common: 'Andorra' },
urd: { official: 'اماراتِ انڈورا', common: 'انڈورا' },
zho: { official: '安道尔公国', common: '安道尔' },
},
latlng: [42.5, 1.5],
landlocked: true,
borders: ['FRA', 'ESP'],
area: 468.0,
demonyms: {
eng: { f: 'Andorran', m: 'Andorran' },
fra: { f: 'Andorrane', m: 'Andorran' },
},
flag: '\uD83C\uDDE6\uD83C\uDDE9',
maps: {
googleMaps: 'https://goo.gl/maps/JqAnacWE2qEznKgw7',
openStreetMaps: 'https://www.openstreetmap.org/relation/9407',
},
population: 77265,
fifa: 'AND',
car: { signs: ['AND'], side: 'right' },
timezones: ['UTC+01:00'],
continents: ['Europe'],
flags: {
png: 'https://flagcdn.com/w320/ad.png',
svg: 'https://flagcdn.com/ad.svg',
alt: 'The flag of Andorra features three equal vertical bands of blue, yellow and red, with the coat of arms of Andorra centered in the yellow band.',
},
coatOfArms: {
png: 'https://mainfacts.com/media/images/coats_of_arms/ad.png',
svg: 'https://mainfacts.com/media/images/coats_of_arms/ad.svg',
},
startOfWeek: 'monday',
capitalInfo: { latlng: [42.5, 1.52] },
postalCode: { format: 'AD###', regex: '^(?:AD)*(\\d{3})$' },
},
{
name: {
common: 'Azerbaijan',
official: 'Republic of Azerbaijan',
nativeName: {
aze: { official: 'Azərbaycan Respublikası', common: 'Azərbaycan' },
rus: { official: 'Азербайджанская Республика', common: 'Азербайджан' },
},
},
tld: ['.az'],
cca2: 'AZ',
ccn3: '031',
cca3: 'AZE',
cioc: 'AZE',
independent: true,
status: 'officially-assigned',
unMember: true,
currencies: { AZN: { name: 'Azerbaijani manat', symbol: '₼' } },
idd: { root: '+9', suffixes: ['94'] },
capital: ['Baku'],
altSpellings: ['AZ', 'Republic of Azerbaijan', 'Azərbaycan Respublikası'],
region: 'Asia',
subregion: 'Western Asia',
languages: { aze: 'Azerbaijani', rus: 'Russian' },
translations: {
ara: { official: 'جمهورية أذربيجان', common: 'أذربيجان' },
bre: { official: 'Republik Azerbaidjan', common: 'Azerbaidjan' },
ces: { official: 'Ázerbájdžánská republika', common: 'Ázerbájdžán' },
cym: { official: 'Gweriniaeth Aserbaijan', common: 'Aserbaijan' },
deu: { official: 'Republik Aserbaidschan', common: 'Aserbaidschan' },
est: { official: 'Aserbaidžaani Vabariik', common: 'Aserbaidžaan' },
fin: { official: 'Azerbaidzanin tasavalta', common: 'Azerbaidzan' },
fra: { official: "République d'Azerbaïdjan", common: 'Azerbaïdjan' },
hrv: { official: 'Republika Azerbajdžan', common: 'Azerbajdžan' },
hun: { official: 'Azerbajdzsán', common: 'Azerbajdzsán' },
ita: { official: "Repubblica dell'Azerbaigian", common: 'Azerbaijan' },
jpn: { official: 'アゼルバイジャン共和国', common: 'アゼルバイジャン' },
kor: { official: '아제르바이잔 공화국', common: '아제르바이잔' },
nld: { official: 'Republiek Azerbeidzjan', common: 'Azerbeidzjan' },
per: { official: 'جمهوری آذربایجان', common: 'جمهوری آذربایجان' },
pol: { official: 'Republika Azerbejdżanu', common: 'Azerbejdżan' },
por: { official: 'República do Azerbaijão', common: 'Azerbeijão' },
rus: { official: 'Азербайджанская Республика', common: 'Азербайджан' },
slk: { official: 'Azerbajdžanská republika', common: 'AzerbajLJan' },
spa: { official: 'República de Azerbaiyán', common: 'Azerbaiyán' },
srp: { official: 'Азербејџанска Република', common: 'Азербејџан' },
swe: { official: 'Republiken Azerbajdzjan', common: 'Azerbajdzjan' },
tur: { official: 'Azerbaycan Cumhuriyeti', common: 'Azerbaycan' },
urd: { official: 'جمہوریہ آذربائیجان', common: 'آذربائیجان' },
zho: { official: '阿塞拜疆共和国', common: '阿塞拜疆' },
},
latlng: [40.5, 47.5],
landlocked: true,
borders: ['ARM', 'GEO', 'IRN', 'RUS', 'TUR'],
area: 86600.0,
demonyms: {
eng: { f: 'Azerbaijani', m: 'Azerbaijani' },
fra: { f: 'Azerbaïdjanaise', m: 'Azerbaïdjanais' },
},
flag: '\uD83C\uDDE6\uD83C\uDDFF',
maps: {
googleMaps: 'https://goo.gl/maps/az3Zz7ar2aoB9AUc6',
openStreetMaps: 'https://www.openstreetmap.org/relation/364110',
},
population: 10110116,
gini: { 2005: 26.6 },
fifa: 'AZE',
car: { signs: ['AZ'], side: 'right' },
timezones: ['UTC+04:00'],
continents: ['Asia'],
flags: {
png: 'https://flagcdn.com/w320/az.png',
svg: 'https://flagcdn.com/az.svg',
alt: 'The flag of Azerbaijan features three equal horizontal bands of blue, red and green, with a white fly-side facing crescent and eight-pointed star centered in the red band.',
},
coatOfArms: {
png: 'https://mainfacts.com/media/images/coats_of_arms/az.png',
svg: 'https://mainfacts.com/media/images/coats_of_arms/az.svg',
},
startOfWeek: 'monday',
capitalInfo: { latlng: [40.38, 49.87] },
postalCode: { format: 'AZ ####', regex: '^(?:AZ)*(\\d{4})$' },
},
{
name: {
common: 'Maldives',
official: 'Republic of the Maldives',
nativeName: {
div: {
official: 'ދިވެހިރާއްޖޭގެ ޖުމްހޫރިއްޔާ',
common: 'ދިވެހިރާއްޖޭގެ',
},
},
},
tld: ['.mv'],
cca2: 'MV',
ccn3: '462',
cca3: 'MDV',
cioc: 'MDV',
independent: true,
status: 'officially-assigned',
unMember: true,
currencies: { MVR: { name: 'Maldivian rufiyaa', symbol: '.ރ' } },
idd: { root: '+9', suffixes: ['60'] },
capital: ['Malé'],
altSpellings: [
'MV',
'Maldive Islands',
'Republic of the Maldives',
'Dhivehi Raajjeyge Jumhooriyya',
],
region: 'Asia',
subregion: 'Southern Asia',
languages: { div: 'Maldivian' },
translations: {
ara: { official: 'جمهورية المالديف', common: 'المالديف' },
bre: { official: 'Republik Maldivez', common: 'Maldivez' },
ces: { official: 'Maledivská republika', common: 'Maledivy' },
cym: { official: 'Republic of the Maldives', common: 'Maldives' },
deu: { official: 'Republik Malediven', common: 'Malediven' },
est: { official: 'Maldiivi Vabariik', common: 'Maldiivid' },
fin: { official: 'Malediivien tasavalta', common: 'Malediivit' },
fra: { official: 'République des Maldives', common: 'Maldives' },
hrv: { official: 'Republika Maldivi', common: 'Maldivi' },
hun: { official: 'Maldív-szigetek', common: 'Maldív-szigetek' },
ita: { official: 'Repubblica delle Maldive', common: 'Maldive' },
jpn: { official: 'モルディブ共和国', common: 'モルディブ' },
kor: { official: '몰디브 공화국', common: '몰디브' },
nld: { official: 'Republiek van de Malediven', common: 'Maldiven' },
per: { official: 'جمهوری مالدیو', common: 'مالدیو' },
pol: { official: 'Republika Malediwów', common: 'Malediwy' },
por: { official: 'República das Maldivas', common: 'Maldivas' },
rus: { official: 'Республика Мальдивы', common: 'Мальдивы' },
slk: { official: 'Maldivská republika', common: 'Maldivy' },
spa: { official: 'República de las Maldivas', common: 'Maldivas' },
srp: { official: 'Малдивска Република', common: 'Малдиви' },
swe: { official: 'Republiken Maldiverna', common: 'Maldiverna' },
tur: { official: 'Maldivler Cumhuriyeti', common: 'Maldivler' },
urd: { official: 'جمہوریہ مالدیپ', common: 'مالدیپ' },
zho: { official: '马尔代夫共和国', common: '马尔代夫' },
},
latlng: [3.25, 73.0],
landlocked: false,
area: 300.0,
demonyms: {
eng: { f: 'Maldivan', m: 'Maldivan' },
fra: { f: 'Maldivienne', m: 'Maldivien' },
},
flag: '\uD83C\uDDF2\uD83C\uDDFB',
maps: {
googleMaps: 'https://goo.gl/maps/MNAWGq9vEdbZ9vUV7',
openStreetMaps: 'https://www.openstreetmap.org/relation/536773',
},
population: 540542,
gini: { 2016: 31.3 },
fifa: 'MDV',
car: { signs: ['MV'], side: 'left' },
timezones: ['UTC+05:00'],
continents: ['Asia'],
flags: {
png: 'https://flagcdn.com/w320/mv.png',
svg: 'https://flagcdn.com/mv.svg',
alt: 'The flag of Maldives has a red field, at the center of which is a large green rectangle bearing a fly-side facing white crescent.',
},
coatOfArms: {
png: 'https://mainfacts.com/media/images/coats_of_arms/mv.png',
svg: 'https://mainfacts.com/media/images/coats_of_arms/mv.svg',
},
startOfWeek: 'sunday',
capitalInfo: { latlng: [4.17, 73.51] },
postalCode: { format: '#####', regex: '^(\\d{5})$' },
},
{
name: {
common: 'French Polynesia',
official: 'French Polynesia',
nativeName: {
fra: { official: 'Polynésie française', common: 'Polynésie française' },
},
},
tld: ['.pf'],
cca2: 'PF',
ccn3: '258',
cca3: 'PYF',
independent: false,
status: 'officially-assigned',
unMember: false,
currencies: { XPF: { name: 'CFP franc', symbol: '₣' } },
idd: { root: '+6', suffixes: ['89'] },
capital: ['Papeetē'],
altSpellings: [
'PF',
'Polynésie française',
'French Polynesia',
'Pōrīnetia Farāni',
],
region: 'Oceania',
subregion: 'Polynesia',
languages: { fra: 'French' },
translations: {
ara: { official: 'بولينزيا الفرنسية', common: 'بولينزيا الفرنسية' },
bre: { official: "Polinezia C'hall", common: "Polinezia C'hall" },
ces: {
official: 'Francouzská Polynésie',
common: 'Francouzská Polynésie',
},
cym: { official: 'French Polynesia', common: 'French Polynesia' },
deu: {
official: 'Französisch-Polynesien',
common: 'Französisch-Polynesien',
},
est: { official: 'Prantsuse Polüneesia', common: 'Prantsuse Polüneesia' },
fin: { official: 'Ranskan Polynesia', common: 'Ranskan Polynesia' },
fra: { official: 'Polynésie française', common: 'Polynésie française' },
hrv: { official: 'Francuska Polinezija', common: 'Francuska Polinezija' },
hun: { official: 'Francia Polinézia', common: 'Francia Polinézia' },
ita: { official: 'Polinesia Francese', common: 'Polinesia Francese' },
jpn: { official: 'フランス領ポリネシア', common: 'フランス領ポリネシア' },
kor: { official: '프랑스령 폴리네시아', common: '프랑스령 폴리네시아' },
nld: { official: 'Frans-Polynesië', common: 'Frans-Polynesië' },
per: { official: 'پُلینِزی فرانسه', common: 'پُلینِزی فرانسه' },
pol: { official: 'Polinezja Francuska', common: 'Polinezja Francuska' },
por: { official: 'Polinésia Francesa', common: 'Polinésia Francesa' },
rus: {