@studyportals/static-domain-data 6.3.1-2 → 6.5.0-beta.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/package.json CHANGED
@@ -1,54 +1,54 @@
1
- {
2
- "name": "@studyportals/static-domain-data",
3
- "version": "6.3.1-2",
4
- "exports": {
5
- "./*": "./src/*.js"
6
- },
7
- "typesVersions": {
8
- "*": {
9
- "*": [
10
- "./src/*"
11
- ]
12
- }
13
- },
14
- "description": "Package that allows to keep static data from SP domain (disciplines, countries...) in a centralized place",
15
- "scripts": {
16
- "test": "npm run compile-data && mocha \"test/**/*Test.ts\"",
17
- "prepare-deployment": "npm run compile-data && npm run build && cp package.json bin/package.json",
18
- "compile-data": "ts-node compile",
19
- "deploy-patch": "npm version patch && npm run deploy",
20
- "deploy-minor": "npm version minor && npm run deploy",
21
- "deploy-major": "npm version major && npm run deploy",
22
- "deploy": "npm run prepare-deployment && npm publish ./bin",
23
- "deploy-initial": "npm run prepare-deployment && npm publish ./bin --access=public",
24
- "deploy-beta": "npm version prerelease && npm run prepare-deployment && npm publish ./bin --tag beta --access=public",
25
- "build": "rm -rf bin && tsc && rm -rf bin/test"
26
- },
27
- "repository": {
28
- "type": "git",
29
- "url": "git+https://github.com/studyportals/static-domain-data.git"
30
- },
31
- "author": "SP - The Jedi Council",
32
- "license": "BSD-3-Clause",
33
- "bugs": {
34
- "url": "https://github.com/studyportals/static-domain-data/issues"
35
- },
36
- "homepage": "https://github.com/studyportals/static-domain-data#readme",
37
- "engines": {
38
- "npm": ">=10",
39
- "node": ">=20"
40
- },
41
- "devDependencies": {
42
- "@testdeck/mocha": "^0.1.2",
43
- "@types/chai": "^4.2.22",
44
- "@types/mocha": "^9.0.0",
45
- "chai": "^4.3.4",
46
- "mocha": "^9.1.3",
47
- "ts-node": "^10.4.0",
48
- "typemoq": "^2.1.0",
49
- "typescript": "^5.5.4"
50
- },
51
- "dependencies": {
52
- "@studyportals/multiselect": "^4.3.5"
53
- }
54
- }
1
+ {
2
+ "name": "@studyportals/static-domain-data",
3
+ "version": "6.5.0-beta.0",
4
+ "exports": {
5
+ "./*": "./src/*.js"
6
+ },
7
+ "typesVersions": {
8
+ "*": {
9
+ "*": [
10
+ "./src/*"
11
+ ]
12
+ }
13
+ },
14
+ "description": "Package that allows to keep static data from SP domain (disciplines, countries...) in a centralized place",
15
+ "scripts": {
16
+ "test": "npm run compile-data && mocha \"test/**/*Test.ts\"",
17
+ "prepare-deployment": "npm run compile-data && npm run build && cp package.json bin/package.json",
18
+ "compile-data": "ts-node compile",
19
+ "deploy-patch": "npm version patch && npm run deploy",
20
+ "deploy-minor": "npm version minor && npm run deploy",
21
+ "deploy-major": "npm version major && npm run deploy",
22
+ "deploy": "npm run prepare-deployment && npm publish ./bin",
23
+ "deploy-initial": "npm run prepare-deployment && npm publish ./bin --access=public",
24
+ "deploy-beta": "npm version prerelease && npm run prepare-deployment && npm publish ./bin --tag beta --access=public",
25
+ "build": "rm -rf bin && tsc && rm -rf bin/test"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/studyportals/static-domain-data.git"
30
+ },
31
+ "author": "SP - The Jedi Council",
32
+ "license": "BSD-3-Clause",
33
+ "bugs": {
34
+ "url": "https://github.com/studyportals/static-domain-data/issues"
35
+ },
36
+ "homepage": "https://github.com/studyportals/static-domain-data#readme",
37
+ "engines": {
38
+ "npm": ">=10",
39
+ "node": ">=20"
40
+ },
41
+ "devDependencies": {
42
+ "@testdeck/mocha": "^0.1.2",
43
+ "@types/chai": "^4.2.22",
44
+ "@types/mocha": "^9.0.0",
45
+ "chai": "^4.3.4",
46
+ "mocha": "^9.1.3",
47
+ "ts-node": "^10.4.0",
48
+ "typemoq": "^2.1.0",
49
+ "typescript": "^5.5.4"
50
+ },
51
+ "dependencies": {
52
+ "@studyportals/multiselect": "^4.3.5"
53
+ }
54
+ }
@@ -1,2 +1,2 @@
1
- declare const countryGetDemonym: (id: string) => string | null;
1
+ declare const countryGetDemonym: (id: string) => Promise<string | null>;
2
2
  export { countryGetDemonym };
