forked from gocodebox/lifterlms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstates.php
5372 lines (5370 loc) · 240 KB
/
states.php
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
<?php
/**
* States
*
* Returns a multi-dimensional array of countries and country states (or provinces / regions) and their respective codes.
*
* Countries with an empty array have no states.
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* The data contained within this file is derived from various open-source *
* projects and libraries. *
* *
* See the README.md file in this directory for credits and more. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Note to contributors: *
* *
* The data contained within this file is automatically generated. Do not *
* modify or submit pull requests on this file directly. If you've located *
* an issue with any of the data contained within this file please open a *
* new issue at https://github.com/gocodebox/lifterlms/issues/new/choose. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* @package LifterLMS/i18n
*
* @see llms_get_states()
*
* @since 5.0.0
* @version 7.4.0
*/
defined( 'ABSPATH' ) || exit;
return array(
'AD' => array(
'07' => __( 'Andorra la Vella', 'lifterlms' ),
'02' => __( 'Canillo', 'lifterlms' ),
'03' => __( 'Encamp', 'lifterlms' ),
'08' => __( 'Escaldes-Engordany', 'lifterlms' ),
'04' => __( 'La Massana', 'lifterlms' ),
'05' => __( 'Ordino', 'lifterlms' ),
'06' => __( 'Sant Julià de Lòria', 'lifterlms' ),
),
'AE' => array(
'AZ' => __( 'Abu Dhabi Emirate', 'lifterlms' ),
'AJ' => __( 'Ajman Emirate', 'lifterlms' ),
'DU' => __( 'Dubai', 'lifterlms' ),
'FU' => __( 'Fujairah', 'lifterlms' ),
'RK' => __( 'Ras al-Khaimah', 'lifterlms' ),
'SH' => __( 'Sharjah Emirate', 'lifterlms' ),
'UQ' => __( 'Umm al-Quwain', 'lifterlms' ),
),
'AF' => array(
'BDS' => __( 'Badakhshan', 'lifterlms' ),
'BDG' => __( 'Badghis', 'lifterlms' ),
'BGL' => __( 'Baghlan', 'lifterlms' ),
'BAL' => __( 'Balkh', 'lifterlms' ),
'BAM' => __( 'Bamyan', 'lifterlms' ),
'DAY' => __( 'Daykundi', 'lifterlms' ),
'FRA' => __( 'Farah', 'lifterlms' ),
'FYB' => __( 'Faryab', 'lifterlms' ),
'GHA' => __( 'Ghazni', 'lifterlms' ),
'GHO' => __( 'Ghōr', 'lifterlms' ),
'HEL' => __( 'Helmand', 'lifterlms' ),
'HER' => __( 'Herat', 'lifterlms' ),
'JOW' => __( 'Jowzjan', 'lifterlms' ),
'KAB' => __( 'Kabul', 'lifterlms' ),
'KAN' => __( 'Kandahar', 'lifterlms' ),
'KAP' => __( 'Kapisa', 'lifterlms' ),
'KHO' => __( 'Khost', 'lifterlms' ),
'KNR' => __( 'Kunar', 'lifterlms' ),
'KDZ' => __( 'Kunduz Province', 'lifterlms' ),
'LAG' => __( 'Laghman', 'lifterlms' ),
'LOG' => __( 'Logar', 'lifterlms' ),
'NAN' => __( 'Nangarhar', 'lifterlms' ),
'NIM' => __( 'Nimruz', 'lifterlms' ),
'NUR' => __( 'Nuristan', 'lifterlms' ),
'PIA' => __( 'Paktia', 'lifterlms' ),
'PKA' => __( 'Paktika', 'lifterlms' ),
'PAN' => __( 'Panjshir', 'lifterlms' ),
'PAR' => __( 'Parwan', 'lifterlms' ),
'SAM' => __( 'Samangan', 'lifterlms' ),
'SAR' => __( 'Sar-e Pol', 'lifterlms' ),
'TAK' => __( 'Takhar', 'lifterlms' ),
'URU' => __( 'Urozgan', 'lifterlms' ),
'ZAB' => __( 'Zabul', 'lifterlms' ),
),
'AG' => array(
'10' => __( 'Barbuda', 'lifterlms' ),
'11' => __( 'Redonda', 'lifterlms' ),
'03' => __( 'Saint George Parish', 'lifterlms' ),
'04' => __( 'Saint John Parish', 'lifterlms' ),
'05' => __( 'Saint Mary Parish', 'lifterlms' ),
'06' => __( 'Saint Paul Parish', 'lifterlms' ),
'07' => __( 'Saint Peter Parish', 'lifterlms' ),
'08' => __( 'Saint Philip Parish', 'lifterlms' ),
),
'AI' => array(),
'AL' => array(
'10' => __( 'Shkodër County', 'lifterlms' ),
'11' => __( 'Tirana County', 'lifterlms' ),
'12' => __( 'Vlorë County', 'lifterlms' ),
'01' => __( 'Berat County', 'lifterlms' ),
'BR' => __( 'Berat District', 'lifterlms' ),
'BU' => __( 'Bulqizë District', 'lifterlms' ),
'DL' => __( 'Delvinë District', 'lifterlms' ),
'DV' => __( 'Devoll District', 'lifterlms' ),
'09' => __( 'Dibër County', 'lifterlms' ),
'DI' => __( 'Dibër District', 'lifterlms' ),
'02' => __( 'Durrës County', 'lifterlms' ),
'DR' => __( 'Durrës District', 'lifterlms' ),
'03' => __( 'Elbasan County', 'lifterlms' ),
'04' => __( 'Fier County', 'lifterlms' ),
'FR' => __( 'Fier District', 'lifterlms' ),
'05' => __( 'Gjirokastër County', 'lifterlms' ),
'GJ' => __( 'Gjirokastër District', 'lifterlms' ),
'GR' => __( 'Gramsh District', 'lifterlms' ),
'HA' => __( 'Has District', 'lifterlms' ),
'KA' => __( 'Kavajë District', 'lifterlms' ),
'ER' => __( 'Kolonjë District', 'lifterlms' ),
'06' => __( 'Korçë County', 'lifterlms' ),
'KO' => __( 'Korçë District', 'lifterlms' ),
'KR' => __( 'Krujë District', 'lifterlms' ),
'07' => __( 'Kukës County', 'lifterlms' ),
'KU' => __( 'Kukës District', 'lifterlms' ),
'KB' => __( 'Kurbin District', 'lifterlms' ),
'KC' => __( 'Kuçovë District', 'lifterlms' ),
'08' => __( 'Lezhë County', 'lifterlms' ),
'LE' => __( 'Lezhë District', 'lifterlms' ),
'LB' => __( 'Librazhd District', 'lifterlms' ),
'LU' => __( 'Lushnjë District', 'lifterlms' ),
'MK' => __( 'Mallakastër District', 'lifterlms' ),
'MM' => __( 'Malësi e Madhe District', 'lifterlms' ),
'MT' => __( 'Mat District', 'lifterlms' ),
'MR' => __( 'Mirditë District', 'lifterlms' ),
'PQ' => __( 'Peqin District', 'lifterlms' ),
'PG' => __( 'Pogradec District', 'lifterlms' ),
'PU' => __( 'Pukë District', 'lifterlms' ),
'PR' => __( 'Përmet District', 'lifterlms' ),
'SR' => __( 'Sarandë District', 'lifterlms' ),
'SH' => __( 'Shkodër District', 'lifterlms' ),
'SK' => __( 'Skrapar District', 'lifterlms' ),
'TE' => __( 'Tepelenë District', 'lifterlms' ),
'TR' => __( 'Tirana District', 'lifterlms' ),
'TP' => __( 'Tropojë District', 'lifterlms' ),
'VL' => __( 'Vlorë District', 'lifterlms' ),
),
'AM' => array(
'AG' => __( 'Aragatsotn Region', 'lifterlms' ),
'AR' => __( 'Ararat Province', 'lifterlms' ),
'AV' => __( 'Armavir Region', 'lifterlms' ),
'GR' => __( 'Gegharkunik Province', 'lifterlms' ),
'KT' => __( 'Kotayk Region', 'lifterlms' ),
'LO' => __( 'Lori Region', 'lifterlms' ),
'SH' => __( 'Shirak Region', 'lifterlms' ),
'SU' => __( 'Syunik Province', 'lifterlms' ),
'TV' => __( 'Tavush Region', 'lifterlms' ),
'VD' => __( 'Vayots Dzor Region', 'lifterlms' ),
'ER' => __( 'Yerevan', 'lifterlms' ),
),
'AO' => array(
'BGO' => __( 'Bengo Province', 'lifterlms' ),
'BGU' => __( 'Benguela Province', 'lifterlms' ),
'BIE' => __( 'Bié Province', 'lifterlms' ),
'CAB' => __( 'Cabinda Province', 'lifterlms' ),
'CCU' => __( 'Cuando Cubango Province', 'lifterlms' ),
'CNO' => __( 'Cuanza Norte Province', 'lifterlms' ),
'CUS' => __( 'Cuanza Sul', 'lifterlms' ),
'CNN' => __( 'Cunene Province', 'lifterlms' ),
'HUA' => __( 'Huambo Province', 'lifterlms' ),
'HUI' => __( 'Huíla Province', 'lifterlms' ),
'LUA' => __( 'Luanda Province', 'lifterlms' ),
'LNO' => __( 'Lunda Norte Province', 'lifterlms' ),
'LSU' => __( 'Lunda Sul Province', 'lifterlms' ),
'MAL' => __( 'Malanje Province', 'lifterlms' ),
'MOX' => __( 'Moxico Province', 'lifterlms' ),
'UIG' => __( 'Uíge Province', 'lifterlms' ),
'ZAI' => __( 'Zaire Province', 'lifterlms' ),
),
'AQ' => array(),
'AR' => array(
'C' => __( 'Autonomous City Of Buenos Aires', 'lifterlms' ),
'B' => __( 'Buenos Aires Province', 'lifterlms' ),
'K' => __( 'Catamarca Province', 'lifterlms' ),
'H' => __( 'Chaco Province', 'lifterlms' ),
'U' => __( 'Chubut Province', 'lifterlms' ),
'W' => __( 'Corrientes', 'lifterlms' ),
'X' => __( 'Córdoba Province', 'lifterlms' ),
'E' => __( 'Entre Ríos Province', 'lifterlms' ),
'P' => __( 'Formosa Province', 'lifterlms' ),
'Y' => __( 'Jujuy Province', 'lifterlms' ),
'L' => __( 'La Pampa', 'lifterlms' ),
'F' => __( 'La Rioja Province', 'lifterlms' ),
'M' => __( 'Mendoza', 'lifterlms' ),
'N' => __( 'Misiones Province', 'lifterlms' ),
'Q' => __( 'Neuquén Province', 'lifterlms' ),
'R' => __( 'Río Negro Province', 'lifterlms' ),
'A' => __( 'Salta Province', 'lifterlms' ),
'J' => __( 'San Juan Province', 'lifterlms' ),
'D' => __( 'San Luis Province', 'lifterlms' ),
'Z' => __( 'Santa Cruz Province', 'lifterlms' ),
'S' => __( 'Santa Fe Province', 'lifterlms' ),
'G' => __( 'Santiago del Estero Province', 'lifterlms' ),
'V' => __( 'Tierra del Fuego Province', 'lifterlms' ),
'T' => __( 'Tucumán Province', 'lifterlms' ),
),
'AS' => array(),
'AT' => array(
'1' => __( 'Burgenland', 'lifterlms' ),
'2' => __( 'Carinthia', 'lifterlms' ),
'3' => __( 'Lower Austria', 'lifterlms' ),
'4' => __( 'Upper Austria', 'lifterlms' ),
'5' => __( 'Salzburg', 'lifterlms' ),
'6' => __( 'Styria', 'lifterlms' ),
'7' => __( 'Tyrol', 'lifterlms' ),
'8' => __( 'Vorarlberg', 'lifterlms' ),
'9' => __( 'Vienna', 'lifterlms' ),
),
'AU' => array(
'ACT' => __( 'Australian Capital Territory', 'lifterlms' ),
'NSW' => __( 'New South Wales', 'lifterlms' ),
'NT' => __( 'Northern Territory', 'lifterlms' ),
'QLD' => __( 'Queensland', 'lifterlms' ),
'SA' => __( 'South Australia', 'lifterlms' ),
'TAS' => __( 'Tasmania', 'lifterlms' ),
'VIC' => __( 'Victoria', 'lifterlms' ),
'WA' => __( 'Western Australia', 'lifterlms' ),
),
'AW' => array(),
'AX' => array(),
'AZ' => array(
'ABS' => __( 'Absheron District', 'lifterlms' ),
'AGM' => __( 'Agdam District', 'lifterlms' ),
'AGS' => __( 'Agdash District', 'lifterlms' ),
'AGC' => __( 'Aghjabadi District', 'lifterlms' ),
'AGA' => __( 'Agstafa District', 'lifterlms' ),
'AGU' => __( 'Agsu District', 'lifterlms' ),
'AST' => __( 'Astara District', 'lifterlms' ),
'BAB' => __( 'Babek District', 'lifterlms' ),
'BA' => __( 'Baku', 'lifterlms' ),
'BAL' => __( 'Balakan District', 'lifterlms' ),
'BAR' => __( 'Barda District', 'lifterlms' ),
'BEY' => __( 'Beylagan District', 'lifterlms' ),
'BIL' => __( 'Bilasuvar District', 'lifterlms' ),
'DAS' => __( 'Dashkasan District', 'lifterlms' ),
'FUZ' => __( 'Fizuli District', 'lifterlms' ),
'GA' => __( 'Ganja', 'lifterlms' ),
'QOB' => __( 'Gobustan District', 'lifterlms' ),
'GOR' => __( 'Goranboy District', 'lifterlms' ),
'GOY' => __( 'Goychay', 'lifterlms' ),
'GYG' => __( 'Goygol District', 'lifterlms' ),
'GAD' => __( 'Gədəbəy', 'lifterlms' ),
'HAC' => __( 'Hajigabul District', 'lifterlms' ),
'IMI' => __( 'Imishli District', 'lifterlms' ),
'ISM' => __( 'Ismailli District', 'lifterlms' ),
'CAB' => __( 'Jabrayil District', 'lifterlms' ),
'CAL' => __( 'Jalilabad District', 'lifterlms' ),
'CUL' => __( 'Julfa District', 'lifterlms' ),
'KAL' => __( 'Kalbajar District', 'lifterlms' ),
'KAN' => __( 'Kangarli District', 'lifterlms' ),
'XAC' => __( 'Khachmaz District', 'lifterlms' ),
'XIZ' => __( 'Khizi District', 'lifterlms' ),
'XCI' => __( 'Khojali District', 'lifterlms' ),
'KUR' => __( 'Kurdamir District', 'lifterlms' ),
'LAC' => __( 'Lachin District', 'lifterlms' ),
'LAN' => __( 'Lankaran', 'lifterlms' ),
'LA' => __( 'Lankaran District', 'lifterlms' ),
'LER' => __( 'Lerik District', 'lifterlms' ),
'XVD' => __( 'Martuni', 'lifterlms' ),
'MAS' => __( 'Masally District', 'lifterlms' ),
'MI' => __( 'Mingachevir', 'lifterlms' ),
'NX' => __( 'Nakhchivan Autonomous Republic', 'lifterlms' ),
'NEF' => __( 'Neftchala District', 'lifterlms' ),
'OGU' => __( 'Oghuz District', 'lifterlms' ),
'ORD' => __( 'Ordubad District', 'lifterlms' ),
'QAB' => __( 'Qabala District', 'lifterlms' ),
'QAX' => __( 'Qakh District', 'lifterlms' ),
'QAZ' => __( 'Qazakh District', 'lifterlms' ),
'QBA' => __( 'Quba District', 'lifterlms' ),
'QBI' => __( 'Qubadli District', 'lifterlms' ),
'QUS' => __( 'Qusar District', 'lifterlms' ),
'SAT' => __( 'Saatly District', 'lifterlms' ),
'SAB' => __( 'Sabirabad District', 'lifterlms' ),
'SAD' => __( 'Sadarak District', 'lifterlms' ),
'SAL' => __( 'Salyan District', 'lifterlms' ),
'SMX' => __( 'Samukh District', 'lifterlms' ),
'SBN' => __( 'Shabran District', 'lifterlms' ),
'SAH' => __( 'Shahbuz District', 'lifterlms' ),
'SA' => __( 'Shaki', 'lifterlms' ),
'SAK' => __( 'Shaki District', 'lifterlms' ),
'SMI' => __( 'Shamakhi District', 'lifterlms' ),
'SKR' => __( 'Shamkir District', 'lifterlms' ),
'SAR' => __( 'Sharur District', 'lifterlms' ),
'SR' => __( 'Shirvan', 'lifterlms' ),
'SUS' => __( 'Shusha District', 'lifterlms' ),
'SIY' => __( 'Siazan District', 'lifterlms' ),
'SM' => __( 'Sumqayit', 'lifterlms' ),
'TAR' => __( 'Tartar District', 'lifterlms' ),
'TOV' => __( 'Tovuz District', 'lifterlms' ),
'UCA' => __( 'Ujar District', 'lifterlms' ),
'YAR' => __( 'Yardymli District', 'lifterlms' ),
'YE' => __( 'Yevlakh', 'lifterlms' ),
'YEV' => __( 'Yevlakh District', 'lifterlms' ),
'ZAN' => __( 'Zangilan District', 'lifterlms' ),
'ZAQ' => __( 'Zaqatala District', 'lifterlms' ),
'ZAR' => __( 'Zardab District', 'lifterlms' ),
),
'BA' => array(
'10' => __( 'Canton 10', 'lifterlms' ),
'05' => __( 'Bosnian Podrinje Canton', 'lifterlms' ),
'BRC' => __( 'Brčko District', 'lifterlms' ),
'06' => __( 'Central Bosnia Canton', 'lifterlms' ),
'BIH' => __( 'Federation of Bosnia and Herzegovina', 'lifterlms' ),
'07' => __( 'Herzegovina-Neretva Canton', 'lifterlms' ),
'02' => __( 'Posavina Canton', 'lifterlms' ),
'SRP' => __( 'Republika Srpska', 'lifterlms' ),
'09' => __( 'Sarajevo Canton', 'lifterlms' ),
'03' => __( 'Tuzla Canton', 'lifterlms' ),
'01' => __( 'Una-Sana Canton', 'lifterlms' ),
'08' => __( 'West Herzegovina Canton', 'lifterlms' ),
'04' => __( 'Zenica-Doboj Canton', 'lifterlms' ),
),
'BB' => array(
'10' => __( 'Saint Philip', 'lifterlms' ),
'11' => __( 'Saint Thomas', 'lifterlms' ),
'01' => __( 'Christ Church', 'lifterlms' ),
'02' => __( 'Saint Andrew', 'lifterlms' ),
'03' => __( 'Saint George', 'lifterlms' ),
'04' => __( 'Saint James', 'lifterlms' ),
'05' => __( 'Saint John', 'lifterlms' ),
'06' => __( 'Saint Joseph', 'lifterlms' ),
'07' => __( 'Saint Lucy', 'lifterlms' ),
'08' => __( 'Saint Michael', 'lifterlms' ),
'09' => __( 'Saint Peter', 'lifterlms' ),
),
'BD' => array(
'10' => __( 'Chittagong District', 'lifterlms' ),
'11' => __( 'Cox\'s Bazar District', 'lifterlms' ),
'12' => __( 'Chuadanga District', 'lifterlms' ),
'13' => __( 'Dhaka District', 'lifterlms' ),
'14' => __( 'Dinajpur District', 'lifterlms' ),
'15' => __( 'Faridpur District', 'lifterlms' ),
'16' => __( 'Feni District', 'lifterlms' ),
'17' => __( 'Gopalganj District', 'lifterlms' ),
'18' => __( 'Gazipur District', 'lifterlms' ),
'19' => __( 'Gaibandha District', 'lifterlms' ),
'20' => __( 'Habiganj District', 'lifterlms' ),
'21' => __( 'Jamalpur District', 'lifterlms' ),
'22' => __( 'Jessore District', 'lifterlms' ),
'23' => __( 'Jhenaidah District', 'lifterlms' ),
'24' => __( 'Joypurhat District', 'lifterlms' ),
'25' => __( 'Jhalokati District', 'lifterlms' ),
'26' => __( 'Kishoreganj District', 'lifterlms' ),
'27' => __( 'Khulna District', 'lifterlms' ),
'28' => __( 'Kurigram District', 'lifterlms' ),
'29' => __( 'Khagrachari District', 'lifterlms' ),
'30' => __( 'Kushtia District', 'lifterlms' ),
'31' => __( 'Lakshmipur District', 'lifterlms' ),
'32' => __( 'Lalmonirhat District', 'lifterlms' ),
'33' => __( 'Bahadia', 'lifterlms' ),
'34' => __( 'Mymensingh District', 'lifterlms' ),
'35' => __( 'Munshiganj District', 'lifterlms' ),
'36' => __( 'Madaripur District', 'lifterlms' ),
'38' => __( 'Moulvibazar District', 'lifterlms' ),
'39' => __( 'Meherpur District', 'lifterlms' ),
'40' => __( 'Narayanganj District', 'lifterlms' ),
'41' => __( 'Netrokona District', 'lifterlms' ),
'43' => __( 'Narail District', 'lifterlms' ),
'44' => __( 'Natore District', 'lifterlms' ),
'45' => __( 'Chapai Nawabganj District', 'lifterlms' ),
'46' => __( 'Nilphamari District', 'lifterlms' ),
'47' => __( 'Noakhali District', 'lifterlms' ),
'48' => __( 'Naogaon District', 'lifterlms' ),
'49' => __( 'Pabna District', 'lifterlms' ),
'50' => __( 'Pirojpur District', 'lifterlms' ),
'51' => __( 'Patuakhali District', 'lifterlms' ),
'52' => __( 'Panchagarh District', 'lifterlms' ),
'53' => __( 'Rajbari District', 'lifterlms' ),
'54' => __( 'Rajshahi District', 'lifterlms' ),
'55' => __( 'Rangpur District', 'lifterlms' ),
'56' => __( 'Rangamati Hill District', 'lifterlms' ),
'57' => __( 'Sherpur District', 'lifterlms' ),
'58' => __( 'Satkhira District', 'lifterlms' ),
'59' => __( 'Sirajganj District', 'lifterlms' ),
'60' => __( 'Sylhet District', 'lifterlms' ),
'61' => __( 'Sunamganj District', 'lifterlms' ),
'62' => __( 'Shariatpur District', 'lifterlms' ),
'63' => __( 'Tangail District', 'lifterlms' ),
'64' => __( 'Thakurgaon District', 'lifterlms' ),
'05' => __( 'Bagerhat District', 'lifterlms' ),
'01' => __( 'Bandarban District', 'lifterlms' ),
'02' => __( 'Barguna District', 'lifterlms' ),
'06' => __( 'Barisal District', 'lifterlms' ),
'A' => __( 'Barisal Division', 'lifterlms' ),
'07' => __( 'Bhola District', 'lifterlms' ),
'03' => __( 'Bogra District', 'lifterlms' ),
'04' => __( 'Brahmanbaria District', 'lifterlms' ),
'09' => __( 'Chandpur District', 'lifterlms' ),
'B' => __( 'Chittagong Division', 'lifterlms' ),
'08' => __( 'Comilla District', 'lifterlms' ),
'C' => __( 'Dhaka Division', 'lifterlms' ),
'D' => __( 'Khulna Division', 'lifterlms' ),
'H' => __( 'Mymensingh Division', 'lifterlms' ),
'E' => __( 'Rajshahi Division', 'lifterlms' ),
'F' => __( 'Rangpur Division', 'lifterlms' ),
'G' => __( 'Sylhet Division', 'lifterlms' ),
),
'BE' => array(
'VAN' => __( 'Antwerp', 'lifterlms' ),
'BRU' => __( 'Brussels-Capital Region', 'lifterlms' ),
'VOV' => __( 'East Flanders', 'lifterlms' ),
'VLG' => __( 'Flanders', 'lifterlms' ),
'VBR' => __( 'Flemish Brabant', 'lifterlms' ),
'WHT' => __( 'Hainaut', 'lifterlms' ),
'VLI' => __( 'Limburg', 'lifterlms' ),
'WLG' => __( 'Liège', 'lifterlms' ),
'WLX' => __( 'Luxembourg', 'lifterlms' ),
'WNA' => __( 'Namur', 'lifterlms' ),
'WAL' => __( 'Wallonia', 'lifterlms' ),
'WBR' => __( 'Walloon Brabant', 'lifterlms' ),
'VWV' => __( 'West Flanders', 'lifterlms' ),
),
'BF' => array(
'10' => __( 'Nord Region, Burkina Faso', 'lifterlms' ),
'11' => __( 'Plateau-Central Region', 'lifterlms' ),
'12' => __( 'Sahel Region', 'lifterlms' ),
'13' => __( 'Sud-Ouest Region', 'lifterlms' ),
'BAL' => __( 'Balé Province', 'lifterlms' ),
'BAM' => __( 'Bam Province', 'lifterlms' ),
'BAN' => __( 'Banwa Province', 'lifterlms' ),
'BAZ' => __( 'Bazèga Province', 'lifterlms' ),
'01' => __( 'Boucle du Mouhoun Region', 'lifterlms' ),
'BGR' => __( 'Bougouriba Province', 'lifterlms' ),
'BLG' => __( 'Boulgou', 'lifterlms' ),
'02' => __( 'Cascades Region', 'lifterlms' ),
'03' => __( 'Centre', 'lifterlms' ),
'04' => __( 'Centre-Est Region', 'lifterlms' ),
'05' => __( 'Centre-Nord Region', 'lifterlms' ),
'06' => __( 'Centre-Ouest Region', 'lifterlms' ),
'07' => __( 'Centre-Sud Region', 'lifterlms' ),
'COM' => __( 'Comoé Province', 'lifterlms' ),
'08' => __( 'Est Region', 'lifterlms' ),
'GAN' => __( 'Ganzourgou Province', 'lifterlms' ),
'GNA' => __( 'Gnagna Province', 'lifterlms' ),
'GOU' => __( 'Gourma Province', 'lifterlms' ),
'09' => __( 'Hauts-Bassins Region', 'lifterlms' ),
'HOU' => __( 'Houet Province', 'lifterlms' ),
'IOB' => __( 'Ioba Province', 'lifterlms' ),
'KAD' => __( 'Kadiogo Province', 'lifterlms' ),
'KMD' => __( 'Komondjari Province', 'lifterlms' ),
'KMP' => __( 'Kompienga Province', 'lifterlms' ),
'KOS' => __( 'Kossi Province', 'lifterlms' ),
'KOP' => __( 'Koulpélogo Province', 'lifterlms' ),
'KOT' => __( 'Kouritenga Province', 'lifterlms' ),
'KOW' => __( 'Kourwéogo Province', 'lifterlms' ),
'KEN' => __( 'Kénédougou Province', 'lifterlms' ),
'LOR' => __( 'Loroum Province', 'lifterlms' ),
'LER' => __( 'Léraba Province', 'lifterlms' ),
'MOU' => __( 'Mouhoun', 'lifterlms' ),
'NAO' => __( 'Nahouri Province', 'lifterlms' ),
'NAM' => __( 'Namentenga Province', 'lifterlms' ),
'NAY' => __( 'Nayala Province', 'lifterlms' ),
'NOU' => __( 'Noumbiel Province', 'lifterlms' ),
'OUB' => __( 'Oubritenga Province', 'lifterlms' ),
'OUD' => __( 'Oudalan Province', 'lifterlms' ),
'PAS' => __( 'Passoré Province', 'lifterlms' ),
'PON' => __( 'Poni Province', 'lifterlms' ),
'SNG' => __( 'Sanguié Province', 'lifterlms' ),
'SMT' => __( 'Sanmatenga Province', 'lifterlms' ),
'SIS' => __( 'Sissili Province', 'lifterlms' ),
'SOM' => __( 'Soum Province', 'lifterlms' ),
'SOR' => __( 'Sourou Province', 'lifterlms' ),
'SEN' => __( 'Séno Province', 'lifterlms' ),
'TAP' => __( 'Tapoa Province', 'lifterlms' ),
'TUI' => __( 'Tuy Province', 'lifterlms' ),
'YAG' => __( 'Yagha Province', 'lifterlms' ),
'YAT' => __( 'Yatenga Province', 'lifterlms' ),
'ZIR' => __( 'Ziro Province', 'lifterlms' ),
'ZON' => __( 'Zondoma Province', 'lifterlms' ),
'ZOU' => __( 'Zoundwéogo Province', 'lifterlms' ),
),
'BG' => array(
'10' => __( 'Kyustendil Province', 'lifterlms' ),
'11' => __( 'Lovech Province', 'lifterlms' ),
'12' => __( 'Montana Province', 'lifterlms' ),
'13' => __( 'Pazardzhik Province', 'lifterlms' ),
'14' => __( 'Pernik Province', 'lifterlms' ),
'15' => __( 'Pleven Province', 'lifterlms' ),
'16' => __( 'Plovdiv Province', 'lifterlms' ),
'17' => __( 'Razgrad Province', 'lifterlms' ),
'18' => __( 'Ruse Province', 'lifterlms' ),
'19' => __( 'Silistra Province', 'lifterlms' ),
'20' => __( 'Sliven Province', 'lifterlms' ),
'21' => __( 'Smolyan Province', 'lifterlms' ),
'22' => __( 'Sofia City Province', 'lifterlms' ),
'23' => __( 'Sofia Province', 'lifterlms' ),
'24' => __( 'Stara Zagora Province', 'lifterlms' ),
'25' => __( 'Targovishte Province', 'lifterlms' ),
'26' => __( 'Haskovo Province', 'lifterlms' ),
'27' => __( 'Shumen', 'lifterlms' ),
'28' => __( 'Yambol Province', 'lifterlms' ),
'01' => __( 'Blagoevgrad Province', 'lifterlms' ),
'02' => __( 'Burgas Province', 'lifterlms' ),
'08' => __( 'Dobrich Province', 'lifterlms' ),
'07' => __( 'Gabrovo Province', 'lifterlms' ),
'09' => __( 'Kardzhali Province', 'lifterlms' ),
'03' => __( 'Varna Province', 'lifterlms' ),
'04' => __( 'Veliko Tarnovo Province', 'lifterlms' ),
'05' => __( 'Vidin Province', 'lifterlms' ),
'06' => __( 'Vratsa Province', 'lifterlms' ),
),
'BH' => array(
'13' => __( 'Capital Governorate', 'lifterlms' ),
'14' => __( 'Southern Governorate', 'lifterlms' ),
'15' => __( 'Muharraq Governorate', 'lifterlms' ),
'16' => __( 'Central Governorate', 'lifterlms' ),
'17' => __( 'Northern Governorate', 'lifterlms' ),
),
'BI' => array(
'BB' => __( 'Bubanza Province', 'lifterlms' ),
'BM' => __( 'Bujumbura Mairie Province', 'lifterlms' ),
'BL' => __( 'Bujumbura Rural Province', 'lifterlms' ),
'BR' => __( 'Bururi Province', 'lifterlms' ),
'CA' => __( 'Cankuzo Province', 'lifterlms' ),
'CI' => __( 'Cibitoke Province', 'lifterlms' ),
'GI' => __( 'Gitega Province', 'lifterlms' ),
'KR' => __( 'Karuzi Province', 'lifterlms' ),
'KY' => __( 'Kayanza Province', 'lifterlms' ),
'KI' => __( 'Kirundo Province', 'lifterlms' ),
'MA' => __( 'Makamba Province', 'lifterlms' ),
'MU' => __( 'Muramvya Province', 'lifterlms' ),
'MY' => __( 'Muyinga Province', 'lifterlms' ),
'MW' => __( 'Mwaro Province', 'lifterlms' ),
'NG' => __( 'Ngozi Province', 'lifterlms' ),
'RM' => __( 'Rumonge Province', 'lifterlms' ),
'RT' => __( 'Rutana Province', 'lifterlms' ),
'RY' => __( 'Ruyigi Province', 'lifterlms' ),
),
'BJ' => array(
'AL' => __( 'Alibori Department', 'lifterlms' ),
'AK' => __( 'Atakora Department', 'lifterlms' ),
'AQ' => __( 'Atlantique Department', 'lifterlms' ),
'BO' => __( 'Borgou Department', 'lifterlms' ),
'CO' => __( 'Collines Department', 'lifterlms' ),
'DO' => __( 'Donga Department', 'lifterlms' ),
'KO' => __( 'Kouffo Department', 'lifterlms' ),
'LI' => __( 'Littoral Department', 'lifterlms' ),
'MO' => __( 'Mono Department', 'lifterlms' ),
'OU' => __( 'Ouémé Department', 'lifterlms' ),
'PL' => __( 'Plateau Department', 'lifterlms' ),
'ZO' => __( 'Zou Department', 'lifterlms' ),
),
'BL' => array(),
'BM' => array(
'DEV' => __( 'Devonshire Parish', 'lifterlms' ),
'HAM' => __( 'Hamilton Municipality', 'lifterlms' ),
'HA' => __( 'Hamilton Parish', 'lifterlms' ),
'PAG' => __( 'Paget Parish', 'lifterlms' ),
'PEM' => __( 'Pembroke Parish', 'lifterlms' ),
'SG' => __( 'Saint George\'s Municipality', 'lifterlms' ),
'SGE' => __( 'Saint George\'s Parish', 'lifterlms' ),
'SAN' => __( 'Sandys Parish', 'lifterlms' ),
'SMI' => __( 'Smith\'s Parish,', 'lifterlms' ),
'SOU' => __( 'Southampton Parish', 'lifterlms' ),
'WAR' => __( 'Warwick Parish', 'lifterlms' ),
),
'BN' => array(
'BE' => __( 'Belait District', 'lifterlms' ),
'BM' => __( 'Brunei-Muara District', 'lifterlms' ),
'TE' => __( 'Temburong District', 'lifterlms' ),
'TU' => __( 'Tutong District', 'lifterlms' ),
),
'BO' => array(
'B' => __( 'Beni Department', 'lifterlms' ),
'H' => __( 'Chuquisaca Department', 'lifterlms' ),
'C' => __( 'Cochabamba Department', 'lifterlms' ),
'L' => __( 'La Paz Department', 'lifterlms' ),
'O' => __( 'Oruro Department', 'lifterlms' ),
'N' => __( 'Pando Department', 'lifterlms' ),
'P' => __( 'Potosí Department', 'lifterlms' ),
'S' => __( 'Santa Cruz Department', 'lifterlms' ),
'T' => __( 'Tarija Department', 'lifterlms' ),
),
'BQ' => array(),
'BR' => array(
'AC' => __( 'Acre', 'lifterlms' ),
'AL' => __( 'Alagoas', 'lifterlms' ),
'AP' => __( 'Amapá', 'lifterlms' ),
'AM' => __( 'Amazonas', 'lifterlms' ),
'BA' => __( 'Bahia', 'lifterlms' ),
'CE' => __( 'Ceará', 'lifterlms' ),
'ES' => __( 'Espírito Santo', 'lifterlms' ),
'DF' => __( 'Federal District', 'lifterlms' ),
'GO' => __( 'Goiás', 'lifterlms' ),
'MA' => __( 'Maranhão', 'lifterlms' ),
'MT' => __( 'Mato Grosso', 'lifterlms' ),
'MS' => __( 'Mato Grosso do Sul', 'lifterlms' ),
'MG' => __( 'Minas Gerais', 'lifterlms' ),
'PR' => __( 'Paraná', 'lifterlms' ),
'PB' => __( 'Paraíba', 'lifterlms' ),
'PA' => __( 'Pará', 'lifterlms' ),
'PE' => __( 'Pernambuco', 'lifterlms' ),
'PI' => __( 'Piauí', 'lifterlms' ),
'RN' => __( 'Rio Grande do Norte', 'lifterlms' ),
'RS' => __( 'Rio Grande do Sul', 'lifterlms' ),
'RJ' => __( 'Rio de Janeiro', 'lifterlms' ),
'RO' => __( 'Rondônia', 'lifterlms' ),
'RR' => __( 'Roraima', 'lifterlms' ),
'SC' => __( 'Santa Catarina', 'lifterlms' ),
'SE' => __( 'Sergipe', 'lifterlms' ),
'SP' => __( 'São Paulo', 'lifterlms' ),
'TO' => __( 'Tocantins', 'lifterlms' ),
),
'BS' => array(
'AK' => __( 'Acklins', 'lifterlms' ),
'AC' => __( 'Acklins and Crooked Islands', 'lifterlms' ),
'BY' => __( 'Berry Islands', 'lifterlms' ),
'BI' => __( 'Bimini', 'lifterlms' ),
'BP' => __( 'Black Point', 'lifterlms' ),
'CI' => __( 'Cat Island', 'lifterlms' ),
'CO' => __( 'Central Abaco', 'lifterlms' ),
'CS' => __( 'Central Andros', 'lifterlms' ),
'CE' => __( 'Central Eleuthera', 'lifterlms' ),
'CK' => __( 'Crooked Island', 'lifterlms' ),
'EG' => __( 'East Grand Bahama', 'lifterlms' ),
'EX' => __( 'Exuma', 'lifterlms' ),
'FP' => __( 'Freeport', 'lifterlms' ),
'FC' => __( 'Fresh Creek', 'lifterlms' ),
'GH' => __( 'Governor\'s Harbour', 'lifterlms' ),
'GC' => __( 'Grand Cay', 'lifterlms' ),
'GT' => __( 'Green Turtle Cay', 'lifterlms' ),
'HI' => __( 'Harbour Island', 'lifterlms' ),
'HR' => __( 'High Rock', 'lifterlms' ),
'HT' => __( 'Hope Town', 'lifterlms' ),
'IN' => __( 'Inagua', 'lifterlms' ),
'KB' => __( 'Kemps Bay', 'lifterlms' ),
'LI' => __( 'Long Island', 'lifterlms' ),
'MC' => __( 'Mangrove Cay', 'lifterlms' ),
'MH' => __( 'Marsh Harbour', 'lifterlms' ),
'MG' => __( 'Mayaguana District', 'lifterlms' ),
'NP' => __( 'New Providence', 'lifterlms' ),
'NB' => __( 'Nichollstown and Berry Islands', 'lifterlms' ),
'NO' => __( 'North Abaco', 'lifterlms' ),
'NS' => __( 'North Andros', 'lifterlms' ),
'NE' => __( 'North Eleuthera', 'lifterlms' ),
'RI' => __( 'Ragged Island', 'lifterlms' ),
'RS' => __( 'Rock Sound', 'lifterlms' ),
'RC' => __( 'Rum Cay District', 'lifterlms' ),
'SS' => __( 'San Salvador Island', 'lifterlms' ),
'SR' => __( 'San Salvador and Rum Cay', 'lifterlms' ),
'SP' => __( 'Sandy Point', 'lifterlms' ),
'SO' => __( 'South Abaco', 'lifterlms' ),
'SA' => __( 'South Andros', 'lifterlms' ),
'SE' => __( 'South Eleuthera', 'lifterlms' ),
'SW' => __( 'Spanish Wells', 'lifterlms' ),
'WG' => __( 'West Grand Bahama', 'lifterlms' ),
),
'BT' => array(
'11' => __( 'Paro District', 'lifterlms' ),
'12' => __( 'Chukha District', 'lifterlms' ),
'13' => __( 'Haa District', 'lifterlms' ),
'14' => __( 'Samtse District', 'lifterlms' ),
'15' => __( 'Thimphu District', 'lifterlms' ),
'21' => __( 'Tsirang District', 'lifterlms' ),
'22' => __( 'Dagana District', 'lifterlms' ),
'23' => __( 'Punakha District', 'lifterlms' ),
'24' => __( 'Wangdue Phodrang District', 'lifterlms' ),
'31' => __( 'Sarpang District', 'lifterlms' ),
'32' => __( 'Trongsa District', 'lifterlms' ),
'33' => __( 'Bumthang District', 'lifterlms' ),
'34' => __( 'Zhemgang District', 'lifterlms' ),
'41' => __( 'Trashigang District', 'lifterlms' ),
'42' => __( 'Mongar District', 'lifterlms' ),
'43' => __( 'Pemagatshel District', 'lifterlms' ),
'44' => __( 'Lhuntse District', 'lifterlms' ),
'45' => __( 'Samdrup Jongkhar District', 'lifterlms' ),
'GA' => __( 'Gasa District', 'lifterlms' ),
),
'BV' => array(),
'BW' => array(
'CE' => __( 'Central District', 'lifterlms' ),
'GH' => __( 'Ghanzi District', 'lifterlms' ),
'KG' => __( 'Kgalagadi District', 'lifterlms' ),
'KL' => __( 'Kgatleng District', 'lifterlms' ),
'KW' => __( 'Kweneng District', 'lifterlms' ),
'NG' => __( 'Ngamiland', 'lifterlms' ),
'NE' => __( 'North-East District', 'lifterlms' ),
'NW' => __( 'North-West District', 'lifterlms' ),
'SE' => __( 'South-East District', 'lifterlms' ),
'SO' => __( 'Southern District', 'lifterlms' ),
),
'BY' => array(
'BR' => __( 'Brest Region', 'lifterlms' ),
'HO' => __( 'Gomel Region', 'lifterlms' ),
'HR' => __( 'Grodno Region', 'lifterlms' ),
'HM' => __( 'Minsk', 'lifterlms' ),
'MI' => __( 'Minsk Region', 'lifterlms' ),
'MA' => __( 'Mogilev Region', 'lifterlms' ),
'VI' => __( 'Vitebsk Region', 'lifterlms' ),
),
'BZ' => array(
'BZ' => __( 'Belize District', 'lifterlms' ),
'CY' => __( 'Cayo District', 'lifterlms' ),
'CZL' => __( 'Corozal District', 'lifterlms' ),
'OW' => __( 'Orange Walk District', 'lifterlms' ),
'SC' => __( 'Stann Creek District', 'lifterlms' ),
'TOL' => __( 'Toledo District', 'lifterlms' ),
),
'CA' => array(
'AB' => __( 'Alberta', 'lifterlms' ),
'BC' => __( 'British Columbia', 'lifterlms' ),
'MB' => __( 'Manitoba', 'lifterlms' ),
'NB' => __( 'New Brunswick', 'lifterlms' ),
'NL' => __( 'Newfoundland and Labrador', 'lifterlms' ),
'NT' => __( 'Northwest Territories', 'lifterlms' ),
'NS' => __( 'Nova Scotia', 'lifterlms' ),
'NU' => __( 'Nunavut', 'lifterlms' ),
'ON' => __( 'Ontario', 'lifterlms' ),
'PE' => __( 'Prince Edward Island', 'lifterlms' ),
'QC' => __( 'Quebec', 'lifterlms' ),
'SK' => __( 'Saskatchewan', 'lifterlms' ),
'YT' => __( 'Yukon', 'lifterlms' ),
),
'CC' => array(),
'CD' => array(
'BN' => __( 'Bandundu Province', 'lifterlms' ),
'BC' => __( 'Bas-Congo province', 'lifterlms' ),
'BU' => __( 'Bas-Uele', 'lifterlms' ),
'HK' => __( 'Haut-Katanga Province', 'lifterlms' ),
'HL' => __( 'Haut-Lomami District', 'lifterlms' ),
'HU' => __( 'Haut-Uele', 'lifterlms' ),
'IT' => __( 'Ituri Interim Administration', 'lifterlms' ),
'KS' => __( 'Kasaï District', 'lifterlms' ),
'KW' => __( 'Kasaï-Occidental', 'lifterlms' ),
'KE' => __( 'Kasaï-Oriental', 'lifterlms' ),
'KA' => __( 'Katanga Province', 'lifterlms' ),
'KN' => __( 'Kinshasa', 'lifterlms' ),
'KG' => __( 'Kwango District', 'lifterlms' ),
'KL' => __( 'Kwilu District', 'lifterlms' ),
'LO' => __( 'Lomami Province', 'lifterlms' ),
'MN' => __( 'Mai-Ndombe Province', 'lifterlms' ),
'MA' => __( 'Maniema', 'lifterlms' ),
'MO' => __( 'Mongala District', 'lifterlms' ),
'NU' => __( 'Nord-Ubangi District', 'lifterlms' ),
'NK' => __( 'North Kivu', 'lifterlms' ),
'OR' => __( 'Orientale Province', 'lifterlms' ),
'SA' => __( 'Sankuru District', 'lifterlms' ),
'SK' => __( 'South Kivu', 'lifterlms' ),
'SU' => __( 'Sud-Ubangi', 'lifterlms' ),
'TA' => __( 'Tanganyika Province', 'lifterlms' ),
'TO' => __( 'Tshopo District', 'lifterlms' ),
'TU' => __( 'Tshuapa District', 'lifterlms' ),
'EQ' => __( 'Équateur', 'lifterlms' ),
),
'CF' => array(
'BB' => __( 'Bamingui-Bangoran Prefecture', 'lifterlms' ),
'BGF' => __( 'Bangui', 'lifterlms' ),
'BK' => __( 'Basse-Kotto Prefecture', 'lifterlms' ),
'HM' => __( 'Haut-Mbomou Prefecture', 'lifterlms' ),
'HK' => __( 'Haute-Kotto Prefecture', 'lifterlms' ),
'KG' => __( 'Kémo Prefecture', 'lifterlms' ),
'LB' => __( 'Lobaye Prefecture', 'lifterlms' ),
'HS' => __( 'Mambéré-Kadéï', 'lifterlms' ),
'MB' => __( 'Mbomou Prefecture', 'lifterlms' ),
'KB' => __( 'Nana-Grébizi Economic Prefecture', 'lifterlms' ),
'NM' => __( 'Nana-Mambéré Prefecture', 'lifterlms' ),
'MP' => __( 'Ombella-M\'Poko Prefecture', 'lifterlms' ),
'UK' => __( 'Ouaka Prefecture', 'lifterlms' ),
'AC' => __( 'Ouham Prefecture', 'lifterlms' ),
'OP' => __( 'Ouham-Pendé Prefecture', 'lifterlms' ),
'SE' => __( 'Sangha-Mbaéré', 'lifterlms' ),
'VK' => __( 'Vakaga Prefecture', 'lifterlms' ),
),
'CG' => array(
'2' => __( 'Lékoumou Department', 'lifterlms' ),
'5' => __( 'Kouilou Department', 'lifterlms' ),
'7' => __( 'Likouala Department', 'lifterlms' ),
'8' => __( 'Cuvette Department', 'lifterlms' ),
'9' => __( 'Niari Department', 'lifterlms' ),
'11' => __( 'Bouenza Department', 'lifterlms' ),
'12' => __( 'Pool Department', 'lifterlms' ),
'13' => __( 'Sangha Department', 'lifterlms' ),
'14' => __( 'Plateaux Department', 'lifterlms' ),
'15' => __( 'Cuvette-Ouest Department', 'lifterlms' ),
'16' => __( 'Pointe-Noire', 'lifterlms' ),
'BZV' => __( 'Brazzaville', 'lifterlms' ),
),
'CH' => array(
'AG' => __( 'Aargau', 'lifterlms' ),
'AR' => __( 'Appenzell Ausserrhoden', 'lifterlms' ),
'AI' => __( 'Appenzell Innerrhoden', 'lifterlms' ),
'BL' => __( 'Basel-Landschaft', 'lifterlms' ),
'FR' => __( 'Canton of Fribourg', 'lifterlms' ),
'GE' => __( 'Canton of Geneva', 'lifterlms' ),
'JU' => __( 'Canton of Jura', 'lifterlms' ),
'LU' => __( 'Canton of Lucerne', 'lifterlms' ),
'NE' => __( 'Canton of Neuchâtel', 'lifterlms' ),
'SH' => __( 'Canton of Schaffhausen', 'lifterlms' ),
'SO' => __( 'Canton of Solothurn', 'lifterlms' ),
'SG' => __( 'Canton of St. Gallen', 'lifterlms' ),
'VS' => __( 'Canton of Valais', 'lifterlms' ),
'VD' => __( 'Canton of Vaud', 'lifterlms' ),
'ZG' => __( 'Canton of Zug', 'lifterlms' ),
'GL' => __( 'Glarus', 'lifterlms' ),
'GR' => __( 'Graubünden', 'lifterlms' ),
'NW' => __( 'Nidwalden', 'lifterlms' ),
'OW' => __( 'Obwalden', 'lifterlms' ),
'SZ' => __( 'Schwyz', 'lifterlms' ),
'TG' => __( 'Thurgau', 'lifterlms' ),
'TI' => __( 'Ticino', 'lifterlms' ),
'UR' => __( 'Uri', 'lifterlms' ),
'BE' => __( 'canton of Bern', 'lifterlms' ),
'ZH' => __( 'canton of Zürich', 'lifterlms' ),
),
'CI' => array(
'10' => __( 'Denguélé Region', 'lifterlms' ),
'11' => __( 'N\'zi-Comoé', 'lifterlms' ),
'12' => __( 'Marahoué Region', 'lifterlms' ),
'13' => __( 'Sud-Comoé', 'lifterlms' ),
'14' => __( 'Worodougou', 'lifterlms' ),
'15' => __( 'Sud-Bandama', 'lifterlms' ),
'16' => __( 'Agnéby', 'lifterlms' ),
'17' => __( 'Bafing Region', 'lifterlms' ),
'18' => __( 'Fromager', 'lifterlms' ),
'19' => __( 'Moyen-Cavally', 'lifterlms' ),
'AB' => __( 'Abidjan', 'lifterlms' ),
'BS' => __( 'Bas-Sassandra District', 'lifterlms' ),
'09' => __( 'Bas-Sassandra Region', 'lifterlms' ),
'CM' => __( 'Comoé District', 'lifterlms' ),
'DN' => __( 'Denguélé District', 'lifterlms' ),
'06' => __( 'Dix-Huit Montagnes', 'lifterlms' ),
'GD' => __( 'Gôh-Djiboua District', 'lifterlms' ),
'02' => __( 'Haut-Sassandra', 'lifterlms' ),
'LC' => __( 'Lacs District', 'lifterlms' ),
'07' => __( 'Lacs Region', 'lifterlms' ),
'LG' => __( 'Lagunes District', 'lifterlms' ),
'01' => __( 'Lagunes region', 'lifterlms' ),
'MG' => __( 'Montagnes District', 'lifterlms' ),
'05' => __( 'Moyen-Comoé', 'lifterlms' ),
'SM' => __( 'Sassandra-Marahoué District', 'lifterlms' ),
'03' => __( 'Savanes Region', 'lifterlms' ),
'VB' => __( 'Vallée du Bandama District', 'lifterlms' ),
'04' => __( 'Vallée du Bandama Region', 'lifterlms' ),
'WR' => __( 'Woroba District', 'lifterlms' ),
'YM' => __( 'Yamoussoukro', 'lifterlms' ),
'ZZ' => __( 'Zanzan Region', 'lifterlms' ),
),
'CK' => array(),
'CL' => array(
'AN' => __( 'Antofagasta Region', 'lifterlms' ),
'AR' => __( 'Araucanía Region', 'lifterlms' ),
'AP' => __( 'Arica y Parinacota Region', 'lifterlms' ),
'AT' => __( 'Atacama Region', 'lifterlms' ),
'AI' => __( 'Aysén Region', 'lifterlms' ),
'BI' => __( 'Bío Bío Region', 'lifterlms' ),
'CO' => __( 'Coquimbo Region', 'lifterlms' ),
'LL' => __( 'Los Lagos Region', 'lifterlms' ),
'LR' => __( 'Los Ríos Region', 'lifterlms' ),
'MA' => __( 'Magellan and the Chilean Antarctic Region', 'lifterlms' ),
'ML' => __( 'Maule Region', 'lifterlms' ),
'LI' => __( 'O\'Higgins', 'lifterlms' ),
'RM' => __( 'Santiago Metropolitan Region', 'lifterlms' ),
'TA' => __( 'Tarapacá Region', 'lifterlms' ),
'VS' => __( 'Valparaíso', 'lifterlms' ),
'NB' => __( 'Ñuble Region', 'lifterlms' ),
),
'CM' => array(
'AD' => __( 'Adamawa', 'lifterlms' ),
'CE' => __( 'Centre', 'lifterlms' ),
'ES' => __( 'East', 'lifterlms' ),
'EN' => __( 'Far North', 'lifterlms' ),
'LT' => __( 'Littoral', 'lifterlms' ),
'NO' => __( 'North', 'lifterlms' ),
'NW' => __( 'Northwest', 'lifterlms' ),
'SU' => __( 'South', 'lifterlms' ),
'SW' => __( 'Southwest', 'lifterlms' ),
'OU' => __( 'West', 'lifterlms' ),
),
'CN' => array(
'AH' => __( 'Anhui', 'lifterlms' ),
'BJ' => __( 'Beijing', 'lifterlms' ),
'CQ' => __( 'Chongqing', 'lifterlms' ),
'FJ' => __( 'Fujian', 'lifterlms' ),
'GS' => __( 'Gansu', 'lifterlms' ),
'GD' => __( 'Guangdong', 'lifterlms' ),
'GX' => __( 'Guangxi Zhuang Autonomous Region', 'lifterlms' ),
'GZ' => __( 'Guizhou', 'lifterlms' ),
'HI' => __( 'Hainan', 'lifterlms' ),
'HE' => __( 'Hebei', 'lifterlms' ),
'HL' => __( 'Heilongjiang', 'lifterlms' ),
'HA' => __( 'Henan', 'lifterlms' ),
'HK' => __( 'Hong Kong', 'lifterlms' ),
'HB' => __( 'Hubei', 'lifterlms' ),
'HN' => __( 'Hunan', 'lifterlms' ),
'NM' => __( 'Inner Mongolia', 'lifterlms' ),
'JS' => __( 'Jiangsu', 'lifterlms' ),
'JX' => __( 'Jiangxi', 'lifterlms' ),
'JL' => __( 'Jilin', 'lifterlms' ),
'TW-KEE' => __( 'Keelung', 'lifterlms' ),
'LN' => __( 'Liaoning', 'lifterlms' ),
'MO' => __( 'Macau', 'lifterlms' ),
'NX' => __( 'Ningxia Hui Autonomous Region', 'lifterlms' ),
'QH' => __( 'Qinghai', 'lifterlms' ),
'SN' => __( 'Shaanxi', 'lifterlms' ),
'SD' => __( 'Shandong', 'lifterlms' ),
'SH' => __( 'Shanghai', 'lifterlms' ),
'SX' => __( 'Shanxi', 'lifterlms' ),
'SC' => __( 'Sichuan', 'lifterlms' ),
'TW' => __( 'Taiwan Province, People\'s Republic of China', 'lifterlms' ),
'XZ' => __( 'Tibet Autonomous Region', 'lifterlms' ),
'XJ' => __( 'Xinjiang', 'lifterlms' ),
'YN' => __( 'Yunnan', 'lifterlms' ),
'ZJ' => __( 'Zhejiang', 'lifterlms' ),
),
'CO' => array(
'AMA' => __( 'Amazonas Department', 'lifterlms' ),
'ANT' => __( 'Antioquia Department', 'lifterlms' ),
'ARA' => __( 'Arauca Department', 'lifterlms' ),
'SAP' => __( 'Archipelago of Saint Andréws, Providence and Saint Catalina', 'lifterlms' ),
'ATL' => __( 'Atlántico Department', 'lifterlms' ),
'BOL' => __( 'Bolívar Department', 'lifterlms' ),
'BOY' => __( 'Boyacá Department', 'lifterlms' ),
'CAL' => __( 'Caldas Department', 'lifterlms' ),
'CAQ' => __( 'Caquetá Department', 'lifterlms' ),
'CAS' => __( 'Casanare Department', 'lifterlms' ),
'CAU' => __( 'Cauca Department', 'lifterlms' ),
'CES' => __( 'Cesar Department', 'lifterlms' ),
'CHO' => __( 'Chocó Department', 'lifterlms' ),
'CUN' => __( 'Cundinamarca Department', 'lifterlms' ),
'COR' => __( 'Córdoba Department', 'lifterlms' ),
'GUA' => __( 'Guainía Department', 'lifterlms' ),
'GUV' => __( 'Guaviare Department', 'lifterlms' ),
'HUI' => __( 'Huila Department', 'lifterlms' ),
'LAG' => __( 'La Guajira Department', 'lifterlms' ),
'MAG' => __( 'Magdalena Department', 'lifterlms' ),
'MET' => __( 'Meta', 'lifterlms' ),
'NAR' => __( 'Nariño Department', 'lifterlms' ),
'NSA' => __( 'Norte de Santander Department', 'lifterlms' ),
'PUT' => __( 'Putumayo Department', 'lifterlms' ),
'QUI' => __( 'Quindío Department', 'lifterlms' ),
'RIS' => __( 'Risaralda Department', 'lifterlms' ),
'SAN' => __( 'Santander Department', 'lifterlms' ),
'SUC' => __( 'Sucre Department', 'lifterlms' ),
'TOL' => __( 'Tolima Department', 'lifterlms' ),
'VAC' => __( 'Valle del Cauca Department', 'lifterlms' ),
'VAU' => __( 'Vaupés Department', 'lifterlms' ),
'VID' => __( 'Vichada Department', 'lifterlms' ),
),
'CR' => array(
'A' => __( 'Alajuela Province', 'lifterlms' ),
'G' => __( 'Guanacaste Province', 'lifterlms' ),
'H' => __( 'Heredia Province', 'lifterlms' ),
'L' => __( 'Limón Province', 'lifterlms' ),
'C' => __( 'Provincia de Cartago', 'lifterlms' ),
'P' => __( 'Puntarenas Province', 'lifterlms' ),
'SJ' => __( 'San José Province', 'lifterlms' ),
),
'CU' => array(
'10' => __( 'Las Tunas Province', 'lifterlms' ),
'11' => __( 'Holguín Province', 'lifterlms' ),
'12' => __( 'Granma Province', 'lifterlms' ),
'13' => __( 'Santiago de Cuba Province', 'lifterlms' ),
'14' => __( 'Guantánamo Province', 'lifterlms' ),
'15' => __( 'Artemisa Province', 'lifterlms' ),
'16' => __( 'Mayabeque Province', 'lifterlms' ),
'99' => __( 'Isla de la Juventud', 'lifterlms' ),
'09' => __( 'Camagüey Province', 'lifterlms' ),
'08' => __( 'Ciego de Ávila Province', 'lifterlms' ),
'06' => __( 'Cienfuegos Province', 'lifterlms' ),
'03' => __( 'Havana Province', 'lifterlms' ),
'04' => __( 'Matanzas Province', 'lifterlms' ),
'01' => __( 'Pinar del Río Province', 'lifterlms' ),
'07' => __( 'Sancti Spíritus Province', 'lifterlms' ),
'05' => __( 'Villa Clara Province', 'lifterlms' ),
),
'CV' => array(
'B' => __( 'Barlavento Islands', 'lifterlms' ),
'BV' => __( 'Boa Vista', 'lifterlms' ),
'BR' => __( 'Brava', 'lifterlms' ),
'MA' => __( 'Maio Municipality', 'lifterlms' ),
'MO' => __( 'Mosteiros', 'lifterlms' ),
'PA' => __( 'Paul', 'lifterlms' ),
'PN' => __( 'Porto Novo', 'lifterlms' ),
'PR' => __( 'Praia', 'lifterlms' ),
'RB' => __( 'Ribeira Brava Municipality', 'lifterlms' ),
'RG' => __( 'Ribeira Grande', 'lifterlms' ),
'RS' => __( 'Ribeira Grande de Santiago', 'lifterlms' ),
'SL' => __( 'Sal', 'lifterlms' ),
'CA' => __( 'Santa Catarina', 'lifterlms' ),
'CF' => __( 'Santa Catarina do Fogo', 'lifterlms' ),
'CR' => __( 'Santa Cruz', 'lifterlms' ),
'S' => __( 'Sotavento Islands', 'lifterlms' ),
'SD' => __( 'São Domingos', 'lifterlms' ),
'SF' => __( 'São Filipe', 'lifterlms' ),