Skip to content

Instantly share code, notes, and snippets.

@incredimike
Last active July 24, 2025 12:21
Show Gist options
  • Save incredimike/1469814 to your computer and use it in GitHub Desktop.
Save incredimike/1469814 to your computer and use it in GitHub Desktop.
List of Countries in various Javascript data structures: Alphabetical country lists & Country data objects.
// Lists of countries with ISO 3166 codes, presented in various formats.
// Last Updated: July 30, 2020
// If you're using PHP, I suggest checking out:
// https://github.com/thephpleague/iso3166
// or Laravel: https://github.com/squirephp/squire
//
// JS developers can check out:
// https://www.npmjs.com/package/iso3166-2-db
//
// License: CC0 1.0 Universal
// https://creativecommons.org/publicdomain/zero/1.0/
// List of all countries in a simple list / array.
// Sorted alphabetical by country name (special characters on bottom)
const countryList = [
"Afghanistan",
"Albania",
"Algeria",
"American Samoa",
"Andorra",
"Angola",
"Anguilla",
"Antarctica",
"Antigua and Barbuda",
"Argentina",
"Armenia",
"Aruba",
"Australia",
"Austria",
"Azerbaijan",
"Bahamas (the)",
"Bahrain",
"Bangladesh",
"Barbados",
"Belarus",
"Belgium",
"Belize",
"Benin",
"Bermuda",
"Bhutan",
"Bolivia (Plurinational State of)",
"Bonaire, Sint Eustatius and Saba",
"Bosnia and Herzegovina",
"Botswana",
"Bouvet Island",
"Brazil",
"British Indian Ocean Territory (the)",
"Brunei Darussalam",
"Bulgaria",
"Burkina Faso",
"Burundi",
"Cabo Verde",
"Cambodia",
"Cameroon",
"Canada",
"Cayman Islands (the)",
"Central African Republic (the)",
"Chad",
"Chile",
"China",
"Christmas Island",
"Cocos (Keeling) Islands (the)",
"Colombia",
"Comoros (the)",
"Congo (the Democratic Republic of the)",
"Congo (the)",
"Cook Islands (the)",
"Costa Rica",
"Croatia",
"Cuba",
"Curaçao",
"Cyprus",
"Czechia",
"Côte d'Ivoire",
"Denmark",
"Djibouti",
"Dominica",
"Dominican Republic (the)",
"Ecuador",
"Egypt",
"El Salvador",
"Equatorial Guinea",
"Eritrea",
"Estonia",
"Eswatini",
"Ethiopia",
"Falkland Islands (the) [Malvinas]",
"Faroe Islands (the)",
"Fiji",
"Finland",
"France",
"French Guiana",
"French Polynesia",
"French Southern Territories (the)",
"Gabon",
"Gambia (the)",
"Georgia",
"Germany",
"Ghana",
"Gibraltar",
"Greece",
"Greenland",
"Grenada",
"Guadeloupe",
"Guam",
"Guatemala",
"Guernsey",
"Guinea",
"Guinea-Bissau",
"Guyana",
"Haiti",
"Heard Island and McDonald Islands",
"Holy See (the)",
"Honduras",
"Hong Kong",
"Hungary",
"Iceland",
"India",
"Indonesia",
"Iran (Islamic Republic of)",
"Iraq",
"Ireland",
"Isle of Man",
"Israel",
"Italy",
"Jamaica",
"Japan",
"Jersey",
"Jordan",
"Kazakhstan",
"Kenya",
"Kiribati",
"Korea (the Democratic People's Republic of)",
"Korea (the Republic of)",
"Kuwait",
"Kyrgyzstan",
"Lao People's Democratic Republic (the)",
"Latvia",
"Lebanon",
"Lesotho",
"Liberia",
"Libya",
"Liechtenstein",
"Lithuania",
"Luxembourg",
"Macao",
"Madagascar",
"Malawi",
"Malaysia",
"Maldives",
"Mali",
"Malta",
"Marshall Islands (the)",
"Martinique",
"Mauritania",
"Mauritius",
"Mayotte",
"Mexico",
"Micronesia (Federated States of)",
"Moldova (the Republic of)",
"Monaco",
"Mongolia",
"Montenegro",
"Montserrat",
"Morocco",
"Mozambique",
"Myanmar",
"Namibia",
"Nauru",
"Nepal",
"Netherlands (the)",
"New Caledonia",
"New Zealand",
"Nicaragua",
"Niger (the)",
"Nigeria",
"Niue",
"Norfolk Island",
"Northern Mariana Islands (the)",
"Norway",
"Oman",
"Pakistan",
"Palau",
"Palestine, State of",
"Panama",
"Papua New Guinea",
"Paraguay",
"Peru",
"Philippines (the)",
"Pitcairn",
"Poland",
"Portugal",
"Puerto Rico",
"Qatar",
"Republic of North Macedonia",
"Romania",
"Russian Federation (the)",
"Rwanda",
"Réunion",
"Saint Barthélemy",
"Saint Helena, Ascension and Tristan da Cunha",
"Saint Kitts and Nevis",
"Saint Lucia",
"Saint Martin (French part)",
"Saint Pierre and Miquelon",
"Saint Vincent and the Grenadines",
"Samoa",
"San Marino",
"Sao Tome and Principe",
"Saudi Arabia",
"Senegal",
"Serbia",
"Seychelles",
"Sierra Leone",
"Singapore",
"Sint Maarten (Dutch part)",
"Slovakia",
"Slovenia",
"Solomon Islands",
"Somalia",
"South Africa",
"South Georgia and the South Sandwich Islands",
"South Sudan",
"Spain",
"Sri Lanka",
"Sudan (the)",
"Suriname",
"Svalbard and Jan Mayen",
"Sweden",
"Switzerland",
"Syrian Arab Republic",
"Taiwan",
"Tajikistan",
"Tanzania, United Republic of",
"Thailand",
"Timor-Leste",
"Togo",
"Tokelau",
"Tonga",
"Trinidad and Tobago",
"Tunisia",
"Turkey",
"Turkmenistan",
"Turks and Caicos Islands (the)",
"Tuvalu",
"Uganda",
"Ukraine",
"United Arab Emirates (the)",
"United Kingdom of Great Britain and Northern Ireland (the)",
"United States Minor Outlying Islands (the)",
"United States of America (the)",
"Uruguay",
"Uzbekistan",
"Vanuatu",
"Venezuela (Bolivarian Republic of)",
"Viet Nam",
"Virgin Islands (British)",
"Virgin Islands (U.S.)",
"Wallis and Futuna",
"Western Sahara",
"Yemen",
"Zambia",
"Zimbabwe",
"Åland Islands"
];
// Country names object using 2-letter country codes to reference country name
// ISO 3166 Alpha-2 Format: [2 letter Country Code]: [Country Name]
// Sorted alphabetical by country name (special characters on bottom)
const countryListAlpha2 = {
"AF": "Afghanistan",
"AL": "Albania",
"DZ": "Algeria",
"AS": "American Samoa",
"AD": "Andorra",
"AO": "Angola",
"AI": "Anguilla",
"AQ": "Antarctica",
"AG": "Antigua and Barbuda",
"AR": "Argentina",
"AM": "Armenia",
"AW": "Aruba",
"AU": "Australia",
"AT": "Austria",
"AZ": "Azerbaijan",
"BS": "Bahamas (the)",
"BH": "Bahrain",
"BD": "Bangladesh",
"BB": "Barbados",
"BY": "Belarus",
"BE": "Belgium",
"BZ": "Belize",
"BJ": "Benin",
"BM": "Bermuda",
"BT": "Bhutan",
"BO": "Bolivia (Plurinational State of)",
"BQ": "Bonaire, Sint Eustatius and Saba",
"BA": "Bosnia and Herzegovina",
"BW": "Botswana",
"BV": "Bouvet Island",
"BR": "Brazil",
"IO": "British Indian Ocean Territory (the)",
"BN": "Brunei Darussalam",
"BG": "Bulgaria",
"BF": "Burkina Faso",
"BI": "Burundi",
"CV": "Cabo Verde",
"KH": "Cambodia",
"CM": "Cameroon",
"CA": "Canada",
"KY": "Cayman Islands (the)",
"CF": "Central African Republic (the)",
"TD": "Chad",
"CL": "Chile",
"CN": "China",
"CX": "Christmas Island",
"CC": "Cocos (Keeling) Islands (the)",
"CO": "Colombia",
"KM": "Comoros (the)",
"CD": "Congo (the Democratic Republic of the)",
"CG": "Congo (the)",
"CK": "Cook Islands (the)",
"CR": "Costa Rica",
"HR": "Croatia",
"CU": "Cuba",
"CW": "Curaçao",
"CY": "Cyprus",
"CZ": "Czechia",
"CI": "Côte d'Ivoire",
"DK": "Denmark",
"DJ": "Djibouti",
"DM": "Dominica",
"DO": "Dominican Republic (the)",
"EC": "Ecuador",
"EG": "Egypt",
"SV": "El Salvador",
"GQ": "Equatorial Guinea",
"ER": "Eritrea",
"EE": "Estonia",
"SZ": "Eswatini",
"ET": "Ethiopia",
"FK": "Falkland Islands (the) [Malvinas]",
"FO": "Faroe Islands (the)",
"FJ": "Fiji",
"FI": "Finland",
"FR": "France",
"GF": "French Guiana",
"PF": "French Polynesia",
"TF": "French Southern Territories (the)",
"GA": "Gabon",
"GM": "Gambia (the)",
"GE": "Georgia",
"DE": "Germany",
"GH": "Ghana",
"GI": "Gibraltar",
"GR": "Greece",
"GL": "Greenland",
"GD": "Grenada",
"GP": "Guadeloupe",
"GU": "Guam",
"GT": "Guatemala",
"GG": "Guernsey",
"GN": "Guinea",
"GW": "Guinea-Bissau",
"GY": "Guyana",
"HT": "Haiti",
"HM": "Heard Island and McDonald Islands",
"VA": "Holy See (the)",
"HN": "Honduras",
"HK": "Hong Kong",
"HU": "Hungary",
"IS": "Iceland",
"IN": "India",
"ID": "Indonesia",
"IR": "Iran (Islamic Republic of)",
"IQ": "Iraq",
"IE": "Ireland",
"IM": "Isle of Man",
"IL": "Israel",
"IT": "Italy",
"JM": "Jamaica",
"JP": "Japan",
"JE": "Jersey",
"JO": "Jordan",
"KZ": "Kazakhstan",
"KE": "Kenya",
"KI": "Kiribati",
"KP": "Korea (the Democratic People's Republic of)",
"KR": "Korea (the Republic of)",
"KW": "Kuwait",
"KG": "Kyrgyzstan",
"LA": "Lao People's Democratic Republic (the)",
"LV": "Latvia",
"LB": "Lebanon",
"LS": "Lesotho",
"LR": "Liberia",
"LY": "Libya",
"LI": "Liechtenstein",
"LT": "Lithuania",
"LU": "Luxembourg",
"MO": "Macao",
"MG": "Madagascar",
"MW": "Malawi",
"MY": "Malaysia",
"MV": "Maldives",
"ML": "Mali",
"MT": "Malta",
"MH": "Marshall Islands (the)",
"MQ": "Martinique",
"MR": "Mauritania",
"MU": "Mauritius",
"YT": "Mayotte",
"MX": "Mexico",
"FM": "Micronesia (Federated States of)",
"MD": "Moldova (the Republic of)",
"MC": "Monaco",
"MN": "Mongolia",
"ME": "Montenegro",
"MS": "Montserrat",
"MA": "Morocco",
"MZ": "Mozambique",
"MM": "Myanmar",
"NA": "Namibia",
"NR": "Nauru",
"NP": "Nepal",
"NL": "Netherlands (the)",
"NC": "New Caledonia",
"NZ": "New Zealand",
"NI": "Nicaragua",
"NE": "Niger (the)",
"NG": "Nigeria",
"NU": "Niue",
"NF": "Norfolk Island",
"MP": "Northern Mariana Islands (the)",
"NO": "Norway",
"OM": "Oman",
"PK": "Pakistan",
"PW": "Palau",
"PS": "Palestine, State of",
"PA": "Panama",
"PG": "Papua New Guinea",
"PY": "Paraguay",
"PE": "Peru",
"PH": "Philippines (the)",
"PN": "Pitcairn",
"PL": "Poland",
"PT": "Portugal",
"PR": "Puerto Rico",
"QA": "Qatar",
"MK": "Republic of North Macedonia",
"RO": "Romania",
"RU": "Russian Federation (the)",
"RW": "Rwanda",
"RE": "Réunion",
"BL": "Saint Barthélemy",
"SH": "Saint Helena, Ascension and Tristan da Cunha",
"KN": "Saint Kitts and Nevis",
"LC": "Saint Lucia",
"MF": "Saint Martin (French part)",
"PM": "Saint Pierre and Miquelon",
"VC": "Saint Vincent and the Grenadines",
"WS": "Samoa",
"SM": "San Marino",
"ST": "Sao Tome and Principe",
"SA": "Saudi Arabia",
"SN": "Senegal",
"RS": "Serbia",
"SC": "Seychelles",
"SL": "Sierra Leone",
"SG": "Singapore",
"SX": "Sint Maarten (Dutch part)",
"SK": "Slovakia",
"SI": "Slovenia",
"SB": "Solomon Islands",
"SO": "Somalia",
"ZA": "South Africa",
"GS": "South Georgia and the South Sandwich Islands",
"SS": "South Sudan",
"ES": "Spain",
"LK": "Sri Lanka",
"SD": "Sudan (the)",
"SR": "Suriname",
"SJ": "Svalbard and Jan Mayen",
"SE": "Sweden",
"CH": "Switzerland",
"SY": "Syrian Arab Republic",
"TW": "Taiwan",
"TJ": "Tajikistan",
"TZ": "Tanzania, United Republic of",
"TH": "Thailand",
"TL": "Timor-Leste",
"TG": "Togo",
"TK": "Tokelau",
"TO": "Tonga",
"TT": "Trinidad and Tobago",
"TN": "Tunisia",
"TR": "Turkey",
"TM": "Turkmenistan",
"TC": "Turks and Caicos Islands (the)",
"TV": "Tuvalu",
"UG": "Uganda",
"UA": "Ukraine",
"AE": "United Arab Emirates (the)",
"GB": "United Kingdom of Great Britain and Northern Ireland (the)",
"UM": "United States Minor Outlying Islands (the)",
"US": "United States of America (the)",
"UY": "Uruguay",
"UZ": "Uzbekistan",
"VU": "Vanuatu",
"VE": "Venezuela (Bolivarian Republic of)",
"VN": "Viet Nam",
"VG": "Virgin Islands (British)",
"VI": "Virgin Islands (U.S.)",
"WF": "Wallis and Futuna",
"EH": "Western Sahara",
"YE": "Yemen",
"ZM": "Zambia",
"ZW": "Zimbabwe",
"AX": "Åland Islands"
};
// Country names object using 3-letter country codes to reference country name
// ISO 3166 Alpha-3 Format: [3 letter Country Code]: [Country Name]
// Sorted alphabetical by country name (special characters on bottom)
const countryListAlpha3 = {
"AFG": "Afghanistan",
"ALB": "Albania",
"DZA": "Algeria",
"ASM": "American Samoa",
"AND": "Andorra",
"AGO": "Angola",
"AIA": "Anguilla",
"ATA": "Antarctica",
"ATG": "Antigua and Barbuda",
"ARG": "Argentina",
"ARM": "Armenia",
"ABW": "Aruba",
"AUS": "Australia",
"AUT": "Austria",
"AZE": "Azerbaijan",
"BHS": "Bahamas (the)",
"BHR": "Bahrain",
"BGD": "Bangladesh",
"BRB": "Barbados",
"BLR": "Belarus",
"BEL": "Belgium",
"BLZ": "Belize",
"BEN": "Benin",
"BMU": "Bermuda",
"BTN": "Bhutan",
"BOL": "Bolivia (Plurinational State of)",
"BES": "Bonaire, Sint Eustatius and Saba",
"BIH": "Bosnia and Herzegovina",
"BWA": "Botswana",
"BVT": "Bouvet Island",
"BRA": "Brazil",
"IOT": "British Indian Ocean Territory (the)",
"BRN": "Brunei Darussalam",
"BGR": "Bulgaria",
"BFA": "Burkina Faso",
"BDI": "Burundi",
"CPV": "Cabo Verde",
"KHM": "Cambodia",
"CMR": "Cameroon",
"CAN": "Canada",
"CYM": "Cayman Islands (the)",
"CAF": "Central African Republic (the)",
"TCD": "Chad",
"CHL": "Chile",
"CHN": "China",
"CXR": "Christmas Island",
"CCK": "Cocos (Keeling) Islands (the)",
"COL": "Colombia",
"COM": "Comoros (the)",
"COD": "Congo (the Democratic Republic of the)",
"COG": "Congo (the)",
"COK": "Cook Islands (the)",
"CRI": "Costa Rica",
"HRV": "Croatia",
"CUB": "Cuba",
"CUW": "Curaçao",
"CYP": "Cyprus",
"CZE": "Czechia",
"CIV": "Côte d'Ivoire",
"DNK": "Denmark",
"DJI": "Djibouti",
"DMA": "Dominica",
"DOM": "Dominican Republic (the)",
"ECU": "Ecuador",
"EGY": "Egypt",
"SLV": "El Salvador",
"GNQ": "Equatorial Guinea",
"ERI": "Eritrea",
"EST": "Estonia",
"SWZ": "Eswatini",
"ETH": "Ethiopia",
"FLK": "Falkland Islands (the) [Malvinas]",
"FRO": "Faroe Islands (the)",
"FJI": "Fiji",
"FIN": "Finland",
"FRA": "France",
"GUF": "French Guiana",
"PYF": "French Polynesia",
"ATF": "French Southern Territories (the)",
"GAB": "Gabon",
"GMB": "Gambia (the)",
"GEO": "Georgia",
"DEU": "Germany",
"GHA": "Ghana",
"GIB": "Gibraltar",
"GRC": "Greece",
"GRL": "Greenland",
"GRD": "Grenada",
"GLP": "Guadeloupe",
"GUM": "Guam",
"GTM": "Guatemala",
"GGY": "Guernsey",
"GIN": "Guinea",
"GNB": "Guinea-Bissau",
"GUY": "Guyana",
"HTI": "Haiti",
"HMD": "Heard Island and McDonald Islands",
"VAT": "Holy See (the)",
"HND": "Honduras",
"HKG": "Hong Kong",
"HUN": "Hungary",
"ISL": "Iceland",
"IND": "India",
"IDN": "Indonesia",
"IRN": "Iran (Islamic Republic of)",
"IRQ": "Iraq",
"IRL": "Ireland",
"IMN": "Isle of Man",
"ISR": "Israel",
"ITA": "Italy",
"JAM": "Jamaica",
"JPN": "Japan",
"JEY": "Jersey",
"JOR": "Jordan",
"KAZ": "Kazakhstan",
"KEN": "Kenya",
"KIR": "Kiribati",
"PRK": "Korea (the Democratic People's Republic of)",
"KOR": "Korea (the Republic of)",
"KWT": "Kuwait",
"KGZ": "Kyrgyzstan",
"LAO": "Lao People's Democratic Republic (the)",
"LVA": "Latvia",
"LBN": "Lebanon",
"LSO": "Lesotho",
"LBR": "Liberia",
"LBY": "Libya",
"LIE": "Liechtenstein",
"LTU": "Lithuania",
"LUX": "Luxembourg",
"MAC": "Macao",
"MDG": "Madagascar",
"MWI": "Malawi",
"MYS": "Malaysia",
"MDV": "Maldives",
"MLI": "Mali",
"MLT": "Malta",
"MHL": "Marshall Islands (the)",
"MTQ": "Martinique",
"MRT": "Mauritania",
"MUS": "Mauritius",
"MYT": "Mayotte",
"MEX": "Mexico",
"FSM": "Micronesia (Federated States of)",
"MDA": "Moldova (the Republic of)",
"MCO": "Monaco",
"MNG": "Mongolia",
"MNE": "Montenegro",
"MSR": "Montserrat",
"MAR": "Morocco",
"MOZ": "Mozambique",
"MMR": "Myanmar",
"NAM": "Namibia",
"NRU": "Nauru",
"NPL": "Nepal",
"NLD": "Netherlands (the)",
"NCL": "New Caledonia",
"NZL": "New Zealand",
"NIC": "Nicaragua",
"NER": "Niger (the)",
"NGA": "Nigeria",
"NIU": "Niue",
"NFK": "Norfolk Island",
"MNP": "Northern Mariana Islands (the)",
"NOR": "Norway",
"OMN": "Oman",
"PAK": "Pakistan",
"PLW": "Palau",
"PSE": "Palestine, State of",
"PAN": "Panama",
"PNG": "Papua New Guinea",
"PRY": "Paraguay",
"PER": "Peru",
"PHL": "Philippines (the)",
"PCN": "Pitcairn",
"POL": "Poland",
"PRT": "Portugal",
"PRI": "Puerto Rico",
"QAT": "Qatar",
"MKD": "Republic of North Macedonia",
"ROU": "Romania",
"RUS": "Russian Federation (the)",
"RWA": "Rwanda",
"REU": "Réunion",
"BLM": "Saint Barthélemy",
"SHN": "Saint Helena, Ascension and Tristan da Cunha",
"KNA": "Saint Kitts and Nevis",
"LCA": "Saint Lucia",
"MAF": "Saint Martin (French part)",
"SPM": "Saint Pierre and Miquelon",
"VCT": "Saint Vincent and the Grenadines",
"WSM": "Samoa",
"SMR": "San Marino",
"STP": "Sao Tome and Principe",
"SAU": "Saudi Arabia",
"SEN": "Senegal",
"SRB": "Serbia",
"SYC": "Seychelles",
"SLE": "Sierra Leone",
"SGP": "Singapore",
"SXM": "Sint Maarten (Dutch part)",
"SVK": "Slovakia",
"SVN": "Slovenia",
"SLB": "Solomon Islands",
"SOM": "Somalia",
"ZAF": "South Africa",
"SGS": "South Georgia and the South Sandwich Islands",
"SSD": "South Sudan",
"ESP": "Spain",
"LKA": "Sri Lanka",
"SDN": "Sudan (the)",
"SUR": "Suriname",
"SJM": "Svalbard and Jan Mayen",
"SWE": "Sweden",
"CHE": "Switzerland",
"SYR": "Syrian Arab Republic",
"TWN": "Taiwan",
"TJK": "Tajikistan",
"TZA": "Tanzania, United Republic of",
"THA": "Thailand",
"TLS": "Timor-Leste",
"TGO": "Togo",
"TKL": "Tokelau",
"TON": "Tonga",
"TTO": "Trinidad and Tobago",
"TUN": "Tunisia",
"TUR": "Turkey",
"TKM": "Turkmenistan",
"TCA": "Turks and Caicos Islands (the)",
"TUV": "Tuvalu",
"UGA": "Uganda",
"UKR": "Ukraine",
"ARE": "United Arab Emirates (the)",
"GBR": "United Kingdom of Great Britain and Northern Ireland (the)",
"UMI": "United States Minor Outlying Islands (the)",
"USA": "United States of America (the)",
"URY": "Uruguay",
"UZB": "Uzbekistan",
"VUT": "Vanuatu",
"VEN": "Venezuela (Bolivarian Republic of)",
"VNM": "Viet Nam",
"VGB": "Virgin Islands (British)",
"VIR": "Virgin Islands (U.S.)",
"WLF": "Wallis and Futuna",
"ESH": "Western Sahara",
"YEM": "Yemen",
"ZMB": "Zambia",
"ZWE": "Zimbabwe",
"ALA": "Åland Islands"
};
// Country names object using numeric country codes to reference country name
// ISO 3166 Numberic Format: [Numeric Country Code]: [Country Name]
// Sorted alphabetical by country name (special characters on bottom)
const countryListNumeric = {
"004": "Afghanistan",
"008": "Albania",
"012": "Algeria",
"016": "American Samoa",
"020": "Andorra",
"024": "Angola",
"660": "Anguilla",
"010": "Antarctica",
"028": "Antigua and Barbuda",
"032": "Argentina",
"051": "Armenia",
"533": "Aruba",
"036": "Australia",
"040": "Austria",
"031": "Azerbaijan",
"044": "Bahamas (the)",
"048": "Bahrain",
"050": "Bangladesh",
"052": "Barbados",
"112": "Belarus",
"056": "Belgium",
"084": "Belize",
"204": "Benin",
"060": "Bermuda",
"064": "Bhutan",
"068": "Bolivia (Plurinational State of)",
"535": "Bonaire, Sint Eustatius and Saba",
"070": "Bosnia and Herzegovina",
"072": "Botswana",
"074": "Bouvet Island",
"076": "Brazil",
"086": "British Indian Ocean Territory (the)",
"096": "Brunei Darussalam",
"100": "Bulgaria",
"854": "Burkina Faso",
"108": "Burundi",
"132": "Cabo Verde",
"116": "Cambodia",
"120": "Cameroon",
"124": "Canada",
"136": "Cayman Islands (the)",
"140": "Central African Republic (the)",
"148": "Chad",
"152": "Chile",
"156": "China",
"162": "Christmas Island",
"166": "Cocos (Keeling) Islands (the)",
"170": "Colombia",
"174": "Comoros (the)",
"180": "Congo (the Democratic Republic of the)",
"178": "Congo (the)",
"184": "Cook Islands (the)",
"188": "Costa Rica",
"191": "Croatia",
"192": "Cuba",
"531": "Curaçao",
"196": "Cyprus",
"203": "Czechia",
"384": "Côte d'Ivoire",
"208": "Denmark",
"262": "Djibouti",
"212": "Dominica",
"214": "Dominican Republic (the)",
"218": "Ecuador",
"818": "Egypt",
"222": "El Salvador",
"226": "Equatorial Guinea",
"232": "Eritrea",
"233": "Estonia",
"748": "Eswatini",
"231": "Ethiopia",
"238": "Falkland Islands (the) [Malvinas]",
"234": "Faroe Islands (the)",
"242": "Fiji",
"246": "Finland",
"250": "France",
"254": "French Guiana",
"258": "French Polynesia",
"260": "French Southern Territories (the)",
"266": "Gabon",
"270": "Gambia (the)",
"268": "Georgia",
"276": "Germany",
"288": "Ghana",
"292": "Gibraltar",
"300": "Greece",
"304": "Greenland",
"308": "Grenada",
"312": "Guadeloupe",
"316": "Guam",
"320": "Guatemala",
"831": "Guernsey",
"324": "Guinea",
"624": "Guinea-Bissau",
"328": "Guyana",
"332": "Haiti",
"334": "Heard Island and McDonald Islands",
"336": "Holy See (the)",
"340": "Honduras",
"344": "Hong Kong",
"348": "Hungary",
"352": "Iceland",
"356": "India",
"360": "Indonesia",
"364": "Iran (Islamic Republic of)",
"368": "Iraq",
"372": "Ireland",
"833": "Isle of Man",
"376": "Israel",
"380": "Italy",
"388": "Jamaica",
"392": "Japan",
"832": "Jersey",
"400": "Jordan",
"398": "Kazakhstan",
"404": "Kenya",
"296": "Kiribati",
"408": "Korea (the Democratic People's Republic of)",
"410": "Korea (the Republic of)",
"414": "Kuwait",
"417": "Kyrgyzstan",
"418": "Lao People's Democratic Republic (the)",
"428": "Latvia",
"422": "Lebanon",
"426": "Lesotho",
"430": "Liberia",
"434": "Libya",
"438": "Liechtenstein",
"440": "Lithuania",
"442": "Luxembourg",
"446": "Macao",
"450": "Madagascar",
"454": "Malawi",
"458": "Malaysia",
"462": "Maldives",
"466": "Mali",
"470": "Malta",
"584": "Marshall Islands (the)",
"474": "Martinique",
"478": "Mauritania",
"480": "Mauritius",
"175": "Mayotte",
"484": "Mexico",
"583": "Micronesia (Federated States of)",
"498": "Moldova (the Republic of)",
"492": "Monaco",
"496": "Mongolia",
"499": "Montenegro",
"500": "Montserrat",
"504": "Morocco",
"508": "Mozambique",
"104": "Myanmar",
"516": "Namibia",
"520": "Nauru",
"524": "Nepal",
"528": "Netherlands (the)",
"540": "New Caledonia",
"554": "New Zealand",
"558": "Nicaragua",
"562": "Niger (the)",
"566": "Nigeria",
"570": "Niue",
"574": "Norfolk Island",
"580": "Northern Mariana Islands (the)",
"578": "Norway",
"512": "Oman",
"586": "Pakistan",
"585": "Palau",
"275": "Palestine, State of",
"591": "Panama",
"598": "Papua New Guinea",
"600": "Paraguay",
"604": "Peru",
"608": "Philippines (the)",
"612": "Pitcairn",
"616": "Poland",
"620": "Portugal",
"630": "Puerto Rico",
"634": "Qatar",
"807": "Republic of North Macedonia",
"642": "Romania",
"643": "Russian Federation (the)",
"646": "Rwanda",
"638": "Réunion",
"652": "Saint Barthélemy",
"654": "Saint Helena, Ascension and Tristan da Cunha",
"659": "Saint Kitts and Nevis",
"662": "Saint Lucia",
"663": "Saint Martin (French part)",
"666": "Saint Pierre and Miquelon",
"670": "Saint Vincent and the Grenadines",
"882": "Samoa",
"674": "San Marino",
"678": "Sao Tome and Principe",
"682": "Saudi Arabia",
"686": "Senegal",
"688": "Serbia",
"690": "Seychelles",
"694": "Sierra Leone",
"702": "Singapore",
"534": "Sint Maarten (Dutch part)",
"703": "Slovakia",
"705": "Slovenia",
"090": "Solomon Islands",
"706": "Somalia",
"710": "South Africa",
"239": "South Georgia and the South Sandwich Islands",
"728": "South Sudan",
"724": "Spain",
"144": "Sri Lanka",
"729": "Sudan (the)",
"740": "Suriname",
"744": "Svalbard and Jan Mayen",
"752": "Sweden",
"756": "Switzerland",
"760": "Syrian Arab Republic",
"158": "Taiwan",
"762": "Tajikistan",
"834": "Tanzania, United Republic of",
"764": "Thailand",
"626": "Timor-Leste",
"768": "Togo",
"772": "Tokelau",
"776": "Tonga",
"780": "Trinidad and Tobago",
"788": "Tunisia",
"792": "Turkey",
"795": "Turkmenistan",
"796": "Turks and Caicos Islands (the)",
"798": "Tuvalu",
"800": "Uganda",
"804": "Ukraine",
"784": "United Arab Emirates (the)",
"826": "United Kingdom of Great Britain and Northern Ireland (the)",
"581": "United States Minor Outlying Islands (the)",
"840": "United States of America (the)",
"858": "Uruguay",
"860": "Uzbekistan",
"548": "Vanuatu",
"862": "Venezuela (Bolivarian Republic of)",
"704": "Viet Nam",
"092": "Virgin Islands (British)",
"850": "Virgin Islands (U.S.)",
"876": "Wallis and Futuna",
"732": "Western Sahara",
"887": "Yemen",
"894": "Zambia",
"716": "Zimbabwe",
"248": "Åland Islands"
};
// All simple ISO 3166 country data
// including: 2-character, 3-character, full country name and numeric code.
// Sorted alphabetical by country name (special characters on bottom)
const countryListAllIsoData = [
{"code": "AF", "code3": "AFG", "name": "Afghanistan", "number": "004"},
{"code": "AL", "code3": "ALB", "name": "Albania", "number": "008"},
{"code": "DZ", "code3": "DZA", "name": "Algeria", "number": "012"},
{"code": "AS", "code3": "ASM", "name": "American Samoa", "number": "016"},
{"code": "AD", "code3": "AND", "name": "Andorra", "number": "020"},
{"code": "AO", "code3": "AGO", "name": "Angola", "number": "024"},
{"code": "AI", "code3": "AIA", "name": "Anguilla", "number": "660"},
{"code": "AQ", "code3": "ATA", "name": "Antarctica", "number": "010"},
{"code": "AG", "code3": "ATG", "name": "Antigua and Barbuda", "number": "028"},
{"code": "AR", "code3": "ARG", "name": "Argentina", "number": "032"},
{"code": "AM", "code3": "ARM", "name": "Armenia", "number": "051"},
{"code": "AW", "code3": "ABW", "name": "Aruba", "number": "533"},
{"code": "AU", "code3": "AUS", "name": "Australia", "number": "036"},
{"code": "AT", "code3": "AUT", "name": "Austria", "number": "040"},
{"code": "AZ", "code3": "AZE", "name": "Azerbaijan", "number": "031"},
{"code": "BS", "code3": "BHS", "name": "Bahamas (the)", "number": "044"},
{"code": "BH", "code3": "BHR", "name": "Bahrain", "number": "048"},
{"code": "BD", "code3": "BGD", "name": "Bangladesh", "number": "050"},
{"code": "BB", "code3": "BRB", "name": "Barbados", "number": "052"},
{"code": "BY", "code3": "BLR", "name": "Belarus", "number": "112"},
{"code": "BE", "code3": "BEL", "name": "Belgium", "number": "056"},
{"code": "BZ", "code3": "BLZ", "name": "Belize", "number": "084"},
{"code": "BJ", "code3": "BEN", "name": "Benin", "number": "204"},
{"code": "BM", "code3": "BMU", "name": "Bermuda", "number": "060"},
{"code": "BT", "code3": "BTN", "name": "Bhutan", "number": "064"},
{"code": "BO", "code3": "BOL", "name": "Bolivia (Plurinational State of)", "number": "068"},
{"code": "BQ", "code3": "BES", "name": "Bonaire, Sint Eustatius and Saba", "number": "535"},
{"code": "BA", "code3": "BIH", "name": "Bosnia and Herzegovina", "number": "070"},
{"code": "BW", "code3": "BWA", "name": "Botswana", "number": "072"},
{"code": "BV", "code3": "BVT", "name": "Bouvet Island", "number": "074"},
{"code": "BR", "code3": "BRA", "name": "Brazil", "number": "076"},
{"code": "IO", "code3": "IOT", "name": "British Indian Ocean Territory (the)", "number": "086"},
{"code": "BN", "code3": "BRN", "name": "Brunei Darussalam", "number": "096"},
{"code": "BG", "code3": "BGR", "name": "Bulgaria", "number": "100"},
{"code": "BF", "code3": "BFA", "name": "Burkina Faso", "number": "854"},
{"code": "BI", "code3": "BDI", "name": "Burundi", "number": "108"},
{"code": "CV", "code3": "CPV", "name": "Cabo Verde", "number": "132"},
{"code": "KH", "code3": "KHM", "name": "Cambodia", "number": "116"},
{"code": "CM", "code3": "CMR", "name": "Cameroon", "number": "120"},
{"code": "CA", "code3": "CAN", "name": "Canada", "number": "124"},
{"code": "KY", "code3": "CYM", "name": "Cayman Islands (the)", "number": "136"},
{"code": "CF", "code3": "CAF", "name": "Central African Republic (the)", "number": "140"},
{"code": "TD", "code3": "TCD", "name": "Chad", "number": "148"},
{"code": "CL", "code3": "CHL", "name": "Chile", "number": "152"},
{"code": "CN", "code3": "CHN", "name": "China", "number": "156"},
{"code": "CX", "code3": "CXR", "name": "Christmas Island", "number": "162"},
{"code": "CC", "code3": "CCK", "name": "Cocos (Keeling) Islands (the)", "number": "166"},
{"code": "CO", "code3": "COL", "name": "Colombia", "number": "170"},
{"code": "KM", "code3": "COM", "name": "Comoros (the)", "number": "174"},
{"code": "CD", "code3": "COD", "name": "Congo (the Democratic Republic of the)", "number": "180"},
{"code": "CG", "code3": "COG", "name": "Congo (the)", "number": "178"},
{"code": "CK", "code3": "COK", "name": "Cook Islands (the)", "number": "184"},
{"code": "CR", "code3": "CRI", "name": "Costa Rica", "number": "188"},
{"code": "HR", "code3": "HRV", "name": "Croatia", "number": "191"},
{"code": "CU", "code3": "CUB", "name": "Cuba", "number": "192"},
{"code": "CW", "code3": "CUW", "name": "Curaçao", "number": "531"},
{"code": "CY", "code3": "CYP", "name": "Cyprus", "number": "196"},
{"code": "CZ", "code3": "CZE", "name": "Czechia", "number": "203"},
{"code": "CI", "code3": "CIV", "name": "Côte d'Ivoire", "number": "384"},
{"code": "DK", "code3": "DNK", "name": "Denmark", "number": "208"},
{"code": "DJ", "code3": "DJI", "name": "Djibouti", "number": "262"},
{"code": "DM", "code3": "DMA", "name": "Dominica", "number": "212"},
{"code": "DO", "code3": "DOM", "name": "Dominican Republic (the)", "number": "214"},
{"code": "EC", "code3": "ECU", "name": "Ecuador", "number": "218"},
{"code": "EG", "code3": "EGY", "name": "Egypt", "number": "818"},
{"code": "SV", "code3": "SLV", "name": "El Salvador", "number": "222"},
{"code": "GQ", "code3": "GNQ", "name": "Equatorial Guinea", "number": "226"},
{"code": "ER", "code3": "ERI", "name": "Eritrea", "number": "232"},
{"code": "EE", "code3": "EST", "name": "Estonia", "number": "233"},
{"code": "SZ", "code3": "SWZ", "name": "Eswatini", "number": "748"},
{"code": "ET", "code3": "ETH", "name": "Ethiopia", "number": "231"},
{"code": "FK", "code3": "FLK", "name": "Falkland Islands (the) [Malvinas]", "number": "238"},
{"code": "FO", "code3": "FRO", "name": "Faroe Islands (the)", "number": "234"},
{"code": "FJ", "code3": "FJI", "name": "Fiji", "number": "242"},
{"code": "FI", "code3": "FIN", "name": "Finland", "number": "246"},
{"code": "FR", "code3": "FRA", "name": "France", "number": "250"},
{"code": "GF", "code3": "GUF", "name": "French Guiana", "number": "254"},
{"code": "PF", "code3": "PYF", "name": "French Polynesia", "number": "258"},
{"code": "TF", "code3": "ATF", "name": "French Southern Territories (the)", "number": "260"},
{"code": "GA", "code3": "GAB", "name": "Gabon", "number": "266"},
{"code": "GM", "code3": "GMB", "name": "Gambia (the)", "number": "270"},
{"code": "GE", "code3": "GEO", "name": "Georgia", "number": "268"},
{"code": "DE", "code3": "DEU", "name": "Germany", "number": "276"},
{"code": "GH", "code3": "GHA", "name": "Ghana", "number": "288"},
{"code": "GI", "code3": "GIB", "name": "Gibraltar", "number": "292"},
{"code": "GR", "code3": "GRC", "name": "Greece", "number": "300"},
{"code": "GL", "code3": "GRL", "name": "Greenland", "number": "304"},
{"code": "GD", "code3": "GRD", "name": "Grenada", "number": "308"},
{"code": "GP", "code3": "GLP", "name": "Guadeloupe", "number": "312"},
{"code": "GU", "code3": "GUM", "name": "Guam", "number": "316"},
{"code": "GT", "code3": "GTM", "name": "Guatemala", "number": "320"},
{"code": "GG", "code3": "GGY", "name": "Guernsey", "number": "831"},
{"code": "GN", "code3": "GIN", "name": "Guinea", "number": "324"},
{"code": "GW", "code3": "GNB", "name": "Guinea-Bissau", "number": "624"},
{"code": "GY", "code3": "GUY", "name": "Guyana", "number": "328"},
{"code": "HT", "code3": "HTI", "name": "Haiti", "number": "332"},
{"code": "HM", "code3": "HMD", "name": "Heard Island and McDonald Islands", "number": "334"},
{"code": "VA", "code3": "VAT", "name": "Holy See (the)", "number": "336"},
{"code": "HN", "code3": "HND", "name": "Honduras", "number": "340"},
{"code": "HK", "code3": "HKG", "name": "Hong Kong", "number": "344"},
{"code": "HU", "code3": "HUN", "name": "Hungary", "number": "348"},
{"code": "IS", "code3": "ISL", "name": "Iceland", "number": "352"},
{"code": "IN", "code3": "IND", "name": "India", "number": "356"},
{"code": "ID", "code3": "IDN", "name": "Indonesia", "number": "360"},
{"code": "IR", "code3": "IRN", "name": "Iran (Islamic Republic of)", "number": "364"},
{"code": "IQ", "code3": "IRQ", "name": "Iraq", "number": "368"},
{"code": "IE", "code3": "IRL", "name": "Ireland", "number": "372"},
{"code": "IM", "code3": "IMN", "name": "Isle of Man", "number": "833"},
{"code": "IL", "code3": "ISR", "name": "Israel", "number": "376"},
{"code": "IT", "code3": "ITA", "name": "Italy", "number": "380"},
{"code": "JM", "code3": "JAM", "name": "Jamaica", "number": "388"},
{"code": "JP", "code3": "JPN", "name": "Japan", "number": "392"},
{"code": "JE", "code3": "JEY", "name": "Jersey", "number": "832"},
{"code": "JO", "code3": "JOR", "name": "Jordan", "number": "400"},
{"code": "KZ", "code3": "KAZ", "name": "Kazakhstan", "number": "398"},
{"code": "KE", "code3": "KEN", "name": "Kenya", "number": "404"},
{"code": "KI", "code3": "KIR", "name": "Kiribati", "number": "296"},
{"code": "KP", "code3": "PRK", "name": "Korea (the Democratic People's Republic of)", "number": "408"},
{"code": "KR", "code3": "KOR", "name": "Korea (the Republic of)", "number": "410"},
{"code": "KW", "code3": "KWT", "name": "Kuwait", "number": "414"},
{"code": "KG", "code3": "KGZ", "name": "Kyrgyzstan", "number": "417"},
{"code": "LA", "code3": "LAO", "name": "Lao People's Democratic Republic (the)", "number": "418"},
{"code": "LV", "code3": "LVA", "name": "Latvia", "number": "428"},
{"code": "LB", "code3": "LBN", "name": "Lebanon", "number": "422"},
{"code": "LS", "code3": "LSO", "name": "Lesotho", "number": "426"},
{"code": "LR", "code3": "LBR", "name": "Liberia", "number": "430"},
{"code": "LY", "code3": "LBY", "name": "Libya", "number": "434"},
{"code": "LI", "code3": "LIE", "name": "Liechtenstein", "number": "438"},
{"code": "LT", "code3": "LTU", "name": "Lithuania", "number": "440"},
{"code": "LU", "code3": "LUX", "name": "Luxembourg", "number": "442"},
{"code": "MO", "code3": "MAC", "name": "Macao", "number": "446"},
{"code": "MG", "code3": "MDG", "name": "Madagascar", "number": "450"},
{"code": "MW", "code3": "MWI", "name": "Malawi", "number": "454"},
{"code": "MY", "code3": "MYS", "name": "Malaysia", "number": "458"},
{"code": "MV", "code3": "MDV", "name": "Maldives", "number": "462"},
{"code": "ML", "code3": "MLI", "name": "Mali", "number": "466"},
{"code": "MT", "code3": "MLT", "name": "Malta", "number": "470"},
{"code": "MH", "code3": "MHL", "name": "Marshall Islands (the)", "number": "584"},
{"code": "MQ", "code3": "MTQ", "name": "Martinique", "number": "474"},
{"code": "MR", "code3": "MRT", "name": "Mauritania", "number": "478"},
{"code": "MU", "code3": "MUS", "name": "Mauritius", "number": "480"},
{"code": "YT", "code3": "MYT", "name": "Mayotte", "number": "175"},
{"code": "MX", "code3": "MEX", "name": "Mexico", "number": "484"},
{"code": "FM", "code3": "FSM", "name": "Micronesia (Federated States of)", "number": "583"},
{"code": "MD", "code3": "MDA", "name": "Moldova (the Republic of)", "number": "498"},
{"code": "MC", "code3": "MCO", "name": "Monaco", "number": "492"},
{"code": "MN", "code3": "MNG", "name": "Mongolia", "number": "496"},
{"code": "ME", "code3": "MNE", "name": "Montenegro", "number": "499"},
{"code": "MS", "code3": "MSR", "name": "Montserrat", "number": "500"},
{"code": "MA", "code3": "MAR", "name": "Morocco", "number": "504"},
{"code": "MZ", "code3": "MOZ", "name": "Mozambique", "number": "508"},
{"code": "MM", "code3": "MMR", "name": "Myanmar", "number": "104"},
{"code": "NA", "code3": "NAM", "name": "Namibia", "number": "516"},
{"code": "NR", "code3": "NRU", "name": "Nauru", "number": "520"},
{"code": "NP", "code3": "NPL", "name": "Nepal", "number": "524"},
{"code": "NL", "code3": "NLD", "name": "Netherlands (the)", "number": "528"},
{"code": "NC", "code3": "NCL", "name": "New Caledonia", "number": "540"},
{"code": "NZ", "code3": "NZL", "name": "New Zealand", "number": "554"},
{"code": "NI", "code3": "NIC", "name": "Nicaragua", "number": "558"},
{"code": "NE", "code3": "NER", "name": "Niger (the)", "number": "562"},
{"code": "NG", "code3": "NGA", "name": "Nigeria", "number": "566"},
{"code": "NU", "code3": "NIU", "name": "Niue", "number": "570"},
{"code": "NF", "code3": "NFK", "name": "Norfolk Island", "number": "574"},
{"code": "MP", "code3": "MNP", "name": "Northern Mariana Islands (the)", "number": "580"},
{"code": "NO", "code3": "NOR", "name": "Norway", "number": "578"},
{"code": "OM", "code3": "OMN", "name": "Oman", "number": "512"},
{"code": "PK", "code3": "PAK", "name": "Pakistan", "number": "586"},
{"code": "PW", "code3": "PLW", "name": "Palau", "number": "585"},
{"code": "PS", "code3": "PSE", "name": "Palestine, State of", "number": "275"},
{"code": "PA", "code3": "PAN", "name": "Panama", "number": "591"},
{"code": "PG", "code3": "PNG", "name": "Papua New Guinea", "number": "598"},
{"code": "PY", "code3": "PRY", "name": "Paraguay", "number": "600"},
{"code": "PE", "code3": "PER", "name": "Peru", "number": "604"},
{"code": "PH", "code3": "PHL", "name": "Philippines (the)", "number": "608"},
{"code": "PN", "code3": "PCN", "name": "Pitcairn", "number": "612"},
{"code": "PL", "code3": "POL", "name": "Poland", "number": "616"},
{"code": "PT", "code3": "PRT", "name": "Portugal", "number": "620"},
{"code": "PR", "code3": "PRI", "name": "Puerto Rico", "number": "630"},
{"code": "QA", "code3": "QAT", "name": "Qatar", "number": "634"},
{"code": "MK", "code3": "MKD", "name": "Republic of North Macedonia", "number": "807"},
{"code": "RO", "code3": "ROU", "name": "Romania", "number": "642"},
{"code": "RU", "code3": "RUS", "name": "Russian Federation (the)", "number": "643"},
{"code": "RW", "code3": "RWA", "name": "Rwanda", "number": "646"},
{"code": "RE", "code3": "REU", "name": "Réunion", "number": "638"},
{"code": "BL", "code3": "BLM", "name": "Saint Barthélemy", "number": "652"},
{"code": "SH", "code3": "SHN", "name": "Saint Helena, Ascension and Tristan da Cunha", "number": "654"},
{"code": "KN", "code3": "KNA", "name": "Saint Kitts and Nevis", "number": "659"},
{"code": "LC", "code3": "LCA", "name": "Saint Lucia", "number": "662"},
{"code": "MF", "code3": "MAF", "name": "Saint Martin (French part)", "number": "663"},
{"code": "PM", "code3": "SPM", "name": "Saint Pierre and Miquelon", "number": "666"},
{"code": "VC", "code3": "VCT", "name": "Saint Vincent and the Grenadines", "number": "670"},
{"code": "WS", "code3": "WSM", "name": "Samoa", "number": "882"},
{"code": "SM", "code3": "SMR", "name": "San Marino", "number": "674"},
{"code": "ST", "code3": "STP", "name": "Sao Tome and Principe", "number": "678"},
{"code": "SA", "code3": "SAU", "name": "Saudi Arabia", "number": "682"},
{"code": "SN", "code3": "SEN", "name": "Senegal", "number": "686"},
{"code": "RS", "code3": "SRB", "name": "Serbia", "number": "688"},
{"code": "SC", "code3": "SYC", "name": "Seychelles", "number": "690"},
{"code": "SL", "code3": "SLE", "name": "Sierra Leone", "number": "694"},
{"code": "SG", "code3": "SGP", "name": "Singapore", "number": "702"},
{"code": "SX", "code3": "SXM", "name": "Sint Maarten (Dutch part)", "number": "534"},
{"code": "SK", "code3": "SVK", "name": "Slovakia", "number": "703"},
{"code": "SI", "code3": "SVN", "name": "Slovenia", "number": "705"},
{"code": "SB", "code3": "SLB", "name": "Solomon Islands", "number": "090"},
{"code": "SO", "code3": "SOM", "name": "Somalia", "number": "706"},
{"code": "ZA", "code3": "ZAF", "name": "South Africa", "number": "710"},
{"code": "GS", "code3": "SGS", "name": "South Georgia and the South Sandwich Islands", "number": "239"},
{"code": "SS", "code3": "SSD", "name": "South Sudan", "number": "728"},
{"code": "ES", "code3": "ESP", "name": "Spain", "number": "724"},
{"code": "LK", "code3": "LKA", "name": "Sri Lanka", "number": "144"},
{"code": "SD", "code3": "SDN", "name": "Sudan (the)", "number": "729"},
{"code": "SR", "code3": "SUR", "name": "Suriname", "number": "740"},
{"code": "SJ", "code3": "SJM", "name": "Svalbard and Jan Mayen", "number": "744"},
{"code": "SE", "code3": "SWE", "name": "Sweden", "number": "752"},
{"code": "CH", "code3": "CHE", "name": "Switzerland", "number": "756"},
{"code": "SY", "code3": "SYR", "name": "Syrian Arab Republic", "number": "760"},
{"code": "TW", "code3": "TWN", "name": "Taiwan", "number": "158"},
{"code": "TJ", "code3": "TJK", "name": "Tajikistan", "number": "762"},
{"code": "TZ", "code3": "TZA", "name": "Tanzania, United Republic of", "number": "834"},
{"code": "TH", "code3": "THA", "name": "Thailand", "number": "764"},
{"code": "TL", "code3": "TLS", "name": "Timor-Leste", "number": "626"},
{"code": "TG", "code3": "TGO", "name": "Togo", "number": "768"},
{"code": "TK", "code3": "TKL", "name": "Tokelau", "number": "772"},
{"code": "TO", "code3": "TON", "name": "Tonga", "number": "776"},
{"code": "TT", "code3": "TTO", "name": "Trinidad and Tobago", "number": "780"},
{"code": "TN", "code3": "TUN", "name": "Tunisia", "number": "788"},
{"code": "TR", "code3": "TUR", "name": "Turkey", "number": "792"},
{"code": "TM", "code3": "TKM", "name": "Turkmenistan", "number": "795"},
{"code": "TC", "code3": "TCA", "name": "Turks and Caicos Islands (the)", "number": "796"},
{"code": "TV", "code3": "TUV", "name": "Tuvalu", "number": "798"},
{"code": "UG", "code3": "UGA", "name": "Uganda", "number": "800"},
{"code": "UA", "code3": "UKR", "name": "Ukraine", "number": "804"},
{"code": "AE", "code3": "ARE", "name": "United Arab Emirates (the)", "number": "784"},
{"code": "GB", "code3": "GBR", "name": "United Kingdom of Great Britain and Northern Ireland (the)", "number": "826"},
{"code": "UM", "code3": "UMI", "name": "United States Minor Outlying Islands (the)", "number": "581"},
{"code": "US", "code3": "USA", "name": "United States of America (the)", "number": "840"},
{"code": "UY", "code3": "URY", "name": "Uruguay", "number": "858"},
{"code": "UZ", "code3": "UZB", "name": "Uzbekistan", "number": "860"},
{"code": "VU", "code3": "VUT", "name": "Vanuatu", "number": "548"},
{"code": "VE", "code3": "VEN", "name": "Venezuela (Bolivarian Republic of)", "number": "862"},
{"code": "VN", "code3": "VNM", "name": "Viet Nam", "number": "704"},
{"code": "VG", "code3": "VGB", "name": "Virgin Islands (British)", "number": "092"},
{"code": "VI", "code3": "VIR", "name": "Virgin Islands (U.S.)", "number": "850"},
{"code": "WF", "code3": "WLF", "name": "Wallis and Futuna", "number": "876"},
{"code": "EH", "code3": "ESH", "name": "Western Sahara", "number": "732"},
{"code": "YE", "code3": "YEM", "name": "Yemen", "number": "887"},
{"code": "ZM", "code3": "ZMB", "name": "Zambia", "number": "894"},
{"code": "ZW", "code3": "ZWE", "name": "Zimbabwe", "number": "716"},
{"code": "AX", "code3": "ALA", "name": "Åland Islands", "number": "248"}
];
@kells4real
Copy link

I also created something similar, but also the states of each countries. https://github.com/kells4real/JavaScript_Countries_States/blob/main/json.js

@thunder775
Copy link

@MSKU786
Copy link

MSKU786 commented Nov 26, 2021

Thanks

@SaiRohithVoltusWave
Copy link

All TimeZone with Country Codes
const allTimeZone = [ {Name: 'Afghanistan', Code: 'AF', Timezone: 'Afghanistan Standard Time', UTC: 'UTC+04:30', MobileCode: '+93'}, {Name: 'Åland Islands', Code: 'AX', Timezone: 'FLE Standard Time', UTC: 'UTC+02:00', MobileCode: '+358-18'}, {Name: 'Albania', Code: 'AL', Timezone: 'Central Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+355'}, {Name: 'Algeria', Code: 'DZ', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+213'}, {Name: 'American Samoa', Code: 'AS', Timezone: 'UTC-11', UTC: 'UTC-11:00', MobileCode: '+1-684'}, {Name: 'Andorra', Code: 'AD', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+376'}, {Name: 'Angola', Code: 'AO', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+244'}, {Name: 'Anguilla', Code: 'AI', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-264'}, {Name: 'Antarctica', Code: 'AQ', Timezone: 'Pacific SA Standard Time', UTC: 'UTC-03:00', MobileCode: '+'}, {Name: 'Antigua and Barbuda', Code: 'AG', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-268'}, {Name: 'Argentina', Code: 'AR', Timezone: 'Argentina Standard Time', UTC: 'UTC-03:00', MobileCode: '+54'}, {Name: 'Armenia', Code: 'AM', Timezone: 'Caucasus Standard Time', UTC: 'UTC+04:00', MobileCode: '+374'}, {Name: 'Aruba', Code: 'AW', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+297'}, {Name: 'Australia', Code: 'AU', Timezone: 'AUS Eastern Standard Time', UTC: 'UTC+10:00', MobileCode: '+61'}, {Name: 'Austria', Code: 'AT', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+43'}, {Name: 'Azerbaijan', Code: 'AZ', Timezone: 'Azerbaijan Standard Time', UTC: 'UTC+04:00', MobileCode: '+994'}, {Name: 'Bahamas, The', Code: 'BS', Timezone: 'Eastern Standard Time', UTC: 'UTC-05:00', MobileCode: '+1-242'}, {Name: 'Bahrain', Code: 'BH', Timezone: 'Arab Standard Time', UTC: 'UTC+03:00', MobileCode: '+973'}, {Name: 'Bangladesh', Code: 'BD', Timezone: 'Bangladesh Standard Time', UTC: 'UTC+06:00', MobileCode: '+880'}, {Name: 'Barbados', Code: 'BB', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-246'}, {Name: 'Belarus', Code: 'BY', Timezone: 'Belarus Standard Time', UTC: 'UTC+03:00', MobileCode: '+375'}, {Name: 'Belgium', Code: 'BE', Timezone: 'Romance Standard Time', UTC: 'UTC+01:00', MobileCode: '+32'}, {Name: 'Belize', Code: 'BZ', Timezone: 'Central America Standard Time', UTC: 'UTC-06:00', MobileCode: '+501'}, {Name: 'Benin', Code: 'BJ', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+229'}, {Name: 'Bermuda', Code: 'BM', Timezone: 'Atlantic Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-441'}, {Name: 'Bhutan', Code: 'BT', Timezone: 'Bangladesh Standard Time', UTC: 'UTC+06:00', MobileCode: '+975'}, {Name: 'Bolivarian Republic of Venezuela', Code: 'VE', Timezone: 'Venezuela Standard Time', UTC: 'UTC-04:30', MobileCode: '+58'}, {Name: 'Bolivia', Code: 'BO', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+591'}, {Name: 'Bonaire, Sint Eustatius and Saba', Code: 'BQ', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+599'}, {Name: 'Bosnia and Herzegovina', Code: 'BA', Timezone: 'Central European Standard Time', UTC: 'UTC+01:00', MobileCode: '+387'}, {Name: 'Botswana', Code: 'BW', Timezone: 'South Africa Standard Time', UTC: 'UTC+02:00', MobileCode: '+267'}, {Name: 'Bouvet Island', Code: 'BV', Timezone: 'UTC', UTC: 'UTC', MobileCode: '+'}, {Name: 'Brazil', Code: 'BR', Timezone: 'E. South America Standard Time', UTC: 'UTC-03:00', MobileCode: '+55'}, {Name: 'British Indian Ocean Territory', Code: 'IO', Timezone: 'Central Asia Standard Time', UTC: 'UTC+06:00', MobileCode: '+246'}, {Name: 'Brunei', Code: 'BN', Timezone: 'Singapore Standard Time', UTC: 'UTC+08:00', MobileCode: '+673'}, {Name: 'Bulgaria', Code: 'BG', Timezone: 'FLE Standard Time', UTC: 'UTC+02:00', MobileCode: '+359'}, {Name: 'Burkina Faso', Code: 'BF', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+226'}, {Name: 'Burundi', Code: 'BI', Timezone: 'South Africa Standard Time', UTC: 'UTC+02:00', MobileCode: '+257'}, {Name: 'Cabo Verde', Code: 'CV', Timezone: 'Cape Verde Standard Time', UTC: 'UTC-01:00', MobileCode: '+238'}, {Name: 'Cambodia', Code: 'KH', Timezone: 'SE Asia Standard Time', UTC: 'UTC+07:00', MobileCode: '+855'}, {Name: 'Cameroon', Code: 'CM', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+237'}, {Name: 'Canada', Code: 'CA', Timezone: 'Eastern Standard Time', UTC: 'UTC-05:00', MobileCode: '+1'}, {Name: 'Cayman Islands', Code: 'KY', Timezone: 'SA Pacific Standard Time', UTC: 'UTC-05:00', MobileCode: '+1-345'}, {Name: 'Central African Republic', Code: 'CF', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+236'}, {Name: 'Chad', Code: 'TD', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+235'}, {Name: 'Chile', Code: 'CL', Timezone: 'Pacific SA Standard Time', UTC: 'UTC-03:00', MobileCode: '+56'}, {Name: 'China', Code: 'CN', Timezone: 'China Standard Time', UTC: 'UTC+08:00', MobileCode: '+86'}, {Name: 'Christmas Island', Code: 'CX', Timezone: 'SE Asia Standard Time', UTC: 'UTC+07:00', MobileCode: '+61'}, {Name: 'Cocos (Keeling) Islands', Code: 'CC', Timezone: 'Myanmar Standard Time', UTC: 'UTC+06:30', MobileCode: '+61'}, {Name: 'Colombia', Code: 'CO', Timezone: 'SA Pacific Standard Time', UTC: 'UTC-05:00', MobileCode: '+57'}, {Name: 'Comoros', Code: 'KM', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+269'}, {Name: 'Congo', Code: 'CG', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+242'}, {Name: 'Congo (DRC)', Code: 'CD', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+243'}, {Name: 'Cook Islands', Code: 'CK', Timezone: 'Hawaiian Standard Time', UTC: 'UTC-10:00', MobileCode: '+682'}, {Name: 'Costa Rica', Code: 'CR', Timezone: 'Central America Standard Time', UTC: 'UTC-06:00', MobileCode: '+506'}, {Name: "Côte d'Ivoire", Code: 'CI', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+225'}, {Name: 'Croatia', Code: 'HR', Timezone: 'Central European Standard Time', UTC: 'UTC+01:00', MobileCode: '+385'}, {Name: 'Cuba', Code: 'CU', Timezone: 'Eastern Standard Time', UTC: 'UTC-05:00', MobileCode: '+53'}, {Name: 'Curaçao', Code: 'CW', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+599'}, {Name: 'Cyprus', Code: 'CY', Timezone: 'E. Europe Standard Time', UTC: 'UTC+02:00', MobileCode: '+357'}, {Name: 'Czech Republic', Code: 'CZ', Timezone: 'Central Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+420'}, {Name: 'Democratic Republic of Timor-Leste', Code: 'TL', Timezone: 'Tokyo Standard Time', UTC: 'UTC+09:00', MobileCode: '+670'}, {Name: 'Denmark', Code: 'DK', Timezone: 'Romance Standard Time', UTC: 'UTC+01:00', MobileCode: '+45'}, {Name: 'Djibouti', Code: 'DJ', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+253'}, {Name: 'Dominica', Code: 'DM', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-767'}, {Name: 'Dominican Republic', Code: 'DO', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-809 and 1-829'}, {Name: 'Ecuador', Code: 'EC', Timezone: 'SA Pacific Standard Time', UTC: 'UTC-05:00', MobileCode: '+593'}, {Name: 'Egypt', Code: 'EG', Timezone: 'Egypt Standard Time', UTC: 'UTC+02:00', MobileCode: '+20'}, {Name: 'El Salvador', Code: 'SV', Timezone: 'Central America Standard Time', UTC: 'UTC-06:00', MobileCode: '+503'}, {Name: 'Equatorial Guinea', Code: 'GQ', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+240'}, {Name: 'Eritrea', Code: 'ER', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+291'}, {Name: 'Estonia', Code: 'EE', Timezone: 'FLE Standard Time', UTC: 'UTC+02:00', MobileCode: '+372'}, {Name: 'Ethiopia', Code: 'ET', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+251'}, {Name: 'Falkland Islands (Islas Malvinas)', Code: 'FK', Timezone: 'SA Eastern Standard Time', UTC: 'UTC-03:00', MobileCode: '+500'}, {Name: 'Faroe Islands', Code: 'FO', Timezone: 'GMT Standard Time', UTC: 'UTC', MobileCode: '+298'}, {Name: 'Fiji Islands', Code: 'FJ', Timezone: 'Fiji Standard Time', UTC: 'UTC+12:00', MobileCode: '+679'}, {Name: 'Finland', Code: 'FI', Timezone: 'FLE Standard Time', UTC: 'UTC+02:00', MobileCode: '+358'}, {Name: 'France', Code: 'FR', Timezone: 'Romance Standard Time', UTC: 'UTC+01:00', MobileCode: '+33'}, {Name: 'French Guiana', Code: 'GF', Timezone: 'SA Eastern Standard Time', UTC: 'UTC-03:00', MobileCode: '+594'}, {Name: 'French Polynesia', Code: 'PF', Timezone: 'Hawaiian Standard Time', UTC: 'UTC-10:00', MobileCode: '+689'}, {Name: 'French Southern and Antarctic Lands', Code: 'TF', Timezone: 'West Asia Standard Time', UTC: 'UTC+05:00', MobileCode: '+'}, {Name: 'Gabon', Code: 'GA', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+241'}, {Name: 'Gambia, The', Code: 'GM', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+220'}, {Name: 'Georgia', Code: 'GE', Timezone: 'Georgian Standard Time', UTC: 'UTC+04:00', MobileCode: '+995'}, {Name: 'Germany', Code: 'DE', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+49'}, {Name: 'Ghana', Code: 'GH', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+233'}, {Name: 'Gibraltar', Code: 'GI', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+350'}, {Name: 'Greece', Code: 'GR', Timezone: 'GTB Standard Time', UTC: 'UTC+02:00', MobileCode: '+30'}, {Name: 'Greenland', Code: 'GL', Timezone: 'Greenland Standard Time', UTC: 'UTC-03:00', MobileCode: '+299'}, {Name: 'Grenada', Code: 'GD', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-473'}, {Name: 'Guadeloupe', Code: 'GP', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+590'}, {Name: 'Guam', Code: 'GU', Timezone: 'West Pacific Standard Time', UTC: 'UTC+10:00', MobileCode: '+1-671'}, {Name: 'Guatemala', Code: 'GT', Timezone: 'Central America Standard Time', UTC: 'UTC-06:00', MobileCode: '+502'}, {Name: 'Guernsey', Code: 'GG', Timezone: 'GMT Standard Time', UTC: 'UTC', MobileCode: '+44-1481'}, {Name: 'Guinea', Code: 'GN', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+224'}, {Name: 'Guinea-Bissau', Code: 'GW', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+245'}, {Name: 'Guyana', Code: 'GY', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+592'}, {Name: 'Haiti', Code: 'HT', Timezone: 'Eastern Standard Time', UTC: 'UTC-05:00', MobileCode: '+509'}, {Name: 'Heard Island and McDonald Islands', Code: 'HM', Timezone: 'Mauritius Standard Time', UTC: 'UTC+04:00', MobileCode: '+ '}, {Name: 'Honduras', Code: 'HN', Timezone: 'Central America Standard Time', UTC: 'UTC-06:00', MobileCode: '+504'}, {Name: 'Hong Kong SAR', Code: 'HK', Timezone: 'China Standard Time', UTC: 'UTC+08:00', MobileCode: '+852'}, {Name: 'Hungary', Code: 'HU', Timezone: 'Central Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+36'}, {Name: 'Iceland', Code: 'IS', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+354'}, {Name: 'India', Code: 'IN', Timezone: 'India Standard Time', UTC: 'UTC+05:30', MobileCode: '+91'}, {Name: 'Indonesia', Code: 'ID', Timezone: 'SE Asia Standard Time', UTC: 'UTC+07:00', MobileCode: '+62'}, {Name: 'Iran', Code: 'IR', Timezone: 'Iran Standard Time', UTC: 'UTC+03:30', MobileCode: '+98'}, {Name: 'Iraq', Code: 'IQ', Timezone: 'Arabic Standard Time', UTC: 'UTC+03:00', MobileCode: '+964'}, {Name: 'Ireland', Code: 'IE', Timezone: 'GMT Standard Time', UTC: 'UTC', MobileCode: '+353'}, {Name: 'Israel', Code: 'IL', Timezone: 'Israel Standard Time', UTC: 'UTC+02:00', MobileCode: '+972'}, {Name: 'Italy', Code: 'IT', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+39'}, {Name: 'Jamaica', Code: 'JM', Timezone: 'SA Pacific Standard Time', UTC: 'UTC-05:00', MobileCode: '+1-876'}, {Name: 'Jan Mayen', Code: 'SJ', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+47'}, {Name: 'Japan', Code: 'JP', Timezone: 'Tokyo Standard Time', UTC: 'UTC+09:00', MobileCode: '+81'}, {Name: 'Jersey', Code: 'JE', Timezone: 'GMT Standard Time', UTC: 'UTC', MobileCode: '+44-1534'}, {Name: 'Jordan', Code: 'JO', Timezone: 'Jordan Standard Time', UTC: 'UTC+02:00', MobileCode: '+962'}, {Name: 'Kazakhstan', Code: 'KZ', Timezone: 'Central Asia Standard Time', UTC: 'UTC+06:00', MobileCode: '+7'}, {Name: 'Kenya', Code: 'KE', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+254'}, {Name: 'Kiribati', Code: 'KI', Timezone: 'UTC+12', UTC: 'UTC+12:00', MobileCode: '+686'}, {Name: 'Korea', Code: 'KR', Timezone: 'Korea Standard Time', UTC: 'UTC+09:00', MobileCode: '+82'}, {Name: 'Kosovo', Code: 'XK', Timezone: 'Central European Standard Time', UTC: 'UTC+01:00', MobileCode: '+'}, {Name: 'Kuwait', Code: 'KW', Timezone: 'Arab Standard Time', UTC: 'UTC+03:00', MobileCode: '+965'}, {Name: 'Kyrgyzstan', Code: 'KG', Timezone: 'Central Asia Standard Time', UTC: 'UTC+06:00', MobileCode: '+996'}, {Name: 'Laos', Code: 'LA', Timezone: 'SE Asia Standard Time', UTC: 'UTC+07:00', MobileCode: '+856'}, {Name: 'Latvia', Code: 'LV', Timezone: 'FLE Standard Time', UTC: 'UTC+02:00', MobileCode: '+371'}, {Name: 'Lebanon', Code: 'LB', Timezone: 'Middle East Standard Time', UTC: 'UTC+02:00', MobileCode: '+961'}, {Name: 'Lesotho', Code: 'LS', Timezone: 'South Africa Standard Time', UTC: 'UTC+02:00', MobileCode: '+266'}, {Name: 'Liberia', Code: 'LR', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+231'}, {Name: 'Libya', Code: 'LY', Timezone: 'E. Europe Standard Time', UTC: 'UTC+02:00', MobileCode: '+218'}, {Name: 'Liechtenstein', Code: 'LI', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+423'}, {Name: 'Lithuania', Code: 'LT', Timezone: 'FLE Standard Time', UTC: 'UTC+02:00', MobileCode: '+370'}, {Name: 'Luxembourg', Code: 'LU', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+352'}, {Name: 'Macao SAR', Code: 'MO', Timezone: 'China Standard Time', UTC: 'UTC+08:00', MobileCode: '+853'}, {Name: 'Macedonia, Former Yugoslav Republic of', Code: 'MK', Timezone: 'Central European Standard Time', UTC: 'UTC+01:00', MobileCode: '+389'}, {Name: 'Madagascar', Code: 'MG', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+261'}, {Name: 'Malawi', Code: 'MW', Timezone: 'South Africa Standard Time', UTC: 'UTC+02:00', MobileCode: '+265'}, {Name: 'Malaysia', Code: 'MY', Timezone: 'Singapore Standard Time', UTC: 'UTC+08:00', MobileCode: '+60'}, {Name: 'Maldives', Code: 'MV', Timezone: 'West Asia Standard Time', UTC: 'UTC+05:00', MobileCode: '+960'}, {Name: 'Mali', Code: 'ML', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+223'}, {Name: 'Malta', Code: 'MT', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+356'}, {Name: 'Man, Isle of', Code: 'IM', Timezone: 'GMT Standard Time', UTC: 'UTC', MobileCode: '+44-1624'}, {Name: 'Marshall Islands', Code: 'MH', Timezone: 'UTC+12', UTC: 'UTC+12:00', MobileCode: '+692'}, {Name: 'Martinique', Code: 'MQ', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+596'}, {Name: 'Mauritania', Code: 'MR', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+222'}, {Name: 'Mauritius', Code: 'MU', Timezone: 'Mauritius Standard Time', UTC: 'UTC+04:00', MobileCode: '+230'}, {Name: 'Mayotte', Code: 'YT', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+262'}, {Name: 'Mexico', Code: 'MX', Timezone: 'Central Standard Time (Mexico)', UTC: 'UTC-06:00', MobileCode: '+52'}, {Name: 'Micronesia', Code: 'FM', Timezone: 'West Pacific Standard Time', UTC: 'UTC+10:00', MobileCode: '+691'}, {Name: 'Moldova', Code: 'MD', Timezone: 'GTB Standard Time', UTC: 'UTC+02:00', MobileCode: '+373'}, {Name: 'Monaco', Code: 'MC', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+377'}, {Name: 'Mongolia', Code: 'MN', Timezone: 'Ulaanbaatar Standard Time', UTC: 'UTC+08:00', MobileCode: '+976'}, {Name: 'Montenegro', Code: 'ME', Timezone: 'Central European Standard Time', UTC: 'UTC+01:00', MobileCode: '+382'}, {Name: 'Montserrat', Code: 'MS', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-664'}, {Name: 'Morocco', Code: 'MA', Timezone: 'Morocco Standard Time', UTC: 'UTC', MobileCode: '+212'}, {Name: 'Mozambique', Code: 'MZ', Timezone: 'South Africa Standard Time', UTC: 'UTC+02:00', MobileCode: '+258'}, {Name: 'Myanmar', Code: 'MM', Timezone: 'Myanmar Standard Time', UTC: 'UTC+06:30', MobileCode: '+95'}, {Name: 'Namibia', Code: 'NA', Timezone: 'Namibia Standard Time', UTC: 'UTC+01:00', MobileCode: '+264'}, {Name: 'Nauru', Code: 'NR', Timezone: 'UTC+12', UTC: 'UTC+12:00', MobileCode: '+674'}, {Name: 'Nepal', Code: 'NP', Timezone: 'Nepal Standard Time', UTC: 'UTC+05:45', MobileCode: '+977'}, {Name: 'Netherlands', Code: 'NL', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+31'}, {Name: 'New Caledonia', Code: 'NC', Timezone: 'Central Pacific Standard Time', UTC: 'UTC+11:00', MobileCode: '+687'}, {Name: 'New Zealand', Code: 'NZ', Timezone: 'New Zealand Standard Time', UTC: 'UTC+12:00', MobileCode: '+64'}, {Name: 'Nicaragua', Code: 'NI', Timezone: 'Central America Standard Time', UTC: 'UTC-06:00', MobileCode: '+505'}, {Name: 'Niger', Code: 'NE', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+227'}, {Name: 'Nigeria', Code: 'NG', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+234'}, {Name: 'Niue', Code: 'NU', Timezone: 'UTC-11', UTC: 'UTC-11:00', MobileCode: '+683'}, {Name: 'Norfolk Island', Code: 'NF', Timezone: 'Central Pacific Standard Time', UTC: 'UTC+11:00', MobileCode: '+672'}, {Name: 'North Korea', Code: 'KP', Timezone: 'Korea Standard Time', UTC: 'UTC+09:00', MobileCode: '+850'}, {Name: 'Northern Mariana Islands', Code: 'MP', Timezone: 'West Pacific Standard Time', UTC: 'UTC+10:00', MobileCode: '+1-670'}, {Name: 'Norway', Code: 'NO', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+47'}, {Name: 'Oman', Code: 'OM', Timezone: 'Arabian Standard Time', UTC: 'UTC+04:00', MobileCode: '+968'}, {Name: 'Pakistan', Code: 'PK', Timezone: 'Pakistan Standard Time', UTC: 'UTC+05:00', MobileCode: '+92'}, {Name: 'Palau', Code: 'PW', Timezone: 'Tokyo Standard Time', UTC: 'UTC+09:00', MobileCode: '+680'}, {Name: 'Palestinian Authority', Code: 'PS', Timezone: 'Egypt Standard Time', UTC: 'UTC+02:00', MobileCode: '+970'}, {Name: 'Panama', Code: 'PA', Timezone: 'SA Pacific Standard Time', UTC: 'UTC-05:00', MobileCode: '+507'}, {Name: 'Papua New Guinea', Code: 'PG', Timezone: 'West Pacific Standard Time', UTC: 'UTC+10:00', MobileCode: '+675'}, {Name: 'Paraguay', Code: 'PY', Timezone: 'Paraguay Standard Time', UTC: 'UTC-04:00', MobileCode: '+595'}, {Name: 'Peru', Code: 'PE', Timezone: 'SA Pacific Standard Time', UTC: 'UTC-05:00', MobileCode: '+51'}, {Name: 'Philippines', Code: 'PH', Timezone: 'Singapore Standard Time', UTC: 'UTC+08:00', MobileCode: '+63'}, {Name: 'Pitcairn Islands', Code: 'PN', Timezone: 'Pacific Standard Time', UTC: 'UTC-08:00', MobileCode: '+870'}, {Name: 'Poland', Code: 'PL', Timezone: 'Central European Standard Time', UTC: 'UTC+01:00', MobileCode: '+48'}, {Name: 'Portugal', Code: 'PT', Timezone: 'GMT Standard Time', UTC: 'UTC', MobileCode: '+351'}, {Name: 'Puerto Rico', Code: 'PR', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-787 and 1-939'}, {Name: 'Qatar', Code: 'QA', Timezone: 'Arab Standard Time', UTC: 'UTC+03:00', MobileCode: '+974'}, {Name: 'Reunion', Code: 'RE', Timezone: 'Mauritius Standard Time', UTC: 'UTC+04:00', MobileCode: '+262'}, {Name: 'Romania', Code: 'RO', Timezone: 'GTB Standard Time', UTC: 'UTC+02:00', MobileCode: '+40'}, {Name: 'Russia', Code: 'RU', Timezone: 'Russian Standard Time', UTC: 'UTC+03:00', MobileCode: '+7'}, {Name: 'Rwanda', Code: 'RW', Timezone: 'South Africa Standard Time', UTC: 'UTC+02:00', MobileCode: '+250'}, {Name: 'Saint Barthélemy', Code: 'BL', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+590'}, {Name: 'Saint Helena, Ascension and Tristan da Cunha', Code: 'SH', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+290'}, {Name: 'Saint Kitts and Nevis', Code: 'KN', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-869'}, {Name: 'Saint Lucia', Code: 'LC', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-758'}, {Name: 'Saint Martin (French part)', Code: 'MF', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+590'}, {Name: 'Saint Pierre and Miquelon', Code: 'PM', Timezone: 'Greenland Standard Time', UTC: 'UTC-03:00', MobileCode: '+508'}, {Name: 'Saint Vincent and the Grenadines', Code: 'VC', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-784'}, {Name: 'Samoa', Code: 'WS', Timezone: 'Samoa Standard Time', UTC: 'UTC+13:00', MobileCode: '+685'}, {Name: 'San Marino', Code: 'SM', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+378'}, {Name: 'São Tomé and Príncipe', Code: 'ST', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+239'}, {Name: 'Saudi Arabia', Code: 'SA', Timezone: 'Arab Standard Time', UTC: 'UTC+03:00', MobileCode: '+966'}, {Name: 'Senegal', Code: 'SN', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+221'}, {Name: 'Serbia', Code: 'RS', Timezone: 'Central Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+381'}, {Name: 'Seychelles', Code: 'SC', Timezone: 'Mauritius Standard Time', UTC: 'UTC+04:00', MobileCode: '+248'}, {Name: 'Sierra Leone', Code: 'SL', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+232'}, {Name: 'Singapore', Code: 'SG', Timezone: 'Singapore Standard Time', UTC: 'UTC+08:00', MobileCode: '+65'}, {Name: 'Sint Maarten (Dutch part)', Code: 'SX', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+599'}, {Name: 'Slovakia', Code: 'SK', Timezone: 'Central Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+421'}, {Name: 'Slovenia', Code: 'SI', Timezone: 'Central Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+386'}, {Name: 'Solomon Islands', Code: 'SB', Timezone: 'Central Pacific Standard Time', UTC: 'UTC+11:00', MobileCode: '+677'}, {Name: 'Somalia', Code: 'SO', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+252'}, {Name: 'South Africa', Code: 'ZA', Timezone: 'South Africa Standard Time', UTC: 'UTC+02:00', MobileCode: '+27'}, {Name: 'South Georgia and the South Sandwich Islands', Code: 'GS', Timezone: 'UTC-02', UTC: 'UTC-02:00', MobileCode: '+'}, {Name: 'South Sudan', Code: 'SS', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+211'}, {Name: 'Spain', Code: 'ES', Timezone: 'Romance Standard Time', UTC: 'UTC+01:00', MobileCode: '+34'}, {Name: 'Sri Lanka', Code: 'LK', Timezone: 'Sri Lanka Standard Time', UTC: 'UTC+05:30', MobileCode: '+94'}, {Name: 'Sudan', Code: 'SD', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+249'}, {Name: 'Suriname', Code: 'SR', Timezone: 'SA Eastern Standard Time', UTC: 'UTC-03:00', MobileCode: '+597'}, {Name: 'Svalbard', Code: 'SJ', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+47'}, {Name: 'Swaziland', Code: 'SZ', Timezone: 'South Africa Standard Time', UTC: 'UTC+02:00', MobileCode: '+268'}, {Name: 'Sweden', Code: 'SE', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+46'}, {Name: 'Switzerland', Code: 'CH', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+41'}, {Name: 'Syria', Code: 'SY', Timezone: 'Syria Standard Time', UTC: 'UTC+02:00', MobileCode: '+963'}, {Name: 'Taiwan', Code: 'TW', Timezone: 'Taipei Standard Time', UTC: 'UTC+08:00', MobileCode: '+886'}, {Name: 'Tajikistan', Code: 'TJ', Timezone: 'West Asia Standard Time', UTC: 'UTC+05:00', MobileCode: '+992'}, {Name: 'Tanzania', Code: 'TZ', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+255'}, {Name: 'Thailand', Code: 'TH', Timezone: 'SE Asia Standard Time', UTC: 'UTC+07:00', MobileCode: '+66'}, {Name: 'Togo', Code: 'TG', Timezone: 'Greenwich Standard Time', UTC: 'UTC', MobileCode: '+228'}, {Name: 'Tokelau', Code: 'TK', Timezone: 'Tonga Standard Time', UTC: 'UTC+13:00', MobileCode: '+690'}, {Name: 'Tonga', Code: 'TO', Timezone: 'Tonga Standard Time', UTC: 'UTC+13:00', MobileCode: '+676'}, {Name: 'Trinidad and Tobago', Code: 'TT', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-868'}, {Name: 'Tunisia', Code: 'TN', Timezone: 'W. Central Africa Standard Time', UTC: 'UTC+01:00', MobileCode: '+216'}, {Name: 'Turkey', Code: 'TR', Timezone: 'Turkey Standard Time', UTC: 'UTC+02:00', MobileCode: '+90'}, {Name: 'Turkmenistan', Code: 'TM', Timezone: 'West Asia Standard Time', UTC: 'UTC+05:00', MobileCode: '+993'}, {Name: 'Turks and Caicos Islands', Code: 'TC', Timezone: 'Eastern Standard Time', UTC: 'UTC-05:00', MobileCode: '+1-649'}, {Name: 'Tuvalu', Code: 'TV', Timezone: 'UTC+12', UTC: 'UTC+12:00', MobileCode: '+688'}, {Name: 'U.S. Minor Outlying Islands', Code: 'UM', Timezone: 'UTC-11', UTC: 'UTC-11:00', MobileCode: '+1'}, {Name: 'Uganda', Code: 'UG', Timezone: 'E. Africa Standard Time', UTC: 'UTC+03:00', MobileCode: '+256'}, {Name: 'Ukraine', Code: 'UA', Timezone: 'FLE Standard Time', UTC: 'UTC+02:00', MobileCode: '+380'}, {Name: 'United Arab Emirates', Code: 'AE', Timezone: 'Arabian Standard Time', UTC: 'UTC+04:00', MobileCode: '+971'}, {Name: 'United Kingdom', Code: 'GB', Timezone: 'GMT Standard Time', UTC: 'UTC', MobileCode: '+44'}, {Name: 'United States', Code: 'US', Timezone: 'Pacific Standard Time', UTC: 'UTC-08:00', MobileCode: '+1'}, {Name: 'Uruguay', Code: 'UY', Timezone: 'Montevideo Standard Time', UTC: 'UTC-03:00', MobileCode: '+598'}, {Name: 'Uzbekistan', Code: 'UZ', Timezone: 'West Asia Standard Time', UTC: 'UTC+05:00', MobileCode: '+998'}, {Name: 'Vanuatu', Code: 'VU', Timezone: 'Central Pacific Standard Time', UTC: 'UTC+11:00', MobileCode: '+678'}, {Name: 'Vatican City', Code: 'VA', Timezone: 'W. Europe Standard Time', UTC: 'UTC+01:00', MobileCode: '+379'}, {Name: 'Vietnam', Code: 'VN', Timezone: 'SE Asia Standard Time', UTC: 'UTC+07:00', MobileCode: '+84'}, {Name: 'Virgin Islands, U.S.', Code: 'VI', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-340'}, {Name: 'Virgin Islands, British', Code: 'VG', Timezone: 'SA Western Standard Time', UTC: 'UTC-04:00', MobileCode: '+1-284'}, {Name: 'Wallis and Futuna', Code: 'WF', Timezone: 'UTC+12', UTC: 'UTC+12:00', MobileCode: '+681'}, {Name: 'Yemen', Code: 'YE', Timezone: 'Arab Standard Time', UTC: 'UTC+03:00', MobileCode: '+967'}, {Name: 'Zambia', Code: 'ZM', Timezone: 'South Africa Standard Time', UTC: 'UTC+02:00', MobileCode: '+260'}, {Name: 'Zimbabwe', Code: 'ZW', Timezone: 'South Africa Standard Time', UTC: 'UTC+02:00', MobileCode: '+263'} ]

@git-e-001
Copy link

const countryAlpha2 = [
"AF",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
"AG",
"AR",
"AM",
"AW",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BM",
"BT",
"BO",
"BQ",
"BA",
"BW",
"BV",
"BR",
"IO",
"BN",
"BG",
"BF",
"BI",
"CV",
"KH",
"CM",
"CA",
"KY",
"CF",
"TD",
"CL",
"CN",
"CX",
"CC",
"CO",
"KM",
"CD",
"CG",
"CK",
"CR",
"HR",
"CU",
"CW",
"CY",
"CZ",
"CI",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"SZ",
"ET",
"FK",
"FO",
"FJ",
"FI",
"FR",
"GF",
"PF",
"TF",
"GA",
"GM",
"GE",
"DE",
"GH",
"GI",
"GR",
"GL",
"GD",
"GP",
"GU",
"GT",
"GG",
"GN",
"GW",
"GY",
"HT",
"HM",
"VA",
"HN",
"HK",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IM",
"IL",
"IT",
"JM",
"JP",
"JE",
"JO",
"KZ",
"KE",
"KI",
"KP",
"KR",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MO",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MQ",
"MR",
"MU",
"YT",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MS",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NC",
"NZ",
"NI",
"NE",
"NG",
"NU",
"NF",
"MP",
"NO",
"OM",
"PK",
"PW",
"PS",
"PA",
"PG",
"PY",
"PE",
"PH",
"PN",
"PL",
"PT",
"PR",
"QA",
"MK",
"RO",
"RU",
"RW",
"RE",
"BL",
"SH",
"KN",
"LC",
"MF",
"PM",
"VC",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SX",
"SK",
"SI",
"SB",
"SO",
"ZA",
"GS",
"SS",
"ES",
"LK",
"SD",
"SR",
"SJ",
"SE",
"CH",
"SY",
"TW",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TK",
"TO",
"TT",
"TN",
"TR",
"TM",
"TC",
"TV",
"UG",
"UA",
"AE",
"GB",
"UM",
"US",
"UY",
"UZ",
"VU",
"VE",
"VN",
"VG",
"VI",
"WF",
"EH",
"YE",
"ZM",
"ZW",
"AX",
]

@softwareeenginer
Copy link

That's really useful. Thank you!

@bangdragon
Copy link

thanks so much

@anyuruf
Copy link

anyuruf commented Mar 25, 2022

Thank you!!

@rizqonmaulana
Copy link

thank u so much, it helps me a lot

@DenzelCode
Copy link

const COUNTRIES = [
  {
    name: 'Afghanistan',
    code: 'AF',
    timezone: 'Afghanistan Standard Time',
    utc: 'UTC+04:30',
    mobileCode: '+93',
  },
  {
    name: 'Åland Islands',
    code: 'AX',
    timezone: 'FLE Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+358-18',
  },
  {
    name: 'Albania',
    code: 'AL',
    timezone: 'Central Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+355',
  },
  {
    name: 'Algeria',
    code: 'DZ',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+213',
  },
  {
    name: 'American Samoa',
    code: 'AS',
    timezone: 'UTC-11',
    utc: 'UTC-11:00',
    mobileCode: '+1-684',
  },
  {
    name: 'Andorra',
    code: 'AD',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+376',
  },
  {
    name: 'Angola',
    code: 'AO',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+244',
  },
  {
    name: 'Anguilla',
    code: 'AI',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-264',
  },
  {
    name: 'Antarctica',
    code: 'AQ',
    timezone: 'Pacific SA Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+',
  },
  {
    name: 'Antigua and Barbuda',
    code: 'AG',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-268',
  },
  {
    name: 'Argentina',
    code: 'AR',
    timezone: 'Argentina Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+54',
  },
  {
    name: 'Armenia',
    code: 'AM',
    timezone: 'Caucasus Standard Time',
    utc: 'UTC+04:00',
    mobileCode: '+374',
  },
  {
    name: 'Aruba',
    code: 'AW',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+297',
  },
  {
    name: 'Australia',
    code: 'AU',
    timezone: 'AUS Eastern Standard Time',
    utc: 'UTC+10:00',
    mobileCode: '+61',
  },
  {
    name: 'Austria',
    code: 'AT',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+43',
  },
  {
    name: 'Azerbaijan',
    code: 'AZ',
    timezone: 'Azerbaijan Standard Time',
    utc: 'UTC+04:00',
    mobileCode: '+994',
  },
  {
    name: 'Bahamas, The',
    code: 'BS',
    timezone: 'Eastern Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+1-242',
  },
  {
    name: 'Bahrain',
    code: 'BH',
    timezone: 'Arab Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+973',
  },
  {
    name: 'Bangladesh',
    code: 'BD',
    timezone: 'Bangladesh Standard Time',
    utc: 'UTC+06:00',
    mobileCode: '+880',
  },
  {
    name: 'Barbados',
    code: 'BB',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-246',
  },
  {
    name: 'Belarus',
    code: 'BY',
    timezone: 'Belarus Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+375',
  },
  {
    name: 'Belgium',
    code: 'BE',
    timezone: 'Romance Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+32',
  },
  {
    name: 'Belize',
    code: 'BZ',
    timezone: 'Central America Standard Time',
    utc: 'UTC-06:00',
    mobileCode: '+501',
  },
  {
    name: 'Benin',
    code: 'BJ',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+229',
  },
  {
    name: 'Bermuda',
    code: 'BM',
    timezone: 'Atlantic Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-441',
  },
  {
    name: 'Bhutan',
    code: 'BT',
    timezone: 'Bangladesh Standard Time',
    utc: 'UTC+06:00',
    mobileCode: '+975',
  },
  {
    name: 'Bolivarian Republic of Venezuela',
    code: 'VE',
    timezone: 'Venezuela Standard Time',
    utc: 'UTC-04:30',
    mobileCode: '+58',
  },
  {
    name: 'Bolivia',
    code: 'BO',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+591',
  },
  {
    name: 'Bonaire, Sint Eustatius and Saba',
    code: 'BQ',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+599',
  },
  {
    name: 'Bosnia and Herzegovina',
    code: 'BA',
    timezone: 'Central European Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+387',
  },
  {
    name: 'Botswana',
    code: 'BW',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+267',
  },
  {
    name: 'Bouvet Island',
    code: 'BV',
    timezone: 'UTC',
    utc: 'UTC',
    mobileCode: '+',
  },
  {
    name: 'Brazil',
    code: 'BR',
    timezone: 'E. South America Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+55',
  },
  {
    name: 'British Indian Ocean Territory',
    code: 'IO',
    timezone: 'Central Asia Standard Time',
    utc: 'UTC+06:00',
    mobileCode: '+246',
  },
  {
    name: 'Brunei',
    code: 'BN',
    timezone: 'Singapore Standard Time',
    utc: 'UTC+08:00',
    mobileCode: '+673',
  },
  {
    name: 'Bulgaria',
    code: 'BG',
    timezone: 'FLE Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+359',
  },
  {
    name: 'Burkina Faso',
    code: 'BF',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+226',
  },
  {
    name: 'Burundi',
    code: 'BI',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+257',
  },
  {
    name: 'Cabo Verde',
    code: 'CV',
    timezone: 'Cape Verde Standard Time',
    utc: 'UTC-01:00',
    mobileCode: '+238',
  },
  {
    name: 'Cambodia',
    code: 'KH',
    timezone: 'SE Asia Standard Time',
    utc: 'UTC+07:00',
    mobileCode: '+855',
  },
  {
    name: 'Cameroon',
    code: 'CM',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+237',
  },
  {
    name: 'Canada',
    code: 'CA',
    timezone: 'Eastern Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+1',
  },
  {
    name: 'Cayman Islands',
    code: 'KY',
    timezone: 'SA Pacific Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+1-345',
  },
  {
    name: 'Central African Republic',
    code: 'CF',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+236',
  },
  {
    name: 'Chad',
    code: 'TD',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+235',
  },
  {
    name: 'Chile',
    code: 'CL',
    timezone: 'Pacific SA Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+56',
  },
  {
    name: 'China',
    code: 'CN',
    timezone: 'China Standard Time',
    utc: 'UTC+08:00',
    mobileCode: '+86',
  },
  {
    name: 'Christmas Island',
    code: 'CX',
    timezone: 'SE Asia Standard Time',
    utc: 'UTC+07:00',
    mobileCode: '+61',
  },
  {
    name: 'Cocos (Keeling) Islands',
    code: 'CC',
    timezone: 'Myanmar Standard Time',
    utc: 'UTC+06:30',
    mobileCode: '+61',
  },
  {
    name: 'Colombia',
    code: 'CO',
    timezone: 'SA Pacific Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+57',
  },
  {
    name: 'Comoros',
    code: 'KM',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+269',
  },
  {
    name: 'Congo',
    code: 'CG',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+242',
  },
  {
    name: 'Congo (DRC)',
    code: 'CD',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+243',
  },
  {
    name: 'Cook Islands',
    code: 'CK',
    timezone: 'Hawaiian Standard Time',
    utc: 'UTC-10:00',
    mobileCode: '+682',
  },
  {
    name: 'Costa Rica',
    code: 'CR',
    timezone: 'Central America Standard Time',
    utc: 'UTC-06:00',
    mobileCode: '+506',
  },
  {
    name: "Côte d'Ivoire",
    code: 'CI',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+225',
  },
  {
    name: 'Croatia',
    code: 'HR',
    timezone: 'Central European Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+385',
  },
  {
    name: 'Cuba',
    code: 'CU',
    timezone: 'Eastern Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+53',
  },
  {
    name: 'Curaçao',
    code: 'CW',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+599',
  },
  {
    name: 'Cyprus',
    code: 'CY',
    timezone: 'E. Europe Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+357',
  },
  {
    name: 'Czech Republic',
    code: 'CZ',
    timezone: 'Central Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+420',
  },
  {
    name: 'Democratic Republic of Timor-Leste',
    code: 'TL',
    timezone: 'Tokyo Standard Time',
    utc: 'UTC+09:00',
    mobileCode: '+670',
  },
  {
    name: 'Denmark',
    code: 'DK',
    timezone: 'Romance Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+45',
  },
  {
    name: 'Djibouti',
    code: 'DJ',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+253',
  },
  {
    name: 'Dominica',
    code: 'DM',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-767',
  },
  {
    name: 'Dominican Republic',
    code: 'DO',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-809 and 1-829',
  },
  {
    name: 'Ecuador',
    code: 'EC',
    timezone: 'SA Pacific Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+593',
  },
  {
    name: 'Egypt',
    code: 'EG',
    timezone: 'Egypt Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+20',
  },
  {
    name: 'El Salvador',
    code: 'SV',
    timezone: 'Central America Standard Time',
    utc: 'UTC-06:00',
    mobileCode: '+503',
  },
  {
    name: 'Equatorial Guinea',
    code: 'GQ',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+240',
  },
  {
    name: 'Eritrea',
    code: 'ER',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+291',
  },
  {
    name: 'Estonia',
    code: 'EE',
    timezone: 'FLE Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+372',
  },
  {
    name: 'Ethiopia',
    code: 'ET',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+251',
  },
  {
    name: 'Falkland Islands (Islas Malvinas)',
    code: 'FK',
    timezone: 'SA Eastern Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+500',
  },
  {
    name: 'Faroe Islands',
    code: 'FO',
    timezone: 'GMT Standard Time',
    utc: 'UTC',
    mobileCode: '+298',
  },
  {
    name: 'Fiji Islands',
    code: 'FJ',
    timezone: 'Fiji Standard Time',
    utc: 'UTC+12:00',
    mobileCode: '+679',
  },
  {
    name: 'Finland',
    code: 'FI',
    timezone: 'FLE Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+358',
  },
  {
    name: 'France',
    code: 'FR',
    timezone: 'Romance Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+33',
  },
  {
    name: 'French Guiana',
    code: 'GF',
    timezone: 'SA Eastern Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+594',
  },
  {
    name: 'French Polynesia',
    code: 'PF',
    timezone: 'Hawaiian Standard Time',
    utc: 'UTC-10:00',
    mobileCode: '+689',
  },
  {
    name: 'French Southern and Antarctic Lands',
    code: 'TF',
    timezone: 'West Asia Standard Time',
    utc: 'UTC+05:00',
    mobileCode: '+',
  },
  {
    name: 'Gabon',
    code: 'GA',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+241',
  },
  {
    name: 'Gambia, The',
    code: 'GM',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+220',
  },
  {
    name: 'Georgia',
    code: 'GE',
    timezone: 'Georgian Standard Time',
    utc: 'UTC+04:00',
    mobileCode: '+995',
  },
  {
    name: 'Germany',
    code: 'DE',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+49',
  },
  {
    name: 'Ghana',
    code: 'GH',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+233',
  },
  {
    name: 'Gibraltar',
    code: 'GI',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+350',
  },
  {
    name: 'Greece',
    code: 'GR',
    timezone: 'GTB Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+30',
  },
  {
    name: 'Greenland',
    code: 'GL',
    timezone: 'Greenland Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+299',
  },
  {
    name: 'Grenada',
    code: 'GD',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-473',
  },
  {
    name: 'Guadeloupe',
    code: 'GP',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+590',
  },
  {
    name: 'Guam',
    code: 'GU',
    timezone: 'West Pacific Standard Time',
    utc: 'UTC+10:00',
    mobileCode: '+1-671',
  },
  {
    name: 'Guatemala',
    code: 'GT',
    timezone: 'Central America Standard Time',
    utc: 'UTC-06:00',
    mobileCode: '+502',
  },
  {
    name: 'Guernsey',
    code: 'GG',
    timezone: 'GMT Standard Time',
    utc: 'UTC',
    mobileCode: '+44-1481',
  },
  {
    name: 'Guinea',
    code: 'GN',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+224',
  },
  {
    name: 'Guinea-Bissau',
    code: 'GW',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+245',
  },
  {
    name: 'Guyana',
    code: 'GY',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+592',
  },
  {
    name: 'Haiti',
    code: 'HT',
    timezone: 'Eastern Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+509',
  },
  {
    name: 'Heard Island and McDonald Islands',
    code: 'HM',
    timezone: 'Mauritius Standard Time',
    utc: 'UTC+04:00',
    mobileCode: '+ ',
  },
  {
    name: 'Honduras',
    code: 'HN',
    timezone: 'Central America Standard Time',
    utc: 'UTC-06:00',
    mobileCode: '+504',
  },
  {
    name: 'Hong Kong SAR',
    code: 'HK',
    timezone: 'China Standard Time',
    utc: 'UTC+08:00',
    mobileCode: '+852',
  },
  {
    name: 'Hungary',
    code: 'HU',
    timezone: 'Central Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+36',
  },
  {
    name: 'Iceland',
    code: 'IS',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+354',
  },
  {
    name: 'India',
    code: 'IN',
    timezone: 'India Standard Time',
    utc: 'UTC+05:30',
    mobileCode: '+91',
  },
  {
    name: 'Indonesia',
    code: 'ID',
    timezone: 'SE Asia Standard Time',
    utc: 'UTC+07:00',
    mobileCode: '+62',
  },
  {
    name: 'Iran',
    code: 'IR',
    timezone: 'Iran Standard Time',
    utc: 'UTC+03:30',
    mobileCode: '+98',
  },
  {
    name: 'Iraq',
    code: 'IQ',
    timezone: 'Arabic Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+964',
  },
  {
    name: 'Ireland',
    code: 'IE',
    timezone: 'GMT Standard Time',
    utc: 'UTC',
    mobileCode: '+353',
  },
  {
    name: 'Israel',
    code: 'IL',
    timezone: 'Israel Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+972',
  },
  {
    name: 'Italy',
    code: 'IT',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+39',
  },
  {
    name: 'Jamaica',
    code: 'JM',
    timezone: 'SA Pacific Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+1-876',
  },
  {
    name: 'Jan Mayen',
    code: 'SJ',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+47',
  },
  {
    name: 'Japan',
    code: 'JP',
    timezone: 'Tokyo Standard Time',
    utc: 'UTC+09:00',
    mobileCode: '+81',
  },
  {
    name: 'Jersey',
    code: 'JE',
    timezone: 'GMT Standard Time',
    utc: 'UTC',
    mobileCode: '+44-1534',
  },
  {
    name: 'Jordan',
    code: 'JO',
    timezone: 'Jordan Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+962',
  },
  {
    name: 'Kazakhstan',
    code: 'KZ',
    timezone: 'Central Asia Standard Time',
    utc: 'UTC+06:00',
    mobileCode: '+7',
  },
  {
    name: 'Kenya',
    code: 'KE',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+254',
  },
  {
    name: 'Kiribati',
    code: 'KI',
    timezone: 'UTC+12',
    utc: 'UTC+12:00',
    mobileCode: '+686',
  },
  {
    name: 'Korea',
    code: 'KR',
    timezone: 'Korea Standard Time',
    utc: 'UTC+09:00',
    mobileCode: '+82',
  },
  {
    name: 'Kosovo',
    code: 'XK',
    timezone: 'Central European Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+',
  },
  {
    name: 'Kuwait',
    code: 'KW',
    timezone: 'Arab Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+965',
  },
  {
    name: 'Kyrgyzstan',
    code: 'KG',
    timezone: 'Central Asia Standard Time',
    utc: 'UTC+06:00',
    mobileCode: '+996',
  },
  {
    name: 'Laos',
    code: 'LA',
    timezone: 'SE Asia Standard Time',
    utc: 'UTC+07:00',
    mobileCode: '+856',
  },
  {
    name: 'Latvia',
    code: 'LV',
    timezone: 'FLE Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+371',
  },
  {
    name: 'Lebanon',
    code: 'LB',
    timezone: 'Middle East Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+961',
  },
  {
    name: 'Lesotho',
    code: 'LS',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+266',
  },
  {
    name: 'Liberia',
    code: 'LR',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+231',
  },
  {
    name: 'Libya',
    code: 'LY',
    timezone: 'E. Europe Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+218',
  },
  {
    name: 'Liechtenstein',
    code: 'LI',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+423',
  },
  {
    name: 'Lithuania',
    code: 'LT',
    timezone: 'FLE Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+370',
  },
  {
    name: 'Luxembourg',
    code: 'LU',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+352',
  },
  {
    name: 'Macao SAR',
    code: 'MO',
    timezone: 'China Standard Time',
    utc: 'UTC+08:00',
    mobileCode: '+853',
  },
  {
    name: 'Macedonia, Former Yugoslav Republic of',
    code: 'MK',
    timezone: 'Central European Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+389',
  },
  {
    name: 'Madagascar',
    code: 'MG',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+261',
  },
  {
    name: 'Malawi',
    code: 'MW',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+265',
  },
  {
    name: 'Malaysia',
    code: 'MY',
    timezone: 'Singapore Standard Time',
    utc: 'UTC+08:00',
    mobileCode: '+60',
  },
  {
    name: 'Maldives',
    code: 'MV',
    timezone: 'West Asia Standard Time',
    utc: 'UTC+05:00',
    mobileCode: '+960',
  },
  {
    name: 'Mali',
    code: 'ML',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+223',
  },
  {
    name: 'Malta',
    code: 'MT',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+356',
  },
  {
    name: 'Man, Isle of',
    code: 'IM',
    timezone: 'GMT Standard Time',
    utc: 'UTC',
    mobileCode: '+44-1624',
  },
  {
    name: 'Marshall Islands',
    code: 'MH',
    timezone: 'UTC+12',
    utc: 'UTC+12:00',
    mobileCode: '+692',
  },
  {
    name: 'Martinique',
    code: 'MQ',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+596',
  },
  {
    name: 'Mauritania',
    code: 'MR',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+222',
  },
  {
    name: 'Mauritius',
    code: 'MU',
    timezone: 'Mauritius Standard Time',
    utc: 'UTC+04:00',
    mobileCode: '+230',
  },
  {
    name: 'Mayotte',
    code: 'YT',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+262',
  },
  {
    name: 'Mexico',
    code: 'MX',
    timezone: 'Central Standard Time (Mexico)',
    utc: 'UTC-06:00',
    mobileCode: '+52',
  },
  {
    name: 'Micronesia',
    code: 'FM',
    timezone: 'West Pacific Standard Time',
    utc: 'UTC+10:00',
    mobileCode: '+691',
  },
  {
    name: 'Moldova',
    code: 'MD',
    timezone: 'GTB Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+373',
  },
  {
    name: 'Monaco',
    code: 'MC',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+377',
  },
  {
    name: 'Mongolia',
    code: 'MN',
    timezone: 'Ulaanbaatar Standard Time',
    utc: 'UTC+08:00',
    mobileCode: '+976',
  },
  {
    name: 'Montenegro',
    code: 'ME',
    timezone: 'Central European Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+382',
  },
  {
    name: 'Montserrat',
    code: 'MS',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-664',
  },
  {
    name: 'Morocco',
    code: 'MA',
    timezone: 'Morocco Standard Time',
    utc: 'UTC',
    mobileCode: '+212',
  },
  {
    name: 'Mozambique',
    code: 'MZ',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+258',
  },
  {
    name: 'Myanmar',
    code: 'MM',
    timezone: 'Myanmar Standard Time',
    utc: 'UTC+06:30',
    mobileCode: '+95',
  },
  {
    name: 'Namibia',
    code: 'NA',
    timezone: 'Namibia Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+264',
  },
  {
    name: 'Nauru',
    code: 'NR',
    timezone: 'UTC+12',
    utc: 'UTC+12:00',
    mobileCode: '+674',
  },
  {
    name: 'Nepal',
    code: 'NP',
    timezone: 'Nepal Standard Time',
    utc: 'UTC+05:45',
    mobileCode: '+977',
  },
  {
    name: 'Netherlands',
    code: 'NL',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+31',
  },
  {
    name: 'New Caledonia',
    code: 'NC',
    timezone: 'Central Pacific Standard Time',
    utc: 'UTC+11:00',
    mobileCode: '+687',
  },
  {
    name: 'New Zealand',
    code: 'NZ',
    timezone: 'New Zealand Standard Time',
    utc: 'UTC+12:00',
    mobileCode: '+64',
  },
  {
    name: 'Nicaragua',
    code: 'NI',
    timezone: 'Central America Standard Time',
    utc: 'UTC-06:00',
    mobileCode: '+505',
  },
  {
    name: 'Niger',
    code: 'NE',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+227',
  },
  {
    name: 'Nigeria',
    code: 'NG',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+234',
  },
  {
    name: 'Niue',
    code: 'NU',
    timezone: 'UTC-11',
    utc: 'UTC-11:00',
    mobileCode: '+683',
  },
  {
    name: 'Norfolk Island',
    code: 'NF',
    timezone: 'Central Pacific Standard Time',
    utc: 'UTC+11:00',
    mobileCode: '+672',
  },
  {
    name: 'North Korea',
    code: 'KP',
    timezone: 'Korea Standard Time',
    utc: 'UTC+09:00',
    mobileCode: '+850',
  },
  {
    name: 'Northern Mariana Islands',
    code: 'MP',
    timezone: 'West Pacific Standard Time',
    utc: 'UTC+10:00',
    mobileCode: '+1-670',
  },
  {
    name: 'Norway',
    code: 'NO',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+47',
  },
  {
    name: 'Oman',
    code: 'OM',
    timezone: 'Arabian Standard Time',
    utc: 'UTC+04:00',
    mobileCode: '+968',
  },
  {
    name: 'Pakistan',
    code: 'PK',
    timezone: 'Pakistan Standard Time',
    utc: 'UTC+05:00',
    mobileCode: '+92',
  },
  {
    name: 'Palau',
    code: 'PW',
    timezone: 'Tokyo Standard Time',
    utc: 'UTC+09:00',
    mobileCode: '+680',
  },
  {
    name: 'Palestinian Authority',
    code: 'PS',
    timezone: 'Egypt Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+970',
  },
  {
    name: 'Panama',
    code: 'PA',
    timezone: 'SA Pacific Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+507',
  },
  {
    name: 'Papua New Guinea',
    code: 'PG',
    timezone: 'West Pacific Standard Time',
    utc: 'UTC+10:00',
    mobileCode: '+675',
  },
  {
    name: 'Paraguay',
    code: 'PY',
    timezone: 'Paraguay Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+595',
  },
  {
    name: 'Peru',
    code: 'PE',
    timezone: 'SA Pacific Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+51',
  },
  {
    name: 'Philippines',
    code: 'PH',
    timezone: 'Singapore Standard Time',
    utc: 'UTC+08:00',
    mobileCode: '+63',
  },
  {
    name: 'Pitcairn Islands',
    code: 'PN',
    timezone: 'Pacific Standard Time',
    utc: 'UTC-08:00',
    mobileCode: '+870',
  },
  {
    name: 'Poland',
    code: 'PL',
    timezone: 'Central European Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+48',
  },
  {
    name: 'Portugal',
    code: 'PT',
    timezone: 'GMT Standard Time',
    utc: 'UTC',
    mobileCode: '+351',
  },
  {
    name: 'Puerto Rico',
    code: 'PR',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-787 and 1-939',
  },
  {
    name: 'Qatar',
    code: 'QA',
    timezone: 'Arab Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+974',
  },
  {
    name: 'Reunion',
    code: 'RE',
    timezone: 'Mauritius Standard Time',
    utc: 'UTC+04:00',
    mobileCode: '+262',
  },
  {
    name: 'Romania',
    code: 'RO',
    timezone: 'GTB Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+40',
  },
  {
    name: 'Russia',
    code: 'RU',
    timezone: 'Russian Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+7',
  },
  {
    name: 'Rwanda',
    code: 'RW',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+250',
  },
  {
    name: 'Saint Barthélemy',
    code: 'BL',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+590',
  },
  {
    name: 'Saint Helena, Ascension and Tristan da Cunha',
    code: 'SH',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+290',
  },
  {
    name: 'Saint Kitts and Nevis',
    code: 'KN',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-869',
  },
  {
    name: 'Saint Lucia',
    code: 'LC',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-758',
  },
  {
    name: 'Saint Martin (French part)',
    code: 'MF',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+590',
  },
  {
    name: 'Saint Pierre and Miquelon',
    code: 'PM',
    timezone: 'Greenland Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+508',
  },
  {
    name: 'Saint Vincent and the Grenadines',
    code: 'VC',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-784',
  },
  {
    name: 'Samoa',
    code: 'WS',
    timezone: 'Samoa Standard Time',
    utc: 'UTC+13:00',
    mobileCode: '+685',
  },
  {
    name: 'San Marino',
    code: 'SM',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+378',
  },
  {
    name: 'São Tomé and Príncipe',
    code: 'ST',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+239',
  },
  {
    name: 'Saudi Arabia',
    code: 'SA',
    timezone: 'Arab Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+966',
  },
  {
    name: 'Senegal',
    code: 'SN',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+221',
  },
  {
    name: 'Serbia',
    code: 'RS',
    timezone: 'Central Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+381',
  },
  {
    name: 'Seychelles',
    code: 'SC',
    timezone: 'Mauritius Standard Time',
    utc: 'UTC+04:00',
    mobileCode: '+248',
  },
  {
    name: 'Sierra Leone',
    code: 'SL',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+232',
  },
  {
    name: 'Singapore',
    code: 'SG',
    timezone: 'Singapore Standard Time',
    utc: 'UTC+08:00',
    mobileCode: '+65',
  },
  {
    name: 'Sint Maarten (Dutch part)',
    code: 'SX',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+599',
  },
  {
    name: 'Slovakia',
    code: 'SK',
    timezone: 'Central Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+421',
  },
  {
    name: 'Slovenia',
    code: 'SI',
    timezone: 'Central Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+386',
  },
  {
    name: 'Solomon Islands',
    code: 'SB',
    timezone: 'Central Pacific Standard Time',
    utc: 'UTC+11:00',
    mobileCode: '+677',
  },
  {
    name: 'Somalia',
    code: 'SO',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+252',
  },
  {
    name: 'South Africa',
    code: 'ZA',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+27',
  },
  {
    name: 'South Georgia and the South Sandwich Islands',
    code: 'GS',
    timezone: 'UTC-02',
    utc: 'UTC-02:00',
    mobileCode: '+',
  },
  {
    name: 'South Sudan',
    code: 'SS',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+211',
  },
  {
    name: 'Spain',
    code: 'ES',
    timezone: 'Romance Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+34',
  },
  {
    name: 'Sri Lanka',
    code: 'LK',
    timezone: 'Sri Lanka Standard Time',
    utc: 'UTC+05:30',
    mobileCode: '+94',
  },
  {
    name: 'Sudan',
    code: 'SD',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+249',
  },
  {
    name: 'Suriname',
    code: 'SR',
    timezone: 'SA Eastern Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+597',
  },
  {
    name: 'Svalbard',
    code: 'SJ',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+47',
  },
  {
    name: 'Swaziland',
    code: 'SZ',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+268',
  },
  {
    name: 'Sweden',
    code: 'SE',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+46',
  },
  {
    name: 'Switzerland',
    code: 'CH',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+41',
  },
  {
    name: 'Syria',
    code: 'SY',
    timezone: 'Syria Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+963',
  },
  {
    name: 'Taiwan',
    code: 'TW',
    timezone: 'Taipei Standard Time',
    utc: 'UTC+08:00',
    mobileCode: '+886',
  },
  {
    name: 'Tajikistan',
    code: 'TJ',
    timezone: 'West Asia Standard Time',
    utc: 'UTC+05:00',
    mobileCode: '+992',
  },
  {
    name: 'Tanzania',
    code: 'TZ',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+255',
  },
  {
    name: 'Thailand',
    code: 'TH',
    timezone: 'SE Asia Standard Time',
    utc: 'UTC+07:00',
    mobileCode: '+66',
  },
  {
    name: 'Togo',
    code: 'TG',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+228',
  },
  {
    name: 'Tokelau',
    code: 'TK',
    timezone: 'Tonga Standard Time',
    utc: 'UTC+13:00',
    mobileCode: '+690',
  },
  {
    name: 'Tonga',
    code: 'TO',
    timezone: 'Tonga Standard Time',
    utc: 'UTC+13:00',
    mobileCode: '+676',
  },
  {
    name: 'Trinidad and Tobago',
    code: 'TT',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-868',
  },
  {
    name: 'Tunisia',
    code: 'TN',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+216',
  },
  {
    name: 'Turkey',
    code: 'TR',
    timezone: 'Turkey Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+90',
  },
  {
    name: 'Turkmenistan',
    code: 'TM',
    timezone: 'West Asia Standard Time',
    utc: 'UTC+05:00',
    mobileCode: '+993',
  },
  {
    name: 'Turks and Caicos Islands',
    code: 'TC',
    timezone: 'Eastern Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+1-649',
  },
  {
    name: 'Tuvalu',
    code: 'TV',
    timezone: 'UTC+12',
    utc: 'UTC+12:00',
    mobileCode: '+688',
  },
  {
    name: 'U.S. Minor Outlying Islands',
    code: 'UM',
    timezone: 'UTC-11',
    utc: 'UTC-11:00',
    mobileCode: '+1',
  },
  {
    name: 'Uganda',
    code: 'UG',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+256',
  },
  {
    name: 'Ukraine',
    code: 'UA',
    timezone: 'FLE Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+380',
  },
  {
    name: 'United Arab Emirates',
    code: 'AE',
    timezone: 'Arabian Standard Time',
    utc: 'UTC+04:00',
    mobileCode: '+971',
  },
  {
    name: 'United Kingdom',
    code: 'GB',
    timezone: 'GMT Standard Time',
    utc: 'UTC',
    mobileCode: '+44',
  },
  {
    name: 'United States',
    code: 'US',
    timezone: 'Pacific Standard Time',
    utc: 'UTC-08:00',
    mobileCode: '+1',
  },
  {
    name: 'Uruguay',
    code: 'UY',
    timezone: 'Montevideo Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+598',
  },
  {
    name: 'Uzbekistan',
    code: 'UZ',
    timezone: 'West Asia Standard Time',
    utc: 'UTC+05:00',
    mobileCode: '+998',
  },
  {
    name: 'Vanuatu',
    code: 'VU',
    timezone: 'Central Pacific Standard Time',
    utc: 'UTC+11:00',
    mobileCode: '+678',
  },
  {
    name: 'Vatican City',
    code: 'VA',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+379',
  },
  {
    name: 'Vietnam',
    code: 'VN',
    timezone: 'SE Asia Standard Time',
    utc: 'UTC+07:00',
    mobileCode: '+84',
  },
  {
    name: 'Virgin Islands, U.S.',
    code: 'VI',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-340',
  },
  {
    name: 'Virgin Islands, British',
    code: 'VG',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-284',
  },
  {
    name: 'Wallis and Futuna',
    code: 'WF',
    timezone: 'UTC+12',
    utc: 'UTC+12:00',
    mobileCode: '+681',
  },
  {
    name: 'Yemen',
    code: 'YE',
    timezone: 'Arab Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+967',
  },
  {
    name: 'Zambia',
    code: 'ZM',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+260',
  },
  {
    name: 'Zimbabwe',
    code: 'ZW',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+263',
  },
];

@milcab
Copy link

milcab commented May 17, 2022

Thank you!!!!! life saver!

@cssmatter
Copy link

Thank you!!

@apelmahmudDev
Copy link

Thanks a lot!

@TechDan09
Copy link

for anyone interested, Here's country: country code mapped

// ISO 3166 Alpha-2 Format: [Country Name] : [2 letter Country Code]

const countryList = {
  Afghanistan: 'AF',
  'Aland Islands': 'AX',
  Albania: 'AL',
  Algeria: 'DZ',
  'American Samoa': 'AS',
  Andorra: 'AD',
  Angola: 'AO',
  Anguilla: 'AI',
  Antarctica: 'AQ',
  'Antigua And Barbuda': 'AG',
  Argentina: 'AR',
  Armenia: 'AM',
  Aruba: 'AW',
  Australia: 'AU',
  Austria: 'AT',
  Azerbaijan: 'AZ',
  Bahamas: 'BS',
  Bahrain: 'BH',
  Bangladesh: 'BD',
  Barbados: 'BB',
  Belarus: 'BY',
  Belgium: 'BE',
  Belize: 'BZ',
  Benin: 'BJ',
  Bermuda: 'BM',
  Bhutan: 'BT',
  Bolivia: 'BO',
  'Bosnia And Herzegovina': 'BA',
  Botswana: 'BW',
  'Bouvet Island': 'BV',
  Brazil: 'BR',
  'British Indian Ocean Territory': 'IO',
  'Brunei Darussalam': 'BN',
  Bulgaria: 'BG',
  'Burkina Faso': 'BF',
  Burundi: 'BI',
  Cambodia: 'KH',
  Cameroon: 'CM',
  Canada: 'CA',
  'Cape Verde': 'CV',
  'Cayman Islands': 'KY',
  'Central African Republic': 'CF',
  Chad: 'TD',
  Chile: 'CL',
  China: 'CN',
  'Christmas Island': 'CX',
  'Cocos (Keeling) Islands': 'CC',
  Colombia: 'CO',
  Comoros: 'KM',
  Congo: 'CG',
  'Congo, Democratic Republic': 'CD',
  'Cook Islands': 'CK',
  'Costa Rica': 'CR',
  "Cote D'Ivoire": 'CI',
  Croatia: 'HR',
  Cuba: 'CU',
  Cyprus: 'CY',
  'Czech Republic': 'CZ',
  Denmark: 'DK',
  Djibouti: 'DJ',
  Dominica: 'DM',
  'Dominican Republic': 'DO',
  Ecuador: 'EC',
  Egypt: 'EG',
  'El Salvador': 'SV',
  'Equatorial Guinea': 'GQ',
  Eritrea: 'ER',
  Estonia: 'EE',
  Ethiopia: 'ET',
  'Falkland Islands (Malvinas)': 'FK',
  'Faroe Islands': 'FO',
  Fiji: 'FJ',
  Finland: 'FI',
  France: 'FR',
  'French Guiana': 'GF',
  'French Polynesia': 'PF',
  'French Southern Territories': 'TF',
  Gabon: 'GA',
  Gambia: 'GM',
  Georgia: 'GE',
  Germany: 'DE',
  Ghana: 'GH',
  Gibraltar: 'GI',
  Greece: 'GR',
  Greenland: 'GL',
  Grenada: 'GD',
  Guadeloupe: 'GP',
  Guam: 'GU',
  Guatemala: 'GT',
  Guernsey: 'GG',
  Guinea: 'GN',
  'Guinea-Bissau': 'GW',
  Guyana: 'GY',
  Haiti: 'HT',
  'Heard Island & Mcdonald Islands': 'HM',
  'Holy See (Vatican City State)': 'VA',
  Honduras: 'HN',
  'Hong Kong': 'HK',
  Hungary: 'HU',
  Iceland: 'IS',
  India: 'IN',
  Indonesia: 'ID',
  'Iran, Islamic Republic Of': 'IR',
  Iraq: 'IQ',
  Ireland: 'IE',
  'Isle Of Man': 'IM',
  Israel: 'IL',
  Italy: 'IT',
  Jamaica: 'JM',
  Japan: 'JP',
  Jersey: 'JE',
  Jordan: 'JO',
  Kazakhstan: 'KZ',
  Kenya: 'KE',
  Kiribati: 'KI',
  Korea: 'KR',
  Kuwait: 'KW',
  Kyrgyzstan: 'KG',
  "Lao People's Democratic Republic": 'LA',
  Latvia: 'LV',
  Lebanon: 'LB',
  Lesotho: 'LS',
  Liberia: 'LR',
  'Libyan Arab Jamahiriya': 'LY',
  Liechtenstein: 'LI',
  Lithuania: 'LT',
  Luxembourg: 'LU',
  Macao: 'MO',
  Macedonia: 'MK',
  Madagascar: 'MG',
  Malawi: 'MW',
  Malaysia: 'MY',
  Maldives: 'MV',
  Mali: 'ML',
  Malta: 'MT',
  'Marshall Islands': 'MH',
  Martinique: 'MQ',
  Mauritania: 'MR',
  Mauritius: 'MU',
  Mayotte: 'YT',
  Mexico: 'MX',
  'Micronesia, Federated States Of': 'FM',
  Moldova: 'MD',
  Monaco: 'MC',
  Mongolia: 'MN',
  Montenegro: 'ME',
  Montserrat: 'MS',
  Morocco: 'MA',
  Mozambique: 'MZ',
  Myanmar: 'MM',
  Namibia: 'NA',
  Nauru: 'NR',
  Nepal: 'NP',
  Netherlands: 'NL',
  'Netherlands Antilles': 'AN',
  'New Caledonia': 'NC',
  'New Zealand': 'NZ',
  Nicaragua: 'NI',
  Niger: 'NE',
  Nigeria: 'NG',
  Niue: 'NU',
  'Norfolk Island': 'NF',
  'Northern Mariana Islands': 'MP',
  Norway: 'NO',
  Oman: 'OM',
  Pakistan: 'PK',
  Palau: 'PW',
  'Palestinian Territory, Occupied': 'PS',
  Panama: 'PA',
  'Papua New Guinea': 'PG',
  Paraguay: 'PY',
  Peru: 'PE',
  Philippines: 'PH',
  Pitcairn: 'PN',
  Poland: 'PL',
  Portugal: 'PT',
  'Puerto Rico': 'PR',
  Qatar: 'QA',
  Reunion: 'RE',
  Romania: 'RO',
  'Russian Federation': 'RU',
  Rwanda: 'RW',
  'Saint Barthelemy': 'BL',
  'Saint Helena': 'SH',
  'Saint Kitts And Nevis': 'KN',
  'Saint Lucia': 'LC',
  'Saint Martin': 'MF',
  'Saint Pierre And Miquelon': 'PM',
  'Saint Vincent And Grenadines': 'VC',
  Samoa: 'WS',
  'San Marino': 'SM',
  'Sao Tome And Principe': 'ST',
  'Saudi Arabia': 'SA',
  Senegal: 'SN',
  Serbia: 'RS',
  Seychelles: 'SC',
  'Sierra Leone': 'SL',
  Singapore: 'SG',
  Slovakia: 'SK',
  Slovenia: 'SI',
  'Solomon Islands': 'SB',
  Somalia: 'SO',
  'South Africa': 'ZA',
  'South Georgia And Sandwich Isl.': 'GS',
  Spain: 'ES',
  'Sri Lanka': 'LK',
  Sudan: 'SD',
  Suriname: 'SR',
  'Svalbard And Jan Mayen': 'SJ',
  Swaziland: 'SZ',
  Sweden: 'SE',
  Switzerland: 'CH',
  'Syrian Arab Republic': 'SY',
  Taiwan: 'TW',
  Tajikistan: 'TJ',
  Tanzania: 'TZ',
  Thailand: 'TH',
  'Timor-Leste': 'TL',
  Togo: 'TG',
  Tokelau: 'TK',
  Tonga: 'TO',
  'Trinidad And Tobago': 'TT',
  Tunisia: 'TN',
  Turkey: 'TR',
  Turkmenistan: 'TM',
  'Turks And Caicos Islands': 'TC',
  Tuvalu: 'TV',
  Uganda: 'UG',
  Ukraine: 'UA',
  'United Arab Emirates': 'AE',
  'United Kingdom': 'GB',
  'United States': 'US',
  'United States Outlying Islands': 'UM',
  Uruguay: 'UY',
  Uzbekistan: 'UZ',
  Vanuatu: 'VU',
  Venezuela: 'VE',
  'Viet Nam': 'VN',
  'Virgin Islands, British': 'VG',
  'Virgin Islands, U.S.': 'VI',
  'Wallis And Futuna': 'WF',
  'Western Sahara': 'EH',
  Yemen: 'YE',
  Zambia: 'ZM',
  Zimbabwe: 'ZW',
  'North Macedonia': 'MK',
  Češka: 'CZ'
}

@vtavaresl
Copy link

vtavaresl commented Jul 26, 2022

PT-BR

const countryList = [
	{
	 "id": 1,
	 "name": "Afeganistão",
	 "currency": "AFN",
	 "phone": 93,
	 "capital": "Kabul",
	 "code": "AF",
	 "code3": "AFG",
	 "continent": "Ásia",
	 "number": 4
	},
	{
	 "id": 2,
	 "name": "África do Sul",
	 "currency": "ZAR",
	 "phone": 27,
	 "capital": "Pretoria",
	 "code": "ZA",
	 "code3": "ZAF",
	 "continent": "África",
	 "number": 710
	},
	{
	 "id": 3,
	 "name": "Albânia",
	 "currency": "ALL",
	 "phone": 355,
	 "capital": "Tirana",
	 "code": "AL",
	 "code3": "ALB",
	 "continent": "Europa",
	 "number": 8
	},
	{
	 "id": 4,
	 "name": "Alemanha",
	 "currency": "EUR",
	 "phone": 49,
	 "capital": "Berlin",
	 "code": "DE",
	 "code3": "DEU",
	 "continent": "Europa",
	 "number": 276
	},
	{
	 "id": 5,
	 "name": "Andorra",
	 "currency": "EUR",
	 "phone": 376,
	 "capital": "Andorra la Vella",
	 "code": "AD",
	 "code3": "AND",
	 "continent": "Europa",
	 "number": 20
	},
	{
	 "id": 6,
	 "name": "Angola",
	 "currency": "AOA",
	 "phone": 244,
	 "capital": "Luanda",
	 "code": "AO",
	 "code3": "AGO",
	 "continent": "África",
	 "number": 24
	},
	{
	 "id": 7,
	 "name": "Anguilla",
	 "currency": "XCD",
	 "phone": 1264,
	 "capital": "The Valley",
	 "code": "AI",
	 "code3": "AIA",
	 "continent": "América",
	 "number": 660
	},
	{
	 "id": 8,
	 "name": "Antártida",
	 "currency": "AAD",
	 "phone": 672,
	 "capital": "Antártida",
	 "code": "AQ",
	 "code3": "ATA",
	 "continent": "Antártida",
	 "number": 10
	},
	{
	 "id": 9,
	 "name": "Antígua e Barbuda",
	 "currency": "XCD",
	 "phone": 1268,
	 "capital": "St. John's",
	 "code": "AG",
	 "code3": "ATG",
	 "continent": "América",
	 "number": 28
	},
	{
	 "id": 11,
	 "name": "Arábia Saudita",
	 "currency": "SAR",
	 "phone": 966,
	 "capital": "Riyadh",
	 "code": "SA",
	 "code3": "SAU",
	 "continent": "Ásia",
	 "number": 682
	},
	{
	 "id": 12,
	 "name": "Argélia",
	 "currency": "DZD",
	 "phone": 213,
	 "capital": "Algiers",
	 "code": "DZ",
	 "code3": "DZA",
	 "continent": "África",
	 "number": 12
	},
	{
	 "id": 13,
	 "name": "Argentina",
	 "currency": "ARS",
	 "phone": 54,
	 "capital": "Buenos Aires",
	 "code": "AR",
	 "code3": "ARG",
	 "continent": "América",
	 "number": 32
	},
	{
	 "id": 14,
	 "name": "Armênia",
	 "currency": "AMD",
	 "phone": 374,
	 "capital": "Yerevan",
	 "code": "AM",
	 "code3": "ARM",
	 "continent": "Ásia",
	 "number": 51
	},
	{
	 "id": 15,
	 "name": "Aruba",
	 "currency": "AWG",
	 "phone": 297,
	 "capital": "Oranjestad",
	 "code": "AW",
	 "code3": "ABW",
	 "continent": "América",
	 "number": 533
	},
	{
	 "id": 16,
	 "name": "Austrália",
	 "currency": "AUD",
	 "phone": 61,
	 "capital": "Canberra",
	 "code": "AU",
	 "code3": "AUS",
	 "continent": "Oceania",
	 "number": 36
	},
	{
	 "id": 17,
	 "name": "Áustria",
	 "currency": "EUR",
	 "phone": 43,
	 "capital": "Vienna",
	 "code": "AT",
	 "code3": "AUT",
	 "continent": "Europa",
	 "number": 40
	},
	{
	 "id": 18,
	 "name": "Azerbaijão",
	 "currency": "AZN",
	 "phone": 994,
	 "capital": "Baku",
	 "code": "AZ",
	 "code3": "AZE",
	 "continent": "Ásia",
	 "number": 31
	},
	{
	 "id": 19,
	 "name": "Bahamas",
	 "currency": "BSD",
	 "phone": 1242,
	 "capital": "Nassau",
	 "code": "BS",
	 "code3": "BHS",
	 "continent": "América",
	 "number": 44
	},
	{
	 "id": 20,
	 "name": "Bahrein",
	 "currency": "BHD",
	 "phone": 973,
	 "capital": "Manama",
	 "code": "BH",
	 "code3": "BHR",
	 "continent": "Ásia",
	 "number": 48
	},
	{
	 "id": 21,
	 "name": "Bangladesh",
	 "currency": "BDT",
	 "phone": 880,
	 "capital": "Dhaka",
	 "code": "BD",
	 "code3": "BGD",
	 "continent": "Ásia",
	 "number": 50
	},
	{
	 "id": 22,
	 "name": "Barbados",
	 "currency": "BBD",
	 "phone": 1246,
	 "capital": "Bridgetown",
	 "code": "BB",
	 "code3": "BRB",
	 "continent": "América",
	 "number": 52
	},
	{
	 "id": 23,
	 "name": "Bélgica",
	 "currency": "EUR",
	 "phone": 32,
	 "capital": "Brussels",
	 "code": "BE",
	 "code3": "BEL",
	 "continent": "Europa",
	 "number": 56
	},
	{
	 "id": 24,
	 "name": "Belize",
	 "currency": "BZD",
	 "phone": 501,
	 "capital": "Belmopan",
	 "code": "BZ",
	 "code3": "BLZ",
	 "continent": "América",
	 "number": 84
	},
	{
	 "id": 25,
	 "name": "Benin",
	 "currency": "XOF",
	 "phone": 229,
	 "capital": "Porto-Novo",
	 "code": "BJ",
	 "code3": "BEN",
	 "continent": "África",
	 "number": 204
	},
	{
	 "id": 26,
	 "name": "Bermudas",
	 "currency": "BMD",
	 "phone": 1441,
	 "capital": "Hamilton",
	 "code": "BM",
	 "code3": "BMU",
	 "continent": "América",
	 "number": 60
	},
	{
	 "id": 27,
	 "name": "Bielo-Rússia",
	 "currency": "BYN",
	 "phone": 375,
	 "capital": "Minsk",
	 "code": "BY",
	 "code3": "BLR",
	 "continent": "Europa",
	 "number": 112
	},
	{
	 "id": 28,
	 "name": "Bolívia",
	 "currency": "BOB",
	 "phone": 591,
	 "capital": "Sucre",
	 "code": "BO",
	 "code3": "BOL",
	 "continent": "América",
	 "number": 68
	},
	{
	 "id": 29,
	 "name": "Bósnia e Herzegovina",
	 "currency": "BAM",
	 "phone": 387,
	 "capital": "Sarajevo",
	 "code": "BA",
	 "code3": "BIH",
	 "continent": "Europa",
	 "number": 70
	},
	{
	 "id": 30,
	 "name": "Botswana",
	 "currency": "BWP",
	 "phone": 267,
	 "capital": "Gaborone",
	 "code": "BW",
	 "code3": "BWA",
	 "continent": "África",
	 "number": 72
	},
	{
	 "id": 31,
	 "name": "Brasil",
	 "currency": "BRL",
	 "phone": 55,
	 "capital": "Brasilia",
	 "code": "BR",
	 "code3": "BRA",
	 "continent": "América",
	 "number": 76
	},
	{
	 "id": 32,
	 "name": "Brunei",
	 "currency": "BND",
	 "phone": 673,
	 "capital": "Bandar Seri Begawan",
	 "code": "BN",
	 "code3": "BRN",
	 "continent": "Ásia",
	 "number": 96
	},
	{
	 "id": 33,
	 "name": "Bulgária",
	 "currency": "BGN",
	 "phone": 359,
	 "capital": "Sofia",
	 "code": "BG",
	 "code3": "BGR",
	 "continent": "Europa",
	 "number": 100
	},
	{
	 "id": 34,
	 "name": "Burkina Faso",
	 "currency": "XOF",
	 "phone": 226,
	 "capital": "Ouagadougou",
	 "code": "BF",
	 "code3": "BFA",
	 "continent": "África",
	 "number": 854
	},
	{
	 "id": 35,
	 "name": "Burundi",
	 "currency": "BIF",
	 "phone": 257,
	 "capital": "Bujumbura",
	 "code": "BI",
	 "code3": "BDI",
	 "continent": "África",
	 "number": 108
	},
	{
	 "id": 36,
	 "name": "Butão",
	 "currency": "BTN",
	 "phone": 975,
	 "capital": "Thimphu",
	 "code": "BT",
	 "code3": "BTN",
	 "continent": "Ásia",
	 "number": 64
	},
	{
	 "id": 37,
	 "name": "Cabo Verde",
	 "currency": "CVE",
	 "phone": 238,
	 "capital": "Praia",
	 "code": "CV",
	 "code3": "CPV",
	 "continent": "África",
	 "number": 132
	},
	{
	 "id": 38,
	 "name": "Camarões",
	 "currency": "XAF",
	 "phone": 237,
	 "capital": "Yaounde",
	 "code": "CM",
	 "code3": "CMR",
	 "continent": "África",
	 "number": 120
	},
	{
	 "id": 39,
	 "name": "Camboja",
	 "currency": "KHR",
	 "phone": 855,
	 "capital": "Phnom Penh",
	 "code": "KH",
	 "code3": "KHM",
	 "continent": "Ásia",
	 "number": 116
	},
	{
	 "id": 40,
	 "name": "Canadá",
	 "currency": "CAD",
	 "phone": 1,
	 "capital": "Ottawa",
	 "code": "CA",
	 "code3": "CAN",
	 "continent": "América",
	 "number": 124
	},
	{
	 "id": 41,
	 "name": "Catar",
	 "currency": "QAR",
	 "phone": 974,
	 "capital": "Doha",
	 "code": "QA",
	 "code3": "QAT",
	 "continent": "Ásia",
	 "number": 634
	},
	{
	 "id": 42,
	 "name": "Cazaquistão",
	 "currency": "KZT",
	 "phone": 7,
	 "capital": "Astana",
	 "code": "KZ",
	 "code3": "KAZ",
	 "continent": "Ásia",
	 "number": 398
	},
	{
	 "id": 43,
	 "name": "Chade",
	 "currency": "XAF",
	 "phone": 235,
	 "capital": "N'Djamena",
	 "code": "TD",
	 "code3": "TCD",
	 "continent": "África",
	 "number": 148
	},
	{
	 "id": 44,
	 "name": "Chile",
	 "currency": "CLP",
	 "phone": 56,
	 "capital": "Santiago",
	 "code": "CL",
	 "code3": "CHL",
	 "continent": "América",
	 "number": 152
	},
	{
	 "id": 45,
	 "name": "China",
	 "currency": "CNY",
	 "phone": 86,
	 "capital": "Beijing",
	 "code": "CN",
	 "code3": "CHN",
	 "continent": "Ásia",
	 "number": 156
	},
	{
	 "id": 46,
	 "name": "Chipre",
	 "currency": "EUR",
	 "phone": 357,
	 "capital": "Nicosia",
	 "code": "CY",
	 "code3": "CYP",
	 "continent": "Ásia",
	 "number": 196
	},
	{
	 "id": 47,
	 "name": "Cingapura",
	 "currency": "SGD",
	 "phone": 65,
	 "capital": "Singapur",
	 "code": "SG",
	 "code3": "SGP",
	 "continent": "Ásia",
	 "number": 702
	},
	{
	 "id": 48,
	 "name": "Colômbia",
	 "currency": "COP",
	 "phone": 57,
	 "capital": "Bogota",
	 "code": "CO",
	 "code3": "COL",
	 "continent": "América",
	 "number": 170
	},
	{
	 "id": 49,
	 "name": "Comores",
	 "currency": "KMF",
	 "phone": 269,
	 "capital": "Moroni",
	 "code": "KM",
	 "code3": "COM",
	 "continent": "África",
	 "number": 174
	},
	{
	 "id": 50,
	 "name": "Congo",
	 "currency": "XAF",
	 "phone": 242,
	 "capital": "Brazzaville",
	 "code": "CG",
	 "code3": "COG",
	 "continent": "África",
	 "number": 178
	},
	{
	 "id": 51,
	 "name": "Coréia do Norte",
	 "currency": "KPW",
	 "phone": 850,
	 "capital": "Pyongyang",
	 "code": "KP",
	 "code3": "PRK",
	 "continent": "Ásia",
	 "number": 408
	},
	{
	 "id": 52,
	 "name": "Coréia do Sul",
	 "currency": "KRW",
	 "phone": 82,
	 "capital": "Seoul",
	 "code": "KR",
	 "code3": "KOR",
	 "continent": "Ásia",
	 "number": 410
	},
	{
	 "id": 53,
	 "name": "Costa do Marfim",
	 "currency": "XOF",
	 "phone": 225,
	 "capital": "Yamoussoukro",
	 "code": "CI",
	 "code3": "CIV",
	 "continent": "África",
	 "number": 384
	},
	{
	 "id": 54,
	 "name": "Costa Rica",
	 "currency": "CRC",
	 "phone": 506,
	 "capital": "San Jose",
	 "code": "CR",
	 "code3": "CRI",
	 "continent": "América",
	 "number": 188
	},
	{
	 "id": 55,
	 "name": "Croácia",
	 "currency": "HRK",
	 "phone": 385,
	 "capital": "Zagreb",
	 "code": "HR",
	 "code3": "HRV",
	 "continent": "Europa",
	 "number": 191
	},
	{
	 "id": 56,
	 "name": "Cuba",
	 "currency": "CUP",
	 "phone": 53,
	 "capital": "Havana",
	 "code": "CU",
	 "code3": "CUB",
	 "continent": "América",
	 "number": 192
	},
	{
	 "id": 57,
	 "name": "Curaçao",
	 "currency": "ANG",
	 "phone": 599,
	 "capital": "Willemstad",
	 "code": "CW",
	 "code3": "CUW",
	 "continent": "América",
	 "number": 531
	},
	{
	 "id": 58,
	 "name": "Dinamarca",
	 "currency": "DKK",
	 "phone": 45,
	 "capital": "Copenhagen",
	 "code": "DK",
	 "code3": "DNK",
	 "continent": "Europa",
	 "number": 208
	},
	{
	 "id": 59,
	 "name": "Djibouti",
	 "currency": "DJF",
	 "phone": 253,
	 "capital": "Djibouti",
	 "code": "DJ",
	 "code3": "DJI",
	 "continent": "África",
	 "number": 262
	},
	{
	 "id": 60,
	 "name": "Dominica",
	 "currency": "XCD",
	 "phone": 1767,
	 "capital": "Roseau",
	 "code": "DM",
	 "code3": "DMA",
	 "continent": "América",
	 "number": 212
	},
	{
	 "id": 61,
	 "name": "Egito",
	 "currency": "EGP",
	 "phone": 20,
	 "capital": "Cairo",
	 "code": "EG",
	 "code3": "EGY",
	 "continent": "África",
	 "number": 818
	},
	{
	 "id": 62,
	 "name": "El Salvador",
	 "currency": "USD",
	 "phone": 503,
	 "capital": "San Salvador",
	 "code": "SV",
	 "code3": "SLV",
	 "continent": "América",
	 "number": 222
	},
	{
	 "id": 63,
	 "name": "Emirados Árabes Unidos",
	 "currency": "AED",
	 "phone": 971,
	 "capital": "Abu Dhabi",
	 "code": "AE",
	 "code3": "ARE",
	 "continent": "Ásia",
	 "number": 784
	},
	{
	 "id": 64,
	 "name": "Equador",
	 "currency": "USD",
	 "phone": 593,
	 "capital": "Quito",
	 "code": "EC",
	 "code3": "ECU",
	 "continent": "América",
	 "number": 218
	},
	{
	 "id": 65,
	 "name": "Eritreia",
	 "currency": "ERN",
	 "phone": 291,
	 "capital": "Asmara",
	 "code": "ER",
	 "code3": "ERI",
	 "continent": "África",
	 "number": 232
	},
	{
	 "id": 66,
	 "name": "Eslováquia",
	 "currency": "EUR",
	 "phone": 421,
	 "capital": "Bratislava",
	 "code": "SK",
	 "code3": "SVK",
	 "continent": "Europa",
	 "number": 703
	},
	{
	 "id": 67,
	 "name": "Eslovênia",
	 "currency": "EUR",
	 "phone": 386,
	 "capital": "Ljubljana",
	 "code": "SI",
	 "code3": "SVN",
	 "continent": "Europa",
	 "number": 705
	},
	{
	 "id": 68,
	 "name": "Espanha",
	 "currency": "EUR",
	 "phone": 34,
	 "capital": "Madrid",
	 "code": "ES",
	 "code3": "ESP",
	 "continent": "Europa",
	 "number": 724
	},
	{
	 "id": 69,
	 "name": "Estados Unidos",
	 "currency": "USD",
	 "phone": 1,
	 "capital": "Washington",
	 "code": "US",
	 "code3": "USA",
	 "continent": "América",
	 "number": 840
	},
	{
	 "id": 70,
	 "name": "Estônia",
	 "currency": "EUR",
	 "phone": 372,
	 "capital": "Tallinn",
	 "code": "EE",
	 "code3": "EST",
	 "continent": "Europa",
	 "number": 233
	},
	{
	 "id": 71,
	 "name": "Etiópia",
	 "currency": "ETB",
	 "phone": 251,
	 "capital": "Addis Ababa",
	 "code": "ET",
	 "code3": "ETH",
	 "continent": "África",
	 "number": 231
	},
	{
	 "id": 72,
	 "name": "Fiji",
	 "currency": "FJD",
	 "phone": 679,
	 "capital": "Suva",
	 "code": "FJ",
	 "code3": "FJI",
	 "continent": "Oceania",
	 "number": 242
	},
	{
	 "id": 73,
	 "name": "Filipinas",
	 "currency": "PHP",
	 "phone": 63,
	 "capital": "Manila",
	 "code": "PH",
	 "code3": "PHL",
	 "continent": "Ásia",
	 "number": 608
	},
	{
	 "id": 74,
	 "name": "Finlândia",
	 "currency": "EUR",
	 "phone": 358,
	 "capital": "Helsinki",
	 "code": "FI",
	 "code3": "FIN",
	 "continent": "Europa",
	 "number": 246
	},
	{
	 "id": 75,
	 "name": "França",
	 "currency": "EUR",
	 "phone": 33,
	 "capital": "Paris",
	 "code": "FR",
	 "code3": "FRA",
	 "continent": "Europa",
	 "number": 250
	},
	{
	 "id": 76,
	 "name": "Gabão",
	 "currency": "XAF",
	 "phone": 241,
	 "capital": "Libreville",
	 "code": "GA",
	 "code3": "GAB",
	 "continent": "África",
	 "number": 266
	},
	{
	 "id": 77,
	 "name": "Gâmbia",
	 "currency": "GMD",
	 "phone": 220,
	 "capital": "Banjul",
	 "code": "GM",
	 "code3": "GMB",
	 "continent": "África",
	 "number": 270
	},
	{
	 "id": 78,
	 "name": "Gana",
	 "currency": "GHS",
	 "phone": 233,
	 "capital": "Accra",
	 "code": "GH",
	 "code3": "GHA",
	 "continent": "África",
	 "number": 288
	},
	{
	 "id": 79,
	 "name": "Geórgia",
	 "currency": "GEL",
	 "phone": 995,
	 "capital": "Tbilisi",
	 "code": "GE",
	 "code3": "GEO",
	 "continent": "Ásia",
	 "number": 268
	},
	{
	 "id": 80,
	 "name": "Gibraltar",
	 "currency": "GIP",
	 "phone": 350,
	 "capital": "Gibraltar",
	 "code": "GI",
	 "code3": "GIB",
	 "continent": "Europa",
	 "number": 292
	},
	{
	 "id": 81,
	 "name": "Granada",
	 "currency": "XCD",
	 "phone": 1473,
	 "capital": "St. George's",
	 "code": "GD",
	 "code3": "GRD",
	 "continent": "América",
	 "number": 308
	},
	{
	 "id": 82,
	 "name": "Grécia",
	 "currency": "EUR",
	 "phone": 30,
	 "capital": "Athens",
	 "code": "GR",
	 "code3": "GRC",
	 "continent": "Europa",
	 "number": 300
	},
	{
	 "id": 83,
	 "name": "Groenlândia",
	 "currency": "DKK",
	 "phone": 299,
	 "capital": "Nuuk",
	 "code": "GL",
	 "code3": "GRL",
	 "continent": "América",
	 "number": 304
	},
	{
	 "id": 84,
	 "name": "Guadalupe",
	 "currency": "EUR",
	 "phone": 590,
	 "capital": "Basse-Terre",
	 "code": "GP",
	 "code3": "GLP",
	 "continent": "América",
	 "number": 312
	},
	{
	 "id": 85,
	 "name": "Guam",
	 "currency": "USD",
	 "phone": 1671,
	 "capital": "Hagatna",
	 "code": "GU",
	 "code3": "GUM",
	 "continent": "Oceania",
	 "number": 316
	},
	{
	 "id": 86,
	 "name": "Guatemala",
	 "currency": "GTQ",
	 "phone": 502,
	 "capital": "Guatemala City",
	 "code": "GT",
	 "code3": "GTM",
	 "continent": "América",
	 "number": 320
	},
	{
	 "id": 87,
	 "name": "Guernsey",
	 "currency": "GBP",
	 "phone": 44,
	 "capital": "St Peter Port",
	 "code": "GG",
	 "code3": "GGY",
	 "continent": "Europa",
	 "number": 831
	},
	{
	 "id": 88,
	 "name": "Guiana",
	 "currency": "GYD",
	 "phone": 592,
	 "capital": "Georgetown",
	 "code": "GY",
	 "code3": "GUY",
	 "continent": "América",
	 "number": 328
	},
	{
	 "id": 89,
	 "name": "Guiana Francesa",
	 "currency": "EUR",
	 "phone": 594,
	 "capital": "Cayenne",
	 "code": "GF",
	 "code3": "GUF",
	 "continent": "América",
	 "number": 254
	},
	{
	 "id": 90,
	 "name": "Guiné",
	 "currency": "GNF",
	 "phone": 224,
	 "capital": "Conakry",
	 "code": "GN",
	 "code3": "GIN",
	 "continent": "África",
	 "number": 324
	},
	{
	 "id": 91,
	 "name": "Guiné Equatorial",
	 "currency": "XAF",
	 "phone": 240,
	 "capital": "Malabo",
	 "code": "GQ",
	 "code3": "GNQ",
	 "continent": "África",
	 "number": 226
	},
	{
	 "id": 92,
	 "name": "Guiné-Bissau",
	 "currency": "XOF",
	 "phone": 245,
	 "capital": "Bissau",
	 "code": "GW",
	 "code3": "GNB",
	 "continent": "África",
	 "number": 624
	},
	{
	 "id": 93,
	 "name": "Haiti",
	 "currency": "HTG",
	 "phone": 509,
	 "capital": "Port-au-Prince",
	 "code": "HT",
	 "code3": "HTI",
	 "continent": "América",
	 "number": 332
	},
	{
	 "id": 94,
	 "name": "Holanda",
	 "currency": "EUR",
	 "phone": 31,
	 "capital": "Amsterdam",
	 "code": "NL",
	 "code3": "NLD",
	 "continent": "Europa",
	 "number": 528
	},
	{
	 "id": 95,
	 "name": "Honduras",
	 "currency": "HNL",
	 "phone": 504,
	 "capital": "Tegucigalpa",
	 "code": "HN",
	 "code3": "HND",
	 "continent": "América",
	 "number": 340
	},
	{
	 "id": 96,
	 "name": "Hong Kong",
	 "currency": "HKD",
	 "phone": 852,
	 "capital": "Hong Kong",
	 "code": "HK",
	 "code3": "HKG",
	 "continent": "Ásia",
	 "number": 344
	},
	{
	 "id": 97,
	 "name": "Hungria",
	 "currency": "HUF",
	 "phone": 36,
	 "capital": "Budapest",
	 "code": "HU",
	 "code3": "HUN",
	 "continent": "Europa",
	 "number": 348
	},
	{
	 "id": 98,
	 "name": "Iêmen",
	 "currency": "YER",
	 "phone": 967,
	 "capital": "Sanaa",
	 "code": "YE",
	 "code3": "YEM",
	 "continent": "Ásia",
	 "number": 887
	},
	{
	 "id": 99,
	 "name": "Ilha Bouvet",
	 "currency": "NOK",
	 "phone": 55,
	 "capital": null,
	 "code": "BV",
	 "code3": "BVT",
	 "continent": "Antártida",
	 "number": 74
	},
	{
	 "id": 100,
	 "name": "Ilha da Reunião",
	 "currency": "EUR",
	 "phone": 262,
	 "capital": "Saint-Denis",
	 "code": "RE",
	 "code3": "REU",
	 "continent": "África",
	 "number": 638
	},
	{
	 "id": 101,
	 "name": "Ilha de Man",
	 "currency": "GBP",
	 "phone": 44,
	 "capital": "Douglas, Isle of Man",
	 "code": "IM",
	 "code3": "IMN",
	 "continent": "Europa",
	 "number": 833
	},
	{
	 "id": 102,
	 "name": "Ilha de São Martinho(Francês)",
	 "currency": "EUR",
	 "phone": 590,
	 "capital": "Marigot",
	 "code": "MF",
	 "code3": "MAF",
	 "continent": "América",
	 "number": 663
	},
	{
	 "id": 103,
	 "name": "Ilha Heard e Ilhas McDonald",
	 "currency": "AUD",
	 "phone": 0,
	 "capital": null,
	 "code": "HM",
	 "code3": "HMD",
	 "continent": "Antártida",
	 "number": 334
	},
	{
	 "id": 104,
	 "name": "Ilha Natal",
	 "currency": "AUD",
	 "phone": 61,
	 "capital": "Flying Fish Cove",
	 "code": "CX",
	 "code3": "CXR",
	 "continent": "Ásia",
	 "number": 162
	},
	{
	 "id": 105,
	 "name": "Ilha Norfolk",
	 "currency": "AUD",
	 "phone": 672,
	 "capital": "Kingston",
	 "code": "NF",
	 "code3": "NFK",
	 "continent": "Oceania",
	 "number": 574
	},
	{
	 "id": 106,
	 "name": "Ilhas Aland",
	 "currency": "EUR",
	 "phone": 358,
	 "capital": "Mariehamn",
	 "code": "AX",
	 "code3": "ALA",
	 "continent": "Europa",
	 "number": 248
	},
	{
	 "id": 107,
	 "name": "Ilhas Cayman",
	 "currency": "KYD",
	 "phone": 1345,
	 "capital": "George Town",
	 "code": "KY",
	 "code3": "CYM",
	 "continent": "América",
	 "number": 136
	},
	{
	 "id": 108,
	 "name": "Ilhas Cocos (Keeling)",
	 "currency": "AUD",
	 "phone": 672,
	 "capital": "West Island",
	 "code": "CC",
	 "code3": "CCK",
	 "continent": "Ásia",
	 "number": 166
	},
	{
	 "id": 109,
	 "name": "Ilhas Cook",
	 "currency": "NZD",
	 "phone": 682,
	 "capital": "Avarua",
	 "code": "CK",
	 "code3": "COK",
	 "continent": "Oceania",
	 "number": 184
	},
	{
	 "id": 110,
	 "name": "Ilhas Falkland (Malvinas)",
	 "currency": "FKP",
	 "phone": 500,
	 "capital": "Stanley",
	 "code": "FK",
	 "code3": "FLK",
	 "continent": "América",
	 "number": 238
	},
	{
	 "id": 111,
	 "name": "ilhas Faroe",
	 "currency": "DKK",
	 "phone": 298,
	 "capital": "Torshavn",
	 "code": "FO",
	 "code3": "FRO",
	 "continent": "Europa",
	 "number": 234
	},
	{
	 "id": 112,
	 "name": "Ilhas Geórgia do Sul e Sandwich do Sul",
	 "currency": "GBP",
	 "phone": 500,
	 "capital": "Grytviken",
	 "code": "GS",
	 "code3": "SGS",
	 "continent": "Antártida",
	 "number": 239
	},
	{
	 "id": 113,
	 "name": "Ilhas Marianas do Norte",
	 "currency": "USD",
	 "phone": 1670,
	 "capital": "Saipan",
	 "code": "MP",
	 "code3": "MNP",
	 "continent": "Oceania",
	 "number": 580
	},
	{
	 "id": 114,
	 "name": "Ilhas Marshall",
	 "currency": "USD",
	 "phone": 692,
	 "capital": "Majuro",
	 "code": "MH",
	 "code3": "MHL",
	 "continent": "Oceania",
	 "number": 584
	},
	{
	 "id": 115,
	 "name": "Ilhas Menores Distantes dos Estados Unidos",
	 "currency": "USD",
	 "phone": 246,
	 "capital": null,
	 "code": "UM",
	 "code3": "UMI",
	 "continent": "América",
	 "number": 581
	},
	{
	 "id": 116,
	 "name": "Ilhas Pitcairn",
	 "currency": "NZD",
	 "phone": 64,
	 "capital": "Adamstown",
	 "code": "PN",
	 "code3": "PCN",
	 "continent": "Oceania",
	 "number": 612
	},
	{
	 "id": 117,
	 "name": "Ilhas Salomão",
	 "currency": "SBD",
	 "phone": 677,
	 "capital": "Honiara",
	 "code": "SB",
	 "code3": "SLB",
	 "continent": "Oceania",
	 "number": 90
	},
	{
	 "id": 118,
	 "name": "Ilhas Turcas e Caicos",
	 "currency": "USD",
	 "phone": 1649,
	 "capital": "Cockburn Town",
	 "code": "TC",
	 "code3": "TCA",
	 "continent": "América",
	 "number": 796
	},
	{
	 "id": 119,
	 "name": "Ilhas Virgens Americanas",
	 "currency": "USD",
	 "phone": 1340,
	 "capital": "Charlotte Amalie",
	 "code": "VI",
	 "code3": "VIR",
	 "continent": "América",
	 "number": 850
	},
	{
	 "id": 120,
	 "name": "Ilhas Virgens Britânicas",
	 "currency": "USD",
	 "phone": 1284,
	 "capital": "Road Town",
	 "code": "VG",
	 "code3": "VGB",
	 "continent": "América",
	 "number": 92
	},
	{
	 "id": 121,
	 "name": "Índia",
	 "currency": "INR",
	 "phone": 91,
	 "capital": "New Delhi",
	 "code": "IN",
	 "code3": "IND",
	 "continent": "Ásia",
	 "number": 356
	},
	{
	 "id": 122,
	 "name": "Indonésia",
	 "currency": "IDR",
	 "phone": 62,
	 "capital": "Jakarta",
	 "code": "ID",
	 "code3": "IDN",
	 "continent": "Ásia",
	 "number": 360
	},
	{
	 "id": 123,
	 "name": "Irã",
	 "currency": "IRR",
	 "phone": 98,
	 "capital": "Tehran",
	 "code": "IR",
	 "code3": "IRN",
	 "continent": "Ásia",
	 "number": 364
	},
	{
	 "id": 124,
	 "name": "Iraque",
	 "currency": "IQD",
	 "phone": 964,
	 "capital": "Baghdad",
	 "code": "IQ",
	 "code3": "IRQ",
	 "continent": "Ásia",
	 "number": 368
	},
	{
	 "id": 125,
	 "name": "Irlanda",
	 "currency": "EUR",
	 "phone": 353,
	 "capital": "Dublin",
	 "code": "IE",
	 "code3": "IRL",
	 "continent": "Europa",
	 "number": 372
	},
	{
	 "id": 126,
	 "name": "Islândia",
	 "currency": "ISK",
	 "phone": 354,
	 "capital": "Reykjavik",
	 "code": "IS",
	 "code3": "ISL",
	 "continent": "Europa",
	 "number": 352
	},
	{
	 "id": 127,
	 "name": "Israel",
	 "currency": "ILS",
	 "phone": 972,
	 "capital": "Jerusalem",
	 "code": "IL",
	 "code3": "ISR",
	 "continent": "Ásia",
	 "number": 376
	},
	{
	 "id": 128,
	 "name": "Itália",
	 "currency": "EUR",
	 "phone": 39,
	 "capital": "Rome",
	 "code": "IT",
	 "code3": "ITA",
	 "continent": "Europa",
	 "number": 380
	},
	{
	 "id": 129,
	 "name": "Jamaica",
	 "currency": "JMD",
	 "phone": 1876,
	 "capital": "Kingston",
	 "code": "JM",
	 "code3": "JAM",
	 "continent": "América",
	 "number": 388
	},
	{
	 "id": 130,
	 "name": "Japão",
	 "currency": "JPY",
	 "phone": 81,
	 "capital": "Tokyo",
	 "code": "JP",
	 "code3": "JPN",
	 "continent": "Ásia",
	 "number": 392
	},
	{
	 "id": 131,
	 "name": "Jersey",
	 "currency": "GBP",
	 "phone": 44,
	 "capital": "Saint Helier",
	 "code": "JE",
	 "code3": "JEY",
	 "continent": "Europa",
	 "number": 832
	},
	{
	 "id": 132,
	 "name": "Jordânia",
	 "currency": "JOD",
	 "phone": 962,
	 "capital": "Amman",
	 "code": "JO",
	 "code3": "JOR",
	 "continent": "Ásia",
	 "number": 400
	},
	{
	 "id": 133,
	 "name": "Kiribati",
	 "currency": "AUD",
	 "phone": 686,
	 "capital": "Tarawa",
	 "code": "KI",
	 "code3": "KIR",
	 "continent": "Oceania",
	 "number": 296
	},
	{
	 "id": 134,
	 "name": "Kosovo",
	 "currency": "EUR",
	 "phone": 383,
	 "capital": "Pristina",
	 "code": "XK",
	 "code3": "XKX",
	 "continent": "Europa",
	 "number": 926
	},
	{
	 "id": 135,
	 "name": "Kuwait",
	 "currency": "KWD",
	 "phone": 965,
	 "capital": "Kuwait City",
	 "code": "KW",
	 "code3": "KWT",
	 "continent": "Ásia",
	 "number": 414
	},
	{
	 "id": 136,
	 "name": "Laos",
	 "currency": "LAK",
	 "phone": 856,
	 "capital": "Vientiane",
	 "code": "LA",
	 "code3": "LAO",
	 "continent": "Ásia",
	 "number": 418
	},
	{
	 "id": 137,
	 "name": "Lesoto",
	 "currency": "LSL",
	 "phone": 266,
	 "capital": "Maseru",
	 "code": "LS",
	 "code3": "LSO",
	 "continent": "África",
	 "number": 426
	},
	{
	 "id": 138,
	 "name": "Letônia",
	 "currency": "EUR",
	 "phone": 371,
	 "capital": "Riga",
	 "code": "LV",
	 "code3": "LVA",
	 "continent": "Europa",
	 "number": 428
	},
	{
	 "id": 139,
	 "name": "Líbano",
	 "currency": "LBP",
	 "phone": 961,
	 "capital": "Beirut",
	 "code": "LB",
	 "code3": "LBN",
	 "continent": "Ásia",
	 "number": 422
	},
	{
	 "id": 140,
	 "name": "Libéria",
	 "currency": "LRD",
	 "phone": 231,
	 "capital": "Monrovia",
	 "code": "LR",
	 "code3": "LBR",
	 "continent": "África",
	 "number": 430
	},
	{
	 "id": 141,
	 "name": "Líbia",
	 "currency": "LYD",
	 "phone": 218,
	 "capital": "Tripolis",
	 "code": "LY",
	 "code3": "LBY",
	 "continent": "África",
	 "number": 434
	},
	{
	 "id": 142,
	 "name": "Liechtenstein",
	 "currency": "CHF",
	 "phone": 423,
	 "capital": "Vaduz",
	 "code": "LI",
	 "code3": "LIE",
	 "continent": "Europa",
	 "number": 438
	},
	{
	 "id": 143,
	 "name": "Lituânia",
	 "currency": "EUR",
	 "phone": 370,
	 "capital": "Vilnius",
	 "code": "LT",
	 "code3": "LTU",
	 "continent": "Europa",
	 "number": 440
	},
	{
	 "id": 144,
	 "name": "Luxemburgo",
	 "currency": "EUR",
	 "phone": 352,
	 "capital": "Luxembourg",
	 "code": "LU",
	 "code3": "LUX",
	 "continent": "Europa",
	 "number": 442
	},
	{
	 "id": 145,
	 "name": "Macau",
	 "currency": "MOP",
	 "phone": 853,
	 "capital": "Macao",
	 "code": "MO",
	 "code3": "MAC",
	 "continent": "Ásia",
	 "number": 446
	},
	{
	 "id": 146,
	 "name": "Macedônia",
	 "currency": "MKD",
	 "phone": 389,
	 "capital": "Skopje",
	 "code": "MK",
	 "code3": "MKD",
	 "continent": "Europa",
	 "number": 807
	},
	{
	 "id": 147,
	 "name": "Madagascar",
	 "currency": "MGA",
	 "phone": 261,
	 "capital": "Antananarivo",
	 "code": "MG",
	 "code3": "MDG",
	 "continent": "África",
	 "number": 450
	},
	{
	 "id": 148,
	 "name": "Malásia",
	 "currency": "MYR",
	 "phone": 60,
	 "capital": "Kuala Lumpur",
	 "code": "MY",
	 "code3": "MYS",
	 "continent": "Ásia",
	 "number": 458
	},
	{
	 "id": 149,
	 "name": "Malawi",
	 "currency": "MWK",
	 "phone": 265,
	 "capital": "Lilongwe",
	 "code": "MW",
	 "code3": "MWI",
	 "continent": "África",
	 "number": 454
	},
	{
	 "id": 150,
	 "name": "Maldivas",
	 "currency": "MVR",
	 "phone": 960,
	 "capital": "Male",
	 "code": "MV",
	 "code3": "MDV",
	 "continent": "Ásia",
	 "number": 462
	},
	{
	 "id": 151,
	 "name": "Mali",
	 "currency": "XOF",
	 "phone": 223,
	 "capital": "Bamako",
	 "code": "ML",
	 "code3": "MLI",
	 "continent": "África",
	 "number": 466
	},
	{
	 "id": 152,
	 "name": "Malta",
	 "currency": "EUR",
	 "phone": 356,
	 "capital": "Valletta",
	 "code": "MT",
	 "code3": "MLT",
	 "continent": "Europa",
	 "number": 470
	},
	{
	 "id": 153,
	 "name": "Marrocos",
	 "currency": "MAD",
	 "phone": 212,
	 "capital": "Rabat",
	 "code": "MA",
	 "code3": "MAR",
	 "continent": "África",
	 "number": 504
	},
	{
	 "id": 154,
	 "name": "Martinica",
	 "currency": "EUR",
	 "phone": 596,
	 "capital": "Fort-de-France",
	 "code": "MQ",
	 "code3": "MTQ",
	 "continent": "América",
	 "number": 474
	},
	{
	 "id": 155,
	 "name": "Maurício",
	 "currency": "MUR",
	 "phone": 230,
	 "capital": "Port Louis",
	 "code": "MU",
	 "code3": "MUS",
	 "continent": "África",
	 "number": 480
	},
	{
	 "id": 156,
	 "name": "Mauritânia",
	 "currency": "MRO",
	 "phone": 222,
	 "capital": "Nouakchott",
	 "code": "MR",
	 "code3": "MRT",
	 "continent": "África",
	 "number": 478
	},
	{
	 "id": 157,
	 "name": "Mayotte",
	 "currency": "EUR",
	 "phone": 269,
	 "capital": "Mamoudzou",
	 "code": "YT",
	 "code3": "MYT",
	 "continent": "África",
	 "number": 175
	},
	{
	 "id": 158,
	 "name": "México",
	 "currency": "MXN",
	 "phone": 52,
	 "capital": "Mexico City",
	 "code": "MX",
	 "code3": "MEX",
	 "continent": "América",
	 "number": 484
	},
	{
	 "id": 159,
	 "name": "Micronésia",
	 "currency": "USD",
	 "phone": 691,
	 "capital": "Palikir",
	 "code": "FM",
	 "code3": "FSM",
	 "continent": "Oceania",
	 "number": 583
	},
	{
	 "id": 160,
	 "name": "Moçambique",
	 "currency": "MZN",
	 "phone": 258,
	 "capital": "Maputo",
	 "code": "MZ",
	 "code3": "MOZ",
	 "continent": "África",
	 "number": 508
	},
	{
	 "id": 161,
	 "name": "Moldávia",
	 "currency": "MDL",
	 "phone": 373,
	 "capital": "Chisinau",
	 "code": "MD",
	 "code3": "MDA",
	 "continent": "Europa",
	 "number": 498
	},
	{
	 "id": 162,
	 "name": "Mônaco",
	 "currency": "EUR",
	 "phone": 377,
	 "capital": "Monaco",
	 "code": "MC",
	 "code3": "MCO",
	 "continent": "Europa",
	 "number": 492
	},
	{
	 "id": 163,
	 "name": "Mongólia",
	 "currency": "MNT",
	 "phone": 976,
	 "capital": "Ulan Bator",
	 "code": "MN",
	 "code3": "MNG",
	 "continent": "Ásia",
	 "number": 496
	},
	{
	 "id": 164,
	 "name": "Montenegro",
	 "currency": "EUR",
	 "phone": 382,
	 "capital": "Podgorica",
	 "code": "ME",
	 "code3": "MNE",
	 "continent": "Europa",
	 "number": 499
	},
	{
	 "id": 165,
	 "name": "Montserrat",
	 "currency": "XCD",
	 "phone": 1664,
	 "capital": "Plymouth",
	 "code": "MS",
	 "code3": "MSR",
	 "continent": "América",
	 "number": 500
	},
	{
	 "id": 166,
	 "name": "Myanmar",
	 "currency": "MMK",
	 "phone": 95,
	 "capital": "Nay Pyi Taw",
	 "code": "MM",
	 "code3": "MMR",
	 "continent": "Ásia",
	 "number": 104
	},
	{
	 "id": 167,
	 "name": "Namíbia",
	 "currency": "NAD",
	 "phone": 264,
	 "capital": "Windhoek",
	 "code": "NA",
	 "code3": "NAM",
	 "continent": "África",
	 "number": 516
	},
	{
	 "id": 168,
	 "name": "Nauru",
	 "currency": "AUD",
	 "phone": 674,
	 "capital": "Yaren",
	 "code": "NR",
	 "code3": "NRU",
	 "continent": "Oceania",
	 "number": 520
	},
	{
	 "id": 169,
	 "name": "Nepal",
	 "currency": "NPR",
	 "phone": 977,
	 "capital": "Kathmandu",
	 "code": "NP",
	 "code3": "NPL",
	 "continent": "Ásia",
	 "number": 524
	},
	{
	 "id": 170,
	 "name": "Nicarágua",
	 "currency": "NIO",
	 "phone": 505,
	 "capital": "Managua",
	 "code": "NI",
	 "code3": "NIC",
	 "continent": "América",
	 "number": 558
	},
	{
	 "id": 171,
	 "name": "Níger",
	 "currency": "XOF",
	 "phone": 227,
	 "capital": "Niamey",
	 "code": "NE",
	 "code3": "NER",
	 "continent": "África",
	 "number": 562
	},
	{
	 "id": 172,
	 "name": "Nigéria",
	 "currency": "NGN",
	 "phone": 234,
	 "capital": "Abuja",
	 "code": "NG",
	 "code3": "NGA",
	 "continent": "África",
	 "number": 566
	},
	{
	 "id": 173,
	 "name": "Niue",
	 "currency": "NZD",
	 "phone": 683,
	 "capital": "Alofi",
	 "code": "NU",
	 "code3": "NIU",
	 "continent": "Oceania",
	 "number": 570
	},
	{
	 "id": 174,
	 "name": "Noruega",
	 "currency": "NOK",
	 "phone": 47,
	 "capital": "Oslo",
	 "code": "NO",
	 "code3": "NOR",
	 "continent": "Europa",
	 "number": 578
	},
	{
	 "id": 175,
	 "name": "Nova Caledônia",
	 "currency": "XPF",
	 "phone": 687,
	 "capital": "Noumea",
	 "code": "NC",
	 "code3": "NCL",
	 "continent": "Oceania",
	 "number": 540
	},
	{
	 "id": 176,
	 "name": "Nova Zelândia",
	 "currency": "NZD",
	 "phone": 64,
	 "capital": "Wellington",
	 "code": "NZ",
	 "code3": "NZL",
	 "continent": "Oceania",
	 "number": 554
	},
	{
	 "id": 177,
	 "name": "Omã",
	 "currency": "OMR",
	 "phone": 968,
	 "capital": "Muscat",
	 "code": "OM",
	 "code3": "OMN",
	 "continent": "Ásia",
	 "number": 512
	},
	{
	 "id": 178,
	 "name": "Palau",
	 "currency": "USD",
	 "phone": 680,
	 "capital": "Melekeok",
	 "code": "PW",
	 "code3": "PLW",
	 "continent": "Oceania",
	 "number": 585
	},
	{
	 "id": 179,
	 "name": "Panamá",
	 "currency": "PAB",
	 "phone": 507,
	 "capital": "Panama City",
	 "code": "PA",
	 "code3": "PAN",
	 "continent": "América",
	 "number": 591
	},
	{
	 "id": 180,
	 "name": "Papua-Nova Guiné",
	 "currency": "PGK",
	 "phone": 675,
	 "capital": "Port Moresby",
	 "code": "PG",
	 "code3": "PNG",
	 "continent": "Oceania",
	 "number": 598
	},
	{
	 "id": 181,
	 "name": "Paquistão",
	 "currency": "PKR",
	 "phone": 92,
	 "capital": "Islamabad",
	 "code": "PK",
	 "code3": "PAK",
	 "continent": "Ásia",
	 "number": 586
	},
	{
	 "id": 182,
	 "name": "Paraguai",
	 "currency": "PYG",
	 "phone": 595,
	 "capital": "Asuncion",
	 "code": "PY",
	 "code3": "PRY",
	 "continent": "América",
	 "number": 600
	},
	{
	 "id": 183,
	 "name": "Peru",
	 "currency": "PEN",
	 "phone": 51,
	 "capital": "Lima",
	 "code": "PE",
	 "code3": "PER",
	 "continent": "América",
	 "number": 604
	},
	{
	 "id": 184,
	 "name": "Polinésia Francesa",
	 "currency": "XPF",
	 "phone": 689,
	 "capital": "Papeete",
	 "code": "PF",
	 "code3": "PYF",
	 "continent": "Oceania",
	 "number": 258
	},
	{
	 "id": 185,
	 "name": "Polônia",
	 "currency": "PLN",
	 "phone": 48,
	 "capital": "Warsaw",
	 "code": "PL",
	 "code3": "POL",
	 "continent": "Europa",
	 "number": 616
	},
	{
	 "id": 186,
	 "name": "Porto Rico",
	 "currency": "USD",
	 "phone": 1787,
	 "capital": "San Juan",
	 "code": "PR",
	 "code3": "PRI",
	 "continent": "América",
	 "number": 630
	},
	{
	 "id": 187,
	 "name": "Portugal",
	 "currency": "EUR",
	 "phone": 351,
	 "capital": "Lisbon",
	 "code": "PT",
	 "code3": "PRT",
	 "continent": "Europa",
	 "number": 620
	},
	{
	 "id": 188,
	 "name": "Quênia",
	 "currency": "KES",
	 "phone": 254,
	 "capital": "Nairobi",
	 "code": "KE",
	 "code3": "KEN",
	 "continent": "África",
	 "number": 404
	},
	{
	 "id": 189,
	 "name": "Quirguistão",
	 "currency": "KGS",
	 "phone": 996,
	 "capital": "Bishkek",
	 "code": "KG",
	 "code3": "KGZ",
	 "continent": "Ásia",
	 "number": 417
	},
	{
	 "id": 190,
	 "name": "Reino Unido",
	 "currency": "GBP",
	 "phone": 44,
	 "capital": "London",
	 "code": "GB",
	 "code3": "GBR",
	 "continent": "Europa",
	 "number": 826
	},
	{
	 "id": 191,
	 "name": "República Centro-Áfricana",
	 "currency": "XAF",
	 "phone": 236,
	 "capital": "Bangui",
	 "code": "CF",
	 "code3": "CAF",
	 "continent": "África",
	 "number": 140
	},
	{
	 "id": 192,
	 "name": "República Democrática do Congo",
	 "currency": "CDF",
	 "phone": 242,
	 "capital": "Kinshasa",
	 "code": "CD",
	 "code3": "COD",
	 "continent": "África",
	 "number": 180
	},
	{
	 "id": 193,
	 "name": "República Dominicana",
	 "currency": "DOP",
	 "phone": 1809,
	 "capital": "Santo Domingo",
	 "code": "DO",
	 "code3": "DOM",
	 "continent": "América",
	 "number": 214
	},
	{
	 "id": 194,
	 "name": "República Tcheca",
	 "currency": "CZK",
	 "phone": 420,
	 "capital": "Prague",
	 "code": "CZ",
	 "code3": "CZE",
	 "continent": "Europa",
	 "number": 203
	},
	{
	 "id": 195,
	 "name": "Romênia",
	 "currency": "RON",
	 "phone": 40,
	 "capital": "Bucharest",
	 "code": "RO",
	 "code3": "ROM",
	 "continent": "Europa",
	 "number": 642
	},
	{
	 "id": 196,
	 "name": "Ruanda",
	 "currency": "RWF",
	 "phone": 250,
	 "capital": "Kigali",
	 "code": "RW",
	 "code3": "RWA",
	 "continent": "África",
	 "number": 646
	},
	{
	 "id": 197,
	 "name": "Rússia",
	 "currency": "RUB",
	 "phone": 70,
	 "capital": "Moscow",
	 "code": "RU",
	 "code3": "RUS",
	 "continent": "Ásia",
	 "number": 643
	},
	{
	 "id": 198,
	 "name": "Saara Ocidental",
	 "currency": "MAD",
	 "phone": 212,
	 "capital": "El-Aaiun",
	 "code": "EH",
	 "code3": "ESH",
	 "continent": "África",
	 "number": 732
	},
	{
	 "id": 199,
	 "name": "Saba",
	 "currency": "USD",
	 "phone": 599,
	 "capital": "Kralendijk",
	 "code": "BQ",
	 "code3": "BES",
	 "continent": "América",
	 "number": 535
	},
	{
	 "id": 200,
	 "name": "Samoa",
	 "currency": "WST",
	 "phone": 684,
	 "capital": "Apia",
	 "code": "WS",
	 "code3": "WSM",
	 "continent": "Oceania",
	 "number": 882
	},
	{
	 "id": 201,
	 "name": "Samoa Americana",
	 "currency": "USD",
	 "phone": 1684,
	 "capital": "Pago Pago",
	 "code": "AS",
	 "code3": "ASM",
	 "continent": "Oceania",
	 "number": 16
	},
	{
	 "id": 202,
	 "name": "San Marino",
	 "currency": "EUR",
	 "phone": 378,
	 "capital": "San Marino",
	 "code": "SM",
	 "code3": "SMR",
	 "continent": "Europa",
	 "number": 674
	},
	{
	 "id": 203,
	 "name": "Santa Helena",
	 "currency": "SHP",
	 "phone": 290,
	 "capital": "Jamestown",
	 "code": "SH",
	 "code3": "SHN",
	 "continent": "África",
	 "number": 654
	},
	{
	 "id": 204,
	 "name": "Santa Lúcia",
	 "currency": "XCD",
	 "phone": 1758,
	 "capital": "Castries",
	 "code": "LC",
	 "code3": "LCA",
	 "continent": "América",
	 "number": 662
	},
	{
	 "id": 205,
	 "name": "São Bartolomeu",
	 "currency": "EUR",
	 "phone": 590,
	 "capital": "Gustavia",
	 "code": "BL",
	 "code3": "BLM",
	 "continent": "América",
	 "number": 652
	},
	{
	 "id": 206,
	 "name": "São Cristóvão e Névis",
	 "currency": "XCD",
	 "phone": 1869,
	 "capital": "Basseterre",
	 "code": "KN",
	 "code3": "KNA",
	 "continent": "América",
	 "number": 659
	},
	{
	 "id": 207,
	 "name": "São Martinho (Países Baixos)",
	 "currency": "ANG",
	 "phone": 1,
	 "capital": "Philipsburg",
	 "code": "SX",
	 "code3": "SXM",
	 "continent": "América",
	 "number": 534
	},
	{
	 "id": 208,
	 "name": "São Pedro e Miquelão",
	 "currency": "EUR",
	 "phone": 508,
	 "capital": "Saint-Pierre",
	 "code": "PM",
	 "code3": "SPM",
	 "continent": "América",
	 "number": 666
	},
	{
	 "id": 209,
	 "name": "São Tomé e Príncipe",
	 "currency": "STD",
	 "phone": 239,
	 "capital": "Sao Tome",
	 "code": "ST",
	 "code3": "STP",
	 "continent": "África",
	 "number": 678
	},
	{
	 "id": 210,
	 "name": "São Vicente e Granadinas",
	 "currency": "XCD",
	 "phone": 1784,
	 "capital": "Kingstown",
	 "code": "VC",
	 "code3": "VCT",
	 "continent": "América",
	 "number": 670
	},
	{
	 "id": 211,
	 "name": "Senegal",
	 "currency": "XOF",
	 "phone": 221,
	 "capital": "Dakar",
	 "code": "SN",
	 "code3": "SEN",
	 "continent": "África",
	 "number": 686
	},
	{
	 "id": 212,
	 "name": "Serra Leoa",
	 "currency": "SLL",
	 "phone": 232,
	 "capital": "Freetown",
	 "code": "SL",
	 "code3": "SLE",
	 "continent": "África",
	 "number": 694
	},
	{
	 "id": 213,
	 "name": "Sérvia",
	 "currency": "RSD",
	 "phone": 381,
	 "capital": "Belgrade",
	 "code": "RS",
	 "code3": "SRB",
	 "continent": "Europa",
	 "number": 688
	},
	{
	 "id": 215,
	 "name": "Seychelles",
	 "currency": "SCR",
	 "phone": 248,
	 "capital": "Victoria",
	 "code": "SC",
	 "code3": "SYC",
	 "continent": "África",
	 "number": 690
	},
	{
	 "id": 216,
	 "name": "Síria",
	 "currency": "SYP",
	 "phone": 963,
	 "capital": "Damascus",
	 "code": "SY",
	 "code3": "SYR",
	 "continent": "Ásia",
	 "number": 760
	},
	{
	 "id": 217,
	 "name": "Somália",
	 "currency": "SOS",
	 "phone": 252,
	 "capital": "Mogadishu",
	 "code": "SO",
	 "code3": "SOM",
	 "continent": "África",
	 "number": 706
	},
	{
	 "id": 218,
	 "name": "Sri Lanka",
	 "currency": "LKR",
	 "phone": 94,
	 "capital": "Colombo",
	 "code": "LK",
	 "code3": "LKA",
	 "continent": "Ásia",
	 "number": 144
	},
	{
	 "id": 219,
	 "name": "Suazilândia",
	 "currency": "SZL",
	 "phone": 268,
	 "capital": "Mbabane",
	 "code": "SZ",
	 "code3": "SWZ",
	 "continent": "África",
	 "number": 748
	},
	{
	 "id": 220,
	 "name": "Sudão",
	 "currency": "SDG",
	 "phone": 249,
	 "capital": "Khartoum",
	 "code": "SD",
	 "code3": "SDN",
	 "continent": "África",
	 "number": 736
	},
	{
	 "id": 221,
	 "name": "Sudão do Sul",
	 "currency": "SSP",
	 "phone": 211,
	 "capital": "Juba",
	 "code": "SS",
	 "code3": "SSD",
	 "continent": "África",
	 "number": 728
	},
	{
	 "id": 222,
	 "name": "Suécia",
	 "currency": "SEK",
	 "phone": 46,
	 "capital": "Stockholm",
	 "code": "SE",
	 "code3": "SWE",
	 "continent": "Europa",
	 "number": 752
	},
	{
	 "id": 223,
	 "name": "Suíça",
	 "currency": "CHF",
	 "phone": 41,
	 "capital": "Berne",
	 "code": "CH",
	 "code3": "CHE",
	 "continent": "Europa",
	 "number": 756
	},
	{
	 "id": 224,
	 "name": "Suriname",
	 "currency": "SRD",
	 "phone": 597,
	 "capital": "Paramaribo",
	 "code": "SR",
	 "code3": "SUR",
	 "continent": "América",
	 "number": 740
	},
	{
	 "id": 225,
	 "name": "Svalbard e Jan Mayen",
	 "currency": "NOK",
	 "phone": 47,
	 "capital": "Longyearbyen",
	 "code": "SJ",
	 "code3": "SJM",
	 "continent": "Europa",
	 "number": 744
	},
	{
	 "id": 226,
	 "name": "Tailândia",
	 "currency": "THB",
	 "phone": 66,
	 "capital": "Bangkok",
	 "code": "TH",
	 "code3": "THA",
	 "continent": "Ásia",
	 "number": 764
	},
	{
	 "id": 227,
	 "name": "Taiwan",
	 "currency": "TWD",
	 "phone": 886,
	 "capital": "Taipei",
	 "code": "TW",
	 "code3": "TWN",
	 "continent": "Ásia",
	 "number": 158
	},
	{
	 "id": 228,
	 "name": "Tajiquistão",
	 "currency": "TJS",
	 "phone": 992,
	 "capital": "Dushanbe",
	 "code": "TJ",
	 "code3": "TJK",
	 "continent": "Ásia",
	 "number": 762
	},
	{
	 "id": 229,
	 "name": "Tanzânia",
	 "currency": "TZS",
	 "phone": 255,
	 "capital": "Dodoma",
	 "code": "TZ",
	 "code3": "TZA",
	 "continent": "África",
	 "number": 834
	},
	{
	 "id": 230,
	 "name": "Terras Austrais e Antárticas Francesas",
	 "currency": "EUR",
	 "phone": 262,
	 "capital": "Port-aux-Francais",
	 "code": "TF",
	 "code3": "ATF",
	 "continent": "Antártida",
	 "number": 260
	},
	{
	 "id": 231,
	 "name": "Território Britânico do Oceano Índico",
	 "currency": "USD",
	 "phone": 246,
	 "capital": "Diego Garcia",
	 "code": "IO",
	 "code3": "IOT",
	 "continent": "Ásia",
	 "number": 86
	},
	{
	 "id": 232,
	 "name": "Territórios Palestinos Ocupados",
	 "currency": "ILS",
	 "phone": 970,
	 "capital": "East Jerusalem",
	 "code": "PS",
	 "code3": "PSE",
	 "continent": "Ásia",
	 "number": 275
	},
	{
	 "id": 233,
	 "name": "Timor-Leste",
	 "currency": "USD",
	 "phone": 670,
	 "capital": "Dili",
	 "code": "TL",
	 "code3": "TLS",
	 "continent": "Ásia",
	 "number": 626
	},
	{
	 "id": 234,
	 "name": "Togo",
	 "currency": "XOF",
	 "phone": 228,
	 "capital": "Lome",
	 "code": "TG",
	 "code3": "TGO",
	 "continent": "África",
	 "number": 768
	},
	{
	 "id": 235,
	 "name": "Tonga",
	 "currency": "TOP",
	 "phone": 676,
	 "capital": "Nuku'alofa",
	 "code": "TO",
	 "code3": "TON",
	 "continent": "Oceania",
	 "number": 776
	},
	{
	 "id": 236,
	 "name": "Toquelau",
	 "currency": "NZD",
	 "phone": 690,
	 "capital": "Nukunonu",
	 "code": "TK",
	 "code3": "TKL",
	 "continent": "Oceania",
	 "number": 772
	},
	{
	 "id": 237,
	 "name": "Trindade e Tobago",
	 "currency": "TTD",
	 "phone": 1868,
	 "capital": "Port of Spain",
	 "code": "TT",
	 "code3": "TTO",
	 "continent": "América",
	 "number": 780
	},
	{
	 "id": 238,
	 "name": "Tunísia",
	 "currency": "TND",
	 "phone": 216,
	 "capital": "Tunis",
	 "code": "TN",
	 "code3": "TUN",
	 "continent": "África",
	 "number": 788
	},
	{
	 "id": 239,
	 "name": "Turcomenistão",
	 "currency": "TMT",
	 "phone": 7370,
	 "capital": "Ashgabat",
	 "code": "TM",
	 "code3": "TKM",
	 "continent": "Ásia",
	 "number": 795
	},
	{
	 "id": 240,
	 "name": "Turquia",
	 "currency": "TRY",
	 "phone": 90,
	 "capital": "Ankara",
	 "code": "TR",
	 "code3": "TUR",
	 "continent": "Ásia",
	 "number": 792
	},
	{
	 "id": 241,
	 "name": "Tuvalu",
	 "currency": "AUD",
	 "phone": 688,
	 "capital": "Funafuti",
	 "code": "TV",
	 "code3": "TUV",
	 "continent": "Oceania",
	 "number": 798
	},
	{
	 "id": 242,
	 "name": "Ucrânia",
	 "currency": "UAH",
	 "phone": 380,
	 "capital": "Kiev",
	 "code": "UA",
	 "code3": "UKR",
	 "continent": "Europa",
	 "number": 804
	},
	{
	 "id": 243,
	 "name": "Uganda",
	 "currency": "UGX",
	 "phone": 256,
	 "capital": "Kampala",
	 "code": "UG",
	 "code3": "UGA",
	 "continent": "África",
	 "number": 800
	},
	{
	 "id": 244,
	 "name": "Uruguai",
	 "currency": "UYU",
	 "phone": 598,
	 "capital": "Montevideo",
	 "code": "UY",
	 "code3": "URY",
	 "continent": "América",
	 "number": 858
	},
	{
	 "id": 245,
	 "name": "Uzbequistão",
	 "currency": "UZS",
	 "phone": 998,
	 "capital": "Tashkent",
	 "code": "UZ",
	 "code3": "UZB",
	 "continent": "Ásia",
	 "number": 860
	},
	{
	 "id": 246,
	 "name": "Vanuatu",
	 "currency": "VUV",
	 "phone": 678,
	 "capital": "Port Vila",
	 "code": "VU",
	 "code3": "VUT",
	 "continent": "Oceania",
	 "number": 548
	},
	{
	 "id": 247,
	 "name": "Vaticano",
	 "currency": "EUR",
	 "phone": 39,
	 "capital": "Vaticano",
	 "code": "VA",
	 "code3": "VAT",
	 "continent": "Europa",
	 "number": 336
	},
	{
	 "id": 248,
	 "name": "Venezuela",
	 "currency": "VEF",
	 "phone": 58,
	 "capital": "Caracas",
	 "code": "VE",
	 "code3": "VEN",
	 "continent": "América",
	 "number": 862
	},
	{
	 "id": 249,
	 "name": "Vietnã",
	 "currency": "VND",
	 "phone": 84,
	 "capital": "Hanoi",
	 "code": "VN",
	 "code3": "VNM",
	 "continent": "Ásia",
	 "number": 704
	},
	{
	 "id": 250,
	 "name": "Wallis e Futuna",
	 "currency": "XPF",
	 "phone": 681,
	 "capital": "Mata Utu",
	 "code": "WF",
	 "code3": "WLF",
	 "continent": "Oceania",
	 "number": 876
	},
	{
	 "id": 251,
	 "name": "Zâmbia",
	 "currency": "ZMW",
	 "phone": 260,
	 "capital": "Lusaka",
	 "code": "ZM",
	 "code3": "ZMB",
	 "continent": "África",
	 "number": 894
	},
	{
	 "id": 252,
	 "name": "Zimbábue",
	 "currency": "ZWL",
	 "phone": 263,
	 "capital": "Harare",
	 "code": "ZW",
	 "code3": "ZWE",
	 "continent": "África",
	 "number": 716
	}
 ]

@matteratomic
Copy link

const countries = [
{
"id": 1,
"name": "Afghanistan",
"currency": "AFN",
"phone": 93,
"capital": "Kabul",
"code": "AF",
"code3": "AFG",
"number": 4
},
{
"id": 2,
"name": "South Africa",
"currency": "ZAR",
"phone": 27,
"capital": "Pretoria",
"code": "ZA",
"code3": "ZAF",
"number": 710
},
{
"id": 3,
"name": "Albania",
"currency": "ALL",
"phone": 355,
"capital": "Tirana",
"code": "AL",
"code3": "ALB",
"number": 8
},
{
"id": 4,
"name": "Germany",
"currency": "EUR",
"phone": 49,
"capital": "Berlin",
"code": "DE",
"code3": "DEU",
"number": 276
},
{
"id": 5,
"name": "Andorra",
"currency": "EUR",
"phone": 376,
"capital": "Andorra la Vella",
"code": "AD",
"code3": "AND",
"number": 20
},
{
"id": 6,
"name": "Angola",
"currency": "AOA",
"phone": 244,
"capital": "Luanda",
"code": "AO",
"code3": "AGO",
"number": 24
},
{
"id": 7,
"name": "Anguilla",
"currency": "XCD",
"phone": 1264,
"capital": "The Valley",
"code": "AI",
"code3": "AIA",
"number": 660
},
{
"id": 8,
"name": "Antarctica",
"currency": "AAD",
"phone": 672,
"capital": "Antártida",
"code": "AQ",
"code3": "ATA",
"number": 10
},
{
"id": 9,
"name": "Antigua and Barbuda",
"currency": "XCD",
"phone": 1268,
"capital": "St. John's",
"code": "AG",
"code3": "ATG",
"number": 28
},
{
"id": 11,
"name": "Saudi Arabia",
"currency": "SAR",
"phone": 966,
"capital": "Riyadh",
"code": "SA",
"code3": "SAU",
"number": 682
},
{
"id": 12,
"name": "Algeria",
"currency": "DZD",
"phone": 213,
"capital": "Algiers",
"code": "DZ",
"code3": "DZA",
"number": 12
},
{
"id": 13,
"name": "Argentina",
"currency": "ARS",
"phone": 54,
"capital": "Buenos Aires",
"code": "AR",
"code3": "ARG",
"number": 32
},
{
"id": 14,
"name": "Armenia",
"currency": "AMD",
"phone": 374,
"capital": "Yerevan",
"code": "AM",
"code3": "ARM",
"number": 51
},
{
"id": 15,
"name": "Aruba",
"currency": "AWG",
"phone": 297,
"capital": "Oranjestad",
"code": "AW",
"code3": "ABW",
"number": 533
},
{
"id": 16,
"name": "Australia",
"currency": "AUD",
"phone": 61,
"capital": "Canberra",
"code": "AU",
"code3": "AUS",
"number": 36
},
{
"id": 17,
"name": "Austria",
"currency": "EUR",
"phone": 43,
"capital": "Vienna",
"code": "AT",
"code3": "AUT",
"number": 40
},
{
"id": 18,
"name": "Azerbaijan",
"currency": "AZN",
"phone": 994,
"capital": "Baku",
"code": "AZ",
"code3": "AZE",
"number": 31
},
{
"id": 19,
"name": "Bahamas, The",
"currency": "BSD",
"phone": 1242,
"capital": "Nassau",
"code": "BS",
"code3": "BHS",
"number": 44
},
{
"id": 20,
"name": "Bahrain",
"currency": "BHD",
"phone": 973,
"capital": "Manama",
"code": "BH",
"code3": "BHR",
"number": 48
},
{
"id": 21,
"name": "Bangladesh",
"currency": "BDT",
"phone": 880,
"capital": "Dhaka",
"code": "BD",
"code3": "BGD",
"number": 50
},
{
"id": 22,
"name": "Barbados",
"currency": "BBD",
"phone": 1246,
"capital": "Bridgetown",
"code": "BB",
"code3": "BRB",
"number": 52
},
{
"id": 23,
"name": "Belgium",
"currency": "EUR",
"phone": 32,
"capital": "Brussels",
"code": "BE",
"code3": "BEL",
"number": 56
},
{
"id": 24,
"name": "Belize",
"currency": "BZD",
"phone": 501,
"capital": "Belmopan",
"code": "BZ",
"code3": "BLZ",
"number": 84
},
{
"id": 25,
"name": "Benin",
"currency": "XOF",
"phone": 229,
"capital": "Porto-Novo",
"code": "BJ",
"code3": "BEN",
"number": 204
},
{
"id": 26,
"name": "Bermuda",
"currency": "BMD",
"phone": 1441,
"capital": "Hamilton",
"code": "BM",
"code3": "BMU",
"number": 60
},
{
"id": 27,
"name": "Belarus",
"currency": "BYN",
"phone": 375,
"capital": "Minsk",
"code": "BY",
"code3": "BLR",
"number": 112
},
{
"id": 28,
"name": "Bolivia",
"currency": "BOB",
"phone": 591,
"capital": "Sucre",
"code": "BO",
"code3": "BOL",
"number": 68
},
{
"id": 29,
"name": "Bosnia and Herzegovina",
"currency": "BAM",
"phone": 387,
"capital": "Sarajevo",
"code": "BA",
"code3": "BIH",
"number": 70
},
{
"id": 30,
"name": "Botswana",
"currency": "BWP",
"phone": 267,
"capital": "Gaborone",
"code": "BW",
"code3": "BWA",
"number": 72
},
{
"id": 31,
"name": "Brazil",
"currency": "BRL",
"phone": 55,
"capital": "Brasilia",
"code": "BR",
"code3": "BRA",
"number": 76
},
{
"id": 32,
"name": "Brunei",
"currency": "BND",
"phone": 673,
"capital": "Bandar Seri Begawan",
"code": "BN",
"code3": "BRN",
"number": 96
},
{
"id": 33,
"name": "Bulgaria",
"currency": "BGN",
"phone": 359,
"capital": "Sofia",
"code": "BG",
"code3": "BGR",
"number": 100
},
{
"id": 34,
"name": "Burkina Faso",
"currency": "XOF",
"phone": 226,
"capital": "Ouagadougou",
"code": "BF",
"code3": "BFA",
"number": 854
},
{
"id": 35,
"name": "Burundi",
"currency": "BIF",
"phone": 257,
"capital": "Bujumbura",
"code": "BI",
"code3": "BDI",
"number": 108
},
{
"id": 36,
"name": "Bhutan",
"currency": "BTN",
"phone": 975,
"capital": "Thimphu",
"code": "BT",
"code3": "BTN",
"number": 64
},
{
"id": 37,
"name": "Cabo Verde",
"currency": "CVE",
"phone": 238,
"capital": "Praia",
"code": "CV",
"code3": "CPV",
"number": 132
},
{
"id": 38,
"name": "Cameroon",
"currency": "XAF",
"phone": 237,
"capital": "Yaounde",
"code": "CM",
"code3": "CMR",
"number": 120
},
{
"id": 39,
"name": "Cambodia",
"currency": "KHR",
"phone": 855,
"capital": "Phnom Penh",
"code": "KH",
"code3": "KHM",
"number": 116
},
{
"id": 40,
"name": "Canada",
"currency": "CAD",
"phone": 1,
"capital": "Ottawa",
"code": "CA",
"code3": "CAN",
"number": 124
},
{
"id": 41,
"name": "Qatar",
"currency": "QAR",
"phone": 974,
"capital": "Doha",
"code": "QA",
"code3": "QAT",
"number": 634
},
{
"id": 42,
"name": "Kazakhstan",
"currency": "KZT",
"phone": 7,
"capital": "Astana",
"code": "KZ",
"code3": "KAZ",
"number": 398
},
{
"id": 43,
"name": "Chad",
"currency": "XAF",
"phone": 235,
"capital": "N'Djamena",
"code": "TD",
"code3": "TCD",
"number": 148
},
{
"id": 44,
"name": "Chile",
"currency": "CLP",
"phone": 56,
"capital": "Santiago",
"code": "CL",
"code3": "CHL",
"number": 152
},
{
"id": 45,
"name": "China",
"currency": "CNY",
"phone": 86,
"capital": "Beijing",
"code": "CN",
"code3": "CHN",
"number": 156
},
{
"id": 46,
"name": "Cyprus",
"currency": "EUR",
"phone": 357,
"capital": "Nicosia",
"code": "CY",
"code3": "CYP",
"number": 196
},
{
"id": 47,
"name": "Singapore",
"currency": "SGD",
"phone": 65,
"capital": "Singapur",
"code": "SG",
"code3": "SGP",
"number": 702
},
{
"id": 48,
"name": "Colombia",
"currency": "COP",
"phone": 57,
"capital": "Bogota",
"code": "CO",
"code3": "COL",
"number": 170
},
{
"id": 49,
"name": "Comoros",
"currency": "KMF",
"phone": 269,
"capital": "Moroni",
"code": "KM",
"code3": "COM",
"number": 174
},
{
"id": 50,
"name": "Congo",
"currency": "XAF",
"phone": 242,
"capital": "Brazzaville",
"code": "CG",
"code3": "COG",
"number": 178
},
{
"id": 51,
"name": "North Korea",
"currency": "KPW",
"phone": 850,
"capital": "Pyongyang",
"code": "KP",
"code3": "PRK",
"number": 408
},
{
"id": 52,
"name": "Korea",
"currency": "KRW",
"phone": 82,
"capital": "Seoul",
"code": "KR",
"code3": "KOR",
"number": 410
},
{
"id": 53,
"name": "Côte d'Ivoire",
"currency": "XOF",
"phone": 225,
"capital": "Yamoussoukro",
"code": "CI",
"code3": "CIV",
"number": 384
},
{
"id": 54,
"name": "Costa Rica",
"currency": "CRC",
"phone": 506,
"capital": "San Jose",
"code": "CR",
"code3": "CRI",
"number": 188
},
{
"id": 55,
"name": "Croatia",
"currency": "HRK",
"phone": 385,
"capital": "Zagreb",
"code": "HR",
"code3": "HRV",
"number": 191
},
{
"id": 56,
"name": "Cuba",
"currency": "CUP",
"phone": 53,
"capital": "Havana",
"code": "CU",
"code3": "CUB",
"number": 192
},
{
"id": 57,
"name": "Curaçao",
"currency": "ANG",
"phone": 599,
"capital": "Willemstad",
"code": "CW",
"code3": "CUW",
"number": 531
},
{
"id": 58,
"name": "Denmark",
"currency": "DKK",
"phone": 45,
"capital": "Copenhagen",
"code": "DK",
"code3": "DNK",
"number": 208
},
{
"id": 59,
"name": "Djibouti",
"currency": "DJF",
"phone": 253,
"capital": "Djibouti",
"code": "DJ",
"code3": "DJI",
"number": 262
},
{
"id": 60,
"name": "Dominica",
"currency": "XCD",
"phone": 1767,
"capital": "Roseau",
"code": "DM",
"code3": "DMA",
"number": 212
},
{
"id": 61,
"name": "Egypt",
"currency": "EGP",
"phone": 20,
"capital": "Cairo",
"code": "EG",
"code3": "EGY",
"number": 818
},
{
"id": 62,
"name": "El Salvador",
"currency": "USD",
"phone": 503,
"capital": "San Salvador",
"code": "SV",
"code3": "SLV",
"number": 222
},
{
"id": 63,
"name": "United Arab Emirates",
"currency": "AED",
"phone": 971,
"capital": "Abu Dhabi",
"code": "AE",
"code3": "ARE",
"number": 784
},
{
"id": 64,
"name": "Ecuador",
"currency": "USD",
"phone": 593,
"capital": "Quito",
"code": "EC",
"code3": "ECU",
"number": 218
},
{
"id": 65,
"name": "Eritrea",
"currency": "ERN",
"phone": 291,
"capital": "Asmara",
"code": "ER",
"code3": "ERI",
"number": 232
},
{
"id": 66,
"name": "Slovakia",
"currency": "EUR",
"phone": 421,
"capital": "Bratislava",
"code": "SK",
"code3": "SVK",
"number": 703
},
{
"id": 67,
"name": "Slovenia",
"currency": "EUR",
"phone": 386,
"capital": "Ljubljana",
"code": "SI",
"code3": "SVN",
"number": 705
},
{
"id": 68,
"name": "Spain",
"currency": "EUR",
"phone": 34,
"capital": "Madrid",
"code": "ES",
"code3": "ESP",
"number": 724
},
{
"id": 69,
"name": "United States",
"currency": "USD",
"phone": 1,
"capital": "Washington",
"code": "US",
"code3": "USA",
"number": 840
},
{
"id": 70,
"name": "Estonia",
"currency": "EUR",
"phone": 372,
"capital": "Tallinn",
"code": "EE",
"code3": "EST",
"number": 233
},
{
"id": 71,
"name": "Ethiopia",
"currency": "ETB",
"phone": 251,
"capital": "Addis Ababa",
"code": "ET",
"code3": "ETH",
"number": 231
},
{
"id": 72,
"name": "Fiji Islands",
"currency": "FJD",
"phone": 679,
"capital": "Suva",
"code": "FJ",
"code3": "FJI",
"number": 242
},
{
"id": 73,
"name": "Philippines",
"currency": "PHP",
"phone": 63,
"capital": "Manila",
"code": "PH",
"code3": "PHL",
"number": 608
},
{
"id": 74,
"name": "Finland",
"currency": "EUR",
"phone": 358,
"capital": "Helsinki",
"code": "FI",
"code3": "FIN",
"number": 246
},
{
"id": 75,
"name": "France",
"currency": "EUR",
"phone": 33,
"capital": "Paris",
"code": "FR",
"code3": "FRA",
"number": 250
},
{
"id": 76,
"name": "Gabon",
"currency": "XAF",
"phone": 241,
"capital": "Libreville",
"code": "GA",
"code3": "GAB",
"number": 266
},
{
"id": 77,
"name": "Gambia, The",
"currency": "GMD",
"phone": 220,
"capital": "Banjul",
"code": "GM",
"code3": "GMB",
"number": 270
},
{
"id": 78,
"name": "Ghana",
"currency": "GHS",
"phone": 233,
"capital": "Accra",
"code": "GH",
"code3": "GHA",
"number": 288
},
{
"id": 79,
"name": "Georgia",
"currency": "GEL",
"phone": 995,
"capital": "Tbilisi",
"code": "GE",
"code3": "GEO",
"number": 268
},
{
"id": 80,
"name": "Gibraltar",
"currency": "GIP",
"phone": 350,
"capital": "Gibraltar",
"code": "GI",
"code3": "GIB",
"number": 292
},
{
"id": 81,
"name": "Grenada",
"currency": "XCD",
"phone": 1473,
"capital": "St. George's",
"code": "GD",
"code3": "GRD",
"number": 308
},
{
"id": 82,
"name": "Greece",
"currency": "EUR",
"phone": 30,
"capital": "Athens",
"code": "GR",
"code3": "GRC",
"number": 300
},
{
"id": 83,
"name": "Greenland",
"currency": "DKK",
"phone": 299,
"capital": "Nuuk",
"code": "GL",
"code3": "GRL",
"number": 304
},
{
"id": 84,
"name": "Guadeloupe",
"currency": "EUR",
"phone": 590,
"capital": "Basse-Terre",
"code": "GP",
"code3": "GLP",
"number": 312
},
{
"id": 85,
"name": "Guam",
"currency": "USD",
"phone": 1671,
"capital": "Hagatna",
"code": "GU",
"code3": "GUM",
"number": 316
},
{
"id": 86,
"name": "Guatemala",
"currency": "GTQ",
"phone": 502,
"capital": "Guatemala City",
"code": "GT",
"code3": "GTM",
"number": 320
},
{
"id": 87,
"name": "Guernsey",
"currency": "GBP",
"phone": 44,
"capital": "St Peter Port",
"code": "GG",
"code3": "GGY",
"number": 831
},
{
"id": 88,
"name": "Guyana",
"currency": "GYD",
"phone": 592,
"capital": "Georgetown",
"code": "GY",
"code3": "GUY",
"number": 328
},
{
"id": 89,
"name": "French Guiana",
"currency": "EUR",
"phone": 594,
"capital": "Cayenne",
"code": "GF",
"code3": "GUF",
"number": 254
},
{
"id": 90,
"name": "Guinea",
"currency": "GNF",
"phone": 224,
"capital": "Conakry",
"code": "GN",
"code3": "GIN",
"number": 324
},
{
"id": 91,
"name": "Equatorial Guinea",
"currency": "XAF",
"phone": 240,
"capital": "Malabo",
"code": "GQ",
"code3": "GNQ",
"number": 226
},
{
"id": 92,
"name": "Guinea-Bissau",
"currency": "XOF",
"phone": 245,
"capital": "Bissau",
"code": "GW",
"code3": "GNB",
"number": 624
},
{
"id": 93,
"name": "Haiti",
"currency": "HTG",
"phone": 509,
"capital": "Port-au-Prince",
"code": "HT",
"code3": "HTI",
"number": 332
},
{
"id": 94,
"name": "Netherlands",
"currency": "EUR",
"phone": 31,
"capital": "Amsterdam",
"code": "NL",
"code3": "NLD",
"number": 528
},
{
"id": 95,
"name": "Honduras",
"currency": "HNL",
"phone": 504,
"capital": "Tegucigalpa",
"code": "HN",
"code3": "HND",
"number": 340
},
{
"id": 96,
"name": "Hong Kong SAR",
"currency": "HKD",
"phone": 852,
"capital": "Hong Kong",
"code": "HK",
"code3": "HKG",
"number": 344
},
{
"id": 97,
"name": "Hungary",
"currency": "HUF",
"phone": 36,
"capital": "Budapest",
"code": "HU",
"code3": "HUN",
"number": 348
},
{
"id": 98,
"name": "Yemen",
"currency": "YER",
"phone": 967,
"capital": "Sanaa",
"code": "YE",
"code3": "YEM",
"number": 887
},
{
"id": 99,
"name": "Bouvet Island",
"currency": "NOK",
"phone": 55,
"capital": null,
"code": "BV",
"code3": "BVT",
"number": 74
},
{
"id": 100,
"name": "Reunion",
"currency": "EUR",
"phone": 262,
"capital": "Saint-Denis",
"code": "RE",
"code3": "REU",
"number": 638
},
{
"id": 101,
"name": "Man, Isle of",
"currency": "GBP",
"phone": 44,
"capital": "Douglas, Isle of Man",
"code": "IM",
"code3": "IMN",
"number": 833
},
{
"id": 102,
"name": "Saint Martin (French part)",
"currency": "EUR",
"phone": 590,
"capital": "Marigot",
"code": "MF",
"code3": "MAF",
"number": 663
},
{
"id": 103,
"name": "Heard Island and McDonald Islands",
"currency": "AUD",
"phone": 0,
"capital": null,
"code": "HM",
"code3": "HMD",
"number": 334
},
{
"id": 104,
"name": "Christmas Island",
"currency": "AUD",
"phone": 61,
"capital": "Flying Fish Cove",
"code": "CX",
"code3": "CXR",
"number": 162
},
{
"id": 105,
"name": "Norfolk Island",
"currency": "AUD",
"phone": 672,
"capital": "Kingston",
"code": "NF",
"code3": "NFK",
"number": 574
},
{
"id": 106,
"name": "Åland Islands",
"currency": "EUR",
"phone": 358,
"capital": "Mariehamn",
"code": "AX",
"code3": "ALA",
"number": 248
},
{
"id": 107,
"name": "Cayman Islands",
"currency": "KYD",
"phone": 1345,
"capital": "George Town",
"code": "KY",
"code3": "CYM",
"number": 136
},
{
"id": 108,
"name": "Cocos (Keeling) Islands",
"currency": "AUD",
"phone": 672,
"capital": "West Island",
"code": "CC",
"code3": "CCK",
"number": 166
},
{
"id": 109,
"name": "Cook Islands",
"currency": "NZD",
"phone": 682,
"capital": "Avarua",
"code": "CK",
"code3": "COK",
"number": 184
},
{
"id": 110,
"name": "Falkland Islands (Islas Malvinas)",
"currency": "FKP",
"phone": 500,
"capital": "Stanley",
"code": "FK",
"code3": "FLK",
"number": 238
},
{
"id": 111,
"name": "Faroe Islands",
"currency": "DKK",
"phone": 298,
"capital": "Torshavn",
"code": "FO",
"code3": "FRO",
"number": 234
},
{
"id": 112,
"name": "South Georgia and the South Sandwich Islands",
"currency": "GBP",
"phone": 500,
"capital": "Grytviken",
"code": "GS",
"code3": "SGS",
"number": 239
},
{
"id": 113,
"name": "Northern Mariana Islands",
"currency": "USD",
"phone": 1670,
"capital": "Saipan",
"code": "MP",
"code3": "MNP",
"number": 580
},
{
"id": 114,
"name": "Marshall Islands",
"currency": "USD",
"phone": 692,
"capital": "Majuro",
"code": "MH",
"code3": "MHL",
"number": 584
},
{
"id": 115,
"name": "U.S. Minor Outlying Islands",
"currency": "USD",
"phone": 246,
"capital": null,
"code": "UM",
"code3": "UMI",
"number": 581
},
{
"id": 116,
"name": "Pitcairn Islands",
"currency": "NZD",
"phone": 64,
"capital": "Adamstown",
"code": "PN",
"code3": "PCN",
"number": 612
},
{
"id": 117,
"name": "Solomon Islands",
"currency": "SBD",
"phone": 677,
"capital": "Honiara",
"code": "SB",
"code3": "SLB",
"number": 90
},
{
"id": 118,
"name": "Turks and Caicos Islands",
"currency": "USD",
"phone": 1649,
"capital": "Cockburn Town",
"code": "TC",
"code3": "TCA",
"number": 796
},
{
"id": 119,
"name": "Virgin Islands, U.S.",
"currency": "USD",
"phone": 1340,
"capital": "Charlotte Amalie",
"code": "VI",
"code3": "VIR",
"number": 850
},
{
"id": 120,
"name": "Virgin Islands, British",
"currency": "USD",
"phone": 1284,
"capital": "Road Town",
"code": "VG",
"code3": "VGB",
"number": 92
},
{
"id": 121,
"name": "India",
"currency": "INR",
"phone": 91,
"capital": "New Delhi",
"code": "IN",
"code3": "IND",
"number": 356
},
{
"id": 122,
"name": "Indonesia",
"currency": "IDR",
"phone": 62,
"capital": "Jakarta",
"code": "ID",
"code3": "IDN",
"number": 360
},
{
"id": 123,
"name": "Iran",
"currency": "IRR",
"phone": 98,
"capital": "Tehran",
"code": "IR",
"code3": "IRN",
"number": 364
},
{
"id": 124,
"name": "Iraq",
"currency": "IQD",
"phone": 964,
"capital": "Baghdad",
"code": "IQ",
"code3": "IRQ",
"number": 368
},
{
"id": 125,
"name": "Ireland",
"currency": "EUR",
"phone": 353,
"capital": "Dublin",
"code": "IE",
"code3": "IRL",
"number": 372
},
{
"id": 126,
"name": "Iceland",
"currency": "ISK",
"phone": 354,
"capital": "Reykjavik",
"code": "IS",
"code3": "ISL",
"number": 352
},
{
"id": 127,
"name": "Israel",
"currency": "ILS",
"phone": 972,
"capital": "Jerusalem",
"code": "IL",
"code3": "ISR",
"number": 376
},
{
"id": 128,
"name": "Italy",
"currency": "EUR",
"phone": 39,
"capital": "Rome",
"code": "IT",
"code3": "ITA",
"number": 380
},
{
"id": 129,
"name": "Jamaica",
"currency": "JMD",
"phone": 1876,
"capital": "Kingston",
"code": "JM",
"code3": "JAM",
"number": 388
},
{
"id": 130,
"name": "Japan",
"currency": "JPY",
"phone": 81,
"capital": "Tokyo",
"code": "JP",
"code3": "JPN",
"number": 392
},
{
"id": 131,
"name": "Jersey",
"currency": "GBP",
"phone": 44,
"capital": "Saint Helier",
"code": "JE",
"code3": "JEY",
"number": 832
},
{
"id": 132,
"name": "Jordan",
"currency": "JOD",
"phone": 962,
"capital": "Amman",
"code": "JO",
"code3": "JOR",
"number": 400
},
{
"id": 133,
"name": "Kiribati",
"currency": "AUD",
"phone": 686,
"capital": "Tarawa",
"code": "KI",
"code3": "KIR",
"number": 296
},
{
"id": 134,
"name": "Kosovo",
"currency": "EUR",
"phone": 383,
"capital": "Pristina",
"code": "XK",
"code3": "XKX",
"number": 926
},
{
"id": 135,
"name": "Kuwait",
"currency": "KWD",
"phone": 965,
"capital": "Kuwait City",
"code": "KW",
"code3": "KWT",
"number": 414
},
{
"id": 136,
"name": "Laos",
"currency": "LAK",
"phone": 856,
"capital": "Vientiane",
"code": "LA",
"code3": "LAO",
"number": 418
},
{
"id": 137,
"name": "Lesotho",
"currency": "LSL",
"phone": 266,
"capital": "Maseru",
"code": "LS",
"code3": "LSO",
"number": 426
},
{
"id": 138,
"name": "Latvia",
"currency": "EUR",
"phone": 371,
"capital": "Riga",
"code": "LV",
"code3": "LVA",
"number": 428
},
{
"id": 139,
"name": "Lebanon",
"currency": "LBP",
"phone": 961,
"capital": "Beirut",
"code": "LB",
"code3": "LBN",
"number": 422
},
{
"id": 140,
"name": "Liberia",
"currency": "LRD",
"phone": 231,
"capital": "Monrovia",
"code": "LR",
"code3": "LBR",
"number": 430
},
{
"id": 141,
"name": "Libya",
"currency": "LYD",
"phone": 218,
"capital": "Tripolis",
"code": "LY",
"code3": "LBY",
"number": 434
},
{
"id": 142,
"name": "Liechtenstein",
"currency": "CHF",
"phone": 423,
"capital": "Vaduz",
"code": "LI",
"code3": "LIE",
"number": 438
},
{
"id": 143,
"name": "Lithuania",
"currency": "EUR",
"phone": 370,
"capital": "Vilnius",
"code": "LT",
"code3": "LTU",
"number": 440
},
{
"id": 144,
"name": "Luxembourg",
"currency": "EUR",
"phone": 352,
"capital": "Luxembourg",
"code": "LU",
"code3": "LUX",
"number": 442
},
{
"id": 145,
"name": "Macao SAR",
"currency": "MOP",
"phone": 853,
"capital": "Macao",
"code": "MO",
"code3": "MAC",
"number": 446
},
{
"id": 146,
"name": "Macedonia, Former Yugoslav Republic of",
"currency": "MKD",
"phone": 389,
"capital": "Skopje",
"code": "MK",
"code3": "MKD",
"number": 807
},
{
"id": 147,
"name": "Madagascar",
"currency": "MGA",
"phone": 261,
"capital": "Antananarivo",
"code": "MG",
"code3": "MDG",
"number": 450
},
{
"id": 148,
"name": "Malaysia",
"currency": "MYR",
"phone": 60,
"capital": "Kuala Lumpur",
"code": "MY",
"code3": "MYS",
"number": 458
},
{
"id": 149,
"name": "Malawi",
"currency": "MWK",
"phone": 265,
"capital": "Lilongwe",
"code": "MW",
"code3": "MWI",
"number": 454
},
{
"id": 150,
"name": "Maldives",
"currency": "MVR",
"phone": 960,
"capital": "Male",
"code": "MV",
"code3": "MDV",
"number": 462
},
{
"id": 151,
"name": "Mali",
"currency": "XOF",
"phone": 223,
"capital": "Bamako",
"code": "ML",
"code3": "MLI",
"number": 466
},
{
"id": 152,
"name": "Malta",
"currency": "EUR",
"phone": 356,
"capital": "Valletta",
"code": "MT",
"code3": "MLT",
"number": 470
},
{
"id": 153,
"name": "Morocco",
"currency": "MAD",
"phone": 212,
"capital": "Rabat",
"code": "MA",
"code3": "MAR",
"number": 504
},
{
"id": 154,
"name": "Martinique",
"currency": "EUR",
"phone": 596,
"capital": "Fort-de-France",
"code": "MQ",
"code3": "MTQ",
"number": 474
},
{
"id": 155,
"name": "Mauritius",
"currency": "MUR",
"phone": 230,
"capital": "Port Louis",
"code": "MU",
"code3": "MUS",
"number": 480
},
{
"id": 156,
"name": "Mauritania",
"currency": "MRO",
"phone": 222,
"capital": "Nouakchott",
"code": "MR",
"code3": "MRT",
"number": 478
},
{
"id": 157,
"name": "Mayotte",
"currency": "EUR",
"phone": 269,
"capital": "Mamoudzou",
"code": "YT",
"code3": "MYT",
"number": 175
},
{
"id": 158,
"name": "Mexico",
"currency": "MXN",
"phone": 52,
"capital": "Mexico City",
"code": "MX",
"code3": "MEX",
"number": 484
},
{
"id": 159,
"name": "Micronesia",
"currency": "USD",
"phone": 691,
"capital": "Palikir",
"code": "FM",
"code3": "FSM",
"number": 583
},
{
"id": 160,
"name": "Mozambique",
"currency": "MZN",
"phone": 258,
"capital": "Maputo",
"code": "MZ",
"code3": "MOZ",
"number": 508
},
{
"id": 161,
"name": "Moldova",
"currency": "MDL",
"phone": 373,
"capital": "Chisinau",
"code": "MD",
"code3": "MDA",
"number": 498
},
{
"id": 162,
"name": "Monaco",
"currency": "EUR",
"phone": 377,
"capital": "Monaco",
"code": "MC",
"code3": "MCO",
"number": 492
},
{
"id": 163,
"name": "Mongolia",
"currency": "MNT",
"phone": 976,
"capital": "Ulan Bator",
"code": "MN",
"code3": "MNG",
"number": 496
},
{
"id": 164,
"name": "Montenegro",
"currency": "EUR",
"phone": 382,
"capital": "Podgorica",
"code": "ME",
"code3": "MNE",
"number": 499
},
{
"id": 165,
"name": "Montserrat",
"currency": "XCD",
"phone": 1664,
"capital": "Plymouth",
"code": "MS",
"code3": "MSR",
"number": 500
},
{
"id": 166,
"name": "Myanmar",
"currency": "MMK",
"phone": 95,
"capital": "Nay Pyi Taw",
"code": "MM",
"code3": "MMR",
"number": 104
},
{
"id": 167,
"name": "Namibia",
"currency": "NAD",
"phone": 264,
"capital": "Windhoek",
"code": "NA",
"code3": "NAM",
"number": 516
},
{
"id": 168,
"name": "Nauru",
"currency": "AUD",
"phone": 674,
"capital": "Yaren",
"code": "NR",
"code3": "NRU",
"number": 520
},
{
"id": 169,
"name": "Nepal",
"currency": "NPR",
"phone": 977,
"capital": "Kathmandu",
"code": "NP",
"code3": "NPL",
"number": 524
},
{
"id": 170,
"name": "Nicaragua",
"currency": "NIO",
"phone": 505,
"capital": "Managua",
"code": "NI",
"code3": "NIC",
"number": 558
},
{
"id": 171,
"name": "Niger",
"currency": "XOF",
"phone": 227,
"capital": "Niamey",
"code": "NE",
"code3": "NER",
"number": 562
},
{
"id": 172,
"name": "Nigeria",
"currency": "NGN",
"phone": 234,
"capital": "Abuja",
"code": "NG",
"code3": "NGA",
"number": 566
},
{
"id": 173,
"name": "Niue",
"currency": "NZD",
"phone": 683,
"capital": "Alofi",
"code": "NU",
"code3": "NIU",
"number": 570
},
{
"id": 174,
"name": "Norway",
"currency": "NOK",
"phone": 47,
"capital": "Oslo",
"code": "NO",
"code3": "NOR",
"number": 578
},
{
"id": 175,
"name": "New Caledonia",
"currency": "XPF",
"phone": 687,
"capital": "Noumea",
"code": "NC",
"code3": "NCL",
"number": 540
},
{
"id": 176,
"name": "New Zealand",
"currency": "NZD",
"phone": 64,
"capital": "Wellington",
"code": "NZ",
"code3": "NZL",
"number": 554
},
{
"id": 177,
"name": "Oman",
"currency": "OMR",
"phone": 968,
"capital": "Muscat",
"code": "OM",
"code3": "OMN",
"number": 512
},
{
"id": 178,
"name": "Palau",
"currency": "USD",
"phone": 680,
"capital": "Melekeok",
"code": "PW",
"code3": "PLW",
"number": 585
},
{
"id": 179,
"name": "Panama",
"currency": "PAB",
"phone": 507,
"capital": "Panama City",
"code": "PA",
"code3": "PAN",
"number": 591
},
{
"id": 180,
"name": "Papua New Guinea",
"currency": "PGK",
"phone": 675,
"capital": "Port Moresby",
"code": "PG",
"code3": "PNG",
"number": 598
},
{
"id": 181,
"name": "Pakistan",
"currency": "PKR",
"phone": 92,
"capital": "Islamabad",
"code": "PK",
"code3": "PAK",
"number": 586
},
{
"id": 182,
"name": "Paraguay",
"currency": "PYG",
"phone": 595,
"capital": "Asuncion",
"code": "PY",
"code3": "PRY",
"number": 600
},
{
"id": 183,
"name": "Peru",
"currency": "PEN",
"phone": 51,
"capital": "Lima",
"code": "PE",
"code3": "PER",
"number": 604
},
{
"id": 184,
"name": "French Polynesia",
"currency": "XPF",
"phone": 689,
"capital": "Papeete",
"code": "PF",
"code3": "PYF",
"number": 258
},
{
"id": 185,
"name": "Poland",
"currency": "PLN",
"phone": 48,
"capital": "Warsaw",
"code": "PL",
"code3": "POL",
"number": 616
},
{
"id": 186,
"name": "Puerto Rico",
"currency": "USD",
"phone": 1787,
"capital": "San Juan",
"code": "PR",
"code3": "PRI",
"number": 630
},
{
"id": 187,
"name": "Portugal",
"currency": "EUR",
"phone": 351,
"capital": "Lisbon",
"code": "PT",
"code3": "PRT",
"number": 620
},
{
"id": 188,
"name": "Kenya",
"currency": "KES",
"phone": 254,
"capital": "Nairobi",
"code": "KE",
"code3": "KEN",
"number": 404
},
{
"id": 189,
"name": "Kyrgyzstan",
"currency": "KGS",
"phone": 996,
"capital": "Bishkek",
"code": "KG",
"code3": "KGZ",
"number": 417
},
{
"id": 190,
"name": "United Kingdom",
"currency": "GBP",
"phone": 44,
"capital": "London",
"code": "GB",
"code3": "GBR",
"number": 826
},
{
"id": 191,
"name": "Central African Republic",
"currency": "XAF",
"phone": 236,
"capital": "Bangui",
"code": "CF",
"code3": "CAF",
"number": 140
},
{
"id": 192,
"name": "Congo (DRC)",
"currency": "CDF",
"phone": 242,
"capital": "Kinshasa",
"code": "CD",
"code3": "COD",
"number": 180
},
{
"id": 193,
"name": "Dominican Republic",
"currency": "DOP",
"phone": 1809,
"capital": "Santo Domingo",
"code": "DO",
"code3": "DOM",
"number": 214
},
{
"id": 194,
"name": "Czech Republic",
"currency": "CZK",
"phone": 420,
"capital": "Prague",
"code": "CZ",
"code3": "CZE",
"number": 203
},
{
"id": 195,
"name": "Romania",
"currency": "RON",
"phone": 40,
"capital": "Bucharest",
"code": "RO",
"code3": "ROM",
"number": 642
},
{
"id": 196,
"name": "Rwanda",
"currency": "RWF",
"phone": 250,
"capital": "Kigali",
"code": "RW",
"code3": "RWA",
"number": 646
},
{
"id": 197,
"name": "Russia",
"currency": "RUB",
"phone": 70,
"capital": "Moscow",
"code": "RU",
"code3": "RUS",
"number": 643
},
{
"id": 198,
"currency": "MAD",
"phone": 212,
"capital": "El-Aaiun",
"code": "EH",
"code3": "ESH",
"number": 732
},
{
"id": 199,
"name": "Bonaire, Sint Eustatius and Saba",
"currency": "USD",
"phone": 599,
"capital": "Kralendijk",
"code": "BQ",
"code3": "BES",
"number": 535
},
{
"id": 200,
"name": "Samoa",
"currency": "WST",
"phone": 684,
"capital": "Apia",
"code": "WS",
"code3": "WSM",
"number": 882
},
{
"id": 201,
"name": "American Samoa",
"currency": "USD",
"phone": 1684,
"capital": "Pago Pago",
"code": "AS",
"code3": "ASM",
"number": 16
},
{
"id": 202,
"name": "San Marino",
"currency": "EUR",
"phone": 378,
"capital": "San Marino",
"code": "SM",
"code3": "SMR",
"number": 674
},
{
"id": 203,
"name": "Saint Helena, Ascension and Tristan da Cunha",
"currency": "SHP",
"phone": 290,
"capital": "Jamestown",
"code": "SH",
"code3": "SHN",
"number": 654
},
{
"id": 204,
"name": "Saint Lucia",
"currency": "XCD",
"phone": 1758,
"capital": "Castries",
"code": "LC",
"code3": "LCA",
"number": 662
},
{
"id": 205,
"name": "Saint Barthélemy",
"currency": "EUR",
"phone": 590,
"capital": "Gustavia",
"code": "BL",
"code3": "BLM",
"number": 652
},
{
"id": 206,
"name": "Saint Kitts and Nevis",
"currency": "XCD",
"phone": 1869,
"capital": "Basseterre",
"code": "KN",
"code3": "KNA",
"number": 659
},
{
"id": 207,
"name": "Sint Maarten (Dutch part)",
"currency": "ANG",
"phone": 1,
"capital": "Philipsburg",
"code": "SX",
"code3": "SXM",
"number": 534
},
{
"id": 208,
"name": "Saint Pierre and Miquelon",
"currency": "EUR",
"phone": 508,
"capital": "Saint-Pierre",
"code": "PM",
"code3": "SPM",
"number": 666
},
{
"id": 209,
"name": "São Tomé and Príncipe",
"currency": "STD",
"phone": 239,
"capital": "Sao Tome",
"code": "ST",
"code3": "STP",
"number": 678
},
{
"id": 210,
"name": "Saint Vincent and the Grenadines",
"currency": "XCD",
"phone": 1784,
"capital": "Kingstown",
"code": "VC",
"code3": "VCT",
"number": 670
},
{
"id": 211,
"name": "Senegal",
"currency": "XOF",
"phone": 221,
"capital": "Dakar",
"code": "SN",
"code3": "SEN",
"number": 686
},
{
"id": 212,
"name": "Sierra Leone",
"currency": "SLL",
"phone": 232,
"capital": "Freetown",
"code": "SL",
"code3": "SLE",
"number": 694
},
{
"id": 213,
"name": "Serbia",
"currency": "RSD",
"phone": 381,
"capital": "Belgrade",
"code": "RS",
"code3": "SRB",
"number": 688
},
{
"id": 215,
"name": "Seychelles",
"currency": "SCR",
"phone": 248,
"capital": "Victoria",
"code": "SC",
"code3": "SYC",
"number": 690
},
{
"id": 216,
"name": "Syria",
"currency": "SYP",
"phone": 963,
"capital": "Damascus",
"code": "SY",
"code3": "SYR",
"number": 760
},
{
"id": 217,
"name": "Somalia",
"currency": "SOS",
"phone": 252,
"capital": "Mogadishu",
"code": "SO",
"code3": "SOM",
"number": 706
},
{
"id": 218,
"name": "Sri Lanka",
"currency": "LKR",
"phone": 94,
"capital": "Colombo",
"code": "LK",
"code3": "LKA",
"number": 144
},
{
"id": 219,
"name": "Swaziland",
"currency": "SZL",
"phone": 268,
"capital": "Mbabane",
"code": "SZ",
"code3": "SWZ",
"number": 748
},
{
"id": 220,
"name": "Sudan",
"currency": "SDG",
"phone": 249,
"capital": "Khartoum",
"code": "SD",
"code3": "SDN",
"number": 736
},
{
"id": 221,
"name": "South Sudan",
"currency": "SSP",
"phone": 211,
"capital": "Juba",
"code": "SS",
"code3": "SSD",
"number": 728
},
{
"id": 222,
"name": "Sweden",
"currency": "SEK",
"phone": 46,
"capital": "Stockholm",
"code": "SE",
"code3": "SWE",
"number": 752
},
{
"id": 223,
"name": "Switzerland",
"currency": "CHF",
"phone": 41,
"capital": "Berne",
"code": "CH",
"code3": "CHE",
"number": 756
},
{
"id": 224,
"name": "Suriname",
"currency": "SRD",
"phone": 597,
"capital": "Paramaribo",
"code": "SR",
"code3": "SUR",
"number": 740
},
{
"id": 225,
"name": "Jan Mayen",
"currency": "NOK",
"phone": 47,
"capital": "Longyearbyen",
"code": "SJ",
"code3": "SJM",
"number": 744
},
{
"id": 226,
"name": "Thailand",
"currency": "THB",
"phone": 66,
"capital": "Bangkok",
"code": "TH",
"code3": "THA",
"number": 764
},
{
"id": 227,
"name": "Taiwan",
"currency": "TWD",
"phone": 886,
"capital": "Taipei",
"code": "TW",
"code3": "TWN",
"number": 158
},
{
"id": 228,
"name": "Tajikistan",
"currency": "TJS",
"phone": 992,
"capital": "Dushanbe",
"code": "TJ",
"code3": "TJK",
"number": 762
},
{
"id": 229,
"name": "Tanzania",
"currency": "TZS",
"phone": 255,
"capital": "Dodoma",
"code": "TZ",
"code3": "TZA",
"number": 834
},
{
"id": 230,
"name": "French Southern and Antarctic Lands",
"currency": "EUR",
"phone": 262,
"capital": "Port-aux-Francais",
"code": "TF",
"code3": "ATF",
"number": 260
},
{
"id": 231,
"name": "British Indian Ocean Territory",
"currency": "USD",
"phone": 246,
"capital": "Diego Garcia",
"code": "IO",
"code3": "IOT",
"number": 86
},
{
"id": 232,
"name": "Palestinian Authority",
"currency": "ILS",
"phone": 970,
"capital": "East Jerusalem",
"code": "PS",
"code3": "PSE",
"number": 275
},
{
"id": 233,
"name": "Democratic Republic of Timor-Leste",
"currency": "USD",
"phone": 670,
"capital": "Dili",
"code": "TL",
"code3": "TLS",
"number": 626
},
{
"id": 234,
"name": "Togo",
"currency": "XOF",
"phone": 228,
"capital": "Lome",
"code": "TG",
"code3": "TGO",
"number": 768
},
{
"id": 235,
"name": "Tonga",
"currency": "TOP",
"phone": 676,
"capital": "Nuku'alofa",
"code": "TO",
"code3": "TON",
"number": 776
},
{
"id": 236,
"name": "Tokelau",
"currency": "NZD",
"phone": 690,
"capital": "Nukunonu",
"code": "TK",
"code3": "TKL",
"number": 772
},
{
"id": 237,
"name": "Trinidad and Tobago",
"currency": "TTD",
"phone": 1868,
"capital": "Port of Spain",
"code": "TT",
"code3": "TTO",
"number": 780
},
{
"id": 238,
"name": "Tunisia",
"currency": "TND",
"phone": 216,
"capital": "Tunis",
"code": "TN",
"code3": "TUN",
"number": 788
},
{
"id": 239,
"name": "Turkmenistan",
"currency": "TMT",
"phone": 7370,
"capital": "Ashgabat",
"code": "TM",
"code3": "TKM",
"number": 795
},
{
"id": 240,
"name": "Turkey",
"currency": "TRY",
"phone": 90,
"capital": "Ankara",
"code": "TR",
"code3": "TUR",
"number": 792
},
{
"id": 241,
"name": "Tuvalu",
"currency": "AUD",
"phone": 688,
"capital": "Funafuti",
"code": "TV",
"code3": "TUV",
"number": 798
},
{
"id": 242,
"name": "Ukraine",
"currency": "UAH",
"phone": 380,
"capital": "Kiev",
"code": "UA",
"code3": "UKR",
"number": 804
},
{
"id": 243,
"name": "Uganda",
"currency": "UGX",
"phone": 256,
"capital": "Kampala",
"code": "UG",
"code3": "UGA",
"number": 800
},
{
"id": 244,
"name": "Uruguay",
"currency": "UYU",
"phone": 598,
"capital": "Montevideo",
"code": "UY",
"code3": "URY",
"number": 858
},
{
"id": 245,
"name": "Uzbekistan",
"currency": "UZS",
"phone": 998,
"capital": "Tashkent",
"code": "UZ",
"code3": "UZB",
"number": 860
},
{
"id": 246,
"name": "Vanuatu",
"currency": "VUV",
"phone": 678,
"capital": "Port Vila",
"code": "VU",
"code3": "VUT",
"number": 548
},
{
"id": 247,
"name": "Vatican City",
"currency": "EUR",
"phone": 39,
"capital": "Vaticano",
"code": "VA",
"code3": "VAT",
"number": 336
},
{
"id": 248,
"name": "Bolivarian Republic of Venezuela",
"currency": "VEF",
"phone": 58,
"capital": "Caracas",
"code": "VE",
"code3": "VEN",
"number": 862
},
{
"id": 249,
"name": "Vietnam",
"currency": "VND",
"phone": 84,
"capital": "Hanoi",
"code": "VN",
"code3": "VNM",
"number": 704
},
{
"id": 250,
"name": "Wallis and Futuna",
"currency": "XPF",
"phone": 681,
"capital": "Mata Utu",
"code": "WF",
"code3": "WLF",
"number": 876
},
{
"id": 251,
"name": "Zambia",
"currency": "ZMW",
"phone": 260,
"capital": "Lusaka",
"code": "ZM",
"code3": "ZMB",
"number": 894
},
{
"id": 252,
"name": "Zimbabwe",
"currency": "ZWL",
"phone": 263,
"capital": "Harare",
"code": "ZW",
"code3": "ZWE",
"number": 716
}
]

@SunmadeBabafemi
Copy link

great work guys... please can anyone help me with the list of courses in the world or in any particular university.. thanks

@kellyblaire1
Copy link

Great work, guys!

A lot of helpful posts here. Thanks!

@Haliaa
Copy link

Haliaa commented Feb 9, 2023

const COUNTRIES = [
  {
    name: 'Afghanistan',
    code: 'AF',
    timezone: 'Afghanistan Standard Time',
    utc: 'UTC+04:30',
    mobileCode: '+93',
  },
  {
    name: 'Åland Islands',
    code: 'AX',
    timezone: 'FLE Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+358-18',
  },
  {
    name: 'Albania',
    code: '

Thaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanks!!!!!!!!!!!!!!!!!!!!

@fabiconcept
Copy link

SB',
    timezone: 'Central Pacific Standard Time',
    utc: 'UTC+11:00',
    mobileCode: '+677',
  },
  {
    name: 'Somalia',
    code: 'SO',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+252',
  },
  {
    name: 'South Africa',
    code: 'ZA',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+27',
  },
  {
    name: 'South Georgia and the South Sandwich Islands',
    code: 'GS',
    timezone: 'UTC-02',
    utc: 'UTC-02:00',
    mobileCode: '+',
  },
  {
    name: 'South Sudan',
    code: 'SS',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+211',
  },
  {
    name: 'Spain',
    code: 'ES',
    timezone: 'Romance Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+34',
  },
  {
    name: 'Sri Lanka',
    code: 'LK',
    timezone: 'Sri Lanka Standard Time',
    utc: 'UTC+05:30',
    mobileCode: '+94',
  },
  {
    name: 'Sudan',
    code: 'SD',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+249',
  },
  {
    name: 'Suriname',
    code: 'SR',
    timezone: 'SA Eastern Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+597',
  },
  {
    name: 'Svalbard',
    code: 'SJ',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+47',
  },
  {
    name: 'Swaziland',
    code: 'SZ',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+268',
  },
  {
    name: 'Sweden',
    code: 'SE',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+46',
  },
  {
    name: 'Switzerland',
    code: 'CH',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+41',
  },
  {
    name: 'Syria',
    code: 'SY',
    timezone: 'Syria Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+963',
  },
  {
    name: 'Taiwan',
    code: 'TW',
    timezone: 'Taipei Standard Time',
    utc: 'UTC+08:00',
    mobileCode: '+886',
  },
  {
    name: 'Tajikistan',
    code: 'TJ',
    timezone: 'West Asia Standard Time',
    utc: 'UTC+05:00',
    mobileCode: '+992',
  },
  {
    name: 'Tanzania',
    code: 'TZ',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+255',
  },
  {
    name: 'Thailand',
    code: 'TH',
    timezone: 'SE Asia Standard Time',
    utc: 'UTC+07:00',
    mobileCode: '+66',
  },
  {
    name: 'Togo',
    code: 'TG',
    timezone: 'Greenwich Standard Time',
    utc: 'UTC',
    mobileCode: '+228',
  },
  {
    name: 'Tokelau',
    code: 'TK',
    timezone: 'Tonga Standard Time',
    utc: 'UTC+13:00',
    mobileCode: '+690',
  },
  {
    name: 'Tonga',
    code: 'TO',
    timezone: 'Tonga Standard Time',
    utc: 'UTC+13:00',
    mobileCode: '+676',
  },
  {
    name: 'Trinidad and Tobago',
    code: 'TT',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-868',
  },
  {
    name: 'Tunisia',
    code: 'TN',
    timezone: 'W. Central Africa Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+216',
  },
  {
    name: 'Turkey',
    code: 'TR',
    timezone: 'Turkey Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+90',
  },
  {
    name: 'Turkmenistan',
    code: 'TM',
    timezone: 'West Asia Standard Time',
    utc: 'UTC+05:00',
    mobileCode: '+993',
  },
  {
    name: 'Turks and Caicos Islands',
    code: 'TC',
    timezone: 'Eastern Standard Time',
    utc: 'UTC-05:00',
    mobileCode: '+1-649',
  },
  {
    name: 'Tuvalu',
    code: 'TV',
    timezone: 'UTC+12',
    utc: 'UTC+12:00',
    mobileCode: '+688',
  },
  {
    name: 'U.S. Minor Outlying Islands',
    code: 'UM',
    timezone: 'UTC-11',
    utc: 'UTC-11:00',
    mobileCode: '+1',
  },
  {
    name: 'Uganda',
    code: 'UG',
    timezone: 'E. Africa Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+256',
  },
  {
    name: 'Ukraine',
    code: 'UA',
    timezone: 'FLE Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+380',
  },
  {
    name: 'United Arab Emirates',
    code: 'AE',
    timezone: 'Arabian Standard Time',
    utc: 'UTC+04:00',
    mobileCode: '+971',
  },
  {
    name: 'United Kingdom',
    code: 'GB',
    timezone: 'GMT Standard Time',
    utc: 'UTC',
    mobileCode: '+44',
  },
  {
    name: 'United States',
    code: 'US',
    timezone: 'Pacific Standard Time',
    utc: 'UTC-08:00',
    mobileCode: '+1',
  },
  {
    name: 'Uruguay',
    code: 'UY',
    timezone: 'Montevideo Standard Time',
    utc: 'UTC-03:00',
    mobileCode: '+598',
  },
  {
    name: 'Uzbekistan',
    code: 'UZ',
    timezone: 'West Asia Standard Time',
    utc: 'UTC+05:00',
    mobileCode: '+998',
  },
  {
    name: 'Vanuatu',
    code: 'VU',
    timezone: 'Central Pacific Standard Time',
    utc: 'UTC+11:00',
    mobileCode: '+678',
  },
  {
    name: 'Vatican City',
    code: 'VA',
    timezone: 'W. Europe Standard Time',
    utc: 'UTC+01:00',
    mobileCode: '+379',
  },
  {
    name: 'Vietnam',
    code: 'VN',
    timezone: 'SE Asia Standard Time',
    utc: 'UTC+07:00',
    mobileCode: '+84',
  },
  {
    name: 'Virgin Islands, U.S.',
    code: 'VI',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-340',
  },
  {
    name: 'Virgin Islands, British',
    code: 'VG',
    timezone: 'SA Western Standard Time',
    utc: 'UTC-04:00',
    mobileCode: '+1-284',
  },
  {
    name: 'Wallis and Futuna',
    code: 'WF',
    timezone: 'UTC+12',
    utc: 'UTC+12:00',
    mobileCode: '+681',
  },
  {
    name: 'Yemen',
    code: 'YE',
    timezone: 'Arab Standard Time',
    utc: 'UTC+03:00',
    mobileCode: '+967',
  },
  {
    name: 'Zambia',
    code: 'ZM',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+260',
  },
  {
    name: 'Zimbabwe',
    code: 'ZW',
    timezone: 'South Africa Standard Time',
    utc: 'UTC+02:00',
    mobileCode: '+263',
  },
];

Saved another life 😎😎

@anonymousdeep
Copy link

Many thanks!!!!

@Shimshaker
Copy link

Many Thanks too, wonderfull jobs, Having good day..!!!

@ArShadhinJr
Copy link

Ma sha allah, Thanks

@immdraselkhan
Copy link

immdraselkhan commented Jan 14, 2024

type Country = {
  id: number;
  name: string;
  currency: string;
  phone: number;
  capital: string | null;
  code: string;
  code3: string;
  number: number;
};

const countriesInfo: Country[] = [
  {
    id: 1,
    name: "Afghanistan",
    currency: "AFN",
    phone: 93,
    capital: "Kabul",
    code: "AF",
    code3: "AFG",
    number: 4,
  },
  {
    id: 2,
    name: "South Africa",
    currency: "ZAR",
    phone: 27,
    capital: "Pretoria",
    code: "ZA",
    code3: "ZAF",
    number: 710,
  },
  {
    id: 3,
    name: "Albania",
    currency: "ALL",
    phone: 355,
    capital: "Tirana",
    code: "AL",
    code3: "ALB",
    number: 8,
  },
  {
    id: 4,
    name: "Germany",
    currency: "EUR",
    phone: 49,
    capital: "Berlin",
    code: "DE",
    code3: "DEU",
    number: 276,
  },
  {
    id: 5,
    name: "Andorra",
    currency: "EUR",
    phone: 376,
    capital: "Andorra la Vella",
    code: "AD",
    code3: "AND",
    number: 20,
  },
  {
    id: 6,
    name: "Angola",
    currency: "AOA",
    phone: 244,
    capital: "Luanda",
    code: "AO",
    code3: "AGO",
    number: 24,
  },
  {
    id: 7,
    name: "Anguilla",
    currency: "XCD",
    phone: 1264,
    capital: "The Valley",
    code: "AI",
    code3: "AIA",
    number: 660,
  },
  {
    id: 8,
    name: "Antarctica",
    currency: "AAD",
    phone: 672,
    capital: "Antártida",
    code: "AQ",
    code3: "ATA",
    number: 10,
  },
  {
    id: 9,
    name: "Antigua and Barbuda",
    currency: "XCD",
    phone: 1268,
    capital: "St. John's",
    code: "AG",
    code3: "ATG",
    number: 28,
  },
  {
    id: 11,
    name: "Saudi Arabia",
    currency: "SAR",
    phone: 966,
    capital: "Riyadh",
    code: "SA",
    code3: "SAU",
    number: 682,
  },
  {
    id: 12,
    name: "Algeria",
    currency: "DZD",
    phone: 213,
    capital: "Algiers",
    code: "DZ",
    code3: "DZA",
    number: 12,
  },
  {
    id: 13,
    name: "Argentina",
    currency: "ARS",
    phone: 54,
    capital: "Buenos Aires",
    code: "AR",
    code3: "ARG",
    number: 32,
  },
  {
    id: 14,
    name: "Armenia",
    currency: "AMD",
    phone: 374,
    capital: "Yerevan",
    code: "AM",
    code3: "ARM",
    number: 51,
  },
  {
    id: 15,
    name: "Aruba",
    currency: "AWG",
    phone: 297,
    capital: "Oranjestad",
    code: "AW",
    code3: "ABW",
    number: 533,
  },
  {
    id: 16,
    name: "Australia",
    currency: "AUD",
    phone: 61,
    capital: "Canberra",
    code: "AU",
    code3: "AUS",
    number: 36,
  },
  {
    id: 17,
    name: "Austria",
    currency: "EUR",
    phone: 43,
    capital: "Vienna",
    code: "AT",
    code3: "AUT",
    number: 40,
  },
  {
    id: 18,
    name: "Azerbaijan",
    currency: "AZN",
    phone: 994,
    capital: "Baku",
    code: "AZ",
    code3: "AZE",
    number: 31,
  },
  {
    id: 19,
    name: "Bahamas, The",
    currency: "BSD",
    phone: 1242,
    capital: "Nassau",
    code: "BS",
    code3: "BHS",
    number: 44,
  },
  {
    id: 20,
    name: "Bahrain",
    currency: "BHD",
    phone: 973,
    capital: "Manama",
    code: "BH",
    code3: "BHR",
    number: 48,
  },
  {
    id: 21,
    name: "Bangladesh",
    currency: "BDT",
    phone: 880,
    capital: "Dhaka",
    code: "BD",
    code3: "BGD",
    number: 50,
  },
  {
    id: 22,
    name: "Barbados",
    currency: "BBD",
    phone: 1246,
    capital: "Bridgetown",
    code: "BB",
    code3: "BRB",
    number: 52,
  },
  {
    id: 23,
    name: "Belgium",
    currency: "EUR",
    phone: 32,
    capital: "Brussels",
    code: "BE",
    code3: "BEL",
    number: 56,
  },
  {
    id: 24,
    name: "Belize",
    currency: "BZD",
    phone: 501,
    capital: "Belmopan",
    code: "BZ",
    code3: "BLZ",
    number: 84,
  },
  {
    id: 25,
    name: "Benin",
    currency: "XOF",
    phone: 229,
    capital: "Porto-Novo",
    code: "BJ",
    code3: "BEN",
    number: 204,
  },
  {
    id: 26,
    name: "Bermuda",
    currency: "BMD",
    phone: 1441,
    capital: "Hamilton",
    code: "BM",
    code3: "BMU",
    number: 60,
  },
  {
    id: 27,
    name: "Belarus",
    currency: "BYN",
    phone: 375,
    capital: "Minsk",
    code: "BY",
    code3: "BLR",
    number: 112,
  },
  {
    id: 28,
    name: "Bolivia",
    currency: "BOB",
    phone: 591,
    capital: "Sucre",
    code: "BO",
    code3: "BOL",
    number: 68,
  },
  {
    id: 29,
    name: "Bosnia and Herzegovina",
    currency: "BAM",
    phone: 387,
    capital: "Sarajevo",
    code: "BA",
    code3: "BIH",
    number: 70,
  },
  {
    id: 30,
    name: "Botswana",
    currency: "BWP",
    phone: 267,
    capital: "Gaborone",
    code: "BW",
    code3: "BWA",
    number: 72,
  },
  {
    id: 31,
    name: "Brazil",
    currency: "BRL",
    phone: 55,
    capital: "Brasilia",
    code: "BR",
    code3: "BRA",
    number: 76,
  },
  {
    id: 32,
    name: "Brunei",
    currency: "BND",
    phone: 673,
    capital: "Bandar Seri Begawan",
    code: "BN",
    code3: "BRN",
    number: 96,
  },
  {
    id: 33,
    name: "Bulgaria",
    currency: "BGN",
    phone: 359,
    capital: "Sofia",
    code: "BG",
    code3: "BGR",
    number: 100,
  },
  {
    id: 34,
    name: "Burkina Faso",
    currency: "XOF",
    phone: 226,
    capital: "Ouagadougou",
    code: "BF",
    code3: "BFA",
    number: 854,
  },
  {
    id: 35,
    name: "Burundi",
    currency: "BIF",
    phone: 257,
    capital: "Bujumbura",
    code: "BI",
    code3: "BDI",
    number: 108,
  },
  {
    id: 36,
    name: "Bhutan",
    currency: "BTN",
    phone: 975,
    capital: "Thimphu",
    code: "BT",
    code3: "BTN",
    number: 64,
  },
  {
    id: 37,
    name: "Cabo Verde",
    currency: "CVE",
    phone: 238,
    capital: "Praia",
    code: "CV",
    code3: "CPV",
    number: 132,
  },
  {
    id: 38,
    name: "Cameroon",
    currency: "XAF",
    phone: 237,
    capital: "Yaounde",
    code: "CM",
    code3: "CMR",
    number: 120,
  },
  {
    id: 39,
    name: "Cambodia",
    currency: "KHR",
    phone: 855,
    capital: "Phnom Penh",
    code: "KH",
    code3: "KHM",
    number: 116,
  },
  {
    id: 40,
    name: "Canada",
    currency: "CAD",
    phone: 1,
    capital: "Ottawa",
    code: "CA",
    code3: "CAN",
    number: 124,
  },
  {
    id: 41,
    name: "Qatar",
    currency: "QAR",
    phone: 974,
    capital: "Doha",
    code: "QA",
    code3: "QAT",
    number: 634,
  },
  {
    id: 42,
    name: "Kazakhstan",
    currency: "KZT",
    phone: 7,
    capital: "Astana",
    code: "KZ",
    code3: "KAZ",
    number: 398,
  },
  {
    id: 43,
    name: "Chad",
    currency: "XAF",
    phone: 235,
    capital: "N'Djamena",
    code: "TD",
    code3: "TCD",
    number: 148,
  },
  {
    id: 44,
    name: "Chile",
    currency: "CLP",
    phone: 56,
    capital: "Santiago",
    code: "CL",
    code3: "CHL",
    number: 152,
  },
  {
    id: 45,
    name: "China",
    currency: "CNY",
    phone: 86,
    capital: "Beijing",
    code: "CN",
    code3: "CHN",
    number: 156,
  },
  {
    id: 46,
    name: "Cyprus",
    currency: "EUR",
    phone: 357,
    capital: "Nicosia",
    code: "CY",
    code3: "CYP",
    number: 196,
  },
  {
    id: 47,
    name: "Singapore",
    currency: "SGD",
    phone: 65,
    capital: "Singapur",
    code: "SG",
    code3: "SGP",
    number: 702,
  },
  {
    id: 48,
    name: "Colombia",
    currency: "COP",
    phone: 57,
    capital: "Bogota",
    code: "CO",
    code3: "COL",
    number: 170,
  },
  {
    id: 49,
    name: "Comoros",
    currency: "KMF",
    phone: 269,
    capital: "Moroni",
    code: "KM",
    code3: "COM",
    number: 174,
  },
  {
    id: 50,
    name: "Congo",
    currency: "XAF",
    phone: 242,
    capital: "Brazzaville",
    code: "CG",
    code3: "COG",
    number: 178,
  },
  {
    id: 51,
    name: "North Korea",
    currency: "KPW",
    phone: 850,
    capital: "Pyongyang",
    code: "KP",
    code3: "PRK",
    number: 408,
  },
  {
    id: 52,
    name: "Korea",
    currency: "KRW",
    phone: 82,
    capital: "Seoul",
    code: "KR",
    code3: "KOR",
    number: 410,
  },
  {
    id: 53,
    name: "Côte d'Ivoire",
    currency: "XOF",
    phone: 225,
    capital: "Yamoussoukro",
    code: "CI",
    code3: "CIV",
    number: 384,
  },
  {
    id: 54,
    name: "Costa Rica",
    currency: "CRC",
    phone: 506,
    capital: "San Jose",
    code: "CR",
    code3: "CRI",
    number: 188,
  },
  {
    id: 55,
    name: "Croatia",
    currency: "HRK",
    phone: 385,
    capital: "Zagreb",
    code: "HR",
    code3: "HRV",
    number: 191,
  },
  {
    id: 56,
    name: "Cuba",
    currency: "CUP",
    phone: 53,
    capital: "Havana",
    code: "CU",
    code3: "CUB",
    number: 192,
  },
  {
    id: 57,
    name: "Curaçao",
    currency: "ANG",
    phone: 599,
    capital: "Willemstad",
    code: "CW",
    code3: "CUW",
    number: 531,
  },
  {
    id: 58,
    name: "Denmark",
    currency: "DKK",
    phone: 45,
    capital: "Copenhagen",
    code: "DK",
    code3: "DNK",
    number: 208,
  },
  {
    id: 59,
    name: "Djibouti",
    currency: "DJF",
    phone: 253,
    capital: "Djibouti",
    code: "DJ",
    code3: "DJI",
    number: 262,
  },
  {
    id: 60,
    name: "Dominica",
    currency: "XCD",
    phone: 1767,
    capital: "Roseau",
    code: "DM",
    code3: "DMA",
    number: 212,
  },
  {
    id: 61,
    name: "Egypt",
    currency: "EGP",
    phone: 20,
    capital: "Cairo",
    code: "EG",
    code3: "EGY",
    number: 818,
  },
  {
    id: 62,
    name: "El Salvador",
    currency: "USD",
    phone: 503,
    capital: "San Salvador",
    code: "SV",
    code3: "SLV",
    number: 222,
  },
  {
    id: 63,
    name: "United Arab Emirates",
    currency: "AED",
    phone: 971,
    capital: "Abu Dhabi",
    code: "AE",
    code3: "ARE",
    number: 784,
  },
  {
    id: 64,
    name: "Ecuador",
    currency: "USD",
    phone: 593,
    capital: "Quito",
    code: "EC",
    code3: "ECU",
    number: 218,
  },
  {
    id: 65,
    name: "Eritrea",
    currency: "ERN",
    phone: 291,
    capital: "Asmara",
    code: "ER",
    code3: "ERI",
    number: 232,
  },
  {
    id: 66,
    name: "Slovakia",
    currency: "EUR",
    phone: 421,
    capital: "Bratislava",
    code: "SK",
    code3: "SVK",
    number: 703,
  },
  {
    id: 67,
    name: "Slovenia",
    currency: "EUR",
    phone: 386,
    capital: "Ljubljana",
    code: "SI",
    code3: "SVN",
    number: 705,
  },
  {
    id: 68,
    name: "Spain",
    currency: "EUR",
    phone: 34,
    capital: "Madrid",
    code: "ES",
    code3: "ESP",
    number: 724,
  },
  {
    id: 69,
    name: "United States",
    currency: "USD",
    phone: 1,
    capital: "Washington",
    code: "US",
    code3: "USA",
    number: 840,
  },
  {
    id: 70,
    name: "Estonia",
    currency: "EUR",
    phone: 372,
    capital: "Tallinn",
    code: "EE",
    code3: "EST",
    number: 233,
  },
  {
    id: 71,
    name: "Ethiopia",
    currency: "ETB",
    phone: 251,
    capital: "Addis Ababa",
    code: "ET",
    code3: "ETH",
    number: 231,
  },
  {
    id: 72,
    name: "Fiji Islands",
    currency: "FJD",
    phone: 679,
    capital: "Suva",
    code: "FJ",
    code3: "FJI",
    number: 242,
  },
  {
    id: 73,
    name: "Philippines",
    currency: "PHP",
    phone: 63,
    capital: "Manila",
    code: "PH",
    code3: "PHL",
    number: 608,
  },
  {
    id: 74,
    name: "Finland",
    currency: "EUR",
    phone: 358,
    capital: "Helsinki",
    code: "FI",
    code3: "FIN",
    number: 246,
  },
  {
    id: 75,
    name: "France",
    currency: "EUR",
    phone: 33,
    capital: "Paris",
    code: "FR",
    code3: "FRA",
    number: 250,
  },
  {
    id: 76,
    name: "Gabon",
    currency: "XAF",
    phone: 241,
    capital: "Libreville",
    code: "GA",
    code3: "GAB",
    number: 266,
  },
  {
    id: 77,
    name: "Gambia, The",
    currency: "GMD",
    phone: 220,
    capital: "Banjul",
    code: "GM",
    code3: "GMB",
    number: 270,
  },
  {
    id: 78,
    name: "Ghana",
    currency: "GHS",
    phone: 233,
    capital: "Accra",
    code: "GH",
    code3: "GHA",
    number: 288,
  },
  {
    id: 79,
    name: "Georgia",
    currency: "GEL",
    phone: 995,
    capital: "Tbilisi",
    code: "GE",
    code3: "GEO",
    number: 268,
  },
  {
    id: 80,
    name: "Gibraltar",
    currency: "GIP",
    phone: 350,
    capital: "Gibraltar",
    code: "GI",
    code3: "GIB",
    number: 292,
  },
  {
    id: 81,
    name: "Grenada",
    currency: "XCD",
    phone: 1473,
    capital: "St. George's",
    code: "GD",
    code3: "GRD",
    number: 308,
  },
  {
    id: 82,
    name: "Greece",
    currency: "EUR",
    phone: 30,
    capital: "Athens",
    code: "GR",
    code3: "GRC",
    number: 300,
  },
  {
    id: 83,
    name: "Greenland",
    currency: "DKK",
    phone: 299,
    capital: "Nuuk",
    code: "GL",
    code3: "GRL",
    number: 304,
  },
  {
    id: 84,
    name: "Guadeloupe",
    currency: "EUR",
    phone: 590,
    capital: "Basse-Terre",
    code: "GP",
    code3: "GLP",
    number: 312,
  },
  {
    id: 85,
    name: "Guam",
    currency: "USD",
    phone: 1671,
    capital: "Hagatna",
    code: "GU",
    code3: "GUM",
    number: 316,
  },
  {
    id: 86,
    name: "Guatemala",
    currency: "GTQ",
    phone: 502,
    capital: "Guatemala City",
    code: "GT",
    code3: "GTM",
    number: 320,
  },
  {
    id: 87,
    name: "Guernsey",
    currency: "GBP",
    phone: 44,
    capital: "St Peter Port",
    code: "GG",
    code3: "GGY",
    number: 831,
  },
  {
    id: 88,
    name: "Guyana",
    currency: "GYD",
    phone: 592,
    capital: "Georgetown",
    code: "GY",
    code3: "GUY",
    number: 328,
  },
  {
    id: 89,
    name: "French Guiana",
    currency: "EUR",
    phone: 594,
    capital: "Cayenne",
    code: "GF",
    code3: "GUF",
    number: 254,
  },
  {
    id: 90,
    name: "Guinea",
    currency: "GNF",
    phone: 224,
    capital: "Conakry",
    code: "GN",
    code3: "GIN",
    number: 324,
  },
  {
    id: 91,
    name: "Equatorial Guinea",
    currency: "XAF",
    phone: 240,
    capital: "Malabo",
    code: "GQ",
    code3: "GNQ",
    number: 226,
  },
  {
    id: 92,
    name: "Guinea-Bissau",
    currency: "XOF",
    phone: 245,
    capital: "Bissau",
    code: "GW",
    code3: "GNB",
    number: 624,
  },
  {
    id: 93,
    name: "Haiti",
    currency: "HTG",
    phone: 509,
    capital: "Port-au-Prince",
    code: "HT",
    code3: "HTI",
    number: 332,
  },
  {
    id: 94,
    name: "Netherlands",
    currency: "EUR",
    phone: 31,
    capital: "Amsterdam",
    code: "NL",
    code3: "NLD",
    number: 528,
  },
  {
    id: 95,
    name: "Honduras",
    currency: "HNL",
    phone: 504,
    capital: "Tegucigalpa",
    code: "HN",
    code3: "HND",
    number: 340,
  },
  {
    id: 96,
    name: "Hong Kong SAR",
    currency: "HKD",
    phone: 852,
    capital: "Hong Kong",
    code: "HK",
    code3: "HKG",
    number: 344,
  },
  {
    id: 97,
    name: "Hungary",
    currency: "HUF",
    phone: 36,
    capital: "Budapest",
    code: "HU",
    code3: "HUN",
    number: 348,
  },
  {
    id: 98,
    name: "Yemen",
    currency: "YER",
    phone: 967,
    capital: "Sanaa",
    code: "YE",
    code3: "YEM",
    number: 887,
  },
  {
    id: 99,
    name: "Bouvet Island",
    currency: "NOK",
    phone: 55,
    capital: null,
    code: "BV",
    code3: "BVT",
    number: 74,
  },
  {
    id: 100,
    name: "Reunion",
    currency: "EUR",
    phone: 262,
    capital: "Saint-Denis",
    code: "RE",
    code3: "REU",
    number: 638,
  },
  {
    id: 101,
    name: "Man, Isle of",
    currency: "GBP",
    phone: 44,
    capital: "Douglas, Isle of Man",
    code: "IM",
    code3: "IMN",
    number: 833,
  },
  {
    id: 102,
    name: "Saint Martin (French part)",
    currency: "EUR",
    phone: 590,
    capital: "Marigot",
    code: "MF",
    code3: "MAF",
    number: 663,
  },
  {
    id: 103,
    name: "Heard Island and McDonald Islands",
    currency: "AUD",
    phone: 0,
    capital: null,
    code: "HM",
    code3: "HMD",
    number: 334,
  },
  {
    id: 104,
    name: "Christmas Island",
    currency: "AUD",
    phone: 61,
    capital: "Flying Fish Cove",
    code: "CX",
    code3: "CXR",
    number: 162,
  },
  {
    id: 105,
    name: "Norfolk Island",
    currency: "AUD",
    phone: 672,
    capital: "Kingston",
    code: "NF",
    code3: "NFK",
    number: 574,
  },
  {
    id: 106,
    name: "Åland Islands",
    currency: "EUR",
    phone: 358,
    capital: "Mariehamn",
    code: "AX",
    code3: "ALA",
    number: 248,
  },
  {
    id: 107,
    name: "Cayman Islands",
    currency: "KYD",
    phone: 1345,
    capital: "George Town",
    code: "KY",
    code3: "CYM",
    number: 136,
  },
  {
    id: 108,
    name: "Cocos (Keeling) Islands",
    currency: "AUD",
    phone: 672,
    capital: "West Island",
    code: "CC",
    code3: "CCK",
    number: 166,
  },
  {
    id: 109,
    name: "Cook Islands",
    currency: "NZD",
    phone: 682,
    capital: "Avarua",
    code: "CK",
    code3: "COK",
    number: 184,
  },
  {
    id: 110,
    name: "Falkland Islands (Islas Malvinas)",
    currency: "FKP",
    phone: 500,
    capital: "Stanley",
    code: "FK",
    code3: "FLK",
    number: 238,
  },
  {
    id: 111,
    name: "Faroe Islands",
    currency: "DKK",
    phone: 298,
    capital: "Torshavn",
    code: "FO",
    code3: "FRO",
    number: 234,
  },
  {
    id: 112,
    name: "South Georgia and the South Sandwich Islands",
    currency: "GBP",
    phone: 500,
    capital: "Grytviken",
    code: "GS",
    code3: "SGS",
    number: 239,
  },
  {
    id: 113,
    name: "Northern Mariana Islands",
    currency: "USD",
    phone: 1670,
    capital: "Saipan",
    code: "MP",
    code3: "MNP",
    number: 580,
  },
  {
    id: 114,
    name: "Marshall Islands",
    currency: "USD",
    phone: 692,
    capital: "Majuro",
    code: "MH",
    code3: "MHL",
    number: 584,
  },
  {
    id: 115,
    name: "U.S. Minor Outlying Islands",
    currency: "USD",
    phone: 246,
    capital: null,
    code: "UM",
    code3: "UMI",
    number: 581,
  },
  {
    id: 116,
    name: "Pitcairn Islands",
    currency: "NZD",
    phone: 64,
    capital: "Adamstown",
    code: "PN",
    code3: "PCN",
    number: 612,
  },
  {
    id: 117,
    name: "Solomon Islands",
    currency: "SBD",
    phone: 677,
    capital: "Honiara",
    code: "SB",
    code3: "SLB",
    number: 90,
  },
  {
    id: 118,
    name: "Turks and Caicos Islands",
    currency: "USD",
    phone: 1649,
    capital: "Cockburn Town",
    code: "TC",
    code3: "TCA",
    number: 796,
  },
  {
    id: 119,
    name: "Virgin Islands, U.S.",
    currency: "USD",
    phone: 1340,
    capital: "Charlotte Amalie",
    code: "VI",
    code3: "VIR",
    number: 850,
  },
  {
    id: 120,
    name: "Virgin Islands, British",
    currency: "USD",
    phone: 1284,
    capital: "Road Town",
    code: "VG",
    code3: "VGB",
    number: 92,
  },
  {
    id: 121,
    name: "India",
    currency: "INR",
    phone: 91,
    capital: "New Delhi",
    code: "IN",
    code3: "IND",
    number: 356,
  },
  {
    id: 122,
    name: "Indonesia",
    currency: "IDR",
    phone: 62,
    capital: "Jakarta",
    code: "ID",
    code3: "IDN",
    number: 360,
  },
  {
    id: 123,
    name: "Iran",
    currency: "IRR",
    phone: 98,
    capital: "Tehran",
    code: "IR",
    code3: "IRN",
    number: 364,
  },
  {
    id: 124,
    name: "Iraq",
    currency: "IQD",
    phone: 964,
    capital: "Baghdad",
    code: "IQ",
    code3: "IRQ",
    number: 368,
  },
  {
    id: 125,
    name: "Ireland",
    currency: "EUR",
    phone: 353,
    capital: "Dublin",
    code: "IE",
    code3: "IRL",
    number: 372,
  },
  {
    id: 126,
    name: "Iceland",
    currency: "ISK",
    phone: 354,
    capital: "Reykjavik",
    code: "IS",
    code3: "ISL",
    number: 352,
  },
  {
    id: 127,
    name: "Israel",
    currency: "ILS",
    phone: 972,
    capital: "Jerusalem",
    code: "IL",
    code3: "ISR",
    number: 376,
  },
  {
    id: 128,
    name: "Italy",
    currency: "EUR",
    phone: 39,
    capital: "Rome",
    code: "IT",
    code3: "ITA",
    number: 380,
  },
  {
    id: 129,
    name: "Jamaica",
    currency: "JMD",
    phone: 1876,
    capital: "Kingston",
    code: "JM",
    code3: "JAM",
    number: 388,
  },
  {
    id: 130,
    name: "Japan",
    currency: "JPY",
    phone: 81,
    capital: "Tokyo",
    code: "JP",
    code3: "JPN",
    number: 392,
  },
  {
    id: 131,
    name: "Jersey",
    currency: "GBP",
    phone: 44,
    capital: "Saint Helier",
    code: "JE",
    code3: "JEY",
    number: 832,
  },
  {
    id: 132,
    name: "Jordan",
    currency: "JOD",
    phone: 962,
    capital: "Amman",
    code: "JO",
    code3: "JOR",
    number: 400,
  },
  {
    id: 133,
    name: "Kiribati",
    currency: "AUD",
    phone: 686,
    capital: "Tarawa",
    code: "KI",
    code3: "KIR",
    number: 296,
  },
  {
    id: 134,
    name: "Kosovo",
    currency: "EUR",
    phone: 383,
    capital: "Pristina",
    code: "XK",
    code3: "XKX",
    number: 926,
  },
  {
    id: 135,
    name: "Kuwait",
    currency: "KWD",
    phone: 965,
    capital: "Kuwait City",
    code: "KW",
    code3: "KWT",
    number: 414,
  },
  {
    id: 136,
    name: "Laos",
    currency: "LAK",
    phone: 856,
    capital: "Vientiane",
    code: "LA",
    code3: "LAO",
    number: 418,
  },
  {
    id: 137,
    name: "Lesotho",
    currency: "LSL",
    phone: 266,
    capital: "Maseru",
    code: "LS",
    code3: "LSO",
    number: 426,
  },
  {
    id: 138,
    name: "Latvia",
    currency: "EUR",
    phone: 371,
    capital: "Riga",
    code: "LV",
    code3: "LVA",
    number: 428,
  },
  {
    id: 139,
    name: "Lebanon",
    currency: "LBP",
    phone: 961,
    capital: "Beirut",
    code: "LB",
    code3: "LBN",
    number: 422,
  },
  {
    id: 140,
    name: "Liberia",
    currency: "LRD",
    phone: 231,
    capital: "Monrovia",
    code: "LR",
    code3: "LBR",
    number: 430,
  },
  {
    id: 141,
    name: "Libya",
    currency: "LYD",
    phone: 218,
    capital: "Tripolis",
    code: "LY",
    code3: "LBY",
    number: 434,
  },
  {
    id: 142,
    name: "Liechtenstein",
    currency: "CHF",
    phone: 423,
    capital: "Vaduz",
    code: "LI",
    code3: "LIE",
    number: 438,
  },
  {
    id: 143,
    name: "Lithuania",
    currency: "EUR",
    phone: 370,
    capital: "Vilnius",
    code: "LT",
    code3: "LTU",
    number: 440,
  },
  {
    id: 144,
    name: "Luxembourg",
    currency: "EUR",
    phone: 352,
    capital: "Luxembourg",
    code: "LU",
    code3: "LUX",
    number: 442,
  },
  {
    id: 145,
    name: "Macao SAR",
    currency: "MOP",
    phone: 853,
    capital: "Macao",
    code: "MO",
    code3: "MAC",
    number: 446,
  },
  {
    id: 146,
    name: "Macedonia, Former Yugoslav Republic of",
    currency: "MKD",
    phone: 389,
    capital: "Skopje",
    code: "MK",
    code3: "MKD",
    number: 807,
  },
  {
    id: 147,
    name: "Madagascar",
    currency: "MGA",
    phone: 261,
    capital: "Antananarivo",
    code: "MG",
    code3: "MDG",
    number: 450,
  },
  {
    id: 148,
    name: "Malaysia",
    currency: "MYR",
    phone: 60,
    capital: "Kuala Lumpur",
    code: "MY",
    code3: "MYS",
    number: 458,
  },
  {
    id: 149,
    name: "Malawi",
    currency: "MWK",
    phone: 265,
    capital: "Lilongwe",
    code: "MW",
    code3: "MWI",
    number: 454,
  },
  {
    id: 150,
    name: "Maldives",
    currency: "MVR",
    phone: 960,
    capital: "Male",
    code: "MV",
    code3: "MDV",
    number: 462,
  },
  {
    id: 151,
    name: "Mali",
    currency: "XOF",
    phone: 223,
    capital: "Bamako",
    code: "ML",
    code3: "MLI",
    number: 466,
  },
  {
    id: 152,
    name: "Malta",
    currency: "EUR",
    phone: 356,
    capital: "Valletta",
    code: "MT",
    code3: "MLT",
    number: 470,
  },
  {
    id: 153,
    name: "Morocco",
    currency: "MAD",
    phone: 212,
    capital: "Rabat",
    code: "MA",
    code3: "MAR",
    number: 504,
  },
  {
    id: 154,
    name: "Martinique",
    currency: "EUR",
    phone: 596,
    capital: "Fort-de-France",
    code: "MQ",
    code3: "MTQ",
    number: 474,
  },
  {
    id: 155,
    name: "Mauritius",
    currency: "MUR",
    phone: 230,
    capital: "Port Louis",
    code: "MU",
    code3: "MUS",
    number: 480,
  },
  {
    id: 156,
    name: "Mauritania",
    currency: "MRO",
    phone: 222,
    capital: "Nouakchott",
    code: "MR",
    code3: "MRT",
    number: 478,
  },
  {
    id: 157,
    name: "Mayotte",
    currency: "EUR",
    phone: 269,
    capital: "Mamoudzou",
    code: "YT",
    code3: "MYT",
    number: 175,
  },
  {
    id: 158,
    name: "Mexico",
    currency: "MXN",
    phone: 52,
    capital: "Mexico City",
    code: "MX",
    code3: "MEX",
    number: 484,
  },
  {
    id: 159,
    name: "Micronesia",
    currency: "USD",
    phone: 691,
    capital: "Palikir",
    code: "FM",
    code3: "FSM",
    number: 583,
  },
  {
    id: 160,
    name: "Mozambique",
    currency: "MZN",
    phone: 258,
    capital: "Maputo",
    code: "MZ",
    code3: "MOZ",
    number: 508,
  },
  {
    id: 161,
    name: "Moldova",
    currency: "MDL",
    phone: 373,
    capital: "Chisinau",
    code: "MD",
    code3: "MDA",
    number: 498,
  },
  {
    id: 162,
    name: "Monaco",
    currency: "EUR",
    phone: 377,
    capital: "Monaco",
    code: "MC",
    code3: "MCO",
    number: 492,
  },
  {
    id: 163,
    name: "Mongolia",
    currency: "MNT",
    phone: 976,
    capital: "Ulan Bator",
    code: "MN",
    code3: "MNG",
    number: 496,
  },
  {
    id: 164,
    name: "Montenegro",
    currency: "EUR",
    phone: 382,
    capital: "Podgorica",
    code: "ME",
    code3: "MNE",
    number: 499,
  },
  {
    id: 165,
    name: "Montserrat",
    currency: "XCD",
    phone: 1664,
    capital: "Plymouth",
    code: "MS",
    code3: "MSR",
    number: 500,
  },
  {
    id: 166,
    name: "Myanmar",
    currency: "MMK",
    phone: 95,
    capital: "Nay Pyi Taw",
    code: "MM",
    code3: "MMR",
    number: 104,
  },
  {
    id: 167,
    name: "Namibia",
    currency: "NAD",
    phone: 264,
    capital: "Windhoek",
    code: "NA",
    code3: "NAM",
    number: 516,
  },
  {
    id: 168,
    name: "Nauru",
    currency: "AUD",
    phone: 674,
    capital: "Yaren",
    code: "NR",
    code3: "NRU",
    number: 520,
  },
  {
    id: 169,
    name: "Nepal",
    currency: "NPR",
    phone: 977,
    capital: "Kathmandu",
    code: "NP",
    code3: "NPL",
    number: 524,
  },
  {
    id: 170,
    name: "Nicaragua",
    currency: "NIO",
    phone: 505,
    capital: "Managua",
    code: "NI",
    code3: "NIC",
    number: 558,
  },
  {
    id: 171,
    name: "Niger",
    currency: "XOF",
    phone: 227,
    capital: "Niamey",
    code: "NE",
    code3: "NER",
    number: 562,
  },
  {
    id: 172,
    name: "Nigeria",
    currency: "NGN",
    phone: 234,
    capital: "Abuja",
    code: "NG",
    code3: "NGA",
    number: 566,
  },
  {
    id: 173,
    name: "Niue",
    currency: "NZD",
    phone: 683,
    capital: "Alofi",
    code: "NU",
    code3: "NIU",
    number: 570,
  },
  {
    id: 174,
    name: "Norway",
    currency: "NOK",
    phone: 47,
    capital: "Oslo",
    code: "NO",
    code3: "NOR",
    number: 578,
  },
  {
    id: 175,
    name: "New Caledonia",
    currency: "XPF",
    phone: 687,
    capital: "Noumea",
    code: "NC",
    code3: "NCL",
    number: 540,
  },
  {
    id: 176,
    name: "New Zealand",
    currency: "NZD",
    phone: 64,
    capital: "Wellington",
    code: "NZ",
    code3: "NZL",
    number: 554,
  },
  {
    id: 177,
    name: "Oman",
    currency: "OMR",
    phone: 968,
    capital: "Muscat",
    code: "OM",
    code3: "OMN",
    number: 512,
  },
  {
    id: 178,
    name: "Palau",
    currency: "USD",
    phone: 680,
    capital: "Melekeok",
    code: "PW",
    code3: "PLW",
    number: 585,
  },
  {
    id: 179,
    name: "Panama",
    currency: "PAB",
    phone: 507,
    capital: "Panama City",
    code: "PA",
    code3: "PAN",
    number: 591,
  },
  {
    id: 180,
    name: "Papua New Guinea",
    currency: "PGK",
    phone: 675,
    capital: "Port Moresby",
    code: "PG",
    code3: "PNG",
    number: 598,
  },
  {
    id: 181,
    name: "Pakistan",
    currency: "PKR",
    phone: 92,
    capital: "Islamabad",
    code: "PK",
    code3: "PAK",
    number: 586,
  },
  {
    id: 182,
    name: "Paraguay",
    currency: "PYG",
    phone: 595,
    capital: "Asuncion",
    code: "PY",
    code3: "PRY",
    number: 600,
  },
  {
    id: 183,
    name: "Peru",
    currency: "PEN",
    phone: 51,
    capital: "Lima",
    code: "PE",
    code3: "PER",
    number: 604,
  },
  {
    id: 184,
    name: "French Polynesia",
    currency: "XPF",
    phone: 689,
    capital: "Papeete",
    code: "PF",
    code3: "PYF",
    number: 258,
  },
  {
    id: 185,
    name: "Poland",
    currency: "PLN",
    phone: 48,
    capital: "Warsaw",
    code: "PL",
    code3: "POL",
    number: 616,
  },
  {
    id: 186,
    name: "Puerto Rico",
    currency: "USD",
    phone: 1787,
    capital: "San Juan",
    code: "PR",
    code3: "PRI",
    number: 630,
  },
  {
    id: 187,
    name: "Portugal",
    currency: "EUR",
    phone: 351,
    capital: "Lisbon",
    code: "PT",
    code3: "PRT",
    number: 620,
  },
  {
    id: 188,
    name: "Kenya",
    currency: "KES",
    phone: 254,
    capital: "Nairobi",
    code: "KE",
    code3: "KEN",
    number: 404,
  },
  {
    id: 189,
    name: "Kyrgyzstan",
    currency: "KGS",
    phone: 996,
    capital: "Bishkek",
    code: "KG",
    code3: "KGZ",
    number: 417,
  },
  {
    id: 190,
    name: "United Kingdom",
    currency: "GBP",
    phone: 44,
    capital: "London",
    code: "GB",
    code3: "GBR",
    number: 826,
  },
  {
    id: 191,
    name: "Central African Republic",
    currency: "XAF",
    phone: 236,
    capital: "Bangui",
    code: "CF",
    code3: "CAF",
    number: 140,
  },
  {
    id: 192,
    name: "Congo (DRC)",
    currency: "CDF",
    phone: 242,
    capital: "Kinshasa",
    code: "CD",
    code3: "COD",
    number: 180,
  },
  {
    id: 193,
    name: "Dominican Republic",
    currency: "DOP",
    phone: 1809,
    capital: "Santo Domingo",
    code: "DO",
    code3: "DOM",
    number: 214,
  },
  {
    id: 194,
    name: "Czech Republic",
    currency: "CZK",
    phone: 420,
    capital: "Prague",
    code: "CZ",
    code3: "CZE",
    number: 203,
  },
  {
    id: 195,
    name: "Romania",
    currency: "RON",
    phone: 40,
    capital: "Bucharest",
    code: "RO",
    code3: "ROM",
    number: 642,
  },
  {
    id: 196,
    name: "Rwanda",
    currency: "RWF",
    phone: 250,
    capital: "Kigali",
    code: "RW",
    code3: "RWA",
    number: 646,
  },
  {
    id: 197,
    name: "Russia",
    currency: "RUB",
    phone: 70,
    capital: "Moscow",
    code: "RU",
    code3: "RUS",
    number: 643,
  },
  {
    id: 198,
    name: "Saara Ocidental",
    currency: "MAD",
    phone: 212,
    capital: "El-Aaiun",
    code: "EH",
    code3: "ESH",
    number: 732,
  },
  {
    id: 199,
    name: "Bonaire, Sint Eustatius and Saba",
    currency: "USD",
    phone: 599,
    capital: "Kralendijk",
    code: "BQ",
    code3: "BES",
    number: 535,
  },
  {
    id: 200,
    name: "Samoa",
    currency: "WST",
    phone: 684,
    capital: "Apia",
    code: "WS",
    code3: "WSM",
    number: 882,
  },
  {
    id: 201,
    name: "American Samoa",
    currency: "USD",
    phone: 1684,
    capital: "Pago Pago",
    code: "AS",
    code3: "ASM",
    number: 16,
  },
  {
    id: 202,
    name: "San Marino",
    currency: "EUR",
    phone: 378,
    capital: "San Marino",
    code: "SM",
    code3: "SMR",
    number: 674,
  },
  {
    id: 203,
    name: "Saint Helena, Ascension and Tristan da Cunha",
    currency: "SHP",
    phone: 290,
    capital: "Jamestown",
    code: "SH",
    code3: "SHN",
    number: 654,
  },
  {
    id: 204,
    name: "Saint Lucia",
    currency: "XCD",
    phone: 1758,
    capital: "Castries",
    code: "LC",
    code3: "LCA",
    number: 662,
  },
  {
    id: 205,
    name: "Saint Barthélemy",
    currency: "EUR",
    phone: 590,
    capital: "Gustavia",
    code: "BL",
    code3: "BLM",
    number: 652,
  },
  {
    id: 206,
    name: "Saint Kitts and Nevis",
    currency: "XCD",
    phone: 1869,
    capital: "Basseterre",
    code: "KN",
    code3: "KNA",
    number: 659,
  },
  {
    id: 207,
    name: "Sint Maarten (Dutch part)",
    currency: "ANG",
    phone: 1,
    capital: "Philipsburg",
    code: "SX",
    code3: "SXM",
    number: 534,
  },
  {
    id: 208,
    name: "Saint Pierre and Miquelon",
    currency: "EUR",
    phone: 508,
    capital: "Saint-Pierre",
    code: "PM",
    code3: "SPM",
    number: 666,
  },
  {
    id: 209,
    name: "São Tomé and Príncipe",
    currency: "STD",
    phone: 239,
    capital: "Sao Tome",
    code: "ST",
    code3: "STP",
    number: 678,
  },
  {
    id: 210,
    name: "Saint Vincent and the Grenadines",
    currency: "XCD",
    phone: 1784,
    capital: "Kingstown",
    code: "VC",
    code3: "VCT",
    number: 670,
  },
  {
    id: 211,
    name: "Senegal",
    currency: "XOF",
    phone: 221,
    capital: "Dakar",
    code: "SN",
    code3: "SEN",
    number: 686,
  },
  {
    id: 212,
    name: "Sierra Leone",
    currency: "SLL",
    phone: 232,
    capital: "Freetown",
    code: "SL",
    code3: "SLE",
    number: 694,
  },
  {
    id: 213,
    name: "Serbia",
    currency: "RSD",
    phone: 381,
    capital: "Belgrade",
    code: "RS",
    code3: "SRB",
    number: 688,
  },
  {
    id: 215,
    name: "Seychelles",
    currency: "SCR",
    phone: 248,
    capital: "Victoria",
    code: "SC",
    code3: "SYC",
    number: 690,
  },
  {
    id: 216,
    name: "Syria",
    currency: "SYP",
    phone: 963,
    capital: "Damascus",
    code: "SY",
    code3: "SYR",
    number: 760,
  },
  {
    id: 217,
    name: "Somalia",
    currency: "SOS",
    phone: 252,
    capital: "Mogadishu",
    code: "SO",
    code3: "SOM",
    number: 706,
  },
  {
    id: 218,
    name: "Sri Lanka",
    currency: "LKR",
    phone: 94,
    capital: "Colombo",
    code: "LK",
    code3: "LKA",
    number: 144,
  },
  {
    id: 219,
    name: "Swaziland",
    currency: "SZL",
    phone: 268,
    capital: "Mbabane",
    code: "SZ",
    code3: "SWZ",
    number: 748,
  },
  {
    id: 220,
    name: "Sudan",
    currency: "SDG",
    phone: 249,
    capital: "Khartoum",
    code: "SD",
    code3: "SDN",
    number: 736,
  },
  {
    id: 221,
    name: "South Sudan",
    currency: "SSP",
    phone: 211,
    capital: "Juba",
    code: "SS",
    code3: "SSD",
    number: 728,
  },
  {
    id: 222,
    name: "Sweden",
    currency: "SEK",
    phone: 46,
    capital: "Stockholm",
    code: "SE",
    code3: "SWE",
    number: 752,
  },
  {
    id: 223,
    name: "Switzerland",
    currency: "CHF",
    phone: 41,
    capital: "Berne",
    code: "CH",
    code3: "CHE",
    number: 756,
  },
  {
    id: 224,
    name: "Suriname",
    currency: "SRD",
    phone: 597,
    capital: "Paramaribo",
    code: "SR",
    code3: "SUR",
    number: 740,
  },
  {
    id: 225,
    name: "Jan Mayen",
    currency: "NOK",
    phone: 47,
    capital: "Longyearbyen",
    code: "SJ",
    code3: "SJM",
    number: 744,
  },
  {
    id: 226,
    name: "Thailand",
    currency: "THB",
    phone: 66,
    capital: "Bangkok",
    code: "TH",
    code3: "THA",
    number: 764,
  },
  {
    id: 227,
    name: "Taiwan",
    currency: "TWD",
    phone: 886,
    capital: "Taipei",
    code: "TW",
    code3: "TWN",
    number: 158,
  },
  {
    id: 228,
    name: "Tajikistan",
    currency: "TJS",
    phone: 992,
    capital: "Dushanbe",
    code: "TJ",
    code3: "TJK",
    number: 762,
  },
  {
    id: 229,
    name: "Tanzania",
    currency: "TZS",
    phone: 255,
    capital: "Dodoma",
    code: "TZ",
    code3: "TZA",
    number: 834,
  },
  {
    id: 230,
    name: "French Southern and Antarctic Lands",
    currency: "EUR",
    phone: 262,
    capital: "Port-aux-Francais",
    code: "TF",
    code3: "ATF",
    number: 260,
  },
  {
    id: 231,
    name: "British Indian Ocean Territory",
    currency: "USD",
    phone: 246,
    capital: "Diego Garcia",
    code: "IO",
    code3: "IOT",
    number: 86,
  },
  {
    id: 232,
    name: "Palestinian Authority",
    currency: "ILS",
    phone: 970,
    capital: "East Jerusalem",
    code: "PS",
    code3: "PSE",
    number: 275,
  },
  {
    id: 233,
    name: "Democratic Republic of Timor-Leste",
    currency: "USD",
    phone: 670,
    capital: "Dili",
    code: "TL",
    code3: "TLS",
    number: 626,
  },
  {
    id: 234,
    name: "Togo",
    currency: "XOF",
    phone: 228,
    capital: "Lome",
    code: "TG",
    code3: "TGO",
    number: 768,
  },
  {
    id: 235,
    name: "Tonga",
    currency: "TOP",
    phone: 676,
    capital: "Nuku'alofa",
    code: "TO",
    code3: "TON",
    number: 776,
  },
  {
    id: 236,
    name: "Tokelau",
    currency: "NZD",
    phone: 690,
    capital: "Nukunonu",
    code: "TK",
    code3: "TKL",
    number: 772,
  },
  {
    id: 237,
    name: "Trinidad and Tobago",
    currency: "TTD",
    phone: 1868,
    capital: "Port of Spain",
    code: "TT",
    code3: "TTO",
    number: 780,
  },
  {
    id: 238,
    name: "Tunisia",
    currency: "TND",
    phone: 216,
    capital: "Tunis",
    code: "TN",
    code3: "TUN",
    number: 788,
  },
  {
    id: 239,
    name: "Turkmenistan",
    currency: "TMT",
    phone: 7370,
    capital: "Ashgabat",
    code: "TM",
    code3: "TKM",
    number: 795,
  },
  {
    id: 240,
    name: "Turkey",
    currency: "TRY",
    phone: 90,
    capital: "Ankara",
    code: "TR",
    code3: "TUR",
    number: 792,
  },
  {
    id: 241,
    name: "Tuvalu",
    currency: "AUD",
    phone: 688,
    capital: "Funafuti",
    code: "TV",
    code3: "TUV",
    number: 798,
  },
  {
    id: 242,
    name: "Ukraine",
    currency: "UAH",
    phone: 380,
    capital: "Kiev",
    code: "UA",
    code3: "UKR",
    number: 804,
  },
  {
    id: 243,
    name: "Uganda",
    currency: "UGX",
    phone: 256,
    capital: "Kampala",
    code: "UG",
    code3: "UGA",
    number: 800,
  },
  {
    id: 244,
    name: "Uruguay",
    currency: "UYU",
    phone: 598,
    capital: "Montevideo",
    code: "UY",
    code3: "URY",
    number: 858,
  },
  {
    id: 245,
    name: "Uzbekistan",
    currency: "UZS",
    phone: 998,
    capital: "Tashkent",
    code: "UZ",
    code3: "UZB",
    number: 860,
  },
  {
    id: 246,
    name: "Vanuatu",
    currency: "VUV",
    phone: 678,
    capital: "Port Vila",
    code: "VU",
    code3: "VUT",
    number: 548,
  },
  {
    id: 247,
    name: "Vatican City",
    currency: "EUR",
    phone: 39,
    capital: "Vaticano",
    code: "VA",
    code3: "VAT",
    number: 336,
  },
  {
    id: 248,
    name: "Bolivarian Republic of Venezuela",
    currency: "VEF",
    phone: 58,
    capital: "Caracas",
    code: "VE",
    code3: "VEN",
    number: 862,
  },
  {
    id: 249,
    name: "Vietnam",
    currency: "VND",
    phone: 84,
    capital: "Hanoi",
    code: "VN",
    code3: "VNM",
    number: 704,
  },
  {
    id: 250,
    name: "Wallis and Futuna",
    currency: "XPF",
    phone: 681,
    capital: "Mata Utu",
    code: "WF",
    code3: "WLF",
    number: 876,
  },
  {
    id: 251,
    name: "Zambia",
    currency: "ZMW",
    phone: 260,
    capital: "Lusaka",
    code: "ZM",
    code3: "ZMB",
    number: 894,
  },
  {
    id: 252,
    name: "Zimbabwe",
    currency: "ZWL",
    phone: 263,
    capital: "Harare",
    code: "ZW",
    code3: "ZWE",
    number: 716,
  },
];

const countries = {
  name: countriesInfo.map((country) => country.name),
  currency: countriesInfo.map((country) => country.currency),
  phone: countriesInfo.map((country) => country.phone),
  capital: countriesInfo.map((country) => country.capital),
  code: countriesInfo.map((country) => country.code),
  code3: countriesInfo.map((country) => country.code3),
  number: countriesInfo.map((country) => country.number),
};

export default countries;

@aurangblackbuck
Copy link

With Flag and Phone Code on name:

export const COUNTRIES = [
{
name: '+93 Afghanistan 🇦🇫',
code: 'AF',
timezone: 'Afghanistan Standard Time',
utc: 'UTC+04:30',
mobileCode: '+93',
},
{
name: '+358-18 Åland Islands 🇦🇽',
code: 'AX',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+358-18',
},
{
name: '+355 Albania 🇦🇱',
code: 'AL',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+355',
},
{
name: '+213 Algeria 🇩🇿',
code: 'DZ',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+213',
},
{
name: '+1-684 American Samoa 🇦🇸',
code: 'AS',
timezone: 'UTC-11',
utc: 'UTC-11:00',
mobileCode: '+1-684',
},
{
name: '+376 Andorra 🇦🇩',
code: 'AD',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+376',
},
{
name: '+244 Angola 🇦🇴',
code: 'AO',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+244',
},
{
name: '+1-264 Anguilla 🇦🇮',
code: 'AI',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-264',
},
{
name: '+ Antarctica 🇦🇶',
code: 'AQ',
timezone: 'Pacific SA Standard Time',
utc: 'UTC-03:00',
mobileCode: '+',
},
{
name: '+1-268 Antigua and Barbuda 🇦🇬',
code: 'AG',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-268',
},
{
name: '+54 Argentina 🇦🇷',
code: 'AR',
timezone: 'Argentina Standard Time',
utc: 'UTC-03:00',
mobileCode: '+54',
},
{
name: '+374 Armenia 🇦🇲',
code: 'AM',
timezone: 'Caucasus Standard Time',
utc: 'UTC+04:00',
mobileCode: '+374',
},
{
name: '+297 Aruba 🇦🇼',
code: 'AW',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+297',
},
{
name: '+61 Australia 🇦🇺',
code: 'AU',
timezone: 'AUS Eastern Standard Time',
utc: 'UTC+10:00',
mobileCode: '+61',
},
{
name: '+43 Austria 🇦🇹',
code: 'AT',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+43',
},
{
name: '+994 Azerbaijan 🇦🇿',
code: 'AZ',
timezone: 'Azerbaijan Standard Time',
utc: 'UTC+04:00',
mobileCode: '+994',
},
{
name: '+1-242 Bahamas, The 🇧🇸',
code: 'BS',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1-242',
},
{
name: '+973 Bahrain 🇧🇭',
code: 'BH',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+973',
},
{
name: '+880 Bangladesh 🇧🇩',
code: 'BD',
timezone: 'Bangladesh Standard Time',
utc: 'UTC+06:00',
mobileCode: '+880',
},
{
name: '+1-246 Barbados 🇧🇧',
code: 'BB',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-246',
},
{
name: '+375 Belarus 🇧🇾',
code: 'BY',
timezone: 'Belarus Standard Time',
utc: 'UTC+03:00',
mobileCode: '+375',
},
{
name: '+32 Belgium 🇧🇪',
code: 'BE',
timezone: 'Romance Standard Time',
utc: 'UTC+01:00',
mobileCode: '+32',
},
{
name: '+501 Belize 🇧🇿',
code: 'BZ',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+501',
},
{
name: '+229 Benin 🇧🇯',
code: 'BJ',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+229',
},
{
name: '+1-441 Bermuda 🇧🇲',
code: 'BM',
timezone: 'Atlantic Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-441',
},
{
name: '+975 Bhutan 🇧🇹',
code: 'BT',
timezone: 'Bangladesh Standard Time',
utc: 'UTC+06:00',
mobileCode: '+975',
},
{
name: '+58 Bolivarian Republic of Venezuela 🇻🇪',
code: 'VE',
timezone: 'Venezuela Standard Time',
utc: 'UTC-04:30',
mobileCode: '+58',
},
{
name: '+591 Bolivia 🇧🇴',
code: 'BO',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+591',
},
{
name: '+599 Bonaire, Sint Eustatius and Saba 🇧🇶',
code: 'BQ',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+599',
},
{
name: '+387 Bosnia and Herzegovina 🇧🇦',
code: 'BA',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+387',
},
{
name: '+267 Botswana 🇧🇼',
code: 'BW',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+267',
},
{
name: '+ Bouvet Island 🇧🇻',
code: 'BV',
timezone: 'UTC',
utc: 'UTC',
mobileCode: '+',
},
{
name: '+55 Brazil 🇧🇷',
code: 'BR',
timezone: 'E. South America Standard Time',
utc: 'UTC-03:00',
mobileCode: '+55',
},
{
name: '+246 British Indian Ocean Territory 🇮🇴',
code: 'IO',
timezone: 'Central Asia Standard Time',
utc: 'UTC+06:00',
mobileCode: '+246',
},
{
name: '+673 Brunei 🇧🇳',
code: 'BN',
timezone: 'Singapore Standard Time',
utc: 'UTC+08:00',
mobileCode: '+673',
},
{
name: '+359 Bulgaria 🇧🇬',
code: 'BG',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+359',
},
{
name: '+226 Burkina Faso 🇧🇫',
code: 'BF',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+226',
},
{
name: '+257 Burundi 🇧🇮',
code: 'BI',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+257',
},
{
name: '+238 Cabo Verde 🇨🇻',
code: 'CV',
timezone: 'Cape Verde Standard Time',
utc: 'UTC-01:00',
mobileCode: '+238',
},
{
name: '+855 Cambodia 🇰🇭',
code: 'KH',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+855',
},
{
name: '+237 Cameroon 🇨🇲',
code: 'CM',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+237',
},
{
name: '+1 Canada 🇨🇦',
code: 'CA',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1',
},
{
name: '+1-345 Cayman Islands 🇰🇾',
code: 'KY',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1-345',
},
{
name: '+236 Central African Republic 🇨🇫',
code: 'CF',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+236',
},
{
name: '+235 Chad 🇹🇩',
code: 'TD',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+235',
},
{
name: '+56 Chile 🇨🇱',
code: 'CL',
timezone: 'Pacific SA Standard Time',
utc: 'UTC-03:00',
mobileCode: '+56',
},
{
name: '+86 China 🇨🇳',
code: 'CN',
timezone: 'China Standard Time',
utc: 'UTC+08:00',
mobileCode: '+86',
},
{
name: '+61 Christmas Island 🇨🇽',
code: 'CX',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+61',
},
{
name: '+61 Cocos (Keeling) Islands 🇨🇨',
code: 'CC',
timezone: 'Myanmar Standard Time',
utc: 'UTC+06:30',
mobileCode: '+61',
},
{
name: '+57 Colombia 🇨🇴',
code: 'CO',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+57',
},
{
name: '+269 Comoros 🇰🇲',
code: 'KM',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+269',
},
{
name: '+242 Congo 🇨🇬',
code: 'CG',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+242',
},
{
name: '+243 Congo (DRC) 🇨🇩',
code: 'CD',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+243',
},
{
name: '+682 Cook Islands 🇨🇰',
code: 'CK',
timezone: 'Hawaiian Standard Time',
utc: 'UTC-10:00',
mobileCode: '+682',
},
{
name: '+506 Costa Rica 🇨🇷',
code: 'CR',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+506',
},
{
name: "+225 Côte d'Ivoire 🇨🇮",
code: 'CI',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+225',
},
{
name: '+385 Croatia 🇭🇷',
code: 'HR',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+385',
},
{
name: '+53 Cuba 🇨🇺',
code: 'CU',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+53',
},
{
name: '+599 Curaçao 🇨🇼',
code: 'CW',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+599',
},
{
name: '+357 Cyprus 🇨🇾',
code: 'CY',
timezone: 'E. Europe Standard Time',
utc: 'UTC+02:00',
mobileCode: '+357',
},
{
name: '+420 Czech Republic 🇨🇿',
code: 'CZ',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+420',
},
{
name: '+670 Democratic Republic of Timor-Leste 🇹🇱',
code: 'TL',
timezone: 'Tokyo Standard Time',
utc: 'UTC+09:00',
mobileCode: '+670',
},
{
name: '+45 Denmark 🇩🇰',
code: 'DK',
timezone: 'Romance Standard Time',
utc: 'UTC+01:00',
mobileCode: '+45',
},
{
name: '+253 Djibouti 🇩🇯',
code: 'DJ',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+253',
},
{
name: '+1-767 Dominica 🇩🇲',
code: 'DM',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-767',
},
{
name: '+1-809 and 1-829 Dominican Republic 🇩🇴',
code: 'DO',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-809 and 1-829',
},
{
name: '+593 Ecuador 🇪🇨',
code: 'EC',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+593',
},
{
name: '+20 Egypt 🇪🇬',
code: 'EG',
timezone: 'Egypt Standard Time',
utc: 'UTC+02:00',
mobileCode: '+20',
},
{
name: '+503 El Salvador 🇸🇻',
code: 'SV',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+503',
},
{
name: '+240 Equatorial Guinea 🇬🇶',
code: 'GQ',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+240',
},
{
name: '+291 Eritrea 🇪🇷',
code: 'ER',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+291',
},
{
name: '+372 Estonia 🇪🇪',
code: 'EE',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+372',
},
{
name: '+251 Ethiopia 🇪🇹',
code: 'ET',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+251',
},
{
name: '+500 Falkland Islands (Islas Malvinas) 🇫🇰',
code: 'FK',
timezone: 'SA Eastern Standard Time',
utc: 'UTC-03:00',
mobileCode: '+500',
},
{
name: '+298 Faroe Islands 🇫🇴',
code: 'FO',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+298',
},
{
name: '+679 Fiji Islands 🇫🇯',
code: 'FJ',
timezone: 'Fiji Standard Time',
utc: 'UTC+12:00',
mobileCode: '+679',
},
{
name: '+358 Finland 🇫🇮',
code: 'FI',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+358',
},
{
name: '+33 France 🇫🇷',
code: 'FR',
timezone: 'Romance Standard Time',
utc: 'UTC+01:00',
mobileCode: '+33',
},
{
name: '+594 French Guiana 🇬🇫',
code: 'GF',
timezone: 'SA Eastern Standard Time',
utc: 'UTC-03:00',
mobileCode: '+594',
},
{
name: '+689 French Polynesia 🇵🇫',
code: 'PF',
timezone: 'Hawaiian Standard Time',
utc: 'UTC-10:00',
mobileCode: '+689',
},
{
name: '+ French Southern and Antarctic Lands 🇹🇫',
code: 'TF',
timezone: 'West Asia Standard Time',
utc: 'UTC+05:00',
mobileCode: '+',
},
{
name: '+241 Gabon 🇬🇦',
code: 'GA',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+241',
},
{
name: '+220 Gambia, The 🇬🇲',
code: 'GM',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+220',
},
{
name: '+995 Georgia 🇬🇪',
code: 'GE',
timezone: 'Georgian Standard Time',
utc: 'UTC+04:00',
mobileCode: '+995',
},
{
name: '+49 Germany 🇩🇪',
code: 'DE',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+49',
},
{
name: '+233 Ghana 🇬🇭',
code: 'GH',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+233',
},
{
name: '+350 Gibraltar 🇬🇮',
code: 'GI',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+350',
},
{
name: '+30 Greece 🇬🇷',
code: 'GR',
timezone: 'GTB Standard Time',
utc: 'UTC+02:00',
mobileCode: '+30',
},
{
name: '+299 Greenland 🇬🇱',
code: 'GL',
timezone: 'Greenland Standard Time',
utc: 'UTC-03:00',
mobileCode: '+299',
},
{
name: '+1-473 Grenada 🇬🇩',
code: 'GD',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-473',
},
{
name: '+590 Guadeloupe 🇬🇵',
code: 'GP',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+590',
},
{
name: '+1-671 Guam 🇬🇺',
code: 'GU',
timezone: 'West Pacific Standard Time',
utc: 'UTC+10:00',
mobileCode: '+1-671',
},
{
name: '+502 Guatemala 🇬🇹',
code: 'GT',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+502',
},
{
name: '+44-1481 Guernsey 🇬🇬',
code: 'GG',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+44-1481',
},
{
name: '+224 Guinea 🇬🇳',
code: 'GN',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+224',
},
{
name: '+245 Guinea-Bissau 🇬🇼',
code: 'GW',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+245',
},
{
name: '+592 Guyana 🇬🇾',
code: 'GY',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+592',
},
{
name: '+509 Haiti 🇭🇹',
code: 'HT',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+509',
},
{
name: '+ Heard Island and McDonald Islands 🇭🇲',
code: 'HM',
timezone: 'Mauritius Standard Time',
utc: 'UTC+04:00',
mobileCode: '+ ',
},
{
name: '+504 Honduras 🇭🇳',
code: 'HN',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+504',
},
{
name: '+852 Hong Kong SAR 🇭🇰',
code: 'HK',
timezone: 'China Standard Time',
utc: 'UTC+08:00',
mobileCode: '+852',
},
{
name: '+36 Hungary 🇭🇺',
code: 'HU',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+36',
},
{
name: '+354 Iceland 🇮🇸',
code: 'IS',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+354',
},
{
name: '+91 India 🇮🇳',
code: 'IN',
timezone: 'India Standard Time',
utc: 'UTC+05:30',
mobileCode: '+91',
},
{
name: '+62 Indonesia 🇮🇩',
code: 'ID',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+62',
},
{
name: '+98 Iran 🇮🇷',
code: 'IR',
timezone: 'Iran Standard Time',
utc: 'UTC+03:30',
mobileCode: '+98',
},
{
name: '+964 Iraq 🇮🇶',
code: 'IQ',
timezone: 'Arabic Standard Time',
utc: 'UTC+03:00',
mobileCode: '+964',
},
{
name: '+353 Ireland 🇮🇪',
code: 'IE',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+353',
},
{
name: '+972 Israel 🇮🇱',
code: 'IL',
timezone: 'Israel Standard Time',
utc: 'UTC+02:00',
mobileCode: '+972',
},
{
name: '+39 Italy 🇮🇹',
code: 'IT',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+39',
},
{
name: '+1-876 Jamaica 🇯🇲',
code: 'JM',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1-876',
},
{
name: '+47 Jan Mayen 🇳🇴',
code: 'SJ',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+47',
},
{
name: '+81 Japan 🇯🇵',
code: 'JP',
timezone: 'Tokyo Standard Time',
utc: 'UTC+09:00',
mobileCode: '+81',
},
{
name: '+44-1534 Jersey 🇯🇪',
code: 'JE',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+44-1534',
},
{
name: '+962 Jordan 🇯🇴',
code: 'JO',
timezone: 'Jordan Standard Time',
utc: 'UTC+02:00',
mobileCode: '+962',
},
{
name: '+7 Kazakhstan 🇰🇿',
code: 'KZ',
timezone: 'Central Asia Standard Time',
utc: 'UTC+06:00',
mobileCode: '+7',
},
{
name: '+254 Kenya 🇰🇪',
code: 'KE',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+254',
},
{
name: '+686 Kiribati 🇰🇮',
code: 'KI',
timezone: 'UTC+12',
utc: 'UTC+12:00',
mobileCode: '+686',
},
{
name: '+82 Korea 🇰🇷',
code: 'KR',
timezone: 'Korea Standard Time',
utc: 'UTC+09:00',
mobileCode: '+82',
},
{
name: '+ Kosovo 🇽🇰',
code: 'XK',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+',
},
{
name: '+965 Kuwait 🇰🇼',
code: 'KW',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+965',
},
{
name: '+996 Kyrgyzstan 🇰🇬',
code: 'KG',
timezone: 'Central Asia Standard Time',
utc: 'UTC+06:00',
mobileCode: '+996',
},
{
name: '+856 Laos 🇱🇦',
code: 'LA',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+856',
},
{
name: '+371 Latvia 🇱🇻',
code: 'LV',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+371',
},
{
name: '+961 Lebanon 🇱🇧',
code: 'LB',
timezone: 'Middle East Standard Time',
utc: 'UTC+02:00',
mobileCode: '+961',
},
{
name: '+266 Lesotho 🇱🇸',
code: 'LS',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+266',
},
{
name: '+231 Liberia 🇱🇷',
code: 'LR',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+231',
},
{
name: '+218 Libya 🇱🇾',
code: 'LY',
timezone: 'E. Europe Standard Time',
utc: 'UTC+02:00',
mobileCode: '+218',
},
{
name: '+423 Liechtenstein 🇱🇮',
code: 'LI',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+423',
},
{
name: '+370 Lithuania 🇱🇹',
code: 'LT',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+370',
},
{
name: '+352 Luxembourg 🇱🇺',
code: 'LU',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+352',
},
{
name: '+853 Macao SAR 🇲🇴',
code: 'MO',
timezone: 'China Standard Time',
utc: 'UTC+08:00',
mobileCode: '+853',
},
{
name: '+389 Macedonia, Former Yugoslav Republic of 🇲🇰',
code: 'MK',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+389',
},
{
name: '+261 Madagascar 🇲🇬',
code: 'MG',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+261',
},
{
name: '+265 Malawi 🇲🇼',
code: 'MW',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+265',
},
{
name: '+60 Malaysia 🇲🇾',
code: 'MY',
timezone: 'Singapore Standard Time',
utc: 'UTC+08:00',
mobileCode: '+60',
},
{
name: '+960 Maldives 🇲🇻',
code: 'MV',
timezone: 'West Asia Standard Time',
utc: 'UTC+05:00',
mobileCode: '+960',
},
{
name: '+223 Mali 🇲🇱',
code: 'ML',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+223',
},
{
name: '+356 Malta 🇲🇹',
code: 'MT',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+356',
},
{
name: '+44-1624 Man, Isle of 🇮🇲',
code: 'IM',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+44-1624',
},
{
name: '+692 Marshall Islands 🇲🇭',
code: 'MH',
timezone: 'UTC+12',
utc: 'UTC+12:00',
mobileCode: '+692',
},
{
name: '+596 Martinique 🇲🇶',
code: 'MQ',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+596',
},
{
name: '+222 Mauritania 🇲🇷',
code: 'MR',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+222',
},
{
name: '+230 Mauritius 🇲🇺',
code: 'MU',
timezone: 'Mauritius Standard Time',
utc: 'UTC+04:00',
mobileCode: '+230',
},
{
name: '+262 Mayotte 🇾🇹',
code: 'YT',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+262',
},
{
name: '+52 Mexico 🇲🇽',
code: 'MX',
timezone: 'Central Standard Time (Mexico)',
utc: 'UTC-06:00',
mobileCode: '+52',
},
{
name: '+691 Micronesia 🇫🇲',
code: 'FM',
timezone: 'West Pacific Standard Time',
utc: 'UTC+10:00',
mobileCode: '+691',
},
{
name: '+373 Moldova 🇲🇩',
code: 'MD',
timezone: 'GTB Standard Time',
utc: 'UTC+02:00',
mobileCode: '+373',
},
{
name: '+377 Monaco 🇲🇨',
code: 'MC',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+377',
},
{
name: '+976 Mongolia 🇲🇳',
code: 'MN',
timezone: 'Ulaanbaatar Standard Time',
utc: 'UTC+08:00',
mobileCode: '+976',
},
{
name: '+382 Montenegro 🇲🇪',
code: 'ME',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+382',
},
{
name: '+1-664 Montserrat 🇲🇸',
code: 'MS',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-664',
},
{
name: '+212 Morocco 🇲🇦',
code: 'MA',
timezone: 'Morocco Standard Time',
utc: 'UTC',
mobileCode: '+212',
},
{
name: '+258 Mozambique 🇲🇿',
code: 'MZ',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+258',
},
{
name: '+95 Myanmar 🇲🇲',
code: 'MM',
timezone: 'Myanmar Standard Time',
utc: 'UTC+06:30',
mobileCode: '+95',
},
{
name: '+264 Namibia 🇳🇦',
code: 'NA',
timezone: 'Namibia Standard Time',
utc: 'UTC+01:00',
mobileCode: '+264',
},
{
name: '+674 Nauru 🇳🇷',
code: 'NR',
timezone: 'UTC+12',
utc: 'UTC+12:00',
mobileCode: '+674',
},
{
name: '+977 Nepal 🇳🇵',
code: 'NP',
timezone: 'Nepal Standard Time',
utc: 'UTC+05:45',
mobileCode: '+977',
},
{
name: '+31 Netherlands 🇳🇱',
code: 'NL',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+31',
},
{
name: '+687 New Caledonia 🇳🇨',
code: 'NC',
timezone: 'Central Pacific Standard Time',
utc: 'UTC+11:00',
mobileCode: '+687',
},
{
name: '+64 New Zealand 🇳🇿',
code: 'NZ',
timezone: 'New Zealand Standard Time',
utc: 'UTC+12:00',
mobileCode: '+64',
},
{
name: '+505 Nicaragua 🇳🇮',
code: 'NI',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+505',
},
{
name: '+227 Niger 🇳🇪',
code: 'NE',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+227',
},
{
name: '+234 Nigeria 🇳🇬',
code: 'NG',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+234',
},
{
name: '+683 Niue 🇳🇺',
code: 'NU',
timezone: 'UTC-11',
utc: 'UTC-11:00',
mobileCode: '+683',
},
{
name: '+672 Norfolk Island 🇳🇫',
code: 'NF',
timezone: 'Central Pacific Standard Time',
utc: 'UTC+11:00',
mobileCode: '+672',
},
{
name: '+850 North Korea 🇰🇵',
code: 'KP',
timezone: 'Korea Standard Time',
utc: 'UTC+09:00',
mobileCode: '+850',
},
{
name: '+1-670 Northern Mariana Islands 🇲🇵',
code: 'MP',
timezone: 'West Pacific Standard Time',
utc: 'UTC+10:00',
mobileCode: '+1-670',
},
{
name: '+47 Norway 🇳🇴',
code: 'NO',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+47',
},
{
name: '+968 Oman 🇴🇲',
code: 'OM',
timezone: 'Arabian Standard Time',
utc: 'UTC+04:00',
mobileCode: '+968',
},
{
name: '+92 Pakistan 🇵🇰',
code: 'PK',
timezone: 'Pakistan Standard Time',
utc: 'UTC+05:00',
mobileCode: '+92',
},
{
name: '+680 Palau 🇵🇼',
code: 'PW',
timezone: 'Tokyo Standard Time',
utc: 'UTC+09:00',
mobileCode: '+680',
},
{
name: '+970 Palestinian Authority 🇵🇸',
code: 'PS',
timezone: 'Egypt Standard Time',
utc: 'UTC+02:00',
mobileCode: '+970',
},
{
name: '+507 Panama 🇵🇦',
code: 'PA',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+507',
},
{
name: '+675 Papua New Guinea 🇵🇬',
code: 'PG',
timezone: 'West Pacific Standard Time',
utc: 'UTC+10:00',
mobileCode: '+675',
},
{
name: '+595 Paraguay 🇵🇾',
code: 'PY',
timezone: 'Paraguay Standard Time',
utc: 'UTC-04:00',
mobileCode: '+595',
},
{
name: '+51 Peru 🇵🇪',
code: 'PE',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+51',
},
{
name: '+63 Philippines 🇵🇭',
code: 'PH',
timezone: 'Singapore Standard Time',
utc: 'UTC+08:00',
mobileCode: '+63',
},
{
name: '+870 Pitcairn Islands 🇵🇳',
code: 'PN',
timezone: 'Pacific Standard Time',
utc: 'UTC-08:00',
mobileCode: '+870',
},
{
name: '+48 Poland 🇵🇱',
code: 'PL',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+48',
},
{
name: '+351 Portugal 🇵🇹',
code: 'PT',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+351',
},
{
name: '+1-787 and 1-939 Puerto Rico 🇵🇷',
code: 'PR',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-787 and 1-939',
},
{
name: '+974 Qatar 🇶🇦',
code: 'QA',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+974',
},
{
name: '+262 Reunion 🇷🇪',
code: 'RE',
timezone: 'Mauritius Standard Time',
utc: 'UTC+04:00',
mobileCode: '+262',
},
{
name: '+40 Romania 🇷🇴',
code: 'RO',
timezone: 'GTB Standard Time',
utc: 'UTC+02:00',
mobileCode: '+40',
},
{
name: '+7 Russia 🇷🇺',
code: 'RU',
timezone: 'Russian Standard Time',
utc: 'UTC+03:00',
mobileCode: '+7',
},
{
name: '+250 Rwanda 🇷🇼',
code: 'RW',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+250',
},
{
name: '+590 Saint Barthélemy 🇧🇱',
code: 'BL',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+590',
},
{
name: '+290 Saint Helena, Ascension and Tristan da Cunha 🇸🇭',
code: 'SH',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+290',
},
{
name: '+1-869 Saint Kitts and Nevis 🇰🇳',
code: 'KN',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-869',
},
{
name: '+1-758 Saint Lucia 🇱🇨',
code: 'LC',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-758',
},
{
name: '+590 Saint Martin (French part) 🇲🇫',
code: 'MF',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+590',
},
{
name: '+508 Saint Pierre and Miquelon 🇵🇲',
code: 'PM',
timezone: 'Greenland Standard Time',
utc: 'UTC-03:00',
mobileCode: '+508',
},
{
name: '+1-784 Saint Vincent and the Grenadines 🇻🇨',
code: 'VC',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-784',
},
{
name: '+685 Samoa 🇼🇸',
code: 'WS',
timezone: 'Samoa Standard Time',
utc: 'UTC+13:00',
mobileCode: '+685',
},
{
name: '+378 San Marino 🇸🇲',
code: 'SM',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+378',
},
{
name: '+239 São Tomé and Príncipe 🇸🇹',
code: 'ST',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+239',
},
{
name: '+966 Saudi Arabia 🇸🇦',
code: 'SA',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+966',
},
{
name: '+221 Senegal 🇸🇳',
code: 'SN',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+221',
},
{
name: '+381 Serbia 🇷🇸',
code: 'RS',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+381',
},
{
name: '+248 Seychelles 🇸🇨',
code: 'SC',
timezone: 'Mauritius Standard Time',
utc: 'UTC+04:00',
mobileCode: '+248',
},
{
name: '+232 Sierra Leone 🇸🇱',
code: 'SL',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+232',
},
{
name: '+65 Singapore 🇸🇬',
code: 'SG',
timezone: 'Singapore Standard Time',
utc: 'UTC+08:00',
mobileCode: '+65',
},
{
name: '+599 Sint Maarten (Dutch part) 🇸🇽',
code: 'SX',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+599',
},
{
name: '+421 Slovakia 🇸🇰',
code: 'SK',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+421',
},
{
name: '+386 Slovenia 🇸🇮',
code: 'SI',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+386',
},
{
name: '+677 Solomon Islands 🇸🇧',
code: 'SB',
timezone: 'Central Pacific Standard Time',
utc: 'UTC+11:00',
mobileCode: '+677',
},
{
name: '+252 Somalia 🇸🇴',
code: 'SO',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+252',
},
{
name: '+27 South Africa 🇿🇦',
code: 'ZA',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+27',
},
{
name: '+ South Georgia and the South Sandwich Islands 🇬🇸',
code: 'GS',
timezone: 'UTC-02',
utc: 'UTC-02:00',
mobileCode: '+',
},
{
name: '+211 South Sudan 🇸🇸',
code: 'SS',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+211',
},
{
name: '+34 Spain 🇪🇸',
code: 'ES',
timezone: 'Romance Standard Time',
utc: 'UTC+01:00',
mobileCode: '+34',
},
{
name: '+94 Sri Lanka 🇱🇰',
code: 'LK',
timezone: 'Sri Lanka Standard Time',
utc: 'UTC+05:30',
mobileCode: '+94',
},
{
name: '+249 Sudan 🇸🇩',
code: 'SD',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+249',
},
{
name: '+597 Suriname 🇸🇷',
code: 'SR',
timezone: 'SA Eastern Standard Time',
utc: 'UTC-03:00',
mobileCode: '+597',
},
{
name: '+47 Svalbard 🇸🇯',
code: 'SJ',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+47',
},
{
name: '+268 Swaziland 🇸🇿',
code: 'SZ',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+268',
},
{
name: '+46 Sweden 🇸🇪',
code: 'SE',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+46',
},
{
name: '+41 Switzerland 🇨🇭',
code: 'CH',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+41',
},
{
name: '+963 Syria 🇸🇾',
code: 'SY',
timezone: 'Syria Standard Time',
utc: 'UTC+02:00',
mobileCode: '+963',
},
{
name: '+886 Taiwan 🇹🇼',
code: 'TW',
timezone: 'Taipei Standard Time',
utc: 'UTC+08:00',
mobileCode: '+886',
},
{
name: '+992 Tajikistan 🇹🇯',
code: 'TJ',
timezone: 'West Asia Standard Time',
utc: 'UTC+05:00',
mobileCode: '+992',
},
{
name: '+255 Tanzania 🇹🇿',
code: 'TZ',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+255',
},
{
name: '+66 Thailand 🇹🇭',
code: 'TH',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+66',
},
{
name: '+228 Togo 🇹🇬',
code: 'TG',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+228',
},
{
name: '+690 Tokelau 🇹🇰',
code: 'TK',
timezone: 'Tonga Standard Time',
utc: 'UTC+13:00',
mobileCode: '+690',
},
{
name: '+676 Tonga 🇹🇴',
code: 'TO',
timezone: 'Tonga Standard Time',
utc: 'UTC+13:00',
mobileCode: '+676',
},
{
name: '+1-868 Trinidad and Tobago 🇹🇹',
code: 'TT',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-868',
},
{
name: '+216 Tunisia 🇹🇳',
code: 'TN',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+216',
},
{
name: '+90 Turkey 🇹🇷',
code: 'TR',
timezone: 'Turkey Standard Time',
utc: 'UTC+02:00',
mobileCode: '+90',
},
{
name: '+993 Turkmenistan 🇹🇲',
code: 'TM',
timezone: 'West Asia Standard Time',
utc: 'UTC+05:00',
mobileCode: '+993',
},
{
name: '+1-649 Turks and Caicos Islands 🇹🇨',
code: 'TC',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1-649',
},
{
name: '+688 Tuvalu 🇹🇻',
code: 'TV',
timezone: 'UTC+12',
utc: 'UTC+12:00',
mobileCode: '+688',
},
{
name: '+1 U.S. Minor Outlying Islands 🇺🇲',
code: 'UM',
timezone: 'UTC-11',
utc: 'UTC-11:00',
mobileCode: '+1',
},
{
name: '+256 Uganda 🇺🇬',
code: 'UG',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+256',
},
{
name: '+380 Ukraine 🇺🇦',
code: 'UA',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+380',
},
{
name: '+971 United Arab Emirates 🇦🇪',
code: 'AE',
timezone: 'Arabian Standard Time',
utc: 'UTC+04:00',
mobileCode: '+971',
},
{
name: '+44 United Kingdom 🇬🇧',
code: 'GB',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+44',
},
{
name: '+1 United States 🇺🇸',
code: 'US',
timezone: 'Pacific Standard Time',
utc: 'UTC-08:00',
mobileCode: '+1',
},
{
name: '+598 Uruguay 🇺🇾',
code: 'UY',
timezone: 'Montevideo Standard Time',
utc: 'UTC-03:00',
mobileCode: '+598',
},
{
name: '+998 Uzbekistan 🇺🇿',
code: 'UZ',
timezone: 'West Asia Standard Time',
utc: 'UTC+05:00',
mobileCode: '+998',
},
{
name: '+678 Vanuatu 🇻🇺',
code: 'VU',
timezone: 'Central Pacific Standard Time',
utc: 'UTC+11:00',
mobileCode: '+678',
},
{
name: '+379 Vatican City 🇻🇦',
code: 'VA',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+379',
},
{
name: '+84 Vietnam 🇻🇳',
code: 'VN',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+84',
},
{
name: '+1-340 Virgin Islands, U.S. 🇻🇮',
code: 'VI',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-340',
},
{
name: '+1-284 Virgin Islands, British 🇻🇬',
code: 'VG',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-284',
},
{
name: '+681 Wallis and Futuna 🇼🇫',
code: 'WF',
timezone: 'UTC+12',
utc: 'UTC+12:00',
mobileCode: '+681',
},
{
name: '+967 Yemen 🇾🇪',
code: 'YE',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+967',
},
{
name: '+260 Zambia 🇿🇲',
code: 'ZM',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+260',
},
{
name: '+263 Zimbabwe 🇿🇼',
code: 'ZW',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+263',
},
];

@dinh-khuong
Copy link

[
{
"name": "Afghanistan",
"code": "AF",
"timezone": "Afghanistan Standard Time",
"utc": "UTC+04:30",
"mobileCode": "+93",
"flag": "🇦🇫"
},
{
"name": "Åland Islands",
"code": "AX",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+358-18",
"flag": "🇦🇽"
},
{
"name": "Albania",
"code": "AL",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+355",
"flag": "🇦🇱"
},
{
"name": "Algeria",
"code": "DZ",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+213",
"flag": "🇩🇿"
},
{
"name": "American Samoa",
"code": "AS",
"timezone": "UTC-11",
"utc": "UTC-11:00",
"mobileCode": "+1-684",
"flag": "🇦🇸"
},
{
"name": "Andorra",
"code": "AD",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+376",
"flag": "🇦🇩"
},
{
"name": "Angola",
"code": "AO",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+244",
"flag": "🇦🇴"
},
{
"name": "Anguilla",
"code": "AI",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-264",
"flag": "🇦🇮"
},
{
"name": "Antarctica",
"code": "AQ",
"timezone": "Pacific SA Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+",
"flag": "🇦🇶"
},
{
"name": "Antigua and Barbuda",
"code": "AG",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-268",
"flag": "🇦🇬"
},
{
"name": "Argentina",
"code": "AR",
"timezone": "Argentina Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+54",
"flag": "🇦🇷"
},
{
"name": "Armenia",
"code": "AM",
"timezone": "Caucasus Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+374",
"flag": "🇦🇲"
},
{
"name": "Aruba",
"code": "AW",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+297",
"flag": "🇦🇼"
},
{
"name": "Australia",
"code": "AU",
"timezone": "AUS Eastern Standard Time",
"utc": "UTC+10:00",
"mobileCode": "+61",
"flag": "🇦🇺"
},
{
"name": "Austria",
"code": "AT",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+43",
"flag": "🇦🇹"
},
{
"name": "Azerbaijan",
"code": "AZ",
"timezone": "Azerbaijan Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+994",
"flag": "🇦🇿"
},
{
"name": "Bahamas, The",
"code": "BS",
"timezone": "Eastern Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+1-242",
"flag": "🇧🇸"
},
{
"name": "Bahrain",
"code": "BH",
"timezone": "Arab Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+973",
"flag": "🇧🇭"
},
{
"name": "Bangladesh",
"code": "BD",
"timezone": "Bangladesh Standard Time",
"utc": "UTC+06:00",
"mobileCode": "+880",
"flag": "🇧🇩"
},
{
"name": "Barbados",
"code": "BB",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-246",
"flag": "🇧🇧"
},
{
"name": "Belarus",
"code": "BY",
"timezone": "Belarus Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+375",
"flag": "🇧🇾"
},
{
"name": "Belgium",
"code": "BE",
"timezone": "Romance Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+32",
"flag": "🇧🇪"
},
{
"name": "Belize",
"code": "BZ",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+501",
"flag": "🇧🇿"
},
{
"name": "Benin",
"code": "BJ",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+229",
"flag": "🇧🇯"
},
{
"name": "Bermuda",
"code": "BM",
"timezone": "Atlantic Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-441",
"flag": "🇧🇲"
},
{
"name": "Bhutan",
"code": "BT",
"timezone": "Bangladesh Standard Time",
"utc": "UTC+06:00",
"mobileCode": "+975",
"flag": "🇧🇹"
},
{
"name": "Bolivarian Republic of Venezuela",
"code": "VE",
"timezone": "Venezuela Standard Time",
"utc": "UTC-04:30",
"mobileCode": "+58",
"flag": "🇻🇪"
},
{
"name": "Bolivia",
"code": "BO",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+591",
"flag": "🇧🇴"
},
{
"name": "Bonaire, Sint Eustatius and Saba",
"code": "BQ",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+599",
"flag": "🇧🇶"
},
{
"name": "Bosnia and Herzegovina",
"code": "BA",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+387",
"flag": "🇧🇦"
},
{
"name": "Botswana",
"code": "BW",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+267",
"flag": "🇧🇼"
},
{
"name": "Bouvet Island",
"code": "BV",
"timezone": "UTC",
"utc": "UTC",
"mobileCode": "+",
"flag": "🇧🇻"
},
{
"name": "Brazil",
"code": "BR",
"timezone": "E. South America Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+55",
"flag": "🇧🇷"
},
{
"name": "British Indian Ocean Territory",
"code": "IO",
"timezone": "Central Asia Standard Time",
"utc": "UTC+06:00",
"mobileCode": "+246",
"flag": "🇮🇴"
},
{
"name": "Brunei",
"code": "BN",
"timezone": "Singapore Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+673",
"flag": "🇧🇳"
},
{
"name": "Bulgaria",
"code": "BG",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+359",
"flag": "🇧🇬"
},
{
"name": "Burkina Faso",
"code": "BF",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+226",
"flag": "🇧🇫"
},
{
"name": "Burundi",
"code": "BI",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+257",
"flag": "🇧🇮"
},
{
"name": "Cabo Verde",
"code": "CV",
"timezone": "Cape Verde Standard Time",
"utc": "UTC-01:00",
"mobileCode": "+238",
"flag": "🇨🇻"
},
{
"name": "Cambodia",
"code": "KH",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+855",
"flag": "🇰🇭"
},
{
"name": "Cameroon",
"code": "CM",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+237",
"flag": "🇨🇲"
},
{
"name": "Canada",
"code": "CA",
"timezone": "Eastern Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+1",
"flag": "🇨🇦"
},
{
"name": "Cayman Islands",
"code": "KY",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+1-345",
"flag": "🇰🇾"
},
{
"name": "Central African Republic",
"code": "CF",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+236",
"flag": "🇨🇫"
},
{
"name": "Chad",
"code": "TD",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+235",
"flag": "🇹🇩"
},
{
"name": "Chile",
"code": "CL",
"timezone": "Pacific SA Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+56",
"flag": "🇨🇱"
},
{
"name": "China",
"code": "CN",
"timezone": "China Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+86",
"flag": "🇨🇳"
},
{
"name": "Christmas Island",
"code": "CX",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+61",
"flag": "🇨🇽"
},
{
"name": "Cocos (Keeling) Islands",
"code": "CC",
"timezone": "Myanmar Standard Time",
"utc": "UTC+06:30",
"mobileCode": "+61",
"flag": "🇨🇨"
},
{
"name": "Colombia",
"code": "CO",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+57",
"flag": "🇨🇴"
},
{
"name": "Comoros",
"code": "KM",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+269",
"flag": "🇰🇲"
},
{
"name": "Congo",
"code": "CG",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+242",
"flag": "🇨🇬"
},
{
"name": "Congo (DRC)",
"code": "CD",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+243",
"flag": "🇨🇩"
},
{
"name": "Cook Islands",
"code": "CK",
"timezone": "Hawaiian Standard Time",
"utc": "UTC-10:00",
"mobileCode": "+682",
"flag": "🇨🇰"
},
{
"name": "Costa Rica",
"code": "CR",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+506",
"flag": "🇨🇷"
},
{
"name": "Côte d'Ivoire",
"code": "CI",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+225",
"flag": "🇨🇮"
},
{
"name": "Croatia",
"code": "HR",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+385",
"flag": "🇭🇷"
},
{
"name": "Cuba",
"code": "CU",
"timezone": "Eastern Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+53",
"flag": "🇨🇺"
},
{
"name": "Curaçao",
"code": "CW",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+599",
"flag": "🇨🇼"
},
{
"name": "Cyprus",
"code": "CY",
"timezone": "E. Europe Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+357",
"flag": "🇨🇾"
},
{
"name": "Czech Republic",
"code": "CZ",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+420",
"flag": "🇨🇿"
},
{
"name": "Democratic Republic of Timor-Leste",
"code": "TL",
"timezone": "Tokyo Standard Time",
"utc": "UTC+09:00",
"mobileCode": "+670",
"flag": "🇹🇱"
},
{
"name": "Denmark",
"code": "DK",
"timezone": "Romance Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+45",
"flag": "🇩🇰"
},
{
"name": "Djibouti",
"code": "DJ",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+253",
"flag": "🇩🇯"
},
{
"name": "Dominica",
"code": "DM",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-767",
"flag": "🇩🇲"
},
{
"name": "Dominican Republic",
"code": "DO",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-809 and 1-829",
"flag": "🇩🇴"
},
{
"name": "Ecuador",
"code": "EC",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+593",
"flag": "🇪🇨"
},
{
"name": "Egypt",
"code": "EG",
"timezone": "Egypt Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+20",
"flag": "🇪🇬"
},
{
"name": "El Salvador",
"code": "SV",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+503",
"flag": "🇸🇻"
},
{
"name": "Equatorial Guinea",
"code": "GQ",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+240",
"flag": "🇬🇶"
},
{
"name": "Eritrea",
"code": "ER",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+291",
"flag": "🇪🇷"
},
{
"name": "Estonia",
"code": "EE",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+372",
"flag": "🇪🇪"
},
{
"name": "Ethiopia",
"code": "ET",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+251",
"flag": "🇪🇹"
},
{
"name": "Falkland Islands (Islas Malvinas)",
"code": "FK",
"timezone": "SA Eastern Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+500",
"flag": "🇫🇰"
},
{
"name": "Faroe Islands",
"code": "FO",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+298",
"flag": "🇫🇴"
},
{
"name": "Fiji Islands",
"code": "FJ",
"timezone": "Fiji Standard Time",
"utc": "UTC+12:00",
"mobileCode": "+679",
"flag": "🇫🇯"
},
{
"name": "Finland",
"code": "FI",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+358",
"flag": "🇫🇮"
},
{
"name": "France",
"code": "FR",
"timezone": "Romance Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+33",
"flag": "🇫🇷"
},
{
"name": "French Guiana",
"code": "GF",
"timezone": "SA Eastern Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+594",
"flag": "🇬🇫"
},
{
"name": "French Polynesia",
"code": "PF",
"timezone": "Hawaiian Standard Time",
"utc": "UTC-10:00",
"mobileCode": "+689",
"flag": "🇵🇫"
},
{
"name": "French Southern and Antarctic Lands",
"code": "TF",
"timezone": "West Asia Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+",
"flag": "🇹🇫"
},
{
"name": "Gabon",
"code": "GA",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+241",
"flag": "🇬🇦"
},
{
"name": "Gambia, The",
"code": "GM",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+220",
"flag": "🇬🇲"
},
{
"name": "Georgia",
"code": "GE",
"timezone": "Georgian Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+995",
"flag": "🇬🇪"
},
{
"name": "Germany",
"code": "DE",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+49",
"flag": "🇩🇪"
},
{
"name": "Ghana",
"code": "GH",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+233",
"flag": "🇬🇭"
},
{
"name": "Gibraltar",
"code": "GI",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+350",
"flag": "🇬🇮"
},
{
"name": "Greece",
"code": "GR",
"timezone": "GTB Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+30",
"flag": "🇬🇷"
},
{
"name": "Greenland",
"code": "GL",
"timezone": "Greenland Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+299",
"flag": "🇬🇱"
},
{
"name": "Grenada",
"code": "GD",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-473",
"flag": "🇬🇩"
},
{
"name": "Guadeloupe",
"code": "GP",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+590",
"flag": "🇬🇵"
},
{
"name": "Guam",
"code": "GU",
"timezone": "West Pacific Standard Time",
"utc": "UTC+10:00",
"mobileCode": "+1-671",
"flag": "🇬🇺"
},
{
"name": "Guatemala",
"code": "GT",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+502",
"flag": "🇬🇹"
},
{
"name": "Guernsey",
"code": "GG",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+44-1481",
"flag": "🇬🇬"
},
{
"name": "Guinea",
"code": "GN",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+224",
"flag": "🇬🇳"
},
{
"name": "Guinea-Bissau",
"code": "GW",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+245",
"flag": "🇬🇼"
},
{
"name": "Guyana",
"code": "GY",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+592",
"flag": "🇬🇾"
},
{
"name": "Haiti",
"code": "HT",
"timezone": "Eastern Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+509",
"flag": "🇭🇹"
},
{
"name": "Heard Island and McDonald Islands",
"code": "HM",
"timezone": "Mauritius Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+ ",
"flag": "🇭🇲"
},
{
"name": "Honduras",
"code": "HN",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+504",
"flag": "🇭🇳"
},
{
"name": "Hong Kong SAR",
"code": "HK",
"timezone": "China Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+852",
"flag": "🇭🇰"
},
{
"name": "Hungary",
"code": "HU",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+36",
"flag": "🇭🇺"
},
{
"name": "Iceland",
"code": "IS",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+354",
"flag": "🇮🇸"
},
{
"name": "India",
"code": "IN",
"timezone": "India Standard Time",
"utc": "UTC+05:30",
"mobileCode": "+91",
"flag": "🇮🇳"
},
{
"name": "Indonesia",
"code": "ID",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+62",
"flag": "🇮🇩"
},
{
"name": "Iran",
"code": "IR",
"timezone": "Iran Standard Time",
"utc": "UTC+03:30",
"mobileCode": "+98",
"flag": "🇮🇷"
},
{
"name": "Iraq",
"code": "IQ",
"timezone": "Arabic Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+964",
"flag": "🇮🇶"
},
{
"name": "Ireland",
"code": "IE",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+353",
"flag": "🇮🇪"
},
{
"name": "Israel",
"code": "IL",
"timezone": "Israel Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+972",
"flag": "🇮🇱"
},
{
"name": "Italy",
"code": "IT",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+39",
"flag": "🇮🇹"
},
{
"name": "Jamaica",
"code": "JM",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+1-876",
"flag": "🇯🇲"
},
{
"name": "Jan Mayen",
"code": "SJ",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+47",
"flag": "🇸🇯"
},
{
"name": "Japan",
"code": "JP",
"timezone": "Tokyo Standard Time",
"utc": "UTC+09:00",
"mobileCode": "+81",
"flag": "🇯🇵"
},
{
"name": "Jersey",
"code": "JE",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+44-1534",
"flag": "🇯🇪"
},
{
"name": "Jordan",
"code": "JO",
"timezone": "Jordan Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+962",
"flag": "🇯🇴"
},
{
"name": "Kazakhstan",
"code": "KZ",
"timezone": "Central Asia Standard Time",
"utc": "UTC+06:00",
"mobileCode": "+7",
"flag": "🇰🇿"
},
{
"name": "Kenya",
"code": "KE",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+254",
"flag": "🇰🇪"
},
{
"name": "Kiribati",
"code": "KI",
"timezone": "UTC+12",
"utc": "UTC+12:00",
"mobileCode": "+686",
"flag": "🇰🇮"
},
{
"name": "Korea",
"code": "KR",
"timezone": "Korea Standard Time",
"utc": "UTC+09:00",
"mobileCode": "+82",
"flag": "🇰🇷"
},
{
"name": "Kosovo",
"code": "XK",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+",
"flag": "🇽🇰"
},
{
"name": "Kuwait",
"code": "KW",
"timezone": "Arab Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+965",
"flag": "🇰🇼"
},
{
"name": "Kyrgyzstan",
"code": "KG",
"timezone": "Central Asia Standard Time",
"utc": "UTC+06:00",
"mobileCode": "+996",
"flag": "🇰🇬"
},
{
"name": "Laos",
"code": "LA",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+856",
"flag": "🇱🇦"
},
{
"name": "Latvia",
"code": "LV",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+371",
"flag": "🇱🇻"
},
{
"name": "Lebanon",
"code": "LB",
"timezone": "Middle East Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+961",
"flag": "🇱🇧"
},
{
"name": "Lesotho",
"code": "LS",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+266",
"flag": "🇱🇸"
},
{
"name": "Liberia",
"code": "LR",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+231",
"flag": "🇱🇷"
},
{
"name": "Libya",
"code": "LY",
"timezone": "E. Europe Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+218",
"flag": "🇱🇾"
},
{
"name": "Liechtenstein",
"code": "LI",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+423",
"flag": "🇱🇮"
},
{
"name": "Lithuania",
"code": "LT",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+370",
"flag": "🇱🇹"
},
{
"name": "Luxembourg",
"code": "LU",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+352",
"flag": "🇱🇺"
},
{
"name": "Macao SAR",
"code": "MO",
"timezone": "China Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+853",
"flag": "🇲🇴"
},
{
"name": "Macedonia, Former Yugoslav Republic of",
"code": "MK",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+389",
"flag": "🇲🇰"
},
{
"name": "Madagascar",
"code": "MG",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+261",
"flag": "🇲🇬"
},
{
"name": "Malawi",
"code": "MW",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+265",
"flag": "🇲🇼"
},
{
"name": "Malaysia",
"code": "MY",
"timezone": "Singapore Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+60",
"flag": "🇲🇾"
},
{
"name": "Maldives",
"code": "MV",
"timezone": "West Asia Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+960",
"flag": "🇲🇻"
},
{
"name": "Mali",
"code": "ML",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+223",
"flag": "🇲🇱"
},
{
"name": "Malta",
"code": "MT",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+356",
"flag": "🇲🇹"
},
{
"name": "Man, Isle of",
"code": "IM",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+44-1624",
"flag": "🇮🇲"
},
{
"name": "Marshall Islands",
"code": "MH",
"timezone": "UTC+12",
"utc": "UTC+12:00",
"mobileCode": "+692",
"flag": "🇲🇭"
},
{
"name": "Martinique",
"code": "MQ",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+596",
"flag": "🇲🇶"
},
{
"name": "Mauritania",
"code": "MR",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+222",
"flag": "🇲🇷"
},
{
"name": "Mauritius",
"code": "MU",
"timezone": "Mauritius Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+230",
"flag": "🇲🇺"
},
{
"name": "Mayotte",
"code": "YT",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+262",
"flag": "🇾🇹"
},
{
"name": "Mexico",
"code": "MX",
"timezone": "Central Standard Time (Mexico)",
"utc": "UTC-06:00",
"mobileCode": "+52",
"flag": "🇲🇽"
},
{
"name": "Micronesia",
"code": "FM",
"timezone": "West Pacific Standard Time",
"utc": "UTC+10:00",
"mobileCode": "+691",
"flag": "🇫🇲"
},
{
"name": "Moldova",
"code": "MD",
"timezone": "GTB Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+373",
"flag": "🇲🇩"
},
{
"name": "Monaco",
"code": "MC",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+377",
"flag": "🇲🇨"
},
{
"name": "Mongolia",
"code": "MN",
"timezone": "Ulaanbaatar Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+976",
"flag": "🇲🇳"
},
{
"name": "Montenegro",
"code": "ME",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+382",
"flag": "🇲🇪"
},
{
"name": "Montserrat",
"code": "MS",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-664",
"flag": "🇲🇸"
},
{
"name": "Morocco",
"code": "MA",
"timezone": "Morocco Standard Time",
"utc": "UTC",
"mobileCode": "+212",
"flag": "🇲🇦"
},
{
"name": "Mozambique",
"code": "MZ",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+258",
"flag": "🇲🇿"
},
{
"name": "Myanmar",
"code": "MM",
"timezone": "Myanmar Standard Time",
"utc": "UTC+06:30",
"mobileCode": "+95",
"flag": "🇲🇲"
},
{
"name": "Namibia",
"code": "NA",
"timezone": "Namibia Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+264",
"flag": "🇳🇦"
},
{
"name": "Nauru",
"code": "NR",
"timezone": "UTC+12",
"utc": "UTC+12:00",
"mobileCode": "+674",
"flag": "🇳🇷"
},
{
"name": "Nepal",
"code": "NP",
"timezone": "Nepal Standard Time",
"utc": "UTC+05:45",
"mobileCode": "+977",
"flag": "🇳🇵"
},
{
"name": "Netherlands",
"code": "NL",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+31",
"flag": "🇳🇱"
},
{
"name": "New Caledonia",
"code": "NC",
"timezone": "Central Pacific Standard Time",
"utc": "UTC+11:00",
"mobileCode": "+687",
"flag": "🇳🇨"
},
{
"name": "New Zealand",
"code": "NZ",
"timezone": "New Zealand Standard Time",
"utc": "UTC+12:00",
"mobileCode": "+64",
"flag": "🇳🇿"
},
{
"name": "Nicaragua",
"code": "NI",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+505",
"flag": "🇳🇮"
},
{
"name": "Niger",
"code": "NE",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+227",
"flag": "🇳🇪"
},
{
"name": "Nigeria",
"code": "NG",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+234",
"flag": "🇳🇬"
},
{
"name": "Niue",
"code": "NU",
"timezone": "UTC-11",
"utc": "UTC-11:00",
"mobileCode": "+683",
"flag": "🇳🇺"
},
{
"name": "Norfolk Island",
"code": "NF",
"timezone": "Central Pacific Standard Time",
"utc": "UTC+11:00",
"mobileCode": "+672",
"flag": "🇳🇫"
},
{
"name": "North Korea",
"code": "KP",
"timezone": "Korea Standard Time",
"utc": "UTC+09:00",
"mobileCode": "+850",
"flag": "🇰🇵"
},
{
"name": "Northern Mariana Islands",
"code": "MP",
"timezone": "West Pacific Standard Time",
"utc": "UTC+10:00",
"mobileCode": "+1-670",
"flag": "🇲🇵"
},
{
"name": "Norway",
"code": "NO",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+47",
"flag": "🇳🇴"
},
{
"name": "Oman",
"code": "OM",
"timezone": "Arabian Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+968",
"flag": "🇴🇲"
},
{
"name": "Pakistan",
"code": "PK",
"timezone": "Pakistan Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+92",
"flag": "🇵🇰"
},
{
"name": "Palau",
"code": "PW",
"timezone": "Tokyo Standard Time",
"utc": "UTC+09:00",
"mobileCode": "+680",
"flag": "🇵🇼"
},
{
"name": "Palestinian Authority",
"code": "PS",
"timezone": "Egypt Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+970",
"flag": "🇵🇸"
},
{
"name": "Panama",
"code": "PA",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+507",
"flag": "🇵🇦"
},
{
"name": "Papua New Guinea",
"code": "PG",
"timezone": "West Pacific Standard Time",
"utc": "UTC+10:00",
"mobileCode": "+675",
"flag": "🇵🇬"
},
{
"name": "Paraguay",
"code": "PY",
"timezone": "Paraguay Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+595",
"flag": "🇵🇾"
},
{
"name": "Peru",
"code": "PE",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+51",
"flag": "🇵🇪"
},
{
"name": "Philippines",
"code": "PH",
"timezone": "Singapore Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+63",
"flag": "🇵🇭"
},
{
"name": "Pitcairn Islands",
"code": "PN",
"timezone": "Pacific Standard Time",
"utc": "UTC-08:00",
"mobileCode": "+870",
"flag": "🇵🇳"
},
{
"name": "Poland",
"code": "PL",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+48",
"flag": "🇵🇱"
},
{
"name": "Portugal",
"code": "PT",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+351",
"flag": "🇵🇹"
},
{
"name": "Puerto Rico",
"code": "PR",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-787 and 1-939",
"flag": "🇵🇷"
},
{
"name": "Qatar",
"code": "QA",
"timezone": "Arab Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+974",
"flag": "🇶🇦"
},
{
"name": "Reunion",
"code": "RE",
"timezone": "Mauritius Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+262",
"flag": "🇷🇪"
},
{
"name": "Romania",
"code": "RO",
"timezone": "GTB Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+40",
"flag": "🇷🇴"
},
{
"name": "Russia",
"code": "RU",
"timezone": "Russian Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+7",
"flag": "🇷🇺"
},
{
"name": "Rwanda",
"code": "RW",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+250",
"flag": "🇷🇼"
},
{
"name": "Saint Barthélemy",
"code": "BL",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+590",
"flag": "🇧🇱"
},
{
"name": "Saint Helena, Ascension and Tristan da Cunha",
"code": "SH",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+290",
"flag": "🇸🇭"
},
{
"name": "Saint Kitts and Nevis",
"code": "KN",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-869",
"flag": "🇰🇳"
},
{
"name": "Saint Lucia",
"code": "LC",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-758",
"flag": "🇱🇨"
},
{
"name": "Saint Martin (French part)",
"code": "MF",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+590",
"flag": "🇲🇫"
},
{
"name": "Saint Pierre and Miquelon",
"code": "PM",
"timezone": "Greenland Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+508",
"flag": "🇵🇲"
},
{
"name": "Saint Vincent and the Grenadines",
"code": "VC",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-784",
"flag": "🇻🇨"
},
{
"name": "Samoa",
"code": "WS",
"timezone": "Samoa Standard Time",
"utc": "UTC+13:00",
"mobileCode": "+685",
"flag": "🇼🇸"
},
{
"name": "San Marino",
"code": "SM",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+378",
"flag": "🇸🇲"
},
{
"name": "São Tomé and Príncipe",
"code": "ST",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+239",
"flag": "🇸🇹"
},
{
"name": "Saudi Arabia",
"code": "SA",
"timezone": "Arab Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+966",
"flag": "🇸🇦"
},
{
"name": "Senegal",
"code": "SN",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+221",
"flag": "🇸🇳"
},
{
"name": "Serbia",
"code": "RS",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+381",
"flag": "🇷🇸"
},
{
"name": "Seychelles",
"code": "SC",
"timezone": "Mauritius Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+248",
"flag": "🇸🇨"
},
{
"name": "Sierra Leone",
"code": "SL",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+232",
"flag": "🇸🇱"
},
{
"name": "Singapore",
"code": "SG",
"timezone": "Singapore Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+65",
"flag": "🇸🇬"
},
{
"name": "Sint Maarten (Dutch part)",
"code": "SX",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+599",
"flag": "🇸🇽"
},
{
"name": "Slovakia",
"code": "SK",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+421",
"flag": "🇸🇰"
},
{
"name": "Slovenia",
"code": "SI",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+386",
"flag": "🇸🇮"
},
{
"name": "Solomon Islands",
"code": "SB",
"timezone": "Central Pacific Standard Time",
"utc": "UTC+11:00",
"mobileCode": "+677",
"flag": "🇸🇧"
},
{
"name": "Somalia",
"code": "SO",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+252",
"flag": "🇸🇴"
},
{
"name": "South Africa",
"code": "ZA",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+27",
"flag": "🇿🇦"
},
{
"name": "South Georgia and the South Sandwich Islands",
"code": "GS",
"timezone": "UTC-02",
"utc": "UTC-02:00",
"mobileCode": "+",
"flag": "🇬🇸"
},
{
"name": "South Sudan",
"code": "SS",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+211",
"flag": "🇸🇸"
},
{
"name": "Spain",
"code": "ES",
"timezone": "Romance Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+34",
"flag": "🇪🇸"
},
{
"name": "Sri Lanka",
"code": "LK",
"timezone": "Sri Lanka Standard Time",
"utc": "UTC+05:30",
"mobileCode": "+94",
"flag": "🇱🇰"
},
{
"name": "Sudan",
"code": "SD",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+249",
"flag": "🇸🇩"
},
{
"name": "Suriname",
"code": "SR",
"timezone": "SA Eastern Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+597",
"flag": "🇸🇷"
},
{
"name": "Svalbard",
"code": "SJ",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+47",
"flag": "🇸🇯"
},
{
"name": "Swaziland",
"code": "SZ",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+268",
"flag": "🇸🇿"
},
{
"name": "Sweden",
"code": "SE",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+46",
"flag": "🇸🇪"
},
{
"name": "Switzerland",
"code": "CH",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+41",
"flag": "🇨🇭"
},
{
"name": "Syria",
"code": "SY",
"timezone": "Syria Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+963",
"flag": "🇸🇾"
},
{
"name": "Taiwan",
"code": "TW",
"timezone": "Taipei Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+886",
"flag": "🇹🇼"
},
{
"name": "Tajikistan",
"code": "TJ",
"timezone": "West Asia Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+992",
"flag": "🇹🇯"
},
{
"name": "Tanzania",
"code": "TZ",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+255",
"flag": "🇹🇿"
},
{
"name": "Thailand",
"code": "TH",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+66",
"flag": "🇹🇭"
},
{
"name": "Togo",
"code": "TG",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+228",
"flag": "🇹🇬"
},
{
"name": "Tokelau",
"code": "TK",
"timezone": "Tonga Standard Time",
"utc": "UTC+13:00",
"mobileCode": "+690",
"flag": "🇹🇰"
},
{
"name": "Tonga",
"code": "TO",
"timezone": "Tonga Standard Time",
"utc": "UTC+13:00",
"mobileCode": "+676",
"flag": "🇹🇴"
},
{
"name": "Trinidad and Tobago",
"code": "TT",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-868",
"flag": "🇹🇹"
},
{
"name": "Tunisia",
"code": "TN",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+216",
"flag": "🇹🇳"
},
{
"name": "Turkey",
"code": "TR",
"timezone": "Turkey Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+90",
"flag": "🇹🇷"
},
{
"name": "Turkmenistan",
"code": "TM",
"timezone": "West Asia Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+993",
"flag": "🇹🇲"
},
{
"name": "Turks and Caicos Islands",
"code": "TC",
"timezone": "Eastern Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+1-649",
"flag": "🇹🇨"
},
{
"name": "Tuvalu",
"code": "TV",
"timezone": "UTC+12",
"utc": "UTC+12:00",
"mobileCode": "+688",
"flag": "🇹🇻"
},
{
"name": "U.S. Minor Outlying Islands",
"code": "UM",
"timezone": "UTC-11",
"utc": "UTC-11:00",
"mobileCode": "+1",
"flag": "🇺🇲"
},
{
"name": "Uganda",
"code": "UG",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+256",
"flag": "🇺🇬"
},
{
"name": "Ukraine",
"code": "UA",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+380",
"flag": "🇺🇦"
},
{
"name": "United Arab Emirates",
"code": "AE",
"timezone": "Arabian Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+971",
"flag": "🇦🇪"
},
{
"name": "United Kingdom",
"code": "GB",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+44",
"flag": "🇬🇧"
},
{
"name": "United States",
"code": "US",
"timezone": "Pacific Standard Time",
"utc": "UTC-08:00",
"mobileCode": "+1",
"flag": "🇺🇸"
},
{
"name": "Uruguay",
"code": "UY",
"timezone": "Montevideo Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+598",
"flag": "🇺🇾"
},
{
"name": "Uzbekistan",
"code": "UZ",
"timezone": "West Asia Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+998",
"flag": "🇺🇿"
},
{
"name": "Vanuatu",
"code": "VU",
"timezone": "Central Pacific Standard Time",
"utc": "UTC+11:00",
"mobileCode": "+678",
"flag": "🇻🇺"
},
{
"name": "Vatican City",
"code": "VA",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+379",
"flag": "🇻🇦"
},
{
"name": "Vietnam",
"code": "VN",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+84",
"flag": "🇻🇳"
},
{
"name": "Virgin Islands, U.S.",
"code": "VI",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-340",
"flag": "🇻🇮"
},
{
"name": "Virgin Islands, British",
"code": "VG",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-284",
"flag": "🇻🇬"
},
{
"name": "Wallis and Futuna",
"code": "WF",
"timezone": "UTC+12",
"utc": "UTC+12:00",
"mobileCode": "+681",
"flag": "🇼🇫"
},
{
"name": "Yemen",
"code": "YE",
"timezone": "Arab Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+967",
"flag": "🇾🇪"
},
{
"name": "Zambia",
"code": "ZM",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+260",
"flag": "🇿🇲"
},
{
"name": "Zimbabwe",
"code": "ZW",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+263",
"flag": "🇿🇼"
}
]

@waliulhasaniram
Copy link

export const COUNTRIES = [
{
name: 'Afghanistan',
code: 'AF',
timezone: 'Afghanistan Standard Time',
utc: 'UTC+04:30',
mobileCode: '+93',
pattern: /^(+93)?[2-9]\d{8}$/,
example: '+93701234567'
},
{
name: 'Åland Islands',
code: 'AX',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+358-18',
pattern: /^(+358-18)?\d{5,8}$/,
example: '+358-18123456'
},
{
name: 'Albania',
code: 'AL',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+355',
pattern: /^(+355)?[67]\d{7}$/,
example: '+355671234567'
},
{
name: 'Algeria',
code: 'DZ',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+213',
pattern: /^(+213)?[5-9]\d{8}$/,
example: '+213551234567'
},
{
name: 'American Samoa',
code: 'AS',
timezone: 'UTC-11',
utc: 'UTC-11:00',
mobileCode: '+1-684',
pattern: /^(+1-684)?[2-9]\d{6}$/,
example: '+1-6847331234'
},
{
name: 'Andorra',
code: 'AD',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+376',
pattern: /^(+376)?[3-9]\d{5}$/,
example: '+376312345'
},
{
name: 'Angola',
code: 'AO',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+244',
pattern: /^(+244)?[2-9]\d{8}$/,
example: '+244923123456'
},
{
name: 'Anguilla',
code: 'AI',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-264',
pattern: /^(+1-264)?[2-9]\d{6}$/,
example: '+1-2645234567'
},
{
name: 'Antarctica',
code: 'AQ',
timezone: 'Pacific SA Standard Time',
utc: 'UTC-03:00',
mobileCode: '+',
pattern: /^+?\d{6,15}$/, // Generic pattern as no specific mobile code
example: '+1234567890'
},
{
name: 'Antigua and Barbuda',
code: 'AG',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-268',
pattern: /^(+1-268)?[2-9]\d{6}$/,
example: '+1-2687234567'
},
{
name: 'Argentina',
code: 'AR',
timezone: 'Argentina Standard Time',
utc: 'UTC-03:00',
mobileCode: '+54',
pattern: /^(+54)?[1-9]\d{9}$/,
example: '+549113456789'
},
{
name: 'Armenia',
code: 'AM',
timezone: 'Caucasus Standard Time',
utc: 'UTC+04:00',
mobileCode: '+374',
pattern: /^(+374)?[1-9]\d{7}$/,
example: '+37410123456'
},
{
name: 'Aruba',
code: 'AW',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+297',
pattern: /^(+297)?[5-9]\d{6}$/,
example: '+2975123456'
},
{
name: 'Australia',
code: 'AU',
timezone: 'AUS Eastern Standard Time',
utc: 'UTC+10:00',
mobileCode: '+61',
pattern: /^(+61)?[1-9]\d{8}$/,
example: '+61412345678'
},
{
name: 'Austria',
code: 'AT',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+43',
pattern: /^(+43)?[1-9]\d{3,12}$/,
example: '+436641234567'
},
{
name: 'Azerbaijan',
code: 'AZ',
timezone: 'Azerbaijan Standard Time',
utc: 'UTC+04:00',
mobileCode: '+994',
pattern: /^(+994)?[1-9]\d{8}$/,
example: '+994501234567'
},
{
name: 'Bahamas, The',
code: 'BS',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1-242',
pattern: /^(+1-242)?[2-9]\d{6}$/,
example: '+1-2426011234'
},
{
name: 'Bahrain',
code: 'BH',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+973',
pattern: /^(+973)?[1-9]\d{6,7}$/,
example: '+97336123456'
},
{
name: 'Bangladesh',
code: 'BD',
timezone: 'Bangladesh Standard Time',
utc: 'UTC+06:00',
mobileCode: '+880',
pattern: /^(+880)?[1-9]\d{9}$/,
example: '+8801812345678'
},
{
name: 'Barbados',
code: 'BB',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-246',
pattern: /^(+1-246)?[2-9]\d{6}$/,
example: '+1-2462501234'
},
{
name: 'Belarus',
code: 'BY',
timezone: 'Belarus Standard Time',
utc: 'UTC+03:00',
mobileCode: '+375',
pattern: /^(+375)?[1-9]\d{8}$/,
example: '+375291234567'
},
{
name: 'Belgium',
code: 'BE',
timezone: 'Romance Standard Time',
utc: 'UTC+01:00',
mobileCode: '+32',
pattern: /^(+32)?[1-9]\d{7,8}$/,
example: '+32470123456'
},
{
name: 'Belize',
code: 'BZ',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+501',
pattern: /^(+501)?[2-9]\d{6}$/,
example: '+5016123456'
},
{
name: 'Benin',
code: 'BJ',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+229',
pattern: /^(+229)?[1-9]\d{7}$/,
example: '+22961234567'
},
{
name: 'Azerbaijan',
code: 'AZ',
timezone: 'Azerbaijan Standard Time',
utc: 'UTC+04:00',
mobileCode: '+994',
pattern: /^(+994)?[1-9]\d{8}$/,
example: '+994501234567'
},
{
name: 'Bahamas, The',
code: 'BS',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1-242',
pattern: /^(+1-242)?[2-9]\d{6}$/,
example: '+1-2426011234'
},
{
name: 'Bahrain',
code: 'BH',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+973',
pattern: /^(+973)?[1-9]\d{6,7}$/,
example: '+97336123456'
},
{
name: 'Bangladesh',
code: 'BD',
timezone: 'Bangladesh Standard Time',
utc: 'UTC+06:00',
mobileCode: '+880',
pattern: /^(+880)?[1-9]\d{9}$/,
example: '+8801812345678'
},
{
name: 'Barbados',
code: 'BB',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-246',
pattern: /^(+1-246)?[2-9]\d{6}$/,
example: '+1-2462501234'
},
{
name: 'Belarus',
code: 'BY',
timezone: 'Belarus Standard Time',
utc: 'UTC+03:00',
mobileCode: '+375',
pattern: /^(+375)?[1-9]\d{8}$/,
example: '+375291234567'
},
{
name: 'Belgium',
code: 'BE',
timezone: 'Romance Standard Time',
utc: 'UTC+01:00',
mobileCode: '+32',
pattern: /^(+32)?[1-9]\d{7,8}$/,
example: '+32470123456'
},
{
name: 'Belize',
code: 'BZ',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+501',
pattern: /^(+501)?[2-9]\d{6}$/,
example: '+5016123456'
},
{
name: 'Benin',
code: 'BJ',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+229',
pattern: /^(+229)?[1-9]\d{7}$/,
example: '+22961234567'
},
{
name: 'Bermuda',
code: 'BM',
timezone: 'Atlantic Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-441',
pattern: /^(+1-441)?[2-9]\d{6}$/,
example: '+1-4413701234'
},
{
name: 'Bhutan',
code: 'BT',
timezone: 'Bangladesh Standard Time',
utc: 'UTC+06:00',
mobileCode: '+975',
pattern: /^(+975)?[17-9]\d{6,7}$/, // Bhutan numbers are 7-8 digits, starting with 1,7,8,9
example: '+97517123456'
},
{
name: 'Bolivarian Republic of Venezuela',
code: 'VE',
timezone: 'Venezuela Standard Time',
utc: 'UTC-04:30',
mobileCode: '+58',
pattern: /^(+58)?[24-9]\d{9}$/, // Venezuela numbers are 10 digits, can't start with 0,1,3
example: '+584121234567'
},
{
name: 'Bolivia',
code: 'BO',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+591',
pattern: /^(+591)?[67]\d{7}$/, // Bolivia mobile numbers are 8 digits, starting with 6 or 7
example: '+59171234567'
},
{
name: 'Bonaire, Sint Eustatius and Saba',
code: 'BQ',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+599',
pattern: /^(+599)?[1-9]\d{5,6}$/, // BES islands use 6-7 digit numbers
example: '+5999511234'
},
{
name: 'Bosnia and Herzegovina',
code: 'BA',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+387',
pattern: /^(+387)?6[1-9]\d{6}$/, // BiH mobile numbers start with 6, followed by 7 digits
example: '+38761123456'
},
{
name: 'Botswana',
code: 'BW',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+267',
pattern: /^(+267)?[71-9]\d{6}$/, // Botswana numbers are 7 digits, mobile starts with 7
example: '+26771234567'
},
{
name: 'Bouvet Island',
code: 'BV',
timezone: 'UTC',
utc: 'UTC',
mobileCode: '+',
pattern: null, // No telephone infrastructure
example: null
},
{
name: 'Brazil',
code: 'BR',
timezone: 'E. South America Standard Time',
utc: 'UTC-03:00',
mobileCode: '+55',
pattern: /^(+55)?[1-9]{2}9?[6-9]\d{7}$/, // Brazil numbers: 2-digit area + 8-9 digits (mobile has 9 after area)
example: '+5521981234567'
},
{
name: 'British Indian Ocean Territory',
code: 'IO',
timezone: 'Central Asia Standard Time',
utc: 'UTC+06:00',
mobileCode: '+246',
pattern: /^(+246)?[1-9]\d{5}$/, // BIOT uses 6-digit numbers
example: '+246123456'
},
{
name: 'Brunei',
code: 'BN',
timezone: 'Singapore Standard Time',
utc: 'UTC+08:00',
mobileCode: '+673',
pattern: /^(+673)?[1-9]\d{6}$/, // Brunei numbers are 7 digits
example: '+6738123456'
},
{
name: 'Bulgaria',
code: 'BG',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+359',
pattern: /^(+359)?(87|88|89|98)[0-9]{7}$/, // Mobile numbers start with 87,88,89,98
example: '+359891234567'
},
{
name: 'Burkina Faso',
code: 'BF',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+226',
pattern: /^(+226)?[67][0-9]{7}$/, // Numbers are 8 digits starting with 6 or 7
example: '+22670123456'
},
{
name: 'Burundi',
code: 'BI',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+257',
pattern: /^(+257)?[79][0-9]{7}$/, // Numbers are 8 digits starting with 7 or 9
example: '+25779234567'
},
{
name: 'Cabo Verde',
code: 'CV',
timezone: 'Cape Verde Standard Time',
utc: 'UTC-01:00',
mobileCode: '+238',
pattern: /^(+238)?(9|5\d)[0-9]{6}$/, // Numbers are 7 digits, mobile starts with 9 or 5
example: '+2389912345'
},
{
name: 'Cambodia',
code: 'KH',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+855',
pattern: /^(+855)?(1[0-9]|6[1-9]|7[6-9]|8[1-9]|9[1-9])[0-9]{6,7}$/, // Complex pattern for various operators
example: '+85512123456'
},
{
name: 'Cameroon',
code: 'CM',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+237',
pattern: /^(+237)?[23678][0-9]{7,8}$/, // Numbers are 8-9 digits starting with 2,3,6,7,8
example: '+237671234567'
},
{
name: 'Canada',
code: 'CA',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1',
pattern: /^(+1)?[2-9][0-9]{9}$/, // North American numbering plan (10 digits)
example: '+16135551234'
},
{
name: 'Cayman Islands',
code: 'KY',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1-345',
pattern: /^(+1-345)?[2-9][0-9]{6}$/, // 7-digit numbers following NANP
example: '+1-3453231234'
},
{
name: 'Central African Republic',
code: 'CF',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+236',
pattern: /^(+236)?[7][0-9]{7}$/, // Numbers are 8 digits starting with 7
example: '+23670123456'
},
{
name: 'Chad',
code: 'TD',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+235',
pattern: /^(+235)?[67][0-9]{7}$/, // Numbers are 8 digits starting with 6 or 7
example: '+23563123456'
},
{
name: 'Chile',
code: 'CL',
timezone: 'Pacific SA Standard Time',
utc: 'UTC-03:00',
mobileCode: '+56',
pattern: /^(+56)?[2-9]\d{8}$/, // 9 digits after country code (excluding leading 0)
example: '+56951234567'
},
{
name: 'China',
code: 'CN',
timezone: 'China Standard Time',
utc: 'UTC+08:00',
mobileCode: '+86',
pattern: /^(+86)?1[3-9]\d{9}$/, // Mobile numbers: 11 digits starting with 13-19
example: '+8613812345678'
},
{
name: 'Christmas Island',
code: 'CX',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+61',
pattern: /^(+61)?4\d{8}$/, // Australian format (Christmas Island uses AU numbers)
example: '+61400123456'
},
{
name: 'Cocos (Keeling) Islands',
code: 'CC',
timezone: 'Myanmar Standard Time',
utc: 'UTC+06:30',
mobileCode: '+61',
pattern: /^(+61)?4\d{8}$/, // Also uses Australian numbering
example: '+61489123456'
},
{
name: 'Colombia',
code: 'CO',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+57',
pattern: /^(+57)?3\d{9}$/, // 10 digits starting with 3 (mobile numbers)
example: '+573012345678'
},
{
name: 'Comoros',
code: 'KM',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+269',
pattern: /^(+269)?[3]\d{6}$/, // 7 digits starting with 3
example: '+2693212345'
},
{
name: 'Congo',
code: 'CG',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+242',
pattern: /^(+242)?[0-9]\d{8}$/, // 9 digits total
example: '+242061234567'
},
{
name: 'Congo (DRC)',
code: 'CD',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+243',
pattern: /^(+243)?[8-9]\d{8}$/, // 9 digits starting with 8 or 9 (mobile)
example: '+243812345678'
},
{
name: 'Cook Islands',
code: 'CK',
timezone: 'Hawaiian Standard Time',
utc: 'UTC-10:00',
mobileCode: '+682',
pattern: /^(+682)?[2-7]\d{4}$/, // 5-digit numbers (range 20000-79999)
example: '+68271234'
},
{
name: 'Costa Rica',
code: 'CR',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+506',
pattern: /^(+506)?[6-8]\d{7}$/, // 8 digits starting with 6,7, or 8
example: '+50661234567'
},
{
name: "Côte d'Ivoire",
code: 'CI',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+225',
pattern: /^(+225)?[0-9]{8}$/, // 8-digit numbers
example: '+22501234567'
},
{
name: 'Croatia',
code: 'HR',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+385',
pattern: /^(+385)?9[0-9]{8}$/, // Mobile numbers start with 9 (9 digits total)
example: '+385912345678'
},
{
name: 'Cuba',
code: 'CU',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+53',
pattern: /^(+53)?5[0-9]{7}$/, // Mobile numbers start with 5 (8 digits total)
example: '+5351234567'
},
{
name: 'Curaçao',
code: 'CW',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+599',
pattern: /^(+599)?9[0-9]{6}$/, // 7-digit numbers starting with 9
example: '+5999512345'
},
{
name: 'Cyprus',
code: 'CY',
timezone: 'E. Europe Standard Time',
utc: 'UTC+02:00',
mobileCode: '+357',
pattern: /^(+357)?9[0-9]{7}$/, // 8-digit mobile numbers starting with 9
example: '+35796123456'
},
{
name: 'Czech Republic',
code: 'CZ',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+420',
pattern: /^(+420)?[1-9][0-9]{8}$/, // 9-digit numbers (no leading zero)
example: '+420601123456'
},
{
name: 'Democratic Republic of Timor-Leste',
code: 'TL',
timezone: 'Tokyo Standard Time',
utc: 'UTC+09:00',
mobileCode: '+670',
pattern: /^(+670)?7[0-9]{7}$/, // 8-digit mobile numbers starting with 7
example: '+67077234567'
},
{
name: 'Denmark',
code: 'DK',
timezone: 'Romance Standard Time',
utc: 'UTC+01:00',
mobileCode: '+45',
pattern: /^(+45)?[0-9]{8}$/, // 8-digit numbers
example: '+4512345678'
},
{
name: 'Djibouti',
code: 'DJ',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+253',
pattern: /^(+253)?[0-9]{6}$/, // 6-digit numbers
example: '+253123456'
},
{
name: 'Dominica',
code: 'DM',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-767',
pattern: /^(+1-767)?[2-9][0-9]{6}$/, // 7-digit numbers (NANP format)
example: '+1-7672251234'
},
{
name: 'Dominican Republic',
code: 'DO',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-809 and 1-829',
pattern: /^(+1)?(809|829)[2-9][0-9]{6}$/, // 10-digit numbers with area codes 809/829
example: '+18091234567'
},
{
name: 'Ecuador',
code: 'EC',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+593',
pattern: /^(+593)?9\d{8}$/, // Mobile numbers: 9 digits starting with 9
example: '+593991234567'
},
{
name: 'Egypt',
code: 'EG',
timezone: 'Egypt Standard Time',
utc: 'UTC+02:00',
mobileCode: '+20',
pattern: /^(+20)?1[0-9]{9}$/, // Mobile numbers: 10 digits starting with 1
example: '+201012345678'
},
{
name: 'El Salvador',
code: 'SV',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+503',
pattern: /^(+503)?[67]\d{7}$/, // 8-digit numbers starting with 6 or 7
example: '+50371234567'
},
{
name: 'Equatorial Guinea',
code: 'GQ',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+240',
pattern: /^(+240)?[235]\d{6}$/, // 7-digit numbers starting with 2,3, or 5
example: '+2403123456'
},
{
name: 'Eritrea',
code: 'ER',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+291',
pattern: /^(+291)?[178]\d{6}$/, // 7-digit numbers starting with 1,7, or 8
example: '+2917123456'
},
{
name: 'Estonia',
code: 'EE',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+372',
pattern: /^(+372)?[5-9]\d{7}$/, // 8-digit numbers starting with 5-9
example: '+37251234567'
},
{
name: 'Ethiopia',
code: 'ET',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+251',
pattern: /^(+251)?9\d{8}$/, // 9-digit mobile numbers starting with 9
example: '+251911234567'
},
{
name: 'Falkland Islands (Islas Malvinas)',
code: 'FK',
timezone: 'SA Eastern Standard Time',
utc: 'UTC-03:00',
mobileCode: '+500',
pattern: /^(+500)?[2-9]\d{4}$/, // 5-digit numbers (2xxxx-9xxxx)
example: '+50051234'
},
{
name: 'Faroe Islands',
code: 'FO',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+298',
pattern: /^(+298)?\d{5}$/, // 5-digit numbers
example: '+29812345'
},
{
name: 'Fiji Islands',
code: 'FJ',
timezone: 'Fiji Standard Time',
utc: 'UTC+12:00',
mobileCode: '+679',
pattern: /^(+679)?\d{7}$/, // 7-digit numbers
example: '+6791234567'
},
{
name: 'Finland',
code: 'FI',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+358',
pattern: /^(+358)?4\d{8,9}$/, // Mobile numbers: 9-10 digits starting with 4
example: '+358412345678'
},
{
name: 'France',
code: 'FR',
timezone: 'Romance Standard Time',
utc: 'UTC+01:00',
mobileCode: '+33',
pattern: /^(+33)?[67]\d{8}$/, // Mobile numbers: 9 digits starting with 6 or 7
example: '+33612345678'
},
{
name: 'French Guiana',
code: 'GF',
timezone: 'SA Eastern Standard Time',
utc: 'UTC-03:00',
mobileCode: '+594',
pattern: /^(+594)?694\d{6}$/, // Mobile numbers start with 694 (9 digits total)
example: '+594694123456'
},
{
name: 'French Polynesia',
code: 'PF',
timezone: 'Hawaiian Standard Time',
utc: 'UTC-10:00',
mobileCode: '+689',
pattern: /^(+689)?[2-9]\d{5}$/, // 6-digit numbers (20xxxx-99xxxx)
example: '+689212345'
},
{
name: 'French Southern and Antarctic Lands',
code: 'TF',
timezone: 'West Asia Standard Time',
utc: 'UTC+05:00',
mobileCode: '+',
pattern: null, // No telephone infrastructure
example: null
},
{
name: 'Gabon',
code: 'GA',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+241',
pattern: /^(+241)?0[1-9]\d{6}$/, // 8-digit numbers starting with 0
example: '+2406123456'
},
{
name: 'Gambia, The',
code: 'GM',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+220',
pattern: /^(+220)?[2-9]\d{6}$/, // 7-digit numbers (no 0 or 1 start)
example: '+2203123456'
},
{
name: 'Georgia',
code: 'GE',
timezone: 'Georgian Standard Time',
utc: 'UTC+04:00',
mobileCode: '+995',
pattern: /^(+995)?5\d{8}$/, // Mobile numbers: 9 digits starting with 5
example: '+995591234567'
},
{
name: 'Germany',
code: 'DE',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+49',
pattern: /^(+49)?1[5-9]\d{8,9}$/, // Mobile: 10-11 digits starting with 15-19
example: '+491712345678'
},
{
name: 'Ghana',
code: 'GH',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+233',
pattern: /^(+233)?[235]\d{8}$/, // 9-digit numbers starting with 2,3, or 5
example: '+233201234567'
},
{
name: 'Gibraltar',
code: 'GI',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+350',
pattern: /^(+350)?[256]\d{5}$/, // 6-digit numbers starting with 2,5, or 6
example: '+350512345'
},
{
name: 'Greece',
code: 'GR',
timezone: 'GTB Standard Time',
utc: 'UTC+02:00',
mobileCode: '+30',
pattern: /^(+30)?6\d{9}$/, // Mobile: 10 digits starting with 6
example: '+306912345678'
},
{
name: 'Greenland',
code: 'GL',
timezone: 'Greenland Standard Time',
utc: 'UTC-03:00',
mobileCode: '+299',
pattern: /^(+299)?[2-9]\d{5}$/, // 6-digit numbers (20xxxx-99xxxx)
example: '+299321234'
},
{
name: 'Grenada',
code: 'GD',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-473',
pattern: /^(+1-473)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-4734031234'
},
{
name: 'Guadeloupe',
code: 'GP',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+590',
pattern: /^(+590)?690\d{6}$/, // Mobile numbers start with 690 (9 digits total)
example: '+590690123456'
},
{
name: 'Guam',
code: 'GU',
timezone: 'West Pacific Standard Time',
utc: 'UTC+10:00',
mobileCode: '+1-671',
pattern: /^(+1-671)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-6719876543'
},
{
name: 'Guatemala',
code: 'GT',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+502',
pattern: /^(+502)?[1-9]\d{7}$/, // 8-digit numbers
example: '+50251234567'
},
{
name: 'Guernsey',
code: 'GG',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+44-1481',
pattern: /^(+44-1481)?[2-9]\d{5}$/, // 6-digit numbers after area code
example: '+44-1481778899'
},
{
name: 'Guinea',
code: 'GN',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+224',
pattern: /^(+224)?6\d{7}$/, // Mobile numbers: 8 digits starting with 6
example: '+22461234567'
},
{
name: 'Guinea-Bissau',
code: 'GW',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+245',
pattern: /^(+245)?[1-9]\d{6}$/, // 7-digit numbers
example: '+2455123456'
},
{
name: 'Guyana',
code: 'GY',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+592',
pattern: /^(+592)?6\d{5}$/, // 6-digit numbers starting with 6
example: '+5926123456'
},
{
name: 'Haiti',
code: 'HT',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+509',
pattern: /^(+509)?[2-9]\d{7}$/, // 8-digit numbers
example: '+50934123456'
},
{
name: 'Heard Island and McDonald Islands',
code: 'HM',
timezone: 'Mauritius Standard Time',
utc: 'UTC+04:00',
mobileCode: '+ ',
pattern: null, // No telephone infrastructure
example: null
},
{
name: 'Honduras',
code: 'HN',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+504',
pattern: /^(+504)?[3|7|8|9]\d{7}$/, // 8-digit numbers starting with 3,7,8,9
example: '+50491234567'
},
{
name: 'Hong Kong SAR',
code: 'HK',
timezone: 'China Standard Time',
utc: 'UTC+08:00',
mobileCode: '+852',
pattern: /^(+852)?[1-9]\d{7}$/, // 8-digit numbers
example: '+85251234567'
},
{
name: 'Hungary',
code: 'HU',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+36',
pattern: /^(+36)?[2370]\d{8}$/, // 9-digit numbers starting with 2,3,7 or 0
example: '+36201234567'
},
{
name: 'Iceland',
code: 'IS',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+354',
pattern: /^(+354)?[3-9]\d{6}$/, // 7-digit numbers starting with 3-9
example: '+3546123456'
},
{
name: 'India',
code: 'IN',
timezone: 'India Standard Time',
utc: 'UTC+05:30',
mobileCode: '+91',
pattern: /^(+91)?[6-9]\d{9}$/, // 10-digit mobile numbers starting with 6-9
example: '+919876543210'
},
{
name: 'Indonesia',
code: 'ID',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+62',
pattern: /^(+62)?(8\d{8,11}|2\d{7,10})$/, // 9-12 digits (mobile starts with 8)
example: '+628123456789'
},
{
name: 'Iran',
code: 'IR',
timezone: 'Iran Standard Time',
utc: 'UTC+03:30',
mobileCode: '+98',
pattern: /^(+98)?9\d{9}$/, // 10-digit mobile numbers starting with 9
example: '+989121234567'
},
{
name: 'Iraq',
code: 'IQ',
timezone: 'Arabic Standard Time',
utc: 'UTC+03:00',
mobileCode: '+964',
pattern: /^(+964)?7[0-9]\d{8}$/, // 10-digit mobile numbers starting with 7
example: '+9647123456789'
},
{
name: 'Ireland',
code: 'IE',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+353',
pattern: /^(+353)?8[35679]\d{7}$/, // 9-digit mobile numbers starting with 83,85,86,87,89
example: '+353851234567'
},
{
name: 'Israel',
code: 'IL',
timezone: 'Israel Standard Time',
utc: 'UTC+02:00',
mobileCode: '+972',
pattern: /^(+972)?5\d{8}$/, // 9-digit mobile numbers starting with 5
example: '+972501234567'
},
{
name: 'Italy',
code: 'IT',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+39',
pattern: /^(+39)?3\d{8,9}$/, // 9-10 digit mobile numbers starting with 3
example: '+393331234567'
},
{
name: 'Jamaica',
code: 'JM',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1-876',
pattern: /^(+1-876)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-8765123456'
},
{
name: 'Jan Mayen',
code: 'SJ',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+47',
pattern: /^(+47)?[49]\d{7}$/, // 8-digit numbers starting with 4 or 9 (Norwegian format)
example: '+4791234567'
},
{
name: 'Japan',
code: 'JP',
timezone: 'Tokyo Standard Time',
utc: 'UTC+09:00',
mobileCode: '+81',
pattern: /^(+81)?[789]0\d{8}$/, // 10-digit mobile numbers starting with 070,080,090
example: '+819012345678'
},
{
name: 'Jersey',
code: 'JE',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+44-1534',
pattern: /^(+44-1534)?[2-9]\d{5}$/, // 6-digit numbers after area code
example: '+44-1534778899'
},
{
name: 'Jordan',
code: 'JO',
timezone: 'Jordan Standard Time',
utc: 'UTC+02:00',
mobileCode: '+962',
pattern: /^(+962)?7[789]\d{7}$/, // 9-digit mobile numbers starting with 77,78,79
example: '+962791234567'
},
{
name: 'Kazakhstan',
code: 'KZ',
timezone: 'Central Asia Standard Time',
utc: 'UTC+06:00',
mobileCode: '+7',
pattern: /^(+7)?7\d{9}$/, // 10-digit mobile numbers starting with 7
example: '+77123456789'
},
{
name: 'Kenya',
code: 'KE',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+254',
pattern: /^(+254)?(7|1)\d{8}$/, // 9-digit numbers starting with 1 or 7
example: '+254712345678'
},
{
name: 'Kiribati',
code: 'KI',
timezone: 'UTC+12',
utc: 'UTC+12:00',
mobileCode: '+686',
pattern: /^(+686)?[2-9]\d{4}$/, // 5-digit numbers
example: '+68631234'
},
{
name: 'Korea',
code: 'KR',
timezone: 'Korea Standard Time',
utc: 'UTC+09:00',
mobileCode: '+82',
pattern: /^(+82)?1[0-9]\d{7,8}$/, // 10-11 digit mobile numbers starting with 10-19
example: '+821012345678'
},
{
name: 'Kosovo',
code: 'XK',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+',
pattern: /^(+383)?4[0-9]\d{6}$/, // Uses +383 code, 8-digit mobile numbers starting with 4
example: '+38344123456'
},
{
name: 'Kuwait',
code: 'KW',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+965',
pattern: /^(+965)?[569]\d{7}$/, // 8-digit numbers starting with 5,6, or 9
example: '+96551234567'
},
{
name: 'Kyrgyzstan',
code: 'KG',
timezone: 'Central Asia Standard Time',
utc: 'UTC+06:00',
mobileCode: '+996',
pattern: /^(+996)?(5|7)\d{8}$/, // 9-digit mobile numbers starting with 5 or 7
example: '+996700123456'
},
{
name: 'Laos',
code: 'LA',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+856',
pattern: /^(+856)?20\d{7,8}$/, // 9-10 digit numbers starting with 20
example: '+8562023123456'
},
{
name: 'Latvia',
code: 'LV',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+371',
pattern: /^(+371)?2\d{7}$/, // 8-digit numbers starting with 2
example: '+37121234567'
},
{
name: 'Lebanon',
code: 'LB',
timezone: 'Middle East Standard Time',
utc: 'UTC+02:00',
mobileCode: '+961',
pattern: /^(+961)?(3|7|8|9)\d{6,7}$/, // 7-8 digit mobile numbers starting with 3,7,8, or 9
example: '+9617123456'
},
{
name: 'Lesotho',
code: 'LS',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+266',
pattern: /^(+266)?[5-8]\d{7}$/, // 8-digit numbers starting with 5-8
example: '+26651234567'
},
{
name: 'Liberia',
code: 'LR',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+231',
pattern: /^(+231)?(4|5|6|7)\d{8}$/, // 9-digit numbers starting with 4-7
example: '+231612345678'
},
{
name: 'Libya',
code: 'LY',
timezone: 'E. Europe Standard Time',
utc: 'UTC+02:00',
mobileCode: '+218',
pattern: /^(+218)?(9[1-6]|1[0-9])\d{7}$/, // 9-digit numbers starting with 91-96 or 10-19
example: '+218912345678'
},
{
name: 'Liechtenstein',
code: 'LI',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+423',
pattern: /^(+423)?(6|7|8)\d{7}$/, // 8-digit numbers starting with 6,7, or 8
example: '+4237812345'
},
{
name: 'Lithuania',
code: 'LT',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+370',
pattern: /^(+370)?6\d{7}$/, // 8-digit mobile numbers starting with 6
example: '+37061234567'
},
{
name: 'Luxembourg',
code: 'LU',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+352',
pattern: /^(+352)?(6|2)\d{7}$/, // 8-digit numbers starting with 6 or 2
example: '+35262112345'
},
{
name: 'Macao SAR',
code: 'MO',
timezone: 'China Standard Time',
utc: 'UTC+08:00',
mobileCode: '+853',
pattern: /^(+853)?6\d{7}$/, // 8-digit mobile numbers starting with 6
example: '+85361234567'
},
{
name: 'Macedonia, Former Yugoslav Republic of',
code: 'MK',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+389',
pattern: /^(+389)?7[0-9]\d{6}$/, // 8-digit mobile numbers starting with 7
example: '+38972123456'
},
{
name: 'Madagascar',
code: 'MG',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+261',
pattern: /^(+261)?(3|2)\d{8}$/, // 9-digit numbers starting with 3 or 2
example: '+261321234567'
},
{
name: 'Malawi',
code: 'MW',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+265',
pattern: /^(+265)?(1|7|8|9)\d{7,8}$/, // 8-9 digit numbers starting with 1,7,8, or 9
example: '+26599123456'
},
{
name: 'Malaysia',
code: 'MY',
timezone: 'Singapore Standard Time',
utc: 'UTC+08:00',
mobileCode: '+60',
pattern: /^(+60)?1[0-9]\d{7,8}$/, // 10-11 digit mobile numbers starting with 10-19
example: '+60123456789'
},
{
name: 'Maldives',
code: 'MV',
timezone: 'West Asia Standard Time',
utc: 'UTC+05:00',
mobileCode: '+960',
pattern: /^(+960)?(7|9)\d{6}$/, // 7-digit numbers starting with 7 or 9
example: '+9607712345'
},
{
name: 'Mali',
code: 'ML',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+223',
pattern: /^(+223)?[67]\d{7}$/, // 8-digit numbers starting with 6 or 7
example: '+22361234567'
},
{
name: 'Malta',
code: 'MT',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+356',
pattern: /^(+356)?(7|9)\d{7}$/, // 8-digit mobile numbers starting with 7 or 9
example: '+35679123456'
},
{
name: 'Man, Isle of',
code: 'IM',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+44-1624',
pattern: /^(+44-1624)?[2-9]\d{5}$/, // 6-digit numbers after area code
example: '+44-1624778899'
},
{
name: 'Marshall Islands',
code: 'MH',
timezone: 'UTC+12',
utc: 'UTC+12:00',
mobileCode: '+692',
pattern: /^(+692)?[2-9]\d{6}$/, // 7-digit numbers
example: '+6924567890'
},
{
name: 'Martinique',
code: 'MQ',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+596',
pattern: /^(+596)?696\d{6}$/, // 9-digit mobile numbers starting with 696
example: '+596696123456'
},
{
name: 'Mauritania',
code: 'MR',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+222',
pattern: /^(+222)?[2-9]\d{7}$/, // 8-digit numbers
example: '+22231234567'
},
{
name: 'Mauritius',
code: 'MU',
timezone: 'Mauritius Standard Time',
utc: 'UTC+04:00',
mobileCode: '+230',
pattern: /^(+230)?5\d{7}$/, // 8-digit mobile numbers starting with 5
example: '+23051234567'
},
{
name: 'Mayotte',
code: 'YT',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+262',
pattern: /^(+262)?639\d{6}$/, // 9-digit mobile numbers starting with 639
example: '+262639123456'
},
{
name: 'Mexico',
code: 'MX',
timezone: 'Central Standard Time (Mexico)',
utc: 'UTC-06:00',
mobileCode: '+52',
pattern: /^(+52)?1\d{9}$/, // 10-digit mobile numbers starting with 1
example: '+521551234567'
},
{
name: 'Micronesia',
code: 'FM',
timezone: 'West Pacific Standard Time',
utc: 'UTC+10:00',
mobileCode: '+691',
pattern: /^(+691)?[2-9]\d{6}$/, // 7-digit numbers
example: '+6913201234'
},
{
name: 'Moldova',
code: 'MD',
timezone: 'GTB Standard Time',
utc: 'UTC+02:00',
mobileCode: '+373',
pattern: /^(+373)?6\d{7}$/, // 8-digit mobile numbers starting with 6
example: '+37361234567'
},
{
name: 'Monaco',
code: 'MC',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+377',
pattern: /^(+377)?[46]\d{7}$/, // 8-digit numbers starting with 4 or 6
example: '+37761234567'
},
{
name: 'Mongolia',
code: 'MN',
timezone: 'Ulaanbaatar Standard Time',
utc: 'UTC+08:00',
mobileCode: '+976',
pattern: /^(+976)?[5-9]\d{7}$/, // 8-digit numbers starting with 5-9
example: '+97688123456'
},
{
name: 'Montenegro',
code: 'ME',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+382',
pattern: /^(+382)?6\d{7}$/, // 8-digit mobile numbers starting with 6
example: '+38268123456'
},
{
name: 'Montserrat',
code: 'MS',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-664',
pattern: /^(+1-664)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-6644921234'
},
{
name: 'Morocco',
code: 'MA',
timezone: 'Morocco Standard Time',
utc: 'UTC',
mobileCode: '+212',
pattern: /^(+212)?[5-9]\d{8}$/, // 9-digit numbers starting with 5-9
example: '+212612345678'
},
{
name: 'Mozambique',
code: 'MZ',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+258',
pattern: /^(+258)?8[2-8]\d{7}$/, // 9-digit mobile numbers starting with 82-88
example: '+258821234567'
},
{
name: 'Myanmar',
code: 'MM',
timezone: 'Myanmar Standard Time',
utc: 'UTC+06:30',
mobileCode: '+95',
pattern: /^(+95)?9[0-9]\d{7}$/, // 9-digit mobile numbers starting with 90-99
example: '+959421234567'
},
{
name: 'Namibia',
code: 'NA',
timezone: 'Namibia Standard Time',
utc: 'UTC+01:00',
mobileCode: '+264',
pattern: /^(+264)?(81|61)\d{6}$/, // 8-digit numbers starting with 81 or 61
example: '+264811234567'
},
{
name: 'Nauru',
code: 'NR',
timezone: 'UTC+12',
utc: 'UTC+12:00',
mobileCode: '+674',
pattern: /^(+674)?[1-9]\d{5}$/, // 6-digit numbers
example: '+674123456'
},
{
name: 'Nepal',
code: 'NP',
timezone: 'Nepal Standard Time',
utc: 'UTC+05:45',
mobileCode: '+977',
pattern: /^(+977)?9[7-8]\d{8}$/, // 10-digit mobile numbers starting with 97 or 98
example: '+9779841234567'
},
{
name: 'Netherlands',
code: 'NL',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+31',
pattern: /^(+31)?6\d{8}$/, // 9-digit mobile numbers starting with 6
example: '+31612345678'
},
{
name: 'New Caledonia',
code: 'NC',
timezone: 'Central Pacific Standard Time',
utc: 'UTC+11:00',
mobileCode: '+687',
pattern: /^(+687)?[5-9]\d{5}$/, // 6-digit numbers starting with 5-9
example: '+687751234'
},
{
name: 'New Zealand',
code: 'NZ',
timezone: 'New Zealand Standard Time',
utc: 'UTC+12:00',
mobileCode: '+64',
pattern: /^(+64)?2\d{7,9}$/, // 8-10 digit numbers starting with 2 (mobile/landline)
example: '+64211234567'
},
{
name: 'Nicaragua',
code: 'NI',
timezone: 'Central America Standard Time',
utc: 'UTC-06:00',
mobileCode: '+505',
pattern: /^(+505)?[58]\d{7}$/, // 8-digit numbers starting with 5 or 8
example: '+50581234567'
},
{
name: 'Niger',
code: 'NE',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+227',
pattern: /^(+227)?9\d{7}$/, // 8-digit mobile numbers starting with 9
example: '+22793123456'
},
{
name: 'Nigeria',
code: 'NG',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+234',
pattern: /^(+234)?[789]\d{9}$/, // 10-digit mobile numbers starting with 7,8, or 9
example: '+2348012345678'
},
{
name: 'Niue',
code: 'NU',
timezone: 'UTC-11',
utc: 'UTC-11:00',
mobileCode: '+683',
pattern: /^(+683)?[1-9]\d{3}$/, // 4-digit numbers
example: '+6831234'
},
{
name: 'Norfolk Island',
code: 'NF',
timezone: 'Central Pacific Standard Time',
utc: 'UTC+11:00',
mobileCode: '+672',
pattern: /^(+672)?3\d{5}$/, // 6-digit numbers starting with 3
example: '+672312345'
},
{
name: 'North Korea',
code: 'KP',
timezone: 'Korea Standard Time',
utc: 'UTC+09:00',
mobileCode: '+850',
pattern: /^(+850)?19\d{7}$/, // 9-digit mobile numbers starting with 19
example: '+850192123456'
},
{
name: 'Northern Mariana Islands',
code: 'MP',
timezone: 'West Pacific Standard Time',
utc: 'UTC+10:00',
mobileCode: '+1-670',
pattern: /^(+1-670)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-6702345678'
},
{
name: 'Norway',
code: 'NO',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+47',
pattern: /^(+47)?[49]\d{7}$/, // 8-digit mobile numbers starting with 4 or 9
example: '+4741234567'
},
{
name: 'Oman',
code: 'OM',
timezone: 'Arabian Standard Time',
utc: 'UTC+04:00',
mobileCode: '+968',
pattern: /^(+968)?9\d{7}$/, // 8-digit mobile numbers starting with 9
example: '+96891234567'
},
{
name: 'Pakistan',
code: 'PK',
timezone: 'Pakistan Standard Time',
utc: 'UTC+05:00',
mobileCode: '+92',
pattern: /^(+92)?3\d{9}$/, // 10-digit mobile numbers starting with 3
example: '+923001234567'
},
{
name: 'Palau',
code: 'PW',
timezone: 'Tokyo Standard Time',
utc: 'UTC+09:00',
mobileCode: '+680',
pattern: /^(+680)?[2-9]\d{5}$/, // 6-digit numbers
example: '+6802771234'
},
{
name: 'Palestinian Authority',
code: 'PS',
timezone: 'Egypt Standard Time',
utc: 'UTC+02:00',
mobileCode: '+970',
pattern: /^(+970)?5[69]\d{7}$/, // 9-digit mobile numbers starting with 56 or 59
example: '+970592123456'
},
{
name: 'Panama',
code: 'PA',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+507',
pattern: /^(+507)?[56]\d{7}$/, // 8-digit numbers starting with 5 or 6
example: '+50761234567'
},
{
name: 'Papua New Guinea',
code: 'PG',
timezone: 'West Pacific Standard Time',
utc: 'UTC+10:00',
mobileCode: '+675',
pattern: /^(+675)?[7-9]\d{7}$/, // 8-digit numbers starting with 7-9
example: '+67571234567'
},
{
name: 'Paraguay',
code: 'PY',
timezone: 'Paraguay Standard Time',
utc: 'UTC-04:00',
mobileCode: '+595',
pattern: /^(+595)?9[1-9]\d{6}$/, // 8-digit mobile numbers starting with 9
example: '+595961234567'
},
{
name: 'Peru',
code: 'PE',
timezone: 'SA Pacific Standard Time',
utc: 'UTC-05:00',
mobileCode: '+51',
pattern: /^(+51)?9\d{8}$/, // 9-digit mobile numbers starting with 9
example: '+51912345678'
},
{
name: 'Philippines',
code: 'PH',
timezone: 'Singapore Standard Time',
utc: 'UTC+08:00',
mobileCode: '+63',
pattern: /^(+63)?9\d{9}$/, // 10-digit mobile numbers starting with 9
example: '+639171234567'
},
{
name: 'Pitcairn Islands',
code: 'PN',
timezone: 'Pacific Standard Time',
utc: 'UTC-08:00',
mobileCode: '+870',
pattern: /^(+870)?[1-9]\d{7}$/, // 8-digit numbers (Inmarsat service)
example: '+87051234567'
},
{
name: 'Poland',
code: 'PL',
timezone: 'Central European Standard Time',
utc: 'UTC+01:00',
mobileCode: '+48',
pattern: /^(+48)?[5-9]\d{8}$/, // 9-digit numbers starting with 5-9
example: '+48512345678'
},
{
name: 'Portugal',
code: 'PT',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+351',
pattern: /^(+351)?9[1236]\d{7}$/, // 9-digit mobile numbers starting with 91, 92, 93, or 96
example: '+351912345678'
},
{
name: 'Puerto Rico',
code: 'PR',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-787 and 1-939',
pattern: /^(+1)?(787|939)[2-9]\d{6}$/, // 10-digit numbers with area codes 787 or 939
example: '+17871234567'
},
{
name: 'Qatar',
code: 'QA',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+974',
pattern: /^(+974)?[3-9]\d{7}$/, // 8-digit numbers starting with 3-9
example: '+97433123456'
},
{
name: 'Reunion',
code: 'RE',
timezone: 'Mauritius Standard Time',
utc: 'UTC+04:00',
mobileCode: '+262',
pattern: /^(+262)?692\d{6}$/, // 9-digit mobile numbers starting with 692
example: '+262692123456'
},
{
name: 'Romania',
code: 'RO',
timezone: 'GTB Standard Time',
utc: 'UTC+02:00',
mobileCode: '+40',
pattern: /^(+40)?7\d{8}$/, // 9-digit mobile numbers starting with 7
example: '+40741234567'
},
{
name: 'Russia',
code: 'RU',
timezone: 'Russian Standard Time',
utc: 'UTC+03:00',
mobileCode: '+7',
pattern: /^(+7)?9\d{9}$/, // 10-digit mobile numbers starting with 9
example: '+79123456789'
},
{
name: 'Rwanda',
code: 'RW',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+250',
pattern: /^(+250)?7\d{8}$/, // 9-digit mobile numbers starting with 7
example: '+250781234567'
},
{
name: 'Saint Barthélemy',
code: 'BL',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+590',
pattern: /^(+590)?690\d{6}$/, // 9-digit mobile numbers starting with 690
example: '+590690123456'
},
{
name: 'Saint Helena, Ascension and Tristan da Cunha',
code: 'SH',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+290',
pattern: /^(+290)?[2-9]\d{3}$/, // 4-digit numbers
example: '+2902345'
},
{
name: 'Saint Kitts and Nevis',
code: 'KN',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-869',
pattern: /^(+1-869)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-8697654321'
},
{
name: 'Saint Lucia',
code: 'LC',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-758',
pattern: /^(+1-758)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-7587123456'
},
{
name: 'Saint Martin (French part)',
code: 'MF',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+590',
pattern: /^(+590)?690\d{6}$/, // 9-digit mobile numbers starting with 690
example: '+590690123456'
},
{
name: 'Saint Pierre and Miquelon',
code: 'PM',
timezone: 'Greenland Standard Time',
utc: 'UTC-03:00',
mobileCode: '+508',
pattern: /^(+508)?[45]\d{5}$/, // 6-digit numbers starting with 4 or 5
example: '+508412345'
},
{
name: 'Saint Vincent and the Grenadines',
code: 'VC',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-784',
pattern: /^(+1-784)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-7844567890'
},
{
name: 'Samoa',
code: 'WS',
timezone: 'Samoa Standard Time',
utc: 'UTC+13:00',
mobileCode: '+685',
pattern: /^(+685)?[2-9]\d{4}$/, // 5-digit numbers
example: '+68571234'
},
{
name: 'San Marino',
code: 'SM',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+378',
pattern: /^(+378)?6\d{7}$/, // 8-digit mobile numbers starting with 6
example: '+3786123456'
},
{
name: 'São Tomé and Príncipe',
code: 'ST',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+239',
pattern: /^(+239)?9\d{5}$/, // 6-digit mobile numbers starting with 9
example: '+239912345'
},
{
name: 'Saudi Arabia',
code: 'SA',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+966',
pattern: /^(+966)?5\d{8}$/, // 9-digit mobile numbers starting with 5
example: '+966501234567'
},
{
name: 'Senegal',
code: 'SN',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+221',
pattern: /^(+221)?7\d{8}$/, // 9-digit mobile numbers starting with 7
example: '+221701234567'
},
{
name: 'Serbia',
code: 'RS',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+381',
pattern: /^(+381)?6\d{7,8}$/, // 8-9 digit mobile numbers starting with 6
example: '+381641234567'
},
{
name: 'Seychelles',
code: 'SC',
timezone: 'Mauritius Standard Time',
utc: 'UTC+04:00',
mobileCode: '+248',
pattern: /^(+248)?[2-9]\d{5}$/, // 6-digit numbers
example: '+248412345'
},
{
name: 'Sierra Leone',
code: 'SL',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+232',
pattern: /^(+232)?(2|3|7|8)\d{7}$/, // 8-digit numbers starting with 2,3,7, or 8
example: '+23230123456'
},
{
name: 'Singapore',
code: 'SG',
timezone: 'Singapore Standard Time',
utc: 'UTC+08:00',
mobileCode: '+65',
pattern: /^(+65)?[89]\d{7}$/, // 8-digit mobile numbers starting with 8 or 9
example: '+6581234567'
},
{
name: 'Sint Maarten (Dutch part)',
code: 'SX',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+599',
pattern: /^(+599)?[2-9]\d{6}$/, // 7-digit numbers
example: '+5995421234'
},
{
name: 'Slovakia',
code: 'SK',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+421',
pattern: /^(+421)?9\d{8}$/, // 9-digit mobile numbers starting with 9
example: '+421912345678'
},
{
name: 'Slovenia',
code: 'SI',
timezone: 'Central Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+386',
pattern: /^(+386)?[3-7]\d{7}$/, // 8-digit numbers starting with 3-7
example: '+38640123456'
},
{
name: 'Solomon Islands',
code: 'SB',
timezone: 'Central Pacific Standard Time',
utc: 'UTC+11:00',
mobileCode: '+677',
pattern: /^(+677)?[2-9]\d{4}$/, // 5-digit numbers
example: '+67751234'
},
{
name: 'Somalia',
code: 'SO',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+252',
pattern: /^(+252)?[67]\d{7}$/, // 8-digit mobile numbers starting with 6 or 7
example: '+25261234567'
},
{
name: 'South Africa',
code: 'ZA',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+27',
pattern: /^(+27)?[6-8]\d{8}$/, // 9-digit mobile numbers starting with 6-8
example: '+27712345678'
},
{
name: 'South Georgia and the South Sandwich Islands',
code: 'GS',
timezone: 'UTC-02',
utc: 'UTC-02:00',
mobileCode: '+',
pattern: null, // No telephone infrastructure
example: null
},
{
name: 'South Sudan',
code: 'SS',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+211',
pattern: /^(+211)?9\d{8}$/, // 9-digit mobile numbers starting with 9
example: '+211912345678'
},
{
name: 'Spain',
code: 'ES',
timezone: 'Romance Standard Time',
utc: 'UTC+01:00',
mobileCode: '+34',
pattern: /^(+34)?[67]\d{8}$/, // 9-digit mobile numbers starting with 6 or 7
example: '+34612345678'
},
{
name: 'Sri Lanka',
code: 'LK',
timezone: 'Sri Lanka Standard Time',
utc: 'UTC+05:30',
mobileCode: '+94',
pattern: /^(+94)?7\d{8}$/, // 9-digit mobile numbers starting with 7
example: '+94712345678'
},
{
name: 'Sudan',
code: 'SD',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+249',
pattern: /^(+249)?9\d{8}$/, // 9-digit mobile numbers starting with 9
example: '+249912345678'
},
{
name: 'Suriname',
code: 'SR',
timezone: 'SA Eastern Standard Time',
utc: 'UTC-03:00',
mobileCode: '+597',
pattern: /^(+597)?[6-8]\d{5}$/, // 6-digit numbers starting with 6-8
example: '+597612345'
},
{
name: 'Svalbard',
code: 'SJ',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+47',
pattern: /^(+47)?[49]\d{7}$/, // 8-digit numbers starting with 4 or 9 (Norwegian format)
example: '+4791234567'
},
{
name: 'Swaziland',
code: 'SZ',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+268',
pattern: /^(+268)?[7]\d{7}$/, // 8-digit mobile numbers starting with 7
example: '+26876123456'
},
{
name: 'Sweden',
code: 'SE',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+46',
pattern: /^(+46)?7[0-9]\d{7}$/, // 9-digit mobile numbers starting with 70-79
example: '+46701234567'
},
{
name: 'Switzerland',
code: 'CH',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+41',
pattern: /^(+41)?7[5-9]\d{7}$/, // 9-digit mobile numbers starting with 75-79
example: '+41761234567'
},
{
name: 'Syria',
code: 'SY',
timezone: 'Syria Standard Time',
utc: 'UTC+02:00',
mobileCode: '+963',
pattern: /^(+963)?9\d{8}$/, // 9-digit mobile numbers starting with 9
example: '+963931234567'
},
{
name: 'Taiwan',
code: 'TW',
timezone: 'Taipei Standard Time',
utc: 'UTC+08:00',
mobileCode: '+886',
pattern: /^(+886)?9\d{8}$/, // 9-digit mobile numbers starting with 9
example: '+886912345678'
},
{
name: 'Tajikistan',
code: 'TJ',
timezone: 'West Asia Standard Time',
utc: 'UTC+05:00',
mobileCode: '+992',
pattern: /^(+992)?[9]\d{8}$/, // 9-digit mobile numbers starting with 9
example: '+992918765432'
},
{
name: 'Tanzania',
code: 'TZ',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+255',
pattern: /^(+255)?[67]\d{8}$/, // 9-digit mobile numbers starting with 6 or 7
example: '+255712345678'
},
{
name: 'Thailand',
code: 'TH',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+66',
pattern: /^(+66)?[89]\d{8}$/, // 9-digit mobile numbers starting with 8 or 9
example: '+66811234567'
},
{
name: 'Togo',
code: 'TG',
timezone: 'Greenwich Standard Time',
utc: 'UTC',
mobileCode: '+228',
pattern: /^(+228)?[9]\d{7}$/, // 8-digit mobile numbers starting with 9
example: '+22890123456'
},
{
name: 'Tokelau',
code: 'TK',
timezone: 'Tonga Standard Time',
utc: 'UTC+13:00',
mobileCode: '+690',
pattern: /^(+690)?[2-9]\d{3}$/, // 4-digit numbers
example: '+6902345'
},
{
name: 'Tonga',
code: 'TO',
timezone: 'Tonga Standard Time',
utc: 'UTC+13:00',
mobileCode: '+676',
pattern: /^(+676)?[7-9]\d{5}$/, // 6-digit numbers starting with 7-9
example: '+67677123'
},
{
name: 'Trinidad and Tobago',
code: 'TT',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-868',
pattern: /^(+1-868)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-8687123456'
},
{
name: 'Tunisia',
code: 'TN',
timezone: 'W. Central Africa Standard Time',
utc: 'UTC+01:00',
mobileCode: '+216',
pattern: /^(+216)?[2-9]\d{7}$/, // 8-digit numbers
example: '+21620123456'
},
{
name: 'Turkey',
code: 'TR',
timezone: 'Turkey Standard Time',
utc: 'UTC+02:00',
mobileCode: '+90',
pattern: /^(+90)?5\d{9}$/, // 10-digit mobile numbers starting with 5
example: '+905321234567'
},
{
name: 'Turkmenistan',
code: 'TM',
timezone: 'West Asia Standard Time',
utc: 'UTC+05:00',
mobileCode: '+993',
pattern: /^(+993)?6\d{7}$/, // 8-digit mobile numbers starting with 6
example: '+99361234567'
},
{
name: 'Turks and Caicos Islands',
code: 'TC',
timezone: 'Eastern Standard Time',
utc: 'UTC-05:00',
mobileCode: '+1-649',
pattern: /^(+1-649)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-6497123456'
},
{
name: 'Tuvalu',
code: 'TV',
timezone: 'UTC+12',
utc: 'UTC+12:00',
mobileCode: '+688',
pattern: /^(+688)?[2-9]\d{4}$/, // 5-digit numbers
example: '+68890123'
},
{
name: 'U.S. Minor Outlying Islands',
code: 'UM',
timezone: 'UTC-11',
utc: 'UTC-11:00',
mobileCode: '+1',
pattern: null, // No regular phone service
example: null
},
{
name: 'Uganda',
code: 'UG',
timezone: 'E. Africa Standard Time',
utc: 'UTC+03:00',
mobileCode: '+256',
pattern: /^(+256)?7\d{8}$/, // 9-digit mobile numbers starting with 7
example: '+256712345678'
},
{
name: 'Ukraine',
code: 'UA',
timezone: 'FLE Standard Time',
utc: 'UTC+02:00',
mobileCode: '+380',
pattern: /^(+380)?[3-9]\d{8}$/, // 9-digit numbers starting with 3-9
example: '+380501234567'
},
{
name: 'United Arab Emirates',
code: 'AE',
timezone: 'Arabian Standard Time',
utc: 'UTC+04:00',
mobileCode: '+971',
pattern: /^(+971)?5\d{8}$/, // 9-digit mobile numbers starting with 5
example: '+971501234567'
},
{
name: 'United Kingdom',
code: 'GB',
timezone: 'GMT Standard Time',
utc: 'UTC',
mobileCode: '+44',
pattern: /^(+44)?7\d{9}$/, // 10-digit mobile numbers starting with 7
example: '+447912345678'
},
{
name: 'United States',
code: 'US',
timezone: 'Pacific Standard Time',
utc: 'UTC-08:00',
mobileCode: '+1',
pattern: /^(+1)?[2-9]\d{9}$/, // 10-digit numbers (NANP format)
example: '+12025551234'
},
{
name: 'Uruguay',
code: 'UY',
timezone: 'Montevideo Standard Time',
utc: 'UTC-03:00',
mobileCode: '+598',
pattern: /^(+598)?9\d{7}$/, // 8-digit mobile numbers starting with 9
example: '+59891234567'
},
{
name: 'Uzbekistan',
code: 'UZ',
timezone: 'West Asia Standard Time',
utc: 'UTC+05:00',
mobileCode: '+998',
pattern: /^(+998)?[679]\d{8}$/, // 9-digit mobile numbers starting with 6,7, or 9
example: '+998912345678'
},
{
name: 'Vanuatu',
code: 'VU',
timezone: 'Central Pacific Standard Time',
utc: 'UTC+11:00',
mobileCode: '+678',
pattern: /^(+678)?[5-9]\d{4}$/, // 5-digit numbers starting with 5-9
example: '+67871234'
},
{
name: 'Vatican City',
code: 'VA',
timezone: 'W. Europe Standard Time',
utc: 'UTC+01:00',
mobileCode: '+379',
pattern: /^(+379)?6\d{7}$/, // 8-digit mobile numbers starting with 6 (Italian format)
example: '+3796123456'
},
{
name: 'Vietnam',
code: 'VN',
timezone: 'SE Asia Standard Time',
utc: 'UTC+07:00',
mobileCode: '+84',
pattern: /^(+84)?[3-9]\d{8}$/, // 9-digit numbers starting with 3-9
example: '+84981234567'
},
{
name: 'Virgin Islands, U.S.',
code: 'VI',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-340',
pattern: /^(+1-340)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-3407123456'
},
{
name: 'Virgin Islands, British',
code: 'VG',
timezone: 'SA Western Standard Time',
utc: 'UTC-04:00',
mobileCode: '+1-284',
pattern: /^(+1-284)?[2-9]\d{6}$/, // 7-digit numbers (NANP format)
example: '+1-2843123456'
},
// Add more countries with their patterns as needed
{
name: 'Wallis and Futuna',
code: 'WF',
timezone: 'UTC+12',
utc: 'UTC+12:00',
mobileCode: '+681',
pattern: /^(+681)?[2-9]\d{5}$/, // 6-digit numbers (French territory format)
example: '+681501234'
},
{
name: 'Yemen',
code: 'YE',
timezone: 'Arab Standard Time',
utc: 'UTC+03:00',
mobileCode: '+967',
pattern: /^(+967)?7\d{8}$/, // 9-digit mobile numbers starting with 7
example: '+967712345678'
},
{
name: 'Zambia',
code: 'ZM',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+260',
pattern: /^(+260)?(9|7)\d{8}$/, // 9-digit mobile numbers starting with 9 or 7
example: '+260961234567'
},
{
name: 'Zimbabwe',
code: 'ZW',
timezone: 'South Africa Standard Time',
utc: 'UTC+02:00',
mobileCode: '+263',
pattern: /^(+263)?7\d{8}$/, // 9-digit mobile numbers starting with 7
example: '+263712345678'
}
];

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment