intl-tel-input 29.1.2 → 29.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,8 +13,8 @@ var rawCountryData = [
13
13
  // Åland Islands (AKA Aland Islands)
14
14
  "358",
15
15
  1,
16
- ["18", "4"],
17
- // (4 is a mobile range shared with FI)
16
+ ["18", "4", "50"],
17
+ // (4 and 50 are mobile ranges shared with FI)
18
18
  // NOTE: https://en.wikipedia.org/wiki/Telephone%20numbers%20in%20%C3%85land says some 4XXX ranges (e.g. 4570) are specific to AX, but LPN doesn't respect this (https://libphonenumber.appspot.com/phonenumberparser?number=%2B3584570123456 says region=FI) so we won't either. Also it's too much of a maintenance burden to keep track of. Keep the 4 area code range here so that if the user selects AX and types this kind of number, we wont change the flag to FI. Whereas if they type a FI-only range then we will.
19
19
  "0"
20
20
  ],
@@ -561,8 +561,8 @@ var rawCountryData = [
561
561
  // Finland
562
562
  "358",
563
563
  0,
564
- ["4"],
565
- // (mobile range shared with AX)
564
+ ["4", "50"],
565
+ // (mobile ranges shared with AX)
566
566
  "0"
567
567
  ],
568
568
  [
@@ -669,7 +669,8 @@ var rawCountryData = [
669
669
  // Guernsey
670
670
  "44",
671
671
  1,
672
- ["1481", "7781", "7839", "7911"],
672
+ //* Only 79111 and 79117 belong to GG - the rest of 7911 is GB (e.g. 79110).
673
+ ["1481", "7781", "7839", "79111", "79117"],
673
674
  "0"
674
675
  ],
675
676
  [
@@ -800,7 +801,8 @@ var rawCountryData = [
800
801
  // Jersey
801
802
  "44",
802
803
  3,
803
- ["1534", "7509", "7700", "7797", "7829", "7937"],
804
+ //* Only 77003/77007/77008 belong to JE - the rest of 7700 is GB (e.g. 77001).
805
+ ["1534", "7509", "77003", "77007", "77008", "7797", "7829", "7937"],
804
806
  "0"
805
807
  ],
806
808
  [
@@ -995,7 +997,7 @@ var rawCountryData = [
995
997
  // Mayotte
996
998
  "262",
997
999
  1,
998
- ["269", "639"],
1000
+ ["2689", "269", "639", "7093"],
999
1001
  "0"
1000
1002
  ],
1001
1003
  [
@@ -1759,6 +1761,29 @@ var EVENTS = {
1759
1761
  // used for synthetic input trigger
1760
1762
  STRICT_REJECT: "strict:reject"
1761
1763
  };
1764
+ var ITI_SLOTS = [
1765
+ "container",
1766
+ "input",
1767
+ "countryContainer",
1768
+ "selectedCountry",
1769
+ "selectedCountryPrimary",
1770
+ "selectedFlag",
1771
+ "arrow",
1772
+ "selectedDialCode",
1773
+ "countrySelector",
1774
+ "countrySelectorContainer",
1775
+ "searchWrapper",
1776
+ "searchIcon",
1777
+ "searchInput",
1778
+ "searchClear",
1779
+ "countryList",
1780
+ "countryListItem",
1781
+ "countryListItemFlag",
1782
+ "countryName",
1783
+ "dialCode",
1784
+ "countryCheck",
1785
+ "noResults"
1786
+ ];
1762
1787
  var CLASSES = {
1763
1788
  HIDE: "iti__hide",
1764
1789
  V_HIDE: "iti__v-hide",
@@ -1935,6 +1960,8 @@ var defaults = {
1935
1960
  allowNumberExtensions: false,
1936
1961
  // Allow alphanumeric "phonewords" (e.g. +1 800 FLOWERS) as valid numbers
1937
1962
  allowPhonewords: false,
1963
+ //* Add custom classes to the elements we generate, keyed by slot name e.g. { selectedCountry: "rounded-l-lg" }.
1964
+ classNames: {},
1938
1965
  //* Add a custom class to the (injected) container element.
1939
1966
  containerClass: "",
1940
1967
  //* Locale for localising country names via Intl.DisplayNames.
@@ -1997,6 +2024,7 @@ var isElLike = (val) => {
1997
2024
  return v.nodeType === 1 && typeof v.tagName === "string" && typeof v.appendChild === "function";
1998
2025
  };
1999
2026
  var placeholderPolicySet = new Set(Object.values(PLACEHOLDER_POLICY));
2027
+ var slotSet = new Set(ITI_SLOTS);
2000
2028
  var warn = (message) => {
2001
2029
  console.warn(`[intl-tel-input] ${message}`);
2002
2030
  };
@@ -2097,6 +2125,26 @@ var validateOptions = (customOptions) => {
2097
2125
  }
2098
2126
  validatedOptions[key] = value;
2099
2127
  break;
2128
+ case "classNames": {
2129
+ if (!isPlainObject(value)) {
2130
+ warnOption("classNames", "an object", value);
2131
+ break;
2132
+ }
2133
+ const validSlots = {};
2134
+ for (const [slot, slotValue] of Object.entries(value)) {
2135
+ if (!slotSet.has(slot)) {
2136
+ warn(
2137
+ `Unknown slot '${slot}' in 'classNames'. Valid slots: ${ITI_SLOTS.join(", ")}. Skipping.`
2138
+ );
2139
+ } else if (typeof slotValue !== "string") {
2140
+ warnOption(`classNames.${slot}`, "a string", slotValue);
2141
+ } else {
2142
+ validSlots[slot] = slotValue.trim().replace(/\s+/g, " ");
2143
+ }
2144
+ }
2145
+ validatedOptions[key] = validSlots;
2146
+ break;
2147
+ }
2100
2148
  case "countryOrder": {
2101
2149
  if (value === null) {
2102
2150
  validatedOptions[key] = value;
@@ -2509,11 +2557,18 @@ var UI = class {
2509
2557
  );
2510
2558
  }
2511
2559
  }
2560
+ //* Append any consumer-supplied classes (via the classNames option) for the given slot to our own classes for that element.
2561
+ #withSlotClass(slot, ourClasses) {
2562
+ const custom = this.#options.classNames[slot];
2563
+ return custom ? `${ourClasses} ${custom}` : ourClasses;
2564
+ }
2512
2565
  //* Generate all of the markup for the core library: the selected country overlay, and the country selector.
2513
2566
  buildMarkup(countries, searchTokens) {
2514
2567
  this.#countries = countries;
2515
2568
  this.#searchTokens = searchTokens;
2516
- this.telInputEl.classList.add("iti__tel-input");
2569
+ this.telInputEl.classList.add(
2570
+ ...this.#withSlotClass("input", "iti__tel-input").split(" ")
2571
+ );
2517
2572
  if (!this.telInputEl.hasAttribute("type")) {
2518
2573
  this.telInputEl.setAttribute("type", "tel");
2519
2574
  }
@@ -2541,7 +2596,9 @@ var UI = class {
2541
2596
  "iti--inline-country-selector": countrySelectorMode !== COUNTRY_SELECTOR_MODE.FULLSCREEN,
2542
2597
  [containerClass]: Boolean(containerClass)
2543
2598
  });
2544
- const wrapper = createEl("div", { class: parentClasses });
2599
+ const wrapper = createEl("div", {
2600
+ class: this.#withSlotClass("container", parentClasses)
2601
+ });
2545
2602
  if (this.#isRTL) {
2546
2603
  wrapper.setAttribute("dir", "ltr");
2547
2604
  }
@@ -2557,7 +2614,12 @@ var UI = class {
2557
2614
  this.#countryContainerEl = createEl(
2558
2615
  "div",
2559
2616
  // visibly hidden until we measure its width to set the input padding correctly
2560
- { class: `iti__country-container ${CLASSES.V_HIDE}` },
2617
+ {
2618
+ class: this.#withSlotClass(
2619
+ "countryContainer",
2620
+ `iti__country-container ${CLASSES.V_HIDE}`
2621
+ )
2622
+ },
2561
2623
  wrapper
2562
2624
  );
2563
2625
  if (enableCountrySelector) {
@@ -2565,7 +2627,7 @@ var UI = class {
2565
2627
  "button",
2566
2628
  {
2567
2629
  type: "button",
2568
- class: "iti__selected-country",
2630
+ class: this.#withSlotClass("selectedCountry", "iti__selected-country"),
2569
2631
  [ARIA.EXPANDED]: "false",
2570
2632
  [ARIA.LABEL]: this.#options.uiTranslations.noCountrySelected,
2571
2633
  [ARIA.HASPOPUP]: "dialog",
@@ -2579,31 +2641,44 @@ var UI = class {
2579
2641
  } else {
2580
2642
  this.#selectedCountryEl = createEl(
2581
2643
  "div",
2582
- { class: "iti__selected-country" },
2644
+ { class: this.#withSlotClass("selectedCountry", "iti__selected-country") },
2583
2645
  this.#countryContainerEl
2584
2646
  );
2585
2647
  }
2586
2648
  const selectedCountryPrimary = createEl(
2587
2649
  "div",
2588
- { class: "iti__selected-country-primary" },
2650
+ {
2651
+ class: this.#withSlotClass(
2652
+ "selectedCountryPrimary",
2653
+ "iti__selected-country-primary"
2654
+ )
2655
+ },
2589
2656
  this.#selectedCountryEl
2590
2657
  );
2591
2658
  this.#selectedFlagEl = createEl(
2592
2659
  "div",
2593
- { class: CLASSES.FLAG },
2660
+ { class: this.#withSlotClass("selectedFlag", CLASSES.FLAG) },
2594
2661
  selectedCountryPrimary
2595
2662
  );
2596
2663
  if (enableCountrySelector) {
2597
2664
  this.#arrowEl = createEl(
2598
2665
  "div",
2599
- { class: "iti__arrow", [ARIA.HIDDEN]: "true" },
2666
+ {
2667
+ class: this.#withSlotClass("arrow", "iti__arrow"),
2668
+ [ARIA.HIDDEN]: "true"
2669
+ },
2600
2670
  selectedCountryPrimary
2601
2671
  );
2602
2672
  }
2603
2673
  if (separateDialCode) {
2604
2674
  this.#selectedDialCodeEl = createEl(
2605
2675
  "div",
2606
- { class: "iti__selected-dial-code" },
2676
+ {
2677
+ class: this.#withSlotClass(
2678
+ "selectedDialCode",
2679
+ "iti__selected-dial-code"
2680
+ )
2681
+ },
2607
2682
  this.#selectedCountryEl
2608
2683
  );
2609
2684
  }
@@ -2634,7 +2709,10 @@ var UI = class {
2634
2709
  const extraClasses = matchDropdownWidth ? "" : "iti--flexible-dropdown-width";
2635
2710
  this.#countrySelectorEl = createEl("div", {
2636
2711
  id: `iti-${this.#id}__country-selector`,
2637
- class: `iti__country-selector ${CLASSES.HIDE} ${extraClasses}`,
2712
+ class: this.#withSlotClass(
2713
+ "countrySelector",
2714
+ `iti__country-selector ${CLASSES.HIDE} ${extraClasses}`
2715
+ ),
2638
2716
  role: "dialog",
2639
2717
  [ARIA.MODAL]: "true"
2640
2718
  });
@@ -2647,7 +2725,7 @@ var UI = class {
2647
2725
  this.#countryListEl = createEl(
2648
2726
  "ul",
2649
2727
  {
2650
- class: "iti__country-list",
2728
+ class: this.#withSlotClass("countryList", "iti__country-list"),
2651
2729
  id: `iti-${this.#id}__country-listbox`,
2652
2730
  role: "listbox",
2653
2731
  [ARIA.LABEL]: uiTranslations.countryListAriaLabel
@@ -2666,7 +2744,9 @@ var UI = class {
2666
2744
  "iti--inline-country-selector": !isFullscreen,
2667
2745
  [containerClass]: Boolean(containerClass)
2668
2746
  });
2669
- this.#detachedCountrySelectorEl = createEl("div", { class: wrapperClasses });
2747
+ this.#detachedCountrySelectorEl = createEl("div", {
2748
+ class: this.#withSlotClass("countrySelectorContainer", wrapperClasses)
2749
+ });
2670
2750
  this.#detachedCountrySelectorEl.appendChild(this.#countrySelectorEl);
