tzinfo 1.2.7 → 1.2.8

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of tzinfo might be problematic. Click here for more details.

Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/CHANGES.md +11 -0
  5. data/README.md +1 -1
  6. data/lib/tzinfo.rb +3 -0
  7. data/lib/tzinfo/annual_rules.rb +51 -0
  8. data/lib/tzinfo/posix_time_zone_parser.rb +136 -0
  9. data/lib/tzinfo/time_or_datetime.rb +11 -0
  10. data/lib/tzinfo/transition_rule.rb +325 -0
  11. data/lib/tzinfo/zoneinfo_data_source.rb +2 -1
  12. data/lib/tzinfo/zoneinfo_timezone_info.rb +255 -40
  13. data/test/tc_annual_rules.rb +95 -0
  14. data/test/tc_posix_time_zone_parser.rb +261 -0
  15. data/test/tc_time_or_datetime.rb +14 -0
  16. data/test/tc_transition_rule.rb +663 -0
  17. data/test/tc_zoneinfo_timezone_info.rb +952 -113
  18. data/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +5 -5
  19. data/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +13 -1
  20. data/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +13 -1
  21. data/test/tzinfo-data/tzinfo/data/definitions/EST.rb +1 -1
  22. data/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +2 -2
  23. data/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +2 -2
  24. data/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +1 -1
  25. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +15 -3
  26. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +13 -1
  27. data/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +13 -1
  28. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +15 -3
  29. data/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +19 -4
  30. data/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +1 -1
  31. data/test/tzinfo-data/tzinfo/data/indexes/countries.rb +197 -184
  32. data/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +60 -47
  33. data/test/tzinfo-data/tzinfo/data/version.rb +9 -3
  34. data/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
  35. data/test/zoneinfo/America/New_York +0 -0
  36. data/test/zoneinfo/Australia/Melbourne +0 -0
  37. data/test/zoneinfo/EST +0 -0
  38. data/test/zoneinfo/Etc/UTC +0 -0
  39. data/test/zoneinfo/Europe/Amsterdam +0 -0
  40. data/test/zoneinfo/Europe/Andorra +0 -0
  41. data/test/zoneinfo/Europe/London +0 -0
  42. data/test/zoneinfo/Europe/Paris +0 -0
  43. data/test/zoneinfo/Europe/Prague +0 -0
  44. data/test/zoneinfo/Factory +0 -0
  45. data/test/zoneinfo/iso3166.tab +13 -14
  46. data/test/zoneinfo/leapseconds +38 -21
  47. data/test/zoneinfo/posix/Europe/London +0 -0
  48. data/test/zoneinfo/posixrules +0 -0
  49. data/test/zoneinfo/right/Europe/London +0 -0
  50. data/test/zoneinfo/zone.tab +172 -159
  51. data/test/zoneinfo/zone1970.tab +185 -170
  52. data/tzinfo.gemspec +1 -1
  53. metadata +9 -3
  54. metadata.gz.sig +0 -0
@@ -1,7 +1,7 @@
1
1
  # encoding: UTF-8
2
2
 
3
3
  # This file contains data derived from the IANA Time Zone Database
4
- # (http://www.iana.org/time-zones).
4
+ # (https://www.iana.org/time-zones).
5
5
 
6
6
  module TZInfo
7
7
  module Data
@@ -11,54 +11,54 @@ module TZInfo
11
11
 
12
12
  timezone 'Africa/Abidjan'
13
13
  timezone 'Africa/Accra'
14
- timezone 'Africa/Addis_Ababa'
14
+ linked_timezone 'Africa/Addis_Ababa'
15
15
  timezone 'Africa/Algiers'
16
- timezone 'Africa/Asmara'
16
+ linked_timezone 'Africa/Asmara'
17
17
  linked_timezone 'Africa/Asmera'
18
18
  linked_timezone 'Africa/Bamako'
19
- timezone 'Africa/Bangui'
19
+ linked_timezone 'Africa/Bangui'
20
20
  linked_timezone 'Africa/Banjul'
21
21
  timezone 'Africa/Bissau'
22
- timezone 'Africa/Blantyre'
23
- timezone 'Africa/Brazzaville'
24
- timezone 'Africa/Bujumbura'
22
+ linked_timezone 'Africa/Blantyre'
23
+ linked_timezone 'Africa/Brazzaville'
24
+ linked_timezone 'Africa/Bujumbura'
25
25
  timezone 'Africa/Cairo'
26
26
  timezone 'Africa/Casablanca'
27
27
  timezone 'Africa/Ceuta'
28
28
  linked_timezone 'Africa/Conakry'
29
29
  linked_timezone 'Africa/Dakar'
30
- timezone 'Africa/Dar_es_Salaam'
31
- timezone 'Africa/Djibouti'
32
- timezone 'Africa/Douala'
30
+ linked_timezone 'Africa/Dar_es_Salaam'
31
+ linked_timezone 'Africa/Djibouti'
32
+ linked_timezone 'Africa/Douala'
33
33
  timezone 'Africa/El_Aaiun'
34
34
  linked_timezone 'Africa/Freetown'
35
- timezone 'Africa/Gaborone'
36
- timezone 'Africa/Harare'
35
+ linked_timezone 'Africa/Gaborone'
36
+ linked_timezone 'Africa/Harare'
37
37
  timezone 'Africa/Johannesburg'
38
- linked_timezone 'Africa/Juba'
39
- timezone 'Africa/Kampala'
38
+ timezone 'Africa/Juba'
39
+ linked_timezone 'Africa/Kampala'
40
40
  timezone 'Africa/Khartoum'
41
- timezone 'Africa/Kigali'
42
- timezone 'Africa/Kinshasa'
41
+ linked_timezone 'Africa/Kigali'
42
+ linked_timezone 'Africa/Kinshasa'
43
43
  timezone 'Africa/Lagos'
44
- timezone 'Africa/Libreville'
44
+ linked_timezone 'Africa/Libreville'
45
45
  linked_timezone 'Africa/Lome'
46
- timezone 'Africa/Luanda'
47
- timezone 'Africa/Lubumbashi'
48
- timezone 'Africa/Lusaka'
49
- timezone 'Africa/Malabo'
46
+ linked_timezone 'Africa/Luanda'
47
+ linked_timezone 'Africa/Lubumbashi'
48
+ linked_timezone 'Africa/Lusaka'
49
+ linked_timezone 'Africa/Malabo'
50
50
  timezone 'Africa/Maputo'
51
- timezone 'Africa/Maseru'
52
- timezone 'Africa/Mbabane'
53
- timezone 'Africa/Mogadishu'
51
+ linked_timezone 'Africa/Maseru'
52
+ linked_timezone 'Africa/Mbabane'
53
+ linked_timezone 'Africa/Mogadishu'
54
54
  timezone 'Africa/Monrovia'
55
55
  timezone 'Africa/Nairobi'
56
56
  timezone 'Africa/Ndjamena'
57
- timezone 'Africa/Niamey'
57
+ linked_timezone 'Africa/Niamey'
58
58
  linked_timezone 'Africa/Nouakchott'
59
59
  linked_timezone 'Africa/Ouagadougou'
60
- timezone 'Africa/Porto-Novo'
61
- linked_timezone 'Africa/Sao_Tome'
60
+ linked_timezone 'Africa/Porto-Novo'
61
+ timezone 'Africa/Sao_Tome'
62
62
  linked_timezone 'Africa/Timbuktu'
63
63
  timezone 'Africa/Tripoli'
64
64
  timezone 'Africa/Tunis'
@@ -66,7 +66,7 @@ module TZInfo
66
66
  timezone 'America/Adak'
67
67
  timezone 'America/Anchorage'
68
68
  linked_timezone 'America/Anguilla'
69
- timezone 'America/Antigua'
69
+ linked_timezone 'America/Antigua'
70
70
  timezone 'America/Araguaina'
71
71
  timezone 'America/Argentina/Buenos_Aires'
72
72
  timezone 'America/Argentina/Catamarca'
@@ -101,7 +101,7 @@ module TZInfo
101
101
  timezone 'America/Caracas'
102
102
  linked_timezone 'America/Catamarca'
103
103
  timezone 'America/Cayenne'
104
- timezone 'America/Cayman'
104
+ linked_timezone 'America/Cayman'
105
105
  timezone 'America/Chicago'
106
106
  timezone 'America/Chihuahua'
107
107
  linked_timezone 'America/Coral_Harbour'
@@ -120,10 +120,11 @@ module TZInfo
120
120
  timezone 'America/Eirunepe'
121
121
  timezone 'America/El_Salvador'
122
122
  linked_timezone 'America/Ensenada'
123
+ timezone 'America/Fort_Nelson'
123
124
  linked_timezone 'America/Fort_Wayne'
124
125
  timezone 'America/Fortaleza'
125
126
  timezone 'America/Glace_Bay'
126
- timezone 'America/Godthab'
127
+ linked_timezone 'America/Godthab'
127
128
  timezone 'America/Goose_Bay'
128
129
  timezone 'America/Grand_Turk'
129
130
  linked_timezone 'America/Grenada'
@@ -173,7 +174,7 @@ module TZInfo
173
174
  timezone 'America/Moncton'
174
175
  timezone 'America/Monterrey'
175
176
  timezone 'America/Montevideo'
176
- timezone 'America/Montreal'
177
+ linked_timezone 'America/Montreal'
177
178
  linked_timezone 'America/Montserrat'
178
179
  timezone 'America/Nassau'
179
180
  timezone 'America/New_York'
@@ -183,6 +184,7 @@ module TZInfo
183
184
  timezone 'America/North_Dakota/Beulah'
184
185
  timezone 'America/North_Dakota/Center'
185
186
  timezone 'America/North_Dakota/New_Salem'
187
+ timezone 'America/Nuuk'
186
188
  timezone 'America/Ojinaga'
187
189
  timezone 'America/Panama'
188
190
  timezone 'America/Pangnirtung'
@@ -193,6 +195,7 @@ module TZInfo
193
195
  linked_timezone 'America/Porto_Acre'
194
196
  timezone 'America/Porto_Velho'
195
197
  timezone 'America/Puerto_Rico'
198
+ timezone 'America/Punta_Arenas'
196
199
  timezone 'America/Rainy_River'
197
200
  timezone 'America/Rankin_Inlet'
198
201
  timezone 'America/Recife'
@@ -200,7 +203,7 @@ module TZInfo
200
203
  timezone 'America/Resolute'
201
204
  timezone 'America/Rio_Branco'
202
205
  linked_timezone 'America/Rosario'
203
- timezone 'America/Santa_Isabel'
206
+ linked_timezone 'America/Santa_Isabel'
204
207
  timezone 'America/Santarem'
205
208
  timezone 'America/Santiago'
206
209
  timezone 'America/Santo_Domingo'
@@ -240,7 +243,7 @@ module TZInfo
240
243
  timezone 'Antarctica/Troll'
241
244
  timezone 'Antarctica/Vostok'
242
245
  linked_timezone 'Arctic/Longyearbyen'
243
- timezone 'Asia/Aden'
246
+ linked_timezone 'Asia/Aden'
244
247
  timezone 'Asia/Almaty'
245
248
  timezone 'Asia/Amman'
246
249
  timezone 'Asia/Anadyr'
@@ -248,10 +251,12 @@ module TZInfo
248
251
  timezone 'Asia/Aqtobe'
249
252
  timezone 'Asia/Ashgabat'
250
253
  linked_timezone 'Asia/Ashkhabad'
254
+ timezone 'Asia/Atyrau'
251
255
  timezone 'Asia/Baghdad'
252
- timezone 'Asia/Bahrain'
256
+ linked_timezone 'Asia/Bahrain'
253
257
  timezone 'Asia/Baku'
254
258
  timezone 'Asia/Bangkok'
259
+ timezone 'Asia/Barnaul'
255
260
  timezone 'Asia/Beirut'
256
261
  timezone 'Asia/Bishkek'
257
262
  timezone 'Asia/Brunei'
@@ -267,6 +272,7 @@ module TZInfo
267
272
  timezone 'Asia/Dili'
268
273
  timezone 'Asia/Dubai'
269
274
  timezone 'Asia/Dushanbe'
275
+ timezone 'Asia/Famagusta'
270
276
  timezone 'Asia/Gaza'
271
277
  linked_timezone 'Asia/Harbin'
272
278
  timezone 'Asia/Hebron'
@@ -289,24 +295,25 @@ module TZInfo
289
295
  timezone 'Asia/Krasnoyarsk'
290
296
  timezone 'Asia/Kuala_Lumpur'
291
297
  timezone 'Asia/Kuching'
292
- timezone 'Asia/Kuwait'
298
+ linked_timezone 'Asia/Kuwait'
293
299
  linked_timezone 'Asia/Macao'
