diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 0000000..23c0a37 --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,35 @@ +--- +engines: + duplication: + enabled: true + config: + languages: + - ruby + - javascript + - python + - php + eslint: + enabled: true + fixme: + enabled: true + phpmd: + enabled: true + checks: + Design/TooManyPublicMethods: + enabled: false + Naming/ShortVariable: + enabled: false + CleanCode/ElseExpression: + enabled: false + CleanCode/BooleanArgumentFlag: + enabled: false +ratings: + paths: + - "**.inc" + - "**.js" + - "**.jsx" + - "**.module" + - "**.php" + - "**.py" + - "**.rb" +exclude_paths: [] diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..326ade8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# http://editorconfig.org +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +max_line_length = 80 +trim_trailing_whitespace = true + +[*.md] +max_line_length = 0 +trim_trailing_whitespace = false + +[COMMIT_EDITMSG] +max_line_length = 0 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..176a458 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d58263 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/vendor +/node_modules +composer.phar diff --git a/.scrutinizer.yml b/.scrutinizer.yml new file mode 100644 index 0000000..2a66ddd --- /dev/null +++ b/.scrutinizer.yml @@ -0,0 +1,289 @@ +inherit: true + +checks: + php: + verify_property_names: true + verify_argument_usable_as_reference: true + verify_access_scope_valid: true + variable_existence: true + useless_calls: true + use_statement_alias_conflict: true + fix_doc_comments: false + avoid_corrupting_byteorder_marks: true + unused_variables: true + argument_type_checks: true + assignment_of_null_return: true + avoid_aliased_php_functions: true + avoid_closing_tag: true + avoid_conflicting_incrementers: true + avoid_duplicate_types: true + avoid_entity_manager_injection: true + avoid_fixme_comments: true + avoid_length_functions_in_loops: true + avoid_multiple_statements_on_same_line: true + avoid_perl_style_comments: true + avoid_superglobals: true + avoid_todo_comments: true + avoid_usage_of_logical_operators: true + avoid_useless_overridden_methods: true + blank_line_after_namespace_declaration: true + catch_class_exists: true + classes_in_camel_caps: true + closure_use_modifiable: true + closure_use_not_conflicting: true + code_rating: true + deadlock_detection_in_loops: true + deprecated_code_usage: true + duplication: true + encourage_shallow_comparison: true + encourage_single_quotes: true + foreach_traversable: true + foreach_usable_as_reference: true + function_in_camel_caps: true + instanceof_class_exists: true + line_length: + max_length: '120' + method_calls_on_non_object: true + missing_arguments: true + more_specific_types_in_doc_comments: true + newline_at_end_of_file: true + no_commented_out_code: true + no_debug_code: true + no_duplicate_arguments: true + no_empty_statements: true + no_error_suppression: true + no_eval: true + no_exit: true + no_global_keyword: true + no_goto: true + no_long_variable_names: + maximum: '20' + no_non_implemented_abstract_methods: true + no_property_on_interface: true + no_short_method_names: + minimum: '3' + no_short_open_tag: true + no_short_variable_names: + minimum: '3' + no_trailing_whitespace: true + no_trait_type_hints: true + no_underscore_prefix_in_methods: true + no_underscore_prefix_in_properties: true + no_unnecessary_final_modifier: true + no_unnecessary_if: true + non_commented_empty_catch_block: true + one_class_per_file: true + overriding_private_members: true + parameter_non_unique: true + parse_doc_comments: true + optional_parameters_at_the_end: true + param_doc_comment_if_not_inferrable: true + parameter_doc_comments: true + parameters_in_camelcaps: true + php5_style_constructor: true + precedence_in_conditions: true + precedence_mistakes: true + prefer_while_loop_over_for_loop: true + properties_in_camelcaps: true + property_assignments: true + psr2_class_declaration: true + psr2_switch_declaration: true + require_php_tag_first: true + require_scope_for_methods: true + require_scope_for_properties: true + return_doc_comment_if_not_inferrable: true + return_doc_comments: true + security_vulnerabilities: true + side_effects_or_types: true + simplify_boolean_return: true + single_namespace_per_use: true + sql_injection_vulnerabilities: true + symfony_request_injection: true + switch_fallthrough_commented: true + too_many_arguments: true + unreachable_code: true + unused_methods: true + unused_parameters: true + unused_properties: true + uppercase_constants: true + use_self_instead_of_fqcn: true + + +filter: + excluded_paths: + - 'vendor/*' + +tools: + + # PHP Code Similarity Analyzer (https://scrutinizer-ci.com/docs/tools/php/code-similarity-analyzer/) + php_sim: + min_mass: 30 # Defaults to 16 + + + # SensioLabs Security Checker (https://scrutinizer-ci.com/docs/tools/php/security-advisory-checker/) + sensiolabs_security_checker: + enabled: true + + + # PHP Code Sniffer (https://scrutinizer-ci.com/docs/tools/php/code-sniffer/) + php_code_sniffer: + enabled: true + config: + standard: PSR2 + filter: + excluded_paths: + - 'vendor/*' + + + # PHP Copy/Paste Detector + php_cpd: + enabled: true + excluded_dirs: + - 'vendor' + + + # Analyzes the size and structure of a PHP project. + php_loc: + enabled: true + excluded_dirs: + - vendor + + + # PHP Mess Detector + php_mess_detector: + enabled: true + config: + rulesets: + - codesize + - unusedcode + - naming + - design + - controversial + filter: + excluded_paths: + - 'vendor/*' + + + # PHP PDepend (https://scrutinizer-ci.com/docs/tools/php/pdepend/) + php_pdepend: + enabled: true + excluded_dirs: + - vendor + + + # PHP Analyzer (https://scrutinizer-ci.com/docs/tools/php/php-analyzer/) + php_analyzer: + enabled: true + config: + parameter_reference_check: + enabled: true + checkstyle: + enabled: true + no_trailing_whitespace: true + naming: + enabled: true + local_variable: ^[a-z][a-zA-Z0-9]*$ + abstract_class_name: ^Abstract|Factory$ + utility_class_name: Utils?$ + constant_name: ^[A-Z][A-Z0-9]*(?:_[A-Z0-9]+)*$ + property_name: ^[a-z][a-zA-Z0-9]*$ + method_name: ^(?:[a-z]|__)[a-zA-Z0-9]*$ + parameter_name: ^[a-z][a-zA-Z0-9]*$ + interface_name: ^[A-Z][a-zA-Z0-9]*Interface$ + type_name: ^[A-Z][a-zA-Z0-9]*$ + exception_name: ^[A-Z][a-zA-Z0-9]*Exception$ + isser_method_name: ^(?:is|has|should|may|supports) + unreachable_code: + enabled: true + check_access_control: + enabled: true + typo_checks: + enabled: true + check_variables: + enabled: true + check_calls: + enabled: true + method_call_validity: true + too_many_arguments: true + missing_argument: true + argument_type_checks: lenient # Allowed Values: "disabled", "lenient", "strict" + check_debug_code: + enabled: true + check_property_assignments: + enabled: true + method_contract_checks: + enabled: true + verify_interface_like_constraints: true + verify_documented_constraints: true + verify_parent_constraints: true + check_request_data_usage: + enabled: true + suspicious_code: + enabled: true + overriding_parameter: false + overriding_closure_use: true + parameter_closure_use_conflict: true + parameter_multiple_times: true + non_existent_class_in_instanceof_check: true + non_existent_class_in_catch_clause: true + assignment_of_null_return: true + non_commented_switch_fallthrough: true + non_commented_empty_catch_block: true + overriding_private_members: true + use_statement_alias_conflict: true + precedence_in_condition_assignment: true + dead_assignments: + enabled: true + deadlock_detection: + enabled: true + verify_php_doc_comments: + enabled: true + parsable: true + traits_are_not_type_hinted: true + parameters: true + return: true + suggest_more_specific_types: true + ask_for_return_if_not_inferrable: true + ask_for_param_type_annotation: ~ + loops_must_use_braces: + enabled: true + check_usage_context: + enabled: true + foreach: + value_as_reference: true + traversable: true + missing_argument: ~ + argument_type_checks: ~ + simplify_boolean_return: + enabled: true + phpunit_checks: + enabled: false + reflection_checks: + enabled: true + + # Checks Common Precedence Mistakes + precedence_checks: + enabled: true + assignment_in_condition: true + comparison_of_bit_result: true + basic_semantic_checks: + enabled: true + property_on_interface: true + missing_abstract_methods: true + unused_code: + enabled: true + methods: true + parameters: true + deprecation_checks: + enabled: true + useless_function_calls: + enabled: true + metrics_lack_of_cohesion_methods: + enabled: true + metrics_coupling: + enabled: true + stable_code: + namespace_prefixes: [] + classes: [] + symfony_request_injection: + enabled: true diff --git a/.styleci.yml b/.styleci.yml new file mode 100644 index 0000000..5c54154 --- /dev/null +++ b/.styleci.yml @@ -0,0 +1,13 @@ +preset: recommended +risky: false +linting: true + +enabled: + - not_operator_with_successor_space + - no_short_echo_tag + - align_equals + +disabled: + - ordered_imports + - phpdoc_no_package + - unalign_equals diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6602da4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Rinvex Country Change Log + +All notable changes to this project will be documented in this file. + +This project adheres to [Semantic Versioning](CONTRIBUTING.md). + + +## v1.0.0 - 2016-08-20 +- Commit first draft. diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..b32e2f6 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,74 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or +advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at [help@rinvex.com](mailto:help@rinvex.com). All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..165705e --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,61 @@ +# Contribution Guide + +This project adheres to the following standards and practices. + + +## Versioning + +This project is versioned under the [Semantic Versioning](http://semver.org/) guidelines as much as possible. + +Releases will be numbered with the following format: + +- `..` +- `..` + +And constructed with the following guidelines: + +- Breaking backward compatibility bumps the major and resets the minor and patch. +- New additions without breaking backward compatibility bumps the minor and resets the patch. +- Bug fixes and misc changes bumps the patch. + + +## Support Policy + +- This package adheres to the following release cycle: + - LTS Releases: + - Released Every 2 years + - Gets 2 years bug fixes + - Gets 3 years security fixes + - General Releases: + - Released Every 6 months + - Gets 6 months bug fixes + - Gets 12 months security fixes +- As of next Laravel LTS release, long term support (LTS) will be provided for this package. This support and maintenance window is the largest ever provided for Rinvex packages and provides stability and peace of mind for larger, enterprise clients and customers. + + +## Coding Standards + +This project follows the FIG PHP Standards Recommendations compliant with the [PSR-1: Basic Coding Standard](http://www.php-fig.org/psr/psr-1/), [PSR-2: Coding Style Guide](http://www.php-fig.org/psr/psr-2/) and [PSR-4: Autoloader](http://www.php-fig.org/psr/psr-4/) to ensure a high level of interoperability between shared PHP code. If you notice any compliance oversights, please send a patch via pull request. + + +## Pull Requests + +The pull request process differs for new features and bugs. + +Pull requests for bugs may be sent without creating any proposal issue. If you believe that you know of a solution for a bug that has been filed, please leave a comment detailing your proposed fix or create a pull request with the fix mentioning that issue id. + + +## Proposal / Feature Requests + +If you have a proposal or a feature request, you may create an issue with `[Proposal]` in the title. + +The proposal should also describe the new feature, as well as implementation ideas. The proposal will then be reviewed and either approved or denied. Once a proposal is approved, a pull request may be created implementing the new feature. + + +### Which Branch? + +This project follows [Git-Flow](http://nvie.com/posts/a-successful-git-branching-model/), and as such has `master` (latest stable releases), `develop` (latest WIP development) and X.Y support branches (when there's multiple major versions). + +Accordingly all pull requests MUST be sent to the `develop` branch. + +> **Note:** Pull requests which do not follow these guidelines will be closed without any further notice. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..74bc002 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016, Rinvex LLC, + +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. diff --git a/README.md b/README.md new file mode 100644 index 0000000..4fc7694 --- /dev/null +++ b/README.md @@ -0,0 +1,442 @@ +# Rinvex Country + +**Rinvex Country** is a simple and lightweight package for retrieving country details with flexibility. A whole bunch of data including name, demonym, capital, iso codes, dialling codes, geo data, currencies, and other attributes for all 250 countries worldwide at your fingertips. + +[![Packagist](https://img.shields.io/packagist/v/rinvex/country.svg?label=Packagist&style=flat-square)](https://packagist.org/packages/rinvex/country) +[![License](https://img.shields.io/packagist/l/rinvex/country.svg?label=License&style=flat-square)](https://github.com/rinvex/country/blob/develop/LICENSE) +[![VersionEye Dependencies](https://img.shields.io/versioneye/d/php/rinvex:repository.svg?label=Dependencies&style=flat-square)](https://www.versioneye.com/php/rinvex:repository/) +[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/rinvex/country.svg?label=Scrutinizer&style=flat-square)](https://scrutinizer-ci.com/g/rinvex/country/) +[![Code Climate](https://img.shields.io/codeclimate/github/rinvex/country.svg?label=CodeClimate&style=flat-square)](https://codeclimate.com/github/rinvex/country) +[![StyleCI](https://styleci.io/repos/66037019/shield)](https://styleci.io/repos/66037019) +[![SensioLabs Insight](https://img.shields.io/sensiolabs/i/f2dca242-eb65-4bcc-8481-cd27ea16c804.svg?label=SensioLabs&style=flat-square)](https://insight.sensiolabs.com/projects/f2dca242-eb65-4bcc-8481-cd27ea16c804) + + +## Quick Example (TL;DR) + +Install via `composer require rinvex/country`, then use as follows: +```php +use Rinvex\Country\Models\Country; + +// Find a country by it's ISO 3166-1 alpha-2 +$egypt = (new Country)->find('EG'); + +// Find a country by one of it's attributes +$usa = (new Country)->findBy('capital', 'Washington D.C.'); + +// Find all countries +$countries = (new Country)->findAll(); + +// Retrieve only `name`, `demonym`, and `currency` attributes of "Japan": +$japan = (new Country)->find('JP', ['name', 'demonym', 'currency']); + +// Utilize Laravel Collections to get an array of all country names, with their 'iso_3166_1_alpha2' as the array keys +$allCountries = (new Country)->findAll()->pluck('name.common', 'iso_3166_1_alpha2'); +``` + +--- + +**Mission accomplished! You're good to use this package right now! :white_check_mark:** + +**Unless you're new to this kind of stuff, you can skip the following steps! :wink:** + +--- + + +## Table Of Contents + +- [Installation](#installation) + - [Compatibility](#compatibility) + - [Prerequisites](#prerequisites) + - [Require Package](#require-package) + - [Install Dependencies](#install-dependencies) +- [Integration](#integration) + - [Native Integration](#native-integration) + - [Laravel Integration](#laravel-integration) +- [Usage](#usage) +- [Country Example](#country-example) +- [Features Explained](#features-explained) +- [Inspired By](#inspired-by) +- [Changelog](#changelog) +- [Support](#support) +- [Contributing & Protocols](#contributing--protocols) +- [Security Vulnerabilities](#security-vulnerabilities) +- [About Rinvex](#about-rinvex) +- [License](#license) + + +## Installation + +The best and easiest way to install this package is through [Composer](https://getcomposer.org/). + +### Compatibility + +This package fully compatible with **Laravel** `5.1.*`, `5.2.*`, and `5.3.*`. + +While this package tends to be framework-agnostic, it embraces Laravel culture and best practices to some extent. It's tested mainly with Laravel but you still can use it with other frameworks or even without any framework if you want. + +### Prerequisites + +```json +"php": ">=5.5.9", +"illuminate/support": "5.1.*|5.2.*|5.3.*" +``` + +### Require Package + +Open your application's `composer.json` file and add the following line to the `require` array: +```json +"rinvex/country": "1.0.*" +``` + +> **Note:** Make sure that after the required changes your `composer.json` file is valid by running `composer validate`. + +### Install Dependencies + +On your terminal run `composer install` or `composer update` command according to your application's status to install the new requirements. + +> **Note:** Checkout Composer's [Basic Usage](https://getcomposer.org/doc/01-basic-usage.md) documentation for further details. + + +## Integration + +**Rinvex Repository** package is framework-agnostic and as such can be integrated easily natively or with your favorite framework. + +### Native Integration + +Integrating the package outside of a framework is incredibly easy, just require the `vendor/autoload.php` file to autoload the package. + +> **Note:** Checkout Composer's [Autoloading](https://getcomposer.org/doc/01-basic-usage.md#autoloading) documentation for further details. + +### Laravel Integration + +Integrating the package inside Laravel framework takes much less work, actually it doesn't require any integration steps after installation. Just jump directly to the [Usage](#usage) section. Awesome, huh? + + +## Usage + +Using this package is pretty easy, and straightforward. It provides you with few simple and intuitive API. + +First you need to import `Rinvex\Country\Models\Country` class in your file, then you can use any of the `Country` class methods, as follows: +```php +use Rinvex\Country\Models\Country; +``` + +The `find` method finds a country by it's ISO 3166-1 alpha-2, and returns an array of first result: +```php +$egypt = (new Country)->find('EG'); +``` + +The `findBy` method finds a country by one of it's attributes, and returns an array of first result: +```php +$usa = (new Country)->findBy('capital', 'Washington D.C.'); +``` + +The `findAll` method finds all countries, and returns a collection of all results: +```php +$countries = (new Country)->findAll(); +``` + +This package utilizes [Laravel Collections](https://laravel.com/docs/5.2/collections), so you can just manipulate `findAll` method results the way you need. Example: +```php +// Get an array of all country names, with their 'iso_3166_1_alpha2' as the array keys +$allCountries = (new Country)->findAll()->pluck('name.common', 'iso_3166_1_alpha2'); +``` + +> **Note:** All `find*` methods have an optional parameter for retrieved columns/attributes, see the following example: + +Retrieve only `name`, `demonym`, and `currency` attributes of "Japan": +```php +$japan = (new Country)->find('JP', ['name', 'demonym', 'currency']); +``` + + +## Country Example + +```json +{ + "EG": { + "name": { + "common": "Egypt", + "official": "Arab Republic of Egypt", + "native": { + "ara": { + "official": "جمهورية مصر العربية", + "common": "مصر" + } + } + }, + "demonym": "Egyptian", + "capital": "Cairo", + "iso_3166_1_alpha2": "EG", + "iso_3166_1_alpha3": "EGY", + "iso_3166_1_numeric": "818", + "currency": { + "EGP": { + "iso_4217_code": "EGP", + "iso_4217_numeric": 818, + "iso_4217_name": "Egyptian Pound", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".eg", + ".مصر" + ], + "alt_spellings": [ + "EG", + "Arab Republic of Egypt" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "cym": { + "official": "Arab Republic of Egypt", + "common": "Yr Aifft" + }, + "deu": { + "official": "Arabische Republik Ägypten", + "common": "Ägypten" + }, + "fra": { + "official": "République arabe d'Égypte", + "common": "Égypte" + }, + "hrv": { + "official": "Arapska Republika Egipat", + "common": "Egipat" + }, + "ita": { + "official": "Repubblica araba d'Egitto", + "common": "Egitto" + }, + "jpn": { + "official": "エジプト·アラブ共和国", + "common": "エジプト" + }, + "nld": { + "official": "Arabische Republiek Egypte", + "common": "Egypte" + }, + "por": { + "official": "República Árabe do Egipto", + "common": "Egito" + }, + "rus": { + "official": "Арабская Республика Египет", + "common": "Египет" + }, + "spa": { + "official": "República Árabe de Egipto", + "common": "Egipto" + }, + "fin": { + "official": "Egyptin arabitasavalta", + "common": "Egypti" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "27 00 N", + "latitude_dec": "26.756103515625", + "longitude": "30 00 E", + "longitude_dec": "29.86229705810547", + "max_latitude": "31.916667", + "max_longitude": "36.333333", + "min_latitude": "20.383333", + "min_longitude": "24.7", + "area": 1002450, + "region": "Africa", + "subregion": "Northern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "015", + "landlocked": false, + "borders": [ + "ISR", + "LBY", + "SDN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "20" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 357994, + "edgar": "H2", + "itu": "EGY", + "marc": "ua", + "wmo": "EG", + "ds": "ET", + "fifa": "EGY", + "fips": "EG", + "gaul": 40765, + "ioc": "EGY", + "cowc": "EGY", + "cown": 651, + "fao": 59, + "imf": 469, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + } +} +``` + + +## Features Explained + +- Country data are all stored here: `resources/data/countries.json`. +- `name` + - `common` - common name in english + - `official` - official name in english + - `native` - list of all native names + - key: three-letter ISO 639-3 language alpha code + - value: name object + - key: `official` - official name translation + - key: `common` - common name translation +- `demonym` - name of residents +- `capital` - capital city +- `iso_3166_1_alpha2` - code ISO 3166-1 alpha-2 +- `iso_3166_1_alpha3` -code ISO 3166-1 alpha-3 +- `iso_3166_1_numeric` - code ISO 3166-1 numeric +- `currency` - ISO 4217 currency code(s) + - key: three-letter ISO 4217 currency code + - value: currency object + - key: `iso_4217_code` - three-letter ISO 4217 currency alpha code + - key: `iso_4217_numeric` - three-number ISO 4217 currency numeric code + - key: `iso_4217_name` - official ISO 4217 currency name + - key: `iso_4217_minor_unit` - minor currency unit +- `tld` - country code top-level domain +- `alt_spellings` - alternative spellings +- `languages` - list of official languages + - key: three-letter ISO 639-3 language code + - value: name of the language in english +- `translations` - list of name translations + - key: three-letter ISO 639-3 language code + - value: name object + - key: `official` - official name translation + - key: `common` - common name translation +- `geo` + - `continent` - continents that country lies in + - key: two-letter continent code + - value: name of the continent in english + - `postal_code` - geographical area postal code + - `latitude` - short form of latitude coordinate point + - `latitude_dec` - described latitude coordinate point + - `longitude` - short form of longitude coordinate point + - `longitude_dec` - described longitude coordinate point + - `max_latitude` - maximum latitude coordinate point + - `max_longitude` - maximum longitude coordinate point + - `min_latitude` - minimum latitude coordinate point + - `min_longitude` - minimum longitude coordinate point + - `area` - land area in km² + - `region` - geographical region + - `subregion` - geographical sub-region + - `world_region` - geographical world region + - `region_code` - geographical region numeric code + - `subregion_code` - geographical sub-region numeric code + - `landlocked` - landlocked status + - `borders` - land borders + - `independent` - independent status +- `dialling` + - `calling_code` - calling code(s) + - `national_prefix` - national prefix + - `national_number_lengths` - national number lengths + - `national_destination_code_lengths` - national destination code lengths + - `international_prefix` - international prefix +- `extra` + - `geonameid` - Geoname ID + - `edgar` - Electronic Data Gathering, Analysis, and Retrieval system + - `itu` - Codes assigned by the International Telecommunications Union + - `marc` - MAchine-Readable Cataloging codes from the Library of Congress + - `wmo` - Country abbreviations by the World Meteorological Organization + - `ds` - Distinguishing signs of vehicles in international traffic + - `fifa` - Codes assigned by the Fédération Internationale de Football Association + - `fips` - Codes from the U.S. Federal Information Processing Standard + - `gaul` - Global Administrative Unit Layers from the Food and Agriculture Organization + - `ioc` - Codes assigned by the International Olympics Committee + - `cowc` - Correlates of War character + - `cown` - Correlates of War numeric + - `fao` - Food and Agriculture Organization + - `imf` - International Monetary Fund + - `ar5` - Fifth Assessment Report (AR5) + - `address_format` - Address forma + - `eu_member` - European Union Member + - `vat_rates` - Value-Added Tax + + +## Inspired By + +This package has been inspired by, and used some country data of the following open-source projects: + +- https://en.wikipedia.org +- https://github.com/hexorx/countries +- https://github.com/mledoze/countries +- https://github.com/annexare/Countries +- https://github.com/umpirsky/country-list +- https://github.com/datasets/country-list +- https://github.com/datasets/country-codes +- https://github.com/sripaulgit/country-codes +- https://github.com/alexrabarts/iso_country_codes +- https://github.com/vincentarelbundock/countrycode +- https://github.com/lukes/ISO-3166-Countries-with-Regional-Codes + + +## Changelog + +Refer to the [Changelog](CHANGELOG.md) for a full history of the project. + + +## Support + +The following support channels are available at your fingertips: + +- [Chat on Slack](http://chat.rinvex.com) +- [Help on Email](mailto:help@rinvex.com) +- [Follow on Twitter](https://twitter.com/rinvex) + + +## Contributing & Protocols + +Thank you for considering contributing to this project! The contribution guide can be found in [CONTRIBUTING.md](CONTRIBUTING.md). + +Bug reports, feature requests, and pull requests are very welcome. + +- [Versioning](CONTRIBUTING.md#versioning) +- [Support Policy](CONTRIBUTING.md#support-policy) +- [Coding Standards](CONTRIBUTING.md#coding-standards) +- [Pull Requests](CONTRIBUTING.md#pull-requests) + + +## Security Vulnerabilities + +If you discover a security vulnerability within this project, please send an e-mail to help@rinvex.com. All security vulnerabilities will be promptly addressed. + + +## About Rinvex + +Rinvex is a software solutions startup, specialized in integrated enterprise solutions for SMEs established in Alexandria, Egypt since June 2016. We believe that our drive The Value, The Reach, and The Impact is what differentiates us and unleash the endless possibilities of our philosophy through the power of software. We like to call it Innovation At The Speed Of Life. That’s how we do our share of advancing humanity. + + +## License + +This software is released under [The MIT License (MIT)](LICENSE). + +(c) 2016 Rinvex LLC, Some rights reserved. diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..9f2c3b3 --- /dev/null +++ b/composer.json @@ -0,0 +1,52 @@ +{ + "name": "rinvex/country", + "description": "Rinvex Country is a simple and lightweight package for retrieving country details with flexibility. A whole bunch of data including name, demonym, capital, iso codes, dialling codes, geo data, currencies, and other attributes for all 250 countries worldwide at your fingertips.", + "keywords": [ + "rinvex", + "country", + "flexible", + "retrieve", + "simple" + ], + "license": "MIT", + "homepage": "https://rinvex.com", + "support": { + "email": "help@rinvex.com", + "issues": "https://github.com/rinvex/country/issues", + "source": "https://github.com/rinvex/country", + "docs": "https://github.com/rinvex/country/blob/master/README.md" + }, + "authors": [ + { + "name": "Rinvex LLC", + "homepage": "https://rinvex.com", + "email": "help@rinvex.com" + }, + { + "name": "Abdelrahman Omran", + "homepage": "https://omranic.com", + "email": "me@omranic.com", + "role": "Project Lead" + }, + { + "name": "The Generous Laravel Community", + "homepage": "https://github.com/rinvex/country/contributors" + } + ], + "require": { + "php": ">=5.5.9", + "illuminate/support": "5.1.*|5.2.*|5.3.*" + }, + "autoload": { + "psr-4": { + "Rinvex\\Country\\": "src/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "minimum-stability": "dev", + "prefer-stable": true +} diff --git a/resources/data/countries.json b/resources/data/countries.json new file mode 100644 index 0000000..7140638 --- /dev/null +++ b/resources/data/countries.json @@ -0,0 +1,35688 @@ +{ + "AW": { + "name": { + "common": "Aruba", + "official": "Aruba", + "native": { + "nld": { + "official": "Aruba", + "common": "Aruba" + }, + "pap": { + "official": "Aruba", + "common": "Aruba" + } + } + }, + "demonym": "Aruban", + "capital": "Oranjestad", + "iso_3166_1_alpha2": "AW", + "iso_3166_1_alpha3": "ABW", + "iso_3166_1_numeric": "533", + "currency": { + "AWG": { + "iso_4217_code": "AWG", + "iso_4217_numeric": 533, + "iso_4217_name": "Aruban Florin", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".aw" + ], + "alt_spellings": [ + "AW" + ], + "languages": { + "nld": "Dutch", + "pap": "Papiamento" + }, + "translations": { + "deu": { + "official": "Aruba", + "common": "Aruba" + }, + "fra": { + "official": "Aruba", + "common": "Aruba" + }, + "hrv": { + "official": "Aruba", + "common": "Aruba" + }, + "ita": { + "official": "Aruba", + "common": "Aruba" + }, + "jpn": { + "official": "アルバ", + "common": "アルバ" + }, + "nld": { + "official": "Aruba", + "common": "Aruba" + }, + "por": { + "official": "Aruba", + "common": "Aruba" + }, + "rus": { + "official": "Аруба", + "common": "Аруба" + }, + "spa": { + "official": "Aruba", + "common": "Aruba" + }, + "fin": { + "official": "Aruba", + "common": "Aruba" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "12 30 N", + "latitude_dec": "12.506523132324219", + "longitude": "69 58 W", + "longitude_dec": "-69.96931457519531", + "max_latitude": "12.616667", + "max_longitude": "-69.85", + "min_latitude": "12.416667", + "min_longitude": "-70.066667", + "area": 180, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Part of NL" + }, + "dialling": { + "calling_code": [ + "297" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3577279, + "edgar": "1C", + "itu": "ABW", + "marc": "aw", + "wmo": "NU", + "ds": 0, + "fifa": "ARU", + "fips": "AA", + "gaul": 14, + "ioc": "ARU", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 314, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AF": { + "name": { + "common": "Afghanistan", + "official": "Islamic Republic of Afghanistan", + "native": { + "prs": { + "official": "جمهوری اسلامی افغانستان", + "common": "افغانستان" + }, + "pus": { + "official": "د افغانستان اسلامي جمهوریت", + "common": "افغانستان" + }, + "tuk": { + "official": "Owganystan Yslam Respublikasy", + "common": "Owganystan" + } + } + }, + "demonym": "Afghan", + "capital": "Kabul", + "iso_3166_1_alpha2": "AF", + "iso_3166_1_alpha3": "AFG", + "iso_3166_1_numeric": "004", + "currency": { + "AFN": { + "iso_4217_code": "AFN", + "iso_4217_numeric": 971, + "iso_4217_name": "Afghani", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".af" + ], + "alt_spellings": [ + "AF", + "Afġānistān" + ], + "languages": { + "prs": "Dari", + "pus": "Pashto", + "tuk": "Turkmen" + }, + "translations": { + "cym": { + "official": "Islamic Republic of Afghanistan", + "common": "Affganistan" + }, + "deu": { + "official": "Islamische Republik Afghanistan", + "common": "Afghanistan" + }, + "fra": { + "official": "République islamique d'Afghanistan", + "common": "Afghanistan" + }, + "hrv": { + "official": "Islamska Republika Afganistan", + "common": "Afganistan" + }, + "ita": { + "official": "Repubblica islamica dell'Afghanistan", + "common": "Afghanistan" + }, + "jpn": { + "official": "アフガニスタン·イスラム共和国", + "common": "アフガニスタン" + }, + "nld": { + "official": "Islamitische Republiek Afghanistan", + "common": "Afghanistan" + }, + "por": { + "official": "República Islâmica do Afeganistão", + "common": "Afeganistão" + }, + "rus": { + "official": "Исламская Республика Афганистан", + "common": "Афганистан" + }, + "spa": { + "official": "República Islámica de Afganistán", + "common": "Afganistán" + }, + "fin": { + "official": "Afganistanin islamilainen tasavalta", + "common": "Afganistan" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "33 00 N", + "latitude_dec": "33.833248138427734", + "longitude": "65 00 E", + "longitude_dec": "66.02528381347656", + "max_latitude": "38.483611", + "max_longitude": "74.8868713067", + "min_latitude": "29.383333", + "min_longitude": "60.566667", + "area": 652230, + "region": "Asia", + "subregion": "Southern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "034", + "landlocked": true, + "borders": [ + "IRN", + "PAK", + "TKM", + "UZB", + "TJK", + "CHN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "93" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1149361, + "edgar": "B2", + "itu": "AFG", + "marc": "af", + "wmo": "AF", + "ds": "AFG", + "fifa": "AFG", + "fips": "AF", + "gaul": 1, + "ioc": "AFG", + "cowc": "AFG", + "cown": 700, + "fao": 2, + "imf": 512, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AO": { + "name": { + "common": "Angola", + "official": "Republic of Angola", + "native": { + "por": { + "official": "República de Angola", + "common": "Angola" + } + } + }, + "demonym": "Angolan", + "capital": "Luanda", + "iso_3166_1_alpha2": "AO", + "iso_3166_1_alpha3": "AGO", + "iso_3166_1_numeric": "024", + "currency": { + "AOA": { + "iso_4217_code": "AOA", + "iso_4217_numeric": 973, + "iso_4217_name": "Kwanza", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ao" + ], + "alt_spellings": [ + "AO", + "República de Angola", + "ʁɛpublika de an'ɡɔla" + ], + "languages": { + "por": "Portuguese" + }, + "translations": { + "cym": { + "official": "Republic of Angola", + "common": "Angola" + }, + "deu": { + "official": "Republik Angola", + "common": "Angola" + }, + "fra": { + "official": "République d'Angola", + "common": "Angola" + }, + "hrv": { + "official": "Republika Angola", + "common": "Angola" + }, + "ita": { + "official": "Repubblica dell'Angola", + "common": "Angola" + }, + "jpn": { + "official": "アンゴラ共和国", + "common": "アンゴラ" + }, + "nld": { + "official": "Republiek Angola", + "common": "Angola" + }, + "por": { + "official": "República de Angola", + "common": "Angola" + }, + "rus": { + "official": "Республика Ангола", + "common": "Ангола" + }, + "spa": { + "official": "República de Angola", + "common": "Angola" + }, + "fin": { + "official": "Angolan tasavalta", + "common": "Angola" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "12 30 S", + "latitude_dec": "-12.333555221557617", + "longitude": "18 30 E", + "longitude_dec": "17.539464950561523", + "max_latitude": "-4.4", + "max_longitude": "23.983333", + "min_latitude": "-32", + "min_longitude": "10", + "area": 1246700, + "region": "Africa", + "subregion": "Middle Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "017", + "landlocked": false, + "borders": [ + "COG", + "COD", + "ZMB", + "NAM" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "244" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3351879, + "edgar": "B7", + "itu": "AGL", + "marc": "ao", + "wmo": "AN", + "ds": 0, + "fifa": "ANG", + "fips": "AO", + "gaul": 8, + "ioc": "ANG", + "cowc": "ANG", + "cown": 540, + "fao": 7, + "imf": 614, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AI": { + "name": { + "common": "Anguilla", + "official": "Anguilla", + "native": { + "eng": { + "official": "Anguilla", + "common": "Anguilla" + } + } + }, + "demonym": "Anguillian", + "capital": "The Valley", + "iso_3166_1_alpha2": "AI", + "iso_3166_1_alpha3": "AIA", + "iso_3166_1_numeric": "660", + "currency": { + "XCD": { + "iso_4217_code": "XCD", + "iso_4217_numeric": 951, + "iso_4217_name": "East Caribbean Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ai" + ], + "alt_spellings": [ + "AI" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Anguilla", + "common": "Anguilla" + }, + "fra": { + "official": "Anguilla", + "common": "Anguilla" + }, + "hrv": { + "official": "Anguilla", + "common": "Angvila" + }, + "ita": { + "official": "Anguilla", + "common": "Anguilla" + }, + "jpn": { + "official": "アングィラ", + "common": "アンギラ" + }, + "nld": { + "official": "Anguilla", + "common": "Anguilla" + }, + "por": { + "official": "Anguilla", + "common": "Anguilla" + }, + "rus": { + "official": "Ангилья", + "common": "Ангилья" + }, + "spa": { + "official": "Anguila", + "common": "Anguilla" + }, + "fin": { + "official": "Anguilla", + "common": "Anguilla" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "18 15 N", + "latitude_dec": "18.22646713256836", + "longitude": "63 10 W", + "longitude_dec": "-63.0473518371582", + "max_latitude": "18.6", + "max_longitude": "-62.916667", + "min_latitude": "18.15", + "min_longitude": "-63.433333", + "area": 91, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "1264" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3573511, + "edgar": "1A", + "itu": "AIA", + "marc": "am", + "wmo": 0, + "ds": 0, + "fifa": "AIA", + "fips": "AV", + "gaul": 9, + "ioc": "AIA", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 312, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AX": { + "name": { + "common": "Åland Islands", + "official": "Åland Islands", + "native": { + "swe": { + "official": "Landskapet Åland", + "common": "Åland" + } + } + }, + "demonym": "Ålandish", + "capital": "Mariehamn", + "iso_3166_1_alpha2": "AX", + "iso_3166_1_alpha3": "ALA", + "iso_3166_1_numeric": "248", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ax" + ], + "alt_spellings": [ + "AX", + "Aaland", + "Aland", + "Ahvenanmaa" + ], + "languages": { + "swe": "Swedish" + }, + "translations": { + "deu": { + "official": "Åland-Inseln", + "common": "Åland" + }, + "fra": { + "official": "Ahvenanmaa", + "common": "Ahvenanmaa" + }, + "hrv": { + "official": "Aland Islands", + "common": "Ålandski otoci" + }, + "ita": { + "official": "Isole Åland", + "common": "Isole Aland" + }, + "jpn": { + "official": "オーランド諸島", + "common": "オーランド諸島" + }, + "nld": { + "official": "Åland eilanden", + "common": "Ålandeilanden" + }, + "por": { + "official": "Ilhas Åland", + "common": "Alândia" + }, + "rus": { + "official": "Аландские острова", + "common": "Аландские острова" + }, + "spa": { + "official": "Islas Åland", + "common": "Alandia" + }, + "fin": { + "official": "Ahvenanmaan maakunta", + "common": "Ahvenanmaa" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "", + "latitude_dec": "60.2023811340332", + "longitude": "", + "longitude_dec": "19.96520233154297", + "max_latitude": "60.7411127", + "max_longitude": "21.4858534", + "min_latitude": "59.7272227", + "min_longitude": "19.2633194", + "area": 1580, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [], + "independent": "Part of FI" + }, + "dialling": { + "calling_code": [ + "358" + ], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 661882, + "edgar": 0, + "itu": 0, + "marc": 0, + "wmo": 0, + "ds": "FIN", + "fifa": "ALD", + "fips": 0, + "gaul": 1242, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AL": { + "name": { + "common": "Albania", + "official": "Republic of Albania", + "native": { + "sqi": { + "official": "Republika e Shqipërisë", + "common": "Shqipëria" + } + } + }, + "demonym": "Albanian", + "capital": "Tirana", + "iso_3166_1_alpha2": "AL", + "iso_3166_1_alpha3": "ALB", + "iso_3166_1_numeric": "008", + "currency": { + "ALL": { + "iso_4217_code": "ALL", + "iso_4217_numeric": 8, + "iso_4217_name": "Lek", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".al" + ], + "alt_spellings": [ + "AL", + "Shqipëri", + "Shqipëria", + "Shqipnia" + ], + "languages": { + "sqi": "Albanian" + }, + "translations": { + "cym": { + "official": "Republic of Albania", + "common": "Albania" + }, + "deu": { + "official": "Republik Albanien", + "common": "Albanien" + }, + "fra": { + "official": "République d'Albanie", + "common": "Albanie" + }, + "hrv": { + "official": "Republika Albanija", + "common": "Albanija" + }, + "ita": { + "official": "Repubblica d'Albania", + "common": "Albania" + }, + "jpn": { + "official": "アルバニア共和国", + "common": "アルバニア" + }, + "nld": { + "official": "Republiek Albanië", + "common": "Albanië" + }, + "por": { + "official": "República da Albânia", + "common": "Albânia" + }, + "rus": { + "official": "Республика Албания", + "common": "Албания" + }, + "spa": { + "official": "República de Albania", + "common": "Albania" + }, + "fin": { + "official": "Albanian tasavalta", + "common": "Albania" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "41 00 N", + "latitude_dec": "41.11113357543945", + "longitude": "20 00 E", + "longitude_dec": "20.02745246887207", + "max_latitude": "42.659167", + "max_longitude": "21.05", + "min_latitude": "39.65", + "min_longitude": "19.266667", + "area": 28748, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [ + "MNE", + "GRC", + "MKD", + "UNK" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "355" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 783754, + "edgar": "B3", + "itu": "ALB", + "marc": "aa", + "wmo": "AB", + "ds": "AL", + "fifa": "ALB", + "fips": "AL", + "gaul": 3, + "ioc": "ALB", + "cowc": "ALB", + "cown": 339, + "fao": 3, + "imf": 914, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AD": { + "name": { + "common": "Andorra", + "official": "Principality of Andorra", + "native": { + "cat": { + "official": "Principat d'Andorra", + "common": "Andorra" + } + } + }, + "demonym": "Andorran", + "capital": "Andorra la Vella", + "iso_3166_1_alpha2": "AD", + "iso_3166_1_alpha3": "AND", + "iso_3166_1_numeric": "020", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ad" + ], + "alt_spellings": [ + "AD", + "Principality of Andorra", + "Principat d'Andorra" + ], + "languages": { + "cat": "Catalan" + }, + "translations": { + "cym": { + "official": "Principality of Andorra", + "common": "Andorra" + }, + "deu": { + "official": "Fürstentum Andorra", + "common": "Andorra" + }, + "fra": { + "official": "Principauté d'Andorre", + "common": "Andorre" + }, + "hrv": { + "official": "Kneževina Andora", + "common": "Andora" + }, + "ita": { + "official": "Principato di Andorra", + "common": "Andorra" + }, + "jpn": { + "official": "アンドラ公国", + "common": "アンドラ" + }, + "nld": { + "official": "Prinsdom Andorra", + "common": "Andorra" + }, + "por": { + "official": "Principado de Andorra", + "common": "Andorra" + }, + "rus": { + "official": "Княжество Андорра", + "common": "Андорра" + }, + "spa": { + "official": "Principado de Andorra", + "common": "Andorra" + }, + "fin": { + "official": "Andorran ruhtinaskunta", + "common": "Andorra" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "42 30 N", + "latitude_dec": "42.5506591796875", + "longitude": "1 30 E", + "longitude_dec": "1.5762332677841187", + "max_latitude": "42.65", + "max_longitude": "1.783333", + "min_latitude": "42.433333", + "min_longitude": "1.416667", + "area": 468, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": true, + "borders": [ + "FRA", + "ESP" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "376" + ], + "national_prefix": null, + "national_number_lengths": [ + 6, + 7, + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3041565, + "edgar": "B6", + "itu": "AND", + "marc": "an", + "wmo": 0, + "ds": "AND", + "fifa": "AND", + "fips": "AN", + "gaul": 7, + "ioc": "AND", + "cowc": "AND", + "cown": 232, + "fao": 6, + "imf": 0, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AE": { + "name": { + "common": "United Arab Emirates", + "official": "United Arab Emirates", + "native": { + "ara": { + "official": "الإمارات العربية المتحدة", + "common": "دولة الإمارات العربية المتحدة" + } + } + }, + "demonym": "Emirati", + "capital": "Abu Dhabi", + "iso_3166_1_alpha2": "AE", + "iso_3166_1_alpha3": "ARE", + "iso_3166_1_numeric": "784", + "currency": { + "AED": { + "iso_4217_code": "AED", + "iso_4217_numeric": 784, + "iso_4217_name": "UAE Dirham", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ae", + "امارات." + ], + "alt_spellings": [ + "AE", + "UAE", + "Emirates" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Vereinigte Arabische Emirate", + "common": "Vereinigte Arabische Emirate" + }, + "fra": { + "official": "Émirats arabes unis", + "common": "Émirats arabes unis" + }, + "hrv": { + "official": "Ujedinjeni Arapski Emirati", + "common": "Ujedinjeni Arapski Emirati" + }, + "ita": { + "official": "Emirati Arabi Uniti", + "common": "Emirati Arabi Uniti" + }, + "jpn": { + "official": "アラブ首長国連邦", + "common": "アラブ首長国連邦" + }, + "nld": { + "official": "Verenigde Arabische Emiraten", + "common": "Verenigde Arabische Emiraten" + }, + "por": { + "official": "Emirados Árabes Unidos", + "common": "Emirados Árabes Unidos" + }, + "rus": { + "official": "Объединенные Арабские Эмираты", + "common": "Объединённые Арабские Эмираты" + }, + "spa": { + "official": "Emiratos Árabes Unidos", + "common": "Emiratos Árabes Unidos" + }, + "fin": { + "official": "Yhdistyneet arabiemiirikunnat", + "common": "Arabiemiraatit" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": false, + "latitude": "24 00 N", + "latitude_dec": "23.684776306152344", + "longitude": "54 00 E", + "longitude_dec": "54.536643981933594", + "max_latitude": "26.133333", + "max_longitude": "58", + "min_latitude": "22.166667", + "min_longitude": "45", + "area": 83600, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "OMN", + "SAU" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "971" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 290557, + "edgar": "C0", + "itu": "UAE", + "marc": "ts", + "wmo": "ER", + "ds": 0, + "fifa": "UAE", + "fips": "AE", + "gaul": 255, + "ioc": "UAE", + "cowc": "UAE", + "cown": 696, + "fao": 225, + "imf": 466, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "AR": { + "name": { + "common": "Argentina", + "official": "Argentine Republic", + "native": { + "grn": { + "official": "Argentine Republic", + "common": "Argentina" + }, + "spa": { + "official": "República Argentina", + "common": "Argentina" + } + } + }, + "demonym": "Argentinean", + "capital": "Buenos Aires", + "iso_3166_1_alpha2": "AR", + "iso_3166_1_alpha3": "ARG", + "iso_3166_1_numeric": "032", + "currency": { + "ARS": { + "iso_4217_code": "ARS", + "iso_4217_numeric": 32, + "iso_4217_name": "Argentine Peso", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ar" + ], + "alt_spellings": [ + "AR", + "Argentine Republic", + "República Argentina" + ], + "languages": { + "grn": "Guaraní", + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Argentine Republic", + "common": "Ariannin" + }, + "deu": { + "official": "Argentinische Republik", + "common": "Argentinien" + }, + "fra": { + "official": "République argentine", + "common": "Argentine" + }, + "hrv": { + "official": "Argentinski Republika", + "common": "Argentina" + }, + "ita": { + "official": "Repubblica Argentina", + "common": "Argentina" + }, + "jpn": { + "official": "アルゼンチン共和国", + "common": "アルゼンチン" + }, + "nld": { + "official": "Argentijnse Republiek", + "common": "Argentinië" + }, + "por": { + "official": "República Argentina", + "common": "Argentina" + }, + "rus": { + "official": "Аргентинская Республика", + "common": "Аргентина" + }, + "spa": { + "official": "República Argentina", + "common": "Argentina" + }, + "fin": { + "official": "Argentiinan tasavalta", + "common": "Argentiina" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "34 00 S", + "latitude_dec": "-37.071964263916016", + "longitude": "64 00 W", + "longitude_dec": "-64.85450744628906", + "max_latitude": "-21.783333", + "max_longitude": "-53.65", + "min_latitude": "-58.116667", + "min_longitude": "-73.533333", + "area": 2780400, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "BOL", + "BRA", + "CHL", + "PRY", + "URY" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "54" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3865483, + "edgar": "C1", + "itu": "ARG", + "marc": "ag", + "wmo": "AG", + "ds": "RA", + "fifa": "ARG", + "fips": "AR", + "gaul": 12, + "ioc": "ARG", + "cowc": "ARG", + "cown": 160, + "fao": 9, + "imf": 213, + "ar5": "LAM", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{region}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "AM": { + "name": { + "common": "Armenia", + "official": "Republic of Armenia", + "native": { + "hye": { + "official": "Հայաստանի Հանրապետություն", + "common": "Հայաստան" + }, + "rus": { + "official": "Республика Армения", + "common": "Армения" + } + } + }, + "demonym": "Armenian", + "capital": "Yerevan", + "iso_3166_1_alpha2": "AM", + "iso_3166_1_alpha3": "ARM", + "iso_3166_1_numeric": "051", + "currency": { + "AMD": { + "iso_4217_code": "AMD", + "iso_4217_numeric": 51, + "iso_4217_name": "Armenian Dram", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".am" + ], + "alt_spellings": [ + "AM", + "Hayastan", + "Republic of Armenia", + "Հայաստանի Հանրապետություն" + ], + "languages": { + "hye": "Armenian", + "rus": "Russian" + }, + "translations": { + "cym": { + "official": "Republic of Armenia", + "common": "Armenia" + }, + "deu": { + "official": "Republik Armenien", + "common": "Armenien" + }, + "fra": { + "official": "République d'Arménie", + "common": "Arménie" + }, + "hrv": { + "official": "Republika Armenija", + "common": "Armenija" + }, + "ita": { + "official": "Repubblica di Armenia", + "common": "Armenia" + }, + "jpn": { + "official": "アルメニア共和国", + "common": "アルメニア" + }, + "nld": { + "official": "Republiek Armenië", + "common": "Armenië" + }, + "por": { + "official": "República da Arménia", + "common": "Arménia" + }, + "rus": { + "official": "Республика Армения", + "common": "Армения" + }, + "spa": { + "official": "República de Armenia", + "common": "Armenia" + }, + "fin": { + "official": "Armenian tasavalta", + "common": "Armenia" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "40 00 N", + "latitude_dec": "40.29266357421875", + "longitude": "45 00 E", + "longitude_dec": "44.93947219848633", + "max_latitude": "41.3", + "max_longitude": "46.560556", + "min_latitude": "38.894167", + "min_longitude": "43.4425", + "area": 29743, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": true, + "borders": [ + "AZE", + "GEO", + "IRN", + "TUR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "374" + ], + "national_prefix": "8", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 174982, + "edgar": "1B", + "itu": "ARM", + "marc": "ai", + "wmo": "AY", + "ds": "AM", + "fifa": "ARM", + "fips": "AM", + "gaul": 13, + "ioc": "ARM", + "cowc": "ARM", + "cown": 371, + "fao": 1, + "imf": 911, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AS": { + "name": { + "common": "American Samoa", + "official": "American Samoa", + "native": { + "eng": { + "official": "American Samoa", + "common": "American Samoa" + }, + "smo": { + "official": "Sāmoa Amelika", + "common": "Sāmoa Amelika" + } + } + }, + "demonym": "American Samoan", + "capital": "Pago Pago", + "iso_3166_1_alpha2": "AS", + "iso_3166_1_alpha3": "ASM", + "iso_3166_1_numeric": "016", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".as" + ], + "alt_spellings": [ + "AS", + "Amerika Sāmoa", + "Amelika Sāmoa", + "Sāmoa Amelika" + ], + "languages": { + "eng": "English", + "smo": "Samoan" + }, + "translations": { + "deu": { + "official": "Amerikanisch-Samoa", + "common": "Amerikanisch-Samoa" + }, + "fra": { + "official": "Samoa américaines", + "common": "Samoa américaines" + }, + "hrv": { + "official": "američka Samoa", + "common": "Američka Samoa" + }, + "ita": { + "official": "Samoa americane", + "common": "Samoa Americane" + }, + "jpn": { + "official": "米サモア", + "common": "アメリカ領サモア" + }, + "nld": { + "official": "Amerikaans Samoa", + "common": "Amerikaans Samoa" + }, + "por": { + "official": "Samoa americana", + "common": "Samoa Americana" + }, + "rus": { + "official": "американское Самоа", + "common": "Американское Самоа" + }, + "spa": { + "official": "Samoa Americana", + "common": "Samoa Americana" + }, + "fin": { + "official": "Amerikan Samoa", + "common": "Amerikan Samoa" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "14 20 S", + "latitude_dec": "-14.31956672668457", + "longitude": "170 00 W", + "longitude_dec": "-170.7403564453125", + "max_latitude": "-11.049690", + "max_longitude": "-169.416077", + "min_latitude": "-14.382470", + "min_longitude": "-171.091873", + "area": 199, + "region": "Oceania", + "subregion": "Polynesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "061", + "landlocked": false, + "borders": [], + "independent": "Territory of US" + }, + "dialling": { + "calling_code": [ + "1684" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 5880801, + "edgar": "B5", + "itu": "SMA", + "marc": "as", + "wmo": 0, + "ds": "USA", + "fifa": "ASA", + "fips": "AQ", + "gaul": 5, + "ioc": "ASA", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 859, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AQ": { + "name": { + "common": "Antarctica", + "official": "Antarctica", + "native": { + "eng": { + "official": "Antarctica", + "common": "Antarctica" + } + } + }, + "demonym": "Antarctican", + "capital": "", + "iso_3166_1_alpha2": "AQ", + "iso_3166_1_alpha3": "ATA", + "iso_3166_1_numeric": "010", + "currency": [], + "tld": [ + ".aq" + ], + "alt_spellings": [ + "AQ" + ], + "languages": [], + "translations": { + "cym": { + "official": "Antarctica", + "common": "Antarctica" + }, + "deu": { + "official": "Antarktika", + "common": "Antarktis" + }, + "fra": { + "official": "Antarctique", + "common": "Antarctique" + }, + "hrv": { + "official": "Antarktika", + "common": "Antarktika" + }, + "ita": { + "official": "Antartide", + "common": "Antartide" + }, + "jpn": { + "official": "南極大陸", + "common": "南極" + }, + "nld": { + "official": "Antarctica", + "common": "Antarctica" + }, + "por": { + "official": "Antártica", + "common": "Antártida" + }, + "rus": { + "official": "Антарктида", + "common": "Антарктида" + }, + "spa": { + "official": "Antártida", + "common": "Antártida" + }, + "fin": { + "official": "Etelämanner", + "common": "Etelämanner" + } + }, + "geo": { + "continent": { + "AN": "Antarctica" + }, + "postal_code": true, + "latitude": "90 00 S", + "latitude_dec": "-82.862752", + "longitude": "0 00 E", + "longitude_dec": "-135.0", + "max_latitude": "-60.0", + "max_longitude": "180.0", + "min_latitude": "-90.0", + "min_longitude": "-180.0", + "area": 14000000, + "region": "", + "subregion": "", + "world_region": "AMER", + "region_code": "", + "subregion_code": "", + "landlocked": false, + "borders": [], + "independent": "International" + }, + "dialling": { + "calling_code": [], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 6697173, + "edgar": 0, + "itu": 0, + "marc": "ay", + "wmo": "AA", + "ds": 0, + "fifa": "ROS", + "fips": "AY", + "gaul": 10, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TF": { + "name": { + "common": "French Southern and Antarctic Lands", + "official": "Territory of the French Southern and Antarctic Lands", + "native": { + "fra": { + "official": "Territoire des Terres australes et antarctiques françaises", + "common": "Terres australes et antarctiques françaises" + } + } + }, + "demonym": "French", + "capital": "Port-aux-Français", + "iso_3166_1_alpha2": "TF", + "iso_3166_1_alpha3": "ATF", + "iso_3166_1_numeric": "260", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tf" + ], + "alt_spellings": [ + "TF", + "French Southern Territories" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Gebiet der Französisch Süd-und Antarktisgebiete", + "common": "Französische Süd-und Antarktisgebiete" + }, + "fra": { + "official": "Territoire des Terres australes et antarctiques françaises", + "common": "Terres australes et antarctiques françaises" + }, + "hrv": { + "official": "Teritoriju Francuski južni i antarktički teritoriji", + "common": "Francuski južni i antarktički teritoriji" + }, + "ita": { + "official": "Territorio della australi e antartiche francesi Terre", + "common": "Territori Francesi del Sud" + }, + "jpn": { + "official": "フランス領南方·南極地域の領土", + "common": "フランス領南方・南極地域" + }, + "nld": { + "official": "Grondgebied van de Franse Zuidelijke en Antarctische gebieden", + "common": "Franse Gebieden in de zuidelijke Indische Oceaan" + }, + "por": { + "official": "Território do Sul e Antártica Francesa", + "common": "Terras Austrais e Antárticas Francesas" + }, + "rus": { + "official": "Территория Французские Южные и Антарктические земли", + "common": "Французские Южные и Антарктические территории" + }, + "spa": { + "official": "Territorio del Francés Tierras australes y antárticas", + "common": "Tierras Australes y Antárticas Francesas" + }, + "fin": { + "official": "Ranskan eteläiset ja antarktiset alueet", + "common": "Ranskan eteläiset ja antarktiset alueet" + } + }, + "geo": { + "continent": { + "AN": "Antarctica" + }, + "postal_code": false, + "latitude": "", + "latitude_dec": "-49.563865661621094", + "longitude": "", + "longitude_dec": "69.54277801513672", + "max_latitude": "-37.783333", + "max_longitude": "77.6", + "min_latitude": "-50.016667", + "min_longitude": "50.233333", + "area": 7747, + "region": "", + "subregion": "", + "world_region": "APAC", + "region_code": "", + "subregion_code": "", + "landlocked": false, + "borders": [], + "independent": "Territory of FR" + }, + "dialling": { + "calling_code": [], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 1546748, + "edgar": 0, + "itu": 0, + "marc": "fs", + "wmo": 0, + "ds": "F", + "fifa": 0, + "fips": "FS", + "gaul": 88, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AG": { + "name": { + "common": "Antigua and Barbuda", + "official": "Antigua and Barbuda", + "native": { + "eng": { + "official": "Antigua and Barbuda", + "common": "Antigua and Barbuda" + } + } + }, + "demonym": "Antiguan, Barbudan", + "capital": "Saint John's", + "iso_3166_1_alpha2": "AG", + "iso_3166_1_alpha3": "ATG", + "iso_3166_1_numeric": "028", + "currency": { + "XCD": { + "iso_4217_code": "XCD", + "iso_4217_numeric": 951, + "iso_4217_name": "East Caribbean Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ag" + ], + "alt_spellings": [ + "AG" + ], + "languages": { + "eng": "English" + }, + "translations": { + "cym": { + "official": "Antigua and Barbuda", + "common": "Antigwa a Barbiwda" + }, + "deu": { + "official": "Antigua und Barbuda", + "common": "Antigua und Barbuda" + }, + "fra": { + "official": "Antigua -et-Barbuda", + "common": "Antigua-et-Barbuda" + }, + "hrv": { + "official": "Antigva i Barbuda", + "common": "Antigva i Barbuda" + }, + "ita": { + "official": "Antigua e Barbuda", + "common": "Antigua e Barbuda" + }, + "jpn": { + "official": "アンチグアバーブーダ", + "common": "アンティグア・バーブーダ" + }, + "nld": { + "official": "Antigua en Barbuda", + "common": "Antigua en Barbuda" + }, + "por": { + "official": "Antigua e Barbuda", + "common": "Antígua e Barbuda" + }, + "rus": { + "official": "Антигуа и Барбуда", + "common": "Антигуа и Барбуда" + }, + "spa": { + "official": "Antigua y Barbuda", + "common": "Antigua y Barbuda" + }, + "fin": { + "official": "Antigua ja Barbuda", + "common": "Antigua ja Barbuda" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "17 03 N", + "latitude_dec": "17.09273910522461", + "longitude": "61 48 W", + "longitude_dec": "-61.81040954589844", + "max_latitude": "17.733333", + "max_longitude": "-61.666667", + "min_latitude": "16.916667", + "min_longitude": "-62.333333", + "area": 442, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1268" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3576396, + "edgar": "B9", + "itu": "ATG", + "marc": "aq", + "wmo": "AT", + "ds": 0, + "fifa": "ATG", + "fips": "AC", + "gaul": 11, + "ioc": "ANT", + "cowc": "AAB", + "cown": 58, + "fao": 8, + "imf": 311, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "AU": { + "name": { + "common": "Australia", + "official": "Commonwealth of Australia", + "native": { + "eng": { + "official": "Commonwealth of Australia", + "common": "Australia" + } + } + }, + "demonym": "Australian", + "capital": "Canberra", + "iso_3166_1_alpha2": "AU", + "iso_3166_1_alpha3": "AUS", + "iso_3166_1_numeric": "036", + "currency": { + "AUD": { + "iso_4217_code": "AUD", + "iso_4217_numeric": 36, + "iso_4217_name": "Australian Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".au" + ], + "alt_spellings": [ + "AU" + ], + "languages": { + "eng": "English" + }, + "translations": { + "cym": { + "official": "Commonwealth of Australia", + "common": "Awstralia" + }, + "deu": { + "official": "Commonwealth Australien", + "common": "Australien" + }, + "fra": { + "official": "Australie", + "common": "Australie" + }, + "hrv": { + "official": "Commonwealth of Australia", + "common": "Australija" + }, + "ita": { + "official": "Commonwealth dell'Australia", + "common": "Australia" + }, + "jpn": { + "official": "オーストラリア連邦", + "common": "オーストラリア" + }, + "nld": { + "official": "Gemenebest van Australië", + "common": "Australië" + }, + "por": { + "official": "Comunidade da Austrália", + "common": "Austrália" + }, + "rus": { + "official": "Содружество Австралии", + "common": "Австралия" + }, + "spa": { + "official": "Mancomunidad de Australia", + "common": "Australia" + }, + "fin": { + "official": "Australian liittovaltio", + "common": "Australia" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "27 00 S", + "latitude_dec": "-25.585241317749023", + "longitude": "133 00 E", + "longitude_dec": "134.50411987304688", + "max_latitude": "-15.5", + "max_longitude": "159.119444", + "min_latitude": "-29.472222", + "min_longitude": "147.1", + "area": 7692024, + "region": "Oceania", + "subregion": "Australia and New Zealand", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "053", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "61" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "0011" + }, + "extra": { + "geonameid": 2077456, + "edgar": "C3", + "itu": "AUS", + "marc": "at", + "wmo": "AU", + "ds": "AUS", + "fifa": "AUS", + "fips": "AS", + "gaul": 17, + "ioc": "AUS", + "cowc": "AUL", + "cown": 900, + "fao": 10, + "imf": 193, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{city}} {{region_short}} {{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "AT": { + "name": { + "common": "Austria", + "official": "Republic of Austria", + "native": { + "bar": { + "official": "Republik Österreich", + "common": "Österreich" + } + } + }, + "demonym": "Austrian", + "capital": "Vienna", + "iso_3166_1_alpha2": "AT", + "iso_3166_1_alpha3": "AUT", + "iso_3166_1_numeric": "040", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".at" + ], + "alt_spellings": [ + "AT", + "Osterreich", + "Oesterreich" + ], + "languages": { + "bar": "Austro-Bavarian German" + }, + "translations": { + "cym": { + "official": "Republic of Austria", + "common": "Awstria" + }, + "deu": { + "official": "Republik Österreich", + "common": "Österreich" + }, + "fra": { + "official": "République d'Autriche", + "common": "Autriche" + }, + "hrv": { + "official": "Republika Austrija", + "common": "Austrija" + }, + "ita": { + "official": "Repubblica d'Austria", + "common": "Austria" + }, + "jpn": { + "official": "オーストリア共和国", + "common": "オーストリア" + }, + "nld": { + "official": "Republiek Oostenrijk", + "common": "Oostenrijk" + }, + "por": { + "official": "República da Áustria", + "common": "Áustria" + }, + "rus": { + "official": "Австрийская Республика", + "common": "Австрия" + }, + "spa": { + "official": "República de Austria", + "common": "Austria" + }, + "fin": { + "official": "Itävallan tasavalta", + "common": "Itävalta" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "47 20 N", + "latitude_dec": "47.58843994140625", + "longitude": "13 20 E", + "longitude_dec": "14.14021110534668", + "max_latitude": "49.016667", + "max_longitude": "19", + "min_latitude": "46.377222", + "min_longitude": "1.2", + "area": 83871, + "region": "Europe", + "subregion": "Western Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "155", + "landlocked": true, + "borders": [ + "CZE", + "DEU", + "HUN", + "ITA", + "LIE", + "SVK", + "SVN", + "CHE" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "43" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "national_destination_code_lengths": [ + 1, + 2, + 3 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2782113, + "edgar": "C4", + "itu": "AUT", + "marc": "au", + "wmo": "OS", + "ds": "A", + "fifa": "AUT", + "fips": "AU", + "gaul": 18, + "ioc": "AUT", + "cowc": "AUS", + "cown": 305, + "fao": 11, + "imf": 122, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 20, + "reduced": [ + 10 + ], + "super_reduced": null, + "parking": 12 + } + } + }, + "AZ": { + "name": { + "common": "Azerbaijan", + "official": "Republic of Azerbaijan", + "native": { + "aze": { + "official": "Azərbaycan Respublikası", + "common": "Azərbaycan" + }, + "rus": { + "official": "Азербайджанская Республика", + "common": "Азербайджан" + } + } + }, + "demonym": "Azerbaijani", + "capital": "Baku", + "iso_3166_1_alpha2": "AZ", + "iso_3166_1_alpha3": "AZE", + "iso_3166_1_numeric": "031", + "currency": { + "AZN": { + "iso_4217_code": "AZN", + "iso_4217_numeric": 944, + "iso_4217_name": "Azerbaijanian Manat", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".az" + ], + "alt_spellings": [ + "AZ", + "Republic of Azerbaijan", + "Azərbaycan Respublikası" + ], + "languages": { + "aze": "Azerbaijani", + "rus": "Russian" + }, + "translations": { + "cym": { + "official": "Republic of Azerbaijan", + "common": "Aserbaijan" + }, + "deu": { + "official": "Republik Aserbaidschan", + "common": "Aserbaidschan" + }, + "fra": { + "official": "République d'Azerbaïdjan", + "common": "Azerbaïdjan" + }, + "hrv": { + "official": "Republika Azerbajdžan", + "common": "Azerbajdžan" + }, + "ita": { + "official": "Repubblica dell'Azerbaigian", + "common": "Azerbaijan" + }, + "jpn": { + "official": "アゼルバイジャン共和国", + "common": "アゼルバイジャン" + }, + "nld": { + "official": "Republiek Azerbeidzjan", + "common": "Azerbeidzjan" + }, + "por": { + "official": "República do Azerbaijão", + "common": "Azerbeijão" + }, + "rus": { + "official": "Азербайджанская Республика", + "common": "Азербайджан" + }, + "spa": { + "official": "República de Azerbaiyán", + "common": "Azerbaiyán" + }, + "fin": { + "official": "Azerbaidzanin tasavalta", + "common": "Azerbaidzan" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "40 30 N", + "latitude_dec": "40.33100509643555", + "longitude": "47 30 E", + "longitude_dec": "47.80820083618164", + "max_latitude": "41.910556", + "max_longitude": "50.858333", + "min_latitude": "38.416667", + "min_longitude": "44.876389", + "area": 86600, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": true, + "borders": [ + "ARM", + "GEO", + "IRN", + "RUS", + "TUR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "994" + ], + "national_prefix": "8", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "810" + }, + "extra": { + "geonameid": 587116, + "edgar": "1D", + "itu": "AZE", + "marc": "aj", + "wmo": "AJ", + "ds": "AZ", + "fifa": "AZE", + "fips": "AJ", + "gaul": 19, + "ioc": "AZE", + "cowc": "AZE", + "cown": 373, + "fao": 52, + "imf": 912, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BI": { + "name": { + "common": "Burundi", + "official": "Republic of Burundi", + "native": { + "fra": { + "official": "République du Burundi", + "common": "Burundi" + }, + "run": { + "official": "Republika y'Uburundi ", + "common": "Uburundi" + } + } + }, + "demonym": "Burundian", + "capital": "Bujumbura", + "iso_3166_1_alpha2": "BI", + "iso_3166_1_alpha3": "BDI", + "iso_3166_1_numeric": "108", + "currency": { + "BIF": { + "iso_4217_code": "BIF", + "iso_4217_numeric": 108, + "iso_4217_name": "Burundi Franc", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".bi" + ], + "alt_spellings": [ + "BI", + "Republic of Burundi", + "Republika y'Uburundi", + "République du Burundi" + ], + "languages": { + "fra": "French", + "run": "Kirundi" + }, + "translations": { + "cym": { + "official": "Republic of Burundi", + "common": "Bwrwndi" + }, + "deu": { + "official": "Republik Burundi", + "common": "Burundi" + }, + "fra": { + "official": "République du Burundi", + "common": "Burundi" + }, + "hrv": { + "official": "Burundi", + "common": "Burundi" + }, + "ita": { + "official": "Repubblica del Burundi", + "common": "Burundi" + }, + "jpn": { + "official": "ブルンジ共和国", + "common": "ブルンジ" + }, + "nld": { + "official": "Republiek Burundi", + "common": "Burundi" + }, + "por": { + "official": "República do Burundi", + "common": "Burundi" + }, + "rus": { + "official": "Республика Бурунди", + "common": "Бурунди" + }, + "spa": { + "official": "República de Burundi", + "common": "Burundi" + }, + "fin": { + "official": "Burundin tasavalta", + "common": "Burundi" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "3 30 S", + "latitude_dec": "-3.365208148956299", + "longitude": "30 00 E", + "longitude_dec": "29.88650894165039", + "max_latitude": "-2.3425", + "max_longitude": "30.831389", + "min_latitude": "-4.443333", + "min_longitude": "29.023889", + "area": 27834, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": true, + "borders": [ + "COD", + "RWA", + "TZA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "257" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 433561, + "edgar": "E2", + "itu": "BDI", + "marc": "bd", + "wmo": "BI", + "ds": "RU", + "fifa": "BDI", + "fips": "BY", + "gaul": 43, + "ioc": "BDI", + "cowc": "BUI", + "cown": 516, + "fao": 29, + "imf": 618, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BE": { + "name": { + "common": "Belgium", + "official": "Kingdom of Belgium", + "native": { + "deu": { + "official": "Königreich Belgien", + "common": "Belgien" + }, + "fra": { + "official": "Royaume de Belgique", + "common": "Belgique" + }, + "nld": { + "official": "Koninkrijk België", + "common": "België" + } + } + }, + "demonym": "Belgian", + "capital": "Brussels", + "iso_3166_1_alpha2": "BE", + "iso_3166_1_alpha3": "BEL", + "iso_3166_1_numeric": "056", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".be" + ], + "alt_spellings": [ + "BE", + "België", + "Belgie", + "Belgien", + "Belgique", + "Kingdom of Belgium", + "Koninkrijk België", + "Royaume de Belgique", + "Königreich Belgien" + ], + "languages": { + "deu": "German", + "fra": "French", + "nld": "Dutch" + }, + "translations": { + "cym": { + "official": "Kingdom of Belgium", + "common": "Gwlad Belg" + }, + "deu": { + "official": "Königreich Belgien", + "common": "Belgien" + }, + "fra": { + "official": "Royaume de Belgique", + "common": "Belgique" + }, + "hrv": { + "official": "Kraljevina Belgija", + "common": "Belgija" + }, + "ita": { + "official": "Regno del Belgio", + "common": "Belgio" + }, + "jpn": { + "official": "ベルギー王国", + "common": "ベルギー" + }, + "nld": { + "official": "Koninkrijk België", + "common": "België" + }, + "por": { + "official": "Reino da Bélgica", + "common": "Bélgica" + }, + "rus": { + "official": "Королевство Бельгия", + "common": "Бельгия" + }, + "spa": { + "official": "Reino de Bélgica", + "common": "Bélgica" + }, + "fin": { + "official": "Belgian kuningaskunta", + "common": "Belgia" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "50 50 N", + "latitude_dec": "50.648963928222656", + "longitude": "4 00 E", + "longitude_dec": "4.641502380371094", + "max_latitude": "51.683333", + "max_longitude": "6.4", + "min_latitude": "49.516667", + "min_longitude": "2.566667", + "area": 30528, + "region": "Europe", + "subregion": "Western Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "155", + "landlocked": false, + "borders": [ + "FRA", + "DEU", + "LUX", + "NLD" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "32" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2802361, + "edgar": "C9", + "itu": "BEL", + "marc": "be", + "wmo": "BX", + "ds": "B", + "fifa": "BEL", + "fips": "BE", + "gaul": 27, + "ioc": "BEL", + "cowc": "BEL", + "cown": 211, + "fao": 255, + "imf": 124, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 21, + "reduced": [ + 6, + 12 + ], + "super_reduced": null, + "parking": 12 + } + } + }, + "BJ": { + "name": { + "common": "Benin", + "official": "Republic of Benin", + "native": { + "fra": { + "official": "République du Bénin", + "common": "Bénin" + } + } + }, + "demonym": "Beninese", + "capital": "Porto-Novo", + "iso_3166_1_alpha2": "BJ", + "iso_3166_1_alpha3": "BEN", + "iso_3166_1_numeric": "204", + "currency": { + "XOF": { + "iso_4217_code": "XOF", + "iso_4217_numeric": 952, + "iso_4217_name": "CFA Franc BCEAO", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".bj" + ], + "alt_spellings": [ + "BJ", + "Republic of Benin", + "République du Bénin" + ], + "languages": { + "fra": "French" + }, + "translations": { + "cym": { + "official": "Republic of Benin", + "common": "Benin" + }, + "deu": { + "official": "Republik Benin", + "common": "Benin" + }, + "fra": { + "official": "République du Bénin", + "common": "Bénin" + }, + "hrv": { + "official": "Republika Benin", + "common": "Benin" + }, + "ita": { + "official": "Repubblica del Benin", + "common": "Benin" + }, + "jpn": { + "official": "ベナン共和国", + "common": "ベナン" + }, + "nld": { + "official": "Republiek Benin", + "common": "Benin" + }, + "por": { + "official": "República do Benin", + "common": "Benin" + }, + "rus": { + "official": "Республика Бенин", + "common": "Бенин" + }, + "spa": { + "official": "República de Benin", + "common": "Benín" + }, + "fin": { + "official": "Beninin tasavalta", + "common": "Benin" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "9 30 N", + "latitude_dec": "9.624112129211426", + "longitude": "2 15 E", + "longitude_dec": "2.3377387523651123", + "max_latitude": "12.3614", + "max_longitude": "3.816667", + "min_latitude": "6.233333", + "min_longitude": "-4", + "area": 112622, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "BFA", + "NER", + "NGA", + "TGO" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "229" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2395170, + "edgar": "G6", + "itu": "BEN", + "marc": "dm", + "wmo": "BJ", + "ds": "DY", + "fifa": "BEN", + "fips": "BN", + "gaul": 29, + "ioc": "BEN", + "cowc": "BEN", + "cown": 434, + "fao": 53, + "imf": 638, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BF": { + "name": { + "common": "Burkina Faso", + "official": "Burkina Faso", + "native": { + "fra": { + "official": "République du Burkina", + "common": "Burkina Faso" + } + } + }, + "demonym": "Burkinabe", + "capital": "Ouagadougou", + "iso_3166_1_alpha2": "BF", + "iso_3166_1_alpha3": "BFA", + "iso_3166_1_numeric": "854", + "currency": { + "XOF": { + "iso_4217_code": "XOF", + "iso_4217_numeric": 952, + "iso_4217_name": "CFA Franc BCEAO", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".bf" + ], + "alt_spellings": [ + "BF" + ], + "languages": { + "fra": "French" + }, + "translations": { + "cym": { + "official": "Burkina Faso", + "common": "Burkina Faso" + }, + "deu": { + "official": "Burkina Faso", + "common": "Burkina Faso" + }, + "fra": { + "official": "République du Burkina", + "common": "Burkina Faso" + }, + "hrv": { + "official": "Burkina Faso", + "common": "Burkina Faso" + }, + "ita": { + "official": "Burkina Faso", + "common": "Burkina Faso" + }, + "jpn": { + "official": "ブルキナファソ", + "common": "ブルキナファソ" + }, + "nld": { + "official": "Burkina Faso", + "common": "Burkina Faso" + }, + "por": { + "official": "Burkina Faso", + "common": "Burkina Faso" + }, + "rus": { + "official": "Буркина -Фасо", + "common": "Буркина-Фасо" + }, + "spa": { + "official": "Burkina Faso", + "common": "Burkina Faso" + }, + "fin": { + "official": "Burkina Faso", + "common": "Burkina Faso" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "13 00 N", + "latitude_dec": "12.284985542297363", + "longitude": "2 00 W", + "longitude_dec": "-1.745560646057129", + "max_latitude": "14.983333", + "max_longitude": "2.2655", + "min_latitude": "9.45", + "min_longitude": "-5.466667", + "area": 272967, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": true, + "borders": [ + "BEN", + "CIV", + "GHA", + "MLI", + "NER", + "TGO" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "226" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2361809, + "edgar": "X2", + "itu": "BFA", + "marc": "uv", + "wmo": "HV", + "ds": "BF", + "fifa": "BFA", + "fips": "UV", + "gaul": 42, + "ioc": "BUR", + "cowc": "BFO", + "cown": 439, + "fao": 233, + "imf": 748, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BD": { + "name": { + "common": "Bangladesh", + "official": "People's Republic of Bangladesh", + "native": { + "ben": { + "official": "বাংলাদেশ গণপ্রজাতন্ত্রী", + "common": "বাংলাদেশ" + } + } + }, + "demonym": "Bangladeshi", + "capital": "Dhaka", + "iso_3166_1_alpha2": "BD", + "iso_3166_1_alpha3": "BGD", + "iso_3166_1_numeric": "050", + "currency": { + "BDT": { + "iso_4217_code": "BDT", + "iso_4217_numeric": 50, + "iso_4217_name": "Taka", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bd" + ], + "alt_spellings": [ + "BD", + "People's Republic of Bangladesh", + "Gônôprôjatôntri Bangladesh" + ], + "languages": { + "ben": "Bengali" + }, + "translations": { + "cym": { + "official": "People's Republic of Bangladesh", + "common": "Bangladesh" + }, + "deu": { + "official": "Volksrepublik Bangladesch", + "common": "Bangladesch" + }, + "fra": { + "official": "La République populaire du Bangladesh", + "common": "Bangladesh" + }, + "hrv": { + "official": "Narodna Republika Bangladeš", + "common": "Bangladeš" + }, + "ita": { + "official": "Repubblica popolare del Bangladesh", + "common": "Bangladesh" + }, + "jpn": { + "official": "バングラデシュ人民共和国", + "common": "バングラデシュ" + }, + "nld": { + "official": "Volksrepubliek Bangladesh", + "common": "Bangladesh" + }, + "por": { + "official": "República Popular do Bangladesh", + "common": "Bangladesh" + }, + "rus": { + "official": "Народная Республика Бангладеш", + "common": "Бангладеш" + }, + "spa": { + "official": "República Popular de Bangladesh", + "common": "Bangladesh" + }, + "fin": { + "official": "Bangladeshin kansantasavalta", + "common": "Bangladesh" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "24 00 N", + "latitude_dec": "23.730104446411133", + "longitude": "90 00 E", + "longitude_dec": "90.30652618408203", + "max_latitude": "26.5", + "max_longitude": "92.683333", + "min_latitude": "20.6", + "min_longitude": "84", + "area": 147570, + "region": "Asia", + "subregion": "Southern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "034", + "landlocked": false, + "borders": [ + "MMR", + "IND" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "880" + ], + "national_prefix": "0", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1210997, + "edgar": "C7", + "itu": "BGD", + "marc": "bg", + "wmo": "BW", + "ds": "BD", + "fifa": "BAN", + "fips": "BG", + "gaul": 23, + "ioc": "BAN", + "cowc": "BNG", + "cown": 771, + "fao": 16, + "imf": 513, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BG": { + "name": { + "common": "Bulgaria", + "official": "Republic of Bulgaria", + "native": { + "bul": { + "official": "Република България", + "common": "България" + } + } + }, + "demonym": "Bulgarian", + "capital": "Sofia", + "iso_3166_1_alpha2": "BG", + "iso_3166_1_alpha3": "BGR", + "iso_3166_1_numeric": "100", + "currency": { + "BGN": { + "iso_4217_code": "BGN", + "iso_4217_numeric": 975, + "iso_4217_name": "Bulgarian Lev", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bg" + ], + "alt_spellings": [ + "BG", + "Republic of Bulgaria", + "Република България" + ], + "languages": { + "bul": "Bulgarian" + }, + "translations": { + "cym": { + "official": "Republic of Bulgaria", + "common": "Bwlgaria" + }, + "deu": { + "official": "Republik Bulgarien", + "common": "Bulgarien" + }, + "fra": { + "official": "République de Bulgarie", + "common": "Bulgarie" + }, + "hrv": { + "official": "Republika Bugarska", + "common": "Bugarska" + }, + "ita": { + "official": "Repubblica di Bulgaria", + "common": "Bulgaria" + }, + "jpn": { + "official": "ブルガリア共和国", + "common": "ブルガリア" + }, + "nld": { + "official": "Republiek Bulgarije", + "common": "Bulgarije" + }, + "por": { + "official": "República da Bulgária", + "common": "Bulgária" + }, + "rus": { + "official": "Республика Болгария", + "common": "Болгария" + }, + "spa": { + "official": "República de Bulgaria", + "common": "Bulgaria" + }, + "fin": { + "official": "Bulgarian tasavalta", + "common": "Bulgaria" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "43 00 N", + "latitude_dec": "42.7661018371582", + "longitude": "25 00 E", + "longitude_dec": "25.283733367919922", + "max_latitude": "44.193611", + "max_longitude": "28.6", + "min_latitude": "41", + "min_longitude": "22.371389", + "area": 110879, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "151", + "landlocked": false, + "borders": [ + "GRC", + "MKD", + "ROU", + "SRB", + "TUR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "359" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 732800, + "edgar": "E0", + "itu": "BUL", + "marc": "bu", + "wmo": "BU", + "ds": "BG", + "fifa": "BUL", + "fips": "BU", + "gaul": 41, + "ioc": "BUL", + "cowc": "BUL", + "cown": 355, + "fao": 27, + "imf": 918, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 20, + "reduced": [ + 9 + ], + "super_reduced": null, + "parking": null + } + } + }, + "BH": { + "name": { + "common": "Bahrain", + "official": "Kingdom of Bahrain", + "native": { + "ara": { + "official": "مملكة البحرين", + "common": "‏البحرين" + } + } + }, + "demonym": "Bahraini", + "capital": "Manama", + "iso_3166_1_alpha2": "BH", + "iso_3166_1_alpha3": "BHR", + "iso_3166_1_numeric": "048", + "currency": { + "BHD": { + "iso_4217_code": "BHD", + "iso_4217_numeric": 48, + "iso_4217_name": "Bahraini Dinar", + "iso_4217_minor_unit": 3 + } + }, + "tld": [ + ".bh" + ], + "alt_spellings": [ + "BH", + "Kingdom of Bahrain", + "Mamlakat al-Baḥrayn" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "cym": { + "official": "Kingdom of Bahrain", + "common": "Bahrain" + }, + "deu": { + "official": "Königreich Bahrain", + "common": "Bahrain" + }, + "fra": { + "official": "Royaume de Bahreïn", + "common": "Bahreïn" + }, + "hrv": { + "official": "Kraljevina Bahrein", + "common": "Bahrein" + }, + "ita": { + "official": "Regno del Bahrain", + "common": "Bahrein" + }, + "jpn": { + "official": "バーレーン王国", + "common": "バーレーン" + }, + "nld": { + "official": "Koninkrijk Bahrein", + "common": "Bahrein" + }, + "por": { + "official": "Reino do Bahrein", + "common": "Bahrein" + }, + "rus": { + "official": "Королевство Бахрейн", + "common": "Бахрейн" + }, + "spa": { + "official": "Reino de Bahrein", + "common": "Bahrein" + }, + "fin": { + "official": "Bahrainin kuningaskunta", + "common": "Bahrain" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "26 00 N", + "latitude_dec": "26.094240188598633", + "longitude": "50 33 E", + "longitude_dec": "50.54299545288086", + "max_latitude": "26.416667", + "max_longitude": "50.823333", + "min_latitude": "25", + "min_longitude": "45", + "area": 765, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "973" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 290291, + "edgar": "C6", + "itu": "BHR", + "marc": "ba", + "wmo": "BN", + "ds": "BRN", + "fifa": "BHR", + "fips": "BA", + "gaul": 21, + "ioc": "BRN", + "cowc": "BAH", + "cown": 692, + "fao": 13, + "imf": 419, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "BS": { + "name": { + "common": "Bahamas", + "official": "Commonwealth of the Bahamas", + "native": { + "eng": { + "official": "Commonwealth of the Bahamas", + "common": "Bahamas" + } + } + }, + "demonym": "Bahamian", + "capital": "Nassau", + "iso_3166_1_alpha2": "BS", + "iso_3166_1_alpha3": "BHS", + "iso_3166_1_numeric": "044", + "currency": { + "BSD": { + "iso_4217_code": "BSD", + "iso_4217_numeric": 44, + "iso_4217_name": "Bahamian Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bs" + ], + "alt_spellings": [ + "BS", + "Commonwealth of the Bahamas" + ], + "languages": { + "eng": "English" + }, + "translations": { + "cym": { + "official": "Commonwealth of the Bahamas", + "common": "Bahamas" + }, + "deu": { + "official": "Commonwealth der Bahamas", + "common": "Bahamas" + }, + "fra": { + "official": "Commonwealth des Bahamas", + "common": "Bahamas" + }, + "hrv": { + "official": "Zajednica Bahama", + "common": "Bahami" + }, + "ita": { + "official": "Commonwealth delle Bahamas", + "common": "Bahamas" + }, + "jpn": { + "official": "バハマ", + "common": "バハマ" + }, + "nld": { + "official": "Gemenebest van de Bahama's", + "common": "Bahama’s" + }, + "por": { + "official": "Comunidade das Bahamas", + "common": "Bahamas" + }, + "rus": { + "official": "Содружество Багамских Островов", + "common": "Багамские Острова" + }, + "spa": { + "official": "Commonwealth de las Bahamas", + "common": "Bahamas" + }, + "fin": { + "official": "Bahaman liittovaltio", + "common": "Bahamasaaret" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "24 15 N", + "latitude_dec": "25.035648345947266", + "longitude": "76 00 W", + "longitude_dec": "-77.39512634277344", + "max_latitude": "29.375", + "max_longitude": "-70", + "min_latitude": "20", + "min_longitude": "-80.483333", + "area": 13943, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1242" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3572887, + "edgar": "C5", + "itu": "BAH", + "marc": "bf", + "wmo": "BA", + "ds": "BS", + "fifa": "BAH", + "fips": "BF", + "gaul": 20, + "ioc": "BAH", + "cowc": "BHM", + "cown": 31, + "fao": 12, + "imf": 313, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BA": { + "name": { + "common": "Bosnia and Herzegovina", + "official": "Bosnia and Herzegovina", + "native": { + "bos": { + "official": "Bosna i Hercegovina", + "common": "Bosna i Hercegovina" + }, + "hrv": { + "official": "Bosna i Hercegovina", + "common": "Bosna i Hercegovina" + }, + "srp": { + "official": "Боснa и Херцеговина", + "common": "Боснa и Херцеговина" + } + } + }, + "demonym": "Bosnian, Herzegovinian", + "capital": "Sarajevo", + "iso_3166_1_alpha2": "BA", + "iso_3166_1_alpha3": "BIH", + "iso_3166_1_numeric": "070", + "currency": { + "BAM": { + "iso_4217_code": "BAM", + "iso_4217_numeric": 977, + "iso_4217_name": "Convertible Mark", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ba" + ], + "alt_spellings": [ + "BA", + "Bosnia-Herzegovina", + "Босна и Херцеговина" + ], + "languages": { + "bos": "Bosnian", + "hrv": "Croatian", + "srp": "Serbian" + }, + "translations": { + "cym": { + "official": "Bosnia and Herzegovina", + "common": "Bosnia a Hercegovina" + }, + "deu": { + "official": "Bosnien und Herzegowina", + "common": "Bosnien und Herzegowina" + }, + "fra": { + "official": "Bosnie-et-Herzégovine", + "common": "Bosnie-Herzégovine" + }, + "hrv": { + "official": "Bosna i Hercegovina", + "common": "Bosna i Hercegovina" + }, + "ita": { + "official": "Bosnia-Erzegovina", + "common": "Bosnia ed Erzegovina" + }, + "jpn": { + "official": "ボスニア·ヘルツェゴビナ", + "common": "ボスニア・ヘルツェゴビナ" + }, + "nld": { + "official": "Bosnië-Herzegovina", + "common": "Bosnië en Herzegovina" + }, + "por": { + "official": "Bósnia e Herzegovina", + "common": "Bósnia e Herzegovina" + }, + "rus": { + "official": "Босния и Герцеговина", + "common": "Босния и Герцеговина" + }, + "spa": { + "official": "Bosnia y Herzegovina", + "common": "Bosnia y Herzegovina" + }, + "fin": { + "official": "Bosnia ja Hertsegovina", + "common": "Bosnia ja Hertsegovina" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "44 00 N", + "latitude_dec": "44.16533279418945", + "longitude": "18 00 E", + "longitude_dec": "17.790241241455078", + "max_latitude": "45.268333", + "max_longitude": "19.618333", + "min_latitude": "42.558056", + "min_longitude": "15.747222", + "area": 51209, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [ + "HRV", + "MNE", + "SRB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "387" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3277605, + "edgar": "1E", + "itu": "BIH", + "marc": "bn", + "wmo": "BG", + "ds": "BIH", + "fifa": "BIH", + "fips": "BK", + "gaul": 34, + "ioc": "BIH", + "cowc": "BOS", + "cown": 346, + "fao": 80, + "imf": 963, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "BL": { + "name": { + "common": "Saint Barthélemy", + "official": "Collectivity of Saint Barthélemy", + "native": { + "fra": { + "official": "Collectivité de Saint-Barthélemy", + "common": "Saint-Barthélemy" + } + } + }, + "demonym": "Saint Barthélemy Islander", + "capital": "Gustavia", + "iso_3166_1_alpha2": "BL", + "iso_3166_1_alpha3": "BLM", + "iso_3166_1_numeric": "652", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bl" + ], + "alt_spellings": [ + "BL", + "St. Barthelemy", + "Collectivity of Saint Barthélemy", + "Collectivité de Saint-Barthélemy" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Gebietskörperschaft Saint -Barthélemy", + "common": "Saint-Barthélemy" + }, + "fra": { + "official": "Collectivité de Saint-Barthélemy", + "common": "Saint-Barthélemy" + }, + "hrv": { + "official": "Kolektivnost sv Barthélemy", + "common": "Saint Barthélemy" + }, + "ita": { + "official": "Collettività di Saint Barthélemy", + "common": "Antille Francesi" + }, + "jpn": { + "official": "サン·バルテルミー島の集合体", + "common": "サン・バルテルミー" + }, + "nld": { + "official": "Gemeenschap Saint Barthélemy", + "common": "Saint Barthélemy" + }, + "por": { + "official": "Coletividade de Saint Barthélemy", + "common": "São Bartolomeu" + }, + "rus": { + "official": "Коллективность Санкт -Бартельми", + "common": "Сен-Бартелеми" + }, + "spa": { + "official": "Colectividad de San Barthélemy", + "common": "San Bartolomé" + }, + "fin": { + "official": "Saint-Barthélemyn yhteisö", + "common": "Saint-Barthélemy" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "17 90 N", + "latitude_dec": "17.89626121520996", + "longitude": "62 85 W", + "longitude_dec": "-62.83061218261719", + "max_latitude": "17.960853", + "max_longitude": "-62.7892148", + "min_latitude": "17.8708287", + "min_longitude": "-62.9118453", + "area": 21, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "APAC", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Part of FR" + }, + "dialling": { + "calling_code": [ + "590" + ], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 3578476, + "edgar": 0, + "itu": 0, + "marc": "sc", + "wmo": 0, + "ds": 0, + "fifa": 0, + "fips": "TB", + "gaul": 0, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": 0, + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BY": { + "name": { + "common": "Belarus", + "official": "Republic of Belarus", + "native": { + "bel": { + "official": "Рэспубліка Беларусь", + "common": "Белару́сь" + }, + "rus": { + "official": "Республика Беларусь", + "common": "Белоруссия" + } + } + }, + "demonym": "Belarusian", + "capital": "Minsk", + "iso_3166_1_alpha2": "BY", + "iso_3166_1_alpha3": "BLR", + "iso_3166_1_numeric": "112", + "currency": { + "BYR": { + "iso_4217_code": "BYR", + "iso_4217_numeric": 974, + "iso_4217_name": "Belarussian Ruble", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".by" + ], + "alt_spellings": [ + "BY", + "Bielaruś", + "Republic of Belarus", + "Белоруссия", + "Республика Беларусь", + "Belorussiya", + "Respublika Belarus’" + ], + "languages": { + "bel": "Belarusian", + "rus": "Russian" + }, + "translations": { + "cym": { + "official": "Republic of Belarus", + "common": "Belarws" + }, + "deu": { + "official": "Republik Belarus", + "common": "Weißrussland" + }, + "fra": { + "official": "République de Biélorussie", + "common": "Biélorussie" + }, + "hrv": { + "official": "Republika Bjelorusija", + "common": "Bjelorusija" + }, + "ita": { + "official": "Repubblica di Belarus", + "common": "Bielorussia" + }, + "jpn": { + "official": "ベラルーシ共和国", + "common": "ベラルーシ" + }, + "nld": { + "official": "Republiek Belarus", + "common": "Wit-Rusland" + }, + "por": { + "official": "República da Bielorrússia", + "common": "Bielorússia" + }, + "rus": { + "official": "Республика Беларусь", + "common": "Белоруссия" + }, + "spa": { + "official": "República de Belarús", + "common": "Bielorrusia" + }, + "fin": { + "official": "Valko-Venäjän tasavalta", + "common": "Valko-Venäjä" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "53 00 N", + "latitude_dec": "53.54347229003906", + "longitude": "28 00 E", + "longitude_dec": "28.054094314575195", + "max_latitude": "56.066667", + "max_longitude": "32.708056", + "min_latitude": "50.716667", + "min_longitude": "22.55", + "area": 207600, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "151", + "landlocked": true, + "borders": [ + "LVA", + "LTU", + "POL", + "RUS", + "UKR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "375" + ], + "national_prefix": "8", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "810" + }, + "extra": { + "geonameid": 630336, + "edgar": "1F", + "itu": "BLR", + "marc": "bw", + "wmo": "BY", + "ds": "BY", + "fifa": "BLR", + "fips": "BO", + "gaul": 26, + "ioc": "BLR", + "cowc": "BLR", + "cown": 370, + "fao": 57, + "imf": 913, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BZ": { + "name": { + "common": "Belize", + "official": "Belize", + "native": { + "bjz": { + "official": "Belize", + "common": "Belize" + }, + "eng": { + "official": "Belize", + "common": "Belize" + }, + "spa": { + "official": "Belice", + "common": "Belice" + } + } + }, + "demonym": "Belizean", + "capital": "Belmopan", + "iso_3166_1_alpha2": "BZ", + "iso_3166_1_alpha3": "BLZ", + "iso_3166_1_numeric": "084", + "currency": { + "BZD": { + "iso_4217_code": "BZD", + "iso_4217_numeric": 84, + "iso_4217_name": "Belize Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bz" + ], + "alt_spellings": [ + "BZ" + ], + "languages": { + "bjz": "Belizean Creole", + "eng": "English", + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Belize", + "common": "Belize" + }, + "deu": { + "official": "Belize", + "common": "Belize" + }, + "fra": { + "official": "Belize", + "common": "Belize" + }, + "hrv": { + "official": "Belize", + "common": "Belize" + }, + "ita": { + "official": "Belize", + "common": "Belize" + }, + "jpn": { + "official": "ベリーズ", + "common": "ベリーズ" + }, + "nld": { + "official": "Belize", + "common": "Belize" + }, + "por": { + "official": "Belize", + "common": "Belize" + }, + "rus": { + "official": "Белиз", + "common": "Белиз" + }, + "spa": { + "official": "Belice", + "common": "Belice" + }, + "fin": { + "official": "Belize", + "common": "Belize" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "17 15 N", + "latitude_dec": "17.225292205810547", + "longitude": "88 45 W", + "longitude_dec": "-88.66973876953125", + "max_latitude": "18.483333", + "max_longitude": "-87.483333", + "min_latitude": "15.9", + "min_longitude": "-89.216944", + "area": 22966, + "region": "Americas", + "subregion": "Central America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "013", + "landlocked": false, + "borders": [ + "GTM", + "MEX" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "501" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3582678, + "edgar": "D1", + "itu": "BLZ", + "marc": "bh", + "wmo": "BH", + "ds": "BZ", + "fifa": "BLZ", + "fips": "BH", + "gaul": 28, + "ioc": "BIZ", + "cowc": "BLZ", + "cown": 80, + "fao": 23, + "imf": 339, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BM": { + "name": { + "common": "Bermuda", + "official": "Bermuda", + "native": { + "eng": { + "official": "Bermuda", + "common": "Bermuda" + } + } + }, + "demonym": "Bermudian", + "capital": "Hamilton", + "iso_3166_1_alpha2": "BM", + "iso_3166_1_alpha3": "BMU", + "iso_3166_1_numeric": "060", + "currency": { + "BMD": { + "iso_4217_code": "BMD", + "iso_4217_numeric": 60, + "iso_4217_name": "Bermudian Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bm" + ], + "alt_spellings": [ + "BM", + "The Islands of Bermuda", + "The Bermudas", + "Somers Isles" + ], + "languages": { + "eng": "English" + }, + "translations": { + "cym": { + "official": "Bermuda", + "common": "Bermiwda" + }, + "deu": { + "official": "Bermuda", + "common": "Bermuda" + }, + "fra": { + "official": "Bermudes", + "common": "Bermudes" + }, + "hrv": { + "official": "Bermuda", + "common": "Bermudi" + }, + "ita": { + "official": "Bermuda", + "common": "Bermuda" + }, + "jpn": { + "official": "バミューダ", + "common": "バミューダ" + }, + "nld": { + "official": "Bermuda", + "common": "Bermuda" + }, + "por": { + "official": "Bermudas", + "common": "Bermudas" + }, + "rus": { + "official": "Бермудские острова", + "common": "Бермудские Острова" + }, + "spa": { + "official": "Bermuda", + "common": "Bermudas" + }, + "fin": { + "official": "Bermuda", + "common": "Bermuda" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "32 20 N", + "latitude_dec": "32.302669525146484", + "longitude": "64 45 W", + "longitude_dec": "-64.7516860961914", + "max_latitude": "32.390556", + "max_longitude": "-64.633333", + "min_latitude": "32.246944", + "min_longitude": "-64.882778", + "area": 54, + "region": "Americas", + "subregion": "Northern America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "021", + "landlocked": false, + "borders": [], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "1441" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3573345, + "edgar": "D0", + "itu": "BER", + "marc": "bm", + "wmo": "BE", + "ds": 0, + "fifa": "BER", + "fips": "BD", + "gaul": 30, + "ioc": "BER", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 319, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BO": { + "name": { + "common": "Bolivia", + "official": "Plurinational State of Bolivia", + "native": { + "aym": { + "official": "Wuliwya Suyu", + "common": "Wuliwya" + }, + "grn": { + "official": "Tetã Volívia", + "common": "Volívia" + }, + "que": { + "official": "Buliwya Mamallaqta", + "common": "Buliwya" + }, + "spa": { + "official": "Estado Plurinacional de Bolivia", + "common": "Bolivia" + } + } + }, + "demonym": "Bolivian", + "capital": "Sucre", + "iso_3166_1_alpha2": "BO", + "iso_3166_1_alpha3": "BOL", + "iso_3166_1_numeric": "068", + "currency": { + "BOV": { + "iso_4217_code": "BOV", + "iso_4217_numeric": 984, + "iso_4217_name": "Bolivian Mvdol (funds code)", + "iso_4217_minor_unit": 2 + }, + "BOB": { + "iso_4217_code": "BOB", + "iso_4217_numeric": "068", + "iso_4217_name": "Boliviano", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bo" + ], + "alt_spellings": [ + "BO", + "Buliwya", + "Wuliwya", + "Bolivia, Plurinational State of", + "Plurinational State of Bolivia", + "Estado Plurinacional de Bolivia", + "Buliwya Mamallaqta", + "Wuliwya Suyu", + "Tetã Volívia" + ], + "languages": { + "aym": "Aymara", + "grn": "Guaraní", + "que": "Quechua", + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Plurinational State of Bolivia", + "common": "Bolifia" + }, + "deu": { + "official": "Multinationaler Staat von Bolivien", + "common": "Bolivien" + }, + "fra": { + "official": "État plurinational de Bolivie", + "common": "Bolivie" + }, + "hrv": { + "official": "Plurinational State of Bolivia", + "common": "Bolivija" + }, + "ita": { + "official": "Stato Plurinazionale della Bolivia", + "common": "Bolivia" + }, + "jpn": { + "official": "ボリビアの多民族国", + "common": "ボリビア多民族国" + }, + "nld": { + "official": "Plurinationale Staat van Bolivia", + "common": "Bolivia" + }, + "por": { + "official": "Estado Plurinacional da Bolívia", + "common": "Bolívia" + }, + "rus": { + "official": "Многонациональное Государство Боливия", + "common": "Боливия" + }, + "spa": { + "official": "Estado Plurinacional de Bolivia", + "common": "Bolivia" + }, + "fin": { + "official": "Bolivian monikansainen valtio", + "common": "Bolivia" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": false, + "latitude": "17 00 S", + "latitude_dec": "-16.713054656982422", + "longitude": "65 00 W", + "longitude_dec": "-64.6666488647461", + "max_latitude": "-9.666667", + "max_longitude": "-57.566667", + "min_latitude": "-22.883333", + "min_longitude": "-69.6", + "area": 1098581, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": true, + "borders": [ + "ARG", + "BRA", + "CHL", + "PRY", + "PER" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "591" + ], + "national_prefix": "010", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "0010" + }, + "extra": { + "geonameid": 3923057, + "edgar": 0, + "itu": "BOL", + "marc": "bo", + "wmo": "BO", + "ds": "BOL", + "fifa": "BOL", + "fips": "BL", + "gaul": 33, + "ioc": "BOL", + "cowc": "BOL", + "cown": 145, + "fao": 19, + "imf": 218, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BR": { + "name": { + "common": "Brazil", + "official": "Federative Republic of Brazil", + "native": { + "por": { + "official": "República Federativa do Brasil", + "common": "Brasil" + } + } + }, + "demonym": "Brazilian", + "capital": "Brasília", + "iso_3166_1_alpha2": "BR", + "iso_3166_1_alpha3": "BRA", + "iso_3166_1_numeric": "076", + "currency": { + "BRL": { + "iso_4217_code": "BRL", + "iso_4217_numeric": 986, + "iso_4217_name": "Brazilian Real", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".br" + ], + "alt_spellings": [ + "BR", + "Brasil", + "Federative Republic of Brazil", + "República Federativa do Brasil" + ], + "languages": { + "por": "Portuguese" + }, + "translations": { + "cym": { + "official": "Federative Republic of Brazil", + "common": "Brasil" + }, + "deu": { + "official": "Föderative Republik Brasilien", + "common": "Brasilien" + }, + "fra": { + "official": "République fédérative du Brésil", + "common": "Brésil" + }, + "hrv": { + "official": "Savezne Republike Brazil", + "common": "Brazil" + }, + "ita": { + "official": "Repubblica federativa del Brasile", + "common": "Brasile" + }, + "jpn": { + "official": "ブラジル連邦共和国", + "common": "ブラジル" + }, + "nld": { + "official": "Federale Republiek Brazilië", + "common": "Brazilië" + }, + "por": { + "official": "República Federativa do Brasil", + "common": "Brasil" + }, + "rus": { + "official": "Федеративная Республика Бразилия", + "common": "Бразилия" + }, + "spa": { + "official": "República Federativa del Brasil", + "common": "Brasil" + }, + "fin": { + "official": "Brasilian liittotasavalta", + "common": "Brasilia" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "10 00 S", + "latitude_dec": "-10.81045150756836", + "longitude": "55 00 W", + "longitude_dec": "-52.97311782836914", + "max_latitude": "5.266667", + "max_longitude": "-28.85", + "min_latitude": "-33.733333", + "min_longitude": "-73.75", + "area": 8515767, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "ARG", + "BOL", + "COL", + "GUF", + "GUY", + "PRY", + "PER", + "SUR", + "URY", + "VEN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "55" + ], + "national_prefix": "014", + "national_number_lengths": [ + 10, + 11 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "0014" + }, + "extra": { + "geonameid": 3469034, + "edgar": "D5", + "itu": "B", + "marc": "bl", + "wmo": "BZ", + "ds": "BR", + "fifa": "BRA", + "fips": "BR", + "gaul": 37, + "ioc": "BRA", + "cowc": "BRA", + "cown": 140, + "fao": 21, + "imf": 223, + "ar5": "LAM", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}} {{region_short}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "BB": { + "name": { + "common": "Barbados", + "official": "Barbados", + "native": { + "eng": { + "official": "Barbados", + "common": "Barbados" + } + } + }, + "demonym": "Barbadian", + "capital": "Bridgetown", + "iso_3166_1_alpha2": "BB", + "iso_3166_1_alpha3": "BRB", + "iso_3166_1_numeric": "052", + "currency": { + "BBD": { + "iso_4217_code": "BBD", + "iso_4217_numeric": 52, + "iso_4217_name": "Barbados Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bb" + ], + "alt_spellings": [ + "BB" + ], + "languages": { + "eng": "English" + }, + "translations": { + "cym": { + "official": "Barbados", + "common": "Barbados" + }, + "deu": { + "official": "Barbados", + "common": "Barbados" + }, + "fra": { + "official": "Barbade", + "common": "Barbade" + }, + "hrv": { + "official": "Barbados", + "common": "Barbados" + }, + "ita": { + "official": "Barbados", + "common": "Barbados" + }, + "jpn": { + "official": "バルバドス", + "common": "バルバドス" + }, + "nld": { + "official": "Barbados", + "common": "Barbados" + }, + "por": { + "official": "Barbados", + "common": "Barbados" + }, + "rus": { + "official": "Барбадос", + "common": "Барбадос" + }, + "spa": { + "official": "Barbados", + "common": "Barbados" + }, + "fin": { + "official": "Barbados", + "common": "Barbados" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "13 10 N", + "latitude_dec": "13.178098678588867", + "longitude": "59 32 W", + "longitude_dec": "-59.5485954284668", + "max_latitude": "13.333333", + "max_longitude": "-59.416667", + "min_latitude": "13.033333", + "min_longitude": "-59.65", + "area": 430, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1246" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3374084, + "edgar": "C8", + "itu": "BRB", + "marc": "bb", + "wmo": "BR", + "ds": "BDS", + "fifa": "BRB", + "fips": "BB", + "gaul": 24, + "ioc": "BAR", + "cowc": "BAR", + "cown": 53, + "fao": 14, + "imf": 316, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BN": { + "name": { + "common": "Brunei", + "official": "Nation of Brunei, Abode of Peace", + "native": { + "msa": { + "official": "Nation of Brunei, Abode Damai", + "common": "Negara Brunei Darussalam" + } + } + }, + "demonym": "Bruneian", + "capital": "Bandar Seri Begawan", + "iso_3166_1_alpha2": "BN", + "iso_3166_1_alpha3": "BRN", + "iso_3166_1_numeric": "096", + "currency": { + "BND": { + "iso_4217_code": "BND", + "iso_4217_numeric": 96, + "iso_4217_name": "Brunei Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bn" + ], + "alt_spellings": [ + "BN", + "Brunei Darussalam", + "Nation of Brunei", + "the Abode of Peace" + ], + "languages": { + "msa": "Malay" + }, + "translations": { + "cym": { + "official": "Nation of Brunei, Abode of Peace", + "common": "Brunei" + }, + "deu": { + "official": "Nation von Brunei, Wohnung des Friedens", + "common": "Brunei" + }, + "fra": { + "official": "État de Brunei Darussalam", + "common": "Brunei" + }, + "hrv": { + "official": "Nacija od Bruneja, Kuću Mira", + "common": "Brunej" + }, + "ita": { + "official": "Nazione di Brunei, Dimora della Pace", + "common": "Brunei" + }, + "jpn": { + "official": "ブルネイ、平和の精舎の国家", + "common": "ブルネイ・ダルサラーム" + }, + "nld": { + "official": "Natie van Brunei, de verblijfplaats van de Vrede", + "common": "Brunei" + }, + "por": { + "official": "Nação do Brunei, Morada da Paz", + "common": "Brunei" + }, + "rus": { + "official": "Нация Бруней, обитель мира", + "common": "Бруней" + }, + "spa": { + "official": "Nación de Brunei, Morada de la Paz", + "common": "Brunei" + }, + "fin": { + "official": "Brunei Darussalamin valtio", + "common": "Brunei" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "4 30 N", + "latitude_dec": "4.5703840255737305", + "longitude": "114 40 E", + "longitude_dec": "114.74818420410156", + "max_latitude": "5.05", + "max_longitude": "120", + "min_latitude": "-2", + "min_longitude": "110", + "area": 5765, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": false, + "borders": [ + "MYS" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "673" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1820814, + "edgar": "D9", + "itu": "BRU", + "marc": "bx", + "wmo": "BD", + "ds": "BRU", + "fifa": "BRU", + "fips": "BX", + "gaul": 40, + "ioc": "BRU", + "cowc": "BRU", + "cown": 835, + "fao": 26, + "imf": 516, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BT": { + "name": { + "common": "Bhutan", + "official": "Kingdom of Bhutan", + "native": { + "dzo": { + "official": "འབྲུག་རྒྱལ་ཁབ་", + "common": "འབྲུག་ཡུལ་" + } + } + }, + "demonym": "Bhutanese", + "capital": "Thimphu", + "iso_3166_1_alpha2": "BT", + "iso_3166_1_alpha3": "BTN", + "iso_3166_1_numeric": "064", + "currency": { + "BTN": { + "iso_4217_code": "BTN", + "iso_4217_numeric": "064", + "iso_4217_name": "Bhutanese ngultrum", + "iso_4217_minor_unit": 2 + }, + "INR": { + "iso_4217_code": "INR", + "iso_4217_numeric": 356, + "iso_4217_name": "Indian Rupee", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bt" + ], + "alt_spellings": [ + "BT", + "Kingdom of Bhutan" + ], + "languages": { + "dzo": "Dzongkha" + }, + "translations": { + "cym": { + "official": "Kingdom of Bhutan", + "common": "Bhwtan" + }, + "deu": { + "official": "Königreich Bhutan", + "common": "Bhutan" + }, + "fra": { + "official": "Royaume du Bhoutan", + "common": "Bhoutan" + }, + "hrv": { + "official": "Kraljevina Butan", + "common": "Butan" + }, + "ita": { + "official": "Regno del Bhutan", + "common": "Bhutan" + }, + "jpn": { + "official": "ブータン王国", + "common": "ブータン" + }, + "nld": { + "official": "Koninkrijk Bhutan", + "common": "Bhutan" + }, + "por": { + "official": "Reino do Butão", + "common": "Butão" + }, + "rus": { + "official": "Королевство Бутан", + "common": "Бутан" + }, + "spa": { + "official": "Reino de Bután", + "common": "Bután" + }, + "fin": { + "official": "Bhutanin kuningaskunta", + "common": "Bhutan" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "27 30 N", + "latitude_dec": "27.416879653930664", + "longitude": "90 30 E", + "longitude_dec": "90.43476104736328", + "max_latitude": "30", + "max_longitude": "92.033333", + "min_latitude": "26.716667", + "min_longitude": "80", + "area": 38394, + "region": "Asia", + "subregion": "Southern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "034", + "landlocked": true, + "borders": [ + "CHN", + "IND" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "975" + ], + "national_prefix": null, + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1252634, + "edgar": "D2", + "itu": "BTN", + "marc": "bt", + "wmo": 0, + "ds": 0, + "fifa": "BHU", + "fips": "BT", + "gaul": 31, + "ioc": "BHU", + "cowc": "BHU", + "cown": 760, + "fao": 18, + "imf": 514, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BV": { + "name": { + "common": "Bouvet Island", + "official": "Bouvet Island", + "native": { + "nor": { + "official": "Bouvetøya", + "common": "Bouvetøya" + } + } + }, + "demonym": "", + "capital": "", + "iso_3166_1_alpha2": "BV", + "iso_3166_1_alpha3": "BVT", + "iso_3166_1_numeric": "074", + "currency": { + "NOK": { + "iso_4217_code": "NOK", + "iso_4217_numeric": 578, + "iso_4217_name": "Norwegian krone", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bv" + ], + "alt_spellings": [ + "BV", + "Bouvetøya", + "Bouvet-øya" + ], + "languages": { + "nor": "Norwegian" + }, + "translations": { + "deu": { + "official": "Bouvet-Insel", + "common": "Bouvetinsel" + }, + "fra": { + "official": "Île Bouvet", + "common": "Île Bouvet" + }, + "hrv": { + "official": "Bouvet Island", + "common": "Otok Bouvet" + }, + "ita": { + "official": "Isola Bouvet", + "common": "Isola Bouvet" + }, + "jpn": { + "official": "ブーヴェ島", + "common": "ブーベ島" + }, + "nld": { + "official": "Bouvet Island", + "common": "Bouveteiland" + }, + "por": { + "official": "Ilha Bouvet", + "common": "Ilha Bouvet" + }, + "rus": { + "official": "Остров Буве", + "common": "Остров Буве" + }, + "spa": { + "official": "Isla Bouvet", + "common": "Isla Bouvet" + }, + "fin": { + "official": "Bouvet'nsaari", + "common": "Bouvet'nsaari" + } + }, + "geo": { + "continent": { + "AN": "Antarctica" + }, + "postal_code": true, + "latitude": "54 26 S", + "latitude_dec": "-54.4342041015625", + "longitude": "3 24 E", + "longitude_dec": "3.4102511405944824", + "max_latitude": "-54.386111", + "max_longitude": "3.433889", + "min_latitude": "-54.452778", + "min_longitude": "3.285278", + "area": 49, + "region": "", + "subregion": "", + "world_region": "APAC", + "region_code": "", + "subregion_code": "", + "landlocked": false, + "borders": [], + "independent": "Territory of NO" + }, + "dialling": { + "calling_code": [], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 3371123, + "edgar": 0, + "itu": 0, + "marc": "bv", + "wmo": "BV", + "ds": 0, + "fifa": 0, + "fips": "BV", + "gaul": 36, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BW": { + "name": { + "common": "Botswana", + "official": "Republic of Botswana", + "native": { + "eng": { + "official": "Republic of Botswana", + "common": "Botswana" + }, + "tsn": { + "official": "Lefatshe la Botswana", + "common": "Botswana" + } + } + }, + "demonym": "Motswana", + "capital": "Gaborone", + "iso_3166_1_alpha2": "BW", + "iso_3166_1_alpha3": "BWA", + "iso_3166_1_numeric": "072", + "currency": { + "BWP": { + "iso_4217_code": "BWP", + "iso_4217_numeric": 72, + "iso_4217_name": "Pula", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".bw" + ], + "alt_spellings": [ + "BW", + "Republic of Botswana", + "Lefatshe la Botswana" + ], + "languages": { + "eng": "English", + "tsn": "Tswana" + }, + "translations": { + "deu": { + "official": "Republik Botsuana", + "common": "Botswana" + }, + "fra": { + "official": "République du Botswana", + "common": "Botswana" + }, + "hrv": { + "official": "Republika Bocvana", + "common": "Bocvana" + }, + "ita": { + "official": "Repubblica del Botswana", + "common": "Botswana" + }, + "jpn": { + "official": "ボツワナ共和国", + "common": "ボツワナ" + }, + "nld": { + "official": "Republiek Botswana", + "common": "Botswana" + }, + "por": { + "official": "República do Botswana", + "common": "Botswana" + }, + "rus": { + "official": "Республика Ботсвана", + "common": "Ботсвана" + }, + "spa": { + "official": "República de Botswana", + "common": "Botswana" + }, + "fin": { + "official": "Botswanan tasavalta", + "common": "Botswana" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "22 00 S", + "latitude_dec": "-22.186752319335938", + "longitude": "24 00 E", + "longitude_dec": "23.81494140625", + "max_latitude": "-17.833333", + "max_longitude": "29.016667", + "min_latitude": "-26.833333", + "min_longitude": "20", + "area": 582000, + "region": "Africa", + "subregion": "Southern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "018", + "landlocked": true, + "borders": [ + "NAM", + "ZAF", + "ZMB", + "ZWE" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "267" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 933860, + "edgar": "B1", + "itu": "BOT", + "marc": "bs", + "wmo": "BC", + "ds": "BW", + "fifa": "BOT", + "fips": "BC", + "gaul": 35, + "ioc": "BOT", + "cowc": "BOT", + "cown": 571, + "fao": 20, + "imf": 616, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CF": { + "name": { + "common": "Central African Republic", + "official": "Central African Republic", + "native": { + "fra": { + "official": "République centrafricaine", + "common": "République centrafricaine" + }, + "sag": { + "official": "Ködörösêse tî Bêafrîka", + "common": "Bêafrîka" + } + } + }, + "demonym": "Central African", + "capital": "Bangui", + "iso_3166_1_alpha2": "CF", + "iso_3166_1_alpha3": "CAF", + "iso_3166_1_numeric": "140", + "currency": { + "XAF": { + "iso_4217_code": "XAF", + "iso_4217_numeric": 950, + "iso_4217_name": "CFA Franc BEAC", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".cf" + ], + "alt_spellings": [ + "CF", + "Central African Republic", + "République centrafricaine" + ], + "languages": { + "fra": "French", + "sag": "Sango" + }, + "translations": { + "cym": { + "official": "Central African Republic", + "common": "Gweriniaeth Canolbarth Affrica" + }, + "deu": { + "official": "Zentralafrikanische Republik", + "common": "Zentralafrikanische Republik" + }, + "fra": { + "official": "République centrafricaine", + "common": "République centrafricaine" + }, + "hrv": { + "official": "Centralna Afrička Republika", + "common": "Srednjoafrička Republika" + }, + "ita": { + "official": "Repubblica Centrafricana", + "common": "Repubblica Centrafricana" + }, + "jpn": { + "official": "中央アフリカ共和国", + "common": "中央アフリカ共和国" + }, + "nld": { + "official": "Centraal-Afrikaanse Republiek", + "common": "Centraal-Afrikaanse Republiek" + }, + "por": { + "official": "República Centro-Africano", + "common": "República Centro-Africana" + }, + "rus": { + "official": "Центрально-Африканская Республика", + "common": "Центральноафриканская Республика" + }, + "spa": { + "official": "República Centroafricana", + "common": "República Centroafricana" + }, + "fin": { + "official": "Keski-Afrikan tasavalta", + "common": "Keski-Afrikan tasavalta" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "7 00 N", + "latitude_dec": "6.574123382568359", + "longitude": "21 00 E", + "longitude_dec": "20.486923217773438", + "max_latitude": "10.7", + "max_longitude": "27.216667", + "min_latitude": "2.433333", + "min_longitude": "14.533333", + "area": 622984, + "region": "Africa", + "subregion": "Middle Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "017", + "landlocked": true, + "borders": [ + "CMR", + "TCD", + "COD", + "COG", + "SSD", + "SDN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "236" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 239880, + "edgar": "F0", + "itu": "CAF", + "marc": "cx", + "wmo": "CE", + "ds": "RCA", + "fifa": "CTA", + "fips": "CT", + "gaul": 49, + "ioc": "CAF", + "cowc": "CEN", + "cown": 482, + "fao": 37, + "imf": 626, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CA": { + "name": { + "common": "Canada", + "official": "Canada", + "native": { + "eng": { + "official": "Canada", + "common": "Canada" + }, + "fra": { + "official": "Canada", + "common": "Canada" + } + } + }, + "demonym": "Canadian", + "capital": "Ottawa", + "iso_3166_1_alpha2": "CA", + "iso_3166_1_alpha3": "CAN", + "iso_3166_1_numeric": "124", + "currency": { + "CAD": { + "iso_4217_code": "CAD", + "iso_4217_numeric": 124, + "iso_4217_name": "Canadian Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ca" + ], + "alt_spellings": [ + "CA" + ], + "languages": { + "eng": "English", + "fra": "French" + }, + "translations": { + "cym": { + "official": "Canada", + "common": "Canada" + }, + "deu": { + "official": "Kanada", + "common": "Kanada" + }, + "fra": { + "official": "Canada", + "common": "Canada" + }, + "hrv": { + "official": "Kanada", + "common": "Kanada" + }, + "ita": { + "official": "Canada", + "common": "Canada" + }, + "jpn": { + "official": "カナダ", + "common": "カナダ" + }, + "nld": { + "official": "Canada", + "common": "Canada" + }, + "por": { + "official": "Canadá", + "common": "Canadá" + }, + "rus": { + "official": "Канада", + "common": "Канада" + }, + "spa": { + "official": "Canadá", + "common": "Canadá" + }, + "fin": { + "official": "Kanada", + "common": "Kanada" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "60 00 N", + "latitude_dec": "62.832908630371094", + "longitude": "95 00 W", + "longitude_dec": "-95.91332244873047", + "max_latitude": "83.116667", + "max_longitude": "-52.666667", + "min_latitude": "40", + "min_longitude": "-141.666667", + "area": 9984670, + "region": "Americas", + "subregion": "Northern America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "021", + "landlocked": false, + "borders": [ + "USA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 6251999, + "edgar": 0, + "itu": "CAN", + "marc": "xxc", + "wmo": "CN", + "ds": "CDN", + "fifa": "CAN", + "fips": "CA", + "gaul": 46, + "ioc": "CAN", + "cowc": "CAN", + "cown": 20, + "fao": 33, + "imf": 156, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{city}} {{region_short}} {{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "CC": { + "name": { + "common": "Cocos (Keeling) Islands", + "official": "Territory of the Cocos (Keeling) Islands", + "native": { + "eng": { + "official": "Territory of the Cocos (Keeling) Islands", + "common": "Cocos (Keeling) Islands" + } + } + }, + "demonym": "Cocos Islander", + "capital": "West Island", + "iso_3166_1_alpha2": "CC", + "iso_3166_1_alpha3": "CCK", + "iso_3166_1_numeric": "166", + "currency": { + "AUD": { + "iso_4217_code": "AUD", + "iso_4217_numeric": "036", + "iso_4217_name": "Australian dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".cc" + ], + "alt_spellings": [ + "CC", + "Territory of the Cocos (Keeling) Islands", + "Keeling Islands" + ], + "languages": { + "eng": "English" + }, + "translations": { + "cym": { + "official": "Territory of the Cocos (Keeling) Islands", + "common": "Ynysoedd Cocos" + }, + "deu": { + "official": "Gebiet der Cocos (Keeling) Islands", + "common": "Kokosinseln" + }, + "fra": { + "official": "Territoire des îles Cocos (Keeling)", + "common": "Îles Cocos" + }, + "hrv": { + "official": "Teritoriju Kokosovi (Keeling) Islands", + "common": "Kokosovi Otoci" + }, + "ita": { + "official": "Territorio della (Keeling) Isole Cocos", + "common": "Isole Cocos e Keeling" + }, + "jpn": { + "official": "ココス諸島の領土", + "common": "ココス(キーリング)諸島" + }, + "nld": { + "official": "Grondgebied van de Eilanden Cocos (Keeling )", + "common": "Cocoseilanden" + }, + "por": { + "official": "Território dos Cocos (Keeling)", + "common": "Ilhas Cocos (Keeling)" + }, + "rus": { + "official": "Территория Кокосовые (Килинг) острова", + "common": "Кокосовые острова" + }, + "spa": { + "official": "Territorio de los (Keeling) Islas Cocos", + "common": "Islas Cocos o Islas Keeling" + }, + "fin": { + "official": "Kookossaaret", + "common": "Kookossaaret" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "12 30 S", + "latitude_dec": "-12.200602531433105", + "longitude": "96 50 E", + "longitude_dec": "96.85894012451172", + "max_latitude": "-11.833333", + "max_longitude": "96.918056", + "min_latitude": "-12.204167", + "min_longitude": "96.816667", + "area": 14, + "region": "Oceania", + "subregion": "Australia and New Zealand", + "world_region": "APAC", + "region_code": "", + "subregion_code": "", + "landlocked": false, + "borders": [], + "independent": "Territory of AU" + }, + "dialling": { + "calling_code": [ + "61" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "0011" + }, + "extra": { + "geonameid": 1547376, + "edgar": 0, + "itu": "ICO", + "marc": "xb", + "wmo": "KK", + "ds": "AUS", + "fifa": "CCK", + "fips": "CK", + "gaul": 56, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CH": { + "name": { + "common": "Switzerland", + "official": "Swiss Confederation", + "native": { + "fra": { + "official": "Confédération suisse", + "common": "Suisse" + }, + "gsw": { + "official": "Schweizerische Eidgenossenschaft", + "common": "Schweiz" + }, + "ita": { + "official": "Confederazione Svizzera", + "common": "Svizzera" + }, + "roh": { + "official": "Confederaziun svizra", + "common": "Svizra" + } + } + }, + "demonym": "Swiss", + "capital": "Bern", + "iso_3166_1_alpha2": "CH", + "iso_3166_1_alpha3": "CHE", + "iso_3166_1_numeric": "756", + "currency": { + "CHE": { + "iso_4217_code": "CHE", + "iso_4217_numeric": 947, + "iso_4217_name": "WIR Euro (complementary currency)", + "iso_4217_minor_unit": 2 + }, + "CHW": { + "iso_4217_code": "CHW", + "iso_4217_numeric": 948, + "iso_4217_name": "WIR Franc (complementary currency)", + "iso_4217_minor_unit": 2 + }, + "CHF": { + "iso_4217_code": "CHF", + "iso_4217_numeric": 756, + "iso_4217_name": "Swiss Franc", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ch" + ], + "alt_spellings": [ + "CH", + "Swiss Confederation", + "Schweiz", + "Suisse", + "Svizzera", + "Svizra" + ], + "languages": { + "fra": "French", + "gsw": "Swiss German", + "ita": "Italian", + "roh": "Romansh" + }, + "translations": { + "deu": { + "official": "Schweizerische Eidgenossenschaft", + "common": "Schweiz" + }, + "fra": { + "official": "Confédération suisse", + "common": "Suisse" + }, + "hrv": { + "official": "švicarska Konfederacija", + "common": "Švicarska" + }, + "ita": { + "official": "Confederazione svizzera", + "common": "Svizzera" + }, + "jpn": { + "official": "スイス連邦", + "common": "スイス" + }, + "nld": { + "official": "Zwitserse Confederatie", + "common": "Zwitserland" + }, + "por": { + "official": "Confederação Suíça", + "common": "Suíça" + }, + "rus": { + "official": "Швейцарская Конфедерация", + "common": "Швейцария" + }, + "spa": { + "official": "Confederación Suiza", + "common": "Suiza" + }, + "fin": { + "official": "Sveitsin valaliitto", + "common": "Sveitsi" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "47 00 N", + "latitude_dec": "46.80379867553711", + "longitude": "8 00 E", + "longitude_dec": "8.222854614257812", + "max_latitude": "47.8085", + "max_longitude": "10.5", + "min_latitude": "45.366667", + "min_longitude": "6", + "area": 41284, + "region": "Europe", + "subregion": "Western Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "155", + "landlocked": true, + "borders": [ + "AUT", + "FRA", + "ITA", + "LIE", + "DEU" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "41" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2658434, + "edgar": "V8", + "itu": "SUI", + "marc": "sz", + "wmo": "SW", + "ds": "CH", + "fifa": "SUI", + "fips": "SZ", + "gaul": 237, + "ioc": "SUI", + "cowc": "SWZ", + "cown": 225, + "fao": 211, + "imf": 146, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "CL": { + "name": { + "common": "Chile", + "official": "Republic of Chile", + "native": { + "spa": { + "official": "República de Chile", + "common": "Chile" + } + } + }, + "demonym": "Chilean", + "capital": "Santiago", + "iso_3166_1_alpha2": "CL", + "iso_3166_1_alpha3": "CHL", + "iso_3166_1_numeric": "152", + "currency": { + "CLF": { + "iso_4217_code": "CLF", + "iso_4217_numeric": 990, + "iso_4217_name": "Unidad de Fomento (funds code)", + "iso_4217_minor_unit": 4 + }, + "CLP": { + "iso_4217_code": "CLP", + "iso_4217_numeric": 152, + "iso_4217_name": "Chilean Peso", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".cl" + ], + "alt_spellings": [ + "CL", + "Republic of Chile", + "República de Chile" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Republic of Chile", + "common": "Chile" + }, + "deu": { + "official": "Republik Chile", + "common": "Chile" + }, + "fra": { + "official": "République du Chili", + "common": "Chili" + }, + "hrv": { + "official": "Republika Čile", + "common": "Čile" + }, + "ita": { + "official": "Repubblica del Cile", + "common": "Cile" + }, + "jpn": { + "official": "チリ共和国", + "common": "チリ" + }, + "nld": { + "official": "Republiek Chili", + "common": "Chili" + }, + "por": { + "official": "República do Chile", + "common": "Chile" + }, + "rus": { + "official": "Республика Чили", + "common": "Чили" + }, + "spa": { + "official": "República de Chile", + "common": "Chile" + }, + "fin": { + "official": "Chilen tasavalta", + "common": "Chile" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "30 00 S", + "latitude_dec": "-35.78622817993164", + "longitude": "71 00 W", + "longitude_dec": "-71.67467498779297", + "max_latitude": "-17.53", + "max_longitude": "-66.433333", + "min_latitude": "-56.533333", + "min_longitude": "-109.466667", + "area": 756102, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "ARG", + "BOL", + "PER" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "56" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3895114, + "edgar": "F3", + "itu": "CHL", + "marc": "cl", + "wmo": "CH", + "ds": "RCH", + "fifa": "CHI", + "fips": "CI", + "gaul": 51, + "ioc": "CHI", + "cowc": "CHL", + "cown": 155, + "fao": 40, + "imf": 228, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CN": { + "name": { + "common": "China", + "official": "People's Republic of China", + "native": { + "cmn": { + "official": "中华人民共和国", + "common": "中国" + } + } + }, + "demonym": "Chinese", + "capital": "Beijing", + "iso_3166_1_alpha2": "CN", + "iso_3166_1_alpha3": "CHN", + "iso_3166_1_numeric": "156", + "currency": { + "CNY": { + "iso_4217_code": "CNY", + "iso_4217_numeric": 156, + "iso_4217_name": "Yuan Renminbi", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".cn", + ".中国", + ".中國", + ".公司", + ".网络" + ], + "alt_spellings": [ + "CN", + "Zhōngguó", + "Zhongguo", + "Zhonghua", + "People's Republic of China", + "中华人民共和国", + "Zhōnghuá Rénmín Gònghéguó" + ], + "languages": { + "cmn": "Mandarin" + }, + "translations": { + "cym": { + "official": "People's Republic of China", + "common": "Tsieina" + }, + "deu": { + "official": "Volksrepublik China", + "common": "China" + }, + "fra": { + "official": "République populaire de Chine", + "common": "Chine" + }, + "hrv": { + "official": "Narodna Republika Kina", + "common": "Kina" + }, + "ita": { + "official": "Repubblica popolare cinese", + "common": "Cina" + }, + "jpn": { + "official": "中華人民共和国", + "common": "中国" + }, + "nld": { + "official": "Volksrepubliek China", + "common": "China" + }, + "por": { + "official": "República Popular da China", + "common": "China" + }, + "rus": { + "official": "Народная Республика Китай", + "common": "Китай" + }, + "spa": { + "official": "República Popular de China", + "common": "China" + }, + "fin": { + "official": "Kiinan kansantasavalta", + "common": "Kiina" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "35 00 N", + "latitude_dec": "36.55308532714844", + "longitude": "105 00 E", + "longitude_dec": "103.97543334960938", + "max_latitude": "20.7", + "max_longitude": "117.816667", + "min_latitude": "6.183333", + "min_longitude": "106.7", + "area": 9706961, + "region": "Asia", + "subregion": "Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "030", + "landlocked": false, + "borders": [ + "AFG", + "BTN", + "MMR", + "HKG", + "IND", + "KAZ", + "PRK", + "KGZ", + "LAO", + "MAC", + "MNG", + "PAK", + "RUS", + "TJK", + "VNM" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "86" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8, + 9, + 10, + 11 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1814991, + "edgar": "F4", + "itu": "CHN", + "marc": "cc", + "wmo": "CI", + "ds": 0, + "fifa": "CHN", + "fips": "CH", + "gaul": 53, + "ioc": "CHN", + "cowc": "CHN", + "cown": 710, + "fao": 351, + "imf": 924, + "ar5": "ASIA", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}} {{region_short}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "CI": { + "name": { + "common": "Ivory Coast", + "official": "Republic of Côte d'Ivoire", + "native": { + "fra": { + "official": "République de Côte d'Ivoire", + "common": "Côte d'Ivoire" + } + } + }, + "demonym": "Ivorian", + "capital": "Yamoussoukro", + "iso_3166_1_alpha2": "CI", + "iso_3166_1_alpha3": "CIV", + "iso_3166_1_numeric": "384", + "currency": { + "XOF": { + "iso_4217_code": "XOF", + "iso_4217_numeric": 952, + "iso_4217_name": "CFA Franc BCEAO", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".ci" + ], + "alt_spellings": [ + "CI", + "Côte d'Ivoire", + "Ivory Coast", + "Republic of Côte d'Ivoire", + "République de Côte d'Ivoire" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Republik Côte d'Ivoire", + "common": "Elfenbeinküste" + }, + "fra": { + "official": "République de Côte d' Ivoire", + "common": "Côte d'Ivoire" + }, + "hrv": { + "official": "Republika Côte d'Ivoire", + "common": "Obala Bjelokosti" + }, + "ita": { + "official": "Repubblica della Costa d'Avorio", + "common": "Costa d'Avorio" + }, + "jpn": { + "official": "コートジボワール共和国", + "common": "コートジボワール" + }, + "nld": { + "official": "Republiek Ivoorkust", + "common": "Ivoorkust" + }, + "por": { + "official": "República da Côte d'Ivoire", + "common": "Costa do Marfim" + }, + "rus": { + "official": "Республика Кот-д'Ивуаре", + "common": "Кот-д’Ивуар" + }, + "spa": { + "official": "República de Côte d'Ivoire", + "common": "Costa de Marfil" + }, + "fin": { + "official": "Norsunluurannikon tasavalta", + "common": "Norsunluurannikko" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "8 00 N", + "latitude_dec": "7.598755359649658", + "longitude": "5 00 W", + "longitude_dec": "-5.552574634552002", + "max_latitude": "10.652222", + "max_longitude": "-2.566667", + "min_latitude": "4.35", + "min_longitude": "-8.538889", + "area": 322463, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "BFA", + "GHA", + "GIN", + "LBR", + "MLI" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "225" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2287781, + "edgar": 0, + "itu": "CTI", + "marc": "iv", + "wmo": "IV", + "ds": "CI", + "fifa": "CIV", + "fips": "IV", + "gaul": 66, + "ioc": "CIV", + "cowc": "CDI", + "cown": 437, + "fao": 107, + "imf": 662, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CM": { + "name": { + "common": "Cameroon", + "official": "Republic of Cameroon", + "native": { + "eng": { + "official": "Republic of Cameroon", + "common": "Cameroon" + }, + "fra": { + "official": "République du Cameroun", + "common": "Cameroun" + } + } + }, + "demonym": "Cameroonian", + "capital": "Yaoundé", + "iso_3166_1_alpha2": "CM", + "iso_3166_1_alpha3": "CMR", + "iso_3166_1_numeric": "120", + "currency": { + "XAF": { + "iso_4217_code": "XAF", + "iso_4217_numeric": 950, + "iso_4217_name": "CFA Franc BEAC", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".cm" + ], + "alt_spellings": [ + "CM", + "Republic of Cameroon", + "République du Cameroun" + ], + "languages": { + "eng": "English", + "fra": "French" + }, + "translations": { + "cym": { + "official": "Republic of Cameroon", + "common": "Camerŵn" + }, + "deu": { + "official": "Republik Kamerun", + "common": "Kamerun" + }, + "fra": { + "official": "République du Cameroun", + "common": "Cameroun" + }, + "hrv": { + "official": "Republika Kamerun", + "common": "Kamerun" + }, + "ita": { + "official": "Repubblica del Camerun", + "common": "Camerun" + }, + "jpn": { + "official": "カメルーン共和国", + "common": "カメルーン" + }, + "nld": { + "official": "Republiek Kameroen", + "common": "Kameroen" + }, + "por": { + "official": "República dos Camarões", + "common": "Camarões" + }, + "rus": { + "official": "Республика Камерун", + "common": "Камерун" + }, + "spa": { + "official": "República de Camerún", + "common": "Camerún" + }, + "fin": { + "official": "Kamerunin tasavalta", + "common": "Kamerun" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "6 00 N", + "latitude_dec": "5.685476779937744", + "longitude": "12 00 E", + "longitude_dec": "12.722877502441406", + "max_latitude": "16", + "max_longitude": "16", + "min_latitude": "2.016667", + "min_longitude": "8.483333", + "area": 475442, + "region": "Africa", + "subregion": "Middle Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "017", + "landlocked": false, + "borders": [ + "CAF", + "TCD", + "COG", + "GNQ", + "GAB", + "NGA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "237" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2233387, + "edgar": "E4", + "itu": "CME", + "marc": "cm", + "wmo": "CM", + "ds": "CAM", + "fifa": "CMR", + "fips": "CM", + "gaul": 45, + "ioc": "CMR", + "cowc": "CAO", + "cown": 471, + "fao": 32, + "imf": 622, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CD": { + "name": { + "common": "DR Congo", + "official": "Democratic Republic of the Congo", + "native": { + "fra": { + "official": "République démocratique du Congo", + "common": "RD Congo" + }, + "kon": { + "official": "Repubilika ya Kongo Demokratiki", + "common": "Repubilika ya Kongo Demokratiki" + }, + "lin": { + "official": "Republiki ya Kongó Demokratiki", + "common": "Republiki ya Kongó Demokratiki" + }, + "lua": { + "official": "Ditunga dia Kongu wa Mungalaata", + "common": "Ditunga dia Kongu wa Mungalaata" + }, + "swa": { + "official": "Jamhuri ya Kidemokrasia ya Kongo", + "common": "Jamhuri ya Kidemokrasia ya Kongo" + } + } + }, + "demonym": "Congolese", + "capital": "Kinshasa", + "iso_3166_1_alpha2": "CD", + "iso_3166_1_alpha3": "COD", + "iso_3166_1_numeric": "180", + "currency": { + "CDF": { + "iso_4217_code": "CDF", + "iso_4217_numeric": 976, + "iso_4217_name": "Congolese franc", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".cd" + ], + "alt_spellings": [ + "CD", + "DR Congo", + "Congo-Kinshasa", + "Congo, the Democratic Republic of the", + "DRC" + ], + "languages": { + "fra": "French", + "kon": "Kikongo", + "lin": "Lingala", + "lua": "Tshiluba", + "swa": "Swahili" + }, + "translations": { + "cym": { + "official": "Democratic Republic of the Congo", + "common": "Gweriniaeth Ddemocrataidd Congo" + }, + "deu": { + "official": "Demokratische Republik Kongo", + "common": "Kongo (Dem. Rep.)" + }, + "fra": { + "official": "République démocratique du Congo", + "common": "Congo (Rép. dém.)" + }, + "hrv": { + "official": "Demokratska Republika Kongo", + "common": "Kongo, Demokratska Republika" + }, + "ita": { + "official": "Repubblica Democratica del Congo", + "common": "Congo (Rep. Dem.)" + }, + "jpn": { + "official": "コンゴ民主共和国", + "common": "コンゴ民主共和国" + }, + "nld": { + "official": "Democratische Republiek Congo", + "common": "Congo (DRC)" + }, + "por": { + "official": "República Democrática do Congo", + "common": "República Democrática do Congo" + }, + "rus": { + "official": "Демократическая Республика Конго", + "common": "Демократическая Республика Конго" + }, + "spa": { + "official": "República Democrática del Congo", + "common": "Congo (Rep. Dem.)" + }, + "fin": { + "official": "Kongon demokraattinen tasavalta", + "common": "Kongon demokraattinen tasavalta" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "0 00 N", + "latitude_dec": "-2.879866123199463", + "longitude": "25 00 E", + "longitude_dec": "23.6563777923584", + "max_latitude": "5.133333", + "max_longitude": "31.233333", + "min_latitude": "-13.466667", + "min_longitude": "12.266667", + "area": 2344858, + "region": "Africa", + "subregion": "Middle Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "017", + "landlocked": false, + "borders": [ + "AGO", + "BDI", + "CAF", + "COG", + "RWA", + "SSD", + "TZA", + "UGA", + "ZMB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "243" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 203312, + "edgar": 0, + "itu": "COD", + "marc": "cg", + "wmo": "ZR", + "ds": "ZRE", + "fifa": "COD", + "fips": "CG", + "gaul": 68, + "ioc": "COD", + "cowc": "DRC", + "cown": 490, + "fao": 250, + "imf": 636, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CG": { + "name": { + "common": "Republic of the Congo", + "official": "Republic of the Congo", + "native": { + "fra": { + "official": "République du Congo", + "common": "République du Congo" + }, + "kon": { + "official": "Repubilika ya Kongo", + "common": "Repubilika ya Kongo" + }, + "lin": { + "official": "Republíki ya Kongó", + "common": "Republíki ya Kongó" + } + } + }, + "demonym": "Congolese", + "capital": "Brazzaville", + "iso_3166_1_alpha2": "CG", + "iso_3166_1_alpha3": "COG", + "iso_3166_1_numeric": "178", + "currency": { + "XAF": { + "iso_4217_code": "XAF", + "iso_4217_numeric": 950, + "iso_4217_name": "CFA Franc BEAC", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".cg" + ], + "alt_spellings": [ + "CG", + "Congo", + "Congo-Brazzaville" + ], + "languages": { + "fra": "French", + "kon": "Kikongo", + "lin": "Lingala" + }, + "translations": { + "cym": { + "official": "Republic of the Congo", + "common": "Gweriniaeth y Congo" + }, + "deu": { + "official": "Republik Kongo", + "common": "Kongo" + }, + "fra": { + "official": "République du Congo", + "common": "Congo" + }, + "hrv": { + "official": "Republika Kongo", + "common": "Kongo" + }, + "ita": { + "official": "Repubblica del Congo", + "common": "Congo" + }, + "jpn": { + "official": "コンゴ共和国", + "common": "コンゴ共和国" + }, + "nld": { + "official": "Republiek Congo", + "common": "Congo" + }, + "por": { + "official": "República do Congo", + "common": "Congo" + }, + "rus": { + "official": "Республика Конго", + "common": "Республика Конго" + }, + "spa": { + "official": "República del Congo", + "common": "Congo" + }, + "fin": { + "official": "Kongon tasavalta", + "common": "Kongo-Brazzaville" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "1 00 S", + "latitude_dec": "-2.879866123199463", + "longitude": "15 00 E", + "longitude_dec": "23.6563777923584", + "max_latitude": "3.866667", + "max_longitude": "20", + "min_latitude": "-4.995556", + "min_longitude": "11.166667", + "area": 342000, + "region": "Africa", + "subregion": "Middle Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "017", + "landlocked": false, + "borders": [ + "AGO", + "CMR", + "CAF", + "COD", + "GAB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "242" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2260494, + "edgar": "G0", + "itu": "COG", + "marc": "cf", + "wmo": "CG", + "ds": "RCB", + "fifa": "CGO", + "fips": "CF", + "gaul": 59, + "ioc": "CGO", + "cowc": "CON", + "cown": 484, + "fao": 46, + "imf": 634, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CK": { + "name": { + "common": "Cook Islands", + "official": "Cook Islands", + "native": { + "eng": { + "official": "Cook Islands", + "common": "Cook Islands" + }, + "rar": { + "official": "Kūki 'Āirani", + "common": "Kūki 'Āirani" + } + } + }, + "demonym": "Cook Islander", + "capital": "Avarua", + "iso_3166_1_alpha2": "CK", + "iso_3166_1_alpha3": "COK", + "iso_3166_1_numeric": "184", + "currency": { + "NZD": { + "iso_4217_code": "NZD", + "iso_4217_numeric": 554, + "iso_4217_name": "New Zealand Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ck" + ], + "alt_spellings": [ + "CK", + "Kūki 'Āirani" + ], + "languages": { + "eng": "English", + "rar": "Cook Islands Māori" + }, + "translations": { + "cym": { + "official": "Cook Islands", + "common": "Ynysoedd Cook" + }, + "deu": { + "official": "Cook-Inseln", + "common": "Cookinseln" + }, + "fra": { + "official": "Îles Cook", + "common": "Îles Cook" + }, + "hrv": { + "official": "Cook Islands", + "common": "Cookovo Otočje" + }, + "ita": { + "official": "Isole Cook", + "common": "Isole Cook" + }, + "jpn": { + "official": "クック諸島", + "common": "クック諸島" + }, + "nld": { + "official": "Cook eilanden", + "common": "Cookeilanden" + }, + "por": { + "official": "Ilhas Cook", + "common": "Ilhas Cook" + }, + "rus": { + "official": "острова Кука", + "common": "Острова Кука" + }, + "spa": { + "official": "Islas Cook", + "common": "Islas Cook" + }, + "fin": { + "official": "Cookinsaaret", + "common": "Cookinsaaret" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "21 14 S", + "latitude_dec": "-21.22330665588379", + "longitude": "159 46 W", + "longitude_dec": "-159.7405548095703", + "max_latitude": "-8.918611", + "max_longitude": "-157.3375", + "min_latitude": "-21.953056", + "min_longitude": "-171.783333", + "area": 236, + "region": "Oceania", + "subregion": "Polynesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "061", + "landlocked": false, + "borders": [], + "independent": "Associated with NZ" + }, + "dialling": { + "calling_code": [ + "682" + ], + "national_prefix": "00", + "national_number_lengths": [ + 5 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1899402, + "edgar": "G1", + "itu": "CKH", + "marc": "cw", + "wmo": "KU", + "ds": "NZ", + "fifa": "COK", + "fips": "CW", + "gaul": 60, + "ioc": "COK", + "cowc": 0, + "cown": 0, + "fao": 47, + "imf": 815, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CO": { + "name": { + "common": "Colombia", + "official": "Republic of Colombia", + "native": { + "spa": { + "official": "República de Colombia", + "common": "Colombia" + } + } + }, + "demonym": "Colombian", + "capital": "Bogotá", + "iso_3166_1_alpha2": "CO", + "iso_3166_1_alpha3": "COL", + "iso_3166_1_numeric": "170", + "currency": { + "COP": { + "iso_4217_code": "COP", + "iso_4217_numeric": 170, + "iso_4217_name": "Colombian Peso", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".co" + ], + "alt_spellings": [ + "CO", + "Republic of Colombia", + "República de Colombia" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Republic of Colombia", + "common": "Colombia" + }, + "deu": { + "official": "Republik Kolumbien", + "common": "Kolumbien" + }, + "fra": { + "official": "République de Colombie", + "common": "Colombie" + }, + "hrv": { + "official": "Republika Kolumbija", + "common": "Kolumbija" + }, + "ita": { + "official": "Repubblica di Colombia", + "common": "Colombia" + }, + "jpn": { + "official": "コロンビア共和国", + "common": "コロンビア" + }, + "nld": { + "official": "Republiek Colombia", + "common": "Colombia" + }, + "por": { + "official": "República da Colômbia", + "common": "Colômbia" + }, + "rus": { + "official": "Республика Колумбия", + "common": "Колумбия" + }, + "spa": { + "official": "República de Colombia", + "common": "Colombia" + }, + "fin": { + "official": "Kolumbian tasavalta", + "common": "Kolumbia" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "4 00 N", + "latitude_dec": "3.9976072311401367", + "longitude": "72 00 W", + "longitude_dec": "-73.27796936035156", + "max_latitude": "13.383333", + "max_longitude": "-66.854722", + "min_latitude": "-4.214722", + "min_longitude": "-81.85", + "area": 1141748, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "BRA", + "ECU", + "PAN", + "PER", + "VEN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "57" + ], + "national_prefix": "05", + "national_number_lengths": [ + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "005" + }, + "extra": { + "geonameid": 3686110, + "edgar": "F8", + "itu": "CLM", + "marc": "ck", + "wmo": "CO", + "ds": "CO", + "fifa": "COL", + "fips": "CO", + "gaul": 57, + "ioc": "COL", + "cowc": "COL", + "cown": 100, + "fao": 44, + "imf": 233, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "KM": { + "name": { + "common": "Comoros", + "official": "Union of the Comoros", + "native": { + "ara": { + "official": "الاتحاد القمري", + "common": "القمر‎" + }, + "fra": { + "official": "Union des Comores", + "common": "Comores" + }, + "zdj": { + "official": "Udzima wa Komori", + "common": "Komori" + } + } + }, + "demonym": "Comoran", + "capital": "Moroni", + "iso_3166_1_alpha2": "KM", + "iso_3166_1_alpha3": "COM", + "iso_3166_1_numeric": "174", + "currency": { + "KMF": { + "iso_4217_code": "KMF", + "iso_4217_numeric": 174, + "iso_4217_name": "Comoro Franc", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".km" + ], + "alt_spellings": [ + "KM", + "Union of the Comoros", + "Union des Comores", + "Udzima wa Komori", + "al-Ittiḥād al-Qumurī" + ], + "languages": { + "ara": "Arabic", + "fra": "French", + "zdj": "Comorian" + }, + "translations": { + "cym": { + "official": "Union of the Comoros", + "common": "Comoros" + }, + "deu": { + "official": "Union der Komoren", + "common": "Union der Komoren" + }, + "fra": { + "official": "Union des Comores", + "common": "Comores" + }, + "hrv": { + "official": "Savez Komori", + "common": "Komori" + }, + "ita": { + "official": "Unione delle Comore", + "common": "Comore" + }, + "jpn": { + "official": "コモロ連合", + "common": "コモロ" + }, + "nld": { + "official": "Unie van de Comoren", + "common": "Comoren" + }, + "por": { + "official": "União das Comores", + "common": "Comores" + }, + "rus": { + "official": "Союз Коморских Островов", + "common": "Коморы" + }, + "spa": { + "official": "Unión de las Comoras", + "common": "Comoras" + }, + "fin": { + "official": "Komorien liitto", + "common": "Komorit" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "12 10 S", + "latitude_dec": "-11.86610221862793", + "longitude": "44 15 E", + "longitude_dec": "43.432640075683594", + "max_latitude": "-11.35", + "max_longitude": "45.316667", + "min_latitude": "-13", + "min_longitude": "43.226111", + "area": 1862, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "269" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 921929, + "edgar": "F9", + "itu": "COM", + "marc": "cq", + "wmo": "IC", + "ds": 0, + "fifa": "COM", + "fips": "CN", + "gaul": 58, + "ioc": "COM", + "cowc": "COM", + "cown": 581, + "fao": 45, + "imf": 632, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CV": { + "name": { + "common": "Cape Verde", + "official": "Republic of Cabo Verde", + "native": { + "por": { + "official": "República de Cabo Verde", + "common": "Cabo Verde" + } + } + }, + "demonym": "Cape Verdian", + "capital": "Praia", + "iso_3166_1_alpha2": "CV", + "iso_3166_1_alpha3": "CPV", + "iso_3166_1_numeric": "132", + "currency": { + "CVE": { + "iso_4217_code": "CVE", + "iso_4217_numeric": 132, + "iso_4217_name": "Cabo Verde Escudo", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".cv" + ], + "alt_spellings": [ + "CV", + "Republic of Cabo Verde", + "República de Cabo Verde" + ], + "languages": { + "por": "Portuguese" + }, + "translations": { + "cym": { + "official": "Republic of Cabo Verde", + "common": "Cape Verde" + }, + "deu": { + "official": "Republik Cabo Verde", + "common": "Kap Verde" + }, + "fra": { + "official": "République du Cap-Vert", + "common": "Îles du Cap-Vert" + }, + "hrv": { + "official": "Republika Cabo Verde", + "common": "Zelenortska Republika" + }, + "ita": { + "official": "Repubblica di Capo Verde", + "common": "Capo Verde" + }, + "jpn": { + "official": "カーボベルデ共和国", + "common": "カーボベルデ" + }, + "nld": { + "official": "Republiek van Cabo Verde", + "common": "Kaapverdië" + }, + "por": { + "official": "República de Cabo Verde", + "common": "Cabo Verde" + }, + "rus": { + "official": "Республика Кабо -Верде", + "common": "Кабо-Верде" + }, + "spa": { + "official": "República de Cabo Verde", + "common": "Cabo Verde" + }, + "fin": { + "official": "Kap Verden tasavalta", + "common": "Kap Verde" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "16 00 N", + "latitude_dec": "15.183002471923828", + "longitude": "24 00 W", + "longitude_dec": "-23.70345115661621", + "max_latitude": "17.2", + "max_longitude": "-22.666667", + "min_latitude": "14.8", + "min_longitude": "-25.366667", + "area": 4033, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "238" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3374766, + "edgar": 0, + "itu": "CPV", + "marc": "cv", + "wmo": "CV", + "ds": 0, + "fifa": "CPV", + "fips": "CV", + "gaul": 47, + "ioc": "CPV", + "cowc": "CAP", + "cown": 402, + "fao": 35, + "imf": 624, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CR": { + "name": { + "common": "Costa Rica", + "official": "Republic of Costa Rica", + "native": { + "spa": { + "official": "República de Costa Rica", + "common": "Costa Rica" + } + } + }, + "demonym": "Costa Rican", + "capital": "San José", + "iso_3166_1_alpha2": "CR", + "iso_3166_1_alpha3": "CRI", + "iso_3166_1_numeric": "188", + "currency": { + "CRC": { + "iso_4217_code": "CRC", + "iso_4217_numeric": 188, + "iso_4217_name": "Costa Rican Colon", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".cr" + ], + "alt_spellings": [ + "CR", + "Republic of Costa Rica", + "República de Costa Rica" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Republic of Costa Rica", + "common": "Costa Rica" + }, + "deu": { + "official": "Republik Costa Rica", + "common": "Costa Rica" + }, + "fra": { + "official": "République du Costa Rica", + "common": "Costa Rica" + }, + "hrv": { + "official": "Republika Kostarika", + "common": "Kostarika" + }, + "ita": { + "official": "Repubblica di Costa Rica", + "common": "Costa Rica" + }, + "jpn": { + "official": "コスタリカ共和国", + "common": "コスタリカ" + }, + "nld": { + "official": "Republiek Costa Rica", + "common": "Costa Rica" + }, + "por": { + "official": "República da Costa Rica", + "common": "Costa Rica" + }, + "rus": { + "official": "Республика Коста-Рика", + "common": "Коста-Рика" + }, + "spa": { + "official": "República de Costa Rica", + "common": "Costa Rica" + }, + "fin": { + "official": "Costa Rican tasavalta", + "common": "Costa Rica" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "10 00 N", + "latitude_dec": "9.884991645812988", + "longitude": "84 00 W", + "longitude_dec": "-84.22723388671875", + "max_latitude": "11.216667", + "max_longitude": "-82.05", + "min_latitude": "5.5", + "min_longitude": "-87.1", + "area": 51100, + "region": "Americas", + "subregion": "Central America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "013", + "landlocked": false, + "borders": [ + "NIC", + "PAN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "506" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3624060, + "edgar": "G2", + "itu": "CTR", + "marc": "cr", + "wmo": "CS", + "ds": "CR", + "fifa": "CRC", + "fips": "CS", + "gaul": 61, + "ioc": "CRC", + "cowc": "COS", + "cown": 94, + "fao": 48, + "imf": 238, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CU": { + "name": { + "common": "Cuba", + "official": "Republic of Cuba", + "native": { + "spa": { + "official": "República de Cuba", + "common": "Cuba" + } + } + }, + "demonym": "Cuban", + "capital": "Havana", + "iso_3166_1_alpha2": "CU", + "iso_3166_1_alpha3": "CUB", + "iso_3166_1_numeric": "192", + "currency": { + "CUC": { + "iso_4217_code": "CUC", + "iso_4217_numeric": 931, + "iso_4217_name": "Cuban convertible peso", + "iso_4217_minor_unit": 2 + }, + "CUP": { + "iso_4217_code": "CUP", + "iso_4217_numeric": 192, + "iso_4217_name": "Cuban Peso", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".cu" + ], + "alt_spellings": [ + "CU", + "Republic of Cuba", + "República de Cuba" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Republic of Cuba", + "common": "Ciwba" + }, + "deu": { + "official": "Republik Kuba", + "common": "Kuba" + }, + "fra": { + "official": "République de Cuba", + "common": "Cuba" + }, + "hrv": { + "official": "Republika Kuba", + "common": "Kuba" + }, + "ita": { + "official": "Repubblica di Cuba", + "common": "Cuba" + }, + "jpn": { + "official": "キューバ共和国", + "common": "キューバ" + }, + "nld": { + "official": "Republiek Cuba", + "common": "Cuba" + }, + "por": { + "official": "República de Cuba", + "common": "Cuba" + }, + "rus": { + "official": "Республика Куба", + "common": "Куба" + }, + "spa": { + "official": "República de Cuba", + "common": "Cuba" + }, + "fin": { + "official": "Kuuban tasavalta", + "common": "Kuuba" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "21 30 N", + "latitude_dec": "22.066335678100586", + "longitude": "80 00 W", + "longitude_dec": "-79.4531478881836", + "max_latitude": "23.265833", + "max_longitude": "-74.135", + "min_latitude": "19.828056", + "min_longitude": "-84.950833", + "area": 109884, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "53" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "119" + }, + "extra": { + "geonameid": 3562981, + "edgar": "G3", + "itu": "CUB", + "marc": "cu", + "wmo": "CU", + "ds": "C", + "fifa": "CUB", + "fips": "CU", + "gaul": 63, + "ioc": "CUB", + "cowc": "CUB", + "cown": 40, + "fao": 49, + "imf": 928, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CW": { + "name": { + "common": "Curaçao", + "official": "Country of Curaçao", + "native": { + "eng": { + "official": "Country of Curaçao", + "common": "Curaçao" + }, + "nld": { + "official": "Land Curaçao", + "common": "Curaçao" + }, + "pap": { + "official": "Pais Kòrsou", + "common": "Pais Kòrsou" + } + } + }, + "demonym": "Dutch", + "capital": "Willemstad", + "iso_3166_1_alpha2": "CW", + "iso_3166_1_alpha3": "CUW", + "iso_3166_1_numeric": "531", + "currency": { + "ANG": { + "iso_4217_code": "ANG", + "iso_4217_numeric": 532, + "iso_4217_name": "Netherlands Antillean Guilder", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".cw" + ], + "alt_spellings": [ + "CW", + "Curacao", + "Kòrsou", + "Country of Curaçao", + "Land Curaçao", + "Pais Kòrsou" + ], + "languages": { + "eng": "English", + "nld": "Dutch", + "pap": "Papiamento" + }, + "translations": { + "deu": { + "official": "Land Curaçao", + "common": "Curaçao" + }, + "fra": { + "official": "Curaçao", + "common": "Curaçao" + }, + "nld": { + "official": "Land Curaçao", + "common": "Curaçao" + }, + "por": { + "official": "País de Curaçao", + "common": "ilha da Curação" + }, + "rus": { + "official": "Страна Кюрасао", + "common": "Кюрасао" + }, + "spa": { + "official": "País de Curazao", + "common": "Curazao" + }, + "fin": { + "official": "Curaçao", + "common": "Curaçao" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "12 11 N", + "latitude_dec": "12.163220405578613", + "longitude": "69 0 W", + "longitude_dec": "-68.94505310058594", + "max_latitude": "12.385670", + "max_longitude": "-68.639328", + "min_latitude": "11.973190", + "min_longitude": "-69.157204", + "area": 444, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Part of NL" + }, + "dialling": { + "calling_code": [ + "5999" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 7626836, + "edgar": 0, + "itu": 0, + "marc": "co", + "wmo": 0, + "ds": 0, + "fifa": 0, + "fips": "UC", + "gaul": 0, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 354, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CX": { + "name": { + "common": "Christmas Island", + "official": "Territory of Christmas Island", + "native": { + "eng": { + "official": "Territory of Christmas Island", + "common": "Christmas Island" + } + } + }, + "demonym": "Christmas Island", + "capital": "Flying Fish Cove", + "iso_3166_1_alpha2": "CX", + "iso_3166_1_alpha3": "CXR", + "iso_3166_1_numeric": "162", + "currency": { + "AUD": { + "iso_4217_code": "AUD", + "iso_4217_numeric": "036", + "iso_4217_name": "Australian dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".cx" + ], + "alt_spellings": [ + "CX", + "Territory of Christmas Island" + ], + "languages": { + "eng": "English" + }, + "translations": { + "cym": { + "official": "Territory of Christmas Island", + "common": "Ynys y Nadolig" + }, + "deu": { + "official": "Gebiet der Weihnachtsinsel", + "common": "Weihnachtsinsel" + }, + "fra": { + "official": "Territoire de l'île Christmas", + "common": "Île Christmas" + }, + "hrv": { + "official": "Teritorij Božićni otok", + "common": "Božićni otok" + }, + "ita": { + "official": "Territorio di Christmas Island", + "common": "Isola di Natale" + }, + "jpn": { + "official": "クリスマス島の領土", + "common": "クリスマス島" + }, + "nld": { + "official": "Grondgebied van Christmas Island", + "common": "Christmaseiland" + }, + "por": { + "official": "Território da Ilha Christmas", + "common": "Ilha do Natal" + }, + "rus": { + "official": "Территория острова Рождества", + "common": "Остров Рождества" + }, + "spa": { + "official": "Territorio de la Isla de Navidad", + "common": "Isla de Navidad" + }, + "fin": { + "official": "Joulusaaren alue", + "common": "Joulusaari" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "10 30 S", + "latitude_dec": "-10.490290641784668", + "longitude": "105 40 E", + "longitude_dec": "105.63275146484375", + "max_latitude": "-10.4", + "max_longitude": "105.75", + "min_latitude": "-10.566667", + "min_longitude": "105.566667", + "area": 135, + "region": "Oceania", + "subregion": "Australia and New Zealand", + "world_region": "APAC", + "region_code": "", + "subregion_code": "", + "landlocked": false, + "borders": [], + "independent": "Territory of AU" + }, + "dialling": { + "calling_code": [ + "61" + ], + "national_prefix": "0", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "0011" + }, + "extra": { + "geonameid": 2078138, + "edgar": 0, + "itu": "CHR", + "marc": "xa", + "wmo": "KI", + "ds": "AUS", + "fifa": "CXR", + "fips": "KT", + "gaul": 54, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "KY": { + "name": { + "common": "Cayman Islands", + "official": "Cayman Islands", + "native": { + "eng": { + "official": "Cayman Islands", + "common": "Cayman Islands" + } + } + }, + "demonym": "Caymanian", + "capital": "George Town", + "iso_3166_1_alpha2": "KY", + "iso_3166_1_alpha3": "CYM", + "iso_3166_1_numeric": "136", + "currency": { + "KYD": { + "iso_4217_code": "KYD", + "iso_4217_numeric": 136, + "iso_4217_name": "Cayman Islands Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ky" + ], + "alt_spellings": [ + "KY" + ], + "languages": { + "eng": "English" + }, + "translations": { + "cym": { + "official": "Cayman Islands", + "common": "Ynysoedd_Cayman" + }, + "deu": { + "official": "Cayman-Inseln", + "common": "Kaimaninseln" + }, + "fra": { + "official": "Îles Caïmans", + "common": "Îles Caïmans" + }, + "hrv": { + "official": "Kajmanski otoci", + "common": "Kajmanski otoci" + }, + "ita": { + "official": "Isole Cayman", + "common": "Isole Cayman" + }, + "jpn": { + "official": "ケイマン諸島", + "common": "ケイマン諸島" + }, + "nld": { + "official": "Caymaneilanden", + "common": "Caymaneilanden" + }, + "por": { + "official": "Ilhas Cayman", + "common": "Ilhas Caimão" + }, + "rus": { + "official": "Каймановы острова", + "common": "Каймановы острова" + }, + "spa": { + "official": "Islas Caimán", + "common": "Islas Caimán" + }, + "fin": { + "official": "Caymansaaret", + "common": "Caymansaaret" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "19 30 N", + "latitude_dec": "19.308862686157227", + "longitude": "80 30 W", + "longitude_dec": "-81.25680541992188", + "max_latitude": "19.75", + "max_longitude": "-79.716667", + "min_latitude": "19.25", + "min_longitude": "-81.416667", + "area": 264, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "1345" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3580718, + "edgar": "E9", + "itu": "CYM", + "marc": "cj", + "wmo": "GC", + "ds": 0, + "fifa": "CAY", + "fips": "CJ", + "gaul": 48, + "ioc": "CAY", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 377, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "CY": { + "name": { + "common": "Cyprus", + "official": "Republic of Cyprus", + "native": { + "ell": { + "official": "Δημοκρατία της Κύπρος", + "common": "Κύπρος" + }, + "tur": { + "official": "Kıbrıs Cumhuriyeti", + "common": "Kıbrıs" + } + } + }, + "demonym": "Cypriot", + "capital": "Nicosia", + "iso_3166_1_alpha2": "CY", + "iso_3166_1_alpha3": "CYP", + "iso_3166_1_numeric": "196", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".cy" + ], + "alt_spellings": [ + "CY", + "Kýpros", + "Kıbrıs", + "Republic of Cyprus", + "Κυπριακή Δημοκρατία", + "Kıbrıs Cumhuriyeti" + ], + "languages": { + "ell": "Greek", + "tur": "Turkish" + }, + "translations": { + "cym": { + "official": "Republic of Cyprus", + "common": "Cyprus" + }, + "deu": { + "official": "Republik Zypern", + "common": "Zypern" + }, + "fra": { + "official": "République de Chypre", + "common": "Chypre" + }, + "hrv": { + "official": "Republika Cipar", + "common": "Cipar" + }, + "ita": { + "official": "Repubblica di Cipro", + "common": "Cipro" + }, + "jpn": { + "official": "キプロス共和国", + "common": "キプロス" + }, + "nld": { + "official": "Republiek Cyprus", + "common": "Cyprus" + }, + "por": { + "official": "República de Chipre", + "common": "Chipre" + }, + "rus": { + "official": "Республика Кипр", + "common": "Кипр" + }, + "spa": { + "official": "República de Chipre", + "common": "Chipre" + }, + "fin": { + "official": "Kyproksen tasavalta", + "common": "Kypros" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "35 00 N", + "latitude_dec": "35.11473846435547", + "longitude": "33 00 E", + "longitude_dec": "33.486717224121094", + "max_latitude": "35.7", + "max_longitude": "34.6", + "min_latitude": "34.566667", + "min_longitude": "32.270833", + "area": 9251, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "GBR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "357" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 146669, + "edgar": "G4", + "itu": "CYP", + "marc": "cy", + "wmo": "CY", + "ds": "CY", + "fifa": "CYP", + "fips": "CY", + "gaul": 64, + "ioc": "CYP", + "cowc": "CYP", + "cown": 352, + "fao": 50, + "imf": 423, + "ar5": "EIT", + "address_format": null, + "eu_member": true, + "vat_rates": { + "standard": 19, + "reduced": [ + 5, + 9 + ], + "super_reduced": null, + "parking": null + } + } + }, + "CZ": { + "name": { + "common": "Czech Republic", + "official": "Czech Republic", + "native": { + "ces": { + "official": "česká republika", + "common": "Česká republika" + }, + "slk": { + "official": "Česká republika", + "common": "Česká republika" + } + } + }, + "demonym": "Czech", + "capital": "Prague", + "iso_3166_1_alpha2": "CZ", + "iso_3166_1_alpha3": "CZE", + "iso_3166_1_numeric": "203", + "currency": { + "CZK": { + "iso_4217_code": "CZK", + "iso_4217_numeric": 203, + "iso_4217_name": "Czech Koruna", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".cz" + ], + "alt_spellings": [ + "CZ", + "Česká republika", + "Česko" + ], + "languages": { + "ces": "Czech", + "slk": "Slovak" + }, + "translations": { + "cym": { + "official": "Czech Republic", + "common": "Y Weriniaeth Tsiec" + }, + "deu": { + "official": "Tschechische Republik", + "common": "Tschechische Republik" + }, + "fra": { + "official": "République tchèque", + "common": "République tchèque" + }, + "hrv": { + "official": "Češka", + "common": "Češka" + }, + "ita": { + "official": "Repubblica Ceca", + "common": "Repubblica Ceca" + }, + "jpn": { + "official": "チェコ共和国", + "common": "チェコ" + }, + "nld": { + "official": "Tsjechische Republiek", + "common": "Tsjechië" + }, + "por": { + "official": "República Checa", + "common": "República Checa" + }, + "rus": { + "official": "Чешская Республика", + "common": "Чехия" + }, + "spa": { + "official": "República Checa", + "common": "República Checa" + }, + "fin": { + "official": "Tšekin tasavalta", + "common": "Tšekki" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "49 45 N", + "latitude_dec": "49.739105224609375", + "longitude": "15 30 E", + "longitude_dec": "15.331501007080078", + "max_latitude": "59.65", + "max_longitude": "25.5", + "min_latitude": "40.65", + "min_longitude": "12.116667", + "area": 78865, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "151", + "landlocked": true, + "borders": [ + "AUT", + "DEU", + "POL", + "SVK" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "420" + ], + "national_prefix": null, + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3077311, + "edgar": "2N", + "itu": "CZE", + "marc": "xr", + "wmo": "CZ", + "ds": "CZ", + "fifa": "CZE", + "fips": "EZ", + "gaul": 65, + "ioc": "CZE", + "cowc": "CZR", + "cown": 316, + "fao": 167, + "imf": 935, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 21, + "reduced": [ + 15 + ], + "super_reduced": null, + "parking": null + } + } + }, + "DE": { + "name": { + "common": "Germany", + "official": "Federal Republic of Germany", + "native": { + "deu": { + "official": "Bundesrepublik Deutschland", + "common": "Deutschland" + } + } + }, + "demonym": "German", + "capital": "Berlin", + "iso_3166_1_alpha2": "DE", + "iso_3166_1_alpha3": "DEU", + "iso_3166_1_numeric": "276", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".de" + ], + "alt_spellings": [ + "DE", + "Federal Republic of Germany", + "Bundesrepublik Deutschland" + ], + "languages": { + "deu": "German" + }, + "translations": { + "deu": { + "official": "Bundesrepublik Deutschland", + "common": "Deutschland" + }, + "fra": { + "official": "République fédérale d'Allemagne", + "common": "Allemagne" + }, + "hrv": { + "official": "Njemačka Federativna Republika", + "common": "Njemačka" + }, + "ita": { + "official": "Repubblica federale di Germania", + "common": "Germania" + }, + "jpn": { + "official": "ドイツ連邦共和国", + "common": "ドイツ" + }, + "nld": { + "official": "Bondsrepubliek Duitsland", + "common": "Duitsland" + }, + "por": { + "official": "República Federal da Alemanha", + "common": "Alemanha" + }, + "rus": { + "official": "Федеративная Республика Германия", + "common": "Германия" + }, + "spa": { + "official": "República Federal de Alemania", + "common": "Alemania" + }, + "fin": { + "official": "Saksan liittotasavalta", + "common": "Saksa" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "51 00 N", + "latitude_dec": "51.20246505737305", + "longitude": "9 00 E", + "longitude_dec": "10.382203102111816", + "max_latitude": "55.05", + "max_longitude": "15.033333", + "min_latitude": "47.266667", + "min_longitude": "5.9", + "area": 357114, + "region": "Europe", + "subregion": "Western Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "155", + "landlocked": false, + "borders": [ + "AUT", + "BEL", + "CZE", + "DNK", + "FRA", + "LUX", + "NLD", + "POL", + "CHE" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "49" + ], + "national_prefix": "0", + "national_number_lengths": [ + 6, + 7, + 8, + 9, + 10, + 11 + ], + "national_destination_code_lengths": [ + 2, + 3, + 4, + 5 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2921044, + "edgar": "2M", + "itu": "D", + "marc": "gw", + "wmo": "DL", + "ds": "D", + "fifa": "GER", + "fips": "GM", + "gaul": 93, + "ioc": "GER", + "cowc": "GMY", + "cown": 255, + "fao": 79, + "imf": 134, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 19, + "reduced": [ + 7 + ], + "super_reduced": null, + "parking": null + } + } + }, + "DJ": { + "name": { + "common": "Djibouti", + "official": "Republic of Djibouti", + "native": { + "ara": { + "official": "جمهورية جيبوتي", + "common": "جيبوتي‎" + }, + "fra": { + "official": "République de Djibouti", + "common": "Djibouti" + } + } + }, + "demonym": "Djibouti", + "capital": "Djibouti", + "iso_3166_1_alpha2": "DJ", + "iso_3166_1_alpha3": "DJI", + "iso_3166_1_numeric": "262", + "currency": { + "DJF": { + "iso_4217_code": "DJF", + "iso_4217_numeric": 262, + "iso_4217_name": "Djibouti Franc", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".dj" + ], + "alt_spellings": [ + "DJ", + "Jabuuti", + "Gabuuti", + "Republic of Djibouti", + "République de Djibouti", + "Gabuutih Ummuuno", + "Jamhuuriyadda Jabuuti" + ], + "languages": { + "ara": "Arabic", + "fra": "French" + }, + "translations": { + "cym": { + "official": "Republic of Djibouti", + "common": "Djibouti" + }, + "deu": { + "official": "Republik Dschibuti", + "common": "Dschibuti" + }, + "fra": { + "official": "République de Djibouti", + "common": "Djibouti" + }, + "hrv": { + "official": "Republika Džibuti", + "common": "Džibuti" + }, + "ita": { + "official": "Repubblica di Gibuti", + "common": "Gibuti" + }, + "jpn": { + "official": "ジブチ共和国", + "common": "ジブチ" + }, + "nld": { + "official": "Republiek Djibouti", + "common": "Djibouti" + }, + "por": { + "official": "República do Djibouti", + "common": "Djibouti" + }, + "rus": { + "official": "Республика Джибути", + "common": "Джибути" + }, + "spa": { + "official": "República de Djibouti", + "common": "Djibouti" + }, + "fin": { + "official": "Dijiboutin tasavalta", + "common": "Dijibouti" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "11 30 N", + "latitude_dec": "11.742591857910156", + "longitude": "43 00 E", + "longitude_dec": "42.63182830810547", + "max_latitude": "13", + "max_longitude": "43.451944", + "min_latitude": "10.9825", + "min_longitude": "41", + "area": 23200, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [ + "ERI", + "ETH", + "SOM" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "253" + ], + "national_prefix": null, + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 223816, + "edgar": "1G", + "itu": "DJI", + "marc": "ft", + "wmo": "DJ", + "ds": 0, + "fifa": "DJI", + "fips": "DJ", + "gaul": 70, + "ioc": "DJI", + "cowc": "DJI", + "cown": 522, + "fao": 72, + "imf": 611, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "DM": { + "name": { + "common": "Dominica", + "official": "Commonwealth of Dominica", + "native": { + "eng": { + "official": "Commonwealth of Dominica", + "common": "Dominica" + } + } + }, + "demonym": "Dominican", + "capital": "Roseau", + "iso_3166_1_alpha2": "DM", + "iso_3166_1_alpha3": "DMA", + "iso_3166_1_numeric": "212", + "currency": { + "XCD": { + "iso_4217_code": "XCD", + "iso_4217_numeric": 951, + "iso_4217_name": "East Caribbean Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".dm" + ], + "alt_spellings": [ + "DM", + "Dominique", + "Wai‘tu kubuli", + "Commonwealth of Dominica" + ], + "languages": { + "eng": "English" + }, + "translations": { + "cym": { + "official": "Commonwealth of Dominica", + "common": "Dominica" + }, + "deu": { + "official": "Commonwealth von Dominica", + "common": "Dominica" + }, + "fra": { + "official": "Commonwealth de la Dominique", + "common": "Dominique" + }, + "hrv": { + "official": "Zajednica Dominika", + "common": "Dominika" + }, + "ita": { + "official": "Commonwealth di Dominica", + "common": "Dominica" + }, + "jpn": { + "official": "ドミニカ国", + "common": "ドミニカ国" + }, + "nld": { + "official": "Gemenebest Dominica", + "common": "Dominica" + }, + "por": { + "official": "Comunidade da Dominica", + "common": "Dominica" + }, + "rus": { + "official": "Содружество Доминики", + "common": "Доминика" + }, + "spa": { + "official": "Mancomunidad de Dominica", + "common": "Dominica" + }, + "fin": { + "official": "Dominican liittovaltio", + "common": "Dominica" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "15 25 N", + "latitude_dec": "15.3991060256958", + "longitude": "61 20 W", + "longitude_dec": "-61.33945846557617", + "max_latitude": "15.633333", + "max_longitude": "-61.25", + "min_latitude": "15.2", + "min_longitude": "-61.483333", + "area": 751, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1767" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3575830, + "edgar": "G9", + "itu": "DMA", + "marc": "dq", + "wmo": "DO", + "ds": "WD", + "fifa": "DMA", + "fips": "DO", + "gaul": 71, + "ioc": "DMA", + "cowc": "DMA", + "cown": 54, + "fao": 55, + "imf": 321, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "DK": { + "name": { + "common": "Denmark", + "official": "Kingdom of Denmark", + "native": { + "dan": { + "official": "Kongeriget Danmark", + "common": "Danmark" + } + } + }, + "demonym": "Danish", + "capital": "Copenhagen", + "iso_3166_1_alpha2": "DK", + "iso_3166_1_alpha3": "DNK", + "iso_3166_1_numeric": "208", + "currency": { + "DKK": { + "iso_4217_code": "DKK", + "iso_4217_numeric": 208, + "iso_4217_name": "Danish Krone", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".dk" + ], + "alt_spellings": [ + "DK", + "Danmark", + "Kingdom of Denmark", + "Kongeriget Danmark" + ], + "languages": { + "dan": "Danish" + }, + "translations": { + "cym": { + "official": "Kingdom of Denmark", + "common": "Denmarc" + }, + "deu": { + "official": "Königreich Dänemark", + "common": "Dänemark" + }, + "fra": { + "official": "Royaume du Danemark", + "common": "Danemark" + }, + "hrv": { + "official": "Kraljevina Danska", + "common": "Danska" + }, + "ita": { + "official": "Regno di Danimarca", + "common": "Danimarca" + }, + "jpn": { + "official": "デンマーク王国", + "common": "デンマーク" + }, + "nld": { + "official": "Koninkrijk Denemarken", + "common": "Denemarken" + }, + "por": { + "official": "Reino da Dinamarca", + "common": "Dinamarca" + }, + "rus": { + "official": "Королевство Дания", + "common": "Дания" + }, + "spa": { + "official": "Reino de Dinamarca", + "common": "Dinamarca" + }, + "fin": { + "official": "Tanskan kuningaskunta", + "common": "Tanska" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "56 00 N", + "latitude_dec": "56.10176086425781", + "longitude": "10 00 E", + "longitude_dec": "9.555907249450684", + "max_latitude": "64", + "max_longitude": "18", + "min_latitude": "53.583333", + "min_longitude": "4.516667", + "area": 43094, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [ + "DEU" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "45" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2623032, + "edgar": "G7", + "itu": "DNK", + "marc": "dk", + "wmo": "DN", + "ds": "DK", + "fifa": "DEN", + "fips": "DA", + "gaul": 69, + "ioc": "DEN", + "cowc": "DEN", + "cown": 390, + "fao": 54, + "imf": 128, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{region}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 25, + "reduced": [], + "super_reduced": null, + "parking": null + } + } + }, + "DO": { + "name": { + "common": "Dominican Republic", + "official": "Dominican Republic", + "native": { + "spa": { + "official": "República Dominicana", + "common": "República Dominicana" + } + } + }, + "demonym": "Dominican", + "capital": "Santo Domingo", + "iso_3166_1_alpha2": "DO", + "iso_3166_1_alpha3": "DOM", + "iso_3166_1_numeric": "214", + "currency": { + "DOP": { + "iso_4217_code": "DOP", + "iso_4217_numeric": 214, + "iso_4217_name": "Dominican Peso", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".do" + ], + "alt_spellings": [ + "DO" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Dominican Republic", + "common": "Gweriniaeth_Dominica" + }, + "deu": { + "official": "Dominikanische Republik", + "common": "Dominikanische Republik" + }, + "fra": { + "official": "République Dominicaine", + "common": "République dominicaine" + }, + "hrv": { + "official": "Dominikanska Republika", + "common": "Dominikanska Republika" + }, + "ita": { + "official": "Repubblica Dominicana", + "common": "Repubblica Dominicana" + }, + "jpn": { + "official": "ドミニカ共和国", + "common": "ドミニカ共和国" + }, + "nld": { + "official": "Dominicaanse Republiek", + "common": "Dominicaanse Republiek" + }, + "por": { + "official": "República Dominicana", + "common": "República Dominicana" + }, + "rus": { + "official": "Доминиканская Республика", + "common": "Доминиканская Республика" + }, + "spa": { + "official": "República Dominicana", + "common": "República Dominicana" + }, + "fin": { + "official": "Dominikaaninen tasavalta", + "common": "Dominikaaninen tasavalta" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "19 00 N", + "latitude_dec": "19.019824981689453", + "longitude": "70 40 W", + "longitude_dec": "-70.79285430908203", + "max_latitude": "19.933333", + "max_longitude": "-68.316667", + "min_latitude": "17.473056", + "min_longitude": "-71.966667", + "area": 48671, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [ + "HTI" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1809", + "1829", + "1849" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3508796, + "edgar": "G8", + "itu": "DOM", + "marc": "dr", + "wmo": "DR", + "ds": "DOM", + "fifa": "DOM", + "fips": "DR", + "gaul": 72, + "ioc": "DOM", + "cowc": "DOM", + "cown": 42, + "fao": 56, + "imf": 243, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "DZ": { + "name": { + "common": "Algeria", + "official": "People's Democratic Republic of Algeria", + "native": { + "ara": { + "official": "الجمهورية الديمقراطية الشعبية الجزائرية", + "common": "الجزائر" + } + } + }, + "demonym": "Algerian", + "capital": "Algiers", + "iso_3166_1_alpha2": "DZ", + "iso_3166_1_alpha3": "DZA", + "iso_3166_1_numeric": "012", + "currency": { + "DZD": { + "iso_4217_code": "DZD", + "iso_4217_numeric": 12, + "iso_4217_name": "Algerian Dinar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".dz", + "الجزائر." + ], + "alt_spellings": [ + "DZ", + "Dzayer", + "Algérie" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "cym": { + "official": "People's Democratic Republic of Algeria", + "common": "Algeria" + }, + "deu": { + "official": "Demokratische Volksrepublik Algerien", + "common": "Algerien" + }, + "fra": { + "official": "République démocratique et populaire d'Algérie", + "common": "Algérie" + }, + "hrv": { + "official": "Narodna Demokratska Republika Alžir", + "common": "Alžir" + }, + "ita": { + "official": "Repubblica popolare democratica di Algeria", + "common": "Algeria" + }, + "jpn": { + "official": "アルジェリア人民民主共和国", + "common": "アルジェリア" + }, + "nld": { + "official": "Democratische Volksrepubliek Algerije", + "common": "Algerije" + }, + "por": { + "official": "República Argelina Democrática e Popular", + "common": "Argélia" + }, + "rus": { + "official": "Народно-Демократическая Республика Алжир", + "common": "Алжир" + }, + "spa": { + "official": "República Argelina Democrática y Popular", + "common": "Argelia" + }, + "fin": { + "official": "Algerian demokraattinen kansantasavalta", + "common": "Algeria" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "28 00 N", + "latitude_dec": "28.213645935058594", + "longitude": "3 00 E", + "longitude_dec": "2.6547281742095947", + "max_latitude": "37.116667", + "max_longitude": "13", + "min_latitude": "19", + "min_longitude": "-8.666667", + "area": 2381741, + "region": "Africa", + "subregion": "Northern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "015", + "landlocked": false, + "borders": [ + "TUN", + "LBY", + "NER", + "ESH", + "MRT", + "MLI", + "MAR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "213" + ], + "national_prefix": "7", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2589581, + "edgar": "B4", + "itu": "ALG", + "marc": "ae", + "wmo": "AL", + "ds": "DZ", + "fifa": "ALG", + "fips": "AG", + "gaul": 4, + "ioc": "ALG", + "cowc": "ALG", + "cown": 615, + "fao": 4, + "imf": 612, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "EC": { + "name": { + "common": "Ecuador", + "official": "Republic of Ecuador", + "native": { + "spa": { + "official": "República del Ecuador", + "common": "Ecuador" + } + } + }, + "demonym": "Ecuadorean", + "capital": "Quito", + "iso_3166_1_alpha2": "EC", + "iso_3166_1_alpha3": "ECU", + "iso_3166_1_numeric": "218", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ec" + ], + "alt_spellings": [ + "EC", + "Republic of Ecuador", + "República del Ecuador" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Republic of Ecuador", + "common": "Ecwador" + }, + "deu": { + "official": "Republik Ecuador", + "common": "Ecuador" + }, + "fra": { + "official": "République de l'Équateur", + "common": "Équateur" + }, + "hrv": { + "official": "Republika Ekvador", + "common": "Ekvador" + }, + "ita": { + "official": "Repubblica dell'Ecuador", + "common": "Ecuador" + }, + "jpn": { + "official": "エクアドル共和国", + "common": "エクアドル" + }, + "nld": { + "official": "Republiek Ecuador", + "common": "Ecuador" + }, + "por": { + "official": "República do Equador", + "common": "Equador" + }, + "rus": { + "official": "Республика Эквадор", + "common": "Эквадор" + }, + "spa": { + "official": "República del Ecuador", + "common": "Ecuador" + }, + "fin": { + "official": "Ecuadorin tasavalta", + "common": "Ecuador" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "2 00 S", + "latitude_dec": "-1.421528935432434", + "longitude": "77 30 W", + "longitude_dec": "-78.87104034423828", + "max_latitude": "1.65", + "max_longitude": "-75.216667", + "min_latitude": "-4.95", + "min_longitude": "-92", + "area": 276841, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "COL", + "PER" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "593" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3658394, + "edgar": "H1", + "itu": "EQA", + "marc": "ec", + "wmo": "EQ", + "ds": "EC", + "fifa": "ECU", + "fips": "EC", + "gaul": 73, + "ioc": "ECU", + "cowc": "ECU", + "cown": 130, + "fao": 58, + "imf": 248, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "EG": { + "name": { + "common": "Egypt", + "official": "Arab Republic of Egypt", + "native": { + "ara": { + "official": "جمهورية مصر العربية", + "common": "مصر" + } + } + }, + "demonym": "Egyptian", + "capital": "Cairo", + "iso_3166_1_alpha2": "EG", + "iso_3166_1_alpha3": "EGY", + "iso_3166_1_numeric": "818", + "currency": { + "EGP": { + "iso_4217_code": "EGP", + "iso_4217_numeric": 818, + "iso_4217_name": "Egyptian Pound", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".eg", + ".مصر" + ], + "alt_spellings": [ + "EG", + "Arab Republic of Egypt" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "cym": { + "official": "Arab Republic of Egypt", + "common": "Yr Aifft" + }, + "deu": { + "official": "Arabische Republik Ägypten", + "common": "Ägypten" + }, + "fra": { + "official": "République arabe d'Égypte", + "common": "Égypte" + }, + "hrv": { + "official": "Arapska Republika Egipat", + "common": "Egipat" + }, + "ita": { + "official": "Repubblica araba d'Egitto", + "common": "Egitto" + }, + "jpn": { + "official": "エジプト·アラブ共和国", + "common": "エジプト" + }, + "nld": { + "official": "Arabische Republiek Egypte", + "common": "Egypte" + }, + "por": { + "official": "República Árabe do Egipto", + "common": "Egito" + }, + "rus": { + "official": "Арабская Республика Египет", + "common": "Египет" + }, + "spa": { + "official": "República Árabe de Egipto", + "common": "Egipto" + }, + "fin": { + "official": "Egyptin arabitasavalta", + "common": "Egypti" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "27 00 N", + "latitude_dec": "26.756103515625", + "longitude": "30 00 E", + "longitude_dec": "29.86229705810547", + "max_latitude": "31.916667", + "max_longitude": "36.333333", + "min_latitude": "20.383333", + "min_longitude": "24.7", + "area": 1002450, + "region": "Africa", + "subregion": "Northern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "015", + "landlocked": false, + "borders": [ + "ISR", + "LBY", + "SDN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "20" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 357994, + "edgar": "H2", + "itu": "EGY", + "marc": "ua", + "wmo": "EG", + "ds": "ET", + "fifa": "EGY", + "fips": "EG", + "gaul": 40765, + "ioc": "EGY", + "cowc": "EGY", + "cown": 651, + "fao": 59, + "imf": 469, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "ER": { + "name": { + "common": "Eritrea", + "official": "State of Eritrea", + "native": { + "ara": { + "official": "دولة إرتريا", + "common": "إرتريا‎" + }, + "eng": { + "official": "State of Eritrea", + "common": "Eritrea" + }, + "tir": { + "official": "ሃገረ ኤርትራ", + "common": "ኤርትራ" + } + } + }, + "demonym": "Eritrean", + "capital": "Asmara", + "iso_3166_1_alpha2": "ER", + "iso_3166_1_alpha3": "ERI", + "iso_3166_1_numeric": "232", + "currency": { + "ERN": { + "iso_4217_code": "ERN", + "iso_4217_numeric": 232, + "iso_4217_name": "Nakfa", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".er" + ], + "alt_spellings": [ + "ER", + "State of Eritrea", + "ሃገረ ኤርትራ", + "Dawlat Iritriyá", + "ʾErtrā", + "Iritriyā" + ], + "languages": { + "ara": "Arabic", + "eng": "English", + "tir": "Tigrinya" + }, + "translations": { + "cym": { + "official": "State of Eritrea", + "common": "Eritrea" + }, + "deu": { + "official": "Staat Eritrea", + "common": "Eritrea" + }, + "fra": { + "official": "État d'Érythrée", + "common": "Érythrée" + }, + "hrv": { + "official": "Država Eritreji", + "common": "Eritreja" + }, + "ita": { + "official": "Stato di Eritrea", + "common": "Eritrea" + }, + "jpn": { + "official": "エリトリア国", + "common": "エリトリア" + }, + "nld": { + "official": "Staat Eritrea", + "common": "Eritrea" + }, + "por": { + "official": "Estado da Eritreia", + "common": "Eritreia" + }, + "rus": { + "official": "Государство Эритрея", + "common": "Эритрея" + }, + "spa": { + "official": "Estado de Eritrea", + "common": "Eritrea" + }, + "fin": { + "official": "Eritrean valtio", + "common": "Eritrea" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "15 00 N", + "latitude_dec": "15.397199630737305", + "longitude": "39 00 E", + "longitude_dec": "39.087188720703125", + "max_latitude": "18.033333", + "max_longitude": "43.114722", + "min_latitude": "12.383333", + "min_longitude": "36.483333", + "area": 117600, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [ + "DJI", + "ETH", + "SDN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "291" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 338010, + "edgar": "1J", + "itu": "ERI", + "marc": "ea", + "wmo": 0, + "ds": 0, + "fifa": "ERI", + "fips": "ER", + "gaul": 77, + "ioc": "ERI", + "cowc": "ERI", + "cown": 531, + "fao": 178, + "imf": 643, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "EH": { + "name": { + "common": "Western Sahara", + "official": "Sahrawi Arab Democratic Republic", + "native": { + "ber": { + "official": "Sahrawi Arab Democratic Republic", + "common": "Western Sahara" + }, + "mey": { + "official": "الجمهورية العربية الصحراوية الديمقراطية", + "common": "الصحراء الغربية" + }, + "spa": { + "official": "República Árabe Saharaui Democrática", + "common": "Sahara Occidental" + } + } + }, + "demonym": "Sahrawi", + "capital": "El Aaiún", + "iso_3166_1_alpha2": "EH", + "iso_3166_1_alpha3": "ESH", + "iso_3166_1_numeric": "732", + "currency": { + "DZD": { + "iso_4217_code": "DZD", + "iso_4217_numeric": "012", + "iso_4217_name": "Algerian dinar", + "iso_4217_minor_unit": 2 + }, + "MRO": { + "iso_4217_code": "MRO", + "iso_4217_numeric": 478, + "iso_4217_name": "Mauritanian ouguiya", + "iso_4217_minor_unit": 2 + }, + "MAD": { + "iso_4217_code": "MAD", + "iso_4217_numeric": 504, + "iso_4217_name": "Moroccan Dirham", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".eh" + ], + "alt_spellings": [ + "EH", + "Taneẓroft Tutrimt" + ], + "languages": { + "ber": "Berber", + "mey": "Hassaniya", + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Demokratische Arabische Republik Sahara", + "common": "Westsahara" + }, + "fra": { + "official": "République arabe sahraouie démocratique", + "common": "Sahara Occidental" + }, + "hrv": { + "official": "Sahrawi Arab Demokratska Republika", + "common": "Zapadna Sahara" + }, + "ita": { + "official": "Repubblica Araba Saharawi Democratica", + "common": "Sahara Occidentale" + }, + "jpn": { + "official": "サハラアラブ民主共和国", + "common": "西サハラ" + }, + "nld": { + "official": "Sahrawi Arabische Democratische Republiek", + "common": "Westelijke Sahara" + }, + "por": { + "official": "República Árabe Saharaui Democrática", + "common": "Saara Ocidental" + }, + "rus": { + "official": "Sahrawi Арабская Демократическая Республика", + "common": "Западная Сахара" + }, + "spa": { + "official": "República Árabe Saharaui Democrática", + "common": "Sahara Occidental" + }, + "fin": { + "official": "Länsi-Sahara", + "common": "Länsi-Sahara" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "24 30 N", + "latitude_dec": "25", + "longitude": "13 00 W", + "longitude_dec": "-13", + "max_latitude": "27.666667", + "max_longitude": "-8.666667", + "min_latitude": "20.8", + "min_longitude": "-17.110556", + "area": 266000, + "region": "Africa", + "subregion": "Northern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "015", + "landlocked": false, + "borders": [ + "DZA", + "MRT", + "MAR" + ], + "independent": "In contention" + }, + "dialling": { + "calling_code": [ + "212" + ], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 2461445, + "edgar": "U5", + "itu": "AOE", + "marc": "ss", + "wmo": 0, + "ds": 0, + "fifa": "SAH", + "fips": "WI", + "gaul": 268, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "ES": { + "name": { + "common": "Spain", + "official": "Kingdom of Spain", + "native": { + "cat": { + "official": "Regne d'Espanya", + "common": "Espanya" + }, + "eus": { + "official": "Espainiako Erresuma", + "common": "Espainia" + }, + "glg": { + "official": "Reino de España", + "common": "" + }, + "oci": { + "official": "Reialme d'Espanha", + "common": "Espanha" + }, + "spa": { + "official": "Reino de España", + "common": "España" + } + } + }, + "demonym": "Spanish", + "capital": "Madrid", + "iso_3166_1_alpha2": "ES", + "iso_3166_1_alpha3": "ESP", + "iso_3166_1_numeric": "724", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".es" + ], + "alt_spellings": [ + "ES", + "Kingdom of Spain", + "Reino de España" + ], + "languages": { + "cat": "Catalan", + "eus": "Basque", + "glg": "Galician", + "oci": "Occitan", + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Königreich Spanien", + "common": "Spanien" + }, + "fra": { + "official": "Royaume d'Espagne", + "common": "Espagne" + }, + "hrv": { + "official": "Kraljevina Španjolska", + "common": "Španjolska" + }, + "ita": { + "official": "Regno di Spagna", + "common": "Spagna" + }, + "jpn": { + "official": "スペイン王国", + "common": "スペイン" + }, + "nld": { + "official": "Koninkrijk Spanje", + "common": "Spanje" + }, + "por": { + "official": "Reino de Espanha", + "common": "Espanha" + }, + "rus": { + "official": "Королевство Испания", + "common": "Испания" + }, + "spa": { + "official": "Reino de España", + "common": "España" + }, + "fin": { + "official": "Espanjan kuningaskunta", + "common": "Espanja" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "40 00 N", + "latitude_dec": "40.396026611328125", + "longitude": "4 00 W", + "longitude_dec": "-3.550692558288574", + "max_latitude": "43.916667", + "max_longitude": "4.333333", + "min_latitude": "27.633333", + "min_longitude": "-18.166667", + "area": 505992, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [ + "AND", + "FRA", + "GIB", + "PRT", + "MAR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "34" + ], + "national_prefix": null, + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2510769, + "edgar": "U3", + "itu": "E", + "marc": "sp", + "wmo": "SP", + "ds": "E", + "fifa": "ESP", + "fips": "SP", + "gaul": 229, + "ioc": "ESP", + "cowc": "SPN", + "cown": 230, + "fao": 203, + "imf": 184, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{region}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 21, + "reduced": [ + 10 + ], + "super_reduced": 4, + "parking": null + } + } + }, + "EE": { + "name": { + "common": "Estonia", + "official": "Republic of Estonia", + "native": { + "est": { + "official": "Eesti Vabariik", + "common": "Eesti" + } + } + }, + "demonym": "Estonian", + "capital": "Tallinn", + "iso_3166_1_alpha2": "EE", + "iso_3166_1_alpha3": "EST", + "iso_3166_1_numeric": "233", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ee" + ], + "alt_spellings": [ + "EE", + "Eesti", + "Republic of Estonia", + "Eesti Vabariik" + ], + "languages": { + "est": "Estonian" + }, + "translations": { + "cym": { + "official": "Republic of Estonia", + "common": "Estonia" + }, + "deu": { + "official": "Republik Estland", + "common": "Estland" + }, + "fra": { + "official": "République d'Estonie", + "common": "Estonie" + }, + "hrv": { + "official": "Republika Estonija", + "common": "Estonija" + }, + "ita": { + "official": "Repubblica di Estonia", + "common": "Estonia" + }, + "jpn": { + "official": "エストニア共和国", + "common": "エストニア" + }, + "nld": { + "official": "Republiek Estland", + "common": "Estland" + }, + "por": { + "official": "República da Estónia", + "common": "Estónia" + }, + "rus": { + "official": "Эстонская Республика", + "common": "Эстония" + }, + "spa": { + "official": "República de Estonia", + "common": "Estonia" + }, + "fin": { + "official": "Viron tasavalta", + "common": "Viro" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "59 00 N", + "latitude_dec": "58.69374465942383", + "longitude": "26 00 E", + "longitude_dec": "25.24162483215332", + "max_latitude": "59.983333", + "max_longitude": "28.883333", + "min_latitude": "57.521389", + "min_longitude": "21.795833", + "area": 45227, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [ + "LVA", + "RUS" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "372" + ], + "national_prefix": null, + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 453733, + "edgar": "1H", + "itu": "EST", + "marc": "er", + "wmo": "EO", + "ds": "EST", + "fifa": "EST", + "fips": "EN", + "gaul": 78, + "ioc": "EST", + "cowc": "EST", + "cown": 366, + "fao": 63, + "imf": 939, + "ar5": "EIT", + "address_format": null, + "eu_member": true, + "vat_rates": { + "standard": 20, + "reduced": [ + 9 + ], + "super_reduced": null, + "parking": null + } + } + }, + "ET": { + "name": { + "common": "Ethiopia", + "official": "Federal Democratic Republic of Ethiopia", + "native": { + "amh": { + "official": "የኢትዮጵያ ፌዴራላዊ ዲሞክራሲያዊ ሪፐብሊክ", + "common": "ኢትዮጵያ" + } + } + }, + "demonym": "Ethiopian", + "capital": "Addis Ababa", + "iso_3166_1_alpha2": "ET", + "iso_3166_1_alpha3": "ETH", + "iso_3166_1_numeric": "231", + "currency": { + "ETB": { + "iso_4217_code": "ETB", + "iso_4217_numeric": 230, + "iso_4217_name": "Ethiopian Birr", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".et" + ], + "alt_spellings": [ + "ET", + "ʾĪtyōṗṗyā", + "Federal Democratic Republic of Ethiopia", + "የኢትዮጵያ ፌዴራላዊ ዲሞክራሲያዊ ሪፐብሊክ" + ], + "languages": { + "amh": "Amharic" + }, + "translations": { + "cym": { + "official": "Federal Democratic Republic of Ethiopia", + "common": "Ethiopia" + }, + "deu": { + "official": "Demokratische Bundesrepublik Äthiopien", + "common": "Äthiopien" + }, + "fra": { + "official": "République fédérale démocratique d'Éthiopie", + "common": "Éthiopie" + }, + "hrv": { + "official": "Savezna Demokratska Republika Etiopija", + "common": "Etiopija" + }, + "ita": { + "official": "Repubblica federale democratica di Etiopia", + "common": "Etiopia" + }, + "jpn": { + "official": "エチオピア連邦民主共和国", + "common": "エチオピア" + }, + "nld": { + "official": "Federale Democratische Republiek Ethiopië", + "common": "Ethiopië" + }, + "por": { + "official": "República Federal Democrática da Etiópia", + "common": "Etiópia" + }, + "rus": { + "official": "Федеративная Демократическая Республика Эфиопия", + "common": "Эфиопия" + }, + "spa": { + "official": "República Democrática Federal de Etiopía", + "common": "Etiopía" + }, + "fin": { + "official": "Etiopian demokraattinen liittotasavalta", + "common": "Etiopia" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "8 00 N", + "latitude_dec": "8.626703262329102", + "longitude": "38 00 E", + "longitude_dec": "39.63755416870117", + "max_latitude": "14.698889", + "max_longitude": "47.45", + "min_latitude": "3.433333", + "min_longitude": "33.033333", + "area": 1104300, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": true, + "borders": [ + "DJI", + "ERI", + "KEN", + "SOM", + "SSD", + "SDN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "251" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 337996, + "edgar": "H5", + "itu": "ETH", + "marc": "et", + "wmo": "ET", + "ds": "ETH", + "fifa": "ETH", + "fips": "ET", + "gaul": 79, + "ioc": "ETH", + "cowc": "ETH", + "cown": 530, + "fao": 238, + "imf": 644, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "FI": { + "name": { + "common": "Finland", + "official": "Republic of Finland", + "native": { + "fin": { + "official": "Suomen tasavalta", + "common": "Suomi" + }, + "swe": { + "official": "Republiken Finland", + "common": "Finland" + } + } + }, + "demonym": "Finnish", + "capital": "Helsinki", + "iso_3166_1_alpha2": "FI", + "iso_3166_1_alpha3": "FIN", + "iso_3166_1_numeric": "246", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".fi" + ], + "alt_spellings": [ + "FI", + "Suomi", + "Republic of Finland", + "Suomen tasavalta", + "Republiken Finland" + ], + "languages": { + "fin": "Finnish", + "swe": "Swedish" + }, + "translations": { + "deu": { + "official": "Republik Finnland", + "common": "Finnland" + }, + "fra": { + "official": "République de Finlande", + "common": "Finlande" + }, + "hrv": { + "official": "Republika Finska", + "common": "Finska" + }, + "ita": { + "official": "Repubblica di Finlandia", + "common": "Finlandia" + }, + "jpn": { + "official": "フィンランド共和国", + "common": "フィンランド" + }, + "nld": { + "official": "Republiek Finland", + "common": "Finland" + }, + "por": { + "official": "República da Finlândia", + "common": "Finlândia" + }, + "rus": { + "official": "Финляндская Республика", + "common": "Финляндия" + }, + "spa": { + "official": "República de Finlandia", + "common": "Finlandia" + }, + "fin": { + "official": "Suomen tasavalta", + "common": "Suomi" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "64 00 N", + "latitude_dec": "64.28858184814453", + "longitude": "26 00 E", + "longitude_dec": "25.989402770996094", + "max_latitude": "70.083333", + "max_longitude": "32", + "min_latitude": "58.83", + "min_longitude": "18", + "area": 338424, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [ + "NOR", + "SWE", + "RUS" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "358" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 660013, + "edgar": "H9", + "itu": "FIN", + "marc": "fi", + "wmo": "FI", + "ds": "FIN", + "fifa": "FIN", + "fips": "FI", + "gaul": 84, + "ioc": "FIN", + "cowc": "FIN", + "cown": 375, + "fao": 67, + "imf": 172, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 24, + "reduced": [ + 10, + 14 + ], + "super_reduced": null, + "parking": null + } + } + }, + "FJ": { + "name": { + "common": "Fiji", + "official": "Republic of Fiji", + "native": { + "eng": { + "official": "Republic of Fiji", + "common": "Fiji" + }, + "fij": { + "official": "Matanitu Tugalala o Viti", + "common": "Viti" + }, + "hif": { + "official": "रिपब्लिक ऑफ फीजी", + "common": "फिजी" + } + } + }, + "demonym": "Fijian", + "capital": "Suva", + "iso_3166_1_alpha2": "FJ", + "iso_3166_1_alpha3": "FJI", + "iso_3166_1_numeric": "242", + "currency": { + "FJD": { + "iso_4217_code": "FJD", + "iso_4217_numeric": 242, + "iso_4217_name": "Fiji Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".fj" + ], + "alt_spellings": [ + "FJ", + "Viti", + "Republic of Fiji", + "Matanitu ko Viti", + "Fijī Gaṇarājya" + ], + "languages": { + "eng": "English", + "fij": "Fijian", + "hif": "Fiji Hindi" + }, + "translations": { + "deu": { + "official": "Republik Fidschi", + "common": "Fidschi" + }, + "fra": { + "official": "République des Fidji", + "common": "Fidji" + }, + "hrv": { + "official": "Republika Fidži", + "common": "Fiđi" + }, + "ita": { + "official": "Repubblica di Figi", + "common": "Figi" + }, + "jpn": { + "official": "フィジー共和国", + "common": "フィジー" + }, + "nld": { + "official": "Republiek Fiji", + "common": "Fiji" + }, + "por": { + "official": "República de Fiji", + "common": "Fiji" + }, + "rus": { + "official": "Республика Фиджи", + "common": "Фиджи" + }, + "spa": { + "official": "República de Fiji", + "common": "Fiyi" + }, + "fin": { + "official": "Fidžin tasavalta", + "common": "Fidži" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "18 00 S", + "latitude_dec": "-17.658161163330078", + "longitude": "175 00 E", + "longitude_dec": "178.1472625732422", + "max_latitude": "-12.466667", + "max_longitude": "-179.983333", + "min_latitude": "-21.016667", + "min_longitude": "180", + "area": 18272, + "region": "Oceania", + "subregion": "Melanesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "054", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "679" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2205218, + "edgar": "H8", + "itu": "FJI", + "marc": "fj", + "wmo": "FJ", + "ds": "FJI", + "fifa": "FIJ", + "fips": "FJ", + "gaul": 83, + "ioc": "FIJ", + "cowc": "FIJ", + "cown": 950, + "fao": 66, + "imf": 819, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "FK": { + "name": { + "common": "Falkland Islands", + "official": "Falkland Islands", + "native": { + "eng": { + "official": "Falkland Islands", + "common": "Falkland Islands" + } + } + }, + "demonym": "Falkland Islander", + "capital": "Stanley", + "iso_3166_1_alpha2": "FK", + "iso_3166_1_alpha3": "FLK", + "iso_3166_1_numeric": "238", + "currency": { + "FKP": { + "iso_4217_code": "FKP", + "iso_4217_numeric": 238, + "iso_4217_name": "Falkland Islands Pound", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".fk" + ], + "alt_spellings": [ + "FK", + "Islas Malvinas", + "Falkland Islands (Malvinas)" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Falkland-Inseln", + "common": "Falklandinseln" + }, + "fra": { + "official": "Îles Malouines", + "common": "Îles Malouines" + }, + "hrv": { + "official": "Falklandski otoci", + "common": "Falklandski Otoci" + }, + "ita": { + "official": "Isole Falkland", + "common": "Isole Falkland o Isole Malvine" + }, + "jpn": { + "official": "フォークランド", + "common": "フォークランド(マルビナス)諸島" + }, + "nld": { + "official": "Falkland eilanden", + "common": "Falklandeilanden" + }, + "por": { + "official": "Ilhas Malvinas", + "common": "Ilhas Malvinas" + }, + "rus": { + "official": "Фолклендские острова", + "common": "Фолклендские острова" + }, + "spa": { + "official": "islas Malvinas", + "common": "Islas Malvinas" + }, + "fin": { + "official": "Falkandinsaaret", + "common": "Falkandinsaaret" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "51 45 S", + "latitude_dec": "-51.77312469482422", + "longitude": "59 00 W", + "longitude_dec": "-59.727909088134766", + "max_latitude": "-50.966667", + "max_longitude": "-57.666667", + "min_latitude": "-52.966667", + "min_longitude": "-61.433333", + "area": 12173, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "500" + ], + "national_prefix": null, + "national_number_lengths": [ + 5 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3474414, + "edgar": "H7", + "itu": "FLK", + "marc": "fk", + "wmo": "FK", + "ds": 0, + "fifa": "FLK", + "fips": "FK", + "gaul": 81, + "ioc": "FLK", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 323, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "FR": { + "name": { + "common": "France", + "official": "French Republic", + "native": { + "fra": { + "official": "République française", + "common": "France" + } + } + }, + "demonym": "French", + "capital": "Paris", + "iso_3166_1_alpha2": "FR", + "iso_3166_1_alpha3": "FRA", + "iso_3166_1_numeric": "250", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".fr" + ], + "alt_spellings": [ + "FR", + "French Republic", + "République française" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Französische Republik", + "common": "Frankreich" + }, + "fra": { + "official": "République française", + "common": "France" + }, + "hrv": { + "official": "Francuska Republika", + "common": "Francuska" + }, + "ita": { + "official": "Repubblica francese", + "common": "Francia" + }, + "jpn": { + "official": "フランス共和国", + "common": "フランス" + }, + "nld": { + "official": "Franse Republiek", + "common": "Frankrijk" + }, + "por": { + "official": "República Francesa", + "common": "França" + }, + "rus": { + "official": "Французская Республика", + "common": "Франция" + }, + "spa": { + "official": "República francés", + "common": "Francia" + }, + "fin": { + "official": "Ranskan tasavalta", + "common": "Ranska" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "46 00 N", + "latitude_dec": "46.63727951049805", + "longitude": "2 00 E", + "longitude_dec": "2.3382623195648193", + "max_latitude": "51.09", + "max_longitude": "9.56", + "min_latitude": "41.34", + "min_longitude": "-5.14", + "area": 551695, + "region": "Europe", + "subregion": "Western Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "155", + "landlocked": false, + "borders": [ + "AND", + "BEL", + "DEU", + "ITA", + "LUX", + "MCO", + "ESP", + "CHE" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "33" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9, + 10 + ], + "national_destination_code_lengths": [ + 1 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3017382, + "edgar": "I0", + "itu": "F", + "marc": "fr", + "wmo": "FR", + "ds": "F", + "fifa": "FRA", + "fips": "FR", + "gaul": 85, + "ioc": "FRA", + "cowc": "FRN", + "cown": 220, + "fao": 68, + "imf": 132, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 20, + "reduced": [ + 5.5, + 10 + ], + "super_reduced": 2.1, + "parking": null + } + } + }, + "FO": { + "name": { + "common": "Faroe Islands", + "official": "Faroe Islands", + "native": { + "dan": { + "official": "Færøerne", + "common": "Færøerne" + }, + "fao": { + "official": "Føroyar", + "common": "Føroyar" + } + } + }, + "demonym": "Faroese", + "capital": "Tórshavn", + "iso_3166_1_alpha2": "FO", + "iso_3166_1_alpha3": "FRO", + "iso_3166_1_numeric": "234", + "currency": { + "DKK": { + "iso_4217_code": "DKK", + "iso_4217_numeric": 208, + "iso_4217_name": "Danish Krone", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".fo" + ], + "alt_spellings": [ + "FO", + "Føroyar", + "Færøerne" + ], + "languages": { + "dan": "Danish", + "fao": "Faroese" + }, + "translations": { + "deu": { + "official": "Färöer", + "common": "Färöer-Inseln" + }, + "fra": { + "official": "Îles Féroé", + "common": "Îles Féroé" + }, + "hrv": { + "official": "Farski Otoci", + "common": "Farski Otoci" + }, + "ita": { + "official": "Isole Faroe", + "common": "Isole Far Oer" + }, + "jpn": { + "official": "フェロー諸島", + "common": "フェロー諸島" + }, + "nld": { + "official": "Faeröer", + "common": "Faeröer" + }, + "por": { + "official": "Ilhas Faroe", + "common": "Ilhas Faroé" + }, + "rus": { + "official": "Фарерские острова", + "common": "Фарерские острова" + }, + "spa": { + "official": "Islas Feroe", + "common": "Islas Faroe" + }, + "fin": { + "official": "Färsaaret", + "common": "Färsaaret" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "62 00 N", + "latitude_dec": "62.009559631347656", + "longitude": "7 00 W", + "longitude_dec": "-6.818255424499512", + "max_latitude": "62.4", + "max_longitude": "-6.25", + "min_latitude": "61.333333", + "min_longitude": "-7.8", + "area": 1393, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [], + "independent": "Part of DK" + }, + "dialling": { + "calling_code": [ + "298" + ], + "national_prefix": null, + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2622320, + "edgar": 0, + "itu": "FRO", + "marc": "fa", + "wmo": "FA", + "ds": "FO", + "fifa": "FRO", + "fips": "FO", + "gaul": 82, + "ioc": "FAR", + "cowc": 0, + "cown": 0, + "fao": 64, + "imf": 816, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "FM": { + "name": { + "common": "Micronesia", + "official": "Federated States of Micronesia", + "native": { + "eng": { + "official": "Federated States of Micronesia", + "common": "Micronesia" + } + } + }, + "demonym": "Micronesian", + "capital": "Palikir", + "iso_3166_1_alpha2": "FM", + "iso_3166_1_alpha3": "FSM", + "iso_3166_1_numeric": "583", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".fm" + ], + "alt_spellings": [ + "FM", + "Federated States of Micronesia", + "Micronesia, Federated States of" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Föderierte Staaten von Mikronesien", + "common": "Mikronesien" + }, + "fra": { + "official": "États fédérés de Micronésie", + "common": "Micronésie" + }, + "hrv": { + "official": "Savezne Države Mikronezije", + "common": "Mikronezija" + }, + "ita": { + "official": "Stati federati di Micronesia", + "common": "Micronesia" + }, + "jpn": { + "official": "ミクロネシア連邦", + "common": "ミクロネシア連邦" + }, + "nld": { + "official": "Federale Staten van Micronesia", + "common": "Micronesië" + }, + "por": { + "official": "Estados Federados da Micronésia", + "common": "Micronésia" + }, + "rus": { + "official": "Федеративные Штаты Микронезии", + "common": "Федеративные Штаты Микронезии" + }, + "spa": { + "official": "Estados Federados de Micronesia", + "common": "Micronesia" + }, + "fin": { + "official": "Mikronesian liittovaltio", + "common": "Mikronesia" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "6 55 N", + "latitude_dec": "6.869349002838135", + "longitude": "158 15 E", + "longitude_dec": "158.187255859375", + "max_latitude": "10.093611", + "max_longitude": "163.034444", + "min_latitude": "1.026389", + "min_longitude": "137.425", + "area": 702, + "region": "Oceania", + "subregion": "Micronesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "057", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "691" + ], + "national_prefix": "1", + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 2081918, + "edgar": 0, + "itu": "FSM", + "marc": "fm", + "wmo": 0, + "ds": 0, + "fifa": "FSM", + "fips": "FM", + "gaul": 163, + "ioc": "FSM", + "cowc": "FSM", + "cown": 987, + "fao": 145, + "imf": 868, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GA": { + "name": { + "common": "Gabon", + "official": "Gabonese Republic", + "native": { + "fra": { + "official": "République gabonaise", + "common": "Gabon" + } + } + }, + "demonym": "Gabonese", + "capital": "Libreville", + "iso_3166_1_alpha2": "GA", + "iso_3166_1_alpha3": "GAB", + "iso_3166_1_numeric": "266", + "currency": { + "XAF": { + "iso_4217_code": "XAF", + "iso_4217_numeric": 950, + "iso_4217_name": "CFA Franc BEAC", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".ga" + ], + "alt_spellings": [ + "GA", + "Gabonese Republic", + "République Gabonaise" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Gabunische Republik", + "common": "Gabun" + }, + "fra": { + "official": "République gabonaise", + "common": "Gabon" + }, + "hrv": { + "official": "Gabon Republika", + "common": "Gabon" + }, + "ita": { + "official": "Repubblica gabonese", + "common": "Gabon" + }, + "jpn": { + "official": "ガボン共和国", + "common": "ガボン" + }, + "nld": { + "official": "Republiek Gabon", + "common": "Gabon" + }, + "por": { + "official": "República do Gabão", + "common": "Gabão" + }, + "rus": { + "official": "Габона Республика", + "common": "Габон" + }, + "spa": { + "official": "República de Gabón", + "common": "Gabón" + }, + "fin": { + "official": "Gabonin tasavalta", + "common": "Gabon" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "1 00 S", + "latitude_dec": "-0.6345400810241699", + "longitude": "11 45 E", + "longitude_dec": "11.738608360290527", + "max_latitude": "2.283333", + "max_longitude": "14.483333", + "min_latitude": "-3.9", + "min_longitude": "8.7", + "area": 267668, + "region": "Africa", + "subregion": "Middle Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "017", + "landlocked": false, + "borders": [ + "CMR", + "COG", + "GNQ" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "241" + ], + "national_prefix": null, + "national_number_lengths": [ + 6, + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2400553, + "edgar": "I5", + "itu": "GAB", + "marc": "go", + "wmo": "GO", + "ds": "G", + "fifa": "GAB", + "fips": "GB", + "gaul": 89, + "ioc": "GAB", + "cowc": "GAB", + "cown": 481, + "fao": 74, + "imf": 646, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GB": { + "name": { + "common": "United Kingdom", + "official": "United Kingdom of Great Britain and Northern Ireland", + "native": { + "eng": { + "official": "United Kingdom of Great Britain and Northern Ireland", + "common": "United Kingdom" + } + } + }, + "demonym": "British", + "capital": "London", + "iso_3166_1_alpha2": "GB", + "iso_3166_1_alpha3": "GBR", + "iso_3166_1_numeric": "826", + "currency": { + "GBP": { + "iso_4217_code": "GBP", + "iso_4217_numeric": 826, + "iso_4217_name": "Pound sterling", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".uk" + ], + "alt_spellings": [ + "GB", + "UK", + "Great Britain" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Vereinigtes Königreich Großbritannien und Nordirland", + "common": "Vereinigtes Königreich" + }, + "fra": { + "official": "Royaume-Uni de Grande-Bretagne et d'Irlande du Nord", + "common": "Royaume-Uni" + }, + "hrv": { + "official": "Ujedinjeno Kraljevstvo Velike Britanije i Sjeverne Irske", + "common": "Ujedinjeno Kraljevstvo" + }, + "ita": { + "official": "Regno Unito di Gran Bretagna e Irlanda del Nord", + "common": "Regno Unito" + }, + "jpn": { + "official": "グレート·ブリテンおよび北アイルランド連合王国", + "common": "イギリス" + }, + "nld": { + "official": "Verenigd Koninkrijk van Groot-Brittannië en Noord-Ierland", + "common": "Verenigd Koninkrijk" + }, + "por": { + "official": "Reino Unido da Grã-Bretanha e Irlanda do Norte", + "common": "Reino Unido" + }, + "rus": { + "official": "Соединенное Королевство Великобритании и Северной Ирландии", + "common": "Великобритания" + }, + "spa": { + "official": "Reino Unido de Gran Bretaña e Irlanda del Norte", + "common": "Reino Unido" + }, + "fin": { + "official": "Ison-Britannian ja Pohjois-Irlannin yhdistynyt kuningaskunta", + "common": "Yhdistynyt kuningaskunta" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "54 00 N", + "latitude_dec": "54.56088638305664", + "longitude": "2 00 W", + "longitude_dec": "-2.2125117778778076", + "max_latitude": "61.5", + "max_longitude": "2.866667", + "min_latitude": "49.866667", + "min_longitude": "-13.65", + "area": 242900, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [ + "IRL" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "44" + ], + "national_prefix": "0", + "national_number_lengths": [ + 10, + 11 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2635167, + "edgar": 0, + "itu": "G", + "marc": "xxk", + "wmo": "UK", + "ds": "GB", + "fifa": "ENG,NIR,SCO,WAL", + "fips": "UK", + "gaul": 256, + "ioc": "GBR", + "cowc": "UKG", + "cown": 200, + "fao": 229, + "imf": 112, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{city}}\n{{region}}\n{{postalcode}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 20, + "reduced": [ + 5 + ], + "super_reduced": null, + "parking": null + } + } + }, + "GE": { + "name": { + "common": "Georgia", + "official": "Georgia", + "native": { + "kat": { + "official": "საქართველო", + "common": "საქართველო" + } + } + }, + "demonym": "Georgian", + "capital": "Tbilisi", + "iso_3166_1_alpha2": "GE", + "iso_3166_1_alpha3": "GEO", + "iso_3166_1_numeric": "268", + "currency": { + "GEL": { + "iso_4217_code": "GEL", + "iso_4217_numeric": 981, + "iso_4217_name": "Lari", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ge" + ], + "alt_spellings": [ + "GE", + "Sakartvelo" + ], + "languages": { + "kat": "Georgian" + }, + "translations": { + "deu": { + "official": "Georgia", + "common": "Georgien" + }, + "fra": { + "official": "République de Géorgie", + "common": "Géorgie" + }, + "hrv": { + "official": "Gruzija", + "common": "Gruzija" + }, + "ita": { + "official": "Georgia", + "common": "Georgia" + }, + "jpn": { + "official": "グルジア", + "common": "グルジア" + }, + "nld": { + "official": "Georgia", + "common": "Georgië" + }, + "por": { + "official": "Georgia", + "common": "Geórgia" + }, + "rus": { + "official": "Грузия", + "common": "Грузия" + }, + "spa": { + "official": "Georgia", + "common": "Georgia" + }, + "fin": { + "official": "Georgia", + "common": "Georgia" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "42 00 N", + "latitude_dec": "42.3207845", + "longitude": "43 30 E", + "longitude_dec": "43.3713615", + "max_latitude": "43.570556", + "max_longitude": "46.635556", + "min_latitude": "41.15", + "min_longitude": "40.013056", + "area": 69700, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "ARM", + "AZE", + "RUS", + "TUR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "995" + ], + "national_prefix": "8*", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "810" + }, + "extra": { + "geonameid": 614540, + "edgar": "2Q", + "itu": "GEO", + "marc": "gs", + "wmo": "GG", + "ds": "GE", + "fifa": "GEO", + "fips": "GG", + "gaul": 92, + "ioc": "GEO", + "cowc": "GRG", + "cown": 372, + "fao": 73, + "imf": 915, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GG": { + "name": { + "common": "Guernsey", + "official": "Bailiwick of Guernsey", + "native": { + "eng": { + "official": "Bailiwick of Guernsey", + "common": "Guernsey" + }, + "fra": { + "official": "Bailliage de Guernesey", + "common": "Guernesey" + }, + "nfr": { + "official": "Dgèrnésiais", + "common": "Dgèrnésiais" + } + } + }, + "demonym": "Channel Islander", + "capital": "St. Peter Port", + "iso_3166_1_alpha2": "GG", + "iso_3166_1_alpha3": "GGY", + "iso_3166_1_numeric": "831", + "currency": { + "GBP": { + "iso_4217_code": "GBP", + "iso_4217_numeric": 826, + "iso_4217_name": "Pound Sterling", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gg" + ], + "alt_spellings": [ + "GG", + "Bailiwick of Guernsey", + "Bailliage de Guernesey" + ], + "languages": { + "eng": "English", + "fra": "French", + "nfr": "Guernésiais" + }, + "translations": { + "deu": { + "official": "Guernsey", + "common": "Guernsey" + }, + "fra": { + "official": "Bailliage de Guernesey", + "common": "Guernesey" + }, + "hrv": { + "official": "Struka Guernsey", + "common": "Guernsey" + }, + "ita": { + "official": "Baliato di Guernsey", + "common": "Guernsey" + }, + "jpn": { + "official": "ガーンジーの得意分野", + "common": "ガーンジー" + }, + "nld": { + "official": "Baljuwschap Guernsey", + "common": "Guernsey" + }, + "por": { + "official": "Bailiado de Guernsey", + "common": "Guernsey" + }, + "rus": { + "official": "Коронное владение Гернси", + "common": "Гернси" + }, + "spa": { + "official": "Bailía de Guernsey", + "common": "Guernsey" + }, + "fin": { + "official": "Guernsey", + "common": "Guernsey" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "49 28 N", + "latitude_dec": "49.72008514404297", + "longitude": "2 35 W", + "longitude_dec": "-2.1999685764312744", + "max_latitude": "49.733333", + "max_longitude": "-2.158056", + "min_latitude": "49.401111", + "min_longitude": "-2.7", + "area": 78, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [], + "independent": "Crown dependency of GB" + }, + "dialling": { + "calling_code": [ + "44" + ], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 3042362, + "edgar": "Y7", + "itu": 0, + "marc": "uik", + "wmo": 0, + "ds": "GBG", + "fifa": "GBG", + "fips": "GK", + "gaul": 104, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GH": { + "name": { + "common": "Ghana", + "official": "Republic of Ghana", + "native": { + "eng": { + "official": "Republic of Ghana", + "common": "Ghana" + } + } + }, + "demonym": "Ghanaian", + "capital": "Accra", + "iso_3166_1_alpha2": "GH", + "iso_3166_1_alpha3": "GHA", + "iso_3166_1_numeric": "288", + "currency": { + "GHS": { + "iso_4217_code": "GHS", + "iso_4217_numeric": 936, + "iso_4217_name": "Ghana Cedi", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gh" + ], + "alt_spellings": [ + "GH" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Republik Ghana", + "common": "Ghana" + }, + "fra": { + "official": "République du Ghana", + "common": "Ghana" + }, + "hrv": { + "official": "Republika Gana", + "common": "Gana" + }, + "ita": { + "official": "Repubblica del Ghana", + "common": "Ghana" + }, + "jpn": { + "official": "ガーナ共和国", + "common": "ガーナ" + }, + "nld": { + "official": "Republiek Ghana", + "common": "Ghana" + }, + "por": { + "official": "República do Gana", + "common": "Gana" + }, + "rus": { + "official": "Республика Гана", + "common": "Гана" + }, + "spa": { + "official": "República de Ghana", + "common": "Ghana" + }, + "fin": { + "official": "Ghanan tasavalta", + "common": "Ghana" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "8 00 N", + "latitude_dec": "7.921330451965332", + "longitude": "2 00 W", + "longitude_dec": "-1.2043862342834473", + "max_latitude": "11.15", + "max_longitude": "1.192778", + "min_latitude": "4.733333", + "min_longitude": "-4", + "area": 238533, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "BFA", + "CIV", + "TGO" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "233" + ], + "national_prefix": null, + "national_number_lengths": [ + 5, + 6, + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2300660, + "edgar": "J0", + "itu": "GHA", + "marc": "gh", + "wmo": "GH", + "ds": "GH", + "fifa": "GHA", + "fips": "GH", + "gaul": 94, + "ioc": "GHA", + "cowc": "GHA", + "cown": 452, + "fao": 81, + "imf": 652, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GI": { + "name": { + "common": "Gibraltar", + "official": "Gibraltar", + "native": { + "eng": { + "official": "Gibraltar", + "common": "Gibraltar" + } + } + }, + "demonym": "Gibraltar", + "capital": "Gibraltar", + "iso_3166_1_alpha2": "GI", + "iso_3166_1_alpha3": "GIB", + "iso_3166_1_numeric": "292", + "currency": { + "GIP": { + "iso_4217_code": "GIP", + "iso_4217_numeric": 292, + "iso_4217_name": "Gibraltar Pound", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gi" + ], + "alt_spellings": [ + "GI" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "fra": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "hrv": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "ita": { + "official": "Gibilterra", + "common": "Gibilterra" + }, + "jpn": { + "official": "ジブラルタル", + "common": "ジブラルタル" + }, + "nld": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "por": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "rus": { + "official": "Гибралтар", + "common": "Гибралтар" + }, + "spa": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "fin": { + "official": "Gibraltar", + "common": "Gibraltar" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "36 08 N", + "latitude_dec": "36.135841369628906", + "longitude": "5 21 W", + "longitude_dec": "-5.349248886108398", + "max_latitude": "36.15", + "max_longitude": "-5.333333", + "min_latitude": "36.1", + "min_longitude": "-5.35", + "area": 6, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [ + "ESP" + ], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "350" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2411586, + "edgar": "J1", + "itu": "GIB", + "marc": "gi", + "wmo": "GI", + "ds": "GBZ", + "fifa": "GBZ", + "fips": "GI", + "gaul": 95, + "ioc": "GIB", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 823, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GN": { + "name": { + "common": "Guinea", + "official": "Republic of Guinea", + "native": { + "fra": { + "official": "République de Guinée", + "common": "Guinée" + } + } + }, + "demonym": "Guinean", + "capital": "Conakry", + "iso_3166_1_alpha2": "GN", + "iso_3166_1_alpha3": "GIN", + "iso_3166_1_numeric": "324", + "currency": { + "GNF": { + "iso_4217_code": "GNF", + "iso_4217_numeric": 324, + "iso_4217_name": "Guinea Franc", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".gn" + ], + "alt_spellings": [ + "GN", + "Republic of Guinea", + "République de Guinée" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Republik Guinea", + "common": "Guinea" + }, + "fra": { + "official": "République de Guinée", + "common": "Guinée" + }, + "hrv": { + "official": "Republika Gvineja", + "common": "Gvineja" + }, + "ita": { + "official": "Repubblica di Guinea", + "common": "Guinea" + }, + "jpn": { + "official": "ギニア共和国", + "common": "ギニア" + }, + "nld": { + "official": "Republiek Guinee", + "common": "Guinee" + }, + "por": { + "official": "República da Guiné", + "common": "Guiné" + }, + "rus": { + "official": "Республика Гвинея", + "common": "Гвинея" + }, + "spa": { + "official": "República de Guinea", + "common": "Guinea" + }, + "fin": { + "official": "Guinean tasavalta", + "common": "Guinea" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "11 00 N", + "latitude_dec": "10.429302215576172", + "longitude": "10 00 W", + "longitude_dec": "-10.98954963684082", + "max_latitude": "12.633333", + "max_longitude": "-4", + "min_latitude": "7", + "min_longitude": "-15.366667", + "area": 245857, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "CIV", + "GNB", + "LBR", + "MLI", + "SEN", + "SLE" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "224" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2420477, + "edgar": "J9", + "itu": "GUI", + "marc": "gv", + "wmo": "GN", + "ds": "RG", + "fifa": "GUI", + "fips": "GV", + "gaul": 106, + "ioc": "GUI", + "cowc": "GUI", + "cown": 438, + "fao": 90, + "imf": 656, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GP": { + "name": { + "common": "Guadeloupe", + "official": "Guadeloupe", + "native": { + "fra": { + "official": "Guadeloupe", + "common": "Guadeloupe" + } + } + }, + "demonym": "Guadeloupian", + "capital": "Basse-Terre", + "iso_3166_1_alpha2": "GP", + "iso_3166_1_alpha3": "GLP", + "iso_3166_1_numeric": "312", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gp" + ], + "alt_spellings": [ + "GP", + "Gwadloup" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Guadeloupe", + "common": "Guadeloupe" + }, + "fra": { + "official": "Guadeloupe", + "common": "Guadeloupe" + }, + "hrv": { + "official": "Gvadalupa", + "common": "Gvadalupa" + }, + "ita": { + "official": "Guadeloupe", + "common": "Guadeloupa" + }, + "jpn": { + "official": "グアドループ島", + "common": "グアドループ" + }, + "nld": { + "official": "Guadeloupe", + "common": "Guadeloupe" + }, + "por": { + "official": "Guadalupe", + "common": "Guadalupe" + }, + "rus": { + "official": "Гваделупа", + "common": "Гваделупа" + }, + "spa": { + "official": "Guadalupe", + "common": "Guadalupe" + }, + "fin": { + "official": "Guadeloupen departmentti", + "common": "Guadeloupe" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "16 15 N", + "latitude_dec": "16.256731033325195", + "longitude": "61 35 W", + "longitude_dec": "-61.56741714477539", + "max_latitude": "18.116667", + "max_longitude": "-61", + "min_latitude": "15", + "min_longitude": "-63.15", + "area": 1628, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Part of FR" + }, + "dialling": { + "calling_code": [ + "590" + ], + "national_prefix": null, + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3579143, + "edgar": "J6", + "itu": "GDL", + "marc": "gp", + "wmo": "MF", + "ds": "F", + "fifa": "GLP", + "fips": "GP", + "gaul": 100, + "ioc": "GUD", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 329, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GM": { + "name": { + "common": "Gambia", + "official": "Republic of the Gambia", + "native": { + "eng": { + "official": "Republic of the Gambia", + "common": "Gambia" + } + } + }, + "demonym": "Gambian", + "capital": "Banjul", + "iso_3166_1_alpha2": "GM", + "iso_3166_1_alpha3": "GMB", + "iso_3166_1_numeric": "270", + "currency": { + "GMD": { + "iso_4217_code": "GMD", + "iso_4217_numeric": 270, + "iso_4217_name": "Dalasi", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gm" + ], + "alt_spellings": [ + "GM", + "Republic of the Gambia" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Republik Gambia", + "common": "Gambia" + }, + "fra": { + "official": "République de Gambie", + "common": "Gambie" + }, + "hrv": { + "official": "Republika Gambija", + "common": "Gambija" + }, + "ita": { + "official": "Repubblica del Gambia", + "common": "Gambia" + }, + "jpn": { + "official": "ガンビア共和国", + "common": "ガンビア" + }, + "nld": { + "official": "Republiek Gambia", + "common": "Gambia" + }, + "por": { + "official": "República da Gâmbia", + "common": "Gâmbia" + }, + "rus": { + "official": "Республика Гамбия", + "common": "Гамбия" + }, + "spa": { + "official": "República de Gambia", + "common": "Gambia" + }, + "fin": { + "official": "Gambian tasavalta", + "common": "Gambia" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "13 28 N", + "latitude_dec": "13.440265655517578", + "longitude": "16 34 W", + "longitude_dec": "-15.490884780883789", + "max_latitude": "13.816667", + "max_longitude": "-4", + "min_latitude": "7", + "min_longitude": "-16.816944", + "area": 10689, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "SEN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "220" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2413451, + "edgar": "I6", + "itu": "GMB", + "marc": "gm", + "wmo": "GB", + "ds": "WAG", + "fifa": "GAM", + "fips": "GA", + "gaul": 90, + "ioc": "GAM", + "cowc": "GAM", + "cown": 420, + "fao": 75, + "imf": 648, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GW": { + "name": { + "common": "Guinea-Bissau", + "official": "Republic of Guinea-Bissau", + "native": { + "por": { + "official": "República da Guiné-Bissau", + "common": "Guiné-Bissau" + } + } + }, + "demonym": "Guinea-Bissauan", + "capital": "Bissau", + "iso_3166_1_alpha2": "GW", + "iso_3166_1_alpha3": "GNB", + "iso_3166_1_numeric": "624", + "currency": { + "XOF": { + "iso_4217_code": "XOF", + "iso_4217_numeric": 952, + "iso_4217_name": "CFA Franc BCEAO", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".gw" + ], + "alt_spellings": [ + "GW", + "Republic of Guinea-Bissau", + "República da Guiné-Bissau" + ], + "languages": { + "por": "Portuguese" + }, + "translations": { + "deu": { + "official": "Republik Guinea-Bissau", + "common": "Guinea-Bissau" + }, + "fra": { + "official": "République de Guinée-Bissau", + "common": "Guinée-Bissau" + }, + "hrv": { + "official": "Republika Gvineja Bisau", + "common": "Gvineja Bisau" + }, + "ita": { + "official": "Repubblica di Guinea-Bissau", + "common": "Guinea-Bissau" + }, + "jpn": { + "official": "ギニアビサウ共和国", + "common": "ギニアビサウ" + }, + "nld": { + "official": "Republiek Guinee-Bissau", + "common": "Guinee-Bissau" + }, + "por": { + "official": "República da Guiné-Bissau", + "common": "Guiné-Bissau" + }, + "rus": { + "official": "Республика Гвинея -Бисау", + "common": "Гвинея-Бисау" + }, + "spa": { + "official": "República de Guinea-Bissau", + "common": "Guinea-Bisáu" + }, + "fin": { + "official": "Guinea-Bissaun tasavalta", + "common": "Guinea-Bissau" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "12 00 N", + "latitude_dec": "12.115862846374512", + "longitude": "15 00 W", + "longitude_dec": "-14.748136520385742", + "max_latitude": "12.683333", + "max_longitude": "-4", + "min_latitude": "5", + "min_longitude": "-16.651944", + "area": 36125, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "GIN", + "SEN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "245" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2372248, + "edgar": "S0", + "itu": "GNB", + "marc": "pg", + "wmo": "GW", + "ds": 0, + "fifa": "GNB", + "fips": "PU", + "gaul": 105, + "ioc": "GBS", + "cowc": "GNB", + "cown": 404, + "fao": 175, + "imf": 654, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GQ": { + "name": { + "common": "Equatorial Guinea", + "official": "Republic of Equatorial Guinea", + "native": { + "fra": { + "official": "République de la Guinée Équatoriale", + "common": "Guinée équatoriale" + }, + "por": { + "official": "República da Guiné Equatorial", + "common": "Guiné Equatorial" + }, + "spa": { + "official": "República de Guinea Ecuatorial", + "common": "Guinea Ecuatorial" + } + } + }, + "demonym": "Equatorial Guinean", + "capital": "Malabo", + "iso_3166_1_alpha2": "GQ", + "iso_3166_1_alpha3": "GNQ", + "iso_3166_1_numeric": "226", + "currency": { + "XAF": { + "iso_4217_code": "XAF", + "iso_4217_numeric": 950, + "iso_4217_name": "CFA Franc BEAC", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".gq" + ], + "alt_spellings": [ + "GQ", + "Republic of Equatorial Guinea", + "República de Guinea Ecuatorial", + "République de Guinée équatoriale", + "República da Guiné Equatorial" + ], + "languages": { + "fra": "French", + "por": "Portuguese", + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Republic of Equatorial Guinea", + "common": "Gini Gyhydeddol" + }, + "deu": { + "official": "Republik Äquatorialguinea", + "common": "Äquatorialguinea" + }, + "fra": { + "official": "République de Guinée équatoriale", + "common": "Guinée équatoriale" + }, + "hrv": { + "official": "Republika Ekvatorska Gvineja", + "common": "Ekvatorijalna Gvineja" + }, + "ita": { + "official": "Repubblica della Guinea Equatoriale", + "common": "Guinea Equatoriale" + }, + "jpn": { + "official": "赤道ギニア共和国", + "common": "赤道ギニア" + }, + "nld": { + "official": "Republiek Equatoriaal-Guinea", + "common": "Equatoriaal-Guinea" + }, + "por": { + "official": "República da Guiné Equatorial", + "common": "Guiné Equatorial" + }, + "rus": { + "official": "Республика Экваториальная Гвинея", + "common": "Экваториальная Гвинея" + }, + "spa": { + "official": "República de Guinea Ecuatorial", + "common": "Guinea Ecuatorial" + }, + "fin": { + "official": "Päiväntasaajan Guinean tasavalta", + "common": "Päiväntasaajan Guinea" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "2 00 N", + "latitude_dec": "1.5331259965896606", + "longitude": "10 00 E", + "longitude_dec": "10.372581481933594", + "max_latitude": "3.783333", + "max_longitude": "11.4", + "min_latitude": "-1.483333", + "min_longitude": "5.05", + "area": 28051, + "region": "Africa", + "subregion": "Middle Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "017", + "landlocked": false, + "borders": [ + "CMR", + "GAB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "240" + ], + "national_prefix": null, + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2309096, + "edgar": "H4", + "itu": "GNE", + "marc": "eg", + "wmo": "GQ", + "ds": 0, + "fifa": "EQG", + "fips": "EK", + "gaul": 76, + "ioc": "GEQ", + "cowc": "EQG", + "cown": 411, + "fao": 61, + "imf": 642, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GR": { + "name": { + "common": "Greece", + "official": "Hellenic Republic", + "native": { + "ell": { + "official": "Ελληνική Δημοκρατία", + "common": "Ελλάδα" + } + } + }, + "demonym": "Greek", + "capital": "Athens", + "iso_3166_1_alpha2": "GR", + "iso_3166_1_alpha3": "GRC", + "iso_3166_1_numeric": "300", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gr" + ], + "alt_spellings": [ + "GR", + "Elláda", + "Hellenic Republic", + "Ελληνική Δημοκρατία" + ], + "languages": { + "ell": "Greek" + }, + "translations": { + "deu": { + "official": "Hellenische Republik", + "common": "Griechenland" + }, + "fra": { + "official": "République hellénique", + "common": "Grèce" + }, + "hrv": { + "official": "Helenska Republika", + "common": "Grčka" + }, + "ita": { + "official": "Repubblica ellenica", + "common": "Grecia" + }, + "jpn": { + "official": "ギリシャ共和国", + "common": "ギリシャ" + }, + "nld": { + "official": "Helleense Republiek", + "common": "Griekenland" + }, + "por": { + "official": "República Helénica", + "common": "Grécia" + }, + "rus": { + "official": "Греческая Республика", + "common": "Греция" + }, + "spa": { + "official": "República Helénica", + "common": "Grecia" + }, + "fin": { + "official": "Helleenien tasavalta", + "common": "Kreikka" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "39 00 N", + "latitude_dec": "39.68437194824219", + "longitude": "22 00 E", + "longitude_dec": "21.897409439086914", + "max_latitude": "44", + "max_longitude": "29.648056", + "min_latitude": "34.8", + "min_longitude": "19.381667", + "area": 131990, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [ + "ALB", + "BGR", + "TUR", + "MKD" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "30" + ], + "national_prefix": null, + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 390903, + "edgar": "J3", + "itu": "GRC", + "marc": "gr", + "wmo": "GR", + "ds": "GR", + "fifa": "GRE", + "fips": "GR", + "gaul": 97, + "ioc": "GRE", + "cowc": "GRC", + "cown": 350, + "fao": 84, + "imf": 174, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 23, + "reduced": [ + 6.5, + 13 + ], + "super_reduced": null, + "parking": null + } + } + }, + "GD": { + "name": { + "common": "Grenada", + "official": "Grenada", + "native": { + "eng": { + "official": "Grenada", + "common": "Grenada" + } + } + }, + "demonym": "Grenadian", + "capital": "St. George's", + "iso_3166_1_alpha2": "GD", + "iso_3166_1_alpha3": "GRD", + "iso_3166_1_numeric": "308", + "currency": { + "XCD": { + "iso_4217_code": "XCD", + "iso_4217_numeric": 951, + "iso_4217_name": "East Caribbean Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gd" + ], + "alt_spellings": [ + "GD" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Grenada", + "common": "Grenada" + }, + "fra": { + "official": "Grenade", + "common": "Grenade" + }, + "hrv": { + "official": "Grenada", + "common": "Grenada" + }, + "ita": { + "official": "Grenada", + "common": "Grenada" + }, + "jpn": { + "official": "グレナダ", + "common": "グレナダ" + }, + "nld": { + "official": "Grenada", + "common": "Grenada" + }, + "por": { + "official": "Grenada", + "common": "Granada" + }, + "rus": { + "official": "Гренада", + "common": "Гренада" + }, + "spa": { + "official": "Granada", + "common": "Grenada" + }, + "fin": { + "official": "Grenada", + "common": "Grenada" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "12 07 N", + "latitude_dec": "12.178866386413574", + "longitude": "61 40 W", + "longitude_dec": "-61.64693069458008", + "max_latitude": "12.666667", + "max_longitude": "-61.25", + "min_latitude": "11.983333", + "min_longitude": "-61.8", + "area": 344, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1473" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3580239, + "edgar": "J5", + "itu": "GRD", + "marc": "gd", + "wmo": "GD", + "ds": "WG", + "fifa": "GRN", + "fips": "GJ", + "gaul": 99, + "ioc": "GRN", + "cowc": "GRN", + "cown": 55, + "fao": 86, + "imf": 328, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GL": { + "name": { + "common": "Greenland", + "official": "Greenland", + "native": { + "kal": { + "official": "Kalaallit Nunaat", + "common": "Kalaallit Nunaat" + } + } + }, + "demonym": "Greenlandic", + "capital": "Nuuk", + "iso_3166_1_alpha2": "GL", + "iso_3166_1_alpha3": "GRL", + "iso_3166_1_numeric": "304", + "currency": { + "DKK": { + "iso_4217_code": "DKK", + "iso_4217_numeric": 208, + "iso_4217_name": "Danish Krone", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gl" + ], + "alt_spellings": [ + "GL", + "Grønland" + ], + "languages": { + "kal": "Greenlandic" + }, + "translations": { + "deu": { + "official": "Grönland", + "common": "Grönland" + }, + "fra": { + "official": "Groenland", + "common": "Groenland" + }, + "hrv": { + "official": "Grenland", + "common": "Grenland" + }, + "ita": { + "official": "Groenlandia", + "common": "Groenlandia" + }, + "jpn": { + "official": "グリーンランド", + "common": "グリーンランド" + }, + "nld": { + "official": "Groenland", + "common": "Groenland" + }, + "por": { + "official": "Groenlândia", + "common": "Gronelândia" + }, + "rus": { + "official": "Гренландия", + "common": "Гренландия" + }, + "spa": { + "official": "Groenlandia", + "common": "Groenlandia" + }, + "fin": { + "official": "Groönlanti", + "common": "Groönlanti" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "72 00 N", + "latitude_dec": "74.34954833984375", + "longitude": "40 00 W", + "longitude_dec": "-41.08988952636719", + "max_latitude": "83.666667", + "max_longitude": "-12.133333", + "min_latitude": "51.7", + "min_longitude": "-73.05", + "area": 2166086, + "region": "Americas", + "subregion": "Northern America", + "world_region": "EMEA", + "region_code": "019", + "subregion_code": "021", + "landlocked": false, + "borders": [], + "independent": "Part of DK" + }, + "dialling": { + "calling_code": [ + "299" + ], + "national_prefix": null, + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": 0 + }, + "extra": { + "geonameid": 3425505, + "edgar": "J4", + "itu": "GRL", + "marc": "gl", + "wmo": "GL", + "ds": "DK", + "fifa": "GRL", + "fips": "GL", + "gaul": 98, + "ioc": "GRL", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 326, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "GT": { + "name": { + "common": "Guatemala", + "official": "Republic of Guatemala", + "native": { + "spa": { + "official": "República de Guatemala", + "common": "Guatemala" + } + } + }, + "demonym": "Guatemalan", + "capital": "Guatemala City", + "iso_3166_1_alpha2": "GT", + "iso_3166_1_alpha3": "GTM", + "iso_3166_1_numeric": "320", + "currency": { + "GTQ": { + "iso_4217_code": "GTQ", + "iso_4217_numeric": 320, + "iso_4217_name": "Quetzal", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gt" + ], + "alt_spellings": [ + "GT" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Republik Guatemala", + "common": "Guatemala" + }, + "fra": { + "official": "République du Guatemala", + "common": "Guatemala" + }, + "hrv": { + "official": "Republika Gvatemala", + "common": "Gvatemala" + }, + "ita": { + "official": "Repubblica del Guatemala", + "common": "Guatemala" + }, + "jpn": { + "official": "グアテマラ共和国", + "common": "グアテマラ" + }, + "nld": { + "official": "Republiek Guatemala", + "common": "Guatemala" + }, + "por": { + "official": "República da Guatemala", + "common": "Guatemala" + }, + "rus": { + "official": "Республика Гватемала", + "common": "Гватемала" + }, + "spa": { + "official": "República de Guatemala", + "common": "Guatemala" + }, + "fin": { + "official": "Guatemalan tasavalta", + "common": "Guatemala" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "15 30 N", + "latitude_dec": "15.670565605163574", + "longitude": "90 15 W", + "longitude_dec": "-90.3486557006836", + "max_latitude": "17.816667", + "max_longitude": "-87.05", + "min_latitude": "13.751111", + "min_longitude": "-92.583333", + "area": 108889, + "region": "Americas", + "subregion": "Central America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "013", + "landlocked": false, + "borders": [ + "BLZ", + "SLV", + "HND", + "MEX" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "502" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3595528, + "edgar": "J8", + "itu": "GTM", + "marc": "gt", + "wmo": "GU", + "ds": "GCA", + "fifa": "GUA", + "fips": "GT", + "gaul": 103, + "ioc": "GUA", + "cowc": "GUA", + "cown": 90, + "fao": 89, + "imf": 258, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GF": { + "name": { + "common": "French Guiana", + "official": "Guiana", + "native": { + "fra": { + "official": "Guyanes", + "common": "Guyane française" + } + } + }, + "demonym": "", + "capital": "Cayenne", + "iso_3166_1_alpha2": "GF", + "iso_3166_1_alpha3": "GUF", + "iso_3166_1_numeric": "254", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gf" + ], + "alt_spellings": [ + "GF", + "Guiana", + "Guyane" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Guayana", + "common": "Französisch Guyana" + }, + "fra": { + "official": "Guyane", + "common": "Guyane" + }, + "hrv": { + "official": "Gijana", + "common": "Francuska Gvajana" + }, + "ita": { + "official": "Guiana", + "common": "Guyana francese" + }, + "jpn": { + "official": "ギアナ", + "common": "フランス領ギアナ" + }, + "nld": { + "official": "Guyana", + "common": "Frans-Guyana" + }, + "por": { + "official": "Guiana", + "common": "Guiana Francesa" + }, + "rus": { + "official": "Гвиана", + "common": "Французская Гвиана" + }, + "spa": { + "official": "Guayana", + "common": "Guayana Francesa" + }, + "fin": { + "official": "Ranskan Guayana", + "common": "Ranskan Guayana" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "4 00 N", + "latitude_dec": "4.069991111755371", + "longitude": "53 00 W", + "longitude_dec": "-53.16830825805664", + "max_latitude": "5.75", + "max_longitude": "-51.65", + "min_latitude": "2.166667", + "min_longitude": "-60", + "area": 83534, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "BRA", + "SUR" + ], + "independent": "Part of FR" + }, + "dialling": { + "calling_code": [ + "594" + ], + "national_prefix": null, + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3381670, + "edgar": "I3", + "itu": "GUF", + "marc": "fg", + "wmo": "FG", + "ds": "F", + "fifa": "GUF", + "fips": "FG", + "gaul": 86, + "ioc": "FGU", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 333, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GU": { + "name": { + "common": "Guam", + "official": "Guam", + "native": { + "cha": { + "official": "Guåhån", + "common": "Guåhån" + }, + "eng": { + "official": "Guam", + "common": "Guam" + }, + "spa": { + "official": "Guam", + "common": "Guam" + } + } + }, + "demonym": "Guamanian", + "capital": "Hagåtña", + "iso_3166_1_alpha2": "GU", + "iso_3166_1_alpha3": "GUM", + "iso_3166_1_numeric": "316", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gu" + ], + "alt_spellings": [ + "GU", + "Guåhån" + ], + "languages": { + "cha": "Chamorro", + "eng": "English", + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Guam", + "common": "Guam" + }, + "fra": { + "official": "Guam", + "common": "Guam" + }, + "hrv": { + "official": "Guam", + "common": "Guam" + }, + "ita": { + "official": "Guam", + "common": "Guam" + }, + "jpn": { + "official": "グアム", + "common": "グアム" + }, + "nld": { + "official": "Guam", + "common": "Guam" + }, + "por": { + "official": "Guam", + "common": "Guam" + }, + "rus": { + "official": "Гуам", + "common": "Гуам" + }, + "spa": { + "official": "Guam", + "common": "Guam" + }, + "fin": { + "official": "Guam", + "common": "Guam" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "13 28 N", + "latitude_dec": "13.42112922668457", + "longitude": "144 47 E", + "longitude_dec": "144.73971557617188", + "max_latitude": "13.652320", + "max_longitude": "144.953995", + "min_latitude": "13.240590", + "min_longitude": "144.619263", + "area": 549, + "region": "Oceania", + "subregion": "Micronesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "057", + "landlocked": false, + "borders": [], + "independent": "Territory of US" + }, + "dialling": { + "calling_code": [ + "1671" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 4043988, + "edgar": "GU", + "itu": "GUM", + "marc": "gu", + "wmo": "GM", + "ds": "USA", + "fifa": "GUM", + "fips": "GQ", + "gaul": 101, + "ioc": "GUM", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 829, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "GY": { + "name": { + "common": "Guyana", + "official": "Co-operative Republic of Guyana", + "native": { + "eng": { + "official": "Co-operative Republic of Guyana", + "common": "Guyana" + } + } + }, + "demonym": "Guyanese", + "capital": "Georgetown", + "iso_3166_1_alpha2": "GY", + "iso_3166_1_alpha3": "GUY", + "iso_3166_1_numeric": "328", + "currency": { + "GYD": { + "iso_4217_code": "GYD", + "iso_4217_numeric": 328, + "iso_4217_name": "Guyana Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gy" + ], + "alt_spellings": [ + "GY", + "Co-operative Republic of Guyana" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Kooperative Republik Guyana", + "common": "Guyana" + }, + "fra": { + "official": "République coopérative de Guyana", + "common": "Guyana" + }, + "hrv": { + "official": "Zadruga Republika Gvajana", + "common": "Gvajana" + }, + "ita": { + "official": "Co -operative Republic of Guyana", + "common": "Guyana" + }, + "jpn": { + "official": "ガイアナの協同共和国", + "common": "ガイアナ" + }, + "nld": { + "official": "Coöperatieve Republiek Guyana", + "common": "Guyana" + }, + "por": { + "official": "Co -operative República da Guiana", + "common": "Guiana" + }, + "rus": { + "official": "Кооперативная Республика Гайана", + "common": "Гайана" + }, + "spa": { + "official": "República Cooperativa de Guyana", + "common": "Guyana" + }, + "fin": { + "official": "Guayanan osuustoiminnallinen tasavalta", + "common": "Guayana" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": false, + "latitude": "5 00 N", + "latitude_dec": "4.917311191558838", + "longitude": "59 00 W", + "longitude_dec": "-58.94346237182617", + "max_latitude": "8.433333", + "max_longitude": "-56", + "min_latitude": "1.316667", + "min_longitude": "-61.233333", + "area": 214969, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "BRA", + "SUR", + "VEN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "592" + ], + "national_prefix": null, + "national_number_lengths": [ + 6, + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3378535, + "edgar": "K0", + "itu": "GUY", + "marc": "gy", + "wmo": "GY", + "ds": "GUY", + "fifa": "GUY", + "fips": "GY", + "gaul": 107, + "ioc": "GUY", + "cowc": "GUY", + "cown": 110, + "fao": 91, + "imf": 336, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "HK": { + "name": { + "common": "Hong Kong", + "official": "Hong Kong Special Administrative Region of the People's Republic of China", + "native": { + "eng": { + "official": "Hong Kong Special Administrative Region of the People's Republic of China", + "common": "Hong Kong" + }, + "zho": { + "official": "香港中国特别行政区的人民共和国", + "common": "香港" + } + } + }, + "demonym": "Hong Konger", + "capital": "City of Victoria", + "iso_3166_1_alpha2": "HK", + "iso_3166_1_alpha3": "HKG", + "iso_3166_1_numeric": "344", + "currency": { + "HKD": { + "iso_4217_code": "HKD", + "iso_4217_numeric": 344, + "iso_4217_name": "Hong Kong dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".hk", + ".香港" + ], + "alt_spellings": [ + "HK" + ], + "languages": { + "eng": "English", + "zho": "Chinese" + }, + "translations": { + "deu": { + "official": "Sonderverwaltungszone der Volksrepublik China", + "common": "Hongkong" + }, + "fra": { + "official": "Région administrative spéciale de Hong Kong de la République populaire de Chine", + "common": "Hong Kong" + }, + "hrv": { + "official": "Hong Kong Posebnog upravnog područjaNarodne Republike Kine", + "common": "Hong Kong" + }, + "ita": { + "official": "Hong Kong Regione amministrativa speciale della Repubblica Popolare Cinese", + "common": "Hong Kong" + }, + "jpn": { + "official": "中華人民共和国香港特別行政区", + "common": "香港" + }, + "nld": { + "official": "Hong Kong Speciale Administratieve Regio van de Volksrepubliek China", + "common": "Hongkong" + }, + "por": { + "official": "Hong Kong Região Administrativa Especial da República Popular da China", + "common": "Hong Kong" + }, + "rus": { + "official": "Hong Kong Специальный административный район Китайской Народной Республики Китая", + "common": "Гонконг" + }, + "spa": { + "official": "Hong Kong Región Administrativa Especial de la República Popular China", + "common": "Hong Kong" + }, + "fin": { + "official": "Hong Kongin erityishallintoalue", + "common": "Hongkong" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": false, + "latitude": "22 15 N", + "latitude_dec": "22.336156845092773", + "longitude": "114 10 E", + "longitude_dec": "114.18696594238281", + "max_latitude": "22.566667", + "max_longitude": "114.433333", + "min_latitude": "22.15", + "min_longitude": "113.833333", + "area": 1104, + "region": "Asia", + "subregion": "Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "030", + "landlocked": false, + "borders": [ + "CHN" + ], + "independent": "Part of CN" + }, + "dialling": { + "calling_code": [ + "852" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "001" + }, + "extra": { + "geonameid": 1819730, + "edgar": 0, + "itu": "HKG", + "marc": 0, + "wmo": "HK", + "ds": "HK", + "fifa": "HKG", + "fips": "HK", + "gaul": 33364, + "ioc": "HKG", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 532, + "ar5": 0, + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}} {{region_short}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "HM": { + "name": { + "common": "Heard Island and McDonald Islands", + "official": "Heard Island and McDonald Islands", + "native": { + "eng": { + "official": "Heard Island and McDonald Islands", + "common": "Heard Island and McDonald Islands" + } + } + }, + "demonym": "Heard and McDonald Islander", + "capital": "", + "iso_3166_1_alpha2": "HM", + "iso_3166_1_alpha3": "HMD", + "iso_3166_1_numeric": "334", + "currency": { + "AUD": { + "iso_4217_code": "AUD", + "iso_4217_numeric": 36, + "iso_4217_name": "Australian Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".hm", + ".aq" + ], + "alt_spellings": [ + "HM", + "Heard Island and McDonald Mcdonald Islands" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Heard und McDonaldinseln", + "common": "Heard und die McDonaldinseln" + }, + "fra": { + "official": "Des îles Heard et McDonald", + "common": "Îles Heard-et-MacDonald" + }, + "hrv": { + "official": "Otok Heard i otočje McDonald", + "common": "Otok Heard i otočje McDonald" + }, + "ita": { + "official": "Isole Heard e McDonald", + "common": "Isole Heard e McDonald" + }, + "jpn": { + "official": "ハード島とマクドナルド諸島", + "common": "ハード島とマクドナルド諸島" + }, + "nld": { + "official": "Heard en McDonaldeilanden", + "common": "Heard-en McDonaldeilanden" + }, + "por": { + "official": "Ilha Heard e Ilhas McDonald", + "common": "Ilha Heard e Ilhas McDonald" + }, + "rus": { + "official": "Остров Херд и острова Макдональд", + "common": "Остров Херд и острова Макдональд" + }, + "spa": { + "official": "Islas Heard y McDonald", + "common": "Islas Heard y McDonald" + }, + "fin": { + "official": "Heard ja McDonaldinsaaret", + "common": "Heard ja McDonaldinsaaret" + } + }, + "geo": { + "continent": { + "AN": "Antarctica" + }, + "postal_code": true, + "latitude": "53 06 S", + "latitude_dec": "-53.080108642578125", + "longitude": "72 31 E", + "longitude_dec": "73.56218719482422", + "max_latitude": "-52.9", + "max_longitude": "73.85", + "min_latitude": "-53.2", + "min_longitude": "72.566667", + "area": 412, + "region": "", + "subregion": "", + "world_region": "APAC", + "region_code": "", + "subregion_code": "", + "landlocked": false, + "borders": [], + "independent": "Territory of AU" + }, + "dialling": { + "calling_code": [], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 1547314, + "edgar": 0, + "itu": 0, + "marc": "hm", + "wmo": 0, + "ds": "AUS", + "fifa": 0, + "fips": "HM", + "gaul": 109, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "HN": { + "name": { + "common": "Honduras", + "official": "Republic of Honduras", + "native": { + "spa": { + "official": "República de Honduras", + "common": "Honduras" + } + } + }, + "demonym": "Honduran", + "capital": "Tegucigalpa", + "iso_3166_1_alpha2": "HN", + "iso_3166_1_alpha3": "HND", + "iso_3166_1_numeric": "340", + "currency": { + "HNL": { + "iso_4217_code": "HNL", + "iso_4217_numeric": 340, + "iso_4217_name": "Lempira", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".hn" + ], + "alt_spellings": [ + "HN", + "Republic of Honduras", + "República de Honduras" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Republik Honduras", + "common": "Honduras" + }, + "fra": { + "official": "République du Honduras", + "common": "Honduras" + }, + "hrv": { + "official": "Republika Honduras", + "common": "Honduras" + }, + "ita": { + "official": "Repubblica di Honduras", + "common": "Honduras" + }, + "jpn": { + "official": "ホンジュラス共和国", + "common": "ホンジュラス" + }, + "nld": { + "official": "Republiek Honduras", + "common": "Honduras" + }, + "por": { + "official": "República de Honduras", + "common": "Honduras" + }, + "rus": { + "official": "Республика Гондурас", + "common": "Гондурас" + }, + "spa": { + "official": "República de Honduras", + "common": "Honduras" + }, + "fin": { + "official": "Hondurasin tasavalta", + "common": "Honduras" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "15 00 N", + "latitude_dec": "14.975032806396484", + "longitude": "86 30 W", + "longitude_dec": "-86.2647705078125", + "max_latitude": "17.45", + "max_longitude": "-82.5", + "min_latitude": "13.016667", + "min_longitude": "-89.333333", + "area": 112492, + "region": "Americas", + "subregion": "Central America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "013", + "landlocked": false, + "borders": [ + "GTM", + "SLV", + "NIC" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "504" + ], + "national_prefix": null, + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3608932, + "edgar": "K2", + "itu": "HND", + "marc": "ho", + "wmo": "HO", + "ds": 0, + "fifa": "HON", + "fips": "HO", + "gaul": 111, + "ioc": "HON", + "cowc": "HON", + "cown": 91, + "fao": 95, + "imf": 268, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "HR": { + "name": { + "common": "Croatia", + "official": "Republic of Croatia", + "native": { + "hrv": { + "official": "Republika Hrvatska", + "common": "Hrvatska" + } + } + }, + "demonym": "Croatian", + "capital": "Zagreb", + "iso_3166_1_alpha2": "HR", + "iso_3166_1_alpha3": "HRV", + "iso_3166_1_numeric": "191", + "currency": { + "HRK": { + "iso_4217_code": "HRK", + "iso_4217_numeric": 191, + "iso_4217_name": "Croatian Kuna", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".hr" + ], + "alt_spellings": [ + "HR", + "Hrvatska", + "Republic of Croatia", + "Republika Hrvatska" + ], + "languages": { + "hrv": "Croatian" + }, + "translations": { + "cym": { + "official": "Republic of Croatia", + "common": "Croatia" + }, + "deu": { + "official": "Republik Kroatien", + "common": "Kroatien" + }, + "fra": { + "official": "République de Croatie", + "common": "Croatie" + }, + "hrv": { + "official": "Republika Hrvatska", + "common": "Hrvatska" + }, + "ita": { + "official": "Repubblica di Croazia", + "common": "Croazia" + }, + "jpn": { + "official": "クロアチア共和国", + "common": "クロアチア" + }, + "nld": { + "official": "Republiek Kroatië", + "common": "Kroatië" + }, + "por": { + "official": "República da Croácia", + "common": "Croácia" + }, + "rus": { + "official": "Республика Хорватия", + "common": "Хорватия" + }, + "spa": { + "official": "República de Croacia", + "common": "Croacia" + }, + "fin": { + "official": "Kroatian tasavalta", + "common": "Kroatia" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "45 10 N", + "latitude_dec": "45.444305419921875", + "longitude": "15 30 E", + "longitude_dec": "15.734503746032715", + "max_latitude": "46.526944", + "max_longitude": "19.383056", + "min_latitude": "42.380278", + "min_longitude": "13.493333", + "area": 56594, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [ + "BIH", + "HUN", + "MNE", + "SRB", + "SVN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "385" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3202326, + "edgar": "1M", + "itu": "HRV", + "marc": "ci", + "wmo": "RH", + "ds": "HR", + "fifa": "CRO", + "fips": "HR", + "gaul": 62, + "ioc": "CRO", + "cowc": "CRO", + "cown": 344, + "fao": 98, + "imf": 960, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 25, + "reduced": [ + 5, + 13 + ], + "super_reduced": null, + "parking": null + } + } + }, + "HT": { + "name": { + "common": "Haiti", + "official": "Republic of Haiti", + "native": { + "fra": { + "official": "République d'Haïti", + "common": "Haïti" + }, + "hat": { + "official": "Repiblik Ayiti", + "common": "Ayiti" + } + } + }, + "demonym": "Haitian", + "capital": "Port-au-Prince", + "iso_3166_1_alpha2": "HT", + "iso_3166_1_alpha3": "HTI", + "iso_3166_1_numeric": "332", + "currency": { + "HTG": { + "iso_4217_code": "HTG", + "iso_4217_numeric": 332, + "iso_4217_name": "Haitian gourde", + "iso_4217_minor_unit": 2 + }, + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ht" + ], + "alt_spellings": [ + "HT", + "Republic of Haiti", + "République d'Haïti", + "Repiblik Ayiti" + ], + "languages": { + "fra": "French", + "hat": "Haitian Creole" + }, + "translations": { + "deu": { + "official": "Republik Haiti", + "common": "Haiti" + }, + "fra": { + "official": "République d'Haïti", + "common": "Haïti" + }, + "hrv": { + "official": "Republika Haiti", + "common": "Haiti" + }, + "ita": { + "official": "Repubblica di Haiti", + "common": "Haiti" + }, + "jpn": { + "official": "ハイチ共和国", + "common": "ハイチ" + }, + "nld": { + "official": "Republiek Haïti", + "common": "Haïti" + }, + "por": { + "official": "República do Haiti", + "common": "Haiti" + }, + "rus": { + "official": "Республика Гаити", + "common": "Гаити" + }, + "spa": { + "official": "República de Haití", + "common": "Haiti" + }, + "fin": { + "official": "Haitin tasavalta", + "common": "Haiti" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "19 00 N", + "latitude_dec": "19.0732421875", + "longitude": "72 25 W", + "longitude_dec": "-72.24127960205078", + "max_latitude": "20.083333", + "max_longitude": "-71.633333", + "min_latitude": "18.016667", + "min_longitude": "-74.483333", + "area": 27750, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [ + "DOM" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "509" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3723988, + "edgar": "K1", + "itu": "HTI", + "marc": "ht", + "wmo": "HA", + "ds": "RH", + "fifa": "HAI", + "fips": "HA", + "gaul": 108, + "ioc": "HAI", + "cowc": "HAI", + "cown": 41, + "fao": 93, + "imf": 263, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "HU": { + "name": { + "common": "Hungary", + "official": "Hungary", + "native": { + "hun": { + "official": "Magyarország", + "common": "Magyarország" + } + } + }, + "demonym": "Hungarian", + "capital": "Budapest", + "iso_3166_1_alpha2": "HU", + "iso_3166_1_alpha3": "HUN", + "iso_3166_1_numeric": "348", + "currency": { + "HUF": { + "iso_4217_code": "HUF", + "iso_4217_numeric": 348, + "iso_4217_name": "Forint", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".hu" + ], + "alt_spellings": [ + "HU" + ], + "languages": { + "hun": "Hungarian" + }, + "translations": { + "deu": { + "official": "Ungarn", + "common": "Ungarn" + }, + "fra": { + "official": "Hongrie", + "common": "Hongrie" + }, + "hrv": { + "official": "Madžarska", + "common": "Mađarska" + }, + "ita": { + "official": "Ungheria", + "common": "Ungheria" + }, + "jpn": { + "official": "ハンガリー", + "common": "ハンガリー" + }, + "nld": { + "official": "Hongarije", + "common": "Hongarije" + }, + "por": { + "official": "Hungria", + "common": "Hungria" + }, + "rus": { + "official": "Венгрия", + "common": "Венгрия" + }, + "spa": { + "official": "Hungría", + "common": "Hungría" + }, + "fin": { + "official": "Unkari", + "common": "Unkari" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "47 00 N", + "latitude_dec": "47.165733337402344", + "longitude": "20 00 E", + "longitude_dec": "19.416574478149414", + "max_latitude": "48.983333", + "max_longitude": "22.866667", + "min_latitude": "45.75", + "min_longitude": "16.183333", + "area": 93028, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "151", + "landlocked": true, + "borders": [ + "AUT", + "HRV", + "ROU", + "SRB", + "SVK", + "SVN", + "UKR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "36" + ], + "national_prefix": "06", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 719819, + "edgar": "K5", + "itu": "HNG", + "marc": "hu", + "wmo": "HU", + "ds": "H", + "fifa": "HUN", + "fips": "HU", + "gaul": 113, + "ioc": "HUN", + "cowc": "HUN", + "cown": 310, + "fao": 97, + "imf": 944, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{city}}\n{{street}}\n{{postalcode}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 27, + "reduced": [ + 5, + 18 + ], + "super_reduced": null, + "parking": null + } + } + }, + "ID": { + "name": { + "common": "Indonesia", + "official": "Republic of Indonesia", + "native": { + "ind": { + "official": "Republik Indonesia", + "common": "Indonesia" + } + } + }, + "demonym": "Indonesian", + "capital": "Jakarta", + "iso_3166_1_alpha2": "ID", + "iso_3166_1_alpha3": "IDN", + "iso_3166_1_numeric": "360", + "currency": { + "IDR": { + "iso_4217_code": "IDR", + "iso_4217_numeric": 360, + "iso_4217_name": "Rupiah", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".id" + ], + "alt_spellings": [ + "ID", + "Republic of Indonesia", + "Republik Indonesia" + ], + "languages": { + "ind": "Indonesian" + }, + "translations": { + "deu": { + "official": "Republik Indonesien", + "common": "Indonesien" + }, + "fra": { + "official": "République d'Indonésie", + "common": "Indonésie" + }, + "hrv": { + "official": "Republika Indonezija", + "common": "Indonezija" + }, + "ita": { + "official": "Repubblica di Indonesia", + "common": "Indonesia" + }, + "jpn": { + "official": "インドネシア共和国", + "common": "インドネシア" + }, + "nld": { + "official": "Republiek Indonesië", + "common": "Indonesië" + }, + "por": { + "official": "República da Indonésia", + "common": "Indonésia" + }, + "rus": { + "official": "Республика Индонезия", + "common": "Индонезия" + }, + "spa": { + "official": "República de Indonesia", + "common": "Indonesia" + }, + "fin": { + "official": "Indonesian tasavalta", + "common": "Indonesia" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "5 00 S", + "latitude_dec": "-1.248089075088501", + "longitude": "120 00 E", + "longitude_dec": "115.41899871826172", + "max_latitude": "10.616667", + "max_longitude": "141.016667", + "min_latitude": "-11", + "min_longitude": "94.970278", + "area": 1904569, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": false, + "borders": [ + "TLS", + "MYS", + "PNG" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "62" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9, + 10, + 11 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "001" + }, + "extra": { + "geonameid": 1643084, + "edgar": "K8", + "itu": "INS", + "marc": "io", + "wmo": "ID", + "ds": "RI", + "fifa": "IDN", + "fips": "ID", + "gaul": 116, + "ioc": "INA", + "cowc": "INS", + "cown": 850, + "fao": 101, + "imf": 536, + "ar5": "ASIA", + "address_format": "{{recipient}}\n{{street}}\n{{city}}\n{{region}} {{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "IM": { + "name": { + "common": "Isle of Man", + "official": "Isle of Man", + "native": { + "eng": { + "official": "Isle of Man", + "common": "Isle of Man" + }, + "glv": { + "official": "Ellan Vannin or Mannin", + "common": "Mannin" + } + } + }, + "demonym": "Manx", + "capital": "Douglas", + "iso_3166_1_alpha2": "IM", + "iso_3166_1_alpha3": "IMN", + "iso_3166_1_numeric": "833", + "currency": { + "GBP": { + "iso_4217_code": "GBP", + "iso_4217_numeric": 826, + "iso_4217_name": "Pound Sterling", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".im" + ], + "alt_spellings": [ + "IM", + "Ellan Vannin", + "Mann", + "Mannin" + ], + "languages": { + "eng": "English", + "glv": "Manx" + }, + "translations": { + "deu": { + "official": "Isle of Man", + "common": "Insel Man" + }, + "fra": { + "official": "Isle of Man", + "common": "Île de Man" + }, + "hrv": { + "official": "Mana ostrvo", + "common": "Otok Man" + }, + "ita": { + "official": "Isola di Man", + "common": "Isola di Man" + }, + "jpn": { + "official": "マン島", + "common": "マン島" + }, + "nld": { + "official": "Isle of Man", + "common": "Isle of Man" + }, + "por": { + "official": "Isle of Man", + "common": "Ilha de Man" + }, + "rus": { + "official": "Остров Мэн", + "common": "Остров Мэн" + }, + "spa": { + "official": "Isla de Man", + "common": "Isla de Man" + }, + "fin": { + "official": "Mansaari", + "common": "Mansaari" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "54 15 N", + "latitude_dec": "54.22451400756836", + "longitude": "4 30 W", + "longitude_dec": "-4.562133312225342", + "max_latitude": "54.4", + "max_longitude": "-4.316667", + "min_latitude": "54.033333", + "min_longitude": "-4.833333", + "area": 572, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [], + "independent": "Crown dependency of GB" + }, + "dialling": { + "calling_code": [ + "44" + ], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 3042225, + "edgar": "Y8", + "itu": 0, + "marc": "uik", + "wmo": 0, + "ds": "GBM", + "fifa": "GBM", + "fips": "IM", + "gaul": 120, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "IN": { + "name": { + "common": "India", + "official": "Republic of India", + "native": { + "eng": { + "official": "Republic of India", + "common": "India" + }, + "hin": { + "official": "भारत गणराज्य", + "common": "भारत" + }, + "tam": { + "official": "இந்தியக் குடியரசு", + "common": "இந்தியா" + } + } + }, + "demonym": "Indian", + "capital": "New Delhi", + "iso_3166_1_alpha2": "IN", + "iso_3166_1_alpha3": "IND", + "iso_3166_1_numeric": "356", + "currency": { + "INR": { + "iso_4217_code": "INR", + "iso_4217_numeric": 356, + "iso_4217_name": "Indian Rupee", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".in" + ], + "alt_spellings": [ + "IN", + "Bhārat", + "Republic of India", + "Bharat Ganrajya", + "இந்தியா" + ], + "languages": { + "eng": "English", + "hin": "Hindi", + "tam": "Tamil" + }, + "translations": { + "deu": { + "official": "Republik Indien", + "common": "Indien" + }, + "fra": { + "official": "République de l'Inde", + "common": "Inde" + }, + "hrv": { + "official": "Republika Indija", + "common": "Indija" + }, + "ita": { + "official": "Repubblica dell'India", + "common": "India" + }, + "jpn": { + "official": "インド共和国", + "common": "インド" + }, + "nld": { + "official": "Republiek India", + "common": "India" + }, + "por": { + "official": "República da Índia", + "common": "Índia" + }, + "rus": { + "official": "Республика Индия", + "common": "Индия" + }, + "spa": { + "official": "República de la India", + "common": "India" + }, + "fin": { + "official": "Intian tasavalta", + "common": "Intia" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "20 00 N", + "latitude_dec": "23.4060115814209", + "longitude": "77 00 E", + "longitude_dec": "79.45809173583984", + "max_latitude": "35.9558333333", + "max_longitude": "97.35", + "min_latitude": "6.755556", + "min_longitude": "67.016667", + "area": 3287590, + "region": "Asia", + "subregion": "Southern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "034", + "landlocked": false, + "borders": [ + "AFG", + "BGD", + "BTN", + "MMR", + "CHN", + "NPL", + "PAK", + "LKA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "91" + ], + "national_prefix": "0", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1269750, + "edgar": "K7", + "itu": "IND", + "marc": "ii", + "wmo": "IN", + "ds": "IND", + "fifa": "IND", + "fips": "IN", + "gaul": 115, + "ioc": "IND", + "cowc": "IND", + "cown": 750, + "fao": 100, + "imf": 534, + "ar5": "ASIA", + "address_format": "{{recipient}}\n{{street}}\n{{region}}\n{{city}} {{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "IO": { + "name": { + "common": "British Indian Ocean Territory", + "official": "British Indian Ocean Territory", + "native": { + "eng": { + "official": "British Indian Ocean Territory", + "common": "British Indian Ocean Territory" + } + } + }, + "demonym": "Indian", + "capital": "Diego Garcia", + "iso_3166_1_alpha2": "IO", + "iso_3166_1_alpha3": "IOT", + "iso_3166_1_numeric": "086", + "currency": { + "GBP": { + "iso_4217_code": "GBP", + "iso_4217_numeric": 826, + "iso_4217_name": "Pound Sterling", + "iso_4217_minor_unit": 2 + }, + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".io" + ], + "alt_spellings": [ + "IO" + ], + "languages": { + "eng": "English" + }, + "translations": { + "cym": { + "official": "British Indian Ocean Territory", + "common": "Tiriogaeth Brydeinig Cefnfor India" + }, + "deu": { + "official": "Britisch-Indischer Ozean", + "common": "Britisches Territorium im Indischen Ozean" + }, + "fra": { + "official": "Territoire britannique de l' océan Indien", + "common": "Territoire britannique de l'océan Indien" + }, + "hrv": { + "official": "British Indian Ocean Territory", + "common": "Britanski Indijskooceanski teritorij" + }, + "ita": { + "official": "Territorio britannico dell'Oceano Indiano", + "common": "Territorio britannico dell'oceano indiano" + }, + "jpn": { + "official": "イギリス領インド洋地域", + "common": "イギリス領インド洋地域" + }, + "nld": { + "official": "Brits Indische Oceaan Territorium", + "common": "Britse Gebieden in de Indische Oceaan" + }, + "por": { + "official": "British Indian Ocean Territory", + "common": "Território Britânico do Oceano Índico" + }, + "rus": { + "official": "Британская территория Индийского океана", + "common": "Британская территория в Индийском океане" + }, + "spa": { + "official": "Territorio Británico del Océano Índico", + "common": "Territorio Británico del Océano Índico" + }, + "fin": { + "official": "Brittiläinen Intian valtameren alue", + "common": "Brittiläinen Intian valtameren alue" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "6 00 S", + "latitude_dec": "-6.196269989013672", + "longitude": "71 30 E", + "longitude_dec": "71.34793090820312", + "max_latitude": "-5.233333", + "max_longitude": "72.483333", + "min_latitude": "-7.35", + "min_longitude": "71.265278", + "area": 60, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "APAC", + "region_code": "", + "subregion_code": "", + "landlocked": false, + "borders": [], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "246" + ], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 1282588, + "edgar": 0, + "itu": "BIO", + "marc": "bi", + "wmo": 0, + "ds": 0, + "fifa": 0, + "fips": "IO", + "gaul": 38, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "IE": { + "name": { + "common": "Ireland", + "official": "Republic of Ireland", + "native": { + "eng": { + "official": "Republic of Ireland", + "common": "Ireland" + }, + "gle": { + "official": "Poblacht na hÉireann", + "common": "Éire" + } + } + }, + "demonym": "Irish", + "capital": "Dublin", + "iso_3166_1_alpha2": "IE", + "iso_3166_1_alpha3": "IRL", + "iso_3166_1_numeric": "372", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ie" + ], + "alt_spellings": [ + "IE", + "Éire", + "Republic of Ireland", + "Poblacht na hÉireann" + ], + "languages": { + "eng": "English", + "gle": "Irish" + }, + "translations": { + "deu": { + "official": "Republik Irland", + "common": "Irland" + }, + "fra": { + "official": "République d'Irlande", + "common": "Irlande" + }, + "hrv": { + "official": "Republika Irska", + "common": "Irska" + }, + "ita": { + "official": "Repubblica d'Irlanda", + "common": "Irlanda" + }, + "jpn": { + "official": "アイルランド共和国", + "common": "アイルランド" + }, + "nld": { + "official": "Republic of Ireland", + "common": "Ierland" + }, + "por": { + "official": "República da Irlanda", + "common": "Irlanda" + }, + "rus": { + "official": "Ирландия", + "common": "Ирландия" + }, + "spa": { + "official": "República de Irlanda", + "common": "Irlanda" + }, + "fin": { + "official": "Irlannin tasavalta", + "common": "Irlanti" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": false, + "latitude": "53 00 N", + "latitude_dec": "53.1827278137207", + "longitude": "8 00 W", + "longitude_dec": "-8.196102142333984", + "max_latitude": "55.433333", + "max_longitude": "-6.0025", + "min_latitude": "51.425556", + "min_longitude": "-10.680833", + "area": 70273, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [ + "GBR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "353" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2963597, + "edgar": "L2", + "itu": "IRL", + "marc": "ie", + "wmo": "IE", + "ds": "IRL", + "fifa": "IRL", + "fips": "EI", + "gaul": 119, + "ioc": "IRL", + "cowc": "IRE", + "cown": 205, + "fao": 104, + "imf": 178, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{city}} {{region_short}} {{postalcode}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 23, + "reduced": [ + 9, + 13.5 + ], + "super_reduced": 4.8, + "parking": 13.5 + } + } + }, + "IR": { + "name": { + "common": "Iran", + "official": "Islamic Republic of Iran", + "native": { + "fas": { + "official": "جمهوری اسلامی ایران", + "common": "ایران" + } + } + }, + "demonym": "Iranian", + "capital": "Tehran", + "iso_3166_1_alpha2": "IR", + "iso_3166_1_alpha3": "IRN", + "iso_3166_1_numeric": "364", + "currency": { + "IRR": { + "iso_4217_code": "IRR", + "iso_4217_numeric": 364, + "iso_4217_name": "Iranian rial", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ir", + "ایران." + ], + "alt_spellings": [ + "IR", + "Islamic Republic of Iran", + "Iran, Islamic Republic of", + "Jomhuri-ye Eslāmi-ye Irān" + ], + "languages": { + "fas": "Persian" + }, + "translations": { + "deu": { + "official": "Islamische Republik Iran", + "common": "Iran" + }, + "fra": { + "official": "République islamique d'Iran", + "common": "Iran" + }, + "hrv": { + "official": "Islamska Republika Iran", + "common": "Iran" + }, + "jpn": { + "official": "イラン·イスラム共和国", + "common": "イラン・イスラム共和国" + }, + "nld": { + "official": "Islamitische Republiek Iran", + "common": "Iran" + }, + "por": { + "official": "República Islâmica do Irã", + "common": "Irão" + }, + "rus": { + "official": "Исламская Республика Иран", + "common": "Иран" + }, + "spa": { + "official": "República Islámica de Irán", + "common": "Iran" + }, + "fin": { + "official": "Iranin islamilainen tasavalta", + "common": "Iran" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "32 00 N", + "latitude_dec": "32.50077819824219", + "longitude": "53 00 E", + "longitude_dec": "54.2942008972168", + "max_latitude": "39.7754", + "max_longitude": "62", + "min_latitude": "25.05", + "min_longitude": "27.4455", + "area": 1648195, + "region": "Asia", + "subregion": "Southern Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "034", + "landlocked": false, + "borders": [ + "AFG", + "ARM", + "AZE", + "IRQ", + "PAK", + "TUR", + "TKM" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "98" + ], + "national_prefix": "0", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 130758, + "edgar": 0, + "itu": "IRN", + "marc": "ir", + "wmo": "IR", + "ds": "IR", + "fifa": "IRN", + "fips": "IR", + "gaul": 117, + "ioc": "IRI", + "cowc": "IRN", + "cown": 630, + "fao": 102, + "imf": 429, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "IQ": { + "name": { + "common": "Iraq", + "official": "Republic of Iraq", + "native": { + "ara": { + "official": "جمهورية العراق", + "common": "العراق" + }, + "arc": { + "official": "ܩܘܼܛܢܵܐ ܐܝܼܪܲܩ", + "common": "ܩܘܼܛܢܵܐ" + }, + "ckb": { + "official": "کۆماری عێراق", + "common": "کۆماری" + } + } + }, + "demonym": "Iraqi", + "capital": "Baghdad", + "iso_3166_1_alpha2": "IQ", + "iso_3166_1_alpha3": "IRQ", + "iso_3166_1_numeric": "368", + "currency": { + "IQD": { + "iso_4217_code": "IQD", + "iso_4217_numeric": 368, + "iso_4217_name": "Iraqi Dinar", + "iso_4217_minor_unit": 3 + } + }, + "tld": [ + ".iq" + ], + "alt_spellings": [ + "IQ", + "Republic of Iraq", + "Jumhūriyyat al-‘Irāq" + ], + "languages": { + "ara": "Arabic", + "arc": "Aramaic", + "ckb": "Sorani" + }, + "translations": { + "deu": { + "official": "Republik Irak", + "common": "Irak" + }, + "fra": { + "official": "République d'Irak", + "common": "Irak" + }, + "hrv": { + "official": "Republika Irak", + "common": "Irak" + }, + "ita": { + "official": "Repubblica dell'Iraq", + "common": "Iraq" + }, + "jpn": { + "official": "イラク共和国", + "common": "イラク" + }, + "nld": { + "official": "Republiek Irak", + "common": "Irak" + }, + "por": { + "official": "República do Iraque", + "common": "Iraque" + }, + "rus": { + "official": "Республика Ирак", + "common": "Ирак" + }, + "spa": { + "official": "República de Irak", + "common": "Irak" + }, + "fin": { + "official": "Irakin tasavalta", + "common": "Irak" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "33 00 N", + "latitude_dec": "33.044586181640625", + "longitude": "44 00 E", + "longitude_dec": "43.77495574951172", + "max_latitude": "37.352778", + "max_longitude": "48.833333", + "min_latitude": "28.866667", + "min_longitude": "38.800871", + "area": 438317, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "IRN", + "JOR", + "KWT", + "SAU", + "SYR", + "TUR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "964" + ], + "national_prefix": null, + "national_number_lengths": [ + 8, + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 99237, + "edgar": "L0", + "itu": "IRQ", + "marc": "iq", + "wmo": "IQ", + "ds": "IRQ", + "fifa": "IRQ", + "fips": "IZ", + "gaul": 118, + "ioc": "IRQ", + "cowc": "IRQ", + "cown": 645, + "fao": 103, + "imf": 433, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "IS": { + "name": { + "common": "Iceland", + "official": "Iceland", + "native": { + "isl": { + "official": "Ísland", + "common": "Ísland" + } + } + }, + "demonym": "Icelander", + "capital": "Reykjavik", + "iso_3166_1_alpha2": "IS", + "iso_3166_1_alpha3": "ISL", + "iso_3166_1_numeric": "352", + "currency": { + "ISK": { + "iso_4217_code": "ISK", + "iso_4217_numeric": 352, + "iso_4217_name": "Iceland Krona", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".is" + ], + "alt_spellings": [ + "IS", + "Island", + "Republic of Iceland", + "Lýðveldið Ísland" + ], + "languages": { + "isl": "Icelandic" + }, + "translations": { + "deu": { + "official": "Island", + "common": "Island" + }, + "fra": { + "official": "République d'Islande", + "common": "Islande" + }, + "hrv": { + "official": "Island", + "common": "Island" + }, + "ita": { + "official": "Islanda", + "common": "Islanda" + }, + "jpn": { + "official": "アイスランド", + "common": "アイスランド" + }, + "nld": { + "official": "IJsland", + "common": "IJsland" + }, + "por": { + "official": "Islândia", + "common": "Islândia" + }, + "rus": { + "official": "Исландия", + "common": "Исландия" + }, + "spa": { + "official": "Islandia", + "common": "Islandia" + }, + "fin": { + "official": "Islanti", + "common": "Islanti" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "65 00 N", + "latitude_dec": "64.9285659790039", + "longitude": "18 00 W", + "longitude_dec": "-18.961700439453125", + "max_latitude": "66.566667", + "max_longitude": "-13.2", + "min_latitude": "63.3", + "min_longitude": "-24.533333", + "area": 103000, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "354" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2629691, + "edgar": "K6", + "itu": "ISL", + "marc": "ic", + "wmo": "IL", + "ds": "IS", + "fifa": "ISL", + "fips": "IC", + "gaul": 114, + "ioc": "ISL", + "cowc": "ICE", + "cown": 395, + "fao": 99, + "imf": 176, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "IL": { + "name": { + "common": "Israel", + "official": "State of Israel", + "native": { + "ara": { + "official": "دولة إسرائيل", + "common": "إسرائيل" + }, + "heb": { + "official": "מדינת ישראל", + "common": "ישראל" + } + } + }, + "demonym": "Israeli", + "capital": "Jerusalem", + "iso_3166_1_alpha2": "IL", + "iso_3166_1_alpha3": "ISR", + "iso_3166_1_numeric": "376", + "currency": { + "ILS": { + "iso_4217_code": "ILS", + "iso_4217_numeric": 376, + "iso_4217_name": "New Israeli Sheqel", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".il" + ], + "alt_spellings": [ + "IL", + "State of Israel", + "Medīnat Yisrā'el" + ], + "languages": { + "ara": "Arabic", + "heb": "Hebrew" + }, + "translations": { + "deu": { + "official": "Staat Israel", + "common": "Israel" + }, + "fra": { + "official": "État d'Israël", + "common": "Israël" + }, + "hrv": { + "official": "Država Izrael", + "common": "Izrael" + }, + "ita": { + "official": "Stato di Israele", + "common": "Israele" + }, + "jpn": { + "official": "イスラエル国", + "common": "イスラエル" + }, + "nld": { + "official": "Staat Israël", + "common": "Israël" + }, + "por": { + "official": "Estado de Israel", + "common": "Israel" + }, + "rus": { + "official": "Государство Израиль", + "common": "Израиль" + }, + "spa": { + "official": "Estado de Israel", + "common": "Israel" + }, + "fin": { + "official": "Israelin valtio", + "common": "Israel" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "31 30 N", + "latitude_dec": "31.814193725585938", + "longitude": "34 45 E", + "longitude_dec": "34.75337219238281", + "max_latitude": "33.286111", + "max_longitude": "35.666667", + "min_latitude": "29.516667", + "min_longitude": "34.283333", + "area": 20770, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "EGY", + "JOR", + "LBN", + "SYR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "972" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 294640, + "edgar": "L3", + "itu": "ISR", + "marc": "is", + "wmo": "IS", + "ds": "IL", + "fifa": "ISR", + "fips": "IS", + "gaul": 121, + "ioc": "ISR", + "cowc": "ISR", + "cown": 666, + "fao": 105, + "imf": 436, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "IT": { + "name": { + "common": "Italy", + "official": "Italian Republic", + "native": { + "bar": { + "official": "Italienische Republik", + "common": "Italien" + }, + "ita": { + "official": "Repubblica italiana", + "common": "Italia" + }, + "srd": { + "official": "Repubbricanu Italia", + "common": "Italia" + } + } + }, + "demonym": "Italian", + "capital": "Rome", + "iso_3166_1_alpha2": "IT", + "iso_3166_1_alpha3": "ITA", + "iso_3166_1_numeric": "380", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".it" + ], + "alt_spellings": [ + "IT", + "Italian Republic", + "Repubblica italiana" + ], + "languages": { + "bar": "Austro-Bavarian German", + "ita": "Italian", + "srd": "Sardinian" + }, + "translations": { + "deu": { + "official": "Italienische Republik", + "common": "Italien" + }, + "fra": { + "official": "République italienne", + "common": "Italie" + }, + "hrv": { + "official": "talijanska Republika", + "common": "Italija" + }, + "ita": { + "official": "Repubblica italiana", + "common": "Italia" + }, + "jpn": { + "official": "イタリア共和国", + "common": "イタリア" + }, + "nld": { + "official": "Italiaanse Republiek", + "common": "Italië" + }, + "por": { + "official": "República Italiana", + "common": "Itália" + }, + "rus": { + "official": "итальянская Республика", + "common": "Италия" + }, + "spa": { + "official": "República Italiana", + "common": "Italia" + }, + "fin": { + "official": "Italian tasavalta", + "common": "Italia" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "42 50 N", + "latitude_dec": "42.7669792175293", + "longitude": "12 50 E", + "longitude_dec": "12.493823051452637", + "max_latitude": "48.533333", + "max_longitude": "20.433333", + "min_latitude": "35.483333", + "min_longitude": "1.35", + "area": 301336, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [ + "AUT", + "FRA", + "SMR", + "SVN", + "CHE", + "VAT" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "39" + ], + "national_prefix": null, + "national_number_lengths": [ + 9, + 11 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3175395, + "edgar": "L6", + "itu": "I", + "marc": "it", + "wmo": "IY", + "ds": "I", + "fifa": "ITA", + "fips": "IT", + "gaul": 122, + "ioc": "ITA", + "cowc": "ITA", + "cown": 325, + "fao": 106, + "imf": 136, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}} {{region_short}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 22, + "reduced": [ + 10 + ], + "super_reduced": 4, + "parking": null + } + } + }, + "JM": { + "name": { + "common": "Jamaica", + "official": "Jamaica", + "native": { + "eng": { + "official": "Jamaica", + "common": "Jamaica" + }, + "jam": { + "official": "Jamaica", + "common": "Jamaica" + } + } + }, + "demonym": "Jamaican", + "capital": "Kingston", + "iso_3166_1_alpha2": "JM", + "iso_3166_1_alpha3": "JAM", + "iso_3166_1_numeric": "388", + "currency": { + "JMD": { + "iso_4217_code": "JMD", + "iso_4217_numeric": 388, + "iso_4217_name": "Jamaican Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".jm" + ], + "alt_spellings": [ + "JM" + ], + "languages": { + "eng": "English", + "jam": "Jamaican Patois" + }, + "translations": { + "deu": { + "official": "Jamaika", + "common": "Jamaika" + }, + "fra": { + "official": "Jamaïque", + "common": "Jamaïque" + }, + "hrv": { + "official": "Jamajka", + "common": "Jamajka" + }, + "ita": { + "official": "Giamaica", + "common": "Giamaica" + }, + "jpn": { + "official": "ジャマイカ", + "common": "ジャマイカ" + }, + "nld": { + "official": "Jamaica", + "common": "Jamaica" + }, + "por": { + "official": "Jamaica", + "common": "Jamaica" + }, + "rus": { + "official": "Ямайка", + "common": "Ямайка" + }, + "spa": { + "official": "Jamaica", + "common": "Jamaica" + }, + "fin": { + "official": "Jamaika", + "common": "Jamaika" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "18 15 N", + "latitude_dec": "18.143444061279297", + "longitude": "77 30 W", + "longitude_dec": "-77.34654998779297", + "max_latitude": "18.533333", + "max_longitude": "-70", + "min_latitude": "17", + "min_longitude": "-78.366667", + "area": 10991, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1876" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3489940, + "edgar": "L8", + "itu": "JMC", + "marc": "jm", + "wmo": "JM", + "ds": "JA", + "fifa": "JAM", + "fips": "JM", + "gaul": 123, + "ioc": "JAM", + "cowc": "JAM", + "cown": 51, + "fao": 109, + "imf": 343, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "JE": { + "name": { + "common": "Jersey", + "official": "Bailiwick of Jersey", + "native": { + "eng": { + "official": "Bailiwick of Jersey", + "common": "Jersey" + }, + "fra": { + "official": "Bailliage de Jersey", + "common": "Jersey" + }, + "nrf": { + "official": "Bailliage dé Jèrri", + "common": "Jèrri" + } + } + }, + "demonym": "Channel Islander", + "capital": "Saint Helier", + "iso_3166_1_alpha2": "JE", + "iso_3166_1_alpha3": "JEY", + "iso_3166_1_numeric": "832", + "currency": { + "GBP": { + "iso_4217_code": "GBP", + "iso_4217_numeric": 826, + "iso_4217_name": "Pound Sterling", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".je" + ], + "alt_spellings": [ + "JE", + "Bailiwick of Jersey", + "Bailliage de Jersey", + "Bailliage dé Jèrri" + ], + "languages": { + "eng": "English", + "fra": "French", + "nrf": "Jèrriais" + }, + "translations": { + "deu": { + "official": "Vogtei Jersey", + "common": "Jersey" + }, + "fra": { + "official": "Bailliage de Jersey", + "common": "Jersey" + }, + "hrv": { + "official": "Struka od Jersey", + "common": "Jersey" + }, + "ita": { + "official": "Baliato di Jersey", + "common": "Isola di Jersey" + }, + "jpn": { + "official": "ジャージの得意分野", + "common": "ジャージー" + }, + "nld": { + "official": "Baljuwschap Jersey", + "common": "Jersey" + }, + "por": { + "official": "Bailiado de Jersey", + "common": "Jersey" + }, + "rus": { + "official": "Коронное владение Джерси", + "common": "Джерси" + }, + "spa": { + "official": "Bailía de Jersey", + "common": "Jersey" + }, + "fin": { + "official": "Jersey", + "common": "Jersey" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "49 15 N", + "latitude_dec": "49.2285041809082", + "longitude": "2 10 W", + "longitude_dec": "-2.1228928565979004", + "max_latitude": "49.305833", + "max_longitude": "-1.927778", + "min_latitude": "49.112778", + "min_longitude": "-2.253889", + "area": 116, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [], + "independent": "Crown dependency of GB" + }, + "dialling": { + "calling_code": [ + "44" + ], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 3042142, + "edgar": "Y9", + "itu": 0, + "marc": "uik", + "wmo": 0, + "ds": "GBJ", + "fifa": "GBJ", + "fips": "JE", + "gaul": 128, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "JO": { + "name": { + "common": "Jordan", + "official": "Hashemite Kingdom of Jordan", + "native": { + "ara": { + "official": "المملكة الأردنية الهاشمية", + "common": "الأردن" + } + } + }, + "demonym": "Jordanian", + "capital": "Amman", + "iso_3166_1_alpha2": "JO", + "iso_3166_1_alpha3": "JOR", + "iso_3166_1_numeric": "400", + "currency": { + "JOD": { + "iso_4217_code": "JOD", + "iso_4217_numeric": 400, + "iso_4217_name": "Jordanian Dinar", + "iso_4217_minor_unit": 3 + } + }, + "tld": [ + ".jo", + "الاردن." + ], + "alt_spellings": [ + "JO", + "Hashemite Kingdom of Jordan", + "al-Mamlakah al-Urdunīyah al-Hāshimīyah" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Haschemitisches Königreich Jordanien", + "common": "Jordanien" + }, + "fra": { + "official": "Royaume hachémite de Jordanie", + "common": "Jordanie" + }, + "hrv": { + "official": "Hašemitske Kraljevine Jordan", + "common": "Jordan" + }, + "ita": { + "official": "Regno hascemita di Giordania", + "common": "Giordania" + }, + "jpn": { + "official": "ヨルダン·ハシミテ王国", + "common": "ヨルダン" + }, + "nld": { + "official": "Hasjemitisch Koninkrijk Jordanië", + "common": "Jordanië" + }, + "por": { + "official": "Reino Hachemita da Jordânia", + "common": "Jordânia" + }, + "rus": { + "official": "Иорданского Хашимитского Королевства", + "common": "Иордания" + }, + "spa": { + "official": "Reino Hachemita de Jordania", + "common": "Jordania" + }, + "fin": { + "official": "Jordanian hašemiittinen kunigaskunta", + "common": "Jordania" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "31 00 N", + "latitude_dec": "31.2757625579834", + "longitude": "36 00 E", + "longitude_dec": "36.82838821411133", + "max_latitude": "33.002222", + "max_longitude": "38.883333", + "min_latitude": "29", + "min_longitude": "34.9875", + "area": 89342, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "IRQ", + "ISR", + "SAU", + "SYR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "962" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 248816, + "edgar": "M2", + "itu": "JOR", + "marc": "jo", + "wmo": "JD", + "ds": "HKJ", + "fifa": "JOR", + "fips": "JO", + "gaul": 130, + "ioc": "JOR", + "cowc": "JOR", + "cown": 663, + "fao": 112, + "imf": 439, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "JP": { + "name": { + "common": "Japan", + "official": "Japan", + "native": { + "jpn": { + "official": "日本", + "common": "日本" + } + } + }, + "demonym": "Japanese", + "capital": "Tokyo", + "iso_3166_1_alpha2": "JP", + "iso_3166_1_alpha3": "JPN", + "iso_3166_1_numeric": "392", + "currency": { + "JPY": { + "iso_4217_code": "JPY", + "iso_4217_numeric": 392, + "iso_4217_name": "Yen", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".jp", + ".みんな" + ], + "alt_spellings": [ + "JP", + "Nippon", + "Nihon" + ], + "languages": { + "jpn": "Japanese" + }, + "translations": { + "deu": { + "official": "Japan", + "common": "Japan" + }, + "fra": { + "official": "Japon", + "common": "Japon" + }, + "hrv": { + "official": "Japan", + "common": "Japan" + }, + "ita": { + "official": "Giappone", + "common": "Giappone" + }, + "jpn": { + "official": "日本", + "common": "日本" + }, + "nld": { + "official": "Japan", + "common": "Japan" + }, + "por": { + "official": "Japão", + "common": "Japão" + }, + "rus": { + "official": "Япония", + "common": "Япония" + }, + "spa": { + "official": "Japón", + "common": "Japón" + }, + "fin": { + "official": "Japani", + "common": "Japani" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "36 00 N", + "latitude_dec": "36.281646728515625", + "longitude": "138 00 E", + "longitude_dec": "139.0772705078125", + "max_latitude": "45.520833", + "max_longitude": "154", + "min_latitude": "20.416667", + "min_longitude": "122.933333", + "area": 377930, + "region": "Asia", + "subregion": "Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "030", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "81" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "010" + }, + "extra": { + "geonameid": 1861060, + "edgar": "M0", + "itu": "J", + "marc": "ja", + "wmo": "JP", + "ds": "J", + "fifa": "JPN", + "fips": "JA", + "gaul": 126, + "ioc": "JPN", + "cowc": "JPN", + "cown": 740, + "fao": 110, + "imf": 158, + "ar5": "OECD1990", + "address_format": "〒{{postalcode}}\n{{region_short}}{{city}}{{street}}\n{{recipient}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "KZ": { + "name": { + "common": "Kazakhstan", + "official": "Republic of Kazakhstan", + "native": { + "kaz": { + "official": "Қазақстан Республикасы", + "common": "Қазақстан" + }, + "rus": { + "official": "Республика Казахстан", + "common": "Казахстан" + } + } + }, + "demonym": "Kazakhstani", + "capital": "Astana", + "iso_3166_1_alpha2": "KZ", + "iso_3166_1_alpha3": "KAZ", + "iso_3166_1_numeric": "398", + "currency": { + "KZT": { + "iso_4217_code": "KZT", + "iso_4217_numeric": 398, + "iso_4217_name": "Tenge", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".kz", + ".қаз" + ], + "alt_spellings": [ + "KZ", + "Qazaqstan", + "Казахстан", + "Republic of Kazakhstan", + "Қазақстан Республикасы", + "Qazaqstan Respublïkası", + "Республика Казахстан", + "Respublika Kazakhstan" + ], + "languages": { + "kaz": "Kazakh", + "rus": "Russian" + }, + "translations": { + "deu": { + "official": "Republik Kasachstan", + "common": "Kasachstan" + }, + "fra": { + "official": "République du Kazakhstan", + "common": "Kazakhstan" + }, + "hrv": { + "official": "Republika Kazahstan", + "common": "Kazahstan" + }, + "ita": { + "official": "Repubblica del Kazakhstan", + "common": "Kazakistan" + }, + "jpn": { + "official": "カザフスタン共和国", + "common": "カザフスタン" + }, + "nld": { + "official": "Republiek Kazachstan", + "common": "Kazachstan" + }, + "por": { + "official": "República do Cazaquistão", + "common": "Cazaquistão" + }, + "rus": { + "official": "Республика Казахстан", + "common": "Казахстан" + }, + "spa": { + "official": "República de Kazajstán", + "common": "Kazajistán" + }, + "fin": { + "official": "Kazakstanin tasavalta", + "common": "Kazakstan" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "48 00 N", + "latitude_dec": "48.14600372314453", + "longitude": "68 00 E", + "longitude_dec": "67.17916870117188", + "max_latitude": "55.330556", + "max_longitude": "90", + "min_latitude": "40.416667", + "min_longitude": "46.589722", + "area": 2724900, + "region": "Asia", + "subregion": "Central Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "143", + "landlocked": true, + "borders": [ + "CHN", + "KGZ", + "RUS", + "TKM", + "UZB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "76", + "77" + ], + "national_prefix": "8", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "810" + }, + "extra": { + "geonameid": 1522867, + "edgar": 0, + "itu": "KAZ", + "marc": "kz", + "wmo": "KZ", + "ds": "KZ", + "fifa": "KAZ", + "fips": "KZ", + "gaul": 132, + "ioc": "KAZ", + "cowc": "KZK", + "cown": 705, + "fao": 108, + "imf": 916, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "KE": { + "name": { + "common": "Kenya", + "official": "Republic of Kenya", + "native": { + "eng": { + "official": "Republic of Kenya", + "common": "Kenya" + }, + "swa": { + "official": "Republic of Kenya", + "common": "Kenya" + } + } + }, + "demonym": "Kenyan", + "capital": "Nairobi", + "iso_3166_1_alpha2": "KE", + "iso_3166_1_alpha3": "KEN", + "iso_3166_1_numeric": "404", + "currency": { + "KES": { + "iso_4217_code": "KES", + "iso_4217_numeric": 404, + "iso_4217_name": "Kenyan Shilling", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ke" + ], + "alt_spellings": [ + "KE", + "Republic of Kenya", + "Jamhuri ya Kenya" + ], + "languages": { + "eng": "English", + "swa": "Swahili" + }, + "translations": { + "deu": { + "official": "Republik Kenia", + "common": "Kenia" + }, + "fra": { + "official": "République du Kenya", + "common": "Kenya" + }, + "hrv": { + "official": "Republika Kenija", + "common": "Kenija" + }, + "ita": { + "official": "Repubblica del Kenya", + "common": "Kenya" + }, + "jpn": { + "official": "ケニア共和国", + "common": "ケニア" + }, + "nld": { + "official": "Republiek Kenia", + "common": "Kenia" + }, + "por": { + "official": "República do Quénia", + "common": "Quénia" + }, + "rus": { + "official": "Республика Кения", + "common": "Кения" + }, + "spa": { + "official": "República de Kenya", + "common": "Kenia" + }, + "fin": { + "official": "Kenian tasavalta", + "common": "Kenia" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "1 00 N", + "latitude_dec": "0.5765031576156616", + "longitude": "38 00 E", + "longitude_dec": "37.83988952636719", + "max_latitude": "4.883333", + "max_longitude": "41.8583834826", + "min_latitude": "-4.716667", + "min_longitude": "27.433333", + "area": 580367, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [ + "ETH", + "SOM", + "SSD", + "TZA", + "UGA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "254" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "000" + }, + "extra": { + "geonameid": 192950, + "edgar": "M3", + "itu": "KEN", + "marc": "ke", + "wmo": "KN", + "ds": "EAK", + "fifa": "KEN", + "fips": "KE", + "gaul": 133, + "ioc": "KEN", + "cowc": "KEN", + "cown": 501, + "fao": 114, + "imf": 664, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "KG": { + "name": { + "common": "Kyrgyzstan", + "official": "Kyrgyz Republic", + "native": { + "kir": { + "official": "Кыргыз Республикасы", + "common": "Кыргызстан" + }, + "rus": { + "official": "Кыргызская Республика", + "common": "Киргизия" + } + } + }, + "demonym": "Kirghiz", + "capital": "Bishkek", + "iso_3166_1_alpha2": "KG", + "iso_3166_1_alpha3": "KGZ", + "iso_3166_1_numeric": "417", + "currency": { + "KGS": { + "iso_4217_code": "KGS", + "iso_4217_numeric": 417, + "iso_4217_name": "Som", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".kg" + ], + "alt_spellings": [ + "KG", + "Киргизия", + "Kyrgyz Republic", + "Кыргыз Республикасы", + "Kyrgyz Respublikasy" + ], + "languages": { + "kir": "Kyrgyz", + "rus": "Russian" + }, + "translations": { + "deu": { + "official": "Kirgisische Republik", + "common": "Kirgisistan" + }, + "fra": { + "official": "République kirghize", + "common": "Kirghizistan" + }, + "hrv": { + "official": "Kirgistanu", + "common": "Kirgistan" + }, + "ita": { + "official": "Kirghizistan", + "common": "Kirghizistan" + }, + "jpn": { + "official": "キルギス共和国", + "common": "キルギス" + }, + "nld": { + "official": "Kirgizische Republiek", + "common": "Kirgizië" + }, + "por": { + "official": "República do Quirguistão", + "common": "Quirguistão" + }, + "rus": { + "official": "Кыргызская Республика", + "common": "Киргизия" + }, + "spa": { + "official": "República Kirguisa", + "common": "Kirguizistán" + }, + "fin": { + "official": "Kirgisian tasavalta", + "common": "Kirgisia" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "41 00 N", + "latitude_dec": "41.46435546875", + "longitude": "75 00 E", + "longitude_dec": "74.55522155761719", + "max_latitude": "43.016667", + "max_longitude": "80.115833", + "min_latitude": "39.25", + "min_longitude": "69.333333", + "area": 199951, + "region": "Asia", + "subregion": "Central Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "143", + "landlocked": true, + "borders": [ + "CHN", + "KAZ", + "TJK", + "UZB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "996" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1527747, + "edgar": "1N", + "itu": "KGZ", + "marc": "kg", + "wmo": "KG", + "ds": "KS", + "fifa": "KGZ", + "fips": "KG", + "gaul": 138, + "ioc": "KGZ", + "cowc": "KYR", + "cown": 703, + "fao": 113, + "imf": 917, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "KH": { + "name": { + "common": "Cambodia", + "official": "Kingdom of Cambodia", + "native": { + "khm": { + "official": "ព្រះរាជាណាចក្រកម្ពុជា", + "common": "Kâmpŭchéa" + } + } + }, + "demonym": "Cambodian", + "capital": "Phnom Penh", + "iso_3166_1_alpha2": "KH", + "iso_3166_1_alpha3": "KHM", + "iso_3166_1_numeric": "116", + "currency": { + "KHR": { + "iso_4217_code": "KHR", + "iso_4217_numeric": 116, + "iso_4217_name": "Riel", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".kh" + ], + "alt_spellings": [ + "KH", + "Kingdom of Cambodia" + ], + "languages": { + "khm": "Khmer" + }, + "translations": { + "cym": { + "official": "Kingdom of Cambodia", + "common": "Cambodia" + }, + "deu": { + "official": "Königreich Kambodscha", + "common": "Kambodscha" + }, + "fra": { + "official": "Royaume du Cambodge", + "common": "Cambodge" + }, + "hrv": { + "official": "Kraljevina Kambodža", + "common": "Kambodža" + }, + "ita": { + "official": "Regno di Cambogia", + "common": "Cambogia" + }, + "jpn": { + "official": "カンボジア王国", + "common": "カンボジア" + }, + "nld": { + "official": "Koninkrijk Cambodja", + "common": "Cambodja" + }, + "por": { + "official": "Reino do Camboja", + "common": "Camboja" + }, + "rus": { + "official": "Королевство Камбоджа", + "common": "Камбоджа" + }, + "spa": { + "official": "Reino de Camboya", + "common": "Camboya" + }, + "fin": { + "official": "Kambodžan kuningaskunta", + "common": "Kambodža" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "13 00 N", + "latitude_dec": "12.570423126220703", + "longitude": "105 00 E", + "longitude_dec": "104.81391143798828", + "max_latitude": "17.483333", + "max_longitude": "107.566667", + "min_latitude": "9.916667", + "min_longitude": "102.358333", + "area": 181035, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": false, + "borders": [ + "LAO", + "THA", + "VNM" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "855" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1831722, + "edgar": "E3", + "itu": "CBG", + "marc": "cb", + "wmo": "KP", + "ds": "K", + "fifa": "CAM", + "fips": "CB", + "gaul": 44, + "ioc": "CAM", + "cowc": "CAM", + "cown": 811, + "fao": 115, + "imf": 522, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "KI": { + "name": { + "common": "Kiribati", + "official": "Independent and Sovereign Republic of Kiribati", + "native": { + "eng": { + "official": "Independent and Sovereign Republic of Kiribati", + "common": "Kiribati" + }, + "gil": { + "official": "Ribaberiki Kiribati", + "common": "Kiribati" + } + } + }, + "demonym": "I-Kiribati", + "capital": "South Tarawa", + "iso_3166_1_alpha2": "KI", + "iso_3166_1_alpha3": "KIR", + "iso_3166_1_numeric": "296", + "currency": { + "AUD": { + "iso_4217_code": "AUD", + "iso_4217_numeric": 36, + "iso_4217_name": "Australian Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ki" + ], + "alt_spellings": [ + "KI", + "Republic of Kiribati", + "Ribaberiki Kiribati" + ], + "languages": { + "eng": "English", + "gil": "Gilbertese" + }, + "translations": { + "deu": { + "official": "Unabhängige und souveräne Republik Kiribati", + "common": "Kiribati" + }, + "fra": { + "official": "République de Kiribati", + "common": "Kiribati" + }, + "hrv": { + "official": "Samostalne i suverene Republike Kiribati", + "common": "Kiribati" + }, + "ita": { + "official": "Repubblica indipendente e sovrano di Kiribati", + "common": "Kiribati" + }, + "jpn": { + "official": "キリバスの独立と主権共和国", + "common": "キリバス" + }, + "nld": { + "official": "Onafhankelijke en soevereine republiek Kiribati", + "common": "Kiribati" + }, + "por": { + "official": "Independente e soberano República de Kiribati", + "common": "Kiribati" + }, + "rus": { + "official": "Независимой и суверенной Республики Кирибати", + "common": "Кирибати" + }, + "spa": { + "official": "República Independiente y Soberano de Kiribati", + "common": "Kiribati" + }, + "fin": { + "official": "Kiribatin tasavalta", + "common": "Kiribati" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "1 25 N", + "latitude_dec": "1.842833161354065", + "longitude": "173 00 E", + "longitude_dec": "-157.6758270263672", + "max_latitude": "4.716667", + "max_longitude": "-174.533333", + "min_latitude": "-10.3", + "min_longitude": "179.716667", + "area": 811, + "region": "Oceania", + "subregion": "Micronesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "057", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "686" + ], + "national_prefix": null, + "national_number_lengths": [ + 5 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 4030945, + "edgar": "J2", + "itu": "KIR", + "marc": "gb", + "wmo": "KB", + "ds": 0, + "fifa": "KIR", + "fips": "KR", + "gaul": 135, + "ioc": "KIR", + "cowc": "KIR", + "cown": 946, + "fao": 83, + "imf": 826, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "KN": { + "name": { + "common": "Saint Kitts and Nevis", + "official": "Federation of Saint Christopher and Nevisa", + "native": { + "eng": { + "official": "Federation of Saint Christopher and Nevisa", + "common": "Saint Kitts and Nevis" + } + } + }, + "demonym": "Kittitian or Nevisian", + "capital": "Basseterre", + "iso_3166_1_alpha2": "KN", + "iso_3166_1_alpha3": "KNA", + "iso_3166_1_numeric": "659", + "currency": { + "XCD": { + "iso_4217_code": "XCD", + "iso_4217_numeric": 951, + "iso_4217_name": "East Caribbean Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".kn" + ], + "alt_spellings": [ + "KN", + "Federation of Saint Christopher and Nevis" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Föderation von Saint Kitts und Nevisa", + "common": "Saint Christopher und Nevis" + }, + "fra": { + "official": "Fédération de Saint -Christophe-et Nevisa", + "common": "Saint-Christophe-et-Niévès" + }, + "hrv": { + "official": "Federacija Sv.Kristofora i Nevisa", + "common": "Sveti Kristof i Nevis" + }, + "ita": { + "official": "Federazione di Saint Christopher e Nevisa", + "common": "Saint Kitts e Nevis" + }, + "jpn": { + "official": "セントクリストファーNevisa連盟", + "common": "セントクリストファー・ネイビス" + }, + "nld": { + "official": "Federatie van Saint Kitts en Nevisa", + "common": "Saint Kitts en Nevis" + }, + "por": { + "official": "Federação de São Cristóvão e Nevisa", + "common": "São Cristóvão e Nevis" + }, + "rus": { + "official": "Федерация Сент-Кристофер и Nevisa", + "common": "Сент-Китс и Невис" + }, + "spa": { + "official": "Federación de San Cristóbal y Nevisa", + "common": "San Cristóbal y Nieves" + }, + "fin": { + "official": "Saint Christopherin ja Nevisin federaatio", + "common": "Saint Kitts ja Nevis" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "17 20 N", + "latitude_dec": "17.24447250366211", + "longitude": "62 45 W", + "longitude_dec": "-62.643184661865234", + "max_latitude": "17.416667", + "max_longitude": "-62.516667", + "min_latitude": "17.1", + "min_longitude": "-62.85", + "area": 261, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1869" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3575174, + "edgar": "U7", + "itu": "KNA", + "marc": "xd", + "wmo": "AT", + "ds": 0, + "fifa": "SKN", + "fips": "SC", + "gaul": 208, + "ioc": "SKN", + "cowc": "SKN", + "cown": 60, + "fao": 188, + "imf": 361, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "KR": { + "name": { + "common": "South Korea", + "official": "Republic of Korea", + "native": { + "kor": { + "official": "한국", + "common": "대한민국" + } + } + }, + "demonym": "South Korean", + "capital": "Seoul", + "iso_3166_1_alpha2": "KR", + "iso_3166_1_alpha3": "KOR", + "iso_3166_1_numeric": "410", + "currency": { + "KRW": { + "iso_4217_code": "KRW", + "iso_4217_numeric": 410, + "iso_4217_name": "South Korean won", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".kr", + ".한국" + ], + "alt_spellings": [ + "KR", + "Korea, Republic of", + "Republic of Korea" + ], + "languages": { + "kor": "Korean" + }, + "translations": { + "deu": { + "official": "Republik Korea", + "common": "Südkorea" + }, + "fra": { + "official": "République de Corée", + "common": "Corée du Sud" + }, + "hrv": { + "official": "Republika Koreja", + "common": "Južna Koreja" + }, + "ita": { + "official": "Repubblica di Corea", + "common": "Corea del Sud" + }, + "jpn": { + "official": "大韓民国", + "common": "大韓民国" + }, + "nld": { + "official": "Republiek Korea", + "common": "Zuid-Korea" + }, + "por": { + "official": "República da Coreia", + "common": "Coreia do Sul" + }, + "rus": { + "official": "Республика Корея", + "common": "Южная Корея" + }, + "spa": { + "official": "República de Corea", + "common": "Corea del Sur" + }, + "fin": { + "official": "Korean tasavalta", + "common": "Etelä-Korea" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "37 00 N", + "latitude_dec": "40.077640533447266", + "longitude": "127 30 E", + "longitude_dec": "127.13385009765625", + "max_latitude": "38.586667", + "max_longitude": "131.866667", + "min_latitude": "33.1175", + "min_longitude": "124.612222", + "area": 100210, + "region": "Asia", + "subregion": "Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "030", + "landlocked": false, + "borders": [ + "PRK" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "82" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "001" + }, + "extra": { + "geonameid": 1835841, + "edgar": 0, + "itu": "KOR", + "marc": "ko", + "wmo": "KO", + "ds": "ROK", + "fifa": "KOR", + "fips": "KS", + "gaul": 202, + "ioc": "KOR", + "cowc": "ROK", + "cown": 732, + "fao": 117, + "imf": 542, + "ar5": 0, + "address_format": "{{recipient}}\n{{street}}\n{{city}} {{region_short}}\n{{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "XK": { + "name": { + "common": "Kosovo", + "official": "Republic of Kosovo", + "native": { + "sqi": { + "official": "Republika e Kosovës", + "common": "Kosova" + }, + "srp": { + "official": "Република Косово", + "common": "Косово" + } + } + }, + "demonym": "Kosovar", + "capital": "Pristina", + "iso_3166_1_alpha2": "XK", + "iso_3166_1_alpha3": "UNK", + "iso_3166_1_numeric": "", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [], + "alt_spellings": [ + "XK", + "Република Косово" + ], + "languages": { + "sqi": "Albanian", + "srp": "Serbian" + }, + "translations": { + "deu": { + "official": "Republik Kosovo", + "common": "Kosovo" + }, + "fra": { + "official": "République du Kosovo", + "common": "Kosovo" + }, + "hrv": { + "official": "Republika Kosovo", + "common": "Kosovo" + }, + "por": { + "official": "República do Kosovo", + "common": "Kosovo" + }, + "rus": { + "official": "Республика Косово", + "common": "Республика Косово" + }, + "spa": { + "official": "República de Kosovo", + "common": "Kosovo" + }, + "fin": { + "official": "Kosovon tasavalta", + "common": "Kosovo" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": null, + "latitude": null, + "latitude_dec": null, + "longitude": null, + "longitude_dec": null, + "max_latitude": null, + "max_longitude": null, + "min_latitude": null, + "min_longitude": null, + "area": 10908, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": null, + "region_code": "", + "subregion_code": "", + "landlocked": true, + "borders": [ + "ALB", + "MKD", + "MNE", + "SRB" + ], + "independent": null + }, + "dialling": { + "calling_code": [ + "383" + ], + "national_prefix": null, + "national_number_lengths": null, + "national_destination_code_lengths": null, + "international_prefix": null + }, + "extra": { + "geonameid": null, + "edgar": null, + "itu": null, + "marc": null, + "wmo": null, + "ds": null, + "fifa": null, + "fips": null, + "gaul": null, + "ioc": "KOS", + "cowc": null, + "cown": null, + "fao": null, + "imf": null, + "ar5": null, + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "KW": { + "name": { + "common": "Kuwait", + "official": "State of Kuwait", + "native": { + "ara": { + "official": "دولة الكويت", + "common": "الكويت" + } + } + }, + "demonym": "Kuwaiti", + "capital": "Kuwait City", + "iso_3166_1_alpha2": "KW", + "iso_3166_1_alpha3": "KWT", + "iso_3166_1_numeric": "414", + "currency": { + "KWD": { + "iso_4217_code": "KWD", + "iso_4217_numeric": 414, + "iso_4217_name": "Kuwaiti Dinar", + "iso_4217_minor_unit": 3 + } + }, + "tld": [ + ".kw" + ], + "alt_spellings": [ + "KW", + "State of Kuwait", + "Dawlat al-Kuwait" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Staat Kuwait", + "common": "Kuwait" + }, + "fra": { + "official": "État du Koweït", + "common": "Koweït" + }, + "hrv": { + "official": "Država Kuvajt", + "common": "Kuvajt" + }, + "ita": { + "official": "Stato del Kuwait", + "common": "Kuwait" + }, + "jpn": { + "official": "クウェート国", + "common": "クウェート" + }, + "nld": { + "official": "Staat Koeweit", + "common": "Koeweit" + }, + "por": { + "official": "Estado do Kuwait", + "common": "Kuwait" + }, + "rus": { + "official": "Государство Кувейт", + "common": "Кувейт" + }, + "spa": { + "official": "Estado de Kuwait", + "common": "Kuwait" + }, + "fin": { + "official": "Kuwaitin valtio", + "common": "Kuwait" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "29 30 N", + "latitude_dec": "29.321941375732422", + "longitude": "45 45 E", + "longitude_dec": "47.60246658325195", + "max_latitude": "30.069444", + "max_longitude": "49.410556", + "min_latitude": "25", + "min_longitude": "45", + "area": 17818, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "IRQ", + "SAU" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "965" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 285570, + "edgar": "M6", + "itu": "KWT", + "marc": "ku", + "wmo": "KW", + "ds": "KWT", + "fifa": "KUW", + "fips": "KU", + "gaul": 137, + "ioc": "KUW", + "cowc": "KUW", + "cown": 690, + "fao": 118, + "imf": 443, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{region}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "LA": { + "name": { + "common": "Laos", + "official": "Lao People's Democratic Republic", + "native": { + "lao": { + "official": "ສາທາລະນະ ຊາທິປະໄຕ ຄົນລາວ ຂອງ", + "common": "ສປປລາວ" + } + } + }, + "demonym": "Laotian", + "capital": "Vientiane", + "iso_3166_1_alpha2": "LA", + "iso_3166_1_alpha3": "LAO", + "iso_3166_1_numeric": "418", + "currency": { + "LAK": { + "iso_4217_code": "LAK", + "iso_4217_numeric": 418, + "iso_4217_name": "Kip", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".la" + ], + "alt_spellings": [ + "LA", + "Lao", + "Lao People's Democratic Republic", + "Sathalanalat Paxathipatai Paxaxon Lao" + ], + "languages": { + "lao": "Lao" + }, + "translations": { + "deu": { + "official": "Laos, Demokratische Volksrepublik", + "common": "Laos" + }, + "fra": { + "official": "République démocratique populaire lao", + "common": "Laos" + }, + "hrv": { + "official": "Narodna Demokratska Republika", + "common": "Laos" + }, + "ita": { + "official": "Repubblica democratica popolare del Laos", + "common": "Laos" + }, + "jpn": { + "official": "ラオス人民民主共和国", + "common": "ラオス人民民主共和国" + }, + "nld": { + "official": "Lao Democratische Volksrepubliek", + "common": "Laos" + }, + "por": { + "official": "Laos, República Democrática", + "common": "Laos" + }, + "rus": { + "official": "Лаосская Народно-Демократическая Республика", + "common": "Лаос" + }, + "spa": { + "official": "República Democrática Popular Lao", + "common": "Laos" + }, + "fin": { + "official": "Laosin demokraattinen kansantasavalta", + "common": "Laos" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "18 00 N", + "latitude_dec": "18.65074920654297", + "longitude": "105 00 E", + "longitude_dec": "104.15293884277344", + "max_latitude": "22.5", + "max_longitude": "107.633333", + "min_latitude": "13.933333", + "min_longitude": "100.095833", + "area": 236800, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": true, + "borders": [ + "MMR", + "KHM", + "CHN", + "THA", + "VNM" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "856" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1655842, + "edgar": 0, + "itu": "LAO", + "marc": "ls", + "wmo": "LA", + "ds": "LAO", + "fifa": "LAO", + "fips": "LA", + "gaul": 139, + "ioc": "LAO", + "cowc": "LAO", + "cown": 812, + "fao": 120, + "imf": 544, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "LB": { + "name": { + "common": "Lebanon", + "official": "Lebanese Republic", + "native": { + "ara": { + "official": "الجمهورية اللبنانية", + "common": "لبنان" + }, + "fra": { + "official": "République libanaise", + "common": "Liban" + } + } + }, + "demonym": "Lebanese", + "capital": "Beirut", + "iso_3166_1_alpha2": "LB", + "iso_3166_1_alpha3": "LBN", + "iso_3166_1_numeric": "422", + "currency": { + "LBP": { + "iso_4217_code": "LBP", + "iso_4217_numeric": 422, + "iso_4217_name": "Lebanese Pound", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".lb" + ], + "alt_spellings": [ + "LB", + "Lebanese Republic", + "Al-Jumhūrīyah Al-Libnānīyah" + ], + "languages": { + "ara": "Arabic", + "fra": "French" + }, + "translations": { + "deu": { + "official": "Libanesische Republik", + "common": "Libanon" + }, + "fra": { + "official": "République libanaise", + "common": "Liban" + }, + "hrv": { + "official": "Libanonska Republika", + "common": "Libanon" + }, + "ita": { + "official": "Repubblica libanese", + "common": "Libano" + }, + "jpn": { + "official": "レバノン共和国", + "common": "レバノン" + }, + "nld": { + "official": "Libanese Republiek", + "common": "Libanon" + }, + "por": { + "official": "República Libanesa", + "common": "Líbano" + }, + "rus": { + "official": "Ливанская Республика", + "common": "Ливан" + }, + "spa": { + "official": "República Libanesa", + "common": "Líbano" + }, + "fin": { + "official": "Libanonin tasavalta", + "common": "Libanon" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "33 50 N", + "latitude_dec": "33.925411224365234", + "longitude": "35 50 E", + "longitude_dec": "35.89972686767578", + "max_latitude": "34.69", + "max_longitude": "36.592778", + "min_latitude": "33.078333", + "min_longitude": "35.103611", + "area": 10452, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "ISR", + "SYR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "961" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 272103, + "edgar": "M8", + "itu": "LBN", + "marc": "le", + "wmo": "LB", + "ds": "RL", + "fifa": "LIB", + "fips": "LE", + "gaul": 141, + "ioc": "LIB", + "cowc": "LEB", + "cown": 660, + "fao": 121, + "imf": 446, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "LR": { + "name": { + "common": "Liberia", + "official": "Republic of Liberia", + "native": { + "eng": { + "official": "Republic of Liberia", + "common": "Liberia" + } + } + }, + "demonym": "Liberian", + "capital": "Monrovia", + "iso_3166_1_alpha2": "LR", + "iso_3166_1_alpha3": "LBR", + "iso_3166_1_numeric": "430", + "currency": { + "LRD": { + "iso_4217_code": "LRD", + "iso_4217_numeric": 430, + "iso_4217_name": "Liberian Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".lr" + ], + "alt_spellings": [ + "LR", + "Republic of Liberia" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Republik Liberia", + "common": "Liberia" + }, + "fra": { + "official": "République du Libéria", + "common": "Liberia" + }, + "hrv": { + "official": "Republika Liberija", + "common": "Liberija" + }, + "ita": { + "official": "Repubblica di Liberia", + "common": "Liberia" + }, + "jpn": { + "official": "リベリア共和国", + "common": "リベリア" + }, + "nld": { + "official": "Republiek Liberia", + "common": "Liberia" + }, + "por": { + "official": "República da Libéria", + "common": "Libéria" + }, + "rus": { + "official": "Республика Либерия", + "common": "Либерия" + }, + "spa": { + "official": "República de Liberia", + "common": "Liberia" + }, + "fin": { + "official": "Liberian tasavalta", + "common": "Liberia" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "6 30 N", + "latitude_dec": "6.411512851715088", + "longitude": "9 30 W", + "longitude_dec": "-9.323492050170898", + "max_latitude": "9.5", + "max_longitude": "-4", + "min_latitude": "4.328333", + "min_longitude": "-11.472222", + "area": 111369, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "GIN", + "CIV", + "SLE" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "231" + ], + "national_prefix": "22", + "national_number_lengths": [ + 6, + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2275384, + "edgar": "N0", + "itu": "LBR", + "marc": "lb", + "wmo": "LI", + "ds": "LB", + "fifa": "LBR", + "fips": "LI", + "gaul": 144, + "ioc": "LBR", + "cowc": "LBR", + "cown": 450, + "fao": 123, + "imf": 668, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "LY": { + "name": { + "common": "Libya", + "official": "State of Libya", + "native": { + "ara": { + "official": "الدولة ليبيا", + "common": "‏ليبيا" + } + } + }, + "demonym": "Libyan", + "capital": "Tripoli", + "iso_3166_1_alpha2": "LY", + "iso_3166_1_alpha3": "LBY", + "iso_3166_1_numeric": "434", + "currency": { + "LYD": { + "iso_4217_code": "LYD", + "iso_4217_numeric": 434, + "iso_4217_name": "Libyan Dinar", + "iso_4217_minor_unit": 3 + } + }, + "tld": [ + ".ly" + ], + "alt_spellings": [ + "LY", + "State of Libya", + "Dawlat Libya" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Staat Libyen", + "common": "Libyen" + }, + "fra": { + "official": "Grande République arabe libyenne populaire et socialiste", + "common": "Libye" + }, + "hrv": { + "official": "Država Libiji", + "common": "Libija" + }, + "ita": { + "official": "Stato della Libia", + "common": "Libia" + }, + "jpn": { + "official": "リビアの国家", + "common": "リビア" + }, + "nld": { + "official": "Staat van Libië", + "common": "Libië" + }, + "por": { + "official": "Estado da Líbia", + "common": "Líbia" + }, + "rus": { + "official": "Государство Ливии", + "common": "Ливия" + }, + "spa": { + "official": "Estado de Libia", + "common": "Libia" + }, + "fin": { + "official": "Libyan valtio", + "common": "Libya" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "25 00 N", + "latitude_dec": "27.23609733581543", + "longitude": "17 00 E", + "longitude_dec": "18.043556213378906", + "max_latitude": "33.15", + "max_longitude": "25.5", + "min_latitude": "20.8", + "min_longitude": "5", + "area": 1759540, + "region": "Africa", + "subregion": "Northern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "015", + "landlocked": false, + "borders": [ + "DZA", + "TCD", + "EGY", + "NER", + "SDN", + "TUN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "218" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2215636, + "edgar": 0, + "itu": "LBY", + "marc": "ly", + "wmo": "LY", + "ds": "LAR", + "fifa": "LBY", + "fips": "LY", + "gaul": 145, + "ioc": "LBA", + "cowc": "LIB", + "cown": 620, + "fao": 124, + "imf": 672, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "LC": { + "name": { + "common": "Saint Lucia", + "official": "Saint Lucia", + "native": { + "eng": { + "official": "Saint Lucia", + "common": "Saint Lucia" + } + } + }, + "demonym": "Saint Lucian", + "capital": "Castries", + "iso_3166_1_alpha2": "LC", + "iso_3166_1_alpha3": "LCA", + "iso_3166_1_numeric": "662", + "currency": { + "XCD": { + "iso_4217_code": "XCD", + "iso_4217_numeric": 951, + "iso_4217_name": "East Caribbean Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".lc" + ], + "alt_spellings": [ + "LC" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "St. Lucia", + "common": "Saint Lucia" + }, + "fra": { + "official": "Sainte-Lucie", + "common": "Sainte-Lucie" + }, + "hrv": { + "official": "Sveta Lucija", + "common": "Sveta Lucija" + }, + "ita": { + "official": "Santa Lucia", + "common": "Santa Lucia" + }, + "jpn": { + "official": "セントルシア", + "common": "セントルシア" + }, + "nld": { + "official": "Saint Lucia", + "common": "Saint Lucia" + }, + "por": { + "official": "Santa Lúcia", + "common": "Santa Lúcia" + }, + "rus": { + "official": "Сент-Люсия", + "common": "Сент-Люсия" + }, + "spa": { + "official": "Santa Lucía", + "common": "Santa Lucía" + }, + "fin": { + "official": "Saint Lucia", + "common": "Saint Lucia" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "13 53 N", + "latitude_dec": "13.86330509185791", + "longitude": "60 58 W", + "longitude_dec": "-60.9665641784668", + "max_latitude": "14.1", + "max_longitude": "-60.866667", + "min_latitude": "13.7", + "min_longitude": "-61.066667", + "area": 616, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1758" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3576468, + "edgar": "U9", + "itu": "LCA", + "marc": "xk", + "wmo": "LC", + "ds": "WL", + "fifa": "LCA", + "fips": "ST", + "gaul": 209, + "ioc": "LCA", + "cowc": "SLU", + "cown": 56, + "fao": 189, + "imf": 362, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "LI": { + "name": { + "common": "Liechtenstein", + "official": "Principality of Liechtenstein", + "native": { + "deu": { + "official": "Fürstentum Liechtenstein", + "common": "Liechtenstein" + } + } + }, + "demonym": "Liechtensteiner", + "capital": "Vaduz", + "iso_3166_1_alpha2": "LI", + "iso_3166_1_alpha3": "LIE", + "iso_3166_1_numeric": "438", + "currency": { + "CHF": { + "iso_4217_code": "CHF", + "iso_4217_numeric": 756, + "iso_4217_name": "Swiss Franc", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".li" + ], + "alt_spellings": [ + "LI", + "Principality of Liechtenstein", + "Fürstentum Liechtenstein" + ], + "languages": { + "deu": "German" + }, + "translations": { + "deu": { + "official": "Fürstentum Liechtenstein", + "common": "Liechtenstein" + }, + "fra": { + "official": "Principauté du Liechtenstein", + "common": "Liechtenstein" + }, + "hrv": { + "official": "Kneževina Lihtenštajn", + "common": "Lihtenštajn" + }, + "ita": { + "official": "Principato del Liechtenstein", + "common": "Liechtenstein" + }, + "jpn": { + "official": "リヒテンシュタイン公国", + "common": "リヒテンシュタイン" + }, + "nld": { + "official": "Vorstendom Liechtenstein", + "common": "Liechtenstein" + }, + "por": { + "official": "Principado de Liechtenstein", + "common": "Liechtenstein" + }, + "rus": { + "official": "Княжество Лихтенштейн", + "common": "Лихтенштейн" + }, + "spa": { + "official": "Principado de Liechtenstein", + "common": "Liechtenstein" + }, + "fin": { + "official": "Liechensteinin ruhtinaskunta", + "common": "Liechenstein" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "47 16 N", + "latitude_dec": "47.14126968383789", + "longitude": "9 32 E", + "longitude_dec": "9.552783012390137", + "max_latitude": "47.233333", + "max_longitude": "9.75", + "min_latitude": "47.05", + "min_longitude": "9.5", + "area": 160, + "region": "Europe", + "subregion": "Western Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "155", + "landlocked": true, + "borders": [ + "AUT", + "CHE" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "423" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3042058, + "edgar": "N2", + "itu": "LIE", + "marc": "lh", + "wmo": 0, + "ds": "FL", + "fifa": "LIE", + "fips": "LS", + "gaul": 146, + "ioc": "LIE", + "cowc": "LIE", + "cown": 223, + "fao": 0, + "imf": 0, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "LK": { + "name": { + "common": "Sri Lanka", + "official": "Democratic Socialist Republic of Sri Lanka", + "native": { + "sin": { + "official": "ශ්‍රී ලංකා ප්‍රජාතාන්ත්‍රික සමාජවාදී ජනරජය", + "common": "ශ්‍රී ලංකාව" + }, + "tam": { + "official": "இலங்கை சனநாயக சோசலிசக் குடியரசு", + "common": "இலங்கை" + } + } + }, + "demonym": "Sri Lankan", + "capital": "Colombo", + "iso_3166_1_alpha2": "LK", + "iso_3166_1_alpha3": "LKA", + "iso_3166_1_numeric": "144", + "currency": { + "LKR": { + "iso_4217_code": "LKR", + "iso_4217_numeric": 144, + "iso_4217_name": "Sri Lanka Rupee", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".lk", + ".இலங்கை", + ".ලංකා" + ], + "alt_spellings": [ + "LK", + "ilaṅkai", + "Democratic Socialist Republic of Sri Lanka" + ], + "languages": { + "sin": "Sinhala", + "tam": "Tamil" + }, + "translations": { + "deu": { + "official": "Demokratische Sozialistische Republik Sri Lanka", + "common": "Sri Lanka" + }, + "fra": { + "official": "République démocratique socialiste du Sri Lanka", + "common": "Sri Lanka" + }, + "hrv": { + "official": "Demokratska Socijalističke Republike Šri Lanke", + "common": "Šri Lanka" + }, + "ita": { + "official": "Repubblica democratica socialista dello Sri Lanka", + "common": "Sri Lanka" + }, + "jpn": { + "official": "スリランカ民主社会主義共和国", + "common": "スリランカ" + }, + "nld": { + "official": "Democratische Socialistische Republiek Sri Lanka", + "common": "Sri Lanka" + }, + "por": { + "official": "República Democrática Socialista do Sri Lanka", + "common": "Sri Lanka" + }, + "rus": { + "official": "Демократическая Социалистическая Республика Шри-Ланка", + "common": "Шри-Ланка" + }, + "spa": { + "official": "República Democrática Socialista de Sri Lanka", + "common": "Sri Lanka" + }, + "fin": { + "official": "Sri Lankan demokraattinen sosialistinen tasavalta", + "common": "Sri Lanka" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "7 00 N", + "latitude_dec": "7.789133548736572", + "longitude": "81 00 E", + "longitude_dec": "80.68072509765625", + "max_latitude": "9.833333", + "max_longitude": "81.866667", + "min_latitude": "5.916667", + "min_longitude": "79.516667", + "area": 65610, + "region": "Asia", + "subregion": "Southern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "034", + "landlocked": false, + "borders": [ + "IND" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "94" + ], + "national_prefix": "0", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1227603, + "edgar": "F1", + "itu": "CLN", + "marc": "ce", + "wmo": "SB", + "ds": "CL", + "fifa": "SRI", + "fips": "CE", + "gaul": 231, + "ioc": "SRI", + "cowc": "SRI", + "cown": 780, + "fao": 38, + "imf": 524, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "LS": { + "name": { + "common": "Lesotho", + "official": "Kingdom of Lesotho", + "native": { + "eng": { + "official": "Kingdom of Lesotho", + "common": "Lesotho" + }, + "sot": { + "official": "Kingdom of Lesotho", + "common": "Lesotho" + } + } + }, + "demonym": "Mosotho", + "capital": "Maseru", + "iso_3166_1_alpha2": "LS", + "iso_3166_1_alpha3": "LSO", + "iso_3166_1_numeric": "426", + "currency": { + "LSL": { + "iso_4217_code": "LSL", + "iso_4217_numeric": 426, + "iso_4217_name": "Lesotho loti", + "iso_4217_minor_unit": 2 + }, + "ZAR": { + "iso_4217_code": "ZAR", + "iso_4217_numeric": 710, + "iso_4217_name": "Rand", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ls" + ], + "alt_spellings": [ + "LS", + "Kingdom of Lesotho", + "Muso oa Lesotho" + ], + "languages": { + "eng": "English", + "sot": "Sotho" + }, + "translations": { + "deu": { + "official": "Königreich Lesotho", + "common": "Lesotho" + }, + "fra": { + "official": "Royaume du Lesotho", + "common": "Lesotho" + }, + "hrv": { + "official": "Kraljevina Lesoto", + "common": "Lesoto" + }, + "ita": { + "official": "Regno del Lesotho", + "common": "Lesotho" + }, + "jpn": { + "official": "レソト王国", + "common": "レソト" + }, + "nld": { + "official": "Koninkrijk Lesotho", + "common": "Lesotho" + }, + "por": { + "official": "Reino do Lesoto", + "common": "Lesoto" + }, + "rus": { + "official": "Королевство Лесото", + "common": "Лесото" + }, + "spa": { + "official": "Reino de Lesotho", + "common": "Lesotho" + }, + "fin": { + "official": "Lesothon kuningaskunta", + "common": "Lesotho" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "29 30 S", + "latitude_dec": "-29.58175277709961", + "longitude": "28 30 E", + "longitude_dec": "28.246612548828125", + "max_latitude": "-28.616667", + "max_longitude": "29.316667", + "min_latitude": "-30.666667", + "min_longitude": "24", + "area": 30355, + "region": "Africa", + "subregion": "Southern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "018", + "landlocked": true, + "borders": [ + "ZAF" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "266" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 932692, + "edgar": "M9", + "itu": "LSO", + "marc": "lo", + "wmo": "LS", + "ds": "LS", + "fifa": "LES", + "fips": "LT", + "gaul": 142, + "ioc": "LES", + "cowc": "LES", + "cown": 570, + "fao": 122, + "imf": 666, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "LT": { + "name": { + "common": "Lithuania", + "official": "Republic of Lithuania", + "native": { + "lit": { + "official": "Lietuvos Respublikos", + "common": "Lietuva" + } + } + }, + "demonym": "Lithuanian", + "capital": "Vilnius", + "iso_3166_1_alpha2": "LT", + "iso_3166_1_alpha3": "LTU", + "iso_3166_1_numeric": "440", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".lt" + ], + "alt_spellings": [ + "LT", + "Republic of Lithuania", + "Lietuvos Respublika" + ], + "languages": { + "lit": "Lithuanian" + }, + "translations": { + "deu": { + "official": "Republik Litauen", + "common": "Litauen" + }, + "fra": { + "official": "République de Lituanie", + "common": "Lituanie" + }, + "hrv": { + "official": "Republika Litva", + "common": "Litva" + }, + "ita": { + "official": "Repubblica di Lituania", + "common": "Lituania" + }, + "jpn": { + "official": "リトアニア共和国", + "common": "リトアニア" + }, + "nld": { + "official": "Republiek Litouwen", + "common": "Litouwen" + }, + "por": { + "official": "República da Lituânia", + "common": "Lituânia" + }, + "rus": { + "official": "Литовская Республика", + "common": "Литва" + }, + "spa": { + "official": "República de Lituania", + "common": "Lituania" + }, + "fin": { + "official": "Liettuan tasavalta", + "common": "Liettua" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "56 00 N", + "latitude_dec": "55.33871841430664", + "longitude": "24 00 E", + "longitude_dec": "23.87092399597168", + "max_latitude": "56.441667", + "max_longitude": "27", + "min_latitude": "53", + "min_longitude": "21", + "area": 65300, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [ + "BLR", + "LVA", + "POL", + "RUS" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "370" + ], + "national_prefix": "8", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 597427, + "edgar": "1Q", + "itu": "LTU", + "marc": "li", + "wmo": "LT", + "ds": "LT", + "fifa": "LTU", + "fips": "LH", + "gaul": 147, + "ioc": "LTU", + "cowc": "LIT", + "cown": 368, + "fao": 126, + "imf": 946, + "ar5": "EIT", + "address_format": null, + "eu_member": true, + "vat_rates": { + "standard": 21, + "reduced": [ + 5, + 9 + ], + "super_reduced": null, + "parking": null + } + } + }, + "LU": { + "name": { + "common": "Luxembourg", + "official": "Grand Duchy of Luxembourg", + "native": { + "deu": { + "official": "Großherzogtum Luxemburg", + "common": "Luxemburg" + }, + "fra": { + "official": "Grand-Duché de Luxembourg", + "common": "Luxembourg" + }, + "ltz": { + "official": "Groussherzogtum Lëtzebuerg", + "common": "Lëtzebuerg" + } + } + }, + "demonym": "Luxembourger", + "capital": "Luxembourg", + "iso_3166_1_alpha2": "LU", + "iso_3166_1_alpha3": "LUX", + "iso_3166_1_numeric": "442", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".lu" + ], + "alt_spellings": [ + "LU", + "Grand Duchy of Luxembourg", + "Grand-Duché de Luxembourg", + "Großherzogtum Luxemburg", + "Groussherzogtum Lëtzebuerg" + ], + "languages": { + "deu": "German", + "fra": "French", + "ltz": "Luxembourgish" + }, + "translations": { + "deu": { + "official": "Großherzogtum Luxemburg,", + "common": "Luxemburg" + }, + "fra": { + "official": "Grand-Duché de Luxembourg", + "common": "Luxembourg" + }, + "hrv": { + "official": "Veliko Vojvodstvo Luksemburg", + "common": "Luksemburg" + }, + "ita": { + "official": "Granducato di Lussemburgo", + "common": "Lussemburgo" + }, + "jpn": { + "official": "ルクセンブルク大公国", + "common": "ルクセンブルク" + }, + "nld": { + "official": "Groothertogdom Luxemburg", + "common": "Luxemburg" + }, + "por": { + "official": "Grão-Ducado do Luxemburgo", + "common": "Luxemburgo" + }, + "rus": { + "official": "Великое Герцогство Люксембург", + "common": "Люксембург" + }, + "spa": { + "official": "Gran Ducado de Luxemburgo", + "common": "Luxemburgo" + }, + "fin": { + "official": "Luxemburgin suurherttuakunta", + "common": "Luxemburg" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "49 45 N", + "latitude_dec": "49.77788162231445", + "longitude": "6 10 E", + "longitude_dec": "6.094746112823486", + "max_latitude": "50.181667", + "max_longitude": "6.505833", + "min_latitude": "49.460833", + "min_longitude": "5.742778", + "area": 2586, + "region": "Europe", + "subregion": "Western Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "155", + "landlocked": true, + "borders": [ + "BEL", + "FRA", + "DEU" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "352" + ], + "national_prefix": null, + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2960313, + "edgar": "N4", + "itu": "LUX", + "marc": "lu", + "wmo": "BX", + "ds": "L", + "fifa": "LUX", + "fips": "LU", + "gaul": 148, + "ioc": "LUX", + "cowc": "LUX", + "cown": 212, + "fao": 256, + "imf": 137, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 17, + "reduced": [ + 8, + 14 + ], + "super_reduced": 3, + "parking": 12 + } + } + }, + "LV": { + "name": { + "common": "Latvia", + "official": "Republic of Latvia", + "native": { + "lav": { + "official": "Latvijas Republikas", + "common": "Latvija" + } + } + }, + "demonym": "Latvian", + "capital": "Riga", + "iso_3166_1_alpha2": "LV", + "iso_3166_1_alpha3": "LVA", + "iso_3166_1_numeric": "428", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".lv" + ], + "alt_spellings": [ + "LV", + "Republic of Latvia", + "Latvijas Republika" + ], + "languages": { + "lav": "Latvian" + }, + "translations": { + "deu": { + "official": "Republik Lettland", + "common": "Lettland" + }, + "fra": { + "official": "République de Lettonie", + "common": "Lettonie" + }, + "hrv": { + "official": "Republika Latvija", + "common": "Latvija" + }, + "ita": { + "official": "Repubblica di Lettonia", + "common": "Lettonia" + }, + "jpn": { + "official": "ラトビア共和国", + "common": "ラトビア" + }, + "nld": { + "official": "Republiek Letland", + "common": "Letland" + }, + "por": { + "official": "República da Letónia", + "common": "Letónia" + }, + "rus": { + "official": "Латвийская Республика", + "common": "Латвия" + }, + "spa": { + "official": "República de Letonia", + "common": "Letonia" + }, + "fin": { + "official": "Latvian tasavalta", + "common": "Latvia" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "57 00 N", + "latitude_dec": "56.86873245239258", + "longitude": "25 00 E", + "longitude_dec": "24.84024429321289", + "max_latitude": "58.066667", + "max_longitude": "28.2", + "min_latitude": "55.7", + "min_longitude": "20.966667", + "area": 64559, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [ + "BLR", + "EST", + "LTU", + "RUS" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "371" + ], + "national_prefix": "8", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 458258, + "edgar": "1R", + "itu": "LVA", + "marc": "lv", + "wmo": "LV", + "ds": "LV", + "fifa": "LVA", + "fips": "LG", + "gaul": 140, + "ioc": "LAT", + "cowc": "LAT", + "cown": 367, + "fao": 119, + "imf": 941, + "ar5": "EIT", + "address_format": null, + "eu_member": true, + "vat_rates": { + "standard": 21, + "reduced": [ + 12 + ], + "super_reduced": null, + "parking": null + } + } + }, + "MO": { + "name": { + "common": "Macau", + "official": "Macao Special Administrative Region of the People's Republic of China", + "native": { + "por": { + "official": "Região Administrativa Especial de Macau da República Popular da China", + "common": "Macau" + }, + "zho": { + "official": "澳门特别行政区中国人民共和国", + "common": "澳門" + } + } + }, + "demonym": "Chinese", + "capital": "", + "iso_3166_1_alpha2": "MO", + "iso_3166_1_alpha3": "MAC", + "iso_3166_1_numeric": "446", + "currency": { + "MOP": { + "iso_4217_code": "MOP", + "iso_4217_numeric": 446, + "iso_4217_name": "Macanese pataca", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mo" + ], + "alt_spellings": [ + "MO", + "澳门", + "Macao", + "Macao Special Administrative Region of the People's Republic of China", + "中華人民共和國澳門特別行政區", + "Região Administrativa Especial de Macau da República Popular da China" + ], + "languages": { + "por": "Portuguese", + "zho": "Chinese" + }, + "translations": { + "deu": { + "official": "Sonderverwaltungsregion Macau der Volksrepublik China", + "common": "Macao" + }, + "fra": { + "official": "Région administrative spéciale de Macao de la République populaire de Chine", + "common": "Macao" + }, + "hrv": { + "official": "Makao Posebnog upravnog područjaNarodne Republike Kine", + "common": "Makao" + }, + "ita": { + "official": "Macao Regione amministrativa speciale della Repubblica Popolare Cinese", + "common": "Macao" + }, + "jpn": { + "official": "中華人民共和国マカオ特別行政区", + "common": "マカオ" + }, + "nld": { + "official": "Speciale Administratieve Regio Macau van de Volksrepubliek China", + "common": "Macao" + }, + "por": { + "official": "Macau Região Administrativa Especial da República Popular da China", + "common": "Macau" + }, + "rus": { + "official": "Специальный административный район Макао Китайской Народной Республики Китай", + "common": "Макао" + }, + "spa": { + "official": "Macao, Región Administrativa Especial de la República Popular China", + "common": "Macao" + }, + "fin": { + "official": "Macaon Kiinan kansantasavallan erityishallintoalue", + "common": "Macao" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": false, + "latitude": "22 10 N", + "latitude_dec": "22.140748977661133", + "longitude": "113 33 E", + "longitude_dec": "113.56034088134766", + "max_latitude": "22.216389", + "max_longitude": "113.592222", + "min_latitude": "22.1125", + "min_longitude": "113.531389", + "area": 30, + "region": "Asia", + "subregion": "Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "030", + "landlocked": false, + "borders": [ + "CHN" + ], + "independent": "Part of CN" + }, + "dialling": { + "calling_code": [ + "853" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1821275, + "edgar": 0, + "itu": "MAC", + "marc": 0, + "wmo": "MU", + "ds": 0, + "fifa": "MAC", + "fips": "MC", + "gaul": 149, + "ioc": "MAC", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 546, + "ar5": 0, + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MF": { + "name": { + "common": "Saint Martin", + "official": "Saint Martin", + "native": { + "fra": { + "official": "Saint-Martin", + "common": "Saint-Martin" + } + } + }, + "demonym": "Saint Martin Islander", + "capital": "Marigot", + "iso_3166_1_alpha2": "MF", + "iso_3166_1_alpha3": "MAF", + "iso_3166_1_numeric": "663", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".fr", + ".gp" + ], + "alt_spellings": [ + "MF", + "Collectivity of Saint Martin", + "Collectivité de Saint-Martin", + "Saint Martin (French part)" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "St. Martin", + "common": "Saint Martin" + }, + "fra": { + "official": "Saint-Martin", + "common": "Saint-Martin" + }, + "hrv": { + "official": "Saint Martin", + "common": "Sveti Martin" + }, + "ita": { + "official": "saint Martin", + "common": "Saint Martin" + }, + "jpn": { + "official": "サンマルタン島", + "common": "サン・マルタン(フランス領)" + }, + "nld": { + "official": "Saint Martin", + "common": "Saint-Martin" + }, + "por": { + "official": "saint Martin", + "common": "São Martinho" + }, + "rus": { + "official": "Сен-Мартен", + "common": "Сен-Мартен" + }, + "spa": { + "official": "Saint Martin", + "common": "Saint Martin" + }, + "fin": { + "official": "Saint-Martin", + "common": "Saint-Martin" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "18 05 N", + "latitude_dec": "18.042224884033203", + "longitude": "63 57 W", + "longitude_dec": "-63.06623458862305", + "max_latitude": "18.1251338", + "max_longitude": "-62.9703926", + "min_latitude": "18.0465757", + "min_longitude": "-63.153326", + "area": 53, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [ + "SXM" + ], + "independent": "Part of FR" + }, + "dialling": { + "calling_code": [ + "590" + ], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 3578421, + "edgar": 0, + "itu": 0, + "marc": "st", + "wmo": 0, + "ds": 0, + "fifa": 0, + "fips": "RN", + "gaul": 0, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 352, + "ar5": 0, + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MA": { + "name": { + "common": "Morocco", + "official": "Kingdom of Morocco", + "native": { + "ara": { + "official": "المملكة المغربية", + "common": "المغرب" + }, + "ber": { + "official": "ⵜⴰⴳⵍⴷⵉⵜ ⵏ ⵍⵎⵖⵔⵉⴱ", + "common": "ⵍⵎⴰⵖⵔⵉⴱ" + } + } + }, + "demonym": "Moroccan", + "capital": "Rabat", + "iso_3166_1_alpha2": "MA", + "iso_3166_1_alpha3": "MAR", + "iso_3166_1_numeric": "504", + "currency": { + "MAD": { + "iso_4217_code": "MAD", + "iso_4217_numeric": 504, + "iso_4217_name": "Moroccan Dirham", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ma", + "المغرب." + ], + "alt_spellings": [ + "MA", + "Kingdom of Morocco", + "Al-Mamlakah al-Maġribiyah" + ], + "languages": { + "ara": "Arabic", + "ber": "Berber" + }, + "translations": { + "deu": { + "official": "Königreich Marokko", + "common": "Marokko" + }, + "fra": { + "official": "Royaume du Maroc", + "common": "Maroc" + }, + "hrv": { + "official": "Kraljevina Maroko", + "common": "Maroko" + }, + "ita": { + "official": "Regno del Marocco", + "common": "Marocco" + }, + "jpn": { + "official": "モロッコ王国", + "common": "モロッコ" + }, + "nld": { + "official": "Koninkrijk Marokko", + "common": "Marokko" + }, + "por": { + "official": "Reino de Marrocos", + "common": "Marrocos" + }, + "rus": { + "official": "Королевство Марокко", + "common": "Марокко" + }, + "spa": { + "official": "Reino de Marruecos", + "common": "Marruecos" + }, + "fin": { + "official": "Marokon kuningaskunta", + "common": "Marokko" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "32 00 N", + "latitude_dec": "29.14059066772461", + "longitude": "5 00 W", + "longitude_dec": "-8.953388214111328", + "max_latitude": "36.21", + "max_longitude": "2", + "min_latitude": "5.51", + "min_longitude": "-13.1", + "area": 446550, + "region": "Africa", + "subregion": "Northern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "015", + "landlocked": false, + "borders": [ + "DZA", + "ESH", + "ESP" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "212" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2542007, + "edgar": "P2", + "itu": "MRC", + "marc": "mr", + "wmo": "MC", + "ds": "MA", + "fifa": "MAR", + "fips": "MO", + "gaul": 169, + "ioc": "MAR", + "cowc": "MOR", + "cown": 600, + "fao": 143, + "imf": 686, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MC": { + "name": { + "common": "Monaco", + "official": "Principality of Monaco", + "native": { + "fra": { + "official": "Principauté de Monaco", + "common": "Monaco" + } + } + }, + "demonym": "Monegasque", + "capital": "Monaco", + "iso_3166_1_alpha2": "MC", + "iso_3166_1_alpha3": "MCO", + "iso_3166_1_numeric": "492", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mc" + ], + "alt_spellings": [ + "MC", + "Principality of Monaco", + "Principauté de Monaco" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Fürstentum Monaco", + "common": "Monaco" + }, + "fra": { + "official": "Principauté de Monaco", + "common": "Monaco" + }, + "hrv": { + "official": "Kneževina Monako", + "common": "Monako" + }, + "ita": { + "official": "Principato di Monaco", + "common": "Principato di Monaco" + }, + "jpn": { + "official": "モナコ公国", + "common": "モナコ" + }, + "nld": { + "official": "Vorstendom Monaco", + "common": "Monaco" + }, + "por": { + "official": "Principado do Mónaco", + "common": "Mónaco" + }, + "rus": { + "official": "Княжество Монако", + "common": "Монако" + }, + "spa": { + "official": "Principado de Mónaco", + "common": "Mónaco" + }, + "fin": { + "official": "Monacon ruhtinaskunta", + "common": "Monaco" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "43 44 N", + "latitude_dec": "43.738929748535156", + "longitude": "7 24 E", + "longitude_dec": "7.425483226776123", + "max_latitude": "43.745833", + "max_longitude": "7.439444", + "min_latitude": "43.716667", + "min_longitude": "7.4", + "area": 2.02, + "region": "Europe", + "subregion": "Western Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "155", + "landlocked": false, + "borders": [ + "FRA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "377" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2993457, + "edgar": "O9", + "itu": "MCO", + "marc": "mc", + "wmo": 0, + "ds": "MC", + "fifa": "MON", + "fips": "MN", + "gaul": 166, + "ioc": "MON", + "cowc": "MNC", + "cown": 221, + "fao": 140, + "imf": 0, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MD": { + "name": { + "common": "Moldova", + "official": "Republic of Moldova", + "native": { + "ron": { + "official": "Republica Moldova", + "common": "Moldova" + } + } + }, + "demonym": "Moldovan", + "capital": "Chișinău", + "iso_3166_1_alpha2": "MD", + "iso_3166_1_alpha3": "MDA", + "iso_3166_1_numeric": "498", + "currency": { + "MDL": { + "iso_4217_code": "MDL", + "iso_4217_numeric": 498, + "iso_4217_name": "Moldovan leu", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".md" + ], + "alt_spellings": [ + "MD", + "Moldova, Republic of", + "Republic of Moldova", + "Republica Moldova" + ], + "languages": { + "ron": "Moldavian" + }, + "translations": { + "deu": { + "official": "Republik Moldau", + "common": "Moldawie" + }, + "fra": { + "official": "République de Moldavie", + "common": "Moldavie" + }, + "hrv": { + "official": "Moldavija", + "common": "Moldova" + }, + "ita": { + "official": "Repubblica di Moldova", + "common": "Moldavia" + }, + "jpn": { + "official": "モルドバ共和国", + "common": "モルドバ共和国" + }, + "nld": { + "official": "Republiek Moldavië", + "common": "Moldavië" + }, + "por": { + "official": "República da Moldávia", + "common": "Moldávia" + }, + "rus": { + "official": "Молдова", + "common": "Молдавия" + }, + "spa": { + "official": "República de Moldova", + "common": "Moldavia" + }, + "fin": { + "official": "Moldovan tasavalta", + "common": "Moldova" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "47 00 N", + "latitude_dec": "47.203704833984375", + "longitude": "29 00 E", + "longitude_dec": "28.46834373474121", + "max_latitude": "48.467222", + "max_longitude": "30.096111", + "min_latitude": "45.481667", + "min_longitude": "26.672222", + "area": 33846, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "151", + "landlocked": true, + "borders": [ + "ROU", + "UKR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "373" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 617790, + "edgar": 0, + "itu": "MDA", + "marc": "mv", + "wmo": "RM", + "ds": "MD", + "fifa": "MDA", + "fips": "MD", + "gaul": 165, + "ioc": "MDA", + "cowc": "MLD", + "cown": 359, + "fao": 146, + "imf": 921, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MG": { + "name": { + "common": "Madagascar", + "official": "Republic of Madagascar", + "native": { + "fra": { + "official": "République de Madagascar", + "common": "Madagascar" + }, + "mlg": { + "official": "Repoblikan'i Madagasikara", + "common": "Madagasikara" + } + } + }, + "demonym": "Malagasy", + "capital": "Antananarivo", + "iso_3166_1_alpha2": "MG", + "iso_3166_1_alpha3": "MDG", + "iso_3166_1_numeric": "450", + "currency": { + "MGA": { + "iso_4217_code": "MGA", + "iso_4217_numeric": 969, + "iso_4217_name": "Malagasy Ariary", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mg" + ], + "alt_spellings": [ + "MG", + "Republic of Madagascar", + "Repoblikan'i Madagasikara", + "République de Madagascar" + ], + "languages": { + "fra": "French", + "mlg": "Malagasy" + }, + "translations": { + "deu": { + "official": "Republik Madagaskar", + "common": "Madagaskar" + }, + "fra": { + "official": "République de Madagascar", + "common": "Madagascar" + }, + "hrv": { + "official": "Republika Madagaskar", + "common": "Madagaskar" + }, + "ita": { + "official": "Repubblica del Madagascar", + "common": "Madagascar" + }, + "jpn": { + "official": "マダガスカル共和国", + "common": "マダガスカル" + }, + "nld": { + "official": "Republiek Madagaskar", + "common": "Madagaskar" + }, + "por": { + "official": "República de Madagáscar", + "common": "Madagáscar" + }, + "rus": { + "official": "Республика Мадагаскар", + "common": "Мадагаскар" + }, + "spa": { + "official": "República de Madagascar", + "common": "Madagascar" + }, + "fin": { + "official": "Madagaskarin tasavalta", + "common": "Madagaskar" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "20 00 S", + "latitude_dec": "-19.27239418029785", + "longitude": "47 00 E", + "longitude_dec": "46.69843292236328", + "max_latitude": "-11.95", + "max_longitude": "50.483333", + "min_latitude": "-25.6", + "min_longitude": "43.183333", + "area": 587041, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "261" + ], + "national_prefix": null, + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1062947, + "edgar": "N6", + "itu": "MDG", + "marc": "mg", + "wmo": "MG", + "ds": "RM", + "fifa": "MAD", + "fips": "MA", + "gaul": 150, + "ioc": "MAD", + "cowc": "MAG", + "cown": 580, + "fao": 129, + "imf": 674, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MV": { + "name": { + "common": "Maldives", + "official": "Republic of the Maldives", + "native": { + "div": { + "official": "ދިވެހިރާއްޖޭގެ ޖުމްހޫރިއްޔާ", + "common": "ދިވެހިރާއްޖޭގެ" + } + } + }, + "demonym": "Maldivan", + "capital": "Malé", + "iso_3166_1_alpha2": "MV", + "iso_3166_1_alpha3": "MDV", + "iso_3166_1_numeric": "462", + "currency": { + "MVR": { + "iso_4217_code": "MVR", + "iso_4217_numeric": 462, + "iso_4217_name": "Rufiyaa", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mv" + ], + "alt_spellings": [ + "MV", + "Maldive Islands", + "Republic of the Maldives", + "Dhivehi Raajjeyge Jumhooriyya" + ], + "languages": { + "div": "Maldivian" + }, + "translations": { + "deu": { + "official": "Republik Malediven", + "common": "Malediven" + }, + "fra": { + "official": "République des Maldives", + "common": "Maldives" + }, + "hrv": { + "official": "Republika Maldivi", + "common": "Maldivi" + }, + "ita": { + "official": "Repubblica delle Maldive", + "common": "Maldive" + }, + "jpn": { + "official": "モルディブ共和国", + "common": "モルディブ" + }, + "nld": { + "official": "Republiek van de Malediven", + "common": "Maldiven" + }, + "por": { + "official": "República das Maldivas", + "common": "Maldivas" + }, + "rus": { + "official": "Республика Мальдивы", + "common": "Мальдивы" + }, + "spa": { + "official": "República de las Maldivas", + "common": "Maldivas" + }, + "fin": { + "official": "Malediivien tasavalta", + "common": "Malediivit" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "3 15 N", + "latitude_dec": "4.185884952545166", + "longitude": "73 00 E", + "longitude_dec": "73.53071594238281", + "max_latitude": "7.1", + "max_longitude": "73.7", + "min_latitude": "-0.7", + "min_longitude": "72.583333", + "area": 300, + "region": "Asia", + "subregion": "Southern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "034", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "960" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1282028, + "edgar": "N9", + "itu": "MLD", + "marc": "xc", + "wmo": "MV", + "ds": 0, + "fifa": "MDV", + "fips": "MV", + "gaul": 154, + "ioc": "MDV", + "cowc": "MAD", + "cown": 781, + "fao": 132, + "imf": 556, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MX": { + "name": { + "common": "Mexico", + "official": "United Mexican States", + "native": { + "spa": { + "official": "Estados Unidos Mexicanos", + "common": "México" + } + } + }, + "demonym": "Mexican", + "capital": "Mexico City", + "iso_3166_1_alpha2": "MX", + "iso_3166_1_alpha3": "MEX", + "iso_3166_1_numeric": "484", + "currency": { + "MXN": { + "iso_4217_code": "MXN", + "iso_4217_numeric": 484, + "iso_4217_name": "Mexican Peso", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mx" + ], + "alt_spellings": [ + "MX", + "Mexicanos", + "United Mexican States", + "Estados Unidos Mexicanos" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Vereinigte Mexikanische Staaten", + "common": "Mexiko" + }, + "fra": { + "official": "États-Unis du Mexique", + "common": "Mexique" + }, + "hrv": { + "official": "Sjedinjene Meksičke Države", + "common": "Meksiko" + }, + "ita": { + "official": "Stati Uniti del Messico", + "common": "Messico" + }, + "jpn": { + "official": "メキシコ合衆国", + "common": "メキシコ" + }, + "nld": { + "official": "Verenigde Mexicaanse Staten", + "common": "Mexico" + }, + "por": { + "official": "Estados Unidos Mexicanos", + "common": "México" + }, + "rus": { + "official": "Мексиканских Соединенных Штатов", + "common": "Мексика" + }, + "spa": { + "official": "Estados Unidos Mexicanos", + "common": "México" + }, + "fin": { + "official": "Meksikon yhdysvallat", + "common": "Meksiko" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "23 00 N", + "latitude_dec": "23.909093856811523", + "longitude": "102 00 W", + "longitude_dec": "-102.6333999633789", + "max_latitude": "32.983333", + "max_longitude": "-86.716667", + "min_latitude": "14.55", + "min_longitude": "-119.921667", + "area": 1964375, + "region": "Americas", + "subregion": "Central America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "013", + "landlocked": false, + "borders": [ + "BLZ", + "GTM", + "USA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "52" + ], + "national_prefix": "01", + "national_number_lengths": [ + 8, + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3996063, + "edgar": "O5", + "itu": "MEX", + "marc": "mx", + "wmo": "MX", + "ds": "MEX", + "fifa": "MEX", + "fips": "MX", + "gaul": 162, + "ioc": "MEX", + "cowc": "MEX", + "cown": 70, + "fao": 138, + "imf": 273, + "ar5": "LAM", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}} {{region_short}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "MH": { + "name": { + "common": "Marshall Islands", + "official": "Republic of the Marshall Islands", + "native": { + "eng": { + "official": "Republic of the Marshall Islands", + "common": "Marshall Islands" + }, + "mah": { + "official": "Republic of the Marshall Islands", + "common": "M̧ajeļ" + } + } + }, + "demonym": "Marshallese", + "capital": "Majuro", + "iso_3166_1_alpha2": "MH", + "iso_3166_1_alpha3": "MHL", + "iso_3166_1_numeric": "584", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mh" + ], + "alt_spellings": [ + "MH", + "Republic of the Marshall Islands", + "Aolepān Aorōkin M̧ajeļ" + ], + "languages": { + "eng": "English", + "mah": "Marshallese" + }, + "translations": { + "deu": { + "official": "Republik der Marshall-Inseln", + "common": "Marshallinseln" + }, + "fra": { + "official": "République des Îles Marshall", + "common": "Îles Marshall" + }, + "hrv": { + "official": "Republika Maršalovi Otoci", + "common": "Maršalovi Otoci" + }, + "ita": { + "official": "Repubblica delle Isole Marshall", + "common": "Isole Marshall" + }, + "jpn": { + "official": "マーシャル諸島共和国", + "common": "マーシャル諸島" + }, + "nld": { + "official": "Republiek van de Marshall-eilanden", + "common": "Marshalleilanden" + }, + "por": { + "official": "República das Ilhas Marshall", + "common": "Ilhas Marshall" + }, + "rus": { + "official": "Республика Маршалловы острова", + "common": "Маршалловы Острова" + }, + "spa": { + "official": "República de las Islas Marshall", + "common": "Islas Marshall" + }, + "fin": { + "official": "Marshallinsaarten tasavalta", + "common": "Marshallinsaaret" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "9 00 N", + "latitude_dec": "7.286207675933838", + "longitude": "168 00 E", + "longitude_dec": "168.75140380859375", + "max_latitude": "19.316667", + "max_longitude": "172.8", + "min_latitude": "4.566667", + "min_longitude": "160.8", + "area": 181, + "region": "Oceania", + "subregion": "Micronesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "057", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "692" + ], + "national_prefix": "1", + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2080185, + "edgar": "1T", + "itu": "MHL", + "marc": "xe", + "wmo": "MH", + "ds": 0, + "fifa": "MHL", + "fips": "RM", + "gaul": 157, + "ioc": "MHL", + "cowc": "MSI", + "cown": 983, + "fao": 127, + "imf": 867, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MK": { + "name": { + "common": "Macedonia", + "official": "Republic of Macedonia", + "native": { + "mkd": { + "official": "Република Македонија", + "common": "Македонија" + } + } + }, + "demonym": "Macedonian", + "capital": "Skopje", + "iso_3166_1_alpha2": "MK", + "iso_3166_1_alpha3": "MKD", + "iso_3166_1_numeric": "807", + "currency": { + "MKD": { + "iso_4217_code": "MKD", + "iso_4217_numeric": 807, + "iso_4217_name": "Macedonian denar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mk" + ], + "alt_spellings": [ + "MK", + "Macedonia, the Former Yugoslav Republic of", + "Republic of Macedonia", + "Република Македонија" + ], + "languages": { + "mkd": "Macedonian" + }, + "translations": { + "deu": { + "official": "Republik Mazedonien", + "common": "Mazedonien" + }, + "fra": { + "official": "République de Macédoine", + "common": "Macédoine" + }, + "hrv": { + "official": "Republika Makedonija", + "common": "Makedonija" + }, + "ita": { + "official": "Repubblica di Macedonia", + "common": "Macedonia" + }, + "jpn": { + "official": "マケドニア共和国", + "common": "マケドニア旧ユーゴスラビア共和国" + }, + "nld": { + "official": "Republic of Macedonia", + "common": "Macedonië" + }, + "por": { + "official": "República da Macedónia", + "common": "Macedónia" + }, + "rus": { + "official": "Республика Македония", + "common": "Республика Македония" + }, + "spa": { + "official": "República de Macedonia", + "common": "Macedonia" + }, + "fin": { + "official": "Makedonian tasavalta", + "common": "Makedonia" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "41 50 N", + "latitude_dec": "41.60045623779297", + "longitude": "22 00 E", + "longitude_dec": "21.700895309448242", + "max_latitude": "42.373056", + "max_longitude": "23.033333", + "min_latitude": "40.866667", + "min_longitude": "20.459167", + "area": 25713, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": true, + "borders": [ + "ALB", + "BGR", + "GRC", + "UNK", + "SRB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "389" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 718075, + "edgar": 0, + "itu": "MKD", + "marc": "xn", + "wmo": "MJ", + "ds": "MK", + "fifa": "MKD", + "fips": "MK", + "gaul": 241, + "ioc": "MKD", + "cowc": "MAC", + "cown": 343, + "fao": 154, + "imf": 962, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{street}}\n{{city}} {{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "ML": { + "name": { + "common": "Mali", + "official": "Republic of Mali", + "native": { + "fra": { + "official": "République du Mali", + "common": "Mali" + } + } + }, + "demonym": "Malian", + "capital": "Bamako", + "iso_3166_1_alpha2": "ML", + "iso_3166_1_alpha3": "MLI", + "iso_3166_1_numeric": "466", + "currency": { + "XOF": { + "iso_4217_code": "XOF", + "iso_4217_numeric": 952, + "iso_4217_name": "CFA Franc BCEAO", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".ml" + ], + "alt_spellings": [ + "ML", + "Republic of Mali", + "République du Mali" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Republik Mali", + "common": "Mali" + }, + "fra": { + "official": "République du Mali", + "common": "Mali" + }, + "hrv": { + "official": "Republika Mali", + "common": "Mali" + }, + "ita": { + "official": "Repubblica del Mali", + "common": "Mali" + }, + "jpn": { + "official": "マリ共和国", + "common": "マリ" + }, + "nld": { + "official": "Republiek Mali", + "common": "Mali" + }, + "por": { + "official": "República do Mali", + "common": "Mali" + }, + "rus": { + "official": "Республика Мали", + "common": "Мали" + }, + "spa": { + "official": "República de Malí", + "common": "Mali" + }, + "fin": { + "official": "Malin tasavalta", + "common": "Mali" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "17 00 N", + "latitude_dec": "17.35776710510254", + "longitude": "4 00 W", + "longitude_dec": "-3.5273818969726562", + "max_latitude": "26", + "max_longitude": "13", + "min_latitude": "10.15", + "min_longitude": "-12.55", + "area": 1240192, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": true, + "borders": [ + "DZA", + "BFA", + "GIN", + "CIV", + "MRT", + "NER", + "SEN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "223" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2453866, + "edgar": "O0", + "itu": "MLI", + "marc": "ml", + "wmo": "MI", + "ds": "RMM", + "fifa": "MLI", + "fips": "ML", + "gaul": 155, + "ioc": "MLI", + "cowc": "MLI", + "cown": 432, + "fao": 133, + "imf": 678, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MT": { + "name": { + "common": "Malta", + "official": "Republic of Malta", + "native": { + "eng": { + "official": "Republic of Malta", + "common": "Malta" + }, + "mlt": { + "official": "Repubblika ta ' Malta", + "common": "Malta" + } + } + }, + "demonym": "Maltese", + "capital": "Valletta", + "iso_3166_1_alpha2": "MT", + "iso_3166_1_alpha3": "MLT", + "iso_3166_1_numeric": "470", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mt" + ], + "alt_spellings": [ + "MT", + "Republic of Malta", + "Repubblika ta' Malta" + ], + "languages": { + "eng": "English", + "mlt": "Maltese" + }, + "translations": { + "deu": { + "official": "Republik Malta", + "common": "Malta" + }, + "fra": { + "official": "République de Malte", + "common": "Malte" + }, + "hrv": { + "official": "Republika Malta", + "common": "Malta" + }, + "ita": { + "official": "Repubblica di Malta", + "common": "Malta" + }, + "jpn": { + "official": "マルタ共和国", + "common": "マルタ" + }, + "nld": { + "official": "Republiek Malta", + "common": "Malta" + }, + "por": { + "official": "República de Malta", + "common": "Malta" + }, + "rus": { + "official": "Республика Мальта", + "common": "Мальта" + }, + "spa": { + "official": "República de Malta", + "common": "Malta" + }, + "fin": { + "official": "Maltan tasavalta", + "common": "Malta" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "35 50 N", + "latitude_dec": "35.93336486816406", + "longitude": "14 35 E", + "longitude_dec": "14.381033897399902", + "max_latitude": "36.081944", + "max_longitude": "14.575", + "min_latitude": "35.783889", + "min_longitude": "14.185556", + "area": 316, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "356" + ], + "national_prefix": "21", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2562770, + "edgar": "O1", + "itu": "MLT", + "marc": "mm", + "wmo": "ML", + "ds": "M", + "fifa": "MLT", + "fips": "MT", + "gaul": 156, + "ioc": "MLT", + "cowc": "MLT", + "cown": 338, + "fao": 134, + "imf": 181, + "ar5": "EIT", + "address_format": null, + "eu_member": true, + "vat_rates": { + "standard": 18, + "reduced": [ + 5, + 7 + ], + "super_reduced": null, + "parking": null + } + } + }, + "MM": { + "name": { + "common": "Myanmar", + "official": "Republic of the Union of Myanmar", + "native": { + "mya": { + "official": "ပြည်ထောင်စု သမ္မတ မြန်မာနိုင်ငံတော်", + "common": "မြန်မာ" + } + } + }, + "demonym": "Bamar", + "capital": "Naypyidaw", + "iso_3166_1_alpha2": "MM", + "iso_3166_1_alpha3": "MMR", + "iso_3166_1_numeric": "104", + "currency": { + "MMK": { + "iso_4217_code": "MMK", + "iso_4217_numeric": 104, + "iso_4217_name": "Kyat", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mm" + ], + "alt_spellings": [ + "MM", + "Burma", + "Republic of the Union of Myanmar", + "Pyidaunzu Thanmăda Myăma Nainngandaw" + ], + "languages": { + "mya": "Burmese" + }, + "translations": { + "deu": { + "official": "Republik der Union von Myanmar", + "common": "Myanmar" + }, + "fra": { + "official": "République de l'Union du Myanmar", + "common": "Birmanie" + }, + "hrv": { + "official": "Republika Unije Mijanmar", + "common": "Mijanmar" + }, + "ita": { + "official": "Repubblica dell'Unione di Myanmar", + "common": "Birmania" + }, + "jpn": { + "official": "ミャンマー連邦共和国", + "common": "ミャンマー" + }, + "nld": { + "official": "Republiek van de Unie van Myanmar", + "common": "Myanmar" + }, + "por": { + "official": "República da União de Myanmar", + "common": "Myanmar" + }, + "rus": { + "official": "Республика Союза Мьянма", + "common": "Мьянма" + }, + "spa": { + "official": "República de la Unión de Myanmar", + "common": "Myanmar" + }, + "fin": { + "official": "Myanmarin liiton tasavalta", + "common": "Myanmar" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "22 00 N", + "latitude_dec": "20.330142974853516", + "longitude": "98 00 E", + "longitude_dec": "96.52182006835938", + "max_latitude": "28.35", + "max_longitude": "102", + "min_latitude": "6", + "min_longitude": "92.190833", + "area": 676578, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": false, + "borders": [ + "BGD", + "CHN", + "IND", + "LAO", + "THA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "95" + ], + "national_prefix": null, + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1327865, + "edgar": "E1", + "itu": "MYA", + "marc": "br", + "wmo": "BM", + "ds": "BUR", + "fifa": "MYA", + "fips": "BM", + "gaul": 171, + "ioc": "MYA", + "cowc": "MYA", + "cown": 775, + "fao": 28, + "imf": 518, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "ME": { + "name": { + "common": "Montenegro", + "official": "Montenegro", + "native": { + "srp": { + "official": "Црна Гора", + "common": "Црна Гора" + } + } + }, + "demonym": "Montenegrin", + "capital": "Podgorica", + "iso_3166_1_alpha2": "ME", + "iso_3166_1_alpha3": "MNE", + "iso_3166_1_numeric": "499", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".me" + ], + "alt_spellings": [ + "ME", + "Crna Gora" + ], + "languages": { + "srp": "Montenegrin" + }, + "translations": { + "deu": { + "official": "Montenegro", + "common": "Montenegro" + }, + "fra": { + "official": "Monténégro", + "common": "Monténégro" + }, + "hrv": { + "official": "Crna Gora", + "common": "Crna Gora" + }, + "ita": { + "official": "Montenegro", + "common": "Montenegro" + }, + "jpn": { + "official": "モンテネグロ", + "common": "モンテネグロ" + }, + "nld": { + "official": "Montenegro", + "common": "Montenegro" + }, + "por": { + "official": "Montenegro", + "common": "Montenegro" + }, + "rus": { + "official": "Черногория", + "common": "Черногория" + }, + "spa": { + "official": "Montenegro", + "common": "Montenegro" + }, + "fin": { + "official": "Montenegro", + "common": "Montenegro" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "42 30 N", + "latitude_dec": "42.752803802490234", + "longitude": "19 18 E", + "longitude_dec": "19.237918853759766", + "max_latitude": "43.547778", + "max_longitude": "20.3425", + "min_latitude": "41.864167", + "min_longitude": "18.438056", + "area": 13812, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [ + "ALB", + "BIH", + "HRV", + "UNK", + "SRB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "382" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "99" + }, + "extra": { + "geonameid": 3194884, + "edgar": "Z5", + "itu": "MNE", + "marc": "mo", + "wmo": 0, + "ds": "MNE", + "fifa": "MNE", + "fips": "MJ", + "gaul": 2647, + "ioc": "MNE", + "cowc": "MNG", + "cown": 341, + "fao": 273, + "imf": 943, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MN": { + "name": { + "common": "Mongolia", + "official": "Mongolia", + "native": { + "mon": { + "official": "Монгол улс", + "common": "Монгол улс" + } + } + }, + "demonym": "Mongolian", + "capital": "Ulan Bator", + "iso_3166_1_alpha2": "MN", + "iso_3166_1_alpha3": "MNG", + "iso_3166_1_numeric": "496", + "currency": { + "MNT": { + "iso_4217_code": "MNT", + "iso_4217_numeric": 496, + "iso_4217_name": "Tugrik", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mn" + ], + "alt_spellings": [ + "MN" + ], + "languages": { + "mon": "Mongolian" + }, + "translations": { + "deu": { + "official": "Mongolei", + "common": "Mongolei" + }, + "fra": { + "official": "Mongolie", + "common": "Mongolie" + }, + "hrv": { + "official": "Mongolija", + "common": "Mongolija" + }, + "ita": { + "official": "Mongolia", + "common": "Mongolia" + }, + "jpn": { + "official": "モンゴル", + "common": "モンゴル" + }, + "nld": { + "official": "Mongolië", + "common": "Mongolië" + }, + "por": { + "official": "Mongólia", + "common": "Mongólia" + }, + "rus": { + "official": "Монголия", + "common": "Монголия" + }, + "spa": { + "official": "Mongolia", + "common": "Mongolia" + }, + "fin": { + "official": "Mongolian tasavalta", + "common": "Mongolia" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "46 00 N", + "latitude_dec": "46.83647918701172", + "longitude": "105 00 E", + "longitude_dec": "103.06689453125", + "max_latitude": "52.1", + "max_longitude": "119.916667", + "min_latitude": "41.55", + "min_longitude": "87.783333", + "area": 1564110, + "region": "Asia", + "subregion": "Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "030", + "landlocked": true, + "borders": [ + "CHN", + "RUS" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "976" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8, + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "001" + }, + "extra": { + "geonameid": 2029969, + "edgar": "P0", + "itu": "MNG", + "marc": "mp", + "wmo": "MO", + "ds": "MGL", + "fifa": "MNG", + "fips": "MG", + "gaul": 167, + "ioc": "MGL", + "cowc": "MON", + "cown": 712, + "fao": 141, + "imf": 948, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MP": { + "name": { + "common": "Northern Mariana Islands", + "official": "Commonwealth of the Northern Mariana Islands", + "native": { + "cal": { + "official": "Commonwealth of the Northern Mariana Islands", + "common": "Northern Mariana Islands" + }, + "cha": { + "official": "Sankattan Siha Na Islas Mariånas", + "common": "Na Islas Mariånas" + }, + "eng": { + "official": "Commonwealth of the Northern Mariana Islands", + "common": "Northern Mariana Islands" + } + } + }, + "demonym": "American", + "capital": "Saipan", + "iso_3166_1_alpha2": "MP", + "iso_3166_1_alpha3": "MNP", + "iso_3166_1_numeric": "580", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mp" + ], + "alt_spellings": [ + "MP", + "Commonwealth of the Northern Mariana Islands", + "Sankattan Siha Na Islas Mariånas" + ], + "languages": { + "cal": "Carolinian", + "cha": "Chamorro", + "eng": "English" + }, + "translations": { + "deu": { + "official": "Commonwealth der Nördlichen Marianen", + "common": "Nördliche Marianen" + }, + "fra": { + "official": "Commonwealth des îles Mariannes du Nord", + "common": "Îles Mariannes du Nord" + }, + "hrv": { + "official": "Zajednica je Sjeverni Marijanski otoci", + "common": "Sjevernomarijanski otoci" + }, + "ita": { + "official": "Commonwealth delle Isole Marianne Settentrionali", + "common": "Isole Marianne Settentrionali" + }, + "jpn": { + "official": "北マリアナ諸島", + "common": "北マリアナ諸島" + }, + "nld": { + "official": "Commonwealth van de Noordelijke Marianen", + "common": "Noordelijke Marianeneilanden" + }, + "por": { + "official": "Comunidade das Ilhas Marianas do Norte", + "common": "Marianas Setentrionais" + }, + "rus": { + "official": "Содружество Северных Марианских островов", + "common": "Северные Марианские острова" + }, + "spa": { + "official": "Mancomunidad de las Islas Marianas del Norte", + "common": "Islas Marianas del Norte" + }, + "fin": { + "official": "Pohjois-Mariaanit", + "common": "Pohjois-Mariaanit" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "15 12 N", + "latitude_dec": "15.262779235839844", + "longitude": "145 45 E", + "longitude_dec": "145.8045654296875", + "max_latitude": "20.5534826", + "max_longitude": "146.0646485", + "min_latitude": "4.1103823", + "min_longitude": "144.886365", + "area": 464, + "region": "Oceania", + "subregion": "Micronesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "057", + "landlocked": false, + "borders": [], + "independent": "Commonwealth of US" + }, + "dialling": { + "calling_code": [ + "1670" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 4041468, + "edgar": "1V", + "itu": "MRA", + "marc": "nw", + "wmo": "MY", + "ds": "USA", + "fifa": "NMI", + "fips": "CQ", + "gaul": 185, + "ioc": "NMA", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MZ": { + "name": { + "common": "Mozambique", + "official": "Republic of Mozambique", + "native": { + "por": { + "official": "República de Moçambique", + "common": "Moçambique" + } + } + }, + "demonym": "Mozambican", + "capital": "Maputo", + "iso_3166_1_alpha2": "MZ", + "iso_3166_1_alpha3": "MOZ", + "iso_3166_1_numeric": "508", + "currency": { + "MZN": { + "iso_4217_code": "MZN", + "iso_4217_numeric": 943, + "iso_4217_name": "Mozambique Metical", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mz" + ], + "alt_spellings": [ + "MZ", + "Republic of Mozambique", + "República de Moçambique" + ], + "languages": { + "por": "Portuguese" + }, + "translations": { + "deu": { + "official": "Republik Mosambik", + "common": "Mosambik" + }, + "fra": { + "official": "République du Mozambique", + "common": "Mozambique" + }, + "hrv": { + "official": "Republika Mozambiku", + "common": "Mozambik" + }, + "ita": { + "official": "Repubblica del Mozambico", + "common": "Mozambico" + }, + "jpn": { + "official": "モザンビーク共和国", + "common": "モザンビーク" + }, + "nld": { + "official": "Republiek Mozambique", + "common": "Mozambique" + }, + "por": { + "official": "República de Moçambique", + "common": "Moçambique" + }, + "rus": { + "official": "Республика Мозамбик", + "common": "Мозамбик" + }, + "spa": { + "official": "República de Mozambique", + "common": "Mozambique" + }, + "fin": { + "official": "Mosambikin tasavalta", + "common": "Mosambik" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "18 15 S", + "latitude_dec": "-17.555864334106445", + "longitude": "35 00 E", + "longitude_dec": "35.955692291259766", + "max_latitude": "15.033333", + "max_longitude": "40.845278", + "min_latitude": "-26.857222", + "min_longitude": "30.231389", + "area": 801590, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [ + "MWI", + "ZAF", + "SWZ", + "TZA", + "ZMB", + "ZWE" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "258" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1036973, + "edgar": "P3", + "itu": "MOZ", + "marc": "mz", + "wmo": "MZ", + "ds": "MOC", + "fifa": "MOZ", + "fips": "MZ", + "gaul": 170, + "ioc": "MOZ", + "cowc": "MZM", + "cown": 541, + "fao": 144, + "imf": 688, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MR": { + "name": { + "common": "Mauritania", + "official": "Islamic Republic of Mauritania", + "native": { + "ara": { + "official": "الجمهورية الإسلامية الموريتانية", + "common": "موريتانيا" + } + } + }, + "demonym": "Mauritanian", + "capital": "Nouakchott", + "iso_3166_1_alpha2": "MR", + "iso_3166_1_alpha3": "MRT", + "iso_3166_1_numeric": "478", + "currency": { + "MRO": { + "iso_4217_code": "MRO", + "iso_4217_numeric": 478, + "iso_4217_name": "Ouguiya", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mr" + ], + "alt_spellings": [ + "MR", + "Islamic Republic of Mauritania", + "al-Jumhūriyyah al-ʾIslāmiyyah al-Mūrītāniyyah" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Islamische Republik Mauretanien", + "common": "Mauretanien" + }, + "fra": { + "official": "République islamique de Mauritanie", + "common": "Mauritanie" + }, + "hrv": { + "official": "Islamska Republika Mauritanija", + "common": "Mauritanija" + }, + "ita": { + "official": "Repubblica islamica di Mauritania", + "common": "Mauritania" + }, + "jpn": { + "official": "モーリタニア·イスラム共和国", + "common": "モーリタニア" + }, + "nld": { + "official": "Islamitische Republiek Mauritanië", + "common": "Mauritanië" + }, + "por": { + "official": "República Islâmica da Mauritânia", + "common": "Mauritânia" + }, + "rus": { + "official": "Исламская Республика Мавритания", + "common": "Мавритания" + }, + "spa": { + "official": "República Islámica de Mauritania", + "common": "Mauritania" + }, + "fin": { + "official": "Mauritanian islamilainen tasavalta", + "common": "Mauritania" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "20 00 N", + "latitude_dec": "20.258995056152344", + "longitude": "12 00 W", + "longitude_dec": "-10.364437103271484", + "max_latitude": "26.9", + "max_longitude": "13", + "min_latitude": "14.7382733887", + "min_longitude": "-17.079444", + "area": 1030700, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "DZA", + "MLI", + "SEN", + "ESH" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "222" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2378080, + "edgar": "O3", + "itu": "MTN", + "marc": "mu", + "wmo": "MT", + "ds": "RIM", + "fifa": "MTN", + "fips": "MR", + "gaul": 159, + "ioc": "MTN", + "cowc": "MAA", + "cown": 435, + "fao": 136, + "imf": 682, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MS": { + "name": { + "common": "Montserrat", + "official": "Montserrat", + "native": { + "eng": { + "official": "Montserrat", + "common": "Montserrat" + } + } + }, + "demonym": "Montserratian", + "capital": "Plymouth", + "iso_3166_1_alpha2": "MS", + "iso_3166_1_alpha3": "MSR", + "iso_3166_1_numeric": "500", + "currency": { + "XCD": { + "iso_4217_code": "XCD", + "iso_4217_numeric": 951, + "iso_4217_name": "East Caribbean Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ms" + ], + "alt_spellings": [ + "MS" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Montserrat", + "common": "Montserrat" + }, + "fra": { + "official": "Montserrat", + "common": "Montserrat" + }, + "hrv": { + "official": "Montserrat", + "common": "Montserrat" + }, + "ita": { + "official": "Montserrat", + "common": "Montserrat" + }, + "jpn": { + "official": "モントセラト", + "common": "モントセラト" + }, + "nld": { + "official": "Montserrat", + "common": "Montserrat" + }, + "por": { + "official": "Montserrat", + "common": "Montserrat" + }, + "rus": { + "official": "Монтсеррат", + "common": "Монтсеррат" + }, + "spa": { + "official": "Montserrat", + "common": "Montserrat" + }, + "fin": { + "official": "Montserrat", + "common": "Montserrat" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "16 45 N", + "latitude_dec": "16.735998153686523", + "longitude": "62 12 W", + "longitude_dec": "-62.188819885253906", + "max_latitude": "16.816667", + "max_longitude": "-62.15", + "min_latitude": "16.666667", + "min_longitude": "-62.233333", + "area": 102, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "EMEA", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "1664" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3578097, + "edgar": "P1", + "itu": "MSR", + "marc": "mj", + "wmo": 0, + "ds": 0, + "fifa": "MSR", + "fips": "MH", + "gaul": 168, + "ioc": "MNT", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 351, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MQ": { + "name": { + "common": "Martinique", + "official": "Martinique", + "native": { + "fra": { + "official": "Martinique", + "common": "Martinique" + } + } + }, + "demonym": "French", + "capital": "Fort-de-France", + "iso_3166_1_alpha2": "MQ", + "iso_3166_1_alpha3": "MTQ", + "iso_3166_1_numeric": "474", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mq" + ], + "alt_spellings": [ + "MQ" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Martinique", + "common": "Martinique" + }, + "fra": { + "official": "Martinique", + "common": "Martinique" + }, + "hrv": { + "official": "Martinique", + "common": "Martinique" + }, + "ita": { + "official": "Martinique", + "common": "Martinica" + }, + "jpn": { + "official": "マルティニーク島", + "common": "マルティニーク" + }, + "nld": { + "official": "Martinique", + "common": "Martinique" + }, + "por": { + "official": "Martinique", + "common": "Martinica" + }, + "rus": { + "official": "Мартиника", + "common": "Мартиника" + }, + "spa": { + "official": "Martinica", + "common": "Martinica" + }, + "fin": { + "official": "Martinique", + "common": "Martinique" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "", + "latitude_dec": "14.642807960510254", + "longitude": "", + "longitude_dec": "-60.97755432128906", + "max_latitude": "14.866667", + "max_longitude": "-60.816667", + "min_latitude": "14.383333", + "min_longitude": "-61.966667", + "area": 1128, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Part of FR" + }, + "dialling": { + "calling_code": [ + "596" + ], + "national_prefix": null, + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3570311, + "edgar": "O2", + "itu": "MRT", + "marc": "mq", + "wmo": "MR", + "ds": "F", + "fifa": "MTQ", + "fips": "MB", + "gaul": 158, + "ioc": "MRT", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 349, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MU": { + "name": { + "common": "Mauritius", + "official": "Republic of Mauritius", + "native": { + "eng": { + "official": "Republic of Mauritius", + "common": "Mauritius" + }, + "fra": { + "official": "République de Maurice", + "common": "Maurice" + }, + "mfe": { + "official": "Republik Moris", + "common": "Moris" + } + } + }, + "demonym": "Mauritian", + "capital": "Port Louis", + "iso_3166_1_alpha2": "MU", + "iso_3166_1_alpha3": "MUS", + "iso_3166_1_numeric": "480", + "currency": { + "MUR": { + "iso_4217_code": "MUR", + "iso_4217_numeric": 480, + "iso_4217_name": "Mauritius Rupee", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mu" + ], + "alt_spellings": [ + "MU", + "Republic of Mauritius", + "République de Maurice" + ], + "languages": { + "eng": "English", + "fra": "French", + "mfe": "Mauritian Creole" + }, + "translations": { + "deu": { + "official": "Republik Mauritius", + "common": "Mauritius" + }, + "fra": { + "official": "République de Maurice", + "common": "Île Maurice" + }, + "hrv": { + "official": "Republika Mauricijus", + "common": "Mauricijus" + }, + "ita": { + "official": "Repubblica di Mauritius", + "common": "Mauritius" + }, + "jpn": { + "official": "モーリシャス共和国", + "common": "モーリシャス" + }, + "nld": { + "official": "Republiek Mauritius", + "common": "Mauritius" + }, + "por": { + "official": "República das Maurícias", + "common": "Maurício" + }, + "rus": { + "official": "Республика Маврикий", + "common": "Маврикий" + }, + "spa": { + "official": "República de Mauricio", + "common": "Mauricio" + }, + "fin": { + "official": "Mauritiuksen tasavalta", + "common": "Mauritius" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "20 17 S", + "latitude_dec": "-20.220409393310547", + "longitude": "57 33 E", + "longitude_dec": "57.589378356933594", + "max_latitude": "-5.25", + "max_longitude": "72.466667", + "min_latitude": "-20.516667", + "min_longitude": "56.6", + "area": 2040, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "230" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "020" + }, + "extra": { + "geonameid": 934292, + "edgar": "O4", + "itu": "MAU", + "marc": "mf", + "wmo": "MA", + "ds": "MS", + "fifa": "MRI", + "fips": "MP", + "gaul": 160, + "ioc": "MRI", + "cowc": "MAS", + "cown": 590, + "fao": 137, + "imf": 684, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MW": { + "name": { + "common": "Malawi", + "official": "Republic of Malawi", + "native": { + "eng": { + "official": "Republic of Malawi", + "common": "Malawi" + }, + "nya": { + "official": "Chalo cha Malawi, Dziko la Malaŵi", + "common": "Malaŵi" + } + } + }, + "demonym": "Malawian", + "capital": "Lilongwe", + "iso_3166_1_alpha2": "MW", + "iso_3166_1_alpha3": "MWI", + "iso_3166_1_numeric": "454", + "currency": { + "MWK": { + "iso_4217_code": "MWK", + "iso_4217_numeric": 454, + "iso_4217_name": "Kwacha", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".mw" + ], + "alt_spellings": [ + "MW", + "Republic of Malawi" + ], + "languages": { + "eng": "English", + "nya": "Chewa" + }, + "translations": { + "deu": { + "official": "Republik Malawi", + "common": "Malawi" + }, + "fra": { + "official": "République du Malawi", + "common": "Malawi" + }, + "hrv": { + "official": "Republika Malavi", + "common": "Malavi" + }, + "ita": { + "official": "Repubblica del Malawi", + "common": "Malawi" + }, + "jpn": { + "official": "マラウイ共和国", + "common": "マラウイ" + }, + "nld": { + "official": "Republiek Malawi", + "common": "Malawi" + }, + "por": { + "official": "República do Malawi", + "common": "Malawi" + }, + "rus": { + "official": "Республика Малави", + "common": "Малави" + }, + "spa": { + "official": "República de Malawi", + "common": "Malawi" + }, + "fin": { + "official": "Malawin tasavalta", + "common": "Malawi" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "13 30 S", + "latitude_dec": "-13.523577690124512", + "longitude": "34 00 E", + "longitude_dec": "33.83546447753906", + "max_latitude": "-5", + "max_longitude": "37", + "min_latitude": "-17.15", + "min_longitude": "32.716667", + "area": 118484, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": true, + "borders": [ + "MOZ", + "TZA", + "ZMB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "265" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 927384, + "edgar": "N7", + "itu": "MWI", + "marc": "mw", + "wmo": "MW", + "ds": "MW", + "fifa": "MWI", + "fips": "MI", + "gaul": 152, + "ioc": "MAW", + "cowc": "MAW", + "cown": 553, + "fao": 130, + "imf": 676, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "MY": { + "name": { + "common": "Malaysia", + "official": "Malaysia", + "native": { + "eng": { + "official": "Malaysia", + "common": "Malaysia" + }, + "msa": { + "official": "مليسيا", + "common": "مليسيا" + } + } + }, + "demonym": "Malaysian", + "capital": "Kuala Lumpur", + "iso_3166_1_alpha2": "MY", + "iso_3166_1_alpha3": "MYS", + "iso_3166_1_numeric": "458", + "currency": { + "MYR": { + "iso_4217_code": "MYR", + "iso_4217_numeric": 458, + "iso_4217_name": "Malaysian Ringgit", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".my" + ], + "alt_spellings": [ + "MY" + ], + "languages": { + "eng": "English", + "msa": "Malay" + }, + "translations": { + "deu": { + "official": "Malaysia", + "common": "Malaysia" + }, + "fra": { + "official": "Fédération de Malaisie", + "common": "Malaisie" + }, + "hrv": { + "official": "Malezija", + "common": "Malezija" + }, + "ita": { + "official": "Malaysia", + "common": "Malesia" + }, + "jpn": { + "official": "マレーシア", + "common": "マレーシア" + }, + "nld": { + "official": "Maleisië", + "common": "Maleisië" + }, + "por": { + "official": "Malásia", + "common": "Malásia" + }, + "rus": { + "official": "Малайзия", + "common": "Малайзия" + }, + "spa": { + "official": "Malasia", + "common": "Malasia" + }, + "fin": { + "official": "Malesia", + "common": "Malesia" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "2 30 N", + "latitude_dec": "2.5490005016326904", + "longitude": "112 30 E", + "longitude_dec": "102.96261596679688", + "max_latitude": "7.383333", + "max_longitude": "120", + "min_latitude": "0.85", + "min_longitude": "99.641277", + "area": 330803, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": false, + "borders": [ + "BRN", + "IDN", + "THA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "60" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1733045, + "edgar": "N8", + "itu": "MLA", + "marc": "my", + "wmo": "MS", + "ds": "MAL", + "fifa": "MAS", + "fips": "MY", + "gaul": 153, + "ioc": "MAS", + "cowc": "MAL", + "cown": 820, + "fao": 131, + "imf": 548, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "YT": { + "name": { + "common": "Mayotte", + "official": "Department of Mayotte", + "native": { + "fra": { + "official": "Département de Mayotte", + "common": "Mayotte" + } + } + }, + "demonym": "Mahoran", + "capital": "Mamoudzou", + "iso_3166_1_alpha2": "YT", + "iso_3166_1_alpha3": "MYT", + "iso_3166_1_numeric": "175", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".yt" + ], + "alt_spellings": [ + "YT", + "Department of Mayotte", + "Département de Mayotte" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Übersee-Département Mayotte", + "common": "Mayotte" + }, + "fra": { + "official": "Département de Mayotte", + "common": "Mayotte" + }, + "hrv": { + "official": "Odjel Mayotte", + "common": "Mayotte" + }, + "ita": { + "official": "Dipartimento di Mayotte", + "common": "Mayotte" + }, + "jpn": { + "official": "マヨット科", + "common": "マヨット" + }, + "nld": { + "official": "Afdeling Mayotte", + "common": "Mayotte" + }, + "por": { + "official": "Departamento de Mayotte", + "common": "Mayotte" + }, + "rus": { + "official": "Департамент Майотта", + "common": "Майотта" + }, + "spa": { + "official": "Departamento de Mayotte", + "common": "Mayotte" + }, + "fin": { + "official": "Mayotte", + "common": "Mayotte" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "12 50 S", + "latitude_dec": "-12.79636001586914", + "longitude": "45 10 E", + "longitude_dec": "45.14227294921875", + "max_latitude": "-12.641389", + "max_longitude": "45.288611", + "min_latitude": "-12.993889", + "min_longitude": "45.024444", + "area": 374, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [], + "independent": "Part of FR" + }, + "dialling": { + "calling_code": [ + "262" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1024031, + "edgar": "2P", + "itu": "MYT", + "marc": "ot", + "wmo": 0, + "ds": 0, + "fifa": "MYT", + "fips": "MF", + "gaul": 161, + "ioc": "MAY", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "NA": { + "name": { + "common": "Namibia", + "official": "Republic of Namibia", + "native": { + "afr": { + "official": "Republiek van Namibië", + "common": "Namibië" + }, + "deu": { + "official": "Republik Namibia", + "common": "Namibia" + }, + "eng": { + "official": "Republic of Namibia", + "common": "Namibia" + }, + "her": { + "official": "Republic of Namibia", + "common": "Namibia" + }, + "hgm": { + "official": "Republic of Namibia", + "common": "Namibia" + }, + "kwn": { + "official": "Republic of Namibia", + "common": "Namibia" + }, + "loz": { + "official": "Republic of Namibia", + "common": "Namibia" + }, + "ndo": { + "official": "Republic of Namibia", + "common": "Namibia" + }, + "tsn": { + "official": "Lefatshe la Namibia", + "common": "Namibia" + } + } + }, + "demonym": "Namibian", + "capital": "Windhoek", + "iso_3166_1_alpha2": "NA", + "iso_3166_1_alpha3": "NAM", + "iso_3166_1_numeric": "516", + "currency": { + "NAD": { + "iso_4217_code": "NAD", + "iso_4217_numeric": 516, + "iso_4217_name": "Namibian dollar", + "iso_4217_minor_unit": 2 + }, + "ZAR": { + "iso_4217_code": "ZAR", + "iso_4217_numeric": 710, + "iso_4217_name": "Rand", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".na" + ], + "alt_spellings": [ + "NA", + "Namibië", + "Republic of Namibia" + ], + "languages": { + "afr": "Afrikaans", + "deu": "German", + "eng": "English", + "her": "Herero", + "hgm": "Khoekhoe", + "kwn": "Kwangali", + "loz": "Lozi", + "ndo": "Ndonga", + "tsn": "Tswana" + }, + "translations": { + "deu": { + "official": "Republik Namibia", + "common": "Namibia" + }, + "fra": { + "official": "République de Namibie", + "common": "Namibie" + }, + "hrv": { + "official": "Republika Namibija", + "common": "Namibija" + }, + "ita": { + "official": "Repubblica di Namibia", + "common": "Namibia" + }, + "jpn": { + "official": "ナミビア共和国", + "common": "ナミビア" + }, + "nld": { + "official": "Republiek Namibië", + "common": "Namibië" + }, + "por": { + "official": "República da Namíbia", + "common": "Namíbia" + }, + "rus": { + "official": "Республика Намибия", + "common": "Намибия" + }, + "spa": { + "official": "República de Namibia", + "common": "Namibia" + }, + "fin": { + "official": "Namibian tasavalta", + "common": "Namibia" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "22 00 S", + "latitude_dec": "-22.150699615478516", + "longitude": "17 00 E", + "longitude_dec": "17.177526473999023", + "max_latitude": "-16.983333", + "max_longitude": "25.25", + "min_latitude": "-28.933333", + "min_longitude": "12.016667", + "area": 825615, + "region": "Africa", + "subregion": "Southern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "018", + "landlocked": false, + "borders": [ + "AGO", + "BWA", + "ZAF", + "ZMB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "264" + ], + "national_prefix": "0", + "national_number_lengths": [ + 6, + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3355338, + "edgar": "T6", + "itu": "NMB", + "marc": "sx", + "wmo": "NM", + "ds": "NAM", + "fifa": "NAM", + "fips": "WA", + "gaul": 172, + "ioc": "NAM", + "cowc": "NAM", + "cown": 565, + "fao": 147, + "imf": 728, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "NC": { + "name": { + "common": "New Caledonia", + "official": "New Caledonia", + "native": { + "fra": { + "official": "Nouvelle-Calédonie", + "common": "Nouvelle-Calédonie" + } + } + }, + "demonym": "New Caledonian", + "capital": "Nouméa", + "iso_3166_1_alpha2": "NC", + "iso_3166_1_alpha3": "NCL", + "iso_3166_1_numeric": "540", + "currency": { + "XPF": { + "iso_4217_code": "XPF", + "iso_4217_numeric": 953, + "iso_4217_name": "CFP Franc", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".nc" + ], + "alt_spellings": [ + "NC" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Neukaledonien", + "common": "Neukaledonien" + }, + "fra": { + "official": "Nouvelle-Calédonie", + "common": "Nouvelle-Calédonie" + }, + "hrv": { + "official": "Nova Kaledonija", + "common": "Nova Kaledonija" + }, + "ita": { + "official": "Nuova Caledonia", + "common": "Nuova Caledonia" + }, + "jpn": { + "official": "ニューカレドニア", + "common": "ニューカレドニア" + }, + "nld": { + "official": "nieuw -Caledonië", + "common": "Nieuw-Caledonië" + }, + "por": { + "official": "New Caledonia", + "common": "Nova Caledónia" + }, + "rus": { + "official": "Новая Каледония", + "common": "Новая Каледония" + }, + "spa": { + "official": "nueva Caledonia", + "common": "Nueva Caledonia" + }, + "fin": { + "official": "Uusi-Kaledonia", + "common": "Uusi-Kaledonia" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "21 30 S", + "latitude_dec": "-21.31782341003418", + "longitude": "165 30 E", + "longitude_dec": "165.298583984375", + "max_latitude": "-18.016667", + "max_longitude": "172.05", + "min_latitude": "-22.783333", + "min_longitude": "158.246667", + "area": 18575, + "region": "Oceania", + "subregion": "Melanesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "054", + "landlocked": false, + "borders": [], + "independent": "Territory of FR" + }, + "dialling": { + "calling_code": [ + "687" + ], + "national_prefix": null, + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2139685, + "edgar": "1W", + "itu": "NCL", + "marc": "nl", + "wmo": "NC", + "ds": "F", + "fifa": "NCL", + "fips": "NC", + "gaul": 178, + "ioc": "NCD", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 839, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "NE": { + "name": { + "common": "Niger", + "official": "Republic of Niger", + "native": { + "fra": { + "official": "République du Niger", + "common": "Niger" + } + } + }, + "demonym": "Nigerien", + "capital": "Niamey", + "iso_3166_1_alpha2": "NE", + "iso_3166_1_alpha3": "NER", + "iso_3166_1_numeric": "562", + "currency": { + "XOF": { + "iso_4217_code": "XOF", + "iso_4217_numeric": 952, + "iso_4217_name": "CFA Franc BCEAO", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".ne" + ], + "alt_spellings": [ + "NE", + "Nijar" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Republik Niger", + "common": "Niger" + }, + "fra": { + "official": "République du Niger", + "common": "Niger" + }, + "hrv": { + "official": "Republika Niger", + "common": "Niger" + }, + "ita": { + "official": "Repubblica del Niger", + "common": "Niger" + }, + "jpn": { + "official": "ニジェール共和国", + "common": "ニジェール" + }, + "nld": { + "official": "Republiek Niger", + "common": "Niger" + }, + "por": { + "official": "República do Níger", + "common": "Níger" + }, + "rus": { + "official": "Республика Нигер", + "common": "Нигер" + }, + "spa": { + "official": "República de Níger", + "common": "Níger" + }, + "fin": { + "official": "Nigerin tasavalta", + "common": "Niger" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "16 00 N", + "latitude_dec": "17.424074172973633", + "longitude": "8 00 E", + "longitude_dec": "9.400633811950684", + "max_latitude": "26", + "max_longitude": "16", + "min_latitude": "11.716667", + "min_longitude": "0.233333", + "area": 1267000, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": true, + "borders": [ + "DZA", + "BEN", + "BFA", + "TCD", + "LBY", + "MLI", + "NGA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "227" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2440476, + "edgar": "Q4", + "itu": "NGR", + "marc": "ng", + "wmo": "NR", + "ds": "RN", + "fifa": "NIG", + "fips": "NG", + "gaul": 181, + "ioc": "NIG", + "cowc": "NIR", + "cown": 436, + "fao": 158, + "imf": 692, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "NF": { + "name": { + "common": "Norfolk Island", + "official": "Territory of Norfolk Island", + "native": { + "eng": { + "official": "Territory of Norfolk Island", + "common": "Norfolk Island" + }, + "pih": { + "official": "Teratri of Norf'k Ailen", + "common": "Norf'k Ailen" + } + } + }, + "demonym": "Norfolk Islander", + "capital": "Kingston", + "iso_3166_1_alpha2": "NF", + "iso_3166_1_alpha3": "NFK", + "iso_3166_1_numeric": "574", + "currency": { + "AUD": { + "iso_4217_code": "AUD", + "iso_4217_numeric": 36, + "iso_4217_name": "Australian Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".nf" + ], + "alt_spellings": [ + "NF", + "Territory of Norfolk Island", + "Teratri of Norf'k Ailen" + ], + "languages": { + "eng": "English", + "pih": "Norfuk" + }, + "translations": { + "deu": { + "official": "Gebiet der Norfolk-Insel", + "common": "Norfolkinsel" + }, + "fra": { + "official": "Territoire de l'île Norfolk", + "common": "Île Norfolk" + }, + "hrv": { + "official": "Teritorij Norfolk Island", + "common": "Otok Norfolk" + }, + "ita": { + "official": "Territorio di Norfolk Island", + "common": "Isola Norfolk" + }, + "jpn": { + "official": "ノーフォーク島の領土", + "common": "ノーフォーク島" + }, + "nld": { + "official": "Grondgebied van Norfolk Island", + "common": "Norfolkeiland" + }, + "por": { + "official": "Território da Ilha Norfolk", + "common": "Ilha Norfolk" + }, + "rus": { + "official": "Территория острова Норфолк", + "common": "Норфолк" + }, + "spa": { + "official": "Territorio de la Isla Norfolk", + "common": "Isla de Norfolk" + }, + "fin": { + "official": "Norfolkinsaaren territorio", + "common": "Norfolkinsaari" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "29 02 S", + "latitude_dec": "-29.036962509155273", + "longitude": "167 57 E", + "longitude_dec": "167.95523071289062", + "max_latitude": "-28.995388", + "max_longitude": "167.996927", + "min_latitude": "-29.136588", + "min_longitude": "167.916219", + "area": 36, + "region": "Oceania", + "subregion": "Australia and New Zealand", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "053", + "landlocked": false, + "borders": [], + "independent": "Territory of AU" + }, + "dialling": { + "calling_code": [ + "672" + ], + "national_prefix": null, + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2155115, + "edgar": "Q7", + "itu": "NFK", + "marc": "nx", + "wmo": "NF", + "ds": "AUS", + "fifa": "NFK", + "fips": "NF", + "gaul": 184, + "ioc": "NFI", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "NG": { + "name": { + "common": "Nigeria", + "official": "Federal Republic of Nigeria", + "native": { + "eng": { + "official": "Federal Republic of Nigeria", + "common": "Nigeria" + } + } + }, + "demonym": "Nigerian", + "capital": "Abuja", + "iso_3166_1_alpha2": "NG", + "iso_3166_1_alpha3": "NGA", + "iso_3166_1_numeric": "566", + "currency": { + "NGN": { + "iso_4217_code": "NGN", + "iso_4217_numeric": 566, + "iso_4217_name": "Naira", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ng" + ], + "alt_spellings": [ + "NG", + "Nijeriya", + "Naíjíríà", + "Federal Republic of Nigeria" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Bundesrepublik Nigeria", + "common": "Nigeria" + }, + "fra": { + "official": "République fédérale du Nigeria", + "common": "Nigéria" + }, + "hrv": { + "official": "Savezna Republika Nigerija", + "common": "Nigerija" + }, + "ita": { + "official": "Repubblica federale di Nigeria", + "common": "Nigeria" + }, + "jpn": { + "official": "ナイジェリア連邦共和国", + "common": "ナイジェリア" + }, + "nld": { + "official": "Federale Republiek Nigeria", + "common": "Nigeria" + }, + "por": { + "official": "República Federal da Nigéria", + "common": "Nigéria" + }, + "rus": { + "official": "Федеративная Республика Нигерия", + "common": "Нигерия" + }, + "spa": { + "official": "República Federal de Nigeria", + "common": "Nigeria" + }, + "fin": { + "official": "Nigerian liittotasavalta", + "common": "Nigeria" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "10 00 N", + "latitude_dec": "9.559505462646484", + "longitude": "8 00 E", + "longitude_dec": "8.077880859375", + "max_latitude": "13.866667", + "max_longitude": "14.65", + "min_latitude": "4.266667", + "min_longitude": "2.716667", + "area": 923768, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "BEN", + "CMR", + "TCD", + "NER" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "234" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": 0 + }, + "extra": { + "geonameid": 2328926, + "edgar": "Q5", + "itu": "NIG", + "marc": "nr", + "wmo": "NI", + "ds": "NGR", + "fifa": "NGA", + "fips": "NI", + "gaul": 182, + "ioc": "NGR", + "cowc": "NIG", + "cown": 475, + "fao": 159, + "imf": 694, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "NI": { + "name": { + "common": "Nicaragua", + "official": "Republic of Nicaragua", + "native": { + "spa": { + "official": "República de Nicaragua", + "common": "Nicaragua" + } + } + }, + "demonym": "Nicaraguan", + "capital": "Managua", + "iso_3166_1_alpha2": "NI", + "iso_3166_1_alpha3": "NIC", + "iso_3166_1_numeric": "558", + "currency": { + "NIO": { + "iso_4217_code": "NIO", + "iso_4217_numeric": 558, + "iso_4217_name": "Cordoba Oro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ni" + ], + "alt_spellings": [ + "NI", + "Republic of Nicaragua", + "República de Nicaragua" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Republik Nicaragua", + "common": "Nicaragua" + }, + "fra": { + "official": "République du Nicaragua", + "common": "Nicaragua" + }, + "hrv": { + "official": "Republika Nikaragva", + "common": "Nikaragva" + }, + "ita": { + "official": "Repubblica del Nicaragua", + "common": "Nicaragua" + }, + "jpn": { + "official": "ニカラグア共和国", + "common": "ニカラグア" + }, + "nld": { + "official": "Republiek Nicaragua", + "common": "Nicaragua" + }, + "por": { + "official": "República da Nicarágua", + "common": "Nicarágua" + }, + "rus": { + "official": "Республика Никарагуа", + "common": "Никарагуа" + }, + "spa": { + "official": "República de Nicaragua", + "common": "Nicaragua" + }, + "fin": { + "official": "Nicaraguan tasavalta", + "common": "Nicaragua" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "13 00 N", + "latitude_dec": "12.903773307800293", + "longitude": "85 00 W", + "longitude_dec": "-84.92182159423828", + "max_latitude": "15", + "max_longitude": "-82.566667", + "min_latitude": "10.716667", + "min_longitude": "-87.684167", + "area": 130373, + "region": "Americas", + "subregion": "Central America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "013", + "landlocked": false, + "borders": [ + "CRI", + "HND" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "505" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3617476, + "edgar": "Q3", + "itu": "NCG", + "marc": "nq", + "wmo": "NK", + "ds": "NIC", + "fifa": "NCA", + "fips": "NU", + "gaul": 180, + "ioc": "NCA", + "cowc": "NIC", + "cown": 93, + "fao": 157, + "imf": 278, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "NU": { + "name": { + "common": "Niue", + "official": "Niue", + "native": { + "eng": { + "official": "Niue", + "common": "Niue" + }, + "niu": { + "official": "Niuē", + "common": "Niuē" + } + } + }, + "demonym": "Niuean", + "capital": "Alofi", + "iso_3166_1_alpha2": "NU", + "iso_3166_1_alpha3": "NIU", + "iso_3166_1_numeric": "570", + "currency": { + "NZD": { + "iso_4217_code": "NZD", + "iso_4217_numeric": 554, + "iso_4217_name": "New Zealand Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".nu" + ], + "alt_spellings": [ + "NU" + ], + "languages": { + "eng": "English", + "niu": "Niuean" + }, + "translations": { + "deu": { + "official": "Niue", + "common": "Niue" + }, + "fra": { + "official": "Niue", + "common": "Niue" + }, + "hrv": { + "official": "Niue", + "common": "Niue" + }, + "ita": { + "official": "Niue", + "common": "Niue" + }, + "jpn": { + "official": "ニウエ", + "common": "ニウエ" + }, + "nld": { + "official": "Niue", + "common": "Niue" + }, + "por": { + "official": "Niue", + "common": "Niue" + }, + "rus": { + "official": "Ниуэ", + "common": "Ниуэ" + }, + "spa": { + "official": "Niue", + "common": "Niue" + }, + "fin": { + "official": "Niue", + "common": "Niue" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "19 02 S", + "latitude_dec": "-19.03806495666504", + "longitude": "169 52 W", + "longitude_dec": "-169.8302459716797", + "max_latitude": "-18.933333", + "max_longitude": "-169.783333", + "min_latitude": "-19.1", + "min_longitude": "-169.916667", + "area": 260, + "region": "Oceania", + "subregion": "Polynesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "061", + "landlocked": false, + "borders": [], + "independent": "Associated with NZ" + }, + "dialling": { + "calling_code": [ + "683" + ], + "national_prefix": null, + "national_number_lengths": [ + 4 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 4036232, + "edgar": "Q6", + "itu": "NIU", + "marc": "xh", + "wmo": 0, + "ds": "NZ", + "fifa": "NIU", + "fips": "NE", + "gaul": 183, + "ioc": "NIU", + "cowc": 0, + "cown": 0, + "fao": 160, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "NL": { + "name": { + "common": "Netherlands", + "official": "Netherlands", + "native": { + "nld": { + "official": "Nederland", + "common": "Nederland" + } + } + }, + "demonym": "Dutch", + "capital": "Amsterdam", + "iso_3166_1_alpha2": "NL", + "iso_3166_1_alpha3": "NLD", + "iso_3166_1_numeric": "528", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".nl" + ], + "alt_spellings": [ + "NL", + "Holland", + "Nederland" + ], + "languages": { + "nld": "Dutch" + }, + "translations": { + "deu": { + "official": "Niederlande", + "common": "Niederlande" + }, + "fra": { + "official": "Pays-Bas", + "common": "Pays-Bas" + }, + "hrv": { + "official": "Holandija", + "common": "Nizozemska" + }, + "ita": { + "official": "Paesi Bassi", + "common": "Paesi Bassi" + }, + "jpn": { + "official": "オランダ", + "common": "オランダ" + }, + "nld": { + "official": "Nederland", + "common": "Nederland" + }, + "por": { + "official": "Holanda", + "common": "Holanda" + }, + "rus": { + "official": "Нидерланды", + "common": "Нидерланды" + }, + "spa": { + "official": "Países Bajos", + "common": "Países Bajos" + }, + "fin": { + "official": "Alankomaat", + "common": "Alankomaat" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "52 30 N", + "latitude_dec": "52.34225845336914", + "longitude": "5 45 E", + "longitude_dec": "5.5281572341918945", + "max_latitude": "53.583333", + "max_longitude": "7.2", + "min_latitude": "50.75", + "min_longitude": "3.133333", + "area": 41850, + "region": "Europe", + "subregion": "Western Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "155", + "landlocked": false, + "borders": [ + "BEL", + "DEU" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "31" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2750405, + "edgar": "P7", + "itu": "HOL", + "marc": "ne", + "wmo": "NL", + "ds": "NL", + "fifa": "NED", + "fips": "NL", + "gaul": 177, + "ioc": "NED", + "cowc": "NTH", + "cown": 210, + "fao": 150, + "imf": 138, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 21, + "reduced": [ + 6 + ], + "super_reduced": null, + "parking": null + } + } + }, + "NO": { + "name": { + "common": "Norway", + "official": "Kingdom of Norway", + "native": { + "nno": { + "official": "Kongeriket Noreg", + "common": "Noreg" + }, + "nob": { + "official": "Kongeriket Norge", + "common": "Norge" + }, + "smi": { + "official": "Norgga gonagasriika", + "common": "Norgga" + } + } + }, + "demonym": "Norwegian", + "capital": "Oslo", + "iso_3166_1_alpha2": "NO", + "iso_3166_1_alpha3": "NOR", + "iso_3166_1_numeric": "578", + "currency": { + "NOK": { + "iso_4217_code": "NOK", + "iso_4217_numeric": 578, + "iso_4217_name": "Norwegian Krone", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".no" + ], + "alt_spellings": [ + "NO", + "Norge", + "Noreg", + "Kingdom of Norway", + "Kongeriket Norge", + "Kongeriket Noreg" + ], + "languages": { + "nno": "Norwegian Nynorsk", + "nob": "Norwegian Bokmål", + "smi": "Sami" + }, + "translations": { + "deu": { + "official": "Königreich Norwegen", + "common": "Norwegen" + }, + "fra": { + "official": "Royaume de Norvège", + "common": "Norvège" + }, + "hrv": { + "official": "Kraljevina Norveška", + "common": "Norveška" + }, + "ita": { + "official": "Regno di Norvegia", + "common": "Norvegia" + }, + "jpn": { + "official": "ノルウェー王国", + "common": "ノルウェー" + }, + "nld": { + "official": "Koninkrijk Noorwegen", + "common": "Noorwegen" + }, + "por": { + "official": "Reino da Noruega", + "common": "Noruega" + }, + "rus": { + "official": "Королевство Норвегия", + "common": "Норвегия" + }, + "spa": { + "official": "Reino de Noruega", + "common": "Noruega" + }, + "fin": { + "official": "Norjan kuningaskunta", + "common": "Norja" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "62 00 N", + "latitude_dec": "66.76667022705078", + "longitude": "10 00 E", + "longitude_dec": "14.899925231933594", + "max_latitude": "71.181944", + "max_longitude": "31.166667", + "min_latitude": "56.15", + "min_longitude": "3.033333", + "area": 323802, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [ + "FIN", + "SWE", + "RUS" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "47" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3144096, + "edgar": "Q8", + "itu": "NOR", + "marc": "no", + "wmo": "NO", + "ds": "N", + "fifa": "NOR", + "fips": "NO", + "gaul": 186, + "ioc": "NOR", + "cowc": "NOR", + "cown": 385, + "fao": 162, + "imf": 142, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "NP": { + "name": { + "common": "Nepal", + "official": "Federal Democratic Republic of Nepal", + "native": { + "nep": { + "official": "नेपाल संघीय लोकतान्त्रिक गणतन्त्र", + "common": "नपल" + } + } + }, + "demonym": "Nepalese", + "capital": "Kathmandu", + "iso_3166_1_alpha2": "NP", + "iso_3166_1_alpha3": "NPL", + "iso_3166_1_numeric": "524", + "currency": { + "NPR": { + "iso_4217_code": "NPR", + "iso_4217_numeric": 524, + "iso_4217_name": "Nepalese Rupee", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".np" + ], + "alt_spellings": [ + "NP", + "Federal Democratic Republic of Nepal", + "Loktāntrik Ganatantra Nepāl" + ], + "languages": { + "nep": "Nepali" + }, + "translations": { + "deu": { + "official": "Demokratischen Bundesrepublik Nepal", + "common": "Népal" + }, + "fra": { + "official": "République du Népal", + "common": "Népal" + }, + "hrv": { + "official": "Savezna Demokratska Republika Nepal", + "common": "Nepal" + }, + "ita": { + "official": "Repubblica federale democratica del Nepal", + "common": "Nepal" + }, + "jpn": { + "official": "ネパール連邦民主共和国", + "common": "ネパール" + }, + "nld": { + "official": "Federale Democratische Republiek Nepal", + "common": "Nepal" + }, + "por": { + "official": "República Democrática Federal do Nepal", + "common": "Nepal" + }, + "rus": { + "official": "Федеративная Демократическая Республика Непал", + "common": "Непал" + }, + "spa": { + "official": "República Democrática Federal de Nepal", + "common": "Nepal" + }, + "fin": { + "official": "Nepalin demokraattinen liittotasavalta", + "common": "Nepal" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "28 00 N", + "latitude_dec": "28.259138107299805", + "longitude": "84 00 E", + "longitude_dec": "83.94416046142578", + "max_latitude": "30.45", + "max_longitude": "88.183333", + "min_latitude": "26.45", + "min_longitude": "80", + "area": 147181, + "region": "Asia", + "subregion": "Southern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "034", + "landlocked": true, + "borders": [ + "CHN", + "IND" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "977" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1282988, + "edgar": "P6", + "itu": "NPL", + "marc": "np", + "wmo": "NP", + "ds": "NEP", + "fifa": "NEP", + "fips": "NP", + "gaul": 175, + "ioc": "NEP", + "cowc": "NEP", + "cown": 790, + "fao": 149, + "imf": 558, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "NR": { + "name": { + "common": "Nauru", + "official": "Republic of Nauru", + "native": { + "eng": { + "official": "Republic of Nauru", + "common": "Nauru" + }, + "nau": { + "official": "Republic of Nauru", + "common": "Nauru" + } + } + }, + "demonym": "Nauruan", + "capital": "Yaren", + "iso_3166_1_alpha2": "NR", + "iso_3166_1_alpha3": "NRU", + "iso_3166_1_numeric": "520", + "currency": { + "AUD": { + "iso_4217_code": "AUD", + "iso_4217_numeric": 36, + "iso_4217_name": "Australian Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".nr" + ], + "alt_spellings": [ + "NR", + "Naoero", + "Pleasant Island", + "Republic of Nauru", + "Ripublik Naoero" + ], + "languages": { + "eng": "English", + "nau": "Nauru" + }, + "translations": { + "deu": { + "official": "Republik Nauru", + "common": "Nauru" + }, + "fra": { + "official": "République de Nauru", + "common": "Nauru" + }, + "hrv": { + "official": "Republika Nauru", + "common": "Nauru" + }, + "ita": { + "official": "Repubblica di Nauru", + "common": "Nauru" + }, + "jpn": { + "official": "ナウル共和国", + "common": "ナウル" + }, + "nld": { + "official": "Republiek Nauru", + "common": "Nauru" + }, + "por": { + "official": "República de Nauru", + "common": "Nauru" + }, + "rus": { + "official": "Республика Науру", + "common": "Науру" + }, + "spa": { + "official": "República de Nauru", + "common": "Nauru" + }, + "fin": { + "official": "Naurun tasavalta", + "common": "Nauru" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "0 32 S", + "latitude_dec": "-0.5316064953804016", + "longitude": "166 55 E", + "longitude_dec": "166.9364013671875", + "max_latitude": "-0.5", + "max_longitude": "166.95", + "min_latitude": "-0.55", + "min_longitude": "166.916667", + "area": 21, + "region": "Oceania", + "subregion": "Micronesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "057", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "674" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2110425, + "edgar": "P5", + "itu": "NRU", + "marc": "nu", + "wmo": "NW", + "ds": "NAU", + "fifa": "NRU", + "fips": "NR", + "gaul": 173, + "ioc": "NRU", + "cowc": "NAU", + "cown": 970, + "fao": 148, + "imf": 836, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "NZ": { + "name": { + "common": "New Zealand", + "official": "New Zealand", + "native": { + "eng": { + "official": "New Zealand", + "common": "New Zealand" + }, + "mri": { + "official": "Aotearoa", + "common": "Aotearoa" + }, + "nzs": { + "official": "New Zealand", + "common": "New Zealand" + } + } + }, + "demonym": "New Zealander", + "capital": "Wellington", + "iso_3166_1_alpha2": "NZ", + "iso_3166_1_alpha3": "NZL", + "iso_3166_1_numeric": "554", + "currency": { + "NZD": { + "iso_4217_code": "NZD", + "iso_4217_numeric": 554, + "iso_4217_name": "New Zealand Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".nz" + ], + "alt_spellings": [ + "NZ", + "Aotearoa" + ], + "languages": { + "eng": "English", + "mri": "Māori", + "nzs": "New Zealand Sign Language" + }, + "translations": { + "deu": { + "official": "Neuseeland", + "common": "Neuseeland" + }, + "fra": { + "official": "Nouvelle-Zélande", + "common": "Nouvelle-Zélande" + }, + "hrv": { + "official": "Novi Zeland", + "common": "Novi Zeland" + }, + "ita": { + "official": "Nuova Zelanda", + "common": "Nuova Zelanda" + }, + "jpn": { + "official": "ニュージーランド", + "common": "ニュージーランド" + }, + "nld": { + "official": "Nieuw Zeeland", + "common": "Nieuw-Zeeland" + }, + "por": { + "official": "nova Zelândia", + "common": "Nova Zelândia" + }, + "rus": { + "official": "Новая Зеландия", + "common": "Новая Зеландия" + }, + "spa": { + "official": "nueva Zelanda", + "common": "Nueva Zelanda" + }, + "fin": { + "official": "Uusi-Seelanti", + "common": "Uusi-Seelanti" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "41 00 S", + "latitude_dec": "-44.05629348754883", + "longitude": "174 00 E", + "longitude_dec": "170.35415649414062", + "max_latitude": "-29.216667", + "max_longitude": "-178.9", + "min_latitude": "-52.616667", + "min_longitude": "179.066667", + "area": 270467, + "region": "Oceania", + "subregion": "Australia and New Zealand", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "053", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "64" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 1 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2186224, + "edgar": "Q2", + "itu": "NZL", + "marc": "nz", + "wmo": "NZ", + "ds": "NZ", + "fifa": "NZL", + "fips": "NZ", + "gaul": 179, + "ioc": "NZL", + "cowc": "NEW", + "cown": 920, + "fao": 156, + "imf": 196, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{region}}\n{{city}} {{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "OM": { + "name": { + "common": "Oman", + "official": "Sultanate of Oman", + "native": { + "ara": { + "official": "سلطنة عمان", + "common": "عمان" + } + } + }, + "demonym": "Omani", + "capital": "Muscat", + "iso_3166_1_alpha2": "OM", + "iso_3166_1_alpha3": "OMN", + "iso_3166_1_numeric": "512", + "currency": { + "OMR": { + "iso_4217_code": "OMR", + "iso_4217_numeric": 512, + "iso_4217_name": "Rial Omani", + "iso_4217_minor_unit": 3 + } + }, + "tld": [ + ".om" + ], + "alt_spellings": [ + "OM", + "Sultanate of Oman", + "Salṭanat ʻUmān" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Sultanat Oman", + "common": "Oman" + }, + "fra": { + "official": "Sultanat d'Oman", + "common": "Oman" + }, + "hrv": { + "official": "Sultanat Oman", + "common": "Oman" + }, + "ita": { + "official": "Sultanato dell'Oman", + "common": "oman" + }, + "jpn": { + "official": "オマーン·スルタン国", + "common": "オマーン" + }, + "nld": { + "official": "Sultanaat van Oman", + "common": "Oman" + }, + "por": { + "official": "Sultanato de Omã", + "common": "Omã" + }, + "rus": { + "official": "Султанат Оман", + "common": "Оман" + }, + "spa": { + "official": "Sultanato de Omán", + "common": "Omán" + }, + "fin": { + "official": "Omanin sulttaanikunta", + "common": "Oman" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "21 00 N", + "latitude_dec": "20.566621780395508", + "longitude": "57 00 E", + "longitude_dec": "56.157962799072266", + "max_latitude": "26.505", + "max_longitude": "59.838056", + "min_latitude": "16.633333", + "min_longitude": "45", + "area": 309500, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "SAU", + "ARE", + "YEM" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "968" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 286963, + "edgar": "P4", + "itu": "OMA", + "marc": "mk", + "wmo": "OM", + "ds": 0, + "fifa": "OMA", + "fips": "MU", + "gaul": 187, + "ioc": "OMA", + "cowc": "OMA", + "cown": 698, + "fao": 221, + "imf": 449, + "ar5": 0, + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{region}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "PK": { + "name": { + "common": "Pakistan", + "official": "Islamic Republic of Pakistan", + "native": { + "eng": { + "official": "Islamic Republic of Pakistan", + "common": "Pakistan" + }, + "urd": { + "official": "اسلامی جمہوریۂ پاكستان", + "common": "پاكستان" + } + } + }, + "demonym": "Pakistani", + "capital": "Islamabad", + "iso_3166_1_alpha2": "PK", + "iso_3166_1_alpha3": "PAK", + "iso_3166_1_numeric": "586", + "currency": { + "PKR": { + "iso_4217_code": "PKR", + "iso_4217_numeric": 586, + "iso_4217_name": "Pakistan Rupee", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".pk" + ], + "alt_spellings": [ + "PK", + "Pākistān", + "Islamic Republic of Pakistan", + "Islāmī Jumhūriya'eh Pākistān" + ], + "languages": { + "eng": "English", + "urd": "Urdu" + }, + "translations": { + "deu": { + "official": "Islamische Republik Pakistan", + "common": "Pakistan" + }, + "fra": { + "official": "République islamique du Pakistan", + "common": "Pakistan" + }, + "hrv": { + "official": "Islamska Republika Pakistan", + "common": "Pakistan" + }, + "ita": { + "official": "Repubblica islamica del Pakistan", + "common": "Pakistan" + }, + "jpn": { + "official": "パキスタン", + "common": "パキスタン" + }, + "nld": { + "official": "Islamitische Republiek Pakistan", + "common": "Pakistan" + }, + "por": { + "official": "República Islâmica do Paquistão", + "common": "Paquistão" + }, + "rus": { + "official": "Исламская Республика Пакистан", + "common": "Пакистан" + }, + "spa": { + "official": "República Islámica de Pakistán", + "common": "Pakistán" + }, + "fin": { + "official": "Pakistanin islamilainen tasavalta", + "common": "Pakistan" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "30 00 N", + "latitude_dec": "29.923219680786133", + "longitude": "70 00 E", + "longitude_dec": "69.35774230957031", + "max_latitude": "37.083710704", + "max_longitude": "77.800014", + "min_latitude": "23.966667", + "min_longitude": "60.866667", + "area": 881912, + "region": "Asia", + "subregion": "Southern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "034", + "landlocked": false, + "borders": [ + "AFG", + "CHN", + "IND", + "IRN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "92" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1168579, + "edgar": "R0", + "itu": "PAK", + "marc": "pk", + "wmo": "PK", + "ds": "PK", + "fifa": "PAK", + "fips": "PK", + "gaul": 188, + "ioc": "PAK", + "cowc": "PAK", + "cown": 770, + "fao": 165, + "imf": 564, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "PA": { + "name": { + "common": "Panama", + "official": "Republic of Panama", + "native": { + "spa": { + "official": "República de Panamá", + "common": "Panamá" + } + } + }, + "demonym": "Panamanian", + "capital": "Panama City", + "iso_3166_1_alpha2": "PA", + "iso_3166_1_alpha3": "PAN", + "iso_3166_1_numeric": "591", + "currency": { + "PAB": { + "iso_4217_code": "PAB", + "iso_4217_numeric": 590, + "iso_4217_name": "Panamanian balboa", + "iso_4217_minor_unit": 2 + }, + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".pa" + ], + "alt_spellings": [ + "PA", + "Republic of Panama", + "República de Panamá" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Republik Panama", + "common": "Panama" + }, + "fra": { + "official": "République du Panama", + "common": "Panama" + }, + "hrv": { + "official": "Republika Panama", + "common": "Panama" + }, + "ita": { + "official": "Repubblica di Panama", + "common": "Panama" + }, + "jpn": { + "official": "パナマ共和国", + "common": "パナマ" + }, + "nld": { + "official": "Republiek Panama", + "common": "Panama" + }, + "por": { + "official": "República do Panamá", + "common": "Panamá" + }, + "rus": { + "official": "Республика Панама", + "common": "Панама" + }, + "spa": { + "official": "República de Panamá", + "common": "Panamá" + }, + "fin": { + "official": "Panaman tasavalta", + "common": "Panama" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "9 00 N", + "latitude_dec": "8.646247863769531", + "longitude": "80 00 W", + "longitude_dec": "-80.50607299804688", + "max_latitude": "9.65", + "max_longitude": "-77.283333", + "min_latitude": "7.213333", + "min_longitude": "-82.95", + "area": 75417, + "region": "Americas", + "subregion": "Central America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "013", + "landlocked": false, + "borders": [ + "COL", + "CRI" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "507" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3703430, + "edgar": "R1", + "itu": "PNR", + "marc": "pn", + "wmo": "PM", + "ds": "PA", + "fifa": "PAN", + "fips": "PM", + "gaul": 191, + "ioc": "PAN", + "cowc": "PAN", + "cown": 95, + "fao": 166, + "imf": 283, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "PN": { + "name": { + "common": "Pitcairn Islands", + "official": "Pitcairn Group of Islands", + "native": { + "eng": { + "official": "Pitcairn Group of Islands", + "common": "Pitcairn Islands" + } + } + }, + "demonym": "Pitcairn Islander", + "capital": "Adamstown", + "iso_3166_1_alpha2": "PN", + "iso_3166_1_alpha3": "PCN", + "iso_3166_1_numeric": "612", + "currency": { + "NZD": { + "iso_4217_code": "NZD", + "iso_4217_numeric": 554, + "iso_4217_name": "New Zealand Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".pn" + ], + "alt_spellings": [ + "PN", + "Pitcairn", + "Pitcairn Henderson Ducie and Oeno Islands" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Pitcairn Inselgruppe", + "common": "Pitcairn" + }, + "fra": { + "official": "Groupe d'îles Pitcairn", + "common": "Îles Pitcairn" + }, + "hrv": { + "official": "Pitcairn skupine otoka", + "common": "Pitcairnovo otočje" + }, + "ita": { + "official": "Pitcairn gruppo di isole", + "common": "Isole Pitcairn" + }, + "jpn": { + "official": "島のピトケアングループ", + "common": "ピトケアン" + }, + "nld": { + "official": "Pitcairn groep eilanden", + "common": "Pitcairneilanden" + }, + "por": { + "official": "Pitcairn grupo de ilhas", + "common": "Ilhas Pitcairn" + }, + "rus": { + "official": "Питкэрн группа островов", + "common": "Острова Питкэрн" + }, + "spa": { + "official": "Grupo de Islas Pitcairn", + "common": "Islas Pitcairn" + }, + "fin": { + "official": "Pitcairn", + "common": "Pitcairn" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "25 04 S", + "latitude_dec": "-24.372114181518555", + "longitude": "130 06 W", + "longitude_dec": "-128.31124877929688", + "max_latitude": "-23.916667", + "max_longitude": "-124.783333", + "min_latitude": "-25.066667", + "min_longitude": "-130.733333", + "area": 47, + "region": "Oceania", + "subregion": "Polynesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "061", + "landlocked": false, + "borders": [], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "64" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [], + "international_prefix": "00" + }, + "extra": { + "geonameid": 4030699, + "edgar": "R8", + "itu": "PTC", + "marc": "pc", + "wmo": "PT", + "ds": 0, + "fifa": "PCN", + "fips": "PC", + "gaul": 197, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "PE": { + "name": { + "common": "Peru", + "official": "Republic of Peru", + "native": { + "aym": { + "official": "Piruw Suyu", + "common": "Piruw" + }, + "que": { + "official": "Piruw Ripuwlika", + "common": "Piruw" + }, + "spa": { + "official": "República del Perú", + "common": "Perú" + } + } + }, + "demonym": "Peruvian", + "capital": "Lima", + "iso_3166_1_alpha2": "PE", + "iso_3166_1_alpha3": "PER", + "iso_3166_1_numeric": "604", + "currency": { + "PEN": { + "iso_4217_code": "PEN", + "iso_4217_numeric": 604, + "iso_4217_name": "Nuevo Sol", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".pe" + ], + "alt_spellings": [ + "PE", + "Republic of Peru", + "República del Perú" + ], + "languages": { + "aym": "Aymara", + "que": "Quechua", + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Republik Peru", + "common": "Peru" + }, + "fra": { + "official": "République du Pérou", + "common": "Pérou" + }, + "hrv": { + "official": "Republika Peru", + "common": "Peru" + }, + "ita": { + "official": "Repubblica del Perù", + "common": "Perù" + }, + "jpn": { + "official": "ペルー共和国", + "common": "ペルー" + }, + "nld": { + "official": "Republiek Peru", + "common": "Peru" + }, + "por": { + "official": "República do Peru", + "common": "Perú" + }, + "rus": { + "official": "Республика Перу", + "common": "Перу" + }, + "spa": { + "official": "República de Perú", + "common": "Perú" + }, + "fin": { + "official": "Perun tasavalta", + "common": "Peru" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "10 00 S", + "latitude_dec": "-9.212532997131348", + "longitude": "76 00 W", + "longitude_dec": "-74.422119140625", + "max_latitude": "4.626667", + "max_longitude": "-68.833333", + "min_latitude": "-18.333333", + "min_longitude": "-81.358333", + "area": 1285216, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "BOL", + "BRA", + "CHL", + "COL", + "ECU" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "51" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3932488, + "edgar": "R5", + "itu": "PRU", + "marc": "pe", + "wmo": "PR", + "ds": "PE", + "fifa": "PER", + "fips": "PE", + "gaul": 195, + "ioc": "PER", + "cowc": "PER", + "cown": 135, + "fao": 170, + "imf": 293, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "PH": { + "name": { + "common": "Philippines", + "official": "Republic of the Philippines", + "native": { + "eng": { + "official": "Republic of the Philippines", + "common": "Philippines" + }, + "fil": { + "official": "Republic of the Philippines", + "common": "Pilipinas" + } + } + }, + "demonym": "Filipino", + "capital": "Manila", + "iso_3166_1_alpha2": "PH", + "iso_3166_1_alpha3": "PHL", + "iso_3166_1_numeric": "608", + "currency": { + "PHP": { + "iso_4217_code": "PHP", + "iso_4217_numeric": 608, + "iso_4217_name": "Philippine Peso", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ph" + ], + "alt_spellings": [ + "PH", + "Republic of the Philippines", + "Repúblika ng Pilipinas" + ], + "languages": { + "eng": "English", + "fil": "Filipino" + }, + "translations": { + "deu": { + "official": "Republik der Philippinen", + "common": "Philippinen" + }, + "fra": { + "official": "République des Philippines", + "common": "Philippines" + }, + "hrv": { + "official": "Republika Filipini", + "common": "Filipini" + }, + "ita": { + "official": "Repubblica delle Filippine", + "common": "Filippine" + }, + "jpn": { + "official": "フィリピン共和国", + "common": "フィリピン" + }, + "nld": { + "official": "Republiek der Filipijnen", + "common": "Filipijnen" + }, + "por": { + "official": "República das Filipinas", + "common": "Filipinas" + }, + "rus": { + "official": "Республика Филиппины", + "common": "Филиппины" + }, + "spa": { + "official": "República de las Filipinas", + "common": "Filipinas" + }, + "fin": { + "official": "Filippiinien tasavalta", + "common": "Filippiinit" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "13 00 N", + "latitude_dec": "11.112666130065918", + "longitude": "122 00 E", + "longitude_dec": "122.50947570800781", + "max_latitude": "21.113056", + "max_longitude": "126.604444", + "min_latitude": "4.588889", + "min_longitude": "116.65", + "area": 342353, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "63" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1694008, + "edgar": "R6", + "itu": "PHL", + "marc": "ph", + "wmo": "PH", + "ds": "RP", + "fifa": "PHI", + "fips": "RP", + "gaul": 196, + "ioc": "PHI", + "cowc": "PHI", + "cown": 840, + "fao": 171, + "imf": 566, + "ar5": "ASIA", + "address_format": "{{recipient}}\n{{street}} {{region_short}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "PW": { + "name": { + "common": "Palau", + "official": "Republic of Palau", + "native": { + "eng": { + "official": "Republic of Palau", + "common": "Palau" + }, + "pau": { + "official": "Beluu er a Belau", + "common": "Belau" + } + } + }, + "demonym": "Palauan", + "capital": "Ngerulmud", + "iso_3166_1_alpha2": "PW", + "iso_3166_1_alpha3": "PLW", + "iso_3166_1_numeric": "585", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".pw" + ], + "alt_spellings": [ + "PW", + "Republic of Palau", + "Beluu er a Belau" + ], + "languages": { + "eng": "English", + "pau": "Palauan" + }, + "translations": { + "deu": { + "official": "Palau", + "common": "Palau" + }, + "fra": { + "official": "République des Palaos (Palau)", + "common": "Palaos (Palau)" + }, + "hrv": { + "official": "Republika Palau", + "common": "Palau" + }, + "ita": { + "official": "Repubblica di Palau", + "common": "Palau" + }, + "jpn": { + "official": "パラオ共和国", + "common": "パラオ" + }, + "nld": { + "official": "Republiek van Palau", + "common": "Palau" + }, + "por": { + "official": "República de Palau", + "common": "Palau" + }, + "rus": { + "official": "Республика Палау", + "common": "Палау" + }, + "spa": { + "official": "República de Palau", + "common": "Palau" + }, + "fin": { + "official": "Palaun tasavalta", + "common": "Palau" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "7 30 N", + "latitude_dec": "7.441900730133057", + "longitude": "134 30 E", + "longitude_dec": "134.54205322265625", + "max_latitude": "8.166667", + "max_longitude": "134.716389", + "min_latitude": "2.898333", + "min_longitude": "131.175", + "area": 459, + "region": "Oceania", + "subregion": "Micronesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "057", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "680" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1559582, + "edgar": "1Y", + "itu": "PLW", + "marc": "pw", + "wmo": 0, + "ds": 0, + "fifa": "PLW", + "fips": "PS", + "gaul": 189, + "ioc": "PLW", + "cowc": "PAL", + "cown": 986, + "fao": 180, + "imf": 565, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "PG": { + "name": { + "common": "Papua New Guinea", + "official": "Independent State of Papua New Guinea", + "native": { + "eng": { + "official": "Independent State of Papua New Guinea", + "common": "Papua New Guinea" + }, + "hmo": { + "official": "Independen Stet bilong Papua Niugini", + "common": "Papua Niu Gini" + }, + "tpi": { + "official": "Independen Stet bilong Papua Niugini", + "common": "Papua Niugini" + } + } + }, + "demonym": "Papua New Guinean", + "capital": "Port Moresby", + "iso_3166_1_alpha2": "PG", + "iso_3166_1_alpha3": "PNG", + "iso_3166_1_numeric": "598", + "currency": { + "PGK": { + "iso_4217_code": "PGK", + "iso_4217_numeric": 598, + "iso_4217_name": "Kina", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".pg" + ], + "alt_spellings": [ + "PG", + "Independent State of Papua New Guinea", + "Independen Stet bilong Papua Niugini" + ], + "languages": { + "eng": "English", + "hmo": "Hiri Motu", + "tpi": "Tok Pisin" + }, + "translations": { + "deu": { + "official": "Unabhängige Staat Papua-Neuguinea", + "common": "Papua-Neuguinea" + }, + "fra": { + "official": "État indépendant de Papouasie-Nouvelle-Guinée", + "common": "Papouasie-Nouvelle-Guinée" + }, + "hrv": { + "official": "Nezavisna Država Papui Novoj Gvineji", + "common": "Papua Nova Gvineja" + }, + "ita": { + "official": "Stato indipendente di Papua Nuova Guinea", + "common": "Papua Nuova Guinea" + }, + "jpn": { + "official": "パプアニューギニア独立国", + "common": "パプアニューギニア" + }, + "nld": { + "official": "Onafhankelijke Staat Papoea -Nieuw-Guinea", + "common": "Papoea-Nieuw-Guinea" + }, + "por": { + "official": "Estado Independente da Papua Nova Guiné", + "common": "Papua Nova Guiné" + }, + "rus": { + "official": "Независимое Государство Папуа-Новой Гвинеи", + "common": "Папуа — Новая Гвинея" + }, + "spa": { + "official": "Estado Independiente de Papúa Nueva Guinea", + "common": "Papúa Nueva Guinea" + }, + "fin": { + "official": "Papua-Uuden-Guinean Itsenäinen valtio", + "common": "Papua-Uusi-Guinea" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "6 00 S", + "latitude_dec": "-6.889159679412842", + "longitude": "147 00 E", + "longitude_dec": "146.21444702148438", + "max_latitude": "-0.733333", + "max_longitude": "159.483333", + "min_latitude": "-11.65", + "min_longitude": "120", + "area": 462840, + "region": "Oceania", + "subregion": "Melanesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "054", + "landlocked": false, + "borders": [ + "IDN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "675" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "05" + }, + "extra": { + "geonameid": 2088628, + "edgar": "R2", + "itu": "PNG", + "marc": "pp", + "wmo": "NG", + "ds": "PNG", + "fifa": "PNG", + "fips": "PP", + "gaul": 192, + "ioc": "PNG", + "cowc": "PNG", + "cown": 910, + "fao": 168, + "imf": 853, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "PL": { + "name": { + "common": "Poland", + "official": "Republic of Poland", + "native": { + "pol": { + "official": "Rzeczpospolita Polska", + "common": "Polska" + } + } + }, + "demonym": "Polish", + "capital": "Warsaw", + "iso_3166_1_alpha2": "PL", + "iso_3166_1_alpha3": "POL", + "iso_3166_1_numeric": "616", + "currency": { + "PLN": { + "iso_4217_code": "PLN", + "iso_4217_numeric": 985, + "iso_4217_name": "Zloty", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".pl" + ], + "alt_spellings": [ + "PL", + "Republic of Poland", + "Rzeczpospolita Polska" + ], + "languages": { + "pol": "Polish" + }, + "translations": { + "deu": { + "official": "Republik Polen", + "common": "Polen" + }, + "fra": { + "official": "République de Pologne", + "common": "Pologne" + }, + "hrv": { + "official": "Republika Poljska", + "common": "Poljska" + }, + "ita": { + "official": "Repubblica di Polonia", + "common": "Polonia" + }, + "jpn": { + "official": "ポーランド共和国", + "common": "ポーランド" + }, + "nld": { + "official": "Republiek Polen", + "common": "Polen" + }, + "por": { + "official": "República da Polónia", + "common": "Polónia" + }, + "rus": { + "official": "Республика Польша", + "common": "Польша" + }, + "spa": { + "official": "República de Polonia", + "common": "Polonia" + }, + "fin": { + "official": "Puolan tasavalta", + "common": "Puola" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "52 00 N", + "latitude_dec": "52.147850036621094", + "longitude": "20 00 E", + "longitude_dec": "19.37775993347168", + "max_latitude": "54.833333", + "max_longitude": "26.5", + "min_latitude": "45.5", + "min_longitude": "14", + "area": 312679, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "151", + "landlocked": false, + "borders": [ + "BLR", + "CZE", + "DEU", + "LTU", + "RUS", + "SVK", + "UKR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "48" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 798544, + "edgar": "R9", + "itu": "POL", + "marc": "pl", + "wmo": "PL", + "ds": "PL", + "fifa": "POL", + "fips": "PL", + "gaul": 198, + "ioc": "POL", + "cowc": "POL", + "cown": 290, + "fao": 173, + "imf": 964, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{region}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 23, + "reduced": [ + 5, + 8 + ], + "super_reduced": null, + "parking": null + } + } + }, + "PR": { + "name": { + "common": "Puerto Rico", + "official": "Commonwealth of Puerto Rico", + "native": { + "eng": { + "official": "Commonwealth of Puerto Rico", + "common": "Puerto Rico" + }, + "spa": { + "official": "Estado Libre Asociado de Puerto Rico", + "common": "Puerto Rico" + } + } + }, + "demonym": "Puerto Rican", + "capital": "San Juan", + "iso_3166_1_alpha2": "PR", + "iso_3166_1_alpha3": "PRI", + "iso_3166_1_numeric": "630", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".pr" + ], + "alt_spellings": [ + "PR", + "Commonwealth of Puerto Rico", + "Estado Libre Asociado de Puerto Rico" + ], + "languages": { + "eng": "English", + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Commonwealth von Puerto Rico", + "common": "Puerto Rico" + }, + "fra": { + "official": "Porto Rico", + "common": "Porto Rico" + }, + "hrv": { + "official": "Zajednica Puerto Rico", + "common": "Portoriko" + }, + "ita": { + "official": "Commonwealth di Porto Rico", + "common": "Porto Rico" + }, + "jpn": { + "official": "プエルトリコのコモンウェルス", + "common": "プエルトリコ" + }, + "nld": { + "official": "Gemenebest van Puerto Rico", + "common": "Puerto Rico" + }, + "por": { + "official": "Commonwealth of Puerto Rico", + "common": "Porto Rico" + }, + "rus": { + "official": "Содружество Пуэрто-Рико", + "common": "Пуэрто-Рико" + }, + "spa": { + "official": "Asociado de Puerto Rico", + "common": "Puerto Rico" + }, + "fin": { + "official": "Puerto Rico", + "common": "Puerto Rico" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "18 15 N", + "latitude_dec": "18.2491397857666", + "longitude": "66 30 W", + "longitude_dec": "-66.62803649902344", + "max_latitude": "18.5202", + "max_longitude": "-65.2200", + "min_latitude": "17.8830", + "min_longitude": "-67.9427", + "area": 8870, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Commonwealth of US" + }, + "dialling": { + "calling_code": [ + "1787", + "1939" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 4566966, + "edgar": "PR", + "itu": "PTR", + "marc": "pr", + "wmo": "PU", + "ds": "USA", + "fifa": "PUR", + "fips": "RQ", + "gaul": 200, + "ioc": "PUR", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "KP": { + "name": { + "common": "North Korea", + "official": "Democratic People's Republic of Korea", + "native": { + "kor": { + "official": "조선 민주주의 인민 공화국", + "common": "북한" + } + } + }, + "demonym": "North Korean", + "capital": "Pyongyang", + "iso_3166_1_alpha2": "KP", + "iso_3166_1_alpha3": "PRK", + "iso_3166_1_numeric": "408", + "currency": { + "KPW": { + "iso_4217_code": "KPW", + "iso_4217_numeric": 408, + "iso_4217_name": "North Korean won", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".kp" + ], + "alt_spellings": [ + "KP", + "Democratic People's Republic of Korea", + "조선민주주의인민공화국", + "Chosŏn Minjujuŭi Inmin Konghwaguk", + "Korea, Democratic People's Republic of" + ], + "languages": { + "kor": "Korean" + }, + "translations": { + "deu": { + "official": "Demokratische Volksrepublik Korea", + "common": "Nordkorea" + }, + "fra": { + "official": "République populaire démocratique de Corée", + "common": "Corée du Nord" + }, + "hrv": { + "official": "Demokratska Narodna Republika Koreja", + "common": "Sjeverna Koreja" + }, + "ita": { + "official": "Repubblica democratica popolare di Corea", + "common": "Corea del Nord" + }, + "jpn": { + "official": "朝鮮民主主義人民共和国", + "common": "朝鮮民主主義人民共和国" + }, + "nld": { + "official": "Democratische Volksrepubliek Korea", + "common": "Noord-Korea" + }, + "por": { + "official": "República Popular Democrática da Coreia", + "common": "Coreia do Norte" + }, + "rus": { + "official": "Корейская Народно-Демократическая Республика Корея", + "common": "Северная Корея" + }, + "spa": { + "official": "República Popular Democrática de Corea", + "common": "Corea del Norte" + }, + "fin": { + "official": "Korean demokraattinen kansantasavalta", + "common": "Pohjois-Korea" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": false, + "latitude": "40 00 N", + "latitude_dec": "40.077640533447266", + "longitude": "127 00 E", + "longitude_dec": "127.13385009765625", + "max_latitude": "43.003889", + "max_longitude": "130.672222", + "min_latitude": "37.6775", + "min_longitude": "124.1875", + "area": 120538, + "region": "Asia", + "subregion": "Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "030", + "landlocked": false, + "borders": [ + "CHN", + "KOR", + "RUS" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "850" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1873107, + "edgar": 0, + "itu": "KRE", + "marc": "kn", + "wmo": "KR", + "ds": 0, + "fifa": "PRK", + "fips": "KN", + "gaul": 67, + "ioc": "PRK", + "cowc": "PRK", + "cown": 731, + "fao": 116, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "PT": { + "name": { + "common": "Portugal", + "official": "Portuguese Republic", + "native": { + "por": { + "official": "República português", + "common": "Portugal" + } + } + }, + "demonym": "Portuguese", + "capital": "Lisbon", + "iso_3166_1_alpha2": "PT", + "iso_3166_1_alpha3": "PRT", + "iso_3166_1_numeric": "620", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".pt" + ], + "alt_spellings": [ + "PT", + "Portuguesa", + "Portuguese Republic", + "República Portuguesa" + ], + "languages": { + "por": "Portuguese" + }, + "translations": { + "deu": { + "official": "Portugiesische Republik", + "common": "Portugal" + }, + "fra": { + "official": "République portugaise", + "common": "Portugal" + }, + "hrv": { + "official": "Portugalska Republika", + "common": "Portugal" + }, + "ita": { + "official": "Repubblica portoghese", + "common": "Portogallo" + }, + "jpn": { + "official": "ポルトガル共和国", + "common": "ポルトガル" + }, + "nld": { + "official": "Portugese Republiek", + "common": "Portugal" + }, + "por": { + "official": "República português", + "common": "Portugal" + }, + "rus": { + "official": "Португальская Республика", + "common": "Португалия" + }, + "spa": { + "official": "República Portuguesa", + "common": "Portugal" + }, + "fin": { + "official": "Portugalin tasavalta", + "common": "Portugali" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "39 30 N", + "latitude_dec": "39.64200973510742", + "longitude": "8 00 W", + "longitude_dec": "-8.009422302246094", + "max_latitude": "42.15", + "max_longitude": "-5", + "min_latitude": "30.033333", + "min_longitude": "-31.266667", + "area": 92090, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [ + "ESP" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "351" + ], + "national_prefix": null, + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2264397, + "edgar": "S1", + "itu": "POR", + "marc": "po", + "wmo": "PO", + "ds": "P", + "fifa": "POR", + "fips": "PO", + "gaul": 199, + "ioc": "POR", + "cowc": "POR", + "cown": 235, + "fao": 174, + "imf": 182, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}} {{region_short}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 23, + "reduced": [ + 6, + 13 + ], + "super_reduced": null, + "parking": 13 + } + } + }, + "PY": { + "name": { + "common": "Paraguay", + "official": "Republic of Paraguay", + "native": { + "grn": { + "official": "Tetã Paraguái", + "common": "Paraguái" + }, + "spa": { + "official": "República de Paraguay", + "common": "Paraguay" + } + } + }, + "demonym": "Paraguayan", + "capital": "Asunción", + "iso_3166_1_alpha2": "PY", + "iso_3166_1_alpha3": "PRY", + "iso_3166_1_numeric": "600", + "currency": { + "PYG": { + "iso_4217_code": "PYG", + "iso_4217_numeric": 600, + "iso_4217_name": "Guarani", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".py" + ], + "alt_spellings": [ + "PY", + "Republic of Paraguay", + "República del Paraguay", + "Tetã Paraguái" + ], + "languages": { + "grn": "Guaraní", + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Republik Paraguay", + "common": "Paraguay" + }, + "fra": { + "official": "République du Paraguay", + "common": "Paraguay" + }, + "hrv": { + "official": "Republika Paragvaj", + "common": "Paragvaj" + }, + "ita": { + "official": "Repubblica del Paraguay", + "common": "Paraguay" + }, + "jpn": { + "official": "パラグアイ共和国", + "common": "パラグアイ" + }, + "nld": { + "official": "Republiek Paraguay", + "common": "Paraguay" + }, + "por": { + "official": "República do Paraguai", + "common": "Paraguai" + }, + "rus": { + "official": "Республика Парагвай", + "common": "Парагвай" + }, + "spa": { + "official": "República de Paraguay", + "common": "Paraguay" + }, + "fin": { + "official": "Paraguayn tasavalta", + "common": "Paraguay" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "23 00 S", + "latitude_dec": "-23.24028968811035", + "longitude": "58 00 W", + "longitude_dec": "-58.395172119140625", + "max_latitude": "-19.333333", + "max_longitude": "-54.35", + "min_latitude": "-27.533333", + "min_longitude": "-62.633333", + "area": 406752, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": true, + "borders": [ + "ARG", + "BOL", + "BRA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "595" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "002" + }, + "extra": { + "geonameid": 3437598, + "edgar": "R4", + "itu": "PRG", + "marc": "py", + "wmo": "PY", + "ds": "PY", + "fifa": "PAR", + "fips": "PA", + "gaul": 194, + "ioc": "PAR", + "cowc": "PAR", + "cown": 150, + "fao": 169, + "imf": 288, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "PS": { + "name": { + "common": "Palestine", + "official": "State of Palestine", + "native": { + "ara": { + "official": "دولة فلسطين", + "common": "فلسطين" + } + } + }, + "demonym": "Palestinian", + "capital": "Ramallah", + "iso_3166_1_alpha2": "PS", + "iso_3166_1_alpha3": "PSE", + "iso_3166_1_numeric": "275", + "currency": { + "ILS": { + "iso_4217_code": "ILS", + "iso_4217_numeric": 376, + "iso_4217_name": "Israeli new shekel", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ps", + "فلسطين." + ], + "alt_spellings": [ + "PS", + "Palestine, State of", + "State of Palestine", + "Dawlat Filasṭin" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Staat Palästina", + "common": "Palästina" + }, + "fra": { + "official": "État de Palestine", + "common": "Palestine" + }, + "hrv": { + "official": "State of Palestine", + "common": "Palestina" + }, + "ita": { + "official": "Stato di Palestina", + "common": "Palestina" + }, + "jpn": { + "official": "パレスチナ自治政府", + "common": "パレスチナ" + }, + "nld": { + "official": "Staat Palestina", + "common": "Palestijnse gebieden" + }, + "por": { + "official": "Estado da Palestina", + "common": "Palestina" + }, + "rus": { + "official": "Государство Палестина", + "common": "Палестина" + }, + "spa": { + "official": "Estado de Palestina", + "common": "Palestina" + }, + "fin": { + "official": "Palestiinan valtio", + "common": "Palestiina" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "", + "latitude_dec": "31.946392059326172", + "longitude": "", + "longitude_dec": "35.259735107421875", + "max_latitude": "32.5521", + "max_longitude": "35.574052", + "min_latitude": "31.219691", + "min_longitude": "34.2187639", + "area": 6220, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "ISR", + "EGY", + "JOR" + ], + "independent": "In contention" + }, + "dialling": { + "calling_code": [ + "970" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 6254930, + "edgar": 0, + "itu": 0, + "marc": "gz,wj", + "wmo": 0, + "ds": 0, + "fifa": "PLE", + "fips": "GZ,WE", + "gaul": 91267, + "ioc": "PLE", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 487, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "PF": { + "name": { + "common": "French Polynesia", + "official": "French Polynesia", + "native": { + "fra": { + "official": "Polynésie française", + "common": "Polynésie française" + } + } + }, + "demonym": "French Polynesian", + "capital": "Papeetē", + "iso_3166_1_alpha2": "PF", + "iso_3166_1_alpha3": "PYF", + "iso_3166_1_numeric": "258", + "currency": { + "XPF": { + "iso_4217_code": "XPF", + "iso_4217_numeric": 953, + "iso_4217_name": "CFP Franc", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".pf" + ], + "alt_spellings": [ + "PF", + "Polynésie française", + "French Polynesia", + "Pōrīnetia Farāni" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Französisch-Polynesien", + "common": "Französisch-Polynesien" + }, + "fra": { + "official": "Polynésie française", + "common": "Polynésie française" + }, + "hrv": { + "official": "Francuska Polinezija", + "common": "Francuska Polinezija" + }, + "ita": { + "official": "Polinesia Francese", + "common": "Polinesia Francese" + }, + "jpn": { + "official": "フランス領ポリネシア", + "common": "フランス領ポリネシア" + }, + "nld": { + "official": "Frans-Polynesië", + "common": "Frans-Polynesië" + }, + "por": { + "official": "Polinésia Francesa", + "common": "Polinésia Francesa" + }, + "rus": { + "official": "Французская Полинезия", + "common": "Французская Полинезия" + }, + "spa": { + "official": "Polinesia francés", + "common": "Polinesia Francesa" + }, + "fin": { + "official": "Ranskan Polynesia", + "common": "Ranskan Polynesia" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "15 00 S", + "latitude_dec": "-17.648122787475586", + "longitude": "140 00 W", + "longitude_dec": "-149.4647216796875", + "max_latitude": "16.633333", + "max_longitude": "-179.8", + "min_latitude": "-27.916667", + "min_longitude": "180", + "area": 4167, + "region": "Oceania", + "subregion": "Polynesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "061", + "landlocked": false, + "borders": [], + "independent": "Territory of FR" + }, + "dialling": { + "calling_code": [ + "689" + ], + "national_prefix": null, + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 4030656, + "edgar": "I4", + "itu": "OCE", + "marc": "fp", + "wmo": "PF", + "ds": "F", + "fifa": "TAH", + "fips": "FP", + "gaul": 87, + "ioc": "FPO", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 887, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "QA": { + "name": { + "common": "Qatar", + "official": "State of Qatar", + "native": { + "ara": { + "official": "دولة قطر", + "common": "قطر" + } + } + }, + "demonym": "Qatari", + "capital": "Doha", + "iso_3166_1_alpha2": "QA", + "iso_3166_1_alpha3": "QAT", + "iso_3166_1_numeric": "634", + "currency": { + "QAR": { + "iso_4217_code": "QAR", + "iso_4217_numeric": 634, + "iso_4217_name": "Qatari Rial", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".qa", + "قطر." + ], + "alt_spellings": [ + "QA", + "State of Qatar", + "Dawlat Qaṭar" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Staat Katar", + "common": "Katar" + }, + "fra": { + "official": "État du Qatar", + "common": "Qatar" + }, + "hrv": { + "official": "Država Katar", + "common": "Katar" + }, + "ita": { + "official": "Stato del Qatar", + "common": "Qatar" + }, + "jpn": { + "official": "カタール国", + "common": "カタール" + }, + "nld": { + "official": "Staat Qatar", + "common": "Qatar" + }, + "por": { + "official": "Estado do Qatar", + "common": "Catar" + }, + "rus": { + "official": "Государство Катар", + "common": "Катар" + }, + "spa": { + "official": "Estado de Qatar", + "common": "Catar" + }, + "fin": { + "official": "Qatarin valtio", + "common": "Qatar" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": false, + "latitude": "25 30 N", + "latitude_dec": "25.413625717163086", + "longitude": "51 15 E", + "longitude_dec": "51.2602653503418", + "max_latitude": "26.441111", + "max_longitude": "52.75", + "min_latitude": "24.284722", + "min_longitude": "50.680556", + "area": 11586, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "SAU" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "974" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 289688, + "edgar": "S3", + "itu": "QAT", + "marc": "qa", + "wmo": "QT", + "ds": "Q", + "fifa": "QAT", + "fips": "QA", + "gaul": 201, + "ioc": "QAT", + "cowc": "QAT", + "cown": 694, + "fao": 179, + "imf": 453, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "RE": { + "name": { + "common": "Réunion", + "official": "Réunion Island", + "native": { + "fra": { + "official": "Ile de la Réunion", + "common": "La Réunion" + } + } + }, + "demonym": "French", + "capital": "Saint-Denis", + "iso_3166_1_alpha2": "RE", + "iso_3166_1_alpha3": "REU", + "iso_3166_1_numeric": "638", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".re" + ], + "alt_spellings": [ + "RE", + "Reunion" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Réunion", + "common": "Réunion" + }, + "fra": { + "official": "Ile de la Réunion", + "common": "Réunion" + }, + "hrv": { + "official": "Réunion Island", + "common": "Réunion" + }, + "ita": { + "official": "Réunion", + "common": "Riunione" + }, + "jpn": { + "official": "レユニオン島", + "common": "レユニオン" + }, + "nld": { + "official": "Réunion", + "common": "Réunion" + }, + "por": { + "official": "Ilha da Reunião", + "common": "Reunião" + }, + "rus": { + "official": "Реюньон", + "common": "Реюньон" + }, + "spa": { + "official": "Isla de la Reunión", + "common": "Reunión" + }, + "fin": { + "official": "Réunion", + "common": "Réunion" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "", + "latitude_dec": "-21.146299362182617", + "longitude": "", + "longitude_dec": "55.631248474121094", + "max_latitude": "-20", + "max_longitude": "57", + "min_latitude": "-21.366667", + "min_longitude": "55.216667", + "area": 2511, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [], + "independent": "Part of FR" + }, + "dialling": { + "calling_code": [ + "262" + ], + "national_prefix": null, + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 935317, + "edgar": 0, + "itu": "REU", + "marc": "re", + "wmo": "RE", + "ds": "F", + "fifa": "REU", + "fips": "RE", + "gaul": 206, + "ioc": "REU", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 696, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "RO": { + "name": { + "common": "Romania", + "official": "Romania", + "native": { + "ron": { + "official": "România", + "common": "România" + } + } + }, + "demonym": "Romanian", + "capital": "Bucharest", + "iso_3166_1_alpha2": "RO", + "iso_3166_1_alpha3": "ROU", + "iso_3166_1_numeric": "642", + "currency": { + "RON": { + "iso_4217_code": "RON", + "iso_4217_numeric": 946, + "iso_4217_name": "New Romanian Leu", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ro" + ], + "alt_spellings": [ + "RO", + "Rumania", + "Roumania", + "România" + ], + "languages": { + "ron": "Romanian" + }, + "translations": { + "deu": { + "official": "Rumänien", + "common": "Rumänien" + }, + "fra": { + "official": "Roumanie", + "common": "Roumanie" + }, + "hrv": { + "official": "Rumunija", + "common": "Rumunjska" + }, + "ita": { + "official": "Romania", + "common": "Romania" + }, + "jpn": { + "official": "ルーマニア", + "common": "ルーマニア" + }, + "nld": { + "official": "Roemenië", + "common": "Roemenië" + }, + "por": { + "official": "Romênia", + "common": "Roménia" + }, + "rus": { + "official": "Румыния", + "common": "Румыния" + }, + "spa": { + "official": "Rumania", + "common": "Rumania" + }, + "fin": { + "official": "Romania", + "common": "Romania" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "46 00 N", + "latitude_dec": "45.83774185180664", + "longitude": "25 00 E", + "longitude_dec": "25.005935668945312", + "max_latitude": "48.25", + "max_longitude": "29.65", + "min_latitude": "43.666667", + "min_longitude": "19", + "area": 238391, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "151", + "landlocked": false, + "borders": [ + "BGR", + "HUN", + "MDA", + "SRB", + "UKR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "40" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 798549, + "edgar": "S5", + "itu": "ROU", + "marc": "rm", + "wmo": "RO", + "ds": "RO", + "fifa": "ROU", + "fips": "RO", + "gaul": 203, + "ioc": "ROU", + "cowc": "ROM", + "cown": 360, + "fao": 183, + "imf": 968, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 20, + "reduced": [ + 5, + 9 + ], + "super_reduced": null, + "parking": null + } + } + }, + "RU": { + "name": { + "common": "Russia", + "official": "Russian Federation", + "native": { + "rus": { + "official": "Русская Федерация", + "common": "Россия" + } + } + }, + "demonym": "Russian", + "capital": "Moscow", + "iso_3166_1_alpha2": "RU", + "iso_3166_1_alpha3": "RUS", + "iso_3166_1_numeric": "643", + "currency": { + "RUB": { + "iso_4217_code": "RUB", + "iso_4217_numeric": 643, + "iso_4217_name": "Russian Ruble", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ru", + ".su", + ".рф" + ], + "alt_spellings": [ + "RU", + "Rossiya", + "Russian Federation", + "Российская Федерация", + "Rossiyskaya Federatsiya" + ], + "languages": { + "rus": "Russian" + }, + "translations": { + "deu": { + "official": "Russische Föderation", + "common": "Russland" + }, + "fra": { + "official": "Fédération de Russie", + "common": "Russie" + }, + "hrv": { + "official": "Ruska Federacija", + "common": "Rusija" + }, + "ita": { + "official": "Federazione russa", + "common": "Russia" + }, + "jpn": { + "official": "ロシア連邦", + "common": "ロシア連邦" + }, + "nld": { + "official": "Russische Federatie", + "common": "Rusland" + }, + "por": { + "official": "Federação Russa", + "common": "Rússia" + }, + "rus": { + "official": "Россия Федерация", + "common": "Россия" + }, + "spa": { + "official": "Federación de Rusia", + "common": "Rusia" + }, + "fin": { + "official": "Venäjän federaatio", + "common": "Venäjä" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "60 00 N", + "latitude_dec": "63.125186920166016", + "longitude": "100 00 E", + "longitude_dec": "103.75398254394531", + "max_latitude": "86.216667", + "max_longitude": "147.172222", + "min_latitude": "38.7", + "min_longitude": "19.655556", + "area": 17098242, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "151", + "landlocked": false, + "borders": [ + "AZE", + "BLR", + "CHN", + "EST", + "FIN", + "GEO", + "KAZ", + "PRK", + "LVA", + "LTU", + "MNG", + "NOR", + "POL", + "UKR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "7" + ], + "national_prefix": "8", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "810" + }, + "extra": { + "geonameid": 2017370, + "edgar": "1Z", + "itu": "RUS", + "marc": "ru", + "wmo": "RS", + "ds": "RUS", + "fifa": "RUS", + "fips": "RS", + "gaul": 204, + "ioc": "RUS", + "cowc": "RUS", + "cown": 365, + "fao": 185, + "imf": 922, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{postalcode}} {{city}}\n{{street}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "RW": { + "name": { + "common": "Rwanda", + "official": "Republic of Rwanda", + "native": { + "eng": { + "official": "Republic of Rwanda", + "common": "Rwanda" + }, + "fra": { + "official": "République rwandaise", + "common": "Rwanda" + }, + "kin": { + "official": "Repubulika y'u Rwanda", + "common": "Rwanda" + } + } + }, + "demonym": "Rwandan", + "capital": "Kigali", + "iso_3166_1_alpha2": "RW", + "iso_3166_1_alpha3": "RWA", + "iso_3166_1_numeric": "646", + "currency": { + "RWF": { + "iso_4217_code": "RWF", + "iso_4217_numeric": 646, + "iso_4217_name": "Rwanda Franc", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".rw" + ], + "alt_spellings": [ + "RW", + "Republic of Rwanda", + "Repubulika y'u Rwanda", + "République du Rwanda" + ], + "languages": { + "eng": "English", + "fra": "French", + "kin": "Kinyarwanda" + }, + "translations": { + "deu": { + "official": "Republik Ruanda", + "common": "Ruanda" + }, + "fra": { + "official": "République rwandaise", + "common": "Rwanda" + }, + "hrv": { + "official": "Republika Ruandi", + "common": "Ruanda" + }, + "ita": { + "official": "Repubblica del Ruanda", + "common": "Ruanda" + }, + "jpn": { + "official": "ルワンダ共和国", + "common": "ルワンダ" + }, + "nld": { + "official": "Republiek Rwanda", + "common": "Rwanda" + }, + "por": { + "official": "República do Ruanda", + "common": "Ruanda" + }, + "rus": { + "official": "Республика Руанда", + "common": "Руанда" + }, + "spa": { + "official": "República de Rwanda", + "common": "Ruanda" + }, + "fin": { + "official": "Ruandan tasavalta", + "common": "Ruanda" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "2 00 S", + "latitude_dec": "-1.9999498128890991", + "longitude": "30 00 E", + "longitude_dec": "29.926057815551758", + "max_latitude": "5", + "max_longitude": "37", + "min_latitude": "-2.8", + "min_longitude": "28.866667", + "area": 26338, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": true, + "borders": [ + "BDI", + "COD", + "TZA", + "UGA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "250" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 49518, + "edgar": "S6", + "itu": "RRW", + "marc": "rw", + "wmo": "RW", + "ds": "RWA", + "fifa": "RWA", + "fips": "RW", + "gaul": 205, + "ioc": "RWA", + "cowc": "RWA", + "cown": 517, + "fao": 184, + "imf": 714, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SA": { + "name": { + "common": "Saudi Arabia", + "official": "Kingdom of Saudi Arabia", + "native": { + "ara": { + "official": "المملكة العربية السعودية", + "common": "العربية السعودية" + } + } + }, + "demonym": "Saudi Arabian", + "capital": "Riyadh", + "iso_3166_1_alpha2": "SA", + "iso_3166_1_alpha3": "SAU", + "iso_3166_1_numeric": "682", + "currency": { + "SAR": { + "iso_4217_code": "SAR", + "iso_4217_numeric": 682, + "iso_4217_name": "Saudi Riyal", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sa", + ".السعودية" + ], + "alt_spellings": [ + "Saudi", + "SA", + "Kingdom of Saudi Arabia", + "Al-Mamlakah al-‘Arabiyyah as-Su‘ūdiyyah" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Königreich Saudi-Arabien", + "common": "Saudi-Arabien" + }, + "fra": { + "official": "Royaume d'Arabie Saoudite", + "common": "Arabie Saoudite" + }, + "hrv": { + "official": "Kraljevina Saudijska Arabija", + "common": "Saudijska Arabija" + }, + "ita": { + "official": "Arabia Saudita", + "common": "Arabia Saudita" + }, + "jpn": { + "official": "サウジアラビア王国", + "common": "サウジアラビア" + }, + "nld": { + "official": "Koninkrijk van Saoedi-Arabië", + "common": "Saoedi-Arabië" + }, + "por": { + "official": "Reino da Arábia Saudita", + "common": "Arábia Saudita" + }, + "rus": { + "official": "Королевство Саудовская Аравия", + "common": "Саудовская Аравия" + }, + "spa": { + "official": "Reino de Arabia Saudita", + "common": "Arabia Saudí" + }, + "fin": { + "official": "Saudi-Arabian kuningaskunta", + "common": "Saudi-Arabia" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": false, + "latitude": "25 00 N", + "latitude_dec": "23.994726181030273", + "longitude": "45 00 E", + "longitude_dec": "44.4013557434082", + "max_latitude": "32.2", + "max_longitude": "55.166667", + "min_latitude": "5", + "min_longitude": "34.566667", + "area": 2149690, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "IRQ", + "JOR", + "KWT", + "OMN", + "QAT", + "ARE", + "YEM" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "966" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 102358, + "edgar": "T0", + "itu": "ARS", + "marc": "su", + "wmo": "SD", + "ds": "SA", + "fifa": "KSA", + "fips": "SA", + "gaul": 215, + "ioc": "KSA", + "cowc": "SAU", + "cown": 670, + "fao": 194, + "imf": 456, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "SD": { + "name": { + "common": "Sudan", + "official": "Republic of the Sudan", + "native": { + "ara": { + "official": "جمهورية السودان", + "common": "السودان" + }, + "eng": { + "official": "Republic of the Sudan", + "common": "Sudan" + } + } + }, + "demonym": "Sudanese", + "capital": "Khartoum", + "iso_3166_1_alpha2": "SD", + "iso_3166_1_alpha3": "SDN", + "iso_3166_1_numeric": "729", + "currency": { + "SDG": { + "iso_4217_code": "SDG", + "iso_4217_numeric": 938, + "iso_4217_name": "Sudanese Pound", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sd" + ], + "alt_spellings": [ + "SD", + "Republic of the Sudan", + "Jumhūrīyat as-Sūdān" + ], + "languages": { + "ara": "Arabic", + "eng": "English" + }, + "translations": { + "deu": { + "official": "Republik Sudan", + "common": "Sudan" + }, + "fra": { + "official": "République du Soudan", + "common": "Soudan" + }, + "hrv": { + "official": "Republika Sudan", + "common": "Sudan" + }, + "ita": { + "official": "Repubblica del Sudan", + "common": "Sudan" + }, + "jpn": { + "official": "スーダン共和国", + "common": "スーダン" + }, + "nld": { + "official": "Republiek Soedan", + "common": "Soedan" + }, + "por": { + "official": "República do Sudão", + "common": "Sudão" + }, + "rus": { + "official": "Республика Судан", + "common": "Судан" + }, + "spa": { + "official": "República de Sudán", + "common": "Sudán" + }, + "fin": { + "official": "Sudanin tasavalta", + "common": "Sudan" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "15 00 N", + "latitude_dec": "16.085784912109375", + "longitude": "30 00 E", + "longitude_dec": "30.087390899658203", + "max_latitude": "27.166667", + "max_longitude": "38.833333", + "min_latitude": "3.516667", + "min_longitude": "21.883333", + "area": 1886068, + "region": "Africa", + "subregion": "Northern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "015", + "landlocked": false, + "borders": [ + "CAF", + "TCD", + "EGY", + "ERI", + "ETH", + "LBY", + "SSD" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "249" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 366755, + "edgar": "V2", + "itu": "SDN", + "marc": "sj", + "wmo": "SU", + "ds": "SUD", + "fifa": "SUD", + "fips": "SU", + "gaul": 40764, + "ioc": "SUD", + "cowc": "SUD", + "cown": 625, + "fao": 276, + "imf": 732, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SN": { + "name": { + "common": "Senegal", + "official": "Republic of Senegal", + "native": { + "fra": { + "official": "République du Sénégal", + "common": "Sénégal" + } + } + }, + "demonym": "Senegalese", + "capital": "Dakar", + "iso_3166_1_alpha2": "SN", + "iso_3166_1_alpha3": "SEN", + "iso_3166_1_numeric": "686", + "currency": { + "XOF": { + "iso_4217_code": "XOF", + "iso_4217_numeric": 952, + "iso_4217_name": "CFA Franc BCEAO", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".sn" + ], + "alt_spellings": [ + "SN", + "Republic of Senegal", + "République du Sénégal" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Republik Senegal", + "common": "Senegal" + }, + "fra": { + "official": "République du Sénégal", + "common": "Sénégal" + }, + "hrv": { + "official": "Republika Senegal", + "common": "Senegal" + }, + "ita": { + "official": "Repubblica del Senegal", + "common": "Senegal" + }, + "jpn": { + "official": "セネガル共和国", + "common": "セネガル" + }, + "nld": { + "official": "Republiek Senegal", + "common": "Senegal" + }, + "por": { + "official": "República do Senegal", + "common": "Senegal" + }, + "rus": { + "official": "Республика Сенегал", + "common": "Сенегал" + }, + "spa": { + "official": "República de Senegal", + "common": "Senegal" + }, + "fin": { + "official": "Senegalin tasavalta", + "common": "Senegal" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "14 00 N", + "latitude_dec": "14.36251163482666", + "longitude": "14 00 W", + "longitude_dec": "-14.531643867492676", + "max_latitude": "16.666667", + "max_longitude": "-11.3780213874", + "min_latitude": "12.336667", + "min_longitude": "-17.682778", + "area": 196722, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "GMB", + "GIN", + "GNB", + "MLI", + "MRT" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "221" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2245662, + "edgar": "T1", + "itu": "SEN", + "marc": "sg", + "wmo": "SG", + "ds": "SN", + "fifa": "SEN", + "fips": "SG", + "gaul": 217, + "ioc": "SEN", + "cowc": "SEN", + "cown": 433, + "fao": 195, + "imf": 722, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SG": { + "name": { + "common": "Singapore", + "official": "Republic of Singapore", + "native": { + "cmn": { + "official": "新加坡共和国", + "common": "新加坡" + }, + "eng": { + "official": "Republic of Singapore", + "common": "Singapore" + }, + "msa": { + "official": "Republik Singapura", + "common": "Singapura" + }, + "tam": { + "official": "சிங்கப்பூர் குடியரசு", + "common": "சிங்கப்பூர்" + } + } + }, + "demonym": "Singaporean", + "capital": "Singapore", + "iso_3166_1_alpha2": "SG", + "iso_3166_1_alpha3": "SGP", + "iso_3166_1_numeric": "702", + "currency": { + "SGD": { + "iso_4217_code": "SGD", + "iso_4217_numeric": 702, + "iso_4217_name": "Singapore Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sg", + ".新加坡", + ".சிங்கப்பூர்" + ], + "alt_spellings": [ + "SG", + "Singapura", + "Republik Singapura", + "新加坡共和国" + ], + "languages": { + "cmn": "Mandarin", + "eng": "English", + "msa": "Malay", + "tam": "Tamil" + }, + "translations": { + "deu": { + "official": "Republik Singapur", + "common": "Singapur" + }, + "fra": { + "official": "République de Singapour", + "common": "Singapour" + }, + "hrv": { + "official": "Republika Singapur", + "common": "Singapur" + }, + "ita": { + "official": "Repubblica di Singapore", + "common": "Singapore" + }, + "jpn": { + "official": "シンガポール共和国", + "common": "シンガポール" + }, + "nld": { + "official": "Republiek Singapore", + "common": "Singapore" + }, + "por": { + "official": "República de Singapura", + "common": "Singapura" + }, + "rus": { + "official": "Республика Сингапур", + "common": "Сингапур" + }, + "spa": { + "official": "República de Singapur", + "common": "Singapur" + }, + "fin": { + "official": "Singaporen tasavalta", + "common": "Singapore" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "1 22 N", + "latitude_dec": "1.3219958543777466", + "longitude": "103 48 E", + "longitude_dec": "103.8205337524414", + "max_latitude": "4", + "max_longitude": "104.4075", + "min_latitude": "1.159444", + "min_longitude": "102", + "area": 710, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "65" + ], + "national_prefix": null, + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "001" + }, + "extra": { + "geonameid": 1880251, + "edgar": "U0", + "itu": "SNG", + "marc": "si", + "wmo": "SR", + "ds": "SGP", + "fifa": "SIN", + "fips": "SN", + "gaul": 222, + "ioc": "SIN", + "cowc": "SIN", + "cown": 830, + "fao": 200, + "imf": 576, + "ar5": "ASIA", + "address_format": "{{recipient}}\n{{street}}\n{{city}} {{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "GS": { + "name": { + "common": "South Georgia", + "official": "South Georgia and the South Sandwich Islands", + "native": { + "eng": { + "official": "South Georgia and the South Sandwich Islands", + "common": "South Georgia" + } + } + }, + "demonym": "South Georgian South Sandwich Islander", + "capital": "King Edward Point", + "iso_3166_1_alpha2": "GS", + "iso_3166_1_alpha3": "SGS", + "iso_3166_1_numeric": "239", + "currency": { + "GBP": { + "iso_4217_code": "GBP", + "iso_4217_numeric": 826, + "iso_4217_name": "Pound sterling", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".gs" + ], + "alt_spellings": [ + "GS", + "South Georgia and the South Sandwich Islands" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Südgeorgien und die Südlichen Sandwichinseln", + "common": "Südgeorgien und die Südlichen Sandwichinseln" + }, + "fra": { + "official": "Géorgie du Sud et les îles Sandwich du Sud", + "common": "Géorgie du Sud-et-les Îles Sandwich du Sud" + }, + "hrv": { + "official": "Južna Džordžija i Otoci Južni Sendvič", + "common": "Južna Georgija i otočje Južni Sandwich" + }, + "ita": { + "official": "Georgia del Sud e isole Sandwich del Sud", + "common": "Georgia del Sud e Isole Sandwich Meridionali" + }, + "jpn": { + "official": "サウスジョージア·サウスサンドウィッチ諸島", + "common": "サウスジョージア・サウスサンドウィッチ諸島" + }, + "nld": { + "official": "Zuid-Georgië en de Zuidelijke Sandwich-eilanden", + "common": "Zuid-Georgia en Zuidelijke Sandwicheilanden" + }, + "por": { + "official": "Geórgia do Sul e Sandwich do Sul", + "common": "Ilhas Geórgia do Sul e Sandwich do Sul" + }, + "rus": { + "official": "Южная Георгия и Южные Сандвичевы острова", + "common": "Южная Георгия и Южные Сандвичевы острова" + }, + "spa": { + "official": "Georgia del Sur y las Islas Sandwich del Sur", + "common": "Islas Georgias del Sur y Sandwich del Sur" + }, + "fin": { + "official": "Etelä-Georgia ja Eteläiset Sandwichsaaret", + "common": "Etelä-Georgia ja Eteläiset Sandwichsaaret" + } + }, + "geo": { + "continent": { + "AN": "Antarctica" + }, + "postal_code": true, + "latitude": "54 30 S", + "latitude_dec": "-54.459922790527344", + "longitude": "37 00 W", + "longitude_dec": "-36.354618072509766", + "max_latitude": "-53.970278", + "max_longitude": "-26.333333", + "min_latitude": "-59.466667", + "min_longitude": "-38.305", + "area": 3903, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "", + "subregion_code": "", + "landlocked": false, + "borders": [], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "500" + ], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 3474415, + "edgar": 0, + "itu": 0, + "marc": "xs", + "wmo": 0, + "ds": 0, + "fifa": 0, + "fips": "SX", + "gaul": 228, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SJ": { + "name": { + "common": "Svalbard and Jan Mayen", + "official": "Svalbard og Jan Mayen", + "native": { + "nor": { + "official": "Svalbard og Jan Mayen", + "common": "Svalbard og Jan Mayen" + } + } + }, + "demonym": "Norwegian", + "capital": "Longyearbyen", + "iso_3166_1_alpha2": "SJ", + "iso_3166_1_alpha3": "SJM", + "iso_3166_1_numeric": "744", + "currency": { + "NOK": { + "iso_4217_code": "NOK", + "iso_4217_numeric": 578, + "iso_4217_name": "Norwegian krone", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sj" + ], + "alt_spellings": [ + "SJ", + "Svalbard and Jan Mayen Islands" + ], + "languages": { + "nor": "Norwegian" + }, + "translations": { + "deu": { + "official": "Inselgruppe Spitzbergen", + "common": "Spitzbergen" + }, + "fra": { + "official": "Jan Mayen Svalbard", + "common": "Svalbard et Jan Mayen" + }, + "hrv": { + "official": "Svalbard og Jan Mayen", + "common": "Svalbard i Jan Mayen" + }, + "ita": { + "official": "Svalbard og Jan Mayen", + "common": "Svalbard e Jan Mayen" + }, + "jpn": { + "official": "スバールバル諸島OGヤンマイエン", + "common": "スヴァールバル諸島およびヤンマイエン島" + }, + "nld": { + "official": "Svalbard og Jan Mayen", + "common": "Svalbard en Jan Mayen" + }, + "por": { + "official": "Svalbard og Jan Mayen", + "common": "Ilhas Svalbard e Jan Mayen" + }, + "rus": { + "official": "Свальбарда ог Ян-Майен", + "common": "Шпицберген и Ян-Майен" + }, + "spa": { + "official": "Svalbard og Jan Mayen", + "common": "Islas Svalbard y Jan Mayen" + }, + "fin": { + "official": "Huippuvuoret", + "common": "Huippuvuoret" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "78 00 N", + "latitude_dec": "71.04893493652344", + "longitude": "20 00 E", + "longitude_dec": "-8.195747375488281", + "max_latitude": "80.816667", + "max_longitude": "32.583333", + "min_latitude": "74.35", + "min_longitude": "10.5", + "area": -1, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [], + "independent": "Territory of NO" + }, + "dialling": { + "calling_code": [ + "4779" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 607072, + "edgar": 0, + "itu": "NOR", + "marc": 0, + "wmo": "SZ", + "ds": 0, + "fifa": 0, + "fips": "SV,JN", + "gaul": 234, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SB": { + "name": { + "common": "Solomon Islands", + "official": "Solomon Islands", + "native": { + "eng": { + "official": "Solomon Islands", + "common": "Solomon Islands" + } + } + }, + "demonym": "Solomon Islander", + "capital": "Honiara", + "iso_3166_1_alpha2": "SB", + "iso_3166_1_alpha3": "SLB", + "iso_3166_1_numeric": "090", + "currency": { + "SBD": { + "iso_4217_code": "SBD", + "iso_4217_numeric": 90, + "iso_4217_name": "Solomon Islands Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sb" + ], + "alt_spellings": [ + "SB" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Salomon-Inseln", + "common": "Salomonen" + }, + "fra": { + "official": "Îles Salomon", + "common": "Îles Salomon" + }, + "hrv": { + "official": "Solomonski Otoci", + "common": "Solomonski Otoci" + }, + "ita": { + "official": "Isole Salomone", + "common": "Isole Salomone" + }, + "jpn": { + "official": "ソロモン諸島", + "common": "ソロモン諸島" + }, + "nld": { + "official": "Solomon eilanden", + "common": "Salomonseilanden" + }, + "por": { + "official": "Ilhas Salomão", + "common": "Ilhas Salomão" + }, + "rus": { + "official": "Соломоновы острова", + "common": "Соломоновы Острова" + }, + "spa": { + "official": "islas Salomón", + "common": "Islas Salomón" + }, + "fin": { + "official": "Salomonsaaret", + "common": "Salomonsaaret" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "8 00 S", + "latitude_dec": "-9.548112869262695", + "longitude": "159 00 E", + "longitude_dec": "160.01930236816406", + "max_latitude": "-5.166667", + "max_longitude": "170.2", + "min_latitude": "-12.883333", + "min_longitude": "155.516667", + "area": 28896, + "region": "Oceania", + "subregion": "Melanesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "054", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "677" + ], + "national_prefix": null, + "national_number_lengths": [ + 5 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2103350, + "edgar": "D7", + "itu": "SLM", + "marc": "bp", + "wmo": "SO", + "ds": 0, + "fifa": "SOL", + "fips": "BP", + "gaul": 225, + "ioc": "SOL", + "cowc": "SOL", + "cown": 940, + "fao": 25, + "imf": 813, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SL": { + "name": { + "common": "Sierra Leone", + "official": "Republic of Sierra Leone", + "native": { + "eng": { + "official": "Republic of Sierra Leone", + "common": "Sierra Leone" + } + } + }, + "demonym": "Sierra Leonean", + "capital": "Freetown", + "iso_3166_1_alpha2": "SL", + "iso_3166_1_alpha3": "SLE", + "iso_3166_1_numeric": "694", + "currency": { + "SLL": { + "iso_4217_code": "SLL", + "iso_4217_numeric": 694, + "iso_4217_name": "Leone", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sl" + ], + "alt_spellings": [ + "SL", + "Republic of Sierra Leone" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Republik Sierra Leone", + "common": "Sierra Leone" + }, + "fra": { + "official": "République de Sierra Leone", + "common": "Sierra Leone" + }, + "hrv": { + "official": "Republika Sijera Leone", + "common": "Sijera Leone" + }, + "ita": { + "official": "Repubblica della Sierra Leone", + "common": "Sierra Leone" + }, + "jpn": { + "official": "シエラレオネ共和国", + "common": "シエラレオネ" + }, + "nld": { + "official": "Republiek Sierra Leone", + "common": "Sierra Leone" + }, + "por": { + "official": "República da Serra Leoa", + "common": "Serra Leoa" + }, + "rus": { + "official": "Республика Сьерра-Леоне", + "common": "Сьерра-Леоне" + }, + "spa": { + "official": "República de Sierra Leona", + "common": "Sierra Leone" + }, + "fin": { + "official": "Sierra Leonen tasavalta", + "common": "Sierra Leone" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "8 30 N", + "latitude_dec": "8.521441459655762", + "longitude": "11 30 W", + "longitude_dec": "-11.843890190124512", + "max_latitude": "10", + "max_longitude": "-4", + "min_latitude": "5", + "min_longitude": "-13.316667", + "area": 71740, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "GIN", + "LBR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "232" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2403846, + "edgar": "T8", + "itu": "SRL", + "marc": "sl", + "wmo": "SL", + "ds": "WAL", + "fifa": "SLE", + "fips": "SL", + "gaul": 221, + "ioc": "SLE", + "cowc": "SIE", + "cown": 451, + "fao": 197, + "imf": 724, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SV": { + "name": { + "common": "El Salvador", + "official": "Republic of El Salvador", + "native": { + "spa": { + "official": "República de El Salvador", + "common": "El Salvador" + } + } + }, + "demonym": "Salvadoran", + "capital": "San Salvador", + "iso_3166_1_alpha2": "SV", + "iso_3166_1_alpha3": "SLV", + "iso_3166_1_numeric": "222", + "currency": { + "SVC": { + "iso_4217_code": "SVC", + "iso_4217_numeric": 222, + "iso_4217_name": "Salvadoran colón", + "iso_4217_minor_unit": 2 + }, + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sv" + ], + "alt_spellings": [ + "SV", + "Republic of El Salvador", + "República de El Salvador" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "cym": { + "official": "Republic of El Salvador", + "common": "El Salvador" + }, + "deu": { + "official": "Republik El Salvador", + "common": "El Salvador" + }, + "fra": { + "official": "République du Salvador", + "common": "Salvador" + }, + "hrv": { + "official": "Republika El Salvador", + "common": "Salvador" + }, + "ita": { + "official": "Repubblica di El Salvador", + "common": "El Salvador" + }, + "jpn": { + "official": "エルサルバドル共和国", + "common": "エルサルバドル" + }, + "nld": { + "official": "Republiek El Salvador", + "common": "El Salvador" + }, + "por": { + "official": "República de El Salvador", + "common": "El Salvador" + }, + "rus": { + "official": "Республика Эль-Сальвадор", + "common": "Сальвадор" + }, + "spa": { + "official": "República de El Salvador", + "common": "El Salvador" + }, + "fin": { + "official": "El Salvadorin tasavalta", + "common": "El Salvador" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "13 50 N", + "latitude_dec": "13.671636581420898", + "longitude": "88 55 W", + "longitude_dec": "-88.86363220214844", + "max_latitude": "14.433333", + "max_longitude": "-87.657222", + "min_latitude": "13.158611", + "min_longitude": "-90.116389", + "area": 21041, + "region": "Americas", + "subregion": "Central America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "013", + "landlocked": false, + "borders": [ + "GTM", + "HND" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "503" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3585968, + "edgar": "H3", + "itu": "SLV", + "marc": "es", + "wmo": "ES", + "ds": "ES", + "fifa": "SLV", + "fips": "ES", + "gaul": 75, + "ioc": "ESA", + "cowc": "SAL", + "cown": 92, + "fao": 60, + "imf": 253, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SM": { + "name": { + "common": "San Marino", + "official": "Most Serene Republic of San Marino", + "native": { + "ita": { + "official": "Serenissima Repubblica di San Marino", + "common": "San Marino" + } + } + }, + "demonym": "Sammarinese", + "capital": "City of San Marino", + "iso_3166_1_alpha2": "SM", + "iso_3166_1_alpha3": "SMR", + "iso_3166_1_numeric": "674", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sm" + ], + "alt_spellings": [ + "SM", + "Republic of San Marino", + "Repubblica di San Marino" + ], + "languages": { + "ita": "Italian" + }, + "translations": { + "deu": { + "official": "Republik San Marino", + "common": "San Marino" + }, + "fra": { + "official": "République de Saint-Marin", + "common": "Saint-Marin" + }, + "hrv": { + "official": "Većina Serene Republika San Marino", + "common": "San Marino" + }, + "ita": { + "official": "Serenissima Repubblica di San Marino", + "common": "San Marino" + }, + "jpn": { + "official": "サンマリノのほとんどセリーヌ共和国", + "common": "サンマリノ" + }, + "nld": { + "official": "Meest Serene Republiek San Marino", + "common": "San Marino" + }, + "por": { + "official": "Sereníssima República de San Marino", + "common": "San Marino" + }, + "rus": { + "official": "Большинство Serene Республика Сан-Марино", + "common": "Сан-Марино" + }, + "spa": { + "official": "Serenísima República de San Marino", + "common": "San Marino" + }, + "fin": { + "official": "San Marinon seesteinen tasavalta", + "common": "San Marino" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "43 46 N", + "latitude_dec": "43.938133239746094", + "longitude": "12 25 E", + "longitude_dec": "12.463393211364746", + "max_latitude": "43.966667", + "max_longitude": "12.5", + "min_latitude": "43.908333", + "min_longitude": "12.416667", + "area": 61, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": true, + "borders": [ + "ITA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "378" + ], + "national_prefix": null, + "national_number_lengths": [ + 9, + 10, + 11, + 12 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3168068, + "edgar": "S8", + "itu": "SMR", + "marc": "sm", + "wmo": 0, + "ds": "RSM", + "fifa": "SMR", + "fips": "SM", + "gaul": 213, + "ioc": "SMR", + "cowc": "SNM", + "cown": 331, + "fao": 192, + "imf": 135, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SO": { + "name": { + "common": "Somalia", + "official": "Federal Republic of Somalia", + "native": { + "ara": { + "official": "جمهورية الصومال‎‎", + "common": "الصومال‎‎" + }, + "som": { + "official": "Jamhuuriyadda Federaalka Soomaaliya", + "common": "Soomaaliya" + } + } + }, + "demonym": "Somali", + "capital": "Mogadishu", + "iso_3166_1_alpha2": "SO", + "iso_3166_1_alpha3": "SOM", + "iso_3166_1_numeric": "706", + "currency": { + "SOS": { + "iso_4217_code": "SOS", + "iso_4217_numeric": 706, + "iso_4217_name": "Somali Shilling", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".so" + ], + "alt_spellings": [ + "SO", + "aṣ-Ṣūmāl", + "Federal Republic of Somalia", + "Jamhuuriyadda Federaalka Soomaaliya", + "Jumhūriyyat aṣ-Ṣūmāl al-Fiderāliyya" + ], + "languages": { + "ara": "Arabic", + "som": "Somali" + }, + "translations": { + "deu": { + "official": "Bundesrepublik Somalia", + "common": "Somalia" + }, + "fra": { + "official": "République fédérale de Somalie", + "common": "Somalie" + }, + "hrv": { + "official": "Savezna Republika Somaliji", + "common": "Somalija" + }, + "ita": { + "official": "Repubblica federale di Somalia", + "common": "Somalia" + }, + "jpn": { + "official": "ソマリア連邦共和国", + "common": "ソマリア" + }, + "nld": { + "official": "Federale Republiek Somalië", + "common": "Somalië" + }, + "por": { + "official": "República Federal da Somália", + "common": "Somália" + }, + "rus": { + "official": "Федеративная Республика Сомали", + "common": "Сомали" + }, + "spa": { + "official": "República Federal de Somalia", + "common": "Somalia" + }, + "fin": { + "official": "Somalian liittotasavalta", + "common": "Somalia" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "10 00 N", + "latitude_dec": "5.948267459869385", + "longitude": "49 00 E", + "longitude_dec": "47.47360610961914", + "max_latitude": "11.983333", + "max_longitude": "51.4", + "min_latitude": "-1.6594296959", + "min_longitude": "41", + "area": 637657, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [ + "DJI", + "ETH", + "KEN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "252" + ], + "national_prefix": null, + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 51537, + "edgar": "U1", + "itu": "SOM", + "marc": "so", + "wmo": "SI", + "ds": "SO", + "fifa": "SOM", + "fips": "SO", + "gaul": 226, + "ioc": "SOM", + "cowc": "SOM", + "cown": 520, + "fao": 201, + "imf": 726, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "PM": { + "name": { + "common": "Saint Pierre and Miquelon", + "official": "Saint Pierre and Miquelon", + "native": { + "fra": { + "official": "Collectivité territoriale de Saint-Pierre-et-Miquelon", + "common": "Saint-Pierre-et-Miquelon" + } + } + }, + "demonym": "French", + "capital": "Saint-Pierre", + "iso_3166_1_alpha2": "PM", + "iso_3166_1_alpha3": "SPM", + "iso_3166_1_numeric": "666", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".pm" + ], + "alt_spellings": [ + "PM", + "Collectivité territoriale de Saint-Pierre-et-Miquelon" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "St. Pierre und Miquelon", + "common": "Saint-Pierre und Miquelon" + }, + "fra": { + "official": "Saint-Pierre-et-Miquelon", + "common": "Saint-Pierre-et-Miquelon" + }, + "hrv": { + "official": "Saint Pierre i Miquelon", + "common": "Sveti Petar i Mikelon" + }, + "ita": { + "official": "Saint Pierre e Miquelon", + "common": "Saint-Pierre e Miquelon" + }, + "jpn": { + "official": "サンピエール島·ミクロン島", + "common": "サンピエール島・ミクロン島" + }, + "nld": { + "official": "Saint-Pierre en Miquelon", + "common": "Saint Pierre en Miquelon" + }, + "por": { + "official": "Saint Pierre e Miquelon", + "common": "Saint-Pierre e Miquelon" + }, + "rus": { + "official": "Сен-Пьер и Микелон", + "common": "Сен-Пьер и Микелон" + }, + "spa": { + "official": "San Pedro y Miquelón", + "common": "San Pedro y Miquelón" + }, + "fin": { + "official": "Saint-Pierre ja Miquelon", + "common": "Saint-Pierre ja Miquelon" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "46 50 N", + "latitude_dec": "46.90594482421875", + "longitude": "56 20 W", + "longitude_dec": "-56.336585998535156", + "max_latitude": "47.139722", + "max_longitude": "-56.120556", + "min_latitude": "46.748333", + "min_longitude": "-56.405278", + "area": 242, + "region": "Americas", + "subregion": "Northern America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "021", + "landlocked": false, + "borders": [], + "independent": "Part of FR" + }, + "dialling": { + "calling_code": [ + "508" + ], + "national_prefix": "0", + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3424932, + "edgar": "V0", + "itu": "SPM", + "marc": "xl", + "wmo": "FP", + "ds": "F", + "fifa": "SPM", + "fips": "SB", + "gaul": 210, + "ioc": "SPM", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 363, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "RS": { + "name": { + "common": "Serbia", + "official": "Republic of Serbia", + "native": { + "srp": { + "official": "Република Србија", + "common": "Србија" + } + } + }, + "demonym": "Serbian", + "capital": "Belgrade", + "iso_3166_1_alpha2": "RS", + "iso_3166_1_alpha3": "SRB", + "iso_3166_1_numeric": "688", + "currency": { + "RSD": { + "iso_4217_code": "RSD", + "iso_4217_numeric": 941, + "iso_4217_name": "Serbian Dinar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".rs", + ".срб" + ], + "alt_spellings": [ + "RS", + "Srbija", + "Republic of Serbia", + "Република Србија", + "Republika Srbija" + ], + "languages": { + "srp": "Serbian" + }, + "translations": { + "deu": { + "official": "Republik Serbien", + "common": "Serbien" + }, + "fra": { + "official": "République de Serbie", + "common": "Serbie" + }, + "hrv": { + "official": "Republika Srbija", + "common": "Srbija" + }, + "ita": { + "official": "Repubblica di Serbia", + "common": "Serbia" + }, + "jpn": { + "official": "セルビア共和国", + "common": "セルビア" + }, + "nld": { + "official": "Republiek Servië", + "common": "Servië" + }, + "por": { + "official": "República da Sérvia", + "common": "Sérvia" + }, + "rus": { + "official": "Республика Сербия", + "common": "Сербия" + }, + "spa": { + "official": "República de Serbia", + "common": "Serbia" + }, + "fin": { + "official": "Serbian tasavalta", + "common": "Serbia" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "44 00 N", + "latitude_dec": "44.23297119140625", + "longitude": "21 00 E", + "longitude_dec": "20.797958374023438", + "max_latitude": "46.155556", + "max_longitude": "22.966667", + "min_latitude": "41.866667", + "min_longitude": "18.928889", + "area": 88361, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": true, + "borders": [ + "BIH", + "BGR", + "HRV", + "HUN", + "UNK", + "MKD", + "MNE", + "ROU" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "381" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "99" + }, + "extra": { + "geonameid": 6290252, + "edgar": "Z2", + "itu": "SRB", + "marc": "rb", + "wmo": "YG", + "ds": "SRB", + "fifa": "SRB", + "fips": "RI,KV", + "gaul": 2648, + "ioc": "SRB", + "cowc": 0, + "cown": 0, + "fao": 272, + "imf": 942, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SS": { + "name": { + "common": "South Sudan", + "official": "Republic of South Sudan", + "native": { + "eng": { + "official": "Republic of South Sudan", + "common": "South Sudan" + } + } + }, + "demonym": "South Sudanese", + "capital": "Juba", + "iso_3166_1_alpha2": "SS", + "iso_3166_1_alpha3": "SSD", + "iso_3166_1_numeric": "728", + "currency": { + "SSP": { + "iso_4217_code": "SSP", + "iso_4217_numeric": 728, + "iso_4217_name": "South Sudanese Pound", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ss" + ], + "alt_spellings": [ + "SS" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Republik Südsudan", + "common": "Südsudan" + }, + "fra": { + "official": "République du Soudan du Sud", + "common": "Soudan du Sud" + }, + "hrv": { + "official": "Republika Južni Sudan", + "common": "Južni Sudan" + }, + "ita": { + "official": "Repubblica del Sudan del Sud", + "common": "Sudan del sud" + }, + "jpn": { + "official": "南スーダン共和国", + "common": "南スーダン" + }, + "nld": { + "official": "Republiek Zuid-Soedan", + "common": "Zuid-Soedan" + }, + "por": { + "official": "República do Sudão do Sul", + "common": "Sudão do Sul" + }, + "rus": { + "official": "Республика Южный Судан", + "common": "Южный Судан" + }, + "spa": { + "official": "República de Sudán del Sur", + "common": "Sudán del Sur" + }, + "fin": { + "official": "Etelä-Sudanin tasavalta", + "common": "Etelä-Sudan" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "7 00 N", + "latitude_dec": "7.303858280181885", + "longitude": "30 00 E", + "longitude_dec": "30.280752182006836", + "max_latitude": "12.236389", + "max_longitude": "35.948997", + "min_latitude": "3.48898", + "min_longitude": "23.440849", + "area": 619745, + "region": "Africa", + "subregion": "Middle Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": true, + "borders": [ + "CAF", + "COD", + "ETH", + "KEN", + "SDN", + "UGA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "211" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "0" + }, + "extra": { + "geonameid": 7909807, + "edgar": 0, + "itu": "SSD", + "marc": "sd", + "wmo": 0, + "ds": 0, + "fifa": 0, + "fips": "OD", + "gaul": 0, + "ioc": 0, + "cowc": "SSD", + "cown": 626, + "fao": 277, + "imf": 733, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "ST": { + "name": { + "common": "São Tomé and Príncipe", + "official": "Democratic Republic of São Tomé and Príncipe", + "native": { + "por": { + "official": "República Democrática do São Tomé e Príncipe", + "common": "São Tomé e Príncipe" + } + } + }, + "demonym": "Sao Tomean", + "capital": "São Tomé", + "iso_3166_1_alpha2": "ST", + "iso_3166_1_alpha3": "STP", + "iso_3166_1_numeric": "678", + "currency": { + "STD": { + "iso_4217_code": "STD", + "iso_4217_numeric": 678, + "iso_4217_name": "Dobra", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".st" + ], + "alt_spellings": [ + "ST", + "Democratic Republic of São Tomé and Príncipe", + "Sao Tome and Principe", + "República Democrática de São Tomé e Príncipe" + ], + "languages": { + "por": "Portuguese" + }, + "translations": { + "deu": { + "official": "Demokratische Republik São Tomé und Príncipe", + "common": "São Tomé und Príncipe" + }, + "fra": { + "official": "République démocratique de São Tomé et Príncipe", + "common": "São Tomé et Príncipe" + }, + "hrv": { + "official": "Demokratska Republika São Tome i Principe", + "common": "Sveti Toma i Princip" + }, + "ita": { + "official": "Repubblica democratica di São Tomé e Príncipe", + "common": "São Tomé e Príncipe" + }, + "jpn": { + "official": "サントメ·プリンシペ民主共和国", + "common": "サントメ・プリンシペ" + }, + "nld": { + "official": "Democratische Republiek Sao Tomé en Principe", + "common": "Sao Tomé en Principe" + }, + "por": { + "official": "República Democrática de São Tomé e Príncipe", + "common": "São Tomé e Príncipe" + }, + "rus": { + "official": "Демократическая Республика Сан-Томе и Принсипи", + "common": "Сан-Томе и Принсипи" + }, + "spa": { + "official": "República Democrática de Santo Tomé y Príncipe", + "common": "Santo Tomé y Príncipe" + }, + "fin": { + "official": "São Tomé ja Príncipen demokraattinen tasavalta", + "common": "São Téme ja Príncipe" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "1 00 N", + "latitude_dec": "0.275555282831192", + "longitude": "7 00 E", + "longitude_dec": "6.631628036499023", + "max_latitude": "1.733333", + "max_longitude": "7.483333", + "min_latitude": "-0.016667", + "min_longitude": "6.466667", + "area": 964, + "region": "Africa", + "subregion": "Middle Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "017", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "239" + ], + "national_prefix": "0", + "national_number_lengths": [ + 6, + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2410758, + "edgar": "S9", + "itu": "STP", + "marc": "sf", + "wmo": "TP", + "ds": 0, + "fifa": "STP", + "fips": "TP", + "gaul": 214, + "ioc": "STP", + "cowc": "STP", + "cown": 403, + "fao": 193, + "imf": 716, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SR": { + "name": { + "common": "Suriname", + "official": "Republic of Suriname", + "native": { + "nld": { + "official": "Republiek Suriname", + "common": "Suriname" + } + } + }, + "demonym": "Surinamer", + "capital": "Paramaribo", + "iso_3166_1_alpha2": "SR", + "iso_3166_1_alpha3": "SUR", + "iso_3166_1_numeric": "740", + "currency": { + "SRD": { + "iso_4217_code": "SRD", + "iso_4217_numeric": 968, + "iso_4217_name": "Surinam Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sr" + ], + "alt_spellings": [ + "SR", + "Sarnam", + "Sranangron", + "Republic of Suriname", + "Republiek Suriname" + ], + "languages": { + "nld": "Dutch" + }, + "translations": { + "deu": { + "official": "Republik Suriname", + "common": "Suriname" + }, + "fra": { + "official": "République du Suriname", + "common": "Surinam" + }, + "hrv": { + "official": "Republika Surinam", + "common": "Surinam" + }, + "ita": { + "official": "Repubblica del Suriname", + "common": "Suriname" + }, + "jpn": { + "official": "スリナム共和国", + "common": "スリナム" + }, + "nld": { + "official": "Republiek Suriname", + "common": "Suriname" + }, + "por": { + "official": "República do Suriname", + "common": "Suriname" + }, + "rus": { + "official": "Республика Суринам", + "common": "Суринам" + }, + "spa": { + "official": "República de Suriname", + "common": "Surinam" + }, + "fin": { + "official": "Surinamen tasavalta", + "common": "Suriname" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": false, + "latitude": "4 00 N", + "latitude_dec": "4.216928958892822", + "longitude": "56 00 W", + "longitude_dec": "-55.889217376708984", + "max_latitude": "6", + "max_longitude": "-53.983333", + "min_latitude": "2.1", + "min_longitude": "-60", + "area": 163820, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "BRA", + "GUF", + "GUY" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "597" + ], + "national_prefix": "0", + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3382998, + "edgar": "V3", + "itu": "SUR", + "marc": "sr", + "wmo": "SM", + "ds": "SME", + "fifa": "SUR", + "fips": "NS", + "gaul": 233, + "ioc": "SUR", + "cowc": "SUR", + "cown": 115, + "fao": 207, + "imf": 366, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SK": { + "name": { + "common": "Slovakia", + "official": "Slovak Republic", + "native": { + "slk": { + "official": "Slovenská republika", + "common": "Slovensko" + } + } + }, + "demonym": "Slovak", + "capital": "Bratislava", + "iso_3166_1_alpha2": "SK", + "iso_3166_1_alpha3": "SVK", + "iso_3166_1_numeric": "703", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sk" + ], + "alt_spellings": [ + "SK", + "Slovak Republic", + "Slovenská republika" + ], + "languages": { + "slk": "Slovak" + }, + "translations": { + "deu": { + "official": "Slowakische Republik", + "common": "Slowakei" + }, + "fra": { + "official": "République slovaque", + "common": "Slovaquie" + }, + "hrv": { + "official": "slovačka", + "common": "Slovačka" + }, + "ita": { + "official": "Repubblica slovacca", + "common": "Slovacchia" + }, + "jpn": { + "official": "スロバキア共和国", + "common": "スロバキア" + }, + "nld": { + "official": "Slowaakse Republiek", + "common": "Slowakije" + }, + "por": { + "official": "República Eslovaca", + "common": "Eslováquia" + }, + "rus": { + "official": "Словацкая Республика", + "common": "Словакия" + }, + "spa": { + "official": "República Eslovaca", + "common": "República Eslovaca" + }, + "fin": { + "official": "Slovakian tasavalta", + "common": "Slovakia" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "48 40 N", + "latitude_dec": "48.70748519897461", + "longitude": "19 30 E", + "longitude_dec": "19.48488998413086", + "max_latitude": "49.6", + "max_longitude": "26.5", + "min_latitude": "45.5", + "min_longitude": "17", + "area": 49037, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "151", + "landlocked": true, + "borders": [ + "AUT", + "CZE", + "HUN", + "POL", + "UKR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "421" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3057568, + "edgar": "2B", + "itu": "SVK", + "marc": "xo", + "wmo": "SQ", + "ds": "SK", + "fifa": "SVK", + "fips": "LO", + "gaul": 223, + "ioc": "SVK", + "cowc": "SLO", + "cown": 317, + "fao": 199, + "imf": 936, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 20, + "reduced": [ + 10 + ], + "super_reduced": null, + "parking": null + } + } + }, + "SI": { + "name": { + "common": "Slovenia", + "official": "Republic of Slovenia", + "native": { + "slv": { + "official": "Republika Slovenija", + "common": "Slovenija" + } + } + }, + "demonym": "Slovene", + "capital": "Ljubljana", + "iso_3166_1_alpha2": "SI", + "iso_3166_1_alpha3": "SVN", + "iso_3166_1_numeric": "705", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".si" + ], + "alt_spellings": [ + "SI", + "Republic of Slovenia", + "Republika Slovenija" + ], + "languages": { + "slv": "Slovene" + }, + "translations": { + "deu": { + "official": "Republik Slowenien", + "common": "Slowenien" + }, + "fra": { + "official": "République de Slovénie", + "common": "Slovénie" + }, + "hrv": { + "official": "Republika Slovenija", + "common": "Slovenija" + }, + "ita": { + "official": "Repubblica di Slovenia", + "common": "Slovenia" + }, + "jpn": { + "official": "スロベニア共和国", + "common": "スロベニア" + }, + "nld": { + "official": "Republiek Slovenië", + "common": "Slovenië" + }, + "por": { + "official": "República da Eslovénia", + "common": "Eslovénia" + }, + "rus": { + "official": "Республика Словения", + "common": "Словения" + }, + "spa": { + "official": "República de Eslovenia", + "common": "Eslovenia" + }, + "fin": { + "official": "Slovenian tasavalta", + "common": "Slovenia" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "46 07 N", + "latitude_dec": "46.1202392578125", + "longitude": "14 49 E", + "longitude_dec": "14.820664405822754", + "max_latitude": "46.866667", + "max_longitude": "17.466667", + "min_latitude": "45.083333", + "min_longitude": "13.426667", + "area": 20273, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": false, + "borders": [ + "AUT", + "HRV", + "ITA", + "HUN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "386" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3190538, + "edgar": "2A", + "itu": "SVN", + "marc": "xv", + "wmo": "LJ", + "ds": "SLO", + "fifa": "SVN", + "fips": "SI", + "gaul": 224, + "ioc": "SLO", + "cowc": "SLV", + "cown": 349, + "fao": 198, + "imf": 961, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 22, + "reduced": [ + 9.5 + ], + "super_reduced": null, + "parking": null + } + } + }, + "SE": { + "name": { + "common": "Sweden", + "official": "Kingdom of Sweden", + "native": { + "swe": { + "official": "Konungariket Sverige", + "common": "Sverige" + } + } + }, + "demonym": "Swedish", + "capital": "Stockholm", + "iso_3166_1_alpha2": "SE", + "iso_3166_1_alpha3": "SWE", + "iso_3166_1_numeric": "752", + "currency": { + "SEK": { + "iso_4217_code": "SEK", + "iso_4217_numeric": 752, + "iso_4217_name": "Swedish Krona", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".se" + ], + "alt_spellings": [ + "SE", + "Kingdom of Sweden", + "Konungariket Sverige" + ], + "languages": { + "swe": "Swedish" + }, + "translations": { + "deu": { + "official": "Königreich Schweden", + "common": "Schweden" + }, + "fra": { + "official": "Royaume de Suède", + "common": "Suède" + }, + "hrv": { + "official": "Kraljevina Švedska", + "common": "Švedska" + }, + "ita": { + "official": "Regno di Svezia", + "common": "Svezia" + }, + "jpn": { + "official": "スウェーデン王国", + "common": "スウェーデン" + }, + "nld": { + "official": "Koninkrijk Zweden", + "common": "Zweden" + }, + "por": { + "official": "Reino da Suécia", + "common": "Suécia" + }, + "rus": { + "official": "Королевство Швеция", + "common": "Швеция" + }, + "spa": { + "official": "Reino de Suecia", + "common": "Suecia" + }, + "fin": { + "official": "Ruotsin kuningaskunta", + "common": "Ruotsi" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "62 00 N", + "latitude_dec": "62.67497253417969", + "longitude": "15 00 E", + "longitude_dec": "16.798059463500977", + "max_latitude": "69.033333", + "max_longitude": "25", + "min_latitude": "46.758333", + "min_longitude": "10.958333", + "area": 450295, + "region": "Europe", + "subregion": "Northern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "154", + "landlocked": false, + "borders": [ + "FIN", + "NOR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "46" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2661886, + "edgar": "V7", + "itu": "S", + "marc": "sw", + "wmo": "SN", + "ds": "S", + "fifa": "SWE", + "fips": "SW", + "gaul": 236, + "ioc": "SWE", + "cowc": "SWD", + "cown": 380, + "fao": 210, + "imf": 144, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": true, + "vat_rates": { + "standard": 25, + "reduced": [ + 6, + 12 + ], + "super_reduced": null, + "parking": null + } + } + }, + "SZ": { + "name": { + "common": "Swaziland", + "official": "Kingdom of Swaziland", + "native": { + "eng": { + "official": "Kingdom of Swaziland", + "common": "Swaziland" + }, + "ssw": { + "official": "Kingdom of Swaziland", + "common": "Swaziland" + } + } + }, + "demonym": "Swazi", + "capital": "Lobamba", + "iso_3166_1_alpha2": "SZ", + "iso_3166_1_alpha3": "SWZ", + "iso_3166_1_numeric": "748", + "currency": { + "SZL": { + "iso_4217_code": "SZL", + "iso_4217_numeric": 748, + "iso_4217_name": "Lilangeni", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sz" + ], + "alt_spellings": [ + "SZ", + "weSwatini", + "Swatini", + "Ngwane", + "Kingdom of Swaziland", + "Umbuso waseSwatini" + ], + "languages": { + "eng": "English", + "ssw": "Swazi" + }, + "translations": { + "deu": { + "official": "Königreich Swasiland", + "common": "Swasiland" + }, + "fra": { + "official": "Royaume du Swaziland", + "common": "Swaziland" + }, + "hrv": { + "official": "Kraljevina Svazi", + "common": "Svazi" + }, + "ita": { + "official": "Regno dello Swaziland", + "common": "Swaziland" + }, + "jpn": { + "official": "スワジランド王国", + "common": "スワジランド" + }, + "nld": { + "official": "Koninkrijk Swaziland", + "common": "Swaziland" + }, + "por": { + "official": "Reino da Suazilândia", + "common": "Suazilândia" + }, + "rus": { + "official": "Королевство Свазиленд", + "common": "Свазиленд" + }, + "spa": { + "official": "Reino de Swazilandia", + "common": "Suazilandia" + }, + "fin": { + "official": "Swazimaan kuningaskunta", + "common": "Swazimaa" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "26 30 S", + "latitude_dec": "-26.565134048461914", + "longitude": "31 30 E", + "longitude_dec": "31.49811363220215", + "max_latitude": "-25.783333", + "max_longitude": "32.133333", + "min_latitude": "-27.316667", + "min_longitude": "30.783333", + "area": 17364, + "region": "Africa", + "subregion": "Southern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "018", + "landlocked": true, + "borders": [ + "MOZ", + "ZAF" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "268" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 934841, + "edgar": "V6", + "itu": "SWZ", + "marc": "sq", + "wmo": "SV", + "ds": "SD", + "fifa": "SWZ", + "fips": "WZ", + "gaul": 235, + "ioc": "SWZ", + "cowc": "SWA", + "cown": 572, + "fao": 209, + "imf": 734, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SX": { + "name": { + "common": "Sint Maarten", + "official": "Sint Maarten", + "native": { + "eng": { + "official": "Sint Maarten", + "common": "Sint Maarten" + }, + "fra": { + "official": "Saint-Martin", + "common": "Saint-Martin" + }, + "nld": { + "official": "Sint Maarten", + "common": "Sint Maarten" + } + } + }, + "demonym": "St. Maartener", + "capital": "Philipsburg", + "iso_3166_1_alpha2": "SX", + "iso_3166_1_alpha3": "SXM", + "iso_3166_1_numeric": "534", + "currency": { + "ANG": { + "iso_4217_code": "ANG", + "iso_4217_numeric": 532, + "iso_4217_name": "Netherlands Antillean Guilder", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sx" + ], + "alt_spellings": [ + "SX", + "Sint Maarten (Dutch part)" + ], + "languages": { + "eng": "English", + "fra": "French", + "nld": "Dutch" + }, + "translations": { + "deu": { + "official": "Sint Maarten", + "common": "Sint Maarten" + }, + "fra": { + "official": "Sint Maarten", + "common": "Saint-Martin" + }, + "ita": { + "official": "Sint Maarten", + "common": "Sint Maarten" + }, + "jpn": { + "official": "シントマールテン島", + "common": "シント・マールテン" + }, + "nld": { + "official": "Sint Maarten", + "common": "Sint Maarten" + }, + "por": { + "official": "Sint Maarten", + "common": "São Martinho" + }, + "rus": { + "official": "Синт-Маартен", + "common": "Синт-Мартен" + }, + "spa": { + "official": "Sint Maarten", + "common": "Sint Maarten" + }, + "fin": { + "official": "Sint Maarten", + "common": "Sint Maarten" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "", + "latitude_dec": "18.042224884033203", + "longitude": "", + "longitude_dec": "-63.06623458862305", + "max_latitude": "18.0641707", + "max_longitude": "-62.9982448", + "min_latitude": "18.005267", + "min_longitude": "-63.1379781", + "area": 34, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [ + "MAF" + ], + "independent": "Part of NL" + }, + "dialling": { + "calling_code": [ + "1721" + ], + "national_prefix": "0", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 7609695, + "edgar": 0, + "itu": 0, + "marc": "sn", + "wmo": 0, + "ds": 0, + "fifa": 0, + "fips": "NN", + "gaul": 0, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SC": { + "name": { + "common": "Seychelles", + "official": "Republic of Seychelles", + "native": { + "crs": { + "official": "Repiblik Sesel", + "common": "Sesel" + }, + "eng": { + "official": "Republic of Seychelles", + "common": "Seychelles" + }, + "fra": { + "official": "République des Seychelles", + "common": "Seychelles" + } + } + }, + "demonym": "Seychellois", + "capital": "Victoria", + "iso_3166_1_alpha2": "SC", + "iso_3166_1_alpha3": "SYC", + "iso_3166_1_numeric": "690", + "currency": { + "SCR": { + "iso_4217_code": "SCR", + "iso_4217_numeric": 690, + "iso_4217_name": "Seychelles Rupee", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sc" + ], + "alt_spellings": [ + "SC", + "Republic of Seychelles", + "Repiblik Sesel", + "République des Seychelles" + ], + "languages": { + "crs": "Seychellois Creole", + "eng": "English", + "fra": "French" + }, + "translations": { + "deu": { + "official": "Republik der Seychellen", + "common": "Seychellen" + }, + "fra": { + "official": "République des Seychelles", + "common": "Seychelles" + }, + "hrv": { + "official": "Republika Sejšeli", + "common": "Sejšeli" + }, + "ita": { + "official": "Repubblica delle Seychelles", + "common": "Seychelles" + }, + "jpn": { + "official": "セイシェル共和国", + "common": "セーシェル" + }, + "nld": { + "official": "Republiek der Seychellen", + "common": "Seychellen" + }, + "por": { + "official": "República das Seychelles", + "common": "Seicheles" + }, + "rus": { + "official": "Республика Сейшельские Острова", + "common": "Сейшельские Острова" + }, + "spa": { + "official": "República de las Seychelles", + "common": "Seychelles" + }, + "fin": { + "official": "Seychellien tasavalta", + "common": "Seychellit" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "4 35 S", + "latitude_dec": "-4.669795036315918", + "longitude": "55 40 E", + "longitude_dec": "55.47166061401367", + "max_latitude": "-3.716667", + "max_longitude": "56.266667", + "min_latitude": "-10.216667", + "min_longitude": "46.216667", + "area": 452, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "248" + ], + "national_prefix": null, + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 241170, + "edgar": "T2", + "itu": "SEY", + "marc": "se", + "wmo": "SC", + "ds": "SY", + "fifa": "SEY", + "fips": "SE", + "gaul": 220, + "ioc": "SEY", + "cowc": "SEY", + "cown": 591, + "fao": 196, + "imf": 718, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SY": { + "name": { + "common": "Syria", + "official": "Syrian Arab Republic", + "native": { + "ara": { + "official": "الجمهورية العربية السورية", + "common": "سوريا" + } + } + }, + "demonym": "Syrian", + "capital": "Damascus", + "iso_3166_1_alpha2": "SY", + "iso_3166_1_alpha3": "SYR", + "iso_3166_1_numeric": "760", + "currency": { + "SYP": { + "iso_4217_code": "SYP", + "iso_4217_numeric": 760, + "iso_4217_name": "Syrian Pound", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".sy", + "سوريا." + ], + "alt_spellings": [ + "SY", + "Syrian Arab Republic", + "Al-Jumhūrīyah Al-ʻArabīyah As-Sūrīyah" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Arabische Republik Syrien", + "common": "Syrien" + }, + "fra": { + "official": "République arabe syrienne", + "common": "Syrie" + }, + "hrv": { + "official": "Sirijska Arapska Republika", + "common": "Sirija" + }, + "ita": { + "official": "Repubblica araba siriana", + "common": "Siria" + }, + "jpn": { + "official": "シリアアラブ共和国", + "common": "シリア・アラブ共和国" + }, + "nld": { + "official": "Syrische Arabische Republiek", + "common": "Syrië" + }, + "por": { + "official": "República Árabe Síria", + "common": "Síria" + }, + "rus": { + "official": "Сирийская Арабская Республика", + "common": "Сирия" + }, + "spa": { + "official": "República Árabe Siria", + "common": "Siria" + }, + "fin": { + "official": "Syyrian arabitasavalta", + "common": "Syyria" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": false, + "latitude": "35 00 N", + "latitude_dec": "35.03312683105469", + "longitude": "38 00 E", + "longitude_dec": "38.473472595214844", + "max_latitude": "37.280278", + "max_longitude": "42.337778", + "min_latitude": "32", + "min_longitude": "35.6", + "area": 185180, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "IRQ", + "ISR", + "JOR", + "LBN", + "TUR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "963" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 163843, + "edgar": "V9", + "itu": "SYR", + "marc": "sy", + "wmo": "SY", + "ds": "SYR", + "fifa": "SYR", + "fips": "SY", + "gaul": 238, + "ioc": "SYR", + "cowc": "SYR", + "cown": 652, + "fao": 212, + "imf": 463, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "TC": { + "name": { + "common": "Turks and Caicos Islands", + "official": "Turks and Caicos Islands", + "native": { + "eng": { + "official": "Turks and Caicos Islands", + "common": "Turks and Caicos Islands" + } + } + }, + "demonym": "Turks and Caicos Islander", + "capital": "Cockburn Town", + "iso_3166_1_alpha2": "TC", + "iso_3166_1_alpha3": "TCA", + "iso_3166_1_numeric": "796", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tc" + ], + "alt_spellings": [ + "TC" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Turks und Caicos Inseln", + "common": "Turks-und Caicosinseln" + }, + "fra": { + "official": "Îles Turques et Caïques", + "common": "Îles Turques-et-Caïques" + }, + "hrv": { + "official": "Otoci Turks i Caicos", + "common": "Otoci Turks i Caicos" + }, + "ita": { + "official": "Turks e Caicos", + "common": "Isole Turks e Caicos" + }, + "jpn": { + "official": "タークス·カイコス諸島", + "common": "タークス・カイコス諸島" + }, + "nld": { + "official": "Turks-en Caicoseilanden", + "common": "Turks-en Caicoseilanden" + }, + "por": { + "official": "Ilhas Turks e Caicos", + "common": "Ilhas Turks e Caicos" + }, + "rus": { + "official": "Теркс и Кайкос острова", + "common": "Теркс и Кайкос" + }, + "spa": { + "official": "Islas Turcas y Caicos", + "common": "Islas Turks y Caicos" + }, + "fin": { + "official": "Turks-ja Caicossaaret", + "common": "Turks-ja Caicossaaret" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "21 45 N", + "latitude_dec": "21.758726119995117", + "longitude": "71 35 W", + "longitude_dec": "-71.71514892578125", + "max_latitude": "21.95", + "max_longitude": "-71.083333", + "min_latitude": "21.116667", + "min_longitude": "-72.466667", + "area": 948, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "APAC", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "1649" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3576916, + "edgar": "W7", + "itu": "TCA", + "marc": "tc", + "wmo": "TI", + "ds": 0, + "fifa": "TCA", + "fips": "TK", + "gaul": 251, + "ioc": "TKS", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TD": { + "name": { + "common": "Chad", + "official": "Republic of Chad", + "native": { + "ara": { + "official": "جمهورية تشاد", + "common": "تشاد‎" + }, + "fra": { + "official": "République du Tchad", + "common": "Tchad" + } + } + }, + "demonym": "Chadian", + "capital": "N'Djamena", + "iso_3166_1_alpha2": "TD", + "iso_3166_1_alpha3": "TCD", + "iso_3166_1_numeric": "148", + "currency": { + "XAF": { + "iso_4217_code": "XAF", + "iso_4217_numeric": 950, + "iso_4217_name": "CFA Franc BEAC", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".td" + ], + "alt_spellings": [ + "TD", + "Tchad", + "Republic of Chad", + "République du Tchad" + ], + "languages": { + "ara": "Arabic", + "fra": "French" + }, + "translations": { + "cym": { + "official": "Republic of Chad", + "common": "Tsiad" + }, + "deu": { + "official": "Republik Tschad", + "common": "Tschad" + }, + "fra": { + "official": "République du Tchad", + "common": "Tchad" + }, + "hrv": { + "official": "Čadu", + "common": "Čad" + }, + "ita": { + "official": "Repubblica del Ciad", + "common": "Ciad" + }, + "jpn": { + "official": "チャド共和国", + "common": "チャド" + }, + "nld": { + "official": "Republiek Tsjaad", + "common": "Tsjaad" + }, + "por": { + "official": "República do Chade", + "common": "Chade" + }, + "rus": { + "official": "Республика Чад", + "common": "Чад" + }, + "spa": { + "official": "República de Chad", + "common": "Chad" + }, + "fin": { + "official": "Tšadin tasavalta", + "common": "Tšad" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "15 00 N", + "latitude_dec": "15.367652893066406", + "longitude": "19 00 E", + "longitude_dec": "18.66758155822754", + "max_latitude": "26", + "max_longitude": "24", + "min_latitude": "7.5", + "min_longitude": "2", + "area": 1284000, + "region": "Africa", + "subregion": "Middle Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "017", + "landlocked": true, + "borders": [ + "CMR", + "CAF", + "LBY", + "NER", + "NGA", + "SSD" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "235" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "15" + }, + "extra": { + "geonameid": 2434508, + "edgar": "F2", + "itu": "TCD", + "marc": "cd", + "wmo": "CD", + "ds": "TCH", + "fifa": "CHA", + "fips": "CD", + "gaul": 50, + "ioc": "CHA", + "cowc": "CHA", + "cown": 483, + "fao": 39, + "imf": 628, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TG": { + "name": { + "common": "Togo", + "official": "Togolese Republic", + "native": { + "fra": { + "official": "République togolaise", + "common": "Togo" + } + } + }, + "demonym": "Togolese", + "capital": "Lomé", + "iso_3166_1_alpha2": "TG", + "iso_3166_1_alpha3": "TGO", + "iso_3166_1_numeric": "768", + "currency": { + "XOF": { + "iso_4217_code": "XOF", + "iso_4217_numeric": 952, + "iso_4217_name": "CFA Franc BCEAO", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".tg" + ], + "alt_spellings": [ + "TG", + "Togolese", + "Togolese Republic", + "République Togolaise" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Republik Togo", + "common": "Togo" + }, + "fra": { + "official": "République togolaise", + "common": "Togo" + }, + "hrv": { + "official": "Togolese Republika", + "common": "Togo" + }, + "ita": { + "official": "Repubblica del Togo", + "common": "Togo" + }, + "jpn": { + "official": "トーゴ共和国", + "common": "トーゴ" + }, + "nld": { + "official": "Republiek Togo", + "common": "Togo" + }, + "por": { + "official": "República do Togo", + "common": "Togo" + }, + "rus": { + "official": "Того Республика", + "common": "Того" + }, + "spa": { + "official": "República de Togo", + "common": "Togo" + }, + "fin": { + "official": "Togon tasavalta", + "common": "Togo" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "8 00 N", + "latitude_dec": "8.513226509094238", + "longitude": "1 10 E", + "longitude_dec": "0.9800975322723389", + "max_latitude": "11.103889", + "max_longitude": "1.816667", + "min_latitude": "6.131944", + "min_longitude": "-4", + "area": 56785, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "011", + "landlocked": false, + "borders": [ + "BEN", + "BFA", + "GHA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "228" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2363686, + "edgar": "W2", + "itu": "TGO", + "marc": "tg", + "wmo": "TG", + "ds": "TG", + "fifa": "TOG", + "fips": "TO", + "gaul": 243, + "ioc": "TOG", + "cowc": "TOG", + "cown": 461, + "fao": 217, + "imf": 742, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TH": { + "name": { + "common": "Thailand", + "official": "Kingdom of Thailand", + "native": { + "tha": { + "official": "ราชอาณาจักรไทย", + "common": "ประเทศไทย" + } + } + }, + "demonym": "Thai", + "capital": "Bangkok", + "iso_3166_1_alpha2": "TH", + "iso_3166_1_alpha3": "THA", + "iso_3166_1_numeric": "764", + "currency": { + "THB": { + "iso_4217_code": "THB", + "iso_4217_numeric": 764, + "iso_4217_name": "Baht", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".th", + ".ไทย" + ], + "alt_spellings": [ + "TH", + "Prathet", + "Thai", + "Kingdom of Thailand", + "ราชอาณาจักรไทย", + "Ratcha Anachak Thai" + ], + "languages": { + "tha": "Thai" + }, + "translations": { + "deu": { + "official": "Königreich Thailand", + "common": "Thailand" + }, + "fra": { + "official": "Royaume de Thaïlande", + "common": "Thaïlande" + }, + "hrv": { + "official": "Kraljevina Tajland", + "common": "Tajland" + }, + "ita": { + "official": "Regno di Thailandia", + "common": "Tailandia" + }, + "jpn": { + "official": "タイ王国", + "common": "タイ" + }, + "nld": { + "official": "Koninkrijk Thailand", + "common": "Thailand" + }, + "por": { + "official": "Reino da Tailândia", + "common": "Tailândia" + }, + "rus": { + "official": "Королевство Таиланд", + "common": "Таиланд" + }, + "spa": { + "official": "Reino de Tailandia", + "common": "Tailandia" + }, + "fin": { + "official": "Thaimaan kuningaskunta", + "common": "Thaimaa" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "15 00 N", + "latitude_dec": "14.48458194732666", + "longitude": "100 00 E", + "longitude_dec": "100.85191345214844", + "max_latitude": "20.442778", + "max_longitude": "105.766667", + "min_latitude": "5.616667", + "min_longitude": "97.366667", + "area": 513120, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": false, + "borders": [ + "MMR", + "KHM", + "LAO", + "MYS" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "66" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "001" + }, + "extra": { + "geonameid": 1605651, + "edgar": "W1", + "itu": "THA", + "marc": "th", + "wmo": "TH", + "ds": "T", + "fifa": "THA", + "fips": "TH", + "gaul": 240, + "ioc": "THA", + "cowc": "THI", + "cown": 800, + "fao": 216, + "imf": 578, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TJ": { + "name": { + "common": "Tajikistan", + "official": "Republic of Tajikistan", + "native": { + "rus": { + "official": "Республика Таджикистан", + "common": "Таджикистан" + }, + "tgk": { + "official": "Ҷумҳурии Тоҷикистон", + "common": "Тоҷикистон" + } + } + }, + "demonym": "Tadzhik", + "capital": "Dushanbe", + "iso_3166_1_alpha2": "TJ", + "iso_3166_1_alpha3": "TJK", + "iso_3166_1_numeric": "762", + "currency": { + "TJS": { + "iso_4217_code": "TJS", + "iso_4217_numeric": 972, + "iso_4217_name": "Somoni", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tj" + ], + "alt_spellings": [ + "TJ", + "Toçikiston", + "Republic of Tajikistan", + "Ҷумҳурии Тоҷикистон", + "Çumhuriyi Toçikiston" + ], + "languages": { + "rus": "Russian", + "tgk": "Tajik" + }, + "translations": { + "deu": { + "official": "Republik Tadschikistan", + "common": "Tadschikistan" + }, + "fra": { + "official": "République du Tadjikistan", + "common": "Tadjikistan" + }, + "hrv": { + "official": "Republika Tadžikistan", + "common": "Tađikistan" + }, + "ita": { + "official": "Repubblica del Tajikistan", + "common": "Tagikistan" + }, + "jpn": { + "official": "タジキスタン共和国", + "common": "タジキスタン" + }, + "nld": { + "official": "Tadzjikistan", + "common": "Tadzjikistan" + }, + "por": { + "official": "República do Tajiquistão", + "common": "Tajiquistão" + }, + "rus": { + "official": "Республика Таджикистан", + "common": "Таджикистан" + }, + "spa": { + "official": "República de Tayikistán", + "common": "Tayikistán" + }, + "fin": { + "official": "Tadžikistanin tasavalta", + "common": "Tadžikistan" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "39 00 N", + "latitude_dec": "38.879764556884766", + "longitude": "71 00 E", + "longitude_dec": "70.89906311035156", + "max_latitude": "40.9", + "max_longitude": "75", + "min_latitude": "36.716667", + "min_longitude": "67.416667", + "area": 143100, + "region": "Asia", + "subregion": "Central Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "143", + "landlocked": true, + "borders": [ + "AFG", + "CHN", + "KGZ", + "UZB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "992" + ], + "national_prefix": "8", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "810" + }, + "extra": { + "geonameid": 1220409, + "edgar": "2D", + "itu": "TJK", + "marc": "ta", + "wmo": "TA", + "ds": "TJ", + "fifa": "TJK", + "fips": "TI", + "gaul": 239, + "ioc": "TJK", + "cowc": "TAJ", + "cown": 702, + "fao": 208, + "imf": 923, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TK": { + "name": { + "common": "Tokelau", + "official": "Tokelau", + "native": { + "eng": { + "official": "Tokelau", + "common": "Tokelau" + }, + "smo": { + "official": "Tokelau", + "common": "Tokelau" + }, + "tkl": { + "official": "Tokelau", + "common": "Tokelau" + } + } + }, + "demonym": "Tokelauan", + "capital": "Fakaofo", + "iso_3166_1_alpha2": "TK", + "iso_3166_1_alpha3": "TKL", + "iso_3166_1_numeric": "772", + "currency": { + "NZD": { + "iso_4217_code": "NZD", + "iso_4217_numeric": 554, + "iso_4217_name": "New Zealand Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tk" + ], + "alt_spellings": [ + "TK" + ], + "languages": { + "eng": "English", + "smo": "Samoan", + "tkl": "Tokelauan" + }, + "translations": { + "deu": { + "official": "Tokelau", + "common": "Tokelau" + }, + "fra": { + "official": "Îles Tokelau", + "common": "Tokelau" + }, + "hrv": { + "official": "Tokelau", + "common": "Tokelau" + }, + "ita": { + "official": "Tokelau", + "common": "Isole Tokelau" + }, + "jpn": { + "official": "トケラウ諸島", + "common": "トケラウ" + }, + "nld": { + "official": "Tokelau", + "common": "Tokelau" + }, + "por": { + "official": "Tokelau", + "common": "Tokelau" + }, + "rus": { + "official": "Токелау", + "common": "Токелау" + }, + "spa": { + "official": "Tokelau", + "common": "Islas Tokelau" + }, + "fin": { + "official": "Tokelau", + "common": "Tokelau" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "9 00 S", + "latitude_dec": "-8.979207992553711", + "longitude": "172 00 W", + "longitude_dec": "-172.2017059326172", + "max_latitude": "-8.533333", + "max_longitude": "-171.183333", + "min_latitude": "-9.433333", + "min_longitude": "-172.516667", + "area": 12, + "region": "Oceania", + "subregion": "Polynesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "061", + "landlocked": false, + "borders": [], + "independent": "Territory of NZ" + }, + "dialling": { + "calling_code": [ + "690" + ], + "national_prefix": null, + "national_number_lengths": [ + 4 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 4031074, + "edgar": "W3", + "itu": "TKL", + "marc": "tl", + "wmo": "TK", + "ds": "NZ", + "fifa": "TKL", + "fips": "TL", + "gaul": 244, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TM": { + "name": { + "common": "Turkmenistan", + "official": "Turkmenistan", + "native": { + "rus": { + "official": "Туркменистан", + "common": "Туркмения" + }, + "tuk": { + "official": "Türkmenistan", + "common": "Türkmenistan" + } + } + }, + "demonym": "Turkmen", + "capital": "Ashgabat", + "iso_3166_1_alpha2": "TM", + "iso_3166_1_alpha3": "TKM", + "iso_3166_1_numeric": "795", + "currency": { + "TMT": { + "iso_4217_code": "TMT", + "iso_4217_numeric": 934, + "iso_4217_name": "Turkmenistan New Manat", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tm" + ], + "alt_spellings": [ + "TM" + ], + "languages": { + "rus": "Russian", + "tuk": "Turkmen" + }, + "translations": { + "deu": { + "official": "Turkmenistan", + "common": "Turkmenistan" + }, + "fra": { + "official": "Turkménistan", + "common": "Turkménistan" + }, + "hrv": { + "official": "Turkmenistan", + "common": "Turkmenistan" + }, + "ita": { + "official": "Turkmenistan", + "common": "Turkmenistan" + }, + "jpn": { + "official": "トルクメニスタン", + "common": "トルクメニスタン" + }, + "nld": { + "official": "Turkmenistan", + "common": "Turkmenistan" + }, + "por": { + "official": "Turcomenistão", + "common": "Turquemenistão" + }, + "rus": { + "official": "Туркменистан", + "common": "Туркмения" + }, + "spa": { + "official": "Turkmenistán", + "common": "Turkmenistán" + }, + "fin": { + "official": "Turkmenistan", + "common": "Turkmenistan" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "40 00 N", + "latitude_dec": "39.2012825012207", + "longitude": "60 00 E", + "longitude_dec": "59.082252502441406", + "max_latitude": "42.566667", + "max_longitude": "66.65", + "min_latitude": "35.216667", + "min_longitude": "52.5", + "area": 488100, + "region": "Asia", + "subregion": "Central Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "143", + "landlocked": true, + "borders": [ + "AFG", + "IRN", + "KAZ", + "UZB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "993" + ], + "national_prefix": "8", + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "810" + }, + "extra": { + "geonameid": 1218197, + "edgar": "2E", + "itu": "TKM", + "marc": "tk", + "wmo": "TR", + "ds": "TM", + "fifa": "TKM", + "fips": "TX", + "gaul": 250, + "ioc": "TKM", + "cowc": "TKM", + "cown": 701, + "fao": 213, + "imf": 925, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TL": { + "name": { + "common": "Timor-Leste", + "official": "Democratic Republic of Timor-Leste", + "native": { + "por": { + "official": "República Democrática de Timor-Leste", + "common": "Timor-Leste" + }, + "tet": { + "official": "Repúblika Demokrátika Timór-Leste", + "common": "Timór-Leste" + } + } + }, + "demonym": "East Timorese", + "capital": "Dili", + "iso_3166_1_alpha2": "TL", + "iso_3166_1_alpha3": "TLS", + "iso_3166_1_numeric": "626", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tl" + ], + "alt_spellings": [ + "TL", + "East Timor", + "Democratic Republic of Timor-Leste", + "República Democrática de Timor-Leste", + "Repúblika Demokrátika Timór-Leste", + "Timór Lorosa'e", + "Timor Lorosae" + ], + "languages": { + "por": "Portuguese", + "tet": "Tetum" + }, + "translations": { + "deu": { + "official": "Demokratische Republik Timor-Leste", + "common": "Timor-Leste" + }, + "fra": { + "official": "République démocratique du Timor oriental", + "common": "Timor oriental" + }, + "hrv": { + "official": "Demokratska Republika Timor-Leste", + "common": "Istočni Timor" + }, + "ita": { + "official": "Repubblica Democratica di Timor Est", + "common": "Timor Est" + }, + "jpn": { + "official": "東ティモール民主共和国", + "common": "東ティモール" + }, + "nld": { + "official": "Democratische Republiek Oost-Timor", + "common": "Oost-Timor" + }, + "por": { + "official": "República Democrática de Timor-Leste", + "common": "Timor-Leste" + }, + "rus": { + "official": "Демократическая Республика Тимор -Лешти", + "common": "Восточный Тимор" + }, + "spa": { + "official": "República Democrática de Timor-Leste", + "common": "Timor Oriental" + }, + "fin": { + "official": "Itä-Timorin demokraattinen tasavalta", + "common": "Itä-Timor" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "8 50 S", + "latitude_dec": "-8.804786682128906", + "longitude": "125 55 E", + "longitude_dec": "126.07902526855469", + "max_latitude": "-7.597222", + "max_longitude": "127.336667", + "min_latitude": "-9.469722", + "min_longitude": "124.085556", + "area": 14874, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": false, + "borders": [ + "IDN" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "670" + ], + "national_prefix": null, + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "None" + }, + "extra": { + "geonameid": 1966436, + "edgar": "Z3", + "itu": "TLS", + "marc": "em", + "wmo": "TM", + "ds": 0, + "fifa": "TLS", + "fips": "TT", + "gaul": 242, + "ioc": "TLS", + "cowc": "ETM", + "cown": 860, + "fao": 176, + "imf": 537, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TO": { + "name": { + "common": "Tonga", + "official": "Kingdom of Tonga", + "native": { + "eng": { + "official": "Kingdom of Tonga", + "common": "Tonga" + }, + "ton": { + "official": "Kingdom of Tonga", + "common": "Tonga" + } + } + }, + "demonym": "Tongan", + "capital": "Nuku'alofa", + "iso_3166_1_alpha2": "TO", + "iso_3166_1_alpha3": "TON", + "iso_3166_1_numeric": "776", + "currency": { + "TOP": { + "iso_4217_code": "TOP", + "iso_4217_numeric": 776, + "iso_4217_name": "Pa’anga", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".to" + ], + "alt_spellings": [ + "TO" + ], + "languages": { + "eng": "English", + "ton": "Tongan" + }, + "translations": { + "deu": { + "official": "Königreich Tonga", + "common": "Tonga" + }, + "fra": { + "official": "Royaume des Tonga", + "common": "Tonga" + }, + "hrv": { + "official": "Kraljevina Tonga", + "common": "Tonga" + }, + "ita": { + "official": "Regno di Tonga", + "common": "Tonga" + }, + "jpn": { + "official": "トンガ王国", + "common": "トンガ" + }, + "nld": { + "official": "Koninkrijk Tonga", + "common": "Tonga" + }, + "por": { + "official": "Reino de Tonga", + "common": "Tonga" + }, + "rus": { + "official": "Королевство Тонга", + "common": "Тонга" + }, + "spa": { + "official": "Reino de Tonga", + "common": "Tonga" + }, + "fin": { + "official": "Tongan kuningaskunta", + "common": "Tonga" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "20 00 S", + "latitude_dec": "-21.147611618041992", + "longitude": "175 00 W", + "longitude_dec": "-175.25067138671875", + "max_latitude": "-15.566667", + "max_longitude": "-150", + "min_latitude": "-22.333333", + "min_longitude": "-176.2", + "area": 747, + "region": "Oceania", + "subregion": "Polynesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "061", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "676" + ], + "national_prefix": null, + "national_number_lengths": [ + 5, + 6, + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 4032283, + "edgar": "W4", + "itu": "TON", + "marc": "to", + "wmo": "TO", + "ds": 0, + "fifa": "TGA", + "fips": "TN", + "gaul": 245, + "ioc": "TGA", + "cowc": "TON", + "cown": 955, + "fao": 219, + "imf": 866, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TT": { + "name": { + "common": "Trinidad and Tobago", + "official": "Republic of Trinidad and Tobago", + "native": { + "eng": { + "official": "Republic of Trinidad and Tobago", + "common": "Trinidad and Tobago" + } + } + }, + "demonym": "Trinidadian", + "capital": "Port of Spain", + "iso_3166_1_alpha2": "TT", + "iso_3166_1_alpha3": "TTO", + "iso_3166_1_numeric": "780", + "currency": { + "TTD": { + "iso_4217_code": "TTD", + "iso_4217_numeric": 780, + "iso_4217_name": "Trinidad and Tobago Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tt" + ], + "alt_spellings": [ + "TT", + "Republic of Trinidad and Tobago" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Republik Trinidad und Tobago", + "common": "Trinidad und Tobago" + }, + "fra": { + "official": "République de Trinité-et-Tobago", + "common": "Trinité-et-Tobago" + }, + "hrv": { + "official": "Republika Trinidad i Tobago", + "common": "Trinidad i Tobago" + }, + "ita": { + "official": "Repubblica di Trinidad e Tobago", + "common": "Trinidad e Tobago" + }, + "jpn": { + "official": "トリニダード·トバゴ共和国", + "common": "トリニダード・トバゴ" + }, + "nld": { + "official": "Republiek Trinidad en Tobago", + "common": "Trinidad en Tobago" + }, + "por": { + "official": "República de Trinidad e Tobago", + "common": "Trinidade e Tobago" + }, + "rus": { + "official": "Республика Тринидад и Тобаго", + "common": "Тринидад и Тобаго" + }, + "spa": { + "official": "República de Trinidad y Tobago", + "common": "Trinidad y Tobago" + }, + "fin": { + "official": "Trinidadin ja Tobagon tasavalta", + "common": "Trinidad ja Tobago" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": false, + "latitude": "11 00 N", + "latitude_dec": "10.68574047088623", + "longitude": "61 00 W", + "longitude_dec": "-61.1640625", + "max_latitude": "20", + "max_longitude": "-60.5", + "min_latitude": "10.033333", + "min_longitude": "-74", + "area": 5130, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1868" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3573591, + "edgar": "W5", + "itu": "TRD", + "marc": "tr", + "wmo": "TD", + "ds": "TT", + "fifa": "TRI", + "fips": "TD", + "gaul": 246, + "ioc": "TTO", + "cowc": "TRI", + "cown": 52, + "fao": 220, + "imf": 369, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TN": { + "name": { + "common": "Tunisia", + "official": "Tunisian Republic", + "native": { + "ara": { + "official": "الجمهورية التونسية", + "common": "تونس" + } + } + }, + "demonym": "Tunisian", + "capital": "Tunis", + "iso_3166_1_alpha2": "TN", + "iso_3166_1_alpha3": "TUN", + "iso_3166_1_numeric": "788", + "currency": { + "TND": { + "iso_4217_code": "TND", + "iso_4217_numeric": 788, + "iso_4217_name": "Tunisian Dinar", + "iso_4217_minor_unit": 3 + } + }, + "tld": [ + ".tn" + ], + "alt_spellings": [ + "TN", + "Republic of Tunisia", + "al-Jumhūriyyah at-Tūnisiyyah" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Tunesische Republik", + "common": "Tunesien" + }, + "fra": { + "official": "République tunisienne", + "common": "Tunisie" + }, + "hrv": { + "official": "Tuniski Republika", + "common": "Tunis" + }, + "ita": { + "official": "Repubblica tunisina", + "common": "Tunisia" + }, + "jpn": { + "official": "チュニジア共和国", + "common": "チュニジア" + }, + "nld": { + "official": "Republiek Tunesië", + "common": "Tunesië" + }, + "por": { + "official": "República da Tunísia", + "common": "Tunísia" + }, + "rus": { + "official": "Тунисской Республики", + "common": "Тунис" + }, + "spa": { + "official": "República de Túnez", + "common": "Túnez" + }, + "fin": { + "official": "Tunisian tasavalta", + "common": "Tunisia" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "34 00 N", + "latitude_dec": "34.33528518676758", + "longitude": "9 00 E", + "longitude_dec": "9.245259284973145", + "max_latitude": "37.566667", + "max_longitude": "13", + "min_latitude": "26", + "min_longitude": "7", + "area": 163610, + "region": "Africa", + "subregion": "Northern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "015", + "landlocked": false, + "borders": [ + "DZA", + "LBY" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "216" + ], + "national_prefix": null, + "national_number_lengths": [ + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2464461, + "edgar": "W6", + "itu": "TUN", + "marc": "ti", + "wmo": "TS", + "ds": "TN", + "fifa": "TUN", + "fips": "TS", + "gaul": 248, + "ioc": "TUN", + "cowc": "TUN", + "cown": 616, + "fao": 222, + "imf": 744, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TR": { + "name": { + "common": "Turkey", + "official": "Republic of Turkey", + "native": { + "tur": { + "official": "Türkiye Cumhuriyeti", + "common": "Türkiye" + } + } + }, + "demonym": "Turkish", + "capital": "Ankara", + "iso_3166_1_alpha2": "TR", + "iso_3166_1_alpha3": "TUR", + "iso_3166_1_numeric": "792", + "currency": { + "TRY": { + "iso_4217_code": "TRY", + "iso_4217_numeric": 949, + "iso_4217_name": "Turkish Lira", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tr" + ], + "alt_spellings": [ + "TR", + "Turkiye", + "Republic of Turkey", + "Türkiye Cumhuriyeti" + ], + "languages": { + "tur": "Turkish" + }, + "translations": { + "deu": { + "official": "Republik Türkei", + "common": "Türkei" + }, + "fra": { + "official": "République de Turquie", + "common": "Turquie" + }, + "hrv": { + "official": "Republika Turska", + "common": "Turska" + }, + "ita": { + "official": "Repubblica di Turchia", + "common": "Turchia" + }, + "jpn": { + "official": "トルコ共和国", + "common": "トルコ" + }, + "nld": { + "official": "Republiek Turkije", + "common": "Turkije" + }, + "por": { + "official": "República da Turquia", + "common": "Turquia" + }, + "rus": { + "official": "Республика Турции", + "common": "Турция" + }, + "spa": { + "official": "República de Turquía", + "common": "Turquía" + }, + "fin": { + "official": "Turkin tasavalta", + "common": "Turkki" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "39 00 N", + "latitude_dec": "39.05101013183594", + "longitude": "35 00 E", + "longitude_dec": "34.93033981323242", + "max_latitude": "42.1", + "max_longitude": "44.8", + "min_latitude": "35.819444", + "min_longitude": "25", + "area": 783562, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "ARM", + "AZE", + "BGR", + "GEO", + "GRC", + "IRN", + "IRQ", + "SYR" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "90" + ], + "national_prefix": "0", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 298795, + "edgar": "W8", + "itu": "TUR", + "marc": "tu", + "wmo": "TU", + "ds": "TR", + "fifa": "TUR", + "fips": "TU", + "gaul": 249, + "ioc": "TUR", + "cowc": "TUR", + "cown": 640, + "fao": 223, + "imf": 186, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "TV": { + "name": { + "common": "Tuvalu", + "official": "Tuvalu", + "native": { + "eng": { + "official": "Tuvalu", + "common": "Tuvalu" + }, + "tvl": { + "official": "Tuvalu", + "common": "Tuvalu" + } + } + }, + "demonym": "Tuvaluan", + "capital": "Funafuti", + "iso_3166_1_alpha2": "TV", + "iso_3166_1_alpha3": "TUV", + "iso_3166_1_numeric": "798", + "currency": { + "AUD": { + "iso_4217_code": "AUD", + "iso_4217_numeric": 36, + "iso_4217_name": "Australian Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tv" + ], + "alt_spellings": [ + "TV" + ], + "languages": { + "eng": "English", + "tvl": "Tuvaluan" + }, + "translations": { + "deu": { + "official": "Tuvalu", + "common": "Tuvalu" + }, + "fra": { + "official": "Tuvalu", + "common": "Tuvalu" + }, + "hrv": { + "official": "Tuvalu", + "common": "Tuvalu" + }, + "ita": { + "official": "Tuvalu", + "common": "Tuvalu" + }, + "jpn": { + "official": "ツバル", + "common": "ツバル" + }, + "nld": { + "official": "Tuvalu", + "common": "Tuvalu" + }, + "por": { + "official": "Tuvalu", + "common": "Tuvalu" + }, + "rus": { + "official": "Тувалу", + "common": "Тувалу" + }, + "spa": { + "official": "Tuvalu", + "common": "Tuvalu" + }, + "fin": { + "official": "Tuvalu", + "common": "Tuvalu" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "8 00 S", + "latitude_dec": "-7.471305847167969", + "longitude": "178 00 E", + "longitude_dec": "178.6740264892578", + "max_latitude": "-5.65", + "max_longitude": "179.883333", + "min_latitude": "-10.75", + "min_longitude": "176.116667", + "area": 26, + "region": "Oceania", + "subregion": "Polynesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "061", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "688" + ], + "national_prefix": null, + "national_number_lengths": [ + 5 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2110297, + "edgar": "2G", + "itu": "TUV", + "marc": "tv", + "wmo": "TV", + "ds": 0, + "fifa": "TUV", + "fips": "TV", + "gaul": 252, + "ioc": "TUV", + "cowc": "TUV", + "cown": 947, + "fao": 227, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "TW": { + "name": { + "common": "Taiwan", + "official": "Republic of China (Taiwan)", + "native": { + "cmn": { + "official": "中华民国", + "common": "臺灣" + } + } + }, + "demonym": "Taiwanese", + "capital": "Taipei", + "iso_3166_1_alpha2": "TW", + "iso_3166_1_alpha3": "TWN", + "iso_3166_1_numeric": "158", + "currency": { + "TWD": { + "iso_4217_code": "TWD", + "iso_4217_numeric": 901, + "iso_4217_name": "New Taiwan dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tw", + ".台湾", + ".台灣" + ], + "alt_spellings": [ + "TW", + "Táiwān", + "Republic of China", + "中華民國", + "Zhōnghuá Mínguó", + "Chinese Taipei for IOC", + "Taiwan, Province of China" + ], + "languages": { + "cmn": "Mandarin" + }, + "translations": { + "deu": { + "official": "Republik China (Taiwan)", + "common": "Taiwan" + }, + "fra": { + "official": "République de Chine (Taïwan)", + "common": "Taïwan" + }, + "hrv": { + "official": "Republika Kina", + "common": "Tajvan" + }, + "ita": { + "official": "Repubblica cinese (Taiwan)", + "common": "Taiwan" + }, + "jpn": { + "official": "中華民国", + "common": "台湾(台湾省\/中華民国)" + }, + "nld": { + "official": "Republiek China (Taiwan)", + "common": "Taiwan" + }, + "por": { + "official": "República da China", + "common": "Ilha Formosa" + }, + "rus": { + "official": "Китайская Республика", + "common": "Тайвань" + }, + "spa": { + "official": "República de China en Taiwán", + "common": "Taiwán" + }, + "fin": { + "official": "Kiinan tasavalta", + "common": "Taiwan" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "23 30 N", + "latitude_dec": "23.685789108276367", + "longitude": "121 00 E", + "longitude_dec": "120.89749145507812", + "max_latitude": "26.389444", + "max_longitude": "122.107778", + "min_latitude": "21.733333", + "min_longitude": "118.1152555661", + "area": 36193, + "region": "Asia", + "subregion": "Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "030", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "886" + ], + "national_prefix": null, + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "002" + }, + "extra": { + "geonameid": 1668284, + "edgar": 0, + "itu": 0, + "marc": "ch", + "wmo": 0, + "ds": "RC", + "fifa": "TPE", + "fips": "TW", + "gaul": 925, + "ioc": "TPE", + "cowc": "TAW", + "cown": 713, + "fao": 0, + "imf": 528, + "ar5": "ASIA", + "address_format": "{{recipient}}\n{{street}}\n{{city}} {{region_short}} {{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "TZ": { + "name": { + "common": "Tanzania", + "official": "United Republic of Tanzania", + "native": { + "eng": { + "official": "United Republic of Tanzania", + "common": "Tanzania" + }, + "swa": { + "official": "Jamhuri ya Muungano wa Tanzania", + "common": "Tanzania" + } + } + }, + "demonym": "Tanzanian", + "capital": "Dodoma", + "iso_3166_1_alpha2": "TZ", + "iso_3166_1_alpha3": "TZA", + "iso_3166_1_numeric": "834", + "currency": { + "TZS": { + "iso_4217_code": "TZS", + "iso_4217_numeric": 834, + "iso_4217_name": "Tanzanian shilling", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".tz" + ], + "alt_spellings": [ + "TZ", + "Tanzania, United Republic of", + "United Republic of Tanzania", + "Jamhuri ya Muungano wa Tanzania" + ], + "languages": { + "eng": "English", + "swa": "Swahili" + }, + "translations": { + "deu": { + "official": "Vereinigte Republik Tansania", + "common": "Tansania" + }, + "fra": { + "official": "République -Unie de Tanzanie", + "common": "Tanzanie" + }, + "hrv": { + "official": "Ujedinjena Republika Tanzanija", + "common": "Tanzanija" + }, + "ita": { + "official": "Repubblica Unita di Tanzania", + "common": "Tanzania" + }, + "jpn": { + "official": "タンザニア連合共和国", + "common": "タンザニア" + }, + "nld": { + "official": "Verenigde Republiek Tanzania", + "common": "Tanzania" + }, + "por": { + "official": "República Unida da Tanzânia", + "common": "Tanzânia" + }, + "rus": { + "official": "Объединенная Республика Танзания", + "common": "Танзания" + }, + "spa": { + "official": "República Unida de Tanzania", + "common": "Tanzania" + }, + "fin": { + "official": "Tansanian yhdistynyt tasavalta", + "common": "Tansania" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "6 00 S", + "latitude_dec": "-6.306897163391113", + "longitude": "35 00 E", + "longitude_dec": "34.85392761230469", + "max_latitude": "0.833333", + "max_longitude": "40.433333", + "min_latitude": "-11.7", + "min_longitude": "29.583333", + "area": 945087, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": false, + "borders": [ + "BDI", + "COD", + "KEN", + "MWI", + "MOZ", + "RWA", + "UGA", + "ZMB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "255" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "000" + }, + "extra": { + "geonameid": 149590, + "edgar": 0, + "itu": "TZA", + "marc": "tz", + "wmo": "TN", + "ds": "EAT", + "fifa": "TAN", + "fips": "TZ", + "gaul": 257, + "ioc": "TAN", + "cowc": "TAZ", + "cown": 510, + "fao": 215, + "imf": 738, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "UG": { + "name": { + "common": "Uganda", + "official": "Republic of Uganda", + "native": { + "eng": { + "official": "Republic of Uganda", + "common": "Uganda" + }, + "swa": { + "official": "Republic of Uganda", + "common": "Uganda" + } + } + }, + "demonym": "Ugandan", + "capital": "Kampala", + "iso_3166_1_alpha2": "UG", + "iso_3166_1_alpha3": "UGA", + "iso_3166_1_numeric": "800", + "currency": { + "UGX": { + "iso_4217_code": "UGX", + "iso_4217_numeric": 800, + "iso_4217_name": "Uganda Shilling", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".ug" + ], + "alt_spellings": [ + "UG", + "Republic of Uganda", + "Jamhuri ya Uganda" + ], + "languages": { + "eng": "English", + "swa": "Swahili" + }, + "translations": { + "deu": { + "official": "Republik Uganda", + "common": "Uganda" + }, + "fra": { + "official": "République de l'Ouganda", + "common": "Ouganda" + }, + "hrv": { + "official": "Republika Uganda", + "common": "Uganda" + }, + "ita": { + "official": "Repubblica di Uganda", + "common": "Uganda" + }, + "jpn": { + "official": "ウガンダ共和国", + "common": "ウガンダ" + }, + "nld": { + "official": "Republiek Uganda", + "common": "Oeganda" + }, + "por": { + "official": "República do Uganda", + "common": "Uganda" + }, + "rus": { + "official": "Республика Уганда", + "common": "Уганда" + }, + "spa": { + "official": "República de Uganda", + "common": "Uganda" + }, + "fin": { + "official": "Ugandan tasavalta", + "common": "Uganda" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "1 00 N", + "latitude_dec": "1.2773280143737793", + "longitude": "32 00 E", + "longitude_dec": "32.389984130859375", + "max_latitude": "4.166667", + "max_longitude": "34.95", + "min_latitude": "-1.433333", + "min_longitude": "29.583333", + "area": 241550, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": true, + "borders": [ + "COD", + "KEN", + "RWA", + "SSD", + "TZA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "256" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "000" + }, + "extra": { + "geonameid": 226074, + "edgar": "W9", + "itu": "UGA", + "marc": "ug", + "wmo": "UG", + "ds": "EAU", + "fifa": "UGA", + "fips": "UG", + "gaul": 253, + "ioc": "UGA", + "cowc": "UGA", + "cown": 500, + "fao": 226, + "imf": 746, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "UA": { + "name": { + "common": "Ukraine", + "official": "Ukraine", + "native": { + "rus": { + "official": "Украина", + "common": "Украина" + }, + "ukr": { + "official": "Україна", + "common": "Україна" + } + } + }, + "demonym": "Ukrainian", + "capital": "Kiev", + "iso_3166_1_alpha2": "UA", + "iso_3166_1_alpha3": "UKR", + "iso_3166_1_numeric": "804", + "currency": { + "UAH": { + "iso_4217_code": "UAH", + "iso_4217_numeric": 980, + "iso_4217_name": "Hryvnia", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ua", + ".укр" + ], + "alt_spellings": [ + "UA", + "Ukrayina" + ], + "languages": { + "rus": "Russian", + "ukr": "Ukrainian" + }, + "translations": { + "deu": { + "official": "Ukraine", + "common": "Ukraine" + }, + "fra": { + "official": "Ukraine", + "common": "Ukraine" + }, + "hrv": { + "official": "Ukrajina", + "common": "Ukrajina" + }, + "ita": { + "official": "Ucraina", + "common": "Ucraina" + }, + "jpn": { + "official": "ウクライナ", + "common": "ウクライナ" + }, + "nld": { + "official": "Oekraïne", + "common": "Oekraïne" + }, + "por": { + "official": "Ucrânia", + "common": "Ucrânia" + }, + "rus": { + "official": "Украина", + "common": "Украина" + }, + "spa": { + "official": "Ucrania", + "common": "Ucrania" + }, + "fin": { + "official": "Ukraina", + "common": "Ukraina" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "49 00 N", + "latitude_dec": "48.92656326293945", + "longitude": "32 00 E", + "longitude_dec": "31.47578239440918", + "max_latitude": "63.4", + "max_longitude": "68.85", + "min_latitude": "37.8", + "min_longitude": "20.933333", + "area": 603500, + "region": "Europe", + "subregion": "Eastern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "151", + "landlocked": false, + "borders": [ + "BLR", + "HUN", + "MDA", + "POL", + "ROU", + "RUS", + "SVK" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "380" + ], + "national_prefix": "8", + "national_number_lengths": [ + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "810" + }, + "extra": { + "geonameid": 690791, + "edgar": "2H", + "itu": "UKR", + "marc": "un", + "wmo": "UR", + "ds": "UA", + "fifa": "UKR", + "fips": "UP", + "gaul": 254, + "ioc": "UKR", + "cowc": "UKR", + "cown": 369, + "fao": 230, + "imf": 926, + "ar5": "EIT", + "address_format": "{{recipient}}\n{{street}}\n{{city}} {{region_short}}\n{{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "UM": { + "name": { + "common": "United States Minor Outlying Islands", + "official": "United States Minor Outlying Islands", + "native": { + "eng": { + "official": "United States Minor Outlying Islands", + "common": "United States Minor Outlying Islands" + } + } + }, + "demonym": "American", + "capital": "", + "iso_3166_1_alpha2": "UM", + "iso_3166_1_alpha3": "UMI", + "iso_3166_1_numeric": "581", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".us" + ], + "alt_spellings": [ + "UM" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "USA, kleinere ausgelagerte Inseln", + "common": "Kleinere Inselbesitzungen der Vereinigten Staaten" + }, + "fra": { + "official": "Îles mineures éloignées des États-Unis", + "common": "Îles mineures éloignées des États-Unis" + }, + "hrv": { + "official": "Mali udaljeni otoci SAD-a", + "common": "Mali udaljeni otoci SAD-a" + }, + "ita": { + "official": "Stati Uniti Isole Minori", + "common": "Isole minori esterne degli Stati Uniti d'America" + }, + "jpn": { + "official": "アメリカ合衆国外諸島", + "common": "合衆国領有小離島" + }, + "nld": { + "official": "Kleine afgelegen eilanden van de Verenigde Staten", + "common": "Kleine afgelegen eilanden van de Verenigde Staten" + }, + "por": { + "official": "Estados Unidos Ilhas Menores Distantes", + "common": "Ilhas Menores Distantes dos Estados Unidos" + }, + "rus": { + "official": "Внешние малые острова США", + "common": "Внешние малые острова США" + }, + "spa": { + "official": "Estados Unidos Islas menores alejadas de", + "common": "Islas Ultramarinas Menores de Estados Unidos" + }, + "fin": { + "official": "Yhdysvaltain asumattomat saaret", + "common": "Yhdysvaltain asumattomat saaret" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "", + "latitude_dec": "19.282319", + "longitude": "", + "longitude_dec": "166.647047", + "max_latitude": "28.3977184", + "max_longitude": "-159.9849071", + "min_latitude": "-0.3824678", + "min_longitude": "166.5989221", + "area": 34.2, + "region": "Americas", + "subregion": "Northern America", + "world_region": "AMER", + "region_code": "", + "subregion_code": "", + "landlocked": false, + "borders": [], + "independent": "Territories of US" + }, + "dialling": { + "calling_code": [], + "national_prefix": "", + "national_number_lengths": [], + "national_destination_code_lengths": [], + "international_prefix": "" + }, + "extra": { + "geonameid": 5854968, + "edgar": 0, + "itu": 0, + "marc": "ji,xf,wk,uc,up", + "wmo": 0, + "ds": "USA", + "fifa": 0, + "fips": "FQ,HQ,DQ,JQ,KQ,MQ,BQ,LQ,WQ", + "gaul": 0, + "ioc": 0, + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "UY": { + "name": { + "common": "Uruguay", + "official": "Oriental Republic of Uruguay", + "native": { + "spa": { + "official": "República Oriental del Uruguay", + "common": "Uruguay" + } + } + }, + "demonym": "Uruguayan", + "capital": "Montevideo", + "iso_3166_1_alpha2": "UY", + "iso_3166_1_alpha3": "URY", + "iso_3166_1_numeric": "858", + "currency": { + "UYI": { + "iso_4217_code": "UYI", + "iso_4217_numeric": 940, + "iso_4217_name": "Uruguay Peso en Unidades Indexadas (URUIURUI) (funds code)", + "iso_4217_minor_unit": 0 + }, + "UYU": { + "iso_4217_code": "UYU", + "iso_4217_numeric": 858, + "iso_4217_name": "Peso Uruguayo", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".uy" + ], + "alt_spellings": [ + "UY", + "Oriental Republic of Uruguay", + "República Oriental del Uruguay" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Republik Östlich des Uruguay", + "common": "Uruguay" + }, + "fra": { + "official": "République orientale de l'Uruguay", + "common": "Uruguay" + }, + "hrv": { + "official": "Orijentalna Republika Urugvaj", + "common": "Urugvaj" + }, + "ita": { + "official": "Repubblica Orientale dell'Uruguay", + "common": "Uruguay" + }, + "jpn": { + "official": "ウルグアイ東方共和国", + "common": "ウルグアイ" + }, + "nld": { + "official": "Oosterse Republiek Uruguay", + "common": "Uruguay" + }, + "por": { + "official": "República Oriental do Uruguai", + "common": "Uruguai" + }, + "rus": { + "official": "Восточной Республики Уругвай", + "common": "Уругвай" + }, + "spa": { + "official": "República Oriental del Uruguay", + "common": "Uruguay" + }, + "fin": { + "official": "Uruguayn itäinen tasavalta", + "common": "Uruguay" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "33 00 S", + "latitude_dec": "-32.96965408325195", + "longitude": "56 00 W", + "longitude_dec": "-56.055908203125", + "max_latitude": "-30.183333", + "max_longitude": "-53.266667", + "min_latitude": "-35.033333", + "min_longitude": "-58.5", + "area": 181034, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "ARG", + "BRA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "598" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3439705, + "edgar": "X3", + "itu": "URG", + "marc": "uy", + "wmo": "UY", + "ds": "ROU", + "fifa": "URU", + "fips": "UY", + "gaul": 260, + "ioc": "URU", + "cowc": "URU", + "cown": 165, + "fao": 234, + "imf": 298, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "US": { + "name": { + "common": "United States", + "official": "United States of America", + "native": { + "eng": { + "official": "United States of America", + "common": "United States" + } + } + }, + "demonym": "American", + "capital": "Washington D.C.", + "iso_3166_1_alpha2": "US", + "iso_3166_1_alpha3": "USA", + "iso_3166_1_numeric": "840", + "currency": { + "USN": { + "iso_4217_code": "USN", + "iso_4217_numeric": 997, + "iso_4217_name": "United States dollar (next day) (funds code)", + "iso_4217_minor_unit": 2 + }, + "USS": { + "iso_4217_code": "USS", + "iso_4217_numeric": 998, + "iso_4217_name": "United States dollar (same day) (funds code)", + "iso_4217_minor_unit": 2 + }, + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".us" + ], + "alt_spellings": [ + "US", + "USA", + "United States of America" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Vereinigte Staaten von Amerika", + "common": "Vereinigte Staaten von Amerika" + }, + "fra": { + "official": "Les états-unis d'Amérique", + "common": "États-Unis" + }, + "hrv": { + "official": "Sjedinjene Države Amerike", + "common": "Sjedinjene Američke Države" + }, + "ita": { + "official": "Stati Uniti d'America", + "common": "Stati Uniti d'America" + }, + "jpn": { + "official": "アメリカ合衆国", + "common": "アメリカ合衆国" + }, + "nld": { + "official": "Verenigde Staten van Amerika", + "common": "Verenigde Staten" + }, + "por": { + "official": "Estados Unidos da América", + "common": "Estados Unidos" + }, + "rus": { + "official": "Соединенные Штаты Америки", + "common": "Соединённые Штаты Америки" + }, + "spa": { + "official": "Estados Unidos de América", + "common": "Estados Unidos" + }, + "fin": { + "official": "Amerikan yhdysvallat", + "common": "Yhdysvallat" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "38 00 N", + "latitude_dec": "39.44325637817383", + "longitude": "97 00 W", + "longitude_dec": "-98.95733642578125", + "max_latitude": "71.441059", + "max_longitude": "-66.885417", + "min_latitude": "17.831509", + "min_longitude": "-179.231086", + "area": 9372610, + "region": "Americas", + "subregion": "Northern America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "021", + "landlocked": false, + "borders": [ + "CAN", + "MEX" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 6252001, + "edgar": 0, + "itu": "USA", + "marc": "xxu", + "wmo": "US", + "ds": "USA", + "fifa": "USA", + "fips": "US", + "gaul": 259, + "ioc": "USA", + "cowc": "USA", + "cown": 2, + "fao": 231, + "imf": 111, + "ar5": "OECD1990", + "address_format": "{{recipient}}\n{{street}}\n{{city}} {{region_short}} {{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "UZ": { + "name": { + "common": "Uzbekistan", + "official": "Republic of Uzbekistan", + "native": { + "rus": { + "official": "Республика Узбекистан", + "common": "Узбекистан" + }, + "uzb": { + "official": "O'zbekiston Respublikasi", + "common": "O‘zbekiston" + } + } + }, + "demonym": "Uzbekistani", + "capital": "Tashkent", + "iso_3166_1_alpha2": "UZ", + "iso_3166_1_alpha3": "UZB", + "iso_3166_1_numeric": "860", + "currency": { + "UZS": { + "iso_4217_code": "UZS", + "iso_4217_numeric": 860, + "iso_4217_name": "Uzbekistan Sum", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".uz" + ], + "alt_spellings": [ + "UZ", + "Republic of Uzbekistan", + "O‘zbekiston Respublikasi", + "Ўзбекистон Республикаси" + ], + "languages": { + "rus": "Russian", + "uzb": "Uzbek" + }, + "translations": { + "deu": { + "official": "Republik Usbekistan", + "common": "Usbekistan" + }, + "fra": { + "official": "République d'Ouzbékistan", + "common": "Ouzbékistan" + }, + "hrv": { + "official": "Republika Uzbekistan", + "common": "Uzbekistan" + }, + "ita": { + "official": "Repubblica di Uzbekistan", + "common": "Uzbekistan" + }, + "jpn": { + "official": "ウズベキスタン共和国", + "common": "ウズベキスタン" + }, + "nld": { + "official": "Republiek Oezbekistan", + "common": "Oezbekistan" + }, + "por": { + "official": "República do Usbequistão", + "common": "Uzbequistão" + }, + "rus": { + "official": "Республика Узбекистан", + "common": "Узбекистан" + }, + "spa": { + "official": "República de Uzbekistán", + "common": "Uzbekistán" + }, + "fin": { + "official": "Uzbekistanin tasavalta", + "common": "Uzbekistan" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "41 00 N", + "latitude_dec": "41.77239227294922", + "longitude": "64 00 E", + "longitude_dec": "63.14588928222656", + "max_latitude": "48.583333", + "max_longitude": "80.383333", + "min_latitude": "35.266667", + "min_longitude": "56.083333", + "area": 447400, + "region": "Asia", + "subregion": "Central Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "143", + "landlocked": true, + "borders": [ + "AFG", + "KAZ", + "KGZ", + "TJK", + "TKM" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "998" + ], + "national_prefix": "8", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "810" + }, + "extra": { + "geonameid": 1512440, + "edgar": "2K", + "itu": "UZB", + "marc": "uz", + "wmo": "UZ", + "ds": "UZ", + "fifa": "UZB", + "fips": "UZ", + "gaul": 261, + "ioc": "UZB", + "cowc": "UZB", + "cown": 704, + "fao": 235, + "imf": 927, + "ar5": "EIT", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "VA": { + "name": { + "common": "Vatican City", + "official": "Vatican City State", + "native": { + "ita": { + "official": "Stato della Città del Vaticano", + "common": "Vaticano" + }, + "lat": { + "official": "Status Civitatis Vaticanæ", + "common": "Vaticanæ" + } + } + }, + "demonym": "Italian", + "capital": "Vatican City", + "iso_3166_1_alpha2": "VA", + "iso_3166_1_alpha3": "VAT", + "iso_3166_1_numeric": "336", + "currency": { + "EUR": { + "iso_4217_code": "EUR", + "iso_4217_numeric": 978, + "iso_4217_name": "Euro", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".va" + ], + "alt_spellings": [ + "VA", + "Holy See (Vatican City State)", + "Vatican City State", + "Stato della Città del Vaticano" + ], + "languages": { + "ita": "Italian", + "lat": "Latin" + }, + "translations": { + "deu": { + "official": "Staat Vatikanstadt", + "common": "Vatikanstadt" + }, + "fra": { + "official": "Cité du Vatican", + "common": "Cité du Vatican" + }, + "hrv": { + "official": "Vatikan", + "common": "Vatikan" + }, + "ita": { + "official": "Città del Vaticano", + "common": "Città del Vaticano" + }, + "jpn": { + "official": "バチカン市国の状態", + "common": "バチカン市国" + }, + "nld": { + "official": "Vaticaanstad", + "common": "Vaticaanstad" + }, + "por": { + "official": "Cidade do Vaticano", + "common": "Cidade do Vaticano" + }, + "rus": { + "official": "Город-государство Ватикан", + "common": "Ватикан" + }, + "spa": { + "official": "Ciudad del Vaticano", + "common": "Ciudad del Vaticano" + }, + "fin": { + "official": "Vatikaanin kaupunkivaltio", + "common": "Vatikaani" + } + }, + "geo": { + "continent": { + "EU": "Europe" + }, + "postal_code": true, + "latitude": "41 54 N", + "latitude_dec": "41.90308380126953", + "longitude": "12 27 E", + "longitude_dec": "12.452852249145508", + "max_latitude": "41.9", + "max_longitude": "12.45", + "min_latitude": "41.9", + "min_longitude": "12.45", + "area": 0.44, + "region": "Europe", + "subregion": "Southern Europe", + "world_region": "EMEA", + "region_code": "150", + "subregion_code": "039", + "landlocked": true, + "borders": [ + "ITA" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "3906698", + "379" + ], + "national_prefix": null, + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3164670, + "edgar": 0, + "itu": "CVA", + "marc": "vc", + "wmo": 0, + "ds": "V", + "fifa": "VAT", + "fips": "VT", + "gaul": 110, + "ioc": 0, + "cowc": "PAP", + "cown": 327, + "fao": 0, + "imf": 0, + "ar5": "OECD1990", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "VC": { + "name": { + "common": "Saint Vincent and the Grenadines", + "official": "Saint Vincent and the Grenadines", + "native": { + "eng": { + "official": "Saint Vincent and the Grenadines", + "common": "Saint Vincent and the Grenadines" + } + } + }, + "demonym": "Saint Vincentian", + "capital": "Kingstown", + "iso_3166_1_alpha2": "VC", + "iso_3166_1_alpha3": "VCT", + "iso_3166_1_numeric": "670", + "currency": { + "XCD": { + "iso_4217_code": "XCD", + "iso_4217_numeric": 951, + "iso_4217_name": "East Caribbean Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".vc" + ], + "alt_spellings": [ + "VC" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "St. Vincent und die Grenadinen", + "common": "Saint Vincent und die Grenadinen" + }, + "fra": { + "official": "Saint-Vincent-et-les Grenadines", + "common": "Saint-Vincent-et-les-Grenadines" + }, + "hrv": { + "official": "Sveti Vincent i Grenadini", + "common": "Sveti Vincent i Grenadini" + }, + "ita": { + "official": "Saint Vincent e Grenadine", + "common": "Saint Vincent e Grenadine" + }, + "jpn": { + "official": "セントビンセントおよびグレナディーン諸島", + "common": "セントビンセントおよびグレナディーン諸島" + }, + "nld": { + "official": "Saint Vincent en de Grenadines", + "common": "Saint Vincent en de Grenadines" + }, + "por": { + "official": "São Vicente e Granadinas", + "common": "São Vincente e Granadinas" + }, + "rus": { + "official": "Сент-Винсент и Гренадины", + "common": "Сент-Винсент и Гренадины" + }, + "spa": { + "official": "San Vicente y las Granadinas", + "common": "San Vicente y Granadinas" + }, + "fin": { + "official": "Saint Vincent ja Grenadiinit", + "common": "Saint Vincent ja Grenadiinit" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "13 15 N", + "latitude_dec": "13.217251777648926", + "longitude": "61 12 W", + "longitude_dec": "-61.19344711303711", + "max_latitude": "13.366667", + "max_longitude": "-61.116667", + "min_latitude": "12.533333", + "min_longitude": "-61.433333", + "area": 389, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "1784" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3577815, + "edgar": "V1", + "itu": "VCT", + "marc": "xm", + "wmo": "VG", + "ds": "WV", + "fifa": "VIN", + "fips": "VC", + "gaul": 211, + "ioc": "VIN", + "cowc": "SVG", + "cown": 57, + "fao": 191, + "imf": 364, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "VE": { + "name": { + "common": "Venezuela", + "official": "Bolivarian Republic of Venezuela", + "native": { + "spa": { + "official": "República Bolivariana de Venezuela", + "common": "Venezuela" + } + } + }, + "demonym": "Venezuelan", + "capital": "Caracas", + "iso_3166_1_alpha2": "VE", + "iso_3166_1_alpha3": "VEN", + "iso_3166_1_numeric": "862", + "currency": { + "VEF": { + "iso_4217_code": "VEF", + "iso_4217_numeric": 937, + "iso_4217_name": "Venezuelan bolívar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ve" + ], + "alt_spellings": [ + "VE", + "Bolivarian Republic of Venezuela", + "Venezuela, Bolivarian Republic of", + "República Bolivariana de Venezuela" + ], + "languages": { + "spa": "Spanish" + }, + "translations": { + "deu": { + "official": "Bolivarische Republik Venezuela", + "common": "Venezuela" + }, + "fra": { + "official": "République bolivarienne du Venezuela", + "common": "Venezuela" + }, + "hrv": { + "official": "BOLIVARIJANSKA Republika Venezuela", + "common": "Venezuela" + }, + "ita": { + "official": "Repubblica Bolivariana del Venezuela", + "common": "Venezuela" + }, + "jpn": { + "official": "ベネズエラ·ボリバル共和国", + "common": "ベネズエラ・ボリバル共和国" + }, + "nld": { + "official": "Bolivariaanse Republiek Venezuela", + "common": "Venezuela" + }, + "por": { + "official": "República Bolivariana da Venezuela", + "common": "Venezuela" + }, + "rus": { + "official": "Боливарианская Республика Венесуэла", + "common": "Венесуэла" + }, + "spa": { + "official": "República Bolivariana de Venezuela", + "common": "Venezuela" + }, + "fin": { + "official": "Venezuelan bolivariaainen tasavalta", + "common": "Venezuela" + } + }, + "geo": { + "continent": { + "SA": "South America" + }, + "postal_code": true, + "latitude": "8 00 N", + "latitude_dec": "7.665388584136963", + "longitude": "66 00 W", + "longitude_dec": "-66.14541625976562", + "max_latitude": "15.7", + "max_longitude": "-59.966667", + "min_latitude": "0.766667", + "min_longitude": "-73.16", + "area": 916445, + "region": "Americas", + "subregion": "South America", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "005", + "landlocked": false, + "borders": [ + "BRA", + "COL", + "GUY" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "58" + ], + "national_prefix": "0", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3625428, + "edgar": 0, + "itu": "VEN", + "marc": "ve", + "wmo": "VN", + "ds": "YV", + "fifa": "VEN", + "fips": "VE", + "gaul": 263, + "ioc": "VEN", + "cowc": "VEN", + "cown": 101, + "fao": 236, + "imf": 299, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "VG": { + "name": { + "common": "British Virgin Islands", + "official": "Virgin Islands", + "native": { + "eng": { + "official": "Virgin Islands", + "common": "British Virgin Islands" + } + } + }, + "demonym": "Virgin Islander", + "capital": "Road Town", + "iso_3166_1_alpha2": "VG", + "iso_3166_1_alpha3": "VGB", + "iso_3166_1_numeric": "092", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".vg" + ], + "alt_spellings": [ + "VG", + "Virgin Islands, British" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Jungferninseln", + "common": "Britische Jungferninseln" + }, + "fra": { + "official": "îles Vierges", + "common": "Îles Vierges britanniques" + }, + "hrv": { + "official": "Djevičanski Otoci", + "common": "Britanski Djevičanski Otoci" + }, + "ita": { + "official": "Isole Vergini", + "common": "Isole Vergini Britanniche" + }, + "jpn": { + "official": "バージン諸島", + "common": "イギリス領ヴァージン諸島" + }, + "nld": { + "official": "Maagdeneilanden", + "common": "Britse Maagdeneilanden" + }, + "por": { + "official": "Ilhas Virgens", + "common": "Ilhas Virgens" + }, + "rus": { + "official": "Виргинские острова", + "common": "Британские Виргинские острова" + }, + "spa": { + "official": "Islas Vírgenes", + "common": "Islas Vírgenes del Reino Unido" + }, + "fin": { + "official": "Brittiläiset Neitsytsaaret", + "common": "Neitsytsaaret" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "", + "latitude_dec": "18.443071365356445", + "longitude": "", + "longitude_dec": "-64.57130432128906", + "max_latitude": "18.766667", + "max_longitude": "-64.266667", + "min_latitude": "18.3", + "min_longitude": "-64.85", + "area": 151, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": [ + "1284" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 3577718, + "edgar": 0, + "itu": "VRG", + "marc": "vb", + "wmo": "VI", + "ds": "BVI", + "fifa": "VGB", + "fips": "VI", + "gaul": 39, + "ioc": "IVB", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "VI": { + "name": { + "common": "United States Virgin Islands", + "official": "Virgin Islands of the United States", + "native": { + "eng": { + "official": "Virgin Islands of the United States", + "common": "United States Virgin Islands" + } + } + }, + "demonym": "Virgin Islander", + "capital": "Charlotte Amalie", + "iso_3166_1_alpha2": "VI", + "iso_3166_1_alpha3": "VIR", + "iso_3166_1_numeric": "850", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".vi" + ], + "alt_spellings": [ + "VI", + "Virgin Islands, U.S." + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Jungferninseln der Vereinigten Staaten", + "common": "Amerikanische Jungferninseln" + }, + "fra": { + "official": "Îles Vierges des États-Unis", + "common": "Îles Vierges des États-Unis" + }, + "hrv": { + "official": "Djevičanski Otoci SAD", + "common": "Američki Djevičanski Otoci" + }, + "ita": { + "official": "Isole Vergini degli Stati Uniti", + "common": "Isole Vergini americane" + }, + "jpn": { + "official": "米国のバージン諸島", + "common": "アメリカ領ヴァージン諸島" + }, + "nld": { + "official": "Maagdeneilanden van de Verenigde Staten", + "common": "Amerikaanse Maagdeneilanden" + }, + "por": { + "official": "Ilhas Virgens dos Estados Unidos", + "common": "Ilhas Virgens dos Estados Unidos" + }, + "rus": { + "official": "Виргинские острова Соединенных Штатов", + "common": "Виргинские Острова" + }, + "spa": { + "official": "Islas Vírgenes de los Estados Unidos", + "common": "Islas Vírgenes de los Estados Unidos" + }, + "fin": { + "official": "Yhdysvaltain Neitsytsaaret", + "common": "Neitsytsaaret" + } + }, + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "", + "latitude_dec": "17.75262451171875", + "longitude": "", + "longitude_dec": "-64.73542022705078", + "max_latitude": "18.458139", + "max_longitude": "-64.565170", + "min_latitude": "17.681721", + "min_longitude": "-65.086281", + "area": 347, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "AMER", + "region_code": "019", + "subregion_code": "029", + "landlocked": false, + "borders": [], + "independent": "Territory of US" + }, + "dialling": { + "calling_code": [ + "1340" + ], + "national_prefix": "1", + "national_number_lengths": [ + 10 + ], + "national_destination_code_lengths": [ + 3 + ], + "international_prefix": "011" + }, + "extra": { + "geonameid": 4796775, + "edgar": 0, + "itu": "VIR", + "marc": "vi", + "wmo": "VI", + "ds": "USA", + "fifa": "VIR", + "fips": "VQ", + "gaul": 258, + "ioc": "ISV", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "LAM", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "VN": { + "name": { + "common": "Vietnam", + "official": "Socialist Republic of Vietnam", + "native": { + "vie": { + "official": "Cộng hòa xã hội chủ nghĩa Việt Nam", + "common": "Việt Nam" + } + } + }, + "demonym": "Vietnamese", + "capital": "Hanoi", + "iso_3166_1_alpha2": "VN", + "iso_3166_1_alpha3": "VNM", + "iso_3166_1_numeric": "704", + "currency": { + "VND": { + "iso_4217_code": "VND", + "iso_4217_numeric": 704, + "iso_4217_name": "Dong", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".vn" + ], + "alt_spellings": [ + "VN", + "Socialist Republic of Vietnam", + "Cộng hòa Xã hội chủ nghĩa Việt Nam", + "Viet Nam" + ], + "languages": { + "vie": "Vietnamese" + }, + "translations": { + "deu": { + "official": "Sozialistische Republik Vietnam", + "common": "Vietnam" + }, + "fra": { + "official": "République socialiste du Viêt Nam", + "common": "Viêt Nam" + }, + "hrv": { + "official": "Socijalistička Republika Vijetnam", + "common": "Vijetnam" + }, + "ita": { + "official": "Repubblica socialista del Vietnam", + "common": "Vietnam" + }, + "jpn": { + "official": "ベトナム社会主義共和国", + "common": "ベトナム" + }, + "nld": { + "official": "Socialistische Republiek Vietnam", + "common": "Vietnam" + }, + "por": { + "official": "República Socialista do Vietname", + "common": "Vietname" + }, + "rus": { + "official": "Социалистическая Республика Вьетнам", + "common": "Вьетнам" + }, + "spa": { + "official": "República Socialista de Vietnam", + "common": "Vietnam" + }, + "fin": { + "official": "Vietnamin sosialistinen tasavalta", + "common": "Vietnam" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": true, + "latitude": "16 10 N", + "latitude_dec": "16.9404296875", + "longitude": "107 50 E", + "longitude_dec": "106.8164291381836", + "max_latitude": "23.666667", + "max_longitude": "109.466667", + "min_latitude": "8.383333", + "min_longitude": "102.216667", + "area": 331212, + "region": "Asia", + "subregion": "South-Eastern Asia", + "world_region": "APAC", + "region_code": "142", + "subregion_code": "035", + "landlocked": false, + "borders": [ + "KHM", + "CHN", + "LAO" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "84" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8, + 9, + 10 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 1562822, + "edgar": "Q1", + "itu": "VTN", + "marc": "vm", + "wmo": "VS", + "ds": "VN", + "fifa": "VIE", + "fips": "VM", + "gaul": 264, + "ioc": "VIE", + "cowc": "DRV", + "cown": 816, + "fao": 237, + "imf": 582, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "VU": { + "name": { + "common": "Vanuatu", + "official": "Republic of Vanuatu", + "native": { + "bis": { + "official": "Ripablik blong Vanuatu", + "common": "Vanuatu" + }, + "eng": { + "official": "Republic of Vanuatu", + "common": "Vanuatu" + }, + "fra": { + "official": "République de Vanuatu", + "common": "Vanuatu" + } + } + }, + "demonym": "Ni-Vanuatu", + "capital": "Port Vila", + "iso_3166_1_alpha2": "VU", + "iso_3166_1_alpha3": "VUT", + "iso_3166_1_numeric": "548", + "currency": { + "VUV": { + "iso_4217_code": "VUV", + "iso_4217_numeric": 548, + "iso_4217_name": "Vatu", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".vu" + ], + "alt_spellings": [ + "VU", + "Republic of Vanuatu", + "Ripablik blong Vanuatu", + "République de Vanuatu" + ], + "languages": { + "bis": "Bislama", + "eng": "English", + "fra": "French" + }, + "translations": { + "deu": { + "official": "Vanuatu", + "common": "Vanuatu" + }, + "fra": { + "official": "République de Vanuatu", + "common": "Vanuatu" + }, + "hrv": { + "official": "Republika Vanuatu", + "common": "Vanuatu" + }, + "ita": { + "official": "Repubblica di Vanuatu", + "common": "Vanuatu" + }, + "jpn": { + "official": "バヌアツ共和国", + "common": "バヌアツ" + }, + "nld": { + "official": "Republiek Vanuatu", + "common": "Vanuatu" + }, + "por": { + "official": "República de Vanuatu", + "common": "Vanuatu" + }, + "rus": { + "official": "Республика Вануату", + "common": "Вануату" + }, + "spa": { + "official": "República de Vanuatu", + "common": "Vanuatu" + }, + "fin": { + "official": "Vanuatun tasavalta", + "common": "Vanuatu" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": false, + "latitude": "16 00 S", + "latitude_dec": "-16.376684188842773", + "longitude": "167 00 E", + "longitude_dec": "167.5625", + "max_latitude": "-13.066667", + "max_longitude": "170.216667", + "min_latitude": "-20.25", + "min_longitude": "166.016667", + "area": 12189, + "region": "Oceania", + "subregion": "Melanesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "054", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "678" + ], + "national_prefix": null, + "national_number_lengths": [ + 5, + 6, + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 2134431, + "edgar": "2L", + "itu": "VUT", + "marc": "nn", + "wmo": "NV", + "ds": 0, + "fifa": "VAN", + "fips": "NH", + "gaul": 262, + "ioc": "VAN", + "cowc": "VAN", + "cown": 935, + "fao": 155, + "imf": 846, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "WF": { + "name": { + "common": "Wallis and Futuna", + "official": "Territory of the Wallis and Futuna Islands", + "native": { + "fra": { + "official": "Territoire des îles Wallis et Futuna", + "common": "Wallis et Futuna" + } + } + }, + "demonym": "Wallis and Futuna Islander", + "capital": "Mata-Utu", + "iso_3166_1_alpha2": "WF", + "iso_3166_1_alpha3": "WLF", + "iso_3166_1_numeric": "876", + "currency": { + "XPF": { + "iso_4217_code": "XPF", + "iso_4217_numeric": 953, + "iso_4217_name": "CFP franc (franc Pacifique)", + "iso_4217_minor_unit": 0 + } + }, + "tld": [ + ".wf" + ], + "alt_spellings": [ + "WF", + "Territory of the Wallis and Futuna Islands", + "Territoire des îles Wallis et Futuna" + ], + "languages": { + "fra": "French" + }, + "translations": { + "deu": { + "official": "Gebiet der Wallis und Futuna", + "common": "Wallis und Futuna" + }, + "fra": { + "official": "Territoire des îles Wallis et Futuna", + "common": "Wallis-et-Futuna" + }, + "hrv": { + "official": "Teritoriju Wallis i Futuna", + "common": "Wallis i Fortuna" + }, + "ita": { + "official": "Territorio delle Isole Wallis e Futuna", + "common": "Wallis e Futuna" + }, + "jpn": { + "official": "ウォリス·フツナ諸島の領土", + "common": "ウォリス・フツナ" + }, + "nld": { + "official": "Grondgebied van de Wallis en Futuna", + "common": "Wallis en Futuna" + }, + "por": { + "official": "Território das Ilhas Wallis e Futuna", + "common": "Wallis e Futuna" + }, + "rus": { + "official": "Территория Уоллис и Футуна острова", + "common": "Уоллис и Футуна" + }, + "spa": { + "official": "Territorio de las Islas Wallis y Futuna", + "common": "Wallis y Futuna" + }, + "fin": { + "official": "Wallisin ja Futunan yhteisö", + "common": "Wallis ja Futuna" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "13 18 S", + "latitude_dec": "-13.299612045288086", + "longitude": "176 12 W", + "longitude_dec": "-176.1701202392578", + "max_latitude": "-13.183333", + "max_longitude": "-176.083333", + "min_latitude": "-14.35", + "min_longitude": "-178.183333", + "area": 142, + "region": "Oceania", + "subregion": "Polynesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "061", + "landlocked": false, + "borders": [], + "independent": "Territory of FR" + }, + "dialling": { + "calling_code": [ + "681" + ], + "national_prefix": null, + "national_number_lengths": [ + 6 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "19" + }, + "extra": { + "geonameid": 4034749, + "edgar": 0, + "itu": "WAL", + "marc": "wf", + "wmo": "FW", + "ds": "F", + "fifa": "WLF", + "fips": "WF", + "gaul": 266, + "ioc": "WAF", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "WS": { + "name": { + "common": "Samoa", + "official": "Independent State of Samoa", + "native": { + "eng": { + "official": "Independent State of Samoa", + "common": "Samoa" + }, + "smo": { + "official": "Malo Saʻoloto Tutoʻatasi o Sāmoa", + "common": "Sāmoa" + } + } + }, + "demonym": "Samoan", + "capital": "Apia", + "iso_3166_1_alpha2": "WS", + "iso_3166_1_alpha3": "WSM", + "iso_3166_1_numeric": "882", + "currency": { + "WST": { + "iso_4217_code": "WST", + "iso_4217_numeric": 882, + "iso_4217_name": "Tala", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ws" + ], + "alt_spellings": [ + "WS", + "Independent State of Samoa", + "Malo Saʻoloto Tutoʻatasi o Sāmoa" + ], + "languages": { + "eng": "English", + "smo": "Samoan" + }, + "translations": { + "deu": { + "official": "Unabhängige Staat Samoa", + "common": "Samoa" + }, + "fra": { + "official": "Samoa", + "common": "Samoa" + }, + "hrv": { + "official": "Nezavisna Država Samoa", + "common": "Samoa" + }, + "ita": { + "official": "Stato indipendente di Samoa", + "common": "Samoa" + }, + "jpn": { + "official": "サモア独立国", + "common": "サモア" + }, + "nld": { + "official": "Onafhankelijke Staat Samoa", + "common": "Samoa" + }, + "por": { + "official": "Estado Independente de Samoa", + "common": "Samoa" + }, + "rus": { + "official": "Независимое Государство Самоа", + "common": "Самоа" + }, + "spa": { + "official": "Estado Independiente de Samoa", + "common": "Samoa" + }, + "fin": { + "official": "Samoan itsenäinen valtio", + "common": "Samoa" + } + }, + "geo": { + "continent": { + "OC": "Oceania" + }, + "postal_code": true, + "latitude": "13 35 S", + "latitude_dec": "-13.668972969055176", + "longitude": "172 20 W", + "longitude_dec": "-172.322021484375", + "max_latitude": "-13.433333", + "max_longitude": "-171", + "min_latitude": "-14.05", + "min_longitude": "-172.816667", + "area": 2842, + "region": "Oceania", + "subregion": "Polynesia", + "world_region": "APAC", + "region_code": "009", + "subregion_code": "061", + "landlocked": false, + "borders": [], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "685" + ], + "national_prefix": null, + "national_number_lengths": [ + 6, + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 4034894, + "edgar": "Y0", + "itu": "SMO", + "marc": "ws", + "wmo": "ZM", + "ds": "WS", + "fifa": "SAM", + "fips": "WS", + "gaul": 212, + "ioc": "SAM", + "cowc": "WSM", + "cown": 990, + "fao": 244, + "imf": 862, + "ar5": "ASIA", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "YE": { + "name": { + "common": "Yemen", + "official": "Republic of Yemen", + "native": { + "ara": { + "official": "الجمهورية اليمنية", + "common": "اليَمَن" + } + } + }, + "demonym": "Yemeni", + "capital": "Sana'a", + "iso_3166_1_alpha2": "YE", + "iso_3166_1_alpha3": "YEM", + "iso_3166_1_numeric": "887", + "currency": { + "YER": { + "iso_4217_code": "YER", + "iso_4217_numeric": 886, + "iso_4217_name": "Yemeni Rial", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".ye" + ], + "alt_spellings": [ + "YE", + "Yemeni Republic", + "al-Jumhūriyyah al-Yamaniyyah" + ], + "languages": { + "ara": "Arabic" + }, + "translations": { + "deu": { + "official": "Republik Jemen", + "common": "Jemen" + }, + "fra": { + "official": "République du Yémen", + "common": "Yémen" + }, + "hrv": { + "official": "Republika Jemen", + "common": "Jemen" + }, + "ita": { + "official": "Repubblica dello Yemen", + "common": "Yemen" + }, + "jpn": { + "official": "イエメン共和国", + "common": "イエメン" + }, + "nld": { + "official": "Republiek Jemen", + "common": "Jemen" + }, + "por": { + "official": "República do Iêmen", + "common": "Iémen" + }, + "rus": { + "official": "Йеменская Республика", + "common": "Йемен" + }, + "spa": { + "official": "República de Yemen", + "common": "Yemen" + }, + "fin": { + "official": "Jemenin tasavalta", + "common": "Jemen" + } + }, + "geo": { + "continent": { + "AS": "Asia" + }, + "postal_code": false, + "latitude": "15 00 N", + "latitude_dec": "15.888387680053711", + "longitude": "48 00 E", + "longitude_dec": "47.48988723754883", + "max_latitude": "27.695278", + "max_longitude": "54.533333", + "min_latitude": "12.1", + "min_longitude": "41.833333", + "area": 527968, + "region": "Asia", + "subregion": "Western Asia", + "world_region": "EMEA", + "region_code": "142", + "subregion_code": "145", + "landlocked": false, + "borders": [ + "OMN", + "SAU" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "967" + ], + "national_prefix": "0", + "national_number_lengths": [ + 7, + 8, + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 69543, + "edgar": "T7", + "itu": "YEM", + "marc": "ye", + "wmo": "YE", + "ds": "YAR", + "fifa": "YEM", + "fips": "YM", + "gaul": 269, + "ioc": "YEM", + "cowc": "YEM", + "cown": 679, + "fao": 249, + "imf": 474, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{postalcode}} {{city}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "ZA": { + "name": { + "common": "South Africa", + "official": "Republic of South Africa", + "native": { + "afr": { + "official": "Republiek van Suid-Afrika", + "common": "South Africa" + }, + "eng": { + "official": "Republic of South Africa", + "common": "South Africa" + }, + "nbl": { + "official": "IRiphabliki yeSewula Afrika", + "common": "Sewula Afrika" + }, + "nso": { + "official": "Rephaboliki ya Afrika-Borwa ", + "common": "Afrika-Borwa" + }, + "sot": { + "official": "Rephaboliki ya Afrika Borwa", + "common": "Afrika Borwa" + }, + "ssw": { + "official": "IRiphabhulikhi yeNingizimu Afrika", + "common": "Ningizimu Afrika" + }, + "tsn": { + "official": "Rephaboliki ya Aforika Borwa", + "common": "Aforika Borwa" + }, + "tso": { + "official": "Riphabliki ra Afrika Dzonga", + "common": "Afrika Dzonga" + }, + "ven": { + "official": "Riphabuḽiki ya Afurika Tshipembe", + "common": "Afurika Tshipembe" + }, + "xho": { + "official": "IRiphabliki yaseMzantsi Afrika", + "common": "Mzantsi Afrika" + }, + "zul": { + "official": "IRiphabliki yaseNingizimu Afrika", + "common": "Ningizimu Afrika" + } + } + }, + "demonym": "South African", + "capital": "Pretoria", + "iso_3166_1_alpha2": "ZA", + "iso_3166_1_alpha3": "ZAF", + "iso_3166_1_numeric": "710", + "currency": { + "ZAR": { + "iso_4217_code": "ZAR", + "iso_4217_numeric": 710, + "iso_4217_name": "Rand", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".za" + ], + "alt_spellings": [ + "ZA", + "RSA", + "Suid-Afrika", + "Republic of South Africa" + ], + "languages": { + "afr": "Afrikaans", + "eng": "English", + "nbl": "Southern Ndebele", + "nso": "Northern Sotho", + "sot": "Southern Sotho", + "ssw": "Swazi", + "tsn": "Tswana", + "tso": "Tsonga", + "ven": "Venda", + "xho": "Xhosa", + "zul": "Zulu" + }, + "translations": { + "deu": { + "official": "Republik Südafrika", + "common": "Republik Südafrika" + }, + "fra": { + "official": "République d'Afrique du Sud", + "common": "Afrique du Sud" + }, + "hrv": { + "official": "Južnoafrička Republika", + "common": "Južnoafrička Republika" + }, + "ita": { + "official": "Repubblica del Sud Africa", + "common": "Sud Africa" + }, + "jpn": { + "official": "南アフリカ共和国", + "common": "南アフリカ" + }, + "nld": { + "official": "Zuid -Afrika", + "common": "Zuid-Afrika" + }, + "por": { + "official": "República da África do Sul", + "common": "África do Sul" + }, + "rus": { + "official": "Южно-Африканская Республика", + "common": "Южно-Африканская Республика" + }, + "spa": { + "official": "República de Sudáfrica", + "common": "República de Sudáfrica" + }, + "fin": { + "official": "Etelä-Afrikan tasavalta", + "common": "Etelä-Afrikka" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "29 00 S", + "latitude_dec": "-29.046184539794922", + "longitude": "24 00 E", + "longitude_dec": "25.06287956237793", + "max_latitude": "-22.133333", + "max_longitude": "32.883333", + "min_latitude": "-34.833333", + "min_longitude": "16.466667", + "area": 1221037, + "region": "Africa", + "subregion": "Southern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "018", + "landlocked": false, + "borders": [ + "BWA", + "LSO", + "MOZ", + "NAM", + "SWZ", + "ZWE" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "27" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": 0 + }, + "extra": { + "geonameid": 953987, + "edgar": "T3", + "itu": "AFS", + "marc": "sa", + "wmo": "ZA", + "ds": "ZA", + "fifa": "RSA", + "fips": "SF", + "gaul": 227, + "ioc": "RSA", + "cowc": "SAF", + "cown": 560, + "fao": 202, + "imf": 199, + "ar5": "MAF", + "address_format": "{{recipient}}\n{{street}}\n{{city}}\n{{region}}\n{{postalcode}}\n{{country}}", + "eu_member": null, + "vat_rates": null + } + }, + "ZM": { + "name": { + "common": "Zambia", + "official": "Republic of Zambia", + "native": { + "eng": { + "official": "Republic of Zambia", + "common": "Zambia" + } + } + }, + "demonym": "Zambian", + "capital": "Lusaka", + "iso_3166_1_alpha2": "ZM", + "iso_3166_1_alpha3": "ZMB", + "iso_3166_1_numeric": "894", + "currency": { + "ZMW": { + "iso_4217_code": "ZMW", + "iso_4217_numeric": 967, + "iso_4217_name": "Zambian Kwacha", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".zm" + ], + "alt_spellings": [ + "ZM", + "Republic of Zambia" + ], + "languages": { + "eng": "English" + }, + "translations": { + "deu": { + "official": "Republik Sambia", + "common": "Sambia" + }, + "fra": { + "official": "République de Zambie", + "common": "Zambie" + }, + "hrv": { + "official": "Republika Zambija", + "common": "Zambija" + }, + "ita": { + "official": "Repubblica di Zambia", + "common": "Zambia" + }, + "jpn": { + "official": "ザンビア共和国", + "common": "ザンビア" + }, + "nld": { + "official": "Republiek Zambia", + "common": "Zambia" + }, + "por": { + "official": "República da Zâmbia", + "common": "Zâmbia" + }, + "rus": { + "official": "Республика Замбия", + "common": "Замбия" + }, + "spa": { + "official": "República de Zambia", + "common": "Zambia" + }, + "fin": { + "official": "Sambian tasavalta", + "common": "Sambia" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "15 00 S", + "latitude_dec": "-13.458845138549805", + "longitude": "30 00 E", + "longitude_dec": "27.788097381591797", + "max_latitude": "5", + "max_longitude": "39.283333", + "min_latitude": "-18.05", + "min_longitude": "22", + "area": 752612, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": true, + "borders": [ + "AGO", + "BWA", + "COD", + "MWI", + "MOZ", + "NAM", + "TZA", + "ZWE" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "260" + ], + "national_prefix": "0", + "national_number_lengths": [ + 9 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 895949, + "edgar": "Y4", + "itu": "ZMB", + "marc": "za", + "wmo": "ZB", + "ds": "Z", + "fifa": "ZAM", + "fips": "ZA", + "gaul": 270, + "ioc": "ZAM", + "cowc": "ZAM", + "cown": 551, + "fao": 251, + "imf": 754, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "ZW": { + "name": { + "common": "Zimbabwe", + "official": "Republic of Zimbabwe", + "native": { + "bwg": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "eng": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "kck": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "khi": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "ndc": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "nde": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "nya": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "sna": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "sot": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "toi": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "tsn": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "tso": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "ven": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "xho": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + }, + "zib": { + "official": "Republic of Zimbabwe", + "common": "Zimbabwe" + } + } + }, + "demonym": "Zimbabwean", + "capital": "Harare", + "iso_3166_1_alpha2": "ZW", + "iso_3166_1_alpha3": "ZWE", + "iso_3166_1_numeric": "716", + "currency": { + "ZWL": { + "iso_4217_code": "ZWL", + "iso_4217_numeric": 932, + "iso_4217_name": "Zimbabwe Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": [ + ".zw" + ], + "alt_spellings": [ + "ZW", + "Republic of Zimbabwe" + ], + "languages": { + "bwg": "Chibarwe", + "eng": "English", + "kck": "Kalanga", + "khi": "Khoisan", + "ndc": "Ndau", + "nde": "Northern Ndebele", + "nya": "Chewa", + "sna": "Shona", + "sot": "Sotho", + "toi": "Tonga", + "tsn": "Tswana", + "tso": "Tsonga", + "ven": "Venda", + "xho": "Xhosa", + "zib": "Zimbabwean Sign Language" + }, + "translations": { + "deu": { + "official": "Republik Simbabwe", + "common": "Simbabwe" + }, + "fra": { + "official": "République du Zimbabwe", + "common": "Zimbabwe" + }, + "hrv": { + "official": "Republika Zimbabve", + "common": "Zimbabve" + }, + "ita": { + "official": "Repubblica dello Zimbabwe", + "common": "Zimbabwe" + }, + "jpn": { + "official": "ジンバブエ共和国", + "common": "ジンバブエ" + }, + "nld": { + "official": "Republiek Zimbabwe", + "common": "Zimbabwe" + }, + "por": { + "official": "República do Zimbabwe", + "common": "Zimbabwe" + }, + "rus": { + "official": "Республика Зимбабве", + "common": "Зимбабве" + }, + "spa": { + "official": "República de Zimbabue", + "common": "Zimbabue" + }, + "fin": { + "official": "Zimbabwen tasavalta", + "common": "Zimbabwe" + } + }, + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": false, + "latitude": "20 00 S", + "latitude_dec": "-19.000280380249023", + "longitude": "30 00 E", + "longitude_dec": "29.86876106262207", + "max_latitude": "-15.6", + "max_longitude": "33.05", + "min_latitude": "-22.316667", + "min_longitude": "25.333333", + "area": 390757, + "region": "Africa", + "subregion": "Eastern Africa", + "world_region": "EMEA", + "region_code": "002", + "subregion_code": "014", + "landlocked": true, + "borders": [ + "BWA", + "MOZ", + "ZAF", + "ZMB" + ], + "independent": "Yes" + }, + "dialling": { + "calling_code": [ + "263" + ], + "national_prefix": "0", + "national_number_lengths": [ + 8, + 9, + 10, + 11 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 878675, + "edgar": "Y5", + "itu": "ZWE", + "marc": "rh", + "wmo": "ZW", + "ds": "ZW", + "fifa": "ZIM", + "fips": "ZI", + "gaul": 271, + "ioc": "ZIM", + "cowc": "ZIM", + "cown": 552, + "fao": 181, + "imf": 698, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "BQ": { + "name": { + "common": "Caribbean Netherlands", + "official": "Bonaire, Sint Eustatius and Saba", + "native": { + "eng": { + "official": "Bonaire, Sint Eustatius and Saba", + "common": "Caribbean Netherlands" + }, + "dut": { + "official": "Bonaire, Sint Eustatius und Saba", + "common": "Besondere Gemeinde (Niederlande)" + } + } + }, + "demonym": null, + "capital": null, + "iso_3166_1_alpha2": "BQ", + "iso_3166_1_alpha3": "BES", + "iso_3166_1_numeric": "535", + "currency": { + "USD": { + "iso_4217_code": "USD", + "iso_4217_numeric": 840, + "iso_4217_name": "US Dollar", + "iso_4217_minor_unit": 2 + } + }, + "tld": null, + "alt_spellings": null, + "languages": { + "eng": "English" + }, + "translations": [], + "geo": { + "continent": { + "NA": "North America" + }, + "postal_code": true, + "latitude": "", + "latitude_dec": "12.178361", + "longitude": "", + "longitude_dec": "-68.238534", + "max_latitude": "17.6503", + "max_longitude": "-62.9458", + "min_latitude": "12.0245", + "min_longitude": "-68.421", + "area": null, + "region": "Americas", + "subregion": "Caribbean", + "world_region": "APAC", + "region_code": "019", + "subregion_code": "029", + "landlocked": null, + "borders": null, + "independent": "Part of NL" + }, + "dialling": { + "calling_code": null, + "national_prefix": "0", + "national_number_lengths": [ + 7 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 7626844, + "edgar": 0, + "itu": "ATN", + "marc": "ca", + "wmo": "NU", + "ds": 0, + "fifa": "ANT", + "fips": "NL", + "gaul": 176, + "ioc": "AHO", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 0, + "ar5": 0, + "address_format": null, + "eu_member": null, + "vat_rates": null + } + }, + "SH": { + "name": { + "common": "Saint Helena", + "official": "Saint Helena, Ascension and Tristan da Cunha", + "native": { + "eng": { + "official": "Saint Helena", + "common": "Saint Helena" + } + } + }, + "demonym": null, + "capital": null, + "iso_3166_1_alpha2": "SH", + "iso_3166_1_alpha3": "SHN", + "iso_3166_1_numeric": "654", + "currency": { + "SHP": { + "iso_4217_code": "SHP", + "iso_4217_numeric": 654, + "iso_4217_name": "Saint Helena pound", + "iso_4217_minor_unit": 2 + } + }, + "tld": null, + "alt_spellings": null, + "languages": { + "eng": "English" + }, + "translations": [], + "geo": { + "continent": { + "AF": "Africa" + }, + "postal_code": true, + "latitude": "15 57 S", + "latitude_dec": "-15.957334518432617", + "longitude": "5 42 W", + "longitude_dec": "-5.716914176940918", + "max_latitude": "-7.9", + "max_longitude": "-5.633333", + "min_latitude": "-40.4", + "min_longitude": "-14.416667", + "area": null, + "region": "Africa", + "subregion": "Western Africa", + "world_region": "APAC", + "region_code": "002", + "subregion_code": "011", + "landlocked": null, + "borders": null, + "independent": "Territory of GB" + }, + "dialling": { + "calling_code": null, + "national_prefix": null, + "national_number_lengths": [ + 4 + ], + "national_destination_code_lengths": [ + 2 + ], + "international_prefix": "00" + }, + "extra": { + "geonameid": 3370751, + "edgar": 0, + "itu": "SHN", + "marc": "xj", + "wmo": "HE", + "ds": 0, + "fifa": "SHN", + "fips": "SH", + "gaul": 207, + "ioc": "HEL", + "cowc": 0, + "cown": 0, + "fao": 0, + "imf": 856, + "ar5": "MAF", + "address_format": null, + "eu_member": null, + "vat_rates": null + } + } +} diff --git a/src/Models/Country.php b/src/Models/Country.php new file mode 100644 index 0000000..402d1d7 --- /dev/null +++ b/src/Models/Country.php @@ -0,0 +1,87 @@ +countries = collect(json_decode(file_get_contents(__DIR__.'/../../resources/data/countries.json'), true)); + } + + /** + * Find a country by it's ISO 3166-1 alpha-2. + * + * @param string $code + * @param array $attributes + * + * @return array + */ + public function find($code, $attributes = []) + { + $result = $this->countries->only($code); + + return empty($attributes) ? $result->first() : $result->map(function ($country) use ($attributes) { + return collect($country)->only($attributes); + })->first(); + } + + /** + * Find a country by one of it's attributes. + * + * @param string $attribute + * @param mixed $value + * @param array $attributes + * + * @return array + */ + public function findBy($attribute, $value, $attributes = []) + { + $result = $this->countries->where($attribute, $value); + + return empty($attributes) ? $result->first() : $result->map(function ($country) use ($attributes) { + return collect($country)->only($attributes)->all(); + })->first(); + } + + /** + * Find all countries. + * + * @param array $attributes + * + * @return \Illuminate\Support\Collection + */ + public function findAll($attributes = []) + { + $countries = $this->countries; + + return empty($attributes) ? $countries : $countries->map(function ($item) use ($attributes) { + return collect($item)->only($attributes)->all(); + }); + } +}