2671
2751
  } else {
2672
2752
  this.#countryContainerEl.appendChild(this.#countrySelectorEl);
@@ -2687,13 +2767,13 @@ var UI = class {
2687
2767
  const { uiTranslations, searchInputClass } = this.#options;
2688
2768
  const searchWrapper = createEl(
2689
2769
  "div",
2690
- { class: "iti__search-input-wrapper" },
2770
+ { class: this.#withSlotClass("searchWrapper", "iti__search-input-wrapper") },
2691
2771
  this.#countrySelectorEl
2692
2772
  );
2693
2773
  this.#searchIconEl = createEl(
2694
2774
  "span",
2695
2775
  {
2696
- class: "iti__search-icon",
2776
+ class: this.#withSlotClass("searchIcon", "iti__search-icon"),
2697
2777
  [ARIA.HIDDEN]: "true"
2698
2778
  },
2699
2779
  searchWrapper
@@ -2705,7 +2785,10 @@ var UI = class {
2705
2785
  id: `iti-${this.#id}__search-input`,
2706
2786
  // Chrome says inputs need either a name or an id
2707
2787
  type: "search",
2708
- class: `iti__search-input ${searchInputClass}`,
2788
+ class: this.#withSlotClass(
2789
+ "searchInput",
2790
+ `iti__search-input ${searchInputClass}`
2791
+ ),
2709
2792
  placeholder: uiTranslations.searchPlaceholder,
2710
2793
  // role=combobox + aria-autocomplete=list + aria-activedescendant allows maintaining focus on the search input while allowing users to navigate search results with up/down keyboard keys
2711
2794
  role: "combobox",
@@ -2721,7 +2804,10 @@ var UI = class {
2721
2804
  "button",
2722
2805
  {
2723
2806
  type: "button",
2724
- class: `iti__search-clear ${CLASSES.HIDE}`,
2807
+ class: this.#withSlotClass(
2808
+ "searchClear",
2809
+ `iti__search-clear ${CLASSES.HIDE}`
2810
+ ),
2725
2811
  [ARIA.LABEL]: uiTranslations.clearSearchAriaLabel,
2726
2812
  tabindex: "-1"
2727
2813
  },
@@ -2736,7 +2822,7 @@ var UI = class {
2736
2822
  this.#noResultsMessageEl = createEl(
2737
2823
  "div",
2738
2824
  {
2739
- class: `iti__no-results ${CLASSES.HIDE}`,
2825
+ class: this.#withSlotClass("noResults", `iti__no-results ${CLASSES.HIDE}`),
2740
2826
  [ARIA.HIDDEN]: "true"
2741
2827
  // all a11y messaging happens in this.#searchResultsLiveRegionEl
2742
2828
  },
@@ -2790,11 +2876,9 @@ var UI = class {
2790
2876
  //* For each country: add a country list item <li> to the countryList <ul> container.
2791
2877
  #appendListItems() {
2792
2878
  const frag = document.createDocumentFragment();
2879
+ const liClass = this.#withSlotClass("countryListItem", CLASSES.COUNTRY_ITEM);
2793
2880
  for (let i = 0; i < this.#countries.length; i++) {
2794
2881
  const c = this.#countries[i];
2795
- const liClass = buildClassNames({
2796
- [CLASSES.COUNTRY_ITEM]: true
2797
- });
2798
2882
  const listItem = createEl("li", {
2799
2883
  id: `iti-${this.#id}__item-${c.iso2}`,
2800
2884
  class: liClass,
@@ -2806,11 +2890,28 @@ var UI = class {
2806
2890
  listItem.dataset[DATA_KEYS.ISO2] = c.iso2;
2807
2891
  this.#listItemByIso2.set(c.iso2, listItem);
2808
2892
  if (this.#options.showFlags) {
2809
- createEl("div", { class: `${CLASSES.FLAG} iti__${c.iso2}` }, listItem);
2893
+ createEl(
2894
+ "div",
2895
+ {
2896
+ class: this.#withSlotClass(
2897
+ "countryListItemFlag",
2898
+ `${CLASSES.FLAG} iti__${c.iso2}`
2899
+ )
2900
+ },
2901
+ listItem
2902
+ );
2810
2903
  }
2811
- const nameEl = createEl("span", { class: "iti__country-name" }, listItem);
2904
+ const nameEl = createEl(
2905
+ "span",
2906
+ { class: this.#withSlotClass("countryName", "iti__country-name") },
2907
+ listItem
2908
+ );
2812
2909
  nameEl.textContent = `${c.name} `;
2813
- const dialEl = createEl("span", { class: "iti__dial-code" }, nameEl);
2910
+ const dialEl = createEl(
2911
+ "span",
2912
+ { class: this.#withSlotClass("dialCode", "iti__dial-code") },
2913
+ nameEl
2914
+ );
2814
2915
  if (this.#isRTL) {
2815
2916
  dialEl.setAttribute("dir", "ltr");
2816
2917
  }
@@ -3257,7 +3358,10 @@ var UI = class {
3257
3358
  newListItem.setAttribute(ARIA.SELECTED, "true");
3258
3359
  const checkIcon = createEl(
3259
3360
  "span",
3260
- { class: "iti__country-check", [ARIA.HIDDEN]: "true" },
3361
+ {
3362
+ class: this.#withSlotClass("countryCheck", "iti__country-check"),
3363
+ [ARIA.HIDDEN]: "true"
3364
+ },
3261
3365
  newListItem
3262
3366
  );
3263
3367
  checkIcon.appendChild(buildCheckIcon());
@@ -3444,7 +3548,10 @@ var UI = class {
3444
3548
  this.#updateSelectedListItem(iso2);
3445
3549
  }
3446
3550
  if (this.#selectedCountryEl) {
3447
- const flagClass = iso2 && showFlags ? `${CLASSES.FLAG} iti__${iso2}` : `${CLASSES.FLAG} ${CLASSES.GLOBE}`;
3551
+ const flagClass = this.#withSlotClass(
3552
+ "selectedFlag",
3553
+ iso2 && showFlags ? `${CLASSES.FLAG} iti__${iso2}` : `${CLASSES.FLAG} ${CLASSES.GLOBE}`
3554
+ );
3448
3555
  let ariaLabel, title;
3449
3556
  let flagContent = null;
3450
3557
  if (iso2) {
@@ -4841,7 +4948,7 @@ var intlTelInput = Object.assign(
4841
4948
  attachUtils,
4842
4949
  startedLoadingUtils: false,
4843
4950
  startedLoadingAutoCountry: false,
4844
- version: "29.1.2",
4951
+ version: "29.2.0",
4845
4952
  NUMBER_FORMAT,
4846
4953
  NUMBER_TYPE,
4847
4954
  VALIDATION_ERROR,
@@ -5431,7 +5538,7 @@ var _scope = {};
5431
5538
  AC: [, [
5432
5539
  ,
5433
5540
  ,
5434
- "(?:[01589]\\d|[46])\\d{4}",
5541
+ "(?:[01589]\\d|[2-467])\\d{4}",
5435
5542
  ,
5436
5543
  ,
5437
5544
  ,
@@ -5439,7 +5546,7 @@ var _scope = {};
5439
5546
  ,
5440
5547
  ,
5441
5548
  [5, 6]
5442
- ], [, , "6[2-467]\\d{3}", , , , "62889", , , [5]], [, , "4\\d{4}", , , , "40123", , , [5]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "AC", 247, "00", , , , , , , , , , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , "(?:0[1-9]|[1589]\\d)\\d{4}", , , , "542011", , , [6]], , , [, , , , , , , , , [-1]]],
5549
+ ], [, , "6\\d{4}", , , , "62889", , , [5]], [, , "[2-47]\\d{4}", , , , "40123", , , [5]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "AC", 247, "00", , , , , , , , , , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , "(?:0[1-9]|[1589]\\d)\\d{4}", , , , "542011", , , [6]], , , [, , , , , , , , , [-1]]],
5443
5550
  AD: [
5444
5551
  ,
5445
5552
  [, , "(?:1|6\\d)\\d{7}|[135-9]\\d{5}", , , , , , , [6, 8, 9]],
@@ -5899,7 +6006,7 @@ var _scope = {};
5899
6006
  ,
5900
6007
  ,
5901
6008
  "27111234"
5902
- ], [, , "(?:1[13-9]\\d|644)\\d{7}|(?:3[78]|44|66)[02-9]\\d{7}", , , , "1812345678", , , [10]], [, , "80[03]\\d{7}", , , , "8001234567", , , [10]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "96(?:0[469]|1[0-47]|3[389]|43|6[69]|7[78])\\d{6}", , , , "9604123456", , , [10]], "BD", 880, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{4,6})", "$1-$2", ["31[5-8]|[459]1"], "0$1"], [
6009
+ ], [, , "(?:1[13-9]\\d|644)\\d{7}|(?:3[78]|44|66)[02-9]\\d{7}", , , , "1812345678", , , [10]], [, , "80[03]\\d{7}", , , , "8001234567", , , [10]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "96(?:0[1-69]|1[0-479]|2[278]|3[13-9]|4[013]|54|6[69]|7[78]|88)\\d{6}", , , , "9604123456", , , [10]], "BD", 880, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{4,6})", "$1-$2", ["31[5-8]|[459]1"], "0$1"], [
5903
6010
  ,
5904
6011
  "(\\d{3})(\\d{3,7})",
5905
6012
  "$1-$2",
@@ -6390,7 +6497,7 @@ var _scope = {};
6390
6497
  ,
6391
6498
  [7, 8, 9, 10, 11],
6392
6499
  [5, 6]
6393
- ], [, , "1740[0-5]\\d{6}|1(?:[38]\\d|4[57]|[59][0-35-9]|6[25-7]|7[0-35-8])\\d{8}", , , , "13123456789", , , [11]], [, , "(?:(?:10|21)8|8)00\\d{7}", , , , "8001234567", , , [10, 12]], [, , "16[08]\\d{5}", , , , "16812345", , , [8]], [
6500
+ ], [, , "1(?:610\\d|740[0-5])\\d{6}|1(?:[38]\\d|4[57]|[59][0-35-9]|6[25-7]|7[0-35-8])\\d{8}", , , , "13123456789", , , [11]], [, , "(?:(?:10|21)8|8)00\\d{7}", , , , "8001234567", , , [10, 12]], [, , "16[08]\\d{5}", , , , "16812345", , , [8]], [
6394
6501
  ,
6395
6502
  ,
6396
6503
  "10(?:10\\d{4}|96\\d{3,4})|400\\d{7}|950\\d{7,8}|(?:2[0-57-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[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))96\\d{3,4}",
@@ -6876,7 +6983,7 @@ var _scope = {};
6876
6983
  ,
6877
6984
  [, , "[5-8]\\d{8}", , , , , , , [9]],
6878
6985
  [, , "528[89]\\d{5}", , , , "528812345"],
6879
- [, , "(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[016-8]\\d|2[0-8]|5[0-5]))\\d{6}", , , , "650123456"],
6986
+ [, , "(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[016-8]\\d|2[0-8]|3[01]|5[0-5]))\\d{6}", , , , "650123456"],
6880
6987
  [, , "80[0-7]\\d{6}", , , , "801234567"],
6881
6988
  [, , "89\\d{7}", , , , "891234567"],
6882
6989
  [, , , , , , , , , [-1]],
@@ -7041,7 +7148,7 @@ var _scope = {};
7041
7148
  ,
7042
7149
  ,
7043
7150
  "901123"
7044
- ], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "(?:6[0-36]|88)\\d{4}", , , , "601234"], "FO", 298, "00", , , , "(10(?:01|[12]0|88))", , , , [[, "(\\d{6})", "$1", ["[2-9]"], , "$CC $1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7151
+ ], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "6[0-36]\\d{4}", , , , "601234"], "FO", 298, "00", , , , "(10(?:01|[12]0|88))", , , , [[, "(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2-9]"], , "$CC $1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7045
7152
  FR: [, [, , "[1-9]\\d{8}", , , , , , , [9]], [, , "(?:26[013-9]|59[1-35-9])\\d{6}|(?:[13]\\d|2[0-57-9]|4[1-9]|5[0-8])\\d{7}", , , , "123456789"], [, , "(?:6(?:[0-24-8]\\d|3[0-8]|9[589])|7[3-9]\\d)\\d{6}", , , , "612345678"], [, , "80[0-5]\\d{6}", , , , "801234567"], [
7046
7153
  ,
7047
7154
  ,
@@ -7125,7 +7232,7 @@ var _scope = {};
7125
7232
  GE: [, [, , "(?:[3-57]\\d\\d|800)\\d{6}", , , , , , , [9], [6, 7]], [, , "(?:3(?:[256]\\d|4[124-9]|7[0-4])|4(?:1\\d|2[2-7]|3[1-79]|4[2-8]|7[239]|9[1-7]))\\d{6}", , , , "322123456", , , , [6, 7]], [
7126
7233
  ,
7127
7234
  ,
7128
- "5(?:(?:(?:0555|1(?:[17]77|555))[5-9]|757(?:7[7-9]|8[01]))\\d|22252[0-4])\\d\\d|5(?:0(?:0(?:1[09]|70)|505)|1(?:0[01]0|1(?:07|33|51))|2(?:0[02]0|2[25]2)|3(?:0[03]0|3[35]3)|(?:40[04]|900)0|5222)[0-4]\\d{3}|(?:5(?:0(?:0(?:0\\d|1[12]|22|3[0-6]|44|5[05]|77|88|9[09])|(?:[14]\\d|77)\\d|22[02])|1(?:1(?:[03][01]|[124]\\d|5[2-6]|7[0-6])|4\\d\\d)|[23]555|4(?:4\\d\\d|555)|5(?:[0157-9]\\d\\d|200|333|4(?:44|55))|6[89]\\d\\d|7(?:(?:[0147-9]\\d|22)\\d|5(?:00|[57]5))|8(?:0(?:[018]\\d|2[0-4])|5(?:55|8[89])|8(?:55|88))|9(?:090|[1-35-9]\\d\\d))|790\\d\\d)\\d{4}",
7235
+ "5(?:(?:(?:0555|1(?:[17]77|555))[5-9]|757(?:7[7-9]|8[01]))\\d|22252[0-4])\\d\\d|5(?:0(?:0(?:1[09]|70)|505)|1(?:0[01]0|1(?:07|33|51))|2(?:0[02]0|2[25]2)|3(?:0[03]0|3[35]3)|4(?:0[04]0|411)|5222|9000)[0-4]\\d{3}|(?:5(?:0(?:0(?:0\\d|1[12]|2[02]|3[0-6]|4[04]|5[05]|77|88|9[09])|(?:[14]\\d|77)\\d|22[02])|1(?:1(?:[03][01]|[124]\\d|5[02-6]|7[0-6])|4\\d\\d)|2(?:228|555)|3555|4(?:4(?:[02-9]\\d|14)|555)|5(?:[0157-9]\\d\\d|200|333|4(?:44|55))|6[89]\\d\\d|7(?:(?:[0147-9]\\d|22)\\d|5(?:00|[57]5))|8(?:0(?:[018]\\d|2[0-4])|5(?:55|8[89])|8(?:55|88))|9(?:090|[1-35-9]\\d\\d))|790\\d\\d)\\d{4}",
7129
7236
  ,
7130
7237
  ,
7131
7238
  ,
@@ -7499,67 +7606,58 @@ var _scope = {};
7499
7606
  ["81"],
7500
7607
  "(0$1)"
7501
7608
  ], [, "(\\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"]], , [, , , , , , , , , [-1]], , , [, , "18[59]0\\d{6}", , , , , , , [10]], [, , "818\\d{6}", , , , "818123456", , , [9]], , , [, , "88210[1-9]\\d{4}|8(?:[35-79]5\\d\\d|8(?:[013-9]\\d\\d|2(?:[01][1-9]|[2-9]\\d)))\\d{5}", , , , "8551234567", , , [10]]],
7502
- IL: [, [, , "1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}", , , , , , , [
7503
- 7,
7504
- 8,
7505
- 9,
7506
- 10,
7507
- 11,
7508
- 12
7509
- ]], [, , "153\\d{8,9}|29[1-9]\\d{5}|(?:2[0-8]|[3489]\\d)\\d{6}", , , , "21234567", , , [8, 11, 12], [7]], [, , "55(?:4(?:0[0-3]|[16]0)|57[0-289])\\d{4}|5(?:(?:[0-2][02-9]|[36]\\d|[49][2-9]|8[3-7])\\d|5(?:01|2\\d|3[0-3]|4[3-5]|5[0-25689]|6[6-8]|7[0-267]|8[7-9]|9[1-9]))\\d{5}", , , , "502345678", , , [9]], [, , "1(?:255|80[019]\\d{3})\\d{3}", , , , "1800123456", , , [7, 10]], [, , "1212\\d{4}|1(?:200|9(?:0[0-2]|19|9\\d))\\d{6}", , , , "1919123456", , , [8, 10]], [, , "1700\\d{6}", , , , "1700123456", , , [10]], [, , , , , , , , , [-1]], [
7510
- ,
7511
- ,
7512
- "7(?:38(?:[05]\\d|8[0138])|8(?:33|55|77|81)\\d)\\d{4}|7(?:18|2[23]|3[237]|47|6[258]|7\\d|82|9[2-9])\\d{6}",
7513
- ,
7514
- ,
7515
- ,
7516
- "771234567",
7517
- ,
7518
- ,
7519
- [9]
7520
- ], "IL", 972, "0(?:0|1[2-9])", "0", , , "0", , , , [[, "(\\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"]]], , [, , , , , , , , , [-1]], , , [
7521
- ,
7522
- ,
7523
- "1700\\d{6}",
7609
+ IL: [
7610
+ ,
7611
+ [, , "1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}", , , , , , , [
7612
+ 7,
7613
+ 8,
7614
+ 9,
7615
+ 10,
7616
+ 11,
7617
+ 12
7618
+ ]],
7619
+ [, , "153\\d{8,9}|29[1-9]\\d{5}|(?:2[0-8]|[3489]\\d)\\d{6}", , , , "21234567", , , [8, 11, 12], [7]],
7620
+ [, , "55(?:4(?:0[0-3]|10|6[015-9])|57[0-289]|8[06][0-2])\\d{4}|5(?:(?:[0-2][02-9]|[36]\\d|[49][2-9]|8[3-7])\\d|5(?:01|2\\d|3[0-3]|4[3-5]|5[0-25689]|6[6-8]|7[0-267]|8[7-9]|9[1-9]))\\d{5}", , , , "502345678", , , [9]],
7621
+ [, , "1(?:255|80[019]\\d{3})\\d{3}", , , , "1800123456", , , [7, 10]],
7622
+ [, , "1212\\d{4}|1(?:200|9(?:0[0-2]|19|9\\d))\\d{6}", , , , "1919123456", , , [8, 10]],
7623
+ [, , "1700\\d{6}", , , , "1700123456", , , [10]],
7624
+ [, , , , , , , , , [-1]],
7625
+ [, , "7(?:280[01]|38(?:[05]\\d|8[01358])|8(?:33|55|77|81)\\d)\\d{4}|7(?:18|2[23]|3[237]|47|6[258]|7\\d|82|9[2-9])\\d{6}", , , , "771234567", , , [9]],
7626
+ "IL",
7627
+ 972,
7628
+ "0(?:0|1[2-9])",
7629
+ "0",
7524
7630
  ,
7525
7631
  ,
7632
+ "0",
7526
7633
  ,
7527
7634
  ,
7528
7635
  ,
7636
+ [[, "(\\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"]], [
7637
+ ,
7638
+ "(\\d)(\\d{3})(\\d{3})(\\d{3})",
7639
+ "$1-$2-$3-$4",
7640
+ ["1[7-9]"]
7641
+ ], [, "(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})", "$1-$2 $3-$4", ["15"]]],
7529
7642
  ,
7530
- [10]
7531
- ], [, , "1599\\d{6}", , , , "1599123456", , , [10]], , , [, , "151\\d{8,9}", , , , "15112340000", , , [11, 12]]],
7532
- IM: [
7533
- ,
7534
- [, , "1624\\d{6}|(?:[3578]\\d|90)\\d{8}", , , , , , , [10], [6]],
7535
- [, , "1624(?:230|[5-8]\\d\\d)\\d{3}", , , , "1624756789", , , , [6]],
7536
- [, , "76245[06]\\d{4}|7(?:4576|[59]24\\d|624[0-4689])\\d{5}", , , , "7924123456"],
7537
- [, , "808162\\d{4}", , , , "8081624567"],
7538
- [, , "8(?:440[49]06|72299\\d)\\d{3}|(?:8(?:45|70)|90[0167])624\\d{4}", , , , "9016247890"],
7539
- [, , , , , , , , , [-1]],
7540
- [, , "70\\d{8}", , , , "7012345678"],
7541
- [, , "56\\d{8}", , , , "5612345678"],
7542
- "IM",
7543
- 44,
7544
- "00",
7545
- "0",
7643
+ [, , , , , , , , , [-1]],
7546
7644
  ,
7547
7645
  ,
7548
- "([25-8]\\d{5})$|0|180020",
7549
- "1624$1",
7646
+ [, , "1700\\d{6}", , , , , , , [10]],
7647
+ [, , "1599\\d{6}", , , , "1599123456", , , [10]],
7550
7648
  ,
7551
7649
  ,
7650
+ [, , "151\\d{8,9}", , , , "15112340000", , , [11, 12]]
7651
+ ],
7652
+ IM: [, [, , "1624\\d{6}|(?:[3578]\\d|90)\\d{8}", , , , , , , [10], [6]], [, , "1624(?:230|[5-8]\\d\\d)\\d{3}", , , , "1624756789", , , , [6]], [, , "76245[06]\\d{4}|7(?:4576|[59]24\\d|624[0-4689])\\d{5}", , , , "7924123456"], [, , "808162\\d{4}", , , , "8081624567"], [
7552
7653
  ,
7553
7654
  ,
7554
- [, , , , , , , , , [-1]],
7655
+ "8(?:440[49]06|72299\\d)\\d{3}|(?:8(?:45|70)|90[0167])624\\d{4}",
7555
7656
  ,
7556
- "74576|(?:16|7[56])24",
7557
- [, , , , , , , , , [-1]],
7558
- [, , "3440[49]06\\d{3}|(?:3(?:08162|3\\d{4}|45624|7(?:0624|2299))|55\\d{4})\\d{4}", , , , "5512345678"],
7559
7657
  ,
7560
7658
  ,
7561
- [, , , , , , , , , [-1]]
7562
- ],
7659
+ "9016247890"
7660
+ ], [, , , , , , , , , [-1]], [, , "70\\d{8}", , , , "7012345678"], [, , "56\\d{8}", , , , "5612345678"], "IM", 44, "00", "0", , , "([25-8]\\d{5})$|0|180020", "1624$1", , , , , [, , , , , , , , , [-1]], , "74576|(?:16|7[56])24", [, , , , , , , , , [-1]], [, , "3440[49]06\\d{3}|(?:3(?:08162|3\\d{4}|45624|7(?:0624|2299))|55\\d{4})\\d{4}", , , , "5512345678"], , , [, , , , , , , , , [-1]]],
7563
7661
  IN: [, [, , "(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}", , , , , , , [8, 9, 10, 11, 12, 13], [6, 7]], [
7564
7662
  ,
7565
7663
  ,
@@ -7683,7 +7781,7 @@ var _scope = {};
7683
7781
  IR: [, [, , "[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}", , , , , , , [4, 5, 6, 7, 10], [8]], [, , "(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])(?:[03-57]\\d{7}|[16]\\d{3}(?:\\d{4})?|[289]\\d{3}(?:\\d(?:\\d{3})?)?)|94(?:000[09]|(?:12\\d|30[0-2])\\d|2(?:[02689]0\\d|121)|4(?:111|40\\d))\\d{4}", , , , "2123456789", , , [6, 7, 10], [4, 5, 8]], [
7684
7782
  ,
7685
7783
  ,
7686
- "9(?:(?:0[0-5]|[13]\\d|2[0-3])\\d\\d|9(?:[0-46]\\d\\d|5(?:10|5\\d)|8(?:[12]\\d|88)|9(?:[01359]\\d|21|69|77|8[7-9])))\\d{5}",
7784
+ "9(?:(?:0[0-5]|[13]\\d|2[0-3])\\d\\d|9(?:[0-46]\\d\\d|5(?:10|5\\d)|8(?:[12]\\d|3[0-2]|88)|9(?:[01359]\\d|21|69|77|8[7-9])))\\d{5}",
7687
7785
  ,
7688
7786
  ,
7689
7787
  ,
@@ -7894,7 +7992,7 @@ var _scope = {};
7894
7992
  ,
7895
7993
  ,
7896
7994
  [7, 8, 9]
7897
- ], [, , "(?:1(?:0[0-8]|1\\d|2[014]|30|4[0-5])|7\\d\\d)\\d{6}", , , , "712123456", , , [9]], [, , "800[02-8]\\d{5,6}", , , , "800223456", , , [9, 10]], [, , "900[02-9]\\d{5}", , , , "900223456", , , [9]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "KE", 254, "000", "0", , , "0", , , , [[, "(\\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"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7995
+ ], [, , "(?:1(?:0[0-8]|[18]\\d|2[014]|30|4[0-5])|7\\d\\d)\\d{6}", , , , "712123456", , , [9]], [, , "800[02-8]\\d{5,6}", , , , "800223456", , , [9, 10]], [, , "900[02-9]\\d{5}", , , , "900223456", , , [9]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "KE", 254, "000", "0", , , "0", , , , [[, "(\\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"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7898
7996
  KG: [
7899
7997
  ,
7900
7998
  [, , "8\\d{9}|[235-9]\\d{8}", , , , , , , [9, 10], [5, 6]],
@@ -8128,7 +8226,7 @@ var _scope = {};
8128
8226
  ,
8129
8227
  "5002345678"
8130
8228
  ], [, , , , , , , , , [-1]], "LC", 1, "011", "1", , , "([2-8]\\d{6})$|1", "758$1", , , , , [, , , , , , , , , [-1]], , "758", [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8131
- LI: [, [, , "[68]\\d{8}|(?:[2378]\\d|90)\\d{5}", , , , , , , [7, 9]], [, , "(?:2(?:01|1[27]|2[024]|3\\d|6[02-578]|96)|3(?:[24]0|33|7[0135-7]|8[048]|9[0269]))\\d{4}", , , , "2345678", , , [7]], [, , "(?:6(?:(?:4[5-9]|5\\d)\\d|6(?:[024-68]\\d|1[01]|3[7-9]|70))\\d|7(?:[37-9]\\d|42|56))\\d{4}", , , , "660234567"], [, , "8002[28]\\d\\d|80(?:05\\d|9)\\d{4}", , , , "8002222"], [
8229
+ LI: [, [, , "[68]\\d{8}|(?:[2378]\\d|90)\\d{5}", , , , , , , [7, 9]], [, , "(?:2(?:01|1[27]|2[024]|3\\d|6[02-578]|96)|3(?:[24]0|33|7[0135-7]|8[048]|9[0269]))\\d{4}", , , , "2345678", , , [7]], [, , "(?:6(?:(?:4[5-9]|5\\d)\\d|6(?:[024-68]\\d|1[01]|3[7-9]|7[02]))\\d|7(?:[37-9]\\d|42|56))\\d{4}", , , , "660234567"], [, , "8002[28]\\d\\d|80(?:05\\d|9)\\d{4}", , , , "8002222"], [
8132
8230
  ,
8133
8231
  ,
8134
8232
  "90(?:02[258]|1(?:23|3[14])|66[136])\\d\\d",
@@ -8262,7 +8360,7 @@ var _scope = {};
8262
8360
  MA: [, [, , "[5-8]\\d{8}", , , , , , , [9]], [, , "5(?:(?:18|4[0679]|5[03])\\d|2(?:[0-25-79]\\d|3[1-578]|4[02-46-8]|8[0235-9])|3(?:[0-47]\\d|5[02-9]|6[02-8]|8[014-9]|9[3-9]))\\d{5}", , , , "520123456"], [
8263
8361
  ,
8264
8362
  ,
8265
- "(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[016-8]\\d|2[0-8]|5[0-5]))\\d{6}",
8363
+ "(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[016-8]\\d|2[0-8]|3[01]|5[0-5]))\\d{6}",
8266
8364
  ,
8267
8365
  ,
8268
8366
  ,
@@ -8409,7 +8507,7 @@ var _scope = {};
8409
8507
  ML: [, [, , "[24-9]\\d{7}", , , , , , , [8]], [
8410
8508
  ,
8411
8509
  ,
8412
- "2(?:07[0-8]|12[67])\\d{4}|(?:2(?:02|1[4-689])|4(?:0[0-4]|4[1-59]))\\d{5}",
8510
+ "2(?:07[0-8]|12[67])\\d{4}|(?:2(?:02|1[4-689])|4(?:0[0-4]|4[1-69]))\\d{5}",
8413
8511
  ,
8414
8512
  ,
8415
8513
  ,
@@ -8835,7 +8933,7 @@ var _scope = {};
8835
8933
  ,
8836
8934
  [5, 6, 9]
8837
8935
  ], , , [, , , , , , , , , [-1]]],
8838
- NO: [, [, , "(?:0|[2-9]\\d{3})\\d{4}", , , , , , , [5, 8]], [, , "(?:2[1-4]|3[1-3578]|5[1-35-7]|6[1-46-9]|7[0-8])\\d{6}", , , , "21234567", , , [8]], [, , "[49]\\d{7}", , , , "40612345", , , [8]], [, , "80[01]\\d{5}", , , , "80012345", , , [8]], [, , "82[09]\\d{5}", , , , "82012345", , , [8]], [, , "810(?:0[0-6]|[2-8]\\d)\\d{3}", , , , "81021234", , , [8]], [, , "880\\d{5}", , , , "88012345", , , [8]], [, , "85[0-5]\\d{5}", , , , "85012345", , , [8]], "NO", 47, "00", , , , , , , , [[, "(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["8"]], [
8936
+ NO: [, [, , "(?:0|[2-9]\\d{3})\\d{4}", , , , , , , [5, 8]], [, , "(?:2[1-4]|3[1-3578]|5[1-35-7]|6[1-46-9]|7[0-8])\\d{6}", , , , "21234567", , , [8]], [, , "(?:4[015-9]|9\\d)\\d{6}", , , , "40612345", , , [8]], [, , "80[01]\\d{5}", , , , "80012345", , , [8]], [, , "82[09]\\d{5}", , , , "82012345", , , [8]], [, , "810(?:0[0-6]|[2-8]\\d)\\d{3}", , , , "81021234", , , [8]], [, , "880\\d{5}", , , , "88012345", , , [8]], [, , "85[0-5]\\d{5}", , , , "85012345", , , [8]], "NO", 47, "00", , , , , , , , [[, "(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["8"]], [
8839
8937
  ,
8840
8938
  "(\\d{2})(\\d{2})(\\d{2})(\\d{2})",
8841
8939
  "$1 $2 $3 $4",
@@ -9324,7 +9422,7 @@ var _scope = {};
9324
9422
  ,
9325
9423
  ,
9326
9424
  [7, 8, 9]
9327
- ], [, , "7[02369]\\d{7}", , , , "701234567", , , [9]], [, , "20\\d{4,7}", , , , "20123456", , , [6, 7, 8, 9]], [, , "649\\d{6}|99[1-59]\\d{4}(?:\\d{3})?|9(?:00|39|44)[1-8]\\d{3,6}", , , , "9001234567", , , [7, 8, 9, 10]], [, , "77[0-7]\\d{6}", , , , "771234567", , , [9]], [, , "75[1-8]\\d{6}", , , , "751234567", , , [9]], [, , , , , , , , , [-1]], "SE", 46, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["20"], "0$1"], [, "(\\d{3})(\\d{4})", "$1-$2", ["9(?:00|39|44|9)"], "0$1"], [
9425
+ ], [, , "7[023689]\\d{7}", , , , "701234567", , , [9]], [, , "20\\d{4,7}", , , , "20123456", , , [6, 7, 8, 9]], [, , "649\\d{6}|99[1-59]\\d{4}(?:\\d{3})?|9(?:00|39|44)[1-8]\\d{3,6}", , , , "9001234567", , , [7, 8, 9, 10]], [, , "77[0-7]\\d{6}", , , , "771234567", , , [9]], [, , "75[1-8]\\d{6}", , , , "751234567", , , [9]], [, , , , , , , , , [-1]], "SE", 46, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["20"], "0$1"], [, "(\\d{3})(\\d{4})", "$1-$2", ["9(?:00|39|44|9)"], "0$1"], [
9328
9426
  ,
9329
9427
  "(\\d{2})(\\d{3})(\\d{2})",
9330
9428
  "$1-$2 $3",
@@ -9399,7 +9497,7 @@ var _scope = {};
9399
9497
  ,
9400
9498
  ,
9401
9499
  [5, 8]
9402
- ], [, , "79\\d{6}", , , , "79123456", , , [8]], [, , "[49]\\d{7}", , , , "41234567", , , [8]], [, , "80[01]\\d{5}", , , , "80012345", , , [8]], [, , "82[09]\\d{5}", , , , "82012345", , , [8]], [, , "810(?:0[0-6]|[2-8]\\d)\\d{3}", , , , "81021234", , , [8]], [, , "880\\d{5}", , , , "88012345", , , [8]], [, , "85[0-5]\\d{5}", , , , "85012345", , , [8]], "SJ", 47, "00", , , , , , , , , , [, , , , , , , , , [-1]], , "79", [, , , , , , , , , [-1]], [, , "(?:0[235-9]|81(?:0(?:0[7-9]|1\\d)|5\\d\\d))\\d{3}", , , , "02000"], , , [, , "81[23]\\d{5}", , , , "81212345", , , [8]]],
9500
+ ], [, , "79\\d{6}", , , , "79123456", , , [8]], [, , "(?:4[015-9]|9\\d)\\d{6}", , , , "41234567", , , [8]], [, , "80[01]\\d{5}", , , , "80012345", , , [8]], [, , "82[09]\\d{5}", , , , "82012345", , , [8]], [, , "810(?:0[0-6]|[2-8]\\d)\\d{3}", , , , "81021234", , , [8]], [, , "880\\d{5}", , , , "88012345", , , [8]], [, , "85[0-5]\\d{5}", , , , "85012345", , , [8]], "SJ", 47, "00", , , , , , , , , , [, , , , , , , , , [-1]], , "79", [, , , , , , , , , [-1]], [, , "(?:0[235-9]|81(?:0(?:0[7-9]|1\\d)|5\\d\\d))\\d{3}", , , , "02000"], , , [, , "81[23]\\d{5}", , , , "81212345", , , [8]]],
9403
9501
  SK: [, [
9404
9502
  ,
9405
9503
  ,
@@ -9834,7 +9932,7 @@ var _scope = {};
9834
9932
  ,
9835
9933
  [, , "800\\d{6}|(?:[29]0|[347]\\d)\\d{7}", , , , , , , [9], [5, 6, 7]],
9836
9934
  [, , "20(?:(?:240|30[67])\\d|6(?:00[0-2]|30[0-4]))\\d{3}|(?:20(?:[017]\\d|2[5-9]|3[1-4]|5[0-4]|6[15-9])|[34]\\d{3})\\d{5}", , , , "312345678", , , , [5, 6, 7]],
9837
- [, , "7280\\d{5}|7(?:[014-8]\\d|2[01467]|3[016]|9[0-589])\\d{6}", , , , "712345678"],
9935
+ [, , "7280\\d{5}|7(?:[014-8]\\d|2[01467]|3[0167]|9[0-589])\\d{6}", , , , "712345678"],
9838
9936
  [, , "800[1-3]\\d{5}", , , , "800123456"],
9839
9937
  [, , "90[1-3]\\d{6}", , , , "901123456"],
9840
9938
  [, , , , , , , , , [-1]],
@@ -10148,24 +10246,19 @@ var _scope = {};
10148
10246
  ,
10149
10247
  ,
10150
10248
  [3, 4]
10151
- ], [, , "7(?:[1278]\\d|3[1-9])\\d{6}", , , , "712345678", , , [9]], [, , "80(?:[01]\\d|20|8[0-8])\\d{3}", , , , "8001234", , , [7]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "86(?:1[12]|22|30|44|55|77|8[368])\\d{6}", , , , "8686123456", , , [10]], "ZW", 263, "00", "0", , , "0", , , , [
10152
- [, "(\\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"],
10153
- [, "(\\d)(\\d{3})(\\d{2,4})", "$1 $2 $3", ["[49]"], "0$1"],
10154
- [, "(\\d{3})(\\d{4})", "$1 $2", ["80"], "0$1"],
10155
- [, "(\\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)"],
10156
- [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"],
10157
- [, "(\\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"],
10158
- [, "(\\d{4})(\\d{6})", "$1 $2", ["8"], "0$1"],
10159
- [
10160
- ,
10161
- "(\\d{2})(\\d{3,5})",
10162
- "$1 $2",
10163
- ["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]"],
10164
- "0$1"
10165
- ],
10166
- [, "(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["29[013-9]|39|54"], "0$1"],
10167
- [, "(\\d{4})(\\d{3,5})", "$1 $2", ["(?:25|54)8", "258|5483"], "0$1"]
10168
- ], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
10249
+ ], [, , "7(?:[1278]\\d|3[1-9]|9[01])\\d{6}", , , , "712345678", , , [9]], [, , "80(?:[01]\\d|20|8[0-8])\\d{3}", , , , "8001234", , , [7]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "86(?:1[12]|22|30|44|55|77|8[368])\\d{6}", , , , "8686123456", , , [10]], "ZW", 263, "00", "0", , , "0", , , , [[, "(\\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"], [
10250
+ ,
10251
+ "(\\d{3})(\\d{4})",
10252
+ "$1 $2",
10253
+ ["80"],
10254
+ "0$1"
10255
+ ], [, "(\\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"], [
10256
+ ,
10257
+ "(\\d{2})(\\d{3,5})",
10258
+ "$1 $2",
10259
+ ["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]"],
10260
+ "0$1"
10261
+ ], [, "(\\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"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
10169
10262
  800: [
10170
10263
  ,
10171
10264
  [, , "(?:00|[1-9]\\d)\\d{6}", , , , , , , [8]],