Repository: fayder/restcountries Branch: master Commit: 85c3a55d8c96 Files: 35 Total size: 595.1 KB Directory structure: gitextract_8c1q055c/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── pom.xml └── src/ ├── main/ │ ├── java/ │ │ └── eu/ │ │ └── fayder/ │ │ └── restcountries/ │ │ ├── domain/ │ │ │ ├── BaseCountry.java │ │ │ ├── ICountryRestSymbols.java │ │ │ └── ResponseEntity.java │ │ ├── rest/ │ │ │ └── CountryServiceBase.java │ │ ├── servlet/ │ │ │ ├── CORSFilter.java │ │ │ ├── NotFoundExceptionMapper.java │ │ │ └── RestApplication.java │ │ ├── v1/ │ │ │ ├── domain/ │ │ │ │ ├── Country.java │ │ │ │ └── CountryTranslations.java │ │ │ └── rest/ │ │ │ ├── CountryRest.java │ │ │ └── CountryService.java │ │ └── v2/ │ │ ├── domain/ │ │ │ ├── Contribution.java │ │ │ ├── Country.java │ │ │ ├── Currency.java │ │ │ ├── Language.java │ │ │ ├── RegionalBloc.java │ │ │ └── Translations.java │ │ └── rest/ │ │ ├── CountryRest.java │ │ ├── CountryService.java │ │ └── StripeRest.java │ ├── resources/ │ │ ├── countriesV1.json │ │ ├── countriesV2.json │ │ └── log4j.properties │ └── webapp/ │ ├── flatdoc.md │ ├── index.html │ └── js/ │ └── restc.js └── test/ ├── java/ │ └── eu/ │ └── fayder/ │ └── restcountries/ │ ├── EmptyDataTest.java │ ├── v1/ │ │ └── CountryServiceTest.java │ └── v2/ │ └── CountryServiceTest.java └── resources/ └── log4j.properties ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ .classpath .project .settings target/ *.DS_Store *.sh *.css backup/ .idea/ *.iml google*.html ================================================ FILE: .travis.yml ================================================ language: java jdk: - oraclejdk8 ================================================ FILE: LICENSE ================================================ Mozilla Public License Version 2.0 1. Definitions 1.1. “Contributor” means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. 1.2. “Contributor Version” means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. 1.3. “Contribution” means Covered Software of a particular Contributor. 1.4. “Covered Software” means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. 1.5. “Incompatible With Secondary Licenses” means that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. 1.6. “Executable Form” means any form of the work other than Source Code Form. 1.7. “Larger Work” means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. 1.8. “License” means this document. 1.9. “Licensable” means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. 1.10. “Modifications” means any of the following: any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or any new file in Source Code Form that contains any Covered Software. 1.11. “Patent Claims” of a Contributor means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. 1.12. “Secondary License” means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. 1.13. “Source Code Form” means the form of the work preferred for making modifications. 1.14. “You” (or “Your”) means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. 2. License Grants and Conditions 2.1. Grants Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. 2.2. Effective Date The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. 2.3. Limitations on Grant Scope The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: for any code that a Contributor has removed from Covered Software; or for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or under Patent Claims infringed by Covered Software in the absence of its Contributions. This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). 2.4. Subsequent Licenses No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). 2.5. Representation Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. 2.6. Fair Use This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. 2.7. Conditions Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. 3. Responsibilities 3.1. Distribution of Source Form All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. 3.2. Distribution of Executable Form If You distribute Covered Software in Executable Form then: such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. 3.3. Distribution of a Larger Work You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). 3.4. Notices You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. 3.5. Application of Additional Terms You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. 4. Inability to Comply Due to Statute or Regulation If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. 5. Termination 5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. 5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. 6. Disclaimer of Warranty Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. 7. Limitation of Liability Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. 8. Litigation Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. 9. Miscellaneous This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. 10. Versions of the License 10.1. New Versions Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. 10.2. Effect of New Versions You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. 10.3. Modified Versions If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. Exhibit A - Source Code Form License Notice This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. You may add additional accurate notices of copyright ownership. Exhibit B - “Incompatible With Secondary Licenses” Notice This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. ================================================ FILE: README.md ================================================ REST Countries ======= Get information about countries via a RESTful API https://restcountries.eu [![Build Status](https://travis-ci.org/fayder/restcountries.svg?branch=master)](https://travis-ci.org/fayder/restcountries) Donate! --------------- The restcountries project has been acquired by apilayer, one of the leading providers of API microservices. We will keep supporting restcountries and providing it as a free solution for developers. We will finance this project fully and have turned off the donations feature. Users --------------- RESTCountries has over 1200 users, including: [TTÜ] [Spotify International Pricing Index] [Gorillaz] [Wanderlust] [Xero] [FxPro] [SKROSS] [onefinestay] [Much Better Adventures] Stay up-to-date --------------- Follow RESTCountries on [Twitter] Or subscribe to the [mailing list] API Endpoints ======= Below are described the REST endpoints available that you can use to search for countries All --------------- ``` html https://restcountries.eu/rest/v2/all ``` Name --------------- Search by country name. It can be the native name or partial name ``` javascript https://restcountries.eu/rest/v2/name/{name} ``` ``` html https://restcountries.eu/rest/v2/name/eesti ``` ``` html https://restcountries.eu/rest/v2/name/united ``` Full Name --------------- Search by country full name ``` javascript https://restcountries.eu/rest/v2/name/{name}?fullText=true ``` ``` html https://restcountries.eu/rest/v2/name/aruba?fullText=true ``` Code --------------- Search by ISO 3166-1 2-letter or 3-letter country code ``` javascript https://restcountries.eu/rest/v2/alpha/{code} ``` ``` html https://restcountries.eu/rest/v2/alpha/co ``` ``` html https://restcountries.eu/rest/v2/alpha/col ``` List of codes --------------- Search by list of ISO 3166-1 2-letter or 3-letter country codes ``` javascript https://restcountries.eu/rest/v2/alpha?codes={code};{code};{code} ``` ``` html https://restcountries.eu/rest/v2/alpha?codes=col;no;ee ``` Currency --------------- Search by ISO 4217 currency code ``` javascript https://restcountries.eu/rest/v2/currency/{currency} ``` ``` html https://restcountries.eu/rest/v2/currency/cop ``` Language --------------- Search by ISO 639-1 language code ``` javascript https://restcountries.eu/rest/v2/lang/{et} ``` ``` html https://restcountries.eu/rest/v2/lang/es ``` Capital city --------------- Search by capital city ``` javascript https://restcountries.eu/rest/v2/capital/{capital} ``` ``` html https://restcountries.eu/rest/v2/capital/tallinn ``` Calling code --------------- Search by calling code ``` javascript https://restcountries.eu/rest/v2/callingcode/{callingcode} ``` ``` html https://restcountries.eu/rest/v2/callingcode/372 ``` Region --------------- Search by region: Africa, Americas, Asia, Europe, Oceania ``` javascript https://restcountries.eu/rest/v2/region/{region} ``` ``` html https://restcountries.eu/rest/v2/region/europe ``` Regional Bloc --------------- Search by regional bloc: - EU (European Union) - EFTA (European Free Trade Association) - CARICOM (Caribbean Community) - PA (Pacific Alliance) - AU (African Union) - USAN (Union of South American Nations) - EEU (Eurasian Economic Union) - AL (Arab League) - ASEAN (Association of Southeast Asian Nations) - CAIS (Central American Integration System) - CEFTA (Central European Free Trade Agreement) - NAFTA (North American Free Trade Agreement) - SAARC (South Asian Association for Regional Cooperation) ``` javascript https://restcountries.eu/rest/v2/regionalbloc/{regionalbloc} ``` ``` html https://restcountries.eu/rest/v2/regionalbloc/eu ``` Response Example --------------- ``` html https://restcountries.eu/rest/v2/alpha/col ``` ``` json [[{ "name": "Colombia", "topLevelDomain": [".co"], "alpha2Code": "CO", "alpha3Code": "COL", "callingCodes": ["57"], "capital": "Bogotá", "altSpellings": ["CO", "Republic of Colombia", "República de Colombia"], "region": "Americas", "subregion": "South America", "population": 48759958, "latlng": [4.0, -72.0], "demonym": "Colombian", "area": 1141748.0, "gini": 55.9, "timezones": ["UTC-05:00"], "borders": ["BRA", "ECU", "PAN", "PER", "VEN"], "nativeName": "Colombia", "numericCode": "170", "currencies": [{ "code": "COP", "name": "Colombian peso", "symbol": "$" }], "languages": [{ "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" }], "translations": { "de": "Kolumbien", "es": "Colombia", "fr": "Colombie", "ja": "コロンビア", "it": "Colombia", "br": "Colômbia", "pt": "Colômbia" }, "flag": "https://restcountries.eu/data/col.svg", "regionalBlocs": [{ "acronym": "PA", "name": "Pacific Alliance", "otherAcronyms": [], "otherNames": ["Alianza del Pacífico"] }, { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], "otherNames": ["Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union"] }] }] ``` Filter Response ======= You can filter the output of your request to include only the specified fields. ``` javascript https://restcountries.eu/rest/v2/{service}?fields={field};{field};{field} ``` ``` html https://restcountries.eu/rest/v2/all?fields=name;capital;currencies ``` Sources ======= * [@mledoze] * [List of countries] * [Languages] * [Currencies] * [Area] Similar projects ======= * [Countries of the world] * [REST Countries Node.js] * [REST Countries Ruby] * [REST Countries Go] * [REST Countries Python] * [world-currencies] * [REST Countries C#](https://github.com/egbakou/RESTCountries.NET) License ======= [Mozilla Public License] MPL 2.0 [dist]: https://github.com/fayder/restcountries/ [Twitter]: https://twitter.com/restcountries [mailing list]: http://eepurl.com/cC-h2v [Donate]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=V5AJAEMKE6A3E [@mledoze]: https://github.com/mledoze/countries [List of countries]: https://en.wikipedia.org/wiki/ISO_3166-1#Current_codes [Languages]: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes [Currencies]: https://en.wikipedia.org/wiki/List_of_circulating_currencies [Area]: https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_area [Population]: https://en.wikipedia.org/wiki/List_of_countries_by_population [Gini coefficient]: http://en.wikipedia.org/wiki/List_of_countries_by_income_equality [Mozilla Public License]: https://www.mozilla.org/en-US/MPL/2.0/ [world-currencies]: https://github.com/wiredmax/world-currencies [REST Countries Node.js]: https://github.com/aredo/restcountries [REST Countries Ruby]: https://github.com/davidesantangelo/restcountry [REST Countries Go]: https://github.com/alediaferia/gocountries [REST Countries Python]: https://github.com/SteinRobert/python-restcountries [Countries of the world]: http://countries.petethompson.net [TTÜ]: https://www.ttu.ee/studying/tut_admission/programmes-in-tut/ask-us/ [Spotify International Pricing Index]: http://mts.io/2014/05/07/spotify-pricing-index/ [Gorillaz]: http://www.gorillaz.com/ [Wanderlust]: https://wanderlust.com/ [Xero]: https://www.xero.com/ [FxPro]: http://www.fxpro.com/ [onefinestay]: https://www.onefinestay.com/ [Much Better Adventures]: https://www.muchbetteradventures.com [SKROSS]: http://www.skross.com/en ================================================ FILE: pom.xml ================================================ 4.0.0 eu.fayder restcountries 2.0.5 war restcountries REST interface to get data about countries fayder http://restcountries.eu UTF-8 1.8 1.8 3.1.4.Final 2.8.2 3.5.0 1.7.25 4.0.0 4.12 org.jboss.resteasy resteasy-jaxrs ${resteasy.version} org.slf4j slf4j-simple org.jboss.resteasy resteasy-servlet-initializer ${resteasy.version} org.jboss.resteasy resteasy-jackson-provider ${resteasy.version} com.google.code.gson gson ${gson.version} com.stripe stripe-java ${stripe.version} org.slf4j slf4j-api ${slf4j.version} org.slf4j slf4j-log4j12 ${slf4j.version} javax.servlet javax.servlet-api ${servlet.version} junit junit ${junit.version} test org.eclipse.jetty jetty-maven-plugin 9.2.2.v20140723 / true org.apache.maven.plugins maven-war-plugin 2.3 false ================================================ FILE: src/main/java/eu/fayder/restcountries/domain/BaseCountry.java ================================================ package eu.fayder.restcountries.domain; import java.util.List; public class BaseCountry { protected String name; private List topLevelDomain; protected String alpha2Code; private String alpha3Code; private List callingCodes; protected String capital; private List altSpellings; protected String region; protected String subregion; protected Integer population; private List latlng; private String demonym; private Double area; protected Double gini; private List timezones; protected List borders; protected String nativeName; private String numericCode; public String getName() { return name; } public List getTopLevelDomain() { return topLevelDomain; } public String getAlpha2Code() { return alpha2Code; } public String getAlpha3Code() { return alpha3Code; } public List getCallingCodes() { return callingCodes; } public String getCapital() { return capital; } public List getAltSpellings() { return altSpellings; } public String getRegion() { return region; } public String getSubregion() { return subregion; } public Integer getPopulation() { return population; } public List getLatlng() { return latlng; } public String getDemonym() { return demonym; } public Double getArea() { return area; } public Double getGini() { return gini; } public List getTimezones() { return timezones; } public List getBorders() { return borders; } public String getNativeName() { return nativeName; } public String getNumericCode() { return numericCode; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/domain/ICountryRestSymbols.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.domain; public interface ICountryRestSymbols { public static final String SEMICOLON = ";"; } ================================================ FILE: src/main/java/eu/fayder/restcountries/domain/ResponseEntity.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.domain; public class ResponseEntity { private final int status; private final String message; public ResponseEntity(int status, String message) { this.status = status; this.message = message; } public String getMessage() { return message; } public int getStatus() { return status; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/rest/CountryServiceBase.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.rest; import com.google.gson.Gson; import com.google.gson.stream.JsonReader; import eu.fayder.restcountries.domain.BaseCountry; import eu.fayder.restcountries.domain.ICountryRestSymbols; import org.apache.log4j.Logger; import java.io.InputStream; import java.io.InputStreamReader; import java.text.Normalizer; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class CountryServiceBase { private static final Logger LOG = Logger.getLogger(CountryServiceBase.class); protected T getByAlpha(String alpha, List countries) { int alphaLength = alpha.length(); for (T country : countries) { if (alphaLength == 2) { if (country.getAlpha2Code().toLowerCase().equals(alpha.toLowerCase())) { return country; } } else if (alphaLength == 3) { if (country.getAlpha3Code().toLowerCase().equals(alpha.toLowerCase())) { return country; } } } return null; } protected List getByCodeList(String codeList, List countries) { List result = new ArrayList<>(); if(codeList == null) return result; List codes = Arrays.asList(codeList.split(ICountryRestSymbols.SEMICOLON)); for(String code : codes) { BaseCountry country = getByAlpha(code, countries); if(!result.contains(country)) result.add(country); } return result; } protected List getByName(String name, boolean fullText, List countries) { if(fullText) { return fulltextSearch(name, countries); } else { return substringSearch(name, countries); } } protected List getByCallingCode(String callingCode, List countries) { List result = new ArrayList<>(); for(BaseCountry country : countries) { for(String c : country.getCallingCodes()) { if(c.equals(callingCode)) result.add(country); } } return result; } protected List getByCapital(String capital, List countries) { List result = new ArrayList<>(); for(BaseCountry country : countries) { if(normalize(country.getCapital().toLowerCase()).contains(normalize(capital.toLowerCase()))) { result.add(country); } } return result; } protected List getByRegion(String region, List countries) { List result = new ArrayList<>(); for(BaseCountry country : countries) { if(country.getRegion().toLowerCase().equals(region.toLowerCase())) { result.add(country); } } return result; } protected List getBySubregion(String subregion, List countries) { List result = new ArrayList<>(); for(BaseCountry country : countries) { if(country.getSubregion().toLowerCase().equals(subregion.toLowerCase())) { result.add(country); } } return result; } private List fulltextSearch(String name, List countries) { // Using 2 different 'for' loops to give priority to 'name' matches over alternative spellings List result = new ArrayList<>(); for (BaseCountry country : countries) { if (normalize(country.getName().toLowerCase()).equals(normalize(name.toLowerCase()))) { result.add(country); } } for (BaseCountry country : countries) { for (String alternative : country.getAltSpellings()) { if (normalize(alternative.toLowerCase()).equals(normalize(name.toLowerCase())) && !result.contains(country)) { result.add(country); } } } return result; } private List substringSearch(String name, List countries) { // Using 2 different 'for' loops to give priority to 'name' matches over alternative spellings List result = new ArrayList<>(); for(BaseCountry country : countries) { if(normalize(country.getName().toLowerCase()).contains(normalize(name.toLowerCase()))) { result.add(country); } } for(BaseCountry country : countries) { for (String alternative : country.getAltSpellings()) { if( normalize(alternative.toLowerCase()).contains(normalize(name.toLowerCase())) && !result.contains(country) ) { result.add(country); } } } return result; } protected String normalize(String string) { return Normalizer.normalize(string, Normalizer.Form.NFD) .replaceAll("\\p{InCombiningDiacriticalMarks}+", ""); } protected List loadJson(String filename, Class clazz) { LOG.debug("Loading JSON " + filename); List countries = new ArrayList<>(); InputStream is = CountryServiceBase.class.getClassLoader().getResourceAsStream(filename); Gson gson = new Gson(); JsonReader reader; try { reader = new JsonReader(new InputStreamReader(is, "UTF-8")); reader.beginArray(); while(reader.hasNext()) { BaseCountry country = gson.fromJson(reader, clazz); countries.add(country); } } catch (Exception e) { LOG.error("Could not load JSON " + filename); } return countries; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/servlet/CORSFilter.java ================================================ package eu.fayder.restcountries.servlet; import javax.servlet.*; import javax.servlet.annotation.WebFilter; import javax.servlet.http.HttpServletResponse; import java.io.IOException; /** * Created by fayder on 07/04/15. */ @WebFilter(filterName = "CORSFilter", urlPatterns = "/*") public class CORSFilter implements Filter { @Override public void init(FilterConfig filterConfig) throws ServletException { } @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { ((HttpServletResponse)response).addHeader("Access-Control-Allow-Origin", "*"); ((HttpServletResponse)response).addHeader("Access-Control-Allow-Methods", "GET"); ((HttpServletResponse)response).addHeader("Access-Control-Allow-Headers", "Accept, X-Requested-With"); ((HttpServletResponse)response).addHeader("Cache-Control","public, max-age=86400"); chain.doFilter(request, response); } @Override public void destroy() { } } ================================================ FILE: src/main/java/eu/fayder/restcountries/servlet/NotFoundExceptionMapper.java ================================================ package eu.fayder.restcountries.servlet; import javax.ws.rs.core.Response; import javax.ws.rs.core.Response.Status; import javax.ws.rs.ext.ExceptionMapper; import javax.ws.rs.ext.Provider; import org.apache.log4j.Logger; @Provider public class NotFoundExceptionMapper implements ExceptionMapper { private static final Logger LOG = Logger.getLogger(NotFoundExceptionMapper.class); @Override public Response toResponse(javax.ws.rs.NotFoundException exception) { LOG.error(exception.getMessage()); return Response.status(Status.NOT_FOUND).build(); } } ================================================ FILE: src/main/java/eu/fayder/restcountries/servlet/RestApplication.java ================================================ package eu.fayder.restcountries.servlet; import eu.fayder.restcountries.v1.rest.CountryRest; import eu.fayder.restcountries.v2.rest.StripeRest; import javax.ws.rs.ApplicationPath; import javax.ws.rs.core.Application; import java.util.HashSet; import java.util.Set; @ApplicationPath("/rest") public class RestApplication extends Application { private Set singletons = new HashSet<>(); public RestApplication() { singletons.add(new CountryRest()); singletons.add(new eu.fayder.restcountries.v2.rest.CountryRest()); singletons.add(new StripeRest()); } @Override public Set getSingletons() { return singletons; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v1/domain/Country.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.v1.domain; import java.util.List; import eu.fayder.restcountries.domain.BaseCountry; public class Country extends BaseCountry { private List currencies; private List languages; private CountryTranslations translations; private String relevance; public List getCurrencies() { return currencies; } public List getLanguages() { return languages; } public CountryTranslations getTranslations() { return translations; } public String getRelevance() { return relevance; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v1/domain/CountryTranslations.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.v1.domain; public class CountryTranslations { private String de; private String es; private String fr; private String ja; private String it; public String getDe() { return de; } public void setDe(String de) { this.de = de; } public String getEs() { return es; } public void setEs(String es) { this.es = es; } public String getFr() { return fr; } public void setFr(String fr) { this.fr = fr; } public String getJa() { return ja; } public void setJa(String ja) { this.ja = ja; } public String getIt() { return it; } public void setIt(String it) { this.it = it; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v1/rest/CountryRest.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.v1.rest; import java.util.List; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.QueryParam; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import javax.ws.rs.core.Response.Status; import javax.ws.rs.ext.Provider; import eu.fayder.restcountries.domain.ResponseEntity; import eu.fayder.restcountries.v1.domain.Country; import org.apache.log4j.Logger; import com.google.gson.Gson; @Provider @Path("/v1") @Produces(MediaType.APPLICATION_JSON + ";charset=utf-8") public class CountryRest { private static final Logger LOG = Logger.getLogger(CountryRest.class); @GET @Path("all") public Object getAllCountries() { return this.getCountries(); } @GET public Object getCountries() { LOG.info("Getting all"); return CountryService.getInstance().getAll(); } @GET @Path("alpha/{alphacode}") public Object getByAlpha(@PathParam("alphacode") String alpha) { LOG.info("Getting by alpha " + alpha); if (isEmpty(alpha) || alpha.length() < 2 || alpha.length() > 3) { return getResponse(Status.BAD_REQUEST); } Country country = CountryService.getInstance().getByAlpha(alpha); if (country != null) { return country; } return getResponse(Status.NOT_FOUND); } @GET @Path("alpha/") public Object getByAlphaList(@QueryParam("codes") String codes) { LOG.info("Getting by list " + codes); if (isEmpty(codes) || codes.length() < 2 || (codes.length() > 3 && !codes.contains(";"))) { return getResponse(Status.BAD_REQUEST); } try { List countries = CountryService.getInstance().getByCodeList(codes); if (!countries.isEmpty()) { return countries; } return getResponse(Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Status.INTERNAL_SERVER_ERROR); } } @GET @Path("currency/{currency}") public Object getByCurrency(@PathParam("currency") String currency) { LOG.info("Getting by currency " + currency); if (isEmpty(currency) || currency.length() != 3) { return getResponse(Status.BAD_REQUEST); } try { List countries = CountryService.getInstance().getByCurrency(currency); if (!countries.isEmpty()) { return countries; } return getResponse(Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Status.INTERNAL_SERVER_ERROR); } } @GET @Path("name/{name}") public Object getByName(@PathParam("name") String name, @QueryParam("fullText") boolean fullText) { LOG.info("Getting by name " + name); try { List countries = CountryService.getInstance().getByName(name, fullText); if (!countries.isEmpty()) { return countries; } return getResponse(Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Status.INTERNAL_SERVER_ERROR); } } @GET @Path("callingcode/{callingcode}") public Object getByCallingCode(@PathParam("callingcode") String callingcode) { LOG.info("Getting by calling code " + callingcode); try { List countries = CountryService.getInstance().getByCallingCode(callingcode); if (!countries.isEmpty()) { return countries; } return getResponse(Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Status.INTERNAL_SERVER_ERROR); } } @GET @Path("capital/{capital}") public Object getByCapital(@PathParam("capital") String capital) { LOG.info("Getting by capital " + capital); try { List countries = CountryService.getInstance().getByCapital(capital); if (!countries.isEmpty()) { return countries; } return getResponse(Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Status.INTERNAL_SERVER_ERROR); } } @GET @Path("region/{region}") public Object getByRegion(@PathParam("region") String region) { LOG.info("Getting by region " + region); try { List countries = CountryService.getInstance().getByRegion(region); if (!countries.isEmpty()) { return countries; } return getResponse(Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Status.INTERNAL_SERVER_ERROR); } } @GET @Path("subregion/{subregion}") public Object getBySubregion(@PathParam("subregion") String subregion) { LOG.info("Getting by region " + subregion); try { List countries = CountryService.getInstance().getBySubregion(subregion); if (!countries.isEmpty()) { return countries; } return getResponse(Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Status.INTERNAL_SERVER_ERROR); } } @GET @Path("lang/{lang}") public Object getByLanguage(@PathParam("lang") String language) { LOG.info("Getting by language " + language); try { List countries = CountryService.getInstance().getByLanguage(language); if (!countries.isEmpty()) { return countries; } return getResponse(Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Status.INTERNAL_SERVER_ERROR); } } @POST public Object doPOST() { LOG.info("Handling POST Request"); return getResponse(Status.METHOD_NOT_ALLOWED); } private Response getResponse(Status status) { Gson gson = new Gson(); return Response .status(status) .entity(gson.toJson(new ResponseEntity(status.getStatusCode(), status.getReasonPhrase()))).build(); } private boolean isEmpty(String value) { return value == null || value.isEmpty(); } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v1/rest/CountryService.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.v1.rest; import eu.fayder.restcountries.rest.CountryServiceBase; import eu.fayder.restcountries.v1.domain.Country; import org.apache.log4j.Logger; import java.util.ArrayList; import java.util.List; public class CountryService extends CountryServiceBase { private static final Logger LOG = Logger.getLogger(CountryService.class); private static List countries; private CountryService() { initialize(); } private static class InstanceHolder { private static final CountryService INSTANCE = new CountryService(); } public static CountryService getInstance() { return InstanceHolder.INSTANCE; } public List getAll() { return countries; } public Country getByAlpha(String alpha) { return super.getByAlpha(alpha, countries); } @SuppressWarnings("unchecked") public List getByCodeList(String codeList) { return (List) super.getByCodeList(codeList, countries); } @SuppressWarnings("unchecked") public List getByName(String name, boolean isFullText) { return (List) super.getByName(name, isFullText, countries); } @SuppressWarnings("unchecked") public List getByCallingCode(String callingcode) { return (List) super.getByCallingCode(callingcode, countries); } @SuppressWarnings("unchecked") public List getByCapital(String capital) { return (List) super.getByCapital(capital, countries); } @SuppressWarnings("unchecked") public List getByRegion(String region) { return (List) super.getByRegion(region, countries); } @SuppressWarnings("unchecked") public List getBySubregion(String subregion) { return (List) super.getBySubregion(subregion, countries); } public List getByCurrency(String currency) { List result = new ArrayList<>(); for (Country country : countries) { for (String curr : country.getCurrencies()) { if (curr.toLowerCase().equals(currency.toLowerCase())) { result.add(country); } } } return result; } public List getByLanguage(String language) { List result = new ArrayList(); for (Country country : countries) { for (String lang : country.getLanguages()) { if (lang.toLowerCase().equals(language.toLowerCase())) { result.add(country); } } } return result; } @SuppressWarnings("unchecked") private void initialize() { countries = (List) super.loadJson("countriesV1.json", Country.class); } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v2/domain/Contribution.java ================================================ package eu.fayder.restcountries.v2.domain; /** * Created by fayder on 24/02/2017. */ public class Contribution { private int amount; private String token; public int getAmount() { return amount; } public String getToken() { return token; } @Override public String toString() { return "Contribution{" + "amount=" + amount + '}'; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v2/domain/Country.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.v2.domain; import eu.fayder.restcountries.domain.BaseCountry; import java.util.List; public class Country extends BaseCountry { private List currencies; private List languages; private Translations translations; private String flag; private List regionalBlocs; private String cioc; public List getCurrencies() { return currencies; } public List getLanguages() { return languages; } public Translations getTranslations() { return translations; } public String getFlag() { return flag; } public List getRegionalBlocs() { return regionalBlocs; } public String getCioc() { return cioc; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v2/domain/Currency.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.v2.domain; public class Currency { private String code; private String name; private String symbol; public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getSymbol() { return symbol; } public void setSymbol(String symbol) { this.symbol = symbol; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v2/domain/Language.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.v2.domain; public class Language { private String iso639_1; private String iso639_2; private String name; private String nativeName; public String getIso639_1() { return iso639_1; } public void setIso639_1(String code) { this.iso639_1 = code; } public String getIso639_2() { return iso639_2; } public void setIso639_2(String iso639_2) { this.iso639_2 = iso639_2; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getNativeName() { return nativeName; } public void setNativeName(String nativeName) { this.nativeName = nativeName; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v2/domain/RegionalBloc.java ================================================ package eu.fayder.restcountries.v2.domain; import java.util.ArrayList; import java.util.List; /** * Created by fayder on 30/04/2017. */ public class RegionalBloc { private String acronym; private String name; private List otherAcronyms; private List otherNames; public String getAcronym() { return acronym; } public String getName() { return name; } public List getOtherAcronyms() { if (otherAcronyms == null) { otherAcronyms = new ArrayList<>(); } return otherAcronyms; } public List getOtherNames() { if (otherNames == null) { otherNames = new ArrayList<>(); } return otherNames; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v2/domain/Translations.java ================================================ package eu.fayder.restcountries.v2.domain; import eu.fayder.restcountries.v1.domain.CountryTranslations; /** * Created by fayder on 05/03/2017. */ public class Translations extends CountryTranslations { private String br; private String pt; private String nl; private String hr; private String fa; public String getBr() { return br; } public String getPt() { return pt; } public String getNl() { return nl; } public String getHr() { return hr; } public String getFa() { return fa; } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v2/rest/CountryRest.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.v2.rest; import com.google.gson.*; import eu.fayder.restcountries.domain.ResponseEntity; import eu.fayder.restcountries.v2.domain.Country; import eu.fayder.restcountries.domain.ICountryRestSymbols; import org.apache.log4j.Logger; import javax.ws.rs.*; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import javax.ws.rs.ext.Provider; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @Provider @Path("/v2") @Produces(MediaType.APPLICATION_JSON + ";charset=utf-8") public class CountryRest { private static final Logger LOG = Logger.getLogger(CountryRest.class); @GET @Path("all") public Object getAllCountries(@QueryParam("fields") String fields) { return this.getCountries(fields); } @GET public Object getCountries(@QueryParam("fields") String fields) { LOG.info("Getting all"); List countries = CountryService.getInstance().getAll(); return parsedCountries(countries, fields); } @GET @Path("alpha/{alphacode}") public Object getByAlpha(@PathParam("alphacode") String alpha, @QueryParam("fields") String fields) { LOG.info("Getting by alpha " + alpha); if (isEmpty(alpha) || alpha.length() < 2 || alpha.length() > 3) { return getResponse(Response.Status.BAD_REQUEST); } Country country = CountryService.getInstance().getByAlpha(alpha); if (country != null) { return parsedCountry(country, fields); } return getResponse(Response.Status.NOT_FOUND); } @GET @Path("alpha/") public Object getByAlphaList(@QueryParam("codes") String codes, @QueryParam("fields") String fields) { LOG.info("Getting by list " + codes); if (isEmpty(codes) || codes.length() < 2 || (codes.length() > 3 && !codes.contains(";"))) { return getResponse(Response.Status.BAD_REQUEST); } try { List countries = CountryService.getInstance().getByCodeList(codes); if (!countries.isEmpty()) { return parsedCountries(countries, fields); } return getResponse(Response.Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.INTERNAL_SERVER_ERROR); } } @GET @Path("currency/{currency}") public Object getByCurrency(@PathParam("currency") String currency, @QueryParam("fields") String fields) { LOG.info("Getting by currency " + currency); if (isEmpty(currency) || currency.length() != 3) { return getResponse(Response.Status.BAD_REQUEST); } try { List countries = CountryService.getInstance().getByCurrency(currency); if (!countries.isEmpty()) { return parsedCountries(countries, fields); } return getResponse(Response.Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.INTERNAL_SERVER_ERROR); } } @GET @Path("name/{name}") public Object getByName(@PathParam("name") String name, @QueryParam("fullText") boolean fullText, @QueryParam("fields") String fields) { LOG.info("Getting by name " + name); try { List countries = CountryService.getInstance().getByName(name, fullText); if (!countries.isEmpty()) { return parsedCountries(countries, fields); } return getResponse(Response.Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.INTERNAL_SERVER_ERROR); } } @GET @Path("callingcode/{callingcode}") public Object getByCallingCode(@PathParam("callingcode") String callingcode, @QueryParam("fields") String fields) { LOG.info("Getting by calling code " + callingcode); try { List countries = CountryService.getInstance().getByCallingCode(callingcode); if (!countries.isEmpty()) { return parsedCountries(countries, fields); } return getResponse(Response.Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.INTERNAL_SERVER_ERROR); } } @GET @Path("capital/{capital}") public Object getByCapital(@PathParam("capital") String capital, @QueryParam("fields") String fields) { LOG.info("Getting by capital " + capital); try { List countries = CountryService.getInstance().getByCapital(capital); if (!countries.isEmpty()) { return parsedCountries(countries, fields); } return getResponse(Response.Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.INTERNAL_SERVER_ERROR); } } @GET @Path("region/{region}") public Object getByRegion(@PathParam("region") String region, @QueryParam("fields") String fields) { LOG.info("Getting by region " + region); try { List countries = CountryService.getInstance().getByRegion(region); if (!countries.isEmpty()) { return parsedCountries(countries, fields); } return getResponse(Response.Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.INTERNAL_SERVER_ERROR); } } @GET @Path("subregion/{subregion}") public Object getBySubRegion(@PathParam("subregion") String subregion, @QueryParam("fields") String fields) { LOG.info("Getting by sub region " + subregion); try { List countries = CountryService.getInstance().getBySubRegion(subregion); if (!countries.isEmpty()) { return parsedCountries(countries, fields); } return getResponse(Response.Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.INTERNAL_SERVER_ERROR); } } @GET @Path("lang/{lang}") public Object getByLanguage(@PathParam("lang") String language, @QueryParam("fields") String fields) { LOG.info("Getting by language " + language); try { List countries = CountryService.getInstance().getByLanguage(language); if (!countries.isEmpty()) { return parsedCountries(countries, fields); } return getResponse(Response.Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.INTERNAL_SERVER_ERROR); } } @GET @Path("demonym/{demonym}") public Object getByDemonym(@PathParam("demonym") String demonym, @QueryParam("fields") String fields) { LOG.info("Getting by demonym " + demonym); try { List countries = CountryService.getInstance().getByDemonym(demonym); if (!countries.isEmpty()) { return parsedCountries(countries, fields); } return getResponse(Response.Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.INTERNAL_SERVER_ERROR); } } @GET @Path("regionalbloc/{regionalbloc}") public Object getByRegionalBloc(@PathParam("regionalbloc") String regionalBlock, @QueryParam("fields") String fields) { LOG.info("Getting by regional bloc " + regionalBlock); try { List countries = CountryService.getInstance().getByRegionalBloc(regionalBlock); if (!countries.isEmpty()) { return parsedCountries(countries, fields); } return getResponse(Response.Status.NOT_FOUND); } catch (Exception e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.INTERNAL_SERVER_ERROR); } } @POST public Object doPOST() { LOG.info("Handling POST Request"); return getResponse(Response.Status.METHOD_NOT_ALLOWED); } private Response getResponse(Response.Status status) { Gson gson = new Gson(); return Response .status(status) .entity(gson.toJson(new ResponseEntity(status.getStatusCode(), status.getReasonPhrase()))).build(); } private Object parsedCountry(Country country, String fields) { if (fields == null || fields.isEmpty()) { return country; } else { return getCountryJson(country, Arrays.asList(fields.split(ICountryRestSymbols.SEMICOLON))); } } private Object parsedCountries(List countries, String excludedFields) { if (excludedFields == null || excludedFields.isEmpty()) { return countries; } else { return getCountriesJson(countries, Arrays.asList(excludedFields.split(ICountryRestSymbols.SEMICOLON))); } } private String getCountryJson(Country country, List fields) { Gson gson = new Gson(); JsonParser parser = new JsonParser(); JsonObject jsonObject = parser.parse(gson.toJson(country)).getAsJsonObject(); List excludedFields = getExcludedFields(fields); for (String field : excludedFields) { jsonObject.remove(field); } return jsonObject.toString(); } private String getCountriesJson(List countries, List fields) { Gson gson = new Gson(); JsonParser parser = new JsonParser(); JsonArray jsonArray = parser.parse(gson.toJson(countries)).getAsJsonArray(); JsonArray resultArray = new JsonArray(); for (int i = 0; i < jsonArray.size(); i++) { JsonObject jsonObject = (JsonObject) jsonArray.get(i); List excludedFields = getExcludedFields(fields); for (String excludedField : excludedFields) { jsonObject.remove(excludedField); } resultArray.add(jsonObject); } return resultArray.toString(); } private List getExcludedFields(List fields) { List excludedFields = new ArrayList<>(Arrays.asList(COUNTRY_FIELDS)); excludedFields.removeAll(fields); return excludedFields; } private static final String[] COUNTRY_FIELDS = new String[]{ "name", "topLevelDomain", "alpha2Code", "alpha3Code", "callingCodes", "capital", "altSpellings", "region", "subregion", "translations", "population", "latlng", "demonym", "area", "gini", "timezones", "borders", "nativeName", "numericCode", "currencies", "languages", "flag", "regionalBlocs", "cioc" }; private boolean isEmpty(String value) { return value == null || value.isEmpty(); } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v2/rest/CountryService.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.v2.rest; import eu.fayder.restcountries.v2.domain.Country; import eu.fayder.restcountries.v2.domain.Language; import eu.fayder.restcountries.rest.CountryServiceBase; import eu.fayder.restcountries.v2.domain.Currency; import eu.fayder.restcountries.v2.domain.RegionalBloc; import org.apache.log4j.Logger; import java.util.ArrayList; import java.util.List; public class CountryService extends CountryServiceBase { private static final Logger LOG = Logger.getLogger(CountryService.class); private static List countries; private CountryService() { initialize(); } private static class InstanceHolder { private static final CountryService INSTANCE = new CountryService(); } public static CountryService getInstance() { return InstanceHolder.INSTANCE; } public List getAll() { return countries; } public Country getByAlpha(String alpha) { return super.getByAlpha(alpha, countries); } @SuppressWarnings("unchecked") public List getByCodeList(String codeList) { return (List) super.getByCodeList(codeList, countries); } @SuppressWarnings("unchecked") public List getByName(String name, boolean isFullText) { return (List) super.getByName(name, isFullText, countries); } @SuppressWarnings("unchecked") public List getByCallingCode(String callingcode) { return (List) super.getByCallingCode(callingcode, countries); } @SuppressWarnings("unchecked") public List getByCapital(String capital) { return (List) super.getByCapital(capital, countries); } @SuppressWarnings("unchecked") public List getByRegion(String region) { return (List) super.getByRegion(region, countries); } @SuppressWarnings("unchecked") public List getBySubRegion(String subregion) { return (List) super.getBySubregion(subregion, countries); } public List getByCurrency(String currency) { List result = new ArrayList<>(); for (Country country : countries) { for (Currency curr : country.getCurrencies()) { if (curr.getCode() != null && currency.toLowerCase().equals(curr.getCode().toLowerCase())) { result.add(country); } } } return result; } public List getByLanguage(String language) { List result = new ArrayList<>(); if (language.length() == 2) { for (Country country : countries) { for (Language lang : country.getLanguages()) { if (language.toLowerCase().equals(lang.getIso639_1())) { result.add(country); } } } } else if (language.length() == 3) { for (Country country : countries) { for (Language lang : country.getLanguages()) { if (language.toLowerCase().equals(lang.getIso639_2())) { result.add(country); } } } } return result; } public List getByDemonym(String demonym) { List result = new ArrayList<>(); for (Country country : countries) { if (country.getDemonym().toLowerCase().equals(normalize(demonym.toLowerCase()))) { result.add(country); } } return result; } public List getByRegionalBloc(String regionalBloc) { List result = new ArrayList<>(); for (Country country : countries) { for (RegionalBloc countryRegionalBloc : country.getRegionalBlocs()) { if (countryRegionalBloc.getAcronym().toUpperCase().equals(regionalBloc.toUpperCase()) || countryRegionalBloc.getOtherAcronyms().contains(regionalBloc.toUpperCase())) { result.add(country); } } } return result; } @SuppressWarnings("unchecked") private void initialize() { countries = (List) super.loadJson("countriesV2.json", Country.class); } } ================================================ FILE: src/main/java/eu/fayder/restcountries/v2/rest/StripeRest.java ================================================ package eu.fayder.restcountries.v2.rest; import com.google.gson.Gson; import com.stripe.Stripe; import com.stripe.exception.*; import com.stripe.model.Charge; import eu.fayder.restcountries.domain.ResponseEntity; import eu.fayder.restcountries.v2.domain.Contribution; import org.apache.http.util.TextUtils; import org.apache.log4j.Logger; import javax.ws.rs.Consumes; import javax.ws.rs.POST; import javax.ws.rs.Path; import javax.ws.rs.core.Response; import javax.ws.rs.ext.Provider; import java.util.HashMap; import java.util.Map; /** * Created by fayder on 24/02/2017. */ @Provider @Path("/contribute") @Consumes("application/json;charset=utf-8") public class StripeRest { private static final Logger LOG = Logger.getLogger(StripeRest.class); @POST public Object contribute(Contribution contribution) { LOG.debug("Contribution: " + contribution); if (contribution == null || TextUtils.isBlank(contribution.getToken())) { return getResponse(Response.Status.BAD_REQUEST); } Stripe.apiKey = ""; Map params = new HashMap<>(); params.put("amount", contribution.getAmount()); params.put("currency", "eur"); params.put("description", "REST Countries"); params.put("source", contribution.getToken()); try { Charge.create(params); } catch (AuthenticationException | InvalidRequestException | CardException | APIConnectionException | APIException e) { LOG.error(e.getMessage(), e); return getResponse(Response.Status.BAD_REQUEST); } return getResponse(Response.Status.ACCEPTED); } private Response getResponse(Response.Status status) { Gson gson = new Gson(); return Response .status(status) .entity(gson.toJson(new ResponseEntity(status.getStatusCode(), status.getReasonPhrase()))).build(); } } ================================================ FILE: src/main/resources/countriesV1.json ================================================ [{"name":"Afghanistan","nativeName":"\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646","topLevelDomain":[".af"],"alpha2Code":"AF","numericCode":"004","alpha3Code":"AFG","currencies":["AFN"],"callingCodes":["93"],"capital":"Kabul","altSpellings":["AF","Af\u0121\u0101nist\u0101n"],"relevance":"0","region":"Asia","subregion":"Southern Asia","language":["Pashto","Dari"],"languages":["ps","uz","tk"],"translations":{"de":"Afghanistan","es":"Afganist\u00e1n","fr":"Afghanistan","it":"Afghanistan","ja":"\u30a2\u30d5\u30ac\u30cb\u30b9\u30bf\u30f3","nl":"Afghanistan","hr":"Afganistan"},"population":26023100,"latlng":[33,65],"demonym":"Afghan","borders":["IRN","PAK","TKM","UZB","TJK","CHN"],"area":652230,"gini":27.8,"timezones":["UTC+04:30"]},{"name":"\u00c5land Islands","nativeName":"\u00c5land","topLevelDomain":[".ax"],"alpha2Code":"AX","numericCode":"248","alpha3Code":"ALA","currencies":["EUR"],"callingCodes":["358"],"capital":"Mariehamn","altSpellings":["AX","Aaland","Aland","Ahvenanmaa"],"relevance":"0","region":"Europe","subregion":"Northern Europe","language":["Swedish"],"languages":["sv"],"translations":{"de":"\u00c5land","es":"Alandia","fr":"\u00c5land","it":"Isole Aland","ja":"\u30aa\u30fc\u30e9\u30f3\u30c9\u8af8\u5cf6","nl":"\u00c5landeilanden","hr":"\u00c5landski otoci"},"population":28875,"latlng":[60.116667,19.9],"demonym":"\u00c5landish","borders":[],"area":1580,"timezones":["UTC+02:00"]},{"name":"Albania","nativeName":"Shqip\u00ebria","topLevelDomain":[".al"],"alpha2Code":"AL","numericCode":"008","alpha3Code":"ALB","currencies":["ALL"],"callingCodes":["355"],"capital":"Tirana","altSpellings":["AL","Shqip\u00ebri","Shqip\u00ebria","Shqipnia"],"relevance":"0","region":"Europe","subregion":"Southern Europe","language":["Albanian"],"languages":["sq"],"translations":{"de":"Albanien","es":"Albania","fr":"Albanie","it":"Albania","ja":"\u30a2\u30eb\u30d0\u30cb\u30a2","nl":"Albani\u00eb","hr":"Albanija"},"population":2893005,"latlng":[41,20],"demonym":"Albanian","borders":["MNE","GRC","MKD","KOS"],"area":28748,"gini":34.5,"timezones":["UTC+01:00"]},{"name":"Algeria","nativeName":"\u0627\u0644\u062c\u0632\u0627\u0626\u0631","topLevelDomain":[".dz"],"alpha2Code":"DZ","numericCode":"012","alpha3Code":"DZA","currencies":["DZD"],"callingCodes":["213"],"capital":"Algiers","altSpellings":["DZ","Dzayer","Alg\u00e9rie"],"relevance":"0","region":"Africa","subregion":"Northern Africa","language":["Arabic"],"languages":["ar"],"translations":{"de":"Algerien","es":"Argelia","fr":"Alg\u00e9rie","it":"Algeria","ja":"\u30a2\u30eb\u30b8\u30a7\u30ea\u30a2","nl":"Algerije","hr":"Al\u017eir"},"population":39500000,"latlng":[28,3],"demonym":"Algerian","borders":["TUN","LBY","NER","ESH","MRT","MLI","MAR"],"area":2381741,"gini":35.3,"timezones":["UTC+01:00"]},{"name":"American Samoa","nativeName":"American Samoa","topLevelDomain":[".as"],"alpha2Code":"AS","numericCode":"016","alpha3Code":"ASM","currencies":["USD"],"callingCodes":["1"],"capital":"Pago Pago","altSpellings":["AS","Amerika S\u0101moa","Amelika S\u0101moa","S\u0101moa Amelika"],"relevance":"0.5","region":"Oceania","subregion":"Polynesia","language":["English","Samoan"],"languages":["en","sm"],"translations":{"de":"Amerikanisch-Samoa","es":"Samoa Americana","fr":"Samoa am\u00e9ricaines","it":"Samoa Americane","ja":"\u30a2\u30e1\u30ea\u30ab\u9818\u30b5\u30e2\u30a2","nl":"Amerikaans Samoa","hr":"Ameri\u010dka Samoa"},"population":55519,"latlng":[-14.33333333,-170],"demonym":"American Samoan","borders":[],"area":199,"timezones":["UTC-11:00"]},{"name":"Andorra","nativeName":"Andorra","topLevelDomain":[".ad"],"alpha2Code":"AD","numericCode":"020","alpha3Code":"AND","currencies":["EUR"],"callingCodes":["376"],"capital":"Andorra la Vella","altSpellings":["AD","Principality of Andorra","Principat d'Andorra"],"relevance":"0.5","region":"Europe","subregion":"Southern Europe","language":["Catalan"],"languages":["ca"],"translations":{"de":"Andorra","es":"Andorra","fr":"Andorre","it":"Andorra","ja":"\u30a2\u30f3\u30c9\u30e9","nl":"Andorra","hr":"Andora"},"population":76949,"latlng":[42.5,1.5],"demonym":"Andorran","borders":["FRA","ESP"],"area":468,"timezones":["UTC+01:00"]},{"name":"Angola","nativeName":"Angola","topLevelDomain":[".ao"],"alpha2Code":"AO","numericCode":"024","alpha3Code":"AGO","currencies":["AOA"],"callingCodes":["244"],"capital":"Luanda","altSpellings":["AO","Rep\u00fablica de Angola","\u0281\u025bpublika de an'\u0261\u0254la"],"relevance":"0","region":"Africa","subregion":"Middle Africa","language":["Portuguese"],"languages":["pt"],"translations":{"de":"Angola","es":"Angola","fr":"Angola","it":"Angola","ja":"\u30a2\u30f3\u30b4\u30e9","nl":"Angola","hr":"Angola"},"population":24383301,"latlng":[-12.5,18.5],"demonym":"Angolan","borders":["COG","COD","ZMB","NAM"],"area":1246700,"gini":58.6,"timezones":["UTC+01:00"]},{"name":"Anguilla","nativeName":"Anguilla","topLevelDomain":[".ai"],"alpha2Code":"AI","numericCode":"660","alpha3Code":"AIA","currencies":["XCD"],"callingCodes":["1"],"capital":"The Valley","altSpellings":["AI"],"relevance":"0.5","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Anguilla","es":"Anguilla","fr":"Anguilla","it":"Anguilla","ja":"\u30a2\u30f3\u30ae\u30e9","nl":"Anguilla","hr":"Angvila"},"population":13452,"latlng":[18.25,-63.16666666],"demonym":"Anguillian","borders":[],"area":91,"timezones":["UTC-04:00"]},{"name":"Antarctica","nativeName":"Antarctica","topLevelDomain":[".aq"],"alpha2Code":"AQ","alpha3Code":"ATA","numericCode":"010","currencies":["AUD","GBP"],"callingCodes":["672"],"capital":"","altSpellings":[],"relevance":"0","region":"Polar","subregion":"","language":["English"],"languages":["en"],"translations":{"de":"Antarktika","es":"Antártida","fr":"Antarctique","it":"Antartide","ja":"\u5357\u6975\u5927\u9678","nl":"Antarctica","hr":"Antarktika"},"population":1000,"latlng":[-74.65,4.48],"demonym":"","borders":[],"area":14000000,"timezones":["UTC-03:00","UTC+03:00","UTC+05:00","UTC+06:00","UTC+07:00","UTC+08:00","UTC+10:00","UTC+12:00"]},{"name":"Antigua and Barbuda","nativeName":"Antigua and Barbuda","topLevelDomain":[".ag"],"alpha2Code":"AG","numericCode":"028","alpha3Code":"ATG","currencies":["XCD"],"callingCodes":["1"],"capital":"Saint John's","altSpellings":["AG"],"relevance":"0.5","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Antigua und Barbuda","es":"Antigua y Barbuda","fr":"Antigua-et-Barbuda","it":"Antigua e Barbuda","ja":"\u30a2\u30f3\u30c6\u30a3\u30b0\u30a2\u30fb\u30d0\u30fc\u30d6\u30fc\u30c0","nl":"Antigua en Barbuda","hr":"Antigva i Barbuda"},"population":86295,"latlng":[17.05,-61.8],"demonym":"Antiguan, Barbudan","borders":[],"area":442,"timezones":["UTC-04:00"]},{"name":"Argentina","nativeName":"Argentina","topLevelDomain":[".ar"],"alpha2Code":"AR","numericCode":"032","alpha3Code":"ARG","currencies":["ARS"],"callingCodes":["54"],"capital":"Buenos Aires","altSpellings":["AR","Argentine Republic","Rep\u00fablica Argentina"],"relevance":"0","region":"Americas","subregion":"South America","language":["Spanish"],"languages":["es","gn"],"translations":{"de":"Argentinien","es":"Argentina","fr":"Argentine","it":"Argentina","ja":"\u30a2\u30eb\u30bc\u30f3\u30c1\u30f3","nl":"Argentini\u00eb","hr":"Argentina"},"population":43131966,"latlng":[-34,-64],"demonym":"Argentinean","borders":["BOL","BRA","CHL","PRY","URY"],"area":2780400,"gini":44.5,"timezones":["UTC-03:00"]},{"name":"Armenia","nativeName":"\u0540\u0561\u0575\u0561\u057d\u057f\u0561\u0576","topLevelDomain":[".am"],"alpha2Code":"AM","numericCode":"051","alpha3Code":"ARM","currencies":["AMD"],"callingCodes":["374"],"capital":"Yerevan","altSpellings":["AM","Hayastan","Republic of Armenia","\u0540\u0561\u0575\u0561\u057d\u057f\u0561\u0576\u056b \u0540\u0561\u0576\u0580\u0561\u057a\u0565\u057f\u0578\u0582\u0569\u0575\u0578\u0582\u0576"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Armenian"],"languages":["hy","ru"],"translations":{"de":"Armenien","es":"Armenia","fr":"Arm\u00e9nie","it":"Armenia","ja":"\u30a2\u30eb\u30e1\u30cb\u30a2","nl":"Armeni\u00eb","hr":"Armenija"},"population":3006800,"latlng":[40,45],"demonym":"Armenian","borders":["AZE","GEO","IRN","TUR"],"area":29743,"gini":30.9,"timezones":["UTC+04:00"]},{"name":"Aruba","nativeName":"Aruba","topLevelDomain":[".aw"],"alpha2Code":"AW","numericCode":"533","alpha3Code":"ABW","currencies":["AWG"],"callingCodes":["297"],"capital":"Oranjestad","altSpellings":["AW"],"relevance":"0.5","region":"Americas","subregion":"Caribbean","language":["Dutch","Papiamento"],"languages":["nl","pa"],"translations":{"de":"Aruba","es":"Aruba","fr":"Aruba","it":"Aruba","ja":"\u30a2\u30eb\u30d0","nl":"Aruba","hr":"Aruba"},"population":107394,"latlng":[12.5,-69.96666666],"demonym":"Aruban","borders":[],"area":180,"timezones":["UTC-04:00"]},{"name":"Australia","nativeName":"Australia","topLevelDomain":[".au"],"alpha2Code":"AU","numericCode":"036","alpha3Code":"AUS","currencies":["AUD"],"callingCodes":["61"],"capital":"Canberra","altSpellings":["AU"],"relevance":"1.5","region":"Oceania","subregion":"Australia and New Zealand","language":["English"],"languages":["en"],"translations":{"de":"Australien","es":"Australia","fr":"Australie","it":"Australia","ja":"\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2","nl":"Australi\u00eb","hr":"Australija"},"population":23868800,"latlng":[-27,133],"demonym":"Australian","borders":[],"area":7692024,"gini":30.5,"timezones":["UTC+05:00","UTC+06:30","UTC+07:00","UTC+08:00","UTC+09:30","UTC+10:00","UTC+10:30","UTC+11:30"]},{"name":"Austria","nativeName":"\u00d6sterreich","topLevelDomain":[".at"],"alpha2Code":"AT","numericCode":"040","alpha3Code":"AUT","currencies":["EUR"],"callingCodes":["43"],"capital":"Vienna","altSpellings":["AT","\u00d6sterreich","Osterreich","Oesterreich"],"relevance":"0","region":"Europe","subregion":"Western Europe","language":["German"],"languages":["de"],"translations":{"de":"\u00d6sterreich","es":"Austria","fr":"Autriche","it":"Austria","ja":"\u30aa\u30fc\u30b9\u30c8\u30ea\u30a2","nl":"Oostenrijk","hr":"Austrija"},"population":8602112,"latlng":[47.33333333,13.33333333],"demonym":"Austrian","borders":["CZE","DEU","HUN","ITA","LIE","SVK","SVN","CHE"],"area":83871,"gini":26.0,"timezones":["UTC+01:00"]},{"name":"Azerbaijan","nativeName":"Az\u0259rbaycan","topLevelDomain":[".az"],"alpha2Code":"AZ","numericCode":"031","alpha3Code":"AZE","currencies":["AZN"],"callingCodes":["994"],"capital":"Baku","altSpellings":["AZ","Republic of Azerbaijan","Az\u0259rbaycan Respublikas\u0131"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Azerbaijani"],"languages":["az"],"translations":{"de":"Aserbaidschan","es":"Azerbaiy\u00e1n","fr":"Azerba\u00efdjan","it":"Azerbaijan","ja":"\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3","nl":"Azerbeidzjan","hr":"Azerbajd\u017ean"},"population":9636300,"latlng":[40.5,47.5],"demonym":"Azerbaijani","borders":["ARM","GEO","IRN","RUS","TUR"],"area":86600,"gini":33.7,"timezones":["UTC+04:00"]},{"name":"The Bahamas","nativeName":"Bahamas","topLevelDomain":[".bs"],"alpha2Code":"BS","numericCode":"044","alpha3Code":"BHS","currencies":["BSD"],"callingCodes":["1"],"capital":"Nassau","altSpellings":["BS","Commonwealth of the Bahamas"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Bahamas","es":"Bahamas","fr":"Bahamas","it":"Bahamas","ja":"\u30d0\u30cf\u30de","nl":"Bahama\u2019s","hr":"Bahami"},"population":368390,"latlng":[24.25,-76],"demonym":"Bahamian","borders":[],"area":13943,"timezones":["UTC-05:00"]},{"name":"Bahrain","nativeName":"\u200f\u0627\u0644\u0628\u062d\u0631\u064a\u0646","topLevelDomain":[".bh"],"alpha2Code":"BH","numericCode":"048","alpha3Code":"BHR","currencies":["BHD"],"callingCodes":["973"],"capital":"Manama","altSpellings":["BH","Kingdom of Bahrain","Mamlakat al-Ba\u1e25rayn"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic"],"languages":["ar"],"translations":{"de":"Bahrain","es":"Bahrein","fr":"Bahre\u00efn","it":"Bahrein","ja":"\u30d0\u30fc\u30ec\u30fc\u30f3","nl":"Bahrein","hr":"Bahrein"},"population":1359800,"latlng":[26,50.55],"demonym":"Bahraini","borders":[],"area":765,"gini":null,"timezones":["UTC+03:00"]},{"name":"Bangladesh","nativeName":"Bangladesh","topLevelDomain":[".bd"],"alpha2Code":"BD","numericCode":"050","alpha3Code":"BGD","currencies":["BDT"],"callingCodes":["880"],"capital":"Dhaka","altSpellings":["BD","People's Republic of Bangladesh","G\u00f4n\u00f4pr\u00f4jat\u00f4ntri Bangladesh"],"relevance":"2","region":"Asia","subregion":"Southern Asia","language":["Bangla"],"languages":["bn"],"translations":{"de":"Bangladesch","es":"Bangladesh","fr":"Bangladesh","it":"Bangladesh","ja":"\u30d0\u30f3\u30b0\u30e9\u30c7\u30b7\u30e5","nl":"Bangladesh","hr":"Banglade\u0161"},"population":158875000,"latlng":[24,90],"demonym":"Bangladeshi","borders":["MMR","IND"],"area":147570,"gini":32.1,"timezones":["UTC+06:00"]},{"name":"Barbados","nativeName":"Barbados","topLevelDomain":[".bb"],"alpha2Code":"BB","numericCode":"052","alpha3Code":"BRB","currencies":["BBD"],"callingCodes":["1"],"capital":"Bridgetown","altSpellings":["BB"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Barbados","es":"Barbados","fr":"Barbade","it":"Barbados","ja":"\u30d0\u30eb\u30d0\u30c9\u30b9","nl":"Barbados","hr":"Barbados"},"population":285000,"latlng":[13.16666666,-59.53333333],"demonym":"Barbadian","borders":[],"area":430,"timezones":["UTC-04:00"]},{"name":"Belarus","nativeName":"\u0411\u0435\u043b\u0430\u0440\u0443\u0301\u0441\u044c","topLevelDomain":[".by"],"alpha2Code":"BY","numericCode":"112","alpha3Code":"BLR","currencies":["BYR"],"callingCodes":["375"],"capital":"Minsk","altSpellings":["BY","Bielaru\u015b","Republic of Belarus","\u0411\u0435\u043b\u043e\u0440\u0443\u0441\u0441\u0438\u044f","\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c","Belorussiya","Respublika Belarus\u2019"],"relevance":"0","region":"Europe","subregion":"Eastern Europe","language":["Belarusian","Russian"],"languages":["be","ru"],"translations":{"de":"Wei\u00dfrussland","es":"Bielorrusia","fr":"Bi\u00e9lorussie","it":"Bielorussia","ja":"\u30d9\u30e9\u30eb\u30fc\u30b7","nl":"Wit-Rusland","hr":"Bjelorusija"},"population":9485300,"latlng":[53,28],"demonym":"Belarusian","borders":["LVA","LTU","POL","RUS","UKR"],"area":207600,"gini":26.5,"timezones":["UTC+03:00"]},{"name":"Belgium","nativeName":"Belgi\u00eb","topLevelDomain":[".be"],"alpha2Code":"BE","numericCode":"056","alpha3Code":"BEL","currencies":["EUR"],"callingCodes":["32"],"capital":"Brussels","altSpellings":["BE","Belgi\u00eb","Belgie","Belgien","Belgique","Kingdom of Belgium","Koninkrijk Belgi\u00eb","Royaume de Belgique","K\u00f6nigreich Belgien"],"relevance":"1.5","region":"Europe","subregion":"Western Europe","language":["Dutch","French","German"],"languages":["nl","fr","de"],"translations":{"de":"Belgien","es":"B\u00e9lgica","fr":"Belgique","it":"Belgio","ja":"\u30d9\u30eb\u30ae\u30fc","nl":"Belgi\u00eb","hr":"Belgija"},"population":11248330,"latlng":[50.83333333,4],"demonym":"Belgian","borders":["FRA","DEU","LUX","NLD"],"area":30528,"gini":33.0,"timezones":["UTC+01:00"]},{"name":"Belize","nativeName":"Belize","topLevelDomain":[".bz"],"alpha2Code":"BZ","numericCode":"084","alpha3Code":"BLZ","currencies":["BZD"],"callingCodes":["501"],"capital":"Belmopan","altSpellings":["BZ"],"relevance":"0","region":"Americas","subregion":"Central America","language":["English"],"languages":["en","es"],"translations":{"de":"Belize","es":"Belice","fr":"Belize","it":"Belize","ja":"\u30d9\u30ea\u30fc\u30ba","nl":"Belize","hr":"Belize"},"population":368310,"latlng":[17.25,-88.75],"demonym":"Belizean","borders":["GTM","MEX"],"area":22966,"gini":53.1,"timezones":["UTC-06:00"]},{"name":"Benin","nativeName":"B\u00e9nin","topLevelDomain":[".bj"],"alpha2Code":"BJ","numericCode":"204","alpha3Code":"BEN","currencies":["XOF"],"callingCodes":["229"],"capital":"Porto-Novo","altSpellings":["BJ","Republic of Benin","R\u00e9publique du B\u00e9nin"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["French"],"languages":["fr"],"translations":{"de":"Benin","es":"Ben\u00edn","fr":"B\u00e9nin","it":"Benin","ja":"\u30d9\u30ca\u30f3","nl":"Benin","hr":"Benin"},"population":10315244,"latlng":[9.5,2.25],"demonym":"Beninese","borders":["BFA","NER","NGA","TGO"],"area":112622,"gini":38.6,"timezones":["UTC+01:00"]},{"name":"Bermuda","nativeName":"Bermuda","topLevelDomain":[".bm"],"alpha2Code":"BM","numericCode":"060","alpha3Code":"BMU","currencies":["BMD"],"callingCodes":["1"],"capital":"Hamilton","altSpellings":["BM","The Islands of Bermuda","The Bermudas","Somers Isles"],"relevance":"0.5","region":"Americas","subregion":"Northern America","language":["English"],"languages":["en"],"translations":{"de":"Bermuda","es":"Bermudas","fr":"Bermudes","it":"Bermuda","ja":"\u30d0\u30df\u30e5\u30fc\u30c0","nl":"Bermuda","hr":"Bermudi"},"population":64237,"latlng":[32.33333333,-64.75],"demonym":"Bermudian","borders":[],"area":54,"timezones":["UTC-04:00"]},{"name":"Bhutan","nativeName":"\u02bcbrug-yul","topLevelDomain":[".bt"],"alpha2Code":"BT","numericCode":"064","alpha3Code":"BTN","currencies":["BTN","INR"],"callingCodes":["975"],"capital":"Thimphu","altSpellings":["BT","Kingdom of Bhutan"],"relevance":"0","region":"Asia","subregion":"Southern Asia","language":["Dzongkha"],"languages":["dz"],"translations":{"de":"Bhutan","es":"But\u00e1n","fr":"Bhoutan","it":"Bhutan","ja":"\u30d6\u30fc\u30bf\u30f3","nl":"Bhutan","hr":"Butan"},"population":763920,"latlng":[27.5,90.5],"demonym":"Bhutanese","borders":["CHN","IND"],"area":38394,"gini":38.1,"timezones":["UTC+06:00"]},{"name":"Bolivia","nativeName":"Bolivia","topLevelDomain":[".bo"],"alpha2Code":"BO","numericCode":"068","alpha3Code":"BOL","currencies":["BOB","BOV"],"callingCodes":["591"],"capital":"Sucre","altSpellings":["BO","Buliwya","Wuliwya","Plurinational State of Bolivia","Estado Plurinacional de Bolivia","Buliwya Mamallaqta","Wuliwya Suyu","Tet\u00e3 Vol\u00edvia"],"relevance":"0","region":"Americas","subregion":"South America","language":["Spanish","Quechua","Aymara","Guaran\u00ed"],"languages":["es","ay","qu"],"translations":{"de":"Bolivien","es":"Bolivia","fr":"Bolivie","it":"Bolivia","ja":"\u30dc\u30ea\u30d3\u30a2\u591a\u6c11\u65cf\u56fd","nl":"Bolivia","hr":"Bolivija"},"population":11410651,"latlng":[-17,-65],"demonym":"Bolivian","borders":["ARG","BRA","CHL","PRY","PER"],"area":1098581,"gini":56.3,"timezones":["UTC-04:00"]},{"name":"Bonaire","nativeName":"Bonaire","topLevelDomain":[".an",".nl"],"alpha2Code":"BQ","numericCode":"535","alpha3Code":"BES","currencies":["USD"],"callingCodes":["599"],"capital":"Kralendijk","altSpellings":["BQ","Boneiru"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["Dutch"],"languages":["nl"],"translations":{},"population":17408,"latlng":[12.15,-68.266667],"demonym":"Dutch","borders":[],"area":294,"timezones":["UTC-04:00"]},{"name":"Bosnia and Herzegovina","nativeName":"Bosna i Hercegovina","topLevelDomain":[".ba"],"alpha2Code":"BA","numericCode":"070","alpha3Code":"BIH","currencies":["BAM"],"callingCodes":["387"],"capital":"Sarajevo","altSpellings":["BA","Bosnia-Herzegovina","\u0411\u043e\u0441\u043d\u0430 \u0438 \u0425\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430"],"relevance":"0","region":"Europe","subregion":"Southern Europe","language":["Bosnian","Croatian","Serbian"],"languages":["bs","hr","sr"],"translations":{"de":"Bosnien und Herzegowina","es":"Bosnia y Herzegovina","fr":"Bosnie-Herz\u00e9govine","it":"Bosnia ed Erzegovina","ja":"\u30dc\u30b9\u30cb\u30a2\u30fb\u30d8\u30eb\u30c4\u30a7\u30b4\u30d3\u30ca","nl":"Bosni\u00eb en Herzegovina","hr":"Bosna i Hercegovina"},"population":3791622,"latlng":[44,18],"demonym":"Bosnian, Herzegovinian","borders":["HRV","MNE","SRB"],"area":51209,"gini":36.2,"timezones":["UTC+01:00"]},{"name":"Botswana","nativeName":"Botswana","topLevelDomain":[".bw"],"alpha2Code":"BW","numericCode":"072","alpha3Code":"BWA","currencies":["BWP"],"callingCodes":["267"],"capital":"Gaborone","altSpellings":["BW","Republic of Botswana","Lefatshe la Botswana"],"relevance":"0","region":"Africa","subregion":"Southern Africa","language":["English","Setswana"],"languages":["en","tn"],"translations":{"de":"Botswana","es":"Botswana","fr":"Botswana","it":"Botswana","ja":"\u30dc\u30c4\u30ef\u30ca","nl":"Botswana","hr":"Bocvana"},"population":2070984,"latlng":[-22,24],"demonym":"Motswana","borders":["NAM","ZAF","ZMB","ZWE"],"area":582000,"gini":61.0,"timezones":["UTC+02:00"]},{"name":"Bouvet Island","nativeName":"Bouvet\u00f8ya","topLevelDomain":[".bv"],"alpha2Code":"BV","numericCode":"074","alpha3Code":"BVT","currencies":["NOK"],"callingCodes":["47"],"capital":"","altSpellings":["BV","Bouvet\u00f8ya","Bouvet-\u00f8ya"],"relevance":"0","region":"","subregion":"","language":[""],"languages":[],"translations":{"de":"Bouvetinsel","es":"Isla Bouvet","fr":"\u00cele Bouvet","it":"Isola Bouvet","ja":"\u30d6\u30fc\u30d9\u5cf6","nl":"Bouveteiland","hr":"Otok Bouvet"},"population":0,"latlng":[-54.43333333,3.4],"demonym":"","borders":[],"area":49,"timezones":["UTC+01:00"]},{"name":"Brazil","nativeName":"Brasil","topLevelDomain":[".br"],"alpha2Code":"BR","numericCode":"076","alpha3Code":"BRA","currencies":["BRL"],"callingCodes":["55"],"capital":"Bras\u00edlia","altSpellings":["BR","Brasil","Federative Republic of Brazil","Rep\u00fablica Federativa do Brasil"],"relevance":"2","region":"Americas","subregion":"South America","language":["Portuguese"],"languages":["pt"],"translations":{"de":"Brasilien","es":"Brasil","fr":"Br\u00e9sil","it":"Brasile","ja":"\u30d6\u30e9\u30b8\u30eb","nl":"Brazili\u00eb","hr":"Brazil"},"population":204772000,"latlng":[-10,-55],"demonym":"Brazilian","borders":["ARG","BOL","COL","GUF","GUY","PRY","PER","SUR","URY","VEN"],"area":8515767,"gini":54.7,"timezones":["UTC-05:00","UTC-04:00","UTC-03:00","UTC-02:00"]},{"name":"British Indian Ocean Territory","nativeName":"British Indian Ocean Territory","topLevelDomain":[".io"],"alpha2Code":"IO","numericCode":"086","alpha3Code":"IOT","currencies":["USD"],"callingCodes":["246"],"capital":"Diego Garcia","altSpellings":["IO"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["English"],"languages":["en"],"translations":{"de":"Britisches Territorium im Indischen Ozean","es":"Territorio Brit\u00e1nico del Oc\u00e9ano \u00cdndico","fr":"Territoire britannique de l'oc\u00e9an Indien","it":"Territorio britannico dell'oceano indiano","ja":"\u30a4\u30ae\u30ea\u30b9\u9818\u30a4\u30f3\u30c9\u6d0b\u5730\u57df","nl":"Britse Gebieden in de Indische Oceaan","hr":"Britanski Indijskooceanski teritorij"},"population":3000,"latlng":[-6,71.5],"demonym":"Indian","borders":[],"area":60,"timezones":["UTC+06:00"]},{"name":"United States Minor Outlying Islands","nativeName":"United States Minor Outlying Islands","topLevelDomain":[".us"],"alpha2Code":"UM","numericCode":"581","alpha3Code":"UMI","currencies":["USD"],"callingCodes":["1"],"capital":"","altSpellings":["UM"],"relevance":"0","region":"Americas","subregion":"Northern America","language":["English"],"languages":["en"],"translations":{"de":"Kleinere Inselbesitzungen der Vereinigten Staaten","es":"Islas Ultramarinas Menores de Estados Unidos","fr":"\u00celes mineures \u00e9loign\u00e9es des \u00c9tats-Unis","it":"Isole minori esterne degli Stati Uniti d'America","ja":"\u5408\u8846\u56fd\u9818\u6709\u5c0f\u96e2\u5cf6","nl":"Kleine afgelegen eilanden van de Verenigde Staten","hr":"Mali udaljeni otoci SAD-a"},"population":300,"latlng":[],"demonym":"American","borders":[],"timezones":["UTC-11:00","UTC-10:00","UTC+12:00"]},{"name":"Virgin Islands (British)","nativeName":"British Virgin Islands","topLevelDomain":[".vg"],"alpha2Code":"VG","numericCode":"092","alpha3Code":"VGB","currencies":["USD"],"callingCodes":["1"],"capital":"Road Town","altSpellings":["VG"],"relevance":"0.5","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Britische Jungferninseln","es":"Islas V\u00edrgenes del Reino Unido","fr":"\u00celes Vierges britanniques","it":"Isole Vergini Britanniche","ja":"\u30a4\u30ae\u30ea\u30b9\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6","nl":"Britse Maagdeneilanden","hr":"Britanski Djevi\u010danski Otoci"},"population":28054,"latlng":[18.431383,-64.62305],"demonym":"Virgin Islander","borders":[],"area":151,"timezones":["UTC-04:00"]},{"name":"Virgin Islands (U.S.)","nativeName":"Virgin Islands of the United States","topLevelDomain":[".vi"],"alpha2Code":"VI","numericCode":"850","alpha3Code":"VIR","currencies":["USD"],"callingCodes":["1"],"capital":"Charlotte Amalie","altSpellings":["VI","USVI","American Virgin Islands","U.S. Virgin Islands"],"relevance":"0.5","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Amerikanische Jungferninseln","es":"Islas Vírgenes de los Estados Unidos","fr":"Îles Vierges des États-Unis","it":"Isole Vergini americane","ja":"\u30A2\u30E1\u30EA\u30AB\u9818\u30F4\u30A1\u30FC\u30B8\u30F3\u8AF8\u5CF6","nl":"Verenigde Staten Maagdeneilanden"},"population":114743,"latlng":[18.34,-64.93],"demonym":"Virgin Islander","borders":[],"area":346.36,"timezones":["UTC-04:00"]},{"name":"Brunei","nativeName":"Negara Brunei Darussalam","topLevelDomain":[".bn"],"alpha2Code":"BN","numericCode":"096","alpha3Code":"BRN","currencies":["BND"],"callingCodes":["673"],"capital":"Bandar Seri Begawan","altSpellings":["BN","Nation of Brunei"," the Abode of Peace"],"relevance":"0","region":"Asia","subregion":"South-Eastern Asia","language":["Malay"],"languages":["ms"],"translations":{"fr":"Brunei","nl":"Brunei","de":"Brunei","it":"Brunei","ja":"\u30d6\u30eb\u30cd\u30a4\u30fb\u30c0\u30eb\u30b5\u30e9\u30fc\u30e0","es":"Brunei","hr":"Brunej"},"population":393372,"latlng":[4.5,114.66666666],"demonym":"Bruneian","borders":["MYS"],"area":5765,"timezones":["UTC+08:00"]},{"name":"Bulgaria","nativeName":"\u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f","topLevelDomain":[".bg"],"alpha2Code":"BG","numericCode":"100","alpha3Code":"BGR","currencies":["BGN"],"callingCodes":["359"],"capital":"Sofia","altSpellings":["BG","Republic of Bulgaria","\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f"],"relevance":"0","region":"Europe","subregion":"Eastern Europe","language":["Bulgarian"],"languages":["bg"],"translations":{"de":"Bulgarien","es":"Bulgaria","fr":"Bulgarie","it":"Bulgaria","ja":"\u30d6\u30eb\u30ac\u30ea\u30a2","nl":"Bulgarije","hr":"Bugarska"},"population":7202198,"latlng":[43,25],"demonym":"Bulgarian","borders":["GRC","MKD","ROU","SRB","TUR"],"area":110879,"gini":28.2,"timezones":["UTC+02:00"]},{"name":"Burkina Faso","nativeName":"Burkina Faso","topLevelDomain":[".bf"],"alpha2Code":"BF","numericCode":"854","alpha3Code":"BFA","currencies":["XOF"],"callingCodes":["226"],"capital":"Ouagadougou","altSpellings":["BF"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["French"],"languages":["fr","ff"],"translations":{"de":"Burkina Faso","es":"Burkina Faso","fr":"Burkina Faso","it":"Burkina Faso","ja":"\u30d6\u30eb\u30ad\u30ca\u30d5\u30a1\u30bd","nl":"Burkina Faso","hr":"Burkina Faso"},"population":18450494,"latlng":[13,-2],"demonym":"Burkinabe","borders":["BEN","CIV","GHA","MLI","NER","TGO"],"area":272967,"gini":39.8,"timezones":["UTC"]},{"name":"Burundi","nativeName":"Burundi","topLevelDomain":[".bi"],"alpha2Code":"BI","numericCode":"108","alpha3Code":"BDI","currencies":["BIF"],"callingCodes":["257"],"capital":"Bujumbura","altSpellings":["BI","Republic of Burundi","Republika y'Uburundi","R\u00e9publique du Burundi"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Kirundi","French"],"languages":["fr","rn"],"translations":{"de":"Burundi","es":"Burundi","fr":"Burundi","it":"Burundi","ja":"\u30d6\u30eb\u30f3\u30b8","nl":"Burundi","hr":"Burundi"},"population":9823827,"latlng":[-3.5,30],"demonym":"Burundian","borders":["COD","RWA","TZA"],"area":27834,"gini":33.3,"timezones":["UTC+02:00"]},{"name":"Cambodia","nativeName":"K\u00e2mp\u016dch\u00e9a","topLevelDomain":[".kh"],"alpha2Code":"KH","numericCode":"116","alpha3Code":"KHM","currencies":["KHR"],"callingCodes":["855"],"capital":"Phnom Penh","altSpellings":["KH","Kingdom of Cambodia"],"relevance":"0","region":"Asia","subregion":"South-Eastern Asia","language":["Khmer"],"languages":["km"],"translations":{"fr":"Cambodge","nl":"Cambodja","de":"Kambodscha","it":"Cambogia","ja":"\u30ab\u30f3\u30dc\u30b8\u30a2","es":"Camboya","hr":"Kambod\u017ea"},"population":15405157,"latlng":[13,105],"demonym":"Cambodian","borders":["LAO","THA","VNM"],"area":181035,"gini":37.9,"timezones":["UTC+07:00"]},{"name":"Cameroon","nativeName":"Cameroon","topLevelDomain":[".cm"],"alpha2Code":"CM","numericCode":"120","alpha3Code":"CMR","currencies":["XAF"],"callingCodes":["237"],"capital":"Yaound\u00e9","altSpellings":["CM","Republic of Cameroon","R\u00e9publique du Cameroun"],"relevance":"0","region":"Africa","subregion":"Middle Africa","language":["French","English"],"languages":["en","fr"],"translations":{"de":"Kamerun","es":"Camer\u00fan","fr":"Cameroun","it":"Camerun","ja":"\u30ab\u30e1\u30eb\u30fc\u30f3","nl":"Kameroen","hr":"Kamerun"},"population":23344000,"latlng":[6,12],"demonym":"Cameroonian","borders":["CAF","TCD","COG","GNQ","GAB","NGA"],"area":475442,"gini":38.9,"timezones":["UTC+01:00"]},{"name":"Canada","nativeName":"Canada","topLevelDomain":[".ca"],"alpha2Code":"CA","numericCode":"124","alpha3Code":"CAN","currencies":["CAD"],"callingCodes":["1"],"capital":"Ottawa","altSpellings":["CA"],"relevance":"2","region":"Americas","subregion":"Northern America","language":["English","French"],"languages":["en","fr"],"translations":{"de":"Kanada","es":"Canad\u00e1","fr":"Canada","it":"Canada","ja":"\u30ab\u30ca\u30c0","nl":"Canada","hr":"Kanada"},"population":35749600,"latlng":[60,-95],"demonym":"Canadian","borders":["USA"],"area":9984670,"gini":32.6,"timezones":["UTC-08:00","UTC-07:00","UTC-06:00","UTC-05:00","UTC-04:00","UTC-03:30"]},{"name":"Cape Verde","nativeName":"Cabo Verde","topLevelDomain":[".cv"],"alpha2Code":"CV","numericCode":"132","alpha3Code":"CPV","currencies":["CVE"],"callingCodes":["238"],"capital":"Praia","altSpellings":["CV","Republic of Cabo Verde","Rep\u00fablica de Cabo Verde"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["Portuguese"],"languages":["pt"],"translations":{"de":"Kap Verde","es":"Cabo Verde","fr":"Cap Vert","it":"Capo Verde","ja":"\u30ab\u30fc\u30dc\u30d9\u30eb\u30c7","nl":"Kaapverdi\u00eb","hr":"Zelenortska Republika"},"population":524833,"latlng":[16,-24],"demonym":"Cape Verdian","borders":[],"area":4033,"gini":50.5,"timezones":["UTC-01:00"]},{"name":"Cayman Islands","nativeName":"Cayman Islands","topLevelDomain":[".ky"],"alpha2Code":"KY","numericCode":"136","alpha3Code":"CYM","currencies":["KYD"],"callingCodes":["1"],"capital":"George Town","altSpellings":["KY"],"relevance":"0.5","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Kaimaninseln","es":"Islas Caim\u00e1n","fr":"\u00celes Ca\u00efmans","it":"Isole Cayman","ja":"\u30b1\u30a4\u30de\u30f3\u8af8\u5cf6","nl":"Caymaneilanden","hr":"Kajmanski otoci"},"population":58238,"latlng":[19.5,-80.5],"demonym":"Caymanian","borders":[],"area":264,"timezones":["UTC-05:00"]},{"name":"Central African Republic","nativeName":"K\u00f6d\u00f6r\u00f6s\u00ease t\u00ee B\u00eaafr\u00eeka","topLevelDomain":[".cf"],"alpha2Code":"CF","numericCode":"140","alpha3Code":"CAF","currencies":["XAF"],"callingCodes":["236"],"capital":"Bangui","altSpellings":["CF","Central African Republic","R\u00e9publique centrafricaine"],"relevance":"0","region":"Africa","subregion":"Middle Africa","language":["Sango","French"],"languages":["fr","sg"],"translations":{"de":"Zentralafrikanische Republik","es":"Rep\u00fablica Centroafricana","fr":"R\u00e9publique centrafricaine","it":"Repubblica Centrafricana","ja":"\u4e2d\u592e\u30a2\u30d5\u30ea\u30ab\u5171\u548c\u56fd","nl":"Centraal-Afrikaanse Republiek","hr":"Srednjoafri\u010dka Republika"},"population":4900000,"latlng":[7,21],"demonym":"Central African","borders":["CMR","TCD","COD","COG","SSD","SDN"],"area":622984,"gini":56.3,"timezones":["UTC+01:00"]},{"name":"Chad","nativeName":"Tchad","topLevelDomain":[".td"],"alpha2Code":"TD","numericCode":"148","alpha3Code":"TCD","currencies":["XAF"],"callingCodes":["235"],"capital":"N'Djamena","altSpellings":["TD","Tchad","Republic of Chad","R\u00e9publique du Tchad"],"relevance":"0","region":"Africa","subregion":"Middle Africa","language":["French","Arabic"],"languages":["fr","ar"],"translations":{"de":"Tschad","es":"Chad","fr":"Tchad","it":"Ciad","ja":"\u30c1\u30e3\u30c9","nl":"Tsjaad","hr":"\u010cad"},"population":14037000,"latlng":[15,19],"demonym":"Chadian","borders":["CMR","CAF","LBY","NER","NGA","SSD"],"area":1284000,"gini":39.8,"timezones":["UTC+01:00"]},{"name":"Chile","nativeName":"Chile","topLevelDomain":[".cl"],"alpha2Code":"CL","numericCode":"152","alpha3Code":"CHL","currencies":["CLF","CLP"],"callingCodes":["56"],"capital":"Santiago","altSpellings":["CL","Republic of Chile","Rep\u00fablica de Chile"],"relevance":"0","region":"Americas","subregion":"South America","language":["Spanish"],"languages":["es"],"translations":{"de":"Chile","es":"Chile","fr":"Chili","it":"Cile","ja":"\u30c1\u30ea","nl":"Chili","hr":"\u010cile"},"population":18006407,"latlng":[-30,-71],"demonym":"Chilean","borders":["ARG","BOL","PER"],"area":756102,"gini":52.1,"timezones":["UTC-06:00","UTC-04:00"]},{"name":"China","nativeName":"\u4e2d\u56fd","topLevelDomain":[".cn"],"alpha2Code":"CN","numericCode":"156","alpha3Code":"CHN","currencies":["CNY"],"callingCodes":["86"],"capital":"Beijing","altSpellings":["CN","Zh\u014dnggu\u00f3","Zhongguo","Zhonghua","People's Republic of China","\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd","Zh\u014dnghu\u00e1 R\u00e9nm\u00edn G\u00f2ngh\u00e9gu\u00f3"],"relevance":"0","region":"Asia","subregion":"Eastern Asia","language":["Standard Chinese"],"languages":["zh"],"translations":{"de":"China","es":"China","fr":"Chine","it":"Cina","ja":"\u4e2d\u56fd","nl":"China","hr":"Kina"},"population":1371590000,"latlng":[35,105],"demonym":"Chinese","borders":["AFG","BTN","MMR","HKG","IND","KAZ","PRK","KGZ","LAO","MAC","MNG","PAK","RUS","TJK","VNM"],"area":9640011,"gini":47.0,"timezones":["UTC+08:00"]},{"name":"Christmas Island","nativeName":"Christmas Island","topLevelDomain":[".cx"],"alpha2Code":"CX","numericCode":"162","alpha3Code":"CXR","currencies":["AUD"],"callingCodes":["61"],"capital":"Flying Fish Cove","altSpellings":["CX","Territory of Christmas Island"],"relevance":"0.5","region":"Oceania","subregion":"Australia and New Zealand","language":["English"],"languages":["en"],"translations":{"fr":"\u00cele Christmas","nl":"Christmaseiland","de":"Weihnachtsinsel","it":"Isola di Natale","ja":"\u30af\u30ea\u30b9\u30de\u30b9\u5cf6","es":"Isla de Navidad","hr":"Bo\u017ei\u0107ni otok"},"population":2072,"latlng":[-10.5,105.66666666],"demonym":"Christmas Island","borders":[],"area":135,"timezones":["UTC+07:00"]},{"name":"Cocos (Keeling) Islands","nativeName":"Cocos (Keeling) Islands","topLevelDomain":[".cc"],"alpha2Code":"CC","numericCode":"166","alpha3Code":"CCK","currencies":["AUD"],"callingCodes":["61"],"capital":"West Island","altSpellings":["CC","Territory of the Cocos (Keeling) Islands","Keeling Islands"],"relevance":"0","region":"Oceania","subregion":"Australia and New Zealand","language":["English"],"languages":["en"],"translations":{"fr":"\u00celes Cocos","nl":"Cocoseilanden","de":"Kokosinseln","it":"Isole Cocos e Keeling","ja":"\u30b3\u30b3\u30b9\uff08\u30ad\u30fc\u30ea\u30f3\u30b0\uff09\u8af8\u5cf6","es":"Islas Cocos o Islas Keeling","hr":"Kokosovi Otoci"},"population":550,"latlng":[-12.5,96.83333333],"demonym":"Cocos Islander","borders":[],"area":14,"timezones":["UTC+06:30"]},{"name":"Colombia","nativeName":"Colombia","topLevelDomain":[".co"],"alpha2Code":"CO","numericCode":"170","alpha3Code":"COL","currencies":["COP"],"callingCodes":["57"],"capital":"Bogot\u00e1","altSpellings":["CO","Republic of Colombia","Rep\u00fablica de Colombia"],"relevance":"0","region":"Americas","subregion":"South America","language":["Spanish"],"languages":["es"],"translations":{"de":"Kolumbien","es":"Colombia","fr":"Colombie","it":"Colombia","ja":"\u30b3\u30ed\u30f3\u30d3\u30a2","nl":"Colombia","hr":"Kolumbija"},"population":48266600,"latlng":[4,-72],"demonym":"Colombian","borders":["BRA","ECU","PAN","PER","VEN"],"area":1141748,"gini":55.9,"timezones":["UTC-05:00"]},{"name":"Comoros","nativeName":"Komori","topLevelDomain":[".km"],"alpha2Code":"KM","numericCode":"174","alpha3Code":"COM","currencies":["KMF"],"callingCodes":["269"],"capital":"Moroni","altSpellings":["KM","Union of the Comoros","Union des Comores","Udzima wa Komori","al-Itti\u1e25\u0101d al-Qumur\u012b"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Comorian","Arabic","French"],"languages":["ar","fr"],"translations":{"de":"Union der Komoren","es":"Comoras","fr":"Comores","it":"Comore","ja":"\u30b3\u30e2\u30ed","nl":"Comoren","hr":"Komori"},"population":784745,"latlng":[-12.16666666,44.25],"demonym":"Comoran","borders":[],"area":1862,"gini":64.3,"timezones":["UTC+03:00"]},{"name":"Republic of the Congo","nativeName":"R\u00e9publique du Congo","topLevelDomain":[".cg"],"alpha2Code":"CG","numericCode":"178","alpha3Code":"COG","currencies":["XAF"],"callingCodes":["242"],"capital":"Brazzaville","altSpellings":["CG","Congo-Brazzaville"],"relevance":"0","region":"Africa","subregion":"Middle Africa","language":["French"],"languages":["fr","ln"],"translations":{"de":"Kongo","es":"Congo","fr":"Congo","it":"Congo","ja":"\u30b3\u30f3\u30b4\u5171\u548c\u56fd","nl":"Congo [Republiek]","hr":"Kongo"},"population":4620000,"latlng":[-1,15],"demonym":"Congolese","borders":["AGO","CMR","CAF","COD","GAB"],"area":342000,"gini":47.3,"timezones":["UTC+01:00"]},{"name":"Democratic Republic of the Congo","nativeName":"R\u00e9publique d\u00e9mocratique du Congo","topLevelDomain":[".cd"],"alpha2Code":"CD","numericCode":"180","alpha3Code":"COD","currencies":["CDF"],"callingCodes":["243"],"capital":"Kinshasa","altSpellings":["CD","DR Congo","Congo-Kinshasa","DRC"],"relevance":"0","region":"Africa","subregion":"Middle Africa","language":["French"],"languages":["fr","ln","kg","sw","lu"],"translations":{"de":"Kongo (Dem. Rep.)","es":"Congo (Rep. Dem.)","fr":"Congo (R\u00e9p. d\u00e9m.)","it":"Congo (Rep. Dem.)","ja":"\u30b3\u30f3\u30b4\u6c11\u4e3b\u5171\u548c\u56fd","nl":"Congo [DRC]","hr":"Kongo, Demokratska Republika"},"population":77267000,"latlng":[0,25],"demonym":"Congolese","borders":["AGO","BDI","CAF","COG","RWA","SSD","TZA","UGA","ZMB"],"area":2344858,"timezones":["UTC+01:00","UTC+02:00"]},{"name":"Cook Islands","nativeName":"Cook Islands","topLevelDomain":[".ck"],"alpha2Code":"CK","numericCode":"184","alpha3Code":"COK","currencies":["NZD"],"callingCodes":["682"],"capital":"Avarua","altSpellings":["CK","K\u016bki '\u0100irani"],"relevance":"0.5","region":"Oceania","subregion":"Polynesia","language":["English","Cook Islands M\u0101ori"],"languages":["en"],"translations":{"de":"Cookinseln","es":"Islas Cook","fr":"\u00celes Cook","it":"Isole Cook","ja":"\u30af\u30c3\u30af\u8af8\u5cf6","nl":"Cookeilanden","hr":"Cookovo Oto\u010dje"},"population":14974,"latlng":[-21.23333333,-159.76666666],"demonym":"Cook Islander","borders":[],"area":236,"timezones":["UTC-10:00"]},{"name":"Costa Rica","nativeName":"Costa Rica","topLevelDomain":[".cr"],"alpha2Code":"CR","numericCode":"188","alpha3Code":"CRI","currencies":["CRC"],"callingCodes":["506"],"capital":"San Jos\u00e9","altSpellings":["CR","Republic of Costa Rica","Rep\u00fablica de Costa Rica"],"relevance":"0","region":"Americas","subregion":"Central America","language":["Spanish"],"languages":["es"],"translations":{"de":"Costa Rica","es":"Costa Rica","fr":"Costa Rica","it":"Costa Rica","ja":"\u30b3\u30b9\u30bf\u30ea\u30ab","nl":"Costa Rica","hr":"Kostarika"},"population":4773130,"latlng":[10,-84],"demonym":"Costa Rican","borders":["NIC","PAN"],"area":51100,"gini":50.7,"timezones":["UTC-06:00"]},{"name":"Croatia","nativeName":"Hrvatska","topLevelDomain":[".hr"],"alpha2Code":"HR","numericCode":"191","alpha3Code":"HRV","currencies":["HRK"],"callingCodes":["385"],"capital":"Zagreb","altSpellings":["HR","Hrvatska","Republic of Croatia","Republika Hrvatska"],"relevance":"0","region":"Europe","subregion":"Southern Europe","language":["Croatian"],"languages":["hr"],"translations":{"de":"Kroatien","es":"Croacia","fr":"Croatie","it":"Croazia","ja":"\u30af\u30ed\u30a2\u30c1\u30a2","nl":"Kroati\u00eb","hr":"Hrvatska"},"population":4246800,"latlng":[45.16666666,15.5],"demonym":"Croatian","borders":["BIH","HUN","MNE","SRB","SVN"],"area":56594,"gini":33.7,"timezones":["UTC+01:00"]},{"name":"Cuba","nativeName":"Cuba","topLevelDomain":[".cu"],"alpha2Code":"CU","numericCode":"192","alpha3Code":"CUB","currencies":["CUC","CUP"],"callingCodes":["53"],"capital":"Havana","altSpellings":["CU","Republic of Cuba","Rep\u00fablica de Cuba"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["Spanish"],"languages":["es"],"translations":{"de":"Kuba","es":"Cuba","fr":"Cuba","it":"Cuba","ja":"\u30ad\u30e5\u30fc\u30d0","nl":"Cuba","hr":"Kuba"},"population":11238317,"latlng":[21.5,-80],"demonym":"Cuban","borders":[],"area":109884,"gini":null,"timezones":["UTC-05:00"]},{"name":"Cura\u00e7ao","nativeName":"Cura\u00e7ao","topLevelDomain":[".cw"],"alpha2Code":"CW","numericCode":"531","alpha3Code":"CUW","currencies":["ANG"],"callingCodes":["599"],"capital":"Willemstad","altSpellings":["CW","Curacao","K\u00f2rsou","Country of Cura\u00e7ao","Land Cura\u00e7ao","Pais K\u00f2rsou"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["Dutch","Papiamentu","English"],"languages":["nl","pa","en"],"translations":{"nl":"Cura\u00e7ao"},"population":154843,"latlng":[12.116667,-68.933333],"demonym":"Dutch","borders":[],"area":444,"timezones":["UTC-04:00"]},{"name":"Cyprus","nativeName":"\u039a\u03cd\u03c0\u03c1\u03bf\u03c2","topLevelDomain":[".cy"],"alpha2Code":"CY","numericCode":"196","alpha3Code":"CYP","currencies":["EUR"],"callingCodes":["357"],"capital":"Nicosia","altSpellings":["CY","K\u00fdpros","K\u0131br\u0131s","Republic of Cyprus","\u039a\u03c5\u03c0\u03c1\u03b9\u03b1\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1","K\u0131br\u0131s Cumhuriyeti"],"relevance":"0","region":"Europe","subregion":"Southern Europe","language":["Greek","Turkish"],"languages":["el","tr","hy"],"translations":{"de":"Zypern","es":"Chipre","fr":"Chypre","it":"Cipro","ja":"\u30ad\u30d7\u30ed\u30b9","nl":"Cyprus","hr":"Cipar"},"population":858000,"latlng":[35,33],"demonym":"Cypriot","borders":["GBR"],"area":9251,"gini":null,"timezones":["UTC+02:00"]},{"name":"Czech Republic","nativeName":"\u010cesk\u00e1 republika","topLevelDomain":[".cz"],"alpha2Code":"CZ","numericCode":"203","alpha3Code":"CZE","currencies":["CZK"],"callingCodes":["420"],"capital":"Prague","altSpellings":["CZ","\u010cesk\u00e1 republika","\u010cesko"],"relevance":"0","region":"Europe","subregion":"Eastern Europe","language":["Czech"],"languages":["cs","sk"],"translations":{"de":"Tschechische Republik","es":"Rep\u00fablica Checa","fr":"R\u00e9publique tch\u00e8que","it":"Repubblica Ceca","ja":"\u30c1\u30a7\u30b3","nl":"Tsjechi\u00eb","hr":"\u010ce\u0161ka"},"population":10537818,"latlng":[49.75,15.5],"demonym":"Czech","borders":["AUT","DEU","POL","SVK"],"area":78865,"gini":26.0,"timezones":["UTC+01:00"]},{"name":"Denmark","nativeName":"Danmark","topLevelDomain":[".dk"],"alpha2Code":"DK","numericCode":"208","alpha3Code":"DNK","currencies":["DKK"],"callingCodes":["45"],"capital":"Copenhagen","altSpellings":["DK","Danmark","Kingdom of Denmark","Kongeriget Danmark"],"relevance":"1.5","region":"Europe","subregion":"Northern Europe","language":["Danish"],"languages":["da"],"translations":{"de":"D\u00e4nemark","es":"Dinamarca","fr":"Danemark","it":"Danimarca","ja":"\u30c7\u30f3\u30de\u30fc\u30af","nl":"Denemarken","hr":"Danska"},"population":5678348,"latlng":[56,10],"demonym":"Danish","borders":["DEU"],"area":43094,"gini":24.0,"timezones":["UTC-04:00","UTC-03:00","UTC-01:00","UTC","UTC+01:00"]},{"name":"Djibouti","nativeName":"Djibouti","topLevelDomain":[".dj"],"alpha2Code":"DJ","numericCode":"262","alpha3Code":"DJI","currencies":["DJF"],"callingCodes":["253"],"capital":"Djibouti","altSpellings":["DJ","Jabuuti","Gabuuti","Republic of Djibouti","R\u00e9publique de Djibouti","Gabuutih Ummuuno","Jamhuuriyadda Jabuuti"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["French","Arabic"],"languages":["fr","ar"],"translations":{"de":"Dschibuti","es":"Yibuti","fr":"Djibouti","it":"Gibuti","ja":"\u30b8\u30d6\u30c1","nl":"Djibouti","hr":"D\u017eibuti"},"population":888000,"latlng":[11.5,43],"demonym":"Djibouti","borders":["ERI","ETH","SOM"],"area":23200,"gini":40.0,"timezones":["UTC+03:00"]},{"name":"Dominica","nativeName":"Dominica","topLevelDomain":[".dm"],"alpha2Code":"DM","numericCode":"212","alpha3Code":"DMA","currencies":["XCD"],"callingCodes":["1"],"capital":"Roseau","altSpellings":["DM","Dominique","Wai\u2018tu kubuli","Commonwealth of Dominica"],"relevance":"0.5","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Dominica","es":"Dominica","fr":"Dominique","it":"Dominica","ja":"\u30c9\u30df\u30cb\u30ab\u56fd","nl":"Dominica","hr":"Dominika"},"population":71293,"latlng":[15.41666666,-61.33333333],"demonym":"Dominican","borders":[],"area":751,"timezones":["UTC-04:00"]},{"name":"Dominican Republic","nativeName":"Rep\u00fablica Dominicana","topLevelDomain":[".do"],"alpha2Code":"DO","numericCode":"214","alpha3Code":"DOM","currencies":["DOP"],"callingCodes":["1"],"capital":"Santo Domingo","altSpellings":["DO"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["Spanish"],"languages":["es"],"translations":{"de":"Dominikanische Republik","es":"Rep\u00fablica Dominicana","fr":"R\u00e9publique dominicaine","it":"Repubblica Dominicana","ja":"\u30c9\u30df\u30cb\u30ab\u5171\u548c\u56fd","nl":"Dominicaanse Republiek","hr":"Dominikanska Republika"},"population":10528000,"latlng":[19,-70.66666666],"demonym":"Dominican","borders":["HTI"],"area":48671,"gini":47.2,"timezones":["UTC-04:00"]},{"name":"Ecuador","nativeName":"Ecuador","topLevelDomain":[".ec"],"alpha2Code":"EC","numericCode":"218","alpha3Code":"ECU","currencies":["USD"],"callingCodes":["593"],"capital":"Quito","altSpellings":["EC","Republic of Ecuador","Rep\u00fablica del Ecuador"],"relevance":"0","region":"Americas","subregion":"South America","language":["Spanish"],"languages":["es"],"translations":{"de":"Ecuador","es":"Ecuador","fr":"\u00c9quateur","it":"Ecuador","ja":"\u30a8\u30af\u30a2\u30c9\u30eb","nl":"Ecuador","hr":"Ekvador"},"population":16027500,"latlng":[-2,-77.5],"demonym":"Ecuadorean","borders":["COL","PER"],"area":276841,"gini":49.3,"timezones":["UTC-06:00","UTC-05:00"]},{"name":"Egypt","nativeName":"\u0645\u0635\u0631\u200e","topLevelDomain":[".eg"],"alpha2Code":"EG","numericCode":"818","alpha3Code":"EGY","currencies":["EGP"],"callingCodes":["20"],"capital":"Cairo","altSpellings":["EG","Arab Republic of Egypt"],"relevance":"1.5","region":"Africa","subregion":"Northern Africa","language":["Arabic"],"languages":["ar"],"translations":{"de":"\u00c4gypten","es":"Egipto","fr":"\u00c9gypte","it":"Egitto","ja":"\u30a8\u30b8\u30d7\u30c8","nl":"Egypte","hr":"Egipat"},"population":89335600,"latlng":[27,30],"demonym":"Egyptian","borders":["ISR","LBY","SDN"],"area":1002450,"gini":30.8,"timezones":["UTC+02:00"]},{"name":"El Salvador","nativeName":"El Salvador","topLevelDomain":[".sv"],"alpha2Code":"SV","numericCode":"222","alpha3Code":"SLV","currencies":["SVC","USD"],"callingCodes":["503"],"capital":"San Salvador","altSpellings":["SV","Republic of El Salvador","Rep\u00fablica de El Salvador"],"relevance":"0","region":"Americas","subregion":"Central America","language":["Castilian"],"languages":["es"],"translations":{"de":"El Salvador","es":"El Salvador","fr":"Salvador","it":"El Salvador","ja":"\u30a8\u30eb\u30b5\u30eb\u30d0\u30c9\u30eb","nl":"El Salvador","hr":"Salvador"},"population":6401240,"latlng":[13.83333333,-88.91666666],"demonym":"Salvadoran","borders":["GTM","HND"],"area":21041,"gini":48.3,"timezones":["UTC-06:00"]},{"name":"Equatorial Guinea","nativeName":"Guinea Ecuatorial","topLevelDomain":[".gq"],"alpha2Code":"GQ","numericCode":"226","alpha3Code":"GNQ","currencies":["XAF"],"callingCodes":["240"],"capital":"Malabo","altSpellings":["GQ","Republic of Equatorial Guinea","Rep\u00fablica de Guinea Ecuatorial","R\u00e9publique de Guin\u00e9e \u00e9quatoriale","Rep\u00fablica da Guin\u00e9 Equatorial"],"relevance":"0","region":"Africa","subregion":"Middle Africa","language":["Spanish","French","Portuguese"],"languages":["es","fr"],"translations":{"de":"\u00c4quatorial-Guinea","es":"Guinea Ecuatorial","fr":"Guin\u00e9e-\u00c9quatoriale","it":"Guinea Equatoriale","ja":"\u8d64\u9053\u30ae\u30cb\u30a2","nl":"Equatoriaal-Guinea","hr":"Ekvatorijalna Gvineja"},"population":1430000,"latlng":[2,10],"demonym":"Equatorial Guinean","borders":["CMR","GAB"],"area":28051,"gini":null,"timezones":["UTC+01:00"]},{"name":"Eritrea","nativeName":"\u12a4\u122d\u1275\u122b","topLevelDomain":[".er"],"alpha2Code":"ER","numericCode":"232","alpha3Code":"ERI","currencies":["ERN"],"callingCodes":["291"],"capital":"Asmara","altSpellings":["ER","State of Eritrea","\u1203\u1308\u1228 \u12a4\u122d\u1275\u122b","Dawlat Iritriy\u00e1","\u02beErtr\u0101","Iritriy\u0101",""],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Tigrinya","Arabic","English"],"languages":["ti","ar","en"],"translations":{"de":"Eritrea","es":"Eritrea","fr":"\u00c9rythr\u00e9e","it":"Eritrea","ja":"\u30a8\u30ea\u30c8\u30ea\u30a2","nl":"Eritrea","hr":"Eritreja"},"population":5228000,"latlng":[15,39],"demonym":"Eritrean","borders":["DJI","ETH","SDN"],"area":117600,"timezones":["UTC+03:00"]},{"name":"Estonia","nativeName":"Eesti","topLevelDomain":[".ee"],"alpha2Code":"EE","numericCode":"233","alpha3Code":"EST","currencies":["EUR"],"callingCodes":["372"],"capital":"Tallinn","altSpellings":["EE","Eesti","Republic of Estonia","Eesti Vabariik"],"relevance":"0","region":"Europe","subregion":"Northern Europe","language":["Estonian"],"languages":["et"],"translations":{"de":"Estland","es":"Estonia","fr":"Estonie","it":"Estonia","ja":"\u30a8\u30b9\u30c8\u30cb\u30a2","nl":"Estland","hr":"Estonija"},"population":1313271,"latlng":[59,26],"demonym":"Estonian","borders":["LVA","RUS"],"area":45227,"gini":36.0,"timezones":["UTC+02:00"]},{"name":"Ethiopia","nativeName":"\u12a2\u1275\u12ee\u1335\u12eb","topLevelDomain":[".et"],"alpha2Code":"ET","numericCode":"231","alpha3Code":"ETH","currencies":["ETB"],"callingCodes":["251"],"capital":"Addis Ababa","altSpellings":["ET","\u02be\u012aty\u014d\u1e57\u1e57y\u0101","Federal Democratic Republic of Ethiopia","\u12e8\u12a2\u1275\u12ee\u1335\u12eb \u134c\u12f4\u122b\u120b\u12ca \u12f2\u121e\u12ad\u122b\u1232\u12eb\u12ca \u122a\u1350\u1265\u120a\u12ad"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Amharic"],"languages":["am"],"translations":{"de":"\u00c4thiopien","es":"Etiop\u00eda","fr":"\u00c9thiopie","it":"Etiopia","ja":"\u30a8\u30c1\u30aa\u30d4\u30a2","nl":"Ethiopi\u00eb","hr":"Etiopija"},"population":90076012,"latlng":[8,38],"demonym":"Ethiopian","borders":["DJI","ERI","KEN","SOM","SSD","SDN"],"area":1104300,"gini":29.8,"timezones":["UTC+03:00"]},{"name":"Falkland Islands","nativeName":"Falkland Islands","topLevelDomain":[".fk"],"alpha2Code":"FK","numericCode":"238","alpha3Code":"FLK","currencies":["FKP"],"callingCodes":["500"],"capital":"Stanley","altSpellings":["FK","Islas Malvinas"],"relevance":"0.5","region":"Americas","subregion":"South America","language":["English"],"languages":["en"],"translations":{"de":"Falklandinseln","es":"Islas Malvinas","fr":"\u00celes Malouines","it":"Isole Falkland o Isole Malvine","ja":"\u30d5\u30a9\u30fc\u30af\u30e9\u30f3\u30c9\uff08\u30de\u30eb\u30d3\u30ca\u30b9\uff09\u8af8\u5cf6","nl":"Falklandeilanden [Islas Malvinas]","hr":"Falklandski Otoci"},"population":3000,"latlng":[-51.75,-59],"demonym":"Falkland Islander","borders":[],"area":12173,"timezones":["UTC-04:00"]},{"name":"Faroe Islands","nativeName":"F\u00f8royar","topLevelDomain":[".fo"],"alpha2Code":"FO","numericCode":"234","alpha3Code":"FRO","currencies":["DKK"],"callingCodes":["298"],"capital":"T\u00f3rshavn","altSpellings":["FO","F\u00f8royar","F\u00e6r\u00f8erne"],"relevance":"0.5","region":"Europe","subregion":"Northern Europe","language":["Faroese","Danish"],"languages":["fo"],"translations":{"de":"F\u00e4r\u00f6er-Inseln","es":"Islas Faroe","fr":"\u00celes F\u00e9ro\u00e9","it":"Isole Far Oer","ja":"\u30d5\u30a7\u30ed\u30fc\u8af8\u5cf6","nl":"Faer\u00f6er","hr":"Farski Otoci"},"population":48846,"latlng":[62,-7],"demonym":"Faroese","borders":[],"area":1393,"timezones":["UTC+00:00"]},{"name":"Fiji","nativeName":"Fiji","topLevelDomain":[".fj"],"alpha2Code":"FJ","numericCode":"242","alpha3Code":"FJI","currencies":["FJD"],"callingCodes":["679"],"capital":"Suva","altSpellings":["FJ","Viti","Republic of Fiji","Matanitu ko Viti","Fij\u012b Ga\u1e47ar\u0101jya"],"relevance":"0","region":"Oceania","subregion":"Melanesia","language":["English","Fijian","Fiji Hindi"],"languages":["en","fj","hi","ur"],"translations":{"de":"Fidschi","es":"Fiyi","fr":"Fidji","it":"Figi","ja":"\u30d5\u30a3\u30b8\u30fc","nl":"Fiji","hr":"Fi\u0111i"},"population":859178,"latlng":[-18,175],"demonym":"Fijian","borders":[],"area":18272,"gini":42.8,"timezones":["UTC+12:00"]},{"name":"Finland","nativeName":"Suomi","topLevelDomain":[".fi"],"alpha2Code":"FI","numericCode":"246","alpha3Code":"FIN","currencies":["EUR"],"callingCodes":["358"],"capital":"Helsinki","altSpellings":["FI","Suomi","Republic of Finland","Suomen tasavalta","Republiken Finland"],"relevance":"0.5","region":"Europe","subregion":"Northern Europe","language":["Finnish","Swedish"],"languages":["fi","sv"],"translations":{"de":"Finnland","es":"Finlandia","fr":"Finlande","it":"Finlandia","ja":"\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9","nl":"Finland","hr":"Finska"},"population":5485215,"latlng":[64,26],"demonym":"Finnish","borders":["NOR","SWE","RUS"],"area":338424,"gini":26.9,"timezones":["UTC+02:00"]},{"name":"France","nativeName":"France","topLevelDomain":[".fr"],"alpha2Code":"FR","numericCode":"250","alpha3Code":"FRA","currencies":["EUR"],"callingCodes":["33"],"capital":"Paris","altSpellings":["FR","French Republic","R\u00e9publique fran\u00e7aise"],"relevance":"2.5","region":"Europe","subregion":"Western Europe","language":["French"],"languages":["fr"],"translations":{"de":"Frankreich","es":"Francia","fr":"France","it":"Francia","ja":"\u30d5\u30e9\u30f3\u30b9","nl":"Frankrijk","hr":"Francuska"},"population":66186000,"latlng":[46,2],"demonym":"French","borders":["AND","BEL","DEU","ITA","LUX","MCO","ESP","CHE"],"area":640679,"gini":32.7,"timezones":["UTC-10:00","UTC-09:30","UTC-09:00","UTC-08:00","UTC-04:00","UTC-03:00","UTC+01:00","UTC+03:00","UTC+04:00","UTC+05:00","UTC+11:00","UTC+12:00"]},{"name":"French Guiana","nativeName":"Guyane fran\u00e7aise","topLevelDomain":[".gf"],"alpha2Code":"GF","numericCode":"254","alpha3Code":"GUF","currencies":["EUR"],"callingCodes":["594"],"capital":"Cayenne","altSpellings":["GF","Guiana","Guyane"],"relevance":"0","region":"Americas","subregion":"South America","language":["French"],"languages":["fr"],"translations":{"de":"Franz\u00f6sisch Guyana","es":"Guayana Francesa","fr":"Guayane","it":"Guyana francese","ja":"\u30d5\u30e9\u30f3\u30b9\u9818\u30ae\u30a2\u30ca","nl":"Frans-Guyana","hr":"Francuska Gvajana"},"population":239648,"latlng":[4,-53],"demonym":"","borders":["BRA","SUR"],"timezones":["UTC-03:00"]},{"name":"French Polynesia","nativeName":"Polyn\u00e9sie fran\u00e7aise","topLevelDomain":[".pf"],"alpha2Code":"PF","numericCode":"258","alpha3Code":"PYF","currencies":["XPF"],"callingCodes":["689"],"capital":"Papeet\u0113","altSpellings":["PF","Polyn\u00e9sie fran\u00e7aise","French Polynesia","P\u014dr\u012bnetia Far\u0101ni"],"relevance":"0","region":"Oceania","subregion":"Polynesia","language":["French"],"languages":["fr"],"translations":{"de":"Franz\u00f6sisch-Polynesien","es":"Polinesia Francesa","fr":"Polyn\u00e9sie fran\u00e7aise","it":"Polinesia Francese","ja":"\u30d5\u30e9\u30f3\u30b9\u9818\u30dd\u30ea\u30cd\u30b7\u30a2","nl":"Frans-Polynesi\u00eb","hr":"Francuska Polinezija"},"population":268270,"latlng":[-15,-140],"demonym":"French Polynesian","borders":[],"area":4167,"timezones":["UTC-10:00","UTC-09:30","UTC-09:00"]},{"name":"French Southern and Antarctic Lands","nativeName":"Territoire des Terres australes et antarctiques fran\u00e7aises","topLevelDomain":[".tf"],"alpha2Code":"TF","numericCode":"260","alpha3Code":"ATF","currencies":["EUR"],"callingCodes":["262"],"capital":"Port-aux-Fran\u00e7ais","altSpellings":["TF"],"relevance":"0","region":"Africa","subregion":"Southern Africa","language":["French"],"languages":["fr"],"translations":{"de":"Franz\u00f6sische S\u00fcd- und Antarktisgebiete","es":"Tierras Australes y Ant\u00e1rticas Francesas","fr":"Terres australes et antarctiques fran\u00e7aises","it":"Territori Francesi del Sud","ja":"\u30d5\u30e9\u30f3\u30b9\u9818\u5357\u65b9\u30fb\u5357\u6975\u5730\u57df","nl":"Franse Gebieden in de zuidelijke Indische Oceaan","hr":"Francuski ju\u017eni i antarkti\u010dki teritoriji"},"population":140,"latlng":[-49.25,69.167],"demonym":"French","borders":[],"area":7747,"timezones":["UTC+05:00"]},{"name":"Gabon","nativeName":"Gabon","topLevelDomain":[".ga"],"alpha2Code":"GA","numericCode":"266","alpha3Code":"GAB","currencies":["XAF"],"callingCodes":["241"],"capital":"Libreville","altSpellings":["GA","Gabonese Republic","R\u00e9publique Gabonaise"],"relevance":"0","region":"Africa","subregion":"Middle Africa","language":["French"],"languages":["fr"],"translations":{"de":"Gabun","es":"Gab\u00f3n","fr":"Gabon","it":"Gabon","ja":"\u30ac\u30dc\u30f3","nl":"Gabon","hr":"Gabon"},"population":1725000,"latlng":[-1,11.75],"demonym":"Gabonese","borders":["CMR","COG","GNQ"],"area":267668,"gini":41.5,"timezones":["UTC+01:00"]},{"name":"The Gambia","nativeName":"Gambia","topLevelDomain":[".gm"],"alpha2Code":"GM","numericCode":"270","alpha3Code":"GMB","currencies":["GMD"],"callingCodes":["220"],"capital":"Banjul","altSpellings":["GM","Republic of the Gambia"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["English"],"languages":["en"],"translations":{"de":"Gambia","es":"Gambia","fr":"Gambie","it":"Gambia","ja":"\u30ac\u30f3\u30d3\u30a2","nl":"Gambia","hr":"Gambija"},"population":1882450,"latlng":[13.46666666,-16.56666666],"demonym":"Gambian","borders":["SEN"],"area":11295,"timezones":["UTC+00:00"]},{"name":"Georgia","nativeName":"\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd","topLevelDomain":[".ge"],"alpha2Code":"GE","numericCode":"268","alpha3Code":"GEO","currencies":["GEL"],"callingCodes":["995"],"capital":"Tbilisi","altSpellings":["GE","Sakartvelo"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Georgian"],"languages":["ka"],"translations":{"de":"Georgien","es":"Georgia","fr":"G\u00e9orgie","it":"Georgia","ja":"\u30b0\u30eb\u30b8\u30a2","nl":"Georgi\u00eb","hr":"Gruzija"},"population":3729500,"latlng":[42,43.5],"demonym":"Georgian","borders":["ARM","AZE","RUS","TUR"],"gini":41.3,"area":69700,"timezones":["UTC-05:00"]},{"name":"Germany","nativeName":"Deutschland","topLevelDomain":[".de"],"alpha2Code":"DE","numericCode":"276","alpha3Code":"DEU","currencies":["EUR"],"callingCodes":["49"],"capital":"Berlin","altSpellings":["DE","Federal Republic of Germany","Bundesrepublik Deutschland"],"relevance":"3","region":"Europe","subregion":"Western Europe","language":["German"],"languages":["de"],"translations":{"de":"Deutschland","es":"Alemania","fr":"Allemagne","it":"Germania","ja":"\u30c9\u30a4\u30c4","nl":"Duitsland","hr":"Njema\u010dka"},"population":81083600,"latlng":[51,9],"demonym":"German","borders":["AUT","BEL","CZE","DNK","FRA","LUX","NLD","POL","CHE"],"area":357114,"gini":28.3,"timezones":["UTC+01:00"]},{"name":"Ghana","nativeName":"Ghana","topLevelDomain":[".gh"],"alpha2Code":"GH","numericCode":"288","alpha3Code":"GHA","currencies":["GHS"],"callingCodes":["233"],"capital":"Accra","altSpellings":["GH"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["English"],"languages":["en"],"translations":{"de":"Ghana","es":"Ghana","fr":"Ghana","it":"Ghana","ja":"\u30ac\u30fc\u30ca","nl":"Ghana","hr":"Gana"},"population":27043093,"latlng":[8,-2],"demonym":"Ghanaian","borders":["BFA","CIV","TGO"],"area":238533,"gini":42.8,"timezones":["UTC"]},{"name":"Gibraltar","nativeName":"Gibraltar","topLevelDomain":[".gi"],"alpha2Code":"GI","numericCode":"292","alpha3Code":"GIB","currencies":["GIP"],"callingCodes":["350"],"capital":"Gibraltar","altSpellings":["GI"],"relevance":"0.5","region":"Europe","subregion":"Southern Europe","language":["English"],"languages":["en"],"translations":{"de":"Gibraltar","es":"Gibraltar","fr":"Gibraltar","it":"Gibilterra","ja":"\u30b8\u30d6\u30e9\u30eb\u30bf\u30eb","nl":"Gibraltar","hr":"Gibraltar"},"population":32734,"latlng":[36.13333333,-5.35],"demonym":"Gibraltar","borders":["ESP"],"area":6,"timezones":["UTC+01:00"]},{"name":"Greece","nativeName":"\u0395\u03bb\u03bb\u03ac\u03b4\u03b1","topLevelDomain":[".gr"],"alpha2Code":"GR","numericCode":"300","alpha3Code":"GRC","currencies":["EUR"],"callingCodes":["30"],"capital":"Athens","altSpellings":["GR","Ell\u00e1da","Hellenic Republic","\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1"],"relevance":"1.5","region":"Europe","subregion":"Southern Europe","language":["Greek"],"languages":["el"],"translations":{"de":"Griechenland","es":"Grecia","fr":"Gr\u00e8ce","it":"Grecia","ja":"\u30ae\u30ea\u30b7\u30e3","nl":"Griekenland","hr":"Gr\u010dka"},"population":10846979,"latlng":[39,22],"demonym":"Greek","borders":["ALB","BGR","TUR","MKD"],"area":131990,"gini":34.3,"timezones":["UTC+02:00"]},{"name":"Greenland","nativeName":"Kalaallit Nunaat","topLevelDomain":[".gl"],"alpha2Code":"GL","numericCode":"304","alpha3Code":"GRL","currencies":["DKK"],"callingCodes":["299"],"capital":"Nuuk","altSpellings":["GL","Gr\u00f8nland"],"relevance":"0.5","region":"Americas","subregion":"Northern America","language":["Greenlandic"],"languages":["kl"],"translations":{"de":"Gr\u00f6nland","es":"Groenlandia","fr":"Groenland","it":"Groenlandia","ja":"\u30b0\u30ea\u30fc\u30f3\u30e9\u30f3\u30c9","nl":"Groenland","hr":"Grenland"},"population":56114,"latlng":[72,-40],"demonym":"Greenlandic","borders":[],"area":2166086,"timezones":["UTC-04:00","UTC-03:00","UTC-01:00","UTC+00:00"]},{"name":"Grenada","nativeName":"Grenada","topLevelDomain":[".gd"],"alpha2Code":"GD","numericCode":"308","alpha3Code":"GRD","currencies":["XCD"],"callingCodes":["1"],"capital":"St. George's","altSpellings":["GD"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Grenada","es":"Grenada","fr":"Grenade","it":"Grenada","ja":"\u30b0\u30ec\u30ca\u30c0","nl":"Grenada","hr":"Grenada"},"population":103328,"latlng":[12.11666666,-61.66666666],"demonym":"Grenadian","borders":[],"area":344,"timezones":["UTC-04:00"]},{"name":"Guadeloupe","nativeName":"Guadeloupe","topLevelDomain":[".gp"],"alpha2Code":"GP","numericCode":"312","alpha3Code":"GLP","currencies":["EUR"],"callingCodes":["590"],"capital":"Basse-Terre","altSpellings":["GP","Gwadloup"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["French"],"languages":["fr"],"translations":{"de":"Guadeloupe","es":"Guadalupe","fr":"Guadeloupe","it":"Guadeloupa","ja":"\u30b0\u30a2\u30c9\u30eb\u30fc\u30d7","nl":"Guadeloupe","hr":"Gvadalupa"},"population":403750,"latlng":[16.25,-61.583333],"demonym":"Guadeloupian","borders":[],"timezones":["UTC-04:00"]},{"name":"Guam","nativeName":"Guam","topLevelDomain":[".gu"],"alpha2Code":"GU","numericCode":"316","alpha3Code":"GUM","currencies":["USD"],"callingCodes":["1"],"capital":"Hag\u00e5t\u00f1a","altSpellings":["GU","Gu\u00e5h\u00e5n"],"relevance":"0","region":"Oceania","subregion":"Micronesia","language":["English","Chamorro"],"languages":["en","ch","es"],"translations":{"de":"Guam","es":"Guam","fr":"Guam","it":"Guam","ja":"\u30b0\u30a2\u30e0","nl":"Guam","hr":"Guam"},"population":159358,"latlng":[13.46666666,144.78333333],"demonym":"Guamanian","borders":[],"area":549,"timezones":["UTC+10:00"]},{"name":"Guatemala","nativeName":"Guatemala","topLevelDomain":[".gt"],"alpha2Code":"GT","numericCode":"320","alpha3Code":"GTM","currencies":["GTQ"],"callingCodes":["502"],"capital":"Guatemala City","altSpellings":["GT"],"relevance":"0","region":"Americas","subregion":"Central America","language":["Spanish"],"languages":["es"],"translations":{"de":"Guatemala","es":"Guatemala","fr":"Guatemala","it":"Guatemala","ja":"\u30b0\u30a2\u30c6\u30de\u30e9","nl":"Guatemala","hr":"Gvatemala"},"population":16176133,"latlng":[15.5,-90.25],"demonym":"Guatemalan","borders":["BLZ","SLV","HND","MEX"],"area":108889,"gini":55.9,"timezones":["UTC-06:00"]},{"name":"Guernsey","nativeName":"Guernsey","topLevelDomain":[".gg"],"alpha2Code":"GG","numericCode":"831","alpha3Code":"GGY","currencies":["GBP"],"callingCodes":["44"],"capital":"St. Peter Port","altSpellings":["GG","Bailiwick of Guernsey","Bailliage de Guernesey"],"relevance":"0.5","region":"Europe","subregion":"Northern Europe","language":["English","French"],"languages":["en","fr"],"translations":{"de":"Guernsey","es":"Guernsey","fr":"Guernesey","it":"Guernsey","ja":"\u30ac\u30fc\u30f3\u30b8\u30fc","nl":"Guernsey","hr":"Guernsey"},"population":65150,"latlng":[49.46666666,-2.58333333],"demonym":"Channel Islander","borders":[],"area":78,"timezones":["UTC+00:00"]},{"name":"Guinea","nativeName":"Guin\u00e9e","topLevelDomain":[".gn"],"alpha2Code":"GN","numericCode":"324","alpha3Code":"GIN","currencies":["GNF"],"callingCodes":["224"],"capital":"Conakry","altSpellings":["GN","Republic of Guinea","R\u00e9publique de Guin\u00e9e"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["French"],"languages":["fr","ff"],"translations":{"de":"Guinea","es":"Guinea","fr":"Guin\u00e9e","it":"Guinea","ja":"\u30ae\u30cb\u30a2","nl":"Guinee","hr":"Gvineja"},"population":10628972,"latlng":[11,-10],"demonym":"Guinean","borders":["CIV","GNB","LBR","MLI","SEN","SLE"],"area":245857,"gini":39.4,"timezones":["UTC"]},{"name":"Guinea-Bissau","nativeName":"Guin\u00e9-Bissau","topLevelDomain":[".gw"],"alpha2Code":"GW","numericCode":"624","alpha3Code":"GNB","currencies":["XOF"],"callingCodes":["245"],"capital":"Bissau","altSpellings":["GW","Republic of Guinea-Bissau","Rep\u00fablica da Guin\u00e9-Bissau"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["Portuguese"],"languages":["pt"],"translations":{"de":"Guinea-Bissau","es":"Guinea-Bis\u00e1u","fr":"Guin\u00e9e-Bissau","it":"Guinea-Bissau","ja":"\u30ae\u30cb\u30a2\u30d3\u30b5\u30a6","nl":"Guinee-Bissau","hr":"Gvineja Bisau"},"population":1844000,"latlng":[12,-15],"demonym":"Guinea-Bissauan","borders":["GIN","SEN"],"area":36125,"gini":35.5,"timezones":["UTC"]},{"name":"Guyana","nativeName":"Guyana","topLevelDomain":[".gy"],"alpha2Code":"GY","numericCode":"328","alpha3Code":"GUY","currencies":["GYD"],"callingCodes":["592"],"capital":"Georgetown","altSpellings":["GY","Co-operative Republic of Guyana"],"relevance":"0","region":"Americas","subregion":"South America","language":["English"],"languages":["en"],"translations":{"de":"Guyana","es":"Guyana","fr":"Guyane","it":"Guyana","ja":"\u30ac\u30a4\u30a2\u30ca","nl":"Guyana","hr":"Gvajana"},"population":746900,"latlng":[5,-59],"demonym":"Guyanese","borders":["BRA","SUR","VEN"],"area":214969,"gini":44.5,"timezones":["UTC-04:00"]},{"name":"Haiti","nativeName":"Ha\u00efti","topLevelDomain":[".ht"],"alpha2Code":"HT","numericCode":"332","alpha3Code":"HTI","currencies":["HTG","USD"],"callingCodes":["509"],"capital":"Port-au-Prince","altSpellings":["HT","Republic of Haiti","R\u00e9publique d'Ha\u00efti","Repiblik Ayiti"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["French","Haitian Creole"],"languages":["fr","ht"],"translations":{"de":"Haiti","es":"Haiti","fr":"Ha\u00efti","it":"Haiti","ja":"\u30cf\u30a4\u30c1","nl":"Ha\u00efti","hr":"Haiti"},"population":10911819,"latlng":[19,-72.41666666],"demonym":"Haitian","borders":["DOM"],"area":27750,"gini":59.2,"timezones":["UTC-05:00"]},{"name":"Heard Island and McDonald Islands","nativeName":"Heard Island and McDonald Islands","topLevelDomain":[".hm",".aq"],"alpha2Code":"HM","numericCode":"334","alpha3Code":"HMD","currencies":["AUD"],"callingCodes":["672"],"capital":"","altSpellings":["HM"],"relevance":"0","region":"","subregion":"","language":[""],"languages":["en"],"translations":{"de":"Heard und die McDonaldinseln","es":"Islas Heard y McDonald","fr":"\u00celes Heard-et-MacDonald","it":"Isole Heard e McDonald","ja":"\u30cf\u30fc\u30c9\u5cf6\u3068\u30de\u30af\u30c9\u30ca\u30eb\u30c9\u8af8\u5cf6","nl":"Heard- en McDonaldeilanden","hr":"Otok Heard i oto\u010dje McDonald"},"population":0,"latlng":[-53.1,72.51666666],"demonym":"Heard and McDonald Islander","borders":[],"area":412,"timezones":["UTC+05:00"]},{"name":"Holy See","nativeName":"Sancta Sedes","topLevelDomain":[".va"],"alpha2Code":"VA","alpha3Code":"VAT","currencies":["EUR"],"callingCodes":["379"],"capital":"Rome","altSpellings":["Sancta Sedes","Vatican","The Vatican"],"region":"Europe","subregion":"Southern Europe","language":["Latin","Italian","French","German"],"languages":["la","it","fr","de"],"translations":{"de":"Heiliger Stuhl","es":"Santa Sede","fr":"voir Saint","it":"Santa Sede","ja":"\u8056\u5EA7","nl":"Heilige Stoel","hr":"Sveta Stolica"},"population":451,"latlng":[41.90,12.45],"demonym":"","borders":["ITA"],"area":0.44,"gini":null,"timezones":["UTC+01:00"]},{"name":"Honduras","nativeName":"Honduras","topLevelDomain":[".hn"],"alpha2Code":"HN","numericCode":"340","alpha3Code":"HND","currencies":["HNL"],"callingCodes":["504"],"capital":"Tegucigalpa","altSpellings":["HN","Republic of Honduras","Rep\u00fablica de Honduras"],"relevance":"0","region":"Americas","subregion":"Central America","language":["Spanish"],"languages":["es"],"translations":{"de":"Honduras","es":"Honduras","fr":"Honduras","it":"Honduras","ja":"\u30db\u30f3\u30b8\u30e5\u30e9\u30b9","nl":"Honduras","hr":"Honduras"},"population":8725111,"latlng":[15,-86.5],"demonym":"Honduran","borders":["GTM","SLV","NIC"],"area":112492,"gini":57.0,"timezones":["UTC-06:00"]},{"name":"Hong Kong","nativeName":"\u9999\u6e2f","topLevelDomain":[".hk"],"alpha2Code":"HK","numericCode":"344","alpha3Code":"HKG","currencies":["HKD"],"callingCodes":["852"],"capital":"City of Victoria","altSpellings":["HK","\u9999\u6e2f"],"relevance":"0","region":"Asia","subregion":"Eastern Asia","language":["English","Chinese"],"languages":["en","zh"],"translations":{"de":"Hong Kong","es":"Hong Kong","fr":"Hong Kong","it":"Hong Kong","ja":"\u9999\u6e2f","nl":"Hongkong","hr":"Hong Kong"},"population":7298600,"latlng":[22.25,114.16666666],"demonym":"Chinese","borders":["CHN"],"area":1104,"gini":53.3,"timezones":["UTC+08:00"]},{"name":"Hungary","nativeName":"Magyarorsz\u00e1g","topLevelDomain":[".hu"],"alpha2Code":"HU","numericCode":"348","alpha3Code":"HUN","currencies":["HUF"],"callingCodes":["36"],"capital":"Budapest","altSpellings":["HU"],"relevance":"0","region":"Europe","subregion":"Eastern Europe","language":["Hungarian"],"languages":["hu"],"translations":{"de":"Ungarn","es":"Hungr\u00eda","fr":"Hongrie","it":"Ungheria","ja":"\u30cf\u30f3\u30ac\u30ea\u30fc","nl":"Hongarije","hr":"Ma\u0111arska"},"population":9849000,"latlng":[47,20],"demonym":"Hungarian","borders":["AUT","HRV","ROU","SRB","SVK","SVN","UKR"],"area":93028,"gini":31.2,"timezones":["UTC+01:00"]},{"name":"Iceland","nativeName":"\u00cdsland","topLevelDomain":[".is"],"alpha2Code":"IS","numericCode":"352","alpha3Code":"ISL","currencies":["ISK"],"callingCodes":["354"],"capital":"Reykjavík","altSpellings":["IS","Island","Republic of Iceland","L\u00fd\u00f0veldi\u00f0 \u00cdsland"],"relevance":"0","region":"Europe","subregion":"Northern Europe","language":["Icelandic"],"languages":["is"],"translations":{"de":"Island","es":"Islandia","fr":"Islande","it":"Islanda","ja":"\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9","nl":"IJsland","hr":"Island"},"population":330610,"latlng":[65,-18],"demonym":"Icelander","borders":[],"area":103000,"gini":null,"timezones":["UTC"]},{"name":"India","nativeName":"\u092d\u093e\u0930\u0924","topLevelDomain":[".in"],"alpha2Code":"IN","numericCode":"356","alpha3Code":"IND","currencies":["INR"],"callingCodes":["91"],"capital":"New Delhi","altSpellings":["IN","Bh\u0101rat","Republic of India","Bharat Ganrajya"],"relevance":"3","region":"Asia","subregion":"Southern Asia","language":["Hindi","English"],"languages":["hi","en"],"translations":{"de":"Indien","es":"India","fr":"Inde","it":"India","ja":"\u30a4\u30f3\u30c9","nl":"India","hr":"Indija"},"population":1275840000,"latlng":[20,77],"demonym":"Indian","borders":["AFG","BGD","BTN","MMR","CHN","NPL","PAK","LKA"],"area":3287590,"gini":33.4,"timezones":["UTC+05:30"]},{"name":"Indonesia","nativeName":"Indonesia","topLevelDomain":[".id"],"alpha2Code":"ID","numericCode":"360","alpha3Code":"IDN","currencies":["IDR"],"callingCodes":["62"],"capital":"Jakarta","altSpellings":["ID","Republic of Indonesia","Republik Indonesia"],"relevance":"2","region":"Asia","subregion":"South-Eastern Asia","language":["Indonesian"],"languages":["id"],"translations":{"fr":"Indon\u00e9sie","nl":"Indonesi\u00eb","de":"Indonesien","it":"Indonesia","ja":"\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2","es":"Indonesia","hr":"Indonezija"},"population":255461700,"latlng":[-5,120],"demonym":"Indonesian","borders":["TLS","MYS","PNG"],"area":1904569,"gini":34.0,"timezones":["UTC+07:00","UTC+08:00","UTC+09:00"]},{"name":"Ivory Coast","nativeName":"C\u00f4te d'Ivoire","topLevelDomain":[".ci"],"alpha2Code":"CI","numericCode":"384","alpha3Code":"CIV","currencies":["XOF"],"callingCodes":["225"],"capital":"Yamoussoukro","altSpellings":["CI","Ivory Coast","Republic of C\u00f4te d'Ivoire","R\u00e9publique de C\u00f4te d'Ivoire"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["French"],"languages":["fr"],"translations":{"de":"Elfenbeink\u00fcste","es":"Costa de Marfil","fr":"C\u00f4te d'Ivoire","it":"Costa D'Avorio","ja":"\u30b3\u30fc\u30c8\u30b8\u30dc\u30ef\u30fc\u30eb","nl":"Ivoorkust","hr":"Obala Bjelokosti"},"population":22671331,"latlng":[8,-5],"demonym":"Ivorian","borders":["BFA","GHA","GIN","LBR","MLI"],"area":322463,"gini":41.5,"timezones":["UTC"]},{"name":"Iran","nativeName":"\u0627\u06CC\u0631\u0627\u0646","topLevelDomain":[".ir"],"alpha2Code":"IR","numericCode":"364","alpha3Code":"IRN","currencies":["IRR"],"callingCodes":["98"],"capital":"Tehran","altSpellings":["IR","Islamic Republic of Iran","Jomhuri-ye Esl\u0101mi-ye Ir\u0101n"],"relevance":"0","region":"Asia","subregion":"Southern Asia","language":["Persian"],"languages":["fa"],"translations":{"de":"Iran","es":"Iran","fr":"Iran","ja":"\u30a4\u30e9\u30f3\u30fb\u30a4\u30b9\u30e9\u30e0\u5171\u548c\u56fd","nl":"Iran","hr":"Iran"},"population":78572500,"latlng":[32,53],"demonym":"Iranian","borders":["AFG","ARM","AZE","IRQ","PAK","TUR","TKM"],"area":1648195,"gini":38.3,"timezones":["UTC+03:30"]},{"name":"Iraq","nativeName":"\u0627\u0644\u0639\u0631\u0627\u0642","topLevelDomain":[".iq"],"alpha2Code":"IQ","numericCode":"368","alpha3Code":"IRQ","currencies":["IQD"],"callingCodes":["964"],"capital":"Baghdad","altSpellings":["IQ","Republic of Iraq","Jumh\u016briyyat al-\u2018Ir\u0101q"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic","Kurdish","Syriac"],"languages":["ar","ku"],"translations":{"de":"Irak","es":"Irak","fr":"Irak","it":"Iraq","ja":"\u30a4\u30e9\u30af","nl":"Irak","hr":"Irak"},"population":36004552,"latlng":[33,44],"demonym":"Iraqi","borders":["IRN","JOR","KWT","SAU","SYR","TUR"],"area":438317,"gini":30.9,"timezones":["UTC+03:00"]},{"name":"Republic of Ireland","nativeName":"\u00c9ire","topLevelDomain":[".ie"],"alpha2Code":"IE","numericCode":"372","alpha3Code":"IRL","currencies":["EUR"],"callingCodes":["353"],"capital":"Dublin","altSpellings":["IE","\u00c9ire","Republic of Ireland","Poblacht na h\u00c9ireann"],"relevance":"1.2","region":"Europe","subregion":"Northern Europe","language":["Irish","English"],"languages":["ga","en"],"translations":{"de":"Irland","es":"Irlanda","fr":"Irlande","it":"Irlanda","ja":"\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9","nl":"Ierland","hr":"Irska"},"population":6378000,"latlng":[53,-8],"demonym":"Irish","borders":["GBR"],"area":70273,"gini":34.3,"timezones":["UTC"]},{"name":"Isle of Man","nativeName":"Isle of Man","topLevelDomain":[".im"],"alpha2Code":"IM","numericCode":"833","alpha3Code":"IMN","currencies":["GBP"],"callingCodes":["44"],"capital":"Douglas","altSpellings":["IM","Ellan Vannin","Mann","Mannin"],"relevance":"0.5","region":"Europe","subregion":"Northern Europe","language":["English","Manx"],"languages":["en","gv"],"translations":{"de":"Insel Man","es":"Isla de Man","fr":"\u00cele de Man","it":"Isola di Man","ja":"\u30de\u30f3\u5cf6","nl":"Isle of Man","hr":"Otok Man"},"population":84497,"latlng":[54.25,-4.5],"demonym":"Manx","borders":[],"area":572,"timezones":["UTC+00:00"]},{"name":"Israel","nativeName":"\u05d9\u05b4\u05e9\u05b0\u05c2\u05e8\u05b8\u05d0\u05b5\u05dc","topLevelDomain":[".il"],"alpha2Code":"IL","numericCode":"376","alpha3Code":"ISR","currencies":["ILS"],"callingCodes":["972"],"capital":"Jerusalem","altSpellings":["IL","State of Israel","Med\u012bnat Yisr\u0101'el"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Hebrew","Arabic"],"languages":["he","ar"],"translations":{"de":"Israel","es":"Israel","fr":"Isra\u00ebl","it":"Israele","ja":"\u30a4\u30b9\u30e9\u30a8\u30eb","nl":"Isra\u00ebl","hr":"Izrael"},"population":8371600,"latlng":[31.5,34.75],"demonym":"Israeli","borders":["EGY","JOR","LBN","SYR"],"area":20770,"gini":39.2,"timezones":["UTC+02:00"]},{"name":"Italy","nativeName":"Italia","topLevelDomain":[".it"],"alpha2Code":"IT","numericCode":"380","alpha3Code":"ITA","currencies":["EUR"],"callingCodes":["39"],"capital":"Rome","altSpellings":["IT","Italian Republic","Repubblica italiana"],"relevance":"2","region":"Europe","subregion":"Southern Europe","language":["Italian"],"languages":["it"],"translations":{"de":"Italien","es":"Italia","fr":"Italie","it":"Italia","ja":"\u30a4\u30bf\u30ea\u30a2","nl":"Itali\u00eb","hr":"Italija"},"population":60753794,"latlng":[42.83333333,12.83333333],"demonym":"Italian","borders":["AUT","FRA","SMR","SVN","CHE","VAT"],"area":301336,"gini":36.0,"timezones":["UTC+01:00"]},{"name":"Jamaica","nativeName":"Jamaica","topLevelDomain":[".jm"],"alpha2Code":"JM","numericCode":"388","alpha3Code":"JAM","currencies":["JMD"],"callingCodes":["1"],"capital":"Kingston","altSpellings":["JM"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["Jamaican English"],"languages":["en"],"translations":{"de":"Jamaika","es":"Jamaica","fr":"Jama\u00efque","it":"Giamaica","ja":"\u30b8\u30e3\u30de\u30a4\u30ab","nl":"Jamaica","hr":"Jamajka"},"population":2717991,"latlng":[18.25,-77.5],"demonym":"Jamaican","borders":[],"area":10991,"gini":45.5,"timezones":["UTC-05:00"]},{"name":"Japan","nativeName":"\u65e5\u672c","topLevelDomain":[".jp"],"alpha2Code":"JP","numericCode":"392","alpha3Code":"JPN","currencies":["JPY"],"callingCodes":["81"],"capital":"Tokyo","altSpellings":["JP","Nippon","Nihon"],"relevance":"2.5","region":"Asia","subregion":"Eastern Asia","language":["Japanese"],"languages":["ja"],"translations":{"de":"Japan","es":"Jap\u00f3n","fr":"Japon","it":"Giappone","ja":"\u65e5\u672c","nl":"Japan","hr":"Japan"},"population":126865000,"latlng":[36,138],"demonym":"Japanese","borders":[],"area":377930,"gini":38.1,"timezones":["UTC+09:00"]},{"name":"Jersey","nativeName":"Jersey","topLevelDomain":[".je"],"alpha2Code":"JE","numericCode":"832","alpha3Code":"JEY","currencies":["GBP"],"callingCodes":["44"],"capital":"Saint Helier","altSpellings":["JE","Bailiwick of Jersey","Bailliage de Jersey","Bailliage d\u00e9 J\u00e8rri"],"relevance":"0.5","region":"Europe","subregion":"Northern Europe","language":["English","French"],"languages":["en","fr"],"translations":{"de":"Jersey","es":"Jersey","fr":"Jersey","it":"Isola di Jersey","ja":"\u30b8\u30e3\u30fc\u30b8\u30fc","nl":"Jersey","hr":"Jersey"},"population":99000,"latlng":[49.25,-2.16666666],"demonym":"Channel Islander","borders":[],"area":116,"timezones":["UTC+01:00"]},{"name":"Jordan","nativeName":"\u0627\u0644\u0623\u0631\u062f\u0646","topLevelDomain":[".jo"],"alpha2Code":"JO","numericCode":"400","alpha3Code":"JOR","currencies":["JOD"],"callingCodes":["962"],"capital":"Amman","altSpellings":["JO","Hashemite Kingdom of Jordan","al-Mamlakah al-Urdun\u012byah al-H\u0101shim\u012byah"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic"],"languages":["ar"],"translations":{"de":"Jordanien","es":"Jordania","fr":"Jordanie","it":"Giordania","ja":"\u30e8\u30eb\u30c0\u30f3","nl":"Jordani\u00eb","hr":"Jordan"},"population":6767600,"latlng":[31,36],"demonym":"Jordanian","borders":["IRQ","ISR","SAU","SYR"],"area":89342,"gini":35.4,"timezones":["UTC+03:00"]},{"name":"Kazakhstan","nativeName":"\u049a\u0430\u0437\u0430\u049b\u0441\u0442\u0430\u043d","topLevelDomain":[".kz",".\u049b\u0430\u0437"],"alpha2Code":"KZ","numericCode":"398","alpha3Code":"KAZ","currencies":["KZT"],"callingCodes":["76","77"],"capital":"Astana","altSpellings":["KZ","Qazaqstan","\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d","Republic of Kazakhstan","\u049a\u0430\u0437\u0430\u049b\u0441\u0442\u0430\u043d \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u044b","Qazaqstan Respubl\u00efkas\u0131","\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d","Respublika Kazakhstan"],"relevance":"0","region":"Asia","subregion":"Central Asia","language":["Kazakh","Russian"],"languages":["kk","ru"],"translations":{"de":"Kasachstan","es":"Kazajist\u00e1n","fr":"Kazakhstan","it":"Kazakistan","ja":"\u30ab\u30b6\u30d5\u30b9\u30bf\u30f3","nl":"Kazachstan","hr":"Kazahstan"},"population":17541200,"latlng":[48,68],"demonym":"Kazakhstani","borders":["CHN","KGZ","RUS","TKM","UZB"],"area":2724900,"gini":29.0,"timezones":["UTC+05:00","UTC+06:00"]},{"name":"Kenya","nativeName":"Kenya","topLevelDomain":[".ke"],"alpha2Code":"KE","numericCode":"404","alpha3Code":"KEN","currencies":["KES"],"callingCodes":["254"],"capital":"Nairobi","altSpellings":["KE","Republic of Kenya","Jamhuri ya Kenya"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Swahili","English"],"languages":["en","sw"],"translations":{"de":"Kenia","es":"Kenia","fr":"Kenya","it":"Kenya","ja":"\u30b1\u30cb\u30a2","nl":"Kenia","hr":"Kenija"},"population":46050000,"latlng":[1,38],"demonym":"Kenyan","borders":["ETH","SOM","SSD","TZA","UGA"],"area":580367,"gini":47.7,"timezones":["UTC+03:00"]},{"name":"Kiribati","nativeName":"Kiribati","topLevelDomain":[".ki"],"alpha2Code":"KI","numericCode":"296","alpha3Code":"KIR","currencies":["AUD"],"callingCodes":["686"],"capital":"South Tarawa","altSpellings":["KI","Republic of Kiribati","Ribaberiki Kiribati"],"relevance":"0","region":"Oceania","subregion":"Micronesia","language":["English","Gilbertese"],"languages":["en"],"translations":{"de":"Kiribati","es":"Kiribati","fr":"Kiribati","it":"Kiribati","ja":"\u30ad\u30ea\u30d0\u30b9","nl":"Kiribati","hr":"Kiribati"},"population":106461,"latlng":[1.41666666,173],"demonym":"I-Kiribati","borders":[],"area":811,"timezones":["UTC+12:00","UTC+13:00","UTC+14:00"]},{"name":"Kuwait","nativeName":"\u0627\u0644\u0643\u0648\u064a\u062a","topLevelDomain":[".kw"],"alpha2Code":"KW","numericCode":"414","alpha3Code":"KWT","currencies":["KWD"],"callingCodes":["965"],"capital":"Kuwait City","altSpellings":["KW","State of Kuwait","Dawlat al-Kuwait"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic"],"languages":["ar"],"translations":{"de":"Kuwait","es":"Kuwait","fr":"Kowe\u00eft","it":"Kuwait","ja":"\u30af\u30a6\u30a7\u30fc\u30c8","nl":"Koeweit","hr":"Kuvajt"},"population":3268431,"latlng":[29.5,45.75],"demonym":"Kuwaiti","borders":["IRN","SAU"],"area":17818,"gini":null,"timezones":["UTC+03:00"]},{"name":"Kyrgyzstan","nativeName":"\u041a\u044b\u0440\u0433\u044b\u0437\u0441\u0442\u0430\u043d","topLevelDomain":[".kg"],"alpha2Code":"KG","numericCode":"417","alpha3Code":"KGZ","currencies":["KGS"],"callingCodes":["996"],"capital":"Bishkek","altSpellings":["KG","\u041a\u0438\u0440\u0433\u0438\u0437\u0438\u044f","Kyrgyz Republic","\u041a\u044b\u0440\u0433\u044b\u0437 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u044b","Kyrgyz Respublikasy"],"relevance":"0","region":"Asia","subregion":"Central Asia","language":["Kyrgyz","Russian"],"languages":["ky","ru"],"translations":{"de":"Kirgisistan","es":"Kirguizist\u00e1n","fr":"Kirghizistan","it":"Kirghizistan","ja":"\u30ad\u30eb\u30ae\u30b9","nl":"Kirgizi\u00eb","hr":"Kirgistan"},"population":5944400,"latlng":[41,75],"demonym":"Kirghiz","borders":["CHN","KAZ","TJK","UZB"],"area":199951,"gini":36.2,"timezones":["UTC+06:00"]},{"name":"Laos","nativeName":"\u0eaa\u0e9b\u0e9b\u0ea5\u0eb2\u0ea7","topLevelDomain":[".la"],"alpha2Code":"LA","numericCode":"418","alpha3Code":"LAO","currencies":["LAK"],"callingCodes":["856"],"capital":"Vientiane","altSpellings":["LA","Lao","Lao People's Democratic Republic","Sathalanalat Paxathipatai Paxaxon Lao"],"relevance":"0","region":"Asia","subregion":"South-Eastern Asia","language":["Lao"],"languages":["lo"],"translations":{"fr":"Laos","nl":"Laos","de":"Laos","it":"Laos","ja":"\u30e9\u30aa\u30b9\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd","es":"Laos","hr":"Laos"},"population":6802000,"latlng":[18,105],"demonym":"Laotian","borders":["MMR","KHM","CHN","THA","VNM"],"area":236800,"gini":36.7,"timezones":["UTC+07:00"]},{"name":"Latvia","nativeName":"Latvija","topLevelDomain":[".lv"],"alpha2Code":"LV","numericCode":"428","alpha3Code":"LVA","currencies":["EUR"],"callingCodes":["371"],"capital":"Riga","altSpellings":["LV","Republic of Latvia","Latvijas Republika"],"relevance":"0","region":"Europe","subregion":"Northern Europe","language":["Latvian"],"languages":["lv"],"translations":{"de":"Lettland","es":"Letonia","fr":"Lettonie","it":"Lettonia","ja":"\u30e9\u30c8\u30d3\u30a2","nl":"Letland","hr":"Latvija"},"population":1980700,"latlng":[57,25],"demonym":"Latvian","borders":["BLR","EST","LTU","RUS"],"area":64559,"gini":36.6,"timezones":["UTC+02:00"]},{"name":"Lebanon","nativeName":"\u0644\u0628\u0646\u0627\u0646","topLevelDomain":[".lb"],"alpha2Code":"LB","numericCode":"422","alpha3Code":"LBN","currencies":["LBP"],"callingCodes":["961"],"capital":"Beirut","altSpellings":["LB","Lebanese Republic","Al-Jumh\u016br\u012byah Al-Libn\u0101n\u012byah"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic","French"],"languages":["ar","fr"],"translations":{"de":"Libanon","es":"L\u00edbano","fr":"Liban","it":"Libano","ja":"\u30ec\u30d0\u30ce\u30f3","nl":"Libanon","hr":"Libanon"},"population":4104000,"latlng":[33.83333333,35.83333333],"demonym":"Lebanese","borders":["ISR","SYR"],"area":10452,"gini":null,"timezones":["UTC+02:00"]},{"name":"Lesotho","nativeName":"Lesotho","topLevelDomain":[".ls"],"alpha2Code":"LS","numericCode":"426","alpha3Code":"LSO","currencies":["LSL","ZAR"],"callingCodes":["266"],"capital":"Maseru","altSpellings":["LS","Kingdom of Lesotho","Muso oa Lesotho"],"relevance":"0","region":"Africa","subregion":"Southern Africa","language":["Sesotho","English"],"languages":["en","st"],"translations":{"de":"Lesotho","es":"Lesotho","fr":"Lesotho","it":"Lesotho","ja":"\u30ec\u30bd\u30c8","nl":"Lesotho","hr":"Lesoto"},"population":2135000,"latlng":[-29.5,28.5],"demonym":"Mosotho","borders":["ZAF"],"area":30355,"gini":52.5,"timezones":["UTC+02:00"]},{"name":"Liberia","nativeName":"Liberia","topLevelDomain":[".lr"],"alpha2Code":"LR","numericCode":"430","alpha3Code":"LBR","currencies":["LRD"],"callingCodes":["231"],"capital":"Monrovia","altSpellings":["LR","Republic of Liberia"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["English"],"languages":["en"],"translations":{"de":"Liberia","es":"Liberia","fr":"Liberia","it":"Liberia","ja":"\u30ea\u30d9\u30ea\u30a2","nl":"Liberia","hr":"Liberija"},"population":4503000,"latlng":[6.5,-9.5],"demonym":"Liberian","borders":["GIN","CIV","SLE"],"area":111369,"gini":38.2,"timezones":["UTC"]},{"name":"Libya","nativeName":"\u200f\u0644\u064a\u0628\u064a\u0627","topLevelDomain":[".ly"],"alpha2Code":"LY","numericCode":"434","alpha3Code":"LBY","currencies":["LYD"],"callingCodes":["218"],"capital":"Tripoli","altSpellings":["LY","State of Libya","Dawlat Libya"],"relevance":"0","region":"Africa","subregion":"Northern Africa","language":["Arabic"],"languages":["ar"],"translations":{"de":"Libyen","es":"Libia","fr":"Libye","it":"Libia","ja":"\u30ea\u30d3\u30a2","nl":"Libi\u00eb","hr":"Libija"},"population":6278000,"latlng":[25,17],"demonym":"Libyan","borders":["DZA","TCD","EGY","NER","SDN","TUN"],"area":1759540,"gini":null,"timezones":["UTC+01:00"]},{"name":"Liechtenstein","nativeName":"Liechtenstein","topLevelDomain":[".li"],"alpha2Code":"LI","numericCode":"438","alpha3Code":"LIE","currencies":["CHF"],"callingCodes":["423"],"capital":"Vaduz","altSpellings":["LI","Principality of Liechtenstein","F\u00fcrstentum Liechtenstein"],"relevance":"0","region":"Europe","subregion":"Western Europe","language":["German"],"languages":["de"],"translations":{"de":"Liechtenstein","es":"Liechtenstein","fr":"Liechtenstein","it":"Liechtenstein","ja":"\u30ea\u30d2\u30c6\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3","nl":"Liechtenstein","hr":"Lihten\u0161tajn"},"population":37370,"latlng":[47.26666666,9.53333333],"demonym":"Liechtensteiner","borders":["AUT","CHE"],"area":160,"timezones":["UTC+01:00"]},{"name":"Lithuania","nativeName":"Lietuva","topLevelDomain":[".lt"],"alpha2Code":"LT","numericCode":"440","alpha3Code":"LTU","currencies":["EUR"],"callingCodes":["370"],"capital":"Vilnius","altSpellings":["LT","Republic of Lithuania","Lietuvos Respublika"],"relevance":"0","region":"Europe","subregion":"Northern Europe","language":["Lithuanian"],"languages":["lt"],"translations":{"de":"Litauen","es":"Lituania","fr":"Lituanie","it":"Lituania","ja":"\u30ea\u30c8\u30a2\u30cb\u30a2","nl":"Litouwen","hr":"Litva"},"population":2900787,"latlng":[56,24],"demonym":"Lithuanian","borders":["BLR","LVA","POL","RUS"],"area":65300,"gini":37.6,"timezones":["UTC+02:00"]},{"name":"Luxembourg","nativeName":"Luxembourg","topLevelDomain":[".lu"],"alpha2Code":"LU","numericCode":"442","alpha3Code":"LUX","currencies":["EUR"],"callingCodes":["352"],"capital":"Luxembourg","altSpellings":["LU","Grand Duchy of Luxembourg","Grand-Duch\u00e9 de Luxembourg","Gro\u00dfherzogtum Luxemburg","Groussherzogtum L\u00ebtzebuerg"],"relevance":"0","region":"Europe","subregion":"Western Europe","language":["French","German","Luxembourgish"],"languages":["fr","de","lb"],"translations":{"de":"Luxemburg","es":"Luxemburgo","fr":"Luxembourg","it":"Lussemburgo","ja":"\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30af","nl":"Luxemburg","hr":"Luksemburg"},"population":562958,"latlng":[49.75,6.16666666],"demonym":"Luxembourger","borders":["BEL","FRA","DEU"],"area":2586,"gini":30.8,"timezones":["UTC+01:00"]},{"name":"Macau","nativeName":"\u6fb3\u9580","topLevelDomain":[".mo"],"alpha2Code":"MO","numericCode":"446","alpha3Code":"MAC","currencies":["MOP"],"callingCodes":["853"],"capital":"","altSpellings":["MO","\u6fb3\u95e8","Macao Special Administrative Region of the People's Republic of China","\u4e2d\u83ef\u4eba\u6c11\u5171\u548c\u570b\u6fb3\u9580\u7279\u5225\u884c\u653f\u5340","Regi\u00e3o Administrativa Especial de Macau da Rep\u00fablica Popular da China"],"relevance":"0","region":"Asia","subregion":"Eastern Asia","language":["Traditional Chinese","Portuguese"],"languages":["zh","pt"],"translations":{"de":"Macao","es":"Macao","fr":"Macao","it":"Macao","ja":"\u30de\u30ab\u30aa","nl":"Macao","hr":"Makao"},"population":642900,"latlng":[22.16666666,113.55],"demonym":"Chinese","borders":["CHN"],"area":30,"timezones":["UTC+08:00"]},{"name":"Republic of Macedonia","nativeName":"\u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u0458\u0430","topLevelDomain":[".mk"],"alpha2Code":"MK","numericCode":"807","alpha3Code":"MKD","currencies":["MKD"],"callingCodes":["389"],"capital":"Skopje","altSpellings":["MK","Republic of Macedonia","\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u0458\u0430"],"relevance":"0","region":"Europe","subregion":"Southern Europe","language":["Macedonian"],"languages":["mk"],"translations":{"de":"Mazedonien","es":"Macedonia","fr":"Mac\u00e9doine","it":"Macedonia","ja":"\u30de\u30b1\u30c9\u30cb\u30a2\u65e7\u30e6\u30fc\u30b4\u30b9\u30e9\u30d3\u30a2\u5171\u548c\u56fd","nl":"Macedoni\u00eb","hr":"Makedonija"},"population":2058539,"latlng":[41.83333333,22],"demonym":"Macedonian","borders":["ALB","BGR","GRC","KOS","SRB"],"area":25713,"gini":43.2,"timezones":["UTC+01:00"]},{"name":"Madagascar","nativeName":"Madagasikara","topLevelDomain":[".mg"],"alpha2Code":"MG","numericCode":"450","alpha3Code":"MDG","currencies":["MGA"],"callingCodes":["261"],"capital":"Antananarivo","altSpellings":["MG","Republic of Madagascar","Repoblikan'i Madagasikara","R\u00e9publique de Madagascar"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Malagasy","French"],"languages":["fr","mg"],"translations":{"de":"Madagaskar","es":"Madagascar","fr":"Madagascar","it":"Madagascar","ja":"\u30de\u30c0\u30ac\u30b9\u30ab\u30eb","nl":"Madagaskar","hr":"Madagaskar"},"population":22434363,"latlng":[-20,47],"demonym":"Malagasy","borders":[],"area":587041,"gini":44.1,"timezones":["UTC+03:00"]},{"name":"Malawi","nativeName":"Malawi","topLevelDomain":[".mw"],"alpha2Code":"MW","numericCode":"454","alpha3Code":"MWI","currencies":["MWK"],"callingCodes":["265"],"capital":"Lilongwe","altSpellings":["MW","Republic of Malawi"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Chichewa","English"],"languages":["en","ny"],"translations":{"de":"Malawi","es":"Malawi","fr":"Malawi","it":"Malawi","ja":"\u30de\u30e9\u30a6\u30a4","nl":"Malawi","hr":"Malavi"},"population":16310431,"latlng":[-13.5,34],"demonym":"Malawian","borders":["MOZ","TZA","ZMB"],"area":118484,"gini":39.0,"timezones":["UTC+02:00"]},{"name":"Malaysia","nativeName":"Malaysia","topLevelDomain":[".my"],"alpha2Code":"MY","numericCode":"458","alpha3Code":"MYS","currencies":["MYR"],"callingCodes":["60"],"capital":"Kuala Lumpur","altSpellings":["MY"],"relevance":"0","region":"Asia","subregion":"South-Eastern Asia","language":["Malaysian"],"languages":["ms"],"translations":{"fr":"Malaisie","nl":"Maleisi\u00eb","de":"Malaysia","it":"Malesia","ja":"\u30de\u30ec\u30fc\u30b7\u30a2","es":"Malasia","hr":"Malezija"},"population":30678800,"latlng":[2.5,112.5],"demonym":"Malaysian","borders":["BRN","IDN","THA"],"area":330803,"gini":46.2,"timezones":["UTC+08:00"]},{"name":"Maldives","nativeName":"Maldives","topLevelDomain":[".mv"],"alpha2Code":"MV","numericCode":"462","alpha3Code":"MDV","currencies":["MVR"],"callingCodes":["960"],"capital":"Mal\u00e9","altSpellings":["MV","Maldive Islands","Republic of the Maldives","Dhivehi Raajjeyge Jumhooriyya"],"relevance":"0","region":"Asia","subregion":"Southern Asia","language":["Maldivian"],"languages":["dv"],"translations":{"de":"Malediven","es":"Maldivas","fr":"Maldives","it":"Maldive","ja":"\u30e2\u30eb\u30c7\u30a3\u30d6","nl":"Maldiven","hr":"Maldivi"},"population":341256,"latlng":[3.25,73],"demonym":"Maldivan","borders":[],"area":300,"gini":37.4,"timezones":["UTC+05:00"]},{"name":"Mali","nativeName":"Mali","topLevelDomain":[".ml"],"alpha2Code":"ML","numericCode":"466","alpha3Code":"MLI","currencies":["XOF"],"callingCodes":["223"],"capital":"Bamako","altSpellings":["ML","Republic of Mali","R\u00e9publique du Mali"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["French"],"languages":["fr"],"translations":{"de":"Mali","es":"Mali","fr":"Mali","it":"Mali","ja":"\u30de\u30ea","nl":"Mali","hr":"Mali"},"population":17600000,"latlng":[17,-4],"demonym":"Malian","borders":["DZA","BFA","GIN","CIV","MRT","NER","SEN"],"area":1240192,"gini":33.0,"timezones":["UTC"]},{"name":"Malta","nativeName":"Malta","topLevelDomain":[".mt"],"alpha2Code":"MT","numericCode":"470","alpha3Code":"MLT","currencies":["EUR"],"callingCodes":["356"],"capital":"Valletta","altSpellings":["MT","Republic of Malta","Repubblika ta' Malta"],"relevance":"0","region":"Europe","subregion":"Southern Europe","language":["Maltese","English"],"languages":["mt","en"],"translations":{"de":"Malta","es":"Malta","fr":"Malte","it":"Malta","ja":"\u30de\u30eb\u30bf","nl":"Malta","hr":"Malta"},"population":445426,"latlng":[35.83333333,14.58333333],"demonym":"Maltese","borders":[],"area":316,"gini":null,"timezones":["UTC+01:00"]},{"name":"Marshall Islands","nativeName":"M\u0327aje\u013c","topLevelDomain":[".mh"],"alpha2Code":"MH","numericCode":"584","alpha3Code":"MHL","currencies":["USD"],"callingCodes":["692"],"capital":"Majuro","altSpellings":["MH","Republic of the Marshall Islands","Aolep\u0101n Aor\u014dkin M\u0327aje\u013c"],"relevance":"0.5","region":"Oceania","subregion":"Micronesia","language":["Marshallese","English"],"languages":["en","mh"],"translations":{"de":"Marshallinseln","es":"Islas Marshall","fr":"\u00celes Marshall","it":"Isole Marshall","ja":"\u30de\u30fc\u30b7\u30e3\u30eb\u8af8\u5cf6","nl":"Marshalleilanden","hr":"Mar\u0161alovi Otoci"},"population":56086,"latlng":[9,168],"demonym":"Marshallese","borders":[],"area":181,"timezones":["UTC+12:00"]},{"name":"Martinique","nativeName":"Martinique","topLevelDomain":[".mq"],"alpha2Code":"MQ","numericCode":"474","alpha3Code":"MTQ","currencies":["EUR"],"callingCodes":["596"],"capital":"Fort-de-France","altSpellings":["MQ"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["French"],"languages":["fr"],"translations":{"de":"Martinique","es":"Martinica","fr":"Martinique","it":"Martinica","ja":"\u30de\u30eb\u30c6\u30a3\u30cb\u30fc\u30af","nl":"Martinique","hr":"Martinique"},"population":381326,"latlng":[14.666667,-61],"demonym":"French","borders":[],"timezones":["UTC-04:00"]},{"name":"Mauritania","nativeName":"\u0645\u0648\u0631\u064a\u062a\u0627\u0646\u064a\u0627","topLevelDomain":[".mr"],"alpha2Code":"MR","numericCode":"478","alpha3Code":"MRT","currencies":["MRO"],"callingCodes":["222"],"capital":"Nouakchott","altSpellings":["MR","Islamic Republic of Mauritania","al-Jumh\u016briyyah al-\u02beIsl\u0101miyyah al-M\u016br\u012bt\u0101niyyah"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["Arabic"],"languages":["ar"],"translations":{"de":"Mauretanien","es":"Mauritania","fr":"Mauritanie","it":"Mauritania","ja":"\u30e2\u30fc\u30ea\u30bf\u30cb\u30a2","nl":"Mauritani\u00eb","hr":"Mauritanija"},"population":3631775,"latlng":[20,-12],"demonym":"Mauritanian","borders":["DZA","MLI","SEN","ESH"],"area":1030700,"gini":40.5,"timezones":["UTC"]},{"name":"Mauritius","nativeName":"Maurice","topLevelDomain":[".mu"],"alpha2Code":"MU","numericCode":"480","alpha3Code":"MUS","currencies":["MUR"],"callingCodes":["230"],"capital":"Port Louis","altSpellings":["MU","Republic of Mauritius","R\u00e9publique de Maurice"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["French"],"languages":["en"],"translations":{"de":"Mauritius","es":"Mauricio","fr":"\u00cele Maurice","it":"Mauritius","ja":"\u30e2\u30fc\u30ea\u30b7\u30e3\u30b9","nl":"Mauritius","hr":"Mauricijus"},"population":1261208,"latlng":[-20.28333333,57.55],"demonym":"Mauritian","borders":[],"area":2040,"gini":null,"timezones":["UTC+04:00"]},{"name":"Mayotte","nativeName":"Mayotte","topLevelDomain":[".yt"],"alpha2Code":"YT","numericCode":"175","alpha3Code":"MYT","currencies":["EUR"],"callingCodes":["262"],"capital":"Mamoudzou","altSpellings":["YT","Department of Mayotte","D\u00e9partement de Mayotte"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["French"],"languages":["fr"],"translations":{"de":"Mayotte","es":"Mayotte","fr":"Mayotte","it":"Mayotte","ja":"\u30de\u30e8\u30c3\u30c8","nl":"Mayotte","hr":"Mayotte"},"population":212645,"latlng":[-12.83333333,45.16666666],"demonym":"French","borders":[],"timezones":["UTC+03:00"]},{"name":"Mexico","nativeName":"M\u00e9xico","topLevelDomain":[".mx"],"alpha2Code":"MX","numericCode":"484","alpha3Code":"MEX","currencies":["MXN"],"callingCodes":["52"],"capital":"Mexico City","altSpellings":["MX","Mexicanos","United Mexican States","Estados Unidos Mexicanos"],"relevance":"1.5","region":"Americas","subregion":"Central America","language":["Spanish"],"languages":["es"],"translations":{"de":"Mexiko","es":"M\u00e9xico","fr":"Mexique","it":"Messico","ja":"\u30e1\u30ad\u30b7\u30b3","nl":"Mexico","hr":"Meksiko"},"population":121740000,"latlng":[23,-102],"demonym":"Mexican","borders":["BLZ","GTM","USA"],"area":1964375,"gini":47.0,"timezones":["UTC-08:00","UTC-07:00","UTC-06:00"]},{"name":"Federated States of Micronesia","nativeName":"Micronesia","topLevelDomain":[".fm"],"alpha2Code":"FM","numericCode":"583","alpha3Code":"FSM","currencies":["USD"],"callingCodes":["691"],"capital":"Palikir","altSpellings":["FM","Federated States of Micronesia"],"relevance":"0","region":"Oceania","subregion":"Micronesia","language":["English"],"languages":["en"],"translations":{"de":"Mikronesien","es":"Micronesia","fr":"Micron\u00e9sie","it":"Micronesia","ja":"\u30df\u30af\u30ed\u30cd\u30b7\u30a2\u9023\u90a6","nl":"Micronesi\u00eb","hr":"Mikronezija"},"population":101351,"latlng":[6.91666666,158.25],"demonym":"Micronesian","borders":[],"area":702,"timezones":["UTC+10:00","UTC+11"]},{"name":"Moldova","nativeName":"Moldova","topLevelDomain":[".md"],"alpha2Code":"MD","numericCode":"498","alpha3Code":"MDA","currencies":["MDL"],"callingCodes":["373"],"capital":"Chi\u0219in\u0103u","altSpellings":["MD","Republic of Moldova","Republica Moldova"],"relevance":"0","region":"Europe","subregion":"Eastern Europe","language":["Moldovan"],"languages":["ro"],"translations":{"de":"Moldawie","es":"Moldavia","fr":"Moldavie","it":"Moldavia","ja":"\u30e2\u30eb\u30c9\u30d0\u5171\u548c\u56fd","nl":"Moldavi\u00eb","hr":"Moldova"},"population":3555200,"latlng":[47,29],"demonym":"Moldovan","borders":["ROU","UKR"],"area":33846,"gini":33.0,"timezones":["UTC+02:00"]},{"name":"Monaco","nativeName":"Monaco","topLevelDomain":[".mc"],"alpha2Code":"MC","numericCode":"492","alpha3Code":"MCO","currencies":["EUR"],"callingCodes":["377"],"capital":"Monaco","altSpellings":["MC","Principality of Monaco","Principaut\u00e9 de Monaco"],"relevance":"0","region":"Europe","subregion":"Western Europe","language":["French"],"languages":["fr"],"translations":{"de":"Monaco","es":"M\u00f3naco","fr":"Monaco","it":"Principato di Monaco","ja":"\u30e2\u30ca\u30b3","nl":"Monaco","hr":"Monako"},"population":37800,"latlng":[43.73333333,7.4],"demonym":"Monegasque","borders":["FRA"],"area":2.02,"timezones":["UTC+01:00"]},{"name":"Mongolia","nativeName":"\u041c\u043e\u043d\u0433\u043e\u043b \u0443\u043b\u0441","topLevelDomain":[".mn"],"alpha2Code":"MN","numericCode":"496","alpha3Code":"MNG","currencies":["MNT"],"callingCodes":["976"],"capital":"Ulan Bator","altSpellings":["MN"],"relevance":"0","region":"Asia","subregion":"Eastern Asia","language":["Mongolian"],"languages":["mn"],"translations":{"de":"Mongolei","es":"Mongolia","fr":"Mongolie","it":"Mongolia","ja":"\u30e2\u30f3\u30b4\u30eb","nl":"Mongoli\u00eb","hr":"Mongolija"},"population":3031099,"latlng":[46,105],"demonym":"Mongolian","borders":["CHN","RUS"],"area":1564110,"gini":36.5,"timezones":["UTC+07:00","UTC+08:00"]},{"name":"Montenegro","nativeName":"\u0426\u0440\u043d\u0430 \u0413\u043e\u0440\u0430","topLevelDomain":[".me"],"alpha2Code":"ME","numericCode":"499","alpha3Code":"MNE","currencies":["EUR"],"callingCodes":["382"],"capital":"Podgorica","altSpellings":["ME","Crna Gora"],"relevance":"0","region":"Europe","subregion":"Southern Europe","language":["Montenegrin"],"languages":["sr","bs","sq","hr"],"translations":{"de":"Montenegro","es":"Montenegro","fr":"Mont\u00e9n\u00e9gro","it":"Montenegro","ja":"\u30e2\u30f3\u30c6\u30cd\u30b0\u30ed","nl":"Montenegro","hr":"Crna Gora"},"population":621207,"latlng":[42.5,19.3],"demonym":"Montenegrin","borders":["ALB","BIH","HRV","KOS","SRB"],"area":13812,"gini":30.0,"timezones":["UTC+01:00"]},{"name":"Montserrat","nativeName":"Montserrat","topLevelDomain":[".ms"],"alpha2Code":"MS","numericCode":"500","alpha3Code":"MSR","currencies":["XCD"],"callingCodes":["1"],"capital":"Plymouth","altSpellings":["MS"],"relevance":"0.5","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Montserrat","es":"Montserrat","fr":"Montserrat","it":"Montserrat","ja":"\u30e2\u30f3\u30c8\u30bb\u30e9\u30c8","nl":"Montserrat","hr":"Montserrat"},"population":4922,"latlng":[16.75,-62.2],"demonym":"Montserratian","borders":[],"area":102,"timezones":["UTC-04:00"]},{"name":"Morocco","nativeName":"\u0627\u0644\u0645\u063a\u0631\u0628","topLevelDomain":[".ma"],"alpha2Code":"MA","numericCode":"504","alpha3Code":"MAR","currencies":["MAD"],"callingCodes":["212"],"capital":"Rabat","altSpellings":["MA","Kingdom of Morocco","Al-Mamlakah al-Ma\u0121ribiyah"],"relevance":"0","region":"Africa","subregion":"Northern Africa","language":["Arabic","Berber"],"languages":["ar"],"translations":{"de":"Marokko","es":"Marruecos","fr":"Maroc","it":"Marocco","ja":"\u30e2\u30ed\u30c3\u30b3","nl":"Marokko","hr":"Maroko"},"population":33337529,"latlng":[32,-5],"demonym":"Moroccan","borders":["DZA","ESH","ESP"],"area":446550,"gini":40.9,"timezones":["UTC"]},{"name":"Mozambique","nativeName":"Mo\u00e7ambique","topLevelDomain":[".mz"],"alpha2Code":"MZ","numericCode":"508","alpha3Code":"MOZ","currencies":["MZN"],"callingCodes":["258"],"capital":"Maputo","altSpellings":["MZ","Republic of Mozambique","Rep\u00fablica de Mo\u00e7ambique"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Portuguese"],"languages":["pt"],"translations":{"de":"Mosambik","es":"Mozambique","fr":"Mozambique","it":"Mozambico","ja":"\u30e2\u30b6\u30f3\u30d3\u30fc\u30af","nl":"Mozambique","hr":"Mozambik"},"population":25727911,"latlng":[-18.25,35],"demonym":"Mozambican","borders":["MWI","ZAF","SWZ","TZA","ZMB","ZWE"],"area":801590,"gini":45.7,"timezones":["UTC+02:00"]},{"name":"Myanmar","nativeName":"Myanma","topLevelDomain":[".mm"],"alpha2Code":"MM","numericCode":"104","alpha3Code":"MMR","currencies":["MMK"],"callingCodes":["95"],"capital":"Naypyidaw","altSpellings":["MM","Burma","Republic of the Union of Myanmar","Pyidaunzu Thanm\u0103da My\u0103ma Nainngandaw"],"relevance":"0","region":"Asia","subregion":"South-Eastern Asia","language":["Burmese"],"languages":["my"],"translations":{"fr":"Myanmar","nl":"Myanmar","de":"Myanmar","it":"Birmania","ja":"\u30df\u30e3\u30f3\u30de\u30fc","es":"Myanmar","hr":"Mijanmar"},"population":53897000,"latlng":[22,98],"demonym":"Burmese","borders":["BGD","CHN","IND","LAO","THA"],"gini":null,"timezones":["UTC+06:30"],"area":676578},{"name":"Namibia","nativeName":"Namibia","topLevelDomain":[".na"],"alpha2Code":"NA","numericCode":"516","alpha3Code":"NAM","currencies":["NAD","ZAR"],"callingCodes":["264"],"capital":"Windhoek","altSpellings":["NA","Namibi\u00eb","Republic of Namibia"],"relevance":"0","region":"Africa","subregion":"Southern Africa","language":["English"],"languages":["en","af"],"translations":{"de":"Namibia","es":"Namibia","fr":"Namibie","it":"Namibia","ja":"\u30ca\u30df\u30d3\u30a2","nl":"Namibi\u00eb","hr":"Namibija"},"population":2280700,"latlng":[-22,17],"demonym":"Namibian","borders":["AGO","BWA","ZAF","ZMB"],"area":825615,"gini":63.9,"timezones":["UTC+01:00"]},{"name":"Nauru","nativeName":"Nauru","topLevelDomain":[".nr"],"alpha2Code":"NR","numericCode":"520","alpha3Code":"NRU","currencies":["AUD"],"callingCodes":["674"],"capital":"Yaren","altSpellings":["NR","Naoero","Pleasant Island","Republic of Nauru","Ripublik Naoero"],"relevance":"0.5","region":"Oceania","subregion":"Micronesia","language":["Nauruan","English"],"languages":["en","na"],"translations":{"de":"Nauru","es":"Nauru","fr":"Nauru","it":"Nauru","ja":"\u30ca\u30a6\u30eb","nl":"Nauru","hr":"Nauru"},"population":10084,"latlng":[-0.53333333,166.91666666],"demonym":"Nauruan","borders":[],"area":21,"timezones":["UTC+12:00"]},{"name":"Nepal","nativeName":"\u0928\u0947\u092a\u093e\u0932","topLevelDomain":[".np"],"alpha2Code":"NP","numericCode":"524","alpha3Code":"NPL","currencies":["NPR"],"callingCodes":["977"],"capital":"Kathmandu","altSpellings":["NP","Federal Democratic Republic of Nepal","Lokt\u0101ntrik Ganatantra Nep\u0101l"],"relevance":"0","region":"Asia","subregion":"Southern Asia","language":["Nepali"],"languages":["ne"],"translations":{"de":"N\u00e9pal","es":"Nepal","fr":"N\u00e9pal","it":"Nepal","ja":"\u30cd\u30d1\u30fc\u30eb","nl":"Nepal","hr":"Nepal"},"population":28037904,"latlng":[28,84],"demonym":"Nepalese","borders":["CHN","IND"],"area":147181,"gini":32.8,"timezones":["UTC+05:45"]},{"name":"Netherlands","nativeName":"Nederland","topLevelDomain":[".nl"],"alpha2Code":"NL","numericCode":"528","alpha3Code":"NLD","currencies":["EUR"],"callingCodes":["31"],"capital":"Amsterdam","altSpellings":["NL","Holland","Nederland"],"relevance":"1.5","region":"Europe","subregion":"Western Europe","language":["Dutch"],"languages":["nl"],"translations":{"de":"Niederlande","es":"Pa\u00edses Bajos","fr":"Pays-Bas","it":"Paesi Bassi","ja":"\u30aa\u30e9\u30f3\u30c0","nl":"Nederland","hr":"Nizozemska"},"population":16916000,"latlng":[52.5,5.75],"demonym":"Dutch","borders":["BEL","DEU"],"area":41850,"gini":30.9,"timezones":["UTC-04:00","UTC+01:00"]},{"name":"New Caledonia","nativeName":"Nouvelle-Cal\u00e9donie","topLevelDomain":[".nc"],"alpha2Code":"NC","numericCode":"540","alpha3Code":"NCL","currencies":["XPF"],"callingCodes":["687"],"capital":"Noum\u00e9a","altSpellings":["NC"],"relevance":"0.5","region":"Oceania","subregion":"Melanesia","language":["French"],"languages":["fr"],"translations":{"de":"Neukaledonien","es":"Nueva Caledonia","fr":"Nouvelle-Cal\u00e9donie","it":"Nuova Caledonia","ja":"\u30cb\u30e5\u30fc\u30ab\u30ec\u30c9\u30cb\u30a2","nl":"Nieuw-Caledoni\u00eb","hr":"Nova Kaledonija"},"population":268767,"latlng":[-21.5,165.5],"demonym":"New Caledonian","borders":[],"area":18575,"timezones":["UTC+11:00"]},{"name":"New Zealand","nativeName":"New Zealand","topLevelDomain":[".nz"],"alpha2Code":"NZ","numericCode":"554","alpha3Code":"NZL","currencies":["NZD"],"callingCodes":["64"],"capital":"Wellington","altSpellings":["NZ","Aotearoa"],"relevance":"1.0","region":"Oceania","subregion":"Australia and New Zealand","language":["English","M\u0101ori","New Zealand Sign Language"],"languages":["en","mi"],"translations":{"fr":"Nouvelle-Z\u00e9lande","nl":"Nieuw-Zeeland","de":"Neuseeland","it":"Nuova Zelanda","ja":"\u30cb\u30e5\u30fc\u30b8\u30fc\u30e9\u30f3\u30c9","es":"Nueva Zelanda","hr":"Novi Zeland"},"population":4609440,"latlng":[-41,174],"demonym":"New Zealander","borders":[],"area":270467,"gini":36.2,"timezones":["UTC-11:00","UTC-10:00","UTC+12:00","UTC+12:45","UTC+13:00"]},{"name":"Nicaragua","nativeName":"Nicaragua","topLevelDomain":[".ni"],"alpha2Code":"NI","numericCode":"558","alpha3Code":"NIC","currencies":["NIO"],"callingCodes":["505"],"capital":"Managua","altSpellings":["NI","Republic of Nicaragua","Rep\u00fablica de Nicaragua"],"relevance":"0","region":"Americas","subregion":"Central America","language":["Spanish"],"languages":["es"],"translations":{"de":"Nicaragua","es":"Nicaragua","fr":"Nicaragua","it":"Nicaragua","ja":"\u30cb\u30ab\u30e9\u30b0\u30a2","nl":"Nicaragua","hr":"Nikaragva"},"population":6198154,"latlng":[13,-85],"demonym":"Nicaraguan","borders":["CRI","HND"],"area":130373,"gini":40.5,"timezones":["UTC-06:00"]},{"name":"Niger","nativeName":"Niger","topLevelDomain":[".ne"],"alpha2Code":"NE","numericCode":"562","alpha3Code":"NER","currencies":["XOF"],"callingCodes":["227"],"capital":"Niamey","altSpellings":["NE","Nijar","Republic of Niger","R\u00e9publique du Niger"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["French"],"languages":["fr"],"translations":{"de":"Niger","es":"N\u00edger","fr":"Niger","it":"Niger","ja":"\u30cb\u30b8\u30a7\u30fc\u30eb","nl":"Niger","hr":"Niger"},"population":19899000,"latlng":[16,8],"demonym":"Nigerien","borders":["DZA","BEN","BFA","TCD","LBY","MLI","NGA"],"area":1267000,"gini":34.6,"timezones":["UTC+01:00"]},{"name":"Nigeria","nativeName":"Nigeria","topLevelDomain":[".ng"],"alpha2Code":"NG","numericCode":"566","alpha3Code":"NGA","currencies":["NGN"],"callingCodes":["234"],"capital":"Abuja","altSpellings":["NG","Nijeriya","Na\u00edj\u00edr\u00ed\u00e0","Federal Republic of Nigeria"],"relevance":"1.5","region":"Africa","subregion":"Western Africa","language":["English"],"languages":["en"],"translations":{"de":"Nigeria","es":"Nigeria","fr":"Nig\u00e9ria","it":"Nigeria","ja":"\u30ca\u30a4\u30b8\u30a7\u30ea\u30a2","nl":"Nigeria","hr":"Nigerija"},"population":182202000,"latlng":[10,8],"demonym":"Nigerian","borders":["BEN","CMR","TCD","NER"],"area":923768,"gini":48.8,"timezones":["UTC+01:00"]},{"name":"Niue","nativeName":"Niu\u0113","topLevelDomain":[".nu"],"alpha2Code":"NU","numericCode":"570","alpha3Code":"NIU","currencies":["NZD"],"callingCodes":["683"],"capital":"Alofi","altSpellings":["NU"],"relevance":"0.5","region":"Oceania","subregion":"Polynesia","language":["Niuean","English"],"languages":["en"],"translations":{"de":"Niue","es":"Niue","fr":"Niue","it":"Niue","ja":"\u30cb\u30a6\u30a8","nl":"Niue","hr":"Niue"},"population":1613,"latlng":[-19.03333333,-169.86666666],"demonym":"Niuean","borders":[],"area":260,"timezones":["UTC-11:00"]},{"name":"Norfolk Island","nativeName":"Norfolk Island","topLevelDomain":[".nf"],"alpha2Code":"NF","numericCode":"574","alpha3Code":"NFK","currencies":["AUD"],"callingCodes":["672"],"capital":"Kingston","altSpellings":["NF","Territory of Norfolk Island","Teratri of Norf'k Ailen"],"relevance":"0.5","region":"Oceania","subregion":"Australia and New Zealand","language":["English","Norfuk"],"languages":["en"],"translations":{"fr":"\u00cele de Norfolk","nl":"Norfolkeiland","de":"Norfolkinsel","it":"Isola Norfolk","ja":"\u30ce\u30fc\u30d5\u30a9\u30fc\u30af\u5cf6","es":"Isla de Norfolk","hr":"Otok Norfolk"},"population":2302,"latlng":[-29.03333333,167.95],"demonym":"Norfolk Islander","borders":[],"area":36,"timezones":["UTC+11:30"]},{"name":"North Korea","nativeName":"\ubd81\ud55c","topLevelDomain":[".kp"],"alpha2Code":"KP","numericCode":"408","alpha3Code":"PRK","currencies":["KPW"],"callingCodes":["850"],"capital":"Pyongyang","altSpellings":["KP","Democratic People's Republic of Korea","\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d","Chos\u014fn Minjuju\u016di Inmin Konghwaguk"],"relevance":"0","region":"Asia","subregion":"Eastern Asia","language":["Korean"],"languages":["ko"],"translations":{"de":"Nordkorea","es":"Corea del Norte","fr":"Cor\u00e9e du Nord","it":"Corea del Nord","ja":"\u671d\u9bae\u6c11\u4e3b\u4e3b\u7fa9\u4eba\u6c11\u5171\u548c\u56fd","nl":"Noord-Korea","hr":"Sjeverna Koreja"},"population":25155000,"latlng":[40,127],"demonym":"North Korean","borders":["CHN","KOR","RUS"],"area":120538,"gini":null,"timezones":["UTC+09:00"]},{"name":"Northern Mariana Islands","nativeName":"Northern Mariana Islands","topLevelDomain":[".mp"],"alpha2Code":"MP","numericCode":"580","alpha3Code":"MNP","currencies":["USD"],"callingCodes":["1"],"capital":"Saipan","altSpellings":["MP","Commonwealth of the Northern Mariana Islands","Sankattan Siha Na Islas Mari\u00e5nas"],"relevance":"0.5","region":"Oceania","subregion":"Micronesia","language":["English","Chamorro","Carolinian"],"languages":["en","ch"],"translations":{"de":"N\u00f6rdliche Marianen","es":"Islas Marianas del Norte","fr":"\u00celes Mariannes du Nord","it":"Isole Marianne Settentrionali","ja":"\u5317\u30de\u30ea\u30a2\u30ca\u8af8\u5cf6","nl":"Noordelijke Marianeneilanden","hr":"Sjevernomarijanski otoci"},"population":53883,"latlng":[15.2,145.75],"demonym":"American","borders":[],"area":464,"timezones":["UTC+10:00"]},{"name":"Norway","nativeName":"Norge","topLevelDomain":[".no"],"alpha2Code":"NO","numericCode":"578","alpha3Code":"NOR","currencies":["NOK"],"callingCodes":["47"],"capital":"Oslo","altSpellings":["NO","Norge","Noreg","Kingdom of Norway","Kongeriket Norge","Kongeriket Noreg"],"relevance":"1.5","region":"Europe","subregion":"Northern Europe","language":["Norwegian"],"languages":["no","nb","nn"],"translations":{"de":"Norwegen","es":"Noruega","fr":"Norv\u00e8ge","it":"Norvegia","ja":"\u30ce\u30eb\u30a6\u30a7\u30fc","nl":"Noorwegen","hr":"Norve\u0161ka"},"population":5176998,"latlng":[62,10],"demonym":"Norwegian","borders":["FIN","SWE","RUS"],"area":323802,"gini":25.8,"timezones":["UTC+01:00"]},{"name":"Oman","nativeName":"\u0639\u0645\u0627\u0646","topLevelDomain":[".om"],"alpha2Code":"OM","numericCode":"512","alpha3Code":"OMN","currencies":["OMR"],"callingCodes":["968"],"capital":"Muscat","altSpellings":["OM","Sultanate of Oman","Sal\u1e6danat \u02bbUm\u0101n"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic"],"languages":["ar"],"translations":{"de":"Oman","es":"Om\u00e1n","fr":"Oman","it":"oman","ja":"\u30aa\u30de\u30fc\u30f3","nl":"Oman","hr":"Oman"},"population":4185440,"latlng":[21,57],"demonym":"Omani","borders":["SAU","ARE","YEM"],"area":309500,"gini":null,"timezones":["UTC+04:00"]},{"name":"Pakistan","nativeName":"Pakistan","topLevelDomain":[".pk"],"alpha2Code":"PK","numericCode":"586","alpha3Code":"PAK","currencies":["PKR"],"callingCodes":["92"],"capital":"Islamabad","altSpellings":["PK","P\u0101kist\u0101n","Islamic Republic of Pakistan","Isl\u0101m\u012b Jumh\u016briya'eh P\u0101kist\u0101n"],"relevance":"2","region":"Asia","subregion":"Southern Asia","language":["English","Urdu"],"languages":["en","ur"],"translations":{"de":"Pakistan","es":"Pakist\u00e1n","fr":"Pakistan","it":"Pakistan","ja":"\u30d1\u30ad\u30b9\u30bf\u30f3","nl":"Pakistan","hr":"Pakistan"},"population":190668000,"latlng":[30,70],"demonym":"Pakistani","borders":["AFG","CHN","IND","IRN"],"area":881912,"gini":30.0,"timezones":["UTC+05:00"]},{"name":"Palau","nativeName":"Palau","topLevelDomain":[".pw"],"alpha2Code":"PW","numericCode":"585","alpha3Code":"PLW","currencies":["USD"],"callingCodes":["680"],"capital":"Ngerulmud","altSpellings":["PW","Republic of Palau","Beluu er a Belau"],"relevance":"0.5","region":"Oceania","subregion":"Micronesia","language":["English","Palauan"],"languages":["en"],"translations":{"de":"Palau","es":"Palau","fr":"Palaos","it":"Palau","ja":"\u30d1\u30e9\u30aa","nl":"Palau","hr":"Palau"},"population":20901,"latlng":[7.5,134.5],"demonym":"Palauan","borders":[],"area":459,"timezones":["UTC+09:00"]},{"name":"Palestine","nativeName":"\u0641\u0644\u0633\u0637\u064a\u0646","topLevelDomain":[".ps"],"alpha2Code":"PS","numericCode":"275","alpha3Code":"PSE","currencies":["ILS"],"callingCodes":["970"],"capital":"Ramallah","altSpellings":["PS","State of Palestine","Dawlat Filas\u1e6din"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic"],"languages":["ar"],"translations":{"de":"Pal\u00e4stina","es":"Palestina","fr":"Palestine","it":"Palestina","ja":"\u30d1\u30ec\u30b9\u30c1\u30ca","nl":"Palestijnse gebieden","hr":"Palestina"},"population":4682467,"latlng":[31.9,35.2],"demonym":"Palestinian","borders":["ISR","EGY","JOR"],"gini":35.5,"timezones":["UTC+02:00"]},{"name":"Panama","nativeName":"Panam\u00e1","topLevelDomain":[".pa"],"alpha2Code":"PA","numericCode":"591","alpha3Code":"PAN","currencies":["PAB","USD"],"callingCodes":["507"],"capital":"Panama City","altSpellings":["PA","Republic of Panama","Rep\u00fablica de Panam\u00e1"],"relevance":"0","region":"Americas","subregion":"Central America","language":["Spanish"],"languages":["es"],"translations":{"de":"Panama","es":"Panam\u00e1","fr":"Panama","it":"Panama","ja":"\u30d1\u30ca\u30de","nl":"Panama","hr":"Panama"},"population":3764166,"latlng":[9,-80],"demonym":"Panamanian","borders":["COL","CRI"],"area":75417,"gini":51.9,"timezones":["UTC-05:00"]},{"name":"Papua New Guinea","nativeName":"Papua Niugini","topLevelDomain":[".pg"],"alpha2Code":"PG","numericCode":"598","alpha3Code":"PNG","currencies":["PGK"],"callingCodes":["675"],"capital":"Port Moresby","altSpellings":["PG","Independent State of Papua New Guinea","Independen Stet bilong Papua Niugini"],"relevance":"0","region":"Oceania","subregion":"Melanesia","language":["Hiri Motu","Tok Pisin","English"],"languages":["en"],"translations":{"de":"Papua-Neuguinea","es":"Pap\u00faa Nueva Guinea","fr":"Papouasie-Nouvelle-Guin\u00e9e","it":"Papua Nuova Guinea","ja":"\u30d1\u30d7\u30a2\u30cb\u30e5\u30fc\u30ae\u30cb\u30a2","nl":"Papoea-Nieuw-Guinea","hr":"Papua Nova Gvineja"},"population":7398500,"latlng":[-6,147],"demonym":"Papua New Guinean","borders":["IDN"],"area":462840,"gini":50.9,"timezones":["UTC+10:00"]},{"name":"Paraguay","nativeName":"Paraguay","topLevelDomain":[".py"],"alpha2Code":"PY","numericCode":"600","alpha3Code":"PRY","currencies":["PYG"],"callingCodes":["595"],"capital":"Asunci\u00f3n","altSpellings":["PY","Republic of Paraguay","Rep\u00fablica del Paraguay","Tet\u00e3 Paragu\u00e1i"],"relevance":"0","region":"Americas","subregion":"South America","language":["Spanish","Guaran\u00ed"],"languages":["es","gn"],"translations":{"de":"Paraguay","es":"Paraguay","fr":"Paraguay","it":"Paraguay","ja":"\u30d1\u30e9\u30b0\u30a2\u30a4","nl":"Paraguay","hr":"Paragvaj"},"population":7003406,"latlng":[-23,-58],"demonym":"Paraguayan","borders":["ARG","BOL","BRA"],"area":406752,"gini":52.4,"timezones":["UTC-04:00"]},{"name":"Peru","nativeName":"Per\u00fa","topLevelDomain":[".pe"],"alpha2Code":"PE","numericCode":"604","alpha3Code":"PER","currencies":["PEN"],"callingCodes":["51"],"capital":"Lima","altSpellings":["PE","Republic of Peru"," Rep\u00fablica del Per\u00fa"],"relevance":"0","region":"Americas","subregion":"South America","language":["Spanish","Quechua","Aymara"],"languages":["es"],"translations":{"de":"Peru","es":"Per\u00fa","fr":"P\u00e9rou","it":"Per\u00f9","ja":"\u30da\u30eb\u30fc","nl":"Peru","hr":"Peru"},"population":31151643,"latlng":[-10,-76],"demonym":"Peruvian","borders":["BOL","BRA","CHL","COL","ECU"],"area":1285216,"gini":48.1,"timezones":["UTC-05:00"]},{"name":"Philippines","nativeName":"Pilipinas","topLevelDomain":[".ph"],"alpha2Code":"PH","numericCode":"608","alpha3Code":"PHL","currencies":["PHP"],"callingCodes":["63"],"capital":"Manila","altSpellings":["PH","Republic of the Philippines","Rep\u00fablika ng Pilipinas"],"relevance":"1.5","region":"Asia","subregion":"South-Eastern Asia","language":["Filipino","English"],"languages":["en"],"translations":{"fr":"Philippines","nl":"Filipijnen","de":"Philippinen","it":"Filippine","ja":"\u30d5\u30a3\u30ea\u30d4\u30f3","es":"Filipinas","hr":"Filipini"},"population":101920000,"latlng":[13,122],"demonym":"Filipino","borders":[],"area":342353,"gini":43.0,"timezones":["UTC+08:00"]},{"name":"Pitcairn Islands","nativeName":"Pitcairn Islands","topLevelDomain":[".pn"],"alpha2Code":"PN","numericCode":"612","alpha3Code":"PCN","currencies":["NZD"],"callingCodes":["64"],"capital":"Adamstown","altSpellings":["PN","Pitcairn Henderson Ducie and Oeno Islands"],"relevance":"0.5","region":"Oceania","subregion":"Polynesia","language":["English"],"languages":["en"],"translations":{"de":"Pitcairn","es":"Islas Pitcairn","fr":"\u00celes Pitcairn","it":"Isole Pitcairn","ja":"\u30d4\u30c8\u30b1\u30a2\u30f3","nl":"Pitcairneilanden","hr":"Pitcairnovo oto\u010dje"},"population":56,"latlng":[-25.06666666,-130.1],"demonym":"Pitcairn Islander","borders":[],"area":47,"timezones":["UTC-08:00"]},{"name":"Poland","nativeName":"Polska","topLevelDomain":[".pl"],"alpha2Code":"PL","numericCode":"616","alpha3Code":"POL","currencies":["PLN"],"callingCodes":["48"],"capital":"Warsaw","altSpellings":["PL","Republic of Poland","Rzeczpospolita Polska"],"relevance":"1.25","region":"Europe","subregion":"Eastern Europe","language":["Polish"],"languages":["pl"],"translations":{"de":"Polen","es":"Polonia","fr":"Pologne","it":"Polonia","ja":"\u30dd\u30fc\u30e9\u30f3\u30c9","nl":"Polen","hr":"Poljska"},"population":38484000,"latlng":[52,20],"demonym":"Polish","borders":["BLR","CZE","DEU","LTU","RUS","SVK","UKR"],"area":312679,"gini":34.1,"timezones":["UTC+01:00"]},{"name":"Portugal","nativeName":"Portugal","topLevelDomain":[".pt"],"alpha2Code":"PT","numericCode":"620","alpha3Code":"PRT","currencies":["EUR"],"callingCodes":["351"],"capital":"Lisbon","altSpellings":["PT","Portuguesa","Portuguese Republic","Rep\u00fablica Portuguesa"],"relevance":"1.5","region":"Europe","subregion":"Southern Europe","language":["Portuguese"],"languages":["pt"],"translations":{"de":"Portugal","es":"Portugal","fr":"Portugal","it":"Portogallo","ja":"\u30dd\u30eb\u30c8\u30ac\u30eb","nl":"Portugal","hr":"Portugal"},"population":10374822,"latlng":[39.5,-8],"demonym":"Portuguese","borders":["ESP"],"area":92090,"gini":38.5,"timezones":["UTC-01:00","UTC"]},{"name":"Puerto Rico","nativeName":"Puerto Rico","topLevelDomain":[".pr"],"alpha2Code":"PR","numericCode":"630","alpha3Code":"PRI","currencies":["USD"],"callingCodes":["1","1"],"capital":"San Juan","altSpellings":["PR","Commonwealth of Puerto Rico","Estado Libre Asociado de Puerto Rico"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["Spanish","English"],"languages":["es","en"],"translations":{"de":"Puerto Rico","es":"Puerto Rico","fr":"Porto Rico","it":"Porto Rico","ja":"\u30d7\u30a8\u30eb\u30c8\u30ea\u30b3","nl":"Puerto Rico","hr":"Portoriko"},"population":3548397,"latlng":[18.25,-66.5],"demonym":"Puerto Rican","borders":[],"area":8870,"timezones":["UTC-04:00"]},{"name":"Qatar","nativeName":"\u0642\u0637\u0631","topLevelDomain":[".qa"],"alpha2Code":"QA","numericCode":"634","alpha3Code":"QAT","currencies":["QAR"],"callingCodes":["974"],"capital":"Doha","altSpellings":["QA","State of Qatar","Dawlat Qa\u1e6dar"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic"],"languages":["ar"],"translations":{"de":"Katar","es":"Catar","fr":"Qatar","it":"Qatar","ja":"\u30ab\u30bf\u30fc\u30eb","nl":"Qatar","hr":"Katar"},"population":2120129,"latlng":[25.5,51.25],"demonym":"Qatari","borders":["SAU"],"area":11586,"gini":41.1,"timezones":["UTC+03:00"]},{"name":"Republic of Kosovo","nativeName":"Republika e Kosov\u00ebs","topLevelDomain":[""],"alpha2Code":"XK","numericCode":"780","alpha3Code":"KOS","currencies":["EUR"],"callingCodes":["383"],"capital":"Pristina","altSpellings":["XK","\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0441\u043e\u0432\u043e"],"relevance":"0","region":"Europe","subregion":"Eastern Europe","language":["Albanian","Serbian"],"languages":["sq","sr"],"translations":{"es":"Kosovo","hr":"Kosovo"},"population":1733842,"latlng":[42.666667,21.166667],"demonym":"Kosovar","borders":["ALB","MKD","MNE","SRB"],"area":10908,"timezones":["UTC+01:00"]},{"name":"R\u00e9union","nativeName":"La R\u00e9union","topLevelDomain":[".re"],"alpha2Code":"RE","numericCode":"638","alpha3Code":"REU","currencies":["EUR"],"callingCodes":["262"],"capital":"Saint-Denis","altSpellings":["RE","Reunion"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["French"],"languages":["fr"],"translations":{"de":"R\u00e9union","es":"Reuni\u00f3n","fr":"R\u00e9union","it":"Riunione","ja":"\u30ec\u30e6\u30cb\u30aa\u30f3","nl":"R\u00e9union","hr":"R\u00e9union"},"population":840974,"latlng":[-21.15,55.5],"demonym":"French","borders":[],"timezones":["UTC+04:00"]},{"name":"Romania","nativeName":"Rom\u00e2nia","topLevelDomain":[".ro"],"alpha2Code":"RO","numericCode":"642","alpha3Code":"ROU","currencies":["RON"],"callingCodes":["40"],"capital":"Bucharest","altSpellings":["RO","Rumania","Roumania","Rom\u00e2nia"],"relevance":"0","region":"Europe","subregion":"Eastern Europe","language":["Romanian"],"languages":["ro"],"translations":{"de":"Rum\u00e4nien","es":"Rumania","fr":"Roumanie","it":"Romania","ja":"\u30eb\u30fc\u30de\u30cb\u30a2","nl":"Roemeni\u00eb","hr":"Rumunjska"},"population":19942642,"latlng":[46,25],"demonym":"Romanian","borders":["BGR","HUN","MDA","SRB","UKR"],"area":238391,"gini":30.0,"timezones":["UTC+02:00"]},{"name":"Russia","nativeName":"\u0420\u043e\u0441\u0441\u0438\u044f","topLevelDomain":[".ru"],"alpha2Code":"RU","numericCode":"643","alpha3Code":"RUS","currencies":["RUB"],"callingCodes":["7"],"capital":"Moscow","altSpellings":["RU","Rossiya","Russian Federation","\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f","Rossiyskaya Federatsiya"],"relevance":"2.5","region":"Europe","subregion":"Eastern Europe","language":["Russian"],"languages":["ru"],"translations":{"de":"Russland","es":"Rusia","fr":"Russie","it":"Russia","ja":"\u30ed\u30b7\u30a2\u9023\u90a6","nl":"Rusland","hr":"Rusija"},"population":146556330,"latlng":[60,100],"demonym":"Russian","borders":["AZE","BLR","CHN","EST","FIN","GEO","KAZ","PRK","LVA","LTU","MNG","NOR","POL","UKR"],"area":17124442,"gini":40.1,"timezones":["UTC+03:00","UTC+04:00","UTC+06:00","UTC+07:00","UTC+08:00","UTC+09:00","UTC+10:00","UTC+11:00","UTC+12:00"]},{"name":"Rwanda","nativeName":"Rwanda","topLevelDomain":[".rw"],"alpha2Code":"RW","numericCode":"646","alpha3Code":"RWA","currencies":["RWF"],"callingCodes":["250"],"capital":"Kigali","altSpellings":["RW","Republic of Rwanda","Repubulika y'u Rwanda","R\u00e9publique du Rwanda"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Kinyarwanda","French","English"],"languages":["rw","en","fr"],"translations":{"de":"Ruanda","es":"Ruanda","fr":"Rwanda","it":"Ruanda","ja":"\u30eb\u30ef\u30f3\u30c0","nl":"Rwanda","hr":"Ruanda"},"population":11262564,"latlng":[-2,30],"demonym":"Rwandan","borders":["BDI","COD","TZA","UGA"],"area":26338,"gini":50.8,"timezones":["UTC+02:00"]},{"name":"Saint Barth\u00e9lemy","nativeName":"Saint-Barth\u00e9lemy","topLevelDomain":[".bl"],"alpha2Code":"BL","numericCode":"652","alpha3Code":"BLM","currencies":["EUR"],"callingCodes":["590"],"capital":"Gustavia","altSpellings":["BL","St. Barthelemy","Collectivity of Saint Barth\u00e9lemy","Collectivit\u00e9 de Saint-Barth\u00e9lemy"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["French"],"languages":["fr"],"translations":{"de":"Saint-Barth\u00e9lemy","es":"San Bartolom\u00e9","fr":"Saint-Barth\u00e9lemy","it":"Antille Francesi","ja":"\u30b5\u30f3\u30fb\u30d0\u30eb\u30c6\u30eb\u30df\u30fc","nl":"Saint Barth\u00e9lemy","hr":"Saint Barth\u00e9lemy"},"population":9269,"latlng":[18.5,-63.41666666],"demonym":"Saint Barth\u00e9lemy Islander","borders":[],"area":21,"timezones":["UTC-04:00"]},{"name":"Saint Helena","nativeName":"Saint Helena","topLevelDomain":[".sh"],"alpha2Code":"SH","numericCode":"654","alpha3Code":"SHN","currencies":["SHP"],"callingCodes":["290"],"capital":"Jamestown","altSpellings":["SH"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["English"],"languages":["en"],"translations":{"de":"Sankt Helena","es":"Santa Helena","fr":"Sainte-H\u00e9l\u00e8ne","it":"Sant'Elena","ja":"\u30bb\u30f3\u30c8\u30d8\u30ec\u30ca\u30fb\u30a2\u30bb\u30f3\u30b7\u30e7\u30f3\u304a\u3088\u3073\u30c8\u30ea\u30b9\u30bf\u30f3\u30c0\u30af\u30fc\u30cb\u30e3","nl":"Sint-Helena","hr":"Sveta Helena"},"population":4255,"latlng":[-15.95,-5.7],"demonym":"Saint Helenian","borders":[],"timezones":["UTC+00:00"]},{"name":"Saint Kitts and Nevis","nativeName":"Saint Kitts and Nevis","topLevelDomain":[".kn"],"alpha2Code":"KN","numericCode":"659","alpha3Code":"KNA","currencies":["XCD"],"callingCodes":["1"],"capital":"Basseterre","altSpellings":["KN","Federation of Saint Christopher and Nevis"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"St. Kitts und Nevis","es":"San Crist\u00f3bal y Nieves","fr":"Saint-Christophe-et-Ni\u00e9v\u00e8s","it":"Saint Kitts e Nevis","ja":"\u30bb\u30f3\u30c8\u30af\u30ea\u30b9\u30c8\u30d5\u30a1\u30fc\u30fb\u30cd\u30a4\u30d3\u30b9","nl":"Saint Kitts en Nevis","hr":"Sveti Kristof i Nevis"},"population":56000,"latlng":[17.33333333,-62.75],"demonym":"Kittian and Nevisian","borders":[],"area":261,"timezones":["UTC-04:00"]},{"name":"Saint Lucia","nativeName":"Saint Lucia","topLevelDomain":[".lc"],"alpha2Code":"LC","numericCode":"662","alpha3Code":"LCA","currencies":["XCD"],"callingCodes":["1"],"capital":"Castries","altSpellings":["LC"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Saint Lucia","es":"Santa Luc\u00eda","fr":"Saint-Lucie","it":"Santa Lucia","ja":"\u30bb\u30f3\u30c8\u30eb\u30b7\u30a2","nl":"Saint Lucia","hr":"Sveta Lucija"},"population":185000,"latlng":[13.88333333,-60.96666666],"demonym":"Saint Lucian","borders":[],"area":616,"gini":42.6,"timezones":["UTC-04:00"]},{"name":"Saint Martin","nativeName":"Saint-Martin","topLevelDomain":[".mf",".fr",".gp"],"alpha2Code":"MF","numericCode":"663","alpha3Code":"MAF","currencies":["EUR"],"callingCodes":["590"],"capital":"Marigot","altSpellings":["MF","Collectivity of Saint Martin","Collectivit\u00e9 de Saint-Martin"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["French"],"languages":["en","fr","nl"],"translations":{"de":"Saint Martin","es":"Saint Martin","fr":"Saint-Martin","it":"Saint Martin","ja":"\u30b5\u30f3\u30fb\u30de\u30eb\u30bf\u30f3\uff08\u30d5\u30e9\u30f3\u30b9\u9818\uff09","nl":"Saint-Martin","hr":"Sveti Martin"},"population":36979,"latlng":[18.08333333,-63.95],"demonym":"Saint Martin Islander","borders":["SXM","NLD"],"area":53,"timezones":["UTC-04:00"]},{"name":"Saint Pierre and Miquelon","nativeName":"Saint-Pierre-et-Miquelon","topLevelDomain":[".pm"],"alpha2Code":"PM","numericCode":"666","alpha3Code":"SPM","currencies":["EUR"],"callingCodes":["508"],"capital":"Saint-Pierre","altSpellings":["PM","Collectivit\u00e9 territoriale de Saint-Pierre-et-Miquelon"],"relevance":"0","region":"Americas","subregion":"Northern America","language":["French"],"languages":["fr"],"translations":{"de":"Saint-Pierre und Miquelon","es":"San Pedro y Miquel\u00f3n","fr":"Saint-Pierre-et-Miquelon","it":"Saint-Pierre e Miquelon","ja":"\u30b5\u30f3\u30d4\u30a8\u30fc\u30eb\u5cf6\u30fb\u30df\u30af\u30ed\u30f3\u5cf6","nl":"Saint Pierre en Miquelon","hr":"Sveti Petar i Mikelon"},"population":6069,"latlng":[46.83333333,-56.33333333],"demonym":"French","borders":[],"area":242,"timezones":["UTC-03:00"]},{"name":"Saint Vincent and the Grenadines","nativeName":"Saint Vincent and the Grenadines","topLevelDomain":[".vc"],"alpha2Code":"VC","numericCode":"670","alpha3Code":"VCT","currencies":["XCD"],"callingCodes":["1"],"capital":"Kingstown","altSpellings":["VC"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Saint Vincent und die Grenadinen","es":"San Vicente y Granadinas","fr":"Saint-Vincent-et-les-Grenadines","it":"Saint Vincent e Grenadine","ja":"\u30bb\u30f3\u30c8\u30d3\u30f3\u30bb\u30f3\u30c8\u304a\u3088\u3073\u30b0\u30ec\u30ca\u30c7\u30a3\u30fc\u30f3\u8af8\u5cf6","nl":"Saint Vincent en de Grenadines","hr":"Sveti Vincent i Grenadini"},"population":109991,"latlng":[13.25,-61.2],"demonym":"Saint Vincentian","borders":[],"area":389,"timezones":["UTC-04:00"]},{"name":"Samoa","nativeName":"Samoa","topLevelDomain":[".ws"],"alpha2Code":"WS","numericCode":"882","alpha3Code":"WSM","currencies":["WST"],"callingCodes":["685"],"capital":"Apia","altSpellings":["WS","Independent State of Samoa","Malo Sa\u02bboloto Tuto\u02bbatasi o S\u0101moa"],"relevance":"0","region":"Oceania","subregion":"Polynesia","language":["Samoan","English"],"languages":["sm","en"],"translations":{"de":"Samoa","es":"Samoa","fr":"Samoa","it":"Samoa","ja":"\u30b5\u30e2\u30a2","nl":"Samoa","hr":"Samoa"},"population":187820,"latlng":[-13.58333333,-172.33333333],"demonym":"Samoan","borders":[],"area":2842,"timezones":["UTC+13:00"]},{"name":"San Marino","nativeName":"San Marino","topLevelDomain":[".sm"],"alpha2Code":"SM","numericCode":"674","alpha3Code":"SMR","currencies":["EUR"],"callingCodes":["378"],"capital":"City of San Marino","altSpellings":["SM","Republic of San Marino","Repubblica di San Marino"],"relevance":"0","region":"Europe","subregion":"Southern Europe","language":["Italian"],"languages":["it"],"translations":{"de":"San Marino","es":"San Marino","fr":"Saint-Marin","it":"San Marino","ja":"\u30b5\u30f3\u30de\u30ea\u30ce","nl":"San Marino","hr":"San Marino"},"population":32831,"latlng":[43.76666666,12.41666666],"demonym":"Sammarinese","borders":["ITA"],"area":61,"timezones":["UTC+01:00"]},{"name":"S\u00e3o Tom\u00e9 and Pr\u00edncipe","nativeName":"S\u00e3o Tom\u00e9 e Pr\u00edncipe","topLevelDomain":[".st"],"alpha2Code":"ST","numericCode":"678","alpha3Code":"STP","currencies":["STD"],"callingCodes":["239"],"capital":"S\u00e3o Tom\u00e9","altSpellings":["ST","Democratic Republic of S\u00e3o Tom\u00e9 and Pr\u00edncipe","Rep\u00fablica Democr\u00e1tica de S\u00e3o Tom\u00e9 e Pr\u00edncipe"],"relevance":"0","region":"Africa","subregion":"Middle Africa","language":["Portuguese"],"languages":["pt"],"translations":{"de":"S\u00e3o Tom\u00e9 und Pr\u00edncipe","es":"Santo Tom\u00e9 y Pr\u00edncipe","fr":"Sao Tom\u00e9-et-Principe","it":"S\u00e3o Tom\u00e9 e Pr\u00edncipe","ja":"\u30b5\u30f3\u30c8\u30e1\u30fb\u30d7\u30ea\u30f3\u30b7\u30da","nl":"Sao Tom\u00e9 en Principe","hr":"Sveti Toma i Princip"},"population":187356,"latlng":[1,7],"demonym":"Sao Tomean","borders":[],"area":964,"gini":50.8,"timezones":["UTC"]},{"name":"Saudi Arabia","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","topLevelDomain":[".sa"],"alpha2Code":"SA","numericCode":"682","alpha3Code":"SAU","currencies":["SAR"],"callingCodes":["966"],"capital":"Riyadh","altSpellings":["SA","Kingdom of Saudi Arabia","Al-Mamlakah al-\u2018Arabiyyah as-Su\u2018\u016bdiyyah"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic"],"languages":["ar"],"translations":{"de":"Saudi-Arabien","es":"Arabia Saud\u00ed","fr":"Arabie Saoudite","it":"Arabia Saudita","ja":"\u30b5\u30a6\u30b8\u30a2\u30e9\u30d3\u30a2","nl":"Saoedi-Arabi\u00eb","hr":"Saudijska Arabija"},"population":31521418,"latlng":[25,45],"demonym":"Saudi Arabian","borders":["IRQ","JOR","KWT","OMN","QAT","ARE","YEM"],"area":2149690,"gini":null,"timezones":["UTC+03:00"]},{"name":"Senegal","nativeName":"S\u00e9n\u00e9gal","topLevelDomain":[".sn"],"alpha2Code":"SN","numericCode":"686","alpha3Code":"SEN","currencies":["XOF"],"callingCodes":["221"],"capital":"Dakar","altSpellings":["SN","Republic of Senegal","R\u00e9publique du S\u00e9n\u00e9gal"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["French"],"languages":["fr"],"translations":{"de":"Senegal","es":"Senegal","fr":"S\u00e9n\u00e9gal","it":"Senegal","ja":"\u30bb\u30cd\u30ac\u30eb","nl":"Senegal","hr":"Senegal"},"population":13508715,"latlng":[14,-14],"demonym":"Senegalese","borders":["GMB","GIN","GNB","MLI","MRT"],"area":196722,"gini":39.2,"timezones":["UTC"]},{"name":"Serbia","nativeName":"\u0421\u0440\u0431\u0438\u0458\u0430","topLevelDomain":[".rs"],"alpha2Code":"RS","numericCode":"688","alpha3Code":"SRB","currencies":["RSD"],"callingCodes":["381"],"capital":"Belgrade","altSpellings":["RS","Srbija","Republic of Serbia","\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0440\u0431\u0438\u0458\u0430","Republika Srbija"],"relevance":"0","region":"Europe","subregion":"Southern Europe","language":["Serbian"],"languages":["sr"],"translations":{"de":"Serbien","es":"Serbia","fr":"Serbie","it":"Serbia","ja":"\u30bb\u30eb\u30d3\u30a2","nl":"Servi\u00eb","hr":"Srbija"},"population":7114393,"latlng":[44,21],"demonym":"Serbian","borders":["BIH","BGR","HRV","HUN","KOS","MKD","MNE","ROU"],"area":88361,"gini":27.8,"timezones":["UTC+01:00"]},{"name":"Seychelles","nativeName":"Seychelles","topLevelDomain":[".sc"],"alpha2Code":"SC","numericCode":"690","alpha3Code":"SYC","currencies":["SCR"],"callingCodes":["248"],"capital":"Victoria","altSpellings":["SC","Republic of Seychelles","Repiblik Sesel","R\u00e9publique des Seychelles"],"relevance":"0.5","region":"Africa","subregion":"Eastern Africa","language":["French","English","Seychellois Creole"],"languages":["fr","en"],"translations":{"de":"Seychellen","es":"Seychelles","fr":"Seychelles","it":"Seychelles","ja":"\u30bb\u30fc\u30b7\u30a7\u30eb","nl":"Seychellen","hr":"Sej\u0161eli"},"population":89949,"latlng":[-4.58333333,55.66666666],"demonym":"Seychellois","borders":[],"area":452,"gini":65.8,"timezones":["UTC+04:00"]},{"name":"Sierra Leone","nativeName":"Sierra Leone","topLevelDomain":[".sl"],"alpha2Code":"SL","numericCode":"694","alpha3Code":"SLE","currencies":["SLL"],"callingCodes":["232"],"capital":"Freetown","altSpellings":["SL","Republic of Sierra Leone"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["English"],"languages":["en"],"translations":{"de":"Sierra Leone","es":"Sierra Leone","fr":"Sierra Leone","it":"Sierra Leone","ja":"\u30b7\u30a8\u30e9\u30ec\u30aa\u30cd","nl":"Sierra Leone","hr":"Sijera Leone"},"population":6453000,"latlng":[8.5,-11.5],"demonym":"Sierra Leonean","borders":["GIN","LBR"],"area":71740,"gini":42.5,"timezones":["UTC"]},{"name":"Singapore","nativeName":"Singapore","topLevelDomain":[".sg"],"alpha2Code":"SG","numericCode":"702","alpha3Code":"SGP","currencies":["SGD"],"callingCodes":["65"],"capital":"Singapore","altSpellings":["SG","Singapura","Republik Singapura","\u65b0\u52a0\u5761\u5171\u548c\u56fd"],"relevance":"0","region":"Asia","subregion":"South-Eastern Asia","language":["English","Malay","Mandarin","Tamil"],"languages":["en","ms","ta","zh"],"translations":{"fr":"Singapour","nl":"Singapore","de":"Singapur","it":"Singapore","ja":"\u30b7\u30f3\u30ac\u30dd\u30fc\u30eb","es":"Singapur","hr":"Singapur"},"population":5469700,"latlng":[1.36666666,103.8],"demonym":"Singaporean","borders":[],"area":710,"gini":48.1,"timezones":["UTC+08:00"]},{"name":"Sint Maarten","nativeName":"Sint Maarten","topLevelDomain":[".sx"],"alpha2Code":"SX","numericCode":"534","alpha3Code":"SXM","currencies":["ANG"],"callingCodes":["1"],"capital":"Philipsburg","altSpellings":["SX"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["Dutch","English"],"languages":["nl","en"],"translations":{"nl":"Sint Maarten"},"population":37429,"latlng":[18.033333,-63.05],"demonym":"Dutch","borders":["MAF"],"area":34,"timezones":["UTC-04:00"]},{"name":"Slovakia","nativeName":"Slovensko","topLevelDomain":[".sk"],"alpha2Code":"SK","numericCode":"703","alpha3Code":"SVK","currencies":["EUR"],"callingCodes":["421"],"capital":"Bratislava","altSpellings":["SK","Slovak Republic","Slovensk\u00e1 republika"],"relevance":"0","region":"Europe","subregion":"Eastern Europe","language":["Slovak"],"languages":["sk"],"translations":{"de":"Slowakei","es":"Rep\u00fablica Eslovaca","fr":"Slovaquie","it":"Slovacchia","ja":"\u30b9\u30ed\u30d0\u30ad\u30a2","nl":"Slowakije","hr":"Slova\u010dka"},"population":5421349,"latlng":[48.66666666,19.5],"demonym":"Slovak","borders":["AUT","CZE","HUN","POL","UKR"],"area":49037,"gini":26.0,"timezones":["UTC+01:00"]},{"name":"Slovenia","nativeName":"Slovenija","topLevelDomain":[".si"],"alpha2Code":"SI","numericCode":"705","alpha3Code":"SVN","currencies":["EUR"],"callingCodes":["386"],"capital":"Ljubljana","altSpellings":["SI","Republic of Slovenia","Republika Slovenija"],"relevance":"0","region":"Europe","subregion":"Southern Europe","language":["Slovene"],"languages":["sl"],"translations":{"de":"Slowenien","es":"Eslovenia","fr":"Slov\u00e9nie","it":"Slovenia","ja":"\u30b9\u30ed\u30d9\u30cb\u30a2","nl":"Sloveni\u00eb","hr":"Slovenija"},"population":2067683,"latlng":[46.11666666,14.81666666],"demonym":"Slovene","borders":["AUT","HRV","ITA","HUN"],"area":20273,"gini":31.2,"timezones":["UTC+01:00"]},{"name":"Solomon Islands","nativeName":"Solomon Islands","topLevelDomain":[".sb"],"alpha2Code":"SB","numericCode":"090","alpha3Code":"SLB","currencies":["SBD"],"callingCodes":["677"],"capital":"Honiara","altSpellings":["SB"],"relevance":"0","region":"Oceania","subregion":"Melanesia","language":["English"],"languages":["en"],"translations":{"de":"Salomonen","es":"Islas Salom\u00f3n","fr":"\u00celes Salomon","it":"Isole Salomone","ja":"\u30bd\u30ed\u30e2\u30f3\u8af8\u5cf6","nl":"Salomonseilanden","hr":"Solomonski Otoci"},"population":581344,"latlng":[-8,159],"demonym":"Solomon Islander","borders":[],"area":28896,"timezones":["UTC+11:00"]},{"name":"Somalia","nativeName":"Soomaaliya","topLevelDomain":[".so"],"alpha2Code":"SO","numericCode":"706","alpha3Code":"SOM","currencies":["SOS"],"callingCodes":["252"],"capital":"Mogadishu","altSpellings":["SO","a\u1e63-\u1e62\u016bm\u0101l","Federal Republic of Somalia","Jamhuuriyadda Federaalka Soomaaliya","Jumh\u016briyyat a\u1e63-\u1e62\u016bm\u0101l al-Fider\u0101liyya"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Somali","Arabic"],"languages":["so","ar"],"translations":{"de":"Somalia","es":"Somalia","fr":"Somalie","it":"Somalia","ja":"\u30bd\u30de\u30ea\u30a2","nl":"Somali\u00eb","hr":"Somalija"},"population":10787000,"latlng":[10,49],"demonym":"Somali","borders":["DJI","ETH","KEN"],"area":637657,"gini":null,"timezones":["UTC+03:00"]},{"name":"South Africa","nativeName":"South Africa","topLevelDomain":[".za"],"alpha2Code":"ZA","numericCode":"710","alpha3Code":"ZAF","currencies":["ZAR"],"callingCodes":["27"],"capital":"Pretoria","altSpellings":["ZA","RSA","Suid-Afrika","Republic of South Africa"],"relevance":"0","region":"Africa","subregion":"Southern Africa","language":["Afrikaans","English","Southern Ndebele","Northern Sotho","Southern Sotho","Swazi","Tsonga","Tswana","Venda","Xhosa","Zulu"],"languages":["af","en","nr","st","ss","tn","ts","ve","xh","zu"],"translations":{"de":"Republik S\u00fcdafrika","es":"Rep\u00fablica de Sud\u00e1frica","fr":"Afrique du Sud","it":"Sud Africa","ja":"\u5357\u30a2\u30d5\u30ea\u30ab","nl":"Zuid-Afrika","hr":"Ju\u017enoafri\u010dka Republika"},"population":54956900,"latlng":[-29,24],"demonym":"South African","borders":["BWA","LSO","MOZ","NAM","SWZ","ZWE"],"area":1221037,"gini":63.1,"timezones":["UTC+02:00"]},{"name":"South Georgia","nativeName":"South Georgia","topLevelDomain":[".gs"],"alpha2Code":"GS","numericCode":"239","alpha3Code":"SGS","currencies":["GBP"],"callingCodes":["500"],"capital":"King Edward Point","altSpellings":["GS","South Georgia and the South Sandwich Islands"],"relevance":"0","region":"Americas","subregion":"South America","language":["English"],"languages":["en"],"translations":{"de":"S\u00fcdgeorgien und die S\u00fcdlichen Sandwichinseln","es":"Islas Georgias del Sur y Sandwich del Sur","fr":"G\u00e9orgie du Sud-et-les \u00celes Sandwich du Sud","it":"Georgia del Sud e Isole Sandwich Meridionali","ja":"\u30b5\u30a6\u30b9\u30b8\u30e7\u30fc\u30b8\u30a2\u30fb\u30b5\u30a6\u30b9\u30b5\u30f3\u30c9\u30a6\u30a3\u30c3\u30c1\u8af8\u5cf6","nl":"Zuid-Georgia en Zuidelijke Sandwicheilanden","hr":"Ju\u017ena Georgija i oto\u010dje Ju\u017eni Sandwich"},"population":30,"latlng":[-54.5,-37],"demonym":"South Georgia and the South Sandwich Islander","borders":[],"timezones":["UTC-02:00"]},{"name":"South Korea","nativeName":"\ub300\ud55c\ubbfc\uad6d","topLevelDomain":[".kr"],"alpha2Code":"KR","numericCode":"410","alpha3Code":"KOR","currencies":["KRW"],"callingCodes":["82"],"capital":"Seoul","altSpellings":["KR","Republic of Korea"],"relevance":"1.5","region":"Asia","subregion":"Eastern Asia","language":["Korean"],"languages":["ko"],"translations":{"de":"S\u00fcdkorea","es":"Corea del Sur","fr":"Cor\u00e9e du Sud","it":"Corea del Sud","ja":"\u5927\u97d3\u6c11\u56fd","nl":"Zuid-Korea","hr":"Ju\u017ena Koreja"},"population":51448183,"latlng":[37,127.5],"demonym":"South Korean","borders":["PRK"],"area":100210,"gini":31.3,"timezones":["UTC+09:00"]},{"name":"South Sudan","nativeName":"South Sudan","topLevelDomain":[".ss"],"alpha2Code":"SS","numericCode":"728","alpha3Code":"SSD","currencies":["SSP"],"callingCodes":["211"],"capital":"Juba","altSpellings":["SS"],"relevance":"0","region":"Africa","subregion":"Middle Africa","language":["English"],"languages":["en"],"translations":{"fr":"Soudan du Sud","nl":"Zuid-Soedan","de":"S\u00fcdsudan","it":"Sudan del sud","ja":"\u5357\u30b9\u30fc\u30c0\u30f3","es":"Sud\u00e1n del Sur","hr":"Ju\u017eni Sudan"},"population":11892934,"latlng":[7,30],"demonym":"South Sudanese","borders":["CAF","COD","ETH","KEN","SDN","UGA"],"area":619745,"gini":45.5,"timezones":["UTC+03:00"]},{"name":"Spain","nativeName":"Espa\u00f1a","topLevelDomain":[".es"],"alpha2Code":"ES","numericCode":"724","alpha3Code":"ESP","currencies":["EUR"],"callingCodes":["34"],"capital":"Madrid","altSpellings":["ES","Kingdom of Spain","Reino de Espa\u00f1a"],"relevance":"2","region":"Europe","subregion":"Southern Europe","language":["Spanish"],"languages":["es"],"translations":{"de":"Spanien","es":"Espa\u00f1a","fr":"Espagne","it":"Spagna","ja":"\u30b9\u30da\u30a4\u30f3","nl":"Spanje","hr":"\u0160panjolska"},"population":46439864,"latlng":[40,-4],"demonym":"Spanish","borders":["AND","FRA","GIB","PRT","MAR"],"area":505992,"gini":34.7,"timezones":["UTC","UTC+01:00"]},{"name":"Sri Lanka","nativeName":"\u015br\u012b la\u1e43k\u0101va","topLevelDomain":[".lk"],"alpha2Code":"LK","numericCode":"144","alpha3Code":"LKA","currencies":["LKR"],"callingCodes":["94"],"capital":"Colombo","altSpellings":["LK","ila\u1e45kai","Democratic Socialist Republic of Sri Lanka"],"relevance":"0","region":"Asia","subregion":"Southern Asia","language":["Sinhala","Tamil"],"languages":["si","ta"],"translations":{"de":"Sri Lanka","es":"Sri Lanka","fr":"Sri Lanka","it":"Sri Lanka","ja":"\u30b9\u30ea\u30e9\u30f3\u30ab","nl":"Sri Lanka","hr":"\u0160ri Lanka"},"population":20675000,"latlng":[7,81],"demonym":"Sri Lankan","borders":["IND"],"area":65610,"gini":40.3,"timezones":["UTC+05:30"]},{"name":"Sudan","nativeName":"\u0627\u0644\u0633\u0648\u062f\u0627\u0646","topLevelDomain":[".sd"],"alpha2Code":"SD","numericCode":"729","alpha3Code":"SDN","currencies":["SDG"],"callingCodes":["249"],"capital":"Khartoum","altSpellings":["SD","Republic of the Sudan","Jumh\u016br\u012byat as-S\u016bd\u0101n"],"relevance":"0","region":"Africa","subregion":"Northern Africa","language":["Arabic","English"],"languages":["ar","en"],"translations":{"de":"Sudan","es":"Sud\u00e1n","fr":"Soudan","it":"Sudan","ja":"\u30b9\u30fc\u30c0\u30f3","nl":"Soedan","hr":"Sudan"},"population":38435252,"latlng":[15,30],"demonym":"Sudanese","borders":["CAF","TCD","EGY","ERI","ETH","LBY","SSD"],"area":1886068,"gini":35.3,"timezones":["UTC+03:00"]},{"name":"Suriname","nativeName":"Suriname","topLevelDomain":[".sr"],"alpha2Code":"SR","numericCode":"740","alpha3Code":"SUR","currencies":["SRD"],"callingCodes":["597"],"capital":"Paramaribo","altSpellings":["SR","Sarnam","Sranangron","Republic of Suriname","Republiek Suriname"],"relevance":"0","region":"Americas","subregion":"South America","language":["Dutch"],"languages":["nl"],"translations":{"de":"Suriname","es":"Surinam","fr":"Surinam","it":"Suriname","ja":"\u30b9\u30ea\u30ca\u30e0","nl":"Suriname","hr":"Surinam"},"population":534189,"latlng":[4,-56],"demonym":"Surinamer","borders":["BRA","GUF","FRA","GUY"],"area":163820,"gini":52.9,"timezones":["UTC-03:00"]},{"name":"Svalbard and Jan Mayen","nativeName":"Svalbard og Jan Mayen","topLevelDomain":[".sj"],"alpha2Code":"SJ","numericCode":"744","alpha3Code":"SJM","currencies":["NOK"],"callingCodes":["47"],"capital":"Longyearbyen","altSpellings":["SJ","Svalbard and Jan Mayen Islands"],"relevance":"0.5","region":"Europe","subregion":"Northern Europe","language":["Norwegian"],"languages":["no"],"translations":{"de":"Svalbard und Jan Mayen","es":"Islas Svalbard y Jan Mayen","fr":"Svalbard et Jan Mayen","it":"Svalbard e Jan Mayen","ja":"\u30b9\u30f4\u30a1\u30fc\u30eb\u30d0\u30eb\u8af8\u5cf6\u304a\u3088\u3073\u30e4\u30f3\u30de\u30a4\u30a8\u30f3\u5cf6","nl":"Svalbard en Jan Mayen","hr":"Svalbard i Jan Mayen"},"population":2562,"latlng":[78,20],"demonym":"Norwegian","borders":[],"timezones":["UTC+01:00"]},{"name":"Swaziland","nativeName":"Swaziland","topLevelDomain":[".sz"],"alpha2Code":"SZ","numericCode":"748","alpha3Code":"SWZ","currencies":["SZL"],"callingCodes":["268"],"capital":"Lobamba","altSpellings":["SZ","weSwatini","Swatini","Ngwane","Kingdom of Swaziland","Umbuso waseSwatini"],"relevance":"0","region":"Africa","subregion":"Southern Africa","language":["Swazi","English"],"languages":["en","ss"],"translations":{"de":"Swasiland","es":"Suazilandia","fr":"Swaziland","it":"Swaziland","ja":"\u30b9\u30ef\u30b8\u30e9\u30f3\u30c9","nl":"Swaziland","hr":"Svazi"},"population":1119375,"latlng":[-26.5,31.5],"demonym":"Swazi","borders":["MOZ","ZAF"],"area":17364,"gini":51.5,"timezones":["UTC+02:00"]},{"name":"Sweden","nativeName":"Sverige","topLevelDomain":[".se"],"alpha2Code":"SE","numericCode":"752","alpha3Code":"SWE","currencies":["SEK"],"callingCodes":["46"],"capital":"Stockholm","altSpellings":["SE","Kingdom of Sweden","Konungariket Sverige"],"relevance":"1.5","region":"Europe","subregion":"Northern Europe","language":["Swedish"],"languages":["sv"],"translations":{"de":"Schweden","es":"Suecia","fr":"Su\u00e8de","it":"Svezia","ja":"\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3","nl":"Zweden","hr":"\u0160vedska"},"population":9793172,"latlng":[62,15],"demonym":"Swedish","borders":["FIN","NOR"],"area":450295,"gini":25.0,"timezones":["UTC+01:00"]},{"name":"Switzerland","nativeName":"Schweiz","topLevelDomain":[".ch"],"alpha2Code":"CH","numericCode":"756","alpha3Code":"CHE","currencies":["CHE","CHF","CHW"],"callingCodes":["41"],"capital":"Bern","altSpellings":["CH","Swiss Confederation","Schweiz","Suisse","Svizzera","Svizra"],"relevance":"1.5","region":"Europe","subregion":"Western Europe","language":["German","French","Italian","Romansh"],"languages":["de","fr","it"],"translations":{"de":"Schweiz","es":"Suiza","fr":"Suisse","it":"Svizzera","ja":"\u30b9\u30a4\u30b9","nl":"Zwitserland","hr":"\u0160vicarska"},"population":8256000,"latlng":[47,8],"demonym":"Swiss","borders":["AUT","FRA","ITA","LIE","DEU"],"area":41284,"gini":33.7,"timezones":["UTC+01:00"]},{"name":"Syria","nativeName":"\u0633\u0648\u0631\u064a\u0627","topLevelDomain":[".sy"],"alpha2Code":"SY","numericCode":"760","alpha3Code":"SYR","currencies":["SYP"],"callingCodes":["963"],"capital":"Damascus","altSpellings":["SY","Syrian Arab Republic","Al-Jumh\u016br\u012byah Al-\u02bbArab\u012byah As-S\u016br\u012byah"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic"],"languages":["ar"],"translations":{"de":"Syrien","es":"Siria","fr":"Syrie","it":"Siria","ja":"\u30b7\u30ea\u30a2\u30fb\u30a2\u30e9\u30d6\u5171\u548c\u56fd","nl":"Syri\u00eb","hr":"Sirija"},"population":23339517,"latlng":[35,38],"demonym":"Syrian","borders":["IRQ","ISR","JOR","LBN","TUR"],"area":185180,"gini":35.8,"timezones":["UTC+02:00"]},{"name":"Taiwan","nativeName":"\u81fa\u7063","topLevelDomain":[".tw"],"alpha2Code":"TW","numericCode":"158","alpha3Code":"TWN","currencies":["TWD"],"callingCodes":["886"],"capital":"Taipei","altSpellings":["TW","T\u00e1iw\u0101n","Republic of China","\u4e2d\u83ef\u6c11\u570b","Zh\u014dnghu\u00e1 M\u00edngu\u00f3"],"relevance":"0","region":"Asia","subregion":"Eastern Asia","language":["Standard Chinese"],"languages":["zh"],"translations":{"de":"Taiwan","es":"Taiw\u00e1n","fr":"Ta\u00efwan","it":"Taiwan","ja":"\u53f0\u6e7e\uff08\u53f0\u6e7e\u7701/\u4e2d\u83ef\u6c11\u56fd\uff09","nl":"Taiwan","hr":"Tajvan"},"population":23461708,"latlng":[23.5,121],"demonym":"Taiwanese","borders":[],"area":36193,"gini":null,"timezones":["UTC+08:00"]},{"name":"Tajikistan","nativeName":"\u0422\u043e\u04b7\u0438\u043a\u0438\u0441\u0442\u043e\u043d","topLevelDomain":[".tj"],"alpha2Code":"TJ","numericCode":"762","alpha3Code":"TJK","currencies":["TJS"],"callingCodes":["992"],"capital":"Dushanbe","altSpellings":["TJ","To\u00e7ikiston","Republic of Tajikistan","\u04b6\u0443\u043c\u04b3\u0443\u0440\u0438\u0438 \u0422\u043e\u04b7\u0438\u043a\u0438\u0441\u0442\u043e\u043d","\u00c7umhuriyi To\u00e7ikiston"],"relevance":"0","region":"Asia","subregion":"Central Asia","language":["Tajik"],"languages":["tg","ru"],"translations":{"de":"Tadschikistan","es":"Tayikist\u00e1n","fr":"Tadjikistan","it":"Tagikistan","ja":"\u30bf\u30b8\u30ad\u30b9\u30bf\u30f3","nl":"Tadzjikistan","hr":"Ta\u0111ikistan"},"population":8354000,"latlng":[39,71],"demonym":"Tadzhik","borders":["AFG","CHN","KGZ","UZB"],"area":143100,"gini":30.8,"timezones":["UTC+05:00"]},{"name":"Tanzania","nativeName":"Tanzania","topLevelDomain":[".tz"],"alpha2Code":"TZ","numericCode":"834","alpha3Code":"TZA","currencies":["TZS"],"callingCodes":["255"],"capital":"Dodoma","altSpellings":["TZ","United Republic of Tanzania","Jamhuri ya Muungano wa Tanzania"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Swahili","English"],"languages":["sw","en"],"translations":{"de":"Tansania","es":"Tanzania","fr":"Tanzanie","it":"Tanzania","ja":"\u30bf\u30f3\u30b6\u30cb\u30a2","nl":"Tanzania","hr":"Tanzanija"},"population":53470000,"latlng":[-6,35],"demonym":"Tanzanian","borders":["BDI","COD","KEN","MWI","MOZ","RWA","UGA","ZMB"],"area":945087,"gini":37.6,"timezones":["UTC+03:00"]},{"name":"Thailand","nativeName":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","topLevelDomain":[".th"],"alpha2Code":"TH","numericCode":"764","alpha3Code":"THA","currencies":["THB"],"callingCodes":["66"],"capital":"Bangkok","altSpellings":["TH","Prathet","Thai","Kingdom of Thailand","\u0e23\u0e32\u0e0a\u0e2d\u0e32\u0e13\u0e32\u0e08\u0e31\u0e01\u0e23\u0e44\u0e17\u0e22","Ratcha Anachak Thai"],"relevance":"0","region":"Asia","subregion":"South-Eastern Asia","language":["Thai"],"languages":["th"],"translations":{"fr":"Tha\u00eflande","nl":"Thailand","de":"Thailand","it":"Tailandia","ja":"\u30bf\u30a4","es":"Tailandia","hr":"Tajland"},"population":65104000,"latlng":[15,100],"demonym":"Thai","borders":["MMR","KHM","LAO","MYS"],"area":513120,"gini":40.0,"timezones":["UTC+07:00"]},{"name":"East Timor","nativeName":"Timor-Leste","topLevelDomain":[".tl"],"alpha2Code":"TL","numericCode":"626","alpha3Code":"TLS","currencies":["USD"],"callingCodes":["670"],"capital":"Dili","altSpellings":["TL","East Timor","Democratic Republic of Timor-Leste","Rep\u00fablica Democr\u00e1tica de Timor-Leste","Rep\u00fablika Demokr\u00e1tika Tim\u00f3r-Leste"],"relevance":"0","region":"Asia","subregion":"South-Eastern Asia","language":["Portuguese","Tetum"],"languages":["pt"],"translations":{"fr":"Timor oriental","nl":"Oost-Timor","de":"Timor-Leste","it":"Timor Est","ja":"\u6771\u30c6\u30a3\u30e2\u30fc\u30eb","es":"Timor Oriental","hr":"Isto\u010dni Timor"},"population":1212107,"latlng":[-8.83333333,125.91666666],"demonym":"East Timorese","borders":["IDN"],"area":14874,"gini":31.9,"timezones":["UTC+09:00"]},{"name":"Togo","nativeName":"Togo","topLevelDomain":[".tg"],"alpha2Code":"TG","numericCode":"768","alpha3Code":"TGO","currencies":["XOF"],"callingCodes":["228"],"capital":"Lom\u00e9","altSpellings":["TG","Togolese","Togolese Republic","R\u00e9publique Togolaise"],"relevance":"0","region":"Africa","subregion":"Western Africa","language":["French"],"languages":["fr"],"translations":{"de":"Togo","es":"Togo","fr":"Togo","it":"Togo","ja":"\u30c8\u30fc\u30b4","nl":"Togo","hr":"Togo"},"population":7305000,"latlng":[8,1.16666666],"demonym":"Togolese","borders":["BEN","BFA","GHA"],"area":56785,"gini":34.4,"timezones":["UTC"]},{"name":"Tokelau","nativeName":"Tokelau","topLevelDomain":[".tk"],"alpha2Code":"TK","numericCode":"772","alpha3Code":"TKL","currencies":["NZD"],"callingCodes":["690"],"capital":"Fakaofo","altSpellings":["TK"],"relevance":"0.5","region":"Oceania","subregion":"Polynesia","language":["Tokelauan","English","Samoan"],"languages":["en"],"translations":{"de":"Tokelau","es":"Islas Tokelau","fr":"Tokelau","it":"Isole Tokelau","ja":"\u30c8\u30b1\u30e9\u30a6","nl":"Tokelau","hr":"Tokelau"},"population":1411,"latlng":[-9,-172],"demonym":"Tokelauan","borders":[],"area":12,"timezones":["UTC+13:00"]},{"name":"Tonga","nativeName":"Tonga","topLevelDomain":[".to"],"alpha2Code":"TO","numericCode":"776","alpha3Code":"TON","currencies":["TOP"],"callingCodes":["676"],"capital":"Nuku'alofa","altSpellings":["TO"],"relevance":"0","region":"Oceania","subregion":"Polynesia","language":["Tongan","English"],"languages":["en","to"],"translations":{"de":"Tonga","es":"Tonga","fr":"Tonga","it":"Tonga","ja":"\u30c8\u30f3\u30ac","nl":"Tonga","hr":"Tonga"},"population":103252,"latlng":[-20,-175],"demonym":"Tongan","borders":[],"area":747,"timezones":["UTC+13:00"]},{"name":"Trinidad and Tobago","nativeName":"Trinidad and Tobago","topLevelDomain":[".tt"],"alpha2Code":"TT","numericCode":"780","alpha3Code":"TTO","currencies":["TTD"],"callingCodes":["1"],"capital":"Port of Spain","altSpellings":["TT","Republic of Trinidad and Tobago"],"relevance":"0","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Trinidad und Tobago","es":"Trinidad y Tobago","fr":"Trinit\u00e9 et Tobago","it":"Trinidad e Tobago","ja":"\u30c8\u30ea\u30cb\u30c0\u30fc\u30c9\u30fb\u30c8\u30d0\u30b4","nl":"Trinidad en Tobago","hr":"Trinidad i Tobago"},"population":1340557,"latlng":[11,-61],"demonym":"Trinidadian","borders":[],"area":5130,"gini":40.3,"timezones":["UTC-04:00"]},{"name":"Tunisia","nativeName":"\u062a\u0648\u0646\u0633","topLevelDomain":[".tn"],"alpha2Code":"TN","numericCode":"788","alpha3Code":"TUN","currencies":["TND"],"callingCodes":["216"],"capital":"Tunis","altSpellings":["TN","Republic of Tunisia","al-Jumh\u016briyyah at-T\u016bnisiyyah"],"relevance":"0","region":"Africa","subregion":"Northern Africa","language":["Arabic"],"languages":["ar"],"translations":{"de":"Tunesien","es":"T\u00fanez","fr":"Tunisie","it":"Tunisia","ja":"\u30c1\u30e5\u30cb\u30b8\u30a2","nl":"Tunesi\u00eb","hr":"Tunis"},"population":10982754,"latlng":[34,9],"demonym":"Tunisian","borders":["DZA","LBY"],"area":163610,"gini":41.4,"timezones":["UTC+01:00"]},{"name":"Turkey","nativeName":"T\u00fcrkiye","topLevelDomain":[".tr"],"alpha2Code":"TR","numericCode":"792","alpha3Code":"TUR","currencies":["TRY"],"callingCodes":["90"],"capital":"Ankara","altSpellings":["TR","Turkiye","Republic of Turkey","T\u00fcrkiye Cumhuriyeti"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Turkish"],"languages":["tr"],"translations":{"de":"T\u00fcrkei","es":"Turqu\u00eda","fr":"Turquie","it":"Turchia","ja":"\u30c8\u30eb\u30b3","nl":"Turkije","hr":"Turska"},"population":77695904,"latlng":[39,35],"demonym":"Turkish","borders":["ARM","AZE","BGR","GEO","GRC","IRN","IRQ","SYR"],"area":783562,"gini":39.0,"timezones":["UTC+02:00"]},{"name":"Turkmenistan","nativeName":"T\u00fcrkmenistan","topLevelDomain":[".tm"],"alpha2Code":"TM","numericCode":"795","alpha3Code":"TKM","currencies":["TMT"],"callingCodes":["993"],"capital":"Ashgabat","altSpellings":["TM"],"relevance":"0","region":"Asia","subregion":"Central Asia","language":["Turkmen"],"languages":["tk","ru"],"translations":{"de":"Turkmenistan","es":"Turkmenist\u00e1n","fr":"Turkm\u00e9nistan","it":"Turkmenistan","ja":"\u30c8\u30eb\u30af\u30e1\u30cb\u30b9\u30bf\u30f3","nl":"Turkmenistan","hr":"Turkmenistan"},"population":4751120,"latlng":[40,60],"demonym":"Turkmen","borders":["AFG","IRN","KAZ","UZB"],"area":488100,"gini":40.8,"timezones":["UTC+05:00"]},{"name":"Turks and Caicos Islands","nativeName":"Turks and Caicos Islands","topLevelDomain":[".tc"],"alpha2Code":"TC","numericCode":"796","alpha3Code":"TCA","currencies":["USD"],"callingCodes":["1"],"capital":"Cockburn Town","altSpellings":["TC"],"relevance":"0.5","region":"Americas","subregion":"Caribbean","language":["English"],"languages":["en"],"translations":{"de":"Turks- und Caicosinseln","es":"Islas Turks y Caicos","fr":"\u00celes Turques-et-Ca\u00efques","it":"Isole Turks e Caicos","ja":"\u30bf\u30fc\u30af\u30b9\u30fb\u30ab\u30a4\u30b3\u30b9\u8af8\u5cf6","nl":"Turks- en Caicoseilanden","hr":"Otoci Turks i Caicos"},"population":31458,"latlng":[21.75,-71.58333333],"demonym":"Turks and Caicos Islander","borders":[],"area":948,"timezones":["UTC-04:00"]},{"name":"Tuvalu","nativeName":"Tuvalu","topLevelDomain":[".tv"],"alpha2Code":"TV","numericCode":"798","alpha3Code":"TUV","currencies":["AUD"],"callingCodes":["688"],"capital":"Funafuti","altSpellings":["TV"],"relevance":"0.5","region":"Oceania","subregion":"Polynesia","language":["Tuvaluan","English"],"languages":["en"],"translations":{"de":"Tuvalu","es":"Tuvalu","fr":"Tuvalu","it":"Tuvalu","ja":"\u30c4\u30d0\u30eb","nl":"Tuvalu","hr":"Tuvalu"},"population":10640,"latlng":[-8,178],"demonym":"Tuvaluan","borders":[],"area":26,"timezones":["UTC+12:00"]},{"name":"Uganda","nativeName":"Uganda","topLevelDomain":[".ug"],"alpha2Code":"UG","numericCode":"800","alpha3Code":"UGA","currencies":["UGX"],"callingCodes":["256"],"capital":"Kampala","altSpellings":["UG","Republic of Uganda","Jamhuri ya Uganda"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["English","Swahili"],"languages":["en","sw"],"translations":{"de":"Uganda","es":"Uganda","fr":"Uganda","it":"Uganda","ja":"\u30a6\u30ac\u30f3\u30c0","nl":"Oeganda","hr":"Uganda"},"population":34856813,"latlng":[1,32],"demonym":"Ugandan","borders":["COD","KEN","RWA","SSD","TZA"],"area":241550,"gini":44.3,"timezones":["UTC+03:00"]},{"name":"Ukraine","nativeName":"\u0423\u043a\u0440\u0430\u0457\u043d\u0430","topLevelDomain":[".ua"],"alpha2Code":"UA","numericCode":"804","alpha3Code":"UKR","currencies":["UAH"],"callingCodes":["380"],"capital":"Kiev","altSpellings":["UA","Ukrayina"],"relevance":"0","region":"Europe","subregion":"Eastern Europe","language":["Ukrainian"],"languages":["uk"],"translations":{"de":"Ukraine","es":"Ucrania","fr":"Ukraine","it":"Ucraina","ja":"\u30a6\u30af\u30e9\u30a4\u30ca","nl":"Oekra\u00efne","hr":"Ukrajina"},"population":42836922,"latlng":[49,32],"demonym":"Ukrainian","borders":["BLR","HUN","MDA","POL","ROU","RUS","SVK"],"area":603700,"gini":26.4,"timezones":["UTC+02:00"]},{"name":"United Arab Emirates","nativeName":"\u062f\u0648\u0644\u0629 \u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629","topLevelDomain":[".ae"],"alpha2Code":"AE","numericCode":"784","alpha3Code":"ARE","currencies":["AED"],"callingCodes":["971"],"capital":"Abu Dhabi","altSpellings":["AE","UAE"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic"],"languages":["ar"],"translations":{"de":"Vereinigte Arabische Emirate","es":"Emiratos \u00c1rabes Unidos","fr":"\u00c9mirats arabes unis","it":"Emirati Arabi Uniti","ja":"\u30a2\u30e9\u30d6\u9996\u9577\u56fd\u9023\u90a6","nl":"Verenigde Arabische Emiraten","hr":"Ujedinjeni Arapski Emirati"},"population":9157000,"latlng":[24,54],"demonym":"Emirati","borders":["OMN","SAU"],"area":83600,"gini":null,"timezones":["UTC+04"]},{"name":"United Kingdom","nativeName":"United Kingdom","topLevelDomain":[".uk"],"alpha2Code":"GB","numericCode":"826","alpha3Code":"GBR","currencies":["GBP"],"callingCodes":["44"],"capital":"London","altSpellings":["GB","UK","Great Britain"],"relevance":"2.5","region":"Europe","subregion":"Northern Europe","language":["English"],"languages":["en"],"translations":{"de":"Vereinigtes K\u00f6nigreich","es":"Reino Unido","fr":"Royaume-Uni","it":"Regno Unito","ja":"\u30a4\u30ae\u30ea\u30b9","nl":"Verenigd Koninkrijk","hr":"Ujedinjeno Kraljevstvo"},"population":64800000,"latlng":[54,-2],"demonym":"British","borders":["IRL"],"area":242900,"gini":34.0,"timezones":["UTC-08:00","UTC-05:00","UTC-04:00","UTC-03:00","UTC-02:00","UTC","UTC+01:00","UTC+02:00","UTC+06:00"]},{"name":"United States","nativeName":"United States","topLevelDomain":[".us"],"alpha2Code":"US","numericCode":"840","alpha3Code":"USA","currencies":["USD","USN","USS"],"callingCodes":["1"],"capital":"Washington, D.C.","altSpellings":["US","USA","United States of America"],"relevance":"3.5","region":"Americas","subregion":"Northern America","language":["English"],"languages":["en"],"translations":{"de":"Vereinigte Staaten von Amerika","es":"Estados Unidos","fr":"\u00c9tats-Unis","it":"Stati Uniti D'America","ja":"\u30a2\u30e1\u30ea\u30ab\u5408\u8846\u56fd","nl":"Verenigde Staten","hr":"Sjedinjene Ameri\u010dke Dr\u017eave"},"population":321645000,"latlng":[38,-97],"demonym":"American","borders":["CAN","MEX"],"area":9629091,"gini":48.0,"timezones":["UTC-12:00","UTC-11:00","UTC-10:00","UTC-09:00","UTC-08:00","UTC-07:00","UTC-06:00","UTC-05:00","UTC-04:00","UTC+10:00","UTC+12:00"]},{"name":"Uruguay","nativeName":"Uruguay","topLevelDomain":[".uy"],"alpha2Code":"UY","numericCode":"858","alpha3Code":"URY","currencies":["UYI","UYU"],"callingCodes":["598"],"capital":"Montevideo","altSpellings":["UY","Oriental Republic of Uruguay","Rep\u00fablica Oriental del Uruguay"],"relevance":"0","region":"Americas","subregion":"South America","language":["Spanish"],"languages":["es"],"translations":{"de":"Uruguay","es":"Uruguay","fr":"Uruguay","it":"Uruguay","ja":"\u30a6\u30eb\u30b0\u30a2\u30a4","nl":"Uruguay","hr":"Urugvaj"},"population":3415866,"latlng":[-33,-56],"demonym":"Uruguayan","borders":["ARG","BRA"],"area":181034,"gini":39.7,"timezones":["UTC-03:00"]},{"name":"Uzbekistan","nativeName":"O\u2018zbekiston","topLevelDomain":[".uz"],"alpha2Code":"UZ","numericCode":"860","alpha3Code":"UZB","currencies":["UZS"],"callingCodes":["998"],"capital":"Tashkent","altSpellings":["UZ","Republic of Uzbekistan","O\u2018zbekiston Respublikasi","\u040e\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u043e\u043d \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u0438"],"relevance":"0","region":"Asia","subregion":"Central Asia","language":["Uzbek"],"languages":["uz","ru"],"translations":{"de":"Usbekistan","es":"Uzbekist\u00e1n","fr":"Ouzb\u00e9kistan","it":"Uzbekistan","ja":"\u30a6\u30ba\u30d9\u30ad\u30b9\u30bf\u30f3","nl":"Oezbekistan","hr":"Uzbekistan"},"population":31022500,"latlng":[41,64],"demonym":"Uzbekistani","borders":["AFG","KAZ","KGZ","TJK","TKM"],"area":447400,"gini":36.7,"timezones":["UTC+05:00"]},{"name":"Vanuatu","nativeName":"Vanuatu","topLevelDomain":[".vu"],"alpha2Code":"VU","numericCode":"548","alpha3Code":"VUT","currencies":["VUV"],"callingCodes":["678"],"capital":"Port Vila","altSpellings":["VU","Republic of Vanuatu","Ripablik blong Vanuatu","R\u00e9publique de Vanuatu"],"relevance":"0","region":"Oceania","subregion":"Melanesia","language":["Bislama","French","English"],"languages":["bi","en","fr"],"translations":{"de":"Vanuatu","es":"Vanuatu","fr":"Vanuatu","it":"Vanuatu","ja":"\u30d0\u30cc\u30a2\u30c4","nl":"Vanuatu","hr":"Vanuatu"},"population":264652,"latlng":[-16,167],"demonym":"Ni-Vanuatu","borders":[],"area":12189,"timezones":["UTC+11:00"]},{"name":"Venezuela","nativeName":"Venezuela","topLevelDomain":[".ve"],"alpha2Code":"VE","numericCode":"862","alpha3Code":"VEN","currencies":["VEF"],"callingCodes":["58"],"capital":"Caracas","altSpellings":["VE","Bolivarian Republic of Venezuela","Rep\u00fablica Bolivariana de Venezuela"],"relevance":"0","region":"Americas","subregion":"South America","language":["Spanish"],"languages":["es"],"translations":{"de":"Venezuela","es":"Venezuela","fr":"Venezuela","it":"Venezuela","ja":"\u30d9\u30cd\u30ba\u30a8\u30e9\u30fb\u30dc\u30ea\u30d0\u30eb\u5171\u548c\u56fd","nl":"Venezuela","hr":"Venezuela"},"population":30620404,"latlng":[8,-66],"demonym":"Venezuelan","borders":["BRA","COL","GUY"],"area":916445,"gini":44.8,"timezones":["UTC-04:30"]},{"name":"Vietnam","nativeName":"Vi\u1ec7t Nam","topLevelDomain":[".vn"],"alpha2Code":"VN","numericCode":"704","alpha3Code":"VNM","currencies":["VND"],"callingCodes":["84"],"capital":"Hanoi","altSpellings":["VN","Socialist Republic of Vietnam","C\u1ed9ng h\u00f2a X\u00e3 h\u1ed9i ch\u1ee7 ngh\u0129a Vi\u1ec7t Nam"],"relevance":"1.5","region":"Asia","subregion":"South-Eastern Asia","language":["Vietnamese"],"languages":["vi"],"translations":{"fr":"Vi\u00eat Nam","nl":"Vietnam","de":"Vietnam","it":"Vietnam","ja":"\u30d9\u30c8\u30ca\u30e0","es":"Vietnam","hr":"Vijetnam"},"population":91812000,"latlng":[16.16666666,107.83333333],"demonym":"Vietnamese","borders":["KHM","CHN","LAO"],"area":331212,"gini":35.6,"timezones":["UTC+07:00"]},{"name":"Wallis and Futuna","nativeName":"Wallis et Futuna","topLevelDomain":[".wf"],"alpha2Code":"WF","numericCode":"876","alpha3Code":"WLF","currencies":["XPF"],"callingCodes":["681"],"capital":"Mata-Utu","altSpellings":["WF","Territory of the Wallis and Futuna Islands","Territoire des \u00eeles Wallis et Futuna"],"relevance":"0.5","region":"Oceania","subregion":"Polynesia","language":["French"],"languages":["fr"],"translations":{"de":"Wallis und Futuna","es":"Wallis y Futuna","fr":"Wallis-et-Futuna","it":"Wallis e Futuna","ja":"\u30a6\u30a9\u30ea\u30b9\u30fb\u30d5\u30c4\u30ca","nl":"Wallis en Futuna","hr":"Wallis i Fortuna"},"population":13135,"latlng":[-13.3,-176.2],"demonym":"Wallis and Futuna Islander","borders":[],"area":142,"timezones":["UTC+12:00"]},{"name":"Western Sahara","nativeName":"\u0627\u0644\u0635\u062d\u0631\u0627\u0621 \u0627\u0644\u063a\u0631\u0628\u064a\u0629","topLevelDomain":[".eh"],"alpha2Code":"EH","numericCode":"732","alpha3Code":"ESH","currencies":["MAD","DZD","MRO"],"callingCodes":["212"],"capital":"El Aai\u00fan","altSpellings":["EH","Tane\u1e93roft Tutrimt"],"relevance":"0","region":"Africa","subregion":"Northern Africa","language":["Berber","Hassaniya","Spanish"],"languages":["es"],"translations":{"de":"Westsahara","es":"Sahara Occidental","fr":"Sahara Occidental","it":"Sahara Occidentale","ja":"\u897f\u30b5\u30cf\u30e9","nl":"Westelijke Sahara","hr":"Zapadna Sahara"},"population":510713,"latlng":[24.5,-13],"demonym":"Sahrawi","borders":["DZA","MRT","MAR"],"area":266000,"timezones":["UTC+00:00"]},{"name":"Yemen","nativeName":"\u0627\u0644\u064a\u064e\u0645\u064e\u0646","topLevelDomain":[".ye"],"alpha2Code":"YE","numericCode":"887","alpha3Code":"YEM","currencies":["YER"],"callingCodes":["967"],"capital":"Sana'a","altSpellings":["YE","Yemeni Republic","al-Jumh\u016briyyah al-Yamaniyyah"],"relevance":"0","region":"Asia","subregion":"Western Asia","language":["Arabic"],"languages":["ar"],"translations":{"de":"Jemen","es":"Yemen","fr":"Y\u00e9men","it":"Yemen","ja":"\u30a4\u30a8\u30e1\u30f3","nl":"Jemen","hr":"Jemen"},"population":25956000,"latlng":[15,48],"demonym":"Yemeni","borders":["OMN","SAU"],"area":527968,"gini":37.7,"timezones":["UTC+03:00"]},{"name":"Zambia","nativeName":"Zambia","topLevelDomain":[".zm"],"alpha2Code":"ZM","numericCode":"894","alpha3Code":"ZMB","currencies":["ZMW"],"callingCodes":["260"],"capital":"Lusaka","altSpellings":["ZM","Republic of Zambia"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["English"],"languages":["en"],"translations":{"de":"Sambia","es":"Zambia","fr":"Zambie","it":"Zambia","ja":"\u30b6\u30f3\u30d3\u30a2","nl":"Zambia","hr":"Zambija"},"population":15473905,"latlng":[-15,30],"demonym":"Zambian","borders":["AGO","BWA","COD","MWI","MOZ","NAM","TZA","ZWE"],"area":752612,"gini":54.6,"timezones":["UTC+02:00"]},{"name":"Zimbabwe","nativeName":"Zimbabwe","topLevelDomain":[".zw"],"alpha2Code":"ZW","numericCode":"716","alpha3Code":"ZWE","currencies":["USD"],"callingCodes":["263"],"capital":"Harare","altSpellings":["ZW","Republic of Zimbabwe"],"relevance":"0","region":"Africa","subregion":"Eastern Africa","language":["Chewa","Chibarwe","English","Kalanga","Koisan","Nambya","Ndau","Ndebele","Shangani","Shona","Zimbabwean sign language","Sotho","Tonga","Tswana","Venda","Xhosa"],"languages":["en","sn","nd"],"translations":{"de":"Simbabwe","es":"Zimbabue","fr":"Zimbabwe","it":"Zimbabwe","ja":"\u30b8\u30f3\u30d0\u30d6\u30a8","nl":"Zimbabwe","hr":"Zimbabve"},"population":13061239,"latlng":[-20,30],"demonym":"Zimbabwean","borders":["BWA","MOZ","ZAF","ZMB"],"area":390757,"gini":null,"timezones":["UTC+02:00"]}] ================================================ FILE: src/main/resources/countriesV2.json ================================================ [{"alpha2Code":"AF","alpha3Code":"AFG","altSpellings":["AF","Af\u0121\u0101nist\u0101n"],"area":652230,"borders":["IRN","PAK","TKM","UZB","TJK","CHN"],"callingCodes":["93"],"capital":"Kabul","currencies":[{"code":"AFN","name":"Afghan afghani","symbol":"\u060b"}],"demonym":"Afghan","flag":"https://restcountries.eu/data/afg.svg","gini":27.8,"languages":[{"iso639_1":"ps","iso639_2":"pus","name":"Pashto","nativeName":"\u067e\u069a\u062a\u0648"},{"iso639_1":"uz","iso639_2":"uzb","name":"Uzbek","nativeName":"O\u02bbzbek"},{"iso639_1":"tk","iso639_2":"tuk","name":"Turkmen","nativeName":"T\u00fcrkmen"}],"latlng":[33,65],"name":"Afghanistan","nativeName":"\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646","numericCode":"004","population":38928341,"region":"Asia","regionalBlocs":[{"acronym":"SAARC","name":"South Asian Association for Regional Cooperation"}],"subregion":"Southern Asia","timezones":["UTC+04:30"],"topLevelDomain":[".af"],"translations":{"br":"Afeganist\u00e3o","de":"Afghanistan","es":"Afganist\u00e1n","fa":"\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646","fr":"Afghanistan","hr":"Afganistan","it":"Afghanistan","ja":"\u30a2\u30d5\u30ac\u30cb\u30b9\u30bf\u30f3","nl":"Afghanistan","pt":"Afeganist\u00e3o","ru":"\u0410\u0444\u0433\u0430\u043d\u0438\u0441\u0442\u0430\u043d","pl":"Afganistan","cs":"Afg\u00e1nist\u00e1n","zh":"\u963f\u5bcc\u6c57\u4f0a\u65af\u5170\u5171\u548c\u56fd","hu":"Afganiszt\u00e1n","se":"Afghanistan"},"cioc":"AFG"},{"alpha2Code":"AX","alpha3Code":"ALA","altSpellings":["AX","Aaland","Aland","Ahvenanmaa"],"area":1580,"borders":[],"callingCodes":["358"],"capital":"Mariehamn","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"\u00c5landish","flag":"https://restcountries.eu/data/ala.svg","languages":[{"iso639_1":"sv","iso639_2":"swe","name":"Swedish","nativeName":"svenska"}],"latlng":[60.116667,19.9],"name":"\u00c5land Islands","nativeName":"\u00c5land","numericCode":"248","population":28875,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Northern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".ax"],"translations":{"br":"Ilhas de Aland","de":"\u00c5land","es":"Alandia","fa":"\u062c\u0632\u0627\u06cc\u0631 \u0627\u0644\u0646\u062f","fr":"\u00c5land","hr":"\u00c5landski otoci","it":"Isole Aland","ja":"\u30aa\u30fc\u30e9\u30f3\u30c9\u8af8\u5cf6","nl":"\u00c5landeilanden","pt":"Ilhas de Aland","pl":"Wyspy Alandzkie","cs":"\u00c5landy","ru":"\u00c5land Islands","zh":"\u5965\u5170\u7fa4\u5c9b","hu":"\u00c5land-szigetek","se":"\u00c5land"},"cioc":""},{"alpha2Code":"AL","alpha3Code":"ALB","altSpellings":["AL","Shqip\u00ebri","Shqip\u00ebria","Shqipnia"],"area":28748,"borders":["MNE","GRC","MKD","UNK"],"callingCodes":["355"],"capital":"Tirana","currencies":[{"code":"ALL","name":"Albanian lek","symbol":"L"}],"demonym":"Albanian","flag":"https://restcountries.eu/data/alb.svg","gini":34.5,"languages":[{"iso639_1":"sq","iso639_2":"sqi","name":"Albanian","nativeName":"Shqip"}],"latlng":[41,20],"name":"Albania","nativeName":"Shqip\u00ebria","numericCode":"008","population":2837743,"region":"Europe","regionalBlocs":[{"acronym":"CEFTA","name":"Central European Free Trade Agreement"}],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".al"],"translations":{"br":"Alb\u00e2nia","de":"Albanien","es":"Albania","fa":"\u0622\u0644\u0628\u0627\u0646\u06cc","fr":"Albanie","hr":"Albanija","it":"Albania","ja":"\u30a2\u30eb\u30d0\u30cb\u30a2","nl":"Albani\u00eb","pt":"Alb\u00e2nia","ru":"\u0410\u043b\u0431\u0430\u043d\u0438\u044f","pl":"Albania","cs":"Alb\u00e1nie","zh":"\u963f\u5c14\u5df4\u5c3c\u4e9a\u5171\u548c\u56fd","hu":"Alb\u00e1nia","se":"Albanien"},"cioc":"ALB"},{"alpha2Code":"DZ","alpha3Code":"DZA","altSpellings":["DZ","Dzayer","Alg\u00e9rie"],"area":2381741,"borders":["TUN","LBY","NER","ESH","MRT","MLI","MAR"],"callingCodes":["213"],"capital":"Algiers","currencies":[{"code":"DZD","name":"Algerian dinar","symbol":"\u062f.\u062c"}],"demonym":"Algerian","flag":"https://restcountries.eu/data/dza.svg","gini":35.3,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[28,3],"name":"Algeria","nativeName":"\u0627\u0644\u062c\u0632\u0627\u0626\u0631","numericCode":"012","population":43851043,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]},{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Northern Africa","timezones":["UTC+01:00"],"topLevelDomain":[".dz"],"translations":{"br":"Arg\u00e9lia","de":"Algerien","es":"Argelia","fa":"\u0627\u0644\u062c\u0632\u0627\u06cc\u0631","fr":"Alg\u00e9rie","hr":"Al\u017eir","it":"Algeria","ja":"\u30a2\u30eb\u30b8\u30a7\u30ea\u30a2","nl":"Algerije","pt":"Arg\u00e9lia","ru":"\u0410\u043b\u0436\u0438\u0440","pl":"Algieria","cs":"Al\u017e\u00edrsko","zh":"\u963f\u5c14\u53ca\u5229\u4e9a\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd","hu":"Alg\u00e9ria","se":"Algeriet"},"cioc":"ALG"},{"alpha2Code":"AS","alpha3Code":"ASM","altSpellings":["AS","Amerika S\u0101moa","Amelika S\u0101moa","S\u0101moa Amelika"],"area":199,"borders":[],"callingCodes":["1"],"capital":"Pago Pago","currencies":[{"code":"USD","name":"United States Dollar","symbol":"$"}],"demonym":"American Samoan","flag":"https://restcountries.eu/data/asm.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"sm","iso639_2":"smo","name":"Samoan","nativeName":"gagana fa'a Samoa"}],"latlng":[-14.33333333,-170],"name":"American Samoa","nativeName":"American Samoa","numericCode":"016","population":55197,"region":"Oceania","regionalBlocs":[],"subregion":"Polynesia","timezones":["UTC-11:00"],"topLevelDomain":[".as"],"translations":{"br":"Samoa Americana","de":"Amerikanisch-Samoa","es":"Samoa Americana","fa":"\u0633\u0627\u0645\u0648\u0622\u06cc \u0622\u0645\u0631\u06cc\u06a9\u0627","fr":"Samoa am\u00e9ricaines","hr":"Ameri\u010dka Samoa","it":"Samoa Americane","ja":"\u30a2\u30e1\u30ea\u30ab\u9818\u30b5\u30e2\u30a2","nl":"Amerikaans Samoa","pt":"Samoa Americana","pl":"Samoa Ameryka\u0144skie","cs":"Americk\u00e1 Samoa","ru":"American Samoa","zh":"\u7f8e\u5c5e\u8428\u6469\u4e9a","hu":"Amerikai Szamoa","se":"Amerikanska Samoa"},"cioc":"ASA"},{"alpha2Code":"AD","alpha3Code":"AND","altSpellings":["AD","Principality of Andorra","Principat d'Andorra"],"area":468,"borders":["FRA","ESP"],"callingCodes":["376"],"capital":"Andorra la Vella","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Andorran","flag":"https://restcountries.eu/data/and.svg","languages":[{"iso639_1":"ca","iso639_2":"cat","name":"Catalan","nativeName":"catal\u00e0"}],"latlng":[42.5,1.5],"name":"Andorra","nativeName":"Andorra","numericCode":"020","population":77265,"region":"Europe","regionalBlocs":[],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".ad"],"translations":{"br":"Andorra","de":"Andorra","es":"Andorra","fa":"\u0622\u0646\u062f\u0648\u0631\u0627","fr":"Andorre","hr":"Andora","it":"Andorra","ja":"\u30a2\u30f3\u30c9\u30e9","nl":"Andorra","pt":"Andorra","ru":"\u0410\u043d\u0434\u043e\u0440\u0440\u0430","pl":"Andora","cs":"Andorra","zh":"\u5b89\u9053\u5c14\u516c\u56fd","hu":"Andorra","se":"Andorra"},"cioc":"AND"},{"alpha2Code":"AO","alpha3Code":"AGO","altSpellings":["AO","Rep\u00fablica de Angola","\u0281\u025bpublika de an'\u0261\u0254la"],"area":1246700,"borders":["COG","COD","ZMB","NAM"],"callingCodes":["244"],"capital":"Luanda","currencies":[{"code":"AOA","name":"Angolan kwanza","symbol":"Kz"}],"demonym":"Angolan","flag":"https://restcountries.eu/data/ago.svg","gini":58.6,"languages":[{"iso639_1":"pt","iso639_2":"por","name":"Portuguese","nativeName":"Portugu\u00eas"}],"latlng":[-12.5,18.5],"name":"Angola","nativeName":"Angola","numericCode":"024","population":32866268,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Middle Africa","timezones":["UTC+01:00"],"topLevelDomain":[".ao"],"translations":{"br":"Angola","de":"Angola","es":"Angola","fa":"\u0622\u0646\u06af\u0648\u0644\u0627","fr":"Angola","hr":"Angola","it":"Angola","ja":"\u30a2\u30f3\u30b4\u30e9","nl":"Angola","pt":"Angola","ru":"\u0410\u043d\u0433\u043e\u043b\u0430","pl":"Angola","cs":"Angola","zh":"\u5b89\u54e5\u62c9\u5171\u548c\u56fd","hu":"Angola","se":"Angola"},"cioc":"ANG"},{"alpha2Code":"AI","alpha3Code":"AIA","altSpellings":["AI"],"area":91,"borders":[],"callingCodes":["1"],"capital":"The Valley","currencies":[{"code":"XCD","name":"East Caribbean dollar","symbol":"$"}],"demonym":"Anguillian","flag":"https://restcountries.eu/data/aia.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[18.25,-63.16666666],"name":"Anguilla","nativeName":"Anguilla","numericCode":"660","population":13452,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".ai"],"translations":{"br":"Anguila","de":"Anguilla","es":"Anguilla","fa":"\u0622\u0646\u06af\u0648\u06cc\u0644\u0627","fr":"Anguilla","hr":"Angvila","it":"Anguilla","ja":"\u30a2\u30f3\u30ae\u30e9","nl":"Anguilla","pt":"Anguila","pl":"Anguilla","cs":"Anguilla","ru":"Anguilla","zh":"\u5b89\u572d\u62c9","hu":"Anguilla","se":"Anguilla"},"cioc":""},{"alpha2Code":"AQ","alpha3Code":"ATA","altSpellings":[],"area":14000000,"borders":[],"callingCodes":["672"],"capital":"","currencies":[{"code":"AUD","name":"Australian dollar","symbol":"$"},{"code":"GBP","name":"British pound","symbol":"\u00a3"}],"demonym":"","flag":"https://restcountries.eu/data/ata.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"ru","iso639_2":"rus","name":"Russian","nativeName":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439"}],"latlng":[-74.65,4.48],"name":"Antarctica","nativeName":"Antarctica","numericCode":"010","population":1000,"region":"Polar","regionalBlocs":[],"subregion":"","timezones":["UTC-03:00","UTC+03:00","UTC+05:00","UTC+06:00","UTC+07:00","UTC+08:00","UTC+10:00","UTC+12:00"],"topLevelDomain":[".aq"],"translations":{"br":"Ant\u00e1rtida","de":"Antarktika","es":"Ant\u00e1rtida","fa":"\u062c\u0646\u0648\u0628\u06af\u0627\u0646","fr":"Antarctique","hr":"Antarktika","it":"Antartide","ja":"\u5357\u6975\u5927\u9678","nl":"Antarctica","pt":"Ant\u00e1rctida","pl":"Antarktyda","cs":"Antarktida","ru":"Antarctica","zh":"\u5357\u6781\u6d32","hu":"Antarktisz","se":"Antarktis"},"cioc":""},{"alpha2Code":"AG","alpha3Code":"ATG","altSpellings":["AG"],"area":442,"borders":[],"callingCodes":["1"],"capital":"Saint John's","currencies":[{"code":"XCD","name":"East Caribbean dollar","symbol":"$"}],"demonym":"Antiguan, Barbudan","flag":"https://restcountries.eu/data/atg.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[17.05,-61.8],"name":"Antigua and Barbuda","nativeName":"Antigua and Barbuda","numericCode":"028","population":97928,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".ag"],"translations":{"br":"Ant\u00edgua e Barbuda","de":"Antigua und Barbuda","es":"Antigua y Barbuda","fa":"\u0622\u0646\u062a\u06cc\u06af\u0648\u0627 \u0648 \u0628\u0627\u0631\u0628\u0648\u062f\u0627","fr":"Antigua-et-Barbuda","hr":"Antigva i Barbuda","it":"Antigua e Barbuda","ja":"\u30a2\u30f3\u30c6\u30a3\u30b0\u30a2\u30fb\u30d0\u30fc\u30d6\u30fc\u30c0","nl":"Antigua en Barbuda","pt":"Ant\u00edgua e Barbuda","ru":"\u0410\u043d\u0442\u0438\u0433\u0443\u0430 \u0438 \u0411\u0430\u0440\u0431\u0443\u0434\u0430","pl":"Antigua i Barbuda","cs":"Antigua a Barbuda","zh":"\u5b89\u63d0\u74dc\u548c\u5df4\u5e03\u8fbe","hu":"Antigua \u00e9s Barbuda","se":"Antigua och Barbuda"},"cioc":"ANT"},{"alpha2Code":"AR","alpha3Code":"ARG","altSpellings":["AR","Argentine Republic","Rep\u00fablica Argentina"],"area":2780400,"borders":["BOL","BRA","CHL","PRY","URY"],"callingCodes":["54"],"capital":"Buenos Aires","currencies":[{"code":"ARS","name":"Argentine peso","symbol":"$"}],"demonym":"Argentinean","flag":"https://restcountries.eu/data/arg.svg","gini":44.5,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"},{"iso639_1":"gn","iso639_2":"grn","name":"Guaran\u00ed","nativeName":"Ava\u00f1e'\u1ebd"}],"latlng":[-34,-64],"name":"Argentina","nativeName":"Argentina","numericCode":"032","population":45376763,"region":"Americas","regionalBlocs":[{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-03:00"],"topLevelDomain":[".ar"],"translations":{"br":"Argentina","de":"Argentinien","es":"Argentina","fa":"\u0622\u0631\u0698\u0627\u0646\u062a\u06cc\u0646","fr":"Argentine","hr":"Argentina","it":"Argentina","ja":"\u30a2\u30eb\u30bc\u30f3\u30c1\u30f3","nl":"Argentini\u00eb","pt":"Argentina","ru":"\u0410\u0440\u0433\u0435\u043d\u0442\u0438\u043d\u0430","pl":"Argentyna","cs":"Argentina","zh":"\u963f\u6839\u5ef7\u5171\u548c\u56fd","hu":"Argent\u00edna","se":"Argentina"},"cioc":"ARG"},{"alpha2Code":"AM","alpha3Code":"ARM","altSpellings":["AM","Hayastan","Republic of Armenia","\u0540\u0561\u0575\u0561\u057d\u057f\u0561\u0576\u056b \u0540\u0561\u0576\u0580\u0561\u057a\u0565\u057f\u0578\u0582\u0569\u0575\u0578\u0582\u0576"],"area":29743,"borders":["AZE","GEO","IRN","TUR"],"callingCodes":["374"],"capital":"Yerevan","currencies":[{"code":"AMD","name":"Armenian dram","symbol":"֏"}],"demonym":"Armenian","flag":"https://restcountries.eu/data/arm.svg","gini":30.9,"languages":[{"iso639_1":"hy","iso639_2":"hye","name":"Armenian","nativeName":"\u0540\u0561\u0575\u0565\u0580\u0565\u0576"}],"latlng":[40,45],"name":"Armenia","nativeName":"\u0540\u0561\u0575\u0561\u057d\u057f\u0561\u0576","numericCode":"051","population":2963234,"region":"Asia","regionalBlocs":[{"acronym":"EEU","name":"Eurasian Economic Union","otherAcronyms":["EAEU"]}],"subregion":"Western Asia","timezones":["UTC+04:00"],"topLevelDomain":[".am"],"translations":{"br":"Arm\u00eania","de":"Armenien","es":"Armenia","fa":"\u0627\u0631\u0645\u0646\u0633\u062a\u0627\u0646","fr":"Arm\u00e9nie","hr":"Armenija","it":"Armenia","ja":"\u30a2\u30eb\u30e1\u30cb\u30a2","nl":"Armeni\u00eb","pt":"Arm\u00e9nia","ru":"\u0410\u0440\u043c\u0435\u043d\u0438\u044f","pl":"Armenia","cs":"Arm\u00e9nie","zh":"\u4e9a\u7f8e\u5c3c\u4e9a\u5171\u548c\u56fd","hu":"\u00d6rm\u00e9nyorsz\u00e1g","se":"Armenien"},"cioc":"ARM"},{"alpha2Code":"AW","alpha3Code":"ABW","altSpellings":["AW"],"area":180,"borders":[],"callingCodes":["297"],"capital":"Oranjestad","currencies":[{"code":"AWG","name":"Aruban florin","symbol":"\u0192"}],"demonym":"Aruban","flag":"https://restcountries.eu/data/abw.svg","languages":[{"iso639_1":"nl","iso639_2":"nld","name":"Dutch","nativeName":"Nederlands"},{"iso639_1":"","iso639_2":"pap","name":"Papiamento","nativeName":"Papiamentu"}],"latlng":[12.5,-69.96666666],"name":"Aruba","nativeName":"Aruba","numericCode":"533","population":106766,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".aw"],"translations":{"br":"Aruba","de":"Aruba","es":"Aruba","fa":"\u0622\u0631\u0648\u0628\u0627","fr":"Aruba","hr":"Aruba","it":"Aruba","ja":"\u30a2\u30eb\u30d0","nl":"Aruba","pt":"Aruba","pl":"Aruba","cs":"Aruba","ru":"Aruba","zh":"\u963f\u9c81\u5df4","hu":"Aruba","se":"Aruba"},"cioc":"ARU"},{"alpha2Code":"AU","alpha3Code":"AUS","altSpellings":["AU"],"area":7692024,"borders":[],"callingCodes":["61"],"capital":"Canberra","currencies":[{"code":"AUD","name":"Australian dollar","symbol":"$"}],"demonym":"Australian","flag":"https://restcountries.eu/data/aus.svg","gini":30.5,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-27,133],"name":"Australia","nativeName":"Australia","numericCode":"036","population":25687041,"region":"Oceania","regionalBlocs":[],"subregion":"Australia and New Zealand","timezones":["UTC+05:00","UTC+06:30","UTC+07:00","UTC+08:00","UTC+09:30","UTC+10:00","UTC+10:30","UTC+11:30"],"topLevelDomain":[".au"],"translations":{"br":"Austr\u00e1lia","de":"Australien","es":"Australia","fa":"\u0627\u0633\u062a\u0631\u0627\u0644\u06cc\u0627","fr":"Australie","hr":"Australija","it":"Australia","ja":"\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2","nl":"Australi\u00eb","pt":"Austr\u00e1lia","ru":"\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f","pl":"Australia","cs":"Austr\u00e1lie","zh":"\u6fb3\u5927\u5229\u4e9a\u8054\u90a6","hu":"Ausztr\u00e1lia","se":"Australien"},"cioc":"AUS"},{"alpha2Code":"AT","alpha3Code":"AUT","altSpellings":["AT","\u00d6sterreich","Osterreich","Oesterreich"],"area":83871,"borders":["CZE","DEU","HUN","ITA","LIE","SVK","SVN","CHE"],"callingCodes":["43"],"capital":"Vienna","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Austrian","flag":"https://restcountries.eu/data/aut.svg","gini":26,"languages":[{"iso639_1":"de","iso639_2":"deu","name":"German","nativeName":"Deutsch"}],"latlng":[47.33333333,13.33333333],"name":"Austria","nativeName":"\u00d6sterreich","numericCode":"040","population":8917205,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Western Europe","timezones":["UTC+01:00"],"topLevelDomain":[".at"],"translations":{"br":"\u00c1ustria","de":"\u00d6sterreich","es":"Austria","fa":"\u0627\u062a\u0631\u06cc\u0634","fr":"Autriche","hr":"Austrija","it":"Austria","ja":"\u30aa\u30fc\u30b9\u30c8\u30ea\u30a2","nl":"Oostenrijk","pt":"\u00c1ustria","ru":"\u0410\u0432\u0441\u0442\u0440\u0438\u044f","pl":"Austria","cs":"Rakousko","zh":"\u5965\u5730\u5229\u5171\u548c\u56fd","hu":"Ausztria","se":"\u00d6sterrike"},"cioc":"AUT"},{"alpha2Code":"AZ","alpha3Code":"AZE","altSpellings":["AZ","Republic of Azerbaijan","Az\u0259rbaycan Respublikas\u0131"],"area":86600,"borders":["ARM","GEO","IRN","RUS","TUR"],"callingCodes":["994"],"capital":"Baku","currencies":[{"code":"AZN","name":"Azerbaijani manat","symbol":"₼"}],"demonym":"Azerbaijani","flag":"https://restcountries.eu/data/aze.svg","gini":33.7,"languages":[{"iso639_1":"az","iso639_2":"aze","name":"Azerbaijani","nativeName":"az\u0259rbaycan dili"}],"latlng":[40.5,47.5],"name":"Azerbaijan","nativeName":"Az\u0259rbaycan","numericCode":"031","population":10110116,"region":"Asia","regionalBlocs":[],"subregion":"Western Asia","timezones":["UTC+04:00"],"topLevelDomain":[".az"],"translations":{"br":"Azerbaij\u00e3o","de":"Aserbaidschan","es":"Azerbaiy\u00e1n","fa":"\u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646","fr":"Azerba\u00efdjan","hr":"Azerbajd\u017ean","it":"Azerbaijan","ja":"\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3","nl":"Azerbeidzjan","pt":"Azerbaij\u00e3o","ru":"\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d","pl":"Azerbejd\u017can","cs":"\u00c1zerb\u00e1jd\u017e\u00e1n","zh":"\u963f\u585e\u62dc\u7586\u5171\u548c\u56fd","hu":"Azerbajdzs\u00e1n","se":"Azerbajdzjan"},"cioc":"AZE"},{"alpha2Code":"BS","alpha3Code":"BHS","altSpellings":["BS","Commonwealth of the Bahamas"],"area":13943,"borders":[],"callingCodes":["1"],"capital":"Nassau","currencies":[{"code":"BSD","name":"Bahamian dollar","symbol":"$"}],"demonym":"Bahamian","flag":"https://restcountries.eu/data/bhs.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[24.25,-76],"name":"Bahamas","nativeName":"Bahamas","numericCode":"044","population":393248,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-05:00"],"topLevelDomain":[".bs"],"translations":{"br":"Bahamas","de":"Bahamas","es":"Bahamas","fa":"\u0628\u0627\u0647\u0627\u0645\u0627","fr":"Bahamas","hr":"Bahami","it":"Bahamas","ja":"\u30d0\u30cf\u30de","nl":"Bahama\u2019s","pt":"Baamas","ru":"\u0411\u0430\u0433\u0430\u043c\u0441\u043a\u0438\u0435 \u041e\u0441\u0442\u0440\u043e\u0432\u0430","pl":"Bahamy","cs":"Bahamy","zh":"\u5df4\u54c8\u9a6c\u8054\u90a6","hu":"Bahama-szigetek","se":"Bahamas"},"cioc":"BAH"},{"alpha2Code":"BH","alpha3Code":"BHR","altSpellings":["BH","Kingdom of Bahrain","Mamlakat al-Ba\u1e25rayn"],"area":765,"borders":[],"callingCodes":["973"],"capital":"Manama","currencies":[{"code":"BHD","name":"Bahraini dinar","symbol":".\u062f.\u0628"}],"demonym":"Bahraini","flag":"https://restcountries.eu/data/bhr.svg","gini":null,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[26,50.55],"name":"Bahrain","nativeName":"\u200f\u0627\u0644\u0628\u062d\u0631\u064a\u0646","numericCode":"048","population":1701583,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+03:00"],"topLevelDomain":[".bh"],"translations":{"br":"Bahrein","de":"Bahrain","es":"Bahrein","fa":"\u0628\u062d\u0631\u06cc\u0646","fr":"Bahre\u00efn","hr":"Bahrein","it":"Bahrein","ja":"\u30d0\u30fc\u30ec\u30fc\u30f3","nl":"Bahrein","pt":"Bar\u00e9m","ru":"\u0411\u0430\u0445\u0440\u0435\u0439\u043d","pl":"Bahrajn","cs":"Bahrajn","zh":"\u5df4\u6797\u738b\u56fd","hu":"Bahrein","se":"Bahrain"},"cioc":"BRN"},{"alpha2Code":"BD","alpha3Code":"BGD","altSpellings":["BD","People's Republic of Bangladesh","G\u00f4n\u00f4pr\u00f4jat\u00f4ntri Bangladesh"],"area":147570,"borders":["MMR","IND"],"callingCodes":["880"],"capital":"Dhaka","currencies":[{"code":"BDT","name":"Bangladeshi taka","symbol":"\u09f3"}],"demonym":"Bangladeshi","flag":"https://restcountries.eu/data/bgd.svg","gini":32.1,"languages":[{"iso639_1":"bn","iso639_2":"ben","name":"Bengali","nativeName":"\u09ac\u09be\u0982\u09b2\u09be"}],"latlng":[24,90],"name":"Bangladesh","nativeName":"Bangladesh","numericCode":"050","population":164689383,"region":"Asia","regionalBlocs":[{"acronym":"SAARC","name":"South Asian Association for Regional Cooperation"}],"subregion":"Southern Asia","timezones":["UTC+06:00"],"topLevelDomain":[".bd"],"translations":{"br":"Bangladesh","de":"Bangladesch","es":"Bangladesh","fa":"\u0628\u0646\u06af\u0644\u0627\u062f\u0634","fr":"Bangladesh","hr":"Banglade\u0161","it":"Bangladesh","ja":"\u30d0\u30f3\u30b0\u30e9\u30c7\u30b7\u30e5","nl":"Bangladesh","pt":"Bangladeche","ru":"\u0411\u0430\u043d\u0433\u043b\u0430\u0434\u0435\u0448","pl":"Bangladesz","cs":"Banglad\u00e9\u0161","zh":"\u5b5f\u52a0\u62c9\u4eba\u6c11\u5171\u548c\u56fd","hu":"Banglades","se":"Bangladesh"},"cioc":"BAN"},{"alpha2Code":"BB","alpha3Code":"BRB","altSpellings":["BB"],"area":430,"borders":[],"callingCodes":["1"],"capital":"Bridgetown","currencies":[{"code":"BBD","name":"Barbadian dollar","symbol":"$"}],"demonym":"Barbadian","flag":"https://restcountries.eu/data/brb.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[13.16666666,-59.53333333],"name":"Barbados","nativeName":"Barbados","numericCode":"052","population":287371,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".bb"],"translations":{"br":"Barbados","de":"Barbados","es":"Barbados","fa":"\u0628\u0627\u0631\u0628\u0627\u062f\u0648\u0633","fr":"Barbade","hr":"Barbados","it":"Barbados","ja":"\u30d0\u30eb\u30d0\u30c9\u30b9","nl":"Barbados","pt":"Barbados","ru":"\u0411\u0430\u0440\u0431\u0430\u0434\u043e\u0441","pl":"Barbados","cs":"Barbados","zh":"\u5df4\u5df4\u591a\u65af","hu":"Barbados","se":"Barbados"},"cioc":"BAR"},{"alpha2Code":"BY","alpha3Code":"BLR","altSpellings":["BY","Bielaru\u015b","Republic of Belarus","\u0411\u0435\u043b\u043e\u0440\u0443\u0441\u0441\u0438\u044f","\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c","Belorussiya","Respublika Belarus\u2019"],"area":207600,"borders":["LVA","LTU","POL","RUS","UKR"],"callingCodes":["375"],"capital":"Minsk","currencies":[{"code":"BYN","name":"New Belarusian ruble","symbol":"Br"},{"code":"BYR","name":"Old Belarusian ruble","symbol":"Br"}],"demonym":"Belarusian","flag":"https://restcountries.eu/data/blr.svg","gini":26.5,"languages":[{"iso639_1":"be","iso639_2":"bel","name":"Belarusian","nativeName":"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f \u043c\u043e\u0432\u0430"},{"iso639_1":"ru","iso639_2":"rus","name":"Russian","nativeName":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439"}],"latlng":[53,28],"name":"Belarus","nativeName":"\u0411\u0435\u043b\u0430\u0440\u0443\u0301\u0441\u044c","numericCode":"112","population":9398861,"region":"Europe","regionalBlocs":[{"acronym":"EEU","name":"Eurasian Economic Union","otherAcronyms":["EAEU"]}],"subregion":"Eastern Europe","timezones":["UTC+03:00"],"topLevelDomain":[".by"],"translations":{"br":"Bielorr\u00fassia","de":"Wei\u00dfrussland","es":"Bielorrusia","fa":"\u0628\u0644\u0627\u0631\u0648\u0633","fr":"Bi\u00e9lorussie","hr":"Bjelorusija","it":"Bielorussia","ja":"\u30d9\u30e9\u30eb\u30fc\u30b7","nl":"Wit-Rusland","pt":"Bielorr\u00fassia","ru":"\u0411\u0435\u043b\u043e\u0440\u0443\u0441\u0441\u0438\u044f","pl":"Bia\u0142oru\u015b","cs":"B\u011blorusko","zh":"\u767d\u4fc4\u7f57\u65af\u5171\u548c\u56fd","hu":"Feh\u00e9roroszorsz\u00e1g","se":"Vitryssland"},"cioc":"BLR"},{"alpha2Code":"BE","alpha3Code":"BEL","altSpellings":["BE","Belgi\u00eb","Belgie","Belgien","Belgique","Kingdom of Belgium","Koninkrijk Belgi\u00eb","Royaume de Belgique","K\u00f6nigreich Belgien"],"area":30528,"borders":["FRA","DEU","LUX","NLD"],"callingCodes":["32"],"capital":"Brussels","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Belgian","flag":"https://restcountries.eu/data/bel.svg","gini":33,"languages":[{"iso639_1":"nl","iso639_2":"nld","name":"Dutch","nativeName":"Nederlands"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"de","iso639_2":"deu","name":"German","nativeName":"Deutsch"}],"latlng":[50.83333333,4],"name":"Belgium","nativeName":"Belgi\u00eb","numericCode":"056","population":11555997,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Western Europe","timezones":["UTC+01:00"],"topLevelDomain":[".be"],"translations":{"br":"B\u00e9lgica","de":"Belgien","es":"B\u00e9lgica","fa":"\u0628\u0644\u0698\u06cc\u06a9","fr":"Belgique","hr":"Belgija","it":"Belgio","ja":"\u30d9\u30eb\u30ae\u30fc","nl":"Belgi\u00eb","pt":"B\u00e9lgica","ru":"\u0411\u0435\u043b\u044c\u0433\u0438\u044f","pl":"Belgia","cs":"Belgie","zh":"\u6bd4\u5229\u65f6\u738b\u56fd","hu":"Belgium","se":"Belgien"},"cioc":"BEL"},{"alpha2Code":"BZ","alpha3Code":"BLZ","altSpellings":["BZ"],"area":22966,"borders":["GTM","MEX"],"callingCodes":["501"],"capital":"Belmopan","currencies":[{"code":"BZD","name":"Belize dollar","symbol":"$"}],"demonym":"Belizean","flag":"https://restcountries.eu/data/blz.svg","gini":53.1,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[17.25,-88.75],"name":"Belize","nativeName":"Belize","numericCode":"084","population":397621,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]},{"acronym":"CAIS","name":"Central American Integration System","otherAcronyms":["SICA"],"otherNames":["Sistema de la Integraci\u00f3n Centroamericana,"]}],"subregion":"Central America","timezones":["UTC-06:00"],"topLevelDomain":[".bz"],"translations":{"br":"Belize","de":"Belize","es":"Belice","fa":"\u0628\u0644\u06cc\u0632","fr":"Belize","hr":"Belize","it":"Belize","ja":"\u30d9\u30ea\u30fc\u30ba","nl":"Belize","pt":"Belize","ru":"\u0411\u0435\u043b\u0438\u0437","pl":"Belize","cs":"Belize","zh":"\u4f2f\u5229\u5179","hu":"Belize","se":"Belize"},"cioc":"BIZ"},{"alpha2Code":"BJ","alpha3Code":"BEN","altSpellings":["BJ","Republic of Benin","R\u00e9publique du B\u00e9nin"],"area":112622,"borders":["BFA","NER","NGA","TGO"],"callingCodes":["229"],"capital":"Porto-Novo","currencies":[{"code":"XOF","name":"West African CFA franc","symbol":"Fr"}],"demonym":"Beninese","flag":"https://restcountries.eu/data/ben.svg","gini":38.6,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[9.5,2.25],"name":"Benin","nativeName":"B\u00e9nin","numericCode":"204","population":12123198,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC+01:00"],"topLevelDomain":[".bj"],"translations":{"br":"Benin","de":"Benin","es":"Ben\u00edn","fa":"\u0628\u0646\u06cc\u0646","fr":"B\u00e9nin","hr":"Benin","it":"Benin","ja":"\u30d9\u30ca\u30f3","nl":"Benin","pt":"Benim","ru":"\u0411\u0435\u043d\u0438\u043d","pl":"Benin","cs":"Benin","zh":"\u8d1d\u5b81\u5171\u548c\u56fd","hu":"Benin","se":"Benin"},"cioc":"BEN"},{"alpha2Code":"BM","alpha3Code":"BMU","altSpellings":["BM","The Islands of Bermuda","The Bermudas","Somers Isles"],"area":54,"borders":[],"callingCodes":["1"],"capital":"Hamilton","currencies":[{"code":"BMD","name":"Bermudian dollar","symbol":"$"}],"demonym":"Bermudian","flag":"https://restcountries.eu/data/bmu.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[32.33333333,-64.75],"name":"Bermuda","nativeName":"Bermuda","numericCode":"060","population":63903,"region":"Americas","regionalBlocs":[],"subregion":"Northern America","timezones":["UTC-04:00"],"topLevelDomain":[".bm"],"translations":{"br":"Bermudas","de":"Bermuda","es":"Bermudas","fa":"\u0628\u0631\u0645\u0648\u062f\u0627","fr":"Bermudes","hr":"Bermudi","it":"Bermuda","ja":"\u30d0\u30df\u30e5\u30fc\u30c0","nl":"Bermuda","pt":"Bermudas","pl":"Bermudy","cs":"Bermudy","ru":"Bermuda","zh":"\u767e\u6155\u5927","hu":"Bermuda","se":"Bermuda"},"cioc":"BER"},{"alpha2Code":"BT","alpha3Code":"BTN","altSpellings":["BT","Kingdom of Bhutan"],"area":38394,"borders":["CHN","IND"],"callingCodes":["975"],"capital":"Thimphu","currencies":[{"code":"BTN","name":"Bhutanese ngultrum","symbol":"Nu."},{"code":"INR","name":"Indian rupee","symbol":"\u20b9"}],"demonym":"Bhutanese","flag":"https://restcountries.eu/data/btn.svg","gini":38.1,"languages":[{"iso639_1":"dz","iso639_2":"dzo","name":"Dzongkha","nativeName":"\u0f62\u0fab\u0f7c\u0f44\u0f0b\u0f41"}],"latlng":[27.5,90.5],"name":"Bhutan","nativeName":"\u02bcbrug-yul","numericCode":"064","population":771612,"region":"Asia","regionalBlocs":[{"acronym":"SAARC","name":"South Asian Association for Regional Cooperation"}],"subregion":"Southern Asia","timezones":["UTC+06:00"],"topLevelDomain":[".bt"],"translations":{"br":"But\u00e3o","de":"Bhutan","es":"But\u00e1n","fa":"\u0628\u0648\u062a\u0627\u0646","fr":"Bhoutan","hr":"Butan","it":"Bhutan","ja":"\u30d6\u30fc\u30bf\u30f3","nl":"Bhutan","pt":"But\u00e3o","ru":"\u0411\u0443\u0442\u0430\u043d","pl":"Bhutan","cs":"Bh\u00fat\u00e1n","zh":"\u4e0d\u4e39\u738b\u56fd","hu":"Bhut\u00e1n","se":"Bhutan"},"cioc":"BHU"},{"alpha2Code":"BO","alpha3Code":"BOL","altSpellings":["BO","Buliwya","Wuliwya","Plurinational State of Bolivia","Estado Plurinacional de Bolivia","Buliwya Mamallaqta","Wuliwya Suyu","Tet\u00e3 Vol\u00edvia"],"area":1098581,"borders":["ARG","BRA","CHL","PRY","PER"],"callingCodes":["591"],"capital":"Sucre","currencies":[{"code":"BOB","name":"Bolivian boliviano","symbol":"Bs."}],"demonym":"Bolivian","flag":"https://restcountries.eu/data/bol.svg","gini":56.3,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"},{"iso639_1":"ay","iso639_2":"aym","name":"Aymara","nativeName":"aymar aru"},{"iso639_1":"qu","iso639_2":"que","name":"Quechua","nativeName":"Runa Simi"}],"latlng":[-17,-65],"name":"Bolivia (Plurinational State of)","nativeName":"Bolivia","numericCode":"068","population":11673029,"region":"Americas","regionalBlocs":[{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-04:00"],"topLevelDomain":[".bo"],"translations":{"br":"Bol\u00edvia","de":"Bolivien","es":"Bolivia","fa":"\u0628\u0648\u0644\u06cc\u0648\u06cc","fr":"Bolivie","hr":"Bolivija","it":"Bolivia","ja":"\u30dc\u30ea\u30d3\u30a2\u591a\u6c11\u65cf\u56fd","nl":"Bolivia","pt":"Bol\u00edvia","ru":"\u0411\u043e\u043b\u0438\u0432\u0438\u044f","pl":"Boliwia","cs":"Bol\u00edvie","zh":"\u591a\u6c11\u65cf\u73bb\u5229\u7ef4\u4e9a\u56fd","hu":"Bol\u00edvia","se":"Bolivia"},"cioc":"BOL"},{"alpha2Code":"BQ","alpha3Code":"BES","altSpellings":["BQ","Boneiru"],"area":294,"borders":[],"callingCodes":["599"],"capital":"Kralendijk","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Dutch","flag":"https://restcountries.eu/data/bes.svg","languages":[{"iso639_1":"nl","iso639_2":"nld","name":"Dutch","nativeName":"Nederlands"}],"latlng":[12.15,-68.266667],"name":"Bonaire, Sint Eustatius and Saba","nativeName":"Bonaire","numericCode":"535","population":17408,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".an",".nl"],"translations":{"br":"Bonaire","de":"Bonaire, Sint Eustatius und Saba","fa":"\u0628\u0648\u0646\u06cc\u0631","fr":"Bonaire, Saint-Eustache et Saba","it":"Bonaire, Saint-Eustache e Saba","pt":"Bonaire","pl":"Holandia Karaibska","cs":"Karibsk\u00e9 Nizozemsko","es":"Bonaire, Sint Eustatius and Saba","hr":"Bonaire, Sint Eustatius and Saba","ja":"Bonaire, Sint Eustatius and Saba","nl":"Caribisch Nederland","ru":"Bonaire, Sint Eustatius and Saba","zh":"\u8377\u862d\u52a0\u52d2\u6bd4\u5340","hu":"Bonaire","se":"Karibiska Nederl\u00e4nderna"}},{"alpha2Code":"BA","alpha3Code":"BIH","altSpellings":["BA","Bosnia-Herzegovina","\u0411\u043e\u0441\u043d\u0430 \u0438 \u0425\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430"],"area":51209,"borders":["HRV","MNE","SRB"],"callingCodes":["387"],"capital":"Sarajevo","currencies":[{"code":"BAM","name":"Bosnia and Herzegovina convertible mark","symbol":"KM"}],"demonym":"Bosnian, Herzegovinian","flag":"https://restcountries.eu/data/bih.svg","gini":36.2,"languages":[{"iso639_1":"bs","iso639_2":"bos","name":"Bosnian","nativeName":"bosanski jezik"},{"iso639_1":"hr","iso639_2":"hrv","name":"Croatian","nativeName":"hrvatski jezik"},{"iso639_1":"sr","iso639_2":"srp","name":"Serbian","nativeName":"\u0441\u0440\u043f\u0441\u043a\u0438 \u0458\u0435\u0437\u0438\u043a"}],"latlng":[44,18],"name":"Bosnia and Herzegovina","nativeName":"Bosna i Hercegovina","numericCode":"070","population":3280815,"region":"Europe","regionalBlocs":[{"acronym":"CEFTA","name":"Central European Free Trade Agreement"}],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".ba"],"translations":{"br":"B\u00f3snia e Herzegovina","de":"Bosnien und Herzegowina","es":"Bosnia y Herzegovina","fa":"\u0628\u0648\u0633\u0646\u06cc \u0648 \u0647\u0631\u0632\u06af\u0648\u06cc\u0646","fr":"Bosnie-Herz\u00e9govine","hr":"Bosna i Hercegovina","it":"Bosnia ed Erzegovina","ja":"\u30dc\u30b9\u30cb\u30a2\u30fb\u30d8\u30eb\u30c4\u30a7\u30b4\u30d3\u30ca","nl":"Bosni\u00eb en Herzegovina","pt":"B\u00f3snia e Herzegovina","ru":"\u0411\u043e\u0441\u043d\u0438\u044f \u0438 \u0413\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430","pl":"Bo\u015bnia i Hercegowina","cs":"Bosna a Hercegovina","zh":"\u6ce2\u65af\u5c3c\u4e9a\u548c\u9ed1\u585e\u54e5\u7ef4\u90a3","hu":"Bosznia-Hercegovina","se":"Bosnien och Hercegovina"},"cioc":"BIH"},{"alpha2Code":"BW","alpha3Code":"BWA","altSpellings":["BW","Republic of Botswana","Lefatshe la Botswana"],"area":582000,"borders":["NAM","ZAF","ZMB","ZWE"],"callingCodes":["267"],"capital":"Gaborone","currencies":[{"code":"BWP","name":"Botswana pula","symbol":"P"}],"demonym":"Motswana","flag":"https://restcountries.eu/data/bwa.svg","gini":61,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"tn","iso639_2":"tsn","name":"Tswana","nativeName":"Setswana"}],"latlng":[-22,24],"name":"Botswana","nativeName":"Botswana","numericCode":"072","population":2351625,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Southern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".bw"],"translations":{"br":"Botsuana","de":"Botswana","es":"Botswana","fa":"\u0628\u0648\u062a\u0633\u0648\u0627\u0646\u0627","fr":"Botswana","hr":"Bocvana","it":"Botswana","ja":"\u30dc\u30c4\u30ef\u30ca","nl":"Botswana","pt":"Botsuana","ru":"\u0411\u043e\u0442\u0441\u0432\u0430\u043d\u0430","pl":"Botswana","cs":"Botswana","zh":"\u535a\u8328\u74e6\u7eb3\u5171\u548c\u56fd","hu":"Botswana","se":"Botswana"},"cioc":"BOT"},{"alpha2Code":"BV","alpha3Code":"BVT","altSpellings":["BV","Bouvet\u00f8ya","Bouvet-\u00f8ya"],"area":49,"borders":[],"callingCodes":["47"],"capital":"","currencies":[{"code":"NOK","name":"Norwegian krone","symbol":"kr"}],"demonym":"","flag":"https://restcountries.eu/data/bvt.svg","languages":[{"iso639_1":"no","iso639_2":"nor","name":"Norwegian","nativeName":"Norsk"},{"iso639_1":"nb","iso639_2":"nob","name":"Norwegian Bokm\u00e5l","nativeName":"Norsk bokm\u00e5l"},{"iso639_1":"nn","iso639_2":"nno","name":"Norwegian Nynorsk","nativeName":"Norsk nynorsk"}],"latlng":[-54.43333333,3.4],"name":"Bouvet Island","nativeName":"Bouvet\u00f8ya","numericCode":"074","population":0,"region":"Polar","regionalBlocs":[],"subregion":"","timezones":["UTC+01:00"],"topLevelDomain":[".bv"],"translations":{"br":"Ilha Bouvet","de":"Bouvetinsel","es":"Isla Bouvet","fa":"\u062c\u0632\u06cc\u0631\u0647 \u0628\u0648\u0648\u0647","fr":"\u00cele Bouvet","hr":"Otok Bouvet","it":"Isola Bouvet","ja":"\u30d6\u30fc\u30d9\u5cf6","nl":"Bouveteiland","pt":"Ilha Bouvet","pl":"Wyspa Bouveta","cs":"Bouvet\u016fv ostrov","ru":"Bouvet Island","zh":"\u5e03\u7ef4\u5c9b","hu":"Bouvet-sziget","se":"Bouvet\u00f6n"},"cioc":""},{"alpha2Code":"BR","alpha3Code":"BRA","altSpellings":["BR","Brasil","Federative Republic of Brazil","Rep\u00fablica Federativa do Brasil"],"area":8515767,"borders":["ARG","BOL","COL","FRA","GUF","GUY","PRY","PER","SUR","URY","VEN"],"callingCodes":["55"],"capital":"Bras\u00edlia","currencies":[{"code":"BRL","name":"Brazilian real","symbol":"R$"}],"demonym":"Brazilian","flag":"https://restcountries.eu/data/bra.svg","gini":54.7,"languages":[{"iso639_1":"pt","iso639_2":"por","name":"Portuguese","nativeName":"Portugu\u00eas"}],"latlng":[-10,-55],"name":"Brazil","nativeName":"Brasil","numericCode":"076","population":212559409,"region":"Americas","regionalBlocs":[{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-05:00","UTC-04:00","UTC-03:00","UTC-02:00"],"topLevelDomain":[".br"],"translations":{"br":"Brasil","de":"Brasilien","es":"Brasil","fa":"\u0628\u0631\u0632\u06cc\u0644","fr":"Br\u00e9sil","hr":"Brazil","it":"Brasile","ja":"\u30d6\u30e9\u30b8\u30eb","nl":"Brazili\u00eb","pt":"Brasil","ru":"\u0411\u0440\u0430\u0437\u0438\u043b\u0438\u044f","pl":"Brazylia","cs":"Braz\u00edlie","zh":"\u5df4\u897f\u8054\u90a6\u5171\u548c\u56fd","hu":"Braz\u00edlia","se":"Brasilien"},"cioc":"BRA"},{"alpha2Code":"IO","alpha3Code":"IOT","altSpellings":["IO"],"area":60,"borders":[],"callingCodes":["246"],"capital":"Diego Garcia","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Indian","flag":"https://restcountries.eu/data/iot.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-6,71.5],"name":"British Indian Ocean Territory","nativeName":"British Indian Ocean Territory","numericCode":"086","population":3000,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+06:00"],"topLevelDomain":[".io"],"translations":{"br":"Territ\u00f3rio Brit\u00e2nico do Oceano \u00ed\u00cddico","de":"Britisches Territorium im Indischen Ozean","es":"Territorio Brit\u00e1nico del Oc\u00e9ano \u00cdndico","fa":"\u0642\u0644\u0645\u0631\u0648 \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627 \u062f\u0631 \u0627\u0642\u06cc\u0627\u0646\u0648\u0633 \u0647\u0646\u062f","fr":"Territoire britannique de l'oc\u00e9an Indien","hr":"Britanski Indijskooceanski teritorij","it":"Territorio britannico dell'oceano indiano","ja":"\u30a4\u30ae\u30ea\u30b9\u9818\u30a4\u30f3\u30c9\u6d0b\u5730\u57df","nl":"Britse Gebieden in de Indische Oceaan","pt":"Territ\u00f3rio Brit\u00e2nico do Oceano \u00cdndico","pl":"Brytyjskie Terytorium Oceanu Indyjskiego","cs":"Britsk\u00e9 indickooce\u00e1nsk\u00e9 \u00fazem\u00ed","ru":"British Indian Ocean Territory","zh":"\u82f1\u5c5e\u5370\u5ea6\u6d0b\u9886\u5730","hu":"Brit Indiai-\u00f3ce\u00e1ni Ter\u00fclet","se":"Brittiska territoriet i Indiska Oceanen"},"cioc":""},{"alpha2Code":"UM","alpha3Code":"UMI","altSpellings":["UM"],"borders":[],"callingCodes":["1"],"capital":"","currencies":[{"code":"USD","name":"United States Dollar","symbol":"$"}],"demonym":"American","flag":"https://restcountries.eu/data/umi.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[],"name":"United States Minor Outlying Islands","nativeName":"United States Minor Outlying Islands","numericCode":"581","population":300,"region":"Americas","regionalBlocs":[],"subregion":"Northern America","timezones":["UTC-11:00","UTC-10:00","UTC+12:00"],"topLevelDomain":[".us"],"translations":{"br":"Ilhas Menores Distantes dos Estados Unidos","de":"Kleinere Inselbesitzungen der Vereinigten Staaten","es":"Islas Ultramarinas Menores de Estados Unidos","fa":"\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u0686\u06a9 \u062d\u0627\u0634\u06cc\u0647\u200c\u0627\u06cc \u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647 \u0622\u0645\u0631\u06cc\u06a9\u0627","fr":"\u00celes mineures \u00e9loign\u00e9es des \u00c9tats-Unis","hr":"Mali udaljeni otoci SAD-a","it":"Isole minori esterne degli Stati Uniti d'America","ja":"\u5408\u8846\u56fd\u9818\u6709\u5c0f\u96e2\u5cf6","nl":"Kleine afgelegen eilanden van de Verenigde Staten","pt":"Ilhas Menores Distantes dos Estados Unidos","pl":"Dalekie Wyspy Mniejsze Stan\u00f3w Zjednoczonych","cs":"Men\u0161\u00ed odlehl\u00e9 ostrovy Spojen\u00fdch st\u00e1t\u016f americk\u00fdch","ru":"United States Minor Outlying Islands","zh":"\u7f8e\u56fd\u672c\u571f\u5916\u5c0f\u5c9b\u5c7f","hu":"Amerikai Egyes\u00fclt \u00c1llamok lakatlan k\u00fclbirtokai","se":"F\u00f6renta staternas mindre \u00f6ar i Oceanien och V\u00e4stindien"},"cioc":""},{"alpha2Code":"VG","alpha3Code":"VGB","altSpellings":["VG"],"area":151,"borders":[],"callingCodes":["1"],"capital":"Road Town","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Virgin Islander","flag":"https://restcountries.eu/data/vgb.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[18.431383,-64.62305],"name":"Virgin Islands (British)","nativeName":"British Virgin Islands","numericCode":"092","population":30237,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".vg"],"translations":{"br":"Ilhas Virgens Brit\u00e2nicas","de":"Britische Jungferninseln","es":"Islas V\u00edrgenes del Reino Unido","fa":"\u062c\u0632\u0627\u06cc\u0631 \u0648\u06cc\u0631\u062c\u06cc\u0646 \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627","fr":"\u00celes Vierges britanniques","hr":"Britanski Djevi\u010danski Otoci","it":"Isole Vergini Britanniche","ja":"\u30a4\u30ae\u30ea\u30b9\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6","nl":"Britse Maagdeneilanden","pt":"Ilhas Virgens Brit\u00e2nicas","pl":"Brytyjskie Wyspy Dziewicze","cs":"Britsk\u00e9 Panensk\u00e9 ostrovy","ru":"Virgin Islands (British)","zh":"\u82f1\u5c5e\u7ef4\u5c14\u4eac\u7fa4\u5c9b","hu":"Brit Virgin-szigetek","se":"Brittiska Jungfru\u00f6arna"},"cioc":"IVB"},{"alpha2Code":"VI","alpha3Code":"VIR","altSpellings":["VI","USVI","American Virgin Islands","U.S. Virgin Islands"],"area":346.36,"borders":[],"callingCodes":["1 340"],"capital":"Charlotte Amalie","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Virgin Islander","flag":"https://restcountries.eu/data/vir.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[18.34,-64.93],"name":"Virgin Islands (U.S.)","nativeName":"Virgin Islands of the United States","numericCode":"850","population":106290,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".vi"],"translations":{"br":"Ilhas Virgens Americanas","de":"Amerikanische Jungferninseln","es":"Islas V\u00edrgenes de los Estados Unidos","fa":"\u062c\u0632\u0627\u06cc\u0631 \u0648\u06cc\u0631\u062c\u06cc\u0646 \u0622\u0645\u0631\u06cc\u06a9\u0627","fr":"\u00celes Vierges des \u00c9tats-Unis","it":"Isole Vergini americane","ja":"\u30a2\u30e1\u30ea\u30ab\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6","nl":"Verenigde Staten Maagdeneilanden","pt":"Ilhas Virgens Americanas","pl":"Wyspy Dziewicze Stan\u00f3w Zjednoczonych","cs":"Americk\u00e9 Panensk\u00e9 ostrovy","hr":"Virgin Islands (U.S.)","ru":"Virgin Islands (U.S.)","zh":"\u7f8e\u5c5e\u7ef4\u5c14\u4eac\u7fa4\u5c9b","hu":"Amerikai Virgin-szigetek","se":"Amerikanska Jungfru\u00f6arna"},"cioc":"ISV"},{"alpha2Code":"BN","alpha3Code":"BRN","altSpellings":["BN","Nation of Brunei","The Abode of Peace"],"area":5765,"borders":["MYS"],"callingCodes":["673"],"capital":"Bandar Seri Begawan","currencies":[{"code":"BND","name":"Brunei dollar","symbol":"$"},{"code":"SGD","name":"Singapore dollar","symbol":"$"}],"demonym":"Bruneian","flag":"https://restcountries.eu/data/brn.svg","languages":[{"iso639_1":"ms","iso639_2":"msa","name":"Malay","nativeName":"bahasa Melayu"}],"latlng":[4.5,114.66666666],"name":"Brunei Darussalam","nativeName":"Negara Brunei Darussalam","numericCode":"096","population":437483,"region":"Asia","regionalBlocs":[{"acronym":"ASEAN","name":"Association of Southeast Asian Nations"}],"subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"topLevelDomain":[".bn"],"translations":{"br":"Brunei","de":"Brunei","es":"Brunei","fa":"\u0628\u0631\u0648\u0646\u0626\u06cc","fr":"Brunei","hr":"Brunej","it":"Brunei","ja":"\u30d6\u30eb\u30cd\u30a4\u30fb\u30c0\u30eb\u30b5\u30e9\u30fc\u30e0","nl":"Brunei","pt":"Brunei","ru":"\u0411\u0440\u0443\u043d\u0435\u0439","pl":"Brunei","cs":"Brunej","zh":"\u6587\u83b1\u548c\u5e73\u4e4b\u56fd","hu":"Brunei","se":"Brunei"},"cioc":"BRU"},{"alpha2Code":"BG","alpha3Code":"BGR","altSpellings":["BG","Republic of Bulgaria","\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f"],"area":110879,"borders":["GRC","MKD","ROU","SRB","TUR"],"callingCodes":["359"],"capital":"Sofia","currencies":[{"code":"BGN","name":"Bulgarian lev","symbol":"\u043b\u0432"}],"demonym":"Bulgarian","flag":"https://restcountries.eu/data/bgr.svg","gini":28.2,"languages":[{"iso639_1":"bg","iso639_2":"bul","name":"Bulgarian","nativeName":"\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u0435\u0437\u0438\u043a"}],"latlng":[43,25],"name":"Bulgaria","nativeName":"\u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f","numericCode":"100","population":6927288,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Eastern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".bg"],"translations":{"br":"Bulg\u00e1ria","de":"Bulgarien","es":"Bulgaria","fa":"\u0628\u0644\u063a\u0627\u0631\u0633\u062a\u0627\u0646","fr":"Bulgarie","hr":"Bugarska","it":"Bulgaria","ja":"\u30d6\u30eb\u30ac\u30ea\u30a2","nl":"Bulgarije","pt":"Bulg\u00e1ria","ru":"\u0411\u043e\u043b\u0433\u0430\u0440\u0438\u044f","pl":"Bu\u0142garia","cs":"Bulharsko","zh":"\u4fdd\u52a0\u5229\u4e9a\u5171\u548c\u56fd","hu":"Bulg\u00e1ria","se":"Bulgarien"},"cioc":"BUL"},{"alpha2Code":"BF","alpha3Code":"BFA","altSpellings":["BF"],"area":272967,"borders":["BEN","CIV","GHA","MLI","NER","TGO"],"callingCodes":["226"],"capital":"Ouagadougou","currencies":[{"code":"XOF","name":"West African CFA franc","symbol":"Fr"}],"demonym":"Burkinabe","flag":"https://restcountries.eu/data/bfa.svg","gini":39.8,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"ff","iso639_2":"ful","name":"Fula","nativeName":"Fulfulde"}],"latlng":[13,-2],"name":"Burkina Faso","nativeName":"Burkina Faso","numericCode":"854","population":20903278,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".bf"],"translations":{"br":"Burkina Faso","de":"Burkina Faso","es":"Burkina Faso","fa":"\u0628\u0648\u0631\u06a9\u06cc\u0646\u0627\u0641\u0627\u0633\u0648","fr":"Burkina Faso","hr":"Burkina Faso","it":"Burkina Faso","ja":"\u30d6\u30eb\u30ad\u30ca\u30d5\u30a1\u30bd","nl":"Burkina Faso","pt":"Burquina Faso","ru":"\u0411\u0443\u0440\u043a\u0438\u043d\u0430-\u0424\u0430\u0441\u043e","pl":"Burkina Faso","cs":"Burkina Faso","zh":"\u5e03\u57fa\u7eb3\u6cd5\u7d22","hu":"Burkina Faso","se":"Burkina Faso"},"cioc":"BUR"},{"alpha2Code":"BI","alpha3Code":"BDI","altSpellings":["BI","Republic of Burundi","Republika y'Uburundi","R\u00e9publique du Burundi"],"area":27834,"borders":["COD","RWA","TZA"],"callingCodes":["257"],"capital":"Gitega","currencies":[{"code":"BIF","name":"Burundian franc","symbol":"Fr"}],"demonym":"Burundian","flag":"https://restcountries.eu/data/bdi.svg","gini":33.3,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"rn","iso639_2":"run","name":"Kirundi","nativeName":"Ikirundi"}],"latlng":[-3.5,30],"name":"Burundi","nativeName":"Burundi","numericCode":"108","population":11890781,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".bi"],"translations":{"br":"Burundi","de":"Burundi","es":"Burundi","fa":"\u0628\u0648\u0631\u0648\u0646\u062f\u06cc","fr":"Burundi","hr":"Burundi","it":"Burundi","ja":"\u30d6\u30eb\u30f3\u30b8","nl":"Burundi","pt":"Bur\u00fandi","ru":"\u0411\u0443\u0440\u0443\u043d\u0434\u0438","pl":"Burundi","cs":"Burundi","zh":"\u5e03\u9686\u8fea\u5171\u548c\u56fd","hu":"Burundi","se":"Burundi"},"cioc":"BDI"},{"alpha2Code":"KH","alpha3Code":"KHM","altSpellings":["KH","Kingdom of Cambodia"],"area":181035,"borders":["LAO","THA","VNM"],"callingCodes":["855"],"capital":"Phnom Penh","currencies":[{"code":"KHR","name":"Cambodian riel","symbol":"\u17db"},{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Cambodian","flag":"https://restcountries.eu/data/khm.svg","gini":37.9,"languages":[{"iso639_1":"km","iso639_2":"khm","name":"Khmer","nativeName":"\u1781\u17d2\u1798\u17c2\u179a"}],"latlng":[13,105],"name":"Cambodia","nativeName":"K\u00e2mp\u016dch\u00e9a","numericCode":"116","population":16718971,"region":"Asia","regionalBlocs":[{"acronym":"ASEAN","name":"Association of Southeast Asian Nations"}],"subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"topLevelDomain":[".kh"],"translations":{"br":"Camboja","de":"Kambodscha","es":"Camboya","fa":"\u06a9\u0627\u0645\u0628\u0648\u062c","fr":"Cambodge","hr":"Kambod\u017ea","it":"Cambogia","ja":"\u30ab\u30f3\u30dc\u30b8\u30a2","nl":"Cambodja","pt":"Camboja","ru":"\u041a\u0430\u043c\u0431\u043e\u0434\u0436\u0430","pl":"Kambod\u017ca","cs":"Kambod\u017ea","zh":"\u67ec\u57d4\u5be8\u738b\u56fd","hu":"Kambodzsa","se":"Kambodja"},"cioc":"CAM"},{"alpha2Code":"CM","alpha3Code":"CMR","altSpellings":["CM","Republic of Cameroon","R\u00e9publique du Cameroun"],"area":475442,"borders":["CAF","TCD","COG","GNQ","GAB","NGA"],"callingCodes":["237"],"capital":"Yaound\u00e9","currencies":[{"code":"XAF","name":"Central African CFA franc","symbol":"Fr"}],"demonym":"Cameroonian","flag":"https://restcountries.eu/data/cmr.svg","gini":38.9,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[6,12],"name":"Cameroon","nativeName":"Cameroon","numericCode":"120","population":26545864,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Middle Africa","timezones":["UTC+01:00"],"topLevelDomain":[".cm"],"translations":{"br":"Camar\u00f5es","de":"Kamerun","es":"Camer\u00fan","fa":"\u06a9\u0627\u0645\u0631\u0648\u0646","fr":"Cameroun","hr":"Kamerun","it":"Camerun","ja":"\u30ab\u30e1\u30eb\u30fc\u30f3","nl":"Kameroen","pt":"Camar\u00f5es","ru":"\u041a\u0430\u043c\u0435\u0440\u0443\u043d","pl":"Kamerun","cs":"Kamerun","zh":"\u5580\u9ea6\u9686\u5171\u548c\u56fd","hu":"Kamerun","se":"Kamerun"},"cioc":"CMR"},{"alpha2Code":"CA","alpha3Code":"CAN","altSpellings":["CA"],"area":9984670,"borders":["USA"],"callingCodes":["1"],"capital":"Ottawa","currencies":[{"code":"CAD","name":"Canadian dollar","symbol":"$"}],"demonym":"Canadian","flag":"https://restcountries.eu/data/can.svg","gini":32.6,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[60,-95],"name":"Canada","nativeName":"Canada","numericCode":"124","population":38005238,"region":"Americas","regionalBlocs":[{"acronym":"NAFTA","name":"North American Free Trade Agreement","otherNames":["Tratado de Libre Comercio de Am\u00e9rica del Norte","Accord de Libre-\u00e9change Nord-Am\u00e9ricain"]}],"subregion":"Northern America","timezones":["UTC-08:00","UTC-07:00","UTC-06:00","UTC-05:00","UTC-04:00","UTC-03:30"],"topLevelDomain":[".ca"],"translations":{"br":"Canad\u00e1","de":"Kanada","es":"Canad\u00e1","fa":"\u06a9\u0627\u0646\u0627\u062f\u0627","fr":"Canada","hr":"Kanada","it":"Canada","ja":"\u30ab\u30ca\u30c0","nl":"Canada","pt":"Canad\u00e1","ru":"\u041a\u0430\u043d\u0430\u0434\u0430","pl":"Kanada","cs":"Kanada","zh":"\u52a0\u62ff\u5927","hu":"Kanada","se":"Kanada"},"cioc":"CAN"},{"alpha2Code":"CV","alpha3Code":"CPV","altSpellings":["CV","Republic of Cabo Verde","Rep\u00fablica de Cabo Verde"],"area":4033,"borders":[],"callingCodes":["238"],"capital":"Praia","currencies":[{"code":"CVE","name":"Cape Verdean escudo","symbol":"Esc"}],"demonym":"Cape Verdian","flag":"https://restcountries.eu/data/cpv.svg","gini":50.5,"languages":[{"iso639_1":"pt","iso639_2":"por","name":"Portuguese","nativeName":"Portugu\u00eas"}],"latlng":[16,-24],"name":"Cabo Verde","nativeName":"Cabo Verde","numericCode":"132","population":555988,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC-01:00"],"topLevelDomain":[".cv"],"translations":{"br":"Cabo Verde","de":"Kap Verde","es":"Cabo Verde","fa":"\u06a9\u06cc\u067e \u0648\u0631\u062f","fr":"Cap Vert","hr":"Zelenortska Republika","it":"Capo Verde","ja":"\u30ab\u30fc\u30dc\u30d9\u30eb\u30c7","nl":"Kaapverdi\u00eb","pt":"Cabo Verde","ru":"\u041a\u0430\u0431\u043e-\u0412\u0435\u0440\u0434\u0435","pl":"Wyspy Zielonego Przyl\u0105dka","cs":"Kapverdy","zh":"\u4f5b\u5f97\u89d2\u5171\u548c\u56fd","hu":"Z\u00f6ld-foki K\u00f6zt\u00e1rsas\u00e1g","se":"Kap Verde"},"cioc":"CPV"},{"alpha2Code":"KY","alpha3Code":"CYM","altSpellings":["KY"],"area":264,"borders":[],"callingCodes":["1"],"capital":"George Town","currencies":[{"code":"KYD","name":"Cayman Islands dollar","symbol":"$"}],"demonym":"Caymanian","flag":"https://restcountries.eu/data/cym.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[19.5,-80.5],"name":"Cayman Islands","nativeName":"Cayman Islands","numericCode":"136","population":65720,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-05:00"],"topLevelDomain":[".ky"],"translations":{"br":"Ilhas Cayman","de":"Kaimaninseln","es":"Islas Caim\u00e1n","fa":"\u062c\u0632\u0627\u06cc\u0631 \u06a9\u06cc\u0645\u0646","fr":"\u00celes Ca\u00efmans","hr":"Kajmanski otoci","it":"Isole Cayman","ja":"\u30b1\u30a4\u30de\u30f3\u8af8\u5cf6","nl":"Caymaneilanden","pt":"Ilhas Caim\u00e3o","pl":"Kajmany","cs":"Kajmansk\u00e9 ostrovy","ru":"Cayman Islands","zh":"\u5f00\u66fc\u7fa4\u5c9b","hu":"Kajm\u00e1n-szigetek","se":"Cayman\u00f6arna"},"cioc":"CAY"},{"alpha2Code":"CF","alpha3Code":"CAF","altSpellings":["CF","Central African Republic","R\u00e9publique centrafricaine"],"area":622984,"borders":["CMR","TCD","COD","COG","SSD","SDN"],"callingCodes":["236"],"capital":"Bangui","currencies":[{"code":"XAF","name":"Central African CFA franc","symbol":"Fr"}],"demonym":"Central African","flag":"https://restcountries.eu/data/caf.svg","gini":56.3,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"sg","iso639_2":"sag","name":"Sango","nativeName":"y\u00e2ng\u00e2 t\u00ee s\u00e4ng\u00f6"}],"latlng":[7,21],"name":"Central African Republic","nativeName":"K\u00f6d\u00f6r\u00f6s\u00ease t\u00ee B\u00eaafr\u00eeka","numericCode":"140","population":4829764,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Middle Africa","timezones":["UTC+01:00"],"topLevelDomain":[".cf"],"translations":{"br":"Rep\u00fablica Centro-Africana","de":"Zentralafrikanische Republik","es":"Rep\u00fablica Centroafricana","fa":"\u062c\u0645\u0647\u0648\u0631\u06cc \u0622\u0641\u0631\u06cc\u0642\u0627\u06cc \u0645\u0631\u06a9\u0632\u06cc","fr":"R\u00e9publique centrafricaine","hr":"Srednjoafri\u010dka Republika","it":"Repubblica Centrafricana","ja":"\u4e2d\u592e\u30a2\u30d5\u30ea\u30ab\u5171\u548c\u56fd","nl":"Centraal-Afrikaanse Republiek","pt":"Rep\u00fablica Centro-Africana","ru":"\u0426\u0410\u0420","pl":"Republika \u015arodkowoafryka\u0144ska","cs":"St\u0159edoafrick\u00e1 republika","zh":"\u4e2d\u975e\u5171\u548c\u56fd","hu":"K\u00f6z\u00e9p-afrikai K\u00f6zt\u00e1rsas\u00e1g","se":"Centralafrikanska republiken"},"cioc":"CAF"},{"alpha2Code":"TD","alpha3Code":"TCD","altSpellings":["TD","Tchad","Republic of Chad","R\u00e9publique du Tchad"],"area":1284000,"borders":["CMR","CAF","LBY","NER","NGA","SDN"],"callingCodes":["235"],"capital":"N'Djamena","currencies":[{"code":"XAF","name":"Central African CFA franc","symbol":"Fr"}],"demonym":"Chadian","flag":"https://restcountries.eu/data/tcd.svg","gini":39.8,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[15,19],"name":"Chad","nativeName":"Tchad","numericCode":"148","population":16425859,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Middle Africa","timezones":["UTC+01:00"],"topLevelDomain":[".td"],"translations":{"br":"Chade","de":"Tschad","es":"Chad","fa":"\u0686\u0627\u062f","fr":"Tchad","hr":"\u010cad","it":"Ciad","ja":"\u30c1\u30e3\u30c9","nl":"Tsjaad","pt":"Chade","ru":"\u0427\u0430\u0434","pl":"Czad","cs":"\u010cad","zh":"\u4e4d\u5f97\u5171\u548c\u56fd","hu":"Cs\u00e1d","se":"Tchad"},"cioc":"CHA"},{"alpha2Code":"CL","alpha3Code":"CHL","altSpellings":["CL","Republic of Chile","Rep\u00fablica de Chile"],"area":756102,"borders":["ARG","BOL","PER"],"callingCodes":["56"],"capital":"Santiago","currencies":[{"code":"CLP","name":"Chilean peso","symbol":"$"}],"demonym":"Chilean","flag":"https://restcountries.eu/data/chl.svg","gini":52.1,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[-30,-71],"name":"Chile","nativeName":"Chile","numericCode":"152","population":19116209,"region":"Americas","regionalBlocs":[{"acronym":"PA","name":"Pacific Alliance","otherNames":["Alianza del Pac\u00edfico"]},{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-06:00","UTC-04:00"],"topLevelDomain":[".cl"],"translations":{"br":"Chile","de":"Chile","es":"Chile","fa":"\u0634\u06cc\u0644\u06cc","fr":"Chili","hr":"\u010cile","it":"Cile","ja":"\u30c1\u30ea","nl":"Chili","pt":"Chile","ru":"\u0427\u0438\u043b\u0438","pl":"Chile","cs":"Chile","zh":"\u667a\u5229\u5171\u548c\u56fd","hu":"Chile","se":"Chile"},"cioc":"CHI"},{"alpha2Code":"CN","alpha3Code":"CHN","altSpellings":["CN","Zh\u014dnggu\u00f3","Zhongguo","Zhonghua","People's Republic of China","\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd","Zh\u014dnghu\u00e1 R\u00e9nm\u00edn G\u00f2ngh\u00e9gu\u00f3"],"area":9640011,"borders":["AFG","BTN","MMR","HKG","IND","KAZ","PRK","KGZ","LAO","MAC","MNG","PAK","RUS","TJK","VNM"],"callingCodes":["86"],"capital":"Beijing","currencies":[{"code":"CNY","name":"Chinese yuan","symbol":"\u00a5"}],"demonym":"Chinese","flag":"https://restcountries.eu/data/chn.svg","gini":47,"languages":[{"iso639_1":"zh","iso639_2":"zho","name":"Chinese","nativeName":"\u4e2d\u6587 (Zh\u014dngw\u00e9n)"}],"latlng":[35,105],"name":"China","nativeName":"\u4e2d\u56fd","numericCode":"156","population":1402112000,"region":"Asia","regionalBlocs":[],"subregion":"Eastern Asia","timezones":["UTC+08:00"],"topLevelDomain":[".cn"],"translations":{"br":"China","de":"China","es":"China","fa":"\u0686\u06cc\u0646","fr":"Chine","hr":"Kina","it":"Cina","ja":"\u4e2d\u56fd","nl":"China","pt":"China","ru":"\u041a\u0438\u0442\u0430\u0439 (\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0430\u044f \u041d\u0430\u0440\u043e\u0434\u043d\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430)","pl":"Chiny","cs":"\u010c\u00ednsk\u00e1 lidov\u00e1 republika","zh":"\u4e2d\u56fd","hu":"K\u00edna","se":"Kina"},"cioc":"CHN"},{"alpha2Code":"CX","alpha3Code":"CXR","altSpellings":["CX","Territory of Christmas Island"],"area":135,"borders":[],"callingCodes":["61"],"capital":"Flying Fish Cove","currencies":[{"code":"AUD","name":"Australian dollar","symbol":"$"}],"demonym":"Christmas Island","flag":"https://restcountries.eu/data/cxr.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-10.5,105.66666666],"name":"Christmas Island","nativeName":"Christmas Island","numericCode":"162","population":2072,"region":"Oceania","regionalBlocs":[],"subregion":"Australia and New Zealand","timezones":["UTC+07:00"],"topLevelDomain":[".cx"],"translations":{"br":"Ilha Christmas","de":"Weihnachtsinsel","es":"Isla de Navidad","fa":"\u062c\u0632\u06cc\u0631\u0647 \u06a9\u0631\u06cc\u0633\u0645\u0633","fr":"\u00cele Christmas","hr":"Bo\u017ei\u0107ni otok","it":"Isola di Natale","ja":"\u30af\u30ea\u30b9\u30de\u30b9\u5cf6","nl":"Christmaseiland","pt":"Ilha do Natal","pl":"Wyspa Bo\u017cego Narodzenia","cs":"V\u00e1no\u010dn\u00ed ostrov","ru":"Christmas Island","zh":"\u5723\u8bde\u5c9b","hu":"Kar\u00e1csony-sziget","se":"Jul\u00f6n"},"cioc":""},{"alpha2Code":"CC","alpha3Code":"CCK","altSpellings":["CC","Territory of the Cocos (Keeling) Islands","Keeling Islands"],"area":14,"borders":[],"callingCodes":["61"],"capital":"West Island","currencies":[{"code":"AUD","name":"Australian dollar","symbol":"$"}],"demonym":"Cocos Islander","flag":"https://restcountries.eu/data/cck.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-12.5,96.83333333],"name":"Cocos (Keeling) Islands","nativeName":"Cocos (Keeling) Islands","numericCode":"166","population":550,"region":"Oceania","regionalBlocs":[],"subregion":"Australia and New Zealand","timezones":["UTC+06:30"],"topLevelDomain":[".cc"],"translations":{"br":"Ilhas Cocos","de":"Kokosinseln","es":"Islas Cocos o Islas Keeling","fa":"\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u06a9\u0648\u0633","fr":"\u00celes Cocos","hr":"Kokosovi Otoci","it":"Isole Cocos e Keeling","ja":"\u30b3\u30b3\u30b9\uff08\u30ad\u30fc\u30ea\u30f3\u30b0\uff09\u8af8\u5cf6","nl":"Cocoseilanden","pt":"Ilhas dos Cocos","pl":"Wyspy Kokosowe","cs":"Kokosov\u00e9 ostrovy","ru":"Cocos (Keeling) Islands","zh":"\u79d1\u79d1\u65af","hu":"K\u00f3kusz-szigetek","se":"Kokos\u00f6arna"},"cioc":""},{"alpha2Code":"CO","alpha3Code":"COL","altSpellings":["CO","Republic of Colombia","Rep\u00fablica de Colombia"],"area":1141748,"borders":["BRA","ECU","PAN","PER","VEN"],"callingCodes":["57"],"capital":"Bogot\u00e1","currencies":[{"code":"COP","name":"Colombian peso","symbol":"$"}],"demonym":"Colombian","flag":"https://restcountries.eu/data/col.svg","gini":55.9,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[4,-72],"name":"Colombia","nativeName":"Colombia","numericCode":"170","population":50882884,"region":"Americas","regionalBlocs":[{"acronym":"PA","name":"Pacific Alliance","otherNames":["Alianza del Pac\u00edfico"]},{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-05:00"],"topLevelDomain":[".co"],"translations":{"br":"Col\u00f4mbia","de":"Kolumbien","es":"Colombia","fa":"\u06a9\u0644\u0645\u0628\u06cc\u0627","fr":"Colombie","hr":"Kolumbija","it":"Colombia","ja":"\u30b3\u30ed\u30f3\u30d3\u30a2","nl":"Colombia","pt":"Col\u00f4mbia","ru":"\u041a\u043e\u043b\u0443\u043c\u0431\u0438\u044f","pl":"Kolumbia","cs":"Kolumbie","zh":"\u54e5\u4f26\u6bd4\u4e9a\u5171\u548c\u56fd","hu":"Kolumbia","se":"Colombia"},"cioc":"COL"},{"alpha2Code":"KM","alpha3Code":"COM","altSpellings":["KM","Union of the Comoros","Union des Comores","Udzima wa Komori","al-Itti\u1e25\u0101d al-Qumur\u012b"],"area":1862,"borders":[],"callingCodes":["269"],"capital":"Moroni","currencies":[{"code":"KMF","name":"Comorian franc","symbol":"Fr"}],"demonym":"Comoran","flag":"https://restcountries.eu/data/com.svg","gini":64.3,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[-12.16666666,44.25],"name":"Comoros","nativeName":"Komori","numericCode":"174","population":869595,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]},{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Eastern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".km"],"translations":{"br":"Comores","de":"Union der Komoren","es":"Comoras","fa":"\u06a9\u0648\u0645\u0648\u0631","fr":"Comores","hr":"Komori","it":"Comore","ja":"\u30b3\u30e2\u30ed","nl":"Comoren","pt":"Comores","ru":"\u041a\u043e\u043c\u043e\u0440\u044b","pl":"Komory","cs":"Komory","zh":"\u79d1\u6469\u7f57\u8054\u76df","hu":"Comore-szigetek","se":"Komorerna"},"cioc":"COM"},{"alpha2Code":"CG","alpha3Code":"COG","altSpellings":["CG","Congo-Brazzaville"],"area":342000,"borders":["AGO","CMR","CAF","COD","GAB"],"callingCodes":["242"],"capital":"Brazzaville","currencies":[{"code":"XAF","name":"Central African CFA franc","symbol":"Fr"}],"demonym":"Congolese","flag":"https://restcountries.eu/data/cog.svg","gini":47.3,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"ln","iso639_2":"lin","name":"Lingala","nativeName":"Ling\u00e1la"}],"latlng":[-1,15],"name":"Congo","nativeName":"R\u00e9publique du Congo","numericCode":"178","population":5518092,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Middle Africa","timezones":["UTC+01:00"],"topLevelDomain":[".cg"],"translations":{"br":"Congo","de":"Kongo","es":"Congo","fa":"\u06a9\u0646\u06af\u0648","fr":"Congo","hr":"Kongo","it":"Congo","ja":"\u30b3\u30f3\u30b4\u5171\u548c\u56fd","nl":"Congo [Republiek]","pt":"Congo","ru":"\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u043d\u0433\u043e","pl":"Kongo","cs":"Demokratick\u00e1 republika Kongo","zh":"\u521a\u679c\u5171\u548c\u56fd","hu":"Kong\u00f3i K\u00f6zt\u00e1rsas\u00e1g","se":"Kongo-Brazzaville"},"cioc":"CGO"},{"alpha2Code":"CD","alpha3Code":"COD","altSpellings":["CD","DR Congo","Congo-Kinshasa","DRC"],"area":2344858,"borders":["AGO","BDI","CAF","COG","RWA","SSD","TZA","UGA","ZMB"],"callingCodes":["243"],"capital":"Kinshasa","currencies":[{"code":"CDF","name":"Congolese franc","symbol":"Fr"}],"demonym":"Congolese","flag":"https://restcountries.eu/data/cod.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"ln","iso639_2":"lin","name":"Lingala","nativeName":"Ling\u00e1la"},{"iso639_1":"kg","iso639_2":"kon","name":"Kongo","nativeName":"Kikongo"},{"iso639_1":"sw","iso639_2":"swa","name":"Swahili","nativeName":"Kiswahili"},{"iso639_1":"lu","iso639_2":"lub","name":"Luba-Katanga","nativeName":"Tshiluba"}],"latlng":[0,25],"name":"Congo (Democratic Republic of the)","nativeName":"R\u00e9publique d\u00e9mocratique du Congo","numericCode":"180","population":89561404,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Middle Africa","timezones":["UTC+01:00","UTC+02:00"],"topLevelDomain":[".cd"],"translations":{"br":"RD Congo","de":"Kongo (Dem. Rep.)","es":"Congo (Rep. Dem.)","fa":"\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u0646\u06af\u0648","fr":"Congo (R\u00e9p. d\u00e9m.)","hr":"Kongo, Demokratska Republika","it":"Congo (Rep. Dem.)","ja":"\u30b3\u30f3\u30b4\u6c11\u4e3b\u5171\u548c\u56fd","nl":"Congo [DRC]","pt":"RD Congo","ru":"\u0414\u0420 \u041a\u043e\u043d\u0433\u043e","pl":"Demokratyczna Republika Konga","cs":"Demokratick\u00e1 republika Kongo","zh":"\u521a\u679c\u6c11\u4e3b\u5171\u548c\u56fd","hu":"Kong\u00f3i Demokratikus K\u00f6zt\u00e1rsas\u00e1g","se":"Kongo-Kinshasa"},"cioc":"COD"},{"alpha2Code":"CK","alpha3Code":"COK","altSpellings":["CK","K\u016bki '\u0100irani"],"area":236,"borders":[],"callingCodes":["682"],"capital":"Avarua","currencies":[{"code":"NZD","name":"New Zealand dollar","symbol":"$"},{"code":"CKD","name":"Cook Islands dollar","symbol":"$"}],"demonym":"Cook Islander","flag":"https://restcountries.eu/data/cok.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-21.23333333,-159.76666666],"name":"Cook Islands","nativeName":"Cook Islands","numericCode":"184","population":18100,"region":"Oceania","regionalBlocs":[],"subregion":"Polynesia","timezones":["UTC-10:00"],"topLevelDomain":[".ck"],"translations":{"br":"Ilhas Cook","de":"Cookinseln","es":"Islas Cook","fa":"\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u06a9","fr":"\u00celes Cook","hr":"Cookovo Oto\u010dje","it":"Isole Cook","ja":"\u30af\u30c3\u30af\u8af8\u5cf6","nl":"Cookeilanden","pt":"Ilhas Cook","pl":"Wyspy Cooka","cs":"Cookovy ostrovy","ru":"Cook Islands","zh":"\u5e93\u514b\u7fa4\u5c9b","hu":"Cook-szigetek","se":"Cook\u00f6arna"},"cioc":"COK"},{"alpha2Code":"CR","alpha3Code":"CRI","altSpellings":["CR","Republic of Costa Rica","Rep\u00fablica de Costa Rica"],"area":51100,"borders":["NIC","PAN"],"callingCodes":["506"],"capital":"San Jos\u00e9","currencies":[{"code":"CRC","name":"Costa Rican col\u00f3n","symbol":"\u20a1"}],"demonym":"Costa Rican","flag":"https://restcountries.eu/data/cri.svg","gini":50.7,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[10,-84],"name":"Costa Rica","nativeName":"Costa Rica","numericCode":"188","population":5094114,"region":"Americas","regionalBlocs":[{"acronym":"CAIS","name":"Central American Integration System","otherAcronyms":["SICA"],"otherNames":["Sistema de la Integraci\u00f3n Centroamericana,"]}],"subregion":"Central America","timezones":["UTC-06:00"],"topLevelDomain":[".cr"],"translations":{"br":"Costa Rica","de":"Costa Rica","es":"Costa Rica","fa":"\u06a9\u0627\u0633\u062a\u0627\u0631\u06cc\u06a9\u0627","fr":"Costa Rica","hr":"Kostarika","it":"Costa Rica","ja":"\u30b3\u30b9\u30bf\u30ea\u30ab","nl":"Costa Rica","pt":"Costa Rica","ru":"\u041a\u043e\u0441\u0442\u0430-\u0420\u0438\u043a\u0430","pl":"Kostaryka","cs":"Kostarika","zh":"\u54e5\u65af\u8fbe\u9ece\u52a0\u5171\u548c\u56fd","hu":"Costa Rica","se":"Costa Rica"},"cioc":"CRC"},{"alpha2Code":"HR","alpha3Code":"HRV","altSpellings":["HR","Hrvatska","Republic of Croatia","Republika Hrvatska"],"area":56594,"borders":["BIH","HUN","MNE","SRB","SVN"],"callingCodes":["385"],"capital":"Zagreb","currencies":[{"code":"HRK","name":"Croatian kuna","symbol":"kn"}],"demonym":"Croatian","flag":"https://restcountries.eu/data/hrv.svg","gini":33.7,"languages":[{"iso639_1":"hr","iso639_2":"hrv","name":"Croatian","nativeName":"hrvatski jezik"}],"latlng":[45.16666666,15.5],"name":"Croatia","nativeName":"Hrvatska","numericCode":"191","population":4047200,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".hr"],"translations":{"br":"Cro\u00e1cia","de":"Kroatien","es":"Croacia","fa":"\u06a9\u0631\u0648\u0627\u0633\u06cc","fr":"Croatie","hr":"Hrvatska","it":"Croazia","ja":"\u30af\u30ed\u30a2\u30c1\u30a2","nl":"Kroati\u00eb","pt":"Cro\u00e1cia","ru":"\u0425\u043e\u0440\u0432\u0430\u0442\u0438\u044f","pl":"Chorwacja","cs":"Chorvatsko","zh":"\u514b\u7f57\u5730\u4e9a\u5171\u548c\u56fd","hu":"Horv\u00e1torsz\u00e1g","se":"Kroatien"},"cioc":"CRO"},{"alpha2Code":"CU","alpha3Code":"CUB","altSpellings":["CU","Republic of Cuba","Rep\u00fablica de Cuba"],"area":109884,"borders":[],"callingCodes":["53"],"capital":"Havana","currencies":[{"code":"CUC","name":"Cuban convertible peso","symbol":"$"},{"code":"CUP","name":"Cuban peso","symbol":"$"}],"demonym":"Cuban","flag":"https://restcountries.eu/data/cub.svg","gini":null,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[21.5,-80],"name":"Cuba","nativeName":"Cuba","numericCode":"192","population":11326616,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-05:00"],"topLevelDomain":[".cu"],"translations":{"br":"Cuba","de":"Kuba","es":"Cuba","fa":"\u06a9\u0648\u0628\u0627","fr":"Cuba","hr":"Kuba","it":"Cuba","ja":"\u30ad\u30e5\u30fc\u30d0","nl":"Cuba","pt":"Cuba","ru":"\u041a\u0443\u0431\u0430","pl":"Kuba","cs":"Kuba","zh":"\u53e4\u5df4\u5171\u548c\u56fd","hu":"Kuba","se":"Kuba"},"cioc":"CUB"},{"alpha2Code":"CW","alpha3Code":"CUW","altSpellings":["CW","Curacao","K\u00f2rsou","Country of Cura\u00e7ao","Land Cura\u00e7ao","Pais K\u00f2rsou"],"area":444,"borders":[],"callingCodes":["599"],"capital":"Willemstad","currencies":[{"code":"ANG","name":"Netherlands Antillean guilder","symbol":"\u0192"}],"demonym":"Dutch","flag":"https://restcountries.eu/data/cuw.svg","languages":[{"iso639_1":"nl","iso639_2":"nld","name":"Dutch","nativeName":"Nederlands"},{"iso639_1":"","iso639_2":"pap","name":"Papiamento","nativeName":"Papiamentu"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[12.116667,-68.933333],"name":"Cura\u00e7ao","nativeName":"Cura\u00e7ao","numericCode":"531","population":155014,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".cw"],"translations":{"br":"Cura\u00e7ao","de":"Cura\u00e7ao","fa":"\u06a9\u0648\u0631\u0627\u0633\u0627\u0626\u0648","fr":"Cura\u00e7ao","it":"Cura\u00e7ao","nl":"Cura\u00e7ao","pt":"Cura\u00e7ao","pl":"Cura\u00e7ao","cs":"Cura\u00e7ao","es":"Cura\u00e7ao","hr":"Cura\u00e7ao","ja":"Cura\u00e7ao","ru":"Cura\u00e7ao","zh":"\u5e93\u62c9\u7d22","hu":"Cura\u00e7ao","se":"Cura\u00e7ao"},"cioc":""},{"alpha2Code":"CY","alpha3Code":"CYP","altSpellings":["CY","K\u00fdpros","K\u0131br\u0131s","Republic of Cyprus","\u039a\u03c5\u03c0\u03c1\u03b9\u03b1\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1","K\u0131br\u0131s Cumhuriyeti"],"area":9251,"borders":[],"callingCodes":["357"],"capital":"Nicosia","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Cypriot","flag":"https://restcountries.eu/data/cyp.svg","gini":null,"languages":[{"iso639_1":"el","iso639_2":"ell","name":"Greek (modern)","nativeName":"\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"},{"iso639_1":"tr","iso639_2":"tur","name":"Turkish","nativeName":"T\u00fcrk\u00e7e"},{"iso639_1":"hy","iso639_2":"hye","name":"Armenian","nativeName":"\u0540\u0561\u0575\u0565\u0580\u0565\u0576"}],"latlng":[35,33],"name":"Cyprus","nativeName":"\u039a\u03cd\u03c0\u03c1\u03bf\u03c2","numericCode":"196","population":1207361,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Southern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".cy"],"translations":{"br":"Chipre","de":"Zypern","es":"Chipre","fa":"\u0642\u0628\u0631\u0633","fr":"Chypre","hr":"Cipar","it":"Cipro","ja":"\u30ad\u30d7\u30ed\u30b9","nl":"Cyprus","pt":"Chipre","ru":"\u041a\u0438\u043f\u0440","pl":"Cypr","cs":"Kypr","zh":"\u585e\u6d66\u8def\u65af\u5171\u548c\u56fd","hu":"Ciprus","se":"Cypern"},"cioc":"CYP"},{"alpha2Code":"CZ","alpha3Code":"CZE","altSpellings":["CZ","\u010cesk\u00e1 republika","\u010cesko"],"area":78865,"borders":["AUT","DEU","POL","SVK"],"callingCodes":["420"],"capital":"Prague","currencies":[{"code":"CZK","name":"Czech koruna","symbol":"K\u010d"}],"demonym":"Czech","flag":"https://restcountries.eu/data/cze.svg","gini":26,"languages":[{"iso639_1":"cs","iso639_2":"ces","name":"Czech","nativeName":"\u010de\u0161tina"},{"iso639_1":"sk","iso639_2":"slk","name":"Slovak","nativeName":"sloven\u010dina"}],"latlng":[49.75,15.5],"name":"Czech Republic","nativeName":"\u010cesk\u00e1 republika","numericCode":"203","population":10698896,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Eastern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".cz"],"translations":{"br":"Rep\u00fablica Tcheca","de":"Tschechische Republik","es":"Rep\u00fablica Checa","fa":"\u062c\u0645\u0647\u0648\u0631\u06cc \u0686\u06a9","fr":"R\u00e9publique tch\u00e8que","hr":"\u010ce\u0161ka","it":"Repubblica Ceca","ja":"\u30c1\u30a7\u30b3","nl":"Tsjechi\u00eb","pt":"Rep\u00fablica Checa","ru":"\u0427\u0435\u0445\u0438\u044f","pl":"Czechy","cs":"\u010cesk\u00e1 republika","zh":"\u6377\u514b\u5171\u548c\u56fd","hu":"Csehorsz\u00e1g","se":"Tjeckien"},"cioc":"CZE"},{"alpha2Code":"DK","alpha3Code":"DNK","altSpellings":["DK","Danmark","Kingdom of Denmark","Kongeriget Danmark"],"area":43094,"borders":["DEU"],"callingCodes":["45"],"capital":"Copenhagen","currencies":[{"code":"DKK","name":"Danish krone","symbol":"kr"}],"demonym":"Danish","flag":"https://restcountries.eu/data/dnk.svg","gini":24,"languages":[{"iso639_1":"da","iso639_2":"dan","name":"Danish","nativeName":"dansk"}],"latlng":[56,10],"name":"Denmark","nativeName":"Danmark","numericCode":"208","population":5831404,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Northern Europe","timezones":["UTC-04:00","UTC-03:00","UTC-01:00","UTC","UTC+01:00"],"topLevelDomain":[".dk"],"translations":{"br":"Dinamarca","de":"D\u00e4nemark","es":"Dinamarca","fa":"\u062f\u0627\u0646\u0645\u0627\u0631\u06a9","fr":"Danemark","hr":"Danska","it":"Danimarca","ja":"\u30c7\u30f3\u30de\u30fc\u30af","nl":"Denemarken","pt":"Dinamarca","ru":"\u0414\u0430\u043d\u0438\u044f","pl":"Dania","cs":"D\u00e1nsko","zh":"\u4e39\u9ea6\u738b\u56fd","hu":"D\u00e1nia","se":"Danmark"},"cioc":"DEN"},{"alpha2Code":"DJ","alpha3Code":"DJI","altSpellings":["DJ","Jabuuti","Gabuuti","Republic of Djibouti","R\u00e9publique de Djibouti","Gabuutih Ummuuno","Jamhuuriyadda Jabuuti"],"area":23200,"borders":["ERI","ETH","SOM"],"callingCodes":["253"],"capital":"Djibouti","currencies":[{"code":"DJF","name":"Djiboutian franc","symbol":"Fr"}],"demonym":"Djibouti","flag":"https://restcountries.eu/data/dji.svg","gini":40,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[11.5,43],"name":"Djibouti","nativeName":"Djibouti","numericCode":"262","population":988002,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]},{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Eastern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".dj"],"translations":{"br":"Djibuti","de":"Dschibuti","es":"Yibuti","fa":"\u062c\u06cc\u0628\u0648\u062a\u06cc","fr":"Djibouti","hr":"D\u017eibuti","it":"Gibuti","ja":"\u30b8\u30d6\u30c1","nl":"Djibouti","pt":"Djibuti","ru":"\u0414\u0436\u0438\u0431\u0443\u0442\u0438","pl":"D\u017cibuti","cs":"D\u017eibutsko","zh":"\u5409\u5e03\u63d0\u5171\u548c\u56fd","hu":"Dzsibuti","se":"Djibouti"},"cioc":"DJI"},{"alpha2Code":"DM","alpha3Code":"DMA","altSpellings":["DM","Dominique","Wai\u2018tu kubuli","Commonwealth of Dominica"],"area":751,"borders":[],"callingCodes":["1"],"capital":"Roseau","currencies":[{"code":"XCD","name":"East Caribbean dollar","symbol":"$"}],"demonym":"Dominican","flag":"https://restcountries.eu/data/dma.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[15.41666666,-61.33333333],"name":"Dominica","nativeName":"Dominica","numericCode":"212","population":71991,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".dm"],"translations":{"br":"Dominica","de":"Dominica","es":"Dominica","fa":"\u062f\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0627","fr":"Dominique","hr":"Dominika","it":"Dominica","ja":"\u30c9\u30df\u30cb\u30ab\u56fd","nl":"Dominica","pt":"Dominica","ru":"\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430","pl":"Dominika","cs":"Dominika","zh":"\u591a\u7c73\u5c3c\u52a0\u5171\u548c\u56fd","hu":"Dominikai K\u00f6z\u00f6ss\u00e9g","se":"Dominica"},"cioc":"DMA"},{"alpha2Code":"DO","alpha3Code":"DOM","altSpellings":["DO"],"area":48671,"borders":["HTI"],"callingCodes":["1"],"capital":"Santo Domingo","currencies":[{"code":"DOP","name":"Dominican peso","symbol":"$"}],"demonym":"Dominican","flag":"https://restcountries.eu/data/dom.svg","gini":47.2,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[19,-70.66666666],"name":"Dominican Republic","nativeName":"Rep\u00fablica Dominicana","numericCode":"214","population":10847904,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]},{"acronym":"CAIS","name":"Central American Integration System","otherAcronyms":["SICA"],"otherNames":["Sistema de la Integraci\u00f3n Centroamericana,"]}],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".do"],"translations":{"br":"Rep\u00fablica Dominicana","de":"Dominikanische Republik","es":"Rep\u00fablica Dominicana","fa":"\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0646","fr":"R\u00e9publique dominicaine","hr":"Dominikanska Republika","it":"Repubblica Dominicana","ja":"\u30c9\u30df\u30cb\u30ab\u5171\u548c\u56fd","nl":"Dominicaanse Republiek","pt":"Rep\u00fablica Dominicana","ru":"\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430","pl":"Dominikana","cs":"Dominik\u00e1nsk\u00e1 republika","zh":"\u591a\u660e\u5c3c\u52a0\u5171\u548c\u56fd","hu":"Dominikai K\u00f6zt\u00e1rsas\u00e1g","se":"Dominikanska republiken"},"cioc":"DOM"},{"alpha2Code":"EC","alpha3Code":"ECU","altSpellings":["EC","Republic of Ecuador","Rep\u00fablica del Ecuador"],"area":276841,"borders":["COL","PER"],"callingCodes":["593"],"capital":"Quito","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Ecuadorean","flag":"https://restcountries.eu/data/ecu.svg","gini":49.3,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[-2,-77.5],"name":"Ecuador","nativeName":"Ecuador","numericCode":"218","population":17643060,"region":"Americas","regionalBlocs":[{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-06:00","UTC-05:00"],"topLevelDomain":[".ec"],"translations":{"br":"Equador","de":"Ecuador","es":"Ecuador","fa":"\u0627\u06a9\u0648\u0627\u062f\u0648\u0631","fr":"\u00c9quateur","hr":"Ekvador","it":"Ecuador","ja":"\u30a8\u30af\u30a2\u30c9\u30eb","nl":"Ecuador","pt":"Equador","ru":"\u042d\u043a\u0432\u0430\u0434\u043e\u0440","pl":"Ekwador","cs":"Ekv\u00e1dor","zh":"\u5384\u74dc\u591a\u5c14\u5171\u548c\u56fd","hu":"Ecuador","se":"Ecuador"},"cioc":"ECU"},{"alpha2Code":"EG","alpha3Code":"EGY","altSpellings":["EG","Arab Republic of Egypt"],"area":1002450,"borders":["ISR","LBY","SDN"],"callingCodes":["20"],"capital":"Cairo","currencies":[{"code":"EGP","name":"Egyptian pound","symbol":"\u00a3"}],"demonym":"Egyptian","flag":"https://restcountries.eu/data/egy.svg","gini":30.8,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[27,30],"name":"Egypt","nativeName":"\u0645\u0635\u0631\u200e","numericCode":"818","population":102334403,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]},{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Northern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".eg"],"translations":{"br":"Egito","de":"\u00c4gypten","es":"Egipto","fa":"\u0645\u0635\u0631","fr":"\u00c9gypte","hr":"Egipat","it":"Egitto","ja":"\u30a8\u30b8\u30d7\u30c8","nl":"Egypte","pt":"Egipto","ru":"\u0415\u0433\u0438\u043f\u0435\u0442","pl":"Egipt","cs":"Egypt","zh":"\u963f\u62c9\u4f2f\u57c3\u53ca\u5171\u548c\u56fd","hu":"Egyiptom","se":"Egypten"},"cioc":"EGY"},{"alpha2Code":"SV","alpha3Code":"SLV","altSpellings":["SV","Republic of El Salvador","Rep\u00fablica de El Salvador"],"area":21041,"borders":["GTM","HND"],"callingCodes":["503"],"capital":"San Salvador","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Salvadoran","flag":"https://restcountries.eu/data/slv.svg","gini":48.3,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[13.83333333,-88.91666666],"name":"El Salvador","nativeName":"El Salvador","numericCode":"222","population":6486201,"region":"Americas","regionalBlocs":[{"acronym":"CAIS","name":"Central American Integration System","otherAcronyms":["SICA"],"otherNames":["Sistema de la Integraci\u00f3n Centroamericana,"]}],"subregion":"Central America","timezones":["UTC-06:00"],"topLevelDomain":[".sv"],"translations":{"br":"El Salvador","de":"El Salvador","es":"El Salvador","fa":"\u0627\u0644\u0633\u0627\u0644\u0648\u0627\u062f\u0648\u0631","fr":"Salvador","hr":"Salvador","it":"El Salvador","ja":"\u30a8\u30eb\u30b5\u30eb\u30d0\u30c9\u30eb","nl":"El Salvador","pt":"El Salvador","ru":"\u0421\u0430\u043b\u044c\u0432\u0430\u0434\u043e\u0440","pl":"Salwador","cs":"Salvador","zh":"\u8428\u5c14\u74e6\u591a\u5171\u548c\u56fd","hu":"Salvador","se":"El Salvador"},"cioc":"ESA"},{"alpha2Code":"GQ","alpha3Code":"GNQ","altSpellings":["GQ","Republic of Equatorial Guinea","Rep\u00fablica de Guinea Ecuatorial","R\u00e9publique de Guin\u00e9e \u00e9quatoriale","Rep\u00fablica da Guin\u00e9 Equatorial"],"area":28051,"borders":["CMR","GAB"],"callingCodes":["240"],"capital":"Malabo","currencies":[{"code":"XAF","name":"Central African CFA franc","symbol":"Fr"}],"demonym":"Equatorial Guinean","flag":"https://restcountries.eu/data/gnq.svg","gini":null,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[2,10],"name":"Equatorial Guinea","nativeName":"Guinea Ecuatorial","numericCode":"226","population":1402985,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Middle Africa","timezones":["UTC+01:00"],"topLevelDomain":[".gq"],"translations":{"br":"Guin\u00e9 Equatorial","de":"\u00c4quatorial-Guinea","es":"Guinea Ecuatorial","fa":"\u06af\u06cc\u0646\u0647 \u0627\u0633\u062a\u0648\u0627\u06cc\u06cc","fr":"Guin\u00e9e-\u00c9quatoriale","hr":"Ekvatorijalna Gvineja","it":"Guinea Equatoriale","ja":"\u8d64\u9053\u30ae\u30cb\u30a2","nl":"Equatoriaal-Guinea","pt":"Guin\u00e9 Equatorial","ru":"\u042d\u043a\u0432\u0430\u0442\u043e\u0440\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0432\u0438\u043d\u0435\u044f","pl":"Gwinea R\u00f3wnikowa","cs":"Rovn\u00edkov\u00e1 Guinea","zh":"\u8d64\u9053\u51e0\u5185\u4e9a\u5171\u548c\u56fd","hu":"Egyenl\u00edt\u0151i-Guinea","se":"Ekvatorialguinea"},"cioc":"GEQ"},{"alpha2Code":"ER","alpha3Code":"ERI","altSpellings":["ER","State of Eritrea","\u1203\u1308\u1228 \u12a4\u122d\u1275\u122b","Dawlat Iritriy\u00e1","\u02beErtr\u0101","Iritriy\u0101",""],"area":117600,"borders":["DJI","ETH","SDN"],"callingCodes":["291"],"capital":"Asmara","currencies":[{"code":"ERN","name":"Eritrean nakfa","symbol":"Nfk"}],"demonym":"Eritrean","flag":"https://restcountries.eu/data/eri.svg","languages":[{"iso639_1":"ti","iso639_2":"tir","name":"Tigrinya","nativeName":"\u1275\u130d\u122d\u129b"},{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[15,39],"name":"Eritrea","nativeName":"\u12a4\u122d\u1275\u122b","numericCode":"232","population":5352000,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".er"],"translations":{"br":"Eritreia","de":"Eritrea","es":"Eritrea","fa":"\u0627\u0631\u06cc\u062a\u0631\u0647","fr":"\u00c9rythr\u00e9e","hr":"Eritreja","it":"Eritrea","ja":"\u30a8\u30ea\u30c8\u30ea\u30a2","nl":"Eritrea","pt":"Eritreia","ru":"\u042d\u0440\u0438\u0442\u0440\u0435\u044f","pl":"Erytrea","cs":"Eritrea","zh":"\u5384\u7acb\u7279\u91cc\u4e9a","hu":"Eritrea","se":"Eritrea"},"cioc":"ERI"},{"alpha2Code":"EE","alpha3Code":"EST","altSpellings":["EE","Eesti","Republic of Estonia","Eesti Vabariik"],"area":45227,"borders":["LVA","RUS"],"callingCodes":["372"],"capital":"Tallinn","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Estonian","flag":"https://restcountries.eu/data/est.svg","gini":36,"languages":[{"iso639_1":"et","iso639_2":"est","name":"Estonian","nativeName":"eesti"}],"latlng":[59,26],"name":"Estonia","nativeName":"Eesti","numericCode":"233","population":1331057,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Northern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".ee"],"translations":{"br":"Est\u00f4nia","de":"Estland","es":"Estonia","fa":"\u0627\u0633\u062a\u0648\u0646\u06cc","fr":"Estonie","hr":"Estonija","it":"Estonia","ja":"\u30a8\u30b9\u30c8\u30cb\u30a2","nl":"Estland","pt":"Est\u00f3nia","ru":"\u042d\u0441\u0442\u043e\u043d\u0438\u044f","pl":"Estonia","cs":"Estonsko","zh":"\u7231\u6c99\u5c3c\u4e9a\u5171\u548c\u56fd","hu":"\u00c9sztorsz\u00e1g","se":"Estland"},"cioc":"EST"},{"alpha2Code":"ET","alpha3Code":"ETH","altSpellings":["ET","\u02be\u012aty\u014d\u1e57\u1e57y\u0101","Federal Democratic Republic of Ethiopia","\u12e8\u12a2\u1275\u12ee\u1335\u12eb \u134c\u12f4\u122b\u120b\u12ca \u12f2\u121e\u12ad\u122b\u1232\u12eb\u12ca \u122a\u1350\u1265\u120a\u12ad"],"area":1104300,"borders":["DJI","ERI","KEN","SOM","SSD","SDN"],"callingCodes":["251"],"capital":"Addis Ababa","currencies":[{"code":"ETB","name":"Ethiopian birr","symbol":"Br"}],"demonym":"Ethiopian","flag":"https://restcountries.eu/data/eth.svg","gini":29.8,"languages":[{"iso639_1":"am","iso639_2":"amh","name":"Amharic","nativeName":"\u12a0\u121b\u122d\u129b"}],"latlng":[8,38],"name":"Ethiopia","nativeName":"\u12a2\u1275\u12ee\u1335\u12eb","numericCode":"231","population":114963583,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".et"],"translations":{"br":"Eti\u00f3pia","de":"\u00c4thiopien","es":"Etiop\u00eda","fa":"\u0627\u062a\u06cc\u0648\u067e\u06cc","fr":"\u00c9thiopie","hr":"Etiopija","it":"Etiopia","ja":"\u30a8\u30c1\u30aa\u30d4\u30a2","nl":"Ethiopi\u00eb","pt":"Eti\u00f3pia","ru":"\u042d\u0444\u0438\u043e\u043f\u0438\u044f","pl":"Etiopia","cs":"Etiopie","zh":"\u57c3\u585e\u4fc4\u6bd4\u4e9a\u8054\u90a6\u6c11\u4e3b\u5171\u548c\u56fd","hu":"Eti\u00f3pia","se":"Etiopien"},"cioc":"ETH"},{"alpha2Code":"FK","alpha3Code":"FLK","altSpellings":["FK","Islas Malvinas"],"area":12173,"borders":[],"callingCodes":["500"],"capital":"Stanley","currencies":[{"code":"FKP","name":"Falkland Islands pound","symbol":"\u00a3"}],"demonym":"Falkland Islander","flag":"https://restcountries.eu/data/flk.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-51.75,-59],"name":"Falkland Islands (Malvinas)","nativeName":"Falkland Islands","numericCode":"238","population":2563,"region":"Americas","regionalBlocs":[{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-04:00"],"topLevelDomain":[".fk"],"translations":{"br":"Ilhas Malvinas","de":"Falklandinseln","es":"Islas Malvinas","fa":"\u062c\u0632\u0627\u06cc\u0631 \u0641\u0627\u0644\u06a9\u0644\u0646\u062f","fr":"\u00celes Malouines","hr":"Falklandski Otoci","it":"Isole Falkland o Isole Malvine","ja":"\u30d5\u30a9\u30fc\u30af\u30e9\u30f3\u30c9\uff08\u30de\u30eb\u30d3\u30ca\u30b9\uff09\u8af8\u5cf6","nl":"Falklandeilanden [Islas Malvinas]","pt":"Ilhas Falkland","pl":"Falklandy (Malwiny)","cs":"Falklandy","ru":"Falkland Islands (Malvinas)","zh":"\u798f\u514b\u5170\u7fa4\u5c9b","hu":"Falkland-szigetek","se":"Falklands\u00f6arna"},"cioc":""},{"alpha2Code":"FO","alpha3Code":"FRO","altSpellings":["FO","F\u00f8royar","F\u00e6r\u00f8erne"],"area":1393,"borders":[],"callingCodes":["298"],"capital":"T\u00f3rshavn","currencies":[{"code":"DKK","name":"Danish krone","symbol":"kr"},{"code":"(none)","name":"Faroese kr\u00f3na","symbol":"kr"}],"demonym":"Faroese","flag":"https://restcountries.eu/data/fro.svg","languages":[{"iso639_1":"fo","iso639_2":"fao","name":"Faroese","nativeName":"f\u00f8royskt"}],"latlng":[62,-7],"name":"Faroe Islands","nativeName":"F\u00f8royar","numericCode":"234","population":48865,"region":"Europe","subregion":"Northern Europe","timezones":["UTC+00:00"],"topLevelDomain":[".fo"],"translations":{"br":"Ilhas Faro\u00e9","de":"F\u00e4r\u00f6er-Inseln","es":"Islas Faroe","fa":"\u062c\u0632\u0627\u06cc\u0631 \u0641\u0627\u0631\u0648","fr":"\u00celes F\u00e9ro\u00e9","hr":"Farski Otoci","it":"Isole Far Oer","ja":"\u30d5\u30a7\u30ed\u30fc\u8af8\u5cf6","nl":"Faer\u00f6er","pt":"Ilhas Faro\u00e9","pl":"Wyspy Owcze","cs":"Faersk\u00e9 ostrovy","ru":"Faroe Islands","zh":"\u6cd5\u7f57\u7fa4\u5c9b","hu":"Fer\u00f6er","se":"F\u00e4r\u00f6arna"},"cioc":""},{"alpha2Code":"FJ","alpha3Code":"FJI","altSpellings":["FJ","Viti","Republic of Fiji","Matanitu ko Viti","Fij\u012b Ga\u1e47ar\u0101jya"],"area":18272,"borders":[],"callingCodes":["679"],"capital":"Suva","currencies":[{"code":"FJD","name":"Fijian dollar","symbol":"$"}],"demonym":"Fijian","flag":"https://restcountries.eu/data/fji.svg","gini":42.8,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"fj","iso639_2":"fij","name":"Fijian","nativeName":"vosa Vakaviti"},{"iso639_1":"hi","iso639_2":"hin","name":"Hindi","nativeName":"\u0939\u093f\u0928\u094d\u0926\u0940"},{"iso639_1":"ur","iso639_2":"urd","name":"Urdu","nativeName":"\u0627\u0631\u062f\u0648"}],"latlng":[-18,175],"name":"Fiji","nativeName":"Fiji","numericCode":"242","population":896444,"region":"Oceania","regionalBlocs":[],"subregion":"Melanesia","timezones":["UTC+12:00"],"topLevelDomain":[".fj"],"translations":{"br":"Fiji","de":"Fidschi","es":"Fiyi","fa":"\u0641\u06cc\u062c\u06cc","fr":"Fidji","hr":"Fi\u0111i","it":"Figi","ja":"\u30d5\u30a3\u30b8\u30fc","nl":"Fiji","pt":"Fiji","ru":"\u0424\u0438\u0434\u0436\u0438","pl":"Fid\u017ci","cs":"Fid\u017ei","zh":"\u6590\u6d4e\u5171\u548c\u56fd","hu":"Fidzsi-szigetek","se":"Fiji"},"cioc":"FIJ"},{"alpha2Code":"FI","alpha3Code":"FIN","altSpellings":["FI","Suomi","Republic of Finland","Suomen tasavalta","Republiken Finland"],"area":338424,"borders":["NOR","SWE","RUS"],"callingCodes":["358"],"capital":"Helsinki","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Finnish","flag":"https://restcountries.eu/data/fin.svg","gini":26.9,"languages":[{"iso639_1":"fi","iso639_2":"fin","name":"Finnish","nativeName":"suomi"},{"iso639_1":"sv","iso639_2":"swe","name":"Swedish","nativeName":"svenska"}],"latlng":[64,26],"name":"Finland","nativeName":"Suomi","numericCode":"246","population":5530719,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Northern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".fi"],"translations":{"br":"Finl\u00e2ndia","de":"Finnland","es":"Finlandia","fa":"\u0641\u0646\u0644\u0627\u0646\u062f","fr":"Finlande","hr":"Finska","it":"Finlandia","ja":"\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9","nl":"Finland","pt":"Finl\u00e2ndia","ru":"\u0424\u0438\u043d\u043b\u044f\u043d\u0434\u0438\u044f","pl":"Finlandia","cs":"Finsko","zh":"\u82ac\u5170\u5171\u548c\u56fd","hu":"Finnorsz\u00e1g","se":"Finland"},"cioc":"FIN"},{"alpha2Code":"FR","alpha3Code":"FRA","altSpellings":["FR","French Republic","R\u00e9publique fran\u00e7aise"],"area":640679,"borders":["AND","BEL","DEU","ITA","LUX","MCO","ESP","CHE"],"callingCodes":["33"],"capital":"Paris","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"French","flag":"https://restcountries.eu/data/fra.svg","gini":32.7,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[46,2],"name":"France","nativeName":"France","numericCode":"250","population":67391582,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Western Europe","timezones":["UTC-10:00","UTC-09:30","UTC-09:00","UTC-08:00","UTC-04:00","UTC-03:00","UTC+01:00","UTC+03:00","UTC+04:00","UTC+05:00","UTC+10:00","UTC+11:00","UTC+12:00"],"topLevelDomain":[".fr"],"translations":{"br":"Fran\u00e7a","de":"Frankreich","es":"Francia","fa":"\u0641\u0631\u0627\u0646\u0633\u0647","fr":"France","hr":"Francuska","it":"Francia","ja":"\u30d5\u30e9\u30f3\u30b9","nl":"Frankrijk","pt":"Fran\u00e7a","ru":"\u0424\u0440\u0430\u043d\u0446\u0438\u044f","pl":"Francja","cs":"Francie","zh":"\u6cd5\u5170\u897f\u5171\u548c\u56fd","hu":"Franciaorsz\u00e1g","se":"Frankrike"},"cioc":"FRA"},{"alpha2Code":"GF","alpha3Code":"GUF","altSpellings":["GF","Guiana","Guyane"],"borders":["BRA","SUR"],"callingCodes":["594"],"capital":"Cayenne","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"","flag":"https://restcountries.eu/data/guf.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[4,-53],"name":"French Guiana","nativeName":"Guyane fran\u00e7aise","numericCode":"254","population":254541,"region":"Americas","regionalBlocs":[{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]},{"acronym":"EU","name":"European Union"}],"subregion":"South America","timezones":["UTC-03:00"],"topLevelDomain":[".gf"],"translations":{"br":"Guiana Francesa","de":"Franz\u00f6sisch Guyana","es":"Guayana Francesa","fa":"\u06af\u0648\u06cc\u0627\u0646 \u0641\u0631\u0627\u0646\u0633\u0647","fr":"Guyane fran\u00e7aise","hr":"Francuska Gvajana","it":"Guyana francese","ja":"\u30d5\u30e9\u30f3\u30b9\u9818\u30ae\u30a2\u30ca","nl":"Frans-Guyana","pt":"Guiana Francesa","pl":"Gujana Francuska","cs":"Francouzsk\u00e1 Guyana","ru":"French Guiana","zh":"\u6cd5\u5c5e\u572d\u4e9a\u90a3","hu":"Francia Guyana","se":"Franska Guyana"},"cioc":""},{"alpha2Code":"PF","alpha3Code":"PYF","altSpellings":["PF","Polyn\u00e9sie fran\u00e7aise","French Polynesia","P\u014dr\u012bnetia Far\u0101ni"],"area":4167,"borders":[],"callingCodes":["689"],"capital":"Papeet\u0113","currencies":[{"code":"XPF","name":"CFP franc","symbol":"Fr"}],"demonym":"French Polynesian","flag":"https://restcountries.eu/data/pyf.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[-15,-140],"name":"French Polynesia","nativeName":"Polyn\u00e9sie fran\u00e7aise","numericCode":"258","population":280904,"region":"Oceania","regionalBlocs":[],"subregion":"Polynesia","timezones":["UTC-10:00","UTC-09:30","UTC-09:00"],"topLevelDomain":[".pf"],"translations":{"br":"Polin\u00e9sia Francesa","de":"Franz\u00f6sisch-Polynesien","es":"Polinesia Francesa","fa":"\u067e\u0644\u06cc\u200c\u0646\u0632\u06cc \u0641\u0631\u0627\u0646\u0633\u0647","fr":"Polyn\u00e9sie fran\u00e7aise","hr":"Francuska Polinezija","it":"Polinesia Francese","ja":"\u30d5\u30e9\u30f3\u30b9\u9818\u30dd\u30ea\u30cd\u30b7\u30a2","nl":"Frans-Polynesi\u00eb","pt":"Polin\u00e9sia Francesa","pl":"Polinezja Francuska","cs":"Francouzsk\u00e1 Polyn\u00e9sie","ru":"French Polynesia","zh":"\u6cd5\u5c5e\u6ce2\u5229\u5c3c\u897f\u4e9a","hu":"Francia Polin\u00e9zia","se":"Franska Polynesien"},"cioc":""},{"alpha2Code":"TF","alpha3Code":"ATF","altSpellings":["TF"],"area":7747,"borders":[],"callingCodes":["262"],"capital":"Port-aux-Fran\u00e7ais","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"French","flag":"https://restcountries.eu/data/atf.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[-49.25,69.167],"name":"French Southern Territories","nativeName":"Territoire des Terres australes et antarctiques fran\u00e7aises","numericCode":"260","population":140,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Southern Africa","timezones":["UTC+05:00"],"topLevelDomain":[".tf"],"translations":{"br":"Terras Austrais e Ant\u00e1rticas Francesas","de":"Franz\u00f6sische S\u00fcd- und Antarktisgebiete","es":"Tierras Australes y Ant\u00e1rticas Francesas","fa":"\u0633\u0631\u0632\u0645\u06cc\u0646\u200c\u0647\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc \u0648 \u062c\u0646\u0648\u0628\u06af\u0627\u0646\u06cc \u0641\u0631\u0627\u0646\u0633\u0647","fr":"Terres australes et antarctiques fran\u00e7aises","hr":"Francuski ju\u017eni i antarkti\u010dki teritoriji","it":"Territori Francesi del Sud","ja":"\u30d5\u30e9\u30f3\u30b9\u9818\u5357\u65b9\u30fb\u5357\u6975\u5730\u57df","nl":"Franse Gebieden in de zuidelijke Indische Oceaan","pt":"Terras Austrais e Ant\u00e1rticas Francesas","pl":"Francuskie Terytoria Po\u0142udniowe i Antarktyczne","cs":"Francouzsk\u00e1 ji\u017en\u00ed a antarktick\u00e1 \u00fazem\u00ed","ru":"French Southern Territories","zh":"\u6cd5\u56fd\u5357\u90e8\u548c\u5357\u6781\u571f\u5730","hu":"Francia d\u00e9li \u00e9s antarktiszi ter\u00fcletek","se":"Franska s\u00f6dra territorierna"},"cioc":""},{"alpha2Code":"GA","alpha3Code":"GAB","altSpellings":["GA","Gabonese Republic","R\u00e9publique Gabonaise"],"area":267668,"borders":["CMR","COG","GNQ"],"callingCodes":["241"],"capital":"Libreville","currencies":[{"code":"XAF","name":"Central African CFA franc","symbol":"Fr"}],"demonym":"Gabonese","flag":"https://restcountries.eu/data/gab.svg","gini":41.5,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[-1,11.75],"name":"Gabon","nativeName":"Gabon","numericCode":"266","population":2225728,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Middle Africa","timezones":["UTC+01:00"],"topLevelDomain":[".ga"],"translations":{"br":"Gab\u00e3o","de":"Gabun","es":"Gab\u00f3n","fa":"\u06af\u0627\u0628\u0646","fr":"Gabon","hr":"Gabon","it":"Gabon","ja":"\u30ac\u30dc\u30f3","nl":"Gabon","pt":"Gab\u00e3o","ru":"\u0413\u0430\u0431\u043e\u043d","pl":"Gabon","cs":"Gabon","zh":"\u52a0\u84ec\u5171\u548c\u56fd","hu":"Gabon","se":"Gabon"},"cioc":"GAB"},{"alpha2Code":"GM","alpha3Code":"GMB","altSpellings":["GM","Republic of the Gambia"],"area":11295,"borders":["SEN"],"callingCodes":["220"],"capital":"Banjul","currencies":[{"code":"GMD","name":"Gambian dalasi","symbol":"D"}],"demonym":"Gambian","flag":"https://restcountries.eu/data/gmb.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[13.46666666,-16.56666666],"name":"Gambia","nativeName":"Gambia","numericCode":"270","population":2416664,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC+00:00"],"topLevelDomain":[".gm"],"translations":{"br":"G\u00e2mbia","de":"Gambia","es":"Gambia","fa":"\u06af\u0627\u0645\u0628\u06cc\u0627","fr":"Gambie","hr":"Gambija","it":"Gambia","ja":"\u30ac\u30f3\u30d3\u30a2","nl":"Gambia","pt":"G\u00e2mbia","ru":"\u0413\u0430\u043c\u0431\u0438\u044f","pl":"Gambia","cs":"Gambie","zh":"\u5188\u6bd4\u4e9a\u5171\u548c\u56fd","hu":"Gambia","se":"Gambia"},"cioc":"GAM"},{"alpha2Code":"GE","alpha3Code":"GEO","altSpellings":["GE","Sakartvelo"],"area":69700,"borders":["ARM","AZE","RUS","TUR"],"callingCodes":["995"],"capital":"Tbilisi","currencies":[{"code":"GEL","name":"Georgian Lari","symbol":"\u10da"}],"demonym":"Georgian","flag":"https://restcountries.eu/data/geo.svg","gini":41.3,"languages":[{"iso639_1":"ka","iso639_2":"kat","name":"Georgian","nativeName":"\u10e5\u10d0\u10e0\u10d7\u10e3\u10da\u10d8"}],"latlng":[42,43.5],"name":"Georgia","nativeName":"\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd","numericCode":"268","population":3714000,"region":"Asia","regionalBlocs":[],"subregion":"Western Asia","timezones":["UTC+04:00"],"topLevelDomain":[".ge"],"translations":{"br":"Ge\u00f3rgia","de":"Georgien","es":"Georgia","fa":"\u06af\u0631\u062c\u0633\u062a\u0627\u0646","fr":"G\u00e9orgie","hr":"Gruzija","it":"Georgia","ja":"\u30b0\u30eb\u30b8\u30a2","nl":"Georgi\u00eb","pt":"Ge\u00f3rgia","ru":"\u0413\u0440\u0443\u0437\u0438\u044f","pl":"Gruzja","cs":"Gruzie","zh":"\u683c\u9c81\u5409\u4e9a","hu":"Gr\u00fazia","se":"Georgien"},"cioc":"GEO"},{"alpha2Code":"DE","alpha3Code":"DEU","altSpellings":["DE","Federal Republic of Germany","Bundesrepublik Deutschland"],"area":357114,"borders":["AUT","BEL","CZE","DNK","FRA","LUX","NLD","POL","CHE"],"callingCodes":["49"],"capital":"Berlin","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"German","flag":"https://restcountries.eu/data/deu.svg","gini":28.3,"languages":[{"iso639_1":"de","iso639_2":"deu","name":"German","nativeName":"Deutsch"}],"latlng":[51,9],"name":"Germany","nativeName":"Deutschland","numericCode":"276","population":83240525,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Western Europe","timezones":["UTC+01:00"],"topLevelDomain":[".de"],"translations":{"br":"Alemanha","de":"Deutschland","es":"Alemania","fa":"\u0622\u0644\u0645\u0627\u0646","fr":"Allemagne","hr":"Njema\u010dka","it":"Germania","ja":"\u30c9\u30a4\u30c4","nl":"Duitsland","pt":"Alemanha","ru":"\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f","pl":"Niemcy","cs":"N\u011bmecko","zh":"\u5fb7\u610f\u5fd7\u8054\u90a6\u5171\u548c\u56fd","hu":"N\u00e9metorsz\u00e1g","se":"Tyskland"},"cioc":"GER"},{"alpha2Code":"GH","alpha3Code":"GHA","altSpellings":["GH"],"area":238533,"borders":["BFA","CIV","TGO"],"callingCodes":["233"],"capital":"Accra","currencies":[{"code":"GHS","name":"Ghanaian cedi","symbol":"\u20b5"}],"demonym":"Ghanaian","flag":"https://restcountries.eu/data/gha.svg","gini":42.8,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[8,-2],"name":"Ghana","nativeName":"Ghana","numericCode":"288","population":31072945,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".gh"],"translations":{"br":"Gana","de":"Ghana","es":"Ghana","fa":"\u063a\u0646\u0627","fr":"Ghana","hr":"Gana","it":"Ghana","ja":"\u30ac\u30fc\u30ca","nl":"Ghana","pt":"Gana","ru":"\u0413\u0430\u043d\u0430","pl":"Ghana","cs":"Ghana","zh":"\u52a0\u7eb3\u5171\u548c\u56fd","hu":"Gh\u00e1na","se":"Ghana"},"cioc":"GHA"},{"alpha2Code":"GI","alpha3Code":"GIB","altSpellings":["GI"],"area":6,"borders":["ESP"],"callingCodes":["350"],"capital":"Gibraltar","currencies":[{"code":"GIP","name":"Gibraltar pound","symbol":"\u00a3"}],"demonym":"Gibraltar","flag":"https://restcountries.eu/data/gib.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[36.13333333,-5.35],"name":"Gibraltar","nativeName":"Gibraltar","numericCode":"292","population":33691,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".gi"],"translations":{"br":"Gibraltar","de":"Gibraltar","es":"Gibraltar","fa":"\u062c\u0628\u0644\u200c\u0637\u0627\u0631\u0642","fr":"Gibraltar","hr":"Gibraltar","it":"Gibilterra","ja":"\u30b8\u30d6\u30e9\u30eb\u30bf\u30eb","nl":"Gibraltar","pt":"Gibraltar","pl":"Gibraltar","cs":"Gibraltar","ru":"Gibraltar","zh":"\u76f4\u5e03\u7f57\u9640","hu":"Gibralt\u00e1r","se":"Gibraltar"},"cioc":""},{"alpha2Code":"GR","alpha3Code":"GRC","altSpellings":["GR","Ell\u00e1da","Hellenic Republic","\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1"],"area":131990,"borders":["ALB","BGR","TUR","MKD"],"callingCodes":["30"],"capital":"Athens","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Greek","flag":"https://restcountries.eu/data/grc.svg","gini":34.3,"languages":[{"iso639_1":"el","iso639_2":"ell","name":"Greek (modern)","nativeName":"\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}],"latlng":[39,22],"name":"Greece","nativeName":"\u0395\u03bb\u03bb\u03ac\u03b4\u03b1","numericCode":"300","population":10715549,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Southern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".gr"],"translations":{"br":"Gr\u00e9cia","de":"Griechenland","es":"Grecia","fa":"\u06cc\u0648\u0646\u0627\u0646","fr":"Gr\u00e8ce","hr":"Gr\u010dka","it":"Grecia","ja":"\u30ae\u30ea\u30b7\u30e3","nl":"Griekenland","pt":"Gr\u00e9cia","ru":"\u0413\u0440\u0435\u0446\u0438\u044f","pl":"Grecja","cs":"\u0158ecko","zh":"\u5e0c\u814a\u5171\u548c\u56fd","hu":"G\u00f6r\u00f6gorsz\u00e1g","se":"Grekland"},"cioc":"GRE"},{"alpha2Code":"GL","alpha3Code":"GRL","altSpellings":["GL","Gr\u00f8nland"],"area":2166086,"borders":[],"callingCodes":["299"],"capital":"Nuuk","currencies":[{"code":"DKK","name":"Danish krone","symbol":"kr"}],"demonym":"Greenlandic","flag":"https://restcountries.eu/data/grl.svg","languages":[{"iso639_1":"kl","iso639_2":"kal","name":"Kalaallisut","nativeName":"kalaallisut"}],"latlng":[72,-40],"name":"Greenland","nativeName":"Kalaallit Nunaat","numericCode":"304","population":56367,"region":"Americas","regionalBlocs":[],"subregion":"Northern America","timezones":["UTC-04:00","UTC-03:00","UTC-01:00","UTC+00:00"],"topLevelDomain":[".gl"],"translations":{"br":"Groel\u00e2ndia","de":"Gr\u00f6nland","es":"Groenlandia","fa":"\u06af\u0631\u06cc\u0646\u0644\u0646\u062f","fr":"Groenland","hr":"Grenland","it":"Groenlandia","ja":"\u30b0\u30ea\u30fc\u30f3\u30e9\u30f3\u30c9","nl":"Groenland","pt":"Gronel\u00e2ndia","pl":"Grenlandia","cs":"Gr\u00f3nsko","ru":"Greenland","zh":"\u683c\u9675\u5170","hu":"Gr\u00f6nland","se":"Gr\u00f6nland"},"cioc":""},{"alpha2Code":"GD","alpha3Code":"GRD","altSpellings":["GD"],"area":344,"borders":[],"callingCodes":["1"],"capital":"St. George's","currencies":[{"code":"XCD","name":"East Caribbean dollar","symbol":"$"}],"demonym":"Grenadian","flag":"https://restcountries.eu/data/grd.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[12.11666666,-61.66666666],"name":"Grenada","nativeName":"Grenada","numericCode":"308","population":112519,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".gd"],"translations":{"br":"Granada","de":"Grenada","es":"Grenada","fa":"\u06af\u0631\u0646\u0627\u062f\u0627","fr":"Grenade","hr":"Grenada","it":"Grenada","ja":"\u30b0\u30ec\u30ca\u30c0","nl":"Grenada","pt":"Granada","ru":"\u0413\u0440\u0435\u043d\u0430\u0434\u0430","pl":"Grenada","cs":"Grenada","zh":"\u683c\u6797\u7eb3\u8fbe","hu":"Grenada","se":"Grenada"},"cioc":"GRN"},{"alpha2Code":"GP","alpha3Code":"GLP","altSpellings":["GP","Gwadloup"],"borders":[],"callingCodes":["590"],"capital":"Basse-Terre","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Guadeloupian","flag":"https://restcountries.eu/data/glp.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[16.25,-61.583333],"name":"Guadeloupe","nativeName":"Guadeloupe","numericCode":"312","population":400132,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".gp"],"translations":{"br":"Guadalupe","de":"Guadeloupe","es":"Guadalupe","fa":"\u062c\u0632\u06cc\u0631\u0647 \u06af\u0648\u0627\u062f\u0644\u0648\u067e","fr":"Guadeloupe","hr":"Gvadalupa","it":"Guadeloupa","ja":"\u30b0\u30a2\u30c9\u30eb\u30fc\u30d7","nl":"Guadeloupe","pt":"Guadalupe","pl":"Gwadelupa","cs":"Guadeloupe","ru":"Guadeloupe","zh":"\u74dc\u5fb7\u7f57\u666e\u5c9b","hu":"Guadeloupe","se":"Guadeloupe"},"cioc":""},{"alpha2Code":"GU","alpha3Code":"GUM","altSpellings":["GU","Gu\u00e5h\u00e5n"],"area":549,"borders":[],"callingCodes":["1"],"capital":"Hag\u00e5t\u00f1a","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Guamanian","flag":"https://restcountries.eu/data/gum.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"ch","iso639_2":"cha","name":"Chamorro","nativeName":"Chamoru"},{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[13.46666666,144.78333333],"name":"Guam","nativeName":"Guam","numericCode":"316","population":168783,"region":"Oceania","regionalBlocs":[],"subregion":"Micronesia","timezones":["UTC+10:00"],"topLevelDomain":[".gu"],"translations":{"br":"Guam","de":"Guam","es":"Guam","fa":"\u06af\u0648\u0627\u0645","fr":"Guam","hr":"Guam","it":"Guam","ja":"\u30b0\u30a2\u30e0","nl":"Guam","pt":"Guame","pl":"Guam","cs":"Guam","ru":"Guam","zh":"\u5173\u5c9b","hu":"Guam","se":"Guam"},"cioc":"GUM"},{"alpha2Code":"GT","alpha3Code":"GTM","altSpellings":["GT"],"area":108889,"borders":["BLZ","SLV","HND","MEX"],"callingCodes":["502"],"capital":"Guatemala City","currencies":[{"code":"GTQ","name":"Guatemalan quetzal","symbol":"Q"}],"demonym":"Guatemalan","flag":"https://restcountries.eu/data/gtm.svg","gini":55.9,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[15.5,-90.25],"name":"Guatemala","nativeName":"Guatemala","numericCode":"320","population":16858333,"region":"Americas","regionalBlocs":[{"acronym":"CAIS","name":"Central American Integration System","otherAcronyms":["SICA"],"otherNames":["Sistema de la Integraci\u00f3n Centroamericana,"]}],"subregion":"Central America","timezones":["UTC-06:00"],"topLevelDomain":[".gt"],"translations":{"br":"Guatemala","de":"Guatemala","es":"Guatemala","fa":"\u06af\u0648\u0627\u062a\u0645\u0627\u0644\u0627","fr":"Guatemala","hr":"Gvatemala","it":"Guatemala","ja":"\u30b0\u30a2\u30c6\u30de\u30e9","nl":"Guatemala","pt":"Guatemala","ru":"\u0413\u0432\u0430\u0442\u0435\u043c\u0430\u043b\u0430","pl":"Gwatemala","cs":"Guatemala","zh":"\u5371\u5730\u9a6c\u62c9\u5171\u548c\u56fd","hu":"Guatemala","se":"Guatemala"},"cioc":"GUA"},{"alpha2Code":"GG","alpha3Code":"GGY","altSpellings":["GG","Bailiwick of Guernsey","Bailliage de Guernesey"],"area":78,"borders":[],"callingCodes":["44"],"capital":"St. Peter Port","currencies":[{"code":"GBP","name":"British pound","symbol":"\u00a3"},{"code":"(none)","name":"Guernsey pound","symbol":"\u00a3"}],"demonym":"Channel Islander","flag":"https://restcountries.eu/data/ggy.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[49.46666666,-2.58333333],"name":"Guernsey","nativeName":"Guernsey","numericCode":"831","population":62999,"region":"Europe","regionalBlocs":[],"subregion":"Northern Europe","timezones":["UTC+00:00"],"topLevelDomain":[".gg"],"translations":{"br":"Guernsey","de":"Guernsey","es":"Guernsey","fa":"\u06af\u0631\u0646\u0632\u06cc","fr":"Guernesey","hr":"Guernsey","it":"Guernsey","ja":"\u30ac\u30fc\u30f3\u30b8\u30fc","nl":"Guernsey","pt":"Guernsey","pl":"Guernsey","cs":"Guernsey","ru":"Guernsey","zh":"\u6839\u897f\u5c9b","hu":"Guernsey","se":"Guernsey"},"cioc":""},{"alpha2Code":"GN","alpha3Code":"GIN","altSpellings":["GN","Republic of Guinea","R\u00e9publique de Guin\u00e9e"],"area":245857,"borders":["CIV","GNB","LBR","MLI","SEN","SLE"],"callingCodes":["224"],"capital":"Conakry","currencies":[{"code":"GNF","name":"Guinean franc","symbol":"Fr"}],"demonym":"Guinean","flag":"https://restcountries.eu/data/gin.svg","gini":39.4,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"ff","iso639_2":"ful","name":"Fula","nativeName":"Fulfulde"}],"latlng":[11,-10],"name":"Guinea","nativeName":"Guin\u00e9e","numericCode":"324","population":13132792,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".gn"],"translations":{"br":"Guin\u00e9","de":"Guinea","es":"Guinea","fa":"\u06af\u06cc\u0646\u0647","fr":"Guin\u00e9e","hr":"Gvineja","it":"Guinea","ja":"\u30ae\u30cb\u30a2","nl":"Guinee","pt":"Guin\u00e9","ru":"\u0413\u0432\u0438\u043d\u0435\u044f","pl":"Gwinea","cs":"Guinea","zh":"\u51e0\u5185\u4e9a\u5171\u548c\u56fd","hu":"Guinea","se":"Guinea"},"cioc":"GUI"},{"alpha2Code":"GW","alpha3Code":"GNB","altSpellings":["GW","Republic of Guinea-Bissau","Rep\u00fablica da Guin\u00e9-Bissau"],"area":36125,"borders":["GIN","SEN"],"callingCodes":["245"],"capital":"Bissau","currencies":[{"code":"XOF","name":"West African CFA franc","symbol":"Fr"}],"demonym":"Guinea-Bissauan","flag":"https://restcountries.eu/data/gnb.svg","gini":35.5,"languages":[{"iso639_1":"pt","iso639_2":"por","name":"Portuguese","nativeName":"Portugu\u00eas"}],"latlng":[12,-15],"name":"Guinea-Bissau","nativeName":"Guin\u00e9-Bissau","numericCode":"624","population":1967998,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".gw"],"translations":{"br":"Guin\u00e9-Bissau","de":"Guinea-Bissau","es":"Guinea-Bis\u00e1u","fa":"\u06af\u06cc\u0646\u0647 \u0628\u06cc\u0633\u0627\u0626\u0648","fr":"Guin\u00e9e-Bissau","hr":"Gvineja Bisau","it":"Guinea-Bissau","ja":"\u30ae\u30cb\u30a2\u30d3\u30b5\u30a6","nl":"Guinee-Bissau","pt":"Guin\u00e9-Bissau","ru":"\u0413\u0432\u0438\u043d\u0435\u044f-\u0411\u0438\u0441\u0430\u0443","pl":"Gwinea Bissau","cs":"Guinea-Bissau","zh":"\u51e0\u5185\u4e9a\u6bd4\u7ecd\u5171\u548c\u56fd","hu":"Bissau-Guinea","se":"Guinea-Bissau"},"cioc":"GBS"},{"alpha2Code":"GY","alpha3Code":"GUY","altSpellings":["GY","Co-operative Republic of Guyana"],"area":214969,"borders":["BRA","SUR","VEN"],"callingCodes":["592"],"capital":"Georgetown","currencies":[{"code":"GYD","name":"Guyanese dollar","symbol":"$"}],"demonym":"Guyanese","flag":"https://restcountries.eu/data/guy.svg","gini":44.5,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[5,-59],"name":"Guyana","nativeName":"Guyana","numericCode":"328","population":786559,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]},{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-04:00"],"topLevelDomain":[".gy"],"translations":{"br":"Guiana","de":"Guyana","es":"Guyana","fa":"\u06af\u0648\u06cc\u0627\u0646","fr":"Guyane","hr":"Gvajana","it":"Guyana","ja":"\u30ac\u30a4\u30a2\u30ca","nl":"Guyana","pt":"Guiana","ru":"\u0413\u0430\u0439\u0430\u043d\u0430","pl":"Gujana","cs":"Guyana","zh":"\u572d\u4e9a\u90a3\u5171\u548c\u56fd","hu":"Guyana","se":"Guyana"},"cioc":"GUY"},{"alpha2Code":"HT","alpha3Code":"HTI","altSpellings":["HT","Republic of Haiti","R\u00e9publique d'Ha\u00efti","Repiblik Ayiti"],"area":27750,"borders":["DOM"],"callingCodes":["509"],"capital":"Port-au-Prince","currencies":[{"code":"HTG","name":"Haitian gourde","symbol":"G"}],"demonym":"Haitian","flag":"https://restcountries.eu/data/hti.svg","gini":59.2,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"ht","iso639_2":"hat","name":"Haitian","nativeName":"Krey\u00f2l ayisyen"}],"latlng":[19,-72.41666666],"name":"Haiti","nativeName":"Ha\u00efti","numericCode":"332","population":11402533,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-05:00"],"topLevelDomain":[".ht"],"translations":{"br":"Haiti","de":"Haiti","es":"Haiti","fa":"\u0647\u0627\u0626\u06cc\u062a\u06cc","fr":"Ha\u00efti","hr":"Haiti","it":"Haiti","ja":"\u30cf\u30a4\u30c1","nl":"Ha\u00efti","pt":"Haiti","ru":"\u0413\u0430\u0438\u0442\u0438","pl":"Haiti","cs":"Haiti","zh":"\u6d77\u5730\u5171\u548c\u56fd","hu":"Haiti","se":"Haiti"},"cioc":"HAI"},{"alpha2Code":"HM","alpha3Code":"HMD","altSpellings":["HM"],"area":412,"borders":[],"callingCodes":["672"],"capital":"","currencies":[{"code":"AUD","name":"Australian dollar","symbol":"$"}],"demonym":"Heard and McDonald Islander","flag":"https://restcountries.eu/data/hmd.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-53.1,72.51666666],"name":"Heard Island and McDonald Islands","nativeName":"Heard Island and McDonald Islands","numericCode":"334","population":0,"region":"Polar","regionalBlocs":[],"subregion":"","timezones":["UTC+05:00"],"topLevelDomain":[".hm",".aq"],"translations":{"br":"Ilha Heard e Ilhas McDonald","de":"Heard und die McDonaldinseln","es":"Islas Heard y McDonald","fa":"\u062c\u0632\u06cc\u0631\u0647 \u0647\u0631\u062f \u0648 \u062c\u0632\u0627\u06cc\u0631 \u0645\u06a9\u200c\u062f\u0648\u0646\u0627\u0644\u062f","fr":"\u00celes Heard-et-MacDonald","hr":"Otok Heard i oto\u010dje McDonald","it":"Isole Heard e McDonald","ja":"\u30cf\u30fc\u30c9\u5cf6\u3068\u30de\u30af\u30c9\u30ca\u30eb\u30c9\u8af8\u5cf6","nl":"Heard- en McDonaldeilanden","pt":"Ilha Heard e Ilhas McDonald","pl":"Wyspy Heard i McDonald","cs":"Heard\u016fv ostrov a McDonaldovy ostrovy","ru":"Heard Island and McDonald Islands","zh":"\u8d6b\u5fb7\u5c9b\u548c\u9ea6\u5f53\u52b3\u7fa4\u5c9b","hu":"Heard-sziget \u00e9s McDonald-szigetek","se":"Heard- och McDonald\u00f6arna"},"cioc":""},{"alpha2Code":"VA","alpha3Code":"VAT","altSpellings":["Sancta Sedes","Vatican","The Vatican"],"area":0.44,"borders":["ITA"],"callingCodes":["379"],"capital":"Vatican City","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"","flag":"https://restcountries.eu/data/vat.svg","gini":null,"languages":[{"iso639_1":"la","iso639_2":"lat","name":"Latin","nativeName":"latine"},{"iso639_1":"it","iso639_2":"ita","name":"Italian","nativeName":"Italiano"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"de","iso639_2":"deu","name":"German","nativeName":"Deutsch"}],"latlng":[41.9,12.45],"name":"Vatican City","nativeName":"Citt\u00e0 del Vaticano","numericCode":"336","population":451,"region":"Europe","regionalBlocs":[],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".va"],"translations":{"br":"Vaticano","de":"Vatikanstadt","es":"Santa Sede","fa":"\u0633\u0631\u06cc\u0631 \u0645\u0642\u062f\u0633","fr":"Vatican","hr":"Sveta Stolica","it":"Santa Sede","ja":"\u8056\u5ea7","nl":"Vaticaanstad","pt":"Vaticano","pl":"Stolica Apostolska","cs":"Svat\u00fd stolec","ru":"Holy See","zh":"\u68b5\u8482\u5188\u57ce\u56fd","hu":"Vatik\u00e1n","se":"Vatikanstaten"},"cioc":""},{"alpha2Code":"HN","alpha3Code":"HND","altSpellings":["HN","Republic of Honduras","Rep\u00fablica de Honduras"],"area":112492,"borders":["GTM","SLV","NIC"],"callingCodes":["504"],"capital":"Tegucigalpa","currencies":[{"code":"HNL","name":"Honduran lempira","symbol":"L"}],"demonym":"Honduran","flag":"https://restcountries.eu/data/hnd.svg","gini":57,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[15,-86.5],"name":"Honduras","nativeName":"Honduras","numericCode":"340","population":9904608,"region":"Americas","regionalBlocs":[{"acronym":"CAIS","name":"Central American Integration System","otherAcronyms":["SICA"],"otherNames":["Sistema de la Integraci\u00f3n Centroamericana,"]}],"subregion":"Central America","timezones":["UTC-06:00"],"topLevelDomain":[".hn"],"translations":{"br":"Honduras","de":"Honduras","es":"Honduras","fa":"\u0647\u0646\u062f\u0648\u0631\u0627\u0633","fr":"Honduras","hr":"Honduras","it":"Honduras","ja":"\u30db\u30f3\u30b8\u30e5\u30e9\u30b9","nl":"Honduras","pt":"Honduras","ru":"\u0413\u043e\u043d\u0434\u0443\u0440\u0430\u0441","pl":"Honduras","cs":"Honduras","zh":"\u6d2a\u90fd\u62c9\u65af\u5171\u548c\u56fd","hu":"Honduras","se":"Honduras"},"cioc":"HON"},{"alpha2Code":"HK","alpha3Code":"HKG","altSpellings":["HK","\u9999\u6e2f"],"area":1104,"borders":["CHN"],"callingCodes":["852"],"capital":"City of Victoria","currencies":[{"code":"HKD","name":"Hong Kong dollar","symbol":"$"}],"demonym":"Chinese","flag":"https://restcountries.eu/data/hkg.svg","gini":53.3,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"zh","iso639_2":"zho","name":"Chinese","nativeName":"\u4e2d\u6587 (Zh\u014dngw\u00e9n)"}],"latlng":[22.25,114.16666666],"name":"Hong Kong","nativeName":"\u9999\u6e2f","numericCode":"344","population":7481800,"region":"Asia","regionalBlocs":[],"subregion":"Eastern Asia","timezones":["UTC+08:00"],"topLevelDomain":[".hk"],"translations":{"br":"Hong Kong","de":"Hong Kong","es":"Hong Kong","fa":"\u0647\u0646\u06af\u200c\u06a9\u0646\u06af","fr":"Hong Kong","hr":"Hong Kong","it":"Hong Kong","ja":"\u9999\u6e2f","nl":"Hongkong","pt":"Hong Kong","pl":"Hongkong","cs":"Hongkong","ru":"Hong Kong","zh":"\u9999\u6e2f","hu":"Hong Kong","se":"Hongkong"},"cioc":"HKG"},{"alpha2Code":"HU","alpha3Code":"HUN","altSpellings":["HU"],"area":93028,"borders":["AUT","HRV","ROU","SRB","SVK","SVN","UKR"],"callingCodes":["36"],"capital":"Budapest","currencies":[{"code":"HUF","name":"Hungarian forint","symbol":"Ft"}],"demonym":"Hungarian","flag":"https://restcountries.eu/data/hun.svg","gini":31.2,"languages":[{"iso639_1":"hu","iso639_2":"hun","name":"Hungarian","nativeName":"magyar"}],"latlng":[47,20],"name":"Hungary","nativeName":"Magyarorsz\u00e1g","numericCode":"348","population":9749763,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Eastern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".hu"],"translations":{"br":"Hungria","de":"Ungarn","es":"Hungr\u00eda","fa":"\u0645\u062c\u0627\u0631\u0633\u062a\u0627\u0646","fr":"Hongrie","hr":"Ma\u0111arska","it":"Ungheria","ja":"\u30cf\u30f3\u30ac\u30ea\u30fc","nl":"Hongarije","pt":"Hungria","ru":"\u0412\u0435\u043d\u0433\u0440\u0438\u044f","pl":"W\u0119gry","cs":"Ma\u010farsko","zh":"\u5308\u7259\u5229","hu":"Magyarorsz\u00e1g","se":"Ungern"},"cioc":"HUN"},{"alpha2Code":"IS","alpha3Code":"ISL","altSpellings":["IS","Island","Republic of Iceland","L\u00fd\u00f0veldi\u00f0 \u00cdsland"],"area":103000,"borders":[],"callingCodes":["354"],"capital":"Reykjav\u00edk","currencies":[{"code":"ISK","name":"Icelandic kr\u00f3na","symbol":"kr"}],"demonym":"Icelander","flag":"https://restcountries.eu/data/isl.svg","gini":null,"languages":[{"iso639_1":"is","iso639_2":"isl","name":"Icelandic","nativeName":"\u00cdslenska"}],"latlng":[65,-18],"name":"Iceland","nativeName":"\u00cdsland","numericCode":"352","population":366425,"region":"Europe","regionalBlocs":[{"acronym":"EFTA","name":"European Free Trade Association"}],"subregion":"Northern Europe","timezones":["UTC"],"topLevelDomain":[".is"],"translations":{"br":"Isl\u00e2ndia","de":"Island","es":"Islandia","fa":"\u0627\u06cc\u0633\u0644\u0646\u062f","fr":"Islande","hr":"Island","it":"Islanda","ja":"\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9","nl":"IJsland","pt":"Isl\u00e2ndia","ru":"\u0418\u0441\u043b\u0430\u043d\u0434\u0438\u044f","pl":"Islandia","cs":"Island","zh":"\u51b0\u5c9b","hu":"Izland","se":"Island"},"cioc":"ISL"},{"alpha2Code":"IN","alpha3Code":"IND","altSpellings":["IN","Bh\u0101rat","Republic of India","Bharat Ganrajya"],"area":3287590,"borders":["AFG","BGD","BTN","MMR","CHN","NPL","PAK","LKA"],"callingCodes":["91"],"capital":"New Delhi","currencies":[{"code":"INR","name":"Indian rupee","symbol":"\u20b9"}],"demonym":"Indian","flag":"https://restcountries.eu/data/ind.svg","gini":33.4,"languages":[{"iso639_1":"hi","iso639_2":"hin","name":"Hindi","nativeName":"\u0939\u093f\u0928\u094d\u0926\u0940"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[20,77],"name":"India","nativeName":"\u092d\u093e\u0930\u0924","numericCode":"356","population":1380004385,"region":"Asia","regionalBlocs":[{"acronym":"SAARC","name":"South Asian Association for Regional Cooperation"}],"subregion":"Southern Asia","timezones":["UTC+05:30"],"topLevelDomain":[".in"],"translations":{"br":"\u00cdndia","de":"Indien","es":"India","fa":"\u0647\u0646\u062f","fr":"Inde","hr":"Indija","it":"India","ja":"\u30a4\u30f3\u30c9","nl":"India","pt":"\u00cdndia","ru":"\u0418\u043d\u0434\u0438\u044f","pl":"Indie","cs":"Indie","zh":"\u5370\u5ea6\u5171\u548c\u56fd","hu":"India","se":"Indien"},"cioc":"IND"},{"alpha2Code":"ID","alpha3Code":"IDN","altSpellings":["ID","Republic of Indonesia","Republik Indonesia"],"area":1904569,"borders":["TLS","MYS","PNG"],"callingCodes":["62"],"capital":"Jakarta","currencies":[{"code":"IDR","name":"Indonesian rupiah","symbol":"Rp"}],"demonym":"Indonesian","flag":"https://restcountries.eu/data/idn.svg","gini":34,"languages":[{"iso639_1":"id","iso639_2":"ind","name":"Indonesian","nativeName":"Bahasa Indonesia"}],"latlng":[-5,120],"name":"Indonesia","nativeName":"Indonesia","numericCode":"360","population":273523621,"region":"Asia","regionalBlocs":[{"acronym":"ASEAN","name":"Association of Southeast Asian Nations"}],"subregion":"South-Eastern Asia","timezones":["UTC+07:00","UTC+08:00","UTC+09:00"],"topLevelDomain":[".id"],"translations":{"br":"Indon\u00e9sia","de":"Indonesien","es":"Indonesia","fa":"\u0627\u0646\u062f\u0648\u0646\u0632\u06cc","fr":"Indon\u00e9sie","hr":"Indonezija","it":"Indonesia","ja":"\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2","nl":"Indonesi\u00eb","pt":"Indon\u00e9sia","ru":"\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u044f","pl":"Indonezja","cs":"Indon\u00e9sie","zh":"\u5370\u5ea6\u5c3c\u897f\u4e9a\u5171\u548c\u56fd","hu":"Indon\u00e9zia","se":"Indonesien"},"cioc":"INA"},{"alpha2Code":"CI","alpha3Code":"CIV","altSpellings":["CI","Ivory Coast","Republic of C\u00f4te d'Ivoire","R\u00e9publique de C\u00f4te d'Ivoire"],"area":322463,"borders":["BFA","GHA","GIN","LBR","MLI"],"callingCodes":["225"],"capital":"Yamoussoukro","currencies":[{"code":"XOF","name":"West African CFA franc","symbol":"Fr"}],"demonym":"Ivorian","flag":"https://restcountries.eu/data/civ.svg","gini":41.5,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[8,-5],"name":"C\u00f4te d'Ivoire","nativeName":"C\u00f4te d'Ivoire","numericCode":"384","population":26378275,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".ci"],"translations":{"br":"Costa do Marfim","de":"Elfenbeink\u00fcste","es":"Costa de Marfil","fa":"\u0633\u0627\u062d\u0644 \u0639\u0627\u062c","fr":"C\u00f4te d'Ivoire","hr":"Obala Bjelokosti","it":"Costa D'Avorio","ja":"\u30b3\u30fc\u30c8\u30b8\u30dc\u30ef\u30fc\u30eb","nl":"Ivoorkust","pt":"Costa do Marfim","ru":"\u041a\u043e\u0442-\u0434\u2019\u0418\u0432\u0443\u0430\u0440","pl":"Wybrze\u017ce Ko\u015bci S\u0142oniowej","cs":"Pob\u0159e\u017e\u00ed slonoviny","zh":"\u79d1\u7279\u8fea\u74e6\u5171\u548c\u56fd","hu":"Elef\u00e1ntcsontpart","se":"Elfenbenskusten"},"cioc":"CIV"},{"alpha2Code":"IR","alpha3Code":"IRN","altSpellings":["IR","Islamic Republic of Iran","Jomhuri-ye Esl\u0101mi-ye Ir\u0101n"],"area":1648195,"borders":["AFG","ARM","AZE","IRQ","PAK","TUR","TKM"],"callingCodes":["98"],"capital":"Tehran","currencies":[{"code":"IRR","name":"Iranian rial","symbol":"\ufdfc"}],"demonym":"Iranian","flag":"https://restcountries.eu/data/irn.svg","gini":38.3,"languages":[{"iso639_1":"fa","iso639_2":"fas","name":"Persian (Farsi)","nativeName":"\u0641\u0627\u0631\u0633\u06cc"}],"latlng":[32,53],"name":"Iran (Islamic Republic of)","nativeName":"\u0627\u06cc\u0631\u0627\u0646","numericCode":"364","population":83992953,"region":"Asia","regionalBlocs":[],"subregion":"Southern Asia","timezones":["UTC+03:30"],"topLevelDomain":[".ir"],"translations":{"br":"Ir\u00e3","de":"Iran","es":"Iran","fa":"\u0627\u06cc\u0631\u0627\u0646","fr":"Iran","hr":"Iran","ja":"\u30a4\u30e9\u30f3\u30fb\u30a4\u30b9\u30e9\u30e0\u5171\u548c\u56fd","nl":"Iran","pt":"Ir\u00e3o","ru":"\u0418\u0440\u0430\u043d","pl":"Iran","cs":"\u00cdr\u00e1n","it":"Iran (Islamic Republic of)","zh":"\u4f0a\u6717\u4f0a\u65af\u5170\u5171\u548c\u56fd","hu":"Ir\u00e1n","se":"Iran"},"cioc":"IRI"},{"alpha2Code":"IQ","alpha3Code":"IRQ","altSpellings":["IQ","Republic of Iraq","Jumh\u016briyyat al-\u2018Ir\u0101q"],"area":438317,"borders":["IRN","JOR","KWT","SAU","SYR","TUR"],"callingCodes":["964"],"capital":"Baghdad","currencies":[{"code":"IQD","name":"Iraqi dinar","symbol":"\u0639.\u062f"}],"demonym":"Iraqi","flag":"https://restcountries.eu/data/irq.svg","gini":30.9,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"},{"iso639_1":"ku","iso639_2":"kur","name":"Kurdish","nativeName":"Kurd\u00ee"}],"latlng":[33,44],"name":"Iraq","nativeName":"\u0627\u0644\u0639\u0631\u0627\u0642","numericCode":"368","population":40222503,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+03:00"],"topLevelDomain":[".iq"],"translations":{"br":"Iraque","de":"Irak","es":"Irak","fa":"\u0639\u0631\u0627\u0642","fr":"Irak","hr":"Irak","it":"Iraq","ja":"\u30a4\u30e9\u30af","nl":"Irak","pt":"Iraque","ru":"\u0418\u0440\u0430\u043a","pl":"Irak","cs":"Ir\u00e1k","zh":"\u4f0a\u62c9\u514b\u5171\u548c\u56fd","hu":"Irak","se":"Irak"},"cioc":"IRQ"},{"alpha2Code":"IE","alpha3Code":"IRL","altSpellings":["IE","\u00c9ire","Republic of Ireland","Poblacht na h\u00c9ireann"],"area":70273,"borders":["GBR"],"callingCodes":["353"],"capital":"Dublin","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Irish","flag":"https://restcountries.eu/data/irl.svg","gini":34.3,"languages":[{"iso639_1":"ga","iso639_2":"gle","name":"Irish","nativeName":"Gaeilge"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[53,-8],"name":"Ireland","nativeName":"\u00c9ire","numericCode":"372","population":4994724,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Northern Europe","timezones":["UTC"],"topLevelDomain":[".ie"],"translations":{"br":"Irlanda","de":"Irland","es":"Irlanda","fa":"\u0627\u06cc\u0631\u0644\u0646\u062f","fr":"Irlande","hr":"Irska","it":"Irlanda","ja":"\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9","nl":"Ierland","pt":"Irlanda","ru":"\u0418\u0440\u043b\u0430\u043d\u0434\u0438\u044f","pl":"Irlandia","cs":"Irsko","zh":"\u7231\u5c14\u5170\u5171\u548c\u56fd","hu":"\u00cdrorsz\u00e1g","se":"Irland"},"cioc":"IRL"},{"alpha2Code":"IM","alpha3Code":"IMN","altSpellings":["IM","Ellan Vannin","Mann","Mannin"],"area":572,"borders":[],"callingCodes":["44"],"capital":"Douglas","currencies":[{"code":"GBP","name":"British pound","symbol":"\u00a3"},{"code":"IMP[G]","name":"Manx pound","symbol":"\u00a3"}],"demonym":"Manx","flag":"https://restcountries.eu/data/imn.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"gv","iso639_2":"glv","name":"Manx","nativeName":"Gaelg"}],"latlng":[54.25,-4.5],"name":"Isle of Man","nativeName":"Isle of Man","numericCode":"833","population":85032,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Northern Europe","timezones":["UTC+00:00"],"topLevelDomain":[".im"],"translations":{"br":"Ilha de Man","de":"Insel Man","es":"Isla de Man","fa":"\u062c\u0632\u06cc\u0631\u0647 \u0645\u0646","fr":"\u00cele de Man","hr":"Otok Man","it":"Isola di Man","ja":"\u30de\u30f3\u5cf6","nl":"Isle of Man","pt":"Ilha de Man","pl":"Wyspa Man","cs":"Ostrov Man","ru":"Isle of Man","zh":"\u9a6c\u6069\u5c9b","hu":"Man","se":"Isle of Man"},"cioc":""},{"alpha2Code":"IL","alpha3Code":"ISR","altSpellings":["IL","State of Israel","Med\u012bnat Yisr\u0101'el"],"area":20770,"borders":["EGY","JOR","LBN","SYR"],"callingCodes":["972"],"capital":"Jerusalem","currencies":[{"code":"ILS","name":"Israeli new shekel","symbol":"\u20aa"}],"demonym":"Israeli","flag":"https://restcountries.eu/data/isr.svg","gini":39.2,"languages":[{"iso639_1":"he","iso639_2":"heb","name":"Hebrew (modern)","nativeName":"\u05e2\u05d1\u05e8\u05d9\u05ea"},{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[31.5,34.75],"name":"Israel","nativeName":"\u05d9\u05b4\u05e9\u05b0\u05c2\u05e8\u05b8\u05d0\u05b5\u05dc","numericCode":"376","population":9216900,"region":"Asia","regionalBlocs":[],"subregion":"Western Asia","timezones":["UTC+02:00"],"topLevelDomain":[".il"],"translations":{"br":"Israel","de":"Israel","es":"Israel","fa":"\u0627\u0633\u0631\u0627\u0626\u06cc\u0644","fr":"Isra\u00ebl","hr":"Izrael","it":"Israele","ja":"\u30a4\u30b9\u30e9\u30a8\u30eb","nl":"Isra\u00ebl","pt":"Israel","ru":"\u0418\u0437\u0440\u0430\u0438\u043b\u044c","pl":"Izrael","cs":"Izrael","zh":"\u4ee5\u8272\u5217\u56fd","hu":"Izrael","se":"Israel"},"cioc":"ISR"},{"alpha2Code":"IT","alpha3Code":"ITA","altSpellings":["IT","Italian Republic","Repubblica italiana"],"area":301336,"borders":["AUT","FRA","SMR","SVN","CHE","VAT"],"callingCodes":["39"],"capital":"Rome","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Italian","flag":"https://restcountries.eu/data/ita.svg","gini":36,"languages":[{"iso639_1":"it","iso639_2":"ita","name":"Italian","nativeName":"Italiano"}],"latlng":[42.83333333,12.83333333],"name":"Italy","nativeName":"Italia","numericCode":"380","population":59554023,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".it"],"translations":{"br":"It\u00e1lia","de":"Italien","es":"Italia","fa":"\u0627\u06cc\u062a\u0627\u0644\u06cc\u0627","fr":"Italie","hr":"Italija","it":"Italia","ja":"\u30a4\u30bf\u30ea\u30a2","nl":"Itali\u00eb","pt":"It\u00e1lia","ru":"\u0418\u0442\u0430\u043b\u0438\u044f","pl":"W\u0142ochy","cs":"It\u00e1lie","zh":"\u610f\u5927\u5229\u5171\u548c\u56fd","hu":"Olaszorsz\u00e1g","se":"Italien"},"cioc":"ITA"},{"alpha2Code":"JM","alpha3Code":"JAM","altSpellings":["JM"],"area":10991,"borders":[],"callingCodes":["1"],"capital":"Kingston","currencies":[{"code":"JMD","name":"Jamaican dollar","symbol":"$"}],"demonym":"Jamaican","flag":"https://restcountries.eu/data/jam.svg","gini":45.5,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[18.25,-77.5],"name":"Jamaica","nativeName":"Jamaica","numericCode":"388","population":2961161,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-05:00"],"topLevelDomain":[".jm"],"translations":{"br":"Jamaica","de":"Jamaika","es":"Jamaica","fa":"\u062c\u0627\u0645\u0627\u0626\u06cc\u06a9\u0627","fr":"Jama\u00efque","hr":"Jamajka","it":"Giamaica","ja":"\u30b8\u30e3\u30de\u30a4\u30ab","nl":"Jamaica","pt":"Jamaica","ru":"\u042f\u043c\u0430\u0439\u043a\u0430","pl":"Jamajka","cs":"Jamajka","zh":"\u7259\u4e70\u52a0","hu":"Jamaica","se":"Jamaica"},"cioc":"JAM"},{"alpha2Code":"JP","alpha3Code":"JPN","altSpellings":["JP","Nippon","Nihon"],"area":377930,"borders":[],"callingCodes":["81"],"capital":"Tokyo","currencies":[{"code":"JPY","name":"Japanese yen","symbol":"\u00a5"}],"demonym":"Japanese","flag":"https://restcountries.eu/data/jpn.svg","gini":38.1,"languages":[{"iso639_1":"ja","iso639_2":"jpn","name":"Japanese","nativeName":"\u65e5\u672c\u8a9e (\u306b\u307b\u3093\u3054)"}],"latlng":[36,138],"name":"Japan","nativeName":"\u65e5\u672c","numericCode":"392","population":125836021,"region":"Asia","regionalBlocs":[],"subregion":"Eastern Asia","timezones":["UTC+09:00"],"topLevelDomain":[".jp"],"translations":{"br":"Jap\u00e3o","de":"Japan","es":"Jap\u00f3n","fa":"\u0698\u0627\u067e\u0646","fr":"Japon","hr":"Japan","it":"Giappone","ja":"\u65e5\u672c","nl":"Japan","pt":"Jap\u00e3o","ru":"\u042f\u043f\u043e\u043d\u0438\u044f","pl":"Japonia","cs":"Japonsko","zh":"\u65e5\u672c\u56fd","hu":"Jap\u00e1n","se":"Japan"},"cioc":"JPN"},{"alpha2Code":"JE","alpha3Code":"JEY","altSpellings":["JE","Bailiwick of Jersey","Bailliage de Jersey","Bailliage d\u00e9 J\u00e8rri"],"area":116,"borders":[],"callingCodes":["44"],"capital":"Saint Helier","currencies":[{"code":"GBP","name":"British pound","symbol":"\u00a3"},{"code":"JEP[G]","name":"Jersey pound","symbol":"\u00a3"}],"demonym":"Channel Islander","flag":"https://restcountries.eu/data/jey.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[49.25,-2.16666666],"name":"Jersey","nativeName":"Jersey","numericCode":"832","population":100800,"region":"Europe","regionalBlocs":[],"subregion":"Northern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".je"],"translations":{"br":"Jersey","de":"Jersey","es":"Jersey","fa":"\u062c\u0631\u0632\u06cc","fr":"Jersey","hr":"Jersey","it":"Isola di Jersey","ja":"\u30b8\u30e3\u30fc\u30b8\u30fc","nl":"Jersey","pt":"Jersey","pl":"Jersey","cs":"Jersey","ru":"Jersey","zh":"\u6cfd\u897f\u5c9b","hu":"Jersey","se":"Jersey"},"cioc":""},{"alpha2Code":"JO","alpha3Code":"JOR","altSpellings":["JO","Hashemite Kingdom of Jordan","al-Mamlakah al-Urdun\u012byah al-H\u0101shim\u012byah"],"area":89342,"borders":["IRQ","ISR","SAU","SYR"],"callingCodes":["962"],"capital":"Amman","currencies":[{"code":"JOD","name":"Jordanian dinar","symbol":"\u062f.\u0627"}],"demonym":"Jordanian","flag":"https://restcountries.eu/data/jor.svg","gini":35.4,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[31,36],"name":"Jordan","nativeName":"\u0627\u0644\u0623\u0631\u062f\u0646","numericCode":"400","population":10203140,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+03:00"],"topLevelDomain":[".jo"],"translations":{"br":"Jord\u00e2nia","de":"Jordanien","es":"Jordania","fa":"\u0627\u0631\u062f\u0646","fr":"Jordanie","hr":"Jordan","it":"Giordania","ja":"\u30e8\u30eb\u30c0\u30f3","nl":"Jordani\u00eb","pt":"Jord\u00e2nia","ru":"\u0418\u043e\u0440\u0434\u0430\u043d\u0438\u044f","pl":"Jordania","cs":"Jord\u00e1nsko","zh":"\u7ea6\u65e6\u54c8\u5e0c\u59c6\u738b\u56fd","hu":"Jord\u00e1nia","se":"Jordanien"},"cioc":"JOR"},{"alpha2Code":"KZ","alpha3Code":"KAZ","altSpellings":["KZ","Qazaqstan","\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d","Republic of Kazakhstan","\u049a\u0430\u0437\u0430\u049b\u0441\u0442\u0430\u043d \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u044b","Qazaqstan Respubl\u00efkas\u0131","\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d","Respublika Kazakhstan"],"area":2724900,"borders":["CHN","KGZ","RUS","TKM","UZB"],"callingCodes":["7"],"capital":"Nur-Sultan","currencies":[{"code":"KZT","name":"Kazakhstani tenge","symbol":"₸"}],"demonym":"Kazakhstani","flag":"https://restcountries.eu/data/kaz.svg","gini":29,"languages":[{"iso639_1":"kk","iso639_2":"kaz","name":"Kazakh","nativeName":"\u049b\u0430\u0437\u0430\u049b \u0442\u0456\u043b\u0456"},{"iso639_1":"ru","iso639_2":"rus","name":"Russian","nativeName":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439"}],"latlng":[48,68],"name":"Kazakhstan","nativeName":"\u049a\u0430\u0437\u0430\u049b\u0441\u0442\u0430\u043d","numericCode":"398","population":18754440,"region":"Asia","regionalBlocs":[{"acronym":"EEU","name":"Eurasian Economic Union","otherAcronyms":["EAEU"]}],"subregion":"Central Asia","timezones":["UTC+05:00","UTC+06:00"],"topLevelDomain":[".kz",".\u049b\u0430\u0437"],"translations":{"br":"Cazaquist\u00e3o","de":"Kasachstan","es":"Kazajist\u00e1n","fa":"\u0642\u0632\u0627\u0642\u0633\u062a\u0627\u0646","fr":"Kazakhstan","hr":"Kazahstan","it":"Kazakistan","ja":"\u30ab\u30b6\u30d5\u30b9\u30bf\u30f3","nl":"Kazachstan","pt":"Cazaquist\u00e3o","ru":"\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d","pl":"Kazachstan","cs":"Kazachst\u00e1n","zh":"\u54c8\u8428\u514b\u65af\u5766\u5171\u548c\u56fd","hu":"Kazahszt\u00e1n","se":"Kazakstan"},"cioc":"KAZ"},{"alpha2Code":"KE","alpha3Code":"KEN","altSpellings":["KE","Republic of Kenya","Jamhuri ya Kenya"],"area":580367,"borders":["ETH","SOM","SSD","TZA","UGA"],"callingCodes":["254"],"capital":"Nairobi","currencies":[{"code":"KES","name":"Kenyan shilling","symbol":"Sh"}],"demonym":"Kenyan","flag":"https://restcountries.eu/data/ken.svg","gini":47.7,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"sw","iso639_2":"swa","name":"Swahili","nativeName":"Kiswahili"}],"latlng":[1,38],"name":"Kenya","nativeName":"Kenya","numericCode":"404","population":53771300,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".ke"],"translations":{"br":"Qu\u00eania","de":"Kenia","es":"Kenia","fa":"\u06a9\u0646\u06cc\u0627","fr":"Kenya","hr":"Kenija","it":"Kenya","ja":"\u30b1\u30cb\u30a2","nl":"Kenia","pt":"Qu\u00e9nia","ru":"\u041a\u0435\u043d\u0438\u044f","pl":"Kenia","cs":"Ke\u0148a","zh":"\u80af\u5c3c\u4e9a\u5171\u548c\u56fd","hu":"Kenya","se":"Kenya"},"cioc":"KEN"},{"alpha2Code":"KI","alpha3Code":"KIR","altSpellings":["KI","Republic of Kiribati","Ribaberiki Kiribati"],"area":811,"borders":[],"callingCodes":["686"],"capital":"South Tarawa","currencies":[{"code":"AUD","name":"Australian dollar","symbol":"$"},{"code":"(none)","name":"Kiribati dollar","symbol":"$"}],"demonym":"I-Kiribati","flag":"https://restcountries.eu/data/kir.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[1.41666666,173],"name":"Kiribati","nativeName":"Kiribati","numericCode":"296","population":119446,"region":"Oceania","regionalBlocs":[],"subregion":"Micronesia","timezones":["UTC+12:00","UTC+13:00","UTC+14:00"],"topLevelDomain":[".ki"],"translations":{"br":"Kiribati","de":"Kiribati","es":"Kiribati","fa":"\u06a9\u06cc\u0631\u06cc\u0628\u0627\u062a\u06cc","fr":"Kiribati","hr":"Kiribati","it":"Kiribati","ja":"\u30ad\u30ea\u30d0\u30b9","nl":"Kiribati","pt":"Quirib\u00e1ti","ru":"\u041a\u0438\u0440\u0438\u0431\u0430\u0442\u0438","pl":"Kiribati","cs":"Kiribati","zh":"\u57fa\u91cc\u5df4\u65af\u5171\u548c\u56fd","hu":"Kiribati","se":"Kiribati"},"cioc":"KIR"},{"alpha2Code":"KW","alpha3Code":"KWT","altSpellings":["KW","State of Kuwait","Dawlat al-Kuwait"],"area":17818,"borders":["IRQ","SAU"],"callingCodes":["965"],"capital":"Kuwait City","currencies":[{"code":"KWD","name":"Kuwaiti dinar","symbol":"\u062f.\u0643"}],"demonym":"Kuwaiti","flag":"https://restcountries.eu/data/kwt.svg","gini":null,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[29.5,45.75],"name":"Kuwait","nativeName":"\u0627\u0644\u0643\u0648\u064a\u062a","numericCode":"414","population":4270563,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+03:00"],"topLevelDomain":[".kw"],"translations":{"br":"Kuwait","de":"Kuwait","es":"Kuwait","fa":"\u06a9\u0648\u06cc\u062a","fr":"Kowe\u00eft","hr":"Kuvajt","it":"Kuwait","ja":"\u30af\u30a6\u30a7\u30fc\u30c8","nl":"Koeweit","pt":"Kuwait","ru":"\u041a\u0443\u0432\u0435\u0439\u0442","pl":"Kuwejt","cs":"Kuvajt","zh":"\u79d1\u5a01\u7279\u56fd","hu":"Kuvait","se":"Kuwait"},"cioc":"KUW"},{"alpha2Code":"KG","alpha3Code":"KGZ","altSpellings":["KG","\u041a\u0438\u0440\u0433\u0438\u0437\u0438\u044f","Kyrgyz Republic","\u041a\u044b\u0440\u0433\u044b\u0437 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u044b","Kyrgyz Respublikasy"],"area":199951,"borders":["CHN","KAZ","TJK","UZB"],"callingCodes":["996"],"capital":"Bishkek","currencies":[{"code":"KGS","name":"Kyrgyzstani som","symbol":"\u0441"}],"demonym":"Kirghiz","flag":"https://restcountries.eu/data/kgz.svg","gini":36.2,"languages":[{"iso639_1":"ky","iso639_2":"kir","name":"Kyrgyz","nativeName":"\u041a\u044b\u0440\u0433\u044b\u0437\u0447\u0430"},{"iso639_1":"ru","iso639_2":"rus","name":"Russian","nativeName":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439"}],"latlng":[41,75],"name":"Kyrgyzstan","nativeName":"\u041a\u044b\u0440\u0433\u044b\u0437\u0441\u0442\u0430\u043d","numericCode":"417","population":6591600,"region":"Asia","regionalBlocs":[{"acronym":"EEU","name":"Eurasian Economic Union","otherAcronyms":["EAEU"]}],"subregion":"Central Asia","timezones":["UTC+06:00"],"topLevelDomain":[".kg"],"translations":{"br":"Quirguist\u00e3o","de":"Kirgisistan","es":"Kirguizist\u00e1n","fa":"\u0642\u0631\u0642\u06cc\u0632\u0633\u062a\u0627\u0646","fr":"Kirghizistan","hr":"Kirgistan","it":"Kirghizistan","ja":"\u30ad\u30eb\u30ae\u30b9","nl":"Kirgizi\u00eb","pt":"Quirguizist\u00e3o","ru":"\u041a\u0438\u0440\u0433\u0438\u0437\u0438\u044f","pl":"Kirgistan","cs":"Kyrgyzst\u00e1n","zh":"\u5409\u5c14\u5409\u65af\u65af\u5766\u5171\u548c\u56fd","hu":"Kirgiziszt\u00e1n","se":"Kirgizistan"},"cioc":"KGZ"},{"alpha2Code":"LA","alpha3Code":"LAO","altSpellings":["LA","Lao","Laos","Lao People's Democratic Republic","Sathalanalat Paxathipatai Paxaxon Lao"],"area":236800,"borders":["MMR","KHM","CHN","THA","VNM"],"callingCodes":["856"],"capital":"Vientiane","currencies":[{"code":"LAK","name":"Lao kip","symbol":"\u20ad"}],"demonym":"Laotian","flag":"https://restcountries.eu/data/lao.svg","gini":36.7,"languages":[{"iso639_1":"lo","iso639_2":"lao","name":"Lao","nativeName":"\u0e9e\u0eb2\u0eaa\u0eb2\u0ea5\u0eb2\u0ea7"}],"latlng":[18,105],"name":"Lao People's Democratic Republic","nativeName":"\u0eaa\u0e9b\u0e9b\u0ea5\u0eb2\u0ea7","numericCode":"418","population":7275556,"region":"Asia","regionalBlocs":[{"acronym":"ASEAN","name":"Association of Southeast Asian Nations"}],"subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"topLevelDomain":[".la"],"translations":{"br":"Laos","de":"Laos","es":"Laos","fa":"\u0644\u0627\u0626\u0648\u0633","fr":"Laos","hr":"Laos","it":"Laos","ja":"\u30e9\u30aa\u30b9\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd","nl":"Laos","pt":"Laos","ru":"\u041b\u0430\u043e\u0441","pl":"Laos","cs":"Laos","zh":"\u8001\u631d\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd","hu":"Laosz","se":"Laos"},"cioc":"LAO"},{"alpha2Code":"LV","alpha3Code":"LVA","altSpellings":["LV","Republic of Latvia","Latvijas Republika"],"area":64559,"borders":["BLR","EST","LTU","RUS"],"callingCodes":["371"],"capital":"Riga","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Latvian","flag":"https://restcountries.eu/data/lva.svg","gini":36.6,"languages":[{"iso639_1":"lv","iso639_2":"lav","name":"Latvian","nativeName":"latvie\u0161u valoda"}],"latlng":[57,25],"name":"Latvia","nativeName":"Latvija","numericCode":"428","population":1901548,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Northern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".lv"],"translations":{"br":"Let\u00f4nia","de":"Lettland","es":"Letonia","fa":"\u0644\u062a\u0648\u0646\u06cc","fr":"Lettonie","hr":"Latvija","it":"Lettonia","ja":"\u30e9\u30c8\u30d3\u30a2","nl":"Letland","pt":"Let\u00f3nia","ru":"\u041b\u0430\u0442\u0432\u0438\u044f","pl":"\u0141otwa","cs":"Loty\u0161sko","zh":"\u62c9\u8131\u7ef4\u4e9a\u5171\u548c\u56fd","hu":"Lettorsz\u00e1g","se":"Lettland"},"cioc":"LAT"},{"alpha2Code":"LB","alpha3Code":"LBN","altSpellings":["LB","Lebanese Republic","Al-Jumh\u016br\u012byah Al-Libn\u0101n\u012byah"],"area":10452,"borders":["ISR","SYR"],"callingCodes":["961"],"capital":"Beirut","currencies":[{"code":"LBP","name":"Lebanese pound","symbol":"\u0644.\u0644"}],"demonym":"Lebanese","flag":"https://restcountries.eu/data/lbn.svg","gini":null,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[33.83333333,35.83333333],"name":"Lebanon","nativeName":"\u0644\u0628\u0646\u0627\u0646","numericCode":"422","population":6825442,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+02:00"],"topLevelDomain":[".lb"],"translations":{"br":"L\u00edbano","de":"Libanon","es":"L\u00edbano","fa":"\u0644\u0628\u0646\u0627\u0646","fr":"Liban","hr":"Libanon","it":"Libano","ja":"\u30ec\u30d0\u30ce\u30f3","nl":"Libanon","pt":"L\u00edbano","ru":"\u041b\u0438\u0432\u0430\u043d","pl":"Liban","cs":"Libanon","zh":"\u9ece\u5df4\u5ae9\u5171\u548c\u56fd","hu":"Libanon","se":"Libanon"},"cioc":"LIB"},{"alpha2Code":"LS","alpha3Code":"LSO","altSpellings":["LS","Kingdom of Lesotho","Muso oa Lesotho"],"area":30355,"borders":["ZAF"],"callingCodes":["266"],"capital":"Maseru","currencies":[{"code":"LSL","name":"Lesotho loti","symbol":"L"},{"code":"ZAR","name":"South African rand","symbol":"R"}],"demonym":"Mosotho","flag":"https://restcountries.eu/data/lso.svg","gini":52.5,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"st","iso639_2":"sot","name":"Southern Sotho","nativeName":"Sesotho"}],"latlng":[-29.5,28.5],"name":"Lesotho","nativeName":"Lesotho","numericCode":"426","population":2142252,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Southern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".ls"],"translations":{"br":"Lesoto","de":"Lesotho","es":"Lesotho","fa":"\u0644\u0633\u0648\u062a\u0648","fr":"Lesotho","hr":"Lesoto","it":"Lesotho","ja":"\u30ec\u30bd\u30c8","nl":"Lesotho","pt":"Lesoto","ru":"\u041b\u0435\u0441\u043e\u0442\u043e","pl":"Lesotho","cs":"Lesotho","zh":"\u83b1\u7d22\u6258\u738b\u56fd","hu":"Lesotho","se":"Lesotho"},"cioc":"LES"},{"alpha2Code":"LR","alpha3Code":"LBR","altSpellings":["LR","Republic of Liberia"],"area":111369,"borders":["GIN","CIV","SLE"],"callingCodes":["231"],"capital":"Monrovia","currencies":[{"code":"LRD","name":"Liberian dollar","symbol":"$"}],"demonym":"Liberian","flag":"https://restcountries.eu/data/lbr.svg","gini":38.2,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[6.5,-9.5],"name":"Liberia","nativeName":"Liberia","numericCode":"430","population":5057677,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".lr"],"translations":{"br":"Lib\u00e9ria","de":"Liberia","es":"Liberia","fa":"\u0644\u06cc\u0628\u0631\u06cc\u0627","fr":"Liberia","hr":"Liberija","it":"Liberia","ja":"\u30ea\u30d9\u30ea\u30a2","nl":"Liberia","pt":"Lib\u00e9ria","ru":"\u041b\u0438\u0431\u0435\u0440\u0438\u044f","pl":"Liberia","cs":"Lib\u00e9rie","zh":"\u5229\u6bd4\u91cc\u4e9a\u5171\u548c\u56fd","hu":"Lib\u00e9ria","se":"Liberia"},"cioc":"LBR"},{"alpha2Code":"LY","alpha3Code":"LBY","altSpellings":["LY","State of Libya","Dawlat Libya"],"area":1759540,"borders":["DZA","TCD","EGY","NER","SDN","TUN"],"callingCodes":["218"],"capital":"Tripoli","currencies":[{"code":"LYD","name":"Libyan dinar","symbol":"\u0644.\u062f"}],"demonym":"Libyan","flag":"https://restcountries.eu/data/lby.svg","gini":null,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[25,17],"name":"Libya","nativeName":"\u200f\u0644\u064a\u0628\u064a\u0627","numericCode":"434","population":6871287,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]},{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Northern Africa","timezones":["UTC+01:00"],"topLevelDomain":[".ly"],"translations":{"br":"L\u00edbia","de":"Libyen","es":"Libia","fa":"\u0644\u06cc\u0628\u06cc","fr":"Libye","hr":"Libija","it":"Libia","ja":"\u30ea\u30d3\u30a2","nl":"Libi\u00eb","pt":"L\u00edbia","ru":"\u041b\u0438\u0432\u0438\u044f","pl":"Libia","cs":"Libye","zh":"\u5229\u6bd4\u4e9a\u56fd","hu":"L\u00edbia","se":"Libyen"},"cioc":"LBA"},{"alpha2Code":"LI","alpha3Code":"LIE","altSpellings":["LI","Principality of Liechtenstein","F\u00fcrstentum Liechtenstein"],"area":160,"borders":["AUT","CHE"],"callingCodes":["423"],"capital":"Vaduz","currencies":[{"code":"CHF","name":"Swiss franc","symbol":"Fr"}],"demonym":"Liechtensteiner","flag":"https://restcountries.eu/data/lie.svg","languages":[{"iso639_1":"de","iso639_2":"deu","name":"German","nativeName":"Deutsch"}],"latlng":[47.26666666,9.53333333],"name":"Liechtenstein","nativeName":"Liechtenstein","numericCode":"438","population":38137,"region":"Europe","regionalBlocs":[{"acronym":"EFTA","name":"European Free Trade Association"}],"subregion":"Western Europe","timezones":["UTC+01:00"],"topLevelDomain":[".li"],"translations":{"br":"Liechtenstein","de":"Liechtenstein","es":"Liechtenstein","fa":"\u0644\u06cc\u062e\u062a\u0646\u200c\u0627\u0634\u062a\u0627\u06cc\u0646","fr":"Liechtenstein","hr":"Lihten\u0161tajn","it":"Liechtenstein","ja":"\u30ea\u30d2\u30c6\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3","nl":"Liechtenstein","pt":"Listenstaine","ru":"\u041b\u0438\u0445\u0442\u0435\u043d\u0448\u0442\u0435\u0439\u043d","pl":"Liechtenstein","cs":"Lichten\u0161tejnsko","zh":"\u5217\u652f\u6566\u58eb\u767b\u516c\u56fd","hu":"Liechtenstein","se":"Liechtenstein"},"cioc":"LIE"},{"alpha2Code":"LT","alpha3Code":"LTU","altSpellings":["LT","Republic of Lithuania","Lietuvos Respublika"],"area":65300,"borders":["BLR","LVA","POL","RUS"],"callingCodes":["370"],"capital":"Vilnius","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Lithuanian","flag":"https://restcountries.eu/data/ltu.svg","gini":37.6,"languages":[{"iso639_1":"lt","iso639_2":"lit","name":"Lithuanian","nativeName":"lietuvi\u0173 kalba"}],"latlng":[56,24],"name":"Lithuania","nativeName":"Lietuva","numericCode":"440","population":2794700,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Northern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".lt"],"translations":{"br":"Litu\u00e2nia","de":"Litauen","es":"Lituania","fa":"\u0644\u06cc\u062a\u0648\u0627\u0646\u06cc","fr":"Lituanie","hr":"Litva","it":"Lituania","ja":"\u30ea\u30c8\u30a2\u30cb\u30a2","nl":"Litouwen","pt":"Litu\u00e2nia","ru":"\u041b\u0438\u0442\u0432\u0430","pl":"Litwa","cs":"Litva","zh":"\u7acb\u9676\u5b9b\u5171\u548c\u56fd","hu":"Litv\u00e1nia","se":"Litauen"},"cioc":"LTU"},{"alpha2Code":"LU","alpha3Code":"LUX","altSpellings":["LU","Grand Duchy of Luxembourg","Grand-Duch\u00e9 de Luxembourg","Gro\u00dfherzogtum Luxemburg","Groussherzogtum L\u00ebtzebuerg"],"area":2586,"borders":["BEL","FRA","DEU"],"callingCodes":["352"],"capital":"Luxembourg","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Luxembourger","flag":"https://restcountries.eu/data/lux.svg","gini":30.8,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"de","iso639_2":"deu","name":"German","nativeName":"Deutsch"},{"iso639_1":"lb","iso639_2":"ltz","name":"Luxembourgish","nativeName":"L\u00ebtzebuergesch"}],"latlng":[49.75,6.16666666],"name":"Luxembourg","nativeName":"L\u00ebtzebuerg","numericCode":"442","population":632275,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Western Europe","timezones":["UTC+01:00"],"topLevelDomain":[".lu"],"translations":{"br":"Luxemburgo","de":"Luxemburg","es":"Luxemburgo","fa":"\u0644\u0648\u06a9\u0632\u0627\u0645\u0628\u0648\u0631\u06af","fr":"Luxembourg","hr":"Luksemburg","it":"Lussemburgo","ja":"\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30af","nl":"Luxemburg","pt":"Luxemburgo","ru":"\u041b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433","pl":"Luksemburg","cs":"Lucembursko","zh":"\u5362\u68ee\u5821\u5927\u516c\u56fd","hu":"Luxemburg","se":"Luxemburg"},"cioc":"LUX"},{"alpha2Code":"MO","alpha3Code":"MAC","altSpellings":["MO","\u6fb3\u95e8","Macao Special Administrative Region of the People's Republic of China","\u4e2d\u83ef\u4eba\u6c11\u5171\u548c\u570b\u6fb3\u9580\u7279\u5225\u884c\u653f\u5340","Regi\u00e3o Administrativa Especial de Macau da Rep\u00fablica Popular da China"],"area":30,"borders":["CHN"],"callingCodes":["853"],"capital":"","currencies":[{"code":"MOP","name":"Macanese pataca","symbol":"P"}],"demonym":"Chinese","flag":"https://restcountries.eu/data/mac.svg","languages":[{"iso639_1":"zh","iso639_2":"zho","name":"Chinese","nativeName":"\u4e2d\u6587 (Zh\u014dngw\u00e9n)"},{"iso639_1":"pt","iso639_2":"por","name":"Portuguese","nativeName":"Portugu\u00eas"}],"latlng":[22.16666666,113.55],"name":"Macao","nativeName":"\u6fb3\u9580","numericCode":"446","population":649342,"region":"Asia","regionalBlocs":[],"subregion":"Eastern Asia","timezones":["UTC+08:00"],"topLevelDomain":[".mo"],"translations":{"br":"Macau","de":"Macao","es":"Macao","fa":"\u0645\u06a9\u0627\u0626\u0648","fr":"Macao","hr":"Makao","it":"Macao","ja":"\u30de\u30ab\u30aa","nl":"Macao","pt":"Macau","pl":"Makau","cs":"Macao","ru":"Macao","zh":"\u6fb3\u95e8","hu":"Maka\u00f3","se":"Macao"},"cioc":""},{"alpha2Code":"MK","alpha3Code":"MKD","altSpellings":["MK","Republic of North Macedonia","\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u0458\u0430"],"area":25713,"borders":["ALB","BGR","GRC","UNK","SRB"],"callingCodes":["389"],"capital":"Skopje","currencies":[{"code":"MKD","name":"Macedonian denar","symbol":"\u0434\u0435\u043d"}],"demonym":"Macedonian","flag":"https://restcountries.eu/data/mkd.svg","gini":43.2,"languages":[{"iso639_1":"mk","iso639_2":"mkd","name":"Macedonian","nativeName":"\u043c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438 \u0458\u0430\u0437\u0438\u043a"}],"latlng":[41.83333333,22],"name":"North Macedonia","nativeName":"\u0441\u0435\u0432\u0435\u0440\u043d\u0430 \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u0458\u0430","numericCode":"807","population":2083380,"region":"Europe","regionalBlocs":[{"acronym":"CEFTA","name":"Central European Free Trade Agreement"}],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".mk"],"translations":{"br":"Maced\u00f4nia","de":"Mazedonien","es":"Macedonia","fa":"North Macedonia","fr":"Mac\u00e9doine","hr":"Makedonija","it":"Macedonia","ja":"\u30de\u30b1\u30c9\u30cb\u30a2\u65e7\u30e6\u30fc\u30b4\u30b9\u30e9\u30d3\u30a2\u5171\u548c\u56fd","nl":"Macedoni\u00eb","pt":"Maced\u00f3nia","ru":"\u0421\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u044f","pl":"Macedonia","cs":"Makedonie","zh":"\u5317\u99ac\u5176\u9813\u5171\u548c\u570b","hu":"Maced\u00f3nia","se":"Nordmakedonien"},"cioc":"MKD"},{"alpha2Code":"MG","alpha3Code":"MDG","altSpellings":["MG","Republic of Madagascar","Repoblikan'i Madagasikara","R\u00e9publique de Madagascar"],"area":587041,"borders":[],"callingCodes":["261"],"capital":"Antananarivo","currencies":[{"code":"MGA","name":"Malagasy ariary","symbol":"Ar"}],"demonym":"Malagasy","flag":"https://restcountries.eu/data/mdg.svg","gini":44.1,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"mg","iso639_2":"mlg","name":"Malagasy","nativeName":"fiteny malagasy"}],"latlng":[-20,47],"name":"Madagascar","nativeName":"Madagasikara","numericCode":"450","population":27691019,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".mg"],"translations":{"br":"Madagascar","de":"Madagaskar","es":"Madagascar","fa":"\u0645\u0627\u062f\u0627\u06af\u0627\u0633\u06a9\u0627\u0631","fr":"Madagascar","hr":"Madagaskar","it":"Madagascar","ja":"\u30de\u30c0\u30ac\u30b9\u30ab\u30eb","nl":"Madagaskar","pt":"Madag\u00e1scar","ru":"\u041c\u0430\u0434\u0430\u0433\u0430\u0441\u043a\u0430\u0440","pl":"Madagaskar","cs":"Madagaskar","zh":"\u9a6c\u8fbe\u52a0\u65af\u52a0\u5171\u548c\u56fd","hu":"Madagaszk\u00e1r","se":"Madagaskar"},"cioc":"MAD"},{"alpha2Code":"MW","alpha3Code":"MWI","altSpellings":["MW","Republic of Malawi"],"area":118484,"borders":["MOZ","TZA","ZMB"],"callingCodes":["265"],"capital":"Lilongwe","currencies":[{"code":"MWK","name":"Malawian kwacha","symbol":"MK"}],"demonym":"Malawian","flag":"https://restcountries.eu/data/mwi.svg","gini":39,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"ny","iso639_2":"nya","name":"Chichewa","nativeName":"chiChe\u0175a"}],"latlng":[-13.5,34],"name":"Malawi","nativeName":"Malawi","numericCode":"454","population":19129955,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".mw"],"translations":{"br":"Malawi","de":"Malawi","es":"Malawi","fa":"\u0645\u0627\u0644\u0627\u0648\u06cc","fr":"Malawi","hr":"Malavi","it":"Malawi","ja":"\u30de\u30e9\u30a6\u30a4","nl":"Malawi","pt":"Mal\u00e1vi","ru":"\u041c\u0430\u043b\u0430\u0432\u0438","pl":"Malawi","cs":"Malawi","zh":"\u9a6c\u62c9\u7ef4\u5171\u548c\u56fd","hu":"Malawi","se":"Malawi"},"cioc":"MAW"},{"alpha2Code":"MY","alpha3Code":"MYS","altSpellings":["MY"],"area":330803,"borders":["BRN","IDN","THA"],"callingCodes":["60"],"capital":"Kuala Lumpur","currencies":[{"code":"MYR","name":"Malaysian ringgit","symbol":"RM"}],"demonym":"Malaysian","flag":"https://restcountries.eu/data/mys.svg","gini":46.2,"languages":[{"iso639_1":"ms","iso639_2":"zsm","name":"Malaysian","nativeName":"\u0628\u0647\u0627\u0633 \u0645\u0644\u064a\u0633\u064a\u0627"}],"latlng":[2.5,112.5],"name":"Malaysia","nativeName":"Malaysia","numericCode":"458","population":32365998,"region":"Asia","regionalBlocs":[{"acronym":"ASEAN","name":"Association of Southeast Asian Nations"}],"subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"topLevelDomain":[".my"],"translations":{"br":"Mal\u00e1sia","de":"Malaysia","es":"Malasia","fa":"\u0645\u0627\u0644\u0632\u06cc","fr":"Malaisie","hr":"Malezija","it":"Malesia","ja":"\u30de\u30ec\u30fc\u30b7\u30a2","nl":"Maleisi\u00eb","pt":"Mal\u00e1sia","ru":"\u041c\u0430\u043b\u0430\u0439\u0437\u0438\u044f","pl":"Malezja","cs":"Malajsie","zh":"\u9a6c\u6765\u897f\u4e9a","hu":"Malajzia","se":"Malaysia"},"cioc":"MAS"},{"alpha2Code":"MV","alpha3Code":"MDV","altSpellings":["MV","Maldive Islands","Republic of the Maldives","Dhivehi Raajjeyge Jumhooriyya"],"area":300,"borders":[],"callingCodes":["960"],"capital":"Mal\u00e9","currencies":[{"code":"MVR","name":"Maldivian rufiyaa","symbol":".\u0783"}],"demonym":"Maldivan","flag":"https://restcountries.eu/data/mdv.svg","gini":37.4,"languages":[{"iso639_1":"dv","iso639_2":"div","name":"Divehi","nativeName":"\u078b\u07a8\u0788\u07ac\u0780\u07a8"}],"latlng":[3.25,73],"name":"Maldives","nativeName":"Maldives","numericCode":"462","population":540542,"region":"Asia","regionalBlocs":[{"acronym":"SAARC","name":"South Asian Association for Regional Cooperation"}],"subregion":"Southern Asia","timezones":["UTC+05:00"],"topLevelDomain":[".mv"],"translations":{"br":"Maldivas","de":"Malediven","es":"Maldivas","fa":"\u0645\u0627\u0644\u062f\u06cc\u0648","fr":"Maldives","hr":"Maldivi","it":"Maldive","ja":"\u30e2\u30eb\u30c7\u30a3\u30d6","nl":"Maldiven","pt":"Maldivas","ru":"\u041c\u0430\u043b\u044c\u0434\u0438\u0432\u044b","pl":"Malediwy","cs":"Maledivy","zh":"\u9a6c\u5c14\u4ee3\u592b\u5171\u548c\u56fd","hu":"Mald\u00edv-szigetek","se":"Maldiverna"},"cioc":"MDV"},{"alpha2Code":"ML","alpha3Code":"MLI","altSpellings":["ML","Republic of Mali","R\u00e9publique du Mali"],"area":1240192,"borders":["DZA","BFA","GIN","CIV","MRT","NER","SEN"],"callingCodes":["223"],"capital":"Bamako","currencies":[{"code":"XOF","name":"West African CFA franc","symbol":"Fr"}],"demonym":"Malian","flag":"https://restcountries.eu/data/mli.svg","gini":33,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[17,-4],"name":"Mali","nativeName":"Mali","numericCode":"466","population":20250834,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".ml"],"translations":{"br":"Mali","de":"Mali","es":"Mali","fa":"\u0645\u0627\u0644\u06cc","fr":"Mali","hr":"Mali","it":"Mali","ja":"\u30de\u30ea","nl":"Mali","pt":"Mali","ru":"\u041c\u0430\u043b\u0438","pl":"Mali","cs":"Mali","zh":"\u9a6c\u91cc\u5171\u548c\u56fd","hu":"Mali","se":"Mali"},"cioc":"MLI"},{"alpha2Code":"MT","alpha3Code":"MLT","altSpellings":["MT","Republic of Malta","Repubblika ta' Malta"],"area":316,"borders":[],"callingCodes":["356"],"capital":"Valletta","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Maltese","flag":"https://restcountries.eu/data/mlt.svg","gini":null,"languages":[{"iso639_1":"mt","iso639_2":"mlt","name":"Maltese","nativeName":"Malti"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[35.83333333,14.58333333],"name":"Malta","nativeName":"Malta","numericCode":"470","population":525285,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".mt"],"translations":{"br":"Malta","de":"Malta","es":"Malta","fa":"\u0645\u0627\u0644\u062a","fr":"Malte","hr":"Malta","it":"Malta","ja":"\u30de\u30eb\u30bf","nl":"Malta","pt":"Malta","ru":"\u041c\u0430\u043b\u044c\u0442\u0430","pl":"Malta","cs":"Malta","zh":"\u9a6c\u8033\u4ed6\u5171\u548c\u56fd","hu":"M\u00e1lta","se":"Malta"},"cioc":"MLT"},{"alpha2Code":"MH","alpha3Code":"MHL","altSpellings":["MH","Republic of the Marshall Islands","Aolep\u0101n Aor\u014dkin M\u0327aje\u013c"],"area":181,"borders":[],"callingCodes":["692"],"capital":"Majuro","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Marshallese","flag":"https://restcountries.eu/data/mhl.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"mh","iso639_2":"mah","name":"Marshallese","nativeName":"Kajin M\u0327aje\u013c"}],"latlng":[9,168],"name":"Marshall Islands","nativeName":"M\u0327aje\u013c","numericCode":"584","population":59194,"region":"Oceania","regionalBlocs":[],"subregion":"Micronesia","timezones":["UTC+12:00"],"topLevelDomain":[".mh"],"translations":{"br":"Ilhas Marshall","de":"Marshallinseln","es":"Islas Marshall","fa":"\u062c\u0632\u0627\u06cc\u0631 \u0645\u0627\u0631\u0634\u0627\u0644","fr":"\u00celes Marshall","hr":"Mar\u0161alovi Otoci","it":"Isole Marshall","ja":"\u30de\u30fc\u30b7\u30e3\u30eb\u8af8\u5cf6","nl":"Marshalleilanden","pt":"Ilhas Marshall","ru":"\u041c\u0430\u0440\u0448\u0430\u043b\u043b\u043e\u0432\u044b \u041e\u0441\u0442\u0440\u043e\u0432\u0430","pl":"Wyspy Marshalla","cs":"Marshallovy ostrovy","zh":"\u9a6c\u7ecd\u5c14\u7fa4\u5c9b\u5171\u548c\u56fd","hu":"Marshall-szigetek","se":"Marshall\u00f6arna"},"cioc":"MHL"},{"alpha2Code":"MQ","alpha3Code":"MTQ","altSpellings":["MQ"],"borders":[],"callingCodes":["596"],"capital":"Fort-de-France","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"French","flag":"https://restcountries.eu/data/mtq.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[14.666667,-61],"name":"Martinique","nativeName":"Martinique","numericCode":"474","population":378243,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".mq"],"translations":{"br":"Martinica","de":"Martinique","es":"Martinica","fa":"\u0645\u0648\u0646\u062a\u0633\u0631\u0627\u062a","fr":"Martinique","hr":"Martinique","it":"Martinica","ja":"\u30de\u30eb\u30c6\u30a3\u30cb\u30fc\u30af","nl":"Martinique","pt":"Martinica","pl":"Martynika","cs":"Martinik","ru":"Martinique","zh":"\u9a6c\u63d0\u5c3c\u514b","hu":"Martinique","se":"Martinique"},"cioc":""},{"alpha2Code":"MR","alpha3Code":"MRT","altSpellings":["MR","Islamic Republic of Mauritania","al-Jumh\u016briyyah al-\u02beIsl\u0101miyyah al-M\u016br\u012bt\u0101niyyah"],"area":1030700,"borders":["DZA","MLI","SEN","ESH"],"callingCodes":["222"],"capital":"Nouakchott","currencies":[{"code":"MRO","name":"Mauritanian ouguiya","symbol":"UM"}],"demonym":"Mauritanian","flag":"https://restcountries.eu/data/mrt.svg","gini":40.5,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[20,-12],"name":"Mauritania","nativeName":"\u0645\u0648\u0631\u064a\u062a\u0627\u0646\u064a\u0627","numericCode":"478","population":4649660,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]},{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".mr"],"translations":{"br":"Maurit\u00e2nia","de":"Mauretanien","es":"Mauritania","fa":"\u0645\u0648\u0631\u06cc\u062a\u0627\u0646\u06cc","fr":"Mauritanie","hr":"Mauritanija","it":"Mauritania","ja":"\u30e2\u30fc\u30ea\u30bf\u30cb\u30a2","nl":"Mauritani\u00eb","pt":"Maurit\u00e2nia","ru":"\u041c\u0430\u0432\u0440\u0438\u0442\u0430\u043d\u0438\u044f","pl":"Mauretania","cs":"Maurit\u00e1nie","zh":"\u6bdb\u91cc\u5854\u5c3c\u4e9a\u4f0a\u65af\u5170\u5171\u548c\u56fd","hu":"Maurit\u00e1nia","se":"Mauretanien"},"cioc":"MTN"},{"alpha2Code":"MU","alpha3Code":"MUS","altSpellings":["MU","Republic of Mauritius","R\u00e9publique de Maurice"],"area":2040,"borders":[],"callingCodes":["230"],"capital":"Port Louis","currencies":[{"code":"MUR","name":"Mauritian rupee","symbol":"\u20a8"}],"demonym":"Mauritian","flag":"https://restcountries.eu/data/mus.svg","gini":null,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-20.28333333,57.55],"name":"Mauritius","nativeName":"Maurice","numericCode":"480","population":1265740,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+04:00"],"topLevelDomain":[".mu"],"translations":{"br":"Maur\u00edcio","de":"Mauritius","es":"Mauricio","fa":"\u0645\u0648\u0631\u06cc\u0633","fr":"\u00cele Maurice","hr":"Mauricijus","it":"Mauritius","ja":"\u30e2\u30fc\u30ea\u30b7\u30e3\u30b9","nl":"Mauritius","pt":"Maur\u00edcia","ru":"\u041c\u0430\u0432\u0440\u0438\u043a\u0438\u0439","pl":"Mauritius","cs":"Mauricius","zh":"\u6bdb\u91cc\u6c42\u65af\u5171\u548c\u56fd","hu":"Mauritius","se":"Mauritius"},"cioc":"MRI"},{"alpha2Code":"YT","alpha3Code":"MYT","altSpellings":["YT","Department of Mayotte","D\u00e9partement de Mayotte"],"borders":[],"callingCodes":["262"],"capital":"Mamoudzou","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"French","flag":"https://restcountries.eu/data/myt.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[-12.83333333,45.16666666],"name":"Mayotte","nativeName":"Mayotte","numericCode":"175","population":226915,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".yt"],"translations":{"br":"Mayotte","de":"Mayotte","es":"Mayotte","fa":"\u0645\u0627\u06cc\u0648\u062a","fr":"Mayotte","hr":"Mayotte","it":"Mayotte","ja":"\u30de\u30e8\u30c3\u30c8","nl":"Mayotte","pt":"Mayotte","pl":"Majotta","cs":"Mayotte","ru":"Mayotte","zh":"\u9a6c\u7ea6\u7279","hu":"Mayotte","se":"Mayotte"},"cioc":""},{"alpha2Code":"MX","alpha3Code":"MEX","altSpellings":["MX","Mexicanos","United Mexican States","Estados Unidos Mexicanos"],"area":1964375,"borders":["BLZ","GTM","USA"],"callingCodes":["52"],"capital":"Mexico City","currencies":[{"code":"MXN","name":"Mexican peso","symbol":"$"}],"demonym":"Mexican","flag":"https://restcountries.eu/data/mex.svg","gini":47,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[23,-102],"name":"Mexico","nativeName":"M\u00e9xico","numericCode":"484","population":128932753,"region":"Americas","regionalBlocs":[{"acronym":"PA","name":"Pacific Alliance","otherNames":["Alianza del Pac\u00edfico"]},{"acronym":"NAFTA","name":"North American Free Trade Agreement","otherNames":["Tratado de Libre Comercio de Am\u00e9rica del Norte","Accord de Libre-\u00e9change Nord-Am\u00e9ricain"]}],"subregion":"Central America","timezones":["UTC-08:00","UTC-07:00","UTC-06:00"],"topLevelDomain":[".mx"],"translations":{"br":"M\u00e9xico","de":"Mexiko","es":"M\u00e9xico","fa":"\u0645\u06a9\u0632\u06cc\u06a9","fr":"Mexique","hr":"Meksiko","it":"Messico","ja":"\u30e1\u30ad\u30b7\u30b3","nl":"Mexico","pt":"M\u00e9xico","ru":"\u041c\u0435\u043a\u0441\u0438\u043a\u0430","pl":"Meksyk","cs":"Mexiko","zh":"\u58a8\u897f\u54e5\u5408\u4f17\u56fd","hu":"Mexik\u00f3","se":"Mexiko"},"cioc":"MEX"},{"alpha2Code":"FM","alpha3Code":"FSM","altSpellings":["FM","Federated States of Micronesia"],"area":702,"borders":[],"callingCodes":["691"],"capital":"Palikir","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Micronesian","flag":"https://restcountries.eu/data/fsm.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[6.91666666,158.25],"name":"Micronesia (Federated States of)","nativeName":"Micronesia","numericCode":"583","population":115021,"region":"Oceania","regionalBlocs":[],"subregion":"Micronesia","timezones":["UTC+10:00","UTC+11"],"topLevelDomain":[".fm"],"translations":{"br":"Micron\u00e9sia","de":"Mikronesien","es":"Micronesia","fa":"\u0627\u06cc\u0627\u0644\u0627\u062a \u0641\u062f\u0631\u0627\u0644 \u0645\u06cc\u06a9\u0631\u0648\u0646\u0632\u06cc","fr":"Micron\u00e9sie","hr":"Mikronezija","it":"Micronesia","ja":"\u30df\u30af\u30ed\u30cd\u30b7\u30a2\u9023\u90a6","nl":"Micronesi\u00eb","pt":"Micron\u00e9sia","ru":"\u041c\u0438\u043a\u0440\u043e\u043d\u0435\u0437\u0438\u044f","pl":"Mikronezja","cs":"Mikron\u00e9sie","zh":"\u5bc6\u514b\u7f57\u5c3c\u897f\u4e9a\u8054\u90a6","hu":"Mikron\u00e9zia","se":"Mikronesiska federationen"},"cioc":"FSM"},{"alpha2Code":"MD","alpha3Code":"MDA","altSpellings":["MD","Republic of Moldova","Republica Moldova"],"area":33846,"borders":["ROU","UKR"],"callingCodes":["373"],"capital":"Chi\u0219in\u0103u","currencies":[{"code":"MDL","name":"Moldovan leu","symbol":"L"}],"demonym":"Moldovan","flag":"https://restcountries.eu/data/mda.svg","gini":33,"languages":[{"iso639_1":"ro","iso639_2":"ron","name":"Romanian","nativeName":"Rom\u00e2n\u0103"}],"latlng":[47,29],"name":"Moldova (Republic of)","nativeName":"Moldova","numericCode":"498","population":2617820,"region":"Europe","regionalBlocs":[{"acronym":"CEFTA","name":"Central European Free Trade Agreement"}],"subregion":"Eastern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".md"],"translations":{"br":"Mold\u00e1via","de":"Moldawie","es":"Moldavia","fa":"\u0645\u0648\u0644\u062f\u0627\u0648\u06cc","fr":"Moldavie","hr":"Moldova","it":"Moldavia","ja":"\u30e2\u30eb\u30c9\u30d0\u5171\u548c\u56fd","nl":"Moldavi\u00eb","pt":"Mold\u00e1via","ru":"\u041c\u043e\u043b\u0434\u0430\u0432\u0438\u044f","pl":"Mo\u0142dawia","cs":"Moldavsko","zh":"\u6469\u5c14\u591a\u74e6\u5171\u548c\u56fd","hu":"Moldova","se":"Moldavien"},"cioc":"MDA"},{"alpha2Code":"MC","alpha3Code":"MCO","altSpellings":["MC","Principality of Monaco","Principaut\u00e9 de Monaco"],"area":2.02,"borders":["FRA"],"callingCodes":["377"],"capital":"Monaco","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Monegasque","flag":"https://restcountries.eu/data/mco.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[43.73333333,7.4],"name":"Monaco","nativeName":"Monaco","numericCode":"492","population":39244,"region":"Europe","regionalBlocs":[],"subregion":"Western Europe","timezones":["UTC+01:00"],"topLevelDomain":[".mc"],"translations":{"br":"M\u00f4naco","de":"Monaco","es":"M\u00f3naco","fa":"\u0645\u0648\u0646\u0627\u06a9\u0648","fr":"Monaco","hr":"Monako","it":"Principato di Monaco","ja":"\u30e2\u30ca\u30b3","nl":"Monaco","pt":"M\u00f3naco","ru":"\u041c\u043e\u043d\u0430\u043a\u043e","pl":"Monako","cs":"Monako","zh":"\u6469\u7eb3\u54e5\u516c\u56fd","hu":"Monaco","se":"Monaco"},"cioc":"MON"},{"alpha2Code":"MN","alpha3Code":"MNG","altSpellings":["MN"],"area":1564110,"borders":["CHN","RUS"],"callingCodes":["976"],"capital":"Ulan Bator","currencies":[{"code":"MNT","name":"Mongolian t\u00f6gr\u00f6g","symbol":"\u20ae"}],"demonym":"Mongolian","flag":"https://restcountries.eu/data/mng.svg","gini":36.5,"languages":[{"iso639_1":"mn","iso639_2":"mon","name":"Mongolian","nativeName":"\u041c\u043e\u043d\u0433\u043e\u043b \u0445\u044d\u043b"}],"latlng":[46,105],"name":"Mongolia","nativeName":"\u041c\u043e\u043d\u0433\u043e\u043b \u0443\u043b\u0441","numericCode":"496","population":3278292,"region":"Asia","regionalBlocs":[],"subregion":"Eastern Asia","timezones":["UTC+07:00","UTC+08:00"],"topLevelDomain":[".mn"],"translations":{"br":"Mong\u00f3lia","de":"Mongolei","es":"Mongolia","fa":"\u0645\u063a\u0648\u0644\u0633\u062a\u0627\u0646","fr":"Mongolie","hr":"Mongolija","it":"Mongolia","ja":"\u30e2\u30f3\u30b4\u30eb","nl":"Mongoli\u00eb","pt":"Mong\u00f3lia","ru":"\u041c\u043e\u043d\u0433\u043e\u043b\u0438\u044f","pl":"Mongolia","cs":"Mongolsko","zh":"\u8499\u53e4","hu":"Mong\u00f3lia","se":"Mongoliet"},"cioc":"MGL"},{"alpha2Code":"ME","alpha3Code":"MNE","altSpellings":["ME","Crna Gora"],"area":13812,"borders":["ALB","BIH","HRV","UNK","SRB"],"callingCodes":["382"],"capital":"Podgorica","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Montenegrin","flag":"https://restcountries.eu/data/mne.svg","gini":30,"languages":[{"iso639_1":"sr","iso639_2":"srp","name":"Serbian","nativeName":"\u0441\u0440\u043f\u0441\u043a\u0438 \u0458\u0435\u0437\u0438\u043a"},{"iso639_1":"bs","iso639_2":"bos","name":"Bosnian","nativeName":"bosanski jezik"},{"iso639_1":"sq","iso639_2":"sqi","name":"Albanian","nativeName":"Shqip"},{"iso639_1":"hr","iso639_2":"hrv","name":"Croatian","nativeName":"hrvatski jezik"}],"latlng":[42.5,19.3],"name":"Montenegro","nativeName":"\u0426\u0440\u043d\u0430 \u0413\u043e\u0440\u0430","numericCode":"499","population":621718,"region":"Europe","regionalBlocs":[{"acronym":"CEFTA","name":"Central European Free Trade Agreement"}],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".me"],"translations":{"br":"Montenegro","de":"Montenegro","es":"Montenegro","fa":"\u0645\u0648\u0646\u062a\u0647\u200c\u0646\u06af\u0631\u0648","fr":"Mont\u00e9n\u00e9gro","hr":"Crna Gora","it":"Montenegro","ja":"\u30e2\u30f3\u30c6\u30cd\u30b0\u30ed","nl":"Montenegro","pt":"Montenegro","ru":"\u0427\u0435\u0440\u043d\u043e\u0433\u043e\u0440\u0438\u044f","pl":"Czarnog\u00f3ra","cs":"\u010cern\u00e1 Hora","zh":"\u9ed1\u5c71","hu":"Montenegr\u00f3","se":"Montenegro"},"cioc":"MNE"},{"alpha2Code":"MS","alpha3Code":"MSR","altSpellings":["MS"],"area":102,"borders":[],"callingCodes":["1"],"capital":"Plymouth","currencies":[{"code":"XCD","name":"East Caribbean dollar","symbol":"$"}],"demonym":"Montserratian","flag":"https://restcountries.eu/data/msr.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[16.75,-62.2],"name":"Montserrat","nativeName":"Montserrat","numericCode":"500","population":4922,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".ms"],"translations":{"br":"Montserrat","de":"Montserrat","es":"Montserrat","fa":"\u0645\u0627\u06cc\u0648\u062a","fr":"Montserrat","hr":"Montserrat","it":"Montserrat","ja":"\u30e2\u30f3\u30c8\u30bb\u30e9\u30c8","nl":"Montserrat","pt":"Monserrate","pl":"Montserrat","cs":"Montserrat","ru":"Montserrat","zh":"\u8499\u7279\u585e\u62c9\u7279","hu":"Montserrat","se":"Montserrat"},"cioc":""},{"alpha2Code":"MA","alpha3Code":"MAR","altSpellings":["MA","Kingdom of Morocco","Al-Mamlakah al-Ma\u0121ribiyah"],"area":446550,"borders":["DZA","ESH","ESP"],"callingCodes":["212"],"capital":"Rabat","currencies":[{"code":"MAD","name":"Moroccan dirham","symbol":"\u062f.\u0645."}],"demonym":"Moroccan","flag":"https://restcountries.eu/data/mar.svg","gini":40.9,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[32,-5],"name":"Morocco","nativeName":"\u0627\u0644\u0645\u063a\u0631\u0628","numericCode":"504","population":36910558,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]},{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Northern Africa","timezones":["UTC"],"topLevelDomain":[".ma"],"translations":{"br":"Marrocos","de":"Marokko","es":"Marruecos","fa":"\u0627\u0644\u0645\u063a\u0631\u0628","fr":"Maroc","hr":"Maroko","it":"Marocco","ja":"\u30e2\u30ed\u30c3\u30b3","nl":"Marokko","pt":"Marrocos","ru":"\u041c\u0430\u0440\u043e\u043a\u043a\u043e","pl":"Maroko","cs":"Maroko","zh":"\u6469\u6d1b\u54e5\u738b\u56fd","hu":"Marokk\u00f3","se":"Marocko"},"cioc":"MAR"},{"alpha2Code":"MZ","alpha3Code":"MOZ","altSpellings":["MZ","Republic of Mozambique","Rep\u00fablica de Mo\u00e7ambique"],"area":801590,"borders":["MWI","ZAF","SWZ","TZA","ZMB","ZWE"],"callingCodes":["258"],"capital":"Maputo","currencies":[{"code":"MZN","name":"Mozambican metical","symbol":"MT"}],"demonym":"Mozambican","flag":"https://restcountries.eu/data/moz.svg","gini":45.7,"languages":[{"iso639_1":"pt","iso639_2":"por","name":"Portuguese","nativeName":"Portugu\u00eas"}],"latlng":[-18.25,35],"name":"Mozambique","nativeName":"Mo\u00e7ambique","numericCode":"508","population":31255435,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".mz"],"translations":{"br":"Mo\u00e7ambique","de":"Mosambik","es":"Mozambique","fa":"\u0645\u0648\u0632\u0627\u0645\u0628\u06cc\u06a9","fr":"Mozambique","hr":"Mozambik","it":"Mozambico","ja":"\u30e2\u30b6\u30f3\u30d3\u30fc\u30af","nl":"Mozambique","pt":"Mo\u00e7ambique","ru":"\u041c\u043e\u0437\u0430\u043c\u0431\u0438\u043a","pl":"Mozambik","cs":"Mosambik","zh":"\u83ab\u6851\u6bd4\u514b\u5171\u548c\u56fd","hu":"Mozambik","se":"Mo\u00e7ambique"},"cioc":"MOZ"},{"alpha2Code":"MM","alpha3Code":"MMR","altSpellings":["MM","Burma","Republic of the Union of Myanmar","Pyidaunzu Thanm\u0103da My\u0103ma Nainngandaw"],"area":676578,"borders":["BGD","CHN","IND","LAO","THA"],"callingCodes":["95"],"capital":"Naypyidaw","currencies":[{"code":"MMK","name":"Burmese kyat","symbol":"Ks"}],"demonym":"Burmese","flag":"https://restcountries.eu/data/mmr.svg","gini":null,"languages":[{"iso639_1":"my","iso639_2":"mya","name":"Burmese","nativeName":"\u1017\u1019\u102c\u1005\u102c"}],"latlng":[22,98],"name":"Myanmar","nativeName":"Myanma","numericCode":"104","population":54409794,"region":"Asia","regionalBlocs":[{"acronym":"ASEAN","name":"Association of Southeast Asian Nations"}],"subregion":"South-Eastern Asia","timezones":["UTC+06:30"],"topLevelDomain":[".mm"],"translations":{"br":"Myanmar","de":"Myanmar","es":"Myanmar","fa":"\u0645\u06cc\u0627\u0646\u0645\u0627\u0631","fr":"Myanmar","hr":"Mijanmar","it":"Birmania","ja":"\u30df\u30e3\u30f3\u30de\u30fc","nl":"Myanmar","pt":"Myanmar","ru":"\u041c\u044c\u044f\u043d\u043c\u0430","pl":"Mjanma (Birma)","cs":"Myanmar","zh":"\u7f05\u7538\u8054\u90a6\u5171\u548c\u56fd","hu":"Mianmar","se":"Myanmar"},"cioc":"MYA"},{"alpha2Code":"NA","alpha3Code":"NAM","altSpellings":["NA","Namibi\u00eb","Republic of Namibia"],"area":825615,"borders":["AGO","BWA","ZAF","ZMB"],"callingCodes":["264"],"capital":"Windhoek","currencies":[{"code":"NAD","name":"Namibian dollar","symbol":"$"},{"code":"ZAR","name":"South African rand","symbol":"R"}],"demonym":"Namibian","flag":"https://restcountries.eu/data/nam.svg","gini":63.9,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"af","iso639_2":"afr","name":"Afrikaans","nativeName":"Afrikaans"}],"latlng":[-22,17],"name":"Namibia","nativeName":"Namibia","numericCode":"516","population":2540916,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Southern Africa","timezones":["UTC+01:00"],"topLevelDomain":[".na"],"translations":{"br":"Nam\u00edbia","de":"Namibia","es":"Namibia","fa":"\u0646\u0627\u0645\u06cc\u0628\u06cc\u0627","fr":"Namibie","hr":"Namibija","it":"Namibia","ja":"\u30ca\u30df\u30d3\u30a2","nl":"Namibi\u00eb","pt":"Nam\u00edbia","ru":"\u041d\u0430\u043c\u0438\u0431\u0438\u044f","pl":"Namibia","cs":"Namibie","zh":"\u7eb3\u7c73\u6bd4\u4e9a\u5171\u548c\u56fd","hu":"Nam\u00edbia","se":"Namibia"},"cioc":"NAM"},{"alpha2Code":"NR","alpha3Code":"NRU","altSpellings":["NR","Naoero","Pleasant Island","Republic of Nauru","Ripublik Naoero"],"area":21,"borders":[],"callingCodes":["674"],"capital":"Yaren","currencies":[{"code":"AUD","name":"Australian dollar","symbol":"$"},{"code":"(none)","name":null,"symbol":"$"}],"demonym":"Nauruan","flag":"https://restcountries.eu/data/nru.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"na","iso639_2":"nau","name":"Nauruan","nativeName":"Dorerin Naoero"}],"latlng":[-0.53333333,166.91666666],"name":"Nauru","nativeName":"Nauru","numericCode":"520","population":10834,"region":"Oceania","regionalBlocs":[],"subregion":"Micronesia","timezones":["UTC+12:00"],"topLevelDomain":[".nr"],"translations":{"br":"Nauru","de":"Nauru","es":"Nauru","fa":"\u0646\u0627\u0626\u0648\u0631\u0648","fr":"Nauru","hr":"Nauru","it":"Nauru","ja":"\u30ca\u30a6\u30eb","nl":"Nauru","pt":"Nauru","ru":"\u041d\u0430\u0443\u0440\u0443","pl":"Nauru","cs":"Nauru","zh":"\u7459\u9c81\u5171\u548c\u56fd","hu":"Nauru","se":"Nauru"},"cioc":"NRU"},{"alpha2Code":"NP","alpha3Code":"NPL","altSpellings":["NP","Federal Democratic Republic of Nepal","Lokt\u0101ntrik Ganatantra Nep\u0101l"],"area":147181,"borders":["CHN","IND"],"callingCodes":["977"],"capital":"Kathmandu","currencies":[{"code":"NPR","name":"Nepalese rupee","symbol":"\u20a8"}],"demonym":"Nepalese","flag":"https://restcountries.eu/data/npl.svg","gini":32.8,"languages":[{"iso639_1":"ne","iso639_2":"nep","name":"Nepali","nativeName":"\u0928\u0947\u092a\u093e\u0932\u0940"}],"latlng":[28,84],"name":"Nepal","nativeName":"\u0928\u0947\u092a\u093e\u0932","numericCode":"524","population":29136808,"region":"Asia","regionalBlocs":[{"acronym":"SAARC","name":"South Asian Association for Regional Cooperation"}],"subregion":"Southern Asia","timezones":["UTC+05:45"],"topLevelDomain":[".np"],"translations":{"br":"Nepal","de":"N\u00e9pal","es":"Nepal","fa":"\u0646\u067e\u0627\u0644","fr":"N\u00e9pal","hr":"Nepal","it":"Nepal","ja":"\u30cd\u30d1\u30fc\u30eb","nl":"Nepal","pt":"Nepal","ru":"\u041d\u0435\u043f\u0430\u043b","pl":"Nepal","cs":"Nep\u00e1l","zh":"\u5c3c\u6cca\u5c14\u8054\u90a6\u6c11\u4e3b\u5171\u548c\u56fd","hu":"Nep\u00e1l","se":"Nepal"},"cioc":"NEP"},{"alpha2Code":"NL","alpha3Code":"NLD","altSpellings":["NL","Holland","Nederland"],"area":41850,"borders":["BEL","DEU"],"callingCodes":["31"],"capital":"Amsterdam","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Dutch","flag":"https://restcountries.eu/data/nld.svg","gini":30.9,"languages":[{"iso639_1":"nl","iso639_2":"nld","name":"Dutch","nativeName":"Nederlands"}],"latlng":[52.5,5.75],"name":"Netherlands","nativeName":"Nederland","numericCode":"528","population":17441139,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Western Europe","timezones":["UTC-04:00","UTC+01:00"],"topLevelDomain":[".nl"],"translations":{"br":"Holanda","de":"Niederlande","es":"Pa\u00edses Bajos","fa":"\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0647\u0644\u0646\u062f","fr":"Pays-Bas","hr":"Nizozemska","it":"Paesi Bassi","ja":"\u30aa\u30e9\u30f3\u30c0","nl":"Nederland","pt":"Pa\u00edses Baixos","ru":"\u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u044b","pl":"Holandia","cs":"Nizozemsko","zh":"\u8377\u5170","hu":"Hollandia","se":"Nederl\u00e4nderna"},"cioc":"NED"},{"alpha2Code":"NC","alpha3Code":"NCL","altSpellings":["NC"],"area":18575,"borders":[],"callingCodes":["687"],"capital":"Noum\u00e9a","currencies":[{"code":"XPF","name":"CFP franc","symbol":"Fr"}],"demonym":"New Caledonian","flag":"https://restcountries.eu/data/ncl.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[-21.5,165.5],"name":"New Caledonia","nativeName":"Nouvelle-Cal\u00e9donie","numericCode":"540","population":271960,"region":"Oceania","regionalBlocs":[],"subregion":"Melanesia","timezones":["UTC+11:00"],"topLevelDomain":[".nc"],"translations":{"br":"Nova Caled\u00f4nia","de":"Neukaledonien","es":"Nueva Caledonia","fa":"\u06a9\u0627\u0644\u062f\u0648\u0646\u06cc\u0627\u06cc \u062c\u062f\u06cc\u062f","fr":"Nouvelle-Cal\u00e9donie","hr":"Nova Kaledonija","it":"Nuova Caledonia","ja":"\u30cb\u30e5\u30fc\u30ab\u30ec\u30c9\u30cb\u30a2","nl":"Nieuw-Caledoni\u00eb","pt":"Nova Caled\u00f3nia","pl":"Nowa Kaledonia","cs":"Nov\u00e1 Kaledonie","ru":"New Caledonia","zh":"\u65b0\u5580\u91cc\u591a\u5c3c\u4e9a","hu":"\u00daj-Kaled\u00f3nia","se":"Nya Kaledonien"},"cioc":""},{"alpha2Code":"NZ","alpha3Code":"NZL","altSpellings":["NZ","Aotearoa"],"area":270467,"borders":[],"callingCodes":["64"],"capital":"Wellington","currencies":[{"code":"NZD","name":"New Zealand dollar","symbol":"$"}],"demonym":"New Zealander","flag":"https://restcountries.eu/data/nzl.svg","gini":36.2,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"mi","iso639_2":"mri","name":"M\u0101ori","nativeName":"te reo M\u0101ori"}],"latlng":[-41,174],"name":"New Zealand","nativeName":"New Zealand","numericCode":"554","population":5084300,"region":"Oceania","regionalBlocs":[],"subregion":"Australia and New Zealand","timezones":["UTC-11:00","UTC-10:00","UTC+12:00","UTC+12:45","UTC+13:00"],"topLevelDomain":[".nz"],"translations":{"br":"Nova Zel\u00e2ndia","de":"Neuseeland","es":"Nueva Zelanda","fa":"\u0646\u06cc\u0648\u0632\u06cc\u0644\u0646\u062f","fr":"Nouvelle-Z\u00e9lande","hr":"Novi Zeland","it":"Nuova Zelanda","ja":"\u30cb\u30e5\u30fc\u30b8\u30fc\u30e9\u30f3\u30c9","nl":"Nieuw-Zeeland","pt":"Nova Zel\u00e2ndia","ru":"\u041d\u043e\u0432\u0430\u044f \u0417\u0435\u043b\u0430\u043d\u0434\u0438\u044f","pl":"Nowa Zelandia","cs":"Nov\u00fd Z\u00e9land","zh":"\u65b0\u897f\u5170","hu":"\u00daj-Z\u00e9land","se":"Nya Zeeland"},"cioc":"NZL"},{"alpha2Code":"NI","alpha3Code":"NIC","altSpellings":["NI","Republic of Nicaragua","Rep\u00fablica de Nicaragua"],"area":130373,"borders":["CRI","HND"],"callingCodes":["505"],"capital":"Managua","currencies":[{"code":"NIO","name":"Nicaraguan c\u00f3rdoba","symbol":"C$"}],"demonym":"Nicaraguan","flag":"https://restcountries.eu/data/nic.svg","gini":40.5,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[13,-85],"name":"Nicaragua","nativeName":"Nicaragua","numericCode":"558","population":6624554,"region":"Americas","regionalBlocs":[{"acronym":"CAIS","name":"Central American Integration System","otherAcronyms":["SICA"],"otherNames":["Sistema de la Integraci\u00f3n Centroamericana,"]}],"subregion":"Central America","timezones":["UTC-06:00"],"topLevelDomain":[".ni"],"translations":{"br":"Nicar\u00e1gua","de":"Nicaragua","es":"Nicaragua","fa":"\u0646\u06cc\u06a9\u0627\u0631\u0627\u06af\u0648\u0626\u0647","fr":"Nicaragua","hr":"Nikaragva","it":"Nicaragua","ja":"\u30cb\u30ab\u30e9\u30b0\u30a2","nl":"Nicaragua","pt":"Nicar\u00e1gua","ru":"\u041d\u0438\u043a\u0430\u0440\u0430\u0433\u0443\u0430","pl":"Nikaragua","cs":"Nikaragua","zh":"\u5c3c\u52a0\u62c9\u74dc\u5171\u548c\u56fd","hu":"Nicaragua","se":"Nicaragua"},"cioc":"NCA"},{"alpha2Code":"NE","alpha3Code":"NER","altSpellings":["NE","Nijar","Republic of Niger","R\u00e9publique du Niger"],"area":1267000,"borders":["DZA","BEN","BFA","TCD","LBY","MLI","NGA"],"callingCodes":["227"],"capital":"Niamey","currencies":[{"code":"XOF","name":"West African CFA franc","symbol":"Fr"}],"demonym":"Nigerien","flag":"https://restcountries.eu/data/ner.svg","gini":34.6,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[16,8],"name":"Niger","nativeName":"Niger","numericCode":"562","population":24206636,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC+01:00"],"topLevelDomain":[".ne"],"translations":{"br":"N\u00edger","de":"Niger","es":"N\u00edger","fa":"\u0646\u06cc\u062c\u0631","fr":"Niger","hr":"Niger","it":"Niger","ja":"\u30cb\u30b8\u30a7\u30fc\u30eb","nl":"Niger","pt":"N\u00edger","ru":"\u041d\u0438\u0433\u0435\u0440","pl":"Niger","cs":"Niger","zh":"\u5c3c\u65e5\u5c14\u5171\u548c\u56fd","hu":"Niger","se":"Niger"},"cioc":"NIG"},{"alpha2Code":"NG","alpha3Code":"NGA","altSpellings":["NG","Nijeriya","Na\u00edj\u00edr\u00ed\u00e0","Federal Republic of Nigeria"],"area":923768,"borders":["BEN","CMR","TCD","NER"],"callingCodes":["234"],"capital":"Abuja","currencies":[{"code":"NGN","name":"Nigerian naira","symbol":"\u20a6"}],"demonym":"Nigerian","flag":"https://restcountries.eu/data/nga.svg","gini":48.8,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[10,8],"name":"Nigeria","nativeName":"Nigeria","numericCode":"566","population":206139587,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC+01:00"],"topLevelDomain":[".ng"],"translations":{"br":"Nig\u00e9ria","de":"Nigeria","es":"Nigeria","fa":"\u0646\u06cc\u062c\u0631\u06cc\u0647","fr":"Nig\u00e9ria","hr":"Nigerija","it":"Nigeria","ja":"\u30ca\u30a4\u30b8\u30a7\u30ea\u30a2","nl":"Nigeria","pt":"Nig\u00e9ria","ru":"\u041d\u0438\u0433\u0435\u0440\u0438\u044f","pl":"Nigeria","cs":"Nig\u00e9rie","zh":"\u5c3c\u65e5\u5229\u4e9a\u8054\u90a6\u5171\u548c\u56fd","hu":"Nig\u00e9ria","se":"Nigeria"},"cioc":"NGR"},{"alpha2Code":"NU","alpha3Code":"NIU","altSpellings":["NU"],"area":260,"borders":[],"callingCodes":["683"],"capital":"Alofi","currencies":[{"code":"NZD","name":"New Zealand dollar","symbol":"$"},{"code":"(none)","name":"Niue dollar","symbol":"$"}],"demonym":"Niuean","flag":"https://restcountries.eu/data/niu.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-19.03333333,-169.86666666],"name":"Niue","nativeName":"Niu\u0113","numericCode":"570","population":1470,"region":"Oceania","regionalBlocs":[],"subregion":"Polynesia","timezones":["UTC-11:00"],"topLevelDomain":[".nu"],"translations":{"br":"Niue","de":"Niue","es":"Niue","fa":"\u0646\u06cc\u0648\u0648\u06cc","fr":"Niue","hr":"Niue","it":"Niue","ja":"\u30cb\u30a6\u30a8","nl":"Niue","pt":"Niue","pl":"Niue","cs":"Niue","ru":"Niue","zh":"\u7ebd\u57c3","hu":"Niue","se":"Niue"},"cioc":""},{"alpha2Code":"NF","alpha3Code":"NFK","altSpellings":["NF","Territory of Norfolk Island","Teratri of Norf'k Ailen"],"area":36,"borders":[],"callingCodes":["672"],"capital":"Kingston","currencies":[{"code":"AUD","name":"Australian dollar","symbol":"$"}],"demonym":"Norfolk Islander","flag":"https://restcountries.eu/data/nfk.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-29.03333333,167.95],"name":"Norfolk Island","nativeName":"Norfolk Island","numericCode":"574","population":2302,"region":"Oceania","regionalBlocs":[],"subregion":"Australia and New Zealand","timezones":["UTC+11:30"],"topLevelDomain":[".nf"],"translations":{"br":"Ilha Norfolk","de":"Norfolkinsel","es":"Isla de Norfolk","fa":"\u062c\u0632\u06cc\u0631\u0647 \u0646\u0648\u0631\u0641\u06a9","fr":"\u00cele de Norfolk","hr":"Otok Norfolk","it":"Isola Norfolk","ja":"\u30ce\u30fc\u30d5\u30a9\u30fc\u30af\u5cf6","nl":"Norfolkeiland","pt":"Ilha Norfolk","pl":"Norfolk","cs":"Norfolk","ru":"Norfolk Island","zh":"\u8bfa\u798f\u514b\u5c9b","hu":"Norfolk-sziget","se":"Norfolk\u00f6n"},"cioc":""},{"alpha2Code":"KP","alpha3Code":"PRK","altSpellings":["KP","Democratic People's Republic of Korea","North Korea","\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d","Chos\u014fn Minjuju\u016di Inmin Konghwaguk"],"area":120538,"borders":["CHN","KOR","RUS"],"callingCodes":["850"],"capital":"Pyongyang","currencies":[{"code":"KPW","name":"North Korean won","symbol":"\u20a9"}],"demonym":"North Korean","flag":"https://restcountries.eu/data/prk.svg","gini":null,"languages":[{"iso639_1":"ko","iso639_2":"kor","name":"Korean","nativeName":"\ud55c\uad6d\uc5b4"}],"latlng":[40,127],"name":"Korea (Democratic People's Republic of)","nativeName":"\ubd81\ud55c","numericCode":"408","population":25778815,"region":"Asia","regionalBlocs":[],"subregion":"Eastern Asia","timezones":["UTC+09:00"],"topLevelDomain":[".kp"],"translations":{"br":"Coreia do Norte","de":"Nordkorea","es":"Corea del Norte","fa":"\u06a9\u0631\u0647 \u062c\u0646\u0648\u0628\u06cc","fr":"Cor\u00e9e du Nord","hr":"Sjeverna Koreja","it":"Corea del Nord","ja":"\u671d\u9bae\u6c11\u4e3b\u4e3b\u7fa9\u4eba\u6c11\u5171\u548c\u56fd","nl":"Noord-Korea","pt":"Coreia do Norte","ru":"\u041a\u041d\u0414\u0420 (\u041a\u043e\u0440\u0435\u0439\u0441\u043a\u0430\u044f \u041d\u0430\u0440\u043e\u0434\u043d\u043e-\u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430)","pl":"Korea P\u00f3\u0142nocna","cs":"Severn\u00ed Korea","zh":"\u671d\u9c9c\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd","hu":"\u00c9szak-Korea","se":"Nordkorea"},"cioc":"PRK"},{"alpha2Code":"MP","alpha3Code":"MNP","altSpellings":["MP","Commonwealth of the Northern Mariana Islands","Sankattan Siha Na Islas Mari\u00e5nas"],"area":464,"borders":[],"callingCodes":["1"],"capital":"Saipan","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"American","flag":"https://restcountries.eu/data/mnp.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"ch","iso639_2":"cha","name":"Chamorro","nativeName":"Chamoru"}],"latlng":[15.2,145.75],"name":"Northern Mariana Islands","nativeName":"Northern Mariana Islands","numericCode":"580","population":57557,"region":"Oceania","regionalBlocs":[],"subregion":"Micronesia","timezones":["UTC+10:00"],"topLevelDomain":[".mp"],"translations":{"br":"Ilhas Marianas","de":"N\u00f6rdliche Marianen","es":"Islas Marianas del Norte","fa":"\u062c\u0632\u0627\u06cc\u0631 \u0645\u0627\u0631\u06cc\u0627\u0646\u0627\u06cc \u0634\u0645\u0627\u0644\u06cc","fr":"\u00celes Mariannes du Nord","hr":"Sjevernomarijanski otoci","it":"Isole Marianne Settentrionali","ja":"\u5317\u30de\u30ea\u30a2\u30ca\u8af8\u5cf6","nl":"Noordelijke Marianeneilanden","pt":"Ilhas Marianas","pl":"Mariany P\u00f3\u0142nocne","cs":"Severn\u00ed Mariany","ru":"Northern Mariana Islands","zh":"\u5317\u9a6c\u91cc\u4e9a\u7eb3\u7fa4\u5c9b","hu":"\u00c9szaki-Mariana-szigetek","se":"Nordmarianerna"},"cioc":""},{"alpha2Code":"NO","alpha3Code":"NOR","altSpellings":["NO","Norge","Noreg","Kingdom of Norway","Kongeriket Norge","Kongeriket Noreg"],"area":323802,"borders":["FIN","SWE","RUS"],"callingCodes":["47"],"capital":"Oslo","currencies":[{"code":"NOK","name":"Norwegian krone","symbol":"kr"}],"demonym":"Norwegian","flag":"https://restcountries.eu/data/nor.svg","gini":25.8,"languages":[{"iso639_1":"no","iso639_2":"nor","name":"Norwegian","nativeName":"Norsk"},{"iso639_1":"nb","iso639_2":"nob","name":"Norwegian Bokm\u00e5l","nativeName":"Norsk bokm\u00e5l"},{"iso639_1":"nn","iso639_2":"nno","name":"Norwegian Nynorsk","nativeName":"Norsk nynorsk"}],"latlng":[62,10],"name":"Norway","nativeName":"Norge","numericCode":"578","population":5379475,"region":"Europe","regionalBlocs":[{"acronym":"EFTA","name":"European Free Trade Association"}],"subregion":"Northern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".no"],"translations":{"br":"Noruega","de":"Norwegen","es":"Noruega","fa":"\u0646\u0631\u0648\u0698","fr":"Norv\u00e8ge","hr":"Norve\u0161ka","it":"Norvegia","ja":"\u30ce\u30eb\u30a6\u30a7\u30fc","nl":"Noorwegen","pt":"Noruega","ru":"\u041d\u043e\u0440\u0432\u0435\u0433\u0438\u044f","pl":"Norwegia","cs":"Norsko","zh":"\u632a\u5a01\u738b\u56fd","hu":"Norv\u00e9gia","se":"Norge"},"cioc":"NOR"},{"alpha2Code":"OM","alpha3Code":"OMN","altSpellings":["OM","Sultanate of Oman","Sal\u1e6danat \u02bbUm\u0101n"],"area":309500,"borders":["SAU","ARE","YEM"],"callingCodes":["968"],"capital":"Muscat","currencies":[{"code":"OMR","name":"Omani rial","symbol":"\u0631.\u0639."}],"demonym":"Omani","flag":"https://restcountries.eu/data/omn.svg","gini":null,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[21,57],"name":"Oman","nativeName":"\u0639\u0645\u0627\u0646","numericCode":"512","population":5106622,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+04:00"],"topLevelDomain":[".om"],"translations":{"br":"Om\u00e3","de":"Oman","es":"Om\u00e1n","fa":"\u0639\u0645\u0627\u0646","fr":"Oman","hr":"Oman","it":"oman","ja":"\u30aa\u30de\u30fc\u30f3","nl":"Oman","pt":"Om\u00e3","ru":"\u041e\u043c\u0430\u043d","pl":"Oman","cs":"Om\u00e1n","zh":"\u963f\u66fc\u82cf\u4e39\u56fd","hu":"Om\u00e1n","se":"Oman"},"cioc":"OMA"},{"alpha2Code":"PK","alpha3Code":"PAK","altSpellings":["PK","P\u0101kist\u0101n","Islamic Republic of Pakistan","Isl\u0101m\u012b Jumh\u016briya'eh P\u0101kist\u0101n"],"area":881912,"borders":["AFG","CHN","IND","IRN"],"callingCodes":["92"],"capital":"Islamabad","currencies":[{"code":"PKR","name":"Pakistani rupee","symbol":"\u20a8"}],"demonym":"Pakistani","flag":"https://restcountries.eu/data/pak.svg","gini":30,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"ur","iso639_2":"urd","name":"Urdu","nativeName":"\u0627\u0631\u062f\u0648"}],"latlng":[30,70],"name":"Pakistan","nativeName":"Pakistan","numericCode":"586","population":220892331,"region":"Asia","regionalBlocs":[{"acronym":"SAARC","name":"South Asian Association for Regional Cooperation"}],"subregion":"Southern Asia","timezones":["UTC+05:00"],"topLevelDomain":[".pk"],"translations":{"br":"Paquist\u00e3o","de":"Pakistan","es":"Pakist\u00e1n","fa":"\u067e\u0627\u06a9\u0633\u062a\u0627\u0646","fr":"Pakistan","hr":"Pakistan","it":"Pakistan","ja":"\u30d1\u30ad\u30b9\u30bf\u30f3","nl":"Pakistan","pt":"Paquist\u00e3o","ru":"\u041f\u0430\u043a\u0438\u0441\u0442\u0430\u043d","pl":"Pakistan","cs":"P\u00e1kist\u00e1n","zh":"\u5df4\u57fa\u65af\u5766\u4f0a\u65af\u5170\u5171\u548c\u56fd","hu":"Pakiszt\u00e1n","se":"Pakistan"},"cioc":"PAK"},{"alpha2Code":"PW","alpha3Code":"PLW","altSpellings":["PW","Republic of Palau","Beluu er a Belau"],"area":459,"borders":[],"callingCodes":["680"],"capital":"Ngerulmud","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Palauan","flag":"https://restcountries.eu/data/plw.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[7.5,134.5],"name":"Palau","nativeName":"Palau","numericCode":"585","population":18092,"region":"Oceania","regionalBlocs":[],"subregion":"Micronesia","timezones":["UTC+09:00"],"topLevelDomain":[".pw"],"translations":{"br":"Palau","de":"Palau","es":"Palau","fa":"\u067e\u0627\u0644\u0627\u0626\u0648","fr":"Palaos","hr":"Palau","it":"Palau","ja":"\u30d1\u30e9\u30aa","nl":"Palau","pt":"Palau","ru":"\u041f\u0430\u043b\u0430\u0443","pl":"Palau","cs":"Palau","zh":"\u5e15\u52b3\u5171\u548c\u56fd","hu":"Palau","se":"Palau"},"cioc":"PLW"},{"alpha2Code":"PS","alpha3Code":"PSE","altSpellings":["PS","State of Palestine","Dawlat Filas\u1e6din"],"borders":["ISR","EGY","JOR"],"callingCodes":["970"],"capital":"Ramallah","currencies":[{"code":"ILS","name":"Israeli new sheqel","symbol":"\u20aa"}],"demonym":"Palestinian","flag":"https://restcountries.eu/data/pse.svg","gini":35.5,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[31.9,35.2],"name":"Palestine, State of","nativeName":"\u0641\u0644\u0633\u0637\u064a\u0646","numericCode":"275","population":4803269,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+02:00"],"topLevelDomain":[".ps"],"translations":{"br":"Palestina","de":"Pal\u00e4stina","es":"Palestina","fa":"\u0641\u0644\u0633\u0637\u06cc\u0646","fr":"Palestine","hr":"Palestina","it":"Palestina","ja":"\u30d1\u30ec\u30b9\u30c1\u30ca","nl":"Palestijnse gebieden","pt":"Palestina","pl":"Palestyna","cs":"Palestina","ru":"Palestine, State of","zh":"\u5df4\u52d2\u65af\u5766\u56fd","hu":"Palesztina","se":"Palestina"},"cioc":"PLE"},{"alpha2Code":"PA","alpha3Code":"PAN","altSpellings":["PA","Republic of Panama","Rep\u00fablica de Panam\u00e1"],"area":75417,"borders":["COL","CRI"],"callingCodes":["507"],"capital":"Panama City","currencies":[{"code":"PAB","name":"Panamanian balboa","symbol":"B/."},{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Panamanian","flag":"https://restcountries.eu/data/pan.svg","gini":51.9,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[9,-80],"name":"Panama","nativeName":"Panam\u00e1","numericCode":"591","population":4314768,"region":"Americas","regionalBlocs":[{"acronym":"CAIS","name":"Central American Integration System","otherAcronyms":["SICA"],"otherNames":["Sistema de la Integraci\u00f3n Centroamericana,"]}],"subregion":"Central America","timezones":["UTC-05:00"],"topLevelDomain":[".pa"],"translations":{"br":"Panam\u00e1","de":"Panama","es":"Panam\u00e1","fa":"\u067e\u0627\u0646\u0627\u0645\u0627","fr":"Panama","hr":"Panama","it":"Panama","ja":"\u30d1\u30ca\u30de","nl":"Panama","pt":"Panam\u00e1","ru":"\u041f\u0430\u043d\u0430\u043c\u0430","pl":"Panama","cs":"Panama","zh":"\u5df4\u62ff\u9a6c\u5171\u548c\u56fd","hu":"Panama","se":"Panama"},"cioc":"PAN"},{"alpha2Code":"PG","alpha3Code":"PNG","altSpellings":["PG","Independent State of Papua New Guinea","Independen Stet bilong Papua Niugini"],"area":462840,"borders":["IDN"],"callingCodes":["675"],"capital":"Port Moresby","currencies":[{"code":"PGK","name":"Papua New Guinean kina","symbol":"K"}],"demonym":"Papua New Guinean","flag":"https://restcountries.eu/data/png.svg","gini":50.9,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-6,147],"name":"Papua New Guinea","nativeName":"Papua Niugini","numericCode":"598","population":8947027,"region":"Oceania","regionalBlocs":[],"subregion":"Melanesia","timezones":["UTC+10:00"],"topLevelDomain":[".pg"],"translations":{"br":"Papua Nova Guin\u00e9","de":"Papua-Neuguinea","es":"Pap\u00faa Nueva Guinea","fa":"\u067e\u0627\u067e\u0648\u0622 \u06af\u06cc\u0646\u0647 \u0646\u0648","fr":"Papouasie-Nouvelle-Guin\u00e9e","hr":"Papua Nova Gvineja","it":"Papua Nuova Guinea","ja":"\u30d1\u30d7\u30a2\u30cb\u30e5\u30fc\u30ae\u30cb\u30a2","nl":"Papoea-Nieuw-Guinea","pt":"Papua Nova Guin\u00e9","ru":"\u041f\u0430\u043f\u0443\u0430 \u2014 \u041d\u043e\u0432\u0430\u044f \u0413\u0432\u0438\u043d\u0435\u044f","pl":"Papua-Nowa Gwinea","cs":"Papua-Nov\u00e1 Guinea","zh":"\u5df4\u5e03\u4e9a\u65b0\u51e0\u5185\u4e9a","hu":"P\u00e1pua \u00daj-Guinea","se":"Papua Nya Guinea"},"cioc":"PNG"},{"alpha2Code":"PY","alpha3Code":"PRY","altSpellings":["PY","Republic of Paraguay","Rep\u00fablica del Paraguay","Tet\u00e3 Paragu\u00e1i"],"area":406752,"borders":["ARG","BOL","BRA"],"callingCodes":["595"],"capital":"Asunci\u00f3n","currencies":[{"code":"PYG","name":"Paraguayan guaran\u00ed","symbol":"\u20b2"}],"demonym":"Paraguayan","flag":"https://restcountries.eu/data/pry.svg","gini":52.4,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"},{"iso639_1":"gn","iso639_2":"grn","name":"Guaran\u00ed","nativeName":"Ava\u00f1e'\u1ebd"}],"latlng":[-23,-58],"name":"Paraguay","nativeName":"Paraguay","numericCode":"600","population":7132530,"region":"Americas","regionalBlocs":[{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-04:00"],"topLevelDomain":[".py"],"translations":{"br":"Paraguai","de":"Paraguay","es":"Paraguay","fa":"\u067e\u0627\u0631\u0627\u06af\u0648\u0626\u0647","fr":"Paraguay","hr":"Paragvaj","it":"Paraguay","ja":"\u30d1\u30e9\u30b0\u30a2\u30a4","nl":"Paraguay","pt":"Paraguai","ru":"\u041f\u0430\u0440\u0430\u0433\u0432\u0430\u0439","pl":"Paragwaj","cs":"Paraguay","zh":"\u5df4\u62c9\u572d\u5171\u548c\u56fd","hu":"Paraguay","se":"Paraguay"},"cioc":"PAR"},{"alpha2Code":"PE","alpha3Code":"PER","altSpellings":["PE","Republic of Peru","Rep\u00fablica del Per\u00fa"],"area":1285216,"borders":["BOL","BRA","CHL","COL","ECU"],"callingCodes":["51"],"capital":"Lima","currencies":[{"code":"PEN","name":"Peruvian sol","symbol":"S/ "}],"demonym":"Peruvian","flag":"https://restcountries.eu/data/per.svg","gini":48.1,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[-10,-76],"name":"Peru","nativeName":"Per\u00fa","numericCode":"604","population":32971846,"region":"Americas","regionalBlocs":[{"acronym":"PA","name":"Pacific Alliance","otherNames":["Alianza del Pac\u00edfico"]},{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-05:00"],"topLevelDomain":[".pe"],"translations":{"br":"Peru","de":"Peru","es":"Per\u00fa","fa":"\u067e\u0631\u0648","fr":"P\u00e9rou","hr":"Peru","it":"Per\u00f9","ja":"\u30da\u30eb\u30fc","nl":"Peru","pt":"Peru","ru":"\u041f\u0435\u0440\u0443","pl":"Peru","cs":"Peru","zh":"\u79d8\u9c81\u5171\u548c\u56fd","hu":"Peru","se":"Peru"},"cioc":"PER"},{"alpha2Code":"PH","alpha3Code":"PHL","altSpellings":["PH","Republic of the Philippines","Rep\u00fablika ng Pilipinas"],"area":342353,"borders":[],"callingCodes":["63"],"capital":"Manila","currencies":[{"code":"PHP","name":"Philippine peso","symbol":"\u20b1"}],"demonym":"Filipino","flag":"https://restcountries.eu/data/phl.svg","gini":43,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[13,122],"name":"Philippines","nativeName":"Pilipinas","numericCode":"608","population":109581085,"region":"Asia","regionalBlocs":[{"acronym":"ASEAN","name":"Association of Southeast Asian Nations"}],"subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"topLevelDomain":[".ph"],"translations":{"br":"Filipinas","de":"Philippinen","es":"Filipinas","fa":"\u062c\u0632\u0627\u06cc\u0631 \u0627\u0644\u0646\u062f\u0641\u06cc\u0644\u06cc\u067e\u06cc\u0646","fr":"Philippines","hr":"Filipini","it":"Filippine","ja":"\u30d5\u30a3\u30ea\u30d4\u30f3","nl":"Filipijnen","pt":"Filipinas","ru":"\u0424\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u044b","pl":"Filipiny","cs":"Filip\u00edny","zh":"\u83f2\u5f8b\u5bbe\u5171\u548c\u56fd","hu":"F\u00fcl\u00f6p-szigetek","se":"Filippinerna"},"cioc":"PHI"},{"alpha2Code":"PN","alpha3Code":"PCN","altSpellings":["PN","Pitcairn Henderson Ducie and Oeno Islands"],"area":47,"borders":[],"callingCodes":["64"],"capital":"Adamstown","currencies":[{"code":"NZD","name":"New Zealand dollar","symbol":"$"},{"code":null,"name":"Pitcairn Islands dollar","symbol":"$"}],"demonym":"Pitcairn Islander","flag":"https://restcountries.eu/data/pcn.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-25.06666666,-130.1],"name":"Pitcairn","nativeName":"Pitcairn Islands","numericCode":"612","population":56,"region":"Oceania","regionalBlocs":[],"subregion":"Polynesia","timezones":["UTC-08:00"],"topLevelDomain":[".pn"],"translations":{"br":"Ilhas Pitcairn","de":"Pitcairn","es":"Islas Pitcairn","fa":"\u067e\u06cc\u062a\u06a9\u0631\u0646","fr":"\u00celes Pitcairn","hr":"Pitcairnovo oto\u010dje","it":"Isole Pitcairn","ja":"\u30d4\u30c8\u30b1\u30a2\u30f3","nl":"Pitcairneilanden","pt":"Ilhas Pic\u00e1rnia","pl":"Pitcairn","cs":"Pitcairnovy ostrovy","ru":"Pitcairn","zh":"\u76ae\u7279\u51ef\u6069\u7fa4\u5c9b","hu":"Pitcairn-szigetek","se":"Pitcairn\u00f6arna"},"cioc":""},{"alpha2Code":"PL","alpha3Code":"POL","altSpellings":["PL","Republic of Poland","Rzeczpospolita Polska"],"area":312679,"borders":["BLR","CZE","DEU","LTU","RUS","SVK","UKR"],"callingCodes":["48"],"capital":"Warsaw","currencies":[{"code":"PLN","name":"Polish z\u0142oty","symbol":"z\u0142"}],"demonym":"Polish","flag":"https://restcountries.eu/data/pol.svg","gini":34.1,"languages":[{"iso639_1":"pl","iso639_2":"pol","name":"Polish","nativeName":"j\u0119zyk polski"}],"latlng":[52,20],"name":"Poland","nativeName":"Polska","numericCode":"616","population":37950802,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Eastern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".pl"],"translations":{"br":"Pol\u00f4nia","de":"Polen","es":"Polonia","fa":"\u0644\u0647\u0633\u062a\u0627\u0646","fr":"Pologne","hr":"Poljska","it":"Polonia","ja":"\u30dd\u30fc\u30e9\u30f3\u30c9","nl":"Polen","pt":"Pol\u00f3nia","ru":"\u041f\u043e\u043b\u044c\u0448\u0430","pl":"Polska","cs":"Polsko","zh":"\u6ce2\u5170\u5171\u548c\u56fd","hu":"Lengyelorsz\u00e1g","se":"Polen"},"cioc":"POL"},{"alpha2Code":"PT","alpha3Code":"PRT","altSpellings":["PT","Portuguesa","Portuguese Republic","Rep\u00fablica Portuguesa"],"area":92090,"borders":["ESP"],"callingCodes":["351"],"capital":"Lisbon","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Portuguese","flag":"https://restcountries.eu/data/prt.svg","gini":38.5,"languages":[{"iso639_1":"pt","iso639_2":"por","name":"Portuguese","nativeName":"Portugu\u00eas"}],"latlng":[39.5,-8],"name":"Portugal","nativeName":"Portugal","numericCode":"620","population":10305564,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Southern Europe","timezones":["UTC-01:00","UTC"],"topLevelDomain":[".pt"],"translations":{"br":"Portugal","de":"Portugal","es":"Portugal","fa":"\u067e\u0631\u062a\u063a\u0627\u0644","fr":"Portugal","hr":"Portugal","it":"Portogallo","ja":"\u30dd\u30eb\u30c8\u30ac\u30eb","nl":"Portugal","pt":"Portugal","ru":"\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0438\u044f","pl":"Portugalia","cs":"Portugalsko","zh":"\u8461\u8404\u7259\u5171\u548c\u56fd","hu":"Portug\u00e1lia","se":"Portugal"},"cioc":"POR"},{"alpha2Code":"PR","alpha3Code":"PRI","altSpellings":["PR","Commonwealth of Puerto Rico","Estado Libre Asociado de Puerto Rico"],"area":8870,"borders":[],"callingCodes":["1"],"capital":"San Juan","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Puerto Rican","flag":"https://restcountries.eu/data/pri.svg","languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[18.25,-66.5],"name":"Puerto Rico","nativeName":"Puerto Rico","numericCode":"630","population":3194034,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".pr"],"translations":{"br":"Porto Rico","de":"Puerto Rico","es":"Puerto Rico","fa":"\u067e\u0648\u0631\u062a\u0648 \u0631\u06cc\u06a9\u0648","fr":"Porto Rico","hr":"Portoriko","it":"Porto Rico","ja":"\u30d7\u30a8\u30eb\u30c8\u30ea\u30b3","nl":"Puerto Rico","pt":"Porto Rico","pl":"Portoryko","cs":"Portoriko","ru":"Puerto Rico","zh":"\u6ce2\u591a\u9ece\u5404\u8054\u90a6","hu":"Puerto Rico","se":"Puerto Rico"},"cioc":"PUR"},{"alpha2Code":"QA","alpha3Code":"QAT","altSpellings":["QA","State of Qatar","Dawlat Qa\u1e6dar"],"area":11586,"borders":["SAU"],"callingCodes":["974"],"capital":"Doha","currencies":[{"code":"QAR","name":"Qatari riyal","symbol":"\u0631.\u0642"}],"demonym":"Qatari","flag":"https://restcountries.eu/data/qat.svg","gini":41.1,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[25.5,51.25],"name":"Qatar","nativeName":"\u0642\u0637\u0631","numericCode":"634","population":2881060,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+03:00"],"topLevelDomain":[".qa"],"translations":{"br":"Catar","de":"Katar","es":"Catar","fa":"\u0642\u0637\u0631","fr":"Qatar","hr":"Katar","it":"Qatar","ja":"\u30ab\u30bf\u30fc\u30eb","nl":"Qatar","pt":"Catar","ru":"\u041a\u0430\u0442\u0430\u0440","pl":"Katar","cs":"Katar","zh":"\u5361\u5854\u5c14\u56fd","hu":"Katar","se":"Qatar"},"cioc":"QAT"},{"alpha2Code":"XK","alpha3Code":"UNK","altSpellings":["XK","\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0441\u043e\u0432\u043e"],"area":10908,"borders":["ALB","MKD","MNE","SRB"],"callingCodes":["383"],"capital":"Pristina","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Kosovar","flag":"https://restcountries.eu/data/kos.svg","languages":[{"iso639_1":"sq","iso639_2":"sqi","name":"Albanian","nativeName":"Shqip"},{"iso639_1":"sr","iso639_2":"srp","name":"Serbian","nativeName":"\u0441\u0440\u043f\u0441\u043a\u0438 \u0458\u0435\u0437\u0438\u043a"}],"latlng":[42.666667,21.166667],"name":"Republic of Kosovo","nativeName":"Republika e Kosov\u00ebs","population":1775378,"region":"Europe","regionalBlocs":[{"acronym":"CEFTA","name":"Central European Free Trade Agreement"}],"subregion":"Eastern Europe","timezones":["UTC+01:00"],"topLevelDomain":[""],"translations":{"br":"Kosovo","es":"Kosovo","fa":"\u06a9\u0648\u0632\u0648\u0648","hr":"Kosovo","pt":"Kosovo","pl":"Kosowo","cs":"Kosovo","de":"Republic of Kosovo","fr":"Republic of Kosovo","it":"Republic of Kosovo","ja":"Republic of Kosovo","nl":"Republiek van Kosovo","ru":"Republic of Kosovo","zh":"\u79d1\u7d22\u6c83","hu":"Koszov\u00f3","se":"Kosovo"}},{"alpha2Code":"RE","alpha3Code":"REU","altSpellings":["RE","Reunion"],"borders":[],"callingCodes":["262"],"capital":"Saint-Denis","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"French","flag":"https://restcountries.eu/data/reu.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[-21.15,55.5],"name":"R\u00e9union","nativeName":"La R\u00e9union","numericCode":"638","population":840974,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+04:00"],"topLevelDomain":[".re"],"translations":{"br":"Reuni\u00e3o","de":"R\u00e9union","es":"Reuni\u00f3n","fa":"\u0631\u0626\u0648\u0646\u06cc\u0648\u0646","fr":"R\u00e9union","hr":"R\u00e9union","it":"Riunione","ja":"\u30ec\u30e6\u30cb\u30aa\u30f3","nl":"R\u00e9union","pt":"Reuni\u00e3o","pl":"Reunion","cs":"R\u00e9union","ru":"R\u00e9union","zh":"\u7559\u5c3c\u65fa\u5c9b","hu":"R\u00e9union","se":"R\u00e9union"},"cioc":""},{"alpha2Code":"RO","alpha3Code":"ROU","altSpellings":["RO","Rumania","Roumania","Rom\u00e2nia"],"area":238391,"borders":["BGR","HUN","MDA","SRB","UKR"],"callingCodes":["40"],"capital":"Bucharest","currencies":[{"code":"RON","name":"Romanian leu","symbol":"lei"}],"demonym":"Romanian","flag":"https://restcountries.eu/data/rou.svg","gini":30,"languages":[{"iso639_1":"ro","iso639_2":"ron","name":"Romanian","nativeName":"Rom\u00e2n\u0103"}],"latlng":[46,25],"name":"Romania","nativeName":"Rom\u00e2nia","numericCode":"642","population":19286123,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Eastern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".ro"],"translations":{"br":"Rom\u00eania","de":"Rum\u00e4nien","es":"Rumania","fa":"\u0631\u0648\u0645\u0627\u0646\u06cc","fr":"Roumanie","hr":"Rumunjska","it":"Romania","ja":"\u30eb\u30fc\u30de\u30cb\u30a2","nl":"Roemeni\u00eb","pt":"Rom\u00e9nia","ru":"\u0420\u0443\u043c\u044b\u043d\u0438\u044f","pl":"Rumunia","cs":"Rumunsko","zh":"\u7f57\u9a6c\u5c3c\u4e9a","hu":"Rom\u00e1nia","se":"Rum\u00e4nien"},"cioc":"ROU"},{"alpha2Code":"RU","alpha3Code":"RUS","altSpellings":["RU","Rossiya","Russian Federation","\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f","Rossiyskaya Federatsiya"],"area":17124442,"borders":["AZE","BLR","CHN","EST","FIN","GEO","KAZ","PRK","LVA","LTU","MNG","NOR","POL","UKR"],"callingCodes":["7"],"capital":"Moscow","currencies":[{"code":"RUB","name":"Russian ruble","symbol":"\u20bd"}],"demonym":"Russian","flag":"https://restcountries.eu/data/rus.svg","gini":40.1,"languages":[{"iso639_1":"ru","iso639_2":"rus","name":"Russian","nativeName":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439"}],"latlng":[60,100],"name":"Russian Federation","nativeName":"\u0420\u043e\u0441\u0441\u0438\u044f","numericCode":"643","population":144104080,"region":"Europe","regionalBlocs":[{"acronym":"EEU","name":"Eurasian Economic Union","otherAcronyms":["EAEU"]}],"subregion":"Eastern Europe","timezones":["UTC+03:00","UTC+04:00","UTC+06:00","UTC+07:00","UTC+08:00","UTC+09:00","UTC+10:00","UTC+11:00","UTC+12:00"],"topLevelDomain":[".ru"],"translations":{"br":"R\u00fassia","de":"Russland","es":"Rusia","fa":"\u0631\u0648\u0633\u06cc\u0647","fr":"Russie","hr":"Rusija","it":"Russia","ja":"\u30ed\u30b7\u30a2\u9023\u90a6","nl":"Rusland","pt":"R\u00fassia","ru":"\u0420\u043e\u0441\u0441\u0438\u044f","pl":"Rosja","cs":"Rusko","zh":"\u4fc4\u7f57\u65af\u8054\u90a6","hu":"Oroszorsz\u00e1g","se":"Ryssland"},"cioc":"RUS"},{"alpha2Code":"RW","alpha3Code":"RWA","altSpellings":["RW","Republic of Rwanda","Repubulika y'u Rwanda","R\u00e9publique du Rwanda"],"area":26338,"borders":["BDI","COD","TZA","UGA"],"callingCodes":["250"],"capital":"Kigali","currencies":[{"code":"RWF","name":"Rwandan franc","symbol":"Fr"}],"demonym":"Rwandan","flag":"https://restcountries.eu/data/rwa.svg","gini":50.8,"languages":[{"iso639_1":"rw","iso639_2":"kin","name":"Kinyarwanda","nativeName":"Ikinyarwanda"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[-2,30],"name":"Rwanda","nativeName":"Rwanda","numericCode":"646","population":12952209,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".rw"],"translations":{"br":"Ruanda","de":"Ruanda","es":"Ruanda","fa":"\u0631\u0648\u0627\u0646\u062f\u0627","fr":"Rwanda","hr":"Ruanda","it":"Ruanda","ja":"\u30eb\u30ef\u30f3\u30c0","nl":"Rwanda","pt":"Ruanda","ru":"\u0420\u0443\u0430\u043d\u0434\u0430","pl":"Rwanda","cs":"Rwanda","zh":"\u5362\u65fa\u8fbe\u5171\u548c\u56fd","hu":"Ruanda","se":"Rwanda"},"cioc":"RWA"},{"alpha2Code":"BL","alpha3Code":"BLM","altSpellings":["BL","St. Barthelemy","Collectivity of Saint Barth\u00e9lemy","Collectivit\u00e9 de Saint-Barth\u00e9lemy"],"area":21,"borders":[],"callingCodes":["590"],"capital":"Gustavia","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Saint Barth\u00e9lemy Islander","flag":"https://restcountries.eu/data/blm.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[18.5,-63.41666666],"name":"Saint Barth\u00e9lemy","nativeName":"Saint-Barth\u00e9lemy","numericCode":"652","population":9417,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".bl"],"translations":{"br":"S\u00e3o Bartolomeu","de":"Saint-Barth\u00e9lemy","es":"San Bartolom\u00e9","fa":"\u0633\u0646-\u0628\u0627\u0631\u062a\u0644\u0645\u06cc","fr":"Saint-Barth\u00e9lemy","hr":"Saint Barth\u00e9lemy","it":"Antille Francesi","ja":"\u30b5\u30f3\u30fb\u30d0\u30eb\u30c6\u30eb\u30df\u30fc","nl":"Saint Barth\u00e9lemy","pt":"S\u00e3o Bartolomeu","pl":"Wsp\u00f3lnota Saint-Barth\u00e9lemy","cs":"Svat\u00fd Bartolom\u011bj","ru":"Saint Barth\u00e9lemy","zh":"\u5723\u5df4\u6cf0\u52d2\u7c73\u96c6\u4f53","hu":"Saint-Barth\u00e9lemy","se":"Saint-Barth\u00e9lemy"},"cioc":""},{"alpha2Code":"SH","alpha3Code":"SHN","altSpellings":["SH"],"borders":[],"callingCodes":["290"],"capital":"Jamestown","currencies":[{"code":"SHP","name":"Saint Helena pound","symbol":"\u00a3"}],"demonym":"Saint Helenian","flag":"https://restcountries.eu/data/shn.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-15.95,-5.7],"name":"Saint Helena, Ascension and Tristan da Cunha","nativeName":"Saint Helena","numericCode":"654","population":4255,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC+00:00"],"topLevelDomain":[".sh"],"translations":{"br":"Santa Helena","de":"Sankt Helena","es":"Santa Helena","fa":"\u0633\u0646\u062a \u0647\u0644\u0646\u0627\u060c \u0627\u0633\u0646\u0634\u0646 \u0648 \u062a\u0631\u06cc\u0633\u062a\u0627\u0646 \u062f\u0627 \u06a9\u0648\u0646\u0627","fr":"Sainte-H\u00e9l\u00e8ne","hr":"Sveta Helena","it":"Sant'Elena","ja":"\u30bb\u30f3\u30c8\u30d8\u30ec\u30ca\u30fb\u30a2\u30bb\u30f3\u30b7\u30e7\u30f3\u304a\u3088\u3073\u30c8\u30ea\u30b9\u30bf\u30f3\u30c0\u30af\u30fc\u30cb\u30e3","nl":"Sint-Helena","pt":"Santa Helena","pl":"\u015awi\u0119ta Helena","cs":"Svat\u00e1 Helena, Ascension a Tristan da Cunha","ru":"Saint Helena, Ascension and Tristan da Cunha","zh":"\u5723\u8d6b\u52d2\u62ff\u3001\u963f\u68ee\u677e\u548c\u7279\u91cc\u65af\u5766-\u8fbe\u5e93\u5c3c\u4e9a","hu":"Szent Ilona","se":"Sankta Helena"}},{"alpha2Code":"KN","alpha3Code":"KNA","altSpellings":["KN","Federation of Saint Christopher and Nevis"],"area":261,"borders":[],"callingCodes":["1"],"capital":"Basseterre","currencies":[{"code":"XCD","name":"East Caribbean dollar","symbol":"$"}],"demonym":"Kittian and Nevisian","flag":"https://restcountries.eu/data/kna.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[17.33333333,-62.75],"name":"Saint Kitts and Nevis","nativeName":"Saint Kitts and Nevis","numericCode":"659","population":53192,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".kn"],"translations":{"br":"S\u00e3o Crist\u00f3v\u00e3o e Neves","de":"St. Kitts und Nevis","es":"San Crist\u00f3bal y Nieves","fa":"\u0633\u0646\u062a \u06a9\u06cc\u062a\u0633 \u0648 \u0646\u0648\u06cc\u0633","fr":"Saint-Christophe-et-Ni\u00e9v\u00e8s","hr":"Sveti Kristof i Nevis","it":"Saint Kitts e Nevis","ja":"\u30bb\u30f3\u30c8\u30af\u30ea\u30b9\u30c8\u30d5\u30a1\u30fc\u30fb\u30cd\u30a4\u30d3\u30b9","nl":"Saint Kitts en Nevis","pt":"S\u00e3o Crist\u00f3v\u00e3o e Neves","ru":"\u0421\u0435\u043d\u0442-\u041a\u0438\u0442\u0441 \u0438 \u041d\u0435\u0432\u0438\u0441","pl":"Saint Kitts i Nevis","cs":"Svat\u00fd Kry\u0161tof a Nevis","zh":"\u5723\u514b\u91cc\u65af\u6258\u5f17\u548c\u5c3c\u7ef4\u65af\u8054\u90a6","hu":"Saint Kitts \u00e9s Nevis","se":"Saint Kitts och Nevis"},"cioc":"SKN"},{"alpha2Code":"LC","alpha3Code":"LCA","altSpellings":["LC"],"area":616,"borders":[],"callingCodes":["1"],"capital":"Castries","currencies":[{"code":"XCD","name":"East Caribbean dollar","symbol":"$"}],"demonym":"Saint Lucian","flag":"https://restcountries.eu/data/lca.svg","gini":42.6,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[13.88333333,-60.96666666],"name":"Saint Lucia","nativeName":"Saint Lucia","numericCode":"662","population":183629,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".lc"],"translations":{"br":"Santa L\u00facia","de":"Saint Lucia","es":"Santa Luc\u00eda","fa":"\u0633\u0646\u062a \u0644\u0648\u0633\u06cc\u0627","fr":"Saint-Lucie","hr":"Sveta Lucija","it":"Santa Lucia","ja":"\u30bb\u30f3\u30c8\u30eb\u30b7\u30a2","nl":"Saint Lucia","pt":"Santa L\u00facia","ru":"\u0421\u0435\u043d\u0442-\u041b\u044e\u0441\u0438\u044f","pl":"Saint Lucia","cs":"Svat\u00e1 Lucie","zh":"\u5723\u5362\u897f\u4e9a","hu":"Saint Lucia","se":"Saint Lucia"},"cioc":"LCA"},{"alpha2Code":"MF","alpha3Code":"MAF","altSpellings":["MF","Collectivity of Saint Martin","Collectivit\u00e9 de Saint-Martin"],"area":53,"borders":["SXM","NLD"],"callingCodes":["590"],"capital":"Marigot","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Saint Martin Islander","flag":"https://restcountries.eu/data/maf.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"nl","iso639_2":"nld","name":"Dutch","nativeName":"Nederlands"}],"latlng":[18.08333333,-63.95],"name":"Saint Martin (French part)","nativeName":"Saint-Martin","numericCode":"663","population":38659,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".mf",".fr",".gp"],"translations":{"br":"Saint Martin","de":"Saint Martin","es":"Saint Martin","fa":"\u0633\u06cc\u0646\u062a \u0645\u0627\u0631\u062a\u0646","fr":"Saint-Martin","hr":"Sveti Martin","it":"Saint Martin","ja":"\u30b5\u30f3\u30fb\u30de\u30eb\u30bf\u30f3\uff08\u30d5\u30e9\u30f3\u30b9\u9818\uff09","nl":"Saint-Martin","pt":"Ilha S\u00e3o Martinho","pl":"Sint Maarten","cs":"Svat\u00fd Martin","ru":"Saint Martin (French part)","zh":"\u5723\u9a6c\u4e01","hu":"Saint-Martin","se":"Saint Martin"},"cioc":""},{"alpha2Code":"PM","alpha3Code":"SPM","altSpellings":["PM","Collectivit\u00e9 territoriale de Saint-Pierre-et-Miquelon"],"area":242,"borders":[],"callingCodes":["508"],"capital":"Saint-Pierre","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"French","flag":"https://restcountries.eu/data/spm.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[46.83333333,-56.33333333],"name":"Saint Pierre and Miquelon","nativeName":"Saint-Pierre-et-Miquelon","numericCode":"666","population":6069,"region":"Americas","regionalBlocs":[],"subregion":"Northern America","timezones":["UTC-03:00"],"topLevelDomain":[".pm"],"translations":{"br":"Saint-Pierre e Miquelon","de":"Saint-Pierre und Miquelon","es":"San Pedro y Miquel\u00f3n","fa":"\u0633\u0646 \u067e\u06cc\u0631 \u0648 \u0645\u06cc\u06a9\u0644\u0646","fr":"Saint-Pierre-et-Miquelon","hr":"Sveti Petar i Mikelon","it":"Saint-Pierre e Miquelon","ja":"\u30b5\u30f3\u30d4\u30a8\u30fc\u30eb\u5cf6\u30fb\u30df\u30af\u30ed\u30f3\u5cf6","nl":"Saint Pierre en Miquelon","pt":"S\u00e3o Pedro e Miquelon","pl":"Wsp\u00f3lnota Terytorialna Saint Pierre i Miquelon","cs":"Saint-Pierre a Miquelon","ru":"Saint Pierre and Miquelon","zh":"\u5723\u76ae\u57c3\u5c14\u548c\u5bc6\u514b\u9686","hu":"Saint-Pierre \u00e9s Miquelon","se":"Saint-Pierre och Miquelon"},"cioc":""},{"alpha2Code":"VC","alpha3Code":"VCT","altSpellings":["VC"],"area":389,"borders":[],"callingCodes":["1"],"capital":"Kingstown","currencies":[{"code":"XCD","name":"East Caribbean dollar","symbol":"$"}],"demonym":"Saint Vincentian","flag":"https://restcountries.eu/data/vct.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[13.25,-61.2],"name":"Saint Vincent and the Grenadines","nativeName":"Saint Vincent and the Grenadines","numericCode":"670","population":110947,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".vc"],"translations":{"br":"S\u00e3o Vicente e Granadinas","de":"Saint Vincent und die Grenadinen","es":"San Vicente y Granadinas","fa":"\u0633\u0646\u062a \u0648\u06cc\u0646\u0633\u0646\u062a \u0648 \u06af\u0631\u0646\u0627\u062f\u06cc\u0646\u200c\u0647\u0627","fr":"Saint-Vincent-et-les-Grenadines","hr":"Sveti Vincent i Grenadini","it":"Saint Vincent e Grenadine","ja":"\u30bb\u30f3\u30c8\u30d3\u30f3\u30bb\u30f3\u30c8\u304a\u3088\u3073\u30b0\u30ec\u30ca\u30c7\u30a3\u30fc\u30f3\u8af8\u5cf6","nl":"Saint Vincent en de Grenadines","pt":"S\u00e3o Vicente e Granadinas","ru":"\u0421\u0435\u043d\u0442-\u0412\u0438\u043d\u0441\u0435\u043d\u0442 \u0438 \u0413\u0440\u0435\u043d\u0430\u0434\u0438\u043d\u044b","pl":"Saint Vincent i Grenadyny","cs":"Svat\u00fd Vincenc a Grenadiny","zh":"\u5723\u6587\u68ee\u7279\u548c\u683c\u6797\u7eb3\u4e01\u65af","hu":"Saint Vincent \u00e9s a Grenadine-szigetek","se":"Saint Vincent och Grenadinerna"},"cioc":"VIN"},{"alpha2Code":"WS","alpha3Code":"WSM","altSpellings":["WS","Independent State of Samoa","Malo Sa\u02bboloto Tuto\u02bbatasi o S\u0101moa"],"area":2842,"borders":[],"callingCodes":["685"],"capital":"Apia","currencies":[{"code":"WST","name":"Samoan t\u0101l\u0101","symbol":"T"}],"demonym":"Samoan","flag":"https://restcountries.eu/data/wsm.svg","languages":[{"iso639_1":"sm","iso639_2":"smo","name":"Samoan","nativeName":"gagana fa'a Samoa"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-13.58333333,-172.33333333],"name":"Samoa","nativeName":"Samoa","numericCode":"882","population":198410,"region":"Oceania","regionalBlocs":[],"subregion":"Polynesia","timezones":["UTC+13:00"],"topLevelDomain":[".ws"],"translations":{"br":"Samoa","de":"Samoa","es":"Samoa","fa":"\u0633\u0627\u0645\u0648\u0622","fr":"Samoa","hr":"Samoa","it":"Samoa","ja":"\u30b5\u30e2\u30a2","nl":"Samoa","pt":"Samoa","ru":"\u0421\u0430\u043c\u043e\u0430","pl":"Samoa","cs":"Samoa","zh":"\u8428\u6469\u4e9a\u72ec\u7acb\u56fd","hu":"Szamoa","se":"Samoa"},"cioc":"SAM"},{"alpha2Code":"SM","alpha3Code":"SMR","altSpellings":["SM","Republic of San Marino","Repubblica di San Marino"],"area":61,"borders":["ITA"],"callingCodes":["378"],"capital":"City of San Marino","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Sammarinese","flag":"https://restcountries.eu/data/smr.svg","languages":[{"iso639_1":"it","iso639_2":"ita","name":"Italian","nativeName":"Italiano"}],"latlng":[43.76666666,12.41666666],"name":"San Marino","nativeName":"San Marino","numericCode":"674","population":33938,"region":"Europe","regionalBlocs":[],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".sm"],"translations":{"br":"San Marino","de":"San Marino","es":"San Marino","fa":"\u0633\u0627\u0646 \u0645\u0627\u0631\u06cc\u0646\u0648","fr":"Saint-Marin","hr":"San Marino","it":"San Marino","ja":"\u30b5\u30f3\u30de\u30ea\u30ce","nl":"San Marino","pt":"S\u00e3o Marinho","ru":"\u0421\u0430\u043d-\u041c\u0430\u0440\u0438\u043d\u043e","pl":"San Marino","cs":"San Marino","zh":"\u5723\u9a6c\u529b\u8bfa\u5171\u548c\u56fd","hu":"San Marino","se":"San Marino"},"cioc":"SMR"},{"alpha2Code":"ST","alpha3Code":"STP","altSpellings":["ST","Democratic Republic of S\u00e3o Tom\u00e9 and Pr\u00edncipe","Rep\u00fablica Democr\u00e1tica de S\u00e3o Tom\u00e9 e Pr\u00edncipe"],"area":964,"borders":[],"callingCodes":["239"],"capital":"S\u00e3o Tom\u00e9","currencies":[{"code":"STD","name":"S\u00e3o Tom\u00e9 and Pr\u00edncipe dobra","symbol":"Db"}],"demonym":"Sao Tomean","flag":"https://restcountries.eu/data/stp.svg","gini":50.8,"languages":[{"iso639_1":"pt","iso639_2":"por","name":"Portuguese","nativeName":"Portugu\u00eas"}],"latlng":[1,7],"name":"Sao Tome and Principe","nativeName":"S\u00e3o Tom\u00e9 e Pr\u00edncipe","numericCode":"678","population":219161,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Middle Africa","timezones":["UTC"],"topLevelDomain":[".st"],"translations":{"br":"S\u00e3o Tom\u00e9 e Pr\u00edncipe","de":"S\u00e3o Tom\u00e9 und Pr\u00edncipe","es":"Santo Tom\u00e9 y Pr\u00edncipe","fa":"\u06a9\u0648\u0627\u062a\u0631\u0648 \u062f\u0648 \u0641\u0631\u0648\u06cc\u0631\u0648","fr":"Sao Tom\u00e9-et-Principe","hr":"Sveti Toma i Princip","it":"S\u00e3o Tom\u00e9 e Pr\u00edncipe","ja":"\u30b5\u30f3\u30c8\u30e1\u30fb\u30d7\u30ea\u30f3\u30b7\u30da","nl":"Sao Tom\u00e9 en Principe","pt":"S\u00e3o Tom\u00e9 e Pr\u00edncipe","ru":"\u0421\u0430\u043d-\u0422\u043e\u043c\u0435 \u0438 \u041f\u0440\u0438\u043d\u0441\u0438\u043f\u0438","pl":"Wyspy \u015awi\u0119tego Tomasza i Ksi\u0105\u017c\u0119ca","cs":"Svat\u00fd Tom\u00e1\u0161 a Princ\u016fv ostrov","zh":"\u5723\u591a\u7f8e\u548c\u666e\u6797\u897f\u6bd4\u6c11\u4e3b\u5171\u548c\u56fd","hu":"S\u00e3o Tom\u00e9 \u00e9s Pr\u00edncipe","se":"S\u00e3o Tom\u00e9 och Pr\u00edncipe"},"cioc":"STP"},{"alpha2Code":"SA","alpha3Code":"SAU","altSpellings":["SA","Kingdom of Saudi Arabia","Al-Mamlakah al-\u2018Arabiyyah as-Su\u2018\u016bdiyyah"],"area":2149690,"borders":["IRQ","JOR","KWT","OMN","QAT","ARE","YEM"],"callingCodes":["966"],"capital":"Riyadh","currencies":[{"code":"SAR","name":"Saudi riyal","symbol":"\u0631.\u0633"}],"demonym":"Saudi Arabian","flag":"https://restcountries.eu/data/sau.svg","gini":null,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[25,45],"name":"Saudi Arabia","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","numericCode":"682","population":34813867,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+03:00"],"topLevelDomain":[".sa"],"translations":{"br":"Ar\u00e1bia Saudita","de":"Saudi-Arabien","es":"Arabia Saud\u00ed","fa":"\u0639\u0631\u0628\u0633\u062a\u0627\u0646 \u0633\u0639\u0648\u062f\u06cc","fr":"Arabie Saoudite","hr":"Saudijska Arabija","it":"Arabia Saudita","ja":"\u30b5\u30a6\u30b8\u30a2\u30e9\u30d3\u30a2","nl":"Saoedi-Arabi\u00eb","pt":"Ar\u00e1bia Saudita","ru":"\u0421\u0430\u0443\u0434\u043e\u0432\u0441\u043a\u0430\u044f \u0410\u0440\u0430\u0432\u0438\u044f","pl":"Arabia Saudyjska","cs":"Sa\u00fadsk\u00e1 Ar\u00e1bie","zh":"\u6c99\u7279\u963f\u62c9\u4f2f\u738b\u56fd","hu":"Sza\u00fad-Ar\u00e1bia","se":"Saudiarabien"},"cioc":"KSA"},{"alpha2Code":"SN","alpha3Code":"SEN","altSpellings":["SN","Republic of Senegal","R\u00e9publique du S\u00e9n\u00e9gal"],"area":196722,"borders":["GMB","GIN","GNB","MLI","MRT"],"callingCodes":["221"],"capital":"Dakar","currencies":[{"code":"XOF","name":"West African CFA franc","symbol":"Fr"}],"demonym":"Senegalese","flag":"https://restcountries.eu/data/sen.svg","gini":39.2,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[14,-14],"name":"Senegal","nativeName":"S\u00e9n\u00e9gal","numericCode":"686","population":16743930,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".sn"],"translations":{"br":"Senegal","de":"Senegal","es":"Senegal","fa":"\u0633\u0646\u06af\u0627\u0644","fr":"S\u00e9n\u00e9gal","hr":"Senegal","it":"Senegal","ja":"\u30bb\u30cd\u30ac\u30eb","nl":"Senegal","pt":"Senegal","ru":"\u0421\u0435\u043d\u0435\u0433\u0430\u043b","pl":"Senegal","cs":"Senegal","zh":"\u585e\u5185\u52a0\u5c14\u5171\u548c\u56fd","hu":"Szeneg\u00e1l","se":"Senegal"},"cioc":"SEN"},{"alpha2Code":"RS","alpha3Code":"SRB","altSpellings":["RS","Srbija","Republic of Serbia","\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0440\u0431\u0438\u0458\u0430","Republika Srbija"],"area":88361,"borders":["BIH","BGR","HRV","HUN","UNK","MKD","MNE","ROU"],"callingCodes":["381"],"capital":"Belgrade","currencies":[{"code":"RSD","name":"Serbian dinar","symbol":"\u0434\u0438\u043d."}],"demonym":"Serbian","flag":"https://restcountries.eu/data/srb.svg","gini":27.8,"languages":[{"iso639_1":"sr","iso639_2":"srp","name":"Serbian","nativeName":"\u0441\u0440\u043f\u0441\u043a\u0438 \u0458\u0435\u0437\u0438\u043a"}],"latlng":[44,21],"name":"Serbia","nativeName":"\u0421\u0440\u0431\u0438\u0458\u0430","numericCode":"688","population":6908224,"region":"Europe","regionalBlocs":[{"acronym":"CEFTA","name":"Central European Free Trade Agreement"}],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".rs"],"translations":{"br":"S\u00e9rvia","de":"Serbien","es":"Serbia","fa":"\u0635\u0631\u0628\u0633\u062a\u0627\u0646","fr":"Serbie","hr":"Srbija","it":"Serbia","ja":"\u30bb\u30eb\u30d3\u30a2","nl":"Servi\u00eb","pt":"S\u00e9rvia","ru":"\u0421\u0435\u0440\u0431\u0438\u044f","pl":"Serbia","cs":"Srbsko","zh":"\u585e\u5c14\u7ef4\u4e9a\u5171\u548c\u56fd","hu":"Szerbia","se":"Serbien"},"cioc":"SRB"},{"alpha2Code":"SC","alpha3Code":"SYC","altSpellings":["SC","Republic of Seychelles","Repiblik Sesel","R\u00e9publique des Seychelles"],"area":452,"borders":[],"callingCodes":["248"],"capital":"Victoria","currencies":[{"code":"SCR","name":"Seychellois rupee","symbol":"\u20a8"}],"demonym":"Seychellois","flag":"https://restcountries.eu/data/syc.svg","gini":65.8,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-4.58333333,55.66666666],"name":"Seychelles","nativeName":"Seychelles","numericCode":"690","population":98462,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+04:00"],"topLevelDomain":[".sc"],"translations":{"br":"Seicheles","de":"Seychellen","es":"Seychelles","fa":"\u0633\u06cc\u0634\u0644","fr":"Seychelles","hr":"Sej\u0161eli","it":"Seychelles","ja":"\u30bb\u30fc\u30b7\u30a7\u30eb","nl":"Seychellen","pt":"Seicheles","ru":"\u0421\u0435\u0439\u0448\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u041e\u0441\u0442\u0440\u043e\u0432\u0430","pl":"Seszele","cs":"Seychely","zh":"\u585e\u820c\u5c14\u5171\u548c\u56fd","hu":"Seychelle-szigetek","se":"Seychellerna"},"cioc":"SEY"},{"alpha2Code":"SL","alpha3Code":"SLE","altSpellings":["SL","Republic of Sierra Leone"],"area":71740,"borders":["GIN","LBR"],"callingCodes":["232"],"capital":"Freetown","currencies":[{"code":"SLL","name":"Sierra Leonean leone","symbol":"Le"}],"demonym":"Sierra Leonean","flag":"https://restcountries.eu/data/sle.svg","gini":42.5,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[8.5,-11.5],"name":"Sierra Leone","nativeName":"Sierra Leone","numericCode":"694","population":7976985,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".sl"],"translations":{"br":"Serra Leoa","de":"Sierra Leone","es":"Sierra Leone","fa":"\u0633\u06cc\u0631\u0627\u0644\u0626\u0648\u0646","fr":"Sierra Leone","hr":"Sijera Leone","it":"Sierra Leone","ja":"\u30b7\u30a8\u30e9\u30ec\u30aa\u30cd","nl":"Sierra Leone","pt":"Serra Leoa","ru":"\u0421\u044c\u0435\u0440\u0440\u0430-\u041b\u0435\u043e\u043d\u0435","pl":"Sierra Leone","cs":"Sierra Leone","zh":"\u585e\u62c9\u5229\u6602\u5171\u548c\u56fd","hu":"Sierra Leone","se":"Sierra Leone"},"cioc":"SLE"},{"alpha2Code":"SG","alpha3Code":"SGP","altSpellings":["SG","Singapura","Republik Singapura","\u65b0\u52a0\u5761\u5171\u548c\u56fd"],"area":710,"borders":[],"callingCodes":["65"],"capital":"Singapore","currencies":[{"code":"BND","name":"Brunei dollar","symbol":"$"},{"code":"SGD","name":"Singapore dollar","symbol":"$"}],"demonym":"Singaporean","flag":"https://restcountries.eu/data/sgp.svg","gini":48.1,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"ms","iso639_2":"msa","name":"Malay","nativeName":"bahasa Melayu"},{"iso639_1":"ta","iso639_2":"tam","name":"Tamil","nativeName":"\u0ba4\u0bae\u0bbf\u0bb4\u0bcd"},{"iso639_1":"zh","iso639_2":"zho","name":"Chinese","nativeName":"\u4e2d\u6587 (Zh\u014dngw\u00e9n)"}],"latlng":[1.36666666,103.8],"name":"Singapore","nativeName":"Singapore","numericCode":"702","population":5685807,"region":"Asia","regionalBlocs":[{"acronym":"ASEAN","name":"Association of Southeast Asian Nations"}],"subregion":"South-Eastern Asia","timezones":["UTC+08:00"],"topLevelDomain":[".sg"],"translations":{"br":"Singapura","de":"Singapur","es":"Singapur","fa":"\u0633\u0646\u06af\u0627\u067e\u0648\u0631","fr":"Singapour","hr":"Singapur","it":"Singapore","ja":"\u30b7\u30f3\u30ac\u30dd\u30fc\u30eb","nl":"Singapore","pt":"Singapura","ru":"\u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440","pl":"Singapur","cs":"Singapur","zh":"\u65b0\u52a0\u5761","hu":"Szingap\u00far","se":"Singapore"},"cioc":"SIN"},{"alpha2Code":"SX","alpha3Code":"SXM","altSpellings":["SX"],"area":34,"borders":["MAF"],"callingCodes":["1"],"capital":"Philipsburg","currencies":[{"code":"ANG","name":"Netherlands Antillean guilder","symbol":"\u0192"}],"demonym":"Dutch","flag":"https://restcountries.eu/data/sxm.svg","languages":[{"iso639_1":"nl","iso639_2":"nld","name":"Dutch","nativeName":"Nederlands"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[18.033333,-63.05],"name":"Sint Maarten (Dutch part)","nativeName":"Sint Maarten","numericCode":"534","population":40812,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".sx"],"translations":{"br":"Sint Maarten","de":"Sint Maarten (niederl. Teil)","fa":"\u0633\u06cc\u0646\u062a \u0645\u0627\u0631\u062a\u0646","fr":"Saint Martin (partie n\u00e9erlandaise)","it":"Saint Martin (parte olandese)","nl":"Sint Maarten","pt":"S\u00e3o Martinho","pl":"Sint Maarten","cs":"Svat\u00fd Martin","es":"Sint Maarten (Dutch part)","hr":"Sint Maarten (Dutch part)","ja":"Sint Maarten (Dutch part)","ru":"Sint Maarten (Dutch part)","zh":"\u5723\u9a6c\u4e01\u5c9b","hu":"Sint Maarten","se":"Saint Martin"},"cioc":""},{"alpha2Code":"SK","alpha3Code":"SVK","altSpellings":["SK","Slovak Republic","Slovensk\u00e1 republika"],"area":49037,"borders":["AUT","CZE","HUN","POL","UKR"],"callingCodes":["421"],"capital":"Bratislava","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Slovak","flag":"https://restcountries.eu/data/svk.svg","gini":26,"languages":[{"iso639_1":"sk","iso639_2":"slk","name":"Slovak","nativeName":"sloven\u010dina"}],"latlng":[48.66666666,19.5],"name":"Slovakia","nativeName":"Slovensko","numericCode":"703","population":5458827,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Eastern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".sk"],"translations":{"br":"Eslov\u00e1quia","de":"Slowakei","es":"Rep\u00fablica Eslovaca","fa":"\u0627\u0633\u0644\u0648\u0627\u06a9\u06cc","fr":"Slovaquie","hr":"Slova\u010dka","it":"Slovacchia","ja":"\u30b9\u30ed\u30d0\u30ad\u30a2","nl":"Slowakije","pt":"Eslov\u00e1quia","ru":"\u0421\u043b\u043e\u0432\u0430\u043a\u0438\u044f","pl":"S\u0142owacja","cs":"Slovensko","zh":"\u65af\u6d1b\u4f10\u514b\u5171\u548c\u56fd","hu":"Szlov\u00e1kia","se":"Slovakien"},"cioc":"SVK"},{"alpha2Code":"SI","alpha3Code":"SVN","altSpellings":["SI","Republic of Slovenia","Republika Slovenija"],"area":20273,"borders":["AUT","HRV","ITA","HUN"],"callingCodes":["386"],"capital":"Ljubljana","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Slovene","flag":"https://restcountries.eu/data/svn.svg","gini":31.2,"languages":[{"iso639_1":"sl","iso639_2":"slv","name":"Slovene","nativeName":"slovenski jezik"}],"latlng":[46.11666666,14.81666666],"name":"Slovenia","nativeName":"Slovenija","numericCode":"705","population":2100126,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Southern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".si"],"translations":{"br":"Eslov\u00eania","de":"Slowenien","es":"Eslovenia","fa":"\u0627\u0633\u0644\u0648\u0648\u0646\u06cc","fr":"Slov\u00e9nie","hr":"Slovenija","it":"Slovenia","ja":"\u30b9\u30ed\u30d9\u30cb\u30a2","nl":"Sloveni\u00eb","pt":"Eslov\u00e9nia","ru":"\u0421\u043b\u043e\u0432\u0435\u043d\u0438\u044f","pl":"S\u0142owenia","cs":"Slovinsko","zh":"\u65af\u6d1b\u6587\u5c3c\u4e9a\u5171\u548c\u56fd","hu":"Szlov\u00e9nia","se":"Slovenien"},"cioc":"SLO"},{"alpha2Code":"SB","alpha3Code":"SLB","altSpellings":["SB"],"area":28896,"borders":[],"callingCodes":["677"],"capital":"Honiara","currencies":[{"code":"SBD","name":"Solomon Islands dollar","symbol":"$"}],"demonym":"Solomon Islander","flag":"https://restcountries.eu/data/slb.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-8,159],"name":"Solomon Islands","nativeName":"Solomon Islands","numericCode":"090","population":686878,"region":"Oceania","regionalBlocs":[],"subregion":"Melanesia","timezones":["UTC+11:00"],"topLevelDomain":[".sb"],"translations":{"br":"Ilhas Salom\u00e3o","de":"Salomonen","es":"Islas Salom\u00f3n","fa":"\u062c\u0632\u0627\u06cc\u0631 \u0633\u0644\u06cc\u0645\u0627\u0646","fr":"\u00celes Salomon","hr":"Solomonski Otoci","it":"Isole Salomone","ja":"\u30bd\u30ed\u30e2\u30f3\u8af8\u5cf6","nl":"Salomonseilanden","pt":"Ilhas Salom\u00e3o","ru":"\u0421\u043e\u043b\u043e\u043c\u043e\u043d\u043e\u0432\u044b \u041e\u0441\u0442\u0440\u043e\u0432\u0430","pl":"Wyspy Salomona","cs":"\u0160alamounovy ostrovy","zh":"\u6240\u7f57\u95e8\u7fa4\u5c9b","hu":"Salamon-szigetek","se":"Salomon\u00f6arna"},"cioc":"SOL"},{"alpha2Code":"SO","alpha3Code":"SOM","altSpellings":["SO","a\u1e63-\u1e62\u016bm\u0101l","Federal Republic of Somalia","Jamhuuriyadda Federaalka Soomaaliya","Jumh\u016briyyat a\u1e63-\u1e62\u016bm\u0101l al-Fider\u0101liyya"],"area":637657,"borders":["DJI","ETH","KEN"],"callingCodes":["252"],"capital":"Mogadishu","currencies":[{"code":"SOS","name":"Somali shilling","symbol":"Sh"}],"demonym":"Somali","flag":"https://restcountries.eu/data/som.svg","gini":null,"languages":[{"iso639_1":"so","iso639_2":"som","name":"Somali","nativeName":"Soomaaliga"},{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[10,49],"name":"Somalia","nativeName":"Soomaaliya","numericCode":"706","population":15893219,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]},{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Eastern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".so"],"translations":{"br":"Som\u00e1lia","de":"Somalia","es":"Somalia","fa":"\u0633\u0648\u0645\u0627\u0644\u06cc","fr":"Somalie","hr":"Somalija","it":"Somalia","ja":"\u30bd\u30de\u30ea\u30a2","nl":"Somali\u00eb","pt":"Som\u00e1lia","ru":"\u0421\u043e\u043c\u0430\u043b\u0438","pl":"Somalia","cs":"Som\u00e1lsko","zh":"\u7d22\u9a6c\u91cc\u5171\u548c\u56fd","hu":"Szom\u00e1lia","se":"Somalia"},"cioc":"SOM"},{"alpha2Code":"ZA","alpha3Code":"ZAF","altSpellings":["ZA","RSA","Suid-Afrika","Republic of South Africa"],"area":1221037,"borders":["BWA","LSO","MOZ","NAM","SWZ","ZWE"],"callingCodes":["27"],"capital":"Pretoria","currencies":[{"code":"ZAR","name":"South African rand","symbol":"R"}],"demonym":"South African","flag":"https://restcountries.eu/data/zaf.svg","gini":63.1,"languages":[{"iso639_1":"af","iso639_2":"afr","name":"Afrikaans","nativeName":"Afrikaans"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"nr","iso639_2":"nbl","name":"Southern Ndebele","nativeName":"isiNdebele"},{"iso639_1":"st","iso639_2":"sot","name":"Southern Sotho","nativeName":"Sesotho"},{"iso639_1":"ss","iso639_2":"ssw","name":"Swati","nativeName":"SiSwati"},{"iso639_1":"tn","iso639_2":"tsn","name":"Tswana","nativeName":"Setswana"},{"iso639_1":"ts","iso639_2":"tso","name":"Tsonga","nativeName":"Xitsonga"},{"iso639_1":"ve","iso639_2":"ven","name":"Venda","nativeName":"Tshiven\u1e13a"},{"iso639_1":"xh","iso639_2":"xho","name":"Xhosa","nativeName":"isiXhosa"},{"iso639_1":"zu","iso639_2":"zul","name":"Zulu","nativeName":"isiZulu"}],"latlng":[-29,24],"name":"South Africa","nativeName":"South Africa","numericCode":"710","population":59308690,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Southern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".za"],"translations":{"br":"Rep\u00fablica Sul-Africana","de":"Republik S\u00fcdafrika","es":"Rep\u00fablica de Sud\u00e1frica","fa":"\u0622\u0641\u0631\u06cc\u0642\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc","fr":"Afrique du Sud","hr":"Ju\u017enoafri\u010dka Republika","it":"Sud Africa","ja":"\u5357\u30a2\u30d5\u30ea\u30ab","nl":"Zuid-Afrika","pt":"Rep\u00fablica Sul-Africana","ru":"\u042e\u0410\u0420","pl":"Republika Po\u0142udniowej Afryki","cs":"Jihoafrick\u00e1 republika","zh":"\u5357\u975e\u5171\u548c\u56fd","hu":"D\u00e9l-afrikai K\u00f6zt\u00e1rsas\u00e1g","se":"Sydafrika"},"cioc":"RSA"},{"alpha2Code":"GS","alpha3Code":"SGS","altSpellings":["GS","South Georgia and the South Sandwich Islands"],"borders":[],"callingCodes":["500"],"capital":"King Edward Point","currencies":[{"code":"GBP","name":"British pound","symbol":"\u00a3"},{"code":"(none)","name":null,"symbol":"\u00a3"}],"demonym":"South Georgia and the South Sandwich Islander","flag":"https://restcountries.eu/data/sgs.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-54.5,-37],"name":"South Georgia and the South Sandwich Islands","nativeName":"South Georgia","numericCode":"239","population":30,"region":"Americas","regionalBlocs":[{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-02:00"],"topLevelDomain":[".gs"],"translations":{"br":"Ilhas Ge\u00f3rgias do Sul e Sandwich do Sul","de":"S\u00fcdgeorgien und die S\u00fcdlichen Sandwichinseln","es":"Islas Georgias del Sur y Sandwich del Sur","fa":"\u062c\u0632\u0627\u06cc\u0631 \u062c\u0648\u0631\u062c\u06cc\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc \u0648 \u0633\u0627\u0646\u062f\u0648\u06cc\u0686 \u062c\u0646\u0648\u0628\u06cc","fr":"G\u00e9orgie du Sud-et-les \u00celes Sandwich du Sud","hr":"Ju\u017ena Georgija i oto\u010dje Ju\u017eni Sandwich","it":"Georgia del Sud e Isole Sandwich Meridionali","ja":"\u30b5\u30a6\u30b9\u30b8\u30e7\u30fc\u30b8\u30a2\u30fb\u30b5\u30a6\u30b9\u30b5\u30f3\u30c9\u30a6\u30a3\u30c3\u30c1\u8af8\u5cf6","nl":"Zuid-Georgia en Zuidelijke Sandwicheilanden","pt":"Ilhas Ge\u00f3rgia do Sul e Sandu\u00edche do Sul","pl":"Georgia Po\u0142udniowa i Sandwich Po\u0142udniowy","cs":"Ji\u017en\u00ed Georgie a Ji\u017en\u00ed Sandwichovy ostrovy","ru":"South Georgia and the South Sandwich Islands","zh":"\u5357\u4e54\u6cbb\u4e9a\u5c9b\u548c\u5357\u6851\u5a01\u5947\u7fa4\u5c9b","hu":"D\u00e9li-Georgia \u00e9s D\u00e9li-Sandwich-szigetek","se":"Sydgeorgien och Sydsandwich\u00f6arna"},"cioc":""},{"alpha2Code":"KR","alpha3Code":"KOR","altSpellings":["KR","Republic of Korea","South Korea"],"area":100210,"borders":["PRK"],"callingCodes":["82"],"capital":"Seoul","currencies":[{"code":"KRW","name":"South Korean won","symbol":"\u20a9"}],"demonym":"South Korean","flag":"https://restcountries.eu/data/kor.svg","gini":31.3,"languages":[{"iso639_1":"ko","iso639_2":"kor","name":"Korean","nativeName":"\ud55c\uad6d\uc5b4"}],"latlng":[37,127.5],"name":"Korea (Republic of)","nativeName":"\ub300\ud55c\ubbfc\uad6d","numericCode":"410","population":51780579,"region":"Asia","regionalBlocs":[],"subregion":"Eastern Asia","timezones":["UTC+09:00"],"topLevelDomain":[".kr"],"translations":{"br":"Coreia do Sul","de":"S\u00fcdkorea","es":"Corea del Sur","fa":"\u06a9\u0631\u0647 \u0634\u0645\u0627\u0644\u06cc","fr":"Cor\u00e9e du Sud","hr":"Ju\u017ena Koreja","it":"Corea del Sud","ja":"\u5927\u97d3\u6c11\u56fd","nl":"Zuid-Korea","pt":"Coreia do Sul","ru":"\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0440\u0435\u044f","pl":"Korea Po\u0142udniowa","cs":"Ji\u017en\u00ed Korea","zh":"\u5927\u97e9\u6c11\u56fd","hu":"D\u00e9l-Korea","se":"Sydkorea"},"cioc":"KOR"},{"alpha2Code":"SS","alpha3Code":"SSD","altSpellings":["SS"],"area":619745,"borders":["CAF","COD","ETH","KEN","SDN","UGA"],"callingCodes":["211"],"capital":"Juba","currencies":[{"code":"SSP","name":"South Sudanese pound","symbol":"\u00a3"}],"demonym":"South Sudanese","flag":"https://restcountries.eu/data/ssd.svg","gini":45.5,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[7,30],"name":"South Sudan","nativeName":"South Sudan","numericCode":"728","population":11193729,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Middle Africa","timezones":["UTC+03:00"],"topLevelDomain":[".ss"],"translations":{"br":"Sud\u00e3o do Sul","de":"S\u00fcdsudan","es":"Sud\u00e1n del Sur","fa":"\u0633\u0648\u062f\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc","fr":"Soudan du Sud","hr":"Ju\u017eni Sudan","it":"Sudan del sud","ja":"\u5357\u30b9\u30fc\u30c0\u30f3","nl":"Zuid-Soedan","pt":"Sud\u00e3o do Sul","ru":"\u042e\u0436\u043d\u044b\u0439 \u0421\u0443\u0434\u0430\u043d","pl":"Sudan Po\u0142udniowy","cs":"Ji\u017en\u00ed S\u00fad\u00e1n","zh":"\u5357\u82cf\u4e39\u5171\u548c\u56fd","hu":"D\u00e9l-Szud\u00e1n","se":"Sydsudan"},"cioc":""},{"alpha2Code":"ES","alpha3Code":"ESP","altSpellings":["ES","Kingdom of Spain","Reino de Espa\u00f1a"],"area":505992,"borders":["AND","FRA","GIB","PRT","MAR"],"callingCodes":["34"],"capital":"Madrid","currencies":[{"code":"EUR","name":"Euro","symbol":"\u20ac"}],"demonym":"Spanish","flag":"https://restcountries.eu/data/esp.svg","gini":34.7,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[40,-4],"name":"Spain","nativeName":"Espa\u00f1a","numericCode":"724","population":47351567,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Southern Europe","timezones":["UTC","UTC+01:00"],"topLevelDomain":[".es"],"translations":{"br":"Espanha","de":"Spanien","es":"Espa\u00f1a","fa":"\u0627\u0633\u067e\u0627\u0646\u06cc\u0627","fr":"Espagne","hr":"\u0160panjolska","it":"Spagna","ja":"\u30b9\u30da\u30a4\u30f3","nl":"Spanje","pt":"Espanha","ru":"\u0418\u0441\u043f\u0430\u043d\u0438\u044f","pl":"Hiszpania","cs":"\u0160pan\u011blsko","zh":"\u897f\u73ed\u7259\u738b\u56fd","hu":"Spanyolorsz\u00e1g","se":"Spanien"},"cioc":"ESP"},{"alpha2Code":"LK","alpha3Code":"LKA","altSpellings":["LK","ila\u1e45kai","Democratic Socialist Republic of Sri Lanka"],"area":65610,"borders":["IND"],"callingCodes":["94"],"capital":"Sri Jayawardenepura Kotte","currencies":[{"code":"LKR","name":"Sri Lankan rupee","symbol":"Rs"}],"demonym":"Sri Lankan","flag":"https://restcountries.eu/data/lka.svg","gini":40.3,"languages":[{"iso639_1":"si","iso639_2":"sin","name":"Sinhalese","nativeName":"\u0dc3\u0dd2\u0d82\u0dc4\u0dbd"},{"iso639_1":"ta","iso639_2":"tam","name":"Tamil","nativeName":"\u0ba4\u0bae\u0bbf\u0bb4\u0bcd"}],"latlng":[7,81],"name":"Sri Lanka","nativeName":"\u015br\u012b la\u1e43k\u0101va","numericCode":"144","population":21919000,"region":"Asia","regionalBlocs":[{"acronym":"SAARC","name":"South Asian Association for Regional Cooperation"}],"subregion":"Southern Asia","timezones":["UTC+05:30"],"topLevelDomain":[".lk"],"translations":{"br":"Sri Lanka","de":"Sri Lanka","es":"Sri Lanka","fa":"\u0633\u0631\u06cc\u200c\u0644\u0627\u0646\u06a9\u0627","fr":"Sri Lanka","hr":"\u0160ri Lanka","it":"Sri Lanka","ja":"\u30b9\u30ea\u30e9\u30f3\u30ab","nl":"Sri Lanka","pt":"Sri Lanka","ru":"\u0428\u0440\u0438-\u041b\u0430\u043d\u043a\u0430","pl":"Sri Lanka","cs":"Sr\u00ed Lanka","zh":"\u65af\u91cc\u5170\u5361\u6c11\u4e3b\u793e\u4f1a\u4e3b\u4e49\u5171\u548c\u56fd","hu":"Sr\u00ed Lanka","se":"Sri Lanka"},"cioc":"SRI"},{"alpha2Code":"SD","alpha3Code":"SDN","altSpellings":["SD","Republic of the Sudan","Jumh\u016br\u012byat as-S\u016bd\u0101n"],"area":1886068,"borders":["CAF","TCD","EGY","ERI","ETH","LBY","SSD"],"callingCodes":["249"],"capital":"Khartoum","currencies":[{"code":"SDG","name":"Sudanese pound","symbol":"\u062c.\u0633."}],"demonym":"Sudanese","flag":"https://restcountries.eu/data/sdn.svg","gini":35.3,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[15,30],"name":"Sudan","nativeName":"\u0627\u0644\u0633\u0648\u062f\u0627\u0646","numericCode":"729","population":43849269,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]},{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Northern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".sd"],"translations":{"br":"Sud\u00e3o","de":"Sudan","es":"Sud\u00e1n","fa":"\u0633\u0648\u062f\u0627\u0646","fr":"Soudan","hr":"Sudan","it":"Sudan","ja":"\u30b9\u30fc\u30c0\u30f3","nl":"Soedan","pt":"Sud\u00e3o","ru":"\u0421\u0443\u0434\u0430\u043d","pl":"Sudan","cs":"S\u00fad\u00e1n","zh":"\u82cf\u4e39\u5171\u548c\u56fd","hu":"Szud\u00e1n","se":"Sudan"},"cioc":"SUD"},{"alpha2Code":"SR","alpha3Code":"SUR","altSpellings":["SR","Sarnam","Sranangron","Republic of Suriname","Republiek Suriname"],"area":163820,"borders":["BRA","GUF","FRA","GUY"],"callingCodes":["597"],"capital":"Paramaribo","currencies":[{"code":"SRD","name":"Surinamese dollar","symbol":"$"}],"demonym":"Surinamer","flag":"https://restcountries.eu/data/sur.svg","gini":52.9,"languages":[{"iso639_1":"nl","iso639_2":"nld","name":"Dutch","nativeName":"Nederlands"}],"latlng":[4,-56],"name":"Suriname","nativeName":"Suriname","numericCode":"740","population":586634,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]},{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-03:00"],"topLevelDomain":[".sr"],"translations":{"br":"Suriname","de":"Suriname","es":"Surinam","fa":"\u0633\u0648\u0631\u06cc\u0646\u0627\u0645","fr":"Surinam","hr":"Surinam","it":"Suriname","ja":"\u30b9\u30ea\u30ca\u30e0","nl":"Suriname","pt":"Suriname","ru":"\u0421\u0443\u0440\u0438\u043d\u0430\u043c","pl":"Surinam","cs":"Surinam","zh":"\u82cf\u91cc\u5357\u5171\u548c\u56fd","hu":"Suriname","se":"Surinam"},"cioc":"SUR"},{"alpha2Code":"SJ","alpha3Code":"SJM","altSpellings":["SJ","Svalbard and Jan Mayen Islands"],"borders":[],"callingCodes":["47"],"capital":"Longyearbyen","currencies":[{"code":"NOK","name":"Norwegian krone","symbol":"kr"}],"demonym":"Norwegian","flag":"https://restcountries.eu/data/sjm.svg","languages":[{"iso639_1":"no","iso639_2":"nor","name":"Norwegian","nativeName":"Norsk"}],"latlng":[78,20],"name":"Svalbard and Jan Mayen","nativeName":"Svalbard og Jan Mayen","numericCode":"744","population":2562,"region":"Europe","regionalBlocs":[],"subregion":"Northern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".sj"],"translations":{"br":"Svalbard","de":"Svalbard und Jan Mayen","es":"Islas Svalbard y Jan Mayen","fa":"\u0633\u0648\u0627\u0644\u0628\u0627\u0631\u062f \u0648 \u06cc\u0627\u0646 \u0645\u0627\u06cc\u0646","fr":"Svalbard et Jan Mayen","hr":"Svalbard i Jan Mayen","it":"Svalbard e Jan Mayen","ja":"\u30b9\u30f4\u30a1\u30fc\u30eb\u30d0\u30eb\u8af8\u5cf6\u304a\u3088\u3073\u30e4\u30f3\u30de\u30a4\u30a8\u30f3\u5cf6","nl":"Svalbard en Jan Mayen","pt":"Svalbard","pl":"Svalbard","cs":"\u0160picberky a Jan Mayen","ru":"Svalbard and Jan Mayen","zh":"\u65af\u74e6\u5c14\u5df4\u7279","hu":"Spitzberg\u00e1k \u00e9s Jan Mayen-szigetek","se":"Svalbard\u00a0och\u00a0Jan Mayen"},"cioc":""},{"alpha2Code":"SZ","alpha3Code":"SWZ","altSpellings":["SZ","weSwatini","Swatini","Ngwane","Kingdom of Swaziland","Umbuso waseSwatini","Swaziland"],"area":17364,"borders":["MOZ","ZAF"],"callingCodes":["268"],"capital":"Mbabane","currencies":[{"code":"SZL","name":"Swazi lilangeni","symbol":"L"}],"demonym":"Swazi","flag":"https://restcountries.eu/data/swz.svg","gini":51.5,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"ss","iso639_2":"ssw","name":"Swati","nativeName":"SiSwati"}],"latlng":[-26.5,31.5],"name":"Eswatini","nativeName":"eSwatini","numericCode":"748","population":1160164,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Southern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".sz"],"translations":{"br":"Suazil\u00e2ndia","de":"Swasiland","es":"Suazilandia","fa":"\u0633\u0648\u0627\u0632\u06cc\u0644\u0646\u062f","fr":"Swaziland","hr":"Svazi","it":"Swaziland","ja":"\u30b9\u30ef\u30b8\u30e9\u30f3\u30c9","nl":"Swaziland","pt":"Suazil\u00e2ndia","ru":"\u042d\u0441\u0432\u0430\u0442\u0438\u043d\u0438","pl":"Suazi","cs":"Svazijsko","zh":"\u65af\u5a01\u58eb\u5170\u738b\u56fd","hu":"Szv\u00e1zif\u00f6ld","se":"Swaziland"},"cioc":"SWZ"},{"alpha2Code":"SE","alpha3Code":"SWE","altSpellings":["SE","Kingdom of Sweden","Konungariket Sverige"],"area":450295,"borders":["FIN","NOR"],"callingCodes":["46"],"capital":"Stockholm","currencies":[{"code":"SEK","name":"Swedish krona","symbol":"kr"}],"demonym":"Swedish","flag":"https://restcountries.eu/data/swe.svg","gini":25,"languages":[{"iso639_1":"sv","iso639_2":"swe","name":"Swedish","nativeName":"svenska"}],"latlng":[62,15],"name":"Sweden","nativeName":"Sverige","numericCode":"752","population":10353442,"region":"Europe","regionalBlocs":[{"acronym":"EU","name":"European Union"}],"subregion":"Northern Europe","timezones":["UTC+01:00"],"topLevelDomain":[".se"],"translations":{"br":"Su\u00e9cia","de":"Schweden","es":"Suecia","fa":"\u0633\u0648\u0626\u062f","fr":"Su\u00e8de","hr":"\u0160vedska","it":"Svezia","ja":"\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3","nl":"Zweden","pt":"Su\u00e9cia","ru":"\u0428\u0432\u0435\u0446\u0438\u044f","pl":"Szwecja","cs":"\u0160v\u00e9dsko","zh":"\u745e\u5178\u738b\u56fd","hu":"Sv\u00e9dorsz\u00e1g","se":"Sverige"},"cioc":"SWE"},{"alpha2Code":"CH","alpha3Code":"CHE","altSpellings":["CH","Swiss Confederation","Schweiz","Suisse","Svizzera","Svizra"],"area":41284,"borders":["AUT","FRA","ITA","LIE","DEU"],"callingCodes":["41"],"capital":"Bern","currencies":[{"code":"CHF","name":"Swiss franc","symbol":"Fr"}],"demonym":"Swiss","flag":"https://restcountries.eu/data/che.svg","gini":33.7,"languages":[{"iso639_1":"de","iso639_2":"deu","name":"German","nativeName":"Deutsch"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"},{"iso639_1":"it","iso639_2":"ita","name":"Italian","nativeName":"Italiano"},{"iso639-1":"rm","iso639_2":"roh","name":"Romansh","nativName":"Rumantsch"}],"latlng":[47,8],"name":"Switzerland","nativeName":"Schweiz","numericCode":"756","population":8636896,"region":"Europe","regionalBlocs":[{"acronym":"EFTA","name":"European Free Trade Association"}],"subregion":"Western Europe","timezones":["UTC+01:00"],"topLevelDomain":[".ch"],"translations":{"br":"Su\u00ed\u00e7a","de":"Schweiz","es":"Suiza","fa":"\u0633\u0648\u0626\u06cc\u0633","fr":"Suisse","hr":"\u0160vicarska","it":"Svizzera","ja":"\u30b9\u30a4\u30b9","nl":"Zwitserland","pt":"Su\u00ed\u00e7a","ru":"\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0438\u044f","pl":"Szwajcaria","cs":"\u0160v\u00fdcarsko","zh":"\u745e\u58eb\u8054\u90a6","hu":"Sv\u00e1jc","se":"Schweiz"},"cioc":"SUI"},{"alpha2Code":"SY","alpha3Code":"SYR","altSpellings":["SY","Syrian Arab Republic","Al-Jumh\u016br\u012byah Al-\u02bbArab\u012byah As-S\u016br\u012byah"],"area":185180,"borders":["IRQ","ISR","JOR","LBN","TUR"],"callingCodes":["963"],"capital":"Damascus","currencies":[{"code":"SYP","name":"Syrian pound","symbol":"\u00a3"}],"demonym":"Syrian","flag":"https://restcountries.eu/data/syr.svg","gini":35.8,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[35,38],"name":"Syrian Arab Republic","nativeName":"\u0633\u0648\u0631\u064a\u0627","numericCode":"760","population":17500657,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+02:00"],"topLevelDomain":[".sy"],"translations":{"br":"S\u00edria","de":"Syrien","es":"Siria","fa":"\u0633\u0648\u0631\u06cc\u0647","fr":"Syrie","hr":"Sirija","it":"Siria","ja":"\u30b7\u30ea\u30a2\u30fb\u30a2\u30e9\u30d6\u5171\u548c\u56fd","nl":"Syri\u00eb","pt":"S\u00edria","ru":"\u0421\u0438\u0440\u0438\u044f","pl":"Syria","cs":"S\u00fdrie","zh":"\u53d9\u5229\u4e9a\u963f\u62c9\u4f2f\u5171\u548c\u56fd","hu":"Sz\u00edria","se":"Syrien"},"cioc":"SYR"},{"alpha2Code":"TW","alpha3Code":"TWN","altSpellings":["TW","T\u00e1iw\u0101n","Republic of China","\u4e2d\u83ef\u6c11\u570b","Zh\u014dnghu\u00e1 M\u00edngu\u00f3"],"area":36193,"borders":["NPL"],"callingCodes":["886"],"capital":"Taipei","currencies":[{"code":"TWD","name":"New Taiwan dollar","symbol":"$"}],"demonym":"Taiwanese","flag":"https://restcountries.eu/data/twn.svg","gini":null,"languages":[{"iso639_1":"zh","iso639_2":"zho","name":"Chinese","nativeName":"\u4e2d\u6587 (Zh\u014dngw\u00e9n)"}],"latlng":[23.5,121],"name":"Taiwan","nativeName":"\u81fa\u7063","numericCode":"158","population":23503349,"region":"Asia","regionalBlocs":[],"subregion":"Eastern Asia","timezones":["UTC+08:00"],"topLevelDomain":[".tw"],"translations":{"br":"Taiwan","de":"Taiwan","es":"Taiw\u00e1n","fa":"\u062a\u0627\u06cc\u0648\u0627\u0646","fr":"Ta\u00efwan","hr":"Tajvan","it":"Taiwan","ja":"\u53f0\u6e7e\uff08\u4e2d\u83ef\u6c11\u56fd\uff09","nl":"Taiwan","pt":"Taiwan","pl":"Tajwan","cs":"Taiwan","ru":"Taiwan","zh":"\u53f0\u6e7e","hu":"Tajvan","se":"Taiwan"},"cioc":"TPE"},{"alpha2Code":"TJ","alpha3Code":"TJK","altSpellings":["TJ","To\u00e7ikiston","Republic of Tajikistan","\u04b6\u0443\u043c\u04b3\u0443\u0440\u0438\u0438 \u0422\u043e\u04b7\u0438\u043a\u0438\u0441\u0442\u043e\u043d","\u00c7umhuriyi To\u00e7ikiston"],"area":143100,"borders":["AFG","CHN","KGZ","UZB"],"callingCodes":["992"],"capital":"Dushanbe","currencies":[{"code":"TJS","name":"Tajikistani somoni","symbol":"\u0405\u041c"}],"demonym":"Tadzhik","flag":"https://restcountries.eu/data/tjk.svg","gini":30.8,"languages":[{"iso639_1":"tg","iso639_2":"tgk","name":"Tajik","nativeName":"\u0442\u043e\u04b7\u0438\u043a\u04e3"},{"iso639_1":"ru","iso639_2":"rus","name":"Russian","nativeName":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439"}],"latlng":[39,71],"name":"Tajikistan","nativeName":"\u0422\u043e\u04b7\u0438\u043a\u0438\u0441\u0442\u043e\u043d","numericCode":"762","population":9537642,"region":"Asia","regionalBlocs":[],"subregion":"Central Asia","timezones":["UTC+05:00"],"topLevelDomain":[".tj"],"translations":{"br":"Tajiquist\u00e3o","de":"Tadschikistan","es":"Tayikist\u00e1n","fa":"\u062a\u0627\u062c\u06cc\u06a9\u0633\u062a\u0627\u0646","fr":"Tadjikistan","hr":"Ta\u0111ikistan","it":"Tagikistan","ja":"\u30bf\u30b8\u30ad\u30b9\u30bf\u30f3","nl":"Tadzjikistan","pt":"Tajiquist\u00e3o","ru":"\u0422\u0430\u0434\u0436\u0438\u043a\u0438\u0441\u0442\u0430\u043d","pl":"Tad\u017cykistan","cs":"T\u00e1d\u017eikist\u00e1n","zh":"\u5854\u5409\u514b\u65af\u5766\u5171\u548c\u56fd","hu":"T\u00e1dzsikiszt\u00e1n","se":"Tadzjikistan"},"cioc":"TJK"},{"alpha2Code":"TZ","alpha3Code":"TZA","altSpellings":["TZ","United Republic of Tanzania","Jamhuri ya Muungano wa Tanzania"],"area":945087,"borders":["BDI","COD","KEN","MWI","MOZ","RWA","UGA","ZMB"],"callingCodes":["255"],"capital":"Dodoma","currencies":[{"code":"TZS","name":"Tanzanian shilling","symbol":"Sh"}],"demonym":"Tanzanian","flag":"https://restcountries.eu/data/tza.svg","gini":37.6,"languages":[{"iso639_1":"sw","iso639_2":"swa","name":"Swahili","nativeName":"Kiswahili"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-6,35],"name":"Tanzania, United Republic of","nativeName":"Tanzania","numericCode":"834","population":59734213,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".tz"],"translations":{"br":"Tanz\u00e2nia","de":"Tansania","es":"Tanzania","fa":"\u062a\u0627\u0646\u0632\u0627\u0646\u06cc\u0627","fr":"Tanzanie","hr":"Tanzanija","it":"Tanzania","ja":"\u30bf\u30f3\u30b6\u30cb\u30a2","nl":"Tanzania","pt":"Tanz\u00e2nia","ru":"\u0422\u0430\u043d\u0437\u0430\u043d\u0438\u044f","pl":"Tanzania","cs":"Tanzanie","zh":"\u5766\u6851\u5c3c\u4e9a\u8054\u5408\u5171\u548c\u56fd","hu":"T\u00e1dzsikiszt\u00e1n","se":"Tanzania"},"cioc":"TAN"},{"alpha2Code":"TH","alpha3Code":"THA","altSpellings":["TH","Prathet","Thai","Kingdom of Thailand","\u0e23\u0e32\u0e0a\u0e2d\u0e32\u0e13\u0e32\u0e08\u0e31\u0e01\u0e23\u0e44\u0e17\u0e22","Ratcha Anachak Thai"],"area":513120,"borders":["MMR","KHM","LAO","MYS"],"callingCodes":["66"],"capital":"Bangkok","currencies":[{"code":"THB","name":"Thai baht","symbol":"\u0e3f"}],"demonym":"Thai","flag":"https://restcountries.eu/data/tha.svg","gini":40,"languages":[{"iso639_1":"th","iso639_2":"tha","name":"Thai","nativeName":"\u0e44\u0e17\u0e22"}],"latlng":[15,100],"name":"Thailand","nativeName":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","numericCode":"764","population":69799978,"region":"Asia","regionalBlocs":[{"acronym":"ASEAN","name":"Association of Southeast Asian Nations"}],"subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"topLevelDomain":[".th"],"translations":{"br":"Tail\u00e2ndia","de":"Thailand","es":"Tailandia","fa":"\u062a\u0627\u06cc\u0644\u0646\u062f","fr":"Tha\u00eflande","hr":"Tajland","it":"Tailandia","ja":"\u30bf\u30a4","nl":"Thailand","pt":"Tail\u00e2ndia","ru":"\u0422\u0430\u0438\u043b\u0430\u043d\u0434","pl":"Tajlandia","cs":"Thajsko","zh":"\u6cf0\u738b\u56fd","hu":"Thaif\u00f6ld","se":"Thailand"},"cioc":"THA"},{"alpha2Code":"TL","alpha3Code":"TLS","altSpellings":["TL","East Timor","Democratic Republic of Timor-Leste","Rep\u00fablica Democr\u00e1tica de Timor-Leste","Rep\u00fablika Demokr\u00e1tika Tim\u00f3r-Leste"],"area":14874,"borders":["IDN"],"callingCodes":["670"],"capital":"Dili","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"},{"code":null,"name":null,"symbol":null}],"demonym":"East Timorese","flag":"https://restcountries.eu/data/tls.svg","gini":31.9,"languages":[{"iso639_1":"pt","iso639_2":"por","name":"Portuguese","nativeName":"Portugu\u00eas"}],"latlng":[-8.83333333,125.91666666],"name":"Timor-Leste","nativeName":"Timor-Leste","numericCode":"626","population":1318442,"region":"Asia","regionalBlocs":[],"subregion":"South-Eastern Asia","timezones":["UTC+09:00"],"topLevelDomain":[".tl"],"translations":{"br":"Timor Leste","de":"Timor-Leste","es":"Timor Oriental","fa":"\u062a\u06cc\u0645\u0648\u0631 \u0634\u0631\u0642\u06cc","fr":"Timor oriental","hr":"Isto\u010dni Timor","it":"Timor Est","ja":"\u6771\u30c6\u30a3\u30e2\u30fc\u30eb","nl":"Oost-Timor","pt":"Timor Leste","ru":"\u0412\u043e\u0441\u0442\u043e\u0447\u043d\u044b\u0439 \u0422\u0438\u043c\u043e\u0440","pl":"Timor Wschodni","cs":"V\u00fdchodn\u00ed Timor","zh":"\u4e1c\u5e1d\u6c76\u6c11\u4e3b\u5171\u548c\u56fd","hu":"Kelet-Timor","se":"\u00d6sttimor\u00a0a.k.a.\u00a0Timor-Leste"},"cioc":"TLS"},{"alpha2Code":"TG","alpha3Code":"TGO","altSpellings":["TG","Togolese","Togolese Republic","R\u00e9publique Togolaise"],"area":56785,"borders":["BEN","BFA","GHA"],"callingCodes":["228"],"capital":"Lom\u00e9","currencies":[{"code":"XOF","name":"West African CFA franc","symbol":"Fr"}],"demonym":"Togolese","flag":"https://restcountries.eu/data/tgo.svg","gini":34.4,"languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[8,1.16666666],"name":"Togo","nativeName":"Togo","numericCode":"768","population":8278737,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Western Africa","timezones":["UTC"],"topLevelDomain":[".tg"],"translations":{"br":"Togo","de":"Togo","es":"Togo","fa":"\u062a\u0648\u06af\u0648","fr":"Togo","hr":"Togo","it":"Togo","ja":"\u30c8\u30fc\u30b4","nl":"Togo","pt":"Togo","ru":"\u0422\u043e\u0433\u043e","pl":"Togo","cs":"Togo","zh":"\u591a\u54e5\u5171\u548c\u56fd","hu":"Togo","se":"Togo"},"cioc":"TOG"},{"alpha2Code":"TK","alpha3Code":"TKL","altSpellings":["TK"],"area":12,"borders":[],"callingCodes":["690"],"capital":"Fakaofo","currencies":[{"code":"NZD","name":"New Zealand dollar","symbol":"$"}],"demonym":"Tokelauan","flag":"https://restcountries.eu/data/tkl.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-9,-172],"name":"Tokelau","nativeName":"Tokelau","numericCode":"772","population":1411,"region":"Oceania","regionalBlocs":[],"subregion":"Polynesia","timezones":["UTC+13:00"],"topLevelDomain":[".tk"],"translations":{"br":"Tokelau","de":"Tokelau","es":"Islas Tokelau","fa":"\u062a\u0648\u06a9\u0644\u0627\u0626\u0648","fr":"Tokelau","hr":"Tokelau","it":"Isole Tokelau","ja":"\u30c8\u30b1\u30e9\u30a6","nl":"Tokelau","pt":"Toquelau","pl":"Tokelau","cs":"Tokelau","ru":"Tokelau","zh":"\u6258\u514b\u52b3","hu":"Tokelau-szigetek","se":"Tokelau\u00f6arna"},"cioc":""},{"alpha2Code":"TO","alpha3Code":"TON","altSpellings":["TO"],"area":747,"borders":[],"callingCodes":["676"],"capital":"Nuku'alofa","currencies":[{"code":"TOP","name":"Tongan pa\u02bbanga","symbol":"T$"}],"demonym":"Tongan","flag":"https://restcountries.eu/data/ton.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"to","iso639_2":"ton","name":"Tonga (Tonga Islands)","nativeName":"faka Tonga"}],"latlng":[-20,-175],"name":"Tonga","nativeName":"Tonga","numericCode":"776","population":105697,"region":"Oceania","regionalBlocs":[],"subregion":"Polynesia","timezones":["UTC+13:00"],"topLevelDomain":[".to"],"translations":{"br":"Tonga","de":"Tonga","es":"Tonga","fa":"\u062a\u0648\u0646\u06af\u0627","fr":"Tonga","hr":"Tonga","it":"Tonga","ja":"\u30c8\u30f3\u30ac","nl":"Tonga","pt":"Tonga","ru":"\u0422\u043e\u043d\u0433\u0430","pl":"Tonga","cs":"Tonga","zh":"\u6c64\u52a0\u738b\u56fd","hu":"Tonga","se":"Tonga"},"cioc":"TGA"},{"alpha2Code":"TT","alpha3Code":"TTO","altSpellings":["TT","Republic of Trinidad and Tobago"],"area":5130,"borders":[],"callingCodes":["1"],"capital":"Port of Spain","currencies":[{"code":"TTD","name":"Trinidad and Tobago dollar","symbol":"$"}],"demonym":"Trinidadian","flag":"https://restcountries.eu/data/tto.svg","gini":40.3,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[11,-61],"name":"Trinidad and Tobago","nativeName":"Trinidad and Tobago","numericCode":"780","population":1399491,"region":"Americas","regionalBlocs":[{"acronym":"CARICOM","name":"Caribbean Community","otherNames":["Comunidad del Caribe","Communaut\u00e9 Carib\u00e9enne","Caribische Gemeenschap"]}],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".tt"],"translations":{"br":"Trinidad e Tobago","de":"Trinidad und Tobago","es":"Trinidad y Tobago","fa":"\u062a\u0631\u06cc\u0646\u06cc\u062f\u0627\u062f \u0648 \u062a\u0648\u0628\u0627\u06af\u0648","fr":"Trinit\u00e9 et Tobago","hr":"Trinidad i Tobago","it":"Trinidad e Tobago","ja":"\u30c8\u30ea\u30cb\u30c0\u30fc\u30c9\u30fb\u30c8\u30d0\u30b4","nl":"Trinidad en Tobago","pt":"Trindade e Tobago","ru":"\u0422\u0440\u0438\u043d\u0438\u0434\u0430\u0434 \u0438 \u0422\u043e\u0431\u0430\u0433\u043e","pl":"Trynidad i Tobago","cs":"Trinidad a Tobago","zh":"\u7279\u7acb\u5c3c\u8fbe\u548c\u591a\u5df4\u54e5\u5171\u548c\u56fd","hu":"Trinidad \u00e9s Tobago","se":"Trinidad och Tobago"},"cioc":"TTO"},{"alpha2Code":"TN","alpha3Code":"TUN","altSpellings":["TN","Republic of Tunisia","al-Jumh\u016briyyah at-T\u016bnisiyyah"],"area":163610,"borders":["DZA","LBY"],"callingCodes":["216"],"capital":"Tunis","currencies":[{"code":"TND","name":"Tunisian dinar","symbol":"\u062f.\u062a"}],"demonym":"Tunisian","flag":"https://restcountries.eu/data/tun.svg","gini":41.4,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[34,9],"name":"Tunisia","nativeName":"\u062a\u0648\u0646\u0633","numericCode":"788","population":11818618,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]},{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Northern Africa","timezones":["UTC+01:00"],"topLevelDomain":[".tn"],"translations":{"br":"Tun\u00edsia","de":"Tunesien","es":"T\u00fanez","fa":"\u062a\u0648\u0646\u0633","fr":"Tunisie","hr":"Tunis","it":"Tunisia","ja":"\u30c1\u30e5\u30cb\u30b8\u30a2","nl":"Tunesi\u00eb","pt":"Tun\u00edsia","ru":"\u0422\u0443\u043d\u0438\u0441","pl":"Tunezja","cs":"Tunisko","zh":"\u7a81\u5c3c\u65af\u5171\u548c\u56fd","hu":"Tun\u00e9zia","se":"Tunisien"},"cioc":"TUN"},{"alpha2Code":"TR","alpha3Code":"TUR","altSpellings":["TR","Turkiye","Republic of Turkey","T\u00fcrkiye Cumhuriyeti"],"area":783562,"borders":["ARM","AZE","BGR","GEO","GRC","IRN","IRQ","SYR"],"callingCodes":["90"],"capital":"Ankara","currencies":[{"code":"TRY","name":"Turkish lira","symbol":"₺"}],"demonym":"Turkish","flag":"https://restcountries.eu/data/tur.svg","gini":39,"languages":[{"iso639_1":"tr","iso639_2":"tur","name":"Turkish","nativeName":"T\u00fcrk\u00e7e"}],"latlng":[39,35],"name":"Turkey","nativeName":"T\u00fcrkiye","numericCode":"792","population":84339067,"region":"Asia","regionalBlocs":[],"subregion":"Western Asia","timezones":["UTC+03:00"],"topLevelDomain":[".tr"],"translations":{"br":"Turquia","de":"T\u00fcrkei","es":"Turqu\u00eda","fa":"\u062a\u0631\u06a9\u06cc\u0647","fr":"Turquie","hr":"Turska","it":"Turchia","ja":"\u30c8\u30eb\u30b3","nl":"Turkije","pt":"Turquia","ru":"\u0422\u0443\u0440\u0446\u0438\u044f","pl":"Turcja","cs":"Turecko","zh":"\u571f\u8033\u5176\u5171\u548c\u56fd","hu":"T\u00f6r\u00f6korsz\u00e1g","se":"Turkiet"},"cioc":"TUR"},{"alpha2Code":"TM","alpha3Code":"TKM","altSpellings":["TM"],"area":488100,"borders":["AFG","IRN","KAZ","UZB"],"callingCodes":["993"],"capital":"Ashgabat","currencies":[{"code":"TMT","name":"Turkmenistan manat","symbol":"m"}],"demonym":"Turkmen","flag":"https://restcountries.eu/data/tkm.svg","gini":40.8,"languages":[{"iso639_1":"tk","iso639_2":"tuk","name":"Turkmen","nativeName":"T\u00fcrkmen"},{"iso639_1":"ru","iso639_2":"rus","name":"Russian","nativeName":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439"}],"latlng":[40,60],"name":"Turkmenistan","nativeName":"T\u00fcrkmenistan","numericCode":"795","population":6031187,"region":"Asia","regionalBlocs":[],"subregion":"Central Asia","timezones":["UTC+05:00"],"topLevelDomain":[".tm"],"translations":{"br":"Turcomenist\u00e3o","de":"Turkmenistan","es":"Turkmenist\u00e1n","fa":"\u062a\u0631\u06a9\u0645\u0646\u0633\u062a\u0627\u0646","fr":"Turkm\u00e9nistan","hr":"Turkmenistan","it":"Turkmenistan","ja":"\u30c8\u30eb\u30af\u30e1\u30cb\u30b9\u30bf\u30f3","nl":"Turkmenistan","pt":"Turquemenist\u00e3o","ru":"\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0438\u044f","pl":"Turkmenistan","cs":"Turkmenist\u00e1n","zh":"\u571f\u5e93\u66fc\u65af\u5766","hu":"T\u00fcrkmeniszt\u00e1n","se":"Turkmenistan"},"cioc":"TKM"},{"alpha2Code":"TC","alpha3Code":"TCA","altSpellings":["TC"],"area":948,"borders":[],"callingCodes":["1"],"capital":"Cockburn Town","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Turks and Caicos Islander","flag":"https://restcountries.eu/data/tca.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[21.75,-71.58333333],"name":"Turks and Caicos Islands","nativeName":"Turks and Caicos Islands","numericCode":"796","population":38718,"region":"Americas","regionalBlocs":[],"subregion":"Caribbean","timezones":["UTC-04:00"],"topLevelDomain":[".tc"],"translations":{"br":"Ilhas Turcas e Caicos","de":"Turks- und Caicosinseln","es":"Islas Turks y Caicos","fa":"\u062c\u0632\u0627\u06cc\u0631 \u062a\u0648\u0631\u06a9\u0633 \u0648 \u06a9\u0627\u06cc\u06a9\u0648\u0633","fr":"\u00celes Turques-et-Ca\u00efques","hr":"Otoci Turks i Caicos","it":"Isole Turks e Caicos","ja":"\u30bf\u30fc\u30af\u30b9\u30fb\u30ab\u30a4\u30b3\u30b9\u8af8\u5cf6","nl":"Turks- en Caicoseilanden","pt":"Ilhas Turcas e Caicos","pl":"Turks i Caicos","cs":"Turks a Caicos","ru":"Turks and Caicos Islands","zh":"\u7279\u514b\u65af\u548c\u51ef\u79d1\u65af\u7fa4\u5c9b","hu":"Turks- \u00e9s Caicos-szigetek","se":"Turks- och Caicos\u00f6arna"},"cioc":""},{"alpha2Code":"TV","alpha3Code":"TUV","altSpellings":["TV"],"area":26,"borders":[],"callingCodes":["688"],"capital":"Funafuti","currencies":[{"code":"AUD","name":"Australian dollar","symbol":"$"},{"code":"TVD[G]","name":"Tuvaluan dollar","symbol":"$"}],"demonym":"Tuvaluan","flag":"https://restcountries.eu/data/tuv.svg","languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-8,178],"name":"Tuvalu","nativeName":"Tuvalu","numericCode":"798","population":11792,"region":"Oceania","regionalBlocs":[],"subregion":"Polynesia","timezones":["UTC+12:00"],"topLevelDomain":[".tv"],"translations":{"br":"Tuvalu","de":"Tuvalu","es":"Tuvalu","fa":"\u062a\u0648\u0648\u0627\u0644\u0648","fr":"Tuvalu","hr":"Tuvalu","it":"Tuvalu","ja":"\u30c4\u30d0\u30eb","nl":"Tuvalu","pt":"Tuvalu","ru":"\u0422\u0443\u0432\u0430\u043b\u0443","pl":"Tuvalu","cs":"Tuvalu","zh":"\u56fe\u74e6\u5362","hu":"Tuvalu","se":"Tuvalu"},"cioc":"TUV"},{"alpha2Code":"UG","alpha3Code":"UGA","altSpellings":["UG","Republic of Uganda","Jamhuri ya Uganda"],"area":241550,"borders":["COD","KEN","RWA","SSD","TZA"],"callingCodes":["256"],"capital":"Kampala","currencies":[{"code":"UGX","name":"Ugandan shilling","symbol":"Sh"}],"demonym":"Ugandan","flag":"https://restcountries.eu/data/uga.svg","gini":44.3,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"sw","iso639_2":"swa","name":"Swahili","nativeName":"Kiswahili"}],"latlng":[1,32],"name":"Uganda","nativeName":"Uganda","numericCode":"800","population":45741000,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+03:00"],"topLevelDomain":[".ug"],"translations":{"br":"Uganda","de":"Uganda","es":"Uganda","fa":"\u0627\u0648\u06af\u0627\u0646\u062f\u0627","fr":"Uganda","hr":"Uganda","it":"Uganda","ja":"\u30a6\u30ac\u30f3\u30c0","nl":"Oeganda","pt":"Uganda","ru":"\u0423\u0433\u0430\u043d\u0434\u0430","pl":"Uganda","cs":"Uganda","zh":"\u4e4c\u5e72\u8fbe\u5171\u548c\u56fd","hu":"Uganda","se":"Uganda"},"cioc":"UGA"},{"alpha2Code":"UA","alpha3Code":"UKR","altSpellings":["UA","Ukrayina"],"area":603700,"borders":["BLR","HUN","MDA","POL","ROU","RUS","SVK"],"callingCodes":["380"],"capital":"Kyiv","currencies":[{"code":"UAH","name":"Ukrainian hryvnia","symbol":"\u20b4"}],"demonym":"Ukrainian","flag":"https://restcountries.eu/data/ukr.svg","gini":26.4,"languages":[{"iso639_1":"uk","iso639_2":"ukr","name":"Ukrainian","nativeName":"\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430"}],"latlng":[49,32],"name":"Ukraine","nativeName":"\u0423\u043a\u0440\u0430\u0457\u043d\u0430","numericCode":"804","population":44134693,"region":"Europe","regionalBlocs":[],"subregion":"Eastern Europe","timezones":["UTC+02:00"],"topLevelDomain":[".ua"],"translations":{"br":"Ucr\u00e2nia","de":"Ukraine","es":"Ucrania","fa":"\u0648\u06a9\u0631\u0627\u06cc\u0646","fr":"Ukraine","hr":"Ukrajina","it":"Ucraina","ja":"\u30a6\u30af\u30e9\u30a4\u30ca","nl":"Oekra\u00efne","pt":"Ucr\u00e2nia","ru":"\u0423\u043a\u0440\u0430\u0438\u043d\u0430","pl":"Ukraina","cs":"Ukrajina","zh":"\u4e4c\u514b\u5170","hu":"Ukrajna","se":"Ukraina"},"cioc":"UKR"},{"alpha2Code":"AE","alpha3Code":"ARE","altSpellings":["AE","UAE"],"area":83600,"borders":["OMN","SAU"],"callingCodes":["971"],"capital":"Abu Dhabi","currencies":[{"code":"AED","name":"United Arab Emirates dirham","symbol":"\u062f.\u0625"}],"demonym":"Emirati","flag":"https://restcountries.eu/data/are.svg","gini":null,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[24,54],"name":"United Arab Emirates","nativeName":"\u062f\u0648\u0644\u0629 \u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629","numericCode":"784","population":9890400,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+04"],"topLevelDomain":[".ae"],"translations":{"br":"Emirados \u00e1rabes Unidos","de":"Vereinigte Arabische Emirate","es":"Emiratos \u00c1rabes Unidos","fa":"\u0627\u0645\u0627\u0631\u0627\u062a \u0645\u062a\u062d\u062f\u0647 \u0639\u0631\u0628\u06cc","fr":"\u00c9mirats arabes unis","hr":"Ujedinjeni Arapski Emirati","it":"Emirati Arabi Uniti","ja":"\u30a2\u30e9\u30d6\u9996\u9577\u56fd\u9023\u90a6","nl":"Verenigde Arabische Emiraten","pt":"Emirados \u00e1rabes Unidos","ru":"\u041e\u0410\u042d","pl":"Zjednoczone Emiraty Arabskie","cs":"Spojen\u00e9 arabsk\u00e9 emir\u00e1ty","zh":"\u963f\u62c9\u4f2f\u8054\u5408\u914b\u957f\u56fd","hu":"Egyes\u00fclt Arab Em\u00edrs\u00e9gek","se":"F\u00f6renade Arabemiraten"},"cioc":"UAE"},{"alpha2Code":"GB","alpha3Code":"GBR","altSpellings":["GB","UK","Great Britain"],"area":242900,"borders":["IRL"],"callingCodes":["44"],"capital":"London","currencies":[{"code":"GBP","name":"British pound","symbol":"\u00a3"}],"demonym":"British","flag":"https://restcountries.eu/data/gbr.svg","gini":34,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[54,-2],"name":"United Kingdom of Great Britain and Northern Ireland","nativeName":"United Kingdom","numericCode":"826","population":67215293,"region":"Europe","subregion":"Northern Europe","timezones":["UTC-08:00","UTC-05:00","UTC-04:00","UTC-03:00","UTC-02:00","UTC","UTC+01:00","UTC+02:00","UTC+06:00"],"topLevelDomain":[".uk"],"translations":{"br":"Reino Unido","de":"Vereinigtes K\u00f6nigreich","es":"Reino Unido","fa":"\u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627\u06cc \u06a9\u0628\u06cc\u0631 \u0648 \u0627\u06cc\u0631\u0644\u0646\u062f \u0634\u0645\u0627\u0644\u06cc","fr":"Royaume-Uni","hr":"Ujedinjeno Kraljevstvo","it":"Regno Unito","ja":"\u30a4\u30ae\u30ea\u30b9","nl":"Verenigd Koninkrijk","pt":"Reino Unido","ru":"\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f","pl":"Wielka Brytania","cs":"Spojen\u00e9 kr\u00e1lovstv\u00ed","zh":"\u5927\u4e0d\u5217\u98a0\u53ca\u5317\u7231\u5c14\u5170\u8054\u5408\u738b\u56fd","hu":"Nagy-Britannia","se":"Storbritannien"},"cioc":"GBR"},{"alpha2Code":"US","alpha3Code":"USA","altSpellings":["US","USA","United States of America"],"area":9629091,"borders":["CAN","MEX"],"callingCodes":["1"],"capital":"Washington, D.C.","currencies":[{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"American","flag":"https://restcountries.eu/data/usa.svg","gini":48,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[38,-97],"name":"United States of America","nativeName":"United States","numericCode":"840","population":329484123,"region":"Americas","regionalBlocs":[{"acronym":"NAFTA","name":"North American Free Trade Agreement","otherNames":["Tratado de Libre Comercio de Am\u00e9rica del Norte","Accord de Libre-\u00e9change Nord-Am\u00e9ricain"]}],"subregion":"Northern America","timezones":["UTC-12:00","UTC-11:00","UTC-10:00","UTC-09:00","UTC-08:00","UTC-07:00","UTC-06:00","UTC-05:00","UTC-04:00","UTC+10:00","UTC+12:00"],"topLevelDomain":[".us"],"translations":{"br":"Estados Unidos","de":"Vereinigte Staaten von Amerika","es":"Estados Unidos","fa":"\u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647 \u0622\u0645\u0631\u06cc\u06a9\u0627","fr":"\u00c9tats-Unis","hr":"Sjedinjene Ameri\u010dke Dr\u017eave","it":"Stati Uniti D'America","ja":"\u30a2\u30e1\u30ea\u30ab\u5408\u8846\u56fd","nl":"Verenigde Staten","pt":"Estados Unidos","ru":"\u0421\u0428\u0410","pl":"Stany Zjednoczone","cs":"Spojen\u00e9 st\u00e1ty americk\u00e9","zh":"\u7f8e\u5229\u575a\u5408\u4f17\u56fd","hu":"Amerikai Egyes\u00fclt \u00c1llamok","se":"USA"},"cioc":"USA"},{"alpha2Code":"UY","alpha3Code":"URY","altSpellings":["UY","Oriental Republic of Uruguay","Rep\u00fablica Oriental del Uruguay"],"area":181034,"borders":["ARG","BRA"],"callingCodes":["598"],"capital":"Montevideo","currencies":[{"code":"UYU","name":"Uruguayan peso","symbol":"$"}],"demonym":"Uruguayan","flag":"https://restcountries.eu/data/ury.svg","gini":39.7,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[-33,-56],"name":"Uruguay","nativeName":"Uruguay","numericCode":"858","population":3473727,"region":"Americas","regionalBlocs":[{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-03:00"],"topLevelDomain":[".uy"],"translations":{"br":"Uruguai","de":"Uruguay","es":"Uruguay","fa":"\u0627\u0631\u0648\u06af\u0648\u0626\u0647","fr":"Uruguay","hr":"Urugvaj","it":"Uruguay","ja":"\u30a6\u30eb\u30b0\u30a2\u30a4","nl":"Uruguay","pt":"Uruguai","ru":"\u0423\u0440\u0443\u0433\u0432\u0430\u0439","pl":"Urugwaj","cs":"Uruguay","zh":"\u4e4c\u62c9\u572d\u4e1c\u5cb8\u5171\u548c\u56fd","hu":"Uruguay","se":"Uruguay"},"cioc":"URU"},{"alpha2Code":"UZ","alpha3Code":"UZB","altSpellings":["UZ","Republic of Uzbekistan","O\u2018zbekiston Respublikasi","\u040e\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u043e\u043d \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u0438"],"area":447400,"borders":["AFG","KAZ","KGZ","TJK","TKM"],"callingCodes":["998"],"capital":"Tashkent","currencies":[{"code":"UZS","name":"Uzbekistani so'm","symbol":"so'm"}],"demonym":"Uzbekistani","flag":"https://restcountries.eu/data/uzb.svg","gini":36.7,"languages":[{"iso639_1":"uz","iso639_2":"uzb","name":"Uzbek","nativeName":"O\u02bbzbek"},{"iso639_1":"ru","iso639_2":"rus","name":"Russian","nativeName":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439"}],"latlng":[41,64],"name":"Uzbekistan","nativeName":"O\u2018zbekiston","numericCode":"860","population":34232050,"region":"Asia","regionalBlocs":[],"subregion":"Central Asia","timezones":["UTC+05:00"],"topLevelDomain":[".uz"],"translations":{"br":"Uzbequist\u00e3o","de":"Usbekistan","es":"Uzbekist\u00e1n","fa":"\u0627\u0632\u0628\u06a9\u0633\u062a\u0627\u0646","fr":"Ouzb\u00e9kistan","hr":"Uzbekistan","it":"Uzbekistan","ja":"\u30a6\u30ba\u30d9\u30ad\u30b9\u30bf\u30f3","nl":"Oezbekistan","pt":"Usbequist\u00e3o","ru":"\u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d","pl":"Uzbekistan","cs":"Uzbekist\u00e1n","zh":"\u4e4c\u5179\u522b\u514b\u65af\u5766\u5171\u548c\u56fd","hu":"\u00dczbegiszt\u00e1n","se":"Uzbekistan"},"cioc":"UZB"},{"alpha2Code":"VU","alpha3Code":"VUT","altSpellings":["VU","Republic of Vanuatu","Ripablik blong Vanuatu","R\u00e9publique de Vanuatu"],"area":12189,"borders":[],"callingCodes":["678"],"capital":"Port Vila","currencies":[{"code":"VUV","name":"Vanuatu vatu","symbol":"Vt"}],"demonym":"Ni-Vanuatu","flag":"https://restcountries.eu/data/vut.svg","languages":[{"iso639_1":"bi","iso639_2":"bis","name":"Bislama","nativeName":"Bislama"},{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[-16,167],"name":"Vanuatu","nativeName":"Vanuatu","numericCode":"548","population":307150,"region":"Oceania","regionalBlocs":[],"subregion":"Melanesia","timezones":["UTC+11:00"],"topLevelDomain":[".vu"],"translations":{"br":"Vanuatu","de":"Vanuatu","es":"Vanuatu","fa":"\u0648\u0627\u0646\u0648\u0627\u062a\u0648","fr":"Vanuatu","hr":"Vanuatu","it":"Vanuatu","ja":"\u30d0\u30cc\u30a2\u30c4","nl":"Vanuatu","pt":"Vanuatu","ru":"\u0412\u0430\u043d\u0443\u0430\u0442\u0443","pl":"Vanuatu","cs":"Vanuatu","zh":"\u74e6\u52aa\u963f\u56fe\u5171\u548c\u56fd","hu":"Vanuatu","se":"Vanuatu"},"cioc":"VAN"},{"alpha2Code":"VE","alpha3Code":"VEN","altSpellings":["VE","Bolivarian Republic of Venezuela","Rep\u00fablica Bolivariana de Venezuela"],"area":916445,"borders":["BRA","COL","GUY"],"callingCodes":["58"],"capital":"Caracas","currencies":[{"code":"VEF","name":"Venezuelan bol\u00edvar","symbol":"Bs.S"}],"demonym":"Venezuelan","flag":"https://restcountries.eu/data/ven.svg","gini":44.8,"languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[8,-66],"name":"Venezuela (Bolivarian Republic of)","nativeName":"Venezuela","numericCode":"862","population":28435943,"region":"Americas","regionalBlocs":[{"acronym":"USAN","name":"Union of South American Nations","otherAcronyms":["UNASUR","UNASUL","UZAN"],"otherNames":["Uni\u00f3n de Naciones Suramericanas","Uni\u00e3o de Na\u00e7\u00f5es Sul-Americanas","Unie van Zuid-Amerikaanse Naties","South American Union"]}],"subregion":"South America","timezones":["UTC-04:00"],"topLevelDomain":[".ve"],"translations":{"br":"Venezuela","de":"Venezuela","es":"Venezuela","fa":"\u0648\u0646\u0632\u0648\u0626\u0644\u0627","fr":"Venezuela","hr":"Venezuela","it":"Venezuela","ja":"\u30d9\u30cd\u30ba\u30a8\u30e9\u30fb\u30dc\u30ea\u30d0\u30eb\u5171\u548c\u56fd","nl":"Venezuela","pt":"Venezuela","ru":"\u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u0430","pl":"Wenezuela","cs":"Venezuela","zh":"\u59d4\u5185\u745e\u62c9\u73bb\u5229\u74e6\u5c14\u5171\u548c\u56fd","hu":"Venezuela","se":"Venezuela"},"cioc":"VEN"},{"alpha2Code":"VN","alpha3Code":"VNM","altSpellings":["VN","Socialist Republic of Vietnam","C\u1ed9ng h\u00f2a X\u00e3 h\u1ed9i ch\u1ee7 ngh\u0129a Vi\u1ec7t Nam"],"area":331212,"borders":["KHM","CHN","LAO"],"callingCodes":["84"],"capital":"Hanoi","currencies":[{"code":"VND","name":"Vietnamese \u0111\u1ed3ng","symbol":"\u20ab"}],"demonym":"Vietnamese","flag":"https://restcountries.eu/data/vnm.svg","gini":35.6,"languages":[{"iso639_1":"vi","iso639_2":"vie","name":"Vietnamese","nativeName":"Ti\u1ebfng Vi\u1ec7t"}],"latlng":[16.16666666,107.83333333],"name":"Vietnam","nativeName":"Vi\u1ec7t Nam","numericCode":"704","population":97338583,"region":"Asia","regionalBlocs":[{"acronym":"ASEAN","name":"Association of Southeast Asian Nations"}],"subregion":"South-Eastern Asia","timezones":["UTC+07:00"],"topLevelDomain":[".vn"],"translations":{"br":"Vietn\u00e3","de":"Vietnam","es":"Vietnam","fa":"\u0648\u06cc\u062a\u0646\u0627\u0645","fr":"Vi\u00eat Nam","hr":"Vijetnam","it":"Vietnam","ja":"\u30d9\u30c8\u30ca\u30e0","nl":"Vietnam","pt":"Vietname","ru":"\u0412\u044c\u0435\u0442\u043d\u0430\u043c","pl":"Wietnam","cs":"Vietnam","zh":"\u8d8a\u5357\u793e\u4f1a\u4e3b\u4e49\u5171\u548c\u56fd","hu":"Vietn\u00e1m","se":"Vietnam"},"cioc":"VIE"},{"alpha2Code":"WF","alpha3Code":"WLF","altSpellings":["WF","Territory of the Wallis and Futuna Islands","Territoire des \u00eeles Wallis et Futuna"],"area":142,"borders":[],"callingCodes":["681"],"capital":"Mata-Utu","currencies":[{"code":"XPF","name":"CFP franc","symbol":"Fr"}],"demonym":"Wallis and Futuna Islander","flag":"https://restcountries.eu/data/wlf.svg","languages":[{"iso639_1":"fr","iso639_2":"fra","name":"French","nativeName":"fran\u00e7ais"}],"latlng":[-13.3,-176.2],"name":"Wallis and Futuna","nativeName":"Wallis et Futuna","numericCode":"876","population":11750,"region":"Oceania","regionalBlocs":[],"subregion":"Polynesia","timezones":["UTC+12:00"],"topLevelDomain":[".wf"],"translations":{"br":"Wallis e Futuna","de":"Wallis und Futuna","es":"Wallis y Futuna","fa":"\u0648\u0627\u0644\u06cc\u0633 \u0648 \u0641\u0648\u062a\u0648\u0646\u0627","fr":"Wallis-et-Futuna","hr":"Wallis i Fortuna","it":"Wallis e Futuna","ja":"\u30a6\u30a9\u30ea\u30b9\u30fb\u30d5\u30c4\u30ca","nl":"Wallis en Futuna","pt":"Wallis e Futuna","pl":"Wallis i Futuna","cs":"Wallis a Futuna","ru":"Wallis and Futuna","zh":"\u74e6\u5229\u65af\u548c\u5bcc\u56fe\u7eb3\u7fa4\u5c9b","hu":"Wallis \u00e9s Futuna","se":"Wallis- och Futuna\u00f6arna"},"cioc":""},{"alpha2Code":"EH","alpha3Code":"ESH","altSpellings":["EH","Tane\u1e93roft Tutrimt"],"area":266000,"borders":["DZA","MRT","MAR"],"callingCodes":["212"],"capital":"El Aai\u00fan","currencies":[{"code":"MAD","name":"Moroccan dirham","symbol":"\u062f.\u0645."},{"code":"DZD","name":"Algerian dinar","symbol":"\u062f.\u062c"}],"demonym":"Sahrawi","flag":"https://restcountries.eu/data/esh.svg","languages":[{"iso639_1":"es","iso639_2":"spa","name":"Spanish","nativeName":"Espa\u00f1ol"}],"latlng":[24.5,-13],"name":"Western Sahara","nativeName":"\u0627\u0644\u0635\u062d\u0631\u0627\u0621 \u0627\u0644\u063a\u0631\u0628\u064a\u0629","numericCode":"732","population":510713,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Northern Africa","timezones":["UTC+00:00"],"topLevelDomain":[".eh"],"translations":{"br":"Saara Ocidental","de":"Westsahara","es":"Sahara Occidental","fa":"\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u0639\u0631\u0628\u06cc \u0635\u062d\u0631\u0627","fr":"Sahara Occidental","hr":"Zapadna Sahara","it":"Sahara Occidentale","ja":"\u897f\u30b5\u30cf\u30e9","nl":"Westelijke Sahara","pt":"Saara Ocidental","pl":"Sahara Zachodnia","cs":"Z\u00e1padn\u00ed Sahara","ru":"Western Sahara","zh":"\u963f\u62c9\u4f2f\u6492\u54c8\u62c9\u6c11\u4e3b\u5171\u548c\u56fd","hu":"Nyugat-Szahara","se":"V\u00e4stsahara"},"cioc":""},{"alpha2Code":"YE","alpha3Code":"YEM","altSpellings":["YE","Yemeni Republic","al-Jumh\u016briyyah al-Yamaniyyah"],"area":527968,"borders":["OMN","SAU"],"callingCodes":["967"],"capital":"Sana'a","currencies":[{"code":"YER","name":"Yemeni rial","symbol":"\ufdfc"}],"demonym":"Yemeni","flag":"https://restcountries.eu/data/yem.svg","gini":37.7,"languages":[{"iso639_1":"ar","iso639_2":"ara","name":"Arabic","nativeName":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}],"latlng":[15,48],"name":"Yemen","nativeName":"\u0627\u0644\u064a\u064e\u0645\u064e\u0646","numericCode":"887","population":29825968,"region":"Asia","regionalBlocs":[{"acronym":"AL","name":"Arab League","otherNames":["\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0629","J\u0101mi\u02bbat ad-Duwal al-\u02bbArab\u012byah","League of Arab States"]}],"subregion":"Western Asia","timezones":["UTC+03:00"],"topLevelDomain":[".ye"],"translations":{"br":"I\u00eamen","de":"Jemen","es":"Yemen","fa":"\u06cc\u0645\u0646","fr":"Y\u00e9men","hr":"Jemen","it":"Yemen","ja":"\u30a4\u30a8\u30e1\u30f3","nl":"Jemen","pt":"I\u00e9men","ru":"\u0419\u0435\u043c\u0435\u043d","pl":"Jemen","cs":"Jemen","zh":"\u4e5f\u95e8\u5171\u548c\u56fd","hu":"Jemen","se":"Jemen"},"cioc":"YEM"},{"alpha2Code":"ZM","alpha3Code":"ZMB","altSpellings":["ZM","Republic of Zambia"],"area":752612,"borders":["AGO","BWA","COD","MWI","MOZ","NAM","TZA","ZWE"],"callingCodes":["260"],"capital":"Lusaka","currencies":[{"code":"ZMW","name":"Zambian kwacha","symbol":"ZK"}],"demonym":"Zambian","flag":"https://restcountries.eu/data/zmb.svg","gini":54.6,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"}],"latlng":[-15,30],"name":"Zambia","nativeName":"Zambia","numericCode":"894","population":18383956,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".zm"],"translations":{"br":"Z\u00e2mbia","de":"Sambia","es":"Zambia","fa":"\u0632\u0627\u0645\u0628\u06cc\u0627","fr":"Zambie","hr":"Zambija","it":"Zambia","ja":"\u30b6\u30f3\u30d3\u30a2","nl":"Zambia","pt":"Z\u00e2mbia","ru":"\u0417\u0430\u043c\u0431\u0438\u044f","pl":"Zambia","cs":"Zambie","zh":"\u8d5e\u6bd4\u4e9a\u5171\u548c\u56fd","hu":"Zambia","se":"Zambia"},"cioc":"ZAM"},{"alpha2Code":"ZW","alpha3Code":"ZWE","altSpellings":["ZW","Republic of Zimbabwe"],"area":390757,"borders":["BWA","MOZ","ZAF","ZMB"],"callingCodes":["263"],"capital":"Harare","currencies":[{"code":"BWP","name":"Botswana pula","symbol":"P"},{"code":"GBP","name":"British pound","symbol":"\u00a3"},{"code":"CNY","name":"Chinese yuan","symbol":"\u00a5"},{"code":"EUR","name":"Euro","symbol":"\u20ac"},{"code":"INR","name":"Indian rupee","symbol":"\u20b9"},{"code":"JPY","name":"Japanese yen","symbol":"\u00a5"},{"code":"ZAR","name":"South African rand","symbol":"Rs"},{"code":"USD","name":"United States dollar","symbol":"$"}],"demonym":"Zimbabwean","flag":"https://restcountries.eu/data/zwe.svg","gini":null,"languages":[{"iso639_1":"en","iso639_2":"eng","name":"English","nativeName":"English"},{"iso639_1":"sn","iso639_2":"sna","name":"Shona","nativeName":"chiShona"},{"iso639_1":"nd","iso639_2":"nde","name":"Northern Ndebele","nativeName":"isiNdebele"}],"latlng":[-20,30],"name":"Zimbabwe","nativeName":"Zimbabwe","numericCode":"716","population":14862927,"region":"Africa","regionalBlocs":[{"acronym":"AU","name":"African Union","otherNames":["\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a","Union africaine","Uni\u00e3o Africana","Uni\u00f3n Africana","Umoja wa Afrika"]}],"subregion":"Eastern Africa","timezones":["UTC+02:00"],"topLevelDomain":[".zw"],"translations":{"br":"Zimbabwe","de":"Simbabwe","es":"Zimbabue","fa":"\u0632\u06cc\u0645\u0628\u0627\u0648\u0647","fr":"Zimbabwe","hr":"Zimbabve","it":"Zimbabwe","ja":"\u30b8\u30f3\u30d0\u30d6\u30a8","nl":"Zimbabwe","pt":"Zimbabu\u00e9","ru":"\u0417\u0438\u043c\u0431\u0430\u0431\u0432\u0435","pl":"Zimbabwe","cs":"Zimbabwe","zh":"\u6d25\u5df4\u5e03\u97e6\u5171\u548c\u56fd","hu":"Zimbabwe","se":"Zimbabwe"},"cioc":"ZIM"}] ================================================ FILE: src/main/resources/log4j.properties ================================================ log4j.rootCategory=INFO, FILE log4j.appender.FILE=org.apache.log4j.DailyRollingFileAppender log4j.appender.FILE.File=logs/restcountries.log log4j.appender.FILE.DatePattern='.'yyyy-MM-dd log4j.appender.FILE.ImmediateFlush=true log4j.appender.FILE.layout=org.apache.log4j.PatternLayout log4j.appender.FILE.layout.ConversionPattern=%d %-5p [%c:%L] %m%n log4j.category.fayder.restcountries=debug log4j.category.org.jboss.resteasy=info ================================================ FILE: src/main/webapp/flatdoc.md ================================================ REST Countries ======= Get information about countries via a RESTful API [![Build Status](https://travis-ci.org/fayder/restcountries.svg?branch=master)](https://travis-ci.org/fayder/restcountries) *Current version: 2.0.5* Donate! --------------- The restcountries project has been acquired by apilayer, one of the leading providers of API microservices. We will keep supporting restcountries and providing it as a free solution for developers. We will finance this project fully and have turned off the donations feature. Users --------------- RESTCountries has over 1200 users, including: [TTÜ] [Spotify International Pricing Index] [Gorillaz] [Wanderlust] [Xero] [FxPro] [SKROSS] [onefinestay] [Much Better Adventures] Stay up-to-date --------------- Follow RESTCountries on [Twitter] Or subscribe to the [mailing list] API Endpoints ======= Below are described the REST endpoints available that you can use to search for countries All --------------- ``` html https://restcountries.eu/rest/v2/all ``` Name --------------- Search by country name. It can be the native name or partial name ``` javascript https://restcountries.eu/rest/v2/name/{name} ``` ``` html https://restcountries.eu/rest/v2/name/eesti ``` ``` html https://restcountries.eu/rest/v2/name/united ``` Full Name --------------- Search by country full name ``` javascript https://restcountries.eu/rest/v2/name/{name}?fullText=true ``` ``` html https://restcountries.eu/rest/v2/name/aruba?fullText=true ``` Code --------------- Search by ISO 3166-1 2-letter or 3-letter country code ``` javascript https://restcountries.eu/rest/v2/alpha/{code} ``` ``` html https://restcountries.eu/rest/v2/alpha/co ``` ``` html https://restcountries.eu/rest/v2/alpha/col ``` List of codes --------------- Search by list of ISO 3166-1 2-letter or 3-letter country codes ``` javascript https://restcountries.eu/rest/v2/alpha?codes={code};{code};{code} ``` ``` html https://restcountries.eu/rest/v2/alpha?codes=col;no;ee ``` Currency --------------- Search by ISO 4217 currency code ``` javascript https://restcountries.eu/rest/v2/currency/{currency} ``` ``` html https://restcountries.eu/rest/v2/currency/cop ``` Language --------------- Search by ISO 639-1 language code. ``` javascript https://restcountries.eu/rest/v2/lang/{et} ``` ``` html https://restcountries.eu/rest/v2/lang/es ``` Capital city --------------- Search by capital city ``` javascript https://restcountries.eu/rest/v2/capital/{capital} ``` ``` html https://restcountries.eu/rest/v2/capital/tallinn ``` Calling code --------------- Search by calling code ``` javascript https://restcountries.eu/rest/v2/callingcode/{callingcode} ``` ``` html https://restcountries.eu/rest/v2/callingcode/372 ``` Region --------------- Search by region: Africa, Americas, Asia, Europe, Oceania ``` javascript https://restcountries.eu/rest/v2/region/{region} ``` ``` html https://restcountries.eu/rest/v2/region/europe ``` Regional Bloc --------------- Search by regional bloc: - EU (European Union) - EFTA (European Free Trade Association) - CARICOM (Caribbean Community) - PA (Pacific Alliance) - AU (African Union) - USAN (Union of South American Nations) - EEU (Eurasian Economic Union) - AL (Arab League) - ASEAN (Association of Southeast Asian Nations) - CAIS (Central American Integration System) - CEFTA (Central European Free Trade Agreement) - NAFTA (North American Free Trade Agreement) - SAARC (South Asian Association for Regional Cooperation) ``` javascript https://restcountries.eu/rest/v2/regionalbloc/{regionalbloc} ``` ``` html https://restcountries.eu/rest/v2/regionalbloc/eu ``` Response Example --------------- ``` html https://restcountries.eu/rest/v2/alpha/col ``` ``` json [{ "name": "Colombia", "topLevelDomain": [".co"], "alpha2Code": "CO", "alpha3Code": "COL", "callingCodes": ["57"], "capital": "Bogotá", "altSpellings": ["CO", "Republic of Colombia", "República de Colombia"], "region": "Americas", "subregion": "South America", "population": 48759958, "latlng": [4.0, -72.0], "demonym": "Colombian", "area": 1141748.0, "gini": 55.9, "timezones": ["UTC-05:00"], "borders": ["BRA", "ECU", "PAN", "PER", "VEN"], "nativeName": "Colombia", "numericCode": "170", "currencies": [{ "code": "COP", "name": "Colombian peso", "symbol": "$" }], "languages": [{ "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" }], "translations": { "de": "Kolumbien", "es": "Colombia", "fr": "Colombie", "ja": "コロンビア", "it": "Colombia", "br": "Colômbia", "pt": "Colômbia" }, "flag": "https://restcountries.eu/data/col.svg", "regionalBlocs": [{ "acronym": "PA", "name": "Pacific Alliance", "otherAcronyms": [], "otherNames": ["Alianza del Pacífico"] }, { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], "otherNames": ["Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union"] }], "cioc": "COL" }] ``` Filter Response ======= You can filter the output of your request to include only the specified fields. ``` javascript https://restcountries.eu/rest/v2/{service}?fields={field};{field};{field} ``` ``` html https://restcountries.eu/rest/v2/all?fields=name;capital;currencies ``` Sources ======= * [@mledoze] * [List of countries] * [Languages] * [Currencies] * [Area] Similar projects ======= * [Countries of the world] * [REST Countries Node.js] * [REST Countries Ruby] * [REST Countries Go] * [REST Countries Python] * [world-currencies] License ======= [Mozilla Public License] MPL 2.0 [dist]: https://github.com/fayder/restcountries/ [Twitter]: https://twitter.com/restcountries [mailing list]: http://eepurl.com/cC-h2v [contribute]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=V5AJAEMKE6A3E [@mledoze]: https://github.com/mledoze/countries [List of countries]: https://en.wikipedia.org/wiki/ISO_3166-1#Current_codes [Languages]: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes [Currencies]: https://en.wikipedia.org/wiki/List_of_circulating_currencies [Area]: https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_area [Population]: https://en.wikipedia.org/wiki/List_of_countries_by_population [Gini coefficient]: http://en.wikipedia.org/wiki/List_of_countries_by_income_equality [Mozilla Public License]: https://www.mozilla.org/en-US/MPL/2.0/ [world-currencies]: https://github.com/wiredmax/world-currencies [REST Countries Node.js]: https://github.com/aredo/restcountries [REST Countries Ruby]: https://github.com/davidesantangelo/restcountry [REST Countries Go]: https://github.com/alediaferia/gocountries [REST Countries Python]: https://github.com/SteinRobert/python-restcountries [Countries of the world]: http://countries.petethompson.net [v1.1.2]: /v1 [five]: #five [ten]: #ten [twenty]: #twenty [fifty]: #fifty [seventy]: #seventy [hundred]: #hundred [TTÜ]: https://www.ttu.ee/studying/tut_admission/programmes-in-tut/ask-us/ [Spotify International Pricing Index]: http://mts.io/2014/05/07/spotify-pricing-index/ [Gorillaz]: http://www.gorillaz.com/ [Wanderlust]: https://wanderlust.com/ [Xero]: https://www.xero.com/ [FxPro]: http://www.fxpro.com/ [onefinestay]: https://www.onefinestay.com/ [Much Better Adventures]: https://www.muchbetteradventures.com [SKROSS]: http://www.skross.com/en ================================================ FILE: src/main/webapp/index.html ================================================ REST Countries

REST Countries

================================================ FILE: src/main/webapp/js/restc.js ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ var restc = restc || {}; $(function () { 'use strict'; $(document).on('flatdoc:ready', function() { if (location.hostname != "localhost" && location.hostname != "127.0.0.1" && location.protocol != 'https:') { location.href = location.href.replace("http://", "https://"); } var stripeHandler = StripeCheckout.configure({ key: 'pk_live_lKuAMSLFxniueaO1AcVD81HB', image: 'https://restcountries.eu/img/rc-icon.png', locale: 'auto', billingAddress: true, panelLabel: 'Contribute', token: function(token) { // You can access the token ID with `token.id`. // Get the token ID to your server-side code for use. $.ajax({ url: 'https://restcountries.eu/rest/contribute', type: 'POST', contentType: "application/json; charset=utf-8", dataType: "json", data: JSON.stringify({"token": token.id, "amount": restc.amount}), success: function(data, textStatus, jqXHR) { console.log("Contribution success"); }, error: function(jqXHR, textStatus, errorThrown) { console.log(textStatus); alert("Your contribution failed. Please contact support@restcountries.eu"); } }); } }); $('a[href="#five"]').click(function(e) { stripeHandler.open({ name: 'REST Countries', description: 'Secured by Stripe', currency: 'eur', amount: 500 }); restc.amount = 500; e.preventDefault(); }); $('a[href="#ten"]').click(function(e) { stripeHandler.open({ name: 'REST Countries', description: 'Secured by Stripe', currency: 'eur', amount: 1000 }); restc.amount = 1000; e.preventDefault(); }); $('a[href="#twenty"]').click(function(e) { stripeHandler.open({ name: 'REST Countries', description: 'Secured by Stripe', currency: 'eur', amount: 2000 }); restc.amount = 2000; e.preventDefault(); }); $('a[href="#fifty"]').click(function(e) { stripeHandler.open({ name: 'REST Countries', description: 'Secured by Stripe', currency: 'eur', amount: 5000 }); restc.amount = 5000; e.preventDefault(); }); $('a[href="#seventy"]').click(function(e) { stripeHandler.open({ name: 'REST Countries', description: 'Secured by Stripe', currency: 'eur', amount: 7000 }); restc.amount = 7000; e.preventDefault(); }); $('a[href="#hundred"]').click(function(e) { stripeHandler.open({ name: 'REST Countries', description: 'Secured by Stripe', currency: 'eur', amount: 10000 }); restc.amount = 10000; e.preventDefault(); }); // Close Checkout on page navigation: window.addEventListener('popstate', function() { stripeHandler.close(); }); }); }); ================================================ FILE: src/test/java/eu/fayder/restcountries/EmptyDataTest.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries; import com.google.gson.Gson; import com.google.gson.stream.JsonReader; import eu.fayder.restcountries.domain.BaseCountry; import org.junit.Before; import org.junit.Test; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.List; public class EmptyDataTest { List countries; @Before public void before() throws IOException { InputStream is = this.getClass().getClassLoader() .getResourceAsStream("countriesV2.json"); Gson gson = new Gson(); JsonReader reader = new JsonReader(new InputStreamReader(is, "UTF-8")); countries = new ArrayList<>(); reader.beginArray(); while (reader.hasNext()) { BaseCountry country = gson.fromJson(reader, BaseCountry.class); countries.add(country); } reader.endArray(); reader.close(); } @Test public void emptyBorders() throws Exception { System.out.println("- Empty Borders"); for (BaseCountry c : countries) { if (c.getBorders() == null || c.getBorders().isEmpty()) { System.out.println(c.getName()); } } } @Test public void emptyAreas() throws Exception { System.out.println("- Empty Areas"); for (BaseCountry c : countries) { if (c.getArea() == null) { System.out.println(c.getName()); } } } @Test public void emptyGini() throws Exception { System.out.println("- Empty Gini"); for (BaseCountry c : countries) { if (c.getGini() == null) { System.out.println(c.getName()); } } } @Test public void emptyNumericCode() throws Exception { System.out.println("- Empty Numeric Code"); for (BaseCountry c : countries) { if (c.getNumericCode() == null) { System.out.println(c.getName()); } } } @Test public void emptyPopulation() throws Exception { System.out.println("- Empty Population"); for (BaseCountry c : countries) { if (c.getPopulation() == 0) { System.out.println(c.getName()); } } } @Test public void emptyRegion() throws Exception { System.out.println("- Empty Region"); for (BaseCountry c : countries) { if (c.getRegion() == null || c.getRegion().isEmpty()) { System.out.println(c.getName()); } } } @Test public void emptyTimezones() throws Exception { System.out.println("- Empty Timezones"); for (BaseCountry c : countries) { if (c.getTimezones() == null || c.getTimezones().isEmpty()) { System.out.println(c.getName()); } else { for(String timezone : c.getTimezones()) { if (!timezone.contains("UTC")) { System.out.println(c.getName()); } } } } } } ================================================ FILE: src/test/java/eu/fayder/restcountries/v1/CountryServiceTest.java ================================================ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package eu.fayder.restcountries.v1; import java.util.List; import eu.fayder.restcountries.v1.domain.Country; import org.junit.Assert; import org.junit.Test; import eu.fayder.restcountries.v1.rest.CountryService; public class CountryServiceTest { @Test public void singletonTest() throws Exception { for(int i = 0; i < 100; i++) { new Thread(new Runnable() { @Override public void run() { CountryService.getInstance(); } }).run(); } } @Test public void getAll() throws Exception { List countries = CountryService.getInstance().getAll(); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); System.out.println("TOTAL Countries " + countries.size()); } @Test public void getByAlpha2() throws Exception { Country country = CountryService.getInstance().getByAlpha("CO"); Assert.assertNotNull(country); Assert.assertEquals("CO", country.getAlpha2Code()); } @Test public void getByAlpha3() throws Exception { Country country = CountryService.getInstance().getByAlpha("COL"); Assert.assertNotNull(country); Assert.assertEquals("COL", country.getAlpha3Code()); } @Test public void getByCodeList() throws Exception { List countries = CountryService.getInstance().getByCodeList("CO;NOR;EE"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals(3, countries.size()); for(Country country : countries) { Assert.assertTrue(country.getAlpha2Code().equals("CO") || country.getAlpha2Code().equals("NO") || country.getAlpha2Code().equals("EE")); } } @Test public void getByCurrency() throws Exception { List countries = CountryService.getInstance().getByCurrency("EUR"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); for(Country country : countries) { Assert.assertTrue(country.getCurrencies().contains("EUR")); } } @Test public void getByName() throws Exception { List countries = CountryService.getInstance().getByName("Norway", false); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals("Norway", countries.get(0).getName()); } @Test public void getByNamePriority() throws Exception { List countries = CountryService.getInstance().getByName("Iran", false); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals("Iran", countries.get(0).getName()); countries = CountryService.getInstance().getByName("United", false); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals("United States Minor Outlying Islands", countries.get(0).getName()); } @Test public void getByNameAlt() throws Exception { List countries = CountryService.getInstance().getByName("Norge", false); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals("Norway", countries.get(0).getName()); } @Test public void getByNameFullText() throws Exception { List countries = CountryService.getInstance().getByName("Russian Federation", true); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals("Russia", countries.get(0).getName()); } @Test public void getByNameFullTextNotFound() throws Exception { List countries = CountryService.getInstance().getByName("Russian Fed", true); Assert.assertNotNull(countries); Assert.assertTrue(countries.isEmpty()); } @Test public void getByCallingCode() throws Exception { List countries = CountryService.getInstance().getByCallingCode("57"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals(1, countries.size()); Assert.assertEquals("CO", countries.get(0).getAlpha2Code()); } @Test public void getByCapital() throws Exception { List countries = CountryService.getInstance().getByCapital("Tallinn"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals(1, countries.size()); Assert.assertEquals("EE", countries.get(0).getAlpha2Code()); Assert.assertEquals("Eesti", countries.get(0).getNativeName()); } @Test public void getByRegion() throws Exception { List countries = CountryService.getInstance().getByRegion("Europe"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); for(Country country : countries) { Assert.assertEquals("Europe", country.getRegion()); } } @Test public void getBySubregion() throws Exception { List countries = CountryService.getInstance().getBySubregion("Northern Europe"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); for(Country country : countries) { Assert.assertEquals("Northern Europe", country.getSubregion()); } } @Test public void getByLanguageCode() throws Exception { List countries = CountryService.getInstance().getByLanguage("en"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); for(Country country : countries) { Assert.assertTrue(country.getLanguages().contains("en")); } } } ================================================ FILE: src/test/java/eu/fayder/restcountries/v2/CountryServiceTest.java ================================================ package eu.fayder.restcountries.v2; import eu.fayder.restcountries.v2.domain.*; import eu.fayder.restcountries.v2.rest.CountryService; import org.junit.Assert; import org.junit.Test; import java.util.List; public class CountryServiceTest { @Test public void getAll() throws Exception { List countries = CountryService.getInstance().getAll(); Assert.assertFalse(countries.isEmpty()); System.out.println("TOTAL Countries " + countries.size()); } @Test public void getByAlpha2() throws Exception { Country country = CountryService.getInstance().getByAlpha("CO"); Assert.assertNotNull(country); Assert.assertEquals("CO", country.getAlpha2Code()); } @Test public void getByAlpha3() throws Exception { Country country = CountryService.getInstance().getByAlpha("COL"); Assert.assertNotNull(country); Assert.assertEquals("COL", country.getAlpha3Code()); } @Test public void getByCodeList() throws Exception { List countries = CountryService.getInstance().getByCodeList("CO;NOR;EE"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals(3, countries.size()); for (Country country : countries) { Assert.assertTrue(country.getAlpha2Code().equals("CO") || country.getAlpha2Code().equals("NO") || country.getAlpha2Code().equals("EE")); } } @Test public void getByCurrency() throws Exception { List countries = CountryService.getInstance().getByCurrency("EUR"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); for (Country country : countries) { for (Currency currency : country.getCurrencies()) { currency.getCode().equals("EUR"); } } } @Test public void getByName() throws Exception { List countries = CountryService.getInstance().getByName("Norway", false); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals("Norway", countries.get(0).getName()); } @Test public void getByNamePriority() throws Exception { List countries = CountryService.getInstance().getByName("Iran", false); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals("Iran (Islamic Republic of)", countries.get(0).getName()); countries = CountryService.getInstance().getByName("United", false); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals("United States Minor Outlying Islands", countries.get(0).getName()); } @Test public void getByNameAlt() throws Exception { List countries = CountryService.getInstance().getByName("Norge", false); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals("Norway", countries.get(0).getName()); } @Test public void getByNameFullText() throws Exception { List countries = CountryService.getInstance().getByName("Russian Federation", true); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals("Russian Federation", countries.get(0).getName()); } @Test public void getByNameFullTextNotFound() throws Exception { List countries = CountryService.getInstance().getByName("Russian Fed", true); Assert.assertNotNull(countries); Assert.assertTrue(countries.isEmpty()); } @Test public void getByCallingCode() throws Exception { List countries = CountryService.getInstance().getByCallingCode("57"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals(1, countries.size()); Assert.assertEquals("CO", countries.get(0).getAlpha2Code()); } @Test public void getByCapital() throws Exception { List countries = CountryService.getInstance().getByCapital("Tallinn"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); Assert.assertEquals(1, countries.size()); Assert.assertEquals("EE", countries.get(0).getAlpha2Code()); Assert.assertEquals("Eesti", countries.get(0).getNativeName()); } @Test public void getByRegion() throws Exception { List countries = CountryService.getInstance().getByRegion("Europe"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); for (Country country : countries) { Assert.assertEquals("Europe", country.getRegion()); } } @Test public void getByLanguageCode() throws Exception { List countries = CountryService.getInstance().getByLanguage("es"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); for (Country country : countries) { for (Language language : country.getLanguages()) { if (language.getIso639_1().equals("es")) { return; } } } Assert.fail(); } @Test public void getByDemonym() throws Exception { List countries = CountryService.getInstance().getByDemonym("french"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); for (Country country : countries) { Assert.assertEquals("french", country.getDemonym().toLowerCase()); } } @Test public void getByRegionalBloc() throws Exception { List countries = CountryService.getInstance().getByRegionalBloc("eu"); Assert.assertNotNull(countries); Assert.assertFalse(countries.isEmpty()); for (Country country : countries) { for (RegionalBloc regionalBloc : country.getRegionalBlocs()) { if (regionalBloc.getAcronym().toLowerCase().equals("eu")) { return; } } } Assert.fail(); } @Test public void translations() throws Exception { Country country = CountryService.getInstance().getByAlpha("COL"); Assert.assertNotNull(country); Translations translations = country.getTranslations(); Assert.assertEquals("Kolumbien", translations.getDe()); Assert.assertEquals("Colombia", translations.getEs()); Assert.assertEquals("Colombie", translations.getFr()); Assert.assertEquals("コロンビア", translations.getJa()); Assert.assertEquals("Colombia", translations.getIt()); Assert.assertEquals("Colômbia", translations.getBr()); Assert.assertEquals("Colômbia", translations.getPt()); } } ================================================ FILE: src/test/resources/log4j.properties ================================================ log4j.rootCategory=INFO, CONSOLE log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout log4j.appender.CONSOLE.layout.ConversionPattern=%d %-5p [%c:%L] %m%n log4j.category.fayder.restcountries=debug log4j.category.org.jboss.resteasy=info