@verified-network/verified-custody 0.1.9 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/babel.config.json +12 -0
- package/dist/index.d.mts +165 -0
- package/dist/index.d.ts +165 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +31 -42
- package/src/components/overlays.tsx +61 -0
- package/src/components/search.tsx +381 -0
- package/src/components/slider.tsx +29 -0
- package/src/components/success.tsx +142 -0
- package/src/customTypes.d.ts +37 -0
- package/src/index.ts +17 -0
- package/src/pages/addCosigners.tsx +1014 -0
- package/src/pages/contact.tsx +280 -0
- package/src/pages/createPin.tsx +693 -0
- package/src/pages/enterPin.tsx +821 -0
- package/src/pages/ftu.tsx +244 -0
- package/src/pages/index.tsx +170 -0
- package/src/pages/otp.tsx +410 -0
- package/src/services/contracts.ts +817 -0
- package/src/services/store.tsx +65 -0
- package/src/style.css +2030 -0
- package/src/utils/config.ts +103 -0
- package/src/utils/constants.ts +1966 -0
- package/src/utils/helpers.tsx +334 -0
- package/src/utils/types.ts +85 -0
- package/tsconfig.json +16 -0
- package/tsup.config.ts +36 -0
- package/README.md +0 -93
- package/dist/main.js +0 -2
- package/dist/main.js.LICENSE.txt +0 -190
|
@@ -0,0 +1,1966 @@
|
|
|
1
|
+
export const defaultChainId =
|
|
2
|
+
process.env.REACT_APP_NODE_ENV === "production" ? 8453 : 11155111; //Base mainnet for production or Base Sepolia for developement
|
|
3
|
+
|
|
4
|
+
export const defaultVerifiedUrl =
|
|
5
|
+
process.env.REACT_APP_NODE_ENV === "production"
|
|
6
|
+
? "https://wallet.verified.network"
|
|
7
|
+
: "https://veripay-bac0b.web.app";
|
|
8
|
+
|
|
9
|
+
export const allGoogleFontUrls = [
|
|
10
|
+
"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap",
|
|
11
|
+
"https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap",
|
|
12
|
+
"https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap",
|
|
13
|
+
];
|
|
14
|
+
|
|
15
|
+
export const newTransactionEventHash =
|
|
16
|
+
"0x7f8d3f14b960b3bcf34baea4b46178e331b54a33e565d7d50d77cdfe9e926fe8";
|
|
17
|
+
|
|
18
|
+
export const TwiloBaseUrl = "https://verify-1740-4at0oa.twil.io";
|
|
19
|
+
|
|
20
|
+
export const numberPositions = {
|
|
21
|
+
1: "1st",
|
|
22
|
+
2: "2nd",
|
|
23
|
+
3: "3rd",
|
|
24
|
+
4: "4th",
|
|
25
|
+
5: "5th",
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export const numberPositionsFmt = {
|
|
29
|
+
1: "1 st",
|
|
30
|
+
2: "2 nd",
|
|
31
|
+
3: "3 rd",
|
|
32
|
+
4: "4 th",
|
|
33
|
+
5: "5 th",
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export const actionTexts = {
|
|
37
|
+
connect_wallet: "connect your account",
|
|
38
|
+
getPk: "recover your account details",
|
|
39
|
+
invitation: "accept Co-Signer invitation",
|
|
40
|
+
signRecovery: "sign account recovery",
|
|
41
|
+
completeRecovery: "restore login access",
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export const imageAssets = {
|
|
45
|
+
successIcon:
|
|
46
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/succes-page-icon.svg",
|
|
47
|
+
usaFlag:
|
|
48
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/Flag-United-States-of-America%201.svg",
|
|
49
|
+
privacyTip:
|
|
50
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/privacy_tip.svg",
|
|
51
|
+
addCoSignerIcon1:
|
|
52
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/add-cosigner-icon-1.svg",
|
|
53
|
+
addCoSignerIcon2:
|
|
54
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/add-cosigner-icon-2.svg",
|
|
55
|
+
addCoSignerIcon3:
|
|
56
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/add-cosigner-icon-3.svg",
|
|
57
|
+
addCoSignerIcon4:
|
|
58
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/add-cosigner-icon-4.svg",
|
|
59
|
+
pkicon:
|
|
60
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/pk-icon.svg",
|
|
61
|
+
encryptedIcon:
|
|
62
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/encrypted-icon.svg",
|
|
63
|
+
pinHide:
|
|
64
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/pin-hide-icon.svg",
|
|
65
|
+
pinShow:
|
|
66
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/pin-show-icon.svg",
|
|
67
|
+
arrowUp:
|
|
68
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/contact-arrow-up.svg",
|
|
69
|
+
arrowDown:
|
|
70
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/contact-dropdown.svg",
|
|
71
|
+
editBlue:
|
|
72
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/edit.svg",
|
|
73
|
+
editBlack:
|
|
74
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/edit-icon.svg",
|
|
75
|
+
search:
|
|
76
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/search-icon.svg",
|
|
77
|
+
circleClicked:
|
|
78
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/check-circle-icon.svg",
|
|
79
|
+
supervise:
|
|
80
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/supervisor-icon.svg",
|
|
81
|
+
delete:
|
|
82
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/delete-icon.svg",
|
|
83
|
+
pointer:
|
|
84
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/pointer-icon.svg",
|
|
85
|
+
sliderDot:
|
|
86
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/slider-icon.svg",
|
|
87
|
+
select:
|
|
88
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/select-icon.svg",
|
|
89
|
+
selectClicked:
|
|
90
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/select-clicked-icon.svg",
|
|
91
|
+
addIcon:
|
|
92
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/plus-circle-icon.svg",
|
|
93
|
+
addDisableIcon:
|
|
94
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/plus-circle-dis.svg",
|
|
95
|
+
errorAlert:
|
|
96
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/error-icon.svg",
|
|
97
|
+
successAlert:
|
|
98
|
+
"https://raw.githubusercontent.com/Mohzcrea8me/verified-wallet-assets/main/success-icon.svg",
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
export const countriesDetails = [
|
|
102
|
+
{
|
|
103
|
+
name: "Afghanistan",
|
|
104
|
+
code: "AF",
|
|
105
|
+
currency: "AFN",
|
|
106
|
+
continent: "Asia",
|
|
107
|
+
flag: "https://flagpedia.net/data/flags/h80/af.webp",
|
|
108
|
+
phone_code: "93",
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
name: "Albania",
|
|
112
|
+
code: "AL",
|
|
113
|
+
currency: "ALL",
|
|
114
|
+
continent: "Europe",
|
|
115
|
+
flag: "https://flagpedia.net/data/flags/h80/al.webp",
|
|
116
|
+
phone_code: "355",
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
name: "Algeria",
|
|
120
|
+
code: "DZ",
|
|
121
|
+
currency: "DZD",
|
|
122
|
+
continent: "Africa",
|
|
123
|
+
flag: "https://flagpedia.net/data/flags/h80/dz.webp",
|
|
124
|
+
phone_code: "213",
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
name: "American Samoa",
|
|
128
|
+
code: "AS",
|
|
129
|
+
currency: "USD",
|
|
130
|
+
continent: "Oceania",
|
|
131
|
+
flag: "https://flagpedia.net/data/flags/h80/as.webp",
|
|
132
|
+
phone_code: "1-684",
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
name: "Andorra",
|
|
136
|
+
code: "AD",
|
|
137
|
+
currency: "EUR",
|
|
138
|
+
continent: "Europe",
|
|
139
|
+
flag: "https://flagpedia.net/data/flags/h80/ad.webp",
|
|
140
|
+
phone_code: "376",
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
name: "Angola",
|
|
144
|
+
code: "AO",
|
|
145
|
+
currency: "AOA",
|
|
146
|
+
continent: "Africa",
|
|
147
|
+
flag: "https://flagpedia.net/data/flags/h80/ao.webp",
|
|
148
|
+
phone_code: "244",
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
name: "Anguilla",
|
|
152
|
+
code: "AI",
|
|
153
|
+
currency: "XCD",
|
|
154
|
+
continent: "North America",
|
|
155
|
+
flag: "https://flagpedia.net/data/flags/h80/ai.webp",
|
|
156
|
+
phone_code: "1-264",
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
name: "Antarctica",
|
|
160
|
+
code: "AQ",
|
|
161
|
+
currency: "N/A",
|
|
162
|
+
continent: "Antarctica",
|
|
163
|
+
flag: "https://flagpedia.net/data/flags/h80/aq.webp",
|
|
164
|
+
phone_code: "N/A",
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
name: "Antigua and Barbuda",
|
|
168
|
+
code: "AG",
|
|
169
|
+
currency: "XCD",
|
|
170
|
+
continent: "North America",
|
|
171
|
+
flag: "https://flagpedia.net/data/flags/h80/ag.webp",
|
|
172
|
+
phone_code: "1-268",
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
name: "Argentina",
|
|
176
|
+
code: "AR",
|
|
177
|
+
currency: "ARS",
|
|
178
|
+
continent: "South America",
|
|
179
|
+
flag: "https://flagpedia.net/data/flags/h80/ar.webp",
|
|
180
|
+
phone_code: "54",
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
name: "Armenia",
|
|
184
|
+
code: "AM",
|
|
185
|
+
currency: "AMD",
|
|
186
|
+
continent: "Asia",
|
|
187
|
+
flag: "https://flagpedia.net/data/flags/h80/am.webp",
|
|
188
|
+
phone_code: "374",
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
name: "Aruba",
|
|
192
|
+
code: "AW",
|
|
193
|
+
currency: "AWG",
|
|
194
|
+
continent: "North America",
|
|
195
|
+
flag: "https://flagpedia.net/data/flags/h80/aw.webp",
|
|
196
|
+
phone_code: "297",
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
name: "Australia",
|
|
200
|
+
code: "AU",
|
|
201
|
+
currency: "AUD",
|
|
202
|
+
continent: "Oceania",
|
|
203
|
+
flag: "https://flagpedia.net/data/flags/h80/au.webp",
|
|
204
|
+
phone_code: "61",
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
name: "Austria",
|
|
208
|
+
code: "AT",
|
|
209
|
+
currency: "EUR",
|
|
210
|
+
continent: "Europe",
|
|
211
|
+
flag: "https://flagpedia.net/data/flags/h80/at.webp",
|
|
212
|
+
phone_code: "43",
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
name: "Azerbaijan",
|
|
216
|
+
code: "AZ",
|
|
217
|
+
currency: "AZN",
|
|
218
|
+
continent: "Asia",
|
|
219
|
+
flag: "https://flagpedia.net/data/flags/h80/az.webp",
|
|
220
|
+
phone_code: "994",
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
name: "Bahamas",
|
|
224
|
+
code: "BS",
|
|
225
|
+
currency: "BSD",
|
|
226
|
+
continent: "North America",
|
|
227
|
+
flag: "https://flagpedia.net/data/flags/h80/bs.webp",
|
|
228
|
+
phone_code: "1-242",
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
name: "Bahrain",
|
|
232
|
+
code: "BH",
|
|
233
|
+
currency: "BHD",
|
|
234
|
+
continent: "Asia",
|
|
235
|
+
flag: "https://flagpedia.net/data/flags/h80/bh.webp",
|
|
236
|
+
phone_code: "973",
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
name: "Bangladesh",
|
|
240
|
+
code: "BD",
|
|
241
|
+
currency: "BDT",
|
|
242
|
+
continent: "Asia",
|
|
243
|
+
flag: "https://flagpedia.net/data/flags/h80/bd.webp",
|
|
244
|
+
phone_code: "880",
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: "Barbados",
|
|
248
|
+
code: "BB",
|
|
249
|
+
currency: "BBD",
|
|
250
|
+
continent: "North America",
|
|
251
|
+
flag: "https://flagpedia.net/data/flags/h80/bb.webp",
|
|
252
|
+
phone_code: "1-246",
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
name: "Belarus",
|
|
256
|
+
code: "BY",
|
|
257
|
+
currency: "BYR",
|
|
258
|
+
continent: "Europe",
|
|
259
|
+
flag: "https://flagpedia.net/data/flags/h80/by.webp",
|
|
260
|
+
phone_code: "375",
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
name: "Belgium",
|
|
264
|
+
code: "BE",
|
|
265
|
+
currency: "EUR",
|
|
266
|
+
continent: "Europe",
|
|
267
|
+
flag: "https://flagpedia.net/data/flags/h80/be.webp",
|
|
268
|
+
phone_code: "32",
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
name: "Belize",
|
|
272
|
+
code: "BZ",
|
|
273
|
+
currency: "BZD",
|
|
274
|
+
continent: "North America",
|
|
275
|
+
flag: "https://flagpedia.net/data/flags/h80/bz.webp",
|
|
276
|
+
phone_code: "501",
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
name: "Benin",
|
|
280
|
+
code: "BJ",
|
|
281
|
+
currency: "XOF",
|
|
282
|
+
continent: "Africa",
|
|
283
|
+
flag: "https://flagpedia.net/data/flags/h80/bj.webp",
|
|
284
|
+
phone_code: "229",
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
name: "Bermuda",
|
|
288
|
+
code: "BM",
|
|
289
|
+
currency: "BMD",
|
|
290
|
+
continent: "North America",
|
|
291
|
+
flag: "https://flagpedia.net/data/flags/h80/bm.webp",
|
|
292
|
+
phone_code: "1-441",
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
name: "Bhutan",
|
|
296
|
+
code: "BT",
|
|
297
|
+
currency: "BTN",
|
|
298
|
+
continent: "Asia",
|
|
299
|
+
flag: "https://flagpedia.net/data/flags/h80/bt.webp",
|
|
300
|
+
phone_code: "975",
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
name: "Bolivia",
|
|
304
|
+
code: "BO",
|
|
305
|
+
currency: "BOB",
|
|
306
|
+
continent: "South America",
|
|
307
|
+
flag: "https://flagpedia.net/data/flags/h80/bo.webp",
|
|
308
|
+
phone_code: "591",
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
name: "Bosnia and Herzegovina",
|
|
312
|
+
code: "BA",
|
|
313
|
+
currency: "BAM",
|
|
314
|
+
continent: "Europe",
|
|
315
|
+
flag: "https://flagpedia.net/data/flags/h80/ba.webp",
|
|
316
|
+
phone_code: "387",
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
name: "Botswana",
|
|
320
|
+
code: "BW",
|
|
321
|
+
currency: "BWP",
|
|
322
|
+
continent: "Africa",
|
|
323
|
+
flag: "https://flagpedia.net/data/flags/h80/bw.webp",
|
|
324
|
+
phone_code: "267",
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
name: "Brazil",
|
|
328
|
+
code: "BR",
|
|
329
|
+
currency: "BRL",
|
|
330
|
+
continent: "South America",
|
|
331
|
+
flag: "https://flagpedia.net/data/flags/h80/br.webp",
|
|
332
|
+
phone_code: "55",
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
name: "British Indian Ocean Territory",
|
|
336
|
+
code: "IO",
|
|
337
|
+
currency: "USD",
|
|
338
|
+
continent: "Asia",
|
|
339
|
+
flag: "https://flagpedia.net/data/flags/h80/io.webp",
|
|
340
|
+
phone_code: "246",
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
name: "Brunei Darussalam",
|
|
344
|
+
code: "BN",
|
|
345
|
+
currency: "BND",
|
|
346
|
+
continent: "Asia",
|
|
347
|
+
flag: "https://flagpedia.net/data/flags/h80/bn.webp",
|
|
348
|
+
phone_code: "673",
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
name: "Bulgaria",
|
|
352
|
+
code: "BG",
|
|
353
|
+
currency: "BGN",
|
|
354
|
+
continent: "Europe",
|
|
355
|
+
flag: "https://flagpedia.net/data/flags/h80/bg.webp",
|
|
356
|
+
phone_code: "359",
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
name: "Burkina Faso",
|
|
360
|
+
code: "BF",
|
|
361
|
+
currency: "XOF",
|
|
362
|
+
continent: "Africa",
|
|
363
|
+
flag: "https://flagpedia.net/data/flags/h80/bf.webp",
|
|
364
|
+
phone_code: "226",
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
name: "Burundi",
|
|
368
|
+
code: "BI",
|
|
369
|
+
currency: "BIF",
|
|
370
|
+
continent: "Africa",
|
|
371
|
+
flag: "https://flagpedia.net/data/flags/h80/bi.webp",
|
|
372
|
+
phone_code: "257",
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
name: "Cambodia",
|
|
376
|
+
code: "KH",
|
|
377
|
+
currency: "KHR",
|
|
378
|
+
continent: "Asia",
|
|
379
|
+
flag: "https://flagpedia.net/data/flags/h80/kh.webp",
|
|
380
|
+
phone_code: "855",
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
name: "Cameroon",
|
|
384
|
+
code: "CM",
|
|
385
|
+
currency: "CFA",
|
|
386
|
+
continent: "Africa",
|
|
387
|
+
flag: "https://flagpedia.net/data/flags/h80/cm.webp",
|
|
388
|
+
phone_code: "237",
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
name: "Canada",
|
|
392
|
+
code: "CA",
|
|
393
|
+
currency: "CAD",
|
|
394
|
+
continent: "North America",
|
|
395
|
+
flag: "https://flagpedia.net/data/flags/h80/ca.webp",
|
|
396
|
+
phone_code: "1",
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
name: "Cape Verde",
|
|
400
|
+
code: "CV",
|
|
401
|
+
currency: "CVE",
|
|
402
|
+
continent: "Africa",
|
|
403
|
+
flag: "https://flagpedia.net/data/flags/h80/cv.webp",
|
|
404
|
+
phone_code: "238",
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
name: "Cayman Islands",
|
|
408
|
+
code: "KY",
|
|
409
|
+
currency: "KYD",
|
|
410
|
+
continent: "North America",
|
|
411
|
+
flag: "https://flagpedia.net/data/flags/h80/ky.webp",
|
|
412
|
+
phone_code: "1-345",
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
name: "Central African Republic",
|
|
416
|
+
code: "CF",
|
|
417
|
+
currency: "XAF",
|
|
418
|
+
continent: "Africa",
|
|
419
|
+
flag: "https://flagpedia.net/data/flags/h80/cf.webp",
|
|
420
|
+
phone_code: "236",
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
name: "Chad",
|
|
424
|
+
code: "TD",
|
|
425
|
+
currency: "CDF",
|
|
426
|
+
continent: "Africa",
|
|
427
|
+
flag: "https://flagpedia.net/data/flags/h80/td.webp",
|
|
428
|
+
phone_code: "235",
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
name: "Chile",
|
|
432
|
+
code: "CL",
|
|
433
|
+
currency: "CLP",
|
|
434
|
+
continent: "South America",
|
|
435
|
+
flag: "https://flagpedia.net/data/flags/h80/cl.webp",
|
|
436
|
+
phone_code: "56",
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
name: "China",
|
|
440
|
+
code: "CN",
|
|
441
|
+
currency: "CNY",
|
|
442
|
+
continent: "Asia",
|
|
443
|
+
flag: "https://flagpedia.net/data/flags/h80/cn.webp",
|
|
444
|
+
phone_code: "86",
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
name: "Christmas Island",
|
|
448
|
+
code: "CX",
|
|
449
|
+
currency: "AUD",
|
|
450
|
+
continent: "Oceania",
|
|
451
|
+
flag: "https://flagpedia.net/data/flags/h80/cx.webp",
|
|
452
|
+
phone_code: "61",
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
name: "Cocos (Keeling) Islands",
|
|
456
|
+
code: "CC",
|
|
457
|
+
currency: "AUD",
|
|
458
|
+
continent: "Oceania",
|
|
459
|
+
flag: "https://flagpedia.net/data/flags/h80/cc.webp",
|
|
460
|
+
phone_code: "61",
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
name: "Colombia",
|
|
464
|
+
code: "CO",
|
|
465
|
+
currency: "COP",
|
|
466
|
+
continent: "South America",
|
|
467
|
+
flag: "https://flagpedia.net/data/flags/h80/co.webp",
|
|
468
|
+
phone_code: "57",
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
name: "Comoros",
|
|
472
|
+
code: "KM",
|
|
473
|
+
currency: "KMF",
|
|
474
|
+
continent: "Africa",
|
|
475
|
+
flag: "https://flagpedia.net/data/flags/h80/km.webp",
|
|
476
|
+
phone_code: "269",
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
name: "Congo (Congo-Brazzaville)",
|
|
480
|
+
code: "CG",
|
|
481
|
+
currency: "CDF",
|
|
482
|
+
continent: "Africa",
|
|
483
|
+
flag: "https://flagpedia.net/data/flags/h80/cg.webp",
|
|
484
|
+
phone_code: "242",
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
name: "Congo (Democratic Republic of the Congo)",
|
|
488
|
+
code: "CD",
|
|
489
|
+
currency: "CDF",
|
|
490
|
+
continent: "Africa",
|
|
491
|
+
flag: "https://flagpedia.net/data/flags/h80/cd.webp",
|
|
492
|
+
phone_code: "243",
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
name: "Cook Islands",
|
|
496
|
+
code: "CK",
|
|
497
|
+
currency: "NZD",
|
|
498
|
+
continent: "Oceania",
|
|
499
|
+
flag: "https://flagpedia.net/data/flags/h80/ck.webp",
|
|
500
|
+
phone_code: "682",
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
name: "Costa Rica",
|
|
504
|
+
code: "CR",
|
|
505
|
+
currency: "CRC",
|
|
506
|
+
continent: "North America",
|
|
507
|
+
flag: "https://flagpedia.net/data/flags/h80/cr.webp",
|
|
508
|
+
phone_code: "506",
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
name: "Croatia",
|
|
512
|
+
code: "HR",
|
|
513
|
+
currency: "HRK",
|
|
514
|
+
continent: "Europe",
|
|
515
|
+
flag: "https://flagpedia.net/data/flags/h80/hr.webp",
|
|
516
|
+
phone_code: "385",
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
name: "Cuba",
|
|
520
|
+
code: "CU",
|
|
521
|
+
currency: "CUP",
|
|
522
|
+
continent: "North America",
|
|
523
|
+
flag: "https://flagpedia.net/data/flags/h80/cu.webp",
|
|
524
|
+
phone_code: "53",
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
name: "Curaçao",
|
|
528
|
+
code: "CW",
|
|
529
|
+
currency: "AWG",
|
|
530
|
+
continent: "North America",
|
|
531
|
+
flag: "https://flagpedia.net/data/flags/h80/cw.webp",
|
|
532
|
+
phone_code: "599",
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
name: "Cyprus",
|
|
536
|
+
code: "CY",
|
|
537
|
+
currency: "EUR",
|
|
538
|
+
continent: "Europe",
|
|
539
|
+
flag: "https://flagpedia.net/data/flags/h80/cy.webp",
|
|
540
|
+
phone_code: "357",
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
name: "Czech Republic",
|
|
544
|
+
code: "CZ",
|
|
545
|
+
currency: "CZK",
|
|
546
|
+
continent: "Europe",
|
|
547
|
+
flag: "https://flagpedia.net/data/flags/h80/cz.webp",
|
|
548
|
+
phone_code: "420",
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
name: "Denmark",
|
|
552
|
+
code: "DK",
|
|
553
|
+
currency: "DKK",
|
|
554
|
+
continent: "Europe",
|
|
555
|
+
flag: "https://flagpedia.net/data/flags/h80/dk.webp",
|
|
556
|
+
phone_code: "45",
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
name: "Djibouti",
|
|
560
|
+
code: "DJ",
|
|
561
|
+
currency: "DJF",
|
|
562
|
+
continent: "Africa",
|
|
563
|
+
flag: "https://flagpedia.net/data/flags/h80/dj.webp",
|
|
564
|
+
phone_code: "253",
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
name: "Dominica",
|
|
568
|
+
code: "DM",
|
|
569
|
+
currency: "XCD",
|
|
570
|
+
continent: "North America",
|
|
571
|
+
flag: "https://flagpedia.net/data/flags/h80/dm.webp",
|
|
572
|
+
phone_code: "1-767",
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
name: "Dominican Republic",
|
|
576
|
+
code: "DO",
|
|
577
|
+
currency: "DOP",
|
|
578
|
+
continent: "North America",
|
|
579
|
+
flag: "https://flagpedia.net/data/flags/h80/do.webp",
|
|
580
|
+
phone_code: "1-809",
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
name: "Ecuador",
|
|
584
|
+
code: "EC",
|
|
585
|
+
currency: "USD",
|
|
586
|
+
continent: "South America",
|
|
587
|
+
flag: "https://flagpedia.net/data/flags/h80/ec.webp",
|
|
588
|
+
phone_code: "593",
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
name: "Egypt",
|
|
592
|
+
code: "EG",
|
|
593
|
+
currency: "EGP",
|
|
594
|
+
continent: "Africa",
|
|
595
|
+
flag: "https://flagpedia.net/data/flags/h80/eg.webp",
|
|
596
|
+
phone_code: "20",
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
name: "El Salvador",
|
|
600
|
+
code: "SV",
|
|
601
|
+
currency: "SVC",
|
|
602
|
+
continent: "North America",
|
|
603
|
+
flag: "https://flagpedia.net/data/flags/h80/sv.webp",
|
|
604
|
+
phone_code: "503",
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
name: "Equatorial Guinea",
|
|
608
|
+
code: "GQ",
|
|
609
|
+
currency: "GNF",
|
|
610
|
+
continent: "Africa",
|
|
611
|
+
flag: "https://flagpedia.net/data/flags/h80/gq.webp",
|
|
612
|
+
phone_code: "240",
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
name: "Eritrea",
|
|
616
|
+
code: "ER",
|
|
617
|
+
currency: "ERN",
|
|
618
|
+
continent: "Africa",
|
|
619
|
+
flag: "https://flagpedia.net/data/flags/h80/er.webp",
|
|
620
|
+
phone_code: "291",
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
name: "Estonia",
|
|
624
|
+
code: "EE",
|
|
625
|
+
currency: "EUR",
|
|
626
|
+
continent: "Europe",
|
|
627
|
+
flag: "https://flagpedia.net/data/flags/h80/ee.webp",
|
|
628
|
+
phone_code: "372",
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
name: "Eswatini",
|
|
632
|
+
code: "SZ",
|
|
633
|
+
currency: "SZL",
|
|
634
|
+
continent: "Africa",
|
|
635
|
+
flag: "https://flagpedia.net/data/flags/h80/sz.webp",
|
|
636
|
+
phone_code: "268",
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
name: "Ethiopia",
|
|
640
|
+
code: "ET",
|
|
641
|
+
currency: "ETB",
|
|
642
|
+
continent: "Africa",
|
|
643
|
+
flag: "https://flagpedia.net/data/flags/h80/et.webp",
|
|
644
|
+
phone_code: "251",
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
name: "Falkland Islands",
|
|
648
|
+
code: "FK",
|
|
649
|
+
currency: "FKP",
|
|
650
|
+
continent: "South America",
|
|
651
|
+
flag: "https://flagpedia.net/data/flags/h80/fk.webp",
|
|
652
|
+
phone_code: "500",
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
name: "Faroe Islands",
|
|
656
|
+
code: "FO",
|
|
657
|
+
currency: "DKK",
|
|
658
|
+
continent: "Europe",
|
|
659
|
+
flag: "https://flagpedia.net/data/flags/h80/fo.webp",
|
|
660
|
+
phone_code: "298",
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
name: "Fiji",
|
|
664
|
+
code: "FJ",
|
|
665
|
+
currency: "FJD",
|
|
666
|
+
continent: "Oceania",
|
|
667
|
+
flag: "https://flagpedia.net/data/flags/h80/fj.webp",
|
|
668
|
+
phone_code: "679",
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
name: "Finland",
|
|
672
|
+
code: "FI",
|
|
673
|
+
currency: "EUR",
|
|
674
|
+
continent: "Europe",
|
|
675
|
+
flag: "https://flagpedia.net/data/flags/h80/fi.webp",
|
|
676
|
+
phone_code: "358",
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
name: "France",
|
|
680
|
+
code: "FR",
|
|
681
|
+
currency: "EUR",
|
|
682
|
+
continent: "Europe",
|
|
683
|
+
flag: "https://flagpedia.net/data/flags/h80/fr.webp",
|
|
684
|
+
phone_code: "33",
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
name: "Gabon",
|
|
688
|
+
code: "GA",
|
|
689
|
+
currency: "GAB",
|
|
690
|
+
continent: "Africa",
|
|
691
|
+
flag: "https://flagpedia.net/data/flags/h80/ga.webp",
|
|
692
|
+
phone_code: "241",
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
name: "Gambia",
|
|
696
|
+
code: "GM",
|
|
697
|
+
currency: "GMD",
|
|
698
|
+
continent: "Africa",
|
|
699
|
+
flag: "https://flagpedia.net/data/flags/h80/gm.webp",
|
|
700
|
+
phone_code: "220",
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
name: "Georgia",
|
|
704
|
+
code: "GE",
|
|
705
|
+
currency: "GEL",
|
|
706
|
+
continent: "Asia",
|
|
707
|
+
flag: "https://flagpedia.net/data/flags/h80/ge.webp",
|
|
708
|
+
phone_code: "995",
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
name: "Germany",
|
|
712
|
+
code: "DE",
|
|
713
|
+
currency: "EUR",
|
|
714
|
+
continent: "Europe",
|
|
715
|
+
flag: "https://flagpedia.net/data/flags/h80/de.webp",
|
|
716
|
+
phone_code: "49",
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
name: "Ghana",
|
|
720
|
+
code: "GH",
|
|
721
|
+
currency: "GHS",
|
|
722
|
+
continent: "Africa",
|
|
723
|
+
flag: "https://flagpedia.net/data/flags/h80/gh.webp",
|
|
724
|
+
phone_code: "233",
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
name: "Greece",
|
|
728
|
+
code: "GR",
|
|
729
|
+
currency: "EUR",
|
|
730
|
+
continent: "Europe",
|
|
731
|
+
flag: "https://flagpedia.net/data/flags/h80/gr.webp",
|
|
732
|
+
phone_code: "30",
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
name: "Greenland",
|
|
736
|
+
code: "GL",
|
|
737
|
+
currency: "DKK",
|
|
738
|
+
continent: "North America",
|
|
739
|
+
flag: "https://flagpedia.net/data/flags/h80/gl.webp",
|
|
740
|
+
phone_code: "299",
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
name: "Grenada",
|
|
744
|
+
code: "GD",
|
|
745
|
+
currency: "XCD",
|
|
746
|
+
continent: "North America",
|
|
747
|
+
flag: "https://flagpedia.net/data/flags/h80/gd.webp",
|
|
748
|
+
phone_code: "1-473",
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
name: "Guadeloupe",
|
|
752
|
+
code: "GP",
|
|
753
|
+
currency: "EUR",
|
|
754
|
+
continent: "North America",
|
|
755
|
+
flag: "https://flagpedia.net/data/flags/h80/gp.webp",
|
|
756
|
+
phone_code: "590",
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
name: "Guam",
|
|
760
|
+
code: "GU",
|
|
761
|
+
currency: "USD",
|
|
762
|
+
continent: "Oceania",
|
|
763
|
+
flag: "https://flagpedia.net/data/flags/h80/gu.webp",
|
|
764
|
+
phone_code: "1-671",
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
name: "Guatemala",
|
|
768
|
+
code: "GT",
|
|
769
|
+
currency: "GTQ",
|
|
770
|
+
continent: "North America",
|
|
771
|
+
flag: "https://flagpedia.net/data/flags/h80/gt.webp",
|
|
772
|
+
phone_code: "502",
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
name: "Guinea",
|
|
776
|
+
code: "GN",
|
|
777
|
+
currency: "GNF",
|
|
778
|
+
continent: "Africa",
|
|
779
|
+
flag: "https://flagpedia.net/data/flags/h80/gn.webp",
|
|
780
|
+
phone_code: "224",
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
name: "Guinea-Bissau",
|
|
784
|
+
code: "GW",
|
|
785
|
+
currency: "GNF",
|
|
786
|
+
continent: "Africa",
|
|
787
|
+
flag: "https://flagpedia.net/data/flags/h80/gw.webp",
|
|
788
|
+
phone_code: "245",
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
name: "Guyana",
|
|
792
|
+
code: "GY",
|
|
793
|
+
currency: "GYD",
|
|
794
|
+
continent: "South America",
|
|
795
|
+
flag: "https://flagpedia.net/data/flags/h80/gy.webp",
|
|
796
|
+
phone_code: "592",
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
name: "Haiti",
|
|
800
|
+
code: "HT",
|
|
801
|
+
currency: "HTG",
|
|
802
|
+
continent: "North America",
|
|
803
|
+
flag: "https://flagpedia.net/data/flags/h80/ht.webp",
|
|
804
|
+
phone_code: "509",
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
name: "Heard Island and McDonald Islands",
|
|
808
|
+
code: "HM",
|
|
809
|
+
currency: "AUD",
|
|
810
|
+
continent: "Australia",
|
|
811
|
+
flag: "https://flagpedia.net/data/flags/h80/hm.webp",
|
|
812
|
+
phone_code: "61",
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
name: "Honduras",
|
|
816
|
+
code: "HN",
|
|
817
|
+
currency: "HNL",
|
|
818
|
+
continent: "North America",
|
|
819
|
+
flag: "https://flagpedia.net/data/flags/h80/hn.webp",
|
|
820
|
+
phone_code: "504",
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
name: "Hong Kong",
|
|
824
|
+
code: "HK",
|
|
825
|
+
currency: "HKD",
|
|
826
|
+
continent: "Asia",
|
|
827
|
+
flag: "https://flagpedia.net/data/flags/h80/hk.webp",
|
|
828
|
+
phone_code: "852",
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
name: "Hungary",
|
|
832
|
+
code: "HU",
|
|
833
|
+
currency: "HUF",
|
|
834
|
+
continent: "Europe",
|
|
835
|
+
flag: "https://flagpedia.net/data/flags/h80/hu.webp",
|
|
836
|
+
phone_code: "36",
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
name: "Iceland",
|
|
840
|
+
code: "IS",
|
|
841
|
+
currency: "ISK",
|
|
842
|
+
continent: "Europe",
|
|
843
|
+
flag: "https://flagpedia.net/data/flags/h80/is.webp",
|
|
844
|
+
phone_code: "354",
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
name: "India",
|
|
848
|
+
code: "IN",
|
|
849
|
+
currency: "INR",
|
|
850
|
+
continent: "Asia",
|
|
851
|
+
flag: "https://flagpedia.net/data/flags/h80/in.webp",
|
|
852
|
+
phone_code: "91",
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
name: "Indonesia",
|
|
856
|
+
code: "ID",
|
|
857
|
+
currency: "IDR",
|
|
858
|
+
continent: "Asia",
|
|
859
|
+
flag: "https://flagpedia.net/data/flags/h80/id.webp",
|
|
860
|
+
phone_code: "62",
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
name: "Iran",
|
|
864
|
+
code: "IR",
|
|
865
|
+
currency: "IRR",
|
|
866
|
+
continent: "Asia",
|
|
867
|
+
flag: "https://flagpedia.net/data/flags/h80/ir.webp",
|
|
868
|
+
phone_code: "98",
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
name: "Iraq",
|
|
872
|
+
code: "IQ",
|
|
873
|
+
currency: "IQD",
|
|
874
|
+
continent: "Asia",
|
|
875
|
+
flag: "https://flagpedia.net/data/flags/h80/iq.webp",
|
|
876
|
+
phone_code: "964",
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
name: "Ireland",
|
|
880
|
+
code: "IE",
|
|
881
|
+
currency: "EUR",
|
|
882
|
+
continent: "Europe",
|
|
883
|
+
flag: "https://flagpedia.net/data/flags/h80/ie.webp",
|
|
884
|
+
phone_code: "353",
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
name: "Israel",
|
|
888
|
+
code: "IL",
|
|
889
|
+
currency: "ILS",
|
|
890
|
+
continent: "Asia",
|
|
891
|
+
flag: "https://flagpedia.net/data/flags/h80/il.webp",
|
|
892
|
+
phone_code: "972",
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
name: "Italy",
|
|
896
|
+
code: "IT",
|
|
897
|
+
currency: "EUR",
|
|
898
|
+
continent: "Europe",
|
|
899
|
+
flag: "https://flagpedia.net/data/flags/h80/it.webp",
|
|
900
|
+
phone_code: "39",
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
name: "Jamaica",
|
|
904
|
+
code: "JM",
|
|
905
|
+
currency: "JMD",
|
|
906
|
+
continent: "North America",
|
|
907
|
+
flag: "https://flagpedia.net/data/flags/h80/jm.webp",
|
|
908
|
+
phone_code: "1-876",
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
name: "Japan",
|
|
912
|
+
code: "JP",
|
|
913
|
+
currency: "JPY",
|
|
914
|
+
continent: "Asia",
|
|
915
|
+
flag: "https://flagpedia.net/data/flags/h80/jp.webp",
|
|
916
|
+
phone_code: "81",
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
name: "Jordan",
|
|
920
|
+
code: "JO",
|
|
921
|
+
currency: "JOD",
|
|
922
|
+
continent: "Asia",
|
|
923
|
+
flag: "https://flagpedia.net/data/flags/h80/jo.webp",
|
|
924
|
+
phone_code: "962",
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
name: "Kazakhstan",
|
|
928
|
+
code: "KZ",
|
|
929
|
+
currency: "KZT",
|
|
930
|
+
continent: "Asia",
|
|
931
|
+
flag: "https://flagpedia.net/data/flags/h80/kz.webp",
|
|
932
|
+
phone_code: "7",
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
name: "Kenya",
|
|
936
|
+
code: "KE",
|
|
937
|
+
currency: "KES",
|
|
938
|
+
continent: "Africa",
|
|
939
|
+
flag: "https://flagpedia.net/data/flags/h80/ke.webp",
|
|
940
|
+
phone_code: "254",
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
name: "Kiribati",
|
|
944
|
+
code: "KI",
|
|
945
|
+
currency: "AUD",
|
|
946
|
+
continent: "Oceania",
|
|
947
|
+
flag: "https://flagpedia.net/data/flags/h80/ki.webp",
|
|
948
|
+
phone_code: "686",
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
name: "Korea (North)",
|
|
952
|
+
code: "KP",
|
|
953
|
+
currency: "KPW",
|
|
954
|
+
continent: "Asia",
|
|
955
|
+
flag: "https://flagpedia.net/data/flags/h80/kp.webp",
|
|
956
|
+
phone_code: "850",
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
name: "Korea (South)",
|
|
960
|
+
code: "KR",
|
|
961
|
+
currency: "KRW",
|
|
962
|
+
continent: "Asia",
|
|
963
|
+
flag: "https://flagpedia.net/data/flags/h80/kr.webp",
|
|
964
|
+
phone_code: "82",
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
name: "Kuwait",
|
|
968
|
+
code: "KW",
|
|
969
|
+
currency: "KWD",
|
|
970
|
+
continent: "Asia",
|
|
971
|
+
flag: "https://flagpedia.net/data/flags/h80/kw.webp",
|
|
972
|
+
phone_code: "965",
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
name: "Kyrgyzstan",
|
|
976
|
+
code: "KG",
|
|
977
|
+
currency: "KGS",
|
|
978
|
+
continent: "Asia",
|
|
979
|
+
flag: "https://flagpedia.net/data/flags/h80/kg.webp",
|
|
980
|
+
phone_code: "996",
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
name: "Laos",
|
|
984
|
+
code: "LA",
|
|
985
|
+
currency: "LAK",
|
|
986
|
+
continent: "Asia",
|
|
987
|
+
flag: "https://flagpedia.net/data/flags/h80/la.webp",
|
|
988
|
+
phone_code: "856",
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
name: "Latvia",
|
|
992
|
+
code: "LV",
|
|
993
|
+
currency: "EUR",
|
|
994
|
+
continent: "Europe",
|
|
995
|
+
flag: "https://flagpedia.net/data/flags/h80/lv.webp",
|
|
996
|
+
phone_code: "371",
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
name: "Lebanon",
|
|
1000
|
+
code: "LB",
|
|
1001
|
+
currency: "LBP",
|
|
1002
|
+
continent: "Asia",
|
|
1003
|
+
flag: "https://flagpedia.net/data/flags/h80/lb.webp",
|
|
1004
|
+
phone_code: "961",
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
name: "Lesotho",
|
|
1008
|
+
code: "LS",
|
|
1009
|
+
currency: "LSL",
|
|
1010
|
+
continent: "Africa",
|
|
1011
|
+
flag: "https://flagpedia.net/data/flags/h80/ls.webp",
|
|
1012
|
+
phone_code: "266",
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
name: "Liberia",
|
|
1016
|
+
code: "LR",
|
|
1017
|
+
currency: "LRD",
|
|
1018
|
+
continent: "Africa",
|
|
1019
|
+
flag: "https://flagpedia.net/data/flags/h80/lr.webp",
|
|
1020
|
+
phone_code: "231",
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
name: "Libya",
|
|
1024
|
+
code: "LY",
|
|
1025
|
+
currency: "LYD",
|
|
1026
|
+
continent: "Africa",
|
|
1027
|
+
flag: "https://flagpedia.net/data/flags/h80/ly.webp",
|
|
1028
|
+
phone_code: "218",
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
name: "Liechtenstein",
|
|
1032
|
+
code: "LI",
|
|
1033
|
+
currency: "CHF",
|
|
1034
|
+
continent: "Europe",
|
|
1035
|
+
flag: "https://flagpedia.net/data/flags/h80/li.webp",
|
|
1036
|
+
phone_code: "423",
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
name: "Lithuania",
|
|
1040
|
+
code: "LT",
|
|
1041
|
+
currency: "EUR",
|
|
1042
|
+
continent: "Europe",
|
|
1043
|
+
flag: "https://flagpedia.net/data/flags/h80/lt.webp",
|
|
1044
|
+
phone_code: "370",
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
name: "Luxembourg",
|
|
1048
|
+
code: "LU",
|
|
1049
|
+
currency: "EUR",
|
|
1050
|
+
continent: "Europe",
|
|
1051
|
+
flag: "https://flagpedia.net/data/flags/h80/lu.webp",
|
|
1052
|
+
phone_code: "352",
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
name: "Macau",
|
|
1056
|
+
code: "MO",
|
|
1057
|
+
currency: "MOP",
|
|
1058
|
+
continent: "Asia",
|
|
1059
|
+
flag: "https://flagpedia.net/data/flags/h80/mo.webp",
|
|
1060
|
+
phone_code: "853",
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
name: "Madagascar",
|
|
1064
|
+
code: "MG",
|
|
1065
|
+
currency: "MGA",
|
|
1066
|
+
continent: "Africa",
|
|
1067
|
+
flag: "https://flagpedia.net/data/flags/h80/mg.webp",
|
|
1068
|
+
phone_code: "261",
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
name: "Malawi",
|
|
1072
|
+
code: "MW",
|
|
1073
|
+
currency: "MWK",
|
|
1074
|
+
continent: "Africa",
|
|
1075
|
+
flag: "https://flagpedia.net/data/flags/h80/mw.webp",
|
|
1076
|
+
phone_code: "265",
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
name: "Malaysia",
|
|
1080
|
+
code: "MY",
|
|
1081
|
+
currency: "MYR",
|
|
1082
|
+
continent: "Asia",
|
|
1083
|
+
flag: "https://flagpedia.net/data/flags/h80/my.webp",
|
|
1084
|
+
phone_code: "60",
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
name: "Maldives",
|
|
1088
|
+
code: "MV",
|
|
1089
|
+
currency: "MVR",
|
|
1090
|
+
continent: "Asia",
|
|
1091
|
+
flag: "https://flagpedia.net/data/flags/h80/mv.webp",
|
|
1092
|
+
phone_code: "960",
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
name: "Mali",
|
|
1096
|
+
code: "ML",
|
|
1097
|
+
currency: "XOF",
|
|
1098
|
+
continent: "Africa",
|
|
1099
|
+
flag: "https://flagpedia.net/data/flags/h80/ml.webp",
|
|
1100
|
+
phone_code: "223",
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
name: "Malta",
|
|
1104
|
+
code: "MT",
|
|
1105
|
+
currency: "EUR",
|
|
1106
|
+
continent: "Europe",
|
|
1107
|
+
flag: "https://flagpedia.net/data/flags/h80/mt.webp",
|
|
1108
|
+
phone_code: "356",
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
name: "Marshall Islands",
|
|
1112
|
+
code: "MH",
|
|
1113
|
+
currency: "USD",
|
|
1114
|
+
continent: "Oceania",
|
|
1115
|
+
flag: "https://flagpedia.net/data/flags/h80/mh.webp",
|
|
1116
|
+
phone_code: "692",
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
name: "Martinique",
|
|
1120
|
+
code: "MQ",
|
|
1121
|
+
currency: "EUR",
|
|
1122
|
+
continent: "North America",
|
|
1123
|
+
flag: "https://flagpedia.net/data/flags/h80/mq.webp",
|
|
1124
|
+
phone_code: "596",
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
name: "Mauritania",
|
|
1128
|
+
code: "MR",
|
|
1129
|
+
currency: "MRU",
|
|
1130
|
+
continent: "Africa",
|
|
1131
|
+
flag: "https://flagpedia.net/data/flags/h80/mr.webp",
|
|
1132
|
+
phone_code: "222",
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
name: "Mauritius",
|
|
1136
|
+
code: "MU",
|
|
1137
|
+
currency: "MUR",
|
|
1138
|
+
continent: "Africa",
|
|
1139
|
+
flag: "https://flagpedia.net/data/flags/h80/mu.webp",
|
|
1140
|
+
phone_code: "230",
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
name: "Mayotte",
|
|
1144
|
+
code: "YT",
|
|
1145
|
+
currency: "EUR",
|
|
1146
|
+
continent: "Africa",
|
|
1147
|
+
flag: "https://flagpedia.net/data/flags/h80/yt.webp",
|
|
1148
|
+
phone_code: "269",
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
name: "Mexico",
|
|
1152
|
+
code: "MX",
|
|
1153
|
+
currency: "MXN",
|
|
1154
|
+
continent: "North America",
|
|
1155
|
+
flag: "https://flagpedia.net/data/flags/h80/mx.webp",
|
|
1156
|
+
phone_code: "52",
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
name: "Micronesia",
|
|
1160
|
+
code: "FM",
|
|
1161
|
+
currency: "USD",
|
|
1162
|
+
continent: "Oceania",
|
|
1163
|
+
flag: "https://flagpedia.net/data/flags/h80/fm.webp",
|
|
1164
|
+
phone_code: "691",
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
name: "Moldova",
|
|
1168
|
+
code: "MD",
|
|
1169
|
+
currency: "MDL",
|
|
1170
|
+
continent: "Europe",
|
|
1171
|
+
flag: "https://flagpedia.net/data/flags/h80/md.webp",
|
|
1172
|
+
phone_code: "373",
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
name: "Monaco",
|
|
1176
|
+
code: "MC",
|
|
1177
|
+
currency: "EUR",
|
|
1178
|
+
continent: "Europe",
|
|
1179
|
+
flag: "https://flagpedia.net/data/flags/h80/mc.webp",
|
|
1180
|
+
phone_code: "377",
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
name: "Mongolia",
|
|
1184
|
+
code: "MN",
|
|
1185
|
+
currency: "MNT",
|
|
1186
|
+
continent: "Asia",
|
|
1187
|
+
flag: "https://flagpedia.net/data/flags/h80/mn.webp",
|
|
1188
|
+
phone_code: "976",
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
name: "Montenegro",
|
|
1192
|
+
code: "ME",
|
|
1193
|
+
currency: "EUR",
|
|
1194
|
+
continent: "Europe",
|
|
1195
|
+
flag: "https://flagpedia.net/data/flags/h80/me.webp",
|
|
1196
|
+
phone_code: "382",
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
name: "Montserrat",
|
|
1200
|
+
code: "MS",
|
|
1201
|
+
currency: "XCD",
|
|
1202
|
+
continent: "North America",
|
|
1203
|
+
flag: "https://flagpedia.net/data/flags/h80/ms.webp",
|
|
1204
|
+
phone_code: "1-664",
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
name: "Morocco",
|
|
1208
|
+
code: "MA",
|
|
1209
|
+
currency: "MAD",
|
|
1210
|
+
continent: "Africa",
|
|
1211
|
+
flag: "https://flagpedia.net/data/flags/h80/ma.webp",
|
|
1212
|
+
phone_code: "212",
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
name: "Mozambique",
|
|
1216
|
+
code: "MZ",
|
|
1217
|
+
currency: "MZN",
|
|
1218
|
+
continent: "Africa",
|
|
1219
|
+
flag: "https://flagpedia.net/data/flags/h80/mz.webp",
|
|
1220
|
+
phone_code: "258",
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
name: "Myanmar",
|
|
1224
|
+
code: "MM",
|
|
1225
|
+
currency: "MMK",
|
|
1226
|
+
continent: "Asia",
|
|
1227
|
+
flag: "https://flagpedia.net/data/flags/h80/mm.webp",
|
|
1228
|
+
phone_code: "95",
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
name: "Namibia",
|
|
1232
|
+
code: "NA",
|
|
1233
|
+
currency: "NAD",
|
|
1234
|
+
continent: "Africa",
|
|
1235
|
+
flag: "https://flagpedia.net/data/flags/h80/na.webp",
|
|
1236
|
+
phone_code: "264",
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
name: "Nauru",
|
|
1240
|
+
code: "NR",
|
|
1241
|
+
currency: "AUD",
|
|
1242
|
+
continent: "Oceania",
|
|
1243
|
+
flag: "https://flagpedia.net/data/flags/h80/nr.webp",
|
|
1244
|
+
phone_code: "674",
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
name: "Nepal",
|
|
1248
|
+
code: "NP",
|
|
1249
|
+
currency: "NPR",
|
|
1250
|
+
continent: "Asia",
|
|
1251
|
+
flag: "https://flagpedia.net/data/flags/h80/np.webp",
|
|
1252
|
+
phone_code: "977",
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
name: "Netherlands",
|
|
1256
|
+
code: "NL",
|
|
1257
|
+
currency: "EUR",
|
|
1258
|
+
continent: "Europe",
|
|
1259
|
+
flag: "https://flagpedia.net/data/flags/h80/nl.webp",
|
|
1260
|
+
phone_code: "31",
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
name: "New Caledonia",
|
|
1264
|
+
code: "NC",
|
|
1265
|
+
currency: "XPF",
|
|
1266
|
+
continent: "Oceania",
|
|
1267
|
+
flag: "https://flagpedia.net/data/flags/h80/nc.webp",
|
|
1268
|
+
phone_code: "687",
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
name: "New Zealand",
|
|
1272
|
+
code: "NZ",
|
|
1273
|
+
currency: "NZD",
|
|
1274
|
+
continent: "Oceania",
|
|
1275
|
+
flag: "https://flagpedia.net/data/flags/h80/nz.webp",
|
|
1276
|
+
phone_code: "64",
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
name: "Nicaragua",
|
|
1280
|
+
code: "NI",
|
|
1281
|
+
currency: "NIO",
|
|
1282
|
+
continent: "North America",
|
|
1283
|
+
flag: "https://flagpedia.net/data/flags/h80/ni.webp",
|
|
1284
|
+
phone_code: "505",
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
name: "Niger",
|
|
1288
|
+
code: "NE",
|
|
1289
|
+
currency: "NGN",
|
|
1290
|
+
continent: "Africa",
|
|
1291
|
+
flag: "https://flagpedia.net/data/flags/h80/ne.webp",
|
|
1292
|
+
phone_code: "227",
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
name: "Nigeria",
|
|
1296
|
+
code: "NG",
|
|
1297
|
+
currency: "NGN",
|
|
1298
|
+
continent: "Africa",
|
|
1299
|
+
flag: "https://flagpedia.net/data/flags/h80/ng.webp",
|
|
1300
|
+
phone_code: "234",
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
name: "Niue",
|
|
1304
|
+
code: "NU",
|
|
1305
|
+
currency: "NZD",
|
|
1306
|
+
continent: "Oceania",
|
|
1307
|
+
flag: "https://flagpedia.net/data/flags/h80/nu.webp",
|
|
1308
|
+
phone_code: "683",
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
name: "Norfolk Island",
|
|
1312
|
+
code: "NF",
|
|
1313
|
+
currency: "AUD",
|
|
1314
|
+
continent: "Oceania",
|
|
1315
|
+
flag: "https://flagpedia.net/data/flags/h80/nf.webp",
|
|
1316
|
+
phone_code: "672",
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
name: "North Macedonia",
|
|
1320
|
+
code: "MK",
|
|
1321
|
+
currency: "MKD",
|
|
1322
|
+
continent: "Europe",
|
|
1323
|
+
flag: "https://flagpedia.net/data/flags/h80/mk.webp",
|
|
1324
|
+
phone_code: "389",
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
name: "Northern Mariana Islands",
|
|
1328
|
+
code: "MP",
|
|
1329
|
+
currency: "USD",
|
|
1330
|
+
continent: "Oceania",
|
|
1331
|
+
flag: "https://flagpedia.net/data/flags/h80/mp.webp",
|
|
1332
|
+
phone_code: "1-670",
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
name: "Norway",
|
|
1336
|
+
code: "NO",
|
|
1337
|
+
currency: "NOK",
|
|
1338
|
+
continent: "Europe",
|
|
1339
|
+
flag: "https://flagpedia.net/data/flags/h80/no.webp",
|
|
1340
|
+
phone_code: "47",
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
name: "Oman",
|
|
1344
|
+
code: "OM",
|
|
1345
|
+
currency: "OMR",
|
|
1346
|
+
continent: "Asia",
|
|
1347
|
+
flag: "https://flagpedia.net/data/flags/h80/om.webp",
|
|
1348
|
+
phone_code: "968",
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
name: "Pakistan",
|
|
1352
|
+
code: "PK",
|
|
1353
|
+
currency: "PKR",
|
|
1354
|
+
continent: "Asia",
|
|
1355
|
+
flag: "https://flagpedia.net/data/flags/h80/pk.webp",
|
|
1356
|
+
phone_code: "92",
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
name: "Palau",
|
|
1360
|
+
code: "PW",
|
|
1361
|
+
currency: "USD",
|
|
1362
|
+
continent: "Oceania",
|
|
1363
|
+
flag: "https://flagpedia.net/data/flags/h80/pw.webp",
|
|
1364
|
+
phone_code: "680",
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
name: "Panama",
|
|
1368
|
+
code: "PA",
|
|
1369
|
+
currency: "PAB",
|
|
1370
|
+
continent: "North America",
|
|
1371
|
+
flag: "https://flagpedia.net/data/flags/h80/pa.webp",
|
|
1372
|
+
phone_code: "507",
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
name: "Papua New Guinea",
|
|
1376
|
+
code: "PG",
|
|
1377
|
+
currency: "PGK",
|
|
1378
|
+
continent: "Oceania",
|
|
1379
|
+
flag: "https://flagpedia.net/data/flags/h80/pg.webp",
|
|
1380
|
+
phone_code: "675",
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
name: "Paraguay",
|
|
1384
|
+
code: "PY",
|
|
1385
|
+
currency: "PYG",
|
|
1386
|
+
continent: "South America",
|
|
1387
|
+
flag: "https://flagpedia.net/data/flags/h80/py.webp",
|
|
1388
|
+
phone_code: "595",
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
name: "Peru",
|
|
1392
|
+
code: "PE",
|
|
1393
|
+
currency: "PEN",
|
|
1394
|
+
continent: "South America",
|
|
1395
|
+
flag: "https://flagpedia.net/data/flags/h80/pe.webp",
|
|
1396
|
+
phone_code: "51",
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
name: "Philippines",
|
|
1400
|
+
code: "PH",
|
|
1401
|
+
currency: "PHP",
|
|
1402
|
+
continent: "Asia",
|
|
1403
|
+
flag: "https://flagpedia.net/data/flags/h80/ph.webp",
|
|
1404
|
+
phone_code: "63",
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
name: "Pitcairn Islands",
|
|
1408
|
+
code: "PN",
|
|
1409
|
+
currency: "NZD",
|
|
1410
|
+
continent: "Oceania",
|
|
1411
|
+
flag: "https://flagpedia.net/data/flags/h80/pn.webp",
|
|
1412
|
+
phone_code: "64",
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
name: "Poland",
|
|
1416
|
+
code: "PL",
|
|
1417
|
+
currency: "PLN",
|
|
1418
|
+
continent: "Europe",
|
|
1419
|
+
flag: "https://flagpedia.net/data/flags/h80/pl.webp",
|
|
1420
|
+
phone_code: "48",
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
name: "Portugal",
|
|
1424
|
+
code: "PT",
|
|
1425
|
+
currency: "EUR",
|
|
1426
|
+
continent: "Europe",
|
|
1427
|
+
flag: "https://flagpedia.net/data/flags/h80/pt.webp",
|
|
1428
|
+
phone_code: "351",
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
name: "Puerto Rico",
|
|
1432
|
+
code: "PR",
|
|
1433
|
+
currency: "USD",
|
|
1434
|
+
continent: "North America",
|
|
1435
|
+
flag: "https://flagpedia.net/data/flags/h80/pr.webp",
|
|
1436
|
+
phone_code: "1-787",
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
name: "Qatar",
|
|
1440
|
+
code: "QA",
|
|
1441
|
+
currency: "QAR",
|
|
1442
|
+
continent: "Asia",
|
|
1443
|
+
flag: "https://flagpedia.net/data/flags/h80/qa.webp",
|
|
1444
|
+
phone_code: "974",
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
name: "Romania",
|
|
1448
|
+
code: "RO",
|
|
1449
|
+
currency: "RON",
|
|
1450
|
+
continent: "Europe",
|
|
1451
|
+
flag: "https://flagpedia.net/data/flags/h80/ro.webp",
|
|
1452
|
+
phone_code: "40",
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
name: "Russia",
|
|
1456
|
+
code: "RU",
|
|
1457
|
+
currency: "RUB",
|
|
1458
|
+
continent: "Europe",
|
|
1459
|
+
flag: "https://flagpedia.net/data/flags/h80/ru.webp",
|
|
1460
|
+
phone_code: "7",
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
name: "Rwanda",
|
|
1464
|
+
code: "RW",
|
|
1465
|
+
currency: "RWF",
|
|
1466
|
+
continent: "Africa",
|
|
1467
|
+
flag: "https://flagpedia.net/data/flags/h80/rw.webp",
|
|
1468
|
+
phone_code: "250",
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
name: "Saint Barthélemy",
|
|
1472
|
+
code: "BL",
|
|
1473
|
+
currency: "EUR",
|
|
1474
|
+
continent: "North America",
|
|
1475
|
+
flag: "https://flagpedia.net/data/flags/h80/bl.webp",
|
|
1476
|
+
phone_code: "590",
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
name: "Saint Helena",
|
|
1480
|
+
code: "SH",
|
|
1481
|
+
currency: "SHP",
|
|
1482
|
+
continent: "Africa",
|
|
1483
|
+
flag: "https://flagpedia.net/data/flags/h80/sh.webp",
|
|
1484
|
+
phone_code: "290",
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
name: "Saint Kitts and Nevis",
|
|
1488
|
+
code: "KN",
|
|
1489
|
+
currency: "XCD",
|
|
1490
|
+
continent: "North America",
|
|
1491
|
+
flag: "https://flagpedia.net/data/flags/h80/kn.webp",
|
|
1492
|
+
phone_code: "1-869",
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
name: "Saint Lucia",
|
|
1496
|
+
code: "LC",
|
|
1497
|
+
currency: "XCD",
|
|
1498
|
+
continent: "North America",
|
|
1499
|
+
flag: "https://flagpedia.net/data/flags/h80/lc.webp",
|
|
1500
|
+
phone_code: "1-758",
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
name: "Saint Martin",
|
|
1504
|
+
code: "MF",
|
|
1505
|
+
currency: "EUR",
|
|
1506
|
+
continent: "North America",
|
|
1507
|
+
flag: "https://flagpedia.net/data/flags/h80/mf.webp",
|
|
1508
|
+
phone_code: "590",
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
name: "Saint Pierre and Miquelon",
|
|
1512
|
+
code: "PM",
|
|
1513
|
+
currency: "EUR",
|
|
1514
|
+
continent: "North America",
|
|
1515
|
+
flag: "https://flagpedia.net/data/flags/h80/pm.webp",
|
|
1516
|
+
phone_code: "508",
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
name: "Saint Vincent and the Grenadines",
|
|
1520
|
+
code: "VC",
|
|
1521
|
+
currency: "XCD",
|
|
1522
|
+
continent: "North America",
|
|
1523
|
+
flag: "https://flagpedia.net/data/flags/h80/vc.webp",
|
|
1524
|
+
phone_code: "1-784",
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
name: "Samoa",
|
|
1528
|
+
code: "WS",
|
|
1529
|
+
currency: "WST",
|
|
1530
|
+
continent: "Oceania",
|
|
1531
|
+
flag: "https://flagpedia.net/data/flags/h80/ws.webp",
|
|
1532
|
+
phone_code: "685",
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
name: "San Marino",
|
|
1536
|
+
code: "SM",
|
|
1537
|
+
currency: "EUR",
|
|
1538
|
+
continent: "Europe",
|
|
1539
|
+
flag: "https://flagpedia.net/data/flags/h80/sm.webp",
|
|
1540
|
+
phone_code: "378",
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
name: "Sao Tome and Principe",
|
|
1544
|
+
code: "ST",
|
|
1545
|
+
currency: "STN",
|
|
1546
|
+
continent: "Africa",
|
|
1547
|
+
flag: "https://flagpedia.net/data/flags/h80/st.webp",
|
|
1548
|
+
phone_code: "239",
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
name: "Saudi Arabia",
|
|
1552
|
+
code: "SA",
|
|
1553
|
+
currency: "SAR",
|
|
1554
|
+
continent: "Asia",
|
|
1555
|
+
flag: "https://flagpedia.net/data/flags/h80/sa.webp",
|
|
1556
|
+
phone_code: "966",
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
name: "Senegal",
|
|
1560
|
+
code: "SN",
|
|
1561
|
+
currency: "XOF",
|
|
1562
|
+
continent: "Africa",
|
|
1563
|
+
flag: "https://flagpedia.net/data/flags/h80/sn.webp",
|
|
1564
|
+
phone_code: "221",
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
name: "Serbia",
|
|
1568
|
+
code: "RS",
|
|
1569
|
+
currency: "RSD",
|
|
1570
|
+
continent: "Europe",
|
|
1571
|
+
flag: "https://flagpedia.net/data/flags/h80/rs.webp",
|
|
1572
|
+
phone_code: "381",
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
name: "Seychelles",
|
|
1576
|
+
code: "SC",
|
|
1577
|
+
currency: "SCR",
|
|
1578
|
+
continent: "Africa",
|
|
1579
|
+
flag: "https://flagpedia.net/data/flags/h80/sc.webp",
|
|
1580
|
+
phone_code: "248",
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
name: "Sierra Leone",
|
|
1584
|
+
code: "SL",
|
|
1585
|
+
currency: "SLL",
|
|
1586
|
+
continent: "Africa",
|
|
1587
|
+
flag: "https://flagpedia.net/data/flags/h80/sl.webp",
|
|
1588
|
+
phone_code: "232",
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
name: "Singapore",
|
|
1592
|
+
code: "SG",
|
|
1593
|
+
currency: "SGD",
|
|
1594
|
+
continent: "Asia",
|
|
1595
|
+
flag: "https://flagpedia.net/data/flags/h80/sg.webp",
|
|
1596
|
+
phone_code: "65",
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
name: "Sint Eustatius",
|
|
1600
|
+
code: "SX",
|
|
1601
|
+
currency: "USD",
|
|
1602
|
+
continent: "North America",
|
|
1603
|
+
flag: "https://flagpedia.net/data/flags/h80/sx.webp",
|
|
1604
|
+
phone_code: "599",
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
name: "Sint Maarten",
|
|
1608
|
+
code: "SM",
|
|
1609
|
+
currency: "ANG",
|
|
1610
|
+
continent: "North America",
|
|
1611
|
+
flag: "https://flagpedia.net/data/flags/h80/sm.webp",
|
|
1612
|
+
phone_code: "1-721",
|
|
1613
|
+
},
|
|
1614
|
+
{
|
|
1615
|
+
name: "Slovakia",
|
|
1616
|
+
code: "SK",
|
|
1617
|
+
currency: "EUR",
|
|
1618
|
+
continent: "Europe",
|
|
1619
|
+
flag: "https://flagpedia.net/data/flags/h80/sk.webp",
|
|
1620
|
+
phone_code: "421",
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
name: "Slovenia",
|
|
1624
|
+
code: "SI",
|
|
1625
|
+
currency: "EUR",
|
|
1626
|
+
continent: "Europe",
|
|
1627
|
+
flag: "https://flagpedia.net/data/flags/h80/si.webp",
|
|
1628
|
+
phone_code: "386",
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
name: "Solomon Islands",
|
|
1632
|
+
code: "SB",
|
|
1633
|
+
currency: "SBD",
|
|
1634
|
+
continent: "Oceania",
|
|
1635
|
+
flag: "https://flagpedia.net/data/flags/h80/sb.webp",
|
|
1636
|
+
phone_code: "677",
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
name: "Somalia",
|
|
1640
|
+
code: "SO",
|
|
1641
|
+
currency: "SOS",
|
|
1642
|
+
continent: "Africa",
|
|
1643
|
+
flag: "https://flagpedia.net/data/flags/h80/so.webp",
|
|
1644
|
+
phone_code: "252",
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
name: "South Africa",
|
|
1648
|
+
code: "ZA",
|
|
1649
|
+
currency: "ZAR",
|
|
1650
|
+
continent: "Africa",
|
|
1651
|
+
flag: "https://flagpedia.net/data/flags/h80/za.webp",
|
|
1652
|
+
phone_code: "27",
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
name: "South Georgia and the South Sandwich Islands",
|
|
1656
|
+
code: "GS",
|
|
1657
|
+
currency: "GBP",
|
|
1658
|
+
continent: "Antarctica",
|
|
1659
|
+
flag: "https://flagpedia.net/data/flags/h80/gs.webp",
|
|
1660
|
+
phone_code: "500",
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
name: "South Sudan",
|
|
1664
|
+
code: "SS",
|
|
1665
|
+
currency: "SSP",
|
|
1666
|
+
continent: "Africa",
|
|
1667
|
+
flag: "https://flagpedia.net/data/flags/h80/ss.webp",
|
|
1668
|
+
phone_code: "211",
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
name: "Spain",
|
|
1672
|
+
code: "ES",
|
|
1673
|
+
currency: "EUR",
|
|
1674
|
+
continent: "Europe",
|
|
1675
|
+
flag: "https://flagpedia.net/data/flags/h80/es.webp",
|
|
1676
|
+
phone_code: "34",
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
name: "Sri Lanka",
|
|
1680
|
+
code: "LK",
|
|
1681
|
+
currency: "LKR",
|
|
1682
|
+
continent: "Asia",
|
|
1683
|
+
flag: "https://flagpedia.net/data/flags/h80/lk.webp",
|
|
1684
|
+
phone_code: "94",
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
name: "Sudan",
|
|
1688
|
+
code: "SD",
|
|
1689
|
+
currency: "SDG",
|
|
1690
|
+
continent: "Africa",
|
|
1691
|
+
flag: "https://flagpedia.net/data/flags/h80/sd.webp",
|
|
1692
|
+
phone_code: "249",
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
name: "Suriname",
|
|
1696
|
+
code: "SR",
|
|
1697
|
+
currency: "SRD",
|
|
1698
|
+
continent: "South America",
|
|
1699
|
+
flag: "https://flagpedia.net/data/flags/h80/sr.webp",
|
|
1700
|
+
phone_code: "597",
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
name: "Svalbard and Jan Mayen",
|
|
1704
|
+
code: "SJ",
|
|
1705
|
+
currency: "NOK",
|
|
1706
|
+
continent: "Europe",
|
|
1707
|
+
flag: "https://flagpedia.net/data/flags/h80/sj.webp",
|
|
1708
|
+
phone_code: "47",
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
name: "Sweden",
|
|
1712
|
+
code: "SE",
|
|
1713
|
+
currency: "SEK",
|
|
1714
|
+
continent: "Europe",
|
|
1715
|
+
flag: "https://flagpedia.net/data/flags/h80/se.webp",
|
|
1716
|
+
phone_code: "46",
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
name: "Switzerland",
|
|
1720
|
+
code: "CH",
|
|
1721
|
+
currency: "CHF",
|
|
1722
|
+
continent: "Europe",
|
|
1723
|
+
flag: "https://flagpedia.net/data/flags/h80/ch.webp",
|
|
1724
|
+
phone_code: "41",
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
name: "Syria",
|
|
1728
|
+
code: "SY",
|
|
1729
|
+
currency: "SYP",
|
|
1730
|
+
continent: "Asia",
|
|
1731
|
+
flag: "https://flagpedia.net/data/flags/h80/sy.webp",
|
|
1732
|
+
phone_code: "963",
|
|
1733
|
+
},
|
|
1734
|
+
{
|
|
1735
|
+
name: "Taiwan",
|
|
1736
|
+
code: "TW",
|
|
1737
|
+
currency: "TWD",
|
|
1738
|
+
continent: "Asia",
|
|
1739
|
+
flag: "https://flagpedia.net/data/flags/h80/tw.webp",
|
|
1740
|
+
phone_code: "886",
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
name: "Tajikistan",
|
|
1744
|
+
code: "TJ",
|
|
1745
|
+
currency: "TJS",
|
|
1746
|
+
continent: "Asia",
|
|
1747
|
+
flag: "https://flagpedia.net/data/flags/h80/tj.webp",
|
|
1748
|
+
phone_code: "992",
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
name: "Tanzania",
|
|
1752
|
+
code: "TZ",
|
|
1753
|
+
currency: "TZS",
|
|
1754
|
+
continent: "Africa",
|
|
1755
|
+
flag: "https://flagpedia.net/data/flags/h80/tz.webp",
|
|
1756
|
+
phone_code: "255",
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
name: "Thailand",
|
|
1760
|
+
code: "TH",
|
|
1761
|
+
currency: "THB",
|
|
1762
|
+
continent: "Asia",
|
|
1763
|
+
flag: "https://flagpedia.net/data/flags/h80/th.webp",
|
|
1764
|
+
phone_code: "66",
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
name: "Timor-Leste",
|
|
1768
|
+
code: "TL",
|
|
1769
|
+
currency: "USD",
|
|
1770
|
+
continent: "Asia",
|
|
1771
|
+
flag: "https://flagpedia.net/data/flags/h80/tl.webp",
|
|
1772
|
+
phone_code: "670",
|
|
1773
|
+
},
|
|
1774
|
+
{
|
|
1775
|
+
name: "Togo",
|
|
1776
|
+
code: "TG",
|
|
1777
|
+
currency: "XOF",
|
|
1778
|
+
continent: "Africa",
|
|
1779
|
+
flag: "https://flagpedia.net/data/flags/h80/tg.webp",
|
|
1780
|
+
phone_code: "228",
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
name: "Tokelau",
|
|
1784
|
+
code: "TK",
|
|
1785
|
+
currency: "NZD",
|
|
1786
|
+
continent: "Oceania",
|
|
1787
|
+
flag: "https://flagpedia.net/data/flags/h80/tk.webp",
|
|
1788
|
+
phone_code: "690",
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
name: "Tonga",
|
|
1792
|
+
code: "TO",
|
|
1793
|
+
currency: "TOP",
|
|
1794
|
+
continent: "Oceania",
|
|
1795
|
+
flag: "https://flagpedia.net/data/flags/h80/to.webp",
|
|
1796
|
+
phone_code: "676",
|
|
1797
|
+
},
|
|
1798
|
+
{
|
|
1799
|
+
name: "Trinidad and Tobago",
|
|
1800
|
+
code: "TT",
|
|
1801
|
+
currency: "TTD",
|
|
1802
|
+
continent: "North America",
|
|
1803
|
+
flag: "https://flagpedia.net/data/flags/h80/tt.webp",
|
|
1804
|
+
phone_code: "1-868",
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
name: "Tunisia",
|
|
1808
|
+
code: "TN",
|
|
1809
|
+
currency: "TND",
|
|
1810
|
+
continent: "Africa",
|
|
1811
|
+
flag: "https://flagpedia.net/data/flags/h80/tn.webp",
|
|
1812
|
+
phone_code: "216",
|
|
1813
|
+
},
|
|
1814
|
+
{
|
|
1815
|
+
name: "Turkey",
|
|
1816
|
+
code: "TR",
|
|
1817
|
+
currency: "TRY",
|
|
1818
|
+
continent: "Asia",
|
|
1819
|
+
flag: "https://flagpedia.net/data/flags/h80/tr.webp",
|
|
1820
|
+
phone_code: "90",
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
name: "Turkmenistan",
|
|
1824
|
+
code: "TM",
|
|
1825
|
+
currency: "TMT",
|
|
1826
|
+
continent: "Asia",
|
|
1827
|
+
flag: "https://flagpedia.net/data/flags/h80/tm.webp",
|
|
1828
|
+
phone_code: "993",
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
name: "Tuvalu",
|
|
1832
|
+
code: "TV",
|
|
1833
|
+
currency: "AUD",
|
|
1834
|
+
continent: "Oceania",
|
|
1835
|
+
flag: "https://flagpedia.net/data/flags/h80/tv.webp",
|
|
1836
|
+
phone_code: "688",
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
name: "Uganda",
|
|
1840
|
+
code: "UG",
|
|
1841
|
+
currency: "UGX",
|
|
1842
|
+
continent: "Africa",
|
|
1843
|
+
flag: "https://flagpedia.net/data/flags/h80/ug.webp",
|
|
1844
|
+
phone_code: "256",
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
name: "Ukraine",
|
|
1848
|
+
code: "UA",
|
|
1849
|
+
currency: "UAH",
|
|
1850
|
+
continent: "Europe",
|
|
1851
|
+
flag: "https://flagpedia.net/data/flags/h80/ua.webp",
|
|
1852
|
+
phone_code: "380",
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
name: "United Arab Emirates",
|
|
1856
|
+
code: "AE",
|
|
1857
|
+
currency: "AED",
|
|
1858
|
+
continent: "Asia",
|
|
1859
|
+
flag: "https://flagpedia.net/data/flags/h80/ae.webp",
|
|
1860
|
+
phone_code: "971",
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
name: "United Kingdom",
|
|
1864
|
+
code: "GB",
|
|
1865
|
+
currency: "GBP",
|
|
1866
|
+
continent: "Europe",
|
|
1867
|
+
flag: "https://flagpedia.net/data/flags/h80/gb.webp",
|
|
1868
|
+
phone_code: "44",
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
name: "United States",
|
|
1872
|
+
code: "US",
|
|
1873
|
+
currency: "USD",
|
|
1874
|
+
continent: "North America",
|
|
1875
|
+
flag: "https://flagpedia.net/data/flags/h80/us.webp",
|
|
1876
|
+
phone_code: "1",
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
name: "Uruguay",
|
|
1880
|
+
code: "UY",
|
|
1881
|
+
currency: "UYU",
|
|
1882
|
+
continent: "South America",
|
|
1883
|
+
flag: "https://flagpedia.net/data/flags/h80/uy.webp",
|
|
1884
|
+
phone_code: "598",
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
name: "Uzbekistan",
|
|
1888
|
+
code: "UZ",
|
|
1889
|
+
currency: "UZS",
|
|
1890
|
+
continent: "Asia",
|
|
1891
|
+
flag: "https://flagpedia.net/data/flags/h80/uz.webp",
|
|
1892
|
+
phone_code: "998",
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
name: "Vanuatu",
|
|
1896
|
+
code: "VU",
|
|
1897
|
+
currency: "VUV",
|
|
1898
|
+
continent: "Oceania",
|
|
1899
|
+
flag: "https://flagpedia.net/data/flags/h80/vu.webp",
|
|
1900
|
+
phone_code: "678",
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
name: "Vatican City",
|
|
1904
|
+
code: "VA",
|
|
1905
|
+
currency: "EUR",
|
|
1906
|
+
continent: "Europe",
|
|
1907
|
+
flag: "https://flagpedia.net/data/flags/h80/va.webp",
|
|
1908
|
+
phone_code: "379",
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
name: "Venezuela",
|
|
1912
|
+
code: "VE",
|
|
1913
|
+
currency: "VES",
|
|
1914
|
+
continent: "South America",
|
|
1915
|
+
flag: "https://flagpedia.net/data/flags/h80/ve.webp",
|
|
1916
|
+
phone_code: "58",
|
|
1917
|
+
},
|
|
1918
|
+
{
|
|
1919
|
+
name: "Vietnam",
|
|
1920
|
+
code: "VN",
|
|
1921
|
+
currency: "VND",
|
|
1922
|
+
continent: "Asia",
|
|
1923
|
+
flag: "https://flagpedia.net/data/flags/h80/vn.webp",
|
|
1924
|
+
phone_code: "84",
|
|
1925
|
+
},
|
|
1926
|
+
{
|
|
1927
|
+
name: "Wallis and Futuna",
|
|
1928
|
+
code: "WF",
|
|
1929
|
+
currency: "XPF",
|
|
1930
|
+
continent: "Oceania",
|
|
1931
|
+
flag: "https://flagpedia.net/data/flags/h80/wf.webp",
|
|
1932
|
+
phone_code: "681",
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
name: "Western Sahara",
|
|
1936
|
+
code: "EH",
|
|
1937
|
+
currency: "MAD",
|
|
1938
|
+
continent: "Africa",
|
|
1939
|
+
flag: "https://flagpedia.net/data/flags/h80/eh.webp",
|
|
1940
|
+
phone_code: "212",
|
|
1941
|
+
},
|
|
1942
|
+
{
|
|
1943
|
+
name: "Yemen",
|
|
1944
|
+
code: "YE",
|
|
1945
|
+
currency: "YER",
|
|
1946
|
+
continent: "Asia",
|
|
1947
|
+
flag: "https://flagpedia.net/data/flags/h80/ye.webp",
|
|
1948
|
+
phone_code: "967",
|
|
1949
|
+
},
|
|
1950
|
+
{
|
|
1951
|
+
name: "Zambia",
|
|
1952
|
+
code: "ZM",
|
|
1953
|
+
currency: "ZMW",
|
|
1954
|
+
continent: "Africa",
|
|
1955
|
+
flag: "https://flagpedia.net/data/flags/h80/zm.webp",
|
|
1956
|
+
phone_code: "260",
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
name: "Zimbabwe",
|
|
1960
|
+
code: "ZW",
|
|
1961
|
+
currency: "ZWL",
|
|
1962
|
+
continent: "Africa",
|
|
1963
|
+
flag: "https://flagpedia.net/data/flags/h80/zw.webp",
|
|
1964
|
+
phone_code: "263",
|
|
1965
|
+
},
|
|
1966
|
+
];
|