From 69376dd584cf82880861da5a6f2e9dad9fab875b Mon Sep 17 00:00:00 2001 From: Christoph Kempen Date: Thu, 18 Jul 2013 16:03:28 +0200 Subject: [PATCH] Initial Import --- LICENCE | 20 +++++++ README.md | 23 ++++++++ composer.json | 25 +++++++++ src/Webpatser/Countries/Countries.php | 53 +++++++++++++++++++ src/Webpatser/Countries/CountriesFacade.php | 20 +++++++ .../Countries/CountriesServiceProvider.php | 44 +++++++++++++++ src/Webpatser/Countries/Models/countries.json | 1 + 7 files changed, 186 insertions(+) create mode 100644 LICENCE create mode 100644 README.md create mode 100644 composer.json create mode 100644 src/Webpatser/Countries/Countries.php create mode 100644 src/Webpatser/Countries/CountriesFacade.php create mode 100644 src/Webpatser/Countries/CountriesServiceProvider.php create mode 100644 src/Webpatser/Countries/Models/countries.json diff --git a/LICENCE b/LICENCE new file mode 100644 index 0000000..45e06c5 --- /dev/null +++ b/LICENCE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2013 Christoph Kempen + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ae979f6 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# Laravel Countries +Laravel Countries is a bundle for Laravel, providing Almost ISO 3166_2, 3166_3, currency, Capital and more for all countries. + + +## Installation + +Add `webpatser/laravel-countries` to `composer.json`. + + "webpatser/laravel-countries": "dev-master" + +Run `composer update` to pull down the latest version of Country List. + +Edit `app/config/app.php` and add the `provider` and `filter` + + 'providers' => array( + 'Webpatser\Countries\CountriesServiceProvider', + ) + +Now add the alias. + + 'aliases' => array( + 'Countries' => 'Webpatser\Countries\CountriesFacade', + ) diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..77ded38 --- /dev/null +++ b/composer.json @@ -0,0 +1,25 @@ +{ + "name" : "webpatser/laravel-countries", + "description" : "Laravel Countries is a bundle for Laravel, providing Almost ISO 3166_2, 3166_3, currency, Capital and more for all countries.", + "version" : "0.2", + "authors" : [{ + "name" : "Christoph Kempen", + "email" : "christoph@downsized.nl", + "homepage" : "http://downsized.nl/", + "role" : "developer" + } + ], + "keywords" : [], + "license" : [ + "MIT" + ], + "require" : { + "php" : ">=5.3.0" + }, + "autoload" : { + "psr-0" : { + "Webpatser\\Countries" : "src/" + } + }, + "minimum-stability" : "dev" +} \ No newline at end of file diff --git a/src/Webpatser/Countries/Countries.php b/src/Webpatser/Countries/Countries.php new file mode 100644 index 0000000..21829a9 --- /dev/null +++ b/src/Webpatser/Countries/Countries.php @@ -0,0 +1,53 @@ +countries = json_decode(file_get_contents(__DIR__ . '/Models/countries.json'), true); + } + + /** + * Returns one country + * + * @param string $country The country + * @param string $locale The locale (default: en) + * @param string $format The format (default: php) + * @param string $source Data source: "icu" or "cldr" + * @return string + */ + public function getOne($id) + { + return $this->countries[$id]; + } + + /** + * Returns a list of countries + * + * @param string $locale The locale (default: en) + * @param string $locale The format (default: php) + * @param string $source Data source: "icu" or "cldr" + * @return array + */ + public function getList() + { + return $this->countries; + } +} \ No newline at end of file diff --git a/src/Webpatser/Countries/CountriesFacade.php b/src/Webpatser/Countries/CountriesFacade.php new file mode 100644 index 0000000..6b4bb1e --- /dev/null +++ b/src/Webpatser/Countries/CountriesFacade.php @@ -0,0 +1,20 @@ +app['countries'] = $this->app->share(function($app) + { + return new Countries; + }); + } + + /** + * Get the services provided by the provider. + * + * @return array + */ + public function provides() + { + return array('countries'); + } + +} \ No newline at end of file diff --git a/src/Webpatser/Countries/Models/countries.json b/src/Webpatser/Countries/Models/countries.json new file mode 100644 index 0000000..5dee7ff --- /dev/null +++ b/src/Webpatser/Countries/Models/countries.json @@ -0,0 +1 @@ +{"4":{"capital":"Kabul","citizenship":"Afghan","country-code":"004","currency":"afghani","currency_code":"AFN","currency_sub_unit":"pul","full_name":"Islamic Republic of Afghanistan","iso_3166_2":"AF","iso_3166_3":"AFG","name":"Afghanistan","region-code":"142","sub-region-code":"034"},"8":{"capital":"Tirana","citizenship":"Albanian","country-code":"008","currency":"lek","currency_code":"ALL","currency_sub_unit":"(qindar (pl. qindarka))","full_name":"Republic of Albania","iso_3166_2":"AL","iso_3166_3":"ALB","name":"Albania","region-code":"150","sub-region-code":"039"},"10":{"capital":"","citizenship":"","country-code":"010","currency":"","currency_code":"","currency_sub_unit":"","full_name":"Antarctica","iso_3166_2":"AQ","iso_3166_3":"ATA","name":"Antarctica","region-code":"","sub-region-code":""},"12":{"capital":"Algiers","citizenship":"Algerian","country-code":"012","currency":"Algerian dinar","currency_code":"DZD","currency_sub_unit":"centime","full_name":"People\u2019s Democratic Republic of Algeria","iso_3166_2":"DZ","iso_3166_3":"DZA","name":"Algeria","region-code":"002","sub-region-code":"015"},"16":{"capital":"Pago Pago","citizenship":"American Samoan","country-code":"016","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"Territory of American","iso_3166_2":"AS","iso_3166_3":"ASM","name":"American Samoa","region-code":"009","sub-region-code":"061"},"20":{"capital":"Andorra la Vella","citizenship":"Andorran","country-code":"020","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Principality of Andorra","iso_3166_2":"AD","iso_3166_3":"AND","name":"Andorra","region-code":"150","sub-region-code":"039"},"24":{"capital":"Luanda","citizenship":"Angolan","country-code":"024","currency":"kwanza","currency_code":"AOA","currency_sub_unit":"c\u00eantimo","full_name":"Republic of Angola","iso_3166_2":"AO","iso_3166_3":"AGO","name":"Angola","region-code":"002","sub-region-code":"017"},"28":{"capital":"St John\u2019s","citizenship":"of Antigua and Barbuda","country-code":"028","currency":"East Caribbean dollar","currency_code":"XCD","currency_sub_unit":"cent","full_name":"Antigua and Barbuda","iso_3166_2":"AG","iso_3166_3":"ATG","name":"Antigua and Barbuda","region-code":"019","sub-region-code":"029"},"31":{"capital":"Baku","citizenship":"Azerbaijani","country-code":"031","currency":"Azerbaijani manat","currency_code":"AZN","currency_sub_unit":"kepik (inv.)","full_name":"Republic of Azerbaijan","iso_3166_2":"AZ","iso_3166_3":"AZE","name":"Azerbaijan","region-code":"142","sub-region-code":"145"},"32":{"capital":"Buenos Aires","citizenship":"Argentinian","country-code":"032","currency":"Argentine peso","currency_code":"ARS","currency_sub_unit":"centavo","full_name":"Argentine Republic","iso_3166_2":"AR","iso_3166_3":"ARG","name":"Argentina","region-code":"019","sub-region-code":"005"},"36":{"capital":"Canberra","citizenship":"Australian","country-code":"036","currency":"Australian dollar","currency_code":"AUD","currency_sub_unit":"cent","full_name":"Commonwealth of Australia","iso_3166_2":"AU","iso_3166_3":"AUS","name":"Australia","region-code":"009","sub-region-code":"053"},"40":{"capital":"Vienna","citizenship":"Austrian","country-code":"040","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Republic of Austria","iso_3166_2":"AT","iso_3166_3":"AUT","name":"Austria","region-code":"150","sub-region-code":"155"},"44":{"capital":"Nassau","citizenship":"Bahamian","country-code":"044","currency":"Bahamian dollar","currency_code":"BSD","currency_sub_unit":"cent","full_name":"Commonwealth of the Bahamas","iso_3166_2":"BS","iso_3166_3":"BHS","name":"Bahamas","region-code":"019","sub-region-code":"029"},"48":{"capital":"Manama","citizenship":"Bahraini","country-code":"048","currency":"Bahraini dinar","currency_code":"BHD","currency_sub_unit":"fils (inv.)","full_name":"Kingdom of Bahrain","iso_3166_2":"BH","iso_3166_3":"BHR","name":"Bahrain","region-code":"142","sub-region-code":"145"},"50":{"capital":"Dhaka","citizenship":"Bangladeshi","country-code":"050","currency":"taka (inv.)","currency_code":"BDT","currency_sub_unit":"poisha (inv.)","full_name":"People\u2019s Republic of Bangladesh","iso_3166_2":"BD","iso_3166_3":"BGD","name":"Bangladesh","region-code":"142","sub-region-code":"034"},"51":{"capital":"Yerevan","citizenship":"Armenian","country-code":"051","currency":"dram (inv.)","currency_code":"AMD","currency_sub_unit":"luma","full_name":"Republic of Armenia","iso_3166_2":"AM","iso_3166_3":"ARM","name":"Armenia","region-code":"142","sub-region-code":"145"},"52":{"capital":"Bridgetown","citizenship":"Barbadian","country-code":"052","currency":"Barbados dollar","currency_code":"BBD","currency_sub_unit":"cent","full_name":"Barbados","iso_3166_2":"BB","iso_3166_3":"BRB","name":"Barbados","region-code":"019","sub-region-code":"029"},"56":{"capital":"Brussels","citizenship":"Belgian","country-code":"056","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Kingdom of Belgium","iso_3166_2":"BE","iso_3166_3":"BEL","name":"Belgium","region-code":"150","sub-region-code":"155"},"60":{"capital":"Hamilton","citizenship":"Bermudian","country-code":"060","currency":"Bermuda dollar","currency_code":"BMD","currency_sub_unit":"cent","full_name":"Bermuda","iso_3166_2":"BM","iso_3166_3":"BMU","name":"Bermuda","region-code":"019","sub-region-code":"021"},"64":{"capital":"Thimphu","citizenship":"Bhutanese","country-code":"064","currency":"ngultrum (inv.)","currency_code":"BTN","currency_sub_unit":"chhetrum (inv.)","full_name":"Kingdom of Bhutan","iso_3166_2":"BT","iso_3166_3":"BTN","name":"Bhutan","region-code":"142","sub-region-code":"034"},"68":{"capital":"Sucre (BO1)","citizenship":"Bolivian","country-code":"068","currency":"boliviano","currency_code":"BOB","currency_sub_unit":"centavo","full_name":"Plurinational State of Bolivia","iso_3166_2":"BO","iso_3166_3":"BOL","name":"Bolivia, Plurinational State of","region-code":"019","sub-region-code":"005"},"70":{"capital":"Sarajevo","citizenship":"of Bosnia and Herzegovina","country-code":"070","currency":"convertible mark","currency_code":"BAM","currency_sub_unit":"fening","full_name":"Bosnia and Herzegovina","iso_3166_2":"BA","iso_3166_3":"BIH","name":"Bosnia and Herzegovina","region-code":"150","sub-region-code":"039"},"72":{"capital":"Gaborone","citizenship":"Botswanan","country-code":"072","currency":"pula (inv.)","currency_code":"BWP","currency_sub_unit":"thebe (inv.)","full_name":"Republic of Botswana","iso_3166_2":"BW","iso_3166_3":"BWA","name":"Botswana","region-code":"002","sub-region-code":"018"},"74":{"capital":"","citizenship":"","country-code":"074","currency":"","currency_code":"","currency_sub_unit":"","full_name":"Bouvet Island","iso_3166_2":"BV","iso_3166_3":"BVT","name":"Bouvet Island","region-code":"","sub-region-code":""},"76":{"capital":"Brasilia","citizenship":"Brazilian","country-code":"076","currency":"real (pl. reais)","currency_code":"BRL","currency_sub_unit":"centavo","full_name":"Federative Republic of Brazil","iso_3166_2":"BR","iso_3166_3":"BRA","name":"Brazil","region-code":"019","sub-region-code":"005"},"84":{"capital":"Belmopan","citizenship":"Belizean","country-code":"084","currency":"Belize dollar","currency_code":"BZD","currency_sub_unit":"cent","full_name":"Belize","iso_3166_2":"BZ","iso_3166_3":"BLZ","name":"Belize","region-code":"019","sub-region-code":"013"},"86":{"capital":"","citizenship":"","country-code":"086","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"British Indian Ocean Territory","iso_3166_2":"IO","iso_3166_3":"IOT","name":"British Indian Ocean Territory","region-code":"","sub-region-code":""},"90":{"capital":"Honiara","citizenship":"Solomon Islander","country-code":"090","currency":"Solomon Islands dollar","currency_code":"SBD","currency_sub_unit":"cent","full_name":"Solomon Islands","iso_3166_2":"SB","iso_3166_3":"SLB","name":"Solomon Islands","region-code":"009","sub-region-code":"054"},"92":{"capital":"Road Town","citizenship":"British Virgin Islander;","country-code":"092","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"British Virgin Islands","iso_3166_2":"VG","iso_3166_3":"VGB","name":"Virgin Islands, British","region-code":"019","sub-region-code":"029"},"96":{"capital":"Bandar Seri Begawan","citizenship":"Bruneian","country-code":"096","currency":"Brunei dollar","currency_code":"BND","currency_sub_unit":"sen (inv.)","full_name":"Brunei Darussalam","iso_3166_2":"BN","iso_3166_3":"BRN","name":"Brunei Darussalam","region-code":"142","sub-region-code":"035"},"100":{"capital":"Sofia","citizenship":"Bulgarian","country-code":"100","currency":"lev (pl. leva)","currency_code":"BGN","currency_sub_unit":"stotinka","full_name":"Republic of Bulgaria","iso_3166_2":"BG","iso_3166_3":"BGR","name":"Bulgaria","region-code":"150","sub-region-code":"151"},"104":{"capital":"Yangon","citizenship":"Burmese","country-code":"104","currency":"kyat","currency_code":"MMK","currency_sub_unit":"pya","full_name":"Union of Myanmar\/","iso_3166_2":"MM","iso_3166_3":"MMR","name":"Myanmar","region-code":"142","sub-region-code":"035"},"108":{"capital":"Bujumbura","citizenship":"Burundian","country-code":"108","currency":"Burundi franc","currency_code":"BIF","currency_sub_unit":"centime","full_name":"Republic of Burundi","iso_3166_2":"BI","iso_3166_3":"BDI","name":"Burundi","region-code":"002","sub-region-code":"014"},"112":{"capital":"Minsk","citizenship":"Belarusian","country-code":"112","currency":"Belarusian rouble","currency_code":"BYR","currency_sub_unit":"kopek","full_name":"Republic of Belarus","iso_3166_2":"BY","iso_3166_3":"BLR","name":"Belarus","region-code":"150","sub-region-code":"151"},"116":{"capital":"Phnom Penh","citizenship":"Cambodian","country-code":"116","currency":"riel","currency_code":"KHR","currency_sub_unit":"sen (inv.)","full_name":"Kingdom of Cambodia","iso_3166_2":"KH","iso_3166_3":"KHM","name":"Cambodia","region-code":"142","sub-region-code":"035"},"120":{"capital":"Yaound\u00e9","citizenship":"Cameroonian","country-code":"120","currency":"CFA franc (BEAC)","currency_code":"XAF","currency_sub_unit":"centime","full_name":"Republic of Cameroon","iso_3166_2":"CM","iso_3166_3":"CMR","name":"Cameroon","region-code":"002","sub-region-code":"017"},"124":{"capital":"Ottawa","citizenship":"Canadian","country-code":"124","currency":"Canadian dollar","currency_code":"CAD","currency_sub_unit":"cent","full_name":"Canada","iso_3166_2":"CA","iso_3166_3":"CAN","name":"Canada","region-code":"019","sub-region-code":"021"},"132":{"capital":"Praia","citizenship":"Cape Verdean","country-code":"132","currency":"Cape Verde escudo","currency_code":"CVE","currency_sub_unit":"centavo","full_name":"Republic of Cape Verde","iso_3166_2":"CV","iso_3166_3":"CPV","name":"Cape Verde","region-code":"002","sub-region-code":"011"},"136":{"capital":"George Town","citizenship":"Caymanian","country-code":"136","currency":"Cayman Islands dollar","currency_code":"KYD","currency_sub_unit":"cent","full_name":"Cayman Islands","iso_3166_2":"KY","iso_3166_3":"CYM","name":"Cayman Islands","region-code":"019","sub-region-code":"029"},"140":{"capital":"Bangui","citizenship":"Central African","country-code":"140","currency":"CFA franc (BEAC)","currency_code":"XAF","currency_sub_unit":"centime","full_name":"Central African Republic","iso_3166_2":"CF","iso_3166_3":"CAF","name":"Central African Republic","region-code":"002","sub-region-code":"017"},"144":{"capital":"Colombo","citizenship":"Sri Lankan","country-code":"144","currency":"Sri Lankan rupee","currency_code":"LKR","currency_sub_unit":"cent","full_name":"Democratic Socialist Republic of Sri Lanka","iso_3166_2":"LK","iso_3166_3":"LKA","name":"Sri Lanka","region-code":"142","sub-region-code":"034"},"148":{"capital":"N\u2019Djamena","citizenship":"Chadian","country-code":"148","currency":"CFA franc (BEAC)","currency_code":"XAF","currency_sub_unit":"centime","full_name":"Republic of Chad","iso_3166_2":"TD","iso_3166_3":"TCD","name":"Chad","region-code":"002","sub-region-code":"017"},"152":{"capital":"Santiago","citizenship":"Chilean","country-code":"152","currency":"Chilean peso","currency_code":"CLP","currency_sub_unit":"centavo","full_name":"Republic of Chile","iso_3166_2":"CL","iso_3166_3":"CHL","name":"Chile","region-code":"019","sub-region-code":"005"},"156":{"capital":"Beijing","citizenship":"Chinese","country-code":"156","currency":"renminbi-yuan (inv.)","currency_code":"CNY","currency_sub_unit":"jiao (10)","full_name":"People\u2019s Republic of China","iso_3166_2":"CN","iso_3166_3":"CHN","name":"China","region-code":"142","sub-region-code":"030"},"158":{"capital":"Taipei","citizenship":"Taiwanese","country-code":"158","currency":"new Taiwan dollar","currency_code":"TWD","currency_sub_unit":"fen (inv.)","full_name":"Republic of China, Taiwan (TW1)","iso_3166_2":"TW","iso_3166_3":"TWN","name":"Taiwan, Province of China","region-code":"142","sub-region-code":"030"},"162":{"capital":"Flying Fish Cove","citizenship":"Christmas Islander","country-code":"162","currency":"Australian dollar","currency_code":"AUD","currency_sub_unit":"cent","full_name":"Christmas Island Territory","iso_3166_2":"CX","iso_3166_3":"CXR","name":"Christmas Island","region-code":"","sub-region-code":""},"166":{"capital":"Bantam","citizenship":"Cocos Islander","country-code":"166","currency":"Australian dollar","currency_code":"AUD","currency_sub_unit":"cent","full_name":"Territory of Cocos (Keeling) Islands","iso_3166_2":"CC","iso_3166_3":"CCK","name":"Cocos (Keeling) Islands","region-code":"","sub-region-code":""},"170":{"capital":"Santa Fe de Bogot\u00e1","citizenship":"Colombian","country-code":"170","currency":"Colombian peso","currency_code":"COP","currency_sub_unit":"centavo","full_name":"Republic of Colombia","iso_3166_2":"CO","iso_3166_3":"COL","name":"Colombia","region-code":"019","sub-region-code":"005"},"174":{"capital":"Moroni","citizenship":"Comorian","country-code":"174","currency":"Comorian franc","currency_code":"KMF","currency_sub_unit":"","full_name":"Union of the Comoros","iso_3166_2":"KM","iso_3166_3":"COM","name":"Comoros","region-code":"002","sub-region-code":"014"},"175":{"capital":"Mamoudzou","citizenship":"Mahorais","country-code":"175","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Departmental Collectivity of Mayotte","iso_3166_2":"YT","iso_3166_3":"MYT","name":"Mayotte","region-code":"002","sub-region-code":"014"},"178":{"capital":"Brazzaville","citizenship":"Congolese","country-code":"178","currency":"CFA franc (BEAC)","currency_code":"XAF","currency_sub_unit":"centime","full_name":"Republic of the Congo","iso_3166_2":"CG","iso_3166_3":"COG","name":"Congo","region-code":"002","sub-region-code":"017"},"180":{"capital":"Kinshasa","citizenship":"Congolese","country-code":"180","currency":"Congolese franc","currency_code":"CDF","currency_sub_unit":"centime","full_name":"Democratic Republic of the Congo","iso_3166_2":"CD","iso_3166_3":"COD","name":"Congo, the Democratic Republic of the","region-code":"002","sub-region-code":"017"},"184":{"capital":"Avarua","citizenship":"Cook Islander","country-code":"184","currency":"New Zealand dollar","currency_code":"NZD","currency_sub_unit":"cent","full_name":"Cook Islands","iso_3166_2":"CK","iso_3166_3":"COK","name":"Cook Islands","region-code":"009","sub-region-code":"061"},"188":{"capital":"San Jos\u00e9","citizenship":"Costa Rican","country-code":"188","currency":"Costa Rican col\u00f3n (pl. colones)","currency_code":"CRC","currency_sub_unit":"c\u00e9ntimo","full_name":"Republic of Costa Rica","iso_3166_2":"CR","iso_3166_3":"CRI","name":"Costa Rica","region-code":"019","sub-region-code":"013"},"191":{"capital":"Zagreb","citizenship":"Croat","country-code":"191","currency":"kuna (inv.)","currency_code":"HRK","currency_sub_unit":"lipa (inv.)","full_name":"Republic of Croatia","iso_3166_2":"HR","iso_3166_3":"HRV","name":"Croatia","region-code":"150","sub-region-code":"039"},"192":{"capital":"Havana","citizenship":"Cuban","country-code":"192","currency":"Cuban peso","currency_code":"CUP","currency_sub_unit":"centavo","full_name":"Republic of Cuba","iso_3166_2":"CU","iso_3166_3":"CUB","name":"Cuba","region-code":"019","sub-region-code":"029"},"196":{"capital":"Nicosia","citizenship":"Cypriot","country-code":"196","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Republic of Cyprus","iso_3166_2":"CY","iso_3166_3":"CYP","name":"Cyprus","region-code":"142","sub-region-code":"145"},"203":{"capital":"Prague","citizenship":"Czech","country-code":"203","currency":"Czech koruna (pl. koruny)","currency_code":"CZK","currency_sub_unit":"hal\u00e9r","full_name":"Czech Republic","iso_3166_2":"CZ","iso_3166_3":"CZE","name":"Czech Republic","region-code":"150","sub-region-code":"151"},"204":{"capital":"Porto Novo (BJ1)","citizenship":"Beninese","country-code":"204","currency":"CFA franc (BCEAO)","currency_code":"XOF","currency_sub_unit":"centime","full_name":"Republic of Benin","iso_3166_2":"BJ","iso_3166_3":"BEN","name":"Benin","region-code":"002","sub-region-code":"011"},"208":{"capital":"Copenhagen","citizenship":"Dane","country-code":"208","currency":"Danish krone","currency_code":"DKK","currency_sub_unit":"\u00f8re (inv.)","full_name":"Kingdom of Denmark","iso_3166_2":"DK","iso_3166_3":"DNK","name":"Denmark","region-code":"150","sub-region-code":"154"},"212":{"capital":"Roseau","citizenship":"Dominican","country-code":"212","currency":"East Caribbean dollar","currency_code":"XCD","currency_sub_unit":"cent","full_name":"Commonwealth of Dominica","iso_3166_2":"DM","iso_3166_3":"DMA","name":"Dominica","region-code":"019","sub-region-code":"029"},"214":{"capital":"Santo Domingo","citizenship":"Dominican","country-code":"214","currency":"Dominican peso","currency_code":"DOP","currency_sub_unit":"centavo","full_name":"Dominican Republic","iso_3166_2":"DO","iso_3166_3":"DOM","name":"Dominican Republic","region-code":"019","sub-region-code":"029"},"218":{"capital":"Quito","citizenship":"Ecuadorian","country-code":"218","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"Republic of Ecuador","iso_3166_2":"EC","iso_3166_3":"ECU","name":"Ecuador","region-code":"019","sub-region-code":"005"},"222":{"capital":"San Salvador","citizenship":"Salvadorian; Salvadoran","country-code":"222","currency":"Salvadorian col\u00f3n (pl. colones)","currency_code":"SVC","currency_sub_unit":"centavo","full_name":"Republic of El Salvador","iso_3166_2":"SV","iso_3166_3":"SLV","name":"El Salvador","region-code":"019","sub-region-code":"013"},"226":{"capital":"Malabo","citizenship":"Equatorial Guinean","country-code":"226","currency":"CFA franc (BEAC)","currency_code":"XAF","currency_sub_unit":"centime","full_name":"Republic of Equatorial Guinea","iso_3166_2":"GQ","iso_3166_3":"GNQ","name":"Equatorial Guinea","region-code":"002","sub-region-code":"017"},"231":{"capital":"Addis Ababa","citizenship":"Ethiopian","country-code":"231","currency":"birr (inv.)","currency_code":"ETB","currency_sub_unit":"cent","full_name":"Federal Democratic Republic of Ethiopia","iso_3166_2":"ET","iso_3166_3":"ETH","name":"Ethiopia","region-code":"002","sub-region-code":"014"},"232":{"capital":"Asmara","citizenship":"Eritrean","country-code":"232","currency":"nakfa","currency_code":"ERN","currency_sub_unit":"cent","full_name":"State of Eritrea","iso_3166_2":"ER","iso_3166_3":"ERI","name":"Eritrea","region-code":"002","sub-region-code":"014"},"233":{"capital":"Tallinn","citizenship":"Estonian","country-code":"233","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Republic of Estonia","iso_3166_2":"EE","iso_3166_3":"EST","name":"Estonia","region-code":"150","sub-region-code":"154"},"234":{"capital":"T\u00f3rshavn","citizenship":"Faeroese","country-code":"234","currency":"Danish krone","currency_code":"DKK","currency_sub_unit":"\u00f8re (inv.)","full_name":"Faeroe Islands","iso_3166_2":"FO","iso_3166_3":"FRO","name":"Faroe Islands","region-code":"150","sub-region-code":"154"},"238":{"capital":"Stanley","citizenship":"Falkland Islander","country-code":"238","currency":"Falkland Islands pound","currency_code":"FKP","currency_sub_unit":"new penny","full_name":"Falkland Islands","iso_3166_2":"FK","iso_3166_3":"FLK","name":"Falkland Islands (Malvinas)","region-code":"019","sub-region-code":"005"},"239":{"capital":"King Edward Point (Grytviken)","citizenship":"","country-code":"239","currency":"","currency_code":"","currency_sub_unit":"","full_name":"South Georgia and the South Sandwich Islands","iso_3166_2":"GS","iso_3166_3":"SGS","name":"South Georgia and the South Sandwich Islands","region-code":"","sub-region-code":""},"242":{"capital":"Suva","citizenship":"Fijian","country-code":"242","currency":"Fiji dollar","currency_code":"FJD","currency_sub_unit":"cent","full_name":"Republic of Fiji","iso_3166_2":"FJ","iso_3166_3":"FJI","name":"Fiji","region-code":"009","sub-region-code":"054"},"246":{"capital":"Helsinki","citizenship":"Finn","country-code":"246","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Republic of Finland","iso_3166_2":"FI","iso_3166_3":"FIN","name":"Finland","region-code":"150","sub-region-code":"154"},"248":{"capital":"Mariehamn","citizenship":"\u00c5land Islander","country-code":"248","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"\u00c5land Islands","iso_3166_2":"AX","iso_3166_3":"ALA","name":"\u00c5land Islands","region-code":"150","sub-region-code":"154"},"250":{"capital":"Paris","citizenship":"Frenchman; Frenchwoman","country-code":"250","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"French Republic","iso_3166_2":"FR","iso_3166_3":"FRA","name":"France","region-code":"150","sub-region-code":"155"},"254":{"capital":"Cayenne","citizenship":"Guianese","country-code":"254","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"French Guiana","iso_3166_2":"GF","iso_3166_3":"GUF","name":"French Guiana","region-code":"019","sub-region-code":"005"},"258":{"capital":"Papeete","citizenship":"Polynesian","country-code":"258","currency":"CFP franc","currency_code":"XPF","currency_sub_unit":"centime","full_name":"French Polynesia","iso_3166_2":"PF","iso_3166_3":"PYF","name":"French Polynesia","region-code":"009","sub-region-code":"061"},"260":{"capital":"","citizenship":"","country-code":"260","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"French Southern and Antarctic Lands","iso_3166_2":"TF","iso_3166_3":"ATF","name":"French Southern Territories","region-code":"","sub-region-code":""},"262":{"capital":"Djibouti","citizenship":"Djiboutian","country-code":"262","currency":"Djibouti franc","currency_code":"DJF","currency_sub_unit":"","full_name":"Republic of Djibouti","iso_3166_2":"DJ","iso_3166_3":"DJI","name":"Djibouti","region-code":"002","sub-region-code":"014"},"266":{"capital":"Libreville","citizenship":"Gabonese","country-code":"266","currency":"CFA franc (BEAC)","currency_code":"XAF","currency_sub_unit":"centime","full_name":"Gabonese Republic","iso_3166_2":"GA","iso_3166_3":"GAB","name":"Gabon","region-code":"002","sub-region-code":"017"},"268":{"capital":"Tbilisi","citizenship":"Georgian","country-code":"268","currency":"lari","currency_code":"GEL","currency_sub_unit":"tetri (inv.)","full_name":"Georgia","iso_3166_2":"GE","iso_3166_3":"GEO","name":"Georgia","region-code":"142","sub-region-code":"145"},"270":{"capital":"Banjul","citizenship":"Gambian","country-code":"270","currency":"dalasi (inv.)","currency_code":"GMD","currency_sub_unit":"butut","full_name":"Republic of the Gambia","iso_3166_2":"GM","iso_3166_3":"GMB","name":"Gambia","region-code":"002","sub-region-code":"011"},"275":{"country-code":"275","iso_3166_2":"PS","iso_3166_3":"PSE","name":"Palestinian Territory, Occupied","region-code":"142","sub-region-code":"145"},"276":{"capital":"Berlin","citizenship":"German","country-code":"276","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Federal Republic of Germany","iso_3166_2":"DE","iso_3166_3":"DEU","name":"Germany","region-code":"150","sub-region-code":"155"},"288":{"capital":"Accra","citizenship":"Ghanaian","country-code":"288","currency":"Ghana cedi","currency_code":"GHS","currency_sub_unit":"pesewa","full_name":"Republic of Ghana","iso_3166_2":"GH","iso_3166_3":"GHA","name":"Ghana","region-code":"002","sub-region-code":"011"},"292":{"capital":"Gibraltar","citizenship":"Gibraltarian","country-code":"292","currency":"Gibraltar pound","currency_code":"GIP","currency_sub_unit":"penny","full_name":"Gibraltar","iso_3166_2":"GI","iso_3166_3":"GIB","name":"Gibraltar","region-code":"150","sub-region-code":"039"},"296":{"capital":"Tarawa","citizenship":"Kiribatian","country-code":"296","currency":"Australian dollar","currency_code":"AUD","currency_sub_unit":"cent","full_name":"Republic of Kiribati","iso_3166_2":"KI","iso_3166_3":"KIR","name":"Kiribati","region-code":"009","sub-region-code":"057"},"300":{"capital":"Athens","citizenship":"Greek","country-code":"300","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Hellenic Republic","iso_3166_2":"GR","iso_3166_3":"GRC","name":"Greece","region-code":"150","sub-region-code":"039"},"304":{"capital":"Nuuk","citizenship":"Greenlander","country-code":"304","currency":"Danish krone","currency_code":"DKK","currency_sub_unit":"\u00f8re (inv.)","full_name":"Greenland","iso_3166_2":"GL","iso_3166_3":"GRL","name":"Greenland","region-code":"019","sub-region-code":"021"},"308":{"capital":"St George\u2019s","citizenship":"Grenadian","country-code":"308","currency":"East Caribbean dollar","currency_code":"XCD","currency_sub_unit":"cent","full_name":"Grenada","iso_3166_2":"GD","iso_3166_3":"GRD","name":"Grenada","region-code":"019","sub-region-code":"029"},"312":{"capital":"Basse Terre","citizenship":"Guadeloupean","country-code":"312","currency":"euro","currency_code":"EUR ","currency_sub_unit":"cent","full_name":"Guadeloupe","iso_3166_2":"GP","iso_3166_3":"GLP","name":"Guadeloupe","region-code":"019","sub-region-code":"029"},"316":{"capital":"Aga\u00f1a (Hag\u00e5t\u00f1a)","citizenship":"Guamanian","country-code":"316","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"Territory of Guam","iso_3166_2":"GU","iso_3166_3":"GUM","name":"Guam","region-code":"009","sub-region-code":"057"},"320":{"capital":"Guatemala City","citizenship":"Guatemalan","country-code":"320","currency":"quetzal (pl. quetzales)","currency_code":"GTQ","currency_sub_unit":"centavo","full_name":"Republic of Guatemala","iso_3166_2":"GT","iso_3166_3":"GTM","name":"Guatemala","region-code":"019","sub-region-code":"013"},"324":{"capital":"Conakry","citizenship":"Guinean","country-code":"324","currency":"Guinean franc","currency_code":"GNF","currency_sub_unit":"","full_name":"Republic of Guinea","iso_3166_2":"GN","iso_3166_3":"GIN","name":"Guinea","region-code":"002","sub-region-code":"011"},"328":{"capital":"Georgetown","citizenship":"Guyanese","country-code":"328","currency":"Guyana dollar","currency_code":"GYD","currency_sub_unit":"cent","full_name":"Cooperative Republic of Guyana","iso_3166_2":"GY","iso_3166_3":"GUY","name":"Guyana","region-code":"019","sub-region-code":"005"},"332":{"capital":"Port-au-Prince","citizenship":"Haitian","country-code":"332","currency":"gourde","currency_code":"HTG","currency_sub_unit":"centime","full_name":"Republic of Haiti","iso_3166_2":"HT","iso_3166_3":"HTI","name":"Haiti","region-code":"019","sub-region-code":"029"},"334":{"capital":"","citizenship":"","country-code":"334","currency":"","currency_code":"","currency_sub_unit":"","full_name":"Territory of Heard Island and McDonald Islands","iso_3166_2":"HM","iso_3166_3":"HMD","name":"Heard Island and McDonald Islands","region-code":"","sub-region-code":""},"336":{"capital":"Vatican City","citizenship":"of the Holy See\/of the Vatican","country-code":"336","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"the Holy See\/ Vatican City State","iso_3166_2":"VA","iso_3166_3":"VAT","name":"Holy See (Vatican City State)","region-code":"150","sub-region-code":"039"},"340":{"capital":"Tegucigalpa","citizenship":"Honduran","country-code":"340","currency":"lempira","currency_code":"HNL","currency_sub_unit":"centavo","full_name":"Republic of Honduras","iso_3166_2":"HN","iso_3166_3":"HND","name":"Honduras","region-code":"019","sub-region-code":"013"},"344":{"capital":"(HK3)","citizenship":"Hong Kong Chinese","country-code":"344","currency":"Hong Kong dollar","currency_code":"HKD","currency_sub_unit":"cent","full_name":"Hong Kong Special Administrative Region of the People\u2019s Republic of China (HK2)","iso_3166_2":"HK","iso_3166_3":"HKG","name":"Hong Kong","region-code":"142","sub-region-code":"030"},"348":{"capital":"Budapest","citizenship":"Hungarian","country-code":"348","currency":"forint (inv.)","currency_code":"HUF","currency_sub_unit":"(fill\u00e9r (inv.))","full_name":"Republic of Hungary","iso_3166_2":"HU","iso_3166_3":"HUN","name":"Hungary","region-code":"150","sub-region-code":"151"},"352":{"capital":"Reykjavik","citizenship":"Icelander","country-code":"352","currency":"kr\u00f3na (pl. kr\u00f3nur)","currency_code":"ISK","currency_sub_unit":"","full_name":"Republic of Iceland","iso_3166_2":"IS","iso_3166_3":"ISL","name":"Iceland","region-code":"150","sub-region-code":"154"},"356":{"capital":"New Delhi","citizenship":"Indian","country-code":"356","currency":"Indian rupee","currency_code":"INR","currency_sub_unit":"paisa","full_name":"Republic of India","iso_3166_2":"IN","iso_3166_3":"IND","name":"India","region-code":"142","sub-region-code":"034"},"360":{"capital":"Jakarta","citizenship":"Indonesian","country-code":"360","currency":"Indonesian rupiah (inv.)","currency_code":"IDR","currency_sub_unit":"sen (inv.)","full_name":"Republic of Indonesia","iso_3166_2":"ID","iso_3166_3":"IDN","name":"Indonesia","region-code":"142","sub-region-code":"035"},"364":{"capital":"Tehran","citizenship":"Iranian","country-code":"364","currency":"Iranian rial","currency_code":"IRR","currency_sub_unit":"(dinar) (IR1)","full_name":"Islamic Republic of Iran","iso_3166_2":"IR","iso_3166_3":"IRN","name":"Iran, Islamic Republic of","region-code":"142","sub-region-code":"034"},"368":{"capital":"Baghdad","citizenship":"Iraqi","country-code":"368","currency":"Iraqi dinar","currency_code":"IQD","currency_sub_unit":"fils (inv.)","full_name":"Republic of Iraq","iso_3166_2":"IQ","iso_3166_3":"IRQ","name":"Iraq","region-code":"142","sub-region-code":"145"},"372":{"capital":"Dublin","citizenship":"Irishman; Irishwoman","country-code":"372","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Ireland (IE1)","iso_3166_2":"IE","iso_3166_3":"IRL","name":"Ireland","region-code":"150","sub-region-code":"154"},"376":{"capital":"(IL1)","citizenship":"Israeli","country-code":"376","currency":"shekel","currency_code":"ILS","currency_sub_unit":"agora","full_name":"State of Israel","iso_3166_2":"IL","iso_3166_3":"ISR","name":"Israel","region-code":"142","sub-region-code":"145"},"380":{"capital":"Rome","citizenship":"Italian","country-code":"380","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Italian Republic","iso_3166_2":"IT","iso_3166_3":"ITA","name":"Italy","region-code":"150","sub-region-code":"039"},"384":{"capital":"Yamoussoukro (CI1)","citizenship":"Ivorian","country-code":"384","currency":"CFA franc (BCEAO)","currency_code":"XOF","currency_sub_unit":"centime","full_name":"Republic of C\u00f4te d\u2019Ivoire","iso_3166_2":"CI","iso_3166_3":"CIV","name":"C\u00f4te d'Ivoire","region-code":"002","sub-region-code":"011"},"388":{"capital":"Kingston","citizenship":"Jamaican","country-code":"388","currency":"Jamaica dollar","currency_code":"JMD","currency_sub_unit":"cent","full_name":"Jamaica","iso_3166_2":"JM","iso_3166_3":"JAM","name":"Jamaica","region-code":"019","sub-region-code":"029"},"392":{"capital":"Tokyo","citizenship":"Japanese","country-code":"392","currency":"yen (inv.)","currency_code":"JPY","currency_sub_unit":"(sen (inv.)) (JP1)","full_name":"Japan","iso_3166_2":"JP","iso_3166_3":"JPN","name":"Japan","region-code":"142","sub-region-code":"030"},"398":{"capital":"Astana","citizenship":"Kazakh","country-code":"398","currency":"tenge (inv.)","currency_code":"KZT","currency_sub_unit":"tiyn","full_name":"Republic of Kazakhstan","iso_3166_2":"KZ","iso_3166_3":"KAZ","name":"Kazakhstan","region-code":"142","sub-region-code":"143"},"400":{"capital":"Amman","citizenship":"Jordanian","country-code":"400","currency":"Jordanian dinar","currency_code":"JOD","currency_sub_unit":"100 qirsh","full_name":"Hashemite Kingdom of Jordan","iso_3166_2":"JO","iso_3166_3":"JOR","name":"Jordan","region-code":"142","sub-region-code":"145"},"404":{"capital":"Nairobi","citizenship":"Kenyan","country-code":"404","currency":"Kenyan shilling","currency_code":"KES","currency_sub_unit":"cent","full_name":"Republic of Kenya","iso_3166_2":"KE","iso_3166_3":"KEN","name":"Kenya","region-code":"002","sub-region-code":"014"},"408":{"capital":"Pyongyang","citizenship":"North Korean","country-code":"408","currency":"North Korean won (inv.)","currency_code":"KPW","currency_sub_unit":"chun (inv.)","full_name":"Democratic People\u2019s Republic of Korea","iso_3166_2":"KP","iso_3166_3":"PRK","name":"Korea, Democratic People's Republic of","region-code":"142","sub-region-code":"030"},"410":{"capital":"Seoul","citizenship":"South Korean","country-code":"410","currency":"South Korean won (inv.)","currency_code":"KRW","currency_sub_unit":"(chun (inv.))","full_name":"Republic of Korea","iso_3166_2":"KR","iso_3166_3":"KOR","name":"Korea, Republic of","region-code":"142","sub-region-code":"030"},"414":{"capital":"Kuwait City","citizenship":"Kuwaiti","country-code":"414","currency":"Kuwaiti dinar","currency_code":"KWD","currency_sub_unit":"fils (inv.)","full_name":"State of Kuwait","iso_3166_2":"KW","iso_3166_3":"KWT","name":"Kuwait","region-code":"142","sub-region-code":"145"},"417":{"capital":"Bishkek","citizenship":"Kyrgyz","country-code":"417","currency":"som","currency_code":"KGS","currency_sub_unit":"tyiyn","full_name":"Kyrgyz Republic","iso_3166_2":"KG","iso_3166_3":"KGZ","name":"Kyrgyzstan","region-code":"142","sub-region-code":"143"},"418":{"capital":"Vientiane","citizenship":"Lao","country-code":"418","currency":"kip (inv.)","currency_code":"LAK","currency_sub_unit":"(at (inv.))","full_name":"Lao People\u2019s Democratic Republic","iso_3166_2":"LA","iso_3166_3":"LAO","name":"Lao People's Democratic Republic","region-code":"142","sub-region-code":"035"},"422":{"capital":"Beirut","citizenship":"Lebanese","country-code":"422","currency":"Lebanese pound","currency_code":"LBP","currency_sub_unit":"(piastre)","full_name":"Lebanese Republic","iso_3166_2":"LB","iso_3166_3":"LBN","name":"Lebanon","region-code":"142","sub-region-code":"145"},"426":{"capital":"Maseru","citizenship":"Basotho","country-code":"426","currency":"loti (pl. maloti)","currency_code":"LSL","currency_sub_unit":"sente","full_name":"Kingdom of Lesotho","iso_3166_2":"LS","iso_3166_3":"LSO","name":"Lesotho","region-code":"002","sub-region-code":"018"},"428":{"capital":"Riga","citizenship":"Latvian","country-code":"428","currency":"lats (pl. lati)","currency_code":"LVL","currency_sub_unit":"santims","full_name":"Republic of Latvia","iso_3166_2":"LV","iso_3166_3":"LVA","name":"Latvia","region-code":"150","sub-region-code":"154"},"430":{"capital":"Monrovia","citizenship":"Liberian","country-code":"430","currency":"Liberian dollar","currency_code":"LRD","currency_sub_unit":"cent","full_name":"Republic of Liberia","iso_3166_2":"LR","iso_3166_3":"LBR","name":"Liberia","region-code":"002","sub-region-code":"011"},"434":{"capital":"Tripoli","citizenship":"Libyan","country-code":"434","currency":"Libyan dinar","currency_code":"LYD","currency_sub_unit":"dirham","full_name":"Socialist People\u2019s Libyan Arab Jamahiriya","iso_3166_2":"LY","iso_3166_3":"LBY","name":"Libya","region-code":"002","sub-region-code":"015"},"438":{"capital":"Vaduz","citizenship":"Liechtensteiner","country-code":"438","currency":"Swiss franc","currency_code":"CHF","currency_sub_unit":"centime","full_name":"Principality of Liechtenstein","iso_3166_2":"LI","iso_3166_3":"LIE","name":"Liechtenstein","region-code":"150","sub-region-code":"155"},"440":{"capital":"Vilnius","citizenship":"Lithuanian","country-code":"440","currency":"litas (pl. litai)","currency_code":"LTL","currency_sub_unit":"centas","full_name":"Republic of Lithuania","iso_3166_2":"LT","iso_3166_3":"LTU","name":"Lithuania","region-code":"150","sub-region-code":"154"},"442":{"capital":"Luxembourg","citizenship":"Luxembourger","country-code":"442","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Grand Duchy of Luxembourg","iso_3166_2":"LU","iso_3166_3":"LUX","name":"Luxembourg","region-code":"150","sub-region-code":"155"},"446":{"capital":"Macao (MO3)","citizenship":"Macanese","country-code":"446","currency":"pataca","currency_code":"MOP","currency_sub_unit":"avo","full_name":"Macao Special Administrative Region of the People\u2019s Republic of China (MO2)","iso_3166_2":"MO","iso_3166_3":"MAC","name":"Macao","region-code":"142","sub-region-code":"030"},"450":{"capital":"Antananarivo","citizenship":"Malagasy","country-code":"450","currency":"ariary","currency_code":"MGA","currency_sub_unit":"iraimbilanja (inv.)","full_name":"Republic of Madagascar","iso_3166_2":"MG","iso_3166_3":"MDG","name":"Madagascar","region-code":"002","sub-region-code":"014"},"454":{"capital":"Lilongwe","citizenship":"Malawian","country-code":"454","currency":"Malawian kwacha (inv.)","currency_code":"MWK","currency_sub_unit":"tambala (inv.)","full_name":"Republic of Malawi","iso_3166_2":"MW","iso_3166_3":"MWI","name":"Malawi","region-code":"002","sub-region-code":"014"},"458":{"capital":"Kuala Lumpur (MY1)","citizenship":"Malaysian","country-code":"458","currency":"ringgit (inv.)","currency_code":"MYR","currency_sub_unit":"sen (inv.)","full_name":"Malaysia","iso_3166_2":"MY","iso_3166_3":"MYS","name":"Malaysia","region-code":"142","sub-region-code":"035"},"462":{"capital":"Mal\u00e9","citizenship":"Maldivian","country-code":"462","currency":"rufiyaa","currency_code":"MVR","currency_sub_unit":"laari (inv.)","full_name":"Republic of Maldives","iso_3166_2":"MV","iso_3166_3":"MDV","name":"Maldives","region-code":"142","sub-region-code":"034"},"466":{"capital":"Bamako","citizenship":"Malian","country-code":"466","currency":"CFA franc (BCEAO)","currency_code":"XOF","currency_sub_unit":"centime","full_name":"Republic of Mali","iso_3166_2":"ML","iso_3166_3":"MLI","name":"Mali","region-code":"002","sub-region-code":"011"},"470":{"capital":"Valletta","citizenship":"Maltese","country-code":"470","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Republic of Malta","iso_3166_2":"MT","iso_3166_3":"MLT","name":"Malta","region-code":"150","sub-region-code":"039"},"474":{"capital":"Fort-de-France","citizenship":"Martinican","country-code":"474","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Martinique","iso_3166_2":"MQ","iso_3166_3":"MTQ","name":"Martinique","region-code":"019","sub-region-code":"029"},"478":{"capital":"Nouakchott","citizenship":"Mauritanian","country-code":"478","currency":"ouguiya","currency_code":"MRO","currency_sub_unit":"khoum","full_name":"Islamic Republic of Mauritania","iso_3166_2":"MR","iso_3166_3":"MRT","name":"Mauritania","region-code":"002","sub-region-code":"011"},"480":{"capital":"Port Louis","citizenship":"Mauritian","country-code":"480","currency":"Mauritian rupee","currency_code":"MUR","currency_sub_unit":"cent","full_name":"Republic of Mauritius","iso_3166_2":"MU","iso_3166_3":"MUS","name":"Mauritius","region-code":"002","sub-region-code":"014"},"484":{"capital":"Mexico City","citizenship":"Mexican","country-code":"484","currency":"Mexican peso","currency_code":"MXN","currency_sub_unit":"centavo","full_name":"United Mexican States","iso_3166_2":"MX","iso_3166_3":"MEX","name":"Mexico","region-code":"019","sub-region-code":"013"},"492":{"capital":"Monaco","citizenship":"Monegasque","country-code":"492","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Principality of Monaco","iso_3166_2":"MC","iso_3166_3":"MCO","name":"Monaco","region-code":"150","sub-region-code":"155"},"496":{"capital":"Ulan Bator","citizenship":"Mongolian","country-code":"496","currency":"tugrik","currency_code":"MNT","currency_sub_unit":"m\u00f6ng\u00f6 (inv.)","full_name":"Mongolia","iso_3166_2":"MN","iso_3166_3":"MNG","name":"Mongolia","region-code":"142","sub-region-code":"030"},"498":{"capital":"Chisinau","citizenship":"Moldovan","country-code":"498","currency":"Moldovan leu (pl. lei)","currency_code":"MDL","currency_sub_unit":"ban","full_name":"Republic of Moldova","iso_3166_2":"MD","iso_3166_3":"MDA","name":"Moldova, Republic of","region-code":"150","sub-region-code":"151"},"499":{"capital":"Podgorica","citizenship":"Montenegrin","country-code":"499","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Montenegro","iso_3166_2":"ME","iso_3166_3":"MNE","name":"Montenegro","region-code":"150","sub-region-code":"039"},"500":{"capital":"Plymouth (MS2)","citizenship":"Montserratian","country-code":"500","currency":"East Caribbean dollar","currency_code":"XCD","currency_sub_unit":"cent","full_name":"Montserrat","iso_3166_2":"MS","iso_3166_3":"MSR","name":"Montserrat","region-code":"019","sub-region-code":"029"},"504":{"capital":"Rabat","citizenship":"Moroccan","country-code":"504","currency":"Moroccan dirham","currency_code":"MAD","currency_sub_unit":"centime","full_name":"Kingdom of Morocco","iso_3166_2":"MA","iso_3166_3":"MAR","name":"Morocco","region-code":"002","sub-region-code":"015"},"508":{"capital":"Maputo","citizenship":"Mozambican","country-code":"508","currency":"metical","currency_code":"MZN","currency_sub_unit":"centavo","full_name":"Republic of Mozambique","iso_3166_2":"MZ","iso_3166_3":"MOZ","name":"Mozambique","region-code":"002","sub-region-code":"014"},"512":{"capital":"Muscat","citizenship":"Omani","country-code":"512","currency":"Omani rial","currency_code":"OMR","currency_sub_unit":"baiza","full_name":"Sultanate of Oman","iso_3166_2":"OM","iso_3166_3":"OMN","name":"Oman","region-code":"142","sub-region-code":"145"},"516":{"capital":"Windhoek","citizenship":"Namibian","country-code":"516","currency":"Namibian dollar","currency_code":"NAD","currency_sub_unit":"cent","full_name":"Republic of Namibia","iso_3166_2":"NA","iso_3166_3":"NAM","name":"Namibia","region-code":"002","sub-region-code":"018"},"520":{"capital":"Yaren","citizenship":"Nauruan","country-code":"520","currency":"Australian dollar","currency_code":"AUD","currency_sub_unit":"cent","full_name":"Republic of Nauru","iso_3166_2":"NR","iso_3166_3":"NRU","name":"Nauru","region-code":"009","sub-region-code":"057"},"524":{"capital":"Kathmandu","citizenship":"Nepalese","country-code":"524","currency":"Nepalese rupee","currency_code":"NPR","currency_sub_unit":"paisa (inv.)","full_name":"Nepal","iso_3166_2":"NP","iso_3166_3":"NPL","name":"Nepal","region-code":"142","sub-region-code":"034"},"528":{"capital":"Amsterdam (NL2)","citizenship":"Dutchman; Dutchwoman; Netherlander","country-code":"528","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Kingdom of the Netherlands","iso_3166_2":"NL","iso_3166_3":"NLD","name":"Netherlands","region-code":"150","sub-region-code":"155"},"531":{"capital":"Willemstad","citizenship":"Cura\u00e7aoan","country-code":"531","currency":"Netherlands Antillean guilder (CW1)","currency_code":"ANG","currency_sub_unit":"cent","full_name":"Cura\u00e7ao","iso_3166_2":"CW","iso_3166_3":"CUW","name":"Cura\u00e7ao","region-code":"019","sub-region-code":"029"},"533":{"capital":"Oranjestad","citizenship":"Aruban","country-code":"533","currency":"Aruban guilder","currency_code":"AWG","currency_sub_unit":"cent","full_name":"Aruba","iso_3166_2":"AW","iso_3166_3":"ABW","name":"Aruba","region-code":"019","sub-region-code":"029"},"534":{"capital":"Philipsburg","citizenship":"Sint Maartener","country-code":"534","currency":"Netherlands Antillean guilder (SX1)","currency_code":"ANG","currency_sub_unit":"cent","full_name":"Sint Maarten","iso_3166_2":"SX","iso_3166_3":"SXM","name":"Sint Maarten (Dutch part)","region-code":"019","sub-region-code":"029"},"535":{"country-code":"535","iso_3166_2":"BQ","iso_3166_3":"BES","name":"Bonaire, Sint Eustatius and Saba","region-code":"019","sub-region-code":"029"},"540":{"capital":"Noum\u00e9a","citizenship":"New Caledonian","country-code":"540","currency":"CFP franc","currency_code":"XPF","currency_sub_unit":"centime","full_name":"New Caledonia","iso_3166_2":"NC","iso_3166_3":"NCL","name":"New Caledonia","region-code":"009","sub-region-code":"054"},"548":{"capital":"Port Vila","citizenship":"Vanuatuan","country-code":"548","currency":"vatu (inv.)","currency_code":"VUV","currency_sub_unit":"","full_name":"Republic of Vanuatu","iso_3166_2":"VU","iso_3166_3":"VUT","name":"Vanuatu","region-code":"009","sub-region-code":"054"},"554":{"capital":"Wellington","citizenship":"New Zealander","country-code":"554","currency":"New Zealand dollar","currency_code":"NZD","currency_sub_unit":"cent","full_name":"New Zealand","iso_3166_2":"NZ","iso_3166_3":"NZL","name":"New Zealand","region-code":"009","sub-region-code":"053"},"558":{"capital":"Managua","citizenship":"Nicaraguan","country-code":"558","currency":"c\u00f3rdoba oro","currency_code":"NIO","currency_sub_unit":"centavo","full_name":"Republic of Nicaragua","iso_3166_2":"NI","iso_3166_3":"NIC","name":"Nicaragua","region-code":"019","sub-region-code":"013"},"562":{"capital":"Niamey","citizenship":"Nigerien","country-code":"562","currency":"CFA franc (BCEAO)","currency_code":"XOF","currency_sub_unit":"centime","full_name":"Republic of Niger","iso_3166_2":"NE","iso_3166_3":"NER","name":"Niger","region-code":"002","sub-region-code":"011"},"566":{"capital":"Abuja","citizenship":"Nigerian","country-code":"566","currency":"naira (inv.)","currency_code":"NGN","currency_sub_unit":"kobo (inv.)","full_name":"Federal Republic of Nigeria","iso_3166_2":"NG","iso_3166_3":"NGA","name":"Nigeria","region-code":"002","sub-region-code":"011"},"570":{"capital":"Alofi","citizenship":"Niuean","country-code":"570","currency":"New Zealand dollar","currency_code":"NZD","currency_sub_unit":"cent","full_name":"Niue","iso_3166_2":"NU","iso_3166_3":"NIU","name":"Niue","region-code":"009","sub-region-code":"061"},"574":{"capital":"Kingston","citizenship":"Norfolk Islander","country-code":"574","currency":"Australian dollar","currency_code":"AUD","currency_sub_unit":"cent","full_name":"Territory of Norfolk Island","iso_3166_2":"NF","iso_3166_3":"NFK","name":"Norfolk Island","region-code":"009","sub-region-code":"053"},"578":{"capital":"Oslo","citizenship":"Norwegian","country-code":"578","currency":"Norwegian krone (pl. kroner)","currency_code":"NOK","currency_sub_unit":"\u00f8re (inv.)","full_name":"Kingdom of Norway","iso_3166_2":"NO","iso_3166_3":"NOR","name":"Norway","region-code":"150","sub-region-code":"154"},"580":{"capital":"Saipan","citizenship":"Northern Mariana Islander","country-code":"580","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"Commonwealth of the Northern Mariana Islands","iso_3166_2":"MP","iso_3166_3":"MNP","name":"Northern Mariana Islands","region-code":"009","sub-region-code":"057"},"581":{"capital":"","citizenship":"","country-code":"581","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"United States Minor Outlying Islands","iso_3166_2":"UM","iso_3166_3":"UMI","name":"United States Minor Outlying Islands","region-code":"","sub-region-code":""},"583":{"capital":"Palikir","citizenship":"Micronesian","country-code":"583","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"Federated States of Micronesia","iso_3166_2":"FM","iso_3166_3":"FSM","name":"Micronesia, Federated States of","region-code":"009","sub-region-code":"057"},"584":{"capital":"Majuro","citizenship":"Marshallese","country-code":"584","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"Republic of the Marshall Islands","iso_3166_2":"MH","iso_3166_3":"MHL","name":"Marshall Islands","region-code":"009","sub-region-code":"057"},"585":{"capital":"Melekeok","citizenship":"Palauan","country-code":"585","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"Republic of Palau","iso_3166_2":"PW","iso_3166_3":"PLW","name":"Palau","region-code":"009","sub-region-code":"057"},"586":{"capital":"Islamabad","citizenship":"Pakistani","country-code":"586","currency":"Pakistani rupee","currency_code":"PKR","currency_sub_unit":"paisa","full_name":"Islamic Republic of Pakistan","iso_3166_2":"PK","iso_3166_3":"PAK","name":"Pakistan","region-code":"142","sub-region-code":"034"},"591":{"capital":"Panama City","citizenship":"Panamanian","country-code":"591","currency":"balboa","currency_code":"PAB","currency_sub_unit":"cent\u00e9simo","full_name":"Republic of Panama","iso_3166_2":"PA","iso_3166_3":"PAN","name":"Panama","region-code":"019","sub-region-code":"013"},"598":{"capital":"Port Moresby","citizenship":"Papua New Guinean","country-code":"598","currency":"kina (inv.)","currency_code":"PGK","currency_sub_unit":"toea (inv.)","full_name":"Independent State of Papua New Guinea","iso_3166_2":"PG","iso_3166_3":"PNG","name":"Papua New Guinea","region-code":"009","sub-region-code":"054"},"600":{"capital":"Asunci\u00f3n","citizenship":"Paraguayan","country-code":"600","currency":"guaran\u00ed","currency_code":"PYG","currency_sub_unit":"c\u00e9ntimo","full_name":"Republic of Paraguay","iso_3166_2":"PY","iso_3166_3":"PRY","name":"Paraguay","region-code":"019","sub-region-code":"005"},"604":{"capital":"Lima","citizenship":"Peruvian","country-code":"604","currency":"new sol","currency_code":"PEN","currency_sub_unit":"c\u00e9ntimo","full_name":"Republic of Peru","iso_3166_2":"PE","iso_3166_3":"PER","name":"Peru","region-code":"019","sub-region-code":"005"},"608":{"capital":"Manila","citizenship":"Filipino","country-code":"608","currency":"Philippine peso","currency_code":"PHP","currency_sub_unit":"centavo","full_name":"Republic of the Philippines","iso_3166_2":"PH","iso_3166_3":"PHL","name":"Philippines","region-code":"142","sub-region-code":"035"},"612":{"capital":"Adamstown","citizenship":"Pitcairner","country-code":"612","currency":"New Zealand dollar","currency_code":"NZD","currency_sub_unit":"cent","full_name":"Pitcairn Islands","iso_3166_2":"PN","iso_3166_3":"PCN","name":"Pitcairn","region-code":"009","sub-region-code":"061"},"616":{"capital":"Warsaw","citizenship":"Pole","country-code":"616","currency":"zloty","currency_code":"PLN","currency_sub_unit":"grosz (pl. groszy)","full_name":"Republic of Poland","iso_3166_2":"PL","iso_3166_3":"POL","name":"Poland","region-code":"150","sub-region-code":"151"},"620":{"capital":"Lisbon","citizenship":"Portuguese","country-code":"620","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Portuguese Republic","iso_3166_2":"PT","iso_3166_3":"PRT","name":"Portugal","region-code":"150","sub-region-code":"039"},"624":{"capital":"Bissau","citizenship":"Guinea-Bissau national","country-code":"624","currency":"CFA franc (BCEAO)","currency_code":"XOF","currency_sub_unit":"centime","full_name":"Republic of Guinea-Bissau","iso_3166_2":"GW","iso_3166_3":"GNB","name":"Guinea-Bissau","region-code":"002","sub-region-code":"011"},"626":{"capital":"Dili","citizenship":"East Timorese","country-code":"626","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"Democratic Republic of East Timor","iso_3166_2":"TL","iso_3166_3":"TLS","name":"Timor-Leste","region-code":"142","sub-region-code":"035"},"630":{"capital":"San Juan","citizenship":"Puerto Rican","country-code":"630","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"Commonwealth of Puerto Rico","iso_3166_2":"PR","iso_3166_3":"PRI","name":"Puerto Rico","region-code":"019","sub-region-code":"029"},"634":{"capital":"Doha","citizenship":"Qatari","country-code":"634","currency":"Qatari riyal","currency_code":"QAR","currency_sub_unit":"dirham","full_name":"State of Qatar","iso_3166_2":"QA","iso_3166_3":"QAT","name":"Qatar","region-code":"142","sub-region-code":"145"},"638":{"capital":"Saint-Denis","citizenship":"Reunionese","country-code":"638","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"R\u00e9union","iso_3166_2":"RE","iso_3166_3":"REU","name":"R\u00e9union","region-code":"002","sub-region-code":"014"},"642":{"capital":"Bucharest","citizenship":"Romanian","country-code":"642","currency":"Romanian leu (pl. lei)","currency_code":"RON","currency_sub_unit":"ban (pl. bani)","full_name":"Romania","iso_3166_2":"RO","iso_3166_3":"ROU","name":"Romania","region-code":"150","sub-region-code":"151"},"643":{"capital":"Moscow","citizenship":"Russian","country-code":"643","currency":"Russian rouble","currency_code":"RUB","currency_sub_unit":"kopek","full_name":"Russian Federation","iso_3166_2":"RU","iso_3166_3":"RUS","name":"Russian Federation","region-code":"150","sub-region-code":"151"},"646":{"capital":"Kigali","citizenship":"Rwandan; Rwandese","country-code":"646","currency":"Rwandese franc","currency_code":"RWF","currency_sub_unit":"centime","full_name":"Republic of Rwanda","iso_3166_2":"RW","iso_3166_3":"RWA","name":"Rwanda","region-code":"002","sub-region-code":"014"},"652":{"capital":"Gustavia","citizenship":"of Saint Barth\u00e9lemy","country-code":"652","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Collectivity of Saint Barth\u00e9lemy","iso_3166_2":"BL","iso_3166_3":"BLM","name":"Saint Barth\u00e9lemy","region-code":"019","sub-region-code":"029"},"654":{"capital":"Jamestown","citizenship":"Saint Helenian","country-code":"654","currency":"Saint Helena pound","currency_code":"SHP","currency_sub_unit":"penny","full_name":"Saint Helena, Ascension and Tristan da Cunha","iso_3166_2":"SH","iso_3166_3":"SHN","name":"Saint Helena, Ascension and Tristan da Cunha","region-code":"002","sub-region-code":"011"},"659":{"capital":"Basseterre","citizenship":"Kittsian; Nevisian","country-code":"659","currency":"East Caribbean dollar","currency_code":"XCD","currency_sub_unit":"cent","full_name":"Federation of Saint Kitts and Nevis","iso_3166_2":"KN","iso_3166_3":"KNA","name":"Saint Kitts and Nevis","region-code":"019","sub-region-code":"029"},"660":{"capital":"The Valley","citizenship":"Anguillan","country-code":"660","currency":"East Caribbean dollar","currency_code":"XCD","currency_sub_unit":"cent","full_name":"Anguilla","iso_3166_2":"AI","iso_3166_3":"AIA","name":"Anguilla","region-code":"019","sub-region-code":"029"},"662":{"capital":"Castries","citizenship":"Saint Lucian","country-code":"662","currency":"East Caribbean dollar","currency_code":"XCD","currency_sub_unit":"cent","full_name":"Saint Lucia","iso_3166_2":"LC","iso_3166_3":"LCA","name":"Saint Lucia","region-code":"019","sub-region-code":"029"},"663":{"capital":"Marigot","citizenship":"of Saint Martin","country-code":"663","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Collectivity of Saint Martin","iso_3166_2":"MF","iso_3166_3":"MAF","name":"Saint Martin (French part)","region-code":"019","sub-region-code":"029"},"666":{"capital":"Saint-Pierre","citizenship":"St-Pierrais; Miquelonnais","country-code":"666","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Territorial Collectivity of Saint Pierre and Miquelon","iso_3166_2":"PM","iso_3166_3":"SPM","name":"Saint Pierre and Miquelon","region-code":"019","sub-region-code":"021"},"670":{"capital":"Kingstown","citizenship":"Vincentian","country-code":"670","currency":"East Caribbean dollar","currency_code":"XCD","currency_sub_unit":"cent","full_name":"Saint Vincent and the Grenadines","iso_3166_2":"VC","iso_3166_3":"VCT","name":"Saint Vincent and the Grenadines","region-code":"019","sub-region-code":"029"},"674":{"capital":"San Marino","citizenship":"San Marinese","country-code":"674","currency":"euro","currency_code":"EUR ","currency_sub_unit":"cent","full_name":"Republic of San Marino","iso_3166_2":"SM","iso_3166_3":"SMR","name":"San Marino","region-code":"150","sub-region-code":"039"},"678":{"capital":"S\u00e3o Tom\u00e9","citizenship":"S\u00e3o Tom\u00e9an","country-code":"678","currency":"dobra","currency_code":"STD","currency_sub_unit":"centavo","full_name":"Democratic Republic of S\u00e3o Tom\u00e9 and Pr\u00edncipe","iso_3166_2":"ST","iso_3166_3":"STP","name":"Sao Tome and Principe","region-code":"002","sub-region-code":"017"},"682":{"capital":"Riyadh","citizenship":"Saudi Arabian","country-code":"682","currency":"riyal","currency_code":"SAR","currency_sub_unit":"halala","full_name":"Kingdom of Saudi Arabia","iso_3166_2":"SA","iso_3166_3":"SAU","name":"Saudi Arabia","region-code":"142","sub-region-code":"145"},"686":{"capital":"Dakar","citizenship":"Senegalese","country-code":"686","currency":"CFA franc (BCEAO)","currency_code":"XOF","currency_sub_unit":"centime","full_name":"Republic of Senegal","iso_3166_2":"SN","iso_3166_3":"SEN","name":"Senegal","region-code":"002","sub-region-code":"011"},"688":{"capital":"Belgrade","citizenship":"Serb","country-code":"688","currency":"Serbian dinar","currency_code":"RSD","currency_sub_unit":"para (inv.)","full_name":"Republic of Serbia","iso_3166_2":"RS","iso_3166_3":"SRB","name":"Serbia","region-code":"150","sub-region-code":"039"},"690":{"capital":"Victoria","citizenship":"Seychellois","country-code":"690","currency":"Seychelles rupee","currency_code":"SCR","currency_sub_unit":"cent","full_name":"Republic of Seychelles","iso_3166_2":"SC","iso_3166_3":"SYC","name":"Seychelles","region-code":"002","sub-region-code":"014"},"694":{"capital":"Freetown","citizenship":"Sierra Leonean","country-code":"694","currency":"leone","currency_code":"SLL","currency_sub_unit":"cent","full_name":"Republic of Sierra Leone","iso_3166_2":"SL","iso_3166_3":"SLE","name":"Sierra Leone","region-code":"002","sub-region-code":"011"},"702":{"capital":"Singapore","citizenship":"Singaporean","country-code":"702","currency":"Singapore dollar","currency_code":"SGD","currency_sub_unit":"cent","full_name":"Republic of Singapore","iso_3166_2":"SG","iso_3166_3":"SGP","name":"Singapore","region-code":"142","sub-region-code":"035"},"703":{"capital":"Bratislava","citizenship":"Slovak","country-code":"703","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Slovak Republic","iso_3166_2":"SK","iso_3166_3":"SVK","name":"Slovakia","region-code":"150","sub-region-code":"151"},"704":{"capital":"Hanoi","citizenship":"Vietnamese","country-code":"704","currency":"dong","currency_code":"VND","currency_sub_unit":"(10 h\u00e0o","full_name":"Socialist Republic of Vietnam","iso_3166_2":"VN","iso_3166_3":"VNM","name":"Viet Nam","region-code":"142","sub-region-code":"035"},"705":{"capital":"Ljubljana","citizenship":"Slovene","country-code":"705","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Republic of Slovenia","iso_3166_2":"SI","iso_3166_3":"SVN","name":"Slovenia","region-code":"150","sub-region-code":"039"},"706":{"capital":"Mogadishu","citizenship":"Somali","country-code":"706","currency":"Somali shilling","currency_code":"SOS","currency_sub_unit":"cent","full_name":"Somali Republic","iso_3166_2":"SO","iso_3166_3":"SOM","name":"Somalia","region-code":"002","sub-region-code":"014"},"710":{"capital":"Pretoria (ZA1)","citizenship":"South African","country-code":"710","currency":"rand","currency_code":"ZAR","currency_sub_unit":"cent","full_name":"Republic of South Africa","iso_3166_2":"ZA","iso_3166_3":"ZAF","name":"South Africa","region-code":"002","sub-region-code":"018"},"716":{"capital":"Harare","citizenship":"Zimbabwean","country-code":"716","currency":"Zimbabwe dollar (ZW1)","currency_code":"ZWL","currency_sub_unit":"cent","full_name":"Republic of Zimbabwe","iso_3166_2":"ZW","iso_3166_3":"ZWE","name":"Zimbabwe","region-code":"002","sub-region-code":"014"},"724":{"capital":"Madrid","citizenship":"Spaniard","country-code":"724","currency":"euro","currency_code":"EUR","currency_sub_unit":"cent","full_name":"Kingdom of Spain","iso_3166_2":"ES","iso_3166_3":"ESP","name":"Spain","region-code":"150","sub-region-code":"039"},"728":{"country-code":"728","iso_3166_2":"SS","iso_3166_3":"SSD","name":"South Sudan","region-code":"002","sub-region-code":"015"},"729":{"capital":"Khartoum","citizenship":"Sudanese","country-code":"729","currency":"Sudanese pound","currency_code":"SDG","currency_sub_unit":"piastre","full_name":"Republic of the Sudan","iso_3166_2":"SD","iso_3166_3":"SDN","name":"Sudan","region-code":"002","sub-region-code":"015"},"732":{"capital":"Al aaiun","citizenship":"Sahrawi","country-code":"732","currency":"Moroccan dirham","currency_code":"MAD","currency_sub_unit":"centime","full_name":"Western Sahara","iso_3166_2":"EH","iso_3166_3":"ESH","name":"Western Sahara","region-code":"002","sub-region-code":"015"},"740":{"capital":"Paramaribo","citizenship":"Surinamer","country-code":"740","currency":"Surinamese dollar","currency_code":"SRD","currency_sub_unit":"cent","full_name":"Republic of Suriname","iso_3166_2":"SR","iso_3166_3":"SUR","name":"Suriname","region-code":"019","sub-region-code":"005"},"744":{"capital":"Longyearbyen","citizenship":"","country-code":"744","currency":"Norwegian krone (pl. kroner)","currency_code":"NOK","currency_sub_unit":"\u00f8re (inv.)","full_name":"Svalbard and Jan Mayen","iso_3166_2":"SJ","iso_3166_3":"SJM","name":"Svalbard and Jan Mayen","region-code":"150","sub-region-code":"154"},"748":{"capital":"Mbabane","citizenship":"Swazi","country-code":"748","currency":"lilangeni","currency_code":"SZL","currency_sub_unit":"cent","full_name":"Kingdom of Swaziland","iso_3166_2":"SZ","iso_3166_3":"SWZ","name":"Swaziland","region-code":"002","sub-region-code":"018"},"752":{"capital":"Stockholm","citizenship":"Swede","country-code":"752","currency":"krona (pl. kronor)","currency_code":"SEK","currency_sub_unit":"\u00f6re (inv.)","full_name":"Kingdom of Sweden","iso_3166_2":"SE","iso_3166_3":"SWE","name":"Sweden","region-code":"150","sub-region-code":"154"},"756":{"capital":"Berne","citizenship":"Swiss","country-code":"756","currency":"Swiss franc","currency_code":"CHF","currency_sub_unit":"centime","full_name":"Swiss Confederation","iso_3166_2":"CH","iso_3166_3":"CHE","name":"Switzerland","region-code":"150","sub-region-code":"155"},"760":{"capital":"Damascus","citizenship":"Syrian","country-code":"760","currency":"Syrian pound","currency_code":"SYP","currency_sub_unit":"piastre","full_name":"Syrian Arab Republic","iso_3166_2":"SY","iso_3166_3":"SYR","name":"Syrian Arab Republic","region-code":"142","sub-region-code":"145"},"762":{"capital":"Dushanbe","citizenship":"Tajik","country-code":"762","currency":"somoni","currency_code":"TJS","currency_sub_unit":"diram","full_name":"Republic of Tajikistan","iso_3166_2":"TJ","iso_3166_3":"TJK","name":"Tajikistan","region-code":"142","sub-region-code":"143"},"764":{"capital":"Bangkok","citizenship":"Thai","country-code":"764","currency":"baht (inv.)","currency_code":"THB","currency_sub_unit":"satang (inv.)","full_name":"Kingdom of Thailand","iso_3166_2":"TH","iso_3166_3":"THA","name":"Thailand","region-code":"142","sub-region-code":"035"},"768":{"capital":"Lom\u00e9","citizenship":"Togolese","country-code":"768","currency":"CFA franc (BCEAO)","currency_code":"XOF","currency_sub_unit":"centime","full_name":"Togolese Republic","iso_3166_2":"TG","iso_3166_3":"TGO","name":"Togo","region-code":"002","sub-region-code":"011"},"772":{"capital":"(TK2)","citizenship":"Tokelauan","country-code":"772","currency":"New Zealand dollar","currency_code":"NZD","currency_sub_unit":"cent","full_name":"Tokelau","iso_3166_2":"TK","iso_3166_3":"TKL","name":"Tokelau","region-code":"009","sub-region-code":"061"},"776":{"capital":"Nuku\u2019alofa","citizenship":"Tongan","country-code":"776","currency":"pa\u2019anga (inv.)","currency_code":"TOP","currency_sub_unit":"seniti (inv.)","full_name":"Kingdom of Tonga","iso_3166_2":"TO","iso_3166_3":"TON","name":"Tonga","region-code":"009","sub-region-code":"061"},"780":{"capital":"Port of Spain","citizenship":"Trinidadian; Tobagonian","country-code":"780","currency":"Trinidad and Tobago dollar","currency_code":"TTD","currency_sub_unit":"cent","full_name":"Republic of Trinidad and Tobago","iso_3166_2":"TT","iso_3166_3":"TTO","name":"Trinidad and Tobago","region-code":"019","sub-region-code":"029"},"784":{"capital":"Abu Dhabi","citizenship":"Emirian","country-code":"784","currency":"UAE dirham","currency_code":"AED","currency_sub_unit":"fils (inv.)","full_name":"United Arab Emirates","iso_3166_2":"AE","iso_3166_3":"ARE","name":"United Arab Emirates","region-code":"142","sub-region-code":"145"},"788":{"capital":"Tunis","citizenship":"Tunisian","country-code":"788","currency":"Tunisian dinar","currency_code":"TND","currency_sub_unit":"millime","full_name":"Republic of Tunisia","iso_3166_2":"TN","iso_3166_3":"TUN","name":"Tunisia","region-code":"002","sub-region-code":"015"},"792":{"capital":"Ankara","citizenship":"Turk","country-code":"792","currency":"Turkish lira (inv.)","currency_code":"TRY","currency_sub_unit":"kurus (inv.)","full_name":"Republic of Turkey","iso_3166_2":"TR","iso_3166_3":"TUR","name":"Turkey","region-code":"142","sub-region-code":"145"},"795":{"capital":"Ashgabat","citizenship":"Turkmen","country-code":"795","currency":"Turkmen manat (inv.)","currency_code":"TMT","currency_sub_unit":"tenge (inv.)","full_name":"Turkmenistan","iso_3166_2":"TM","iso_3166_3":"TKM","name":"Turkmenistan","region-code":"142","sub-region-code":"143"},"796":{"capital":"Cockburn Town","citizenship":"Turks and Caicos Islander","country-code":"796","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"Turks and Caicos Islands","iso_3166_2":"TC","iso_3166_3":"TCA","name":"Turks and Caicos Islands","region-code":"019","sub-region-code":"029"},"798":{"capital":"Funafuti","citizenship":"Tuvaluan","country-code":"798","currency":"Australian dollar","currency_code":"AUD","currency_sub_unit":"cent","full_name":"Tuvalu","iso_3166_2":"TV","iso_3166_3":"TUV","name":"Tuvalu","region-code":"009","sub-region-code":"061"},"800":{"capital":"Kampala","citizenship":"Ugandan","country-code":"800","currency":"Uganda shilling","currency_code":"UGX","currency_sub_unit":"cent","full_name":"Republic of Uganda","iso_3166_2":"UG","iso_3166_3":"UGA","name":"Uganda","region-code":"002","sub-region-code":"014"},"804":{"capital":"Kiev","citizenship":"Ukrainian","country-code":"804","currency":"hryvnia","currency_code":"UAH","currency_sub_unit":"kopiyka","full_name":"Ukraine","iso_3166_2":"UA","iso_3166_3":"UKR","name":"Ukraine","region-code":"150","sub-region-code":"151"},"807":{"capital":"Skopje","citizenship":"of the former Yugoslav Republic of Macedonia","country-code":"807","currency":"denar (pl. denars)","currency_code":"MKD","currency_sub_unit":"deni (inv.)","full_name":"the former Yugoslav Republic of Macedonia","iso_3166_2":"MK","iso_3166_3":"MKD","name":"Macedonia, the former Yugoslav Republic of","region-code":"150","sub-region-code":"039"},"818":{"capital":"Cairo","citizenship":"Egyptian","country-code":"818","currency":"Egyptian pound","currency_code":"EGP","currency_sub_unit":"piastre","full_name":"Arab Republic of Egypt","iso_3166_2":"EG","iso_3166_3":"EGY","name":"Egypt","region-code":"002","sub-region-code":"015"},"826":{"capital":"London","citizenship":"Briton","country-code":"826","currency":"pound sterling","currency_code":"GBP","currency_sub_unit":"penny (pl. pence)","full_name":"United Kingdom of Great Britain and Northern Ireland","iso_3166_2":"GB","iso_3166_3":"GBR","name":"United Kingdom","region-code":"150","sub-region-code":"154"},"831":{"capital":"St Peter Port","citizenship":"of Guernsey","country-code":"831","currency":"Guernsey pound (GG2)","currency_code":"GGP (GG2)","currency_sub_unit":"penny (pl. pence)","full_name":"Bailiwick of Guernsey","iso_3166_2":"GG","iso_3166_3":"GGY","name":"Guernsey","region-code":"150","sub-region-code":"154"},"832":{"capital":"St Helier","citizenship":"of Jersey","country-code":"832","currency":"Jersey pound (JE2)","currency_code":"JEP (JE2)","currency_sub_unit":"penny (pl. pence)","full_name":"Bailiwick of Jersey","iso_3166_2":"JE","iso_3166_3":"JEY","name":"Jersey","region-code":"150","sub-region-code":"154"},"833":{"capital":"Douglas","citizenship":"Manxman; Manxwoman","country-code":"833","currency":"Manx pound (IM2)","currency_code":"IMP (IM2)","currency_sub_unit":"penny (pl. pence)","full_name":"Isle of Man","iso_3166_2":"IM","iso_3166_3":"IMN","name":"Isle of Man","region-code":"150","sub-region-code":"154"},"834":{"capital":"Dodoma (TZ1)","citizenship":"Tanzanian","country-code":"834","currency":"Tanzanian shilling","currency_code":"TZS","currency_sub_unit":"cent","full_name":"United Republic of Tanzania","iso_3166_2":"TZ","iso_3166_3":"TZA","name":"Tanzania, United Republic of","region-code":"002","sub-region-code":"014"},"840":{"capital":"Washington DC","citizenship":"American","country-code":"840","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"United States of America","iso_3166_2":"US","iso_3166_3":"USA","name":"United States","region-code":"019","sub-region-code":"021"},"850":{"capital":"Charlotte Amalie","citizenship":"US Virgin Islander","country-code":"850","currency":"US dollar","currency_code":"USD","currency_sub_unit":"cent","full_name":"United States Virgin Islands","iso_3166_2":"VI","iso_3166_3":"VIR","name":"Virgin Islands, U.S.","region-code":"019","sub-region-code":"029"},"854":{"capital":"Ouagadougou","citizenship":"Burkinabe","country-code":"854","currency":"CFA franc (BCEAO)","currency_code":"XOF","currency_sub_unit":"centime","full_name":"Burkina Faso","iso_3166_2":"BF","iso_3166_3":"BFA","name":"Burkina Faso","region-code":"002","sub-region-code":"011"},"858":{"capital":"Montevideo","citizenship":"Uruguayan","country-code":"858","currency":"Uruguayan peso","currency_code":"UYU","currency_sub_unit":"cent\u00e9simo","full_name":"Eastern Republic of Uruguay","iso_3166_2":"UY","iso_3166_3":"URY","name":"Uruguay","region-code":"019","sub-region-code":"005"},"860":{"capital":"Tashkent","citizenship":"Uzbek","country-code":"860","currency":"sum (inv.)","currency_code":"UZS","currency_sub_unit":"tiyin (inv.)","full_name":"Republic of Uzbekistan","iso_3166_2":"UZ","iso_3166_3":"UZB","name":"Uzbekistan","region-code":"142","sub-region-code":"143"},"862":{"capital":"Caracas","citizenship":"Venezuelan","country-code":"862","currency":"bol\u00edvar fuerte (pl. bol\u00edvares fuertes)","currency_code":"VEF","currency_sub_unit":"c\u00e9ntimo","full_name":"Bolivarian Republic of Venezuela","iso_3166_2":"VE","iso_3166_3":"VEN","name":"Venezuela, Bolivarian Republic of","region-code":"019","sub-region-code":"005"},"876":{"capital":"Mata-Utu","citizenship":"Wallisian; Futunan; Wallis and Futuna Islander","country-code":"876","currency":"CFP franc","currency_code":"XPF","currency_sub_unit":"centime","full_name":"Wallis and Futuna","iso_3166_2":"WF","iso_3166_3":"WLF","name":"Wallis and Futuna","region-code":"009","sub-region-code":"061"},"882":{"capital":"Apia","citizenship":"Samoan","country-code":"882","currency":"tala (inv.)","currency_code":"WST","currency_sub_unit":"sene (inv.)","full_name":"Independent State of Samoa","iso_3166_2":"WS","iso_3166_3":"WSM","name":"Samoa","region-code":"009","sub-region-code":"061"},"887":{"capital":"San\u2019a","citizenship":"Yemenite","country-code":"887","currency":"Yemeni rial","currency_code":"YER","currency_sub_unit":"fils (inv.)","full_name":"Republic of Yemen","iso_3166_2":"YE","iso_3166_3":"YEM","name":"Yemen","region-code":"142","sub-region-code":"145"},"894":{"capital":"Lusaka","citizenship":"Zambian","country-code":"894","currency":"Zambian kwacha (inv.)","currency_code":"ZMK","currency_sub_unit":"ngwee (inv.)","full_name":"Republic of Zambia","iso_3166_2":"ZM","iso_3166_3":"ZMB","name":"Zambia","region-code":"002","sub-region-code":"014"}} \ No newline at end of file