@@ -1,238 +1,43 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
26
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27
+ return new (P || (P = Promise))(function (resolve, reject) {
28
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
29
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
30
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
31
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
32
+ });
33
+ };
2
34
  Object.defineProperty(exports, "__esModule", { value: true });
3
35
  exports.countryGetDemonym = void 0;
4
- const demonymById = new Map([
5
- ["1", "Dutch"],
6
- ["2", "Bulgarian"],
7
- ["3", "Austrian"],
8
- ["4", "Belgian"],
9
- ["5", "Cypriot"],
10
- ["6", "Danish"],
11
- ["7", "Czech"],
12
- ["8", "Estonian"],
13
- ["9", "Finnish"],
14
- ["10", "French"],
15
- ["11", "German"],
16
- ["12", "Hungarian"],
17
- ["13", "Icelander"],
18
- ["14", "Irish"],
19
- ["15", "Italian"],
20
- ["16", "Latvian"],
21
- ["17", "Lithuanian"],
22
- ["18", "Macedonian"],
23
- ["19", "Norwegian"],
24
- ["20", "Polish"],
25
- ["21", "Portuguese"],
26
- ["22", "Russian"],
27
- ["23", "Serbian"],
28
- ["24", "Spanish"],
29
- ["25", "Greek"],
30
- ["26", "Swedish"],
31
- ["27", "Swiss"],
32
- ["28", "Turkish"],
33
- ["29", "Ukrainian"],
34
- ["30", "British"],
35
- ["31", "Slovene"],
36
- ["33", "Romanian"],
37
- ["34", "Luxembourgish"],
38
- ["35", "Maltese"],
39
- ["36", "Monacan"],
40
- ["37", "Moldovan"],
41
- ["38", "Croatian"],
42
- ["39", "Montenegrin"],
43
- ["40", "Bosnian/Herzegovinian"],
44
- ["41", "Slovak"],
45
- ["42", "Albanian"],
46
- ["43", "Manx"],
47
- ["44", "Andorran"],
48
- ["45", "Belarusian"],
49
- ["46", "Faroese"],
50
- ["47", "Liechtensteiners"],
51
- ["48", "Sammarinese"],
52
- ["49", "Antiguan and Barbudan"],
53
- ["50", "Aruban"],
54
- ["51", "Bahamian"],
55
- ["52", "Barbadian"],
56
- ["53", "Belizean"],
57
- ["54", "Bermudian"],
58
- ["55", "British Virgin Islander"],
59
- ["56", "Canadian"],
60
- ["57", "Cayman Islander"],
61
- ["58", "Costa Rican"],
62
- ["59", "Cuban"],
63
- ["60", "Dominican"],
64
- ["61", "Dominican"],
65
- ["62", "Salvadoran"],
66
- ["63", "Greenlandic"],
67
- ["64", "Grenadian"],
68
- ["65", "Guadeloupean"],
69
- ["66", "Guatemalan"],
70
- ["67", "Haitian"],
71
- ["68", "Honduran"],
72
- ["69", "Jamaican"],
73
- ["70", "Martinican"],
74
- ["71", "Mexican"],
75
- ["72", "Montserratian"],
76
- ["74", "Nicaraguan"],
77
- ["75", "Panamanian"],
78
- ["76", "Puerto Rican"],
79
- ["77", "Kittitian and Nevisian"],
80
- ["78", "Saint Lucian"],
81
- ["79", "Pierrian and Miquelonnais"],
82
- ["80", "Vincentian and Grenadinian"],
83
- ["81", "Trinidadian/Tobagonian"],
84
- ["82", "American"],
85
- ["83", "Virgin Islander"],
86
- ["84", "Argentinian"],
87
- ["86", "Brazilian"],
88
- ["87", "Chilean"],
89
- ["88", "Colombian"],
90
- ["89", "Ecuadorian"],
91
- ["90", "French Guianan"],
92
- ["91", "Guyanese"],
93
- ["92", "Paraguayan"],
94
- ["93", "Peruvian"],
95
- ["94", "Surinamese"],
96
- ["95", "Uruguayan"],
97
- ["96", "Venezuelan"],
98
- ["97", "Afghan"],
99
- ["98", "Armenian"],
100
- ["99", "Azerbaijani"],
101
- ["100", "Bahraini"],
102
- ["101", "Bangladeshi"],
103
- ["102", "Bhutanese"],
104
- ["103", "Bruneian"],
105
- ["104", "Cambodian"],
106
- ["105", "Chinese"],
107
- ["106", "Georgian"],
108
- ["107", "Hong Konger"],
109
- ["108", "Indian"],
110
- ["109", "Indonesian"],
111
- ["110", "Iranian"],
112
- ["111", "Iraqi"],
113
- ["112", "Israeli"],
114
- ["113", "Japanese"],
115
- ["114", "Jordanian"],
116
- ["115", "Kazakhstani"],
117
- ["116", "North Korean"],
118
- ["117", "South Korean"],
119
- ["118", "Kuwaiti"],
120
- ["119", "Kyrgyz"],
121
- ["120", "Laotian"],
122
- ["121", "Lebanese"],
123
- ["122", "Macanese"],
124
- ["123", "Malaysian"],
125
- ["124", "Maldivian"],
126
- ["125", "Mongolian"],
127
- ["126", "Myanma"],
128
- ["127", "Nepali"],
129
- ["128", "Omani"],
130
- ["129", "Pakistani"],
131
- ["130", "Filipino"],
132
- ["131", "Qatari"],
133
- ["132", "Saudi Arabian"],
134
- ["133", "Singaporean"],
135
- ["134", "Sri Lankan"],
136
- ["135", "Syrian"],
137
- ["136", "Taiwanese"],
138
- ["137", "Tajikistani"],
139
- ["138", "Thai"],
140
- ["139", "Turkmen"],
141
- ["140", "Emirati"],
142
- ["141", "Uzbekistani"],
143
- ["142", "Vietnamese"],
144
- ["143", "Yemeni"],
145
- ["144", "Palestinian"],
146
- ["145", "Algerian"],
147
- ["146", "Angolan"],
148
- ["147", "Beninese"],
149
- ["148", "Botswanan"],
150
- ["149", "Burkinabè"],
151
- ["150", "Umurundi"],
152
- ["151", "Cameroonian"],
153
- ["152", "Cape Verdean"],
154
- ["153", "Central African"],
155
- ["154", "Chadian"],
156
- ["155", "Comorian"],
157
- ["156", "Congolese"],
158
- ["157", "Congolese"],
159
- ["158", "Ivorian"],
160
- ["159", "Djiboutian"],
161
- ["160", "Timorese"],
162
- ["161", "Egyptian"],
163
- ["162", "Equatoguinean"],
164
- ["163", "Eritrean"],
165
- ["164", "Ethiopian"],
166
- ["165", "Gabonese"],
167
- ["166", "Gambian"],
168
- ["167", "Ghanaian"],
169
- ["168", "Guinean"],
170
- ["169", "Bissau-Guinean"],
171
- ["170", "Kenyan"],
172
- ["171", "Mosotho"],
173
- ["172", "Liberian"],
174
- ["173", "Libyan"],
175
- ["174", "Malagasy"],
176
- ["175", "Malawian"],
177
- ["176", "Malinese"],
178
- ["177", "Mauritanian"],
179
- ["178", "Mauritian"],
180
- ["179", "Moroccan"],
181
- ["180", "Mozambican"],
182
- ["181", "Namibian"],
183
- ["182", "Nigerien"],
184
- ["183", "Nigerian"],
185
- ["184", "Réunionese"],
186
- ["185", "Rwandan"],
187
- ["186", "São Toméan"],
188
- ["187", "Senegalese"],
189
- ["188", "Seychellois"],
190
- ["189", "Sierra Leonean"],
191
- ["190", "Somalian"],
192
- ["191", "South African"],
193
- ["192", "Sudanese"],
194
- ["193", "Emaswati"],
195
- ["194", "Tanzanian"],
196
- ["195", "Togolese"],
197
- ["196", "Tunisian"],
198
- ["197", "Ugandan"],
199
- ["198", "Sahrawi"],
200
- ["199", "Zambian"],
201
- ["200", "Zimbabwean"],
202
- ["201", "American Somoan"],
203
- ["202", "Australian"],
204
- ["203", "Cook Islander"],
205
- ["204", "Fijian"],
206
- ["205", "French Polynesian"],
207
- ["206", "Guamanian"],
208
- ["207", "I-Kiribati"],
209
- ["208", "Marshallese"],
210
- ["209", "Micronesian"],
211
- ["210", "Nauruan"],
212
- ["211", "New Caledonian"],
213
- ["212", "New Zealander"],
214
- ["213", "Niuean"],
215
- ["214", "Northern Mariana Islander"],
216
- ["215", "Palauan"],
217
- ["216", "Papuan"],
218
- ["217", "Samoan"],
219
- ["218", "Solomon Islander"],
220
- ["219", "Tongan"],
221
- ["220", "Tuvaluan"],
222
- ["221", "Vanuatuan"],
223
- ["222", "Barthélemois"],
224
- ["223", "Sint Maartener"],
225
- ["224", "Anguillan"],
226
- ["225", "Curaçaoan"],
227
- ["226", "Turks and Caicos Islander"],
228
- ["227", "Bonaire Dutch"],
229
- ["229", "Turkish Cypriot"],
230
- ["230", "Kosovan"],
231
- ["233", "South Sudanese"],
232
- ]);
233
- const countryGetDemonym = (id) => {
36
+ const countryGetDemonym = (id) => __awaiter(void 0, void 0, void 0, function* () {
234
37
  var _a;
38
+ const { default: demonymArray } = yield Promise.resolve().then(() => __importStar(require('./demonyms.json')));
39
+ const demonymById = new Map(demonymArray.map(([id, name]) => [id, name]));
235
40
  return (_a = demonymById.get(id)) !== null && _a !== void 0 ? _a : null;
236
- };
41
+ });
237
42
  exports.countryGetDemonym = countryGetDemonym;