294
300
  timezone 'Asia/Macau'
295
301
  timezone 'Asia/Magadan'
296
302
  timezone 'Asia/Makassar'
297
303
  timezone 'Asia/Manila'
298
- timezone 'Asia/Muscat'
304
+ linked_timezone 'Asia/Muscat'
299
305
  timezone 'Asia/Nicosia'
300
306
  timezone 'Asia/Novokuznetsk'
301
307
  timezone 'Asia/Novosibirsk'
302
308
  timezone 'Asia/Omsk'
303
309
  timezone 'Asia/Oral'
304
- timezone 'Asia/Phnom_Penh'
310
+ linked_timezone 'Asia/Phnom_Penh'
305
311
  timezone 'Asia/Pontianak'
306
312
  timezone 'Asia/Pyongyang'
307
313
  timezone 'Asia/Qatar'
314
+ timezone 'Asia/Qostanay'
308
315
  timezone 'Asia/Qyzylorda'
309
- timezone 'Asia/Rangoon'
316
+ linked_timezone 'Asia/Rangoon'
310
317
  timezone 'Asia/Riyadh'
311
318
  linked_timezone 'Asia/Saigon'
312
319
  timezone 'Asia/Sakhalin'
@@ -323,14 +330,16 @@ module TZInfo
323
330
  linked_timezone 'Asia/Thimbu'
324
331
  timezone 'Asia/Thimphu'
325
332
  timezone 'Asia/Tokyo'
333
+ timezone 'Asia/Tomsk'
326
334
  linked_timezone 'Asia/Ujung_Pandang'
327
335
  timezone 'Asia/Ulaanbaatar'
328
336
  linked_timezone 'Asia/Ulan_Bator'
329
337
  timezone 'Asia/Urumqi'
330
338
  timezone 'Asia/Ust-Nera'
331
- timezone 'Asia/Vientiane'
339
+ linked_timezone 'Asia/Vientiane'
332
340
  timezone 'Asia/Vladivostok'
333
341
  timezone 'Asia/Yakutsk'
342
+ timezone 'Asia/Yangon'
334
343
  timezone 'Asia/Yekaterinburg'
335
344
  timezone 'Asia/Yerevan'
336
345
  timezone 'Atlantic/Azores'
@@ -376,7 +385,6 @@ module TZInfo
376
385
  timezone 'CST6CDT'
377
386
  linked_timezone 'Canada/Atlantic'
378
387
  linked_timezone 'Canada/Central'
379
- linked_timezone 'Canada/East-Saskatchewan'
380
388
  linked_timezone 'Canada/Eastern'
381
389
  linked_timezone 'Canada/Mountain'
382
390
  linked_timezone 'Canada/Newfoundland'
@@ -422,12 +430,13 @@ module TZInfo
422
430
  timezone 'Etc/GMT-9'
423
431
  linked_timezone 'Etc/GMT0'
424
432
  linked_timezone 'Etc/Greenwich'
425
- timezone 'Etc/UCT'
433
+ linked_timezone 'Etc/UCT'
426
434
  timezone 'Etc/UTC'
427
435
  linked_timezone 'Etc/Universal'
428
436
  linked_timezone 'Etc/Zulu'
429
437
  timezone 'Europe/Amsterdam'
430
438
  timezone 'Europe/Andorra'
439
+ timezone 'Europe/Astrakhan'
431
440
  timezone 'Europe/Athens'
432
441
  linked_timezone 'Europe/Belfast'
433
442
  timezone 'Europe/Belgrade'
@@ -448,6 +457,7 @@ module TZInfo
448
457
  linked_timezone 'Europe/Jersey'
449
458
  timezone 'Europe/Kaliningrad'
450
459
  timezone 'Europe/Kiev'
460
+ timezone 'Europe/Kirov'
451
461
  timezone 'Europe/Lisbon'
452
462
  linked_timezone 'Europe/Ljubljana'
453
463
  timezone 'Europe/London'
@@ -468,6 +478,7 @@ module TZInfo
468
478
  timezone 'Europe/Samara'
469
479
  linked_timezone 'Europe/San_Marino'
470
480
  linked_timezone 'Europe/Sarajevo'
481
+ timezone 'Europe/Saratov'
471
482
  timezone 'Europe/Simferopol'
