@arkyn/shared 3.0.1-beta.154 → 3.0.1-beta.156

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.
Files changed (55) hide show
  1. package/dist/index.js +371 -30
  2. package/dist/modules/formats/formatDate.js +42 -0
  3. package/dist/modules/formats/formatJsonObject.js +32 -0
  4. package/dist/modules/formats/formatJsonString.js +13 -0
  5. package/dist/modules/formats/formatToCapitalizeFirstWordLetter.js +9 -0
  6. package/dist/modules/formats/formatToCep.js +9 -0
  7. package/dist/modules/formats/formatToCnpj.js +9 -0
  8. package/dist/modules/formats/formatToCpf.js +9 -0
  9. package/dist/modules/formats/formatToCurrency.js +15 -0
  10. package/dist/modules/formats/formatToEllipsis.js +11 -0
  11. package/dist/modules/formats/formatToHiddenDigits.js +12 -0
  12. package/dist/modules/formats/formatToPhone.js +17 -0
  13. package/dist/modules/generators/generateColorByString.js +9 -0
  14. package/dist/modules/generators/generateId.js +26 -0
  15. package/dist/modules/generators/generateSlug.js +7 -0
  16. package/dist/modules/index.js +52 -0
  17. package/dist/modules/parsers/parseLargeFields.js +22 -0
  18. package/dist/modules/parsers/parseSensitiveData.js +26 -0
  19. package/dist/modules/parsers/parseToDate.js +27 -0
  20. package/dist/modules/services/validateDateService.js +59 -0
  21. package/dist/modules/utilities/calculateCardInstallment.js +21 -0
  22. package/dist/modules/utilities/ensureQuotes.js +7 -0
  23. package/dist/modules/utilities/findCountryMask.js +25 -0
  24. package/dist/modules/utilities/isHtml.js +6 -0
  25. package/dist/modules/utilities/removeCurrencySymbols.js +6 -0
  26. package/dist/modules/utilities/removeNonNumeric.js +6 -0
  27. package/dist/modules/utilities/stripHtmlTags.js +6 -0
  28. package/package.json +100 -74
  29. package/dist/bundle.js +0 -3719
  30. package/dist/bundle.umd.cjs +0 -10
  31. package/dist/formats/formatDate.js +0 -65
  32. package/dist/formats/formatJsonObject.js +0 -89
  33. package/dist/formats/formatJsonString.js +0 -30
  34. package/dist/formats/formatToCapitalizeFirstWordLetter.js +0 -23
  35. package/dist/formats/formatToCep.js +0 -28
  36. package/dist/formats/formatToCnpj.js +0 -26
  37. package/dist/formats/formatToCpf.js +0 -28
  38. package/dist/formats/formatToCurrency.js +0 -31
  39. package/dist/formats/formatToEllipsis.js +0 -32
  40. package/dist/formats/formatToHiddenDigits.js +0 -49
  41. package/dist/formats/formatToPhone.js +0 -43
  42. package/dist/generators/generateColorByString.js +0 -28
  43. package/dist/generators/generateId.js +0 -29
  44. package/dist/generators/generateSlug.js +0 -31
  45. package/dist/parsers/parseLargeFields.js +0 -55
  46. package/dist/parsers/parseSensitiveData.js +0 -57
  47. package/dist/parsers/parseToDate.js +0 -51
  48. package/dist/services/validateDateService.js +0 -81
  49. package/dist/utilities/calculateCardInstallment.js +0 -39
  50. package/dist/utilities/ensureQuotes.js +0 -26
  51. package/dist/utilities/findCountryMask.js +0 -49
  52. package/dist/utilities/isHtml.js +0 -23
  53. package/dist/utilities/removeCurrencySymbols.js +0 -23
  54. package/dist/utilities/removeNonNumeric.js +0 -16
  55. package/dist/utilities/stripHtmlTags.js +0 -23
package/dist/bundle.js DELETED
@@ -1,3719 +0,0 @@
1
- class v1 {
2
- isLeapYear(t) {
3
- return t % 4 === 0 && t % 100 !== 0 || t % 400 === 0;
4
- }
5
- getDaysInMonth(t, e) {
6
- const n = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
7
- return t === 2 && this.isLeapYear(e) ? 29 : n[t - 1];
8
- }
9
- validateDayInMonth(t, e, n) {
10
- const r = this.getDaysInMonth(e, n);
11
- if (t > r) {
12
- const o = `Day ${t} is not valid for ${[
13
- "January",
14
- "February",
15
- "March",
16
- "April",
17
- "May",
18
- "June",
19
- "July",
20
- "August",
21
- "September",
22
- "October",
23
- "November",
24
- "December"
25
- ][e - 1]}`, $ = `Day ${t} is not valid for February ${n} (non-leap year)`;
26
- throw e === 2 && t === 29 ? new Error($) : new Error(o);
27
- }
28
- }
29
- /**
30
- * Throws if year, month, or day are out of valid range or inconsistent with the calendar.
31
- *
32
- * @param year - 4-digit year (1000–9999).
33
- * @param month - Month number (1–12).
34
- * @param day - Day number (1–31, validated against the specific month).
35
- */
36
- validateDateParts(t, e, n) {
37
- const r = {
38
- year: "Year should be four digits",
39
- month: "Month should be between 1 and 12",
40
- day: "Day should be between 1 and 31"
41
- };
42
- if (`${t}`.length !== 4) throw new Error(r.year);
43
- if (e < 1 || e > 12) throw new Error(r.month);
44
- if (n < 1 || n > 31) throw new Error(r.day);
45
- this.validateDayInMonth(n, e, t);
46
- }
47
- /**
48
- * Throws if `format` is not one of `"brazilianDate"`, `"isoDate"`, or `"timestamp"`.
49
- *
50
- * @param format - The format string to check.
51
- */
52
- validateInputFormat(t) {
53
- if (!["brazilianDate", "isoDate", "timestamp"].includes(t))
54
- throw new Error(`Invalid input format: ${t}`);
55
- }
56
- }
57
- function D1(d, t) {
58
- const e = (r) => r.toString().padStart(2, "0"), n = {
59
- YYYY: d.getUTCFullYear().toString(),
60
- YY: d.getUTCFullYear().toString().slice(-2),
61
- MM: e(d.getUTCMonth() + 1),
62
- DD: e(d.getUTCDate()),
63
- hh: e(d.getUTCHours()),
64
- mm: e(d.getUTCMinutes()),
65
- ss: e(d.getUTCSeconds())
66
- };
67
- return t.replace(
68
- /YYYY|YY|MM|DD|hh|mm|ss/g,
69
- (r) => n[r]
70
- );
71
- }
72
- function ee([d, t = "00:00:00"], e, n, r = 0) {
73
- const a = new v1();
74
- a.validateInputFormat(e);
75
- const o = d.split(/[-/]/).map(Number), $ = t.split(".")[0].split(":").map(Number);
76
- let s, i, c;
77
- const [u = 0, m = 0, g = 0] = $;
78
- switch (e) {
79
- case "brazilianDate":
80
- [s, i, c] = o, a.validateDateParts(c, i, s);
81
- break;
82
- case "isoDate":
83
- [i, s, c] = o, a.validateDateParts(c, i, s);
84
- break;
85
- case "timestamp":
86
- [c, i, s] = o, a.validateDateParts(c, i, s);
87
- break;
88
- }
89
- const h = new Date(
90
- Date.UTC(c, i - 1, s, u, m, g)
91
- );
92
- if (isNaN(h.getTime())) throw new Error("Invalid date");
93
- return h.setUTCHours(h.getUTCHours() + r), D1(h, n);
94
- }
95
- const A = (d, t) => {
96
- const e = " ".repeat(t);
97
- let n = "";
98
- if (typeof d == "object" && d !== null)
99
- if (Array.isArray(d))
100
- d.length === 0 ? n += "[]" : (n += `[
101
- `, d.forEach((r, a) => {
102
- n += e + " " + A(r, t + 1), a < d.length - 1 && (n += ","), n += `
103
- `;
104
- }), n += e + "]");
105
- else {
106
- const r = Object.keys(d);
107
- r.length === 0 ? n += "{}" : (n += `{
108
- `, r.forEach((a, o) => {
109
- n += e + ' "' + a + '": ' + A(d[a], t + 1), o < r.length - 1 && (n += ","), n += `
110
- `;
111
- }), n += e + "}");
112
- }
113
- else if (typeof d == "string")
114
- try {
115
- const r = JSON.parse(d);
116
- n += A(r, t);
117
- } catch {
118
- n += '"' + d + '"';
119
- }
120
- else
121
- n += d;
122
- return n;
123
- }, ne = (d) => {
124
- try {
125
- const t = JSON.parse(d);
126
- return A(t, 0);
127
- } catch (t) {
128
- throw new Error(`Invalid JSON string
129
- ${t}`);
130
- }
131
- };
132
- function re(d) {
133
- return d.split(" ").map((n) => {
134
- const r = n.charAt(0).toUpperCase(), a = n.slice(1).toLowerCase();
135
- return r + a;
136
- }).join(" ");
137
- }
138
- function M(d) {
139
- return d.replace(/[^0-9]/g, "");
140
- }
141
- function ae(d) {
142
- const e = M(d).match(/^(\d{5})(\d{3})$/), n = `CEP must be contain 8 numeric digits: ${d}`;
143
- if (!e) throw new Error(n);
144
- return `${e[1]}-${e[2]}`;
145
- }
146
- function oe(d) {
147
- const e = M(d).match(/^(\d{2})(\d{3})(\d{3})(\d{4})(\d{2})$/), n = `CNPJ must be contain 14 numeric digits: ${d}`;
148
- if (!e) throw new Error(n);
149
- return `${e[1]}.${e[2]}.${e[3]}/${e[4]}-${e[5]}`;
150
- }
151
- function se(d) {
152
- const e = M(d).match(/^(\d{3})(\d{3})(\d{3})(\d{2})$/), n = `CPF must be contain 11 numeric digits: ${d}`;
153
- if (!e) throw new Error(n);
154
- return `${e[1]}.${e[2]}.${e[3]}-${e[4]}`;
155
- }
156
- const L1 = [
157
- {
158
- name: "Afghanistan",
159
- code: "+93",
160
- iso: "AF",
161
- flag: "https://cdn.kcak11.com/CountryFlags/countries/af.svg",
162
- mask: "__-___-____"
163
- },
164
- {
165
- name: "Aland Islands",
166
- code: "+358",
167
- iso: "AX",
168
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ax.svg",
169
- mask: "(___) ___-__-__"
170
- },
171
- {
172
- name: "Albania",
173
- code: "+355",
174
- iso: "AL",
175
- flag: "https://cdn.kcak11.com/CountryFlags/countries/al.svg",
176
- mask: "(___) ___-___"
177
- },
178
- {
179
- name: "Algeria",
180
- code: "+213",
181
- iso: "DZ",
182
- flag: "https://cdn.kcak11.com/CountryFlags/countries/dz.svg",
183
- mask: "__-___-____"
184
- },
185
- {
186
- name: "American Samoa",
187
- code: "+1",
188
- iso: "AS",
189
- flag: "https://cdn.kcak11.com/CountryFlags/countries/as.svg",
190
- mask: "(___) ___-____"
191
- },
192
- {
193
- name: "Andorra",
194
- code: "+376",
195
- iso: "AD",
196
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ad.svg",
197
- mask: "___-___"
198
- },
199
- {
200
- name: "Angola",
201
- code: "+244",
202
- iso: "AO",
203
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ao.svg",
204
- mask: "(___) ___-___"
205
- },
206
- {
207
- name: "Anguilla",
208
- code: "+1",
209
- iso: "AI",
210
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ai.svg",
211
- mask: "(___) ___-____"
212
- },
213
- {
214
- name: "Antarctica",
215
- code: "+672",
216
- iso: "AQ",
217
- flag: "https://cdn.kcak11.com/CountryFlags/countries/aq.svg",
218
- mask: "___-___"
219
- },
220
- {
221
- name: "Antigua and Barbuda",
222
- code: "+1",
223
- iso: "AG",
224
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ag.svg",
225
- mask: "(___) ___-____"
226
- },
227
- {
228
- name: "Argentina",
229
- code: "+54",
230
- iso: "AR",
231
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ar.svg",
232
- mask: "(___) ___-____"
233
- },
234
- {
235
- name: "Armenia",
236
- code: "+374",
237
- iso: "AM",
238
- flag: "https://cdn.kcak11.com/CountryFlags/countries/am.svg",
239
- mask: "__-___-___"
240
- },
241
- {
242
- name: "Aruba",
243
- code: "+297",
244
- iso: "AW",
245
- flag: "https://cdn.kcak11.com/CountryFlags/countries/aw.svg",
246
- mask: "___-____"
247
- },
248
- {
249
- name: "Ascension Island",
250
- code: "+247",
251
- iso: "AC",
252
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sh.svg",
253
- mask: "____"
254
- },
255
- {
256
- name: "Australia",
257
- code: "+61",
258
- iso: "AU",
259
- flag: "https://cdn.kcak11.com/CountryFlags/countries/au.svg",
260
- mask: "_-____-____"
261
- },
262
- {
263
- name: "Austria",
264
- code: "+43",
265
- iso: "AT",
266
- flag: "https://cdn.kcak11.com/CountryFlags/countries/at.svg",
267
- mask: "(___) ___-____"
268
- },
269
- {
270
- name: "Azerbaijan",
271
- code: "+994",
272
- iso: "AZ",
273
- flag: "https://cdn.kcak11.com/CountryFlags/countries/az.svg",
274
- mask: "__-___-__-__"
275
- },
276
- {
277
- name: "Bahamas",
278
- code: "+1",
279
- iso: "BS",
280
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bs.svg",
281
- mask: "(___) ___-____"
282
- },
283
- {
284
- name: "Bahrain",
285
- code: "+973",
286
- iso: "BH",
287
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bh.svg",
288
- mask: "____-____"
289
- },
290
- {
291
- name: "Bangladesh",
292
- code: "+880",
293
- iso: "BD",
294
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bd.svg",
295
- mask: "____-______"
296
- },
297
- {
298
- name: "Barbados",
299
- code: "+1",
300
- iso: "BB",
301
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bb.svg",
302
- mask: "(___) ___-____"
303
- },
304
- {
305
- name: "Belarus",
306
- code: "+375",
307
- iso: "BY",
308
- flag: "https://cdn.kcak11.com/CountryFlags/countries/by.svg",
309
- mask: "(__) ___-__-__"
310
- },
311
- {
312
- name: "Belgium",
313
- code: "+32",
314
- iso: "BE",
315
- flag: "https://cdn.kcak11.com/CountryFlags/countries/be.svg",
316
- mask: "(___) ___-___"
317
- },
318
- {
319
- name: "Belize",
320
- code: "+501",
321
- iso: "BZ",
322
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bz.svg",
323
- mask: "___-____"
324
- },
325
- {
326
- name: "Benin",
327
- code: "+229",
328
- iso: "BJ",
329
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bj.svg",
330
- mask: "__-__-____"
331
- },
332
- {
333
- name: "Bermuda",
334
- code: "+1",
335
- iso: "BM",
336
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bm.svg",
337
- mask: "(___) ___-____"
338
- },
339
- {
340
- name: "Bhutan",
341
- code: "+975",
342
- iso: "BT",
343
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bt.svg",
344
- mask: "_-___-___"
345
- },
346
- {
347
- name: "Bolivia",
348
- code: "+591",
349
- iso: "BO",
350
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bo.svg",
351
- mask: "_-___-____"
352
- },
353
- {
354
- name: "Bosnia and Herzegovina",
355
- code: "+387",
356
- iso: "BA",
357
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ba.svg",
358
- mask: "__-_____"
359
- },
360
- {
361
- name: "Botswana",
362
- code: "+267",
363
- iso: "BW",
364
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bw.svg",
365
- mask: "__-___-___"
366
- },
367
- {
368
- name: "Brasil",
369
- code: "+55",
370
- iso: "BR",
371
- flag: "https://cdn.kcak11.com/CountryFlags/countries/br.svg",
372
- mask: ["(__) _____-____", "(__) ____-____"]
373
- },
374
- {
375
- name: "British Indian Ocean Territory",
376
- code: "+246",
377
- iso: "IO",
378
- flag: "https://cdn.kcak11.com/CountryFlags/countries/io.svg",
379
- mask: "___-____"
380
- },
381
- {
382
- name: "Brunei Darussalam",
383
- code: "+673",
384
- iso: "BN",
385
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bn.svg",
386
- mask: "___-____"
387
- },
388
- {
389
- name: "Bulgaria",
390
- code: "+359",
391
- iso: "BG",
392
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bg.svg",
393
- mask: "(___) ___-___"
394
- },
395
- {
396
- name: "Burkina Faso",
397
- code: "+226",
398
- iso: "BF",
399
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bf.svg",
400
- mask: "__-__-____"
401
- },
402
- {
403
- name: "Burundi",
404
- code: "+257",
405
- iso: "BI",
406
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bi.svg",
407
- mask: "__-__-____"
408
- },
409
- {
410
- name: "Cambodia",
411
- code: "+855",
412
- iso: "KH",
413
- flag: "https://cdn.kcak11.com/CountryFlags/countries/kh.svg",
414
- mask: "__-___-___"
415
- },
416
- {
417
- name: "Cameroon",
418
- code: "+237",
419
- iso: "CM",
420
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cm.svg",
421
- mask: "____-____"
422
- },
423
- {
424
- name: "Canada",
425
- code: "+1",
426
- iso: "CA",
427
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ca.svg",
428
- mask: "(___) ___-____"
429
- },
430
- {
431
- name: "Cape Verde",
432
- code: "+238",
433
- iso: "CV",
434
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cv.svg",
435
- mask: "(___) __-__"
436
- },
437
- {
438
- name: "Cayman Islands",
439
- code: "+1",
440
- iso: "KY",
441
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ky.svg",
442
- mask: "(___) ___-____"
443
- },
444
- {
445
- name: "Central African Republic",
446
- code: "+236",
447
- iso: "CF",
448
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cf.svg",
449
- mask: "__-__-____"
450
- },
451
- {
452
- name: "Chad",
453
- code: "+235",
454
- iso: "TD",
455
- flag: "https://cdn.kcak11.com/CountryFlags/countries/td.svg",
456
- mask: "__-__-__-__"
457
- },
458
- {
459
- name: "Chile",
460
- code: "+56",
461
- iso: "CL",
462
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cl.svg",
463
- mask: "_-____-____"
464
- },
465
- {
466
- name: "China",
467
- code: "+86",
468
- iso: "CN",
469
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cn.svg",
470
- mask: "__-_____-_____"
471
- },
472
- {
473
- name: "Christmas Island",
474
- code: "+61",
475
- iso: "CX",
476
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cx.svg",
477
- mask: "_-____-____"
478
- },
479
- {
480
- name: "Cocos (Keeling) Islands",
481
- code: "+61",
482
- iso: "CC",
483
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cc.svg",
484
- mask: "_-____-____"
485
- },
486
- {
487
- name: "Colombia",
488
- code: "+57",
489
- iso: "CO",
490
- flag: "https://cdn.kcak11.com/CountryFlags/countries/co.svg",
491
- mask: "(___) ___-____"
492
- },
493
- {
494
- name: "Comoros",
495
- code: "+269",
496
- iso: "KM",
497
- flag: "https://cdn.kcak11.com/CountryFlags/countries/km.svg",
498
- mask: "__-_____"
499
- },
500
- {
501
- name: "Congo",
502
- code: "+242",
503
- iso: "CG",
504
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cg.svg",
505
- mask: "__-_____"
506
- },
507
- {
508
- name: "Cook Islands",
509
- code: "+682",
510
- iso: "CK",
511
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ck.svg",
512
- mask: "__-___"
513
- },
514
- {
515
- name: "Costa Rica",
516
- code: "+506",
517
- iso: "CR",
518
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cr.svg",
519
- mask: "____-____"
520
- },
521
- {
522
- name: "Croatia",
523
- code: "+385",
524
- iso: "HR",
525
- flag: "https://cdn.kcak11.com/CountryFlags/countries/hr.svg",
526
- mask: "__-___-___"
527
- },
528
- {
529
- name: "Cuba",
530
- code: "+53",
531
- iso: "CU",
532
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cu.svg",
533
- mask: "_-___-____"
534
- },
535
- {
536
- name: "Cyprus",
537
- code: "+357",
538
- iso: "CY",
539
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cy.svg",
540
- mask: "__-___-___"
541
- },
542
- {
543
- name: "Czech Republic",
544
- code: "+420",
545
- iso: "CZ",
546
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cz.svg",
547
- mask: "(___) ___-___"
548
- },
549
- {
550
- name: "Democratic Republic of the Congo",
551
- code: "+243",
552
- iso: "CD",
553
- flag: "https://cdn.kcak11.com/CountryFlags/countries/cd.svg",
554
- mask: "(___) ___-___"
555
- },
556
- {
557
- name: "Denmark",
558
- code: "+45",
559
- iso: "DK",
560
- flag: "https://cdn.kcak11.com/CountryFlags/countries/dk.svg",
561
- mask: "__-__-__-__"
562
- },
563
- {
564
- name: "Djibouti",
565
- code: "+253",
566
- iso: "DJ",
567
- flag: "https://cdn.kcak11.com/CountryFlags/countries/dj.svg",
568
- mask: "__-__-__-__"
569
- },
570
- {
571
- name: "Dominica",
572
- code: "+1",
573
- iso: "DM",
574
- flag: "https://cdn.kcak11.com/CountryFlags/countries/dm.svg",
575
- mask: "(___) ___-____"
576
- },
577
- {
578
- name: "Dominican Republic",
579
- code: "+1",
580
- iso: "DO",
581
- flag: "https://cdn.kcak11.com/CountryFlags/countries/do.svg",
582
- mask: "(___) ___-____"
583
- },
584
- {
585
- name: "Ecuador",
586
- code: "+593",
587
- iso: "EC",
588
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ec.svg",
589
- mask: "__-___-____"
590
- },
591
- {
592
- name: "Egypt",
593
- code: "+20",
594
- iso: "EG",
595
- flag: "https://cdn.kcak11.com/CountryFlags/countries/eg.svg",
596
- mask: "(___) ___-____"
597
- },
598
- {
599
- name: "El Salvador",
600
- code: "+503",
601
- iso: "SV",
602
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sv.svg",
603
- mask: "__-__-____"
604
- },
605
- {
606
- name: "Equatorial Guinea",
607
- code: "+240",
608
- iso: "GQ",
609
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gq.svg",
610
- mask: "__-___-____"
611
- },
612
- {
613
- name: "Eritrea",
614
- code: "+291",
615
- iso: "ER",
616
- flag: "https://cdn.kcak11.com/CountryFlags/countries/er.svg",
617
- mask: "_-___-___"
618
- },
619
- {
620
- name: "Estonia",
621
- code: "+372",
622
- iso: "EE",
623
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ee.svg",
624
- mask: "____-____"
625
- },
626
- {
627
- name: "Eswatini",
628
- code: "+268",
629
- iso: "SZ",
630
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sz.svg",
631
- mask: "__-__-____"
632
- },
633
- {
634
- name: "Ethiopia",
635
- code: "+251",
636
- iso: "ET",
637
- flag: "https://cdn.kcak11.com/CountryFlags/countries/et.svg",
638
- mask: "__-___-____"
639
- },
640
- {
641
- name: "Falkland Islands (Malvinas)",
642
- code: "+500",
643
- iso: "FK",
644
- flag: "https://cdn.kcak11.com/CountryFlags/countries/fk.svg",
645
- mask: "_____"
646
- },
647
- {
648
- name: "Faroe Islands",
649
- code: "+298",
650
- iso: "FO",
651
- flag: "https://cdn.kcak11.com/CountryFlags/countries/fo.svg",
652
- mask: "__ __ __"
653
- },
654
- {
655
- name: "Fiji",
656
- code: "+679",
657
- iso: "FJ",
658
- flag: "https://cdn.kcak11.com/CountryFlags/countries/fj.svg",
659
- mask: "__-_____"
660
- },
661
- {
662
- name: "Finland",
663
- code: "+358",
664
- iso: "FI",
665
- flag: "https://cdn.kcak11.com/CountryFlags/countries/fi.svg",
666
- mask: "__ ___ ____"
667
- },
668
- {
669
- name: "France",
670
- code: "+33",
671
- iso: "FR",
672
- flag: "https://cdn.kcak11.com/CountryFlags/countries/fr.svg",
673
- mask: "_ __ __ __ __"
674
- },
675
- {
676
- name: "French Guiana",
677
- code: "+594",
678
- iso: "GF",
679
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gf.svg",
680
- mask: "___ __ __ __"
681
- },
682
- {
683
- name: "French Polynesia",
684
- code: "+689",
685
- iso: "PF",
686
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pf.svg",
687
- mask: "__ __ __ __"
688
- },
689
- {
690
- name: "Gabon",
691
- code: "+241",
692
- iso: "GA",
693
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ga.svg",
694
- mask: "_ __ __ __"
695
- },
696
- {
697
- name: "Gambia",
698
- code: "+220",
699
- iso: "GM",
700
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gm.svg",
701
- mask: "___ ____"
702
- },
703
- {
704
- name: "Georgia",
705
- code: "+995",
706
- iso: "GE",
707
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ge.svg",
708
- mask: "(___) ___-___"
709
- },
710
- {
711
- name: "Germany",
712
- code: "+49",
713
- iso: "DE",
714
- flag: "https://cdn.kcak11.com/CountryFlags/countries/de.svg",
715
- mask: "(_____) __-____"
716
- },
717
- {
718
- name: "Ghana",
719
- code: "+233",
720
- iso: "GH",
721
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gh.svg",
722
- mask: "___ ___ ____"
723
- },
724
- {
725
- name: "Gibraltar",
726
- code: "+350",
727
- iso: "GI",
728
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gi.svg",
729
- mask: "___-_____"
730
- },
731
- {
732
- name: "Greece",
733
- code: "+30",
734
- iso: "GR",
735
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gr.svg",
736
- mask: "(___) ___-____"
737
- },
738
- {
739
- name: "Greenland",
740
- code: "+299",
741
- iso: "GL",
742
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gl.svg",
743
- mask: "__-__-__"
744
- },
745
- {
746
- name: "Grenada",
747
- code: "+1",
748
- iso: "GD",
749
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gd.svg",
750
- mask: "(___) ___-____"
751
- },
752
- {
753
- name: "Guadeloupe",
754
- code: "+590",
755
- iso: "GP",
756
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gp.svg",
757
- mask: "___ __ __ __"
758
- },
759
- {
760
- name: "Guam",
761
- code: "+1",
762
- iso: "GU",
763
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gu.svg",
764
- mask: "___ ___ ____"
765
- },
766
- {
767
- name: "Guatemala",
768
- code: "+502",
769
- iso: "GT",
770
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gt.svg",
771
- mask: "_-___-____"
772
- },
773
- {
774
- name: "Guernsey",
775
- code: "+44",
776
- iso: "GG",
777
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gg.svg",
778
- mask: "(____) ______"
779
- },
780
- {
781
- name: "Guinea",
782
- code: "+224",
783
- iso: "GN",
784
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gn.svg",
785
- mask: "__-___-___"
786
- },
787
- {
788
- name: "Guinea-Bissau",
789
- code: "+245",
790
- iso: "GW",
791
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gw.svg",
792
- mask: "_-______"
793
- },
794
- {
795
- name: "Guyana",
796
- code: "+592",
797
- iso: "GY",
798
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gy.svg",
799
- mask: "___-____"
800
- },
801
- {
802
- name: "Haiti",
803
- code: "+509",
804
- iso: "HT",
805
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ht.svg",
806
- mask: "__-__-____"
807
- },
808
- {
809
- name: "Holy See (Vatican City State)",
810
- code: "+39",
811
- iso: "VA",
812
- flag: "https://cdn.kcak11.com/CountryFlags/countries/va.svg",
813
- mask: "__ ________"
814
- },
815
- {
816
- name: "Honduras",
817
- code: "+504",
818
- iso: "HN",
819
- flag: "https://cdn.kcak11.com/CountryFlags/countries/hn.svg",
820
- mask: "____-____"
821
- },
822
- {
823
- name: "Hong Kong",
824
- code: "+852",
825
- iso: "HK",
826
- flag: "https://cdn.kcak11.com/CountryFlags/countries/hk.svg",
827
- mask: "____-____"
828
- },
829
- {
830
- name: "Hungary",
831
- code: "+36",
832
- iso: "HU",
833
- flag: "https://cdn.kcak11.com/CountryFlags/countries/hu.svg",
834
- mask: "__ ___ ____"
835
- },
836
- {
837
- name: "Iceland",
838
- code: "+354",
839
- iso: "IS",
840
- flag: "https://cdn.kcak11.com/CountryFlags/countries/is.svg",
841
- mask: "___-____"
842
- },
843
- {
844
- name: "India",
845
- code: "+91",
846
- iso: "IN",
847
- flag: "https://cdn.kcak11.com/CountryFlags/countries/in.svg",
848
- mask: "(____) ___-___"
849
- },
850
- {
851
- name: "Indonesia",
852
- code: "+62",
853
- iso: "ID",
854
- flag: "https://cdn.kcak11.com/CountryFlags/countries/id.svg",
855
- mask: "(___) ___-__-___"
856
- },
857
- {
858
- name: "Iran",
859
- code: "+98",
860
- iso: "IR",
861
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ir.svg",
862
- mask: "(___) ___-____"
863
- },
864
- {
865
- name: "Iraq",
866
- code: "+964",
867
- iso: "IQ",
868
- flag: "https://cdn.kcak11.com/CountryFlags/countries/iq.svg",
869
- mask: "(___) ___-____"
870
- },
871
- {
872
- name: "Ireland",
873
- code: "+353",
874
- iso: "IE",
875
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ie.svg",
876
- mask: "(___) ___-___"
877
- },
878
- {
879
- name: "Isle of Man",
880
- code: "+44",
881
- iso: "IM",
882
- flag: "https://cdn.kcak11.com/CountryFlags/countries/im.svg",
883
- mask: "(____) ______"
884
- },
885
- {
886
- name: "Israel",
887
- code: "+972",
888
- iso: "IL",
889
- flag: "https://cdn.kcak11.com/CountryFlags/countries/il.svg",
890
- mask: "__-___-____"
891
- },
892
- {
893
- name: "Italy",
894
- code: "+39",
895
- iso: "IT",
896
- flag: "https://cdn.kcak11.com/CountryFlags/countries/it.svg",
897
- mask: "(___) ____-___"
898
- },
899
- {
900
- name: "Ivory Coast / Cote d'Ivoire",
901
- code: "+225",
902
- iso: "CI",
903
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ci.svg",
904
- mask: "__-___-___"
905
- },
906
- {
907
- name: "Jamaica",
908
- code: "+1",
909
- iso: "JM",
910
- flag: "https://cdn.kcak11.com/CountryFlags/countries/jm.svg",
911
- mask: "(___) ___-____"
912
- },
913
- {
914
- name: "Japan",
915
- code: "+81",
916
- iso: "JP",
917
- flag: "https://cdn.kcak11.com/CountryFlags/countries/jp.svg",
918
- mask: "__-____-____"
919
- },
920
- {
921
- name: "Jersey",
922
- code: "+44",
923
- iso: "JE",
924
- flag: "https://cdn.kcak11.com/CountryFlags/countries/je.svg",
925
- mask: "(____) ____-______"
926
- },
927
- {
928
- name: "Jordan",
929
- code: "+962",
930
- iso: "JO",
931
- flag: "https://cdn.kcak11.com/CountryFlags/countries/jo.svg",
932
- mask: "_-____-____"
933
- },
934
- {
935
- name: "Kazakhstan",
936
- code: "+77",
937
- iso: "KZ",
938
- flag: "https://cdn.kcak11.com/CountryFlags/countries/kz.svg",
939
- mask: "(_____) _ __ __"
940
- },
941
- {
942
- name: "Kenya",
943
- code: "+254",
944
- iso: "KE",
945
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ke.svg",
946
- mask: "___-______"
947
- },
948
- {
949
- name: "Kiribati",
950
- code: "+686",
951
- iso: "KI",
952
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ki.svg",
953
- mask: "__-___"
954
- },
955
- {
956
- name: "Korea, Democratic People's Republic of Korea",
957
- code: "+850",
958
- iso: "KP",
959
- flag: "https://cdn.kcak11.com/CountryFlags/countries/kp.svg",
960
- mask: "____-_____________"
961
- },
962
- {
963
- name: "Korea, Republic of South Korea",
964
- code: "+82",
965
- iso: "KR",
966
- flag: "https://cdn.kcak11.com/CountryFlags/countries/kr.svg",
967
- mask: "__-___-____"
968
- },
969
- {
970
- name: "Kosovo",
971
- code: "+383",
972
- iso: "XK",
973
- flag: "https://cdn.kcak11.com/CountryFlags/countries/xk.svg",
974
- mask: "___-___-___"
975
- },
976
- {
977
- name: "Kuwait",
978
- code: "+965",
979
- iso: "KW",
980
- flag: "https://cdn.kcak11.com/CountryFlags/countries/kw.svg",
981
- mask: "____-____"
982
- },
983
- {
984
- name: "Kyrgyzstan",
985
- code: "+996",
986
- iso: "KG",
987
- flag: "https://cdn.kcak11.com/CountryFlags/countries/kg.svg",
988
- mask: "(___) ___-___"
989
- },
990
- {
991
- name: "Laos",
992
- code: "+856",
993
- iso: "LA",
994
- flag: "https://cdn.kcak11.com/CountryFlags/countries/la.svg",
995
- mask: "(____) ___-___"
996
- },
997
- {
998
- name: "Latvia",
999
- code: "+371",
1000
- iso: "LV",
1001
- flag: "https://cdn.kcak11.com/CountryFlags/countries/lv.svg",
1002
- mask: "__-___-___"
1003
- },
1004
- {
1005
- name: "Lebanon",
1006
- code: "+961",
1007
- iso: "LB",
1008
- flag: "https://cdn.kcak11.com/CountryFlags/countries/lb.svg",
1009
- mask: "__-___-___"
1010
- },
1011
- {
1012
- name: "Lesotho",
1013
- code: "+266",
1014
- iso: "LS",
1015
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ls.svg",
1016
- mask: "_-___-____"
1017
- },
1018
- {
1019
- name: "Liberia",
1020
- code: "+231",
1021
- iso: "LR",
1022
- flag: "https://cdn.kcak11.com/CountryFlags/countries/lr.svg",
1023
- mask: "__-___-___"
1024
- },
1025
- {
1026
- name: "Libya",
1027
- code: "+218",
1028
- iso: "LY",
1029
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ly.svg",
1030
- mask: "__-___-____"
1031
- },
1032
- {
1033
- name: "Liechtenstein",
1034
- code: "+423",
1035
- iso: "LI",
1036
- flag: "https://cdn.kcak11.com/CountryFlags/countries/li.svg",
1037
- mask: "(___) ___-____"
1038
- },
1039
- {
1040
- name: "Lithuania",
1041
- code: "+370",
1042
- iso: "LT",
1043
- flag: "https://cdn.kcak11.com/CountryFlags/countries/lt.svg",
1044
- mask: "(___) __-___"
1045
- },
1046
- {
1047
- name: "Luxembourg",
1048
- code: "+352",
1049
- iso: "LU",
1050
- flag: "https://cdn.kcak11.com/CountryFlags/countries/lu.svg",
1051
- mask: "(___) ___-___"
1052
- },
1053
- {
1054
- name: "Macau",
1055
- code: "+853",
1056
- iso: "MO",
1057
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mo.svg",
1058
- mask: "____-____"
1059
- },
1060
- {
1061
- name: "Madagascar",
1062
- code: "+261",
1063
- iso: "MG",
1064
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mg.svg",
1065
- mask: "__-__-_____"
1066
- },
1067
- {
1068
- name: "Malawi",
1069
- code: "+265",
1070
- iso: "MW",
1071
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mw.svg",
1072
- mask: "_-____-____"
1073
- },
1074
- {
1075
- name: "Malaysia",
1076
- code: "+60",
1077
- iso: "MY",
1078
- flag: "https://cdn.kcak11.com/CountryFlags/countries/my.svg",
1079
- mask: "__-___-____"
1080
- },
1081
- {
1082
- name: "Maldives",
1083
- code: "+960",
1084
- iso: "MV",
1085
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mv.svg",
1086
- mask: "___-____"
1087
- },
1088
- {
1089
- name: "Mali",
1090
- code: "+223",
1091
- iso: "ML",
1092
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ml.svg",
1093
- mask: "__-__-____"
1094
- },
1095
- {
1096
- name: "Malta",
1097
- code: "+356",
1098
- iso: "MT",
1099
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mt.svg",
1100
- mask: "____-____"
1101
- },
1102
- {
1103
- name: "Marshall Islands",
1104
- code: "+692",
1105
- iso: "MH",
1106
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mh.svg",
1107
- mask: "___-____"
1108
- },
1109
- {
1110
- name: "Martinique",
1111
- code: "+596",
1112
- iso: "MQ",
1113
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mq.svg",
1114
- mask: "(___) __-__-__"
1115
- },
1116
- {
1117
- name: "Mauritania",
1118
- code: "+222",
1119
- iso: "MR",
1120
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mr.svg",
1121
- mask: "__-__-____"
1122
- },
1123
- {
1124
- name: "Mauritius",
1125
- code: "+230",
1126
- iso: "MU",
1127
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mu.svg",
1128
- mask: "___-____"
1129
- },
1130
- {
1131
- name: "Mayotte",
1132
- code: "+262",
1133
- iso: "YT",
1134
- flag: "https://cdn.kcak11.com/CountryFlags/countries/yt.svg",
1135
- mask: "_____-____"
1136
- },
1137
- {
1138
- name: "Mexico",
1139
- code: "+52",
1140
- iso: "MX",
1141
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mx.svg",
1142
- mask: "(___) ___-____"
1143
- },
1144
- {
1145
- name: "Micronesia, Federated States of Micronesia",
1146
- code: "+691",
1147
- iso: "FM",
1148
- flag: "https://cdn.kcak11.com/CountryFlags/countries/fm.svg",
1149
- mask: "___-____"
1150
- },
1151
- {
1152
- name: "Moldova",
1153
- code: "+373",
1154
- iso: "MD",
1155
- flag: "https://cdn.kcak11.com/CountryFlags/countries/md.svg",
1156
- mask: "____-____"
1157
- },
1158
- {
1159
- name: "Monaco",
1160
- code: "+377",
1161
- iso: "MC",
1162
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mc.svg",
1163
- mask: "(___) ___-___"
1164
- },
1165
- {
1166
- name: "Mongolia",
1167
- code: "+976",
1168
- iso: "MN",
1169
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mn.svg",
1170
- mask: "__-__-____"
1171
- },
1172
- {
1173
- name: "Montenegro",
1174
- code: "+382",
1175
- iso: "ME",
1176
- flag: "https://cdn.kcak11.com/CountryFlags/countries/me.svg",
1177
- mask: "__-___-___"
1178
- },
1179
- {
1180
- name: "Montserrat",
1181
- code: "+1",
1182
- iso: "MS",
1183
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ms.svg",
1184
- mask: "(___) ___-____"
1185
- },
1186
- {
1187
- name: "Morocco",
1188
- code: "+212",
1189
- iso: "MA",
1190
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ma.svg",
1191
- mask: "__-____-___"
1192
- },
1193
- {
1194
- name: "Mozambique",
1195
- code: "+258",
1196
- iso: "MZ",
1197
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mz.svg",
1198
- mask: "__-___-___"
1199
- },
1200
- {
1201
- name: "Myanmar",
1202
- code: "+95",
1203
- iso: "MM",
1204
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mm.svg",
1205
- mask: "__-___-___"
1206
- },
1207
- {
1208
- name: "Namibia",
1209
- code: "+264",
1210
- iso: "NA",
1211
- flag: "https://cdn.kcak11.com/CountryFlags/countries/na.svg",
1212
- mask: "__-___-____"
1213
- },
1214
- {
1215
- name: "Nauru",
1216
- code: "+674",
1217
- iso: "NR",
1218
- flag: "https://cdn.kcak11.com/CountryFlags/countries/nr.svg",
1219
- mask: "___-____"
1220
- },
1221
- {
1222
- name: "Nepal",
1223
- code: "+977",
1224
- iso: "NP",
1225
- flag: "https://cdn.kcak11.com/CountryFlags/countries/np.svg",
1226
- mask: "__-___-___"
1227
- },
1228
- {
1229
- name: "Netherlands",
1230
- code: "+31",
1231
- iso: "NL",
1232
- flag: "https://cdn.kcak11.com/CountryFlags/countries/nl.svg",
1233
- mask: "__-___-____"
1234
- },
1235
- {
1236
- name: "New Caledonia",
1237
- code: "+687",
1238
- iso: "NC",
1239
- flag: "https://cdn.kcak11.com/CountryFlags/countries/nc.svg",
1240
- mask: "__-____"
1241
- },
1242
- {
1243
- name: "New Zealand",
1244
- code: "+64",
1245
- iso: "NZ",
1246
- flag: "https://cdn.kcak11.com/CountryFlags/countries/nz.svg",
1247
- mask: "(___) ___-____"
1248
- },
1249
- {
1250
- name: "Nicaragua",
1251
- code: "+505",
1252
- iso: "NI",
1253
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ni.svg",
1254
- mask: "____-____"
1255
- },
1256
- {
1257
- name: "Niger",
1258
- code: "+227",
1259
- iso: "NE",
1260
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ne.svg",
1261
- mask: "__-__-____"
1262
- },
1263
- {
1264
- name: "Nigeria",
1265
- code: "+234",
1266
- iso: "NG",
1267
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ng.svg",
1268
- mask: "(___) ___-____"
1269
- },
1270
- {
1271
- name: "Niue",
1272
- code: "+683",
1273
- iso: "NU",
1274
- flag: "https://cdn.kcak11.com/CountryFlags/countries/nu.svg",
1275
- mask: "____"
1276
- },
1277
- {
1278
- name: "Norfolk Island",
1279
- code: "+672",
1280
- iso: "NF",
1281
- flag: "https://cdn.kcak11.com/CountryFlags/countries/nf.svg",
1282
- mask: "___-___"
1283
- },
1284
- {
1285
- name: "North Macedonia",
1286
- code: "+389",
1287
- iso: "MK",
1288
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mk.svg",
1289
- mask: "__-___-___"
1290
- },
1291
- {
1292
- name: "Northern Mariana Islands",
1293
- code: "+1",
1294
- iso: "MP",
1295
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mp.svg",
1296
- mask: "(___) ___-____"
1297
- },
1298
- {
1299
- name: "Norway",
1300
- code: "+47",
1301
- iso: "NO",
1302
- flag: "https://cdn.kcak11.com/CountryFlags/countries/no.svg",
1303
- mask: "(___) __-___"
1304
- },
1305
- {
1306
- name: "Oman",
1307
- code: "+968",
1308
- iso: "OM",
1309
- flag: "https://cdn.kcak11.com/CountryFlags/countries/om.svg",
1310
- mask: "__-___-___"
1311
- },
1312
- {
1313
- name: "Pakistan",
1314
- code: "+92",
1315
- iso: "PK",
1316
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pk.svg",
1317
- mask: "(___) ___-____"
1318
- },
1319
- {
1320
- name: "Palau",
1321
- code: "+680",
1322
- iso: "PW",
1323
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pw.svg",
1324
- mask: "___-____"
1325
- },
1326
- {
1327
- name: "Palestine",
1328
- code: "+970",
1329
- iso: "PS",
1330
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ps.svg",
1331
- mask: "__-___-____"
1332
- },
1333
- {
1334
- name: "Panama",
1335
- code: "+507",
1336
- iso: "PA",
1337
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pa.svg",
1338
- mask: "___-____"
1339
- },
1340
- {
1341
- name: "Papua New Guinea",
1342
- code: "+675",
1343
- iso: "PG",
1344
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pg.svg",
1345
- mask: "(___) __-___"
1346
- },
1347
- {
1348
- name: "Paraguay",
1349
- code: "+595",
1350
- iso: "PY",
1351
- flag: "https://cdn.kcak11.com/CountryFlags/countries/py.svg",
1352
- mask: "(___) ___-___"
1353
- },
1354
- {
1355
- name: "Peru",
1356
- code: "+51",
1357
- iso: "PE",
1358
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pe.svg",
1359
- mask: "(___) ___-___"
1360
- },
1361
- {
1362
- name: "Philippines",
1363
- code: "+63",
1364
- iso: "PH",
1365
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ph.svg",
1366
- mask: "(___) ___-____"
1367
- },
1368
- {
1369
- name: "Pitcairn",
1370
- code: "+870",
1371
- iso: "PN",
1372
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pn.svg",
1373
- mask: "___-___-___"
1374
- },
1375
- {
1376
- name: "Poland",
1377
- code: "+48",
1378
- iso: "PL",
1379
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pl.svg",
1380
- mask: "(___) ___-___"
1381
- },
1382
- {
1383
- name: "Portugal",
1384
- code: "+351",
1385
- iso: "PT",
1386
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pt.svg",
1387
- mask: "__-___-____"
1388
- },
1389
- {
1390
- name: "Puerto Rico",
1391
- code: "+1",
1392
- iso: "PR",
1393
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pr.svg",
1394
- mask: "(___) ___ ____"
1395
- },
1396
- {
1397
- name: "Qatar",
1398
- code: "+974",
1399
- iso: "QA",
1400
- flag: "https://cdn.kcak11.com/CountryFlags/countries/qa.svg",
1401
- mask: "____-____"
1402
- },
1403
- {
1404
- name: "Reunion",
1405
- code: "+262",
1406
- iso: "RE",
1407
- flag: "https://cdn.kcak11.com/CountryFlags/countries/re.svg",
1408
- mask: "_____-____"
1409
- },
1410
- {
1411
- name: "Romania",
1412
- code: "+40",
1413
- iso: "RO",
1414
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ro.svg",
1415
- mask: "__-___-____"
1416
- },
1417
- {
1418
- name: "Russia",
1419
- code: "+7",
1420
- iso: "RU",
1421
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ru.svg",
1422
- mask: "(___) ___-__-__"
1423
- },
1424
- {
1425
- name: "Rwanda",
1426
- code: "+250",
1427
- iso: "RW",
1428
- flag: "https://cdn.kcak11.com/CountryFlags/countries/rw.svg",
1429
- mask: "(___) ___-___"
1430
- },
1431
- {
1432
- name: "Saint Barthelemy",
1433
- code: "+590",
1434
- iso: "BL",
1435
- flag: "https://cdn.kcak11.com/CountryFlags/countries/bl.svg",
1436
- mask: "___-__-__-__"
1437
- },
1438
- {
1439
- name: "Saint Helena, Ascension and Tristan Da Cunha",
1440
- code: "+290",
1441
- iso: "SH",
1442
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sh.svg",
1443
- mask: "____"
1444
- },
1445
- {
1446
- name: "Saint Kitts and Nevis",
1447
- code: "+1",
1448
- iso: "KN",
1449
- flag: "https://cdn.kcak11.com/CountryFlags/countries/kn.svg",
1450
- mask: "(___) ___-____"
1451
- },
1452
- {
1453
- name: "Saint Lucia",
1454
- code: "+1",
1455
- iso: "LC",
1456
- flag: "https://cdn.kcak11.com/CountryFlags/countries/lc.svg",
1457
- mask: "(___) ___-____"
1458
- },
1459
- {
1460
- name: "Saint Martin",
1461
- code: "+590",
1462
- iso: "MF",
1463
- flag: "https://cdn.kcak11.com/CountryFlags/countries/mf.svg",
1464
- mask: "(___) ___-___"
1465
- },
1466
- {
1467
- name: "Saint Pierre and Miquelon",
1468
- code: "+508",
1469
- iso: "PM",
1470
- flag: "https://cdn.kcak11.com/CountryFlags/countries/pm.svg",
1471
- mask: "__-____"
1472
- },
1473
- {
1474
- name: "Saint Vincent and the Grenadines",
1475
- code: "+1",
1476
- iso: "VC",
1477
- flag: "https://cdn.kcak11.com/CountryFlags/countries/vc.svg",
1478
- mask: "(___) ___-____"
1479
- },
1480
- {
1481
- name: "Samoa",
1482
- code: "+685",
1483
- iso: "WS",
1484
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ws.svg",
1485
- mask: "__-____"
1486
- },
1487
- {
1488
- name: "San Marino",
1489
- code: "+378",
1490
- iso: "SM",
1491
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sm.svg",
1492
- mask: "____-______"
1493
- },
1494
- {
1495
- name: "Sao Tome and Principe",
1496
- code: "+239",
1497
- iso: "ST",
1498
- flag: "https://cdn.kcak11.com/CountryFlags/countries/st.svg",
1499
- mask: "__-_____"
1500
- },
1501
- {
1502
- name: "Saudi Arabia",
1503
- code: "+966",
1504
- iso: "SA",
1505
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sa.svg",
1506
- mask: "_-____-____"
1507
- },
1508
- {
1509
- name: "Senegal",
1510
- code: "+221",
1511
- iso: "SN",
1512
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sn.svg",
1513
- mask: "__-___-____"
1514
- },
1515
- {
1516
- name: "Serbia",
1517
- code: "+381",
1518
- iso: "RS",
1519
- flag: "https://cdn.kcak11.com/CountryFlags/countries/rs.svg",
1520
- mask: "__-___-____"
1521
- },
1522
- {
1523
- name: "Seychelles",
1524
- code: "+248",
1525
- iso: "SC",
1526
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sc.svg",
1527
- mask: "_-___-___"
1528
- },
1529
- {
1530
- name: "Sierra Leone",
1531
- code: "+232",
1532
- iso: "SL",
1533
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sl.svg",
1534
- mask: "__-______"
1535
- },
1536
- {
1537
- name: "Singapore",
1538
- code: "+65",
1539
- iso: "SG",
1540
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sg.svg",
1541
- mask: "____-____"
1542
- },
1543
- {
1544
- name: "Sint Maarten",
1545
- code: "+1",
1546
- iso: "SX",
1547
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sx.svg",
1548
- mask: "(___) ___-____"
1549
- },
1550
- {
1551
- name: "Slovakia",
1552
- code: "+421",
1553
- iso: "SK",
1554
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sk.svg",
1555
- mask: "(___) ___-___"
1556
- },
1557
- {
1558
- name: "Slovenia",
1559
- code: "+386",
1560
- iso: "SI",
1561
- flag: "https://cdn.kcak11.com/CountryFlags/countries/si.svg",
1562
- mask: "__-___-___"
1563
- },
1564
- {
1565
- name: "Solomon Islands",
1566
- code: "+677",
1567
- iso: "SB",
1568
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sb.svg",
1569
- mask: "___-____"
1570
- },
1571
- {
1572
- name: "Somalia",
1573
- code: "+252",
1574
- iso: "SO",
1575
- flag: "https://cdn.kcak11.com/CountryFlags/countries/so.svg",
1576
- mask: "__-___-___"
1577
- },
1578
- {
1579
- name: "South Africa",
1580
- code: "+27",
1581
- iso: "ZA",
1582
- flag: "https://cdn.kcak11.com/CountryFlags/countries/za.svg",
1583
- mask: "__-___-____"
1584
- },
1585
- {
1586
- name: "South Georgia and the South Sandwich Islands",
1587
- code: "+500",
1588
- iso: "GS",
1589
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gs.svg",
1590
- mask: "_____"
1591
- },
1592
- {
1593
- name: "South Sudan",
1594
- code: "+211",
1595
- iso: "SS",
1596
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ss.svg",
1597
- mask: "__-___-____"
1598
- },
1599
- {
1600
- name: "Spain",
1601
- code: "+34",
1602
- iso: "ES",
1603
- flag: "https://cdn.kcak11.com/CountryFlags/countries/es.svg",
1604
- mask: "(___) ___-___"
1605
- },
1606
- {
1607
- name: "Sri Lanka",
1608
- code: "+94",
1609
- iso: "LK",
1610
- flag: "https://cdn.kcak11.com/CountryFlags/countries/lk.svg",
1611
- mask: "__-___-____"
1612
- },
1613
- {
1614
- name: "Sudan",
1615
- code: "+249",
1616
- iso: "SD",
1617
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sd.svg",
1618
- mask: "__-___-____"
1619
- },
1620
- {
1621
- name: "Suriname",
1622
- code: "+597",
1623
- iso: "SR",
1624
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sr.svg",
1625
- mask: "___-____"
1626
- },
1627
- {
1628
- name: "Svalbard and Jan Mayen",
1629
- code: "+47",
1630
- iso: "SJ",
1631
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sj.svg",
1632
- mask: "(___) __-___"
1633
- },
1634
- {
1635
- name: "Sweden",
1636
- code: "+46",
1637
- iso: "SE",
1638
- flag: "https://cdn.kcak11.com/CountryFlags/countries/se.svg",
1639
- mask: "__-___-____"
1640
- },
1641
- {
1642
- name: "Switzerland",
1643
- code: "+41",
1644
- iso: "CH",
1645
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ch.svg",
1646
- mask: "__-___-____"
1647
- },
1648
- {
1649
- name: "Syrian Arab Republic",
1650
- code: "+963",
1651
- iso: "SY",
1652
- flag: "https://cdn.kcak11.com/CountryFlags/countries/sy.svg",
1653
- mask: "__-____-___"
1654
- },
1655
- {
1656
- name: "Taiwan",
1657
- code: "+886",
1658
- iso: "TW",
1659
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tw.svg",
1660
- mask: "_-____-____"
1661
- },
1662
- {
1663
- name: "Tajikistan",
1664
- code: "+992",
1665
- iso: "TJ",
1666
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tj.svg",
1667
- mask: "__-___-____"
1668
- },
1669
- {
1670
- name: "United Republic of Tanzania",
1671
- code: "+255",
1672
- iso: "TZ",
1673
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tz.svg",
1674
- mask: "__-___-____"
1675
- },
1676
- {
1677
- name: "Thailand",
1678
- code: "+66",
1679
- iso: "TH",
1680
- flag: "https://cdn.kcak11.com/CountryFlags/countries/th.svg",
1681
- mask: "__-___-____"
1682
- },
1683
- {
1684
- name: "Timor-Leste",
1685
- code: "+670",
1686
- iso: "TL",
1687
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tl.svg",
1688
- mask: "___-_____"
1689
- },
1690
- {
1691
- name: "Togo",
1692
- code: "+228",
1693
- iso: "TG",
1694
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tg.svg",
1695
- mask: "__-___-___"
1696
- },
1697
- {
1698
- name: "Tokelau",
1699
- code: "+690",
1700
- iso: "TK",
1701
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tk.svg",
1702
- mask: "____"
1703
- },
1704
- {
1705
- name: "Tonga",
1706
- code: "+676",
1707
- iso: "TO",
1708
- flag: "https://cdn.kcak11.com/CountryFlags/countries/to.svg",
1709
- mask: "_____"
1710
- },
1711
- {
1712
- name: "Trinidad and Tobago",
1713
- code: "+1",
1714
- iso: "TT",
1715
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tt.svg",
1716
- mask: "(___) ___-____"
1717
- },
1718
- {
1719
- name: "Tunisia",
1720
- code: "+216",
1721
- iso: "TN",
1722
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tn.svg",
1723
- mask: "__-___-___"
1724
- },
1725
- {
1726
- name: "Turkey",
1727
- code: "+90",
1728
- iso: "TR",
1729
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tr.svg",
1730
- mask: "(___) ___-____"
1731
- },
1732
- {
1733
- name: "Turkmenistan",
1734
- code: "+993",
1735
- iso: "TM",
1736
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tm.svg",
1737
- mask: "_-___-____"
1738
- },
1739
- {
1740
- name: "Turks and Caicos Islands",
1741
- code: "+1",
1742
- iso: "TC",
1743
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tc.svg",
1744
- mask: "(___) ___-___"
1745
- },
1746
- {
1747
- name: "Tuvalu",
1748
- code: "+688",
1749
- iso: "TV",
1750
- flag: "https://cdn.kcak11.com/CountryFlags/countries/tv.svg",
1751
- mask: "______"
1752
- },
1753
- {
1754
- name: "Uganda",
1755
- code: "+256",
1756
- iso: "UG",
1757
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ug.svg",
1758
- mask: "(___) ___-___"
1759
- },
1760
- {
1761
- name: "Ukraine",
1762
- code: "+380",
1763
- iso: "UA",
1764
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ua.svg",
1765
- mask: "(__) ___-__-__"
1766
- },
1767
- {
1768
- name: "United Arab Emirates",
1769
- code: "+971",
1770
- iso: "AE",
1771
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ae.svg",
1772
- mask: "_-___-____"
1773
- },
1774
- {
1775
- name: "United Kingdom",
1776
- code: "+44",
1777
- iso: "GB",
1778
- flag: "https://cdn.kcak11.com/CountryFlags/countries/gb.svg",
1779
- mask: "__-____-____"
1780
- },
1781
- {
1782
- name: "United States",
1783
- code: "+1",
1784
- iso: "US",
1785
- flag: "https://cdn.kcak11.com/CountryFlags/countries/us.svg",
1786
- mask: "(___) ___-____"
1787
- },
1788
- {
1789
- name: "Uruguay",
1790
- code: "+598",
1791
- iso: "UY",
1792
- flag: "https://cdn.kcak11.com/CountryFlags/countries/uy.svg",
1793
- mask: "_-___-__-__"
1794
- },
1795
- {
1796
- name: "Uzbekistan",
1797
- code: "+998",
1798
- iso: "UZ",
1799
- flag: "https://cdn.kcak11.com/CountryFlags/countries/uz.svg",
1800
- mask: "__-___-____"
1801
- },
1802
- {
1803
- name: "Vanuatu",
1804
- code: "+678",
1805
- iso: "VU",
1806
- flag: "https://cdn.kcak11.com/CountryFlags/countries/vu.svg",
1807
- mask: "__-_____"
1808
- },
1809
- {
1810
- name: "Venezuela, Bolivarian Republic of Venezuela",
1811
- code: "+58",
1812
- iso: "VE",
1813
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ve.svg",
1814
- mask: "(___) ___-____"
1815
- },
1816
- {
1817
- name: "Vietnam",
1818
- code: "+84",
1819
- iso: "VN",
1820
- flag: "https://cdn.kcak11.com/CountryFlags/countries/vn.svg",
1821
- mask: "(___) ____-___"
1822
- },
1823
- {
1824
- name: "Virgin Islands, British",
1825
- code: "+1",
1826
- iso: "VG",
1827
- flag: "https://cdn.kcak11.com/CountryFlags/countries/vg.svg",
1828
- mask: "(___) ___-____"
1829
- },
1830
- {
1831
- name: "Virgin Islands, U.S.",
1832
- code: "+1",
1833
- iso: "VI",
1834
- flag: "https://cdn.kcak11.com/CountryFlags/countries/vi.svg",
1835
- mask: "(___) ___-____"
1836
- },
1837
- {
1838
- name: "Wallis and Futuna",
1839
- code: "+681",
1840
- iso: "WF",
1841
- flag: "https://cdn.kcak11.com/CountryFlags/countries/wf.svg",
1842
- mask: "__-____"
1843
- },
1844
- {
1845
- name: "Yemen",
1846
- code: "+967",
1847
- iso: "YE",
1848
- flag: "https://cdn.kcak11.com/CountryFlags/countries/ye.svg",
1849
- mask: "___-___-___"
1850
- },
1851
- {
1852
- name: "Zambia",
1853
- code: "+260",
1854
- iso: "ZM",
1855
- flag: "https://cdn.kcak11.com/CountryFlags/countries/zm.svg",
1856
- mask: "__-___-____"
1857
- },
1858
- {
1859
- name: "Zimbabwe",
1860
- code: "+263",
1861
- iso: "ZW",
1862
- flag: "https://cdn.kcak11.com/CountryFlags/countries/zw.svg",
1863
- mask: "_-______"
1864
- }
1865
- ], I = {
1866
- USD: { countryLanguage: "en-US", countryCurrency: "USD" },
1867
- EUR: { countryLanguage: "de-DE", countryCurrency: "EUR" },
1868
- JPY: { countryLanguage: "ja-JP", countryCurrency: "JPY" },
1869
- GBP: { countryLanguage: "en-GB", countryCurrency: "GBP" },
1870
- AUD: { countryLanguage: "en-AU", countryCurrency: "AUD" },
1871
- CAD: { countryLanguage: "en-CA", countryCurrency: "CAD" },
1872
- CHF: { countryLanguage: "de-CH", countryCurrency: "CHF" },
1873
- CNY: { countryLanguage: "zh-CN", countryCurrency: "CNY" },
1874
- SEK: { countryLanguage: "sv-SE", countryCurrency: "SEK" },
1875
- NZD: { countryLanguage: "en-NZ", countryCurrency: "NZD" },
1876
- BRL: { countryLanguage: "pt-BR", countryCurrency: "BRL" },
1877
- INR: { countryLanguage: "en-IN", countryCurrency: "INR" },
1878
- RUB: { countryLanguage: "ru-RU", countryCurrency: "RUB" },
1879
- ZAR: { countryLanguage: "en-ZA", countryCurrency: "ZAR" },
1880
- MXN: { countryLanguage: "es-MX", countryCurrency: "MXN" },
1881
- SGD: { countryLanguage: "en-SG", countryCurrency: "SGD" },
1882
- HKD: { countryLanguage: "zh-HK", countryCurrency: "HKD" },
1883
- NOK: { countryLanguage: "nb-NO", countryCurrency: "NOK" },
1884
- KRW: { countryLanguage: "ko-KR", countryCurrency: "KRW" },
1885
- TRY: { countryLanguage: "tr-TR", countryCurrency: "TRY" },
1886
- IDR: { countryLanguage: "id-ID", countryCurrency: "IDR" },
1887
- THB: { countryLanguage: "th-TH", countryCurrency: "THB" }
1888
- };
1889
- function G1(d) {
1890
- return d.replace(new RegExp("(?:R\\$|\\p{Sc}|[$€¥£])", "gu"), "").trim();
1891
- }
1892
- function $e(d, t, e) {
1893
- if (!(I != null && I[t]))
1894
- throw new Error("Unsupported currency code");
1895
- const n = (e == null ? void 0 : e.showPrefix) ?? !0, { countryCurrency: r, countryLanguage: a } = I[t], o = new Intl.NumberFormat(a, {
1896
- style: "currency",
1897
- currency: r
1898
- }).format(d);
1899
- return n ? o.replace(/\s/g, " ") : G1(o).replace(/\s/g, " ");
1900
- }
1901
- function ie(d, t) {
1902
- if (d.length > t) {
1903
- let e = d.substring(0, t);
1904
- const n = e.lastIndexOf(" ");
1905
- return n > 0 && (e = e.substring(0, n)), e = e.replace(/[\s.,!?;:]+$/, ""), e.trim().length === 0 || /^[.,!?;:\s]+$/.test(e) ? "..." : `${e}...`;
1906
- }
1907
- return d;
1908
- }
1909
- const B1 = /^\d$/, U1 = (d) => {
1910
- let t = 0;
1911
- const e = d.split("").map((n) => B1.test(n) ? { character: n, kind: "digit", digit: ++t } : { character: n, kind: "other" });
1912
- return { digits: t, children: e, kind: "root" };
1913
- }, H1 = (d, t) => Array.isArray(d) ? d : d >= 0 ? [0, d] : [t + 1 - Math.abs(d), t], K1 = (d, t) => t >= d[0] && t <= d[1];
1914
- function ce(d, t) {
1915
- const e = U1(d), n = H1((t == null ? void 0 : t.range) ?? 3, e.digits);
1916
- return e.children.map((a) => a.kind === "digit" && K1(n, a.digit) ? (t == null ? void 0 : t.hider) ?? "*" : a.character).join("");
1917
- }
1918
- const j1 = { version: 4, country_calling_codes: { 1: ["US", "AG", "AI", "AS", "BB", "BM", "BS", "CA", "DM", "DO", "GD", "GU", "JM", "KN", "KY", "LC", "MP", "MS", "PR", "SX", "TC", "TT", "VC", "VG", "VI"], 7: ["RU", "KZ"], 20: ["EG"], 27: ["ZA"], 30: ["GR"], 31: ["NL"], 32: ["BE"], 33: ["FR"], 34: ["ES"], 36: ["HU"], 39: ["IT", "VA"], 40: ["RO"], 41: ["CH"], 43: ["AT"], 44: ["GB", "GG", "IM", "JE"], 45: ["DK"], 46: ["SE"], 47: ["NO", "SJ"], 48: ["PL"], 49: ["DE"], 51: ["PE"], 52: ["MX"], 53: ["CU"], 54: ["AR"], 55: ["BR"], 56: ["CL"], 57: ["CO"], 58: ["VE"], 60: ["MY"], 61: ["AU", "CC", "CX"], 62: ["ID"], 63: ["PH"], 64: ["NZ"], 65: ["SG"], 66: ["TH"], 81: ["JP"], 82: ["KR"], 84: ["VN"], 86: ["CN"], 90: ["TR"], 91: ["IN"], 92: ["PK"], 93: ["AF"], 94: ["LK"], 95: ["MM"], 98: ["IR"], 211: ["SS"], 212: ["MA", "EH"], 213: ["DZ"], 216: ["TN"], 218: ["LY"], 220: ["GM"], 221: ["SN"], 222: ["MR"], 223: ["ML"], 224: ["GN"], 225: ["CI"], 226: ["BF"], 227: ["NE"], 228: ["TG"], 229: ["BJ"], 230: ["MU"], 231: ["LR"], 232: ["SL"], 233: ["GH"], 234: ["NG"], 235: ["TD"], 236: ["CF"], 237: ["CM"], 238: ["CV"], 239: ["ST"], 240: ["GQ"], 241: ["GA"], 242: ["CG"], 243: ["CD"], 244: ["AO"], 245: ["GW"], 246: ["IO"], 247: ["AC"], 248: ["SC"], 249: ["SD"], 250: ["RW"], 251: ["ET"], 252: ["SO"], 253: ["DJ"], 254: ["KE"], 255: ["TZ"], 256: ["UG"], 257: ["BI"], 258: ["MZ"], 260: ["ZM"], 261: ["MG"], 262: ["RE", "YT"], 263: ["ZW"], 264: ["NA"], 265: ["MW"], 266: ["LS"], 267: ["BW"], 268: ["SZ"], 269: ["KM"], 290: ["SH", "TA"], 291: ["ER"], 297: ["AW"], 298: ["FO"], 299: ["GL"], 350: ["GI"], 351: ["PT"], 352: ["LU"], 353: ["IE"], 354: ["IS"], 355: ["AL"], 356: ["MT"], 357: ["CY"], 358: ["FI", "AX"], 359: ["BG"], 370: ["LT"], 371: ["LV"], 372: ["EE"], 373: ["MD"], 374: ["AM"], 375: ["BY"], 376: ["AD"], 377: ["MC"], 378: ["SM"], 380: ["UA"], 381: ["RS"], 382: ["ME"], 383: ["XK"], 385: ["HR"], 386: ["SI"], 387: ["BA"], 389: ["MK"], 420: ["CZ"], 421: ["SK"], 423: ["LI"], 500: ["FK"], 501: ["BZ"], 502: ["GT"], 503: ["SV"], 504: ["HN"], 505: ["NI"], 506: ["CR"], 507: ["PA"], 508: ["PM"], 509: ["HT"], 590: ["GP", "BL", "MF"], 591: ["BO"], 592: ["GY"], 593: ["EC"], 594: ["GF"], 595: ["PY"], 596: ["MQ"], 597: ["SR"], 598: ["UY"], 599: ["CW", "BQ"], 670: ["TL"], 672: ["NF"], 673: ["BN"], 674: ["NR"], 675: ["PG"], 676: ["TO"], 677: ["SB"], 678: ["VU"], 679: ["FJ"], 680: ["PW"], 681: ["WF"], 682: ["CK"], 683: ["NU"], 685: ["WS"], 686: ["KI"], 687: ["NC"], 688: ["TV"], 689: ["PF"], 690: ["TK"], 691: ["FM"], 692: ["MH"], 850: ["KP"], 852: ["HK"], 853: ["MO"], 855: ["KH"], 856: ["LA"], 880: ["BD"], 886: ["TW"], 960: ["MV"], 961: ["LB"], 962: ["JO"], 963: ["SY"], 964: ["IQ"], 965: ["KW"], 966: ["SA"], 967: ["YE"], 968: ["OM"], 970: ["PS"], 971: ["AE"], 972: ["IL"], 973: ["BH"], 974: ["QA"], 975: ["BT"], 976: ["MN"], 977: ["NP"], 992: ["TJ"], 993: ["TM"], 994: ["AZ"], 995: ["GE"], 996: ["KG"], 998: ["UZ"] }, countries: { AC: ["247", "00", "(?:[01589]\\d|[46])\\d{4}", [5, 6]], AD: ["376", "00", "(?:1|6\\d)\\d{7}|[135-9]\\d{5}", [6, 8, 9], [["(\\d{3})(\\d{3})", "$1 $2", ["[135-9]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["1"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]]]], AE: ["971", "00", "(?:[4-7]\\d|9[0-689])\\d{7}|800\\d{2,9}|[2-4679]\\d{7}", [5, 6, 7, 8, 9, 10, 11, 12], [["(\\d{3})(\\d{2,9})", "$1 $2", ["60|8"]], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[236]|[479][2-8]"], "0$1"], ["(\\d{3})(\\d)(\\d{5})", "$1 $2 $3", ["[479]"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["5"], "0$1"]], "0"], AF: ["93", "00", "[2-7]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"]], "0"], AG: ["1", "011", "(?:268|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([457]\\d{6})$|1", "268$1", 0, "268"], AI: ["1", "011", "(?:264|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2457]\\d{6})$|1", "264$1", 0, "264"], AL: ["355", "00", "(?:700\\d\\d|900)\\d{3}|8\\d{5,7}|(?:[2-5]|6\\d)\\d{7}", [6, 7, 8, 9], [["(\\d{3})(\\d{3,4})", "$1 $2", ["80|9"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["4[2-6]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2358][2-5]|4"], "0$1"], ["(\\d{3})(\\d{5})", "$1 $2", ["[23578]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["6"], "0$1"]], "0"], AM: ["374", "00", "(?:[1-489]\\d|55|60|77)\\d{6}", [8], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[89]0"], "0 $1"], ["(\\d{3})(\\d{5})", "$1 $2", ["2|3[12]"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["1|47"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[3-9]"], "0$1"]], "0"], AO: ["244", "00", "[29]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[29]"]]]], AR: ["54", "00", "(?:11|[89]\\d\\d)\\d{8}|[2368]\\d{9}", [10, 11], [["(\\d{4})(\\d{2})(\\d{4})", "$1 $2-$3", ["2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9])", "2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8]))|2(?:2[24-9]|3[1-59]|47)", "2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5[56][46]|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]", "2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|58|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|54(?:4|5[13-7]|6[89])|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:454|85[56])[46]|3(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"], "0$1", 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2-$3", ["1"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["[68]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2-$3", ["[23]"], "0$1", 1], ["(\\d)(\\d{4})(\\d{2})(\\d{4})", "$2 15-$3-$4", ["9(?:2[2-469]|3[3-578])", "9(?:2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9]))", "9(?:2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8])))|92(?:2[24-9]|3[1-59]|47)", "9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5(?:[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]", "9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|5(?:4(?:4|5[13-7]|6[89])|[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"], "0$1", 0, "$1 $2 $3-$4"], ["(\\d)(\\d{2})(\\d{4})(\\d{4})", "$2 15-$3-$4", ["91"], "0$1", 0, "$1 $2 $3-$4"], ["(\\d{3})(\\d{3})(\\d{5})", "$1-$2-$3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{4})", "$2 15-$3-$4", ["9"], "0$1", 0, "$1 $2 $3-$4"]], "0", 0, "0?(?:(11|2(?:2(?:02?|[13]|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:02?|1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[67])|4(?:7[3-578]|9)|6(?:[0136]|2[24-6]|4[6-8]?|5[15-8])|80|9(?:0[1-3]|[19]|2\\d|3[1-6]|4[02568]?|5[2-4]|6[2-46]|72?|8[23]?))|3(?:3(?:2[79]|6|8[2578])|4(?:0[0-24-9]|[12]|3[5-8]?|4[24-7]|5[4-68]?|6[02-9]|7[126]|8[2379]?|9[1-36-8])|5(?:1|2[1245]|3[237]?|4[1-46-9]|6[2-4]|7[1-6]|8[2-5]?)|6[24]|7(?:[069]|1[1568]|2[15]|3[145]|4[13]|5[14-8]|7[2-57]|8[126])|8(?:[01]|2[15-7]|3[2578]?|4[13-6]|5[4-8]?|6[1-357-9]|7[36-8]?|8[5-8]?|9[124])))15)?", "9$1"], AS: ["1", "011", "(?:[58]\\d\\d|684|900)\\d{7}", [10], 0, "1", 0, "([267]\\d{6})$|1", "684$1", 0, "684"], AT: ["43", "00", "1\\d{3,12}|2\\d{6,12}|43(?:(?:0\\d|5[02-9])\\d{3,9}|2\\d{4,5}|[3467]\\d{4}|8\\d{4,6}|9\\d{4,7})|5\\d{4,12}|8\\d{7,12}|9\\d{8,12}|(?:[367]\\d|4[0-24-9])\\d{4,11}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [["(\\d)(\\d{3,12})", "$1 $2", ["1(?:11|[2-9])"], "0$1"], ["(\\d{3})(\\d{2})", "$1 $2", ["517"], "0$1"], ["(\\d{2})(\\d{3,5})", "$1 $2", ["5[079]"], "0$1"], ["(\\d{3})(\\d{3,10})", "$1 $2", ["(?:31|4)6|51|6(?:48|5[0-3579]|[6-9])|7(?:20|32|8)|[89]", "(?:31|4)6|51|6(?:485|5[0-3579]|[6-9])|7(?:20|32|8)|[89]"], "0$1"], ["(\\d{4})(\\d{3,9})", "$1 $2", ["[2-467]|5[2-6]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4,7})", "$1 $2 $3", ["5"], "0$1"]], "0"], AU: ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{7}(?:\\d(?:\\d{2})?)?|8[0-24-9]\\d{7})|[2-478]\\d{8}|1\\d{4,7}", [5, 6, 7, 8, 9, 10, 12], [["(\\d{2})(\\d{3,4})", "$1 $2", ["16"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,4})", "$1 $2 $3", ["16"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["14|4"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[2378]"], "(0$1)"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1(?:30|[89])"]]], "0", 0, "(183[12])|0", 0, 0, 0, [["(?:(?:241|349)0\\d\\d|8(?:51(?:0(?:0[03-9]|[12479]\\d|3[2-9]|5[0-8]|6[1-9]|8[0-7])|1(?:[0235689]\\d|1[0-69]|4[0-589]|7[0-47-9])|2(?:0[0-79]|[18][13579]|2[14-9]|3[0-46-9]|[4-6]\\d|7[89]|9[0-4])|[34]\\d\\d)|91(?:(?:[0-58]\\d|6[0135-9])\\d|7(?:0[0-24-9]|[1-9]\\d)|9(?:[0-46-9]\\d|5[0-79]))))\\d{3}|(?:2(?:[0-26-9]\\d|3[0-8]|4[02-9]|5[0135-9])|3(?:[0-3589]\\d|4[0-578]|6[1-9]|7[0-35-9])|7(?:[013-57-9]\\d|2[0-8])|8(?:55|6[0-8]|[78]\\d|9[02-9]))\\d{6}", [9]], ["4(?:79[01]|83[0-36-9]|95[0-3])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, ["163\\d{2,6}", [5, 6, 7, 8, 9]], ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], AW: ["297", "00", "(?:[25-79]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[25-9]"]]]], AX: ["358", "00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))", "2\\d{4,9}|35\\d{4,5}|(?:60\\d\\d|800)\\d{4,6}|7\\d{5,11}|(?:[14]\\d|3[0-46-9]|50)\\d{4,8}", [5, 6, 7, 8, 9, 10, 11, 12], 0, "0", 0, 0, 0, 0, "18", 0, "00"], AZ: ["994", "00", "365\\d{6}|(?:[124579]\\d|60|88)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["90"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[28]|2|365|46", "1[28]|2|365[45]|46", "1[28]|2|365(?:4|5[02])|46"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[13-9]"], "0$1"]], "0"], BA: ["387", "00", "6\\d{8}|(?:[35689]\\d|49|70)\\d{6}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["6[1-3]|[7-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2-$3", ["[3-5]|6[56]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["6"], "0$1"]], "0"], BB: ["1", "011", "(?:246|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "246$1", 0, "246"], BD: ["880", "00", "[1-469]\\d{9}|8[0-79]\\d{7,8}|[2-79]\\d{8}|[2-9]\\d{7}|[3-9]\\d{6}|[57-9]\\d{5}", [6, 7, 8, 9, 10], [["(\\d{2})(\\d{4,6})", "$1-$2", ["31[5-8]|[459]1"], "0$1"], ["(\\d{3})(\\d{3,7})", "$1-$2", ["3(?:[67]|8[013-9])|4(?:6[168]|7|[89][18])|5(?:6[128]|9)|6(?:[15]|28|4[14])|7[2-589]|8(?:0[014-9]|[12])|9[358]|(?:3[2-5]|4[235]|5[2-578]|6[0389]|76|8[3-7]|9[24])1|(?:44|66)[01346-9]"], "0$1"], ["(\\d{4})(\\d{3,6})", "$1-$2", ["[13-9]|2[23]"], "0$1"], ["(\\d)(\\d{7,8})", "$1-$2", ["2"], "0$1"]], "0"], BE: ["32", "00", "4\\d{8}|[1-9]\\d{7}", [8, 9], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:80|9)0"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[239]|4[23]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[15-8]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["4"], "0$1"]], "0"], BF: ["226", "00", "[024-7]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[024-7]"]]]], BG: ["359", "00", "00800\\d{7}|[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}", [6, 7, 8, 9, 12], [["(\\d)(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["2"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["43[1-6]|70[1-9]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["[356]|4[124-7]|7[1-9]|8[1-6]|9[1-7]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:70|8)0"], "0$1"], ["(\\d{3})(\\d{3})(\\d{2})", "$1 $2 $3", ["43[1-7]|7"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[48]|9[08]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1"]], "0"], BH: ["973", "00", "[136-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[13679]|8[02-4679]"]]]], BI: ["257", "00", "(?:[267]\\d|31)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2367]"]]]], BJ: ["229", "00", "(?:01\\d|8)\\d{7}", [8, 10], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["0"]]]], BL: ["590", "00", "7090\\d{5}|(?:[56]9|[89]\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [["(?:59(?:0(?:2[7-9]|3[3-7]|5[12]|87)|87\\d)|80[6-9]\\d\\d)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], ["8[129]\\d{7}"], 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], BM: ["1", "011", "(?:441|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "441$1", 0, "441"], BN: ["673", "00", "[2-578]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-578]"]]]], BO: ["591", "00(?:1\\d)?", "8001\\d{5}|(?:[2-467]\\d|50)\\d{6}", [8, 9], [["(\\d)(\\d{7})", "$1 $2", ["[235]|4[46]"]], ["(\\d{8})", "$1", ["[67]"]], ["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["8"]]], "0", 0, "0(1\\d)?"], BQ: ["599", "00", "(?:[34]1|7\\d)\\d{5}", [7], 0, 0, 0, 0, 0, 0, "[347]"], BR: ["55", "00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)", "[1-467]\\d{9,10}|55[0-46-9]\\d{8}|[34]\\d{7}|55\\d{7,8}|(?:5[0-46-9]|[89]\\d)\\d{7,9}", [8, 9, 10, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["300|4(?:0[02]|37|86)", "300|4(?:0(?:0|20)|370|864)"]], ["(\\d{3})(\\d{2,3})(\\d{4})", "$1 $2 $3", ["(?:[358]|90)0"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2-$3", ["(?:[14689][1-9]|2[12478]|3[1-578]|5[13-5]|7[13-579])[2-57]"], "($1)"], ["(\\d{2})(\\d{5})(\\d{4})", "$1 $2-$3", ["[16][1-9]|[2-57-9]"], "($1)"]], "0", 0, "(?:0|90)(?:(1[245]|2[1-35]|31|4[13]|[56]5|99)(\\d{10,11}))?", "$2"], BS: ["1", "011", "(?:242|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([3-8]\\d{6})$|1", "242$1", 0, "242"], BT: ["975", "00", "[178]\\d{7}|[2-8]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-6]|7[246]|8[2-4]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[67]|[78]"]]]], BW: ["267", "00", "(?:0800|(?:[37]|800)\\d)\\d{6}|(?:[2-6]\\d|90)\\d{5}", [7, 8, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["90"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[24-6]|3[15-9]"]], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[37]"]], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{4})(\\d{3})", "$1 $2 $3", ["8"]]]], BY: ["375", "810", "(?:[12]\\d|33|44|902)\\d{7}|8(?:0[0-79]\\d{5,7}|[1-7]\\d{9})|8(?:1[0-489]|[5-79]\\d)\\d{7}|8[1-79]\\d{6,7}|8[0-79]\\d{5}|8\\d{5}", [6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{3})", "$1 $2", ["800"], "8 $1"], ["(\\d{3})(\\d{2})(\\d{2,4})", "$1 $2 $3", ["800"], "8 $1"], ["(\\d{4})(\\d{2})(\\d{3})", "$1 $2-$3", ["1(?:5[169]|6[3-5]|7[179])|2(?:1[35]|2[34]|3[3-5])", "1(?:5[169]|6(?:3[1-3]|4|5[125])|7(?:1[3-9]|7[0-24-6]|9[2-7]))|2(?:1[35]|2[34]|3[3-5])"], "8 0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["1(?:[56]|7[467])|2[1-3]"], "8 0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[1-4]"], "8 0$1"], ["(\\d{3})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["[89]"], "8 $1"]], "8", 0, "0|80?", 0, 0, 0, 0, "8~10"], BZ: ["501", "00", "(?:0800\\d|[2-8])\\d{6}", [7, 11], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-8]"]], ["(\\d)(\\d{3})(\\d{4})(\\d{3})", "$1-$2-$3-$4", ["0"]]]], CA: ["1", "011", "[2-9]\\d{9}|3\\d{6}", [7, 10], 0, "1", 0, 0, 0, 0, 0, [["(?:2(?:04|[23]6|[48]9|5[07]|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|7[39])|9(?:0[25]|42))[2-9]\\d{6}", [10]], ["", [10]], ["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}", [10]], ["900[2-9]\\d{6}", [10]], ["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:2[125-9]|3[23]|44|66|77|88)|6(?:22|33))[2-9]\\d{6}", [10]], 0, ["310\\d{4}", [7]], 0, ["600[2-9]\\d{6}", [10]]]], CC: ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}", [6, 7, 8, 9, 10, 12], 0, "0", 0, "([59]\\d{7})$|0", "8$1", 0, 0, [["8(?:51(?:0(?:02|31|60|89)|1(?:18|76)|223)|91(?:0(?:1[0-2]|29)|1(?:[28]2|50|79)|2(?:10|64)|3(?:[06]8|22)|4[29]8|62\\d|70[23]|959))\\d{3}", [9]], ["4(?:79[01]|83[0-36-9]|95[0-3])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, 0, ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], CD: ["243", "00", "(?:(?:[189]|5\\d)\\d|2)\\d{7}|[1-68]\\d{6}", [7, 8, 9, 10], [["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["88"], "0$1"], ["(\\d{2})(\\d{5})", "$1 $2", ["[1-6]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["5"], "0$1"]], "0"], CF: ["236", "00", "8776\\d{4}|(?:[27]\\d|61)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-8]"]]]], CG: ["242", "00", "222\\d{6}|(?:0\\d|80)\\d{7}", [9], [["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[02]"]]]], CH: ["41", "00", "8\\d{11}|[2-9]\\d{8}", [9, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8[047]|90"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]|81"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["8"], "0$1"]], "0"], CI: ["225", "00", "[02]\\d{9}", [10], [["(\\d{2})(\\d{2})(\\d)(\\d{5})", "$1 $2 $3 $4", ["2"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3 $4", ["0"]]]], CK: ["682", "00", "[2-578]\\d{4}", [5], [["(\\d{2})(\\d{3})", "$1 $2", ["[2-578]"]]]], CL: ["56", "(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0", "12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}", [9, 10, 11], [["(\\d{5})(\\d{4})", "$1 $2", ["219", "2196"], "($1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["60|809"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["44"]], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2[1-36]"], "($1)"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["9(?:10|[2-9])"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-8]|[1-9])"], "($1)"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["60|8"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], ["(\\d{3})(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["60"]]]], CM: ["237", "00", "[26]\\d{8}|88\\d{6,7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["88"]], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[26]|88"]]]], CN: ["86", "00|1(?:[12]\\d|79)\\d\\d00", "(?:(?:1[03-689]|2\\d)\\d\\d|6)\\d{8}|1\\d{10}|[126]\\d{6}(?:\\d(?:\\d{2})?)?|86\\d{5,6}|(?:[3-579]\\d|8[0-57-9])\\d{5,9}", [7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{5,6})", "$1 $2", ["(?:10|2[0-57-9])[19]|3(?:[157]|35|49|9[1-68])|4(?:1[124-9]|2[179]|6[47-9]|7|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:07|1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3|4[13]|5[1-5]|7[0-79]|9[0-35-9])|(?:4[35]|59|85)[1-9]", "(?:10|2[0-57-9])(?:1[02]|9[56])|8078|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))1", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|80781|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))12", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|807812|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))123", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:078|1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))123"], "0$1"], ["(\\d{3})(\\d{5,6})", "$1 $2", ["3(?:[157]|35|49|9[1-68])|4(?:[17]|2[179]|6[47-9]|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])|(?:4[35]|59|85)[1-9]", "(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))[19]", "85[23](?:10|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:10|9[56])", "85[23](?:100|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:100|9[56])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["(?:4|80)0"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["10|2(?:[02-57-9]|1[1-9])", "10|2(?:[02-57-9]|1[1-9])", "10[0-79]|2(?:[02-57-9]|1[1-79])|(?:10|21)8(?:0[1-9]|[1-9])"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["3(?:[3-59]|7[02-68])|4(?:[26-8]|3[3-9]|5[2-9])|5(?:3[03-9]|[468]|7[028]|9[2-46-9])|6|7(?:[0-247]|3[04-9]|5[0-4689]|6[2368])|8(?:[1-358]|9[1-7])|9(?:[013479]|5[1-5])|(?:[34]1|55|79|87)[02-9]"], "0$1", 1], ["(\\d{3})(\\d{7,8})", "$1 $2", ["9"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["80"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["[3-578]"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["1[3-9]"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["[12]"], "0$1", 1]], "0", 0, "(1(?:[12]\\d|79)\\d\\d)|0", 0, 0, 0, 0, "00"], CO: ["57", "00(?:4(?:[14]4|56)|[579])", "(?:46|60\\d\\d)\\d{6}|(?:1\\d|[39])\\d{9}", [8, 10, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["46"]], ["(\\d{3})(\\d{7})", "$1 $2", ["6|90"], "($1)"], ["(\\d{3})(\\d{7})", "$1 $2", ["3[0-357]|9[14]"]], ["(\\d)(\\d{3})(\\d{7})", "$1-$2-$3", ["1"], "0$1", 0, "$1 $2 $3"]], "0", 0, "0([3579]|4(?:[14]4|56))?"], CR: ["506", "00", "(?:8\\d|90)\\d{8}|(?:[24-8]\\d{3}|3005)\\d{4}", [8, 10], [["(\\d{4})(\\d{4})", "$1 $2", ["[2-7]|8[3-9]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["[89]"]]], 0, 0, "(19(?:0[0-2468]|1[09]|20|66|77|99))"], CU: ["53", "119", "(?:[2-7]|8\\d\\d)\\d{7}|[2-47]\\d{6}|[34]\\d{5}", [6, 7, 8, 10], [["(\\d{2})(\\d{4,6})", "$1 $2", ["2[1-4]|[34]"], "(0$1)"], ["(\\d)(\\d{6,7})", "$1 $2", ["7"], "(0$1)"], ["(\\d)(\\d{7})", "$1 $2", ["[56]"], "0$1"], ["(\\d{3})(\\d{7})", "$1 $2", ["8"], "0$1"]], "0"], CV: ["238", "0", "(?:[2-59]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2-589]"]]]], CW: ["599", "00", "(?:[34]1|60|(?:7|9\\d)\\d)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["[3467]"]], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["9[4-8]"]]], 0, 0, 0, 0, 0, "[69]"], CX: ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}", [6, 7, 8, 9, 10, 12], 0, "0", 0, "([59]\\d{7})$|0", "8$1", 0, 0, [["8(?:51(?:0(?:01|30|59|88)|1(?:17|46|75)|2(?:22|35))|91(?:00[6-9]|1(?:[28]1|49|78)|2(?:09|63)|3(?:12|26|75)|4(?:56|97)|64\\d|7(?:0[01]|1[0-2])|958))\\d{3}", [9]], ["4(?:79[01]|83[0-36-9]|95[0-3])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, 0, ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], CY: ["357", "00", "(?:[279]\\d|[58]0)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[257-9]"]]]], CZ: ["420", "00", "(?:[2-578]\\d|60)\\d{7}|9\\d{8,11}", [9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-8]|9[015-7]"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{2})", "$1 $2 $3 $4", ["96"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]]]], DE: ["49", "00", "[2579]\\d{5,14}|49(?:[34]0|69|8\\d)\\d\\d?|49(?:37|49|60|7[089]|9\\d)\\d{1,3}|49(?:2[024-9]|3[2-689]|7[1-7])\\d{1,8}|(?:1|[368]\\d|4[0-8])\\d{3,13}|49(?:[015]\\d|2[13]|31|[46][1-8])\\d{1,9}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], [["(\\d{2})(\\d{3,13})", "$1 $2", ["3[02]|40|[68]9"], "0$1"], ["(\\d{3})(\\d{3,12})", "$1 $2", ["2(?:0[1-389]|1[124]|2[18]|3[14])|3(?:[35-9][15]|4[015])|906|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1", "2(?:0[1-389]|12[0-8])|3(?:[35-9][15]|4[015])|906|2(?:[13][14]|2[18])|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1"], "0$1"], ["(\\d{4})(\\d{2,11})", "$1 $2", ["[24-6]|3(?:[3569][02-46-9]|4[2-4679]|7[2-467]|8[2-46-8])|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]", "[24-6]|3(?:3(?:0[1-467]|2[127-9]|3[124578]|7[1257-9]|8[1256]|9[145])|4(?:2[135]|4[13578]|9[1346])|5(?:0[14]|2[1-3589]|6[1-4]|7[13468]|8[13568])|6(?:2[1-489]|3[124-6]|6[13]|7[12579]|8[1-356]|9[135])|7(?:2[1-7]|4[145]|6[1-5]|7[1-4])|8(?:21|3[1468]|6|7[1467]|8[136])|9(?:0[12479]|2[1358]|4[134679]|6[1-9]|7[136]|8[147]|9[1468]))|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]|3[68]4[1347]|3(?:47|60)[1356]|3(?:3[46]|46|5[49])[1246]|3[4579]3[1357]"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["138"], "0$1"], ["(\\d{5})(\\d{2,10})", "$1 $2", ["3"], "0$1"], ["(\\d{3})(\\d{5,11})", "$1 $2", ["181"], "0$1"], ["(\\d{3})(\\d)(\\d{4,10})", "$1 $2 $3", ["1(?:3|80)|9"], "0$1"], ["(\\d{3})(\\d{7,8})", "$1 $2", ["1[67]"], "0$1"], ["(\\d{3})(\\d{7,12})", "$1 $2", ["8"], "0$1"], ["(\\d{5})(\\d{6})", "$1 $2", ["185", "1850", "18500"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{4})(\\d{7})", "$1 $2", ["18[68]"], "0$1"], ["(\\d{4})(\\d{7})", "$1 $2", ["15[1279]"], "0$1"], ["(\\d{5})(\\d{6})", "$1 $2", ["15[03568]", "15(?:[0568]|3[13])"], "0$1"], ["(\\d{3})(\\d{8})", "$1 $2", ["18"], "0$1"], ["(\\d{3})(\\d{2})(\\d{7,8})", "$1 $2 $3", ["1(?:6[023]|7)"], "0$1"], ["(\\d{4})(\\d{2})(\\d{7})", "$1 $2 $3", ["15[279]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{8})", "$1 $2 $3", ["15"], "0$1"]], "0"], DJ: ["253", "00", "(?:2\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[27]"]]]], DK: ["45", "00", "[2-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-9]"]]]], DM: ["1", "011", "(?:[58]\\d\\d|767|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "767$1", 0, "767"], DO: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "8001|8[024]9"], DZ: ["213", "00", "(?:[1-4]|[5-79]\\d|80)\\d{7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[1-4]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["9"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-8]"], "0$1"]], "0"], EC: ["593", "00", "1\\d{9,10}|(?:[2-7]|9\\d)\\d{7}", [8, 9, 10, 11], [["(\\d)(\\d{3})(\\d{4})", "$1 $2-$3", ["[2-7]"], "(0$1)", 0, "$1-$2-$3"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["1"]]], "0"], EE: ["372", "00", "8\\d{9}|[4578]\\d{7}|(?:[3-8]\\d|90)\\d{5}", [7, 8, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["[369]|4[3-8]|5(?:[0-2]|5[0-478]|6[45])|7[1-9]|88", "[369]|4[3-8]|5(?:[02]|1(?:[0-8]|95)|5[0-478]|6(?:4[0-4]|5[1-589]))|7[1-9]|88"]], ["(\\d{4})(\\d{3,4})", "$1 $2", ["[45]|8(?:00|[1-49])", "[45]|8(?:00[1-9]|[1-49])"]], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["7"]], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]]]], EG: ["20", "00", "[189]\\d{8,9}|[24-6]\\d{8}|[135]\\d{7}", [8, 9, 10], [["(\\d)(\\d{7,8})", "$1 $2", ["[23]"], "0$1"], ["(\\d{2})(\\d{6,7})", "$1 $2", ["1[35]|[4-6]|8[2468]|9[235-7]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{8})", "$1 $2", ["1"], "0$1"]], "0"], EH: ["212", "00", "[5-8]\\d{8}", [9], 0, "0", 0, 0, 0, 0, 0, [["528[89]\\d{5}"], ["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[016-8]\\d|2[0-8]|5[0-5]))\\d{6}"], ["80[0-7]\\d{6}"], ["89\\d{7}"], 0, 0, 0, 0, ["(?:592(?:4[0-2]|93)|80[89]\\d\\d)\\d{4}"]]], ER: ["291", "00", "[178]\\d{6}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[178]"], "0$1"]], "0"], ES: ["34", "00", "[5-9]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]00"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-9]"]]]], ET: ["251", "00", "(?:11|[2-579]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-579]"], "0$1"]], "0"], FI: ["358", "00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))", "[1-35689]\\d{4}|7\\d{10,11}|(?:[124-7]\\d|3[0-46-9])\\d{8}|[1-9]\\d{5,8}", [5, 6, 7, 8, 9, 10, 11, 12], [["(\\d{5})", "$1", ["20[2-59]"], "0$1"], ["(\\d{3})(\\d{3,7})", "$1 $2", ["(?:[1-3]0|[68])0|70[07-9]"], "0$1"], ["(\\d{2})(\\d{4,8})", "$1 $2", ["[14]|2[09]|50|7[135]"], "0$1"], ["(\\d{2})(\\d{6,10})", "$1 $2", ["7"], "0$1"], ["(\\d)(\\d{4,9})", "$1 $2", ["(?:19|[2568])[1-8]|3(?:0[1-9]|[1-9])|9"], "0$1"]], "0", 0, 0, 0, 0, "1[03-79]|[2-9]", 0, "00"], FJ: ["679", "0(?:0|52)", "45\\d{5}|(?:0800\\d|[235-9])\\d{6}", [7, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["[235-9]|45"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["0"]]], 0, 0, 0, 0, 0, 0, 0, "00"], FK: ["500", "00", "[2-7]\\d{4}", [5]], FM: ["691", "00", "(?:[39]\\d\\d|820)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[389]"]]]], FO: ["298", "00", "[2-9]\\d{5}", [6], [["(\\d{6})", "$1", ["[2-9]"]]], 0, 0, "(10(?:01|[12]0|88))"], FR: ["33", "00", "[1-9]\\d{8}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0 $1"], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[1-79]"], "0$1"]], "0"], GA: ["241", "00", "(?:[067]\\d|11)\\d{6}|[2-7]\\d{6}", [7, 8], [["(\\d)(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-7]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["0"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["11|[67]"], "0$1"]], 0, 0, "0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[467]\\d{6})", "$1"], GB: ["44", "00", "[1-357-9]\\d{9}|[18]\\d{8}|8\\d{6}", [7, 9, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["800", "8001", "80011", "800111", "8001111"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["845", "8454", "84546", "845464"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["800"], "0$1"], ["(\\d{5})(\\d{4,5})", "$1 $2", ["1(?:38|5[23]|69|76|94)", "1(?:(?:38|69)7|5(?:24|39)|768|946)", "1(?:3873|5(?:242|39[4-6])|(?:697|768)[347]|9467)"], "0$1"], ["(\\d{4})(\\d{5,6})", "$1 $2", ["1(?:[2-69][02-9]|[78])"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["[25]|7(?:0|6[02-9])", "[25]|7(?:0|6(?:[03-9]|2[356]))"], "0$1"], ["(\\d{4})(\\d{6})", "$1 $2", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1389]"], "0$1"]], "0", 0, "0|180020", 0, 0, 0, [["(?:1(?:1(?:3(?:[0-58]\\d\\d|73[0-5])|4(?:(?:[0-5]\\d|70)\\d|69[7-9])|(?:(?:5[0-26-9]|[78][0-49])\\d|6(?:[0-4]\\d|5[01]))\\d)|(?:2(?:(?:0[024-9]|2[3-9]|3[3-79]|4[1-689]|[58][02-9]|6[0-47-9]|7[013-9]|9\\d)\\d|1(?:[0-7]\\d|8[0-3]))|(?:3(?:0\\d|1[0-8]|[25][02-9]|3[02-579]|[468][0-46-9]|7[1-35-79]|9[2-578])|4(?:0[03-9]|[137]\\d|[28][02-57-9]|4[02-69]|5[0-8]|[69][0-79])|5(?:0[1-35-9]|[16]\\d|2[024-9]|3[015689]|4[02-9]|5[03-9]|7[0-35-9]|8[0-468]|9[0-57-9])|6(?:0[034689]|1\\d|2[0-35689]|[38][013-9]|4[1-467]|5[0-69]|6[13-9]|7[0-8]|9[0-24578])|7(?:0[0246-9]|2\\d|3[0236-8]|4[03-9]|5[0-46-9]|6[013-9]|7[0-35-9]|8[024-9]|9[02-9])|8(?:0[35-9]|2[1-57-9]|3[02-578]|4[0-578]|5[124-9]|6[2-69]|7\\d|8[02-9]|9[02569])|9(?:0[02-589]|[18]\\d|2[02-689]|3[1-57-9]|4[2-9]|5[0-579]|6[2-47-9]|7[0-24578]|9[2-57]))\\d)\\d)|2(?:0[013478]|3[0189]|4[017]|8[0-46-9]|9[0-2])\\d{3})\\d{4}|1(?:2(?:0(?:46[1-4]|87[2-9])|545[1-79]|76(?:2\\d|3[1-8]|6[1-6])|9(?:7(?:2[0-4]|3[2-5])|8(?:2[2-8]|7[0-47-9]|8[3-5])))|3(?:6(?:38[2-5]|47[23])|8(?:47[04-9]|64[0157-9]))|4(?:044[1-7]|20(?:2[23]|8\\d)|6(?:0(?:30|5[2-57]|6[1-8]|7[2-8])|140)|8(?:052|87[1-3]))|5(?:2(?:4(?:3[2-79]|6\\d)|76\\d)|6(?:26[06-9]|686))|6(?:06(?:4\\d|7[4-79])|295[5-7]|35[34]\\d|47(?:24|61)|59(?:5[08]|6[67]|74)|9(?:55[0-4]|77[23]))|7(?:26(?:6[13-9]|7[0-7])|(?:442|688)\\d|50(?:2[0-3]|[3-68]2|76))|8(?:27[56]\\d|37(?:5[2-5]|8[239])|843[2-58])|9(?:0(?:0(?:6[1-8]|85)|52\\d)|3583|4(?:66[1-8]|9(?:2[01]|81))|63(?:23|3[1-4])|9561))\\d{3}", [9, 10]], ["7(?:457[0-57-9]|700[01]|911[028])\\d{5}|7(?:[1-3]\\d\\d|4(?:[0-46-9]\\d|5[0-689])|5(?:0[0-8]|[13-9]\\d|2[0-35-9])|7(?:0[1-9]|[1-7]\\d|8[02-9]|9[0-689])|8(?:[014-9]\\d|[23][0-8])|9(?:[024-9]\\d|1[02-9]|3[0-689]))\\d{6}", [10]], ["80[08]\\d{7}|800\\d{6}|8001111"], ["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[2-49]))\\d{7}|845464\\d", [7, 10]], ["70\\d{8}", [10]], 0, ["(?:3[0347]|55)\\d{8}", [10]], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", [10]], ["56\\d{8}", [10]]], 0, " x"], GD: ["1", "011", "(?:473|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "473$1", 0, "473"], GE: ["995", "00", "(?:[3-57]\\d\\d|800)\\d{6}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["70"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["32"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[57]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[348]"], "0$1"]], "0"], GF: ["594", "00", "(?:694\\d|7093)\\d{5}|(?:59|[89]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]|80[6-9]|9[47]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[89]"], "0$1"]], "0"], GG: ["44", "00", "(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?", [7, 9, 10], 0, "0", 0, "([25-9]\\d{5})$|0|180020", "1481$1", 0, 0, [["1481[25-9]\\d{5}", [10]], ["7(?:(?:781|839)\\d|911[17])\\d{5}", [10]], ["80[08]\\d{7}|800\\d{6}|8001111"], ["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d", [7, 10]], ["70\\d{8}", [10]], 0, ["(?:3[0347]|55)\\d{8}", [10]], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", [10]], ["56\\d{8}", [10]]]], GH: ["233", "00", "[235]\\d{8}|800\\d{5,6}", [8, 9], [["(\\d{3})(\\d{5})", "$1 $2", ["8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2358]"], "0$1"]], "0"], GI: ["350", "00", "(?:[25]\\d|60)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["2"]]]], GL: ["299", "00", "(?:19|[2-689]\\d|70)\\d{4}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["19|[2-9]"]]]], GM: ["220", "00", "[2-9]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], GN: ["224", "00", "722\\d{6}|(?:3|6\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["3"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[67]"]]]], GP: ["590", "00", "7090\\d{5}|(?:[56]9|[89]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]|80[6-9]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0", 0, 0, 0, 0, 0, [["(?:59(?:0(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1-9]|5[3-579]|[68][0-689]|7[08]|9\\d)|87\\d)|80[6-9]\\d\\d)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], ["8[129]\\d{7}"], 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], GQ: ["240", "00", "222\\d{6}|(?:3\\d|55|[89]0)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235]"]], ["(\\d{3})(\\d{6})", "$1 $2", ["[89]"]]]], GR: ["30", "00", "5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}", [10, 11, 12], [["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["21|7"]], ["(\\d{4})(\\d{6})", "$1 $2", ["2(?:2|3[2-57-9]|4[2-469]|5[2-59]|6[2-9]|7[2-69]|8[2-49])|5"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2689]"]], ["(\\d{3})(\\d{3,4})(\\d{5})", "$1 $2 $3", ["8"]]]], GT: ["502", "00", "80\\d{6}|(?:1\\d{3}|[2-7])\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["[2-8]"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]]]], GU: ["1", "011", "(?:[58]\\d\\d|671|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "671$1", 0, "671"], GW: ["245", "00", "[49]\\d{8}|4\\d{6}", [7, 9], [["(\\d{3})(\\d{4})", "$1 $2", ["40"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[49]"]]]], GY: ["592", "001", "(?:[2-8]\\d{3}|9008)\\d{3}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], HK: ["852", "00(?:30|5[09]|[126-9]?)", "8[0-46-9]\\d{6,7}|9\\d{4,7}|(?:[2-7]|9\\d{3})\\d{7}", [5, 6, 7, 8, 9, 11], [["(\\d{3})(\\d{2,5})", "$1 $2", ["900", "9003"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[2-7]|8[1-4]|9(?:0[1-9]|[1-8])"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{3})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]]], 0, 0, 0, 0, 0, 0, 0, "00"], HN: ["504", "00", "8\\d{10}|[237-9]\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["[237-9]"]]]], HR: ["385", "00", "[2-69]\\d{8}|80\\d{5,7}|[1-79]\\d{7}|6\\d{6}", [7, 8, 9], [["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["6[01]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{4})(\\d{3})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["6|7[245]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-57]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"], "0$1"]], "0"], HT: ["509", "00", "[2-589]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[2-589]"]]]], HU: ["36", "00", "[235-7]\\d{8}|[1-9]\\d{7}", [8, 9], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "(06 $1)"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27][2-9]|3[2-7]|4[24-9]|5[2-79]|6|8[2-57-9]|9[2-69]"], "(06 $1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-9]"], "06 $1"]], "06"], ID: ["62", "00[89]", "00[1-9]\\d{9,14}|(?:[1-36]|8\\d{5})\\d{6}|00\\d{9}|[1-9]\\d{8,10}|[2-9]\\d{7}", [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["15"]], ["(\\d{2})(\\d{5,9})", "$1 $2", ["2[124]|[36]1"], "(0$1)"], ["(\\d{3})(\\d{5,7})", "$1 $2", ["800"], "0$1"], ["(\\d{3})(\\d{5,8})", "$1 $2", ["[2-79]"], "(0$1)"], ["(\\d{3})(\\d{3,4})(\\d{3})", "$1-$2-$3", ["8[1-35-9]"], "0$1"], ["(\\d{3})(\\d{6,8})", "$1 $2", ["1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["804"], "0$1"], ["(\\d{3})(\\d)(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["80"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1-$2-$3", ["8"], "0$1"]], "0"], IE: ["353", "00", "(?:1\\d|[2569])\\d{6,8}|4\\d{6,9}|7\\d{8}|8\\d{8,9}", [7, 8, 9, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["2[24-9]|47|58|6[237-9]|9[35-9]"], "(0$1)"], ["(\\d{3})(\\d{5})", "$1 $2", ["[45]0"], "(0$1)"], ["(\\d)(\\d{3,4})(\\d{4})", "$1 $2 $3", ["1"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2569]|4[1-69]|7[14]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["70"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["81"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[78]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["4"], "(0$1)"], ["(\\d{2})(\\d)(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], IL: ["972", "0(?:0|1[2-9])", "1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}", [7, 8, 9, 10, 11, 12], [["(\\d{4})(\\d{3})", "$1-$2", ["125"]], ["(\\d{4})(\\d{2})(\\d{2})", "$1-$2-$3", ["121"]], ["(\\d)(\\d{3})(\\d{4})", "$1-$2-$3", ["[2-489]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1-$2-$3", ["12"]], ["(\\d{4})(\\d{6})", "$1-$2", ["159"]], ["(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3-$4", ["1[7-9]"]], ["(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})", "$1-$2 $3-$4", ["15"]]], "0"], IM: ["44", "00", "1624\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([25-8]\\d{5})$|0|180020", "1624$1", 0, "74576|(?:16|7[56])24"], IN: ["91", "00", "(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}", [8, 9, 10, 11, 12, 13], [["(\\d{8})", "$1", ["5(?:0|2[23]|3[03]|[67]1|88)", "5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|888)", "5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|8888)"], 0, 1], ["(\\d{4})(\\d{4,5})", "$1 $2", ["180", "1800"], 0, 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["140"], 0, 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["11|2[02]|33|4[04]|79[1-7]|80[2-46]", "11|2[02]|33|4[04]|79(?:[1-6]|7[19])|80(?:[2-4]|6[0-589])", "11|2[02]|33|4[04]|79(?:[124-6]|3(?:[02-9]|1[0-24-9])|7(?:1|9[1-6]))|80(?:[2-4]|6[0-589])"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["1(?:2[0-249]|3[0-25]|4[145]|[68]|7[1257])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|5[12]|[78]1)|6(?:12|[2-4]1|5[17]|6[13]|80)|7(?:12|3[134]|4[47]|61|88)|8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91)|(?:43|59|75)[15]|(?:1[59]|29|67|72)[14]", "1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|674|7(?:(?:2[14]|3[34]|5[15])[2-6]|61[346]|88[0-8])|8(?:70[2-6]|84[235-7]|91[3-7])|(?:1(?:29|60|8[06])|261|552|6(?:12|[2-47]1|5[17]|6[13]|80)|7(?:12|31|4[47])|8(?:16|2[014]|3[126]|6[136]|7[78]|83))[2-7]", "1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|6(?:12(?:[2-6]|7[0-8])|74[2-7])|7(?:(?:2[14]|5[15])[2-6]|3171|61[346]|88(?:[2-7]|82))|8(?:70[2-6]|84(?:[2356]|7[19])|91(?:[3-6]|7[19]))|73[134][2-6]|(?:74[47]|8(?:16|2[014]|3[126]|6[136]|7[78]|83))(?:[2-6]|7[19])|(?:1(?:29|60|8[06])|261|552|6(?:[2-4]1|5[17]|6[13]|7(?:1|4[0189])|80)|7(?:12|88[01]))[2-7]"], "0$1", 1], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2[2457-9]|3[2-5]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1[013-9]|28|3[129]|4[1-35689]|5[29]|6[02-5]|70)|807", "1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2(?:[2457]|84|95)|3(?:[2-4]|55)|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1(?:[013-8]|9[6-9])|28[6-8]|3(?:17|2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4|5[0-367])|70[13-7])|807[19]", "1(?:[2-479]|5(?:[0236-9]|5[013-9]))|[2-5]|6(?:2(?:84|95)|355|8(?:28[235-7]|3))|73179|807(?:1|9[1-3])|(?:1552|6(?:(?:1[1358]|2[2457]|3[2-4]|4[235-7]|5[2-689]|6[24578]|7[235689])\\d|8(?:[14-6]\\d|2[0-79]))|7(?:1(?:[013-8]\\d|9[6-9])|28[6-8]|3(?:2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]\\d|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4\\d|5[0-367])|70[13-7]))[2-7]"], "0$1", 1], ["(\\d{5})(\\d{5})", "$1 $2", ["16|[6-9]"], "0$1", 1], ["(\\d{4})(\\d{2,4})(\\d{4})", "$1 $2 $3", ["18[06]", "18[06]0"], 0, 1], ["(\\d{4})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["18"], 0, 1]], "0"], IO: ["246", "00", "3\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["3"]]]], IQ: ["964", "00", "(?:1|7\\d\\d)\\d{7}|[2-6]\\d{7,8}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-6]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"]], "0"], IR: ["98", "00", "[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}", [4, 5, 6, 7, 10], [["(\\d{4,5})", "$1", ["96"], "0$1"], ["(\\d{2})(\\d{4,5})", "$1 $2", ["(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])[12689]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["[1-8]"], "0$1"]], "0"], IS: ["354", "00|1(?:0(?:01|[12]0)|100)", "(?:38\\d|[4-9])\\d{6}", [7, 9], [["(\\d{3})(\\d{4})", "$1 $2", ["[4-9]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["3"]]], 0, 0, 0, 0, 0, 0, 0, "00"], IT: ["39", "00", "0\\d{5,11}|1\\d{8,10}|3(?:[0-8]\\d{7,10}|9\\d{7,8})|(?:43|55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?", [6, 7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{4,6})", "$1 $2", ["0[26]"]], ["(\\d{3})(\\d{3,6})", "$1 $2", ["0[13-57-9][0159]|8(?:03|4[17]|9[2-5])", "0[13-57-9][0159]|8(?:03|4[17]|9(?:2|3[04]|[45][0-4]))"]], ["(\\d{4})(\\d{2,6})", "$1 $2", ["0(?:[13-579][2-46-8]|8[236-8])"]], ["(\\d{4})(\\d{4})", "$1 $2", ["894"]], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["0[26]|5"]], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["1(?:44|[679])|[378]|43"]], ["(\\d{3})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["0[13-57-9][0159]|14"]], ["(\\d{2})(\\d{4})(\\d{5})", "$1 $2 $3", ["0[26]"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["[03]"]]], 0, 0, 0, 0, 0, 0, [["0(?:669[0-79]\\d{1,6}|831\\d{2,8})|0(?:1(?:[0159]\\d|[27][1-5]|31|4[1-4]|6[1356]|8[2-57])|2\\d\\d|3(?:[0159]\\d|2[1-4]|3[12]|[48][1-6]|6[2-59]|7[1-7])|4(?:[0159]\\d|[23][1-9]|4[245]|6[1-5]|7[1-4]|81)|5(?:[0159]\\d|2[1-5]|3[2-6]|4[1-79]|6[4-6]|7[1-578]|8[3-8])|6(?:[0-57-9]\\d|6[0-8])|7(?:[0159]\\d|2[12]|3[1-7]|4[2-46]|6[13569]|7[13-6]|8[1-59])|8(?:[0159]\\d|2[3-578]|3[2356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7}"], ["3[2-9]\\d{7,8}|(?:31|43)\\d{8}", [9, 10]], ["80(?:0\\d{3}|3)\\d{3}", [6, 9]], ["(?:0878\\d{3}|89(?:2\\d|3[04]|4(?:[0-4]|[5-9]\\d\\d)|5[0-4]))\\d\\d|(?:1(?:44|6[346])|89(?:38|5[5-9]|9))\\d{6}", [6, 8, 9, 10]], ["1(?:78\\d|99)\\d{6}", [9, 10]], ["3[2-8]\\d{9,10}", [11, 12]], 0, 0, ["55\\d{8}", [10]], ["84(?:[08]\\d{3}|[17])\\d{3}", [6, 9]]]], JE: ["44", "00", "1534\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([0-24-8]\\d{5})$|0|180020", "1534$1", 0, 0, [["1534[0-24-8]\\d{5}"], ["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97\\d))\\d{5}"], ["80(?:07(?:35|81)|8901)\\d{4}"], ["(?:8(?:4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|90(?:066[59]|1810|71(?:07|55)))\\d{4}"], ["701511\\d{4}"], 0, ["(?:3(?:0(?:07(?:35|81)|8901)|3\\d{4}|4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|55\\d{4})\\d{4}"], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}"], ["56\\d{8}"]]], JM: ["1", "011", "(?:[58]\\d\\d|658|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "658|876"], JO: ["962", "00", "(?:(?:[2689]|7\\d)\\d|32|427|53)\\d{6}", [8, 9], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2356]|87"], "(0$1)"], ["(\\d{3})(\\d{5,6})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["70"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[47]"], "0$1"]], "0"], JP: ["81", "010", "00[1-9]\\d{6,14}|[25-9]\\d{9}|(?:00|[1-9]\\d\\d)\\d{6}", [8, 9, 10, 11, 12, 13, 14, 15, 16, 17], [["(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3", ["(?:12|57|99)0"], "0$1"], ["(\\d{4})(\\d)(\\d{4})", "$1-$2-$3", ["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51)|9(?:80|9[16])", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:76|97)9|7468|8(?:3(?:8[7-9]|96)|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:769|979[2-69])|7468|8(?:3(?:8[7-9]|96[2457-9])|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["60"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1-$2-$3", ["3|4(?:2[09]|7[01])|6[1-9]", "3|4(?:2(?:0|9[02-69])|7(?:0[019]|1))|6[1-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["1(?:1|5[45]|77|88|9[69])|2(?:2[1-37]|3[0-269]|4[59]|5|6[24]|7[1-358]|8[1369]|9[0-38])|4(?:[28][1-9]|3[0-57]|[45]|6[248]|7[2-579]|9[29])|5(?:2|3[0459]|4[0-369]|5[29]|8[02389]|9[0-389])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9[2-6])|8(?:2[124589]|3[26-9]|49|51|6|7[0-468]|8[68]|9[019])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9[1-489])", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2(?:[127]|3[014-9])|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9[19])|62|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|8[1-9]|9[29])|5(?:2|3(?:[045]|9[0-8])|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0-2469])|3(?:[29]|60)|49|51|6(?:[0-24]|36|5[0-3589]|7[23]|9[01459])|7[0-468]|8[68])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3[34]|4[0178]))|(?:264|837)[016-9]|2(?:57|93)[015-9]|(?:25[0468]|422|838)[01]|(?:47[59]|59[89]|8(?:6[68]|9))[019]", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3(?:[045]|9(?:[0-58]|6[4-9]|7[0-35689]))|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0169])|3(?:[29]|60|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[2-57-9]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|7(?:2[2-468]|3[78])|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:8294|96)[1-3]|2(?:57|93)[015-9]|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|8292|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{4})", "$1-$2-$3", ["[14]|[289][2-9]|5[3-9]|7[2-4679]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["800"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2-$3", ["[25-9]"], "0$1"]], "0", 0, "(000[2569]\\d{4,6})$|(?:(?:003768)0?)|0", "$1"], KE: ["254", "000", "(?:[17]\\d\\d|900)\\d{6}|(?:2|80)0\\d{6,7}|[4-6]\\d{6,8}", [7, 8, 9, 10], [["(\\d{2})(\\d{5,7})", "$1 $2", ["[24-6]"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["[17]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], "0"], KG: ["996", "00", "8\\d{9}|[235-9]\\d{8}", [9, 10], [["(\\d{4})(\\d{5})", "$1 $2", ["3(?:1[346]|[24-79])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-79]|88"], "0$1"], ["(\\d{3})(\\d{3})(\\d)(\\d{2,3})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], KH: ["855", "00[14-9]", "1\\d{9}|[1-9]\\d{7,8}", [8, 9, 10], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-9]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], KI: ["686", "00", "(?:[37]\\d|6[0-79])\\d{6}|(?:[2-48]\\d|50)\\d{3}", [5, 8], 0, "0"], KM: ["269", "00", "[3478]\\d{6}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[3478]"]]]], KN: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "869$1", 0, "869"], KP: ["850", "00|99", "85\\d{6}|(?:19\\d|[2-7])\\d{7}", [8, 10], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"]], "0"], KR: ["82", "00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))", "00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}", [5, 6, 8, 9, 10, 11, 12, 13, 14], [["(\\d{2})(\\d{3,4})", "$1-$2", ["(?:3[1-3]|[46][1-4]|5[1-5])1"], "0$1"], ["(\\d{4})(\\d{4})", "$1-$2", ["1"]], ["(\\d)(\\d{3,4})(\\d{4})", "$1-$2-$3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[36]0|8"], "0$1"], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1-$2-$3", ["[1346]|5[1-5]"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], ["(\\d{2})(\\d{5})(\\d{4})", "$1-$2-$3", ["5"], "0$1"]], "0", 0, "0(8(?:[1-46-8]|5\\d\\d))?"], KW: ["965", "00", "18\\d{5}|(?:[2569]\\d|41)\\d{6}", [7, 8], [["(\\d{4})(\\d{3,4})", "$1 $2", ["[169]|2(?:[235]|4[1-35-9])|52"]], ["(\\d{3})(\\d{5})", "$1 $2", ["[245]"]]]], KY: ["1", "011", "(?:345|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "345$1", 0, "345"], KZ: ["7", "810", "8\\d{13}|[78]\\d{9}", [10, 14], 0, "8", 0, 0, 0, 0, "7", 0, "8~10"], LA: ["856", "00", "[23]\\d{9}|3\\d{8}|(?:[235-8]\\d|41)\\d{6}", [8, 9, 10], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["2[13]|3[14]|[4-8]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["3"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0"], LB: ["961", "00", "[27-9]\\d{7}|[13-9]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[13-69]|7(?:[2-57]|62|8[0-6]|9[04-9])|8[02-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27-9]"]]], "0"], LC: ["1", "011", "(?:[58]\\d\\d|758|900)\\d{7}", [10], 0, "1", 0, "([2-8]\\d{6})$|1", "758$1", 0, "758"], LI: ["423", "00", "[68]\\d{8}|(?:[2378]\\d|90)\\d{5}", [7, 9], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2379]|8(?:0[09]|7)", "[2379]|8(?:0(?:02|9)|7)"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["69"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]]], "0", 0, "(1001)|0"], LK: ["94", "00", "[1-9]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[1-689]"], "0$1"]], "0"], LR: ["231", "00", "(?:[2457]\\d|33|88)\\d{7}|(?:2\\d|[4-6])\\d{6}", [7, 8, 9], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["4[67]|[56]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-578]"], "0$1"]], "0"], LS: ["266", "00", "(?:[256]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2568]"]]]], LT: ["370", "00", "(?:[3469]\\d|52|[78]0)\\d{6}", [8], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["52[0-7]"], "(0-$1)", 1], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[7-9]"], "0 $1", 1], ["(\\d{2})(\\d{6})", "$1 $2", ["37|4(?:[15]|6[1-8])"], "(0-$1)", 1], ["(\\d{3})(\\d{5})", "$1 $2", ["[3-6]"], "(0-$1)", 1]], "0", 0, "[08]"], LU: ["352", "00", "35[013-9]\\d{4,8}|6\\d{8}|35\\d{2,4}|(?:[2457-9]\\d|3[0-46-9])\\d{2,9}", [4, 5, 6, 7, 8, 9, 10, 11], [["(\\d{2})(\\d{3})", "$1 $2", ["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]], ["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["20[2-689]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})", "$1 $2 $3 $4", ["20"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{1,5})", "$1 $2 $3 $4", ["[3-57]|8[13-9]|9(?:0[89]|[2-579])|(?:2|80)[2-9]"]], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["80[01]|90[015]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["20"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})", "$1 $2 $3 $4 $5", ["20"]]], 0, 0, "(15(?:0[06]|1[12]|[35]5|4[04]|6[26]|77|88|99)\\d)"], LV: ["371", "00", "(?:[268]\\d|78|90)\\d{6}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2679]|8[01]"]]]], LY: ["218", "00", "[2-9]\\d{8}", [9], [["(\\d{2})(\\d{7})", "$1-$2", ["[2-9]"], "0$1"]], "0"], MA: ["212", "00", "[5-8]\\d{8}", [9], [["(\\d{4})(\\d{5})", "$1-$2", ["892"], "0$1"], ["(\\d{2})(\\d{7})", "$1-$2", ["8(?:0[0-7]|9)"], "0$1"], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[5-8]"], "0$1"]], "0", 0, 0, 0, 0, "[5-8]"], MC: ["377", "00", "(?:[3489]|[67]\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["4"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[389]"]], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[67]"], "0$1"]], "0"], MD: ["373", "00", "(?:[235-7]\\d|[89]0)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["22|3"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[25-7]"], "0$1"]], "0"], ME: ["382", "00", "(?:20|[3-79]\\d)\\d{6}|80\\d{6,7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-9]"], "0$1"]], "0"], MF: ["590", "00", "7090\\d{5}|(?:[56]9|[89]\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [["(?:59(?:0(?:0[079]|[14]3|[27][79]|3[03-7]|5[0-268]|87)|87\\d)|80[6-9]\\d\\d)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], ["8[129]\\d{7}"], 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], MG: ["261", "00", "[23]\\d{8}", [9], [["(\\d{2})(\\d{2})(\\d{3})(\\d{2})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0", 0, "([24-9]\\d{6})$|0", "20$1"], MH: ["692", "011", "329\\d{4}|(?:[256]\\d|45)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-6]"]]], "1"], MK: ["389", "00", "[2-578]\\d{7}", [8], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["2|34[47]|4(?:[37]7|5[47]|64)"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[347]"], "0$1"], ["(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[58]"], "0$1"]], "0"], ML: ["223", "00", "[24-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24-9]"]]]], MM: ["95", "00", "1\\d{5,7}|95\\d{6}|(?:[4-7]|9[0-46-9])\\d{6,8}|(?:2|8\\d)\\d{5,8}", [6, 7, 8, 9, 10], [["(\\d)(\\d{2})(\\d{3})", "$1 $2 $3", ["16|2"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["4(?:[2-46]|5[3-5])|5|6(?:[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-5]|(?:60|86)[23]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[12]|452|678|86", "[12]|452|6788|86"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[4-7]|8[1-35]"], "0$1"], ["(\\d)(\\d{3})(\\d{4,6})", "$1 $2 $3", ["9(?:2[0-4]|[35-9]|4[137-9])"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["92"], "0$1"], ["(\\d)(\\d{5})(\\d{4})", "$1 $2 $3", ["9"], "0$1"]], "0"], MN: ["976", "001", "[12]\\d{7,9}|[5-9]\\d{7}", [8, 9, 10], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[12]1"], "0$1"], ["(\\d{4})(\\d{4})", "$1 $2", ["[5-9]"]], ["(\\d{3})(\\d{5,6})", "$1 $2", ["[12]2[1-3]"], "0$1"], ["(\\d{4})(\\d{5,6})", "$1 $2", ["[12](?:27|3[2-8]|4[2-68]|5[1-4689])", "[12](?:27|3[2-8]|4[2-68]|5[1-4689])[0-3]"], "0$1"], ["(\\d{5})(\\d{4,5})", "$1 $2", ["[12]"], "0$1"]], "0"], MO: ["853", "00", "0800\\d{3}|(?:28|[68]\\d)\\d{6}", [7, 8], [["(\\d{4})(\\d{3})", "$1 $2", ["0"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[268]"]]]], MP: ["1", "011", "[58]\\d{9}|(?:67|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "670$1", 0, "670"], MQ: ["596", "00", "7091\\d{5}|(?:[56]9|[89]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]|8(?:0[6-9]|[36])"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], MR: ["222", "00", "(?:[2-4]\\d\\d|800)\\d{5}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-48]"]]]], MS: ["1", "011", "(?:[58]\\d\\d|664|900)\\d{7}", [10], 0, "1", 0, "([34]\\d{6})$|1", "664$1", 0, "664"], MT: ["356", "00", "3550\\d{4}|(?:[2579]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2357-9]"]]]], MU: ["230", "0(?:0|[24-7]0|3[03])", "(?:[57]|8\\d\\d)\\d{7}|[2-468]\\d{6}", [7, 8, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-46]|8[013]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[57]"]], ["(\\d{5})(\\d{5})", "$1 $2", ["8"]]], 0, 0, 0, 0, 0, 0, 0, "020"], MV: ["960", "0(?:0|19)", "(?:800|9[0-57-9]\\d)\\d{7}|[34679]\\d{6}", [7, 10], [["(\\d{3})(\\d{4})", "$1-$2", ["[34679]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], MW: ["265", "00", "(?:[1289]\\d|31|77)\\d{7}|1\\d{6}", [7, 9], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["1[2-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[137-9]"], "0$1"]], "0"], MX: ["52", "0[09]", "[2-9]\\d{9}", [10], [["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["33|5[56]|81"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-9]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], MY: ["60", "00", "1\\d{8,9}|(?:3\\d|[4-9])\\d{7}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1-$2 $3", ["[4-79]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1-$2 $3", ["1(?:[02469]|[378][1-9]|53)|8", "1(?:[02469]|[37][1-9]|53|8(?:[1-46-9]|5[7-9]))|8"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1-$2 $3", ["3"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{4})", "$1-$2-$3-$4", ["1(?:[367]|80)"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2 $3", ["15"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2 $3", ["1"], "0$1"]], "0"], MZ: ["258", "00", "(?:2|8\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2|8[2-79]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]]]], NA: ["264", "00", "[68]\\d{7,8}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["88"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["6"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["87"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"]], "0"], NC: ["687", "00", "(?:050|[2-57-9]\\d\\d)\\d{3}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1.$2.$3", ["[02-57-9]"]]]], NE: ["227", "00", "[027-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["08"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[089]|2[013]|7[0467]"]]]], NF: ["672", "00", "[13]\\d{5}", [6], [["(\\d{2})(\\d{4})", "$1 $2", ["1[0-3]"]], ["(\\d)(\\d{5})", "$1 $2", ["[13]"]]], 0, 0, "([0-258]\\d{4})$", "3$1"], NG: ["234", "009", "(?:20|9\\d)\\d{8}|[78]\\d{9,13}", [10, 11, 12, 13, 14], [["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[7-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["20[129]"], "0$1"], ["(\\d{4})(\\d{2})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["[78]"], "0$1"], ["(\\d{3})(\\d{5})(\\d{5,6})", "$1 $2 $3", ["[78]"], "0$1"]], "0"], NI: ["505", "00", "(?:1800|[25-8]\\d{3})\\d{4}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[125-8]"]]]], NL: ["31", "00", "(?:[124-7]\\d\\d|3(?:[02-9]\\d|1[0-8]))\\d{6}|8\\d{6,9}|9\\d{6,10}|1\\d{4,5}", [5, 6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{4,7})", "$1 $2", ["[89]0"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["66"], "0$1"], ["(\\d)(\\d{8})", "$1 $2", ["6"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["1[16-8]|2[259]|3[124]|4[17-9]|5[124679]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-578]|91"], "0$1"], ["(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3", ["9"], "0$1"]], "0"], NO: ["47", "00", "(?:0|[2-9]\\d{3})\\d{4}", [5, 8], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]"]]], 0, 0, 0, 0, 0, "[02-689]|7[0-8]"], NP: ["977", "00", "(?:1\\d|9)\\d{9}|[1-9]\\d{7}", [8, 10, 11], [["(\\d)(\\d{7})", "$1-$2", ["1[2-6]"], "0$1"], ["(\\d{2})(\\d{6})", "$1-$2", ["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"], "0$1"], ["(\\d{3})(\\d{7})", "$1-$2", ["9"]]], "0"], NR: ["674", "00", "(?:222|444|(?:55|8\\d)\\d|666|777|999)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[24-9]"]]]], NU: ["683", "00", "(?:[4-7]|888\\d)\\d{3}", [4, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["8"]]]], NZ: ["64", "0(?:0|161)", "[1289]\\d{9}|50\\d{5}(?:\\d{2,3})?|[27-9]\\d{7,8}|(?:[34]\\d|6[0-35-9])\\d{6}|8\\d{4,6}", [5, 6, 7, 8, 9, 10], [["(\\d{2})(\\d{3,8})", "$1 $2", ["8[1-79]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["50[036-8]|8|90", "50(?:[0367]|88)|8|90"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["24|[346]|7[2-57-9]|9[2-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:10|74)|[589]"], "0$1"], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["1|2[028]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,5})", "$1 $2 $3", ["2(?:[169]|7[0-35-9])|7"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, "00"], OM: ["968", "00", "(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}", [7, 8, 9], [["(\\d{3})(\\d{4,6})", "$1 $2", ["[58]"]], ["(\\d{2})(\\d{6})", "$1 $2", ["2"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[179]"]]]], PA: ["507", "00", "(?:00800|8\\d{3})\\d{6}|[68]\\d{7}|[1-57-9]\\d{6}", [7, 8, 10, 11], [["(\\d{3})(\\d{4})", "$1-$2", ["[1-57-9]"]], ["(\\d{4})(\\d{4})", "$1-$2", ["[68]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]]], PE: ["51", "00|19(?:1[124]|77|90)00", "(?:[14-8]|9\\d)\\d{7}", [8, 9], [["(\\d{3})(\\d{5})", "$1 $2", ["80"], "(0$1)"], ["(\\d)(\\d{7})", "$1 $2", ["1"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[4-8]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"]]], "0", 0, 0, 0, 0, 0, 0, "00", " Anexo "], PF: ["689", "00", "4\\d{5}(?:\\d{2})?|8\\d{7,8}", [6, 8, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["44"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["4|8[7-9]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]]]], PG: ["675", "00|140[1-3]", "(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["18|[2-69]|85"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[78]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], PH: ["63", "00", "(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}", [6, 8, 9, 10, 11, 12, 13], [["(\\d)(\\d{5})", "$1 $2", ["2"], "(0$1)"], ["(\\d{4})(\\d{4,6})", "$1 $2", ["3(?:23|39|46)|4(?:2[3-6]|[35]9|4[26]|76)|544|88[245]|(?:52|64|86)2", "3(?:230|397|461)|4(?:2(?:35|[46]4|51)|396|4(?:22|63)|59[347]|76[15])|5(?:221|446)|642[23]|8(?:622|8(?:[24]2|5[13]))"], "(0$1)"], ["(\\d{5})(\\d{4})", "$1 $2", ["346|4(?:27|9[35])|883", "3469|4(?:279|9(?:30|56))|8834"], "(0$1)"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[3-7]|8[2-8]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], ["(\\d{4})(\\d{1,2})(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["1"]]], "0"], PK: ["92", "00", "122\\d{6}|[24-8]\\d{10,11}|9(?:[013-9]\\d{8,10}|2(?:[01]\\d\\d|2(?:[06-8]\\d|1[01]))\\d{7})|(?:[2-8]\\d{3}|92(?:[0-7]\\d|8[1-9]))\\d{6}|[24-9]\\d{8}|[89]\\d{7}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{2,7})", "$1 $2 $3", ["[89]0"], "0$1"], ["(\\d{4})(\\d{5})", "$1 $2", ["1"]], ["(\\d{3})(\\d{6,7})", "$1 $2", ["2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8])", "9(?:2[3-8]|98)|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:22|3[27-9]|4[2-6]|6[3569]|9[25-7]))[2-9]"], "(0$1)"], ["(\\d{2})(\\d{7,8})", "$1 $2", ["(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]"], "(0$1)"], ["(\\d{5})(\\d{5})", "$1 $2", ["58"], "(0$1)"], ["(\\d{3})(\\d{7})", "$1 $2", ["3"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[24-9]"], "(0$1)"]], "0"], PL: ["48", "00", "(?:6|8\\d\\d)\\d{7}|[1-9]\\d{6}(?:\\d{2})?|[26]\\d{5}", [6, 7, 8, 9, 10], [["(\\d{5})", "$1", ["19"]], ["(\\d{3})(\\d{3})", "$1 $2", ["11|20|64"]], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["30|(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])1", "30|(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])19"]], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["64"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["21|39|45|5[0137]|6[0469]|7[02389]|8(?:0[14]|8)"]], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[2-8]|[2-7]|8[1-79]|9[145]"]], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["8"]]]], PM: ["508", "00", "[78]\\d{8}|[2-9]\\d{5}", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["7"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], PR: ["1", "011", "(?:[589]\\d\\d|787)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "787|939"], PS: ["970", "00", "[2489]2\\d{6}|(?:1\\d|5)\\d{8}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2489]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], PT: ["351", "00", "1693\\d{5}|(?:[26-9]\\d|30)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["2[12]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["16|[236-9]"]]]], PW: ["680", "01[12]", "(?:[24-8]\\d\\d|345|900)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], PY: ["595", "00", "[36-8]\\d{5,8}|4\\d{6,8}|59\\d{6}|9\\d{5,10}|(?:2\\d|5[0-8])\\d{6,7}", [6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{3,6})", "$1 $2", ["[2-9]0"], "0$1"], ["(\\d{2})(\\d{5})", "$1 $2", ["3[289]|4[246-8]|61|7[1-3]|8[1-36]"], "(0$1)"], ["(\\d{3})(\\d{4,5})", "$1 $2", ["2[279]|3[13-5]|4[359]|5|6(?:[34]|7[1-46-8])|7[46-8]|85"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2[14-68]|3[26-9]|4[1246-8]|6(?:1|75)|7[1-35]|8[1-36]"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["87"]], ["(\\d{3})(\\d{6})", "$1 $2", ["9(?:[5-79]|8[1-7])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-8]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["9"]]], "0"], QA: ["974", "00", "800\\d{4}|(?:2|800)\\d{6}|(?:0080|[3-7])\\d{7}", [7, 8, 9, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["2[136]|8"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[3-7]"]]]], RE: ["262", "00", "709\\d{6}|(?:26|[689]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, [["26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}"], ["(?:69(?:2\\d\\d|3(?:[06][0-6]|1[0-3]|2[0-2]|3[0-39]|4\\d|5[0-5]|7[0-37]|8[0-8]|9[0-479]))|7092[0-3])\\d{4}"], ["80\\d{7}"], ["89[1-37-9]\\d{6}"], 0, 0, 0, 0, ["9(?:399[0-3]|479[0-6]|76(?:2[278]|3[0-37]))\\d{4}"], ["8(?:1[019]|2[0156]|84|90)\\d{6}"]]], RO: ["40", "00", "(?:[236-8]\\d|90)\\d{7}|[23]\\d{5}", [6, 9], [["(\\d{3})(\\d{3})", "$1 $2", ["2[3-6]", "2[3-6]\\d9"], "0$1"], ["(\\d{2})(\\d{4})", "$1 $2", ["219|31"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[23]1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[236-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, 0, " int "], RS: ["381", "00", "38[02-9]\\d{6,9}|6\\d{7,9}|90\\d{4,8}|38\\d{5,6}|(?:7\\d\\d|800)\\d{3,9}|(?:[12]\\d|3[0-79])\\d{5,10}", [6, 7, 8, 9, 10, 11, 12], [["(\\d{3})(\\d{3,9})", "$1 $2", ["(?:2[389]|39)0|[7-9]"], "0$1"], ["(\\d{2})(\\d{5,10})", "$1 $2", ["[1-36]"], "0$1"]], "0"], RU: ["7", "810", "8\\d{13}|[347-9]\\d{9}", [10, 14], [["(\\d{4})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["7(?:1[0-8]|2[1-9])", "7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:1[23]|[2-9]2))", "7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:13[03-69]|62[013-9]))|72[1-57-9]2"], "8 ($1)", 1], ["(\\d{5})(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["7(?:1[0-68]|2[1-9])", "7(?:1(?:[06][3-6]|[18]|2[35]|[3-5][3-5])|2(?:[13][3-5]|[24-689]|7[457]))", "7(?:1(?:0(?:[356]|4[023])|[18]|2(?:3[013-9]|5)|3[45]|43[013-79]|5(?:3[1-8]|4[1-7]|5)|6(?:3[0-35-9]|[4-6]))|2(?:1(?:3[178]|[45])|[24-689]|3[35]|7[457]))|7(?:14|23)4[0-8]|71(?:33|45)[1-79]"], "8 ($1)", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "8 ($1)", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[349]|8(?:[02-7]|1[1-8])"], "8 ($1)", 1], ["(\\d{4})(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["8"], "8 ($1)"]], "8", 0, 0, 0, 0, "[3489]", 0, "8~10"], RW: ["250", "00", "(?:06|[27]\\d\\d|[89]00)\\d{6}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["0"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[7-9]"], "0$1"]], "0"], SA: ["966", "00", "(?:[15]\\d|800|92)\\d{7}", [9, 10], [["(\\d{4})(\\d{5})", "$1 $2", ["9"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]], "0"], SB: ["677", "0[01]", "[6-9]\\d{6}|[1-6]\\d{4}", [5, 7], [["(\\d{2})(\\d{5})", "$1 $2", ["6[89]|7|8[4-9]|9(?:[1-8]|9[0-8])"]]]], SC: ["248", "010|0[0-2]", "(?:[2489]\\d|64)\\d{5}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[246]|9[57]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], SD: ["249", "00", "[19]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[19]"], "0$1"]], "0"], SE: ["46", "00", "(?:[26]\\d\\d|9)\\d{9}|[1-9]\\d{8}|[1-689]\\d{7}|[1-4689]\\d{6}|2\\d{5}", [6, 7, 8, 9, 10, 12], [["(\\d{2})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["20"], "0$1", 0, "$1 $2 $3"], ["(\\d{3})(\\d{4})", "$1-$2", ["9(?:00|39|44|9)"], "0$1", 0, "$1 $2"], ["(\\d{2})(\\d{3})(\\d{2})", "$1-$2 $3", ["[12][136]|3[356]|4[0246]|6[03]|90[1-9]"], "0$1", 0, "$1 $2 $3"], ["(\\d)(\\d{2,3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["8"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[125689]|4[02-57]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"], "0$1", 0, "$1 $2 $3"], ["(\\d{3})(\\d{2,3})(\\d{3})", "$1-$2 $3", ["9(?:00|39|44)"], "0$1", 0, "$1 $2 $3"], ["(\\d{2})(\\d{2,3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["1[13689]|2[0136]|3[1356]|4[0246]|54|6[03]|90[1-9]"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["10|7"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d)(\\d{3})(\\d{3})(\\d{2})", "$1-$2 $3 $4", ["8"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["[13-5]|2(?:[247-9]|5[0138])|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{3})", "$1-$2 $3 $4", ["9"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1-$2 $3 $4 $5", ["[26]"], "0$1", 0, "$1 $2 $3 $4 $5"]], "0"], SG: ["65", "0[0-3]\\d", "(?:(?:1\\d|8)\\d\\d|7000)\\d{7}|[3689]\\d{7}", [8, 10, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["[369]|8(?:0[1-9]|[1-9])"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]], ["(\\d{4})(\\d{4})(\\d{3})", "$1 $2 $3", ["7"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]]]], SH: ["290", "00", "(?:[256]\\d|8)\\d{3}", [4, 5], 0, 0, 0, 0, 0, 0, "[256]"], SI: ["386", "00|10(?:22|66|88|99)", "[1-7]\\d{7}|8\\d{4,7}|90\\d{4,6}", [5, 6, 7, 8], [["(\\d{2})(\\d{3,6})", "$1 $2", ["8[09]|9"], "0$1"], ["(\\d{3})(\\d{5})", "$1 $2", ["59|8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[37][01]|4[0139]|51|6"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[1-57]"], "(0$1)"]], "0", 0, 0, 0, 0, 0, 0, "00"], SJ: ["47", "00", "0\\d{4}|(?:[489]\\d|79)\\d{6}", [5, 8], 0, 0, 0, 0, 0, 0, "79"], SK: ["421", "00", "[2-689]\\d{8}|[2-59]\\d{6}|[2-5]\\d{5}", [6, 7, 9], [["(\\d)(\\d{2})(\\d{3,4})", "$1 $2 $3", ["21"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["[3-5][1-8]1", "[3-5][1-8]1[67]"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{2})", "$1/$2 $3 $4", ["2"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[689]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1/$2 $3 $4", ["[3-5]"], "0$1"]], "0"], SL: ["232", "00", "(?:[237-9]\\d|66)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[236-9]"], "(0$1)"]], "0"], SM: ["378", "00", "(?:0549|[5-7]\\d)\\d{6}", [8, 10], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]"]], ["(\\d{4})(\\d{6})", "$1 $2", ["0"]]], 0, 0, "([89]\\d{5})$", "0549$1"], SN: ["221", "00", "(?:[378]\\d|93)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[379]"]]]], SO: ["252", "00", "[346-9]\\d{8}|[12679]\\d{7}|[1-5]\\d{6}|[1348]\\d{5}", [6, 7, 8, 9], [["(\\d{2})(\\d{4})", "$1 $2", ["8[125]"]], ["(\\d{6})", "$1", ["[134]"]], ["(\\d)(\\d{6})", "$1 $2", ["[15]|2[0-79]|3[0-46-8]|4[0-7]"]], ["(\\d)(\\d{7})", "$1 $2", ["(?:2|90)4|[67]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[348]|64|79|90"]], ["(\\d{2})(\\d{5,7})", "$1 $2", ["1|28|6[0-35-9]|7[67]|9[2-9]"]]], "0"], SR: ["597", "00", "(?:[2-5]|[6-8]\\d|90)\\d{5}", [6, 7], [["(\\d{2})(\\d{2})(\\d{2})", "$1-$2-$3", ["56"]], ["(\\d{3})(\\d{3})", "$1-$2", ["[2-5]"]], ["(\\d{3})(\\d{4})", "$1-$2", ["[6-9]"]]]], SS: ["211", "00", "[19]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[19]"], "0$1"]], "0"], ST: ["239", "00", "(?:22|9\\d)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[29]"]]]], SV: ["503", "00", "[25-7]\\d{7}|(?:80\\d|900)\\d{4}(?:\\d{4})?", [7, 8, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["[89]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[25-7]"]], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["[89]"]]]], SX: ["1", "011", "7215\\d{6}|(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "(5\\d{6})$|1", "721$1", 0, "721"], SY: ["963", "00", "[1-359]\\d{8}|[1-5]\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-4]|5[1-3]"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[59]"], "0$1", 1]], "0"], SZ: ["268", "00", "0800\\d{4}|(?:[237]\\d|900)\\d{6}", [8, 9], [["(\\d{4})(\\d{4})", "$1 $2", ["[0237]"]], ["(\\d{5})(\\d{4})", "$1 $2", ["9"]]]], TA: ["290", "00", "8\\d{3}", [4], 0, 0, 0, 0, 0, 0, "8"], TC: ["1", "011", "(?:[58]\\d\\d|649|900)\\d{7}", [10], 0, "1", 0, "([2-479]\\d{6})$|1", "649$1", 0, "649"], TD: ["235", "00|16", "(?:22|[3689]\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[236-9]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], TG: ["228", "00", "[279]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[279]"]]]], TH: ["66", "00[1-9]", "(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}", [8, 9, 10, 13], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[13-9]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], TJ: ["992", "810", "(?:[0-57-9]\\d|66)\\d{7}", [9], [["(\\d{6})(\\d)(\\d{2})", "$1 $2 $3", ["331", "3317"]], ["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["44[02-479]|[34]7"]], ["(\\d{4})(\\d)(\\d{4})", "$1 $2 $3", ["3(?:[1245]|3[12])"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["\\d"]]], 0, 0, 0, 0, 0, 0, 0, "8~10"], TK: ["690", "00", "[2-47]\\d{3,6}", [4, 5, 6, 7]], TL: ["670", "00", "7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-489]|70"]], ["(\\d{4})(\\d{4})", "$1 $2", ["7"]]]], TM: ["993", "810", "(?:[1-6]\\d|71)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["12"], "(8 $1)"], ["(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[1-5]"], "(8 $1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[67]"], "8 $1"]], "8", 0, 0, 0, 0, 0, 0, "8~10"], TN: ["216", "00", "[2-57-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-57-9]"]]]], TO: ["676", "00", "(?:0800|(?:[5-8]\\d\\d|999)\\d)\\d{3}|[2-8]\\d{4}", [5, 7], [["(\\d{2})(\\d{3})", "$1-$2", ["[2-4]|50|6[09]|7[0-24-69]|8[05]"]], ["(\\d{4})(\\d{3})", "$1 $2", ["0"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[5-9]"]]]], TR: ["90", "00", "4\\d{6}|8\\d{11,12}|(?:[2-58]\\d\\d|900)\\d{7}", [7, 10, 12, 13], [["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["512|8[01589]|90"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["5(?:[0-579]|61)", "5(?:[0-579]|61[06])", "5(?:[0-579]|61[06]1)"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24][1-8]|3[1-9]"], "(0$1)", 1], ["(\\d{3})(\\d{3})(\\d{6,7})", "$1 $2 $3", ["80"], "0$1", 1]], "0"], TT: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-46-8]\\d{6})$|1", "868$1", 0, "868"], TV: ["688", "00", "(?:2|7\\d\\d|90)\\d{4}", [5, 6, 7], [["(\\d{2})(\\d{3})", "$1 $2", ["2"]], ["(\\d{2})(\\d{4})", "$1 $2", ["90"]], ["(\\d{2})(\\d{5})", "$1 $2", ["7"]]]], TW: ["886", "0(?:0[25-79]|19)", "[2-689]\\d{8}|7\\d{9,10}|[2-8]\\d{7}|2\\d{6}", [7, 8, 9, 10, 11], [["(\\d{2})(\\d)(\\d{4})", "$1 $2 $3", ["202"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[258]0"], "0$1"], ["(\\d)(\\d{3,4})(\\d{4})", "$1 $2 $3", ["[23568]|4(?:0[02-48]|[1-47-9])|7[1-9]", "[23568]|4(?:0[2-48]|[1-47-9])|(?:400|7)[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[49]"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["7"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, 0, "#"], TZ: ["255", "00[056]", "(?:[25-8]\\d|41|90)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[24]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["5"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[67]"], "0$1"]], "0"], UA: ["380", "00", "[89]\\d{9}|[3-9]\\d{8}", [9, 10], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6[12][29]|(?:3[1-8]|4[136-8]|5[12457]|6[49])2|(?:56|65)[24]", "6[12][29]|(?:35|4[1378]|5[12457]|6[49])2|(?:56|65)[24]|(?:3[1-46-8]|46)2[013-9]"], "0$1"], ["(\\d{4})(\\d{5})", "$1 $2", ["3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6[0135689]|7[4-6])|6(?:[12][3-7]|[459])", "3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6(?:[015689]|3[02389])|7[4-6])|6(?:[12][3-7]|[459])"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[3-7]|89|9[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, "0~0"], UG: ["256", "00[057]", "800\\d{6}|(?:[29]0|[347]\\d)\\d{7}", [9], [["(\\d{4})(\\d{5})", "$1 $2", ["202", "2024"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["[27-9]|4(?:6[45]|[7-9])"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[34]"], "0$1"]], "0"], US: ["1", "011", "[2-9]\\d{9}|3\\d{6}", [10], [["(\\d{3})(\\d{4})", "$1-$2", ["310"], 0, 1], ["(\\d{3})(\\d{3})(\\d{4})", "($1) $2-$3", ["[2-9]"], 0, 1, "$1-$2-$3"]], "1", 0, 0, 0, 0, 0, [["(?:274[27]|(?:472|983)[2-47-9])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[1459]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-57-9]|1[02-9]|2[013-79]|3[0-24679]|4[167]|5[0-3]|6[01349]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[0156]|5[01679]|6[0-279]|78|8[0-269])|7(?:0[1-46-8]|1[2-9]|2[04-8]|3[0-2478]|4[0378]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[0168]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-3589]|8[04-69]))[2-9]\\d{6}"], [""], ["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}"], ["900[2-9]\\d{6}"], ["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|3[23]|44|66|77|88)[2-9]\\d{6}"]]], UY: ["598", "0(?:0|1[3-9]\\d)", "0004\\d{2,9}|[1249]\\d{7}|2\\d{3,4}|(?:[49]\\d|80)\\d{5}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [["(\\d{4,5})", "$1", ["21"]], ["(\\d{3})(\\d{3,4})", "$1 $2", ["0"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[49]0|8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{4})(\\d{4})", "$1 $2", ["[124]"]], ["(\\d{3})(\\d{3})(\\d{2,4})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{2,4})", "$1 $2 $3 $4", ["0"]]], "0", 0, 0, 0, 0, 0, 0, "00", " int. "], UZ: ["998", "00", "(?:20|33|[5-9]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[235-9]"]]]], VA: ["39", "00", "0\\d{5,10}|3[0-8]\\d{7,10}|55\\d{8}|8\\d{5}(?:\\d{2,4})?|(?:1\\d|39)\\d{7,8}", [6, 7, 8, 9, 10, 11, 12], 0, 0, 0, 0, 0, 0, "06698"], VC: ["1", "011", "(?:[58]\\d\\d|784|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "784$1", 0, "784"], VE: ["58", "00", "[68]00\\d{7}|(?:[24]\\d|[59]0)\\d{8}", [10], [["(\\d{3})(\\d{7})", "$1-$2", ["[24-689]"], "0$1"]], "0"], VG: ["1", "011", "(?:284|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-578]\\d{6})$|1", "284$1", 0, "284"], VI: ["1", "011", "[58]\\d{9}|(?:34|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "340$1", 0, "340"], VN: ["84", "00", "[12]\\d{9}|[135-9]\\d{8}|[16]\\d{7}|[16-8]\\d{6}", [7, 8, 9, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["80"], "0$1", 1], ["(\\d{4})(\\d{4,6})", "$1 $2", ["1"], 0, 1], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["6"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[357-9]"], "0$1", 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["2[48]"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{3})", "$1 $2 $3", ["2"], "0$1", 1]], "0"], VU: ["678", "00", "[57-9]\\d{6}|(?:[238]\\d|48)\\d{3}", [5, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["[57-9]"]]]], WF: ["681", "00", "(?:40|72|8\\d{4})\\d{4}|[89]\\d{5}", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[47-9]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]]]], WS: ["685", "0", "(?:[2-6]|8\\d{5})\\d{4}|[78]\\d{6}|[68]\\d{5}", [5, 6, 7, 10], [["(\\d{5})", "$1", ["[2-5]|6[1-9]"]], ["(\\d{3})(\\d{3,7})", "$1 $2", ["[68]"]], ["(\\d{2})(\\d{5})", "$1 $2", ["7"]]]], XK: ["383", "00", "2\\d{7,8}|3\\d{7,11}|(?:4\\d\\d|[89]00)\\d{5}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{5})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-4]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2|39"], "0$1"], ["(\\d{2})(\\d{7,10})", "$1 $2", ["3"], "0$1"]], "0"], YE: ["967", "00", "(?:1|7\\d)\\d{7}|[1-7]\\d{6}", [7, 8, 9], [["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-6]|7(?:[24-6]|8[0-7])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["7"], "0$1"]], "0"], YT: ["262", "00", "7093\\d{5}|(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}", [9], 0, "0", 0, 0, 0, 0, 0, [["269(?:0[0-467]|15|5[0-4]|6\\d|[78]0)\\d{4}"], ["(?:639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])|7093[5-7])\\d{4}"], ["80\\d{7}"], 0, 0, 0, 0, 0, ["9(?:(?:39|47)8[01]|769\\d)\\d{4}"]]], ZA: ["27", "00", "[1-79]\\d{8}|8\\d{4,9}", [5, 6, 7, 8, 9, 10], [["(\\d{2})(\\d{3,4})", "$1 $2", ["8[1-4]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["8[1-4]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["860"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"]], "0"], ZM: ["260", "00", "800\\d{6}|(?:21|[579]\\d|63)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[28]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[579]"], "0$1"]], "0"], ZW: ["263", "00", "2(?:[0-57-9]\\d{6,8}|6[0-24-9]\\d{6,7})|[38]\\d{9}|[35-8]\\d{8}|[3-6]\\d{7}|[1-689]\\d{6}|[1-3569]\\d{5}|[1356]\\d{4}", [5, 6, 7, 8, 9, 10], [["(\\d{3})(\\d{3,5})", "$1 $2", ["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"], "0$1"], ["(\\d)(\\d{3})(\\d{2,4})", "$1 $2 $3", ["[49]"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["80"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2", "2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)", "2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"], "0$1"], ["(\\d{4})(\\d{6})", "$1 $2", ["8"], "0$1"], ["(\\d{2})(\\d{3,5})", "$1 $2", ["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["29[013-9]|39|54"], "0$1"], ["(\\d{4})(\\d{3,5})", "$1 $2", ["(?:25|54)8", "258|5483"], "0$1"]], "0"] }, nonGeographic: { 800: ["800", 0, "(?:00|[1-9]\\d)\\d{6}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["\\d"]]], 0, 0, 0, 0, 0, 0, [0, 0, ["(?:00|[1-9]\\d)\\d{6}"]]], 808: ["808", 0, "[1-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[1-9]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, 0, ["[1-9]\\d{7}"]]], 870: ["870", 0, "7\\d{11}|[235-7]\\d{8}", [9, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-7]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"], 0, 0, 0, 0, 0, 0, ["2\\d{8}", [9]]]], 878: ["878", 0, "10\\d{10}", [12], [["(\\d{2})(\\d{5})(\\d{5})", "$1 $2 $3", ["1"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, ["10\\d{10}"]]], 881: ["881", 0, "6\\d{9}|[0-36-9]\\d{8}", [9, 10], [["(\\d)(\\d{3})(\\d{5})", "$1 $2 $3", ["[0-37-9]"]], ["(\\d)(\\d{3})(\\d{5,6})", "$1 $2 $3", ["6"]]], 0, 0, 0, 0, 0, 0, [0, ["6\\d{9}|[0-36-9]\\d{8}"]]], 882: ["882", 0, "[13]\\d{6}(?:\\d{2,5})?|[19]\\d{7}|(?:[25]\\d\\d|4)\\d{7}(?:\\d{2})?", [7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{5})", "$1 $2", ["16|342"]], ["(\\d{2})(\\d{6})", "$1 $2", ["49"]], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["1[36]|9"]], ["(\\d{2})(\\d{4})(\\d{3})", "$1 $2 $3", ["3[23]"]], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["16"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["10|23|3(?:[15]|4[57])|4|5[12]"]], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["34"]], ["(\\d{2})(\\d{4,5})(\\d{5})", "$1 $2 $3", ["[1-35]"]]], 0, 0, 0, 0, 0, 0, [0, ["342\\d{4}|(?:337|49)\\d{6}|(?:3(?:2|47|7\\d{3})|5(?:0\\d{3}|2[0-2]))\\d{7}", [7, 8, 9, 10, 12]], 0, 0, 0, ["348[57]\\d{7}", [11]], 0, 0, ["1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15-8]|9[0689])\\d{4}|6\\d{5,10})|(?:345\\d|9[89])\\d{6}|(?:10|2(?:3|85\\d)|3(?:[15]|[69]\\d\\d)|4[15-8]|51)\\d{8}"]]], 883: ["883", 0, "(?:[1-4]\\d|51)\\d{6,10}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{2,8})", "$1 $2 $3", ["[14]|2[24-689]|3[02-689]|51[24-9]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["510"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["21"]], ["(\\d{4})(\\d{4})(\\d{4})", "$1 $2 $3", ["51[13]"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[235]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, ["(?:2(?:00\\d\\d|10)|(?:370[1-9]|51\\d0)\\d)\\d{7}|51(?:00\\d{5}|[24-9]0\\d{4,7})|(?:1[0-79]|2[24-689]|3[02-689]|4[0-4])0\\d{5,9}"]]], 888: ["888", 0, "\\d{11}", [11], [["(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3"]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, ["\\d{11}"]]], 979: ["979", 0, "[1359]\\d{8}", [9], [["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[1359]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, ["[1359]\\d{8}"]]] } };
1919
- function V1(d, t) {
1920
- var e = Array.prototype.slice.call(t);
1921
- return e.push(j1), d.apply(this, e);
1922
- }
1923
- function X(d, t) {
1924
- d = d.split("-"), t = t.split("-");
1925
- for (var e = d[0].split("."), n = t[0].split("."), r = 0; r < 3; r++) {
1926
- var a = Number(e[r]), o = Number(n[r]);
1927
- if (a > o) return 1;
1928
- if (o > a) return -1;
1929
- if (!isNaN(a) && isNaN(o)) return 1;
1930
- if (isNaN(a) && !isNaN(o)) return -1;
1931
- }
1932
- return d[1] && t[1] ? d[1] > t[1] ? 1 : d[1] < t[1] ? -1 : 0 : !d[1] && t[1] ? 1 : d[1] && !t[1] ? -1 : 0;
1933
- }
1934
- var W1 = {}.constructor;
1935
- function C(d) {
1936
- return d != null && d.constructor === W1;
1937
- }
1938
- function F(d) {
1939
- "@babel/helpers - typeof";
1940
- return F = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(t) {
1941
- return typeof t;
1942
- } : function(t) {
1943
- return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
1944
- }, F(d);
1945
- }
1946
- function R(d, t) {
1947
- if (!(d instanceof t)) throw new TypeError("Cannot call a class as a function");
1948
- }
1949
- function Y1(d, t) {
1950
- for (var e = 0; e < t.length; e++) {
1951
- var n = t[e];
1952
- n.enumerable = n.enumerable || !1, n.configurable = !0, "value" in n && (n.writable = !0), Object.defineProperty(d, J1(n.key), n);
1953
- }
1954
- }
1955
- function x(d, t, e) {
1956
- return t && Y1(d.prototype, t), Object.defineProperty(d, "prototype", { writable: !1 }), d;
1957
- }
1958
- function J1(d) {
1959
- var t = Z1(d, "string");
1960
- return F(t) == "symbol" ? t : t + "";
1961
- }
1962
- function Z1(d, t) {
1963
- if (F(d) != "object" || !d) return d;
1964
- var e = d[Symbol.toPrimitive];
1965
- if (e !== void 0) {
1966
- var n = e.call(d, t);
1967
- if (F(n) != "object") return n;
1968
- throw new TypeError("@@toPrimitive must return a primitive value.");
1969
- }
1970
- return String(d);
1971
- }
1972
- var z1 = "1.2.0", X1 = "1.7.35", q = " ext. ", q1 = /^\d+$/, l = /* @__PURE__ */ function() {
1973
- function d(t) {
1974
- R(this, d), p1(t), this.metadata = t, C1.call(this, t);
1975
- }
1976
- return x(d, [{
1977
- key: "getCountries",
1978
- value: function() {
1979
- return Object.keys(this.metadata.countries).filter(function(e) {
1980
- return e !== "001";
1981
- });
1982
- }
1983
- }, {
1984
- key: "getCountryMetadata",
1985
- value: function(e) {
1986
- return this.metadata.countries[e];
1987
- }
1988
- }, {
1989
- key: "nonGeographic",
1990
- value: function() {
1991
- if (!(this.v1 || this.v2 || this.v3))
1992
- return this.metadata.nonGeographic || this.metadata.nonGeographical;
1993
- }
1994
- }, {
1995
- key: "hasCountry",
1996
- value: function(e) {
1997
- return this.getCountryMetadata(e) !== void 0;
1998
- }
1999
- }, {
2000
- key: "hasCallingCode",
2001
- value: function(e) {
2002
- if (this.getCountryCodesForCallingCode(e))
2003
- return !0;
2004
- if (this.nonGeographic()) {
2005
- if (this.nonGeographic()[e])
2006
- return !0;
2007
- } else {
2008
- var n = this.countryCallingCodes()[e];
2009
- if (n && n.length === 1 && n[0] === "001")
2010
- return !0;
2011
- }
2012
- }
2013
- }, {
2014
- key: "isNonGeographicCallingCode",
2015
- value: function(e) {
2016
- return this.nonGeographic() ? !!this.nonGeographic()[e] : !this.getCountryCodesForCallingCode(e);
2017
- }
2018
- // Deprecated.
2019
- }, {
2020
- key: "country",
2021
- value: function(e) {
2022
- return this.selectNumberingPlan(e);
2023
- }
2024
- }, {
2025
- key: "selectNumberingPlan",
2026
- value: function(e, n) {
2027
- if (e && q1.test(e) && (n = e, e = null), e && e !== "001") {
2028
- if (!this.hasCountry(e))
2029
- throw new Error("Unknown country: ".concat(e));
2030
- this.numberingPlan = new Q(this.getCountryMetadata(e), this);
2031
- } else if (n) {
2032
- if (!this.hasCallingCode(n))
2033
- throw new Error("Unknown calling code: ".concat(n));
2034
- this.numberingPlan = new Q(this.getNumberingPlanMetadata(n), this);
2035
- } else
2036
- this.numberingPlan = void 0;
2037
- return this;
2038
- }
2039
- }, {
2040
- key: "getCountryCodesForCallingCode",
2041
- value: function(e) {
2042
- var n = this.countryCallingCodes()[e];
2043
- if (n)
2044
- return n.length === 1 && n[0].length === 3 ? void 0 : n;
2045
- }
2046
- }, {
2047
- key: "getCountryCodeForCallingCode",
2048
- value: function(e) {
2049
- var n = this.getCountryCodesForCallingCode(e);
2050
- if (n)
2051
- return n[0];
2052
- }
2053
- }, {
2054
- key: "getNumberingPlanMetadata",
2055
- value: function(e) {
2056
- var n = this.getCountryCodeForCallingCode(e);
2057
- if (n)
2058
- return this.getCountryMetadata(n);
2059
- if (this.nonGeographic()) {
2060
- var r = this.nonGeographic()[e];
2061
- if (r)
2062
- return r;
2063
- } else {
2064
- var a = this.countryCallingCodes()[e];
2065
- if (a && a.length === 1 && a[0] === "001")
2066
- return this.metadata.countries["001"];
2067
- }
2068
- }
2069
- // Deprecated.
2070
- }, {
2071
- key: "countryCallingCode",
2072
- value: function() {
2073
- return this.numberingPlan.callingCode();
2074
- }
2075
- // Deprecated.
2076
- }, {
2077
- key: "IDDPrefix",
2078
- value: function() {
2079
- return this.numberingPlan.IDDPrefix();
2080
- }
2081
- // Deprecated.
2082
- }, {
2083
- key: "defaultIDDPrefix",
2084
- value: function() {
2085
- return this.numberingPlan.defaultIDDPrefix();
2086
- }
2087
- // Deprecated.
2088
- }, {
2089
- key: "nationalNumberPattern",
2090
- value: function() {
2091
- return this.numberingPlan.nationalNumberPattern();
2092
- }
2093
- // Deprecated.
2094
- }, {
2095
- key: "possibleLengths",
2096
- value: function() {
2097
- return this.numberingPlan.possibleLengths();
2098
- }
2099
- // Deprecated.
2100
- }, {
2101
- key: "formats",
2102
- value: function() {
2103
- return this.numberingPlan.formats();
2104
- }
2105
- // Deprecated.
2106
- }, {
2107
- key: "nationalPrefixForParsing",
2108
- value: function() {
2109
- return this.numberingPlan.nationalPrefixForParsing();
2110
- }
2111
- // Deprecated.
2112
- }, {
2113
- key: "nationalPrefixTransformRule",
2114
- value: function() {
2115
- return this.numberingPlan.nationalPrefixTransformRule();
2116
- }
2117
- // Deprecated.
2118
- }, {
2119
- key: "leadingDigits",
2120
- value: function() {
2121
- return this.numberingPlan.leadingDigits();
2122
- }
2123
- // Deprecated.
2124
- }, {
2125
- key: "hasTypes",
2126
- value: function() {
2127
- return this.numberingPlan.hasTypes();
2128
- }
2129
- // Deprecated.
2130
- }, {
2131
- key: "type",
2132
- value: function(e) {
2133
- return this.numberingPlan.type(e);
2134
- }
2135
- // Deprecated.
2136
- }, {
2137
- key: "ext",
2138
- value: function() {
2139
- return this.numberingPlan.ext();
2140
- }
2141
- }, {
2142
- key: "countryCallingCodes",
2143
- value: function() {
2144
- return this.v1 ? this.metadata.country_phone_code_to_countries : this.metadata.country_calling_codes;
2145
- }
2146
- // Deprecated.
2147
- }, {
2148
- key: "chooseCountryByCountryCallingCode",
2149
- value: function(e) {
2150
- return this.selectNumberingPlan(e);
2151
- }
2152
- }, {
2153
- key: "hasSelectedNumberingPlan",
2154
- value: function() {
2155
- return this.numberingPlan !== void 0;
2156
- }
2157
- }]);
2158
- }(), Q = /* @__PURE__ */ function() {
2159
- function d(t, e) {
2160
- R(this, d), this.globalMetadataObject = e, this.metadata = t, C1.call(this, e.metadata);
2161
- }
2162
- return x(d, [{
2163
- key: "callingCode",
2164
- value: function() {
2165
- return this.metadata[0];
2166
- }
2167
- // Formatting information for regions which share
2168
- // a country calling code is contained by only one region
2169
- // for performance reasons. For example, for NANPA region
2170
- // ("North American Numbering Plan Administration",
2171
- // which includes USA, Canada, Cayman Islands, Bahamas, etc)
2172
- // it will be contained in the metadata for `US`.
2173
- }, {
2174
- key: "getDefaultCountryMetadataForRegion",
2175
- value: function() {
2176
- return this.globalMetadataObject.getNumberingPlanMetadata(this.callingCode());
2177
- }
2178
- // Is always present.
2179
- }, {
2180
- key: "IDDPrefix",
2181
- value: function() {
2182
- if (!(this.v1 || this.v2))
2183
- return this.metadata[1];
2184
- }
2185
- // Is only present when a country supports multiple IDD prefixes.
2186
- }, {
2187
- key: "defaultIDDPrefix",
2188
- value: function() {
2189
- if (!(this.v1 || this.v2))
2190
- return this.metadata[12];
2191
- }
2192
- }, {
2193
- key: "nationalNumberPattern",
2194
- value: function() {
2195
- return this.v1 || this.v2 ? this.metadata[1] : this.metadata[2];
2196
- }
2197
- // "possible length" data is always present in Google's metadata.
2198
- }, {
2199
- key: "possibleLengths",
2200
- value: function() {
2201
- if (!this.v1)
2202
- return this.metadata[this.v2 ? 2 : 3];
2203
- }
2204
- }, {
2205
- key: "_getFormats",
2206
- value: function(e) {
2207
- return e[this.v1 ? 2 : this.v2 ? 3 : 4];
2208
- }
2209
- // For countries of the same region (e.g. NANPA)
2210
- // formats are all stored in the "main" country for that region.
2211
- // E.g. "RU" and "KZ", "US" and "CA".
2212
- }, {
2213
- key: "formats",
2214
- value: function() {
2215
- var e = this, n = this._getFormats(this.metadata) || this._getFormats(this.getDefaultCountryMetadataForRegion()) || [];
2216
- return n.map(function(r) {
2217
- return new Q1(r, e);
2218
- });
2219
- }
2220
- }, {
2221
- key: "nationalPrefix",
2222
- value: function() {
2223
- return this.metadata[this.v1 ? 3 : this.v2 ? 4 : 5];
2224
- }
2225
- }, {
2226
- key: "_getNationalPrefixFormattingRule",
2227
- value: function(e) {
2228
- return e[this.v1 ? 4 : this.v2 ? 5 : 6];
2229
- }
2230
- // For countries of the same region (e.g. NANPA)
2231
- // national prefix formatting rule is stored in the "main" country for that region.
2232
- // E.g. "RU" and "KZ", "US" and "CA".
2233
- }, {
2234
- key: "nationalPrefixFormattingRule",
2235
- value: function() {
2236
- return this._getNationalPrefixFormattingRule(this.metadata) || this._getNationalPrefixFormattingRule(this.getDefaultCountryMetadataForRegion());
2237
- }
2238
- }, {
2239
- key: "_nationalPrefixForParsing",
2240
- value: function() {
2241
- return this.metadata[this.v1 ? 5 : this.v2 ? 6 : 7];
2242
- }
2243
- }, {
2244
- key: "nationalPrefixForParsing",
2245
- value: function() {
2246
- return this._nationalPrefixForParsing() || this.nationalPrefix();
2247
- }
2248
- }, {
2249
- key: "nationalPrefixTransformRule",
2250
- value: function() {
2251
- return this.metadata[this.v1 ? 6 : this.v2 ? 7 : 8];
2252
- }
2253
- }, {
2254
- key: "_getNationalPrefixIsOptionalWhenFormatting",
2255
- value: function() {
2256
- return !!this.metadata[this.v1 ? 7 : this.v2 ? 8 : 9];
2257
- }
2258
- // For countries of the same region (e.g. NANPA)
2259
- // "national prefix is optional when formatting" flag is
2260
- // stored in the "main" country for that region.
2261
- // E.g. "RU" and "KZ", "US" and "CA".
2262
- }, {
2263
- key: "nationalPrefixIsOptionalWhenFormattingInNationalFormat",
2264
- value: function() {
2265
- return this._getNationalPrefixIsOptionalWhenFormatting(this.metadata) || this._getNationalPrefixIsOptionalWhenFormatting(this.getDefaultCountryMetadataForRegion());
2266
- }
2267
- }, {
2268
- key: "leadingDigits",
2269
- value: function() {
2270
- return this.metadata[this.v1 ? 8 : this.v2 ? 9 : 10];
2271
- }
2272
- }, {
2273
- key: "types",
2274
- value: function() {
2275
- return this.metadata[this.v1 ? 9 : this.v2 ? 10 : 11];
2276
- }
2277
- }, {
2278
- key: "hasTypes",
2279
- value: function() {
2280
- return this.types() && this.types().length === 0 ? !1 : !!this.types();
2281
- }
2282
- }, {
2283
- key: "type",
2284
- value: function(e) {
2285
- if (this.hasTypes() && d1(this.types(), e))
2286
- return new td(d1(this.types(), e), this);
2287
- }
2288
- }, {
2289
- key: "ext",
2290
- value: function() {
2291
- return this.v1 || this.v2 ? q : this.metadata[13] || q;
2292
- }
2293
- }]);
2294
- }(), Q1 = /* @__PURE__ */ function() {
2295
- function d(t, e) {
2296
- R(this, d), this._format = t, this.metadata = e;
2297
- }
2298
- return x(d, [{
2299
- key: "pattern",
2300
- value: function() {
2301
- return this._format[0];
2302
- }
2303
- }, {
2304
- key: "format",
2305
- value: function() {
2306
- return this._format[1];
2307
- }
2308
- }, {
2309
- key: "leadingDigitsPatterns",
2310
- value: function() {
2311
- return this._format[2] || [];
2312
- }
2313
- }, {
2314
- key: "nationalPrefixFormattingRule",
2315
- value: function() {
2316
- return this._format[3] || this.metadata.nationalPrefixFormattingRule();
2317
- }
2318
- }, {
2319
- key: "nationalPrefixIsOptionalWhenFormattingInNationalFormat",
2320
- value: function() {
2321
- return !!this._format[4] || this.metadata.nationalPrefixIsOptionalWhenFormattingInNationalFormat();
2322
- }
2323
- }, {
2324
- key: "nationalPrefixIsMandatoryWhenFormattingInNationalFormat",
2325
- value: function() {
2326
- return this.usesNationalPrefix() && !this.nationalPrefixIsOptionalWhenFormattingInNationalFormat();
2327
- }
2328
- // Checks whether national prefix formatting rule contains national prefix.
2329
- }, {
2330
- key: "usesNationalPrefix",
2331
- value: function() {
2332
- return !!(this.nationalPrefixFormattingRule() && // Check that national prefix formatting rule is not a "dummy" one.
2333
- !dd.test(this.nationalPrefixFormattingRule()));
2334
- }
2335
- }, {
2336
- key: "internationalFormat",
2337
- value: function() {
2338
- return this._format[5] || this.format();
2339
- }
2340
- }]);
2341
- }(), dd = /^\(?\$1\)?$/, td = /* @__PURE__ */ function() {
2342
- function d(t, e) {
2343
- R(this, d), this.type = t, this.metadata = e;
2344
- }
2345
- return x(d, [{
2346
- key: "pattern",
2347
- value: function() {
2348
- return this.metadata.v1 ? this.type : this.type[0];
2349
- }
2350
- }, {
2351
- key: "possibleLengths",
2352
- value: function() {
2353
- if (!this.metadata.v1)
2354
- return this.type[1] || this.metadata.possibleLengths();
2355
- }
2356
- }]);
2357
- }();
2358
- function d1(d, t) {
2359
- switch (t) {
2360
- case "FIXED_LINE":
2361
- return d[0];
2362
- case "MOBILE":
2363
- return d[1];
2364
- case "TOLL_FREE":
2365
- return d[2];
2366
- case "PREMIUM_RATE":
2367
- return d[3];
2368
- case "PERSONAL_NUMBER":
2369
- return d[4];
2370
- case "VOICEMAIL":
2371
- return d[5];
2372
- case "UAN":
2373
- return d[6];
2374
- case "PAGER":
2375
- return d[7];
2376
- case "VOIP":
2377
- return d[8];
2378
- case "SHARED_COST":
2379
- return d[9];
2380
- }
2381
- }
2382
- function p1(d) {
2383
- if (!d)
2384
- throw new Error("[libphonenumber-js] `metadata` argument not passed. Check your arguments.");
2385
- if (!C(d) || !C(d.countries))
2386
- throw new Error("[libphonenumber-js] `metadata` argument was passed but it's not a valid metadata. Must be an object having `.countries` child object property. Got ".concat(C(d) ? "an object of shape: { " + Object.keys(d).join(", ") + " }" : "a " + ed(d) + ": " + d, "."));
2387
- }
2388
- var ed = function(t) {
2389
- return F(t);
2390
- };
2391
- function V(d, t) {
2392
- if (t = new l(t), t.hasCountry(d))
2393
- return t.selectNumberingPlan(d).countryCallingCode();
2394
- throw new Error("Unknown country: ".concat(d));
2395
- }
2396
- function C1(d) {
2397
- var t = d.version;
2398
- typeof t == "number" ? (this.v1 = t === 1, this.v2 = t === 2, this.v3 = t === 3, this.v4 = t === 4) : t ? X(t, z1) === -1 ? this.v2 = !0 : X(t, X1) === -1 ? this.v3 = !0 : this.v4 = !0 : this.v1 = !0;
2399
- }
2400
- function W(d, t, e) {
2401
- return nd(d, t, void 0, e);
2402
- }
2403
- function nd(d, t, e, n) {
2404
- t && (n = new l(n.metadata), n.selectNumberingPlan(t));
2405
- var r = n.type(e), a = r && r.possibleLengths() || n.possibleLengths();
2406
- if (!a)
2407
- return "IS_POSSIBLE";
2408
- var o = d.length, $ = a[0];
2409
- return $ === o ? "IS_POSSIBLE" : $ > o ? "TOO_SHORT" : a[a.length - 1] < o ? "TOO_LONG" : a.indexOf(o, 1) >= 0 ? "IS_POSSIBLE" : "INVALID_LENGTH";
2410
- }
2411
- function rd(d, t, e) {
2412
- if (t === void 0 && (t = {}), e = new l(e), t.v2) {
2413
- if (!d.countryCallingCode)
2414
- throw new Error("Invalid phone number object passed");
2415
- e.selectNumberingPlan(d.countryCallingCode);
2416
- } else {
2417
- if (!d.phone)
2418
- return !1;
2419
- if (d.country) {
2420
- if (!e.hasCountry(d.country))
2421
- throw new Error("Unknown country: ".concat(d.country));
2422
- e.selectNumberingPlan(d.country);
2423
- } else {
2424
- if (!d.countryCallingCode)
2425
- throw new Error("Invalid phone number object passed");
2426
- e.selectNumberingPlan(d.countryCallingCode);
2427
- }
2428
- }
2429
- if (e.possibleLengths())
2430
- return F1(d.phone || d.nationalNumber, d.country, e);
2431
- if (d.countryCallingCode && e.isNonGeographicCallingCode(d.countryCallingCode))
2432
- return !0;
2433
- throw new Error('Missing "possibleLengths" in metadata. Perhaps the metadata has been generated before v1.0.18.');
2434
- }
2435
- function F1(d, t, e) {
2436
- switch (W(d, t, e)) {
2437
- case "IS_POSSIBLE":
2438
- return !0;
2439
- default:
2440
- return !1;
2441
- }
2442
- }
2443
- function k(d, t) {
2444
- return d = d || "", new RegExp("^(?:" + t + ")$").test(d);
2445
- }
2446
- function ad(d, t) {
2447
- var e = typeof Symbol < "u" && d[Symbol.iterator] || d["@@iterator"];
2448
- if (e) return (e = e.call(d)).next.bind(e);
2449
- if (Array.isArray(d) || (e = od(d)) || t) {
2450
- e && (d = e);
2451
- var n = 0;
2452
- return function() {
2453
- return n >= d.length ? { done: !0 } : { done: !1, value: d[n++] };
2454
- };
2455
- }
2456
- throw new TypeError(`Invalid attempt to iterate non-iterable instance.
2457
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
2458
- }
2459
- function od(d, t) {
2460
- if (d) {
2461
- if (typeof d == "string") return t1(d, t);
2462
- var e = {}.toString.call(d).slice(8, -1);
2463
- return e === "Object" && d.constructor && (e = d.constructor.name), e === "Map" || e === "Set" ? Array.from(d) : e === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e) ? t1(d, t) : void 0;
2464
- }
2465
- }
2466
- function t1(d, t) {
2467
- (t == null || t > d.length) && (t = d.length);
2468
- for (var e = 0, n = Array(t); e < t; e++) n[e] = d[e];
2469
- return n;
2470
- }
2471
- var sd = ["MOBILE", "PREMIUM_RATE", "TOLL_FREE", "SHARED_COST", "VOIP", "PERSONAL_NUMBER", "PAGER", "UAN", "VOICEMAIL"];
2472
- function Y(d, t, e) {
2473
- if (t = t || {}, !(!d.country && !d.countryCallingCode)) {
2474
- e = new l(e), e.selectNumberingPlan(d.country, d.countryCallingCode);
2475
- var n = t.v2 ? d.nationalNumber : d.phone;
2476
- if (k(n, e.nationalNumberPattern())) {
2477
- if (D(n, "FIXED_LINE", e))
2478
- return e.type("MOBILE") && e.type("MOBILE").pattern() === "" || !e.type("MOBILE") || D(n, "MOBILE", e) ? "FIXED_LINE_OR_MOBILE" : "FIXED_LINE";
2479
- for (var r = ad(sd), a; !(a = r()).done; ) {
2480
- var o = a.value;
2481
- if (D(n, o, e))
2482
- return o;
2483
- }
2484
- }
2485
- }
2486
- }
2487
- function D(d, t, e) {
2488
- var n = e.type(t);
2489
- return !n || !n.pattern() || n.possibleLengths() && n.possibleLengths().indexOf(d.length) < 0 ? !1 : k(d, n.pattern());
2490
- }
2491
- function $d(d, t, e) {
2492
- if (t = t || {}, e = new l(e), e.selectNumberingPlan(d.country, d.countryCallingCode), e.hasTypes())
2493
- return Y(d, t, e.metadata) !== void 0;
2494
- var n = t.v2 ? d.nationalNumber : d.phone;
2495
- return k(n, e.nationalNumberPattern());
2496
- }
2497
- function id(d, t, e) {
2498
- var n = new l(e), r = n.getCountryCodesForCallingCode(d);
2499
- return r ? r.filter(function(a) {
2500
- return cd(t, a, e);
2501
- }) : [];
2502
- }
2503
- function cd(d, t, e) {
2504
- var n = new l(e);
2505
- return n.selectNumberingPlan(t), n.numberingPlan.possibleLengths().indexOf(d.length) >= 0;
2506
- }
2507
- var J = 2, _d = 17, ud = 3, y = "0-90-9٠-٩۰-۹", ld = "-‐-―−ー-", gd = "//", md = "..", fd = "  ­​⁠ ", yd = "()()[]\\[\\]", hd = "~⁓∼~", w = "".concat(ld).concat(gd).concat(md).concat(fd).concat(yd).concat(hd), Z = "++", kd = new RegExp("([" + y + "])");
2508
- function vd(d, t, e, n) {
2509
- if (t) {
2510
- var r = new l(n);
2511
- r.selectNumberingPlan(t, e);
2512
- var a = new RegExp(r.IDDPrefix());
2513
- if (d.search(a) === 0) {
2514
- d = d.slice(d.match(a)[0].length);
2515
- var o = d.match(kd);
2516
- if (!(o && o[1] != null && o[1].length > 0 && o[1] === "0"))
2517
- return d;
2518
- }
2519
- }
2520
- }
2521
- function pd(d, t) {
2522
- if (d && t.numberingPlan.nationalPrefixForParsing()) {
2523
- var e = new RegExp("^(?:" + t.numberingPlan.nationalPrefixForParsing() + ")"), n = e.exec(d);
2524
- if (n) {
2525
- var r, a, o = n.length - 1, $ = o > 0 && n[o];
2526
- if (t.nationalPrefixTransformRule() && $)
2527
- r = d.replace(e, t.nationalPrefixTransformRule()), o > 1 && (a = n[1]);
2528
- else {
2529
- var s = n[0];
2530
- r = d.slice(s.length), $ && (a = n[1]);
2531
- }
2532
- var i;
2533
- if ($) {
2534
- var c = d.indexOf(n[1]), u = d.slice(0, c);
2535
- u === t.numberingPlan.nationalPrefix() && (i = t.numberingPlan.nationalPrefix());
2536
- } else
2537
- i = n[0];
2538
- return {
2539
- nationalNumber: r,
2540
- nationalPrefix: i,
2541
- carrierCode: a
2542
- };
2543
- }
2544
- }
2545
- return {
2546
- nationalNumber: d
2547
- };
2548
- }
2549
- function Cd(d, t) {
2550
- var e = typeof Symbol < "u" && d[Symbol.iterator] || d["@@iterator"];
2551
- if (e) return (e = e.call(d)).next.bind(e);
2552
- if (Array.isArray(d) || (e = Fd(d)) || t) {
2553
- e && (d = e);
2554
- var n = 0;
2555
- return function() {
2556
- return n >= d.length ? { done: !0 } : { done: !1, value: d[n++] };
2557
- };
2558
- }
2559
- throw new TypeError(`Invalid attempt to iterate non-iterable instance.
2560
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
2561
- }
2562
- function Fd(d, t) {
2563
- if (d) {
2564
- if (typeof d == "string") return e1(d, t);
2565
- var e = {}.toString.call(d).slice(8, -1);
2566
- return e === "Object" && d.constructor && (e = d.constructor.name), e === "Map" || e === "Set" ? Array.from(d) : e === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e) ? e1(d, t) : void 0;
2567
- }
2568
- }
2569
- function e1(d, t) {
2570
- (t == null || t > d.length) && (t = d.length);
2571
- for (var e = 0, n = Array(t); e < t; e++) n[e] = d[e];
2572
- return n;
2573
- }
2574
- function bd(d, t) {
2575
- var e = t.countries, n = t.metadata;
2576
- n = new l(n);
2577
- for (var r = Cd(e), a; !(a = r()).done; ) {
2578
- var o = a.value;
2579
- if (n.selectNumberingPlan(o), n.leadingDigits()) {
2580
- if (d && d.search(n.leadingDigits()) === 0)
2581
- return o;
2582
- } else if (Y({
2583
- phone: d,
2584
- country: o
2585
- }, void 0, n.metadata))
2586
- return o;
2587
- }
2588
- }
2589
- function b1(d, t) {
2590
- var e = t.nationalNumber, n = t.metadata, r = n.getCountryCodesForCallingCode(d);
2591
- if (r)
2592
- return r.length === 1 ? r[0] : bd(e, {
2593
- countries: r,
2594
- metadata: n.metadata
2595
- });
2596
- }
2597
- function B(d, t, e) {
2598
- var n = pd(d, e), r = n.carrierCode, a = n.nationalNumber;
2599
- if (a !== d) {
2600
- if (!Pd(d, a, e))
2601
- return {
2602
- nationalNumber: d
2603
- };
2604
- if (e.numberingPlan.possibleLengths() && (t || (t = b1(e.numberingPlan.callingCode(), {
2605
- nationalNumber: a,
2606
- metadata: e
2607
- })), !Nd(a, t, e)))
2608
- return {
2609
- nationalNumber: d
2610
- };
2611
- }
2612
- return {
2613
- nationalNumber: a,
2614
- carrierCode: r
2615
- };
2616
- }
2617
- function Pd(d, t, e) {
2618
- return !(k(d, e.nationalNumberPattern()) && !k(t, e.nationalNumberPattern()));
2619
- }
2620
- function Nd(d, t, e) {
2621
- switch (W(d, t, e)) {
2622
- case "TOO_SHORT":
2623
- case "INVALID_LENGTH":
2624
- return !1;
2625
- default:
2626
- return !0;
2627
- }
2628
- }
2629
- function Ed(d, t, e, n, r) {
2630
- var a = e ? V(e, r) : n;
2631
- if (d.indexOf(a) === 0) {
2632
- r = new l(r), r.selectNumberingPlan(e, a);
2633
- var o = d.slice(a.length), $ = B(o, t, r), s = $.nationalNumber, i = B(d, t, r), c = i.nationalNumber;
2634
- if (!k(c, r.nationalNumberPattern()) && k(s, r.nationalNumberPattern()) || W(c, t, r) === "TOO_LONG")
2635
- return {
2636
- countryCallingCode: a,
2637
- number: o
2638
- };
2639
- }
2640
- return {
2641
- number: d
2642
- };
2643
- }
2644
- function P1(d, t, e, n, r) {
2645
- if (!d)
2646
- return {};
2647
- var a;
2648
- if (d[0] !== "+") {
2649
- var o = vd(d, e, n, r);
2650
- if (o && o !== d)
2651
- a = !0, d = "+" + o;
2652
- else {
2653
- if (e || n) {
2654
- var $ = Ed(d, t, e, n, r), s = $.countryCallingCode, i = $.number;
2655
- if (s)
2656
- return {
2657
- countryCallingCodeSource: "FROM_NUMBER_WITHOUT_PLUS_SIGN",
2658
- countryCallingCode: s,
2659
- number: i
2660
- };
2661
- }
2662
- return {
2663
- // No need to set it to `UNSPECIFIED`. It can be just `undefined`.
2664
- // countryCallingCodeSource: 'UNSPECIFIED',
2665
- number: d
2666
- };
2667
- }
2668
- }
2669
- if (d[1] === "0")
2670
- return {};
2671
- r = new l(r);
2672
- for (var c = 2; c - 1 <= ud && c <= d.length; ) {
2673
- var u = d.slice(1, c);
2674
- if (r.hasCallingCode(u))
2675
- return r.selectNumberingPlan(u), {
2676
- countryCallingCodeSource: a ? "FROM_NUMBER_WITH_IDD" : "FROM_NUMBER_WITH_PLUS_SIGN",
2677
- countryCallingCode: u,
2678
- number: d.slice(c)
2679
- };
2680
- c++;
2681
- }
2682
- return {};
2683
- }
2684
- function Sd(d) {
2685
- return d.replace(new RegExp("[".concat(w, "]+"), "g"), " ").trim();
2686
- }
2687
- var Id = /(\$\d)/;
2688
- function Td(d, t, e) {
2689
- var n = e.useInternationalFormat, r = e.withNationalPrefix, a = d.replace(new RegExp(t.pattern()), n ? t.internationalFormat() : (
2690
- // This library doesn't use `domestic_carrier_code_formatting_rule`,
2691
- // because that one is only used when formatting phone numbers
2692
- // for dialing from a mobile phone, and this is not a dialing library.
2693
- // carrierCode && format.domesticCarrierCodeFormattingRule()
2694
- // // First, replace the $CC in the formatting rule with the desired carrier code.
2695
- // // Then, replace the $FG in the formatting rule with the first group
2696
- // // and the carrier code combined in the appropriate way.
2697
- // ? format.format().replace(FIRST_GROUP_PATTERN, format.domesticCarrierCodeFormattingRule().replace('$CC', carrierCode))
2698
- // : (
2699
- // withNationalPrefix && format.nationalPrefixFormattingRule()
2700
- // ? format.format().replace(FIRST_GROUP_PATTERN, format.nationalPrefixFormattingRule())
2701
- // : format.format()
2702
- // )
2703
- r && t.nationalPrefixFormattingRule() ? t.format().replace(Id, t.nationalPrefixFormattingRule()) : t.format()
2704
- ));
2705
- return n ? Sd(a) : a;
2706
- }
2707
- var Ad = /^[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?$/;
2708
- function wd(d, t, e) {
2709
- var n = new l(e);
2710
- if (n.selectNumberingPlan(d, t), n.defaultIDDPrefix())
2711
- return n.defaultIDDPrefix();
2712
- if (Ad.test(n.IDDPrefix()))
2713
- return n.IDDPrefix();
2714
- }
2715
- var Od = ";ext=", p = function(t) {
2716
- return "([".concat(y, "]{1,").concat(t, "})");
2717
- };
2718
- function N1(d) {
2719
- var t = "20", e = "15", n = "9", r = "6", a = "[  \\t,]*", o = "[:\\..]?[  \\t,-]*", $ = "#?", s = "(?:e?xt(?:ensi(?:ó?|ó))?n?|e?xtn?|доб|anexo)", i = "(?:[xx##~~]|int|int)", c = "[- ]+", u = "[  \\t]*", m = "(?:,{2}|;)", g = Od + p(t), h = a + s + o + p(t) + $, O1 = a + i + o + p(n) + $, M1 = c + p(r) + "#", R1 = u + m + o + p(e) + $, x1 = u + "(?:,)+" + o + p(n) + $;
2720
- return g + "|" + h + "|" + O1 + "|" + M1 + "|" + R1 + "|" + x1;
2721
- }
2722
- var Md = "[" + y + "]{" + J + "}", Rd = "[" + Z + "]{0,1}(?:[" + w + "]*[" + y + "]){3,}[" + w + y + "]*", xd = new RegExp("^[" + Z + "]{0,1}(?:[" + w + "]*[" + y + "]){1,2}$", "i"), Dd = Rd + // Phone number extensions
2723
- "(?:" + N1() + ")?", Ld = new RegExp(
2724
- // Either a short two-digit-only phone number
2725
- "^" + Md + "$|^" + Dd + "$",
2726
- "i"
2727
- );
2728
- function Gd(d) {
2729
- return d.length >= J && Ld.test(d);
2730
- }
2731
- function Bd(d) {
2732
- return xd.test(d);
2733
- }
2734
- function Ud(d) {
2735
- var t = d.number, e = d.ext;
2736
- if (!t)
2737
- return "";
2738
- if (t[0] !== "+")
2739
- throw new Error('"formatRFC3966()" expects "number" to be in E.164 format.');
2740
- return "tel:".concat(t).concat(e ? ";ext=" + e : "");
2741
- }
2742
- var n1 = {
2743
- formatExtension: function(t, e, n) {
2744
- return "".concat(t).concat(n.ext()).concat(e);
2745
- }
2746
- };
2747
- function Hd(d, t, e, n) {
2748
- if (e ? e = Vd({}, n1, e) : e = n1, n = new l(n), d.country && d.country !== "001") {
2749
- if (!n.hasCountry(d.country))
2750
- throw new Error("Unknown country: ".concat(d.country));
2751
- n.selectNumberingPlan(d.country);
2752
- } else if (d.countryCallingCode)
2753
- n.selectNumberingPlan(d.countryCallingCode);
2754
- else return d.phone || "";
2755
- var r = n.countryCallingCode(), a = e.v2 ? d.nationalNumber : d.phone, o;
2756
- switch (t) {
2757
- case "NATIONAL":
2758
- return a ? (o = O(a, d.carrierCode, "NATIONAL", n, e), L(o, d.ext, n, e.formatExtension)) : "";
2759
- case "INTERNATIONAL":
2760
- return a ? (o = O(a, null, "INTERNATIONAL", n, e), o = "+".concat(r, " ").concat(o), L(o, d.ext, n, e.formatExtension)) : "+".concat(r);
2761
- case "E.164":
2762
- return "+".concat(r).concat(a);
2763
- case "RFC3966":
2764
- return Ud({
2765
- number: "+".concat(r).concat(a),
2766
- ext: d.ext
2767
- });
2768
- case "IDD":
2769
- if (!e.fromCountry)
2770
- return;
2771
- var $ = jd(a, d.carrierCode, r, e.fromCountry, n);
2772
- return $ ? L($, d.ext, n, e.formatExtension) : void 0;
2773
- default:
2774
- throw new Error('Unknown "format" argument passed to "formatNumber()": "'.concat(t, '"'));
2775
- }
2776
- }
2777
- function O(d, t, e, n, r) {
2778
- var a = Kd(n.formats(), d);
2779
- return a ? Td(d, a, {
2780
- useInternationalFormat: e === "INTERNATIONAL",
2781
- withNationalPrefix: !(a.nationalPrefixIsOptionalWhenFormattingInNationalFormat() && r && r.nationalPrefix === !1)
2782
- }) : d;
2783
- }
2784
- function Kd(d, t) {
2785
- return Wd(d, function(e) {
2786
- if (e.leadingDigitsPatterns().length > 0) {
2787
- var n = e.leadingDigitsPatterns()[e.leadingDigitsPatterns().length - 1];
2788
- if (t.search(n) !== 0)
2789
- return !1;
2790
- }
2791
- return k(t, e.pattern());
2792
- });
2793
- }
2794
- function L(d, t, e, n) {
2795
- return t ? n(d, t, e) : d;
2796
- }
2797
- function jd(d, t, e, n, r) {
2798
- var a = V(n, r.metadata);
2799
- if (a === e) {
2800
- var o = O(d, t, "NATIONAL", r);
2801
- return e === "1" ? e + " " + o : o;
2802
- }
2803
- var $ = wd(n, void 0, r.metadata);
2804
- if ($)
2805
- return "".concat($, " ").concat(e, " ").concat(O(d, null, "INTERNATIONAL", r));
2806
- }
2807
- function Vd() {
2808
- for (var d = 1, t = arguments.length, e = new Array(t), n = 0; n < t; n++)
2809
- e[n] = arguments[n];
2810
- for (; d < e.length; ) {
2811
- if (e[d])
2812
- for (var r in e[d])
2813
- e[0][r] = e[d][r];
2814
- d++;
2815
- }
2816
- return e[0];
2817
- }
2818
- function Wd(d, t) {
2819
- for (var e = 0; e < d.length; ) {
2820
- if (t(d[e]))
2821
- return d[e];
2822
- e++;
2823
- }
2824
- }
2825
- function b(d) {
2826
- "@babel/helpers - typeof";
2827
- return b = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(t) {
2828
- return typeof t;
2829
- } : function(t) {
2830
- return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
2831
- }, b(d);
2832
- }
2833
- function r1(d, t) {
2834
- var e = Object.keys(d);
2835
- if (Object.getOwnPropertySymbols) {
2836
- var n = Object.getOwnPropertySymbols(d);
2837
- t && (n = n.filter(function(r) {
2838
- return Object.getOwnPropertyDescriptor(d, r).enumerable;
2839
- })), e.push.apply(e, n);
2840
- }
2841
- return e;
2842
- }
2843
- function a1(d) {
2844
- for (var t = 1; t < arguments.length; t++) {
2845
- var e = arguments[t] != null ? arguments[t] : {};
2846
- t % 2 ? r1(Object(e), !0).forEach(function(n) {
2847
- Yd(d, n, e[n]);
2848
- }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(d, Object.getOwnPropertyDescriptors(e)) : r1(Object(e)).forEach(function(n) {
2849
- Object.defineProperty(d, n, Object.getOwnPropertyDescriptor(e, n));
2850
- });
2851
- }
2852
- return d;
2853
- }
2854
- function Yd(d, t, e) {
2855
- return (t = E1(t)) in d ? Object.defineProperty(d, t, { value: e, enumerable: !0, configurable: !0, writable: !0 }) : d[t] = e, d;
2856
- }
2857
- function Jd(d, t) {
2858
- if (!(d instanceof t)) throw new TypeError("Cannot call a class as a function");
2859
- }
2860
- function Zd(d, t) {
2861
- for (var e = 0; e < t.length; e++) {
2862
- var n = t[e];
2863
- n.enumerable = n.enumerable || !1, n.configurable = !0, "value" in n && (n.writable = !0), Object.defineProperty(d, E1(n.key), n);
2864
- }
2865
- }
2866
- function zd(d, t, e) {
2867
- return t && Zd(d.prototype, t), Object.defineProperty(d, "prototype", { writable: !1 }), d;
2868
- }
2869
- function E1(d) {
2870
- var t = Xd(d, "string");
2871
- return b(t) == "symbol" ? t : t + "";
2872
- }
2873
- function Xd(d, t) {
2874
- if (b(d) != "object" || !d) return d;
2875
- var e = d[Symbol.toPrimitive];
2876
- if (e !== void 0) {
2877
- var n = e.call(d, t);
2878
- if (b(n) != "object") return n;
2879
- throw new TypeError("@@toPrimitive must return a primitive value.");
2880
- }
2881
- return String(d);
2882
- }
2883
- var qd = /* @__PURE__ */ function() {
2884
- function d(t, e, n) {
2885
- if (Jd(this, d), !t)
2886
- throw new TypeError("First argument is required");
2887
- if (typeof t != "string")
2888
- throw new TypeError("First argument must be a string");
2889
- if (t[0] === "+" && !e)
2890
- throw new TypeError("`metadata` argument not passed");
2891
- if (C(e) && C(e.countries)) {
2892
- n = e;
2893
- var r = t;
2894
- if (!tt.test(r))
2895
- throw new Error('Invalid `number` argument passed: must consist of a "+" followed by digits');
2896
- var a = P1(r, void 0, void 0, void 0, n), o = a.countryCallingCode, $ = a.number;
2897
- if (e = $, t = o, !e)
2898
- throw new Error("Invalid `number` argument passed: too short");
2899
- }
2900
- if (!e)
2901
- throw new TypeError("`nationalNumber` argument is required");
2902
- if (typeof e != "string")
2903
- throw new TypeError("`nationalNumber` argument must be a string");
2904
- p1(n);
2905
- var s = dt(t, n), i = s.country, c = s.countryCallingCode;
2906
- this.country = i, this.countryCallingCode = c, this.nationalNumber = e, this.number = "+" + this.countryCallingCode + this.nationalNumber, this.getMetadata = function() {
2907
- return n;
2908
- };
2909
- }
2910
- return zd(d, [{
2911
- key: "setExt",
2912
- value: function(e) {
2913
- this.ext = e;
2914
- }
2915
- }, {
2916
- key: "getPossibleCountries",
2917
- value: function() {
2918
- return this.country ? [this.country] : id(this.countryCallingCode, this.nationalNumber, this.getMetadata());
2919
- }
2920
- }, {
2921
- key: "isPossible",
2922
- value: function() {
2923
- return rd(this, {
2924
- v2: !0
2925
- }, this.getMetadata());
2926
- }
2927
- }, {
2928
- key: "isValid",
2929
- value: function() {
2930
- return $d(this, {
2931
- v2: !0
2932
- }, this.getMetadata());
2933
- }
2934
- }, {
2935
- key: "isNonGeographic",
2936
- value: function() {
2937
- var e = new l(this.getMetadata());
2938
- return e.isNonGeographicCallingCode(this.countryCallingCode);
2939
- }
2940
- }, {
2941
- key: "isEqual",
2942
- value: function(e) {
2943
- return this.number === e.number && this.ext === e.ext;
2944
- }
2945
- // This function was originally meant to be an equivalent for `validatePhoneNumberLength()`,
2946
- // but later it was found out that it doesn't include the possible `TOO_SHORT` result
2947
- // returned from `parsePhoneNumberWithError()` in the original `validatePhoneNumberLength()`,
2948
- // so eventually I simply commented out this method from the `PhoneNumber` class
2949
- // and just left the `validatePhoneNumberLength()` function, even though that one would require
2950
- // and additional step to also validate the actual country / calling code of the phone number.
2951
- // validateLength() {
2952
- // const metadata = new Metadata(this.getMetadata())
2953
- // metadata.selectNumberingPlan(this.countryCallingCode)
2954
- // const result = checkNumberLength(this.nationalNumber, metadata)
2955
- // if (result !== 'IS_POSSIBLE') {
2956
- // return result
2957
- // }
2958
- // }
2959
- }, {
2960
- key: "getType",
2961
- value: function() {
2962
- return Y(this, {
2963
- v2: !0
2964
- }, this.getMetadata());
2965
- }
2966
- }, {
2967
- key: "format",
2968
- value: function(e, n) {
2969
- return Hd(this, e, n ? a1(a1({}, n), {}, {
2970
- v2: !0
2971
- }) : {
2972
- v2: !0
2973
- }, this.getMetadata());
2974
- }
2975
- }, {
2976
- key: "formatNational",
2977
- value: function(e) {
2978
- return this.format("NATIONAL", e);
2979
- }
2980
- }, {
2981
- key: "formatInternational",
2982
- value: function(e) {
2983
- return this.format("INTERNATIONAL", e);
2984
- }
2985
- }, {
2986
- key: "getURI",
2987
- value: function(e) {
2988
- return this.format("RFC3966", e);
2989
- }
2990
- }]);
2991
- }(), Qd = function(t) {
2992
- return /^[A-Z]{2}$/.test(t);
2993
- };
2994
- function dt(d, t) {
2995
- var e, n, r = new l(t);
2996
- return Qd(d) ? (e = d, r.selectNumberingPlan(e), n = r.countryCallingCode()) : n = d, {
2997
- country: e,
2998
- countryCallingCode: n
2999
- };
3000
- }
3001
- var tt = /^\+\d+$/;
3002
- function U(d) {
3003
- "@babel/helpers - typeof";
3004
- return U = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(t) {
3005
- return typeof t;
3006
- } : function(t) {
3007
- return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
3008
- }, U(d);
3009
- }
3010
- function et(d, t, e) {
3011
- return Object.defineProperty(d, "prototype", { writable: !1 }), d;
3012
- }
3013
- function nt(d, t) {
3014
- if (!(d instanceof t)) throw new TypeError("Cannot call a class as a function");
3015
- }
3016
- function rt(d, t, e) {
3017
- return t = N(t), at(d, z() ? Reflect.construct(t, e || [], N(d).constructor) : t.apply(d, e));
3018
- }
3019
- function at(d, t) {
3020
- if (t && (U(t) == "object" || typeof t == "function")) return t;
3021
- if (t !== void 0) throw new TypeError("Derived constructors may only return object or undefined");
3022
- return ot(d);
3023
- }
3024
- function ot(d) {
3025
- if (d === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
3026
- return d;
3027
- }
3028
- function st(d, t) {
3029
- if (typeof t != "function" && t !== null) throw new TypeError("Super expression must either be null or a function");
3030
- d.prototype = Object.create(t && t.prototype, { constructor: { value: d, writable: !0, configurable: !0 } }), Object.defineProperty(d, "prototype", { writable: !1 }), t && P(d, t);
3031
- }
3032
- function H(d) {
3033
- var t = typeof Map == "function" ? /* @__PURE__ */ new Map() : void 0;
3034
- return H = function(n) {
3035
- if (n === null || !it(n)) return n;
3036
- if (typeof n != "function") throw new TypeError("Super expression must either be null or a function");
3037
- if (t !== void 0) {
3038
- if (t.has(n)) return t.get(n);
3039
- t.set(n, r);
3040
- }
3041
- function r() {
3042
- return $t(n, arguments, N(this).constructor);
3043
- }
3044
- return r.prototype = Object.create(n.prototype, { constructor: { value: r, enumerable: !1, writable: !0, configurable: !0 } }), P(r, n);
3045
- }, H(d);
3046
- }
3047
- function $t(d, t, e) {
3048
- if (z()) return Reflect.construct.apply(null, arguments);
3049
- var n = [null];
3050
- n.push.apply(n, t);
3051
- var r = new (d.bind.apply(d, n))();
3052
- return e && P(r, e.prototype), r;
3053
- }
3054
- function z() {
3055
- try {
3056
- var d = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {
3057
- }));
3058
- } catch {
3059
- }
3060
- return (z = function() {
3061
- return !!d;
3062
- })();
3063
- }
3064
- function it(d) {
3065
- try {
3066
- return Function.toString.call(d).indexOf("[native code]") !== -1;
3067
- } catch {
3068
- return typeof d == "function";
3069
- }
3070
- }
3071
- function P(d, t) {
3072
- return P = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(e, n) {
3073
- return e.__proto__ = n, e;
3074
- }, P(d, t);
3075
- }
3076
- function N(d) {
3077
- return N = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function(t) {
3078
- return t.__proto__ || Object.getPrototypeOf(t);
3079
- }, N(d);
3080
- }
3081
- var v = /* @__PURE__ */ function(d) {
3082
- function t(e) {
3083
- var n;
3084
- return nt(this, t), n = rt(this, t, [e]), Object.setPrototypeOf(n, t.prototype), n.name = n.constructor.name, n;
3085
- }
3086
- return st(t, d), et(t);
3087
- }(/* @__PURE__ */ H(Error)), o1 = new RegExp("(?:" + N1() + ")$", "i");
3088
- function ct(d) {
3089
- var t = d.search(o1);
3090
- if (t < 0)
3091
- return {};
3092
- for (var e = d.slice(0, t), n = d.match(o1), r = 1; r < n.length; ) {
3093
- if (n[r])
3094
- return {
3095
- number: e,
3096
- ext: n[r]
3097
- };
3098
- r++;
3099
- }
3100
- }
3101
- var _t = {
3102
- 0: "0",
3103
- 1: "1",
3104
- 2: "2",
3105
- 3: "3",
3106
- 4: "4",
3107
- 5: "5",
3108
- 6: "6",
3109
- 7: "7",
3110
- 8: "8",
3111
- 9: "9",
3112
- "0": "0",
3113
- // Fullwidth digit 0
3114
- "1": "1",
3115
- // Fullwidth digit 1
3116
- "2": "2",
3117
- // Fullwidth digit 2
3118
- "3": "3",
3119
- // Fullwidth digit 3
3120
- "4": "4",
3121
- // Fullwidth digit 4
3122
- "5": "5",
3123
- // Fullwidth digit 5
3124
- "6": "6",
3125
- // Fullwidth digit 6
3126
- "7": "7",
3127
- // Fullwidth digit 7
3128
- "8": "8",
3129
- // Fullwidth digit 8
3130
- "9": "9",
3131
- // Fullwidth digit 9
3132
- "٠": "0",
3133
- // Arabic-indic digit 0
3134
- "١": "1",
3135
- // Arabic-indic digit 1
3136
- "٢": "2",
3137
- // Arabic-indic digit 2
3138
- "٣": "3",
3139
- // Arabic-indic digit 3
3140
- "٤": "4",
3141
- // Arabic-indic digit 4
3142
- "٥": "5",
3143
- // Arabic-indic digit 5
3144
- "٦": "6",
3145
- // Arabic-indic digit 6
3146
- "٧": "7",
3147
- // Arabic-indic digit 7
3148
- "٨": "8",
3149
- // Arabic-indic digit 8
3150
- "٩": "9",
3151
- // Arabic-indic digit 9
3152
- "۰": "0",
3153
- // Eastern-Arabic digit 0
3154
- "۱": "1",
3155
- // Eastern-Arabic digit 1
3156
- "۲": "2",
3157
- // Eastern-Arabic digit 2
3158
- "۳": "3",
3159
- // Eastern-Arabic digit 3
3160
- "۴": "4",
3161
- // Eastern-Arabic digit 4
3162
- "۵": "5",
3163
- // Eastern-Arabic digit 5
3164
- "۶": "6",
3165
- // Eastern-Arabic digit 6
3166
- "۷": "7",
3167
- // Eastern-Arabic digit 7
3168
- "۸": "8",
3169
- // Eastern-Arabic digit 8
3170
- "۹": "9"
3171
- // Eastern-Arabic digit 9
3172
- };
3173
- function ut(d) {
3174
- return _t[d];
3175
- }
3176
- function lt(d, t) {
3177
- var e = typeof Symbol < "u" && d[Symbol.iterator] || d["@@iterator"];
3178
- if (e) return (e = e.call(d)).next.bind(e);
3179
- if (Array.isArray(d) || (e = gt(d)) || t) {
3180
- e && (d = e);
3181
- var n = 0;
3182
- return function() {
3183
- return n >= d.length ? { done: !0 } : { done: !1, value: d[n++] };
3184
- };
3185
- }
3186
- throw new TypeError(`Invalid attempt to iterate non-iterable instance.
3187
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
3188
- }
3189
- function gt(d, t) {
3190
- if (d) {
3191
- if (typeof d == "string") return s1(d, t);
3192
- var e = {}.toString.call(d).slice(8, -1);
3193
- return e === "Object" && d.constructor && (e = d.constructor.name), e === "Map" || e === "Set" ? Array.from(d) : e === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e) ? s1(d, t) : void 0;
3194
- }
3195
- }
3196
- function s1(d, t) {
3197
- (t == null || t > d.length) && (t = d.length);
3198
- for (var e = 0, n = Array(t); e < t; e++) n[e] = d[e];
3199
- return n;
3200
- }
3201
- function $1(d) {
3202
- for (var t = "", e = lt(d.split("")), n; !(n = e()).done; ) {
3203
- var r = n.value;
3204
- t += mt(r, t) || "";
3205
- }
3206
- return t;
3207
- }
3208
- function mt(d, t, e) {
3209
- return d === "+" ? t ? void 0 : "+" : ut(d);
3210
- }
3211
- var S1 = "+", ft = "[\\-\\.\\(\\)]?", i1 = "([" + y + "]|" + ft + ")", yt = "^\\" + S1 + i1 + "*[" + y + "]" + i1 + "*$", ht = new RegExp(yt, "g"), K = y, kt = "[" + K + "]+((\\-)*[" + K + "])*", vt = "a-zA-Z", pt = "[" + vt + "]+((\\-)*[" + K + "])*", Ct = "^(" + kt + "\\.)*" + pt + "\\.?$", Ft = new RegExp(Ct, "g"), c1 = "tel:", j = ";phone-context=", bt = ";isub=";
3212
- function Pt(d) {
3213
- var t = d.indexOf(j);
3214
- if (t < 0)
3215
- return null;
3216
- var e = t + j.length;
3217
- if (e >= d.length)
3218
- return "";
3219
- var n = d.indexOf(";", e);
3220
- return n >= 0 ? d.substring(e, n) : d.substring(e);
3221
- }
3222
- function Nt(d) {
3223
- return d === null ? !0 : d.length === 0 ? !1 : ht.test(d) || Ft.test(d);
3224
- }
3225
- function Et(d, t) {
3226
- var e = t.extractFormattedPhoneNumber, n = Pt(d);
3227
- if (!Nt(n))
3228
- throw new v("NOT_A_NUMBER");
3229
- var r;
3230
- if (n === null)
3231
- r = e(d) || "";
3232
- else {
3233
- r = "", n.charAt(0) === S1 && (r += n);
3234
- var a = d.indexOf(c1), o;
3235
- a >= 0 ? o = a + c1.length : o = 0;
3236
- var $ = d.indexOf(j);
3237
- r += d.substring(o, $);
3238
- }
3239
- var s = r.indexOf(bt);
3240
- if (s > 0 && (r = r.substring(0, s)), r !== "")
3241
- return r;
3242
- }
3243
- var St = 250, It = new RegExp("[" + Z + y + "]"), Tt = new RegExp("[^" + y + "#]+$");
3244
- function At(d, t, e) {
3245
- if (t = t || {}, e = new l(e), t.defaultCountry && !e.hasCountry(t.defaultCountry))
3246
- throw t.v2 ? new v("INVALID_COUNTRY") : new Error("Unknown country: ".concat(t.defaultCountry));
3247
- var n = Ot(d, t.v2, t.extract), r = n.number, a = n.ext, o = n.error;
3248
- if (!r) {
3249
- if (t.v2)
3250
- throw o === "TOO_SHORT" ? new v("TOO_SHORT") : new v("NOT_A_NUMBER");
3251
- return {};
3252
- }
3253
- var $ = Rt(r, t.defaultCountry, t.defaultCallingCode, e), s = $.country, i = $.nationalNumber, c = $.countryCallingCode, u = $.countryCallingCodeSource, m = $.carrierCode;
3254
- if (!e.hasSelectedNumberingPlan()) {
3255
- if (t.v2)
3256
- throw new v("INVALID_COUNTRY");
3257
- return {};
3258
- }
3259
- if (!i || i.length < J) {
3260
- if (t.v2)
3261
- throw new v("TOO_SHORT");
3262
- return {};
3263
- }
3264
- if (i.length > _d) {
3265
- if (t.v2)
3266
- throw new v("TOO_LONG");
3267
- return {};
3268
- }
3269
- if (t.v2) {
3270
- var g = new qd(c, i, e.metadata);
3271
- return s && (g.country = s), m && (g.carrierCode = m), a && (g.ext = a), g.__countryCallingCodeSource = u, g;
3272
- }
3273
- var h = (t.extended ? e.hasSelectedNumberingPlan() : s) ? k(i, e.nationalNumberPattern()) : !1;
3274
- return t.extended ? {
3275
- country: s,
3276
- countryCallingCode: c,
3277
- carrierCode: m,
3278
- valid: h,
3279
- possible: h ? !0 : !!(t.extended === !0 && e.possibleLengths() && F1(i, s, e)),
3280
- phone: i,
3281
- ext: a
3282
- } : h ? Mt(s, i, a) : {};
3283
- }
3284
- function wt(d, t, e) {
3285
- if (d) {
3286
- if (d.length > St) {
3287
- if (e)
3288
- throw new v("TOO_LONG");
3289
- return;
3290
- }
3291
- if (t === !1)
3292
- return d;
3293
- var n = d.search(It);
3294
- if (!(n < 0))
3295
- return d.slice(n).replace(Tt, "");
3296
- }
3297
- }
3298
- function Ot(d, t, e) {
3299
- var n = Et(d, {
3300
- extractFormattedPhoneNumber: function(o) {
3301
- return wt(o, e, t);
3302
- }
3303
- });
3304
- if (!n)
3305
- return {};
3306
- if (!Gd(n))
3307
- return Bd(n) ? {
3308
- error: "TOO_SHORT"
3309
- } : {};
3310
- var r = ct(n);
3311
- return r.ext ? r : {
3312
- number: n
3313
- };
3314
- }
3315
- function Mt(d, t, e) {
3316
- var n = {
3317
- country: d,
3318
- phone: t
3319
- };
3320
- return e && (n.ext = e), n;
3321
- }
3322
- function Rt(d, t, e, n) {
3323
- var r = P1($1(d), void 0, t, e, n.metadata), a = r.countryCallingCodeSource, o = r.countryCallingCode, $ = r.number, s;
3324
- if (o)
3325
- n.selectNumberingPlan(o);
3326
- else if ($ && (t || e))
3327
- n.selectNumberingPlan(t, e), t && (s = t), o = e || V(t, n.metadata);
3328
- else return {};
3329
- if (!$)
3330
- return {
3331
- countryCallingCodeSource: a,
3332
- countryCallingCode: o
3333
- };
3334
- var i = B($1($), s, n), c = i.nationalNumber, u = i.carrierCode, m = b1(o, {
3335
- nationalNumber: c,
3336
- metadata: n
3337
- });
3338
- return m && (s = m, m === "001" || n.selectNumberingPlan(s)), {
3339
- country: s,
3340
- countryCallingCode: o,
3341
- countryCallingCodeSource: a,
3342
- nationalNumber: c,
3343
- carrierCode: u
3344
- };
3345
- }
3346
- function E(d) {
3347
- "@babel/helpers - typeof";
3348
- return E = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(t) {
3349
- return typeof t;
3350
- } : function(t) {
3351
- return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
3352
- }, E(d);
3353
- }
3354
- function _1(d, t) {
3355
- var e = Object.keys(d);
3356
- if (Object.getOwnPropertySymbols) {
3357
- var n = Object.getOwnPropertySymbols(d);
3358
- t && (n = n.filter(function(r) {
3359
- return Object.getOwnPropertyDescriptor(d, r).enumerable;
3360
- })), e.push.apply(e, n);
3361
- }
3362
- return e;
3363
- }
3364
- function u1(d) {
3365
- for (var t = 1; t < arguments.length; t++) {
3366
- var e = arguments[t] != null ? arguments[t] : {};
3367
- t % 2 ? _1(Object(e), !0).forEach(function(n) {
3368
- xt(d, n, e[n]);
3369
- }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(d, Object.getOwnPropertyDescriptors(e)) : _1(Object(e)).forEach(function(n) {
3370
- Object.defineProperty(d, n, Object.getOwnPropertyDescriptor(e, n));
3371
- });
3372
- }
3373
- return d;
3374
- }
3375
- function xt(d, t, e) {
3376
- return (t = Dt(t)) in d ? Object.defineProperty(d, t, { value: e, enumerable: !0, configurable: !0, writable: !0 }) : d[t] = e, d;
3377
- }
3378
- function Dt(d) {
3379
- var t = Lt(d, "string");
3380
- return E(t) == "symbol" ? t : t + "";
3381
- }
3382
- function Lt(d, t) {
3383
- if (E(d) != "object" || !d) return d;
3384
- var e = d[Symbol.toPrimitive];
3385
- if (e !== void 0) {
3386
- var n = e.call(d, t);
3387
- if (E(n) != "object") return n;
3388
- throw new TypeError("@@toPrimitive must return a primitive value.");
3389
- }
3390
- return (t === "string" ? String : Number)(d);
3391
- }
3392
- function Gt(d, t, e) {
3393
- return At(d, u1(u1({}, t), {}, {
3394
- v2: !0
3395
- }), e);
3396
- }
3397
- function S(d) {
3398
- "@babel/helpers - typeof";
3399
- return S = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(t) {
3400
- return typeof t;
3401
- } : function(t) {
3402
- return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
3403
- }, S(d);
3404
- }
3405
- function l1(d, t) {
3406
- var e = Object.keys(d);
3407
- if (Object.getOwnPropertySymbols) {
3408
- var n = Object.getOwnPropertySymbols(d);
3409
- t && (n = n.filter(function(r) {
3410
- return Object.getOwnPropertyDescriptor(d, r).enumerable;
3411
- })), e.push.apply(e, n);
3412
- }
3413
- return e;
3414
- }
3415
- function Bt(d) {
3416
- for (var t = 1; t < arguments.length; t++) {
3417
- var e = arguments[t] != null ? arguments[t] : {};
3418
- t % 2 ? l1(Object(e), !0).forEach(function(n) {
3419
- Ut(d, n, e[n]);
3420
- }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(d, Object.getOwnPropertyDescriptors(e)) : l1(Object(e)).forEach(function(n) {
3421
- Object.defineProperty(d, n, Object.getOwnPropertyDescriptor(e, n));
3422
- });
3423
- }
3424
- return d;
3425
- }
3426
- function Ut(d, t, e) {
3427
- return (t = Ht(t)) in d ? Object.defineProperty(d, t, { value: e, enumerable: !0, configurable: !0, writable: !0 }) : d[t] = e, d;
3428
- }
3429
- function Ht(d) {
3430
- var t = Kt(d, "string");
3431
- return S(t) == "symbol" ? t : t + "";
3432
- }
3433
- function Kt(d, t) {
3434
- if (S(d) != "object" || !d) return d;
3435
- var e = d[Symbol.toPrimitive];
3436
- if (e !== void 0) {
3437
- var n = e.call(d, t);
3438
- if (S(n) != "object") return n;
3439
- throw new TypeError("@@toPrimitive must return a primitive value.");
3440
- }
3441
- return (t === "string" ? String : Number)(d);
3442
- }
3443
- function jt(d, t) {
3444
- return Jt(d) || Yt(d, t) || Wt(d, t) || Vt();
3445
- }
3446
- function Vt() {
3447
- throw new TypeError(`Invalid attempt to destructure non-iterable instance.
3448
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
3449
- }
3450
- function Wt(d, t) {
3451
- if (d) {
3452
- if (typeof d == "string") return g1(d, t);
3453
- var e = {}.toString.call(d).slice(8, -1);
3454
- return e === "Object" && d.constructor && (e = d.constructor.name), e === "Map" || e === "Set" ? Array.from(d) : e === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e) ? g1(d, t) : void 0;
3455
- }
3456
- }
3457
- function g1(d, t) {
3458
- (t == null || t > d.length) && (t = d.length);
3459
- for (var e = 0, n = Array(t); e < t; e++) n[e] = d[e];
3460
- return n;
3461
- }
3462
- function Yt(d, t) {
3463
- var e = d == null ? null : typeof Symbol < "u" && d[Symbol.iterator] || d["@@iterator"];
3464
- if (e != null) {
3465
- var n, r, a, o, $ = [], s = !0, i = !1;
3466
- try {
3467
- if (a = (e = e.call(d)).next, t !== 0) for (; !(s = (n = a.call(e)).done) && ($.push(n.value), $.length !== t); s = !0) ;
3468
- } catch (c) {
3469
- i = !0, r = c;
3470
- } finally {
3471
- try {
3472
- if (!s && e.return != null && (o = e.return(), Object(o) !== o)) return;
3473
- } finally {
3474
- if (i) throw r;
3475
- }
3476
- }
3477
- return $;
3478
- }
3479
- }
3480
- function Jt(d) {
3481
- if (Array.isArray(d)) return d;
3482
- }
3483
- function Zt(d) {
3484
- var t = Array.prototype.slice.call(d), e = jt(t, 4), n = e[0], r = e[1], a = e[2], o = e[3], $, s, i;
3485
- if (typeof n == "string")
3486
- $ = n;
3487
- else throw new TypeError("A text for parsing must be a string.");
3488
- if (!r || typeof r == "string")
3489
- o ? (s = a, i = o) : (s = void 0, i = a), r && (s = Bt({
3490
- defaultCountry: r
3491
- }, s));
3492
- else if (C(r))
3493
- a ? (s = r, i = a) : i = r;
3494
- else throw new Error("Invalid second argument: ".concat(r));
3495
- return {
3496
- text: $,
3497
- options: s,
3498
- metadata: i
3499
- };
3500
- }
3501
- function zt() {
3502
- var d = Zt(arguments), t = d.text, e = d.options, n = d.metadata;
3503
- return Gt(t, e, n);
3504
- }
3505
- function I1() {
3506
- return V1(zt, arguments);
3507
- }
3508
- function Xt(d) {
3509
- try {
3510
- const t = I1(d), e = t == null ? void 0 : t.country;
3511
- if (!e) throw new Error("Invalid phone number");
3512
- const n = L1.find((a) => a.iso === e);
3513
- if (!n) throw new Error("Phone number country not supported");
3514
- if (typeof n.mask == "string") return [n.mask, n];
3515
- const r = n.mask.find((a) => {
3516
- const o = a.replace(/[^_]/g, ""), $ = M(t.nationalNumber), s = o.length, i = $.length;
3517
- return s === i;
3518
- });
3519
- if (!r)
3520
- throw new Error("No mask found for the given phone number length");
3521
- return [r, n];
3522
- } catch (t) {
3523
- const e = t;
3524
- throw new Error(e.message);
3525
- }
3526
- }
3527
- function _e(d) {
3528
- try {
3529
- const e = I1(d).nationalNumber.toString();
3530
- let n = Xt(d)[0];
3531
- for (let r = 0, a = 0; r < n.length && a < e.length; r++)
3532
- n[r] === "_" && (n = n.substring(0, r) + e[a] + n.substring(r + 1), a++);
3533
- return n;
3534
- } catch (t) {
3535
- const e = t;
3536
- throw new Error(e.message);
3537
- }
3538
- }
3539
- function ue(d) {
3540
- for (var t = 0, e = 0; e < d.length; e++)
3541
- t = d.charCodeAt(e) + ((t << 5) - t);
3542
- var n = (t & 16711680) >> 16, r = (t & 65280) >> 8, a = t & 255, o = n.toString(16).padStart(2, "0"), $ = r.toString(16).padStart(2, "0"), s = a.toString(16).padStart(2, "0");
3543
- return "#" + o + $ + s;
3544
- }
3545
- var _ = [];
3546
- for (var G = 0; G < 256; ++G)
3547
- _.push((G + 256).toString(16).slice(1));
3548
- function T1(d, t = 0) {
3549
- return (_[d[t + 0]] + _[d[t + 1]] + _[d[t + 2]] + _[d[t + 3]] + "-" + _[d[t + 4]] + _[d[t + 5]] + "-" + _[d[t + 6]] + _[d[t + 7]] + "-" + _[d[t + 8]] + _[d[t + 9]] + "-" + _[d[t + 10]] + _[d[t + 11]] + _[d[t + 12]] + _[d[t + 13]] + _[d[t + 14]] + _[d[t + 15]]).toLowerCase();
3550
- }
3551
- var T, qt = new Uint8Array(16);
3552
- function A1() {
3553
- if (!T && (T = typeof crypto < "u" && crypto.getRandomValues && crypto.getRandomValues.bind(crypto), !T))
3554
- throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");
3555
- return T(qt);
3556
- }
3557
- var Qt = typeof crypto < "u" && crypto.randomUUID && crypto.randomUUID.bind(crypto);
3558
- const m1 = {
3559
- randomUUID: Qt
3560
- };
3561
- function de(d, t, e) {
3562
- if (m1.randomUUID && !d)
3563
- return m1.randomUUID();
3564
- d = d || {};
3565
- var n = d.random || (d.rng || A1)();
3566
- return n[6] = n[6] & 15 | 64, n[8] = n[8] & 63 | 128, T1(n);
3567
- }
3568
- var f1 = null, y1 = null, f = 0;
3569
- function te(d, t, e) {
3570
- d = d || {};
3571
- var n = 0, r = new Uint8Array(16), a = d.random || (d.rng || A1)(), o = d.msecs !== void 0 ? d.msecs : Date.now(), $ = d.seq !== void 0 ? d.seq : null, s = y1, i = f1;
3572
- return o > f && d.msecs === void 0 && (f = o, $ !== null && (s = null, i = null)), $ !== null && ($ > 2147483647 && ($ = 2147483647), s = $ >>> 19 & 4095, i = $ & 524287), (s === null || i === null) && (s = a[6] & 127, s = s << 8 | a[7], i = a[8] & 63, i = i << 8 | a[9], i = i << 5 | a[10] >>> 3), o + 1e4 > f && $ === null ? ++i > 524287 && (i = 0, ++s > 4095 && (s = 0, f++)) : f = o, y1 = s, f1 = i, r[n++] = f / 1099511627776 & 255, r[n++] = f / 4294967296 & 255, r[n++] = f / 16777216 & 255, r[n++] = f / 65536 & 255, r[n++] = f / 256 & 255, r[n++] = f & 255, r[n++] = s >>> 4 & 15 | 112, r[n++] = s & 255, r[n++] = i >>> 13 & 63 | 128, r[n++] = i >>> 5 & 255, r[n++] = i << 3 & 255 | a[10] & 7, r[n++] = a[11], r[n++] = a[12], r[n++] = a[13], r[n++] = a[14], r[n++] = a[15], t || T1(r);
3573
- }
3574
- function w1(d) {
3575
- d = d.replace(/-/g, "");
3576
- const t = new Uint8Array(d.length / 2);
3577
- for (let e = 0; e < d.length; e += 2)
3578
- t[e / 2] = parseInt(d.substring(e, e + 2), 16);
3579
- return t;
3580
- }
3581
- function h1() {
3582
- const d = de();
3583
- return { text: d, binary: w1(d) };
3584
- }
3585
- function k1() {
3586
- const d = te();
3587
- return { text: d, binary: w1(d) };
3588
- }
3589
- function le(d, t) {
3590
- if (d === "text" && t === "v4") return h1().text;
3591
- if (d === "binary" && t === "v4") return h1().binary;
3592
- if (d === "text" && t === "v7") return k1().text;
3593
- if (d === "binary" && t === "v7") return k1().binary;
3594
- throw new Error("Invalid type or format");
3595
- }
3596
- function ge(d) {
3597
- let t = d.normalize("NFD").replace(/[\u0300-\u036f]/g, "");
3598
- return t = t.replace(/[^\w\s-]/g, "").replace(/\s+/g, "-").toLowerCase(), t = t.replace(/-{2,}/g, "-"), t = t.replace(/^-+|-+$/g, ""), t;
3599
- }
3600
- function me(d, t = 1e3) {
3601
- function e(r) {
3602
- return typeof r == "string" && r.length > t ? `To large information: field as ${r.length} characters` : r;
3603
- }
3604
- function n(r) {
3605
- return Array.isArray(r) ? r.map((a) => n(a)) : r !== null && typeof r == "object" ? Object.fromEntries(
3606
- Object.entries(r).map(([a, o]) => [
3607
- a,
3608
- n(o)
3609
- ])
3610
- ) : e(r);
3611
- }
3612
- try {
3613
- const r = JSON.parse(d), a = n(r);
3614
- return JSON.stringify(a);
3615
- } catch {
3616
- throw new Error("Invalid JSON string");
3617
- }
3618
- }
3619
- function fe(d, t = ["password", "confirmPassword", "creditCard"]) {
3620
- function e(r, a) {
3621
- return t.includes(r) ? "****" : a;
3622
- }
3623
- function n(r) {
3624
- return Array.isArray(r) ? r.map((a) => n(a)) : r !== null && typeof r == "object" ? Object.keys(r).reduce((a, o) => {
3625
- let $ = r[o];
3626
- if (typeof $ == "string")
3627
- try {
3628
- const s = JSON.parse($);
3629
- typeof s == "object" && ($ = JSON.stringify(n(s)));
3630
- } catch {
3631
- }
3632
- return a[o] = n(e(o, $)), a;
3633
- }, {}) : r;
3634
- }
3635
- try {
3636
- const r = JSON.parse(d), a = n(r);
3637
- return JSON.stringify(a);
3638
- } catch {
3639
- return d;
3640
- }
3641
- }
3642
- function ye([d, t = "00:00:00"], e, n = 0) {
3643
- const r = new v1();
3644
- r.validateInputFormat(e);
3645
- const a = d.split(/[-/]/).map(Number), o = t.split(".")[0].split(":").map(Number);
3646
- let $, s, i;
3647
- const [c = 0, u = 0, m = 0] = o;
3648
- switch (e) {
3649
- case "brazilianDate":
3650
- [$, s, i] = a, r.validateDateParts(i, s, $);
3651
- break;
3652
- case "isoDate":
3653
- [s, $, i] = a, r.validateDateParts(i, s, $);
3654
- break;
3655
- case "timestamp":
3656
- [i, s, $] = a, r.validateDateParts(i, s, $);
3657
- break;
3658
- }
3659
- const g = new Date(
3660
- Date.UTC(i, s - 1, $, c, u, m)
3661
- );
3662
- if (isNaN(g.getTime())) throw new Error("Invalid date");
3663
- return g.setUTCHours(g.getUTCHours() + n), g;
3664
- }
3665
- function he(d) {
3666
- const { cashPrice: t, numberInstallments: e, fees: n = 0.0349 } = d;
3667
- if (n === 0 || e === 1)
3668
- return {
3669
- totalPrice: t,
3670
- installmentPrice: t / e
3671
- };
3672
- if (e <= 0)
3673
- throw new Error("Number of installments must be greater than 0");
3674
- if (n < 0)
3675
- throw new Error("Fees must be greater than or equal to 0");
3676
- let r = Math.pow(1 + n, e) * n, a = Math.pow(1 + n, e) - 1;
3677
- const o = +(t * (r / a)).toFixed(2);
3678
- return {
3679
- totalPrice: +(+(o * e).toFixed(2)).toFixed(2),
3680
- installmentPrice: +o.toFixed(2)
3681
- };
3682
- }
3683
- function ke(d) {
3684
- const t = d.startsWith("'") && d.endsWith("'"), e = d.startsWith('"') && d.endsWith('"');
3685
- return t || e ? d : `"${d}"`;
3686
- }
3687
- function ve(d) {
3688
- return /<\/?[a-z][\s\S]*>/i.test(d);
3689
- }
3690
- function pe(d) {
3691
- return d.replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, "").replace(/<style\b[^<]*(?:(?!<\/style>)<[^<]*)*<\/style>/gi, "").replace(/<!--[\s\S]*?-->/g, "").replace(/<\/?[a-z][a-z0-9]*[^>]*>/gi, "");
3692
- }
3693
- export {
3694
- v1 as ValidateDateService,
3695
- he as calculateCardInstallment,
3696
- ke as ensureQuotes,
3697
- Xt as findCountryMask,
3698
- ee as formatDate,
3699
- A as formatJsonObject,
3700
- ne as formatJsonString,
3701
- re as formatToCapitalizeFirstWordLetter,
3702
- ae as formatToCep,
3703
- oe as formatToCnpj,
3704
- se as formatToCpf,
3705
- $e as formatToCurrency,
3706
- ie as formatToEllipsis,
3707
- ce as formatToHiddenDigits,
3708
- _e as formatToPhone,
3709
- ue as generateColorByString,
3710
- le as generateId,
3711
- ge as generateSlug,
3712
- ve as isHtml,
3713
- me as parseLargeFields,
3714
- fe as parseSensitiveData,
3715
- ye as parseToDate,
3716
- G1 as removeCurrencySymbols,
3717
- M as removeNonNumeric,
3718
- pe as stripHtmlTags
3719
- };