238
43
  //# sourceMappingURL=country-get-demonym.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"country-get-demonym.js","sourceRoot":"","sources":["../../../src/countries/country-get-demonym.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"country-get-demonym.js","sourceRoot":"","sources":["../../../src/countries/country-get-demonym.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,MAAM,iBAAiB,GAAG,CAAO,EAAU,EAA0B,EAAE;;IACnE,MAAM,EAAE,OAAO,EAAE,YAAY,EAAE,GAAG,wDAAa,iBAAiB,GAAC,CAAC;IAClE,MAAM,WAAW,GAAG,IAAI,GAAG,CAAiB,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,EAAE,IAAI,CAAqB,CAAC,CAAC,CAAC;IAC9G,OAAO,MAAA,WAAW,CAAC,GAAG,CAAC,EAAE,CAAC,mCAAI,IAAI,CAAC;AACvC,CAAC,CAAA,CAAC;AAGE,8CAAiB"}
@@ -0,0 +1,910 @@
1
+ [
2
+ [
3
+ "1",
4
+ "Dutch"
5
+ ],
6
+ [
7
+ "2",
8
+ "Bulgarian"
9
+ ],
10
+ [
11
+ "3",
12
+ "Austrian"
13
+ ],
14
+ [
15
+ "4",
16
+ "Belgian"
17
+ ],
18
+ [
19
+ "5",
20
+ "Cypriot"
21
+ ],
22
+ [
23
+ "6",
24
+ "Danish"
25
+ ],
26
+ [
27
+ "7",
28
+ "Czech"
29
+ ],
30
+ [
31
+ "8",
32
+ "Estonian"
33
+ ],
34
+ [
35
+ "9",
36
+ "Finnish"
37
+ ],
38
+ [
39
+ "10",
40
+ "French"
41
+ ],
42
+ [
43
+ "11",
44
+ "German"
45
+ ],
46
+ [
47
+ "12",
48
+ "Hungarian"
49
+ ],
50
+ [
51
+ "13",
52
+ "Icelander"
53
+ ],
54
+ [
55
+ "14",
56
+ "Irish"
57
+ ],
58
+ [
59
+ "15",
60
+ "Italian"
61
+ ],
62
+ [
63
+ "16",
64
+ "Latvian"
65
+ ],
66
+ [
67
+ "17",
68
+ "Lithuanian"
69
+ ],
70
+ [
71
+ "18",
72
+ "Macedonian"
73
+ ],
74
+ [
75
+ "19",
76
+ "Norwegian"
77
+ ],
78
+ [
79
+ "20",
80
+ "Polish"
81
+ ],
82
+ [
83
+ "21",
84
+ "Portuguese"
85
+ ],
86
+ [
87
+ "22",
88
+ "Russian"
89
+ ],
90
+ [
91
+ "23",
92
+ "Serbian"
93
+ ],
94
+ [
95
+ "24",
96
+ "Spanish"
97
+ ],
98
+ [
99
+ "25",
100
+ "Greek"
101
+ ],
102
+ [
103
+ "26",
104
+ "Swedish"
105
+ ],
106
+ [
107
+ "27",
108
+ "Swiss"
109
+ ],
110
+ [
111
+ "28",
112
+ "Turkish"
113
+ ],
114
+ [
115
+ "29",
116
+ "Ukrainian"
117
+ ],
118
+ [
119
+ "30",
120
+ "British"
121
+ ],
122
+ [
123
+ "31",
124
+ "Slovene"
125
+ ],
126
+ [
127
+ "33",
128
+ "Romanian"
129
+ ],
130
+ [
131
+ "34",
132
+ "Luxembourgish"
133
+ ],
134
+ [
135
+ "35",
136
+ "Maltese"
137
+ ],
138
+ [
139
+ "36",
140
+ "Monacan"
141
+ ],
142
+ [
143
+ "37",
144
+ "Moldovan"
145
+ ],
146
+ [
147
+ "38",
148
+ "Croatian"
149
+ ],
150
+ [
151
+ "39",
152
+ "Montenegrin"
153
+ ],
154
+ [
155
+ "40",
156
+ "Bosnian/Herzegovinian"
157
+ ],
158
+ [
159
+ "41",
160
+ "Slovak"
161
+ ],
162
+ [
163
+ "42",
164
+ "Albanian"
165
+ ],
166
+ [
167
+ "43",
168
+ "Manx"
169
+ ],
170
+ [
171
+ "44",
172
+ "Andorran"
173
+ ],
174
+ [
175
+ "45",
176
+ "Belarusian"
177
+ ],
178
+ [
179
+ "46",
180
+ "Faroese"
181
+ ],
182
+ [
183
+ "47",
184
+ "Liechtensteiners"
185
+ ],
186
+ [
187
+ "48",
188
+ "Sammarinese"
189
+ ],
190
+ [
191
+ "49",
192
+ "Antiguan and Barbudan"
193
+ ],
194
+ [
195
+ "50",
196
+ "Aruban"
197
+ ],
198
+ [
199
+ "51",
200
+ "Bahamian"
201
+ ],
202
+ [
203
+ "52",
204
+ "Barbadian"
205
+ ],
206
+ [
207
+ "53",
208
+ "Belizean"
209
+ ],
210
+ [
211
+ "54",
212
+ "Bermudian"
213
+ ],
214
+ [
215
+ "55",
216
+ "British Virgin Islander"
217
+ ],
218
+ [
219
+ "56",
220
+ "Canadian"
221
+ ],
222
+ [
223
+ "57",
224
+ "Cayman Islander"
225
+ ],
226
+ [
227
+ "58",
228
+ "Costa Rican"
229
+ ],
230
+ [
231
+ "59",
232
+ "Cuban"
233
+ ],
234
+ [
235
+ "60",
236
+ "Dominican"
237
+ ],
238
+ [
239
+ "61",
240
+ "Dominican"
241
+ ],
242
+ [
243
+ "62",
244
+ "Salvadoran"
245
+ ],
246
+ [
247
+ "63",
248
+ "Greenlandic"
249
+ ],
250
+ [
251
+ "64",
252
+ "Grenadian"
253
+ ],
254
+ [
255
+ "65",
256
+ "Guadeloupean"
257
+ ],
258
+ [
259
+ "66",
260
+ "Guatemalan"
261
+ ],
262
+ [
263
+ "67",
264
+ "Haitian"
265
+ ],
266
+ [
267
+ "68",
268
+ "Honduran"
269
+ ],
270
+ [
271
+ "69",
272
+ "Jamaican"
273
+ ],
274
+ [
275
+ "70",
276
+ "Martinican"
277
+ ],
278
+ [
279
+ "71",
280
+ "Mexican"
281
+ ],
282
+ [
283
+ "72",
284
+ "Montserratian"
285
+ ],
286
+ [
287
+ "74",
288
+ "Nicaraguan"
289
+ ],
290
+ [
291
+ "75",
292
+ "Panamanian"
293
+ ],
294
+ [
295
+ "76",
296
+ "Puerto Rican"
297
+ ],
298
+ [
299
+ "77",
300
+ "Kittitian and Nevisian"
301
+ ],
302
+ [
303
+ "78",
304
+ "Saint Lucian"
305
+ ],
306
+ [
307
+ "79",
308
+ "Pierrian and Miquelonnais"
309
+ ],
310
+ [
311
+ "80",
312
+ "Vincentian and Grenadinian"
313
+ ],
314
+ [
315
+ "81",
316
+ "Trinidadian/Tobagonian"
317
+ ],
318
+ [
319
+ "82",
320
+ "American"
321
+ ],
322
+ [
323
+ "83",
324
+ "Virgin Islander"
325
+ ],
326
+ [
327
+ "84",
328
+ "Argentinian"
329
+ ],
330
+ [
331
+ "86",
332
+ "Brazilian"
333
+ ],
334
+ [
335
+ "87",
336
+ "Chilean"
337
+ ],
338
+ [
339
+ "88",
340
+ "Colombian"
341
+ ],
342
+ [
343
+ "89",
344
+ "Ecuadorian"
345
+ ],
346
+ [
347
+ "90",
348
+ "French Guianan"
349
+ ],
350
+ [
351
+ "91",
352
+ "Guyanese"
353
+ ],
354
+ [
355
+ "92",
356
+ "Paraguayan"
357
+ ],
358
+ [
359
+ "93",
360
+ "Peruvian"
361
+ ],
362
+ [
363
+ "94",
364
+ "Surinamese"
365
+ ],
366
+ [
367
+ "95",
368
+ "Uruguayan"
369
+ ],
370
+ [
371
+ "96",
372
+ "Venezuelan"
373
+ ],
374
+ [
375
+ "97",
376
+ "Afghan"
377
+ ],
378
+ [
379
+ "98",
380
+ "Armenian"
381
+ ],
382
+ [
383
+ "99",
384
+ "Azerbaijani"
385
+ ],
386
+ [
387
+ "100",
388
+ "Bahraini"
389
+ ],
390
+ [
391
+ "101",
392
+ "Bangladeshi"
393
+ ],
394
+ [
395
+ "102",
396
+ "Bhutanese"
397
+ ],
398
+ [
399
+ "103",
400
+ "Bruneian"
401
+ ],
402
+ [
403
+ "104",
404
+ "Cambodian"
405
+ ],
406
+ [
407
+ "105",
408
+ "Chinese"
409
+ ],
410
+ [
411
+ "106",
412
+ "Georgian"
413
+ ],
414
+ [
415
+ "107",
416
+ "Hong Konger"
417
+ ],
418
+ [
419
+ "108",
420
+ "Indian"
421
+ ],
422
+ [
423
+ "109",
424
+ "Indonesian"
425
+ ],
426
+ [
427
+ "110",
428
+ "Iranian"
429
+ ],
430
+ [
431
+ "111",
432
+ "Iraqi"
433
+ ],
434
+ [
435
+ "112",
436
+ "Israeli"
437
+ ],
438
+ [
439
+ "113",
440
+ "Japanese"
441
+ ],
442
+ [
443
+ "114",
444
+ "Jordanian"
445
+ ],
446
+ [
447
+ "115",
448
+ "Kazakhstani"
449
+ ],
450
+ [
451
+ "116",
452
+ "North Korean"
453
+ ],
454
+ [
455
+ "117",
456
+ "South Korean"
457
+ ],
458
+ [
459
+ "118",
460
+ "Kuwaiti"
461
+ ],
462
+ [
463
+ "119",
464
+ "Kyrgyz"
465
+ ],
466
+ [
467
+ "120",
468
+ "Laotian"
469
+ ],
470
+ [
471
+ "121",
472
+ "Lebanese"
473
+ ],
474
+ [
475
+ "122",
476
+ "Macanese"
477
+ ],
478
+ [
479
+ "123",
480
+ "Malaysian"
481
+ ],
482
+ [
483
+ "124",
484
+ "Maldivian"
485
+ ],
486
+ [
487
+ "125",
488
+ "Mongolian"
489
+ ],
490
+ [
491
+ "126",
492
+ "Myanma"
493
+ ],
494
+ [
495
+ "127",
496
+ "Nepali"
497
+ ],
498
+ [
499
+ "128",
500
+ "Omani"
501
+ ],
502
+ [
503
+ "129",
504
+ "Pakistani"
505
+ ],
506
+ [
507
+ "130",
508
+ "Filipino"
509
+ ],
510
+ [
511
+ "131",
512
+ "Qatari"
513
+ ],
514
+ [
515
+ "132",
516
+ "Saudi Arabian"
517
+ ],
518
+ [
519
+ "133",
520
+ "Singaporean"
521
+ ],
522
+ [
523
+ "134",
524
+ "Sri Lankan"
525
+ ],
526
+ [
527
+ "135",
528
+ "Syrian"
529
+ ],
530
+ [
531
+ "136",
532
+ "Taiwanese"
533
+ ],
534
+ [
535
+ "137",
536
+ "Tajikistani"
537
+ ],
538
+ [
539
+ "138",
540
+ "Thai"
541
+ ],
542
+ [
543
+ "139",
544
+ "Turkmen"
545
+ ],
546
+ [
547
+ "140",
548
+ "Emirati"
549
+ ],
550
+ [
551
+ "141",
552
+ "Uzbekistani"
553
+ ],
554
+ [
555
+ "142",
556
+ "Vietnamese"
557
+ ],
558
+ [
559
+ "143",
560
+ "Yemeni"
561
+ ],
562
+ [
563
+ "144",
564
+ "Palestinian"
565
+ ],
566
+ [
567
+ "145",
568
+ "Algerian"
569
+ ],
570
+ [
571
+ "146",
572
+ "Angolan"
573
+ ],
574
+ [
575
+ "147",
576
+ "Beninese"
577
+ ],
578
+ [
579
+ "148",
580
+ "Botswanan"
581
+ ],
582
+ [
583
+ "149",
584
+ "Burkinabè"
585
+ ],
586
+ [
587
+ "150",
588
+ "Umurundi"
589
+ ],
590
+ [
591
+ "151",
592
+ "Cameroonian"
593
+ ],
594
+ [
595
+ "152",
596
+ "Cape Verdean"
597
+ ],
598
+ [
599
+ "153",
600
+ "Central African"
601
+ ],
602
+ [
603
+ "154",
604
+ "Chadian"
605
+ ],
606
+ [
607
+ "155",
608
+ "Comorian"
609
+ ],
610
+ [
611
+ "156",
612
+ "Congolese"
613
+ ],
614
+ [
615
+ "157",
616
+ "Congolese"
617
+ ],
618
+ [
619
+ "158",
620
+ "Ivorian"
621
+ ],
622
+ [
623
+ "159",
624
+ "Djiboutian"
625
+ ],
626
+ [
627
+ "160",
628
+ "Timorese"
629
+ ],
630
+ [
631
+ "161",
632
+ "Egyptian"
633
+ ],
634
+ [
635
+ "162",
636
+ "Equatoguinean"
637
+ ],
638
+ [
639
+ "163",
640
+ "Eritrean"
641
+ ],
642
+ [
643
+ "164",
644
+ "Ethiopian"
645
+ ],
646
+ [
647
+ "165",
648
+ "Gabonese"
649
+ ],
650
+ [
651
+ "166",
652
+ "Gambian"
653
+ ],
654
+ [
655
+ "167",
656
+ "Ghanaian"
657
+ ],
658
+ [
659
+ "168",
660
+ "Guinean"
661
+ ],
662
+ [
663
+ "169",
664
+ "Bissau-Guinean"
665
+ ],
666
+ [
667
+ "170",
668
+ "Kenyan"
669
+ ],
670
+ [
671
+ "171",
672
+ "Mosotho"
673
+ ],
674
+ [
675
+ "172",
676
+ "Liberian"
677
+ ],
678
+ [
679
+ "173",
680
+ "Libyan"
681
+ ],
682
+ [
683
+ "174",
684
+ "Malagasy"
685
+ ],
686
+ [
687
+ "175",
688
+ "Malawian"
689
+ ],
690
+ [
691
+ "176",
692
+ "Malinese"
693
+ ],
694
+ [
695
+ "177",
696
+ "Mauritanian"
697
+ ],
698
+ [
699
+ "178",
700
+ "Mauritian"
701
+ ],
702
+ [
703
+ "179",
704
+ "Moroccan"
705
+ ],
706
+ [
707
+ "180",
708
+ "Mozambican"
709
+ ],
710
+ [
711
+ "181",
712
+ "Namibian"
713
+ ],
714
+ [
715
+ "182",
716
+ "Nigerien"
717
+ ],
718
+ [
719
+ "183",
720
+ "Nigerian"
721
+ ],
722
+ [
723
+ "184",
724
+ "Réunionese"
725
+ ],
726
+ [
727
+ "185",
728
+ "Rwandan"
729
+ ],
730
+ [
731
+ "186",
732
+ "São Toméan"
733
+ ],
734
+ [
735
+ "187",
736
+ "Senegalese"
737
+ ],
738
+ [
739
+ "188",
740
+ "Seychellois"
741
+ ],
742
+ [
743
+ "189",
744
+ "Sierra Leonean"
745
+ ],
746
+ [
747
+ "190",
748
+ "Somalian"
749
+ ],
750
+ [
751
+ "191",
752
+ "South African"
753
+ ],
754
+ [
755
+ "192",
756
+ "Sudanese"
757
+ ],
758
+ [
759
+ "193",
760
+ "Emaswati"
761
+ ],
762
+ [
763
+ "194",
764
+ "Tanzanian"
765
+ ],
766
+ [
767
+ "195",
768
+ "Togolese"
769
+ ],
770
+ [
771
+ "196",
772
+ "Tunisian"
773
+ ],
774
+ [
775
+ "197",
776
+ "Ugandan"
777
+ ],
778
+ [
779
+ "198",
780
+ "Sahrawi"
781
+ ],
782
+ [
783
+ "199",
784
+ "Zambian"
785
+ ],
786
+ [
787
+ "200",
788
+ "Zimbabwean"
789
+ ],
790
+ [
791
+ "201",
792
+ "American Somoan"
793
+ ],
794
+ [
795
+ "202",
796
+ "Australian"
797
+ ],
798
+ [
799
+ "203",
800
+ "Cook Islander"
801
+ ],
802
+ [
803
+ "204",
804
+ "Fijian"
805
+ ],
806
+ [
807
+ "205",
808
+ "French Polynesian"
809
+ ],
810
+ [
811
+ "206",
812
+ "Guamanian"
813
+ ],
814
+ [
815
+ "207",
816
+ "I-Kiribati"
817
+ ],
818
+ [
819
+ "208",
820
+ "Marshallese"
821
+ ],
822
+ [
823
+ "209",
824
+ "Micronesian"
825
+ ],
826
+ [
827
+ "210",
828
+ "Nauruan"
829
+ ],
830
+ [
831
+ "211",
832
+ "New Caledonian"
833
+ ],
834
+ [
835
+ "212",
836
+ "New Zealander"
837
+ ],
838
+ [
839
+ "213",
840
+ "Niuean"
841
+ ],
842
+ [
843
+ "214",
844
+ "Northern Mariana Islander"
845
+ ],
846
+ [
847
+ "215",
848
+ "Palauan"
849
+ ],
850
+ [
851
+ "216",
852
+ "Papuan"
853
+ ],
854
+ [
855
+ "217",
856
+ "Samoan"
857
+ ],
858
+ [
859
+ "218",
860
+ "Solomon Islander"
861
+ ],
862
+ [
863
+ "219",
864
+ "Tongan"
865
+ ],
866
+ [
867
+ "220",
868
+ "Tuvaluan"
869
+ ],
870
+ [
871
+ "221",
872
+ "Vanuatuan"
873
+ ],
874
+ [
875
+ "222",
876
+ "Barthélemois"
877
+ ],
878
+ [
879
+ "223",
880
+ "Sint Maartener"
881
+ ],
882
+ [
883
+ "224",
884
+ "Anguillan"
885
+ ],
886
+ [
887
+ "225",
888
+ "Curaçaoan"
889
+ ],
890
+ [
891
+ "226",
892
+ "Turks and Caicos Islander"
893
+ ],
894
+ [
895
+ "227",
896
+ "Bonaire Dutch"
897
+ ],
898
+ [
899
+ "229",
900
+ "Turkish Cypriot"
901
+ ],
902
+ [
903
+ "230",
904
+ "Kosovan"
905
+ ],
906
+ [
907
+ "233",
908
+ "South Sudanese"
909
+ ]
910
+ ]