472
483
  linked_timezone 'Europe/Skopje'
473
484
  timezone 'Europe/Sofia'
@@ -475,6 +486,7 @@ module TZInfo
475
486
  timezone 'Europe/Tallinn'
476
487
  timezone 'Europe/Tirane'
477
488
  linked_timezone 'Europe/Tiraspol'
489
+ timezone 'Europe/Ulyanovsk'
478
490
  timezone 'Europe/Uzhgorod'
479
491
  linked_timezone 'Europe/Vaduz'
480
492
  linked_timezone 'Europe/Vatican'
@@ -485,6 +497,7 @@ module TZInfo
485
497
  linked_timezone 'Europe/Zagreb'
486
498
  timezone 'Europe/Zaporozhye'
487
499
  timezone 'Europe/Zurich'
500
+ timezone 'Factory'
488
501
  linked_timezone 'GB'
489
502
  linked_timezone 'GB-Eire'
490
503
  linked_timezone 'GMT'
@@ -495,16 +508,16 @@ module TZInfo
495
508
  timezone 'HST'
496
509
  linked_timezone 'Hongkong'
497
510
  linked_timezone 'Iceland'
498
- timezone 'Indian/Antananarivo'
511
+ linked_timezone 'Indian/Antananarivo'
499
512
  timezone 'Indian/Chagos'
500
513
  timezone 'Indian/Christmas'
501
514
  timezone 'Indian/Cocos'
502
- timezone 'Indian/Comoro'
515
+ linked_timezone 'Indian/Comoro'
503
516
  timezone 'Indian/Kerguelen'
504
517
  timezone 'Indian/Mahe'
505
518
  timezone 'Indian/Maldives'
506
519
  timezone 'Indian/Mauritius'
507
- timezone 'Indian/Mayotte'
520
+ linked_timezone 'Indian/Mayotte'
508
521
  timezone 'Indian/Reunion'
509
522
  linked_timezone 'Iran'
510
523
  linked_timezone 'Israel'
@@ -525,6 +538,7 @@ module TZInfo
525
538
  timezone 'PST8PDT'
526
539
  timezone 'Pacific/Apia'
527
540
  timezone 'Pacific/Auckland'
541
+ timezone 'Pacific/Bougainville'
528
542
  timezone 'Pacific/Chatham'
529
543
  timezone 'Pacific/Chuuk'
530
544
  timezone 'Pacific/Easter'
@@ -544,7 +558,7 @@ module TZInfo
544
558
  timezone 'Pacific/Kwajalein'
545
559
  timezone 'Pacific/Majuro'
546
560
  timezone 'Pacific/Marquesas'
547
- timezone 'Pacific/Midway'
561
+ linked_timezone 'Pacific/Midway'
548
562
  timezone 'Pacific/Nauru'
549
563
  timezone 'Pacific/Niue'
550
564
  timezone 'Pacific/Norfolk'
@@ -556,7 +570,7 @@ module TZInfo
556
570
  linked_timezone 'Pacific/Ponape'
557
571
  timezone 'Pacific/Port_Moresby'
558
572
  timezone 'Pacific/Rarotonga'
559
- timezone 'Pacific/Saipan'
573
+ linked_timezone 'Pacific/Saipan'
560
574
  linked_timezone 'Pacific/Samoa'
561
575
  timezone 'Pacific/Tahiti'
562
576
  timezone 'Pacific/Tarawa'
@@ -583,7 +597,6 @@ module TZInfo
583
597
  linked_timezone 'US/Michigan'
584
598
  linked_timezone 'US/Mountain'
585
599
  linked_timezone 'US/Pacific'
586
- linked_timezone 'US/Pacific-New'
587
600
  linked_timezone 'US/Samoa'
588
601
  linked_timezone 'UTC'
589
602
  linked_timezone 'Universal'
@@ -1,14 +1,20 @@
1
1
  module TZInfo
2
2
  module Data
3
+ # TZInfo::Data version number.
4
+ VERSION = '1.2020.4'
5
+
3
6
  # TZInfo::Data version information.
4
7
  module Version
5
8
  # The format of the Ruby modules. The only format currently supported by
6
9
  # TZInfo is version 1.
7
10
  FORMAT = 1
8
-
9
- # The version of the {IANA Time Zone Database}[http://www.iana.org/time-zones]
11
+
12
+ # TZInfo::Data version number.
13
+ STRING = VERSION
14
+
15
+ # The version of the {IANA Time Zone Database}[https://www.iana.org/time-zones]
10
16
  # used to generate this version of TZInfo::Data.
11
- TZDATA = '2014f'
17
+ TZDATA = '2020d'
12
18
  end
13
19
  end
14
20
  end
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -3,15 +3,14 @@
3
3
  # This file is in the public domain, so clarified as of
4
4
  # 2009-05-17 by Arthur David Olson.
5
5
  #
6
- # From Paul Eggert (2014-07-18):
6
+ # From Paul Eggert (2015-05-02):
7
7
  # This file contains a table of two-letter country codes. Columns are
8
8
  # separated by a single tab. Lines beginning with '#' are comments.
9
- # Although all text currently uses ASCII encoding, this is planned to
10
- # change to UTF-8 soon. The columns of the table are as follows:
9
+ # All text uses UTF-8 encoding. The columns of the table are as follows:
11
10
  #
12
11
  # 1. ISO 3166-1 alpha-2 country code, current as of
13
- # ISO 3166-1 Newsletter VI-16 (2013-07-11). See: Updates on ISO 3166
14
- # http://www.iso.org/iso/home/standards/country_codes/updates_on_iso_3166.htm
12
+ # ISO 3166-1 N976 (2018-11-06). See: Updates on ISO 3166-1
13
+ # https://isotc.iso.org/livelink/livelink/Open/16944257
15
14
  # 2. The usual English name for the coded region,
16
15
  # chosen so that alphabetic sorting of subsets produces helpful lists.
17
16
  # This is not the same as the English name in the ISO 3166 tables.
@@ -38,7 +37,7 @@ AS Samoa (American)
38
37
  AT Austria
39
38
  AU Australia
40
39
  AW Aruba
41
- AX Aaland Islands
40
+ AX Åland Islands
42
41
  AZ Azerbaijan
43
42
  BA Bosnia & Herzegovina
44
43
  BB Barbados
@@ -53,7 +52,7 @@ BL St Barthelemy
53
52
  BM Bermuda
54
53
  BN Brunei
55
54
  BO Bolivia
56
- BQ Caribbean Netherlands
55
+ BQ Caribbean NL
57
56
  BR Brazil
58
57
  BS Bahamas
59
58
  BT Bhutan
@@ -67,7 +66,7 @@ CD Congo (Dem. Rep.)
67
66
  CF Central African Rep.
68
67
  CG Congo (Rep.)
69
68
  CH Switzerland
70
- CI Cote d'Ivoire
69
+ CI Côte d'Ivoire
71
70
  CK Cook Islands
72
71
  CL Chile
73
72
  CM Cameroon
@@ -76,7 +75,7 @@ CO Colombia
76
75
  CR Costa Rica
77
76
  CU Cuba
78
77
  CV Cape Verde
79
- CW Curacao
78
+ CW Curaçao
80
79
  CX Christmas Island
81
80
  CY Cyprus
82
81
  CZ Czech Republic
@@ -164,10 +163,10 @@ MA Morocco
164
163
  MC Monaco
165
164
  MD Moldova
166
165
  ME Montenegro
167
- MF St Martin (French part)
166
+ MF St Martin (French)
168
167
  MG Madagascar
169
168
  MH Marshall Islands
170
- MK Macedonia
169
+ MK North Macedonia
171
170
  ML Mali
172
171
  MM Myanmar (Burma)
173
172
  MN Mongolia
@@ -211,7 +210,7 @@ PT Portugal
211
210
  PW Palau
212
211
  PY Paraguay
213
212
  QA Qatar
214
- RE Reunion
213
+ RE Réunion
215
214
  RO Romania
216
215
  RS Serbia
217
216
  RU Russia
@@ -234,9 +233,9 @@ SR Suriname
234
233
  SS South Sudan
235
234
  ST Sao Tome & Principe
236
235
  SV El Salvador
237
- SX St Maarten (Dutch part)
236
+ SX St Maarten (Dutch)
238
237
  SY Syria
239
- SZ Swaziland
238
+ SZ Eswatini (Swaziland)
240
239
  TC Turks & Caicos Is
241
240
  TD Chad
242
241
  TF French Southern & Antarctic Lands