In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/2107eff2814ab1ff8e619b812de17868cb58bd68?hp=8593d8e7bf09e8da95a3fb5cce4041e0577208a6>
- Log ----------------------------------------------------------------- commit 2107eff2814ab1ff8e619b812de17868cb58bd68 Author: Sullivan Beck <[email protected]> Date: Mon Mar 2 18:37:20 2015 -0500 Bump Locale-Codes from 3.33 to 3.34 The core modules Locale::Country, Locale::Language, and Locale::Currency (all part of the Locale-Codes distribution) should be updated on a regular basis. They contain "codes" from various Internet standards which change over time. ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- cpan/Locale-Codes/lib/Locale/Codes.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes.pod | 2 +- cpan/Locale-Codes/lib/Locale/Codes/API.pod | 2 +- cpan/Locale-Codes/lib/Locale/Codes/Changes.pod | 12 +- cpan/Locale-Codes/lib/Locale/Codes/Constants.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes/Constants.pod | 2 +- cpan/Locale-Codes/lib/Locale/Codes/Country.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes/Country.pod | 2 +- .../Locale-Codes/lib/Locale/Codes/Country_Codes.pm | 4952 +- .../lib/Locale/Codes/Country_Retired.pm | 28 +- cpan/Locale-Codes/lib/Locale/Codes/Currency.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes/Currency.pod | 2 +- .../lib/Locale/Codes/Currency_Codes.pm | 1005 +- .../lib/Locale/Codes/Currency_Retired.pm | 8 +- cpan/Locale-Codes/lib/Locale/Codes/LangExt.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes/LangExt.pod | 2 +- .../Locale-Codes/lib/Locale/Codes/LangExt_Codes.pm | 1010 +- .../lib/Locale/Codes/LangExt_Retired.pm | 6 +- cpan/Locale-Codes/lib/Locale/Codes/LangFam.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes/LangFam.pod | 2 +- .../Locale-Codes/lib/Locale/Codes/LangFam_Codes.pm | 4 +- .../lib/Locale/Codes/LangFam_Retired.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes/LangVar.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes/LangVar.pod | 2 +- .../Locale-Codes/lib/Locale/Codes/LangVar_Codes.pm | 332 +- .../lib/Locale/Codes/LangVar_Retired.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes/Language.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes/Language.pod | 2 +- .../lib/Locale/Codes/Language_Codes.pm | 60277 +++++++++---------- .../lib/Locale/Codes/Language_Retired.pm | 71 +- cpan/Locale-Codes/lib/Locale/Codes/Script.pm | 4 +- cpan/Locale-Codes/lib/Locale/Codes/Script.pod | 2 +- cpan/Locale-Codes/lib/Locale/Codes/Script_Codes.pm | 4 +- .../lib/Locale/Codes/Script_Retired.pm | 4 +- cpan/Locale-Codes/lib/Locale/Country.pm | 4 +- cpan/Locale-Codes/lib/Locale/Country.pod | 2 +- cpan/Locale-Codes/lib/Locale/Currency.pm | 4 +- cpan/Locale-Codes/lib/Locale/Currency.pod | 2 +- cpan/Locale-Codes/lib/Locale/Language.pm | 4 +- cpan/Locale-Codes/lib/Locale/Language.pod | 2 +- cpan/Locale-Codes/lib/Locale/Script.pm | 4 +- cpan/Locale-Codes/lib/Locale/Script.pod | 2 +- cpan/Locale-Codes/t/alias_code.t | 8 +- cpan/Locale-Codes/t/alias_code_old.t | 8 +- cpan/Locale-Codes/t/code2country.t | 10 +- cpan/Locale-Codes/t/code2country_old.t | 10 +- cpan/Locale-Codes/t/country.t | 6 +- cpan/Locale-Codes/t/country_old.t | 4 +- cpan/Locale-Codes/t/testfunc.pl | 2 +- 50 files changed, 33951 insertions(+), 33900 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 175a232..0e0b890 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -697,7 +697,7 @@ use File::Glob qw(:case); }, 'Locale-Codes' => { - 'DISTRIBUTION' => 'SBECK/Locale-Codes-3.33.tar.gz', + 'DISTRIBUTION' => 'SBECK/Locale-Codes-3.34.tar.gz', 'FILES' => q[cpan/Locale-Codes], 'EXCLUDED' => [ qw( README.first diff --git a/cpan/Locale-Codes/lib/Locale/Codes.pm b/cpan/Locale-Codes/lib/Locale/Codes.pm index e1511e6..855c377 100644 --- a/cpan/Locale-Codes/lib/Locale/Codes.pm +++ b/cpan/Locale-Codes/lib/Locale/Codes.pm @@ -1,7 +1,7 @@ package Locale::Codes; # Copyright (C) 2001 Canon Research Centre Europe (CRE). # Copyright (C) 2002-2009 Neil Bowers -# Copyright (c) 2010-2014 Sullivan Beck +# Copyright (c) 2010-2015 Sullivan Beck # This program is free software; you can redistribute it and/or modify it # under the same terms as Perl itself. @@ -31,7 +31,7 @@ our($VERSION,%Data,%Retired); # $Retired{ TYPE }{ CODESET }{ code }{ CODE } = NAME # { name }{ NAME } = [CODE,NAME] (the key is lowercase) -$VERSION='3.33'; +$VERSION='3.34'; #======================================================================= # diff --git a/cpan/Locale-Codes/lib/Locale/Codes.pod b/cpan/Locale-Codes/lib/Locale/Codes.pod index 672cdf0..430a464 100644 --- a/cpan/Locale-Codes/lib/Locale/Codes.pod +++ b/cpan/Locale-Codes/lib/Locale/Codes.pod @@ -289,7 +289,7 @@ perl problem tracker at: Copyright (c) 1997-2001 Canon Research Centre Europe (CRE). Copyright (c) 2001 Michael Hennecke (Locale::Currency) Copyright (c) 2001-2010 Neil Bowers - Copyright (c) 2010-2014 Sullivan Beck + Copyright (c) 2010-2015 Sullivan Beck This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/cpan/Locale-Codes/lib/Locale/Codes/API.pod b/cpan/Locale-Codes/lib/Locale/Codes/API.pod index 110719d..4353e19 100644 --- a/cpan/Locale-Codes/lib/Locale/Codes/API.pod +++ b/cpan/Locale-Codes/lib/Locale/Codes/API.pod @@ -312,7 +312,7 @@ Currently maintained by Sullivan Beck ([email protected]). Copyright (c) 1997-2001 Canon Research Centre Europe (CRE). Copyright (c) 2001-2010 Neil Bowers - Copyright (c) 2010-2014 Sullivan Beck + Copyright (c) 2010-2015 Sullivan Beck This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Changes.pod b/cpan/Locale-Codes/lib/Locale/Codes/Changes.pod index d3bf7fc..697a2e4 100644 --- a/cpan/Locale-Codes/lib/Locale/Codes/Changes.pod +++ b/cpan/Locale-Codes/lib/Locale/Codes/Changes.pod @@ -22,7 +22,15 @@ September, December). I will also check on request, so if a code changes that you use, feel free to contact me. Any time there are new codes, I will add them to the module and release a new version. -=head1 VERSION 3.34 (planned 2015-03-01; sbeck) +=head1 VERSION 3.37 (planned 2015-12-01; sbeck) + +=head1 VERSION 3.36 (planned 2015-09-01; sbeck) + +=head1 VERSION 3.35 (planned 2015-06-01; sbeck) + +=head1 VERSION 3.34 (2015-03-01; sbeck) + +NEW CODE(s) =head1 VERSION 3.33 (2014-12-01; sbeck) @@ -732,7 +740,7 @@ Currently maintained by Sullivan Beck ([email protected]). =head1 COPYRIGHT Copyright (c) 2001-2010 Neil Bowers - Copyright (c) 2010-2014 Sullivan Beck + Copyright (c) 2010-2015 Sullivan Beck This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Constants.pm b/cpan/Locale-Codes/lib/Locale/Codes/Constants.pm index 7d4f64f..256d695 100644 --- a/cpan/Locale-Codes/lib/Locale/Codes/Constants.pm +++ b/cpan/Locale-Codes/lib/Locale/Codes/Constants.pm @@ -1,7 +1,7 @@ package Locale::Codes::Constants; # Copyright (C) 2001 Canon Research Centre Europe (CRE). # Copyright (C) 2002-2009 Neil Bowers -# Copyright (c) 2010-2014 Sullivan Beck +# Copyright (c) 2010-2015 Sullivan Beck # This program is free software; you can redistribute it and/or modify it # under the same terms as Perl itself. @@ -17,7 +17,7 @@ require Exporter; our($VERSION,@ISA,@EXPORT); our(%ALL_CODESETS); -$VERSION='3.33'; +$VERSION='3.34'; @ISA = qw(Exporter); @EXPORT = qw(LOCALE_CODE_ALPHA_2 LOCALE_CODE_ALPHA_3 diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Constants.pod b/cpan/Locale-Codes/lib/Locale/Codes/Constants.pod index 04bc28d..0ad1335 100644 --- a/cpan/Locale-Codes/lib/Locale/Codes/Constants.pod +++ b/cpan/Locale-Codes/lib/Locale/Codes/Constants.pod @@ -32,7 +32,7 @@ Currently maintained by Sullivan Beck ([email protected]). Copyright (c) 1997-2001 Canon Research Centre Europe (CRE). Copyright (c) 2001-2010 Neil Bowers - Copyright (c) 2010-2014 Sullivan Beck + Copyright (c) 2010-2015 Sullivan Beck This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Country.pm b/cpan/Locale-Codes/lib/Locale/Codes/Country.pm index aa5f842..2fc76c4 100644 --- a/cpan/Locale-Codes/lib/Locale/Codes/Country.pm +++ b/cpan/Locale-Codes/lib/Locale/Codes/Country.pm @@ -1,7 +1,7 @@ package Locale::Codes::Country; # Copyright (C) 2001 Canon Research Centre Europe (CRE). # Copyright (C) 2002-2009 Neil Bowers -# Copyright (c) 2010-2014 Sullivan Beck +# Copyright (c) 2010-2015 Sullivan Beck # This program is free software; you can redistribute it and/or modify it # under the same terms as Perl itself. @@ -22,7 +22,7 @@ use Locale::Codes::Country_Retired; our($VERSION,@ISA,@EXPORT,@EXPORT_OK); -$VERSION='3.33'; +$VERSION='3.34'; @ISA = qw(Exporter); @EXPORT = qw(code2country country2code diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Country.pod b/cpan/Locale-Codes/lib/Locale/Codes/Country.pod index 8c0e80b..e1d8646 100644 --- a/cpan/Locale-Codes/lib/Locale/Codes/Country.pod +++ b/cpan/Locale-Codes/lib/Locale/Codes/Country.pod @@ -198,7 +198,7 @@ Currently maintained by Sullivan Beck ([email protected]). Copyright (c) 1997-2001 Canon Research Centre Europe (CRE). Copyright (c) 2001-2010 Neil Bowers - Copyright (c) 2010-2014 Sullivan Beck + Copyright (c) 2010-2015 Sullivan Beck This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/cpan/Locale-Codes/lib/Locale/Codes/Country_Codes.pm b/cpan/Locale-Codes/lib/Locale/Codes/Country_Codes.pm index 556e447..4a0ffdb 100644 --- a/cpan/Locale-Codes/lib/Locale/Codes/Country_Codes.pm +++ b/cpan/Locale-Codes/lib/Locale/Codes/Country_Codes.pm @@ -3,7 +3,7 @@ Locale::Codes::Country_Codes; # This file was automatically generated. Any changes to this file will # be lost the next time 'harvest_data' is run. -# Generated on: Fri Nov 21 19:24:19 GMT 2014 +# Generated on: Thu Feb 19 20:23:53 GMT 2015 use strict; require 5.006; @@ -11,7 +11,7 @@ use warnings; use utf8; our($VERSION); -$VERSION='3.33'; +$VERSION='3.34'; $Locale::Codes::Data{'country'}{'id'} = '0250'; @@ -20,10 +20,10 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Afghanistan), ], q(0002) => [ - q(Albania), + q(Aland Islands), ], q(0003) => [ - q(Antarctica), + q(Albania), ], q(0004) => [ q(Algeria), @@ -38,150 +38,142 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Angola), ], q(0008) => [ - q(Antigua and Barbuda), + q(Anguilla), ], q(0009) => [ - q(Azerbaijan), + q(Antarctica), ], q(0010) => [ - q(Argentina), + q(Antigua and Barbuda), ], q(0011) => [ - q(Australia), + q(Argentina), ], q(0012) => [ - q(Austria), + q(Armenia), ], q(0013) => [ - q(Bahamas), - q(The Bahamas), - q(Bahamas, The), - q(Bahamas (The)), + q(Aruba), ], q(0014) => [ - q(Bahrain), + q(Australia), ], q(0015) => [ - q(Bangladesh), + q(Austria), ], q(0016) => [ - q(Armenia), + q(Azerbaijan), ], q(0017) => [ - q(Barbados), + q(Bahamas), + q(The Bahamas), + q(Bahamas, The), + q(Bahamas (The)), ], q(0018) => [ - q(Belgium), + q(Bahrain), ], q(0019) => [ - q(Bermuda), + q(Bangladesh), ], q(0020) => [ - q(Bhutan), + q(Barbados), ], q(0021) => [ - q(Bolivia, Plurinational State of), - q(Bolivia (Plurinational State of)), - q(Plurinational State of Bolivia), - q(Bolivia), + q(Belarus), ], q(0022) => [ - q(Bosnia and Herzegovina), + q(Belgium), ], q(0023) => [ - q(Botswana), + q(Belize), ], q(0024) => [ - q(Bouvet Island), + q(Benin), ], q(0025) => [ - q(Brazil), + q(Bermuda), ], q(0026) => [ - q(Belize), + q(Bhutan), ], q(0027) => [ - q(British Indian Ocean Territory), - q(The British Indian Ocean Territory), - q(British Indian Ocean Territory, The), - q(British Indian Ocean Territory (The)), + q(Bolivia (Plurinational State of)), + q(Bolivia, Plurinational State of), + q(Plurinational State of Bolivia), + q(Bolivia), ], q(0028) => [ - q(Solomon Islands), - q(The Solomon Islands), - q(Solomon Islands, The), - q(Solomon Islands (The)), + q(Bonaire, Sint Eustatius and Saba), ], q(0029) => [ - q(Virgin Islands (British)), - q(British Virgin Islands), - q(Virgin Islands, British), - q(Virgin Islands (UK)), + q(Bosnia and Herzegovina), ], q(0030) => [ - q(Brunei Darussalam), - q(Brunei), + q(Botswana), ], q(0031) => [ - q(Bulgaria), + q(Bouvet Island), ], q(0032) => [ - q(Myanmar), - q(The Republic of the Union of Myanmar), - q(Republic of the Union of Myanmar), - q(Burma), + q(Brazil), ], q(0033) => [ - q(Burundi), + q(British Indian Ocean Territory), + q(The British Indian Ocean Territory), + q(British Indian Ocean Territory, The), + q(British Indian Ocean Territory (The)), ], q(0034) => [ - q(Belarus), + q(Brunei Darussalam), + q(Brunei), ], q(0035) => [ - q(Cambodia), + q(Bulgaria), ], q(0036) => [ - q(Cameroon), + q(Burkina Faso), ], q(0037) => [ - q(Canada), + q(Burundi), ], q(0038) => [ q(Cabo Verde), ], q(0039) => [ + q(Cambodia), + ], + q(0040) => [ + q(Cameroon), + ], + q(0041) => [ + q(Canada), + ], + q(0042) => [ q(Cayman Islands), q(The Cayman Islands), q(Cayman Islands, The), q(Cayman Islands (The)), ], - q(0040) => [ + q(0043) => [ q(Central African Republic), q(The Central African Republic), q(Central African Republic, The), q(Central African Republic (The)), ], - q(0041) => [ - q(Sri Lanka), - ], - q(0042) => [ + q(0044) => [ q(Chad), ], - q(0043) => [ + q(0045) => [ q(Chile), ], - q(0044) => [ + q(0046) => [ q(China), ], - q(0045) => [ - q(Taiwan (Province of China)), - q(Taiwan), - q(Taiwan, Province of China), - ], - q(0046) => [ + q(0047) => [ q(Christmas Island), ], - q(0047) => [ + q(0048) => [ q(Cocos (Keeling) Islands), q(The Cocos (Keeling) Islands), q(Cocos (Keeling) Islands, The), @@ -191,25 +183,16 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Keeling Islands), q(The Keeling Islands), ], - q(0048) => [ - q(Colombia), - ], q(0049) => [ - q(Comoros), + q(Colombia), ], q(0050) => [ - q(Mayotte), + q(Comoros), + q(The Comoros), + q(Comoros, The), + q(Comoros (The)), ], q(0051) => [ - q(Congo), - q(The Republic of the Congo), - q(Republic of the Congo), - q(Congo, The Republic of the), - q(Congo, Republic of the), - q(Congo-Brazzaville), - q(Congo (Brazzaville)), - ], - q(0052) => [ q(Congo (The Democratic Republic of the)), q(Congo, The Democratic Republic of the), q(Congo, Democratic Republic of the), @@ -218,6 +201,18 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Congo-Kinshasa), q(Congo (Kinshasa)), ], + q(0052) => [ + q(Congo), + q(The Congo), + q(Congo, The), + q(Congo (The)), + q(The Republic of the Congo), + q(Republic of the Congo), + q(Congo, The Republic of the), + q(Congo, Republic of the), + q(Congo-Brazzaville), + q(Congo (Brazzaville)), + ], q(0053) => [ q(Cook Islands), q(The Cook Islands), @@ -228,147 +223,144 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Costa Rica), ], q(0055) => [ - q(Croatia), + q(Cote d'Ivoire), ], q(0056) => [ - q(Cuba), + q(Croatia), ], q(0057) => [ - q(Cyprus), + q(Cuba), ], q(0058) => [ + q(Curacao), + ], + q(0059) => [ + q(Cyprus), + ], + q(0060) => [ q(Czech Republic), q(The Czech Republic), q(Czech Republic, The), q(Czech Republic (The)), ], - q(0059) => [ - q(Benin), - ], - q(0060) => [ + q(0061) => [ q(Denmark), ], - q(0061) => [ + q(0062) => [ + q(Djibouti), + ], + q(0063) => [ q(Dominica), ], - q(0062) => [ + q(0064) => [ q(Dominican Republic), q(The Dominican Republic), q(Dominican Republic, The), q(Dominican Republic (The)), ], - q(0063) => [ - q(Ecuador), - ], - q(0064) => [ - q(El Salvador), - ], q(0065) => [ - q(Equatorial Guinea), + q(Ecuador), ], q(0066) => [ - q(Ethiopia), + q(Egypt), ], q(0067) => [ - q(Eritrea), + q(El Salvador), ], q(0068) => [ - q(Estonia), + q(Equatorial Guinea), ], q(0069) => [ - q(Faroe Islands), - q(The Faroe Islands), - q(Faroe Islands, The), - q(Faroe Islands (The)), - q(Faeroe Islands), - q(The Faeroe Islands), + q(Eritrea), ], q(0070) => [ - q(Falkland Islands (The) [Malvinas]), - q(Falkland Islands (Malvinas)), - q(Falkland Islands (Islas Malvinas)), + q(Estonia), ], q(0071) => [ - q(South Georgia and the South Sandwich Islands), - q(South Georgia and the Islands), + q(Ethiopia), ], q(0072) => [ - q(Fiji), + q(Falkland Islands (The) [Malvinas]), + q(Falkland Islands (Malvinas)), + q(Falkland Islands (Islas Malvinas)), ], q(0073) => [ - q(Finland), + q(Faroe Islands), + q(The Faroe Islands), + q(Faroe Islands, The), + q(Faroe Islands (The)), + q(Faeroe Islands), + q(The Faeroe Islands), ], q(0074) => [ - q(Aland Islands), + q(Fiji), ], q(0075) => [ - q(France), + q(Finland), ], q(0076) => [ - q(French Guiana), + q(France), ], q(0077) => [ - q(French Polynesia), + q(French Guiana), ], q(0078) => [ + q(French Polynesia), + ], + q(0079) => [ q(French Southern Territories), q(The French Southern Territories), q(French Southern Territories, The), q(French Southern Territories (The)), q(French Southern and Antarctic Lands), ], - q(0079) => [ - q(Djibouti), - ], q(0080) => [ q(Gabon), ], q(0081) => [ - q(Georgia), - ], - q(0082) => [ q(Gambia), q(The Gambia), q(Gambia, The), q(Gambia (The)), ], + q(0082) => [ + q(Georgia), + ], q(0083) => [ - q(Palestine, State of), - q(Palestine (State of)), - q(State of Palestine), + q(Germany), ], q(0084) => [ - q(Germany), + q(Ghana), ], q(0085) => [ - q(Ghana), + q(Gibraltar), ], q(0086) => [ - q(Gibraltar), + q(Greece), ], q(0087) => [ - q(Kiribati), + q(Greenland), ], q(0088) => [ - q(Greece), + q(Grenada), ], q(0089) => [ - q(Greenland), + q(Guadeloupe), ], q(0090) => [ - q(Grenada), + q(Guam), ], q(0091) => [ - q(Guadeloupe), + q(Guatemala), ], q(0092) => [ - q(Guam), + q(Guernsey), ], q(0093) => [ - q(Guatemala), + q(Guinea), ], q(0094) => [ - q(Guinea), + q(Guinea-Bissau), ], q(0095) => [ q(Guyana), @@ -380,13 +372,13 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Heard Island and McDonald Islands), ], q(0098) => [ + q(Holy See), + q(The Holy See), + q(Holy See, The), + q(Holy See (The)), q(Holy See (The) [Vatican City State]), q(Holy See (Vatican City State)), q(Holy See (Vatican City)), - q(The Holy See), - q(Holy See), - q(Holy See (The)), - q(Holy See, The), q(Vatican City), ], q(0099) => [ @@ -411,12 +403,12 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Indonesia), ], q(0105) => [ - q(Iran, The Islamic Republic of), + q(Iran (Islamic Republic of)), q(Iran (The Islamic Republic of)), q(Iran, Islamic Republic of), - q(Iran (Islamic Republic of)), - q(The Islamic Republic of Iran), + q(Iran, The Islamic Republic of), q(Islamic Republic of Iran), + q(The Islamic Republic of Iran), q(Iran), ], q(0106) => [ @@ -426,13 +418,13 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Ireland), ], q(0108) => [ - q(Israel), + q(Isle of Man), ], q(0109) => [ - q(Italy), + q(Israel), ], q(0110) => [ - q(Cote d'Ivoire), + q(Italy), ], q(0111) => [ q(Jamaica), @@ -441,16 +433,22 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Japan), ], q(0113) => [ - q(Kazakhstan), - q(Kazakstan), + q(Jersey), ], q(0114) => [ q(Jordan), ], q(0115) => [ - q(Kenya), + q(Kazakhstan), + q(Kazakstan), ], q(0116) => [ + q(Kenya), + ], + q(0117) => [ + q(Kiribati), + ], + q(0118) => [ q(Korea, The Democratic People's Republic of), q(Korea (The Democratic People's Republic of)), q(Korea, Democratic People's Republic of), @@ -459,7 +457,7 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Democratic People's Republic of Korea), q(North Korea), ], - q(0117) => [ + q(0119) => [ q(Korea, The Republic of), q(Korea (The Republic of)), q(Korea, Republic of), @@ -468,43 +466,43 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Republic of Korea), q(South Korea), ], - q(0118) => [ + q(0120) => [ q(Kuwait), ], - q(0119) => [ + q(0121) => [ q(Kyrgyzstan), ], - q(0120) => [ + q(0122) => [ q(Lao People's Democratic Republic), q(The Lao People's Democratic Republic), q(Lao People's Democratic Republic, The), q(Lao People's Democratic Republic (The)), ], - q(0121) => [ - q(Lebanon), - ], - q(0122) => [ - q(Lesotho), - ], q(0123) => [ q(Latvia), ], q(0124) => [ - q(Liberia), + q(Lebanon), ], q(0125) => [ - q(Libya), + q(Lesotho), ], q(0126) => [ - q(Liechtenstein), + q(Liberia), ], q(0127) => [ - q(Lithuania), + q(Libya), ], q(0128) => [ - q(Luxembourg), + q(Liechtenstein), ], q(0129) => [ + q(Lithuania), + ], + q(0130) => [ + q(Luxembourg), + ], + q(0131) => [ q(Macao), q(China, Macao Special Administrative Region), q(Macao Special Administrative Region of China), @@ -512,121 +510,132 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Macau S.A.R.), q(Macau), ], - q(0130) => [ - q(Madagascar), - ], - q(0131) => [ - q(Malawi), - ], q(0132) => [ - q(Malaysia), + q(Macedonia, The former Yugoslav Republic of), + q(Macedonia (The former Yugoslav Republic of)), + q(Macedonia, former Yugoslav Republic of), + q(Macedonia (former Yugoslav Republic of)), + q(The former Yugoslav Republic of Macedonia), + q(former Yugoslav Republic of Macedonia), + q(Macedonia), ], q(0133) => [ - q(Maldives), + q(Madagascar), ], q(0134) => [ - q(Mali), + q(Malawi), ], q(0135) => [ - q(Malta), + q(Malaysia), ], q(0136) => [ - q(Martinique), + q(Maldives), ], q(0137) => [ - q(Mauritania), + q(Mali), ], q(0138) => [ - q(Mauritius), + q(Malta), ], q(0139) => [ - q(Mexico), + q(Marshall Islands), + q(The Marshall Islands), + q(Marshall Islands, The), + q(Marshall Islands (The)), ], q(0140) => [ - q(Monaco), + q(Martinique), ], q(0141) => [ - q(Mongolia), + q(Mauritania), ], q(0142) => [ - q(Moldova, The Republic of), - q(Moldova (The Republic of)), - q(Moldova, Republic of), - q(Moldova (Republic of)), - q(The Republic of Moldova), - q(Republic of Moldova), + q(Mauritius), ], q(0143) => [ - q(Montenegro), + q(Mayotte), ], q(0144) => [ - q(Montserrat), + q(Mexico), ], q(0145) => [ - q(Morocco), + q(Micronesia (Federated States of)), + q(Federated States of Micronesia), + q(Micronesia (The Federated States of)), + q(Micronesia, Federated States of), + q(Micronesia, The Federated States of), + q(The Federated States of Micronesia), ], q(0146) => [ - q(Mozambique), + q(Moldova, The Republic of), + q(Moldova (The Republic of)), + q(Moldova, Republic of), + q(Moldova (Republic of)), + q(The Republic of Moldova), + q(Republic of Moldova), ], q(0147) => [ - q(Oman), + q(Monaco), ], q(0148) => [ - q(Namibia), + q(Mongolia), ], q(0149) => [ - q(Nauru), + q(Montenegro), ], q(0150) => [ - q(Nepal), + q(Montserrat), ], q(0151) => [ - q(Netherlands), - q(The Netherlands), - q(Netherlands, The), - q(Netherlands (The)), + q(Morocco), ], q(0152) => [ - q(Curacao), + q(Mozambique), ], q(0153) => [ - q(Aruba), + q(Myanmar), + q(The Republic of the Union of Myanmar), + q(Republic of the Union of Myanmar), + q(Burma), ], q(0154) => [ - q(Sint Maarten (Dutch part)), + q(Namibia), ], q(0155) => [ - q(Bonaire, Sint Eustatius and Saba), + q(Nauru), ], q(0156) => [ - q(New Caledonia), + q(Nepal), ], q(0157) => [ - q(Vanuatu), + q(Netherlands), + q(The Netherlands), + q(Netherlands, The), + q(Netherlands (The)), ], q(0158) => [ - q(New Zealand), + q(New Caledonia), ], q(0159) => [ - q(Nicaragua), + q(New Zealand), ], q(0160) => [ + q(Nicaragua), + ], + q(0161) => [ q(Niger), q(The Niger), q(Niger, The), q(Niger (The)), ], - q(0161) => [ - q(Nigeria), - ], q(0162) => [ - q(Niue), + q(Nigeria), ], q(0163) => [ - q(Norfolk Island), + q(Niue), ], q(0164) => [ - q(Norway), + q(Norfolk Island), ], q(0165) => [ q(Northern Mariana Islands), @@ -635,30 +644,21 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Northern Mariana Islands (The)), ], q(0166) => [ - q(United States Minor Outlying Islands), - q(The United States Minor Outlying Islands), - q(United States Minor Outlying Islands, The), - q(United States Minor Outlying Islands (The)), + q(Norway), ], q(0167) => [ - q(Micronesia, The Federated States of), - q(Micronesia (The Federated States of)), - q(Micronesia, Federated States of), - q(Micronesia (Federated States of)), - q(The Federated States of Micronesia), - q(Federated States of Micronesia), + q(Oman), ], q(0168) => [ - q(Marshall Islands), - q(The Marshall Islands), - q(Marshall Islands, The), - q(Marshall Islands (The)), + q(Pakistan), ], q(0169) => [ q(Palau), ], q(0170) => [ - q(Pakistan), + q(Palestine, State of), + q(Palestine (State of)), + q(State of Palestine), ], q(0171) => [ q(Panama), @@ -690,120 +690,112 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Portugal), ], q(0179) => [ - q(Guinea-Bissau), - ], - q(0180) => [ - q(Timor-Leste), - q(East Timor), - q(The Democratic Republic of Timor-Leste), - q(Democratic Republic of Timor-Leste), - q(Timor-Leste, The Democratic Republic of), - q(Timor-Leste, Democratic Republic of), - q(Timor-Leste (The Democratic Republic of)), - q(Timor-Leste (Democratic Republic of)), - ], - q(0181) => [ q(Puerto Rico), ], - q(0182) => [ + q(0180) => [ q(Qatar), ], - q(0183) => [ + q(0181) => [ q(Reunion), ], - q(0184) => [ + q(0182) => [ q(Romania), ], - q(0185) => [ + q(0183) => [ q(Russian Federation), q(The Russian Federation), q(Russian Federation, The), q(Russian Federation (The)), ], - q(0186) => [ + q(0184) => [ q(Rwanda), ], - q(0187) => [ + q(0185) => [ q(Saint Barthelemy), q(Saint-Barthelemy), ], - q(0188) => [ + q(0186) => [ q(Saint Helena, Ascension and Tristan da Cunha), q(Saint Helena), ], - q(0189) => [ + q(0187) => [ q(Saint Kitts and Nevis), ], - q(0190) => [ - q(Anguilla), - ], - q(0191) => [ + q(0188) => [ q(Saint Lucia), ], - q(0192) => [ + q(0189) => [ q(Saint Martin (French part)), q(Saint Martin), q(Saint-Martin (French part)), q(Saint-Martin), ], - q(0193) => [ + q(0190) => [ q(Saint Pierre and Miquelon), ], - q(0194) => [ + q(0191) => [ q(Saint Vincent and the Grenadines), ], - q(0195) => [ + q(0192) => [ + q(Samoa), + ], + q(0193) => [ q(San Marino), ], - q(0196) => [ + q(0194) => [ q(Sao Tome and Principe), ], - q(0197) => [ + q(0195) => [ q(Saudi Arabia), ], - q(0198) => [ + q(0196) => [ q(Senegal), ], - q(0199) => [ + q(0197) => [ q(Serbia), ], - q(0200) => [ + q(0198) => [ q(Seychelles), ], - q(0201) => [ + q(0199) => [ q(Sierra Leone), ], - q(0202) => [ + q(0200) => [ q(Singapore), ], - q(0203) => [ + q(0201) => [ + q(Sint Maarten (Dutch part)), + ], + q(0202) => [ q(Slovakia), ], + q(0203) => [ + q(Slovenia), + ], q(0204) => [ - q(Viet Nam), - q(Vietnam), + q(Solomon Islands), + q(Solomon Islands (The)), + q(Solomon Islands, The), + q(The Solomon Islands), ], q(0205) => [ - q(Slovenia), + q(Somalia), ], q(0206) => [ - q(Somalia), + q(South Africa), ], q(0207) => [ - q(South Africa), + q(South Georgia and the South Sandwich Islands), + q(South Georgia and the Islands), ], q(0208) => [ - q(Zimbabwe), - q(The Republic of Zimbabwe), - q(Republic of Zimbabwe), - q(Republic of Zimbabwe, The), - q(Republic of Zimbabwe (The)), + q(South Sudan), ], q(0209) => [ q(Spain), ], q(0210) => [ - q(South Sudan), + q(Sri Lanka), ], q(0211) => [ q(Sudan), @@ -812,166 +804,188 @@ $Locale::Codes::Data{'country'}{'id2names'} = { q(Sudan (The)), ], q(0212) => [ - q(Western Sahara), - ], - q(0213) => [ q(Suriname), ], - q(0214) => [ + q(0213) => [ q(Svalbard and Jan Mayen), q(Svalbard and Jan Mayen Islands), ], - q(0215) => [ + q(0214) => [ q(Swaziland), ], - q(0216) => [ + q(0215) => [ q(Sweden), ], - q(0217) => [ + q(0216) => [ q(Switzerland), ], - q(0218) => [ + q(0217) => [ q(Syrian Arab Republic), - q(The Syrian Arab Republic), - q(Syrian Arab Republic, The), q(Syrian Arab Republic (The)), + q(Syrian Arab Republic, The), + q(The Syrian Arab Republic), q(Syria), ], + q(0218) => [ + q(Taiwan (Province of China)), + q(Taiwan), + q(Taiwan, Province of China), + ], q(0219) => [ q(Tajikistan), ], q(0220) => [ - q(Thailand), + q(Tanzania, United Republic of), + q(Tanzania (United Republic of)), + q(United Republic of Tanzania), ], q(0221) => [ - q(Togo), + q(Thailand), ], q(0222) => [ - q(Tokelau), + q(Timor-Leste), + q(East Timor), + q(The Democratic Republic of Timor-Leste), + q(Democratic Republic of Timor-Leste), + q(Timor-Leste, The Democratic Republic of), + q(Timor-Leste, Democratic Republic of), + q(Timor-Leste (The Democratic Republic of)), + q(Timor-Leste (Democratic Republic of)), ], q(0223) => [ - q(Tonga), + q(Togo), ], q(0224) => [ - q(Trinidad and Tobago), + q(Tokelau), ], q(0225) => [ - q(United Arab Emirates), - q(The United Arab Emirates), - q(United Arab Emirates, The), - q(United Arab Emirates (The)), + q(Tonga), ], q(0226) => [ - q(Tunisia), + q(Trinidad and Tobago), ], q(0227) => [ - q(Turkey), + q(Tunisia), ], q(0228) => [ - q(Turkmenistan), + q(Turkey), ], q(0229) => [ + q(Turkmenistan), + ], + q(0230) => [ q(Turks and Caicos Islands), q(The Turks and Caicos Islands), q(Turks and Caicos Islands, The), q(Turks and Caicos Islands (The)), ], - q(0230) => [ - q(Tuvalu), - ], q(0231) => [ - q(Uganda), + q(Tuvalu), ], q(0232) => [ - q(Ukraine), + q(Uganda), ], q(0233) => [ - q(Macedonia, The former Yugoslav Republic of), - q(Macedonia (The former Yugoslav Republic of)), - q(Macedonia, former Yugoslav Republic of), - q(Macedonia (former Yugoslav Republic of)), - q(The former Yugoslav Republic of Macedonia), - q(former Yugoslav Republic of Macedonia), - q(Macedonia), + q(Ukraine), ], q(0234) => [ - q(Egypt), + q(United Arab Emirates), + q(The United Arab Emirates), + q(United Arab Emirates, The), + q(United Arab Emirates (The)), ], q(0235) => [ - q(United Kingdom), + q(United Kingdom of Great Britain and Northern Ireland), + q(The United Kingdom of Great Britain and Northern Ireland), + q(United Kingdom of Great Britain and Northern Ireland, The), + q(United Kingdom of Great Britain and Northern Ireland (The)), + q(Great Britain), + q(United Kingdom (The)), q(The United Kingdom), + q(United Kingdom), q(United Kingdom, The), - q(United Kingdom (The)), - q(Great Britain), - q(United Kingdom of Great Britain and Northern Ireland), q(UK), ], q(0236) => [ - q(Guernsey), + q(United States Minor Outlying Islands), + q(The United States Minor Outlying Islands), + q(United States Minor Outlying Islands, The), + q(United States Minor Outlying Islands (The)), ], q(0237) => [ - q(Jersey), + q(United States of America), + q(The United States of America), + q(United States of America, The), + q(United States of America (The)), + q(The United States), + q(United States), + q(United States, The), + q(United States (The)), + q(US), + q(USA), ], q(0238) => [ - q(Isle of Man), + q(Uruguay), ], q(0239) => [ - q(Tanzania, United Republic of), - q(Tanzania (United Republic of)), - q(United Republic of Tanzania), + q(Uzbekistan), ], q(0240) => [ - q(United States), - q(The United States), - q(United States, The), - q(United States (The)), - q(US), - q(USA), - q(United States of America), - q(The United States of America), + q(Vanuatu), ], q(0241) => [ - q(Virgin Islands (U.S.)), - q(United States Virgin Islands), - q(Virgin Islands (US)), - q(Virgin Islands, U.S.), - q(Virgin Islands), + q(Venezuela (Bolivarian Republic of)), + q(Venezuela, Bolivarian Republic of), + q(Venezuela, Bolivarian Republic), + q(Venezuela), ], q(0242) => [ - q(Burkina Faso), + q(Viet Nam), + q(Vietnam), ], q(0243) => [ - q(Uruguay), + q(Virgin Islands (British)), + q(British Virgin Islands), + q(Virgin Islands, British), + q(Virgin Islands (UK)), ], q(0244) => [ - q(Uzbekistan), + q(Virgin Islands (U.S.)), + q(United States Virgin Islands), + q(Virgin Islands (US)), + q(Virgin Islands, U.S.), + q(Virgin Islands), ], q(0245) => [ - q(Venezuela, Bolivarian Republic of ), - ], - q(0246) => [ q(Wallis and Futuna), q(Wallis and Futuna Islands), q(The Territory of the Wallis and Futuna Islands), q(Territory of the Wallis and Futuna Islands), ], - q(0247) => [ - q(Samoa), + q(0246) => [ + q(Western Sahara), ], - q(0248) => [ + q(0247) => [ q(Yemen), q(The Yemeni Republic), q(Yemeni Republic), q(Yemeni Republic, The), q(Yemeni Republic (The)), ], - q(0249) => [ + q(0248) => [ q(Zambia), q(The Republic of Zambia), q(Republic of Zambia), q(Republic of Zambia, The), q(Republic of Zambia (The)), ], + q(0249) => [ + q(Zimbabwe), + q(The Republic of Zimbabwe), + q(Republic of Zimbabwe), + q(Republic of Zimbabwe, The), + q(Republic of Zimbabwe (The)), + ], }; $Locale::Codes::Data{'country'}{'alias2id'} = { @@ -980,11 +994,11 @@ $Locale::Codes::Data{'country'}{'alias2id'} = { q(0), ], q(aland islands) => [ - q(0074), + q(0002), q(0), ], q(albania) => [ - q(0002), + q(0003), q(0), ], q(algeria) => [ @@ -1004,159 +1018,159 @@ $Locale::Codes::Data{'country'}{'alias2id'} = { q(0), ], q(anguilla) => [ - q(0190), + q(0008), q(0), ], q(antarctica) => [ - q(0003), + q(0009), q(0), ], q(antigua and barbuda) => [ - q(0008), + q(0010), q(0), ], q(argentina) => [ - q(0010), + q(0011), q(0), ], q(armenia) => [ - q(0016), + q(0012), q(0), ], q(aruba) => [ - q(0153), + q(0013), q(0), ], q(australia) => [ - q(0011), + q(0014), q(0), ], q(austria) => [ - q(0012), + q(0015), q(0), ], q(azerbaijan) => [ - q(0009), + q(0016), q(0), ], q(bahamas) => [ - q(0013), + q(0017), q(0), ], q(bahamas (the)) => [ - q(0013), + q(0017), q(3), ], q(bahamas, the) => [ - q(0013), + q(0017), q(2), ], q(bahrain) => [ - q(0014), + q(0018), q(0), ], q(bangladesh) => [ - q(0015), + q(0019), q(0), ], q(barbados) => [ - q(0017), + q(0020), q(0), ], q(belarus) => [ - q(0034), + q(0021), q(0), ], q(belgium) => [ - q(0018), + q(0022), q(0), ], q(belize) => [ - q(0026), + q(0023), q(0), ], q(benin) => [ - q(0059), + q(0024), q(0), ], q(bermuda) => [ - q(0019), + q(0025), q(0), ], q(bhutan) => [ - q(0020), + q(0026), q(0), ], q(bolivia) => [ - q(0021), + q(0027), q(3), ], q(bolivia (plurinational state of)) => [ - q(0021), - q(1), + q(0027), + q(0), ], q(bolivia, plurinational state of) => [ - q(0021), - q(0), + q(0027), + q(1), ], q(bonaire, sint eustatius and saba) => [ - q(0155), + q(0028), q(0), ], q(bosnia and herzegovina) => [ - q(0022), + q(0029), q(0), ], q(botswana) => [ - q(0023), + q(0030), q(0), ], q(bouvet island) => [ - q(0024), + q(0031), q(0), ], q(brazil) => [ - q(0025), + q(0032), q(0), ], q(british indian ocean territory) => [ - q(0027), + q(0033), q(0), ], q(british indian ocean territory (the)) => [ - q(0027), + q(0033), q(3), ], q(british indian ocean territory, the) => [ - q(0027), + q(0033), q(2), ], q(british virgin islands) => [ - q(0029), + q(0243), q(1), ], q(brunei) => [ - q(0030), + q(0034), q(1), ], q(brunei darussalam) => [ - q(0030), + q(0034), q(0), ], q(bulgaria) => [ - q(0031), + q(0035), q(0), ], q(burkina faso) => [ - q(0242), + q(0036), q(0), ], q(burma) => [ - q(0032), + q(0153), q(3), ], q(burundi) => [ - q(0033), + q(0037), q(0), ], q(cabo verde) => [ @@ -1164,51 +1178,51 @@ $Locale::Codes::Data{'country'}{'alias2id'} = { q(0), ], q(cambodia) => [ - q(0035), + q(0039), q(0), ], q(cameroon) => [ - q(0036), + q(0040), q(0), ], q(canada) => [ - q(0037), + q(0041), q(0), ], q(cayman islands) => [ - q(0039), + q(0042), q(0), ], q(cayman islands (the)) => [ - q(0039), + q(0042), q(3), ], q(cayman islands, the) => [ - q(0039), + q(0042), q(2), ], q(central african republic) => [ - q(0040), + q(0043), q(0), ], q(central african republic (the)) => [ - q(0040), + q(0043), q(3), ], q(central african republic, the) => [ - q(0040), + q(0043), q(2), ], q(chad) => [ - q(0042), + q(0044), q(0), ], q(chile) => [ - q(0043), + q(0045), q(0), ], q(china) => [ - q(0044), + q(0046), q(0), ], q(china, hong kong special administrative region) => [ @@ -1216,75 +1230,91 @@ $Locale::Codes::Data{'country'}{'alias2id'} = { q(1), ], q(china, macao special administrative region) => [ - q(0129), + q(0131), q(1), ], q(christmas island) => [ - q(0046), + q(0047), q(0), ], q(cocos (keeling) islands) => [ - q(0047), + q(0048), q(0), ], q(cocos (keeling) islands (the)) => [ - q(0047), + q(0048), q(3), ], q(cocos (keeling) islands, the) => [ - q(0047), + q(0048), q(2), ], q(cocos islands) => [ - q(0047), + q(0048), q(4), ], q(colombia) => [ - q(0048), + q(0049), q(0), ], q(comoros) => [ - q(0049), + q(0050), q(0), ], + q(comoros (the)) => [ + q(0050), + q(3), + ], + q(comoros, the) => [ + q(0050), + q(2), + ], q(congo) => [ - q(0051), + q(0052), q(0), ], q(congo (brazzaville)) => [ - q(0051), - q(6), + q(0052), + q(9), ], q(congo (kinshasa)) => [ - q(0052), + q(0051), q(6), ], q(congo (the democratic republic of the)) => [ - q(0052), + q(0051), q(0), ], - q(congo, democratic republic of the) => [ + q(congo (the)) => [ q(0052), + q(3), + ], + q(congo, democratic republic of the) => [ + q(0051), q(2), ], q(congo, republic of the) => [ - q(0051), - q(4), + q(0052), + q(7), ], - q(congo, the democratic republic of the) => [ + q(congo, the) => [ q(0052), + q(2), + ], + q(congo, the democratic republic of the) => [ + q(0051), q(1), ], q(congo, the republic of the) => [ - q(0051), - q(3), + q(0052), + q(6), ], q(congo-brazzaville) => [ - q(0051), - q(5), + q(0052), + q(8), ], q(congo-kinshasa) => [ - q(0052), + q(0051), q(5), ], q(cook islands) => [ @@ -1304,175 +1334,175 @@ $Locale::Codes::Data{'country'}{'alias2id'} = { q(0), ], q(cote d'ivoire) => [ - q(0110), + q(0055), q(0), ], q(croatia) => [ - q(0055), + q(0056), q(0), ], q(cuba) => [ - q(0056), + q(0057), q(0), ], q(curacao) => [ - q(0152), + q(0058), q(0), ], q(cyprus) => [ - q(0057), + q(0059), q(0), ], q(czech republic) => [ - q(0058), + q(0060), q(0), ], q(czech republic (the)) => [ - q(0058), + q(0060), q(3), ], q(czech republic, the) => [ - q(0058), + q(0060), q(2), ], q(democratic people's republic of korea) => [ - q(0116), + q(0118), q(5), ], q(democratic republic of the congo) => [ - q(0052), + q(0051), q(4), ], q(democratic republic of timor-leste) => [ - q(0180), + q(0222), q(3), ], q(denmark) => [ - q(0060), + q(0061), q(0), ], q(djibouti) => [ - q(0079), + q(0062), q(0), ], q(dominica) => [ - q(0061), + q(0063), q(0), ], q(dominican republic) => [ - q(0062), + q(0064), q(0), ], q(dominican republic (the)) => [ - q(0062), + q(0064), q(3), ], q(dominican republic, the) => [ - q(0062), + q(0064), q(2), ], q(east timor) => [ - q(0180), + q(0222), q(1), ], q(ecuador) => [ - q(0063), + q(0065), q(0), ], q(egypt) => [ - q(0234), + q(0066), q(0), ], q(el salvador) => [ - q(0064), + q(0067), q(0), ], q(equatorial guinea) => [ - q(0065), + q(0068), q(0), ], q(eritrea) => [ - q(0067), + q(0069), q(0), ], q(estonia) => [ - q(0068), + q(0070), q(0), ], q(ethiopia) => [ - q(0066), + q(0071), q(0), ], q(faeroe islands) => [ - q(0069), + q(0073), q(4), ], q(falkland islands (islas malvinas)) => [ - q(0070), + q(0072), q(2), ], q(falkland islands (malvinas)) => [ - q(0070), + q(0072), q(1), ], q(falkland islands (the) [malvinas]) => [ - q(0070), + q(0072), q(0), ], q(faroe islands) => [ - q(0069), + q(0073), q(0), ], q(faroe islands (the)) => [ - q(0069), + q(0073), q(3), ], q(faroe islands, the) => [ - q(0069), + q(0073), q(2), ], q(federated states of micronesia) => [ - q(0167), - q(5), + q(0145), + q(1), ], q(fiji) => [ - q(0072), + q(0074), q(0), ], **** PATCH TRUNCATED AT 2000 LINES -- 138817 NOT SHOWN **** -- Perl5 Master Repository
