Added US states to Geo game.
|
@ -2,9 +2,13 @@
|
|||
|
||||
const fs = require('fs').promises;
|
||||
const crypto = require('crypto');
|
||||
const { argv } = require('yargs');
|
||||
// const bhttp = require('bhttp');
|
||||
|
||||
const countries = require('./countries.json');
|
||||
const states = require('./states-us.json');
|
||||
|
||||
const data = { countries, states };
|
||||
|
||||
/*
|
||||
async function fetchCountries() {
|
||||
|
@ -22,14 +26,16 @@ async function fetchCountries() {
|
|||
*/
|
||||
|
||||
async function init() {
|
||||
const countryImgs = await fs.readdir('./assets/countries');
|
||||
const countriesByCode = Object.fromEntries(countries.map((country) => [country.alpha2, country]));
|
||||
const type = argv.states ? 'states' : 'countries';
|
||||
|
||||
const countryImgs = await fs.readdir(`./assets/${type}`);
|
||||
const countriesByCode = Object.fromEntries(data[type].map((country) => [country.alpha2, country]));
|
||||
|
||||
const imgCountries = await Promise.all(countryImgs.filter((file) => !['encoded', 'disabled'].includes(file)).map(async (file) => {
|
||||
const code = file.match(/(\w+).png/)[1];
|
||||
const filename = `${crypto.createHash('md5').update(code).digest('hex').slice(0, 4)}.png`;
|
||||
|
||||
await fs.copyFile(`./assets/countries/${file}`, `./assets/countries/encoded/${filename}`);
|
||||
await fs.copyFile(`./assets/${type}/${file}`, `./assets/${type}/encoded/${filename}`);
|
||||
|
||||
return {
|
||||
file: filename,
|
||||
|
@ -38,7 +44,7 @@ async function init() {
|
|||
};
|
||||
}));
|
||||
|
||||
await fs.writeFile('./assets/countries-curated.json', JSON.stringify(imgCountries, null, 4));
|
||||
await fs.writeFile(`./assets/${type}-curated.json`, JSON.stringify(imgCountries, null, 4));
|
||||
|
||||
console.log('Done!');
|
||||
}
|
||||
|
|
|
@ -0,0 +1,442 @@
|
|||
[
|
||||
{
|
||||
"file": "631d.png",
|
||||
"code": "AK",
|
||||
"alpha2": "AK",
|
||||
"alpah2Us": "US-AK",
|
||||
"name": "Alaska",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "e892.png",
|
||||
"code": "AL",
|
||||
"alpha2": "AL",
|
||||
"alpah2Us": "US-AL",
|
||||
"name": "Alabama",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "5b61.png",
|
||||
"code": "AR",
|
||||
"alpha2": "AR",
|
||||
"alpah2Us": "US-AR",
|
||||
"name": "Arkansas",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "a2c2.png",
|
||||
"code": "AS",
|
||||
"alpha2": "AS",
|
||||
"alpah2Us": "US-AS",
|
||||
"name": "American Samoa",
|
||||
"type": "outlying area"
|
||||
},
|
||||
{
|
||||
"file": "546a.png",
|
||||
"code": "AZ",
|
||||
"alpha2": "AZ",
|
||||
"alpah2Us": "US-AZ",
|
||||
"name": "Arizona",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "3e8d.png",
|
||||
"code": "CA",
|
||||
"alpha2": "CA",
|
||||
"alpah2Us": "US-CA",
|
||||
"name": "California",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "4298.png",
|
||||
"code": "CO",
|
||||
"alpha2": "CO",
|
||||
"alpah2Us": "US-CO",
|
||||
"name": "Colorado",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "112c.png",
|
||||
"code": "CT",
|
||||
"alpha2": "CT",
|
||||
"alpah2Us": "US-CT",
|
||||
"name": "Connecticut",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "3a52.png",
|
||||
"code": "DE",
|
||||
"alpha2": "DE",
|
||||
"alpah2Us": "US-DE",
|
||||
"name": "Delaware",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "ac71.png",
|
||||
"code": "FL",
|
||||
"alpha2": "FL",
|
||||
"alpah2Us": "US-FL",
|
||||
"name": "Florida",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "cd95.png",
|
||||
"code": "GA",
|
||||
"alpha2": "GA",
|
||||
"alpah2Us": "US-GA",
|
||||
"name": "Georgia",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "3053.png",
|
||||
"code": "GU",
|
||||
"alpha2": "GU",
|
||||
"alpah2Us": "US-GU",
|
||||
"name": "Guam",
|
||||
"type": "outlying area"
|
||||
},
|
||||
{
|
||||
"file": "bf8c.png",
|
||||
"code": "HI",
|
||||
"alpha2": "HI",
|
||||
"alpah2Us": "US-HI",
|
||||
"name": "Hawaii",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "b972.png",
|
||||
"code": "IA",
|
||||
"alpha2": "IA",
|
||||
"alpah2Us": "US-IA",
|
||||
"name": "Iowa",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "b718.png",
|
||||
"code": "ID",
|
||||
"alpha2": "ID",
|
||||
"alpah2Us": "US-ID",
|
||||
"name": "Idaho",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "8858.png",
|
||||
"code": "IL",
|
||||
"alpha2": "IL",
|
||||
"alpah2Us": "US-IL",
|
||||
"name": "Illinois",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "c86e.png",
|
||||
"code": "IN",
|
||||
"alpha2": "IN",
|
||||
"alpah2Us": "US-IN",
|
||||
"name": "Indiana",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "a323.png",
|
||||
"code": "KS",
|
||||
"alpha2": "KS",
|
||||
"alpah2Us": "US-KS",
|
||||
"name": "Kansas",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "b8ea.png",
|
||||
"code": "KY",
|
||||
"alpha2": "KY",
|
||||
"alpah2Us": "US-KY",
|
||||
"name": "Kentucky",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "6b40.png",
|
||||
"code": "LA",
|
||||
"alpha2": "LA",
|
||||
"alpah2Us": "US-LA",
|
||||
"name": "Louisiana",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "2a60.png",
|
||||
"code": "MA",
|
||||
"alpha2": "MA",
|
||||
"alpah2Us": "US-MA",
|
||||
"name": "Massachusetts",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "7dc1.png",
|
||||
"code": "MD",
|
||||
"alpha2": "MD",
|
||||
"alpah2Us": "US-MD",
|
||||
"name": "Maryland",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "9ee9.png",
|
||||
"code": "ME",
|
||||
"alpha2": "ME",
|
||||
"alpah2Us": "US-ME",
|
||||
"name": "Maine",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "9b38.png",
|
||||
"code": "MI",
|
||||
"alpha2": "MI",
|
||||
"alpah2Us": "US-MI",
|
||||
"name": "Michigan",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "943a.png",
|
||||
"code": "MN",
|
||||
"alpha2": "MN",
|
||||
"alpah2Us": "US-MN",
|
||||
"name": "Minnesota",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "eb04.png",
|
||||
"code": "MO",
|
||||
"alpha2": "MO",
|
||||
"alpah2Us": "US-MO",
|
||||
"name": "Missouri",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "c90a.png",
|
||||
"code": "MP",
|
||||
"alpha2": "MP",
|
||||
"alpah2Us": "US-MP",
|
||||
"name": "Northern Mariana Islands",
|
||||
"type": "outlying area"
|
||||
},
|
||||
{
|
||||
"file": "7a66.png",
|
||||
"code": "MS",
|
||||
"alpha2": "MS",
|
||||
"alpah2Us": "US-MS",
|
||||
"name": "Mississippi",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "08ad.png",
|
||||
"code": "MT",
|
||||
"alpha2": "MT",
|
||||
"alpah2Us": "US-MT",
|
||||
"name": "Montana",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "9058.png",
|
||||
"code": "NC",
|
||||
"alpha2": "NC",
|
||||
"alpah2Us": "US-NC",
|
||||
"name": "North Carolina",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "9a11.png",
|
||||
"code": "ND",
|
||||
"alpha2": "ND",
|
||||
"alpah2Us": "US-ND",
|
||||
"name": "North Dakota",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "dc33.png",
|
||||
"code": "NE",
|
||||
"alpha2": "NE",
|
||||
"alpah2Us": "US-NE",
|
||||
"name": "Nebraska",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "d41b.png",
|
||||
"code": "NH",
|
||||
"alpha2": "NH",
|
||||
"alpah2Us": "US-NH",
|
||||
"name": "New Hampshire",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "e223.png",
|
||||
"code": "NJ",
|
||||
"alpha2": "NJ",
|
||||
"alpah2Us": "US-NJ",
|
||||
"name": "New Jersey",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "e0f3.png",
|
||||
"code": "NM",
|
||||
"alpha2": "NM",
|
||||
"alpah2Us": "US-NM",
|
||||
"name": "New Mexico",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "5343.png",
|
||||
"code": "NV",
|
||||
"alpha2": "NV",
|
||||
"alpah2Us": "US-NV",
|
||||
"name": "Nevada",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "93a2.png",
|
||||
"code": "NY",
|
||||
"alpha2": "NY",
|
||||
"alpah2Us": "US-NY",
|
||||
"name": "New York",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "ec94.png",
|
||||
"code": "OH",
|
||||
"alpha2": "OH",
|
||||
"alpah2Us": "US-OH",
|
||||
"name": "Ohio",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "e0aa.png",
|
||||
"code": "OK",
|
||||
"alpha2": "OK",
|
||||
"alpah2Us": "US-OK",
|
||||
"name": "Oklahoma",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "1d00.png",
|
||||
"code": "OR",
|
||||
"alpha2": "OR",
|
||||
"alpah2Us": "US-OR",
|
||||
"name": "Oregon",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "06f6.png",
|
||||
"code": "PA",
|
||||
"alpha2": "PA",
|
||||
"alpah2Us": "US-PA",
|
||||
"name": "Pennsylvania",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "0fe7.png",
|
||||
"code": "PR",
|
||||
"alpha2": "PR",
|
||||
"alpah2Us": "US-PR",
|
||||
"name": "Puerto Rico",
|
||||
"type": "outlying area"
|
||||
},
|
||||
{
|
||||
"file": "2cff.png",
|
||||
"code": "RI",
|
||||
"alpha2": "RI",
|
||||
"alpah2Us": "US-RI",
|
||||
"name": "Rhode Island",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "6a65.png",
|
||||
"code": "SC",
|
||||
"alpha2": "SC",
|
||||
"alpah2Us": "US-SC",
|
||||
"name": "South Carolina",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "38f9.png",
|
||||
"code": "SD",
|
||||
"alpha2": "SD",
|
||||
"alpah2Us": "US-SD",
|
||||
"name": "South Dakota",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "947d.png",
|
||||
"code": "TN",
|
||||
"alpha2": "TN",
|
||||
"alpah2Us": "US-TN",
|
||||
"name": "Tennessee",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "8690.png",
|
||||
"code": "TX",
|
||||
"alpha2": "TX",
|
||||
"alpah2Us": "US-TX",
|
||||
"name": "Texas",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "87db.png",
|
||||
"code": "UT",
|
||||
"alpha2": "UT",
|
||||
"alpah2Us": "US-UT",
|
||||
"name": "Utah",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "3a11.png",
|
||||
"code": "VA",
|
||||
"alpha2": "VA",
|
||||
"alpah2Us": "US-VA",
|
||||
"name": "Virginia",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "8930.png",
|
||||
"code": "VI",
|
||||
"alpha2": "VI",
|
||||
"alpah2Us": "US-VI",
|
||||
"name": "Virgin Islands, U.S.",
|
||||
"type": "outlying area"
|
||||
},
|
||||
{
|
||||
"file": "072b.png",
|
||||
"code": "VT",
|
||||
"alpha2": "VT",
|
||||
"alpah2Us": "US-VT",
|
||||
"name": "Vermont",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "4306.png",
|
||||
"code": "WA",
|
||||
"alpha2": "WA",
|
||||
"alpah2Us": "US-WA",
|
||||
"name": "Washington",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "04b0.png",
|
||||
"code": "WI",
|
||||
"alpha2": "WI",
|
||||
"alpah2Us": "US-WI",
|
||||
"name": "Wisconsin",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "b484.png",
|
||||
"code": "WV",
|
||||
"alpha2": "WV",
|
||||
"alpah2Us": "US-WV",
|
||||
"name": "West Virginia",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"file": "0518.png",
|
||||
"code": "WY",
|
||||
"alpha2": "WY",
|
||||
"alpah2Us": "US-WY",
|
||||
"name": "Wyoming",
|
||||
"type": "state"
|
||||
}
|
||||
]
|
|
@ -0,0 +1,344 @@
|
|||
[
|
||||
{
|
||||
"alpha2": "AL",
|
||||
"alpah2Us": "US-AL",
|
||||
"name": "Alabama",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "AK",
|
||||
"alpah2Us": "US-AK",
|
||||
"name": "Alaska",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "AZ",
|
||||
"alpah2Us": "US-AZ",
|
||||
"name": "Arizona",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "AR",
|
||||
"alpah2Us": "US-AR",
|
||||
"name": "Arkansas",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "CA",
|
||||
"alpah2Us": "US-CA",
|
||||
"name": "California",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "CO",
|
||||
"alpah2Us": "US-CO",
|
||||
"name": "Colorado",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "CT",
|
||||
"alpah2Us": "US-CT",
|
||||
"name": "Connecticut",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "DE",
|
||||
"alpah2Us": "US-DE",
|
||||
"name": "Delaware",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "FL",
|
||||
"alpah2Us": "US-FL",
|
||||
"name": "Florida",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "GA",
|
||||
"alpah2Us": "US-GA",
|
||||
"name": "Georgia",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "HI",
|
||||
"alpah2Us": "US-HI",
|
||||
"name": "Hawaii",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "ID",
|
||||
"alpah2Us": "US-ID",
|
||||
"name": "Idaho",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "IL",
|
||||
"alpah2Us": "US-IL",
|
||||
"name": "Illinois",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "IN",
|
||||
"alpah2Us": "US-IN",
|
||||
"name": "Indiana",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "IA",
|
||||
"alpah2Us": "US-IA",
|
||||
"name": "Iowa",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "KS",
|
||||
"alpah2Us": "US-KS",
|
||||
"name": "Kansas",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "KY",
|
||||
"alpah2Us": "US-KY",
|
||||
"name": "Kentucky",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "LA",
|
||||
"alpah2Us": "US-LA",
|
||||
"name": "Louisiana",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "ME",
|
||||
"alpah2Us": "US-ME",
|
||||
"name": "Maine",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "MD",
|
||||
"alpah2Us": "US-MD",
|
||||
"name": "Maryland",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "MA",
|
||||
"alpah2Us": "US-MA",
|
||||
"name": "Massachusetts",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "MI",
|
||||
"alpah2Us": "US-MI",
|
||||
"name": "Michigan",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "MN",
|
||||
"alpah2Us": "US-MN",
|
||||
"name": "Minnesota",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "MS",
|
||||
"alpah2Us": "US-MS",
|
||||
"name": "Mississippi",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "MO",
|
||||
"alpah2Us": "US-MO",
|
||||
"name": "Missouri",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "MT",
|
||||
"alpah2Us": "US-MT",
|
||||
"name": "Montana",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "NE",
|
||||
"alpah2Us": "US-NE",
|
||||
"name": "Nebraska",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "NV",
|
||||
"alpah2Us": "US-NV",
|
||||
"name": "Nevada",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "NH",
|
||||
"alpah2Us": "US-NH",
|
||||
"name": "New Hampshire",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "NJ",
|
||||
"alpah2Us": "US-NJ",
|
||||
"name": "New Jersey",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "NM",
|
||||
"alpah2Us": "US-NM",
|
||||
"name": "New Mexico",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "NY",
|
||||
"alpah2Us": "US-NY",
|
||||
"name": "New York",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "NC",
|
||||
"alpah2Us": "US-NC",
|
||||
"name": "North Carolina",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "ND",
|
||||
"alpah2Us": "US-ND",
|
||||
"name": "North Dakota",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "OH",
|
||||
"alpah2Us": "US-OH",
|
||||
"name": "Ohio",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "OK",
|
||||
"alpah2Us": "US-OK",
|
||||
"name": "Oklahoma",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "OR",
|
||||
"alpah2Us": "US-OR",
|
||||
"name": "Oregon",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "PA",
|
||||
"alpah2Us": "US-PA",
|
||||
"name": "Pennsylvania",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "RI",
|
||||
"alpah2Us": "US-RI",
|
||||
"name": "Rhode Island",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "SC",
|
||||
"alpah2Us": "US-SC",
|
||||
"name": "South Carolina",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "SD",
|
||||
"alpah2Us": "US-SD",
|
||||
"name": "South Dakota",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "TN",
|
||||
"alpah2Us": "US-TN",
|
||||
"name": "Tennessee",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "TX",
|
||||
"alpah2Us": "US-TX",
|
||||
"name": "Texas",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "UT",
|
||||
"alpah2Us": "US-UT",
|
||||
"name": "Utah",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "VT",
|
||||
"alpah2Us": "US-VT",
|
||||
"name": "Vermont",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "VA",
|
||||
"alpah2Us": "US-VA",
|
||||
"name": "Virginia",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "WA",
|
||||
"alpah2Us": "US-WA",
|
||||
"name": "Washington",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "WV",
|
||||
"alpah2Us": "US-WV",
|
||||
"name": "West Virginia",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "WI",
|
||||
"alpah2Us": "US-WI",
|
||||
"name": "Wisconsin",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "WY",
|
||||
"alpah2Us": "US-WY",
|
||||
"name": "Wyoming",
|
||||
"type": "state"
|
||||
},
|
||||
{
|
||||
"alpha2": "DC",
|
||||
"alpah2Us": "US-DC",
|
||||
"name": "District of Columbia",
|
||||
"type": "district"
|
||||
},
|
||||
{
|
||||
"alpha2": "AS",
|
||||
"alpah2Us": "US-AS",
|
||||
"name": "American Samoa",
|
||||
"type": "outlying area"
|
||||
},
|
||||
{
|
||||
"alpha2": "GU",
|
||||
"alpah2Us": "US-GU",
|
||||
"name": "Guam",
|
||||
"type": "outlying area"
|
||||
},
|
||||
{
|
||||
"alpha2": "MP",
|
||||
"alpah2Us": "US-MP",
|
||||
"name": "Northern Mariana Islands",
|
||||
"type": "outlying area"
|
||||
},
|
||||
{
|
||||
"alpha2": "PR",
|
||||
"alpah2Us": "US-PR",
|
||||
"name": "Puerto Rico",
|
||||
"type": "outlying area"
|
||||
},
|
||||
{
|
||||
"alpha2": "UM",
|
||||
"alpah2Us": "US-UM",
|
||||
"name": "United States Minor Outlying Islands",
|
||||
"type": "outlying area"
|
||||
},
|
||||
{
|
||||
"alpha2": "VI",
|
||||
"alpah2Us": "US-VI",
|
||||
"name": "Virgin Islands, U.S.",
|
||||
"type": "outlying area"
|
||||
}
|
||||
]
|
After Width: | Height: | Size: 264 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 300 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 497 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 509 KiB |
After Width: | Height: | Size: 479 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 365 KiB |
After Width: | Height: | Size: 180 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 498 KiB |
After Width: | Height: | Size: 518 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 498 KiB |
After Width: | Height: | Size: 487 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 349 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 489 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 235 KiB |
After Width: | Height: | Size: 493 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 495 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 351 KiB |
After Width: | Height: | Size: 509 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 487 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 487 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 509 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 235 KiB |
After Width: | Height: | Size: 509 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 498 KiB |
After Width: | Height: | Size: 493 KiB |
After Width: | Height: | Size: 365 KiB |
After Width: | Height: | Size: 495 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 479 KiB |
After Width: | Height: | Size: 497 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 264 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 518 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 351 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 487 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 498 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 300 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 486 